diff --git a/ChangeLog b/ChangeLog index 88fb9cbf3376b3a814b96e3f4a54f8a773bb6e38..0e24e2e351c2b0b610986aa7f08897224965b021 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +18-SEP-2019: 11.2.9 + +- Adds pre and post config JS files +- Fixes page numbers in PDF export +- Adds globalVars to configuration +- Adds DRAWIO_CONFIG variable + 08-SEP-2019: 11.2.8 - Fixes bugs in PlantUML for Confluence Cloud diff --git a/VERSION b/VERSION index 43ae3c06e770e885e28cc8b8957ddf70e4151e85..39883e286fa52096a9f992ba66b978ce62ae520f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -11.2.8 \ No newline at end of file +11.2.9 \ No newline at end of file diff --git a/src/main/java/com/mxgraph/io/gliffy/importer/GliffyDiagramConverter.java b/src/main/java/com/mxgraph/io/gliffy/importer/GliffyDiagramConverter.java index e76644b5a0c5b622e3200d90988f4a090a38fae3..34f8e0c8b52195676ff42026a965b82774b122ab 100644 --- a/src/main/java/com/mxgraph/io/gliffy/importer/GliffyDiagramConverter.java +++ b/src/main/java/com/mxgraph/io/gliffy/importer/GliffyDiagramConverter.java @@ -1067,4 +1067,4 @@ public class GliffyDiagramConverter { this.report = report; } -} +} \ No newline at end of file diff --git a/src/main/java/com/mxgraph/online/GoogleAuthServlet.java b/src/main/java/com/mxgraph/online/GoogleAuthServlet.java index 7de08c88284796c86ff4d80bf222df6668e3e7ca..e488efd7f37cdfe15576c3aed0872a2e9d77549a 100644 --- a/src/main/java/com/mxgraph/online/GoogleAuthServlet.java +++ b/src/main/java/com/mxgraph/online/GoogleAuthServlet.java @@ -56,7 +56,12 @@ public class GoogleAuthServlet extends AbsAuthServlet { StringBuffer res = new StringBuffer(); - //Call the opener callback function directly with the given json + //In Office Add-in, we don't have access to opened window to attach a function to it, + // also with the redirect (since we had to open google auth in the same window) we lost Office Messaging. + // This is due to using Google own file picker instead of creating our own picker + // (as we did with OneDrive since its picker only support popup windows which is not supported in Office) + // This is why we load drive.js which define onGDriveCallback and redirects automatically to the page including the picker + // For other scenarios, we use another function name (onGoogleDriveCallback) if (!jsonResponse) { res.append("<!DOCTYPE html><html><head>"); @@ -70,7 +75,12 @@ public class GoogleAuthServlet extends AbsAuthServlet if (!jsonResponse) { res.append(";"); - res.append("onGDriveCallback(authInfo);"); + res.append("if (window.opener != null && window.opener.onGoogleDriveCallback != null)"); + res.append("{"); + res.append(" window.opener.onGoogleDriveCallback(authInfo, window);"); + res.append("} else {"); + res.append(" onGDriveCallback(authInfo);"); + res.append("}"); res.append("</script>"); res.append("</head><body></body></html>"); } diff --git a/src/main/webapp/cache.manifest b/src/main/webapp/cache.manifest index 3dcf71873e6b7af6ee8a38e1ba1bbe4ab64650a1..8b16b9d45b7f8f9f091eb27bdb950da2f3f2e82d 100644 --- a/src/main/webapp/cache.manifest +++ b/src/main/webapp/cache.manifest @@ -1,7 +1,7 @@ CACHE MANIFEST # THIS FILE WAS GENERATED. DO NOT MODIFY! -# 09/08/2019 12:02 PM +# 09/17/2019 11:30 PM app.html index.html?offline=1 diff --git a/src/main/webapp/export3.html b/src/main/webapp/export3.html index cfeed2aca37ac79ba0e5e699ac959e42de543003..f4a82bf8eb44a0c35076e719be07e8f06a55fd11 100644 --- a/src/main/webapp/export3.html +++ b/src/main/webapp/export3.html @@ -110,7 +110,7 @@ //Add global variables to graph if (extras != null && extras.globalVars != null) { - graph.globalUrlVars = extras.globalVars; + graph.globalVars = extras.globalVars; } /** @@ -611,6 +611,28 @@ to = isNaN(to)? from : Math.max(from, Math.min(to, diagrams.length - 1)); } } + else + { + /** + * Implements %page% and %pagenumber% placeholders + */ + var graphGetGlobalVariable = graph.getGlobalVariable; + + graph.getGlobalVariable = function(name) + { + if (name == 'page') + { + return (diagrams == null) ? 'Page-1' : + (diagrams[from].getAttribute('name') || ('Page-' + (from + 1))); + } + else if (name == 'pagenumber') + { + return from + 1; + } + + return graphGetGlobalVariable.apply(this, arguments); + }; + } for (var i = from; i <= to; i++) { diff --git a/src/main/webapp/images/sidebar-mscae.png b/src/main/webapp/images/sidebar-mscae.png index a55a1d58d4d0fb6a9726bf1218bfeb6ca1f064a9..4de361bdfb4c90f584b778783a5fad49cec61414 100644 Binary files a/src/main/webapp/images/sidebar-mscae.png and b/src/main/webapp/images/sidebar-mscae.png differ diff --git a/src/main/webapp/img/lib/active_directory/active_directory.svg b/src/main/webapp/img/lib/active_directory/active_directory.svg index 494dceca0b91d7f6aea839ab638013cd6a28e53f..933aea7e384bd017f451e49a22a360861f834516 100644 --- a/src/main/webapp/img/lib/active_directory/active_directory.svg +++ b/src/main/webapp/img/lib/active_directory/active_directory.svg @@ -1,182 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="162.20799mm" - height="138.49704mm" - viewBox="0 0 162.20799 138.49704" - version="1.1" - id="svg3177" - sodipodi:docname="active_directory.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"> - <defs - id="defs3171"> - <linearGradient - inkscape:collect="always" - id="linearGradient855"> - <stop - style="stop-color:#0274fc;stop-opacity:1" - offset="0" - id="stop851" /> - <stop - style="stop-color:#96cefe;stop-opacity:1" - offset="1" - id="stop853" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3237"> - <stop - style="stop-color:#ffc426;stop-opacity:1" - offset="0" - id="stop3233" /> - <stop - style="stop-color:#fe6305;stop-opacity:1" - offset="1" - id="stop3235" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3237" - id="linearGradient3239" - x1="102.36423" - y1="206.12836" - x2="102.24294" - y2="96.305199" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient855" - id="linearGradient857" - x1="100.73065" - y1="140.32887" - x2="100.44717" - y2="120.29613" - gradientUnits="userSpaceOnUse" /> - <linearGradient - gradientTransform="translate(-31.482735,54.034394)" - inkscape:collect="always" - xlink:href="#linearGradient855" - id="linearGradient857-3" - x1="100.73065" - y1="140.32887" - x2="100.44717" - y2="120.29613" - gradientUnits="userSpaceOnUse" /> - <linearGradient - gradientTransform="translate(-0.06346233,54.034392)" - inkscape:collect="always" - xlink:href="#linearGradient855" - id="linearGradient857-3-6" - x1="100.73065" - y1="140.32887" - x2="100.44717" - y2="120.29613" - gradientUnits="userSpaceOnUse" /> - <linearGradient - gradientTransform="translate(31.355801,54.034384)" - inkscape:collect="always" - xlink:href="#linearGradient855" - id="linearGradient857-3-7" - x1="100.73065" - y1="140.32887" - x2="100.44717" - y2="120.29613" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.70000001" - inkscape:cx="517.72747" - inkscape:cy="229.2055" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata3174"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-21.540271,-77.375427)"> - <path - style="opacity:1;fill:#ffffff;stroke:none;stroke-width:1.09168017;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 21.540271,215.87247 102.13732,77.375427 183.74826,215.87247 Z" - id="path3201-2" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccc" /> - <path - style="opacity:1;fill:#e57a10;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 28.351713,211.85106 102.18018,84.985117 176.93737,211.85106 Z" - id="path3201" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccc" /> - <path - style="opacity:1;fill:url(#linearGradient3239);fill-opacity:1;stroke:none;stroke-width:0.86483461;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 38.393534,206.02325 102.24294,96.305195 166.89555,206.02325 Z" - id="path3201-9" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#2c6dc9;fill-opacity:0.98994978;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 99.345703,134.05664 v 45.43555 h 2.999997 v -45.43555 z m -2.867187,0.31641 -26.47461,43.23633 2.558594,1.5664 26.474609,-43.23633 z m 8.736324,0 -2.55859,1.5664 26.47461,43.23633 2.55859,-1.5664 z" - id="path829-6" - inkscape:connector-curvature="0" /> - <circle - style="opacity:1;vector-effect:none;fill:url(#linearGradient857);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="path3252" - cx="100.93586" - cy="130.51768" - r="9.8989458" /> - <circle - style="opacity:1;vector-effect:none;fill:url(#linearGradient857-3);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="path3252-0" - cx="69.453133" - cy="184.55209" - r="9.8989458" /> - <circle - style="opacity:1;vector-effect:none;fill:url(#linearGradient857-3-6);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="path3252-0-3" - cx="100.87241" - cy="184.55209" - r="9.8989458" /> - <circle - style="opacity:1;vector-effect:none;fill:url(#linearGradient857-3-7);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="path3252-0-6" - cx="132.29167" - cy="184.55209" - r="9.8989458" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="613.07" height="523.453" viewBox="0 0 162.208 138.497"><defs><linearGradient id="A" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#0274fc"/><stop offset="1" stop-color="#96cefe"/></linearGradient><linearGradient id="B" x1="102.364" y1="206.128" x2="102.243" y2="96.305" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#ffc426"/><stop offset="1" stop-color="#fe6305"/></linearGradient><linearGradient xlink:href="#A" id="C" x1="100.731" y1="140.329" x2="100.447" y2="120.296"/><linearGradient xlink:href="#A" id="D" x1="69.248" y1="194.363" x2="68.964" y2="174.331"/><linearGradient xlink:href="#A" id="E" x1="100.667" y1="194.363" x2="100.384" y2="174.331"/><linearGradient xlink:href="#A" id="F" x1="132.086" y1="194.363" x2="131.803" y2="174.331"/></defs><g transform="translate(-21.54 -77.375)"><path d="M21.54 215.872l80.597-138.497 81.61 138.497z" fill="#fff"/><path d="M28.352 211.85L102.18 84.985l74.757 126.866z" fill="#e57a10"/><path d="M38.394 206.023l63.85-109.718 64.653 109.718z" fill="url(#B)"/><path d="M99.346 134.057v45.436h3v-45.436zm-2.867.316L70.004 177.61l2.56 1.566 26.475-43.236zm8.736 0l-2.56 1.566 26.475 43.236 2.56-1.566z" dominant-baseline="auto" fill="#2c6dc9" fill-opacity="1"/><circle cx="100.936" cy="130.518" r="9.899" fill="url(#C)" paint-order="normal"/><circle cx="69.453" cy="184.552" r="9.899" fill="url(#D)" paint-order="normal"/><circle cx="100.872" cy="184.552" r="9.899" fill="url(#E)" paint-order="normal"/><circle cx="132.292" cy="184.552" r="9.899" fill="url(#F)" paint-order="normal"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/cd_dvd.svg b/src/main/webapp/img/lib/active_directory/cd_dvd.svg index 3cd584b0edf1f72b1f15ca01ad303c41a95760c8..4889da31c87c6662030ee6f0523ef2b826de0e56 100644 --- a/src/main/webapp/img/lib/active_directory/cd_dvd.svg +++ b/src/main/webapp/img/lib/active_directory/cd_dvd.svg @@ -1,122 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="179.52734mm" - height="179.52734mm" - viewBox="0 0 179.52734 179.52734" - version="1.1" - id="svg6625" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="cd_dvd.svg"> - <defs - id="defs6619"> - <linearGradient - inkscape:collect="always" - id="linearGradient6673"> - <stop - style="stop-color:#e6f7ff;stop-opacity:1" - offset="0" - id="stop6669" /> - <stop - style="stop-color:#6dceff;stop-opacity:1" - offset="1" - id="stop6671" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6673" - id="linearGradient6675" - x1="29.309944" - y1="149.7345" - x2="188.24741" - y2="149.7345" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.49497475" - inkscape:cx="592.60428" - inkscape:cy="240.74455" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" /> - <metadata - id="metadata6622"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-18.880859,-59.837891)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 108.64453,59.837891 c -49.545402,0 -89.763671,40.218269 -89.763671,89.763669 0,49.54541 40.218269,89.76367 89.763671,89.76367 49.5454,0 89.76367,-40.21826 89.76367,-89.76367 0,-49.5454 -40.21827,-89.763669 -89.76367,-89.763669 z" - id="path6667" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0066ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 108.64453,64.837891 c 46.8432,0 84.76367,37.920469 84.76367,84.763669 0,46.8432 -37.92047,84.76367 -84.76367,84.76367 -46.843201,0 -84.763671,-37.92047 -84.763671,-84.76367 0,-46.8432 37.92047,-84.763669 84.763671,-84.763669 z" - id="path6638" - inkscape:connector-curvature="0" /> - <circle - style="opacity:1;vector-effect:none;fill:url(#linearGradient6675);fill-opacity:1;stroke:none;stroke-width:4.55337715;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="path6638-8" - cx="108.77868" - cy="149.7345" - r="79.468735" /> - <path - style="opacity:1;fill:#ffffff;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 34.007377,122.84172 C 40.421144,106.38582 50.585003,91.502958 68.913838,81.065863 L 97.90533,128.2441 c -5.582189,4.15142 -10.893156,7.97717 -13.540325,14.6189 z" - id="path6655" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="opacity:1;fill:#ffffff;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 131.12531,159.24863 51.05921,20.67324 c -7.89927,18.88509 -23.2316,34.21848 -39.40401,41.62462 l -26.58723,-47.32194 c 7.05566,-2.80975 11.41696,-8.44856 14.93203,-14.97592 z" - id="path6657" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0066ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 107.91211,124.59375 c -14.410177,0 -26.128907,11.71873 -26.128907,26.12891 0,14.41017 11.71873,26.13086 26.128907,26.13086 14.41018,0 26.12891,-11.72069 26.12891,-26.13086 0,-14.41018 -11.71873,-26.12891 -26.12891,-26.12891 z" - id="path6679" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#3366cc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 107.91211,128.09375 c 12.51863,0 22.62891,10.11027 22.62891,22.62891 0,12.51863 -10.11028,22.63086 -22.62891,22.63086 -12.518636,0 -22.628907,-10.11223 -22.628907,-22.63086 0,-12.51864 10.110271,-22.62891 22.628907,-22.62891 z" - id="path6659" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="678.527" height="678.527" viewBox="0 0 179.527 179.527"><style><![CDATA[.B{dominant-baseline:auto}]]></style><defs><linearGradient id="A" x1="29.31" y1="149.735" x2="188.247" y2="149.735" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#e6f7ff"/><stop offset="1" stop-color="#6dceff"/></linearGradient></defs><g transform="translate(-18.881 -59.838)"><path d="M108.645 59.838c-49.545 0-89.764 40.218-89.764 89.764s40.218 89.764 89.764 89.764 89.764-40.218 89.764-89.764-40.218-89.764-89.764-89.764z" fill="#fff" paint-order="normal" class="B"/><path d="M108.645 64.838c46.843 0 84.764 37.92 84.764 84.764s-37.92 84.764-84.764 84.764-84.764-37.92-84.764-84.764 37.92-84.764 84.764-84.764z" fill="#06f" paint-order="normal" class="B"/><circle cx="108.779" cy="149.735" r="79.469" fill="url(#A)" paint-order="normal"/><path d="M34.007 122.842c6.414-16.456 16.578-31.34 34.906-41.776l29 47.178c-5.582 4.15-10.893 7.977-13.54 14.62zm97.118 36.408l51.06 20.673c-7.9 18.885-23.232 34.218-39.404 41.625l-26.587-47.322c7.056-2.8 11.417-8.45 14.932-14.976z" fill="#fff"/><path d="M107.912 124.594c-14.4 0-26.13 11.72-26.13 26.13s11.72 26.13 26.13 26.13 26.13-11.72 26.13-26.13-11.72-26.13-26.13-26.13z" fill="#06f" paint-order="normal" class="B"/><path d="M107.912 128.094c12.52 0 22.63 10.1 22.63 22.63s-10.1 22.63-22.63 22.63-22.63-10.112-22.63-22.63 10.1-22.63 22.63-22.63z" fill="#36c" paint-order="normal" class="B"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/cell_phone.svg b/src/main/webapp/img/lib/active_directory/cell_phone.svg index 4d3eabb2c918560156387a08df919e7961d60f1d..bde26256021c5c672d6e7293817346781a7338a9 100644 --- a/src/main/webapp/img/lib/active_directory/cell_phone.svg +++ b/src/main/webapp/img/lib/active_directory/cell_phone.svg @@ -1,233 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="71.470673mm" - height="170.59964mm" - viewBox="0 0 71.470673 170.59964" - version="1.1" - id="svg908" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="cell_phone.svg"> - <defs - id="defs902"> - <linearGradient - inkscape:collect="always" - id="linearGradient1011"> - <stop - style="stop-color:#3940b4;stop-opacity:1" - offset="0" - id="stop1007" /> - <stop - id="stop1015" - offset="0.5" - style="stop-color:#bde1fd;stop-opacity:1" /> - <stop - style="stop-color:#2d31af;stop-opacity:1" - offset="1" - id="stop1009" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1003"> - <stop - style="stop-color:#bae2ff;stop-opacity:1" - offset="0" - id="stop999" /> - <stop - style="stop-color:#5abdff;stop-opacity:1" - offset="1" - id="stop1001" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient995"> - <stop - style="stop-color:#bce3ff;stop-opacity:1" - offset="0" - id="stop991" /> - <stop - style="stop-color:#72c6ff;stop-opacity:1" - offset="1" - id="stop993" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient987"> - <stop - style="stop-color:#0d10a2;stop-opacity:1" - offset="0" - id="stop983" /> - <stop - style="stop-color:#7f9fed;stop-opacity:1" - offset="1" - id="stop985" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient981"> - <stop - style="stop-color:#076bff;stop-opacity:1" - offset="0" - id="stop977" /> - <stop - style="stop-color:#99ccff;stop-opacity:1" - offset="1" - id="stop979" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient981" - id="linearGradient975" - x1="97.553375" - y1="233.12257" - x2="98.889725" - y2="82.649834" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient987" - id="linearGradient989" - x1="128.64648" - y1="230.67383" - x2="128.64648" - y2="113.4082" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient995" - id="linearGradient997" - x1="78.019531" - y1="86.542694" - x2="116.40039" - y2="86.542694" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1003" - id="linearGradient1005" - x1="120.40039" - y1="73.587891" - x2="133.20508" - y2="73.587891" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1011" - id="linearGradient1013" - x1="120.40039" - y1="90.518913" - x2="133.20509" - y2="90.518913" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.98994949" - inkscape:cx="-194.19704" - inkscape:cy="290.10296" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata905"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-69.062497,-66.619141)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 126.41797,66.619141 c -2.5546,0 -4.84794,0.474901 -6.68164,1.470703 -1.83371,0.995802 -3.33594,2.756603 -3.33594,4.9375 h -0.0664 c 0,0.08581 0.0629,0.151317 0.0664,0.236328 V 83.697266 L 92.730469,71.923828 a 2.0002,2.0002 0 0 0 -0.01758,-0.0098 c -3.206574,-1.552147 -6.558528,-1.34226 -8.902344,-0.179687 -0.0035,0.0018 -0.0082,0.0021 -0.01172,0.0039 l -8.191406,3.929688 a 2.0002,2.0002 0 0 0 -0.13086,0.07031 c -1.272681,0.731472 -2.688683,1.520325 -3.910156,2.488281 -0.756426,0.599431 -1.416257,1.391119 -1.90039,2.3125 -0.336987,0.544863 -0.603516,1.159161 -0.603516,1.876954 V 201.41406 c 0,6.96534 4.803494,12.24451 9.279297,14.48633 l -0.0332,-0.0156 39.042966,20.46875 a 2.0002,2.0002 0 0 0 0.13086,0.0625 c 3.89703,1.69817 7.78922,0.32528 9.98633,-0.66797 a 2.0002,2.0002 0 0 0 0.0781,-0.0371 l 11.88867,-6.00782 a 2.0002,2.0002 0 0 0 1.09765,-1.78515 V 105.27734 c 0,-3.25182 -1.72995,-6.096447 -3.32812,-8.289059 V 73.503906 c 0.003,-0.07261 0.0332,-0.135542 0.0332,-0.208984 h -0.0332 c 0,-2.295128 -1.67121,-3.896021 -3.61524,-4.966797 -1.94402,-1.070776 -4.43108,-1.708984 -7.17187,-1.708984 z" - id="path967" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1005);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 126.41797,70.619141 c 2.09644,0 4.00228,0.529947 5.24219,1.21289 1.2399,0.682943 1.54492,1.418463 1.54492,1.462891 v 0.115234 c -0.0384,0.8954 -0.4427,1.47304 -1.54688,2.085938 -1.15865,0.643139 -2.99947,1.060547 -4.92382,1.060547 -2.13592,0 -3.88203,-0.49292 -4.94141,-1.171875 -0.95374,-0.611251 -1.31854,-1.248701 -1.39258,-2.097657 v -0.259765 c 0,-0.419069 0.21445,-0.862695 1.24414,-1.421875 1.0297,-0.559181 2.74547,-0.986328 4.77344,-0.986328 z" - id="path965" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient997);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 87.892578,74.884766 c 0.983973,-0.01143 2.095709,0.154311 3.076172,0.628906 l 25.43164,12.65039 v 10.03711 l -38.380859,-19.251953 7.53711,-3.617188 a 2.0002,2.0002 0 0 0 0.02539,-0.01172 c 0.47048,-0.234247 1.326574,-0.424112 2.310547,-0.435545 z" - id="path963" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1013);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 120.40039,79.074219 c 1.80643,0.952605 3.93433,1.482422 6.33399,1.482422 2.30748,0 4.54783,-0.449646 6.4707,-1.417969 v 18.412109 c 0,0.939615 0.004,1.437058 -0.15625,1.878907 -0.1508,0.416243 -0.57867,1.018452 -1.64453,1.878902 -1.78939,1.0094 -4.09045,0.68333 -6.1211,0.14649 -3.16779,-0.95699 -4.55804,-2.481055 -4.88281,-3.259768 V 86.925781 Z" - id="path961" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient975);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 75.316406,82.068359 40.708984,20.417971 c 1.91838,1.10341 4.1957,2.75297 5.89649,4.56055 1.70572,1.81281 2.7246,3.72929 2.7246,5.21679 v 120.19727 c -1.70025,0.60127 -3.77585,1.05719 -5.54882,0.29297 L 80.166016,212.3418 a 2.0002,2.0002 0 0 0 -0.0332,-0.0176 C 76.953924,210.73199 73.0625,206.44672 73.0625,201.41406 V 82.570312 c 0.08471,-0.08219 0.319177,-0.246393 0.636719,-0.365234 0.648707,-0.24278 1.58272,-0.153243 1.617187,-0.136719 z" - id="path959" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#bbe3ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 135.76953,102.60352 c 0.25492,0.60957 0.37497,1.15181 0.48438,1.69336 l -8.25977,4.85351 c -0.49926,-1.31315 -1.32985,-2.47349 -2.23633,-3.58984 2.25038,0.47879 5.03461,0.80562 7.79297,-0.83789 a 2.0002,2.0002 0 0 0 0.20313,-0.13868 c 0.84664,-0.6565 1.4996,-1.31525 2.01562,-1.98046 z" - id="path957" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient989);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 136.5332,108.77148 v 117.91797 l -7.88672,3.98438 V 113.4082 Z" - id="path929" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0066ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 79.744141,98.896484 a 1.250125,1.250125 0 0 0 -1.205079,1.249996 l 0.01172,34.98633 a 1.250125,1.250125 0 0 0 0.689453,1.11719 l 34.869145,17.43359 a 1.250125,1.250125 0 0 0 1.80859,-1.11718 v -34.96289 a 1.250125,1.250125 0 0 0 -0.68945,-1.11914 L 80.347656,99.027344 a 1.250125,1.250125 0 0 0 -0.603515,-0.13086 z" - id="path949" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 81.039062,102.16992 113.41797,118.375 v 32.16797 L 81.050781,134.35938 Z" - id="path931" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0066ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 79.603516,148.625 a 1.250125,1.250125 0 0 0 -1.195313,1.25586 l 0.283203,45.16797 a 1.250125,1.250125 0 0 0 0.699219,1.11328 l 34.583985,17.00977 a 1.250125,1.250125 0 0 0 1.80273,-1.11133 l 0.37696,-44.88477 a 1.250125,1.250125 0 0 0 -0.69922,-1.13281 L 80.208984,148.75 a 1.250125,1.250125 0 0 0 -0.605468,-0.125 z" - id="path953" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 80.921875,151.88477 32.726565,16.05664 -0.35352,42.10937 -32.10742,-15.79101 z" - id="path933" - inkscape:connector-curvature="0" /> - <path - style="opacity:1;fill:#ffffff;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 94.556114,211.95535 c 0,-1.89351 1.356231,-2.16395 2.41099,-1.78393 1.522063,0.60309 2.334675,2.05603 2.334675,4.1692 0,1.58282 -1.099974,2.66766 -2.238213,2.28407 -1.644421,-0.8113 -2.507452,-2.308 -2.507452,-4.66934 z" - id="path935" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="270.127" height="644.787" viewBox="0 0 71.471 170.6"><style><![CDATA[.B{dominant-baseline:auto}]]></style><defs><linearGradient id="A" x1="97.553" y1="233.123" x2="98.89" y2="82.65" xlink:href="#F"><stop offset="0" stop-color="#076bff"/><stop offset="1" stop-color="#9cf"/></linearGradient><linearGradient id="B" x1="128.646" y1="230.674" x2="128.646" y2="113.408" xlink:href="#F"><stop offset="0" stop-color="#0d10a2"/><stop offset="1" stop-color="#7f9fed"/></linearGradient><linearGradient id="C" x1="78.02" y1="86.543" x2="116.4" y2="86.543" xlink:href="#F"><stop offset="0" stop-color="#bce3ff"/><stop offset="1" stop-color="#72c6ff"/></linearGradient><linearGradient id="D" x1="120.4" y1="73.588" x2="133.205" y2="73.588" xlink:href="#F"><stop offset="0" stop-color="#bae2ff"/><stop offset="1" stop-color="#5abdff"/></linearGradient><linearGradient id="E" x1="120.4" y1="90.519" x2="133.205" y2="90.519" xlink:href="#F"><stop offset="0" stop-color="#3940b4"/><stop offset=".5" stop-color="#bde1fd"/><stop offset="1" stop-color="#2d31af"/></linearGradient><linearGradient id="F" gradientUnits="userSpaceOnUse"/></defs><g transform="translate(-69.062 -66.619)"><path d="M126.418 66.62c-2.555 0-4.848.475-6.682 1.47s-3.336 2.757-3.336 4.938h-.066c0 .086.063.15.066.236v10.434L92.73 71.924a2 2 0 0 0-.018-.01c-3.207-1.552-6.56-1.342-8.902-.18l-8.203 3.934a2 2 0 0 0-.131.07c-1.273.73-2.69 1.52-3.9 2.488-.756.6-1.416 1.39-1.9 2.313-.337.545-.604 1.16-.604 1.877v118.998c0 6.965 4.803 12.245 9.28 14.486l-.033-.016 39.043 20.47a2 2 0 0 0 .131.063c3.897 1.698 7.79.325 9.986-.668a2 2 0 0 0 .078-.037l11.89-6.008a2 2 0 0 0 1.098-1.785v-122.64c0-3.252-1.73-6.096-3.328-8.29V73.504c.003-.073.033-.136.033-.21h-.033c0-2.295-1.67-3.896-3.615-4.967s-4.43-1.71-7.172-1.71z" fill="#fff" class="B"/><path d="M126.418 70.62c2.096 0 4.002.53 5.242 1.213s1.545 1.418 1.545 1.463v.115c-.038.895-.443 1.473-1.547 2.086-1.16.643-3 1.06-4.924 1.06-2.136 0-3.882-.493-4.94-1.172-.954-.61-1.32-1.25-1.393-2.098v-.26c0-.42.214-.863 1.244-1.422s2.745-.986 4.773-.986z" fill="url(#D)" class="B"/><path d="M87.893 74.885c.984-.01 2.096.154 3.076.63l25.432 12.65V98.2L78.02 78.95l7.537-3.617a2 2 0 0 0 .025-.012c.47-.234 1.327-.424 2.31-.436z" fill="url(#C)" class="B"/><path d="M120.4 79.074c1.806.953 3.934 1.482 6.334 1.482 2.307 0 4.548-.45 6.47-1.418V97.55c0 .94.004 1.437-.156 1.88-.15.416-.58 1.018-1.645 1.88-1.79 1.01-4.1.683-6.12.146-3.168-.957-4.558-2.48-4.883-3.26v-11.27z" fill="url(#E)" class="B"/><path d="M75.316 82.068l40.71 20.418c1.918 1.103 4.196 2.753 5.896 4.56 1.706 1.813 2.725 3.73 2.725 5.217V232.46c-1.7.6-3.776 1.057-5.55.293l-38.932-20.412a2 2 0 0 0-.033-.018c-3.18-1.592-7.07-5.877-7.07-10.9V82.57c.085-.082.32-.246.637-.365.65-.243 1.583-.153 1.617-.137z" fill="url(#A)" class="B"/><path d="M135.77 102.604c.255.6.375 1.152.484 1.693l-8.26 4.854c-.5-1.313-1.33-2.473-2.236-3.6 2.25.48 5.035.806 7.793-.838a2 2 0 0 0 .203-.139c.847-.656 1.5-1.315 2.016-1.98z" fill="#bbe3ff" class="B"/><path d="M136.533 108.77V226.69l-7.887 3.984V113.408z" fill="url(#B)" class="B"/><path d="M79.744 98.896a1.25 1.25 0 0 0-1.205 1.25l.012 34.986a1.25 1.25 0 0 0 .689 1.117l34.87 17.434a1.25 1.25 0 0 0 1.809-1.117v-34.963a1.25 1.25 0 0 0-.689-1.119l-34.88-17.457a1.25 1.25 0 0 0-.604-.131z" fill="#06f" class="B"/><path d="M81.04 102.17l32.38 16.205v32.168L81.05 134.36z" fill="#fff" class="B"/><path d="M79.604 148.625a1.25 1.25 0 0 0-1.195 1.256l.283 45.168a1.25 1.25 0 0 0 .699 1.113l34.584 17a1.25 1.25 0 0 0 1.803-1.111l.377-44.885a1.25 1.25 0 0 0-.699-1.133L80.21 148.75a1.25 1.25 0 0 0-.605-.125z" fill="#06f" class="B"/><g fill="#fff"><path d="M80.922 151.885l32.727 16.057-.354 42.11-32.107-15.79z" class="B"/><path d="M94.556 211.955c0-1.894 1.356-2.164 2.41-1.784 1.522.603 2.335 2.056 2.335 4.17 0 1.583-1.1 2.668-2.238 2.284-1.644-.81-2.507-2.308-2.507-4.67z"/></g></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/cluster_server.svg b/src/main/webapp/img/lib/active_directory/cluster_server.svg index 055d8244d103b7ac7051e89efababae4b606e702..34980d04266d1c980b245dc4070a9cac3fb17045 100644 --- a/src/main/webapp/img/lib/active_directory/cluster_server.svg +++ b/src/main/webapp/img/lib/active_directory/cluster_server.svg @@ -1,334 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="207.08594mm" - height="207.08789mm" - viewBox="0 0 207.08594 207.08789" - version="1.1" - id="svg1529" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="cluster_server.svg"> - <defs - id="defs1523"> - <linearGradient - inkscape:collect="always" - id="linearGradient2929"> - <stop - style="stop-color:#fec225;stop-opacity:1" - offset="0" - id="stop2925" /> - <stop - style="stop-color:#e3611e;stop-opacity:1" - offset="1" - id="stop2927" /> - </linearGradient> - <linearGradient - gradientTransform="matrix(1.3125998,0,0,1.3125998,-48.817125,-35.428788)" - inkscape:collect="always" - xlink:href="#linearGradient914" - id="linearGradient916" - x1="111.26579" - y1="206.30371" - x2="111.47961" - y2="118.37204" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient914"> - <stop - style="stop-color:#05239a;stop-opacity:1" - offset="0" - id="stop910" /> - <stop - style="stop-color:#91bcf8;stop-opacity:1" - offset="1" - id="stop912" /> - </linearGradient> - <linearGradient - gradientTransform="matrix(1.3125998,0,0,1.3125998,-48.817125,-35.428788)" - inkscape:collect="always" - xlink:href="#linearGradient904" - id="linearGradient908" - gradientUnits="userSpaceOnUse" - x1="83.838669" - y1="200.39299" - x2="83.469749" - y2="127.29478" /> - <linearGradient - inkscape:collect="always" - id="linearGradient904"> - <stop - style="stop-color:#0677fc;stop-opacity:1;" - offset="0" - id="stop900" /> - <stop - style="stop-color:#8fcafe;stop-opacity:1" - offset="1" - id="stop902" /> - </linearGradient> - <linearGradient - gradientTransform="matrix(1.3125998,0,0,1.3125998,-48.817125,-35.428788)" - inkscape:collect="always" - xlink:href="#linearGradient922" - id="linearGradient924" - x1="103.08207" - y1="136.8896" - x2="103.19426" - y2="107.62359" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient922"> - <stop - style="stop-color:#a8defe;stop-opacity:1" - offset="0" - id="stop918" /> - <stop - style="stop-color:#12a7fc;stop-opacity:1" - offset="1" - id="stop920" /> - </linearGradient> - <linearGradient - gradientTransform="matrix(1.3125998,0,0,1.3125998,-5.3356873,-23.850212)" - inkscape:collect="always" - xlink:href="#linearGradient914" - id="linearGradient916-9" - x1="111.26579" - y1="206.30371" - x2="111.47961" - y2="118.37204" - gradientUnits="userSpaceOnUse" /> - <linearGradient - gradientTransform="matrix(1.3125998,0,0,1.3125998,-5.3356873,-23.850212)" - inkscape:collect="always" - xlink:href="#linearGradient904" - id="linearGradient908-2" - gradientUnits="userSpaceOnUse" - x1="83.838669" - y1="200.39299" - x2="83.469749" - y2="127.29478" /> - <linearGradient - gradientTransform="matrix(1.3125998,0,0,1.3125998,-5.3356873,-23.850212)" - inkscape:collect="always" - xlink:href="#linearGradient922" - id="linearGradient924-9" - x1="103.08207" - y1="136.8896" - x2="103.19426" - y2="107.62359" - gradientUnits="userSpaceOnUse" /> - <linearGradient - gradientTransform="matrix(0.54438049,0,0,0.54438049,50.306444,5.0773382)" - inkscape:collect="always" - xlink:href="#linearGradient1255" - id="linearGradient1257" - x1="107.44312" - y1="146.01712" - x2="106.90132" - y2="102.04086" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient1255"> - <stop - style="stop-color:#b0e1fe;stop-opacity:1;" - offset="0" - id="stop1251" /> - <stop - style="stop-color:#10a6fc;stop-opacity:1" - offset="1" - id="stop1253" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1271" - id="linearGradient1273" - x1="107.0851" - y1="186.35414" - x2="107.50749" - y2="132.49252" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.54438049,0,0,0.52996482,50.306444,7.7611786)" /> - <linearGradient - inkscape:collect="always" - id="linearGradient1271"> - <stop - style="stop-color:#0a279b;stop-opacity:1;" - offset="0" - id="stop1267" /> - <stop - style="stop-color:#9abfe9;stop-opacity:1" - offset="1" - id="stop1269" /> - </linearGradient> - <linearGradient - gradientTransform="translate(0.14173179,0.19714039)" - inkscape:collect="always" - xlink:href="#linearGradient2929" - id="linearGradient2923-1" - x1="107.34524" - y1="239.16963" - x2="108.66204" - y2="57.17952" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.7" - inkscape:cx="817.72666" - inkscape:cy="418.6144" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata1526"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-5.5507812,-44.779297)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 109.09375,44.779297 c -57.161694,0 -103.5429688,46.381274 -103.5429688,103.542973 0,57.16169 46.3812748,103.54492 103.5429688,103.54492 57.16169,0 103.54297,-46.38323 103.54297,-103.54492 0,-57.161699 -46.38128,-103.542973 -103.54297,-103.542973 z" - id="path2915" - inkscape:connector-curvature="0" /> - <circle - style="opacity:1;vector-effect:none;fill:url(#linearGradient2923-1);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="path1542-1-4" - cx="109.23512" - cy="148.5202" - r="92.471878" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0073fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 59.59375,86.164062 v 44.593748 h 2.5 V 88.664062 h 91.23828 v 41.560548 h 2.5 V 86.164062 Z" - id="path2907" - inkscape:connector-curvature="0" /> - <path - style="opacity:1;fill:url(#linearGradient916);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 121.19122,210.64163 72.673079,236.45809 V 144.67378 L 121.19122,118.50284 Z" - id="path833" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="opacity:1;fill:url(#linearGradient908);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 72.673079,236.45809 48.424652,223.06253 v -91.66028 l 24.248427,13.27153" - id="path835" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccc" /> - <path - style="opacity:1;fill:url(#linearGradient924);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 121.19122,118.50284 72.673079,144.67378 48.424652,131.40225 96.791233,105.59201 Z" - id="path837" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.96889973;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 55.344853,162.54911 v 1.73562 l 8.704203,4.77561 v -1.73561 z" - id="path839" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.96889973;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 55.344853,171.31009 v 1.73561 l 8.704203,4.77562 v -1.73562 z" - id="path839-0" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - id="path830" - style="opacity:1;fill:none;stroke:#ffffff;stroke-width:3.93779945;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 72.673079,144.67378 48.518141,-26.17094 z m 0,91.78431 V 144.67378 L 48.424652,131.40225 M 72.673079,236.45809 48.424652,223.06253 v -91.66028 l 48.366581,-25.81024 24.399987,12.91083 v 92.13879 z" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccccccc" /> - <path - style="opacity:1;fill:url(#linearGradient916-9);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 164.67265,222.2202 -48.51813,25.81646 v -91.7843 l 48.51813,-26.17094 z" - id="path833-2" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="opacity:1;fill:url(#linearGradient908-2);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 116.15452,248.03666 91.906088,234.6411 v -91.66028 l 24.248432,13.27154" - id="path835-2" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccc" /> - <path - style="opacity:1;fill:url(#linearGradient924-9);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 164.67265,130.08142 116.15452,156.25236 91.906088,142.98082 140.27267,117.17059 Z" - id="path837-1" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.96889973;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 98.82629,174.12769 v 1.73561 l 8.7042,4.77561 v -1.7356 z" - id="path839-1" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.96889973;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 98.82629,182.88867 v 1.73561 l 8.7042,4.77562 v -1.73562 z" - id="path839-0-3" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - id="path830-7" - style="opacity:1;fill:none;stroke:#ffffff;stroke-width:3.93779945;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 116.15452,156.25236 48.51813,-26.17094 z m 0,91.7843 v -91.7843 L 91.906088,142.98082 M 116.15452,248.03666 91.906088,234.6411 v -91.66028 l 48.366582,-25.81023 24.39998,12.91083 v 92.13878 z" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1257);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.69299483;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 108.50144,60.62639 h 0.001 10e-4 c 7.49756,-0.01377 16.52115,1.186608 23.51163,3.361811 3.49524,1.087596 6.48393,2.43417 8.45983,3.869332 1.9759,1.435172 2.74722,2.758076 2.74722,3.882053 -2.9e-4,1.731245 -0.83991,3.330798 -2.73927,4.982296 -1.89937,1.65152 -4.79052,3.170782 -8.26327,4.390842 -6.9455,2.440126 -16.19168,3.730691 -24.708,3.730691 -9.531353,0 -18.527339,-1.60568 -24.988634,-4.133897 -3.230915,-1.264117 -5.822188,-2.769362 -7.495494,-4.296719 -1.6733,-1.527352 -2.342752,-2.926454 -2.342752,-4.180962 0,-0.679245 0.39509,-1.780353 1.682647,-3.090895 1.287558,-1.310525 3.397506,-2.741157 6.342028,-4.015601 5.889081,-2.548877 15.096117,-4.498951 27.791575,-4.498951 z" - id="path1239" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1273);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.58197069;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 142.84904,76.169504 0.13902,19.60517 c -5.16791,6.297656 -18.60545,10.652716 -34.90907,10.652716 -6.16928,0 -13.557407,-0.67643 -20.114285,-2.42306 -6.325995,-1.68512 -11.7571,-4.440855 -14.7208,-8.14598 l -0.03364,-19.532407 c 0.0448,0.0405 0.07904,0.0873 0.12444,0.127336 2.122643,1.872135 4.996276,3.425514 8.436069,4.726056 6.879587,2.601082 16.046415,4.149994 25.792496,4.149994 8.70881,0 18.06353,-1.233574 25.41136,-3.727953 3.67391,-1.247197 6.85226,-2.797522 9.23428,-4.798828 0.23319,-0.195917 0.42178,-0.425308 0.64012,-0.633044 z" - id="path1217-9" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.26628304;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 108.46159,59.551538 c -12.175093,3.05e-4 -21.133859,1.641149 -27.182874,3.979715 -3.02479,1.169395 -5.326877,2.50819 -6.953611,3.987163 -1.626734,1.478973 -2.644285,3.17241 -2.644285,5.000435 v 0.0011 l 0.0436,24.288726 0.355126,0.444437 c 3.504346,4.404896 9.511705,6.998756 16.090053,8.618646 6.578354,1.61989 13.789381,2.21899 19.858191,2.21899 16.31834,0 30.05837,-3.57455 36.01417,-10.904622 l 0.37001,-0.455069 -0.18819,-24.62365 c 0,-2.503492 -1.75102,-4.487318 -4.05946,-5.984996 -2.30844,-1.497672 -5.35292,-2.677764 -8.82067,-3.641601 -6.93453,-1.927406 -15.55242,-2.941015 -22.87886,-2.929235 z m 0.003,3.266283 h 0.001 10e-4 c 7.0164,-0.01154 15.46089,0.991888 22.00276,2.810152 3.27093,0.909126 6.06781,2.034726 7.91691,3.234383 1.84909,1.199662 2.57091,2.305484 2.57091,3.245019 -2.8e-4,1.447154 -0.786,2.784223 -2.56347,4.164723 -1.77748,1.3805 -4.48308,2.650464 -7.73297,3.670317 -6.49977,2.039707 -15.15257,3.118489 -23.12235,3.118489 -8.919663,0 -17.338328,-1.342192 -23.384969,-3.455537 -3.023446,-1.056675 -5.448421,-2.314918 -7.014343,-3.591637 -1.565916,-1.276719 -2.192405,-2.446228 -2.192405,-3.494879 0,-0.567784 0.369738,-1.488201 1.574664,-2.583685 1.204926,-1.095478 3.179465,-2.291346 5.935021,-3.356656 5.511129,-2.130612 14.127295,-3.760689 26.008012,-3.760689 z m 32.5395,15.478692 0.13184,17.188392 c -4.90132,5.521335 -17.6457,9.339525 -33.10833,9.339525 -5.85104,0 -12.858056,-0.59304 -19.076705,-2.12436 -5.999672,-1.47739 -11.150622,-3.89342 -13.961443,-7.141804 l -0.0319,-17.124596 c 0.04246,0.03549 0.07497,0.07654 0.118016,0.111641 2.013152,1.641357 4.738549,3.003239 8.000907,4.14346 6.524711,2.28044 15.21868,3.638419 24.462035,3.638419 8.25956,0 17.13173,-1.081516 24.10053,-3.268409 3.4844,-1.093448 6.49879,-2.452663 8.75793,-4.207256 0.22118,-0.171773 0.40003,-0.372878 0.60711,-0.555012 z" - id="path1217" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0073fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:15.11811066;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 412.32227,184.36328 c -207.87377,0 -376.224614,168.35083 -376.224614,376.22461 0,207.87375 168.350844,376.23242 376.224614,376.23242 207.87375,0 376.22656,-168.35867 376.22656,-376.23242 0,-207.87378 -168.35281,-376.22461 -376.22656,-376.22461 z m 0,26.72852 a 349.49998,349.49998 0 0 1 349.5,349.5 349.49998,349.49998 0 0 1 -349.5,349.5 349.49998,349.49998 0 0 1 -349.500004,-349.5 349.49998,349.49998 0 0 1 349.500004,-349.5 z" - id="path1542" - transform="scale(0.26458333)" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="782.687" height="782.695" viewBox="0 0 207.086 207.088"><style><![CDATA[.B{dominant-baseline:auto}.C{stroke-width:3.938}]]></style><defs><linearGradient xlink:href="#B" id="A" x1="97.23" y1="235.365" x2="97.511" y2="119.946"/><linearGradient id="B" xlink:href="#N"><stop offset="0" stop-color="#05239a"/><stop offset="1" stop-color="#91bcf8"/></linearGradient><linearGradient xlink:href="#D" id="C" x1="61.229" y1="227.607" x2="60.745" y2="131.658"/><linearGradient id="D" xlink:href="#N"><stop offset="0" stop-color="#0677fc"/><stop offset="1" stop-color="#8fcafe"/></linearGradient><linearGradient xlink:href="#F" id="E" x1="86.488" y1="144.252" x2="86.636" y2="105.838"/><linearGradient id="F" xlink:href="#N"><stop offset="0" stop-color="#a8defe"/><stop offset="1" stop-color="#12a7fc"/></linearGradient><linearGradient xlink:href="#B" id="G" x1="140.712" y1="246.944" x2="140.992" y2="131.525"/><linearGradient xlink:href="#D" id="H" x1="104.711" y1="239.186" x2="104.227" y2="143.237"/><linearGradient xlink:href="#F" id="I" x1="129.97" y1="155.831" x2="130.117" y2="117.416"/><linearGradient id="J" x1="108.796" y1="84.566" x2="108.501" y2="60.626" xlink:href="#N"><stop offset="0" stop-color="#b0e1fe"/><stop offset="1" stop-color="#10a6fc"/></linearGradient><linearGradient id="K" x1="108.601" y1="106.522" x2="108.831" y2="77.978" xlink:href="#N"><stop offset="0" stop-color="#0a279b"/><stop offset="1" stop-color="#9abfe9"/></linearGradient><linearGradient id="L" x1="107.487" y1="239.367" x2="108.804" y2="57.377" xlink:href="#N"><stop offset="0" stop-color="#fec225"/><stop offset="1" stop-color="#e3611e"/></linearGradient><path id="M" d="M55.345 162.55v1.736l8.704 4.776v-1.736z"/><linearGradient id="N" gradientUnits="userSpaceOnUse"/></defs><g transform="translate(-5.551 -44.779)"><path d="M109.094 44.78C51.932 44.78 5.55 91.16 5.55 148.322s46.38 103.545 103.543 103.545 103.543-46.383 103.543-103.545S166.255 44.78 109.094 44.78z" fill="#fff" paint-order="normal" class="B"/><circle cx="109.235" cy="148.52" r="92.472" fill="url(#L)" paint-order="normal"/><path d="M59.594 86.164v44.594h2.5V88.664h91.238v41.56h2.5v-44.06z" fill="#0073fc" class="B"/><path d="M121.19 210.642l-48.518 25.816v-91.784l48.518-26.17z" fill="url(#A)"/><path d="M72.673 236.458l-24.248-13.396v-91.66l24.248 13.272" fill="url(#C)"/><path d="M121.19 118.503l-48.518 26.17-24.248-13.272 48.367-25.8z" fill="url(#E)"/><g fill="#fff" class="B"><use xlink:href="#M"/><use xlink:href="#M" y="8.75"/></g><path d="M72.673 144.674l48.518-26.17zm0 91.784v-91.784l-24.248-13.272m24.248 105.056l-24.248-13.396v-91.66l48.367-25.8 24.4 12.91v92.14z" fill="none" stroke="#fff" class="C"/><path d="M164.673 222.22l-48.518 25.816v-91.784l48.518-26.17z" fill="url(#G)"/><path d="M116.155 248.037L91.906 234.64v-91.66l24.248 13.272" fill="url(#H)"/><path d="M164.673 130.08l-48.518 26.17-24.248-13.272 48.367-25.8z" fill="url(#I)"/><g fill="#fff" class="B"><use xlink:href="#M" x="43.481" y="11.578"/><use xlink:href="#M" x="43.481" y="20.34"/></g><path d="M116.155 156.252l48.518-26.17zm0 91.784v-91.784L91.906 142.98m24.248 105.056L91.906 234.64v-91.66l48.367-25.8 24.4 12.91v92.14z" fill="none" stroke="#fff" class="C"/><path d="M108.5 60.626h.002c7.498-.014 16.52 1.187 23.512 3.362 3.495 1.088 6.484 2.434 8.46 3.87s2.747 2.758 2.747 3.882c0 1.73-.84 3.33-2.74 4.982s-4.79 3.17-8.263 4.39c-6.946 2.44-16.192 3.73-24.708 3.73-9.53 0-18.527-1.606-24.99-4.134-3.23-1.264-5.822-2.77-7.495-4.297s-2.343-2.926-2.343-4.18c0-.68.395-1.78 1.683-3.09s3.398-2.74 6.342-4.016c5.89-2.55 15.096-4.5 27.792-4.5z" fill="url(#J)" class="B"/><path d="M142.85 76.17l.14 19.605c-5.168 6.298-18.605 10.653-34.91 10.653-6.17 0-13.557-.676-20.114-2.423-6.326-1.685-11.757-4.44-14.72-8.146L73.2 76.326c.045.04.08.087.124.127 2.123 1.872 4.996 3.426 8.436 4.726 6.88 2.6 16.046 4.15 25.792 4.15 8.71 0 18.064-1.234 25.41-3.728 3.674-1.247 6.852-2.798 9.234-4.8.233-.196.422-.425.64-.633z" fill="url(#K)" class="B"/><path d="M108.462 59.552c-12.175 0-21.134 1.64-27.183 3.98-3.025 1.17-5.327 2.508-6.954 3.987s-2.644 3.172-2.644 5h0l.044 24.29.355.444c3.504 4.405 9.512 7 16.1 8.62s13.79 2.22 19.858 2.22c16.318 0 30.058-3.575 36.014-10.905l.37-.455-.188-24.624c0-2.503-1.75-4.487-4.06-5.985s-5.353-2.678-8.82-3.642c-6.935-1.927-15.552-2.94-22.88-2.93zm.003 3.266h.002c7.016-.012 15.46.992 22.003 2.8 3.27.91 6.068 2.035 7.917 3.234s2.57 2.305 2.57 3.245c0 1.447-.786 2.784-2.563 4.165s-4.483 2.65-7.733 3.67c-6.5 2.04-15.153 3.118-23.122 3.118-8.92 0-17.338-1.342-23.385-3.456-3.023-1.057-5.448-2.315-7.014-3.592s-2.192-2.446-2.192-3.495c0-.568.37-1.488 1.575-2.584s3.18-2.29 5.935-3.357c5.51-2.13 14.127-3.76 26.008-3.76zm32.54 15.48l.132 17.188c-4.9 5.52-17.646 9.34-33.108 9.34-5.85 0-12.858-.593-19.077-2.124-6-1.477-11.15-3.893-13.96-7.142l-.032-17.125c.042.035.075.077.118.112 2.013 1.64 4.74 3.003 8 4.143 6.525 2.28 15.22 3.638 24.462 3.638 8.26 0 17.132-1.082 24.1-3.268 3.484-1.093 6.5-2.453 8.758-4.207.22-.172.4-.373.607-.555z" fill="#fff" class="B"/><path d="M109.094 48.78c-55 0-99.543 44.543-99.543 99.543s44.543 99.545 99.543 99.545 99.543-44.545 99.543-99.545-44.543-99.543-99.543-99.543zm0 7.072a92.47 92.47 0 0 1 92.472 92.472 92.47 92.47 0 0 1-92.472 92.472 92.47 92.47 0 0 1-92.472-92.472 92.47 92.47 0 0 1 92.472-92.472z" fill="#0073fc" paint-order="normal" class="B"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/community_discussion.svg b/src/main/webapp/img/lib/active_directory/community_discussion.svg index acaea05e9697c1ee9ef9fdcd05ea8441603a4e7d..c637889224a38fda763b249e8ba0a3bb04aacf8d 100644 --- a/src/main/webapp/img/lib/active_directory/community_discussion.svg +++ b/src/main/webapp/img/lib/active_directory/community_discussion.svg @@ -1,212 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="128.59189mm" - height="116.34439mm" - viewBox="0 0 128.59189 116.3444" - version="1.1" - id="svg1243" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="community_discussion.svg"> - <defs - id="defs1237"> - <linearGradient - inkscape:collect="always" - id="linearGradient3529"> - <stop - style="stop-color:#feffff;stop-opacity:0.99497485" - offset="0" - id="stop3525" /> - <stop - style="stop-color:#bddeff;stop-opacity:1" - offset="1" - id="stop3527" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3869"> - <stop - style="stop-color:#0f2da0;stop-opacity:1" - offset="0" - id="stop3865" /> - <stop - style="stop-color:#89b3f3;stop-opacity:1" - offset="1" - id="stop3867" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3855"> - <stop - style="stop-color:#1c84fd;stop-opacity:1" - offset="0" - id="stop3851" /> - <stop - style="stop-color:#89c6fe;stop-opacity:1" - offset="1" - id="stop3853" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3839"> - <stop - style="stop-color:#98cffe;stop-opacity:1" - offset="0" - id="stop3835" /> - <stop - style="stop-color:#98cffe;stop-opacity:1" - offset="1" - id="stop3837" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3829"> - <stop - style="stop-color:#1b82fc;stop-opacity:1" - offset="0" - id="stop3825" /> - <stop - style="stop-color:#deedff;stop-opacity:1" - offset="1" - id="stop3827" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3829" - id="linearGradient3833" - gradientUnits="userSpaceOnUse" - x1="146.38016" - y1="172.71407" - x2="145.91211" - y2="150.67383" - gradientTransform="translate(179.0665,-13.503262)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3839" - id="linearGradient3841" - x1="155.56055" - y1="184.05859" - x2="155.92169" - y2="171.40445" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(179.0665,-13.503262)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3855" - id="linearGradient3849" - x1="137.96117" - y1="220.98294" - x2="138.27792" - y2="174.14363" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(179.0665,-13.503262)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3869" - id="linearGradient3863" - x1="165.56107" - y1="220.33961" - x2="165.03191" - y2="180.51982" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(179.0665,-13.503262)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3529" - id="linearGradient3531" - x1="231.57036" - y1="122.90528" - x2="306.25391" - y2="122.90528" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="1.4142136" - inkscape:cx="143.98924" - inkscape:cy="255.43085" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata1240"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-227.57031,-96.353516)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 318.7247,144.7858 -21.38867,11.25977 0.39844,40.15625 1.17187,0.52148 35.78516,15.97461 21.28125,-11.35547 0.18945,-40.16211 z" - id="path3809" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient3841);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 318.88486,149.22135 30.67383,13.43359 -14.93164,7.90039 -30.67578,-13.47265 z" - id="path3807" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient3849);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 301.379,160.32096 31.32422,13.75781 -0.082,33.31445 -30.91211,-13.79882 z" - id="path3805" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient3863);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 352.14072,165.81315 -0.1582,33.125 -15.36133,8.19726 0.082,-33.15429 z" - id="path3732" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 324.97861,133.17057 c -8.41704,0 -15.2832,6.86616 -15.2832,15.2832 0,8.41704 6.86616,15.2832 15.2832,15.2832 8.41704,0 15.2832,-6.86616 15.2832,-15.2832 0,-8.41704 -6.86616,-15.2832 -15.2832,-15.2832 z" - id="path3801" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient3833);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 324.97861,137.17057 c 6.25528,0 11.2832,5.02792 11.2832,11.2832 0,6.25528 -5.02792,11.2832 -11.2832,11.2832 -6.25528,0 -11.2832,-5.02792 -11.2832,-11.2832 0,-6.25528 5.02792,-11.2832 11.2832,-11.2832 z" - id="path3736" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 269.82617,96.353516 c -8.08337,0 -18.30619,1.83419 -26.74609,5.451174 -4.21996,1.80849 -8.00009,4.06107 -10.82031,6.88086 -2.82023,2.81978 -4.68946,6.31772 -4.68946,10.27734 0,3.78989 1.73532,7.15582 4.28711,9.91602 2.55179,2.7602 5.93449,5.00784 9.58985,6.83007 7.30916,3.6437 15.64627,5.60269 21.14453,5.60352 0.001,0 0.003,0 0.004,0 7.25706,0.11271 13.05893,-0.0699 20.36914,-1.27734 l 24.67383,12.3164 a 2.0002,2.0002 0 0 0 2.56445,-2.88672 l -10.1582,-15.46093 c 2.28067,-1.22278 4.44555,-2.87033 6.1875,-5.00977 2.31512,-2.84339 4.02149,-6.20465 4.02149,-9.63476 0,-3.94155 -1.66435,-7.46508 -4.26172,-10.34571 -2.59738,-2.88063 -6.11557,-5.19861 -10.08789,-7.05664 -7.94465,-3.716059 -17.74535,-5.603514 -26.07813,-5.603514 z" - id="path3523" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient3531);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 269.82617,100.35352 c 7.71474,0 17.1269,1.83174 24.38477,5.22656 3.62893,1.69741 6.70995,3.78361 8.81054,6.11328 2.1006,2.32967 3.23243,4.8243 3.23243,7.66602 0,1.99438 -1.21307,4.75921 -3.125,7.10742 -1.91194,2.3482 -4.48703,4.25977 -6.55664,4.92773 a 2.0002,2.0002 0 0 0 -1.05665,3.00195 l 7.26758,11.06055 -18.55468,-9.26367 a 2.0002,2.0002 0 0 0 -1.23438,-0.18164 c -7.40588,1.28004 -12.92463,1.41708 -20.36719,1.30078 a 2.0002,2.0002 0 0 0 -0.0312,0 c -4.48289,0 -12.65688,-1.84038 -19.36328,-5.18359 -3.3532,-1.67161 -6.35669,-3.7141 -8.4375,-5.96485 -2.08081,-2.25075 -3.22461,-4.6162 -3.22461,-7.20117 0,-2.72805 1.21904,-5.15104 3.51758,-7.44922 2.29854,-2.29818 5.66776,-4.36157 9.56836,-6.0332 7.8012,-3.34326 17.70687,-5.12695 25.16992,-5.12695 z" - id="path3517" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="486.017" height="439.725" viewBox="0 0 128.592 116.344"><style><![CDATA[.B{dominant-baseline:auto}]]></style><defs><linearGradient id="A" x1="325.447" y1="159.211" x2="324.979" y2="137.171" xlink:href="#F"><stop offset="0" stop-color="#1b82fc"/><stop offset="1" stop-color="#deedff"/></linearGradient><linearGradient id="B" x1="334.627" y1="170.555" x2="334.988" y2="157.901" xlink:href="#F"><stop offset="0" stop-color="#98cffe"/><stop offset="1" stop-color="#98cffe"/></linearGradient><linearGradient id="C" x1="317.028" y1="207.48" x2="317.344" y2="160.64" xlink:href="#F"><stop offset="0" stop-color="#1c84fd"/><stop offset="1" stop-color="#89c6fe"/></linearGradient><linearGradient id="D" x1="344.628" y1="206.836" x2="344.098" y2="167.017" xlink:href="#F"><stop offset="0" stop-color="#0f2da0"/><stop offset="1" stop-color="#89b3f3"/></linearGradient><linearGradient id="E" x1="231.57" y1="122.905" x2="306.254" y2="122.905" xlink:href="#F"><stop offset="0" stop-color="#feffff" stop-opacity=".995"/><stop offset="1" stop-color="#bddeff"/></linearGradient><linearGradient id="F" gradientUnits="userSpaceOnUse"/></defs><g transform="translate(-227.57 -96.354)" class="B"><path d="M318.725 144.786l-21.39 11.26.398 40.156 1.172.52 35.785 15.975 21.28-11.355.19-40.162z" fill="#fff"/><path d="M318.885 149.22l30.674 13.434-14.932 7.9-30.676-13.473z" fill="url(#B)"/><path d="M301.38 160.32l31.324 13.758-.082 33.314-30.912-13.8z" fill="url(#C)"/><path d="M352.14 165.813l-.158 33.125-15.36 8.197.082-33.154z" fill="url(#D)"/><path d="M324.98 133.17c-8.417 0-15.283 6.866-15.283 15.283s6.866 15.283 15.283 15.283 15.283-6.866 15.283-15.283-6.866-15.283-15.283-15.283z" fill="#fff" paint-order="normal"/><path d="M324.98 137.17c6.255 0 11.283 5.028 11.283 11.283s-5.028 11.283-11.283 11.283-11.283-5.028-11.283-11.283 5.028-11.283 11.283-11.283z" fill="url(#A)" paint-order="normal"/><path d="M269.826 96.354c-8.083 0-18.306 1.834-26.746 5.45-4.22 1.808-8 4.06-10.82 6.88s-4.69 6.318-4.69 10.277c0 3.8 1.735 7.156 4.287 9.916s5.934 5.008 9.6 6.83c7.31 3.644 15.646 5.603 21.145 5.604 7.26.113 13.063-.07 20.373-1.277l24.674 12.316a2 2 0 0 0 2.564-2.887l-10.158-15.46c2.28-1.223 4.446-2.87 6.188-5 2.315-2.843 4.02-6.205 4.02-9.635 0-3.942-1.664-7.465-4.262-10.346s-6.116-5.2-10.088-7.057c-7.945-3.716-17.745-5.604-26.078-5.604z" fill="#fff"/><path d="M269.826 100.354c7.715 0 17.127 1.832 24.385 5.227 3.63 1.697 6.7 3.784 8.81 6.113s3.232 4.824 3.232 7.666c0 1.994-1.213 4.76-3.125 7.107s-4.487 4.26-6.557 4.928a2 2 0 0 0-1.057 3.002l7.268 11.06-18.555-9.264a2 2 0 0 0-1.234-.182c-7.406 1.28-12.925 1.417-20.367 1.3a2 2 0 0 0-.031 0c-4.483 0-12.657-1.84-19.363-5.184-3.353-1.672-6.357-3.714-8.437-5.965s-3.225-4.616-3.225-7.2c0-2.728 1.22-5.15 3.518-7.45s5.668-4.362 9.568-6.033c7.8-3.343 17.707-5.127 25.17-5.127z" fill="url(#E)"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/data_jack.svg b/src/main/webapp/img/lib/active_directory/data_jack.svg index 232a2a4cb625cd5da33402e6979f2d6535d957bc..db8a5a5e1d5e7866c907b50b91a43a2285546480 100644 --- a/src/main/webapp/img/lib/active_directory/data_jack.svg +++ b/src/main/webapp/img/lib/active_directory/data_jack.svg @@ -1,109 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="106.36523mm" - height="193.92773mm" - viewBox="0 0 106.36523 193.92773" - version="1.1" - id="svg1726" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="data_jack.svg"> - <defs - id="defs1720"> - <linearGradient - inkscape:collect="always" - id="linearGradient1774"> - <stop - style="stop-color:#0475fc;stop-opacity:1" - offset="0" - id="stop1770" /> - <stop - style="stop-color:#94ccfe;stop-opacity:1" - offset="1" - id="stop1772" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1774" - id="linearGradient1768" - x1="103.96785" - y1="239.26978" - x2="103.16604" - y2="60.466461" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.98994949" - inkscape:cx="71.665261" - inkscape:cy="347.34222" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata1723"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-50.785156,-52.904297)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 50.785156,52.904297 V 56.189453 191.84375 L 157.15039,246.83203 V 107.89258 Z" - id="path1754" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1768);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 54.785156,59.474609 153.15039,110.32617 V 240.26172 L 54.785156,189.41016 Z" - id="path1739" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0073fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 86.615234,121.67969 v 2.09765 42.10938 l 24.316406,12.92187 v -43.98437 z" - id="path1760" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 89.115234,125.875 19.316406,10.43945 v 38.33399 L 89.115234,164.38477 Z" - id="path1741" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0073fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 94.890521,144.66271 -0.01953,3.98965 1.617187,0.86348 v 5.17383 l 4.000002,2.1159 v -5.15625 l 1.59961,0.85418 0.0176,-3.9907 z" - id="path1745" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="402.009" height="732.956" viewBox="0 0 106.365 193.928"><style><![CDATA[.B{dominant-baseline:auto}]]></style><defs><linearGradient id="A" x1="103.968" y1="239.27" x2="103.166" y2="60.466" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#0475fc"/><stop offset="1" stop-color="#94ccfe"/></linearGradient></defs><path d="M0 0v138.94l106.365 54.988V54.99z" fill="#fff" class="B"/><path d="M54.785 59.475l98.365 50.852v129.936L54.785 189.4z" fill="url(#A)" transform="translate(-50.785 -52.904)" class="B"/><path d="M35.83 68.776v44.207l24.316 12.922V81.92z" fill="#0073fc" class="B"/><path d="M38.33 72.97L57.647 83.4v38.334L38.33 111.48z" fill="#fff" class="B"/><path d="M44.106 91.76l-.02 4 1.617.863v5.174l4 2.116v-5.156l1.6.854.018-3.99z" fill="#0073fc" class="B"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/database.svg b/src/main/webapp/img/lib/active_directory/database.svg index 50bb4bac469d896e7bc28dc8b62723cd2479b60b..5afcd37d789147b97a9f3dfe8da2e4af6cd41d51 100644 --- a/src/main/webapp/img/lib/active_directory/database.svg +++ b/src/main/webapp/img/lib/active_directory/database.svg @@ -1,121 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="133.60352mm" - height="89.164246mm" - viewBox="0 0 133.60352 89.164246" - version="1.1" - id="svg8" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="database.svg"> - <defs - id="defs2"> - <linearGradient - inkscape:collect="always" - id="linearGradient1271"> - <stop - style="stop-color:#0a279b;stop-opacity:1;" - offset="0" - id="stop1267" /> - <stop - style="stop-color:#9abfe9;stop-opacity:1" - offset="1" - id="stop1269" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1255"> - <stop - style="stop-color:#b0e1fe;stop-opacity:1;" - offset="0" - id="stop1251" /> - <stop - style="stop-color:#10a6fc;stop-opacity:1" - offset="1" - id="stop1253" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1255" - id="linearGradient1257" - x1="107.44312" - y1="146.01712" - x2="106.90132" - y2="102.04086" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1271" - id="linearGradient1273" - x1="107.0851" - y1="186.35414" - x2="107.50749" - y2="132.49252" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.97351913,0,4.9300842)" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="1.4" - inkscape:cx="226.06054" - inkscape:cy="77.55235" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata5"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-39.263672,-100.06627)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1257);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6.78384876;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 106.90132,102.04086 h 0.002 0.002 c 13.77264,-0.0253 30.34853,2.17974 43.18969,6.17548 6.42059,1.99786 11.91065,4.47145 15.54029,7.10777 3.62963,2.63634 5.04651,5.06645 5.04651,7.13114 -5.7e-4,3.18021 -1.54287,6.11851 -5.03191,9.15223 -3.48904,3.03376 -8.79995,5.82457 -15.17922,8.06576 -12.75854,4.48239 -29.7433,6.85309 -45.38737,6.85309 -17.508617,0 -34.033798,-2.94955 -45.902882,-7.59376 -5.934792,-2.32212 -10.694832,-5.08718 -13.768609,-7.89286 -3.073778,-2.80567 -4.303526,-5.37575 -4.303526,-7.68022 0,-1.24774 0.725762,-3.27042 3.090942,-5.67782 2.365179,-2.40737 6.241049,-5.03537 11.64999,-7.37646 10.817914,-4.68216 27.730781,-8.26435 51.051705,-8.26435 z" - id="path1239" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1273);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6.57990265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 169.99617,130.59279 0.25537,36.01372 c -9.49319,11.56849 -34.17729,19.56851 -64.12624,19.56851 -11.332658,0 -24.90428,-1.24257 -36.948938,-4.45104 -11.620537,-3.09549 -21.597208,-8.15763 -27.041385,-14.96376 l -0.06178,-35.88006 c 0.08225,0.0744 0.145201,0.16036 0.228589,0.23391 3.899192,3.43902 9.17791,6.2925 15.496642,8.68153 12.637465,4.77806 29.476471,7.62333 47.379552,7.62333 15.99764,0 33.18181,-2.26601 46.6794,-6.84806 6.74879,-2.29104 12.58726,-5.13891 16.96291,-8.81521 0.42837,-0.35989 0.77479,-0.78127 1.17588,-1.16287 z" - id="path1217-9" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 106.82812,100.06641 c -22.365039,5.6e-4 -38.821852,3.01471 -49.933589,7.31054 -5.556387,2.14812 -9.785209,4.60742 -12.773437,7.32422 -2.988229,2.7168 -4.857422,5.82756 -4.857422,9.18555 v 0.002 l 0.08008,44.61719 0.652344,0.81641 c 6.437314,8.09157 17.472537,12.85637 29.55664,15.83203 12.084104,2.97566 25.33039,4.07617 36.478514,4.07617 29.97597,0 55.21573,-6.56627 66.15625,-20.03125 l 0.67969,-0.83594 -0.34571,-45.23242 c 0,-4.59879 -3.21652,-8.24298 -7.45703,-10.99414 -4.2405,-2.75116 -9.83303,-4.91893 -16.20312,-6.68945 -12.7384,-3.54055 -28.56904,-5.4025 -42.02735,-5.38086 z m 0.006,6 h 0.002 0.002 c 12.88878,-0.0212 28.40089,1.82205 40.41797,5.16211 6.00854,1.67002 11.14627,3.73769 14.54297,5.9414 3.3967,2.20372 4.72265,4.23506 4.72265,5.96094 -4e-4,2.65835 -1.44385,5.11448 -4.70898,7.65039 -3.26513,2.53591 -8.2352,4.86877 -14.20508,6.74219 -11.93976,3.74684 -27.83451,5.72851 -42.47461,5.72851 -16.384985,0 -31.84965,-2.46554 -42.957029,-6.34765 -5.553689,-1.94106 -10.00825,-4.25239 -12.884765,-6.59766 -2.876516,-2.34527 -4.027344,-4.4936 -4.027344,-6.41992 0,-1.04299 0.679186,-2.73375 2.892578,-4.7461 2.213392,-2.01234 5.840526,-4.20909 10.902344,-6.16601 10.123635,-3.91383 25.951102,-6.9082 47.775386,-6.9082 z m 59.77344,28.43359 0.24219,31.57422 c -9.00349,10.14241 -32.41429,17.15625 -60.81836,17.15625 -10.748077,0 -23.619625,-1.08939 -35.042969,-3.90235 -11.021103,-2.7139 -20.483138,-7.15202 -25.646484,-13.11914 l -0.05859,-31.45703 c 0.07801,0.0652 0.137711,0.1406 0.216797,0.20508 3.698057,3.01509 8.704478,5.5168 14.697266,7.61133 11.985575,4.18905 27.955963,6.68359 44.93554,6.68359 15.17241,0 31.47015,-1.98669 44.27149,-6.0039 6.40066,-2.00861 11.93796,-4.50542 16.08789,-7.72852 0.40628,-0.31554 0.73483,-0.68496 1.11523,-1.01953 z" - id="path1217" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="504.96" height="336.998" viewBox="0 0 133.604 89.164"><defs><linearGradient id="A" x1="107.443" y1="146.017" x2="106.901" y2="102.041" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#b0e1fe"/><stop offset="1" stop-color="#10a6fc"/></linearGradient><linearGradient id="B" x1="107.085" y1="186.349" x2="107.507" y2="133.914" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#0a279b"/><stop offset="1" stop-color="#9abfe9"/></linearGradient></defs><g transform="translate(-39.264 -100.066)"><path d="M106.9 102.04h.004c13.773-.025 30.35 2.18 43.2 6.175 6.42 1.998 11.91 4.47 15.54 7.108s5.047 5.066 5.047 7.13c-.001 3.18-1.543 6.12-5.032 9.152s-8.8 5.825-15.18 8.066c-12.76 4.482-29.743 6.853-45.387 6.853-17.51 0-34.034-2.95-45.903-7.594-5.935-2.322-10.695-5.087-13.77-7.893s-4.304-5.376-4.304-7.68c0-1.248.726-3.27 3.09-5.678s6.24-5.035 11.65-7.376c10.818-4.682 27.73-8.264 51.052-8.264z" dominant-baseline="auto" fill="url(#A)"/><path d="M169.996 130.593l.255 36.014c-9.493 11.568-34.177 19.57-64.126 19.57-11.333 0-24.904-1.243-36.95-4.45-11.62-3.095-21.597-8.158-27.04-14.964l-.062-35.88c.082.074.145.16.23.234 3.9 3.44 9.178 6.292 15.497 8.682 12.637 4.778 29.476 7.623 47.38 7.623 15.998 0 33.182-2.266 46.68-6.848 6.75-2.29 12.587-5.14 16.963-8.815.428-.36.775-.78 1.176-1.163z" dominant-baseline="auto" fill="url(#B)"/><path d="M106.828 100.066c-22.365.001-38.822 3.015-49.934 7.31-5.556 2.148-9.785 4.607-12.773 7.324s-4.857 5.828-4.857 9.186v.002l.08 44.617.652.816c6.437 8.092 17.473 12.856 29.557 15.832s25.33 4.076 36.48 4.076c29.976 0 55.216-6.566 66.156-20.03l.68-.836-.346-45.232c0-4.6-3.217-8.243-7.457-10.994s-9.833-4.92-16.203-6.69c-12.738-3.54-28.57-5.403-42.027-5.38zm.006 6h.004c12.89-.02 28.4 1.822 40.418 5.162 6.01 1.67 11.146 3.738 14.543 5.94s4.723 4.235 4.723 5.96c0 2.658-1.444 5.114-4.71 7.65s-8.235 4.87-14.205 6.742c-11.94 3.747-27.835 5.73-42.475 5.73-16.385 0-31.85-2.466-42.957-6.348-5.554-1.94-10.008-4.252-12.885-6.598s-4.027-4.494-4.027-6.42c0-1.043.68-2.734 2.893-4.746s5.84-4.21 10.902-6.166c10.124-3.914 25.95-6.908 47.775-6.908zm59.773 28.434l.242 31.574c-9.003 10.142-32.414 17.156-60.818 17.156-10.748 0-23.62-1.09-35.043-3.902-11.02-2.714-20.483-7.152-25.646-13.12l-.06-31.457c.078.065.138.14.217.205 3.698 3.015 8.704 5.517 14.697 7.61 11.986 4.19 27.956 6.684 44.936 6.684 15.172 0 31.47-1.987 44.27-6.004 6.4-2.01 11.938-4.505 16.088-7.73.406-.316.735-.685 1.115-1.02z" dominant-baseline="auto" fill="#fff"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/database_cube.svg b/src/main/webapp/img/lib/active_directory/database_cube.svg index 1ee0841f9e184b7da372f84699517baec92e37a4..354d66b4e25974cc9dc503841f7414f33406fa69 100644 --- a/src/main/webapp/img/lib/active_directory/database_cube.svg +++ b/src/main/webapp/img/lib/active_directory/database_cube.svg @@ -1,167 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="49.98661mm" - height="55.574379mm" - viewBox="0 0 49.98661 55.574379" - version="1.1" - id="svg8" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="database_cube.svg"> - <defs - id="defs2"> - <linearGradient - inkscape:collect="always" - id="linearGradient1814"> - <stop - style="stop-color:#a8defe;stop-opacity:1" - offset="0" - id="stop1810" /> - <stop - style="stop-color:#14a7fc;stop-opacity:1" - offset="1" - id="stop1812" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1806"> - <stop - style="stop-color:#0e7bfc;stop-opacity:1" - offset="0" - id="stop1802" /> - <stop - style="stop-color:#8cc8fe;stop-opacity:1" - offset="1" - id="stop1804" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1790"> - <stop - style="stop-color:#0e2da0;stop-opacity:1;" - offset="0" - id="stop1786" /> - <stop - style="stop-color:#8bb5f4;stop-opacity:1" - offset="1" - id="stop1788" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient914"> - <stop - style="stop-color:#05239a;stop-opacity:1" - offset="0" - id="stop910" /> - <stop - style="stop-color:#91bcf8;stop-opacity:1" - offset="1" - id="stop912" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient914" - id="linearGradient916" - x1="111.26579" - y1="206.30371" - x2="111.47961" - y2="118.37204" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1790" - id="linearGradient1792" - x1="147.06595" - y1="217.34947" - x2="146.86617" - y2="176.65768" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1806" - id="linearGradient1808" - x1="122.4753" - y1="217.58464" - x2="122.60874" - y2="177.02649" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1814" - id="linearGradient1816" - x1="134.70384" - y1="188.48857" - x2="135.37201" - y2="165.50339" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="1.4" - inkscape:cx="-36.269478" - inkscape:cy="176.77655" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata5"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-109.87288,-163.83186)"> - <path - style="fill:url(#linearGradient1816);fill-opacity:1;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 112.11956,177.19643 23.25245,-11.69304 22.25019,11.35896 -22.91836,11.62622 z" - id="path1772" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient1808);fill-opacity:1;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 112.11956,177.19643 22.58428,11.29214 -0.0668,28.99874 -23.31926,-10.62396 z" - id="path1774" - inkscape:connector-curvature="0" /> - <path - style="opacity:1;fill:url(#linearGradient1792);fill-opacity:1;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 134.63704,217.48731 0.0668,-28.99874 22.91836,-11.62622 1.00226,30.001 z" - id="path1776" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.79999983;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 134.97677,163.83186 -24.74836,12.08815 -0.35553,32.10553 0.8909,0.40411 24.14633,10.97659 24.94938,-11.58585 -0.0703,-31.68954 z m -0.0103,3.34398 4.79608,2.37712 -4.97954,2.4939 -4.83226,-2.42104 z m 6.81715,3.3786 4.66845,2.31408 -4.99711,2.52026 -4.66173,-2.3363 z m -13.86789,0.0656 4.85759,2.43241 -4.69326,2.34973 -4.90667,-2.46548 z m 20.55275,3.24787 6.45335,3.19825 -5.06945,2.5275 -6.39135,-3.20136 z m -27.32753,0.0615 4.93148,2.47892 -6.06061,3.03496 -4.9475,-2.54507 z m 13.64206,0.1292 4.67,2.3399 -4.68912,2.36523 -4.67775,-2.35179 z m 6.67401,3.34398 6.38049,3.19567 -4.73046,2.35799 -6.34121,-3.18688 z m -13.37902,0.0134 4.6855,2.35541 -6.11642,3.08457 -4.65295,-2.39314 z m -14.88695,1.89084 3.94343,2.0283 -0.0367,7.86412 -3.99356,-1.99522 z m 43.60561,0.1757 0.0165,7.55871 -4.34702,2.173 -0.0186,-7.56285 z m -22.03277,1.29501 6.33088,3.18224 -6.24716,3.11454 -6.22288,-3.20084 z m -15.83314,1.48157 6.5474,3.36827 -0.003,7.75766 -6.58151,-3.28869 z m 31.719,0.28887 0.0181,7.56491 -6.58978,3.29334 -0.0191,-7.57215 z m -23.37274,4.00492 6.06268,3.11867 0.0176,7.65122 -6.08335,-3.03909 z m 14.98462,0.17777 0.0191,7.5737 -5.92367,2.96002 -0.0176,-7.58093 z m 14.55621,2.32182 0.0176,8.02948 -4.34443,2.16163 -0.0202,-8.01915 z m -43.73583,0.154 4.00596,2.00091 -0.0372,8.02225 -4.0566,-2.02624 z m 5.80172,2.89801 6.59081,3.29231 -0.003,8.0393 -6.62595,-3.30988 z m 31.78927,0.0186 0.0196,8.01553 -6.58978,3.27835 -0.0202,-8.00158 z m -23.39961,4.17183 6.088,3.04168 0.0186,8.04964 -6.10971,-3.05201 z m 15.01252,0.0186 0.0202,7.99744 -5.92626,2.94866 -0.0181,-7.98608 z m 14.55415,2.77605 0.015,6.81664 -4.34289,2.01693 -0.0165,-6.67194 z m -43.8676,0.11369 4.069,2.03295 -0.0315,6.73706 -4.11345,-1.86965 z m 5.86372,2.92954 6.63474,3.31504 -0.002,6.37016 -6.66419,-3.02876 z m 31.86111,0.0134 0.016,6.61199 -6.58927,3.06028 -0.016,-6.39392 z m -8.38606,4.17235 0.016,6.3345 -5.92884,2.75332 -0.0139,-6.13865 z m -15.04145,0.0274 6.11487,3.05511 0.0134,6.02082 -6.13037,-2.78639 z" - id="path1753" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="188.927" height="210.043" viewBox="0 0 49.987 55.574"><defs><linearGradient id="A" x1="147.066" y1="217.349" x2="146.866" y2="176.658" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#0e2da0"/><stop offset="1" stop-color="#8bb5f4"/></linearGradient><linearGradient id="B" x1="122.475" y1="217.585" x2="122.609" y2="177.026" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#0e7bfc"/><stop offset="1" stop-color="#8cc8fe"/></linearGradient><linearGradient id="C" x1="134.704" y1="188.489" x2="135.372" y2="165.503" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#a8defe"/><stop offset="1" stop-color="#14a7fc"/></linearGradient></defs><g transform="translate(-109.873 -163.832)"><g stroke="#000" stroke-width=".265"><path d="M112.12 177.196l23.252-11.693 22.25 11.36-22.918 11.626z" fill="url(#C)"/><path d="M112.12 177.196l22.584 11.292-.067 29-23.32-10.624z" fill="url(#B)"/><path d="M134.637 217.487l.067-29 22.918-11.626 1.002 30z" fill="url(#A)"/></g><path d="M134.977 163.832l-24.748 12.088-.356 32.106.89.404 24.146 10.977 24.95-11.586-.07-31.7zm-.01 3.344l4.796 2.377-4.98 2.494-4.832-2.42zm6.817 3.38l4.668 2.314-4.997 2.52-4.662-2.336zm-13.868.066l4.858 2.432-4.693 2.35-4.907-2.465zm20.553 3.248l6.453 3.198-5.07 2.528-6.39-3.2zm-27.328.06l4.93 2.48-6.06 3.035-4.948-2.545zm13.642.13l4.67 2.34-4.69 2.365-4.678-2.352zm6.674 3.344l6.38 3.196-4.73 2.358-6.34-3.187zm-13.38.013l4.685 2.355-6.116 3.085-4.653-2.393zm-14.887 1.89l3.943 2.028-.037 7.864-3.994-1.995zm43.606.176l.017 7.56-4.347 2.173-.02-7.563zm-22.033 1.295l6.33 3.182-6.247 3.115-6.223-3.2zm-15.833 1.482l6.547 3.368-.003 7.758-6.582-3.29zm31.72.29l.018 7.565-6.6 3.293-.02-7.572zm-23.373 4.005l6.063 3.12.018 7.65-6.083-3.04zm14.985.178l.02 7.574-5.924 2.96-.018-7.58zm14.556 2.322l.018 8.03-4.344 2.162-.02-8.02zm-43.736.154l4.006 2-.037 8.022-4.057-2.026zm5.802 2.898l6.59 3.292-.003 8.04-6.626-3.3zm31.79.02l.02 8.016-6.6 3.278-.02-8.002zm-23.4 4.172l6.088 3.042.02 8.05-6.1-3.052zm15.013.02l.02 7.997-5.926 2.95-.018-7.986zm14.554 2.776l.015 6.817-4.343 2.017-.017-6.672zm-43.868.114l4.07 2.033-.03 6.737-4.113-1.87zm5.864 2.93l6.635 3.315v6.37l-6.664-3.03zm31.86.013l.016 6.612-6.59 3.06-.016-6.394zm-8.386 4.172l.016 6.335-5.93 2.753-.014-6.14zm-15.04.027l6.115 3.055.013 6.02-6.13-2.786z" dominant-baseline="auto" fill="#fff"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/database_partition_2.svg b/src/main/webapp/img/lib/active_directory/database_partition_2.svg index 551b4cb3f86fa6897490c9687cd54d564d1a7b6c..8c9b5b8302f502390a01102350f73b67bf4c075c 100644 --- a/src/main/webapp/img/lib/active_directory/database_partition_2.svg +++ b/src/main/webapp/img/lib/active_directory/database_partition_2.svg @@ -1,127 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="133.60352mm" - height="89.164246mm" - viewBox="0 0 133.60352 89.164246" - version="1.1" - id="svg8" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="database_partition_2.svg"> - <defs - id="defs2"> - <linearGradient - inkscape:collect="always" - id="linearGradient1271"> - <stop - style="stop-color:#0a279b;stop-opacity:1;" - offset="0" - id="stop1267" /> - <stop - style="stop-color:#9abfe9;stop-opacity:1" - offset="1" - id="stop1269" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1255"> - <stop - style="stop-color:#b0e1fe;stop-opacity:1;" - offset="0" - id="stop1251" /> - <stop - style="stop-color:#10a6fc;stop-opacity:1" - offset="1" - id="stop1253" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1255" - id="linearGradient1257" - x1="107.44312" - y1="146.01712" - x2="106.90132" - y2="102.04086" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1271" - id="linearGradient1273" - x1="107.0851" - y1="186.35414" - x2="107.50749" - y2="132.49252" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.97351913,0,4.9300842)" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="1.4" - inkscape:cx="353.94046" - inkscape:cy="95.692861" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata5"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-39.263672,-100.06627)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1257);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6.78384876;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 106.90132,102.04086 h 0.002 0.002 c 13.77264,-0.0253 30.34853,2.17974 43.18969,6.17548 6.42059,1.99786 11.91065,4.47145 15.54029,7.10777 3.62963,2.63634 5.04651,5.06645 5.04651,7.13114 -5.7e-4,3.18021 -1.54287,6.11851 -5.03191,9.15223 -3.48904,3.03376 -8.79995,5.82457 -15.17922,8.06576 -12.75854,4.48239 -29.7433,6.85309 -45.38737,6.85309 -17.508617,0 -34.033798,-2.94955 -45.902882,-7.59376 -5.934792,-2.32212 -10.694832,-5.08718 -13.768609,-7.89286 -3.073778,-2.80567 -4.303526,-5.37575 -4.303526,-7.68022 0,-1.24774 0.725762,-3.27042 3.090942,-5.67782 2.365179,-2.40737 6.241049,-5.03537 11.64999,-7.37646 10.817914,-4.68216 27.730781,-8.26435 51.051705,-8.26435 z" - id="path1239" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1273);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6.57990265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 169.99617,130.59279 0.25537,36.01372 c -9.49319,11.56849 -34.17729,19.56851 -64.12624,19.56851 -11.332658,0 -24.90428,-1.24257 -36.948938,-4.45104 -11.620537,-3.09549 -21.597208,-8.15763 -27.041385,-14.96376 l -0.06178,-35.88006 c 0.08225,0.0744 0.145201,0.16036 0.228589,0.23391 3.899192,3.43902 9.17791,6.2925 15.496642,8.68153 12.637465,4.77806 29.476471,7.62333 47.379552,7.62333 15.99764,0 33.18181,-2.26601 46.6794,-6.84806 6.74879,-2.29104 12.58726,-5.13891 16.96291,-8.81521 0.42837,-0.35989 0.77479,-0.78127 1.17588,-1.16287 z" - id="path1217-9" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 106.82812,100.06641 c -22.365039,5.6e-4 -38.821852,3.01471 -49.933589,7.31054 -5.556387,2.14812 -9.785209,4.60742 -12.773437,7.32422 -2.988229,2.7168 -4.857422,5.82756 -4.857422,9.18555 v 0.002 l 0.08008,44.61719 0.652344,0.81641 c 6.437314,8.09157 17.472537,12.85637 29.55664,15.83203 12.084104,2.97566 25.33039,4.07617 36.478514,4.07617 29.97597,0 55.21573,-6.56627 66.15625,-20.03125 l 0.67969,-0.83594 -0.34571,-45.23242 c 0,-4.59879 -3.21652,-8.24298 -7.45703,-10.99414 -4.2405,-2.75116 -9.83303,-4.91893 -16.20312,-6.68945 -12.7384,-3.54055 -28.56904,-5.4025 -42.02735,-5.38086 z m 0.006,6 h 0.002 0.002 c 12.88878,-0.0212 28.40089,1.82205 40.41797,5.16211 6.00854,1.67002 11.14627,3.73769 14.54297,5.9414 3.3967,2.20372 4.72265,4.23506 4.72265,5.96094 -4e-4,2.65835 -1.44385,5.11448 -4.70898,7.65039 -3.26513,2.53591 -8.2352,4.86877 -14.20508,6.74219 -11.93976,3.74684 -27.83451,5.72851 -42.47461,5.72851 -16.384985,0 -31.84965,-2.46554 -42.957029,-6.34765 -5.553689,-1.94106 -10.00825,-4.25239 -12.884765,-6.59766 -2.876516,-2.34527 -4.027344,-4.4936 -4.027344,-6.41992 0,-1.04299 0.679186,-2.73375 2.892578,-4.7461 2.213392,-2.01234 5.840526,-4.20909 10.902344,-6.16601 10.123635,-3.91383 25.951102,-6.9082 47.775386,-6.9082 z m 59.77344,28.43359 0.24219,31.57422 c -9.00349,10.14241 -32.41429,17.15625 -60.81836,17.15625 -10.748077,0 -23.619625,-1.08939 -35.042969,-3.90235 -11.021103,-2.7139 -20.483138,-7.15202 -25.646484,-13.11914 l -0.05859,-31.45703 c 0.07801,0.0652 0.137711,0.1406 0.216797,0.20508 3.698057,3.01509 8.704478,5.5168 14.697266,7.61133 11.985575,4.18905 27.955963,6.68359 44.93554,6.68359 15.17241,0 31.47015,-1.98669 44.27149,-6.0039 6.40066,-2.00861 11.93796,-4.50542 16.08789,-7.72852 0.40628,-0.31554 0.73483,-0.68496 1.11523,-1.01953 z" - id="path1217" - inkscape:connector-curvature="0" /> - <path - style="opacity:1;fill:none;stroke:#ffffff;stroke-width:4.00000011;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:8.00000022,8.00000022;stroke-dashoffset:0;stroke-opacity:1" - d="m 132.00619,106.37696 -62.006523,37.685 -0.400903,36.21502" - id="path3858" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccc" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="504.96" height="336.998" viewBox="0 0 133.604 89.164"><defs><linearGradient id="A" x1="107.443" y1="146.017" x2="106.901" y2="102.041" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#b0e1fe"/><stop offset="1" stop-color="#10a6fc"/></linearGradient><linearGradient id="B" x1="107.085" y1="186.349" x2="107.507" y2="133.914" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#0a279b"/><stop offset="1" stop-color="#9abfe9"/></linearGradient></defs><g transform="translate(-39.264 -100.066)"><path d="M106.9 102.04h.004c13.773-.025 30.35 2.18 43.2 6.175 6.42 1.998 11.91 4.47 15.54 7.108s5.047 5.066 5.047 7.13c-.001 3.18-1.543 6.12-5.032 9.152s-8.8 5.825-15.18 8.066c-12.76 4.482-29.743 6.853-45.387 6.853-17.51 0-34.034-2.95-45.903-7.594-5.935-2.322-10.695-5.087-13.77-7.893s-4.304-5.376-4.304-7.68c0-1.248.726-3.27 3.09-5.678s6.24-5.035 11.65-7.376c10.818-4.682 27.73-8.264 51.052-8.264z" dominant-baseline="auto" fill="url(#A)"/><path d="M169.996 130.593l.255 36.014c-9.493 11.568-34.177 19.57-64.126 19.57-11.333 0-24.904-1.243-36.95-4.45-11.62-3.095-21.597-8.158-27.04-14.964l-.062-35.88c.082.074.145.16.23.234 3.9 3.44 9.178 6.292 15.497 8.682 12.637 4.778 29.476 7.623 47.38 7.623 15.998 0 33.182-2.266 46.68-6.848 6.75-2.29 12.587-5.14 16.963-8.815.428-.36.775-.78 1.176-1.163z" dominant-baseline="auto" fill="url(#B)"/><path d="M106.828 100.066c-22.365.001-38.822 3.015-49.934 7.31-5.556 2.148-9.785 4.607-12.773 7.324s-4.857 5.828-4.857 9.186v.002l.08 44.617.652.816c6.437 8.092 17.473 12.856 29.557 15.832s25.33 4.076 36.48 4.076c29.976 0 55.216-6.566 66.156-20.03l.68-.836-.346-45.232c0-4.6-3.217-8.243-7.457-10.994s-9.833-4.92-16.203-6.69c-12.738-3.54-28.57-5.403-42.027-5.38zm.006 6h.004c12.89-.02 28.4 1.822 40.418 5.162 6.01 1.67 11.146 3.738 14.543 5.94s4.723 4.235 4.723 5.96c0 2.658-1.444 5.114-4.71 7.65s-8.235 4.87-14.205 6.742c-11.94 3.747-27.835 5.73-42.475 5.73-16.385 0-31.85-2.466-42.957-6.348-5.554-1.94-10.008-4.252-12.885-6.598s-4.027-4.494-4.027-6.42c0-1.043.68-2.734 2.893-4.746s5.84-4.21 10.902-6.166c10.124-3.914 25.95-6.908 47.775-6.908zm59.773 28.434l.242 31.574c-9.003 10.142-32.414 17.156-60.818 17.156-10.748 0-23.62-1.09-35.043-3.902-11.02-2.714-20.483-7.152-25.646-13.12l-.06-31.457c.078.065.138.14.217.205 3.698 3.015 8.704 5.517 14.697 7.61 11.986 4.19 27.956 6.684 44.936 6.684 15.172 0 31.47-1.987 44.27-6.004 6.4-2.01 11.938-4.505 16.088-7.73.406-.316.735-.685 1.115-1.02z" dominant-baseline="auto" fill="#fff"/><path d="M132.006 106.377L70 144.062l-.4 36.215" fill="none" stroke="#fff" stroke-width="4" stroke-linecap="round" stroke-dasharray="8.00000022,8.00000022"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/database_partition_3.svg b/src/main/webapp/img/lib/active_directory/database_partition_3.svg index 2dfd095baab5e24ca888ad756fc5b7196fc68135..9652dd98f0b7cb97620b58670aedb06fd7e23539 100644 --- a/src/main/webapp/img/lib/active_directory/database_partition_3.svg +++ b/src/main/webapp/img/lib/active_directory/database_partition_3.svg @@ -1,127 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="133.60352mm" - height="89.164246mm" - viewBox="0 0 133.60352 89.164246" - version="1.1" - id="svg8" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="database_partition_3.svg"> - <defs - id="defs2"> - <linearGradient - inkscape:collect="always" - id="linearGradient1271"> - <stop - style="stop-color:#0a279b;stop-opacity:1;" - offset="0" - id="stop1267" /> - <stop - style="stop-color:#9abfe9;stop-opacity:1" - offset="1" - id="stop1269" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1255"> - <stop - style="stop-color:#b0e1fe;stop-opacity:1;" - offset="0" - id="stop1251" /> - <stop - style="stop-color:#10a6fc;stop-opacity:1" - offset="1" - id="stop1253" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1255" - id="linearGradient1257" - x1="107.44312" - y1="146.01712" - x2="106.90132" - y2="102.04086" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1271" - id="linearGradient1273" - x1="107.0851" - y1="186.35414" - x2="107.50749" - y2="132.49252" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.97351913,0,4.9300842)" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.98994949" - inkscape:cx="525.47608" - inkscape:cy="136.57829" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata5"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-39.263672,-100.06627)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1257);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6.78384876;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 106.90132,102.04086 h 0.002 0.002 c 13.77264,-0.0253 30.34853,2.17974 43.18969,6.17548 6.42059,1.99786 11.91065,4.47145 15.54029,7.10777 3.62963,2.63634 5.04651,5.06645 5.04651,7.13114 -5.7e-4,3.18021 -1.54287,6.11851 -5.03191,9.15223 -3.48904,3.03376 -8.79995,5.82457 -15.17922,8.06576 -12.75854,4.48239 -29.7433,6.85309 -45.38737,6.85309 -17.508617,0 -34.033798,-2.94955 -45.902882,-7.59376 -5.934792,-2.32212 -10.694832,-5.08718 -13.768609,-7.89286 -3.073778,-2.80567 -4.303526,-5.37575 -4.303526,-7.68022 0,-1.24774 0.725762,-3.27042 3.090942,-5.67782 2.365179,-2.40737 6.241049,-5.03537 11.64999,-7.37646 10.817914,-4.68216 27.730781,-8.26435 51.051705,-8.26435 z" - id="path1239" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1273);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6.57990265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 169.99617,130.59279 0.25537,36.01372 c -9.49319,11.56849 -34.17729,19.56851 -64.12624,19.56851 -11.332658,0 -24.90428,-1.24257 -36.948938,-4.45104 -11.620537,-3.09549 -21.597208,-8.15763 -27.041385,-14.96376 l -0.06178,-35.88006 c 0.08225,0.0744 0.145201,0.16036 0.228589,0.23391 3.899192,3.43902 9.17791,6.2925 15.496642,8.68153 12.637465,4.77806 29.476471,7.62333 47.379552,7.62333 15.99764,0 33.18181,-2.26601 46.6794,-6.84806 6.74879,-2.29104 12.58726,-5.13891 16.96291,-8.81521 0.42837,-0.35989 0.77479,-0.78127 1.17588,-1.16287 z" - id="path1217-9" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 106.82812,100.06641 c -22.365039,5.6e-4 -38.821852,3.01471 -49.933589,7.31054 -5.556387,2.14812 -9.785209,4.60742 -12.773437,7.32422 -2.988229,2.7168 -4.857422,5.82756 -4.857422,9.18555 v 0.002 l 0.08008,44.61719 0.652344,0.81641 c 6.437314,8.09157 17.472537,12.85637 29.55664,15.83203 12.084104,2.97566 25.33039,4.07617 36.478514,4.07617 29.97597,0 55.21573,-6.56627 66.15625,-20.03125 l 0.67969,-0.83594 -0.34571,-45.23242 c 0,-4.59879 -3.21652,-8.24298 -7.45703,-10.99414 -4.2405,-2.75116 -9.83303,-4.91893 -16.20312,-6.68945 -12.7384,-3.54055 -28.56904,-5.4025 -42.02735,-5.38086 z m 0.006,6 h 0.002 0.002 c 12.88878,-0.0212 28.40089,1.82205 40.41797,5.16211 6.00854,1.67002 11.14627,3.73769 14.54297,5.9414 3.3967,2.20372 4.72265,4.23506 4.72265,5.96094 -4e-4,2.65835 -1.44385,5.11448 -4.70898,7.65039 -3.26513,2.53591 -8.2352,4.86877 -14.20508,6.74219 -11.93976,3.74684 -27.83451,5.72851 -42.47461,5.72851 -16.384985,0 -31.84965,-2.46554 -42.957029,-6.34765 -5.553689,-1.94106 -10.00825,-4.25239 -12.884765,-6.59766 -2.876516,-2.34527 -4.027344,-4.4936 -4.027344,-6.41992 0,-1.04299 0.679186,-2.73375 2.892578,-4.7461 2.213392,-2.01234 5.840526,-4.20909 10.902344,-6.16601 10.123635,-3.91383 25.951102,-6.9082 47.775386,-6.9082 z m 59.77344,28.43359 0.24219,31.57422 c -9.00349,10.14241 -32.41429,17.15625 -60.81836,17.15625 -10.748077,0 -23.619625,-1.08939 -35.042969,-3.90235 -11.021103,-2.7139 -20.483138,-7.15202 -25.646484,-13.11914 l -0.05859,-31.45703 c 0.07801,0.0652 0.137711,0.1406 0.216797,0.20508 3.698057,3.01509 8.704478,5.5168 14.697266,7.61133 11.985575,4.18905 27.955963,6.68359 44.93554,6.68359 15.17241,0 31.47015,-1.98669 44.27149,-6.0039 6.40066,-2.00861 11.93796,-4.50542 16.08789,-7.72852 0.40628,-0.31554 0.73483,-0.68496 1.11523,-1.01953 z" - id="path1217" - inkscape:connector-curvature="0" /> - <path - id="path844" - style="opacity:1;fill:none;stroke:#ffffff;stroke-width:4.00000011;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:8.00000022, 8.00000022000000044;stroke-opacity:1;stroke-dashoffset:0" - d="M 105.4095,126.29748 67.989861,108.5326 m 100.541669,14.74107 -63.12203,3.02381 -32.694935,18.61533 0.188988,32.22247" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccc" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="504.96" height="336.998" viewBox="0 0 133.604 89.164"><defs><linearGradient id="A" x1="107.443" y1="146.017" x2="106.901" y2="102.041" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#b0e1fe"/><stop offset="1" stop-color="#10a6fc"/></linearGradient><linearGradient id="B" x1="107.085" y1="186.349" x2="107.507" y2="133.914" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#0a279b"/><stop offset="1" stop-color="#9abfe9"/></linearGradient></defs><g transform="translate(-39.264 -100.066)"><path d="M106.9 102.04h.004c13.773-.025 30.35 2.18 43.2 6.175 6.42 1.998 11.91 4.47 15.54 7.108s5.047 5.066 5.047 7.13c-.001 3.18-1.543 6.12-5.032 9.152s-8.8 5.825-15.18 8.066c-12.76 4.482-29.743 6.853-45.387 6.853-17.51 0-34.034-2.95-45.903-7.594-5.935-2.322-10.695-5.087-13.77-7.893s-4.304-5.376-4.304-7.68c0-1.248.726-3.27 3.09-5.678s6.24-5.035 11.65-7.376c10.818-4.682 27.73-8.264 51.052-8.264z" dominant-baseline="auto" fill="url(#A)"/><path d="M169.996 130.593l.255 36.014c-9.493 11.568-34.177 19.57-64.126 19.57-11.333 0-24.904-1.243-36.95-4.45-11.62-3.095-21.597-8.158-27.04-14.964l-.062-35.88c.082.074.145.16.23.234 3.9 3.44 9.178 6.292 15.497 8.682 12.637 4.778 29.476 7.623 47.38 7.623 15.998 0 33.182-2.266 46.68-6.848 6.75-2.29 12.587-5.14 16.963-8.815.428-.36.775-.78 1.176-1.163z" dominant-baseline="auto" fill="url(#B)"/><path d="M106.828 100.066c-22.365.001-38.822 3.015-49.934 7.31-5.556 2.148-9.785 4.607-12.773 7.324s-4.857 5.828-4.857 9.186v.002l.08 44.617.652.816c6.437 8.092 17.473 12.856 29.557 15.832s25.33 4.076 36.48 4.076c29.976 0 55.216-6.566 66.156-20.03l.68-.836-.346-45.232c0-4.6-3.217-8.243-7.457-10.994s-9.833-4.92-16.203-6.69c-12.738-3.54-28.57-5.403-42.027-5.38zm.006 6h.004c12.89-.02 28.4 1.822 40.418 5.162 6.01 1.67 11.146 3.738 14.543 5.94s4.723 4.235 4.723 5.96c0 2.658-1.444 5.114-4.71 7.65s-8.235 4.87-14.205 6.742c-11.94 3.747-27.835 5.73-42.475 5.73-16.385 0-31.85-2.466-42.957-6.348-5.554-1.94-10.008-4.252-12.885-6.598s-4.027-4.494-4.027-6.42c0-1.043.68-2.734 2.893-4.746s5.84-4.21 10.902-6.166c10.124-3.914 25.95-6.908 47.775-6.908zm59.773 28.434l.242 31.574c-9.003 10.142-32.414 17.156-60.818 17.156-10.748 0-23.62-1.09-35.043-3.902-11.02-2.714-20.483-7.152-25.646-13.12l-.06-31.457c.078.065.138.14.217.205 3.698 3.015 8.704 5.517 14.697 7.61 11.986 4.19 27.956 6.684 44.936 6.684 15.172 0 31.47-1.987 44.27-6.004 6.4-2.01 11.938-4.505 16.088-7.73.406-.316.735-.685 1.115-1.02z" dominant-baseline="auto" fill="#fff"/><path d="M105.4 126.297L68 108.533m100.542 14.74l-63.122 3.024-32.695 18.615.19 32.222" fill="none" stroke="#fff" stroke-width="4" stroke-linecap="round" stroke-dasharray="8.00000022, 8.00000022000000044"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/database_partition_4.svg b/src/main/webapp/img/lib/active_directory/database_partition_4.svg index a000d95059365544c3a223961176e3bc0f904c78..68948bd01aed1cf8a3682e01f460a792181bc3b4 100644 --- a/src/main/webapp/img/lib/active_directory/database_partition_4.svg +++ b/src/main/webapp/img/lib/active_directory/database_partition_4.svg @@ -1,133 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="133.60352mm" - height="89.164246mm" - viewBox="0 0 133.60352 89.164246" - version="1.1" - id="svg8" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="database_partition_4.svg"> - <defs - id="defs2"> - <linearGradient - inkscape:collect="always" - id="linearGradient1271"> - <stop - style="stop-color:#0a279b;stop-opacity:1;" - offset="0" - id="stop1267" /> - <stop - style="stop-color:#9abfe9;stop-opacity:1" - offset="1" - id="stop1269" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1255"> - <stop - style="stop-color:#b0e1fe;stop-opacity:1;" - offset="0" - id="stop1251" /> - <stop - style="stop-color:#10a6fc;stop-opacity:1" - offset="1" - id="stop1253" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1255" - id="linearGradient1257" - x1="107.44312" - y1="146.01712" - x2="106.90132" - y2="102.04086" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1271" - id="linearGradient1273" - x1="107.0851" - y1="186.35414" - x2="107.50749" - y2="132.49252" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.97351913,0,4.9300842)" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="1.4" - inkscape:cx="353.94046" - inkscape:cy="95.692861" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata5"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-39.263672,-100.06627)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1257);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6.78384876;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 106.90132,102.04086 h 0.002 0.002 c 13.77264,-0.0253 30.34853,2.17974 43.18969,6.17548 6.42059,1.99786 11.91065,4.47145 15.54029,7.10777 3.62963,2.63634 5.04651,5.06645 5.04651,7.13114 -5.7e-4,3.18021 -1.54287,6.11851 -5.03191,9.15223 -3.48904,3.03376 -8.79995,5.82457 -15.17922,8.06576 -12.75854,4.48239 -29.7433,6.85309 -45.38737,6.85309 -17.508617,0 -34.033798,-2.94955 -45.902882,-7.59376 -5.934792,-2.32212 -10.694832,-5.08718 -13.768609,-7.89286 -3.073778,-2.80567 -4.303526,-5.37575 -4.303526,-7.68022 0,-1.24774 0.725762,-3.27042 3.090942,-5.67782 2.365179,-2.40737 6.241049,-5.03537 11.64999,-7.37646 10.817914,-4.68216 27.730781,-8.26435 51.051705,-8.26435 z" - id="path1239" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1273);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6.57990265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 169.99617,130.59279 0.25537,36.01372 c -9.49319,11.56849 -34.17729,19.56851 -64.12624,19.56851 -11.332658,0 -24.90428,-1.24257 -36.948938,-4.45104 -11.620537,-3.09549 -21.597208,-8.15763 -27.041385,-14.96376 l -0.06178,-35.88006 c 0.08225,0.0744 0.145201,0.16036 0.228589,0.23391 3.899192,3.43902 9.17791,6.2925 15.496642,8.68153 12.637465,4.77806 29.476471,7.62333 47.379552,7.62333 15.99764,0 33.18181,-2.26601 46.6794,-6.84806 6.74879,-2.29104 12.58726,-5.13891 16.96291,-8.81521 0.42837,-0.35989 0.77479,-0.78127 1.17588,-1.16287 z" - id="path1217-9" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 106.82812,100.06641 c -22.365039,5.6e-4 -38.821852,3.01471 -49.933589,7.31054 -5.556387,2.14812 -9.785209,4.60742 -12.773437,7.32422 -2.988229,2.7168 -4.857422,5.82756 -4.857422,9.18555 v 0.002 l 0.08008,44.61719 0.652344,0.81641 c 6.437314,8.09157 17.472537,12.85637 29.55664,15.83203 12.084104,2.97566 25.33039,4.07617 36.478514,4.07617 29.97597,0 55.21573,-6.56627 66.15625,-20.03125 l 0.67969,-0.83594 -0.34571,-45.23242 c 0,-4.59879 -3.21652,-8.24298 -7.45703,-10.99414 -4.2405,-2.75116 -9.83303,-4.91893 -16.20312,-6.68945 -12.7384,-3.54055 -28.56904,-5.4025 -42.02735,-5.38086 z m 0.006,6 h 0.002 0.002 c 12.88878,-0.0212 28.40089,1.82205 40.41797,5.16211 6.00854,1.67002 11.14627,3.73769 14.54297,5.9414 3.3967,2.20372 4.72265,4.23506 4.72265,5.96094 -4e-4,2.65835 -1.44385,5.11448 -4.70898,7.65039 -3.26513,2.53591 -8.2352,4.86877 -14.20508,6.74219 -11.93976,3.74684 -27.83451,5.72851 -42.47461,5.72851 -16.384985,0 -31.84965,-2.46554 -42.957029,-6.34765 -5.553689,-1.94106 -10.00825,-4.25239 -12.884765,-6.59766 -2.876516,-2.34527 -4.027344,-4.4936 -4.027344,-6.41992 0,-1.04299 0.679186,-2.73375 2.892578,-4.7461 2.213392,-2.01234 5.840526,-4.20909 10.902344,-6.16601 10.123635,-3.91383 25.951102,-6.9082 47.775386,-6.9082 z m 59.77344,28.43359 0.24219,31.57422 c -9.00349,10.14241 -32.41429,17.15625 -60.81836,17.15625 -10.748077,0 -23.619625,-1.08939 -35.042969,-3.90235 -11.021103,-2.7139 -20.483138,-7.15202 -25.646484,-13.11914 l -0.05859,-31.45703 c 0.07801,0.0652 0.137711,0.1406 0.216797,0.20508 3.698057,3.01509 8.704478,5.5168 14.697266,7.61133 11.985575,4.18905 27.955963,6.68359 44.93554,6.68359 15.17241,0 31.47015,-1.98669 44.27149,-6.0039 6.40066,-2.00861 11.93796,-4.50542 16.08789,-7.72852 0.40628,-0.31554 0.73483,-0.68496 1.11523,-1.01953 z" - id="path1217" - inkscape:connector-curvature="0" /> - <path - style="opacity:1;fill:none;stroke:#ffffff;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:8.00000022, 8.00000022;stroke-dashoffset:0;stroke-opacity:1" - d="m 132.00619,105.99898 -62.006523,37.685 -0.400903,36.21502" - id="path3858" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccc" /> - <path - style="opacity:1;fill:none;stroke:#ffffff;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:8.00000031, 8.00000031;stroke-dashoffset:0;stroke-opacity:1" - d="m 69.622622,106.37696 62.006528,37.685 0.40091,36.21502" - id="path3858-8" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccc" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="504.96" height="336.998" viewBox="0 0 133.604 89.164"><defs><linearGradient id="A" x1="107.443" y1="146.017" x2="106.901" y2="102.041" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#b0e1fe"/><stop offset="1" stop-color="#10a6fc"/></linearGradient><linearGradient id="B" x1="107.085" y1="186.349" x2="107.507" y2="133.914" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#0a279b"/><stop offset="1" stop-color="#9abfe9"/></linearGradient></defs><g transform="translate(-39.264 -100.066)"><path d="M106.9 102.04h.004c13.773-.025 30.35 2.18 43.2 6.175 6.42 1.998 11.91 4.47 15.54 7.108s5.047 5.066 5.047 7.13c-.001 3.18-1.543 6.12-5.032 9.152s-8.8 5.825-15.18 8.066c-12.76 4.482-29.743 6.853-45.387 6.853-17.51 0-34.034-2.95-45.903-7.594-5.935-2.322-10.695-5.087-13.77-7.893s-4.304-5.376-4.304-7.68c0-1.248.726-3.27 3.09-5.678s6.24-5.035 11.65-7.376c10.818-4.682 27.73-8.264 51.052-8.264z" dominant-baseline="auto" fill="url(#A)"/><path d="M169.996 130.593l.255 36.014c-9.493 11.568-34.177 19.57-64.126 19.57-11.333 0-24.904-1.243-36.95-4.45-11.62-3.095-21.597-8.158-27.04-14.964l-.062-35.88c.082.074.145.16.23.234 3.9 3.44 9.178 6.292 15.497 8.682 12.637 4.778 29.476 7.623 47.38 7.623 15.998 0 33.182-2.266 46.68-6.848 6.75-2.29 12.587-5.14 16.963-8.815.428-.36.775-.78 1.176-1.163z" dominant-baseline="auto" fill="url(#B)"/><path d="M106.828 100.066c-22.365.001-38.822 3.015-49.934 7.31-5.556 2.148-9.785 4.607-12.773 7.324s-4.857 5.828-4.857 9.186v.002l.08 44.617.652.816c6.437 8.092 17.473 12.856 29.557 15.832s25.33 4.076 36.48 4.076c29.976 0 55.216-6.566 66.156-20.03l.68-.836-.346-45.232c0-4.6-3.217-8.243-7.457-10.994s-9.833-4.92-16.203-6.69c-12.738-3.54-28.57-5.403-42.027-5.38zm.006 6h.004c12.89-.02 28.4 1.822 40.418 5.162 6.01 1.67 11.146 3.738 14.543 5.94s4.723 4.235 4.723 5.96c0 2.658-1.444 5.114-4.71 7.65s-8.235 4.87-14.205 6.742c-11.94 3.747-27.835 5.73-42.475 5.73-16.385 0-31.85-2.466-42.957-6.348-5.554-1.94-10.008-4.252-12.885-6.598s-4.027-4.494-4.027-6.42c0-1.043.68-2.734 2.893-4.746s5.84-4.21 10.902-6.166c10.124-3.914 25.95-6.908 47.775-6.908zm59.773 28.434l.242 31.574c-9.003 10.142-32.414 17.156-60.818 17.156-10.748 0-23.62-1.09-35.043-3.902-11.02-2.714-20.483-7.152-25.646-13.12l-.06-31.457c.078.065.138.14.217.205 3.698 3.015 8.704 5.517 14.697 7.61 11.986 4.19 27.956 6.684 44.936 6.684 15.172 0 31.47-1.987 44.27-6.004 6.4-2.01 11.938-4.505 16.088-7.73.406-.316.735-.685 1.115-1.02z" dominant-baseline="auto" fill="#fff"/><g fill="none" stroke="#fff" stroke-width="4" stroke-linecap="round"><path d="M132.006 106L70 143.684l-.4 36.215" stroke-dasharray="8.00000022, 8.00000022"/><path d="M69.623 106.377l62.007 37.685.4 36.215" stroke-dasharray="8.00000031, 8.00000031"/></g></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/database_partition_5.svg b/src/main/webapp/img/lib/active_directory/database_partition_5.svg index 4ae2223acd78c5e9e611cbb64eaedc3d3a218f05..fb1559c1f3094a9ec8bef566f55f91cdd37f131e 100644 --- a/src/main/webapp/img/lib/active_directory/database_partition_5.svg +++ b/src/main/webapp/img/lib/active_directory/database_partition_5.svg @@ -1,127 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="133.60352mm" - height="89.164246mm" - viewBox="0 0 133.60352 89.164246" - version="1.1" - id="svg8" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="database_partition_5.svg"> - <defs - id="defs2"> - <linearGradient - inkscape:collect="always" - id="linearGradient1271"> - <stop - style="stop-color:#0a279b;stop-opacity:1;" - offset="0" - id="stop1267" /> - <stop - style="stop-color:#9abfe9;stop-opacity:1" - offset="1" - id="stop1269" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1255"> - <stop - style="stop-color:#b0e1fe;stop-opacity:1;" - offset="0" - id="stop1251" /> - <stop - style="stop-color:#10a6fc;stop-opacity:1" - offset="1" - id="stop1253" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1255" - id="linearGradient1257" - x1="107.44312" - y1="146.01712" - x2="106.90132" - y2="102.04086" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1271" - id="linearGradient1273" - x1="107.0851" - y1="186.35414" - x2="107.50749" - y2="132.49252" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.97351913,0,4.9300842)" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.98994949" - inkscape:cx="638.98887" - inkscape:cy="94.316957" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata5"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-39.263672,-100.06627)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1257);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6.78384876;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 106.90132,102.04086 h 0.002 0.002 c 13.77264,-0.0253 30.34853,2.17974 43.18969,6.17548 6.42059,1.99786 11.91065,4.47145 15.54029,7.10777 3.62963,2.63634 5.04651,5.06645 5.04651,7.13114 -5.7e-4,3.18021 -1.54287,6.11851 -5.03191,9.15223 -3.48904,3.03376 -8.79995,5.82457 -15.17922,8.06576 -12.75854,4.48239 -29.7433,6.85309 -45.38737,6.85309 -17.508617,0 -34.033798,-2.94955 -45.902882,-7.59376 -5.934792,-2.32212 -10.694832,-5.08718 -13.768609,-7.89286 -3.073778,-2.80567 -4.303526,-5.37575 -4.303526,-7.68022 0,-1.24774 0.725762,-3.27042 3.090942,-5.67782 2.365179,-2.40737 6.241049,-5.03537 11.64999,-7.37646 10.817914,-4.68216 27.730781,-8.26435 51.051705,-8.26435 z" - id="path1239" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1273);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6.57990265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 169.99617,130.59279 0.25537,36.01372 c -9.49319,11.56849 -34.17729,19.56851 -64.12624,19.56851 -11.332658,0 -24.90428,-1.24257 -36.948938,-4.45104 -11.620537,-3.09549 -21.597208,-8.15763 -27.041385,-14.96376 l -0.06178,-35.88006 c 0.08225,0.0744 0.145201,0.16036 0.228589,0.23391 3.899192,3.43902 9.17791,6.2925 15.496642,8.68153 12.637465,4.77806 29.476471,7.62333 47.379552,7.62333 15.99764,0 33.18181,-2.26601 46.6794,-6.84806 6.74879,-2.29104 12.58726,-5.13891 16.96291,-8.81521 0.42837,-0.35989 0.77479,-0.78127 1.17588,-1.16287 z" - id="path1217-9" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 106.82812,100.06641 c -22.365039,5.6e-4 -38.821852,3.01471 -49.933589,7.31054 -5.556387,2.14812 -9.785209,4.60742 -12.773437,7.32422 -2.988229,2.7168 -4.857422,5.82756 -4.857422,9.18555 v 0.002 l 0.08008,44.61719 0.652344,0.81641 c 6.437314,8.09157 17.472537,12.85637 29.55664,15.83203 12.084104,2.97566 25.33039,4.07617 36.478514,4.07617 29.97597,0 55.21573,-6.56627 66.15625,-20.03125 l 0.67969,-0.83594 -0.34571,-45.23242 c 0,-4.59879 -3.21652,-8.24298 -7.45703,-10.99414 -4.2405,-2.75116 -9.83303,-4.91893 -16.20312,-6.68945 -12.7384,-3.54055 -28.56904,-5.4025 -42.02735,-5.38086 z m 0.006,6 h 0.002 0.002 c 12.88878,-0.0212 28.40089,1.82205 40.41797,5.16211 6.00854,1.67002 11.14627,3.73769 14.54297,5.9414 3.3967,2.20372 4.72265,4.23506 4.72265,5.96094 -4e-4,2.65835 -1.44385,5.11448 -4.70898,7.65039 -3.26513,2.53591 -8.2352,4.86877 -14.20508,6.74219 -11.93976,3.74684 -27.83451,5.72851 -42.47461,5.72851 -16.384985,0 -31.84965,-2.46554 -42.957029,-6.34765 -5.553689,-1.94106 -10.00825,-4.25239 -12.884765,-6.59766 -2.876516,-2.34527 -4.027344,-4.4936 -4.027344,-6.41992 0,-1.04299 0.679186,-2.73375 2.892578,-4.7461 2.213392,-2.01234 5.840526,-4.20909 10.902344,-6.16601 10.123635,-3.91383 25.951102,-6.9082 47.775386,-6.9082 z m 59.77344,28.43359 0.24219,31.57422 c -9.00349,10.14241 -32.41429,17.15625 -60.81836,17.15625 -10.748077,0 -23.619625,-1.08939 -35.042969,-3.90235 -11.021103,-2.7139 -20.483138,-7.15202 -25.646484,-13.11914 l -0.05859,-31.45703 c 0.07801,0.0652 0.137711,0.1406 0.216797,0.20508 3.698057,3.01509 8.704478,5.5168 14.697266,7.61133 11.985575,4.18905 27.955963,6.68359 44.93554,6.68359 15.17241,0 31.47015,-1.98669 44.27149,-6.0039 6.40066,-2.00861 11.93796,-4.50542 16.08789,-7.72852 0.40628,-0.31554 0.73483,-0.68496 1.11523,-1.01953 z" - id="path1217" - inkscape:connector-curvature="0" /> - <path - id="path962" - style="opacity:1;fill:none;stroke:#ffffff;stroke-width:4.00000011;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:8.00000022, 8.00000022000000044;stroke-opacity:1;stroke-dashoffset:0" - d="m 92.143898,104.68835 16.808342,19.28926 m 42.64684,-13.26227 -42.64684,13.26227 -35.478068,19.2434 -0.133636,30.37424 m -29.494141,-49.65678 65.105845,0.0391 49.19102,12.52253 0.45625,31.38123" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccccccc" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="504.96" height="336.998" viewBox="0 0 133.604 89.164"><defs><linearGradient id="A" x1="107.443" y1="146.017" x2="106.901" y2="102.041" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#b0e1fe"/><stop offset="1" stop-color="#10a6fc"/></linearGradient><linearGradient id="B" x1="107.085" y1="186.349" x2="107.507" y2="133.914" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#0a279b"/><stop offset="1" stop-color="#9abfe9"/></linearGradient></defs><g transform="translate(-39.264 -100.066)"><path d="M106.9 102.04h.004c13.773-.025 30.35 2.18 43.2 6.175 6.42 1.998 11.91 4.47 15.54 7.108s5.047 5.066 5.047 7.13c-.001 3.18-1.543 6.12-5.032 9.152s-8.8 5.825-15.18 8.066c-12.76 4.482-29.743 6.853-45.387 6.853-17.51 0-34.034-2.95-45.903-7.594-5.935-2.322-10.695-5.087-13.77-7.893s-4.304-5.376-4.304-7.68c0-1.248.726-3.27 3.09-5.678s6.24-5.035 11.65-7.376c10.818-4.682 27.73-8.264 51.052-8.264z" dominant-baseline="auto" fill="url(#A)"/><path d="M169.996 130.593l.255 36.014c-9.493 11.568-34.177 19.57-64.126 19.57-11.333 0-24.904-1.243-36.95-4.45-11.62-3.095-21.597-8.158-27.04-14.964l-.062-35.88c.082.074.145.16.23.234 3.9 3.44 9.178 6.292 15.497 8.682 12.637 4.778 29.476 7.623 47.38 7.623 15.998 0 33.182-2.266 46.68-6.848 6.75-2.29 12.587-5.14 16.963-8.815.428-.36.775-.78 1.176-1.163z" dominant-baseline="auto" fill="url(#B)"/><path d="M106.828 100.066c-22.365.001-38.822 3.015-49.934 7.31-5.556 2.148-9.785 4.607-12.773 7.324s-4.857 5.828-4.857 9.186v.002l.08 44.617.652.816c6.437 8.092 17.473 12.856 29.557 15.832s25.33 4.076 36.48 4.076c29.976 0 55.216-6.566 66.156-20.03l.68-.836-.346-45.232c0-4.6-3.217-8.243-7.457-10.994s-9.833-4.92-16.203-6.69c-12.738-3.54-28.57-5.403-42.027-5.38zm.006 6h.004c12.89-.02 28.4 1.822 40.418 5.162 6.01 1.67 11.146 3.738 14.543 5.94s4.723 4.235 4.723 5.96c0 2.658-1.444 5.114-4.71 7.65s-8.235 4.87-14.205 6.742c-11.94 3.747-27.835 5.73-42.475 5.73-16.385 0-31.85-2.466-42.957-6.348-5.554-1.94-10.008-4.252-12.885-6.598s-4.027-4.494-4.027-6.42c0-1.043.68-2.734 2.893-4.746s5.84-4.21 10.902-6.166c10.124-3.914 25.95-6.908 47.775-6.908zm59.773 28.434l.242 31.574c-9.003 10.142-32.414 17.156-60.818 17.156-10.748 0-23.62-1.09-35.043-3.902-11.02-2.714-20.483-7.152-25.646-13.12l-.06-31.457c.078.065.138.14.217.205 3.698 3.015 8.704 5.517 14.697 7.61 11.986 4.19 27.956 6.684 44.936 6.684 15.172 0 31.47-1.987 44.27-6.004 6.4-2.01 11.938-4.505 16.088-7.73.406-.316.735-.685 1.115-1.02z" dominant-baseline="auto" fill="#fff"/><path d="M92.144 104.688l16.808 19.29m42.647-13.262l-42.647 13.262-35.478 19.243-.134 30.374m-29.494-49.657l65.106.04 49.19 12.523.456 31.38" fill="none" stroke="#fff" stroke-width="4" stroke-linecap="round" stroke-dasharray="8.00000022, 8.00000022000000044"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/database_server.svg b/src/main/webapp/img/lib/active_directory/database_server.svg index a2ed34816aad4c3fcfb6e6568e3dda6b0dafd7e5..9d267d8584b1da1e0e7b69fd1284bb7fdcd66cfa 100644 --- a/src/main/webapp/img/lib/active_directory/database_server.svg +++ b/src/main/webapp/img/lib/active_directory/database_server.svg @@ -1,223 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="83.742889mm" - height="104.19916mm" - viewBox="0 0 83.742889 104.19916" - version="1.1" - id="svg8" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="database_server.svg"> - <defs - id="defs2"> - <linearGradient - inkscape:collect="always" - id="linearGradient990"> - <stop - style="stop-color:#a9defe;stop-opacity:1" - offset="0" - id="stop986" /> - <stop - style="stop-color:#17a8fc;stop-opacity:1" - offset="1" - id="stop988" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient982"> - <stop - style="stop-color:#102e9f;stop-opacity:1" - offset="0" - id="stop978" /> - <stop - style="stop-color:#85a9de;stop-opacity:1" - offset="1" - id="stop980" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient922"> - <stop - style="stop-color:#a8defe;stop-opacity:1" - offset="0" - id="stop918" /> - <stop - style="stop-color:#12a7fc;stop-opacity:1" - offset="1" - id="stop920" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient914"> - <stop - style="stop-color:#05239a;stop-opacity:1" - offset="0" - id="stop910" /> - <stop - style="stop-color:#91bcf8;stop-opacity:1" - offset="1" - id="stop912" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient904"> - <stop - style="stop-color:#0677fc;stop-opacity:1;" - offset="0" - id="stop900" /> - <stop - style="stop-color:#8fcafe;stop-opacity:1" - offset="1" - id="stop902" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient904" - id="linearGradient908" - gradientUnits="userSpaceOnUse" - x1="83.838669" - y1="200.39299" - x2="83.469749" - y2="127.29478" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient914" - id="linearGradient916" - x1="111.26579" - y1="206.30371" - x2="111.47961" - y2="118.37204" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient922" - id="linearGradient924" - x1="103.08207" - y1="136.8896" - x2="103.19426" - y2="107.62359" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient982" - id="linearGradient984" - x1="132.45909" - y1="207.57362" - x2="132.35197" - y2="189.99773" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-8.3333333e-6,3.7633334e-6)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient990" - id="linearGradient992" - x1="131.2682" - y1="195.08504" - x2="131.37033" - y2="179.02979" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="1.4" - inkscape:cx="3.3033502" - inkscape:cy="134.40021" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata5"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-72.583331,-105.73763)"> - <path - style="opacity:1;fill:url(#linearGradient916);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 129.52031,187.46797 92.556918,207.13616 V 137.21057 L 129.52031,117.27232 Z" - id="path833" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="opacity:1;fill:url(#linearGradient908);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 92.556918,207.13616 74.083331,196.9308 v -69.8311 l 18.473587,10.11087" - id="path835" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccc" /> - <path - style="opacity:1;fill:url(#linearGradient924);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 129.52031,117.27232 92.556918,137.21057 74.083331,127.0997 110.93126,107.43625 Z" - id="path837" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 79.355465,150.82884 v 1.32227 l 6.631269,3.63829 v -1.32227 z" - id="path839" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 79.355465,157.50336 v 1.32227 l 6.631269,3.63829 v -1.32227 z" - id="path839-0" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - id="path830" - style="opacity:1;fill:none;stroke:#ffffff;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 92.556918,137.21057 36.963392,-19.93825 z m 0,69.92559 V 137.21057 L 74.083331,127.0997 M 92.556918,207.13616 74.083331,196.9308 v -69.8311 l 36.847929,-19.66345 18.58905,9.83607 v 70.19565 z" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient984);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.3562181;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 154.65241,189.6299 -0.0983,10.80248 v 0.009 c 0,0.0477 -0.0757,0.43981 -0.48407,0.99855 -0.4083,0.55875 -1.09563,1.2443 -1.99991,1.92029 -1.80288,1.34772 -4.45543,2.67656 -7.49506,3.5403 -6.94206,1.67714 -18.27384,1.54589 -25.22758,0.16992 -2.6101,-0.5822 -5.49498,-1.55805 -7.80888,-2.89788 -2.25454,-1.30544 -3.82945,-2.93981 -4.40392,-4.60634 v -7.74867 c 0.8093,0.47814 1.56913,0.978 2.60296,1.34537 3.0529,1.08485 7.08362,1.85658 11.55026,2.52081 0.002,3.6e-4 0.004,-3.4e-4 0.006,0 7.20487,1.23533 14.58263,1.06819 21.40006,-0.53303 l 0.0309,-0.006 0.0308,-0.009 c 5.0336,-1.4282 8.63659,-3.10314 11.07233,-4.7693 0.35503,-0.24285 0.51762,-0.49281 0.82457,-0.73552 z" - id="path830-9-4" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccscccccccccccccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient992);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.42849016;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 131.37024,179.02905 c 4.93862,-0.14568 10.0042,0.3855 14.07341,1.54021 1.9701,0.71715 4.55842,1.74438 6.54711,2.99521 1.00099,0.6296 1.84093,1.31642 2.35855,1.9495 0.51763,0.63307 0.69072,1.12036 0.69072,1.56622 0,-0.19449 0.002,0.0986 -0.39379,0.59384 -0.39567,0.49523 -1.11379,1.16528 -2.16692,1.87851 -2.09991,1.42217 -5.52817,3.03727 -10.44293,4.42186 -6.58341,1.52717 -13.78641,1.697 -20.81005,0.50394 l -0.0168,-0.002 -0.0168,-0.002 c -4.52341,-0.66515 -8.5696,-1.45433 -11.34213,-2.42977 -1.38627,-0.48771 -2.44928,-1.03828 -3.03665,-1.5118 -0.58736,-0.47351 -0.60227,-0.66479 -0.60227,-0.77366 0,0.15045 0.0722,-0.31139 0.59385,-0.95345 0.5216,-0.64205 1.38252,-1.44748 2.47859,-2.28071 2.19215,-1.66648 5.32286,-3.47056 8.75403,-4.97074 3.54512,-1.55124 8.37255,-2.37811 13.33217,-2.52442 z" - id="path974" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccccccccccccc" /> - <path - id="path830-9" - style="opacity:1;fill:none;stroke:#ffffff;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 106.60552,189.59813 c 0,2.78221 6.74054,4.27294 15.20135,5.38034 6.69226,1.01183 13.55108,0.8719 19.85376,-0.43261 9.37354,-2.34375 13.16559,-5.48859 13.16559,-7.15793 m -35.35978,20.10648 c -5.18726,-1.01663 -11.45615,-3.3789 -12.86092,-7.39902 v -10.49726 c 0,-2.08471 5.38162,-5.62438 11.92505,-8.17086 7.07089,-2.75393 18.47263,-2.86965 26.38391,-0.85801 3.72038,1.20347 9.91174,3.47481 9.91174,6.81867 v 13.06679 c 0,2.21558 -4.6214,5.35918 -10.73294,6.88319 -6.93941,1.48271 -17.75424,1.3564 -24.62684,0.1565 z" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccscccccc" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="316.509" height="393.823" viewBox="0 0 83.743 104.199"><defs><linearGradient id="A" x1="83.839" y1="200.393" x2="83.47" y2="127.295" xlink:href="#F"><stop offset="0" stop-color="#0677fc"/><stop offset="1" stop-color="#8fcafe"/></linearGradient><linearGradient id="B" x1="111.266" y1="206.304" x2="111.48" y2="118.372" xlink:href="#F"><stop offset="0" stop-color="#05239a"/><stop offset="1" stop-color="#91bcf8"/></linearGradient><linearGradient id="C" x1="103.082" y1="136.89" x2="103.194" y2="107.624" xlink:href="#F"><stop offset="0" stop-color="#a8defe"/><stop offset="1" stop-color="#12a7fc"/></linearGradient><linearGradient id="D" x1="132.459" y1="207.574" x2="132.352" y2="189.998" xlink:href="#F"><stop offset="0" stop-color="#102e9f"/><stop offset="1" stop-color="#85a9de"/></linearGradient><linearGradient id="E" x1="131.268" y1="195.085" x2="131.37" y2="179.03" xlink:href="#F"><stop offset="0" stop-color="#a9defe"/><stop offset="1" stop-color="#17a8fc"/></linearGradient><linearGradient id="F" gradientUnits="userSpaceOnUse"/></defs><g transform="translate(-72.583 -105.738)"><path d="M129.52 187.468l-36.963 19.668V137.21l36.963-19.938z" fill="url(#B)"/><path d="M92.557 207.136L74.083 196.93V127.1l18.474 10.11" fill="url(#A)"/><path d="M129.52 117.272L92.557 137.21 74.083 127.1l36.848-19.663z" fill="url(#C)"/><path d="M79.355 150.83v1.322l6.63 3.638v-1.322zm0 6.673v1.322l6.63 3.638v-1.322z" dominant-baseline="auto" fill="#fff"/><path d="M92.557 137.21l36.963-19.938zm0 69.926V137.21L74.083 127.1m18.474 80.036L74.083 196.93V127.1l36.848-19.663 18.59 9.836v70.196z" fill="none" stroke="#fff" stroke-width="3"/><path d="M154.652 189.63l-.098 10.81c0 .048-.076.44-.484 1s-1.096 1.244-2 1.92c-1.803 1.348-4.455 2.677-7.495 3.54-6.942 1.677-18.274 1.546-25.228.17-2.6-.582-5.495-1.558-7.81-2.898-2.255-1.305-3.83-2.94-4.404-4.606v-7.75c.81.478 1.57.978 2.603 1.345 3.053 1.085 7.084 1.857 11.55 2.52 7.21 1.235 14.59 1.068 21.406-.533l.03-.006.03-.01c5.034-1.428 8.637-3.103 11.072-4.77.355-.243.518-.493.825-.736z" dominant-baseline="auto" fill="url(#D)"/><path d="M131.37 179.03c4.94-.146 10.004.385 14.073 1.54 1.97.717 4.558 1.744 6.547 2.995 1 .63 1.84 1.316 2.36 1.95s.69 1.12.69 1.566c0-.194.002.1-.394.594s-1.114 1.165-2.167 1.88c-2.1 1.422-5.528 3.037-10.443 4.422-6.583 1.527-13.786 1.697-20.8.504l-.034-.004c-4.523-.665-8.57-1.454-11.342-2.43-1.386-.488-2.45-1.038-3.037-1.512s-.602-.665-.602-.774c0 .15.072-.31.594-.953s1.383-1.447 2.48-2.28c2.192-1.666 5.323-3.47 8.754-4.97 3.545-1.55 8.373-2.378 13.332-2.524z" dominant-baseline="auto" fill="url(#E)"/><path d="M106.606 189.598c0 2.782 6.74 4.273 15.2 5.38 6.692 1.012 13.55.872 19.854-.433 9.374-2.344 13.166-5.49 13.166-7.158m-35.36 20.106c-5.187-1.017-11.456-3.38-12.86-7.4v-10.497c0-2.085 5.382-5.624 11.925-8.17 7.07-2.754 18.473-2.87 26.384-.858 3.72 1.203 9.912 3.475 9.912 6.82v13.067c0 2.216-4.62 5.36-10.733 6.883-6.94 1.483-17.754 1.356-24.627.156z" fill="none" stroke="#fff" stroke-width="3"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/databases.svg b/src/main/webapp/img/lib/active_directory/databases.svg index 90029cb8dae7f4ad50789a2b12a99b229555eaff..c5cfbef4fba0e07f0aed26216e428484e520e278 100644 --- a/src/main/webapp/img/lib/active_directory/databases.svg +++ b/src/main/webapp/img/lib/active_directory/databases.svg @@ -1,156 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="133.8287mm" - height="129.05145mm" - viewBox="0 0 133.82871 129.05145" - version="1.1" - id="svg8" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="databases.svg"> - <defs - id="defs2"> - <linearGradient - inkscape:collect="always" - id="linearGradient1271"> - <stop - style="stop-color:#0a279b;stop-opacity:1;" - offset="0" - id="stop1267" /> - <stop - style="stop-color:#9abfe9;stop-opacity:1" - offset="1" - id="stop1269" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1255"> - <stop - style="stop-color:#b0e1fe;stop-opacity:1;" - offset="0" - id="stop1251" /> - <stop - style="stop-color:#10a6fc;stop-opacity:1" - offset="1" - id="stop1253" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1255" - id="linearGradient1257" - x1="107.44312" - y1="146.01712" - x2="106.90132" - y2="102.04086" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1271" - id="linearGradient1273" - x1="107.0851" - y1="186.35414" - x2="107.50749" - y2="132.49252" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.97351913,0,4.9300842)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1255" - id="linearGradient3797" - gradientUnits="userSpaceOnUse" - x1="107.44312" - y1="146.01712" - x2="106.90132" - y2="102.04086" - gradientTransform="translate(-0.22518656,-39.887208)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1271" - id="linearGradient3799" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.97351913,-0.22518656,-34.957124)" - x1="107.0851" - y1="186.35414" - x2="107.50749" - y2="132.49252" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.7" - inkscape:cx="-181.35085" - inkscape:cy="357.37311" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata5"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-39.038485,-60.179065)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1257);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6.78384876;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 106.90132,102.04086 h 0.002 0.002 c 13.77264,-0.0253 30.34853,2.17974 43.18969,6.17548 6.42059,1.99786 11.91065,4.47145 15.54029,7.10777 3.62963,2.63634 5.04651,5.06645 5.04651,7.13114 -5.7e-4,3.18021 -1.54287,6.11851 -5.03191,9.15223 -3.48904,3.03376 -8.79995,5.82457 -15.17922,8.06576 -12.75854,4.48239 -29.7433,6.85309 -45.38737,6.85309 -17.508617,0 -34.033798,-2.94955 -45.902882,-7.59376 -5.934792,-2.32212 -10.694832,-5.08718 -13.768609,-7.89286 -3.073778,-2.80567 -4.303526,-5.37575 -4.303526,-7.68022 0,-1.24774 0.725762,-3.27042 3.090942,-5.67782 2.365179,-2.40737 6.241049,-5.03537 11.64999,-7.37646 10.817914,-4.68216 27.730781,-8.26435 51.051705,-8.26435 z" - id="path1239" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1273);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6.57990265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 169.99617,130.59279 0.25537,36.01372 c -9.49319,11.56849 -34.17729,19.56851 -64.12624,19.56851 -11.332658,0 -24.90428,-1.24257 -36.948938,-4.45104 -11.620537,-3.09549 -21.597208,-8.15763 -27.041385,-14.96376 l -0.06178,-35.88006 c 0.08225,0.0744 0.145201,0.16036 0.228589,0.23391 3.899192,3.43902 9.17791,6.2925 15.496642,8.68153 12.637465,4.77806 29.476471,7.62333 47.379552,7.62333 15.99764,0 33.18181,-2.26601 46.6794,-6.84806 6.74879,-2.29104 12.58726,-5.13891 16.96291,-8.81521 0.42837,-0.35989 0.77479,-0.78127 1.17588,-1.16287 z" - id="path1217-9" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 106.82812,100.06641 c -22.365039,5.6e-4 -38.821852,3.01471 -49.933589,7.31054 -5.556387,2.14812 -9.785209,4.60742 -12.773437,7.32422 -2.988229,2.7168 -4.857422,5.82756 -4.857422,9.18555 v 0.002 l 0.08008,44.61719 0.652344,0.81641 c 6.437314,8.09157 17.472537,12.85637 29.55664,15.83203 12.084104,2.97566 25.33039,4.07617 36.478514,4.07617 29.97597,0 55.21573,-6.56627 66.15625,-20.03125 l 0.67969,-0.83594 -0.34571,-45.23242 c 0,-4.59879 -3.21652,-8.24298 -7.45703,-10.99414 -4.2405,-2.75116 -9.83303,-4.91893 -16.20312,-6.68945 -12.7384,-3.54055 -28.56904,-5.4025 -42.02735,-5.38086 z m 0.006,6 h 0.002 0.002 c 12.88878,-0.0212 28.40089,1.82205 40.41797,5.16211 6.00854,1.67002 11.14627,3.73769 14.54297,5.9414 3.3967,2.20372 4.72265,4.23506 4.72265,5.96094 -4e-4,2.65835 -1.44385,5.11448 -4.70898,7.65039 -3.26513,2.53591 -8.2352,4.86877 -14.20508,6.74219 -11.93976,3.74684 -27.83451,5.72851 -42.47461,5.72851 -16.384985,0 -31.84965,-2.46554 -42.957029,-6.34765 -5.553689,-1.94106 -10.00825,-4.25239 -12.884765,-6.59766 -2.876516,-2.34527 -4.027344,-4.4936 -4.027344,-6.41992 0,-1.04299 0.679186,-2.73375 2.892578,-4.7461 2.213392,-2.01234 5.840526,-4.20909 10.902344,-6.16601 10.123635,-3.91383 25.951102,-6.9082 47.775386,-6.9082 z m 59.77344,28.43359 0.24219,31.57422 c -9.00349,10.14241 -32.41429,17.15625 -60.81836,17.15625 -10.748077,0 -23.619625,-1.08939 -35.042969,-3.90235 -11.021103,-2.7139 -20.483138,-7.15202 -25.646484,-13.11914 l -0.05859,-31.45703 c 0.07801,0.0652 0.137711,0.1406 0.216797,0.20508 3.698057,3.01509 8.704478,5.5168 14.697266,7.61133 11.985575,4.18905 27.955963,6.68359 44.93554,6.68359 15.17241,0 31.47015,-1.98669 44.27149,-6.0039 6.40066,-2.00861 11.93796,-4.50542 16.08789,-7.72852 0.40628,-0.31554 0.73483,-0.68496 1.11523,-1.01953 z" - id="path1217" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient3797);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6.78384876;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 106.67613,62.153652 h 0.002 0.002 c 13.77264,-0.0253 30.34853,2.17974 43.18969,6.17548 6.42059,1.99786 11.91065,4.47145 15.54029,7.10777 3.62963,2.63634 5.04651,5.06645 5.04651,7.13114 -5.7e-4,3.18021 -1.54287,6.11851 -5.03191,9.15223 -3.48904,3.03376 -8.79995,5.82457 -15.17922,8.06576 -12.75854,4.482388 -29.7433,6.853088 -45.38737,6.853088 -17.508614,0 -34.033795,-2.94955 -45.902879,-7.593758 -5.934792,-2.32212 -10.694832,-5.08718 -13.768609,-7.89286 -3.073778,-2.80567 -4.303526,-5.37575 -4.303526,-7.68022 0,-1.24774 0.725762,-3.27042 3.090942,-5.67782 2.365179,-2.40737 6.241049,-5.03537 11.64999,-7.37646 10.817914,-4.68216 27.730781,-8.26435 51.051702,-8.26435 z" - id="path1239-4" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient3799);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6.57990265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 169.77098,90.705582 0.25537,36.013718 c -9.49319,11.56849 -34.17729,19.56851 -64.12624,19.56851 -11.332655,0 -24.904277,-1.24257 -36.948935,-4.45104 C 57.330638,138.74128 47.353967,133.67914 41.90979,126.87301 L 41.84801,90.992952 c 0.08225,0.0744 0.145201,0.16036 0.228589,0.23391 3.899192,3.43902 9.17791,6.2925 15.496642,8.68153 12.637465,4.778058 29.476471,7.623328 47.379549,7.623328 15.99764,0 33.18181,-2.26601 46.6794,-6.84806 6.74879,-2.291038 12.58726,-5.138908 16.96291,-8.815208 0.42837,-0.35989 0.77479,-0.78127 1.17588,-1.16287 z" - id="path1217-9-9" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 106.60293,60.179202 c -22.365036,5.6e-4 -38.821849,3.01471 -49.933586,7.31054 -5.556387,2.14812 -9.785209,4.60742 -12.773437,7.32422 -2.988229,2.7168 -4.857422,5.82756 -4.857422,9.18555 v 0.002 l 0.08008,44.617188 0.652344,0.81641 c 6.437314,8.09157 17.472537,12.85637 29.55664,15.83203 12.084104,2.97566 25.33039,4.07617 36.478511,4.07617 29.97597,0 55.21573,-6.56627 66.15625,-20.03125 l 0.67969,-0.83594 -0.34571,-45.232418 c 0,-4.59879 -3.21652,-8.24298 -7.45703,-10.99414 -4.2405,-2.75116 -9.83303,-4.91893 -16.20312,-6.68945 -12.7384,-3.54055 -28.56904,-5.4025 -42.02735,-5.38086 z m 0.006,6 h 0.002 0.002 c 12.88878,-0.0212 28.40089,1.82205 40.41797,5.16211 6.00854,1.67002 11.14627,3.73769 14.54297,5.9414 3.3967,2.20372 4.72265,4.23506 4.72265,5.96094 -4e-4,2.65835 -1.44385,5.11448 -4.70898,7.65039 -3.26513,2.53591 -8.2352,4.86877 -14.20508,6.74219 -11.93976,3.746838 -27.83451,5.728508 -42.47461,5.728508 -16.384982,0 -31.849647,-2.46554 -42.957026,-6.347648 -5.553689,-1.94106 -10.00825,-4.25239 -12.884765,-6.59766 -2.876516,-2.34527 -4.027344,-4.4936 -4.027344,-6.41992 0,-1.04299 0.679186,-2.73375 2.892578,-4.7461 2.213392,-2.01234 5.840526,-4.20909 10.902344,-6.16601 10.123635,-3.91383 25.951102,-6.9082 47.775383,-6.9082 z m 59.77344,28.43359 0.24219,31.574218 c -9.00349,10.14241 -32.41429,17.15625 -60.81836,17.15625 -10.748074,0 -23.619622,-1.08939 -35.042966,-3.90235 -11.021103,-2.7139 -20.483138,-7.15202 -25.646484,-13.11914 L 45.05816,94.864742 c 0.07801,0.0652 0.137711,0.1406 0.216797,0.20508 3.698057,3.01509 8.704478,5.516798 14.697266,7.611328 11.985575,4.18905 27.955963,6.68359 44.935537,6.68359 15.17241,0 31.47015,-1.98669 44.27149,-6.0039 6.40066,-2.00861 11.93796,-4.505418 16.08789,-7.728518 0.40628,-0.31554 0.73483,-0.68496 1.11523,-1.01953 z" - id="path1217-1" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="505.81" height="487.752" viewBox="0 0 133.829 129.051"><style><![CDATA[.B{dominant-baseline:auto}]]></style><defs><linearGradient id="A" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#0a279b"/><stop offset="1" stop-color="#9abfe9"/></linearGradient><linearGradient id="B" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#b0e1fe"/><stop offset="1" stop-color="#10a6fc"/></linearGradient><linearGradient xlink:href="#B" id="C" x1="107.443" y1="146.017" x2="106.901" y2="102.041"/><linearGradient xlink:href="#A" id="D" x1="107.085" y1="186.349" x2="107.507" y2="133.914"/><linearGradient xlink:href="#B" id="E" x1="107.442" y1="146.016" x2="106.9" y2="102.04"/><linearGradient xlink:href="#A" id="F" x1="106.86" y1="146.462" x2="107.282" y2="94.027"/><path id="G" d="M106.9 102.04h.004c13.773-.025 30.35 2.18 43.2 6.175 6.42 1.998 11.91 4.47 15.54 7.108s5.047 5.066 5.047 7.13c-.001 3.18-1.543 6.12-5.032 9.152s-8.8 5.825-15.18 8.066c-12.76 4.482-29.743 6.853-45.387 6.853-17.51 0-34.034-2.95-45.903-7.594-5.935-2.322-10.695-5.087-13.77-7.893s-4.304-5.376-4.304-7.68c0-1.248.726-3.27 3.09-5.678s6.24-5.035 11.65-7.376c10.818-4.682 27.73-8.264 51.052-8.264z"/></defs><g transform="translate(-39.038 -60.179)" class="B"><use xlink:href="#G" fill="url(#C)"/><path d="M169.996 130.593l.255 36.014c-9.493 11.568-34.177 19.57-64.126 19.57-11.333 0-24.904-1.243-36.95-4.45-11.62-3.095-21.597-8.158-27.04-14.964l-.062-35.88c.082.074.145.16.23.234 3.9 3.44 9.178 6.292 15.497 8.682 12.637 4.778 29.476 7.623 47.38 7.623 15.998 0 33.182-2.266 46.68-6.848 6.75-2.29 12.587-5.14 16.963-8.815.428-.36.775-.78 1.176-1.163z" fill="url(#D)"/><path d="M106.828 100.066c-22.365.001-38.822 3.015-49.934 7.31-5.556 2.148-9.785 4.607-12.773 7.324s-4.857 5.828-4.857 9.186v.002l.08 44.617.652.816c6.437 8.092 17.473 12.856 29.557 15.832s25.33 4.076 36.48 4.076c29.976 0 55.216-6.566 66.156-20.03l.68-.836-.346-45.232c0-4.6-3.217-8.243-7.457-10.994s-9.833-4.92-16.203-6.69c-12.738-3.54-28.57-5.403-42.027-5.38zm.006 6h.004c12.89-.02 28.4 1.822 40.418 5.162 6.01 1.67 11.146 3.738 14.543 5.94s4.723 4.235 4.723 5.96c0 2.658-1.444 5.114-4.71 7.65s-8.235 4.87-14.205 6.742c-11.94 3.747-27.835 5.73-42.475 5.73-16.385 0-31.85-2.466-42.957-6.348-5.554-1.94-10.008-4.252-12.885-6.598s-4.027-4.494-4.027-6.42c0-1.043.68-2.734 2.893-4.746s5.84-4.21 10.902-6.166c10.124-3.914 25.95-6.908 47.775-6.908zm59.773 28.434l.242 31.574c-9.003 10.142-32.414 17.156-60.818 17.156-10.748 0-23.62-1.09-35.043-3.902-11.02-2.714-20.483-7.152-25.646-13.12l-.06-31.457c.078.065.138.14.217.205 3.698 3.015 8.704 5.517 14.697 7.61 11.986 4.19 27.956 6.684 44.936 6.684 15.172 0 31.47-1.987 44.27-6.004 6.4-2.01 11.938-4.505 16.088-7.73.406-.316.735-.685 1.115-1.02z" fill="#fff"/><use xlink:href="#G" x="-0.224" y="-39.886" fill="url(#E)"/><path d="M169.77 90.706l.255 36.014c-9.493 11.568-34.177 19.57-64.126 19.57-11.333 0-24.904-1.243-36.95-4.45-11.62-3.095-21.597-8.158-27.04-14.964l-.062-35.88c.082.074.145.16.23.234 3.9 3.44 9.178 6.293 15.497 8.682 12.637 4.778 29.476 7.623 47.38 7.623 15.998 0 33.182-2.266 46.68-6.848 6.75-2.29 12.587-5.14 16.963-8.815.428-.36.775-.78 1.176-1.163z" fill="url(#F)"/><path d="M106.603 60.18c-22.365.001-38.822 3.015-49.934 7.31-5.556 2.148-9.785 4.607-12.773 7.324S39.038 80.642 39.038 84v.002l.08 44.617.652.816c6.437 8.092 17.473 12.856 29.557 15.832s25.33 4.076 36.48 4.076c29.976 0 55.216-6.566 66.156-20.03l.68-.836-.346-45.232c0-4.6-3.217-8.243-7.457-10.994s-9.833-4.92-16.203-6.69c-12.738-3.54-28.57-5.403-42.027-5.38zm.006 6h.004c12.89-.02 28.4 1.822 40.418 5.162 6.01 1.67 11.146 3.738 14.543 5.94s4.723 4.235 4.723 5.96c0 2.658-1.444 5.114-4.71 7.65s-8.235 4.87-14.205 6.742c-11.94 3.747-27.835 5.73-42.475 5.73-16.385 0-31.85-2.466-42.957-6.348-5.554-1.94-10.008-4.252-12.885-6.598S45.04 85.926 45.04 84c0-1.043.68-2.734 2.893-4.746s5.84-4.21 10.902-6.166c10.124-3.914 25.95-6.908 47.775-6.908zm59.773 28.434l.242 31.574c-9.003 10.142-32.414 17.156-60.818 17.156-10.748 0-23.62-1.09-35.043-3.902-11.02-2.714-20.483-7.152-25.646-13.12l-.06-31.457c.078.065.138.14.217.205 3.698 3.015 8.704 5.517 14.697 7.61 11.986 4.19 27.956 6.684 44.936 6.684 15.172 0 31.47-1.987 44.27-6.004 6.4-2.01 11.938-4.505 16.088-7.73.406-.316.735-.685 1.115-1.02z" fill="#fff"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/documents.svg b/src/main/webapp/img/lib/active_directory/documents.svg index dc7e85ea1cf5d868c82181fd79f13e847e50fba2..830d1221c84cc413a2df85ecfafa75cdbf2dd424 100644 --- a/src/main/webapp/img/lib/active_directory/documents.svg +++ b/src/main/webapp/img/lib/active_directory/documents.svg @@ -1,109 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="101.95313mm" - height="154.20251mm" - viewBox="0 0 101.95313 154.20251" - version="1.1" - id="svg5350" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="documents.svg"> - <defs - id="defs5344" /> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.9899495" - inkscape:cx="106.60643" - inkscape:cy="312.45934" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata5347"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-265.14486,-123.43992)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 295.45443,123.43992 v 110.45703 l 1.07422,0.71093 70.56934,37.84766 V 163.51609 Z" - id="path6493" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#48a0fc;fill-opacity:0.96984923;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 300.44076,131.94968 61.66504,34.49219 v 97.66211 l -61.66504,-33.18945 z" - id="path6450" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 305.38288,227.92962 v -87.63477 l 51.82374,29.24223 v 86.29927 z" - id="path6452" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - id="path6454-9" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0073fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 312.79074,206.31615 v 5.61244 l 30.30957,15.0293 v -5.61244 z m 0,-40.4324 v 5.61244 l 30.30957,15.0293 v -5.61244 z m 0,20.2162 v 5.61244 l 30.30957,15.0293 v -5.61244 z" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccccccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 265.14486,128.62682 v 110.45703 l 1.07422,0.71093 70.56934,37.84766 V 168.70299 Z" - id="path6493-1" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#48a0fc;fill-opacity:0.96984923;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 270.13119,137.13658 61.66504,34.49219 v 97.66211 l -61.66504,-33.18945 z" - id="path6450-5" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 275.07331,233.11652 v -87.63477 l 51.82374,29.24223 v 86.29927 z" - id="path6452-4" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - id="path6454-9-1" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0073fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 282.48117,211.50305 v 5.61244 l 30.30957,15.0293 v -5.61244 z m 0,-40.4324 v 5.61244 l 30.30957,15.0293 v -5.61244 z m 0,20.2162 v 5.61244 l 30.30957,15.0293 v -5.61244 z" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccccccccc" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="385.334" height="582.815" viewBox="0 0 101.953 154.203"><style><![CDATA[.B{dominant-baseline:auto}]]></style><path d="M30.31 0v110.457l1.074.71 70.57 37.848V40.076z" fill="#fff" class="B"/><path d="M35.296 8.5L96.96 43.002v97.662l-61.665-33.19z" fill="#48a0fc" fill-opacity=".97" class="B"/><path d="M40.238 104.5V16.855l51.824 29.242v86.3z" fill="#fff"/><path d="M47.646 82.876v5.612l30.3 15.03v-5.612zm0-40.432v5.612l30.3 15.03v-5.612zm0 20.216v5.612l30.3 15.03V77.69z" fill="#0073fc" class="B"/><path d="M0 5.187v110.457l1.074.71 70.57 37.848V45.263z" fill="#fff" class="B"/><path d="M4.986 13.697L66.65 48.19v97.662L4.986 112.66z" fill="#48a0fc" fill-opacity=".97" class="B"/><path d="M9.928 109.677V22.042l51.824 29.242v86.3z" fill="#fff"/><path d="M17.336 88.063v5.612l30.3 15.03v-5.612zm0-40.432v5.612l30.3 15.03V62.66zm0 20.216v5.612l30.3 15.03v-5.612z" fill="#0073fc" class="B"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/domain_controller.svg b/src/main/webapp/img/lib/active_directory/domain_controller.svg index 2c3ffb136007980bd2f7f1526cc22e9b64d22b0f..b80df99af69e18e3e6ab8e9ccbb6d0baef236589 100644 --- a/src/main/webapp/img/lib/active_directory/domain_controller.svg +++ b/src/main/webapp/img/lib/active_directory/domain_controller.svg @@ -1,193 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="75.375648mm" - height="103.1048mm" - viewBox="0 0 75.375648 103.1048" - version="1.1" - id="svg8" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="domain_controller.svg"> - <defs - id="defs2"> - <linearGradient - inkscape:collect="always" - id="linearGradient1709"> - <stop - style="stop-color:#fecb45;stop-opacity:1" - offset="0" - id="stop1705" /> - <stop - style="stop-color:#fe6706;stop-opacity:1" - offset="1" - id="stop1707" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient922"> - <stop - style="stop-color:#a8defe;stop-opacity:1" - offset="0" - id="stop918" /> - <stop - style="stop-color:#12a7fc;stop-opacity:1" - offset="1" - id="stop920" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient914"> - <stop - style="stop-color:#05239a;stop-opacity:1" - offset="0" - id="stop910" /> - <stop - style="stop-color:#91bcf8;stop-opacity:1" - offset="1" - id="stop912" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient904"> - <stop - style="stop-color:#0677fc;stop-opacity:1;" - offset="0" - id="stop900" /> - <stop - style="stop-color:#8fcafe;stop-opacity:1" - offset="1" - id="stop902" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient904" - id="linearGradient908" - gradientUnits="userSpaceOnUse" - x1="83.838669" - y1="200.39299" - x2="83.469749" - y2="127.29478" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient914" - id="linearGradient916" - x1="111.26579" - y1="206.30371" - x2="111.47961" - y2="118.37204" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient922" - id="linearGradient924" - x1="103.08207" - y1="136.8896" - x2="103.19426" - y2="107.62359" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1709" - id="linearGradient1711" - x1="121.96178" - y1="172.11522" - x2="121.73442" - y2="136.41211" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.98994949" - inkscape:cx="133.97393" - inkscape:cy="105.32529" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata5"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-72.583331,-105.73763)"> - <path - style="opacity:1;fill:url(#linearGradient916);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 129.52031,187.46797 92.556918,207.13616 V 137.21057 L 129.52031,117.27232 Z" - id="path833" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="opacity:1;fill:url(#linearGradient908);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 92.556918,207.13616 74.083331,196.9308 v -69.8311 l 18.473587,10.11087" - id="path835" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccc" /> - <path - style="opacity:1;fill:url(#linearGradient924);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 129.52031,117.27232 92.556918,137.21057 74.083331,127.0997 110.93126,107.43625 Z" - id="path837" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 79.355465,150.82884 v 1.32227 l 6.631269,3.63829 v -1.32227 z" - id="path839" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 79.355465,157.50336 v 1.32227 l 6.631269,3.63829 v -1.32227 z" - id="path839-0" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - id="path830" - style="opacity:1;fill:none;stroke:#ffffff;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 92.556918,137.21057 36.963392,-19.93825 z m 0,69.92559 V 137.21057 L 74.083331,127.0997 M 92.556918,207.13616 74.083331,196.9308 v -69.8311 l 36.847929,-19.66345 18.58905,9.83607 v 70.19565 z" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 121.73242,129.28711 -26.208982,46.48437 h 2.996093 49.439449 z" - id="path1703" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1711);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 121.73442,136.41211 20.23242,35.85937 h -40.45118 z" - id="path1695" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="284.886" height="389.688" viewBox="0 0 75.376 103.105"><defs><linearGradient id="A" x1="83.839" y1="200.393" x2="83.47" y2="127.295" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#0677fc"/><stop offset="1" stop-color="#8fcafe"/></linearGradient><linearGradient id="B" x1="111.266" y1="206.304" x2="111.48" y2="118.372" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#05239a"/><stop offset="1" stop-color="#91bcf8"/></linearGradient><linearGradient id="C" x1="103.082" y1="136.89" x2="103.194" y2="107.624" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#a8defe"/><stop offset="1" stop-color="#12a7fc"/></linearGradient><linearGradient id="D" x1="121.962" y1="172.115" x2="121.734" y2="136.412" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fecb45"/><stop offset="1" stop-color="#fe6706"/></linearGradient></defs><g transform="translate(-72.583 -105.738)"><path d="M129.52 187.468l-36.963 19.668V137.21l36.963-19.938z" fill="url(#B)"/><path d="M92.557 207.136L74.083 196.93V127.1l18.474 10.11" fill="url(#A)"/><path d="M129.52 117.272L92.557 137.21 74.083 127.1l36.848-19.663z" fill="url(#C)"/><path d="M79.355 150.83v1.322l6.63 3.638v-1.322zm0 6.673v1.322l6.63 3.638v-1.322z" dominant-baseline="auto" fill="#fff"/><path d="M92.557 137.21l36.963-19.938zm0 69.926V137.21L74.083 127.1m18.474 80.036L74.083 196.93V127.1l36.848-19.663 18.59 9.836v70.196z" fill="none" stroke="#fff" stroke-width="3"/><path d="M121.732 129.287l-26.21 46.484h52.436z" dominant-baseline="auto" fill="#fff"/><path d="M121.734 136.412l20.232 35.86h-40.45z" dominant-baseline="auto" fill="url(#D)"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/fax.svg b/src/main/webapp/img/lib/active_directory/fax.svg index 7e4855f51fbfd49e74f444cdc160682b6bfa6ff5..ced7594ec8e77c1d8bf1725d0468ca463a700d05 100644 --- a/src/main/webapp/img/lib/active_directory/fax.svg +++ b/src/main/webapp/img/lib/active_directory/fax.svg @@ -1,172 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="211.36728mm" - height="159.31528mm" - viewBox="0 0 211.36728 159.31528" - version="1.1" - id="svg8400" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="fax.svg"> - <defs - id="defs8394"> - <linearGradient - inkscape:collect="always" - id="linearGradient8472"> - <stop - style="stop-color:#98cbff;stop-opacity:1" - offset="0" - id="stop8468" /> - <stop - style="stop-color:#1373ff;stop-opacity:1" - offset="1" - id="stop8470" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient8464"> - <stop - style="stop-color:#7fa0ee;stop-opacity:1" - offset="0" - id="stop8460" /> - <stop - style="stop-color:#0d10a1;stop-opacity:1" - offset="1" - id="stop8462" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient8456"> - <stop - style="stop-color:#bfe5ff;stop-opacity:1" - offset="0" - id="stop8452" /> - <stop - style="stop-color:#7fcbff;stop-opacity:1" - offset="1" - id="stop8454" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8456" - id="linearGradient8458" - x1="16.783203" - y1="130.16211" - x2="206.67188" - y2="130.16211" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8464" - id="linearGradient8466" - x1="100.62891" - y1="171.6416" - x2="209.4707" - y2="171.6416" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8472" - id="linearGradient8476" - gradientUnits="userSpaceOnUse" - x1="14.230466" - y1="178.61131" - x2="96.808594" - y2="178.61131" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.7" - inkscape:cx="799.3607" - inkscape:cy="262.3572" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" /> - <metadata - id="metadata8397"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-2.1092637,-66.078353)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 114.03711,66.142578 c -1.64566,-0.120879 -3.24604,-0.07417 -4.76367,0.166016 -1.21993,0.187018 -2.64465,0.701587 -4.65235,1.486328 -2.01023,0.785733 -4.49204,1.846516 -7.306637,3.111328 -5.629198,2.529623 -12.58111,5.874044 -19.589844,9.427734 -7.008734,3.553691 -14.069349,7.313028 -19.910156,10.673828 -5.831787,3.35561 -10.356912,6.198234 -12.726562,8.410157 C 39.693937,104.10325 34.164412,110.3902 31.958984,121.17773 L 11.673828,132 l -0.0059,0.002 a 2.0002,2.0002 0 0 0 -1.306641,2.19336 l -0.132812,46.33594 a 2.0002,2.0002 0 0 0 1.105468,1.79492 l 4.863282,2.43164 -12.9140629,5.85157 a 2.0002,2.0002 0 0 0 -0.046875,3.62109 l 40.7929689,19.77734 a 2.0002,2.0002 0 0 0 1.679687,0.0312 l 15.650391,-6.90625 36.320313,17.90235 a 2.0002,2.0002 0 0 0 2.326173,-0.0293 L 212.3984,166.60938 a 2.0002,2.0002 0 0 0 1.07812,-1.78516 l -0.26562,-44.53711 a 2.0002,2.0002 0 0 0 -1.37696,-2.20703 2.0002,2.0002 0 0 0 -0.01,-0.004 L 137.95117,81.896484 c -1.70826,-3.926724 -4.27795,-8.098053 -8.90625,-10.853515 a 2.0002,2.0002 0 0 0 -0.0391,-0.02344 c -4.68157,-2.64397 -10.02572,-4.513871 -14.96875,-4.876953 z" - id="path8438" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0066ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 113.71289,70.169922 c 4.13901,0.346158 9.08695,1.944636 13.29883,4.318359 3.87153,2.310845 6.01536,5.889546 7.55469,9.611328 0.89398,2.720397 1.5468,5.238277 1.55078,7.320313 0.004,2.098586 -0.50488,3.703602 -2.125,5.279297 -0.81888,0.757813 -3.77551,2.007026 -6.92774,2.705078 -3.16071,0.699933 -6.63006,1.026613 -8.59765,0.894533 a 2.0002,2.0002 0 0 0 -0.0293,-0.002 c -1.4415,-0.0748 -4.39642,-0.924049 -7.14062,-2.433599 C 109.2188,96.720162 107.41556,95.14562 106,93.451172 c 4.54473,-2.463257 8.74135,-4.638343 12.61133,-6.533203 a 2.0002,2.0002 0 1 0 -1.75781,-3.591797 c -4.51153,2.20898 -9.22985,4.581284 -14.80274,7.667969 -0.0102,0.0057 -0.0171,0.008 -0.0273,0.01367 a 2.0002,2.0002 0 0 0 -0.0762,0.03906 c -0.007,0.0037 -0.0109,0.006 -0.0176,0.0098 L 71.050781,107.77539 a 2.0002,2.0002 0 0 0 -0.855469,2.61133 c 2.537942,5.37375 2.291541,9.82219 0.158204,15.26367 -1.423904,3.45266 -4.393478,5.64685 -7.939454,6.91211 -3.53586,1.26165 -7.576162,1.48745 -10.478515,1.0332 -9.422736,-1.93257 -12.994705,-6.09076 -16.132813,-11.38867 1.964204,-10.00391 6.747695,-15.29608 11.945313,-19.80469 a 2.0002,2.0002 0 0 0 0.05664,-0.0508 c 1.679602,-1.57085 6.255346,-4.568106 12.005859,-7.876951 5.750512,-3.308844 12.762581,-7.043246 19.722656,-10.572265 6.960076,-3.529019 13.87238,-6.85385 19.421875,-9.347656 2.774753,-1.246904 5.210383,-2.28756 7.123043,-3.035157 1.91267,-0.747596 3.41516,-1.198335 3.80469,-1.257812 a 2.0002,2.0002 0 0 0 0.0117,-0.002 c 1.14433,-0.181487 2.43581,-0.205471 3.81836,-0.08984 z" - id="path8436" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient8458);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 139.59375,87.15625 67.07813,32.84961 -108.058599,53.16211 -81.830078,-39.36328 16.203125,-8.64258 c 3.425957,5.39843 8.302976,10.35165 18.197266,12.36719 a 2.0002,2.0002 0 0 0 0.08594,0.0156 c 3.634968,0.57738 8.202065,0.31455 12.488281,-1.21484 4.286217,-1.52939 8.355028,-4.43555 10.300782,-9.16797 a 2.0002,2.0002 0 0 0 0.01172,-0.0293 c 2.168339,-5.52116 2.501261,-10.98925 0.373047,-16.64648 L 102.28125,95.414062 c 1.88165,2.52062 4.45106,4.502644 7.08789,5.953128 3.18716,1.75321 6.35131,2.78974 8.84961,2.92187 2.64796,0.17507 6.23762,-0.21174 9.70898,-0.98047 3.47882,-0.77037 6.71844,-1.74034 8.81055,-3.697262 a 2.0002,2.0002 0 0 0 0.0254,-0.02344 c 2.40392,-2.327168 3.35904,-5.284009 3.35352,-8.175782 -0.003,-1.420447 -0.20839,-2.839089 -0.52344,-4.255859 z" - id="path8434" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient8466);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 209.22852,123.20312 0.24218,40.42188 -108.66211,56.45508 -0.17968,-43.44531 z" - id="path8432" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient8476);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 14.351562,137.07617 82.277344,39.57617 0.179688,43.49414 -82.578128,-40.84379 z" - id="path8421" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0066ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999995;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 53.453125,171.94922 a 1.40014,1.40014 0 0 0 -0.603516,0.1289 l -41.736328,19.35547 a 1.40014,1.40014 0 0 0 -0.01172,2.53321 l 33.236329,15.82226 a 1.40014,1.40014 0 0 0 1.164062,0.0195 l 39.974609,-17.53711 a 1.40014,1.40014 0 0 0 0.121094,-2.5039 l -31.474608,-17.6406 a 1.40014,1.40014 0 0 0 -0.669922,-0.17773 z" - id="path8446" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999995;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 53.376955,174.91992 81.779299,190.83594 44.964846,206.98633 14.994143,192.7207 Z" - id="path8423" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0066ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 150.78125,100.46484 a 2.50025,2.50025 0 0 0 -1.03711,0.26758 l -50.576171,25.59961 a 2.50025,2.50025 0 0 0 -0.03711,4.44141 l 31.533201,16.6289 a 2.50025,2.50025 0 0 0 2.32422,0.004 l 50.64844,-26.45898 a 2.50025,2.50025 0 0 0 -0.043,-4.45313 L 151.9902,100.7247 a 2.50025,2.50025 0 0 0 -1.20898,-0.25977 z" - id="path8450" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 150.88085,105.75977 26.09961,13.02343 -45.14453,23.58399 -26.09375,-13.75977 z" - id="path8425" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="798.867" height="602.135" viewBox="0 0 211.367 159.315"><style><![CDATA[.B{dominant-baseline:auto}]]></style><defs><linearGradient id="A" x1="16.783" y1="130.162" x2="206.672" y2="130.162" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#bfe5ff"/><stop offset="1" stop-color="#7fcbff"/></linearGradient><linearGradient id="B" x1="100.629" y1="171.642" x2="209.471" y2="171.642" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#7fa0ee"/><stop offset="1" stop-color="#0d10a1"/></linearGradient><linearGradient id="C" x1="14.23" y1="178.611" x2="96.809" y2="178.611" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#98cbff"/><stop offset="1" stop-color="#1373ff"/></linearGradient></defs><g transform="translate(-2.109 -66.078)" class="B"><path d="M114.037 66.143c-1.646-.12-3.246-.074-4.764.166-1.22.187-2.645.702-4.652 1.486l-7.307 3.11c-5.63 2.53-12.58 5.874-19.6 9.428s-14.07 7.313-19.9 10.674c-5.832 3.356-10.357 6.198-12.727 8.4-5.394 4.685-10.923 10.972-13.13 21.76l-20.29 10.824a2 2 0 0 0-1.307 2.193l-.133 46.336a2 2 0 0 0 1.105 1.795l4.863 2.432-12.914 5.852a2 2 0 0 0-.047 3.621l40.793 19.777a2 2 0 0 0 1.68.031l15.65-6.906 36.32 17.902a2 2 0 0 0 2.326-.029l112.393-58.396a2 2 0 0 0 1.078-1.785l-.266-44.537a2 2 0 0 0-1.387-2.211l-73.873-36.18c-1.708-3.927-4.278-8.098-8.906-10.854a2 2 0 0 0-.039-.023c-4.682-2.644-10.026-4.514-14.97-4.877z" fill="#fff"/><path d="M113.713 70.17c4.14.346 9.087 1.945 13.3 4.318 3.872 2.31 6.015 5.9 7.555 9.61.894 2.72 1.547 5.238 1.55 7.32.004 2.1-.505 3.704-2.125 5.28-.82.758-3.776 2.007-6.928 2.705-3.16.7-6.63 1.027-8.598.895a2 2 0 0 0-.029-.002c-1.442-.075-4.396-.924-7.14-2.434-2.078-1.143-3.88-2.718-5.297-4.412 4.545-2.463 8.74-4.638 12.61-6.533a2 2 0 1 0-1.758-3.592c-4.512 2.21-9.23 4.58-14.803 7.668-.01.006-.017.008-.027.014a2 2 0 0 0-.076.039c-.007.004-.01.006-.018.01l-30.88 16.72a2 2 0 0 0-.855 2.611c2.538 5.374 2.292 9.822.158 15.264-1.424 3.453-4.393 5.647-7.94 6.912-3.536 1.262-7.576 1.487-10.48 1.033-9.423-1.933-12.995-6.09-16.133-11.39 1.964-10.004 6.748-15.296 11.945-19.805a2 2 0 0 0 .057-.051c1.68-1.57 6.255-4.568 12.006-7.877s12.763-7.043 19.723-10.572 13.872-6.854 19.422-9.348c2.775-1.247 5.2-2.288 7.123-3.035s3.415-1.198 3.805-1.258a2 2 0 0 0 .012-.002c1.144-.18 2.436-.205 3.818-.1z" fill="#06f"/><path d="M139.594 87.156l67.078 32.85-108.06 53.162-81.83-39.363 16.203-8.643c3.426 5.398 8.303 10.352 18.197 12.367a2 2 0 0 0 .086.016c3.635.577 8.202.315 12.488-1.215s8.355-4.436 10.3-9.168a2 2 0 0 0 .012-.029c2.168-5.52 2.5-10.99.373-16.646l27.838-15.072c1.882 2.52 4.45 4.503 7.088 5.953 3.187 1.753 6.35 2.8 8.85 2.922 2.648.175 6.238-.212 9.71-.98 3.48-.77 6.718-1.74 8.81-3.697a2 2 0 0 0 .025-.023c2.404-2.327 3.36-5.284 3.354-8.176-.003-1.42-.208-2.84-.523-4.256z" fill="url(#A)"/><path d="M209.23 123.203l.242 40.422L100.81 220.08l-.18-43.445z" fill="url(#B)"/><path d="M14.352 137.076l82.277 39.576.18 43.494-82.578-40.844z" fill="url(#C)"/><path d="M53.453 171.95a1.4 1.4 0 0 0-.604.129l-41.736 19.355a1.4 1.4 0 0 0-.012 2.533l33.236 15.822a1.4 1.4 0 0 0 1.164.019l39.975-17.537a1.4 1.4 0 0 0 .121-2.504l-31.475-17.64a1.4 1.4 0 0 0-.67-.178z" fill="#06f"/><path d="M53.377 174.92l28.402 15.916-36.814 16.15-29.97-14.266z" fill="#fff"/><path d="M150.78 100.465a2.5 2.5 0 0 0-1.037.268l-50.576 25.6a2.5 2.5 0 0 0-.037 4.441l31.533 16.63a2.5 2.5 0 0 0 2.324.004l50.648-26.46a2.5 2.5 0 0 0-.043-4.453L152 100.725a2.5 2.5 0 0 0-1.209-.26z" fill="#06f"/><path d="M150.88 105.76l26.1 13.023-45.145 23.584-26.094-13.76z" fill="#fff"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/firewall.svg b/src/main/webapp/img/lib/active_directory/firewall.svg index 27fba9b918366492beb3bbcf38d92cffbe872a46..069d8cd8e38068fb2b91f278e893cd0f8f354035 100644 --- a/src/main/webapp/img/lib/active_directory/firewall.svg +++ b/src/main/webapp/img/lib/active_directory/firewall.svg @@ -1,151 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="104.64258mm" - height="174.08984mm" - viewBox="0 0 104.64258 174.08984" - version="1.1" - id="svg857" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="firewall.svg"> - <defs - id="defs851"> - <linearGradient - inkscape:collect="always" - id="linearGradient1156"> - <stop - style="stop-color:#abdffe;stop-opacity:1" - offset="0" - id="stop1152" /> - <stop - style="stop-color:#09a4fc;stop-opacity:1" - offset="1" - id="stop1154" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1142"> - <stop - style="stop-color:#0576fc;stop-opacity:1" - offset="0" - id="stop1138" /> - <stop - style="stop-color:#92cbfe;stop-opacity:1" - offset="1" - id="stop1140" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1126"> - <stop - style="stop-color:#052299;stop-opacity:1;" - offset="0" - id="stop1122" /> - <stop - style="stop-color:#90bcf8;stop-opacity:1" - offset="1" - id="stop1124" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1126" - id="linearGradient1128" - x1="146.3457" - y1="228.45117" - x2="146.41335" - y2="112.14957" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1142" - id="linearGradient1136" - x1="99.424263" - y1="228.84627" - x2="98.622459" - y2="73.02813" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1156" - id="linearGradient1150" - x1="105.83873" - y1="112.31675" - x2="105.57146" - y2="65.01004" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.98994949" - inkscape:cx="20.269622" - inkscape:cy="344.74024" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata854"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-51.255859,-60.591797)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 62.876953,60.591797 51.603516,68.730469 V 188.49219 l 1.111328,0.55078 91.820316,45.63867 11.36328,-8.17578 V 106.93359 Z" - id="path1101" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1150);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 63.257812,65.25 86.763668,43.22461 -5.85742,4.16992 -86.708982,-43.205077 z" - id="path1099" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1136);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 55.603516,72.984375 142.3457,116.20703 V 229.12695 L 55.603516,186.01172 Z" - id="path1097" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1128);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 151.89844,112.04883 v 112.40625 l -5.55274,3.99609 V 116 Z" - id="path876" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 79.693359,83.443359 V 100.4082 l -25.515625,-12.714841 -1.785156,3.580079 13.160156,6.55664 v 14.509762 l -12.513672,-6.23632 -1.783203,3.58007 28.4375,14.16993 v 16.60546 l -26.08789,-13 -1.783203,3.58008 13.730468,6.8418 v 14.33398 l -12.134765,-6.04687 -1.785157,3.58203 28.060547,13.98242 v 14.42969 l -25.519531,-12.7168 -1.785156,3.58008 13.164062,6.56055 v 18.69726 h 4 v -16.70508 l 26.736328,13.32227 v 19.15234 h 3.999998 v -17.1582 l 24.46289,12.18945 v 19 h 4 v -17.00586 l 14.37891,7.16407 1.7832,-3.58008 -30.46094,-15.17969 v -14.42969 l 27.92188,13.91211 1.7832,-3.58007 -15.40625,-7.67774 v -14.33398 l 13.81055,6.88281 1.78516,-3.58008 -29.89454,-14.89648 v -16.60352 l 27.54297,13.72461 1.78516,-3.58008 -15.0293,-7.48828 v -14.50976 l 14.38282,7.16601 1.7832,-3.58008 -30.46485,-15.17968 V 98.771484 h -4 V 115.73438 L 83.693359,102.40039 V 83.443359 Z M 69.552734,99.824219 96.289062,113.14648 V 127.6543 L 69.552734,114.33203 Z m 30.736326,15.314451 24.46289,12.18945 v 14.50977 l -24.46289,-12.18945 z m -16.595701,10.70899 26.759761,13.33398 v 16.60547 L 83.693359,142.45117 Z M 69.552734,139.875 96.289062,153.19727 v 14.33398 L 69.552734,154.20898 Z m 30.736326,15.31641 24.46289,12.18945 v 14.33398 l -24.46289,-12.1914 z m -16.595701,10.5332 26.759761,13.33398 v 14.43164 L 83.693359,180.1543 Z" - id="path988-6-3" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="395.501" height="657.978" viewBox="0 0 104.643 174.09"><style><![CDATA[.B{dominant-baseline:auto}]]></style><defs><linearGradient id="A" x1="146.346" y1="228.451" x2="146.413" y2="112.15" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#052299"/><stop offset="1" stop-color="#90bcf8"/></linearGradient><linearGradient id="B" x1="99.424" y1="228.846" x2="98.622" y2="73.028" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#0576fc"/><stop offset="1" stop-color="#92cbfe"/></linearGradient><linearGradient id="C" x1="105.839" y1="112.317" x2="105.571" y2="65.01" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#abdffe"/><stop offset="1" stop-color="#09a4fc"/></linearGradient></defs><g transform="translate(-51.256 -60.592)" class="B"><path d="M62.877 60.592l-11.273 8.14v119.762l1.11.55 91.82 45.64 11.363-8.176V106.934z" fill="#fff"/><path d="M63.258 65.25l86.764 43.225-5.857 4.17-86.71-43.205z" fill="url(#C)"/><path d="M55.604 72.984l86.742 43.223v112.92l-86.742-43.115z" fill="url(#B)"/><path d="M151.898 112.05v112.406l-5.553 3.996V116z" fill="url(#A)"/><path d="M79.693 83.443v16.965L54.178 87.693l-1.785 3.58 13.16 6.557v14.5l-12.514-6.236-1.783 3.58 28.438 14.17v16.605l-26.088-13-1.783 3.58 13.73 6.842v14.334l-12.135-6.047-1.785 3.582 28.06 13.982v14.43l-25.52-12.717-1.785 3.58 13.164 6.56v18.697h4v-16.705L96.29 190.9v19.152h4v-17.158l24.463 12.19v19h4v-17.006l14.38 7.164 1.783-3.58-30.46-15.18v-14.43l27.922 13.912 1.783-3.58-15.406-7.678v-14.334l13.81 6.883 1.785-3.58-29.895-14.896v-16.604l27.543 13.725 1.785-3.58-15.03-7.488v-14.5l14.383 7.166 1.783-3.58-30.465-15.18V98.77h-4v16.963L83.693 102.4V83.443zm-10.14 16.38l26.736 13.322v14.508l-26.736-13.322zm30.736 15.314l24.463 12.19v14.5l-24.463-12.19zm-16.596 10.71l26.76 13.334v16.605l-26.76-13.336zm-14.14 14.027l26.736 13.322v14.334L69.553 154.21zm30.736 15.316l24.463 12.19v14.334l-24.463-12.19zm-16.596 10.533l26.76 13.334V193.5l-26.76-13.336z" fill="#fff"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/folder.svg b/src/main/webapp/img/lib/active_directory/folder.svg index 79b9a2cdf5ed89e45fd60895ff5476f2aafebe2d..85e0e379e2ba45185fec3c76839236c7757deb17 100644 --- a/src/main/webapp/img/lib/active_directory/folder.svg +++ b/src/main/webapp/img/lib/active_directory/folder.svg @@ -1,120 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="125.19141mm" - height="169.67067mm" - viewBox="0 0 125.19141 169.67067" - version="1.1" - id="svg6280" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="folder.svg"> - <defs - id="defs6274"> - <linearGradient - inkscape:collect="always" - id="linearGradient8232"> - <stop - style="stop-color:#78b6ff;stop-opacity:1" - offset="0" - id="stop8228" /> - <stop - style="stop-color:#1372ff;stop-opacity:1" - offset="1" - id="stop8230" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient8224"> - <stop - style="stop-color:#98cbff;stop-opacity:0.94472361" - offset="0" - id="stop8220" /> - <stop - style="stop-color:#0d6fff;stop-opacity:0.93467337" - offset="1" - id="stop8222" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8224" - id="linearGradient8226" - x1="58.980469" - y1="150.36914" - x2="164.28513" - y2="150.36914" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8232" - id="linearGradient8234" - x1="47.095703" - y1="155.30959" - x2="153.15039" - y2="155.30959" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.7" - inkscape:cx="437.3368" - inkscape:cy="279.00692" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata6277"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-43.093748,-65.640619)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 56.972656,65.640625 a 2.0002,2.0002 0 0 0 -1.996094,2.001953 l 0.01367,12.666016 -8.964843,-4.72461 a 2.0002,2.0002 0 0 0 -2.931641,1.769532 l 0.0293,96.150394 a 2.0002,2.0002 0 0 0 1.044922,1.75781 l 109.98828,59.80664 a 2.0002,2.0002 0 0 0 2.00195,-0.0527 l 11.17383,-6.87109 a 2.0002,2.0002 0 0 0 0.95313,-1.70312 l -0.0156,-101.47071 a 2.0002,2.0002 0 0 0 -0.0449,-0.41992 l -3.3418,-15.61914 a 2.0002,2.0002 0 0 0 -1.13476,-1.4043 L 125.35352,90.232422 a 2.0002,2.0002 0 0 0 -2.40625,0.601562 l -5.65235,7.326172 -59.363279,-32.277344 a 2.0002,2.0002 0 0 0 -0.958985,-0.242187 z" - id="path8218" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient8226);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 58.980469,71.005859 57.900391,31.484371 a 2.0002,2.0002 0 0 0 2.53906,-0.53515 l 5.73047,-7.427736 36.03125,16.230466 3.08789,14.42383 0.0156,100.14063 -7.17188,4.41015 0.0371,-92.95898 a 2.0002,2.0002 0 0 0 -1.04883,-1.75977 L 58.992188,82.431641 Z" - id="path8216" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient8234);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 47.095703,80.669922 8.945313,4.71289 0.01953,0.01172 a 2.0002,2.0002 0 0 0 0.01367,0.0059 l 97.076174,52.562498 -0.0371,91.98633 -105.990236,-57.63477 z" - id="path8209" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="473.163" height="641.276" viewBox="0 0 125.191 169.671"><defs><linearGradient id="A" x1="58.98" y1="150.369" x2="164.285" y2="150.369" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#98cbff" stop-opacity=".945"/><stop offset="1" stop-color="#0d6fff" stop-opacity=".935"/></linearGradient><linearGradient id="B" x1="47.096" y1="155.31" x2="153.15" y2="155.31" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#78b6ff"/><stop offset="1" stop-color="#1372ff"/></linearGradient></defs><g transform="translate(-43.094 -65.641)"><path d="M56.973 65.64a2 2 0 0 0-1.996 2.002L55 80.31l-8.965-4.725a2 2 0 0 0-2.932 1.77l.03 96.15a2 2 0 0 0 1.045 1.758l109.988 59.807a2 2 0 0 0 2.002-.053l11.174-6.87a2 2 0 0 0 .953-1.703l-.016-101.47a2 2 0 0 0-.045-.42l-3.342-15.62a2 2 0 0 0-1.135-1.404l-38.395-17.295a2 2 0 0 0-2.406.602l-5.652 7.326-59.363-32.277a2 2 0 0 0-.959-.242z" dominant-baseline="auto" fill="#fff"/><path d="M58.98 71.006l57.9 31.484a2 2 0 0 0 2.539-.535l5.73-7.428 36.03 16.23 3.088 14.424.016 100.14-7.172 4.4.037-92.96a2 2 0 0 0-1.049-1.76l-97.11-52.582z" dominant-baseline="auto" fill="url(#A)"/><path d="M47.096 80.67l8.965 4.725a2 2 0 0 0 .014.006l97.076 52.562-.037 91.986-106-57.635z" dominant-baseline="auto" fill="url(#B)"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/folder_open.svg b/src/main/webapp/img/lib/active_directory/folder_open.svg index 315e524fd81dc200e742d95bbf46acc5f1c9e972..5559fedb2219c2a87bdbce23b1393e6a23c3fe79 100644 --- a/src/main/webapp/img/lib/active_directory/folder_open.svg +++ b/src/main/webapp/img/lib/active_directory/folder_open.svg @@ -1,129 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="164.35735mm" - height="178.8698mm" - viewBox="0 0 164.35735 178.8698" - version="1.1" - id="svg8242" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="folder_open.svg"> - <defs - id="defs8236"> - <linearGradient - inkscape:collect="always" - id="linearGradient8296"> - <stop - style="stop-color:#99ccff;stop-opacity:1" - offset="0" - id="stop8292" /> - <stop - style="stop-color:#096cff;stop-opacity:1" - offset="1" - id="stop8294" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient8288"> - <stop - style="stop-color:#99ccff;stop-opacity:1" - offset="0" - id="stop8284" /> - <stop - style="stop-color:#076bff;stop-opacity:0.98994976" - offset="1" - id="stop8286" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8288" - id="linearGradient8290" - x1="259.59961" - y1="556.01074" - x2="689.38086" - y2="556.01074" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8296" - id="linearGradient8298" - x1="111.58398" - y1="649.75781" - x2="644.80859" - y2="649.75781" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.98994949" - inkscape:cx="289.67308" - inkscape:cy="293.18418" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata8239"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-22.043166,-57.531372)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:15.11811066;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 252.0332,217.44141 c -4.17803,-4e-4 -7.56418,3.38837 -7.56054,7.5664 l 0.21484,253.1836 -150.398438,-75 c -6.831911,-3.40731 -13.833081,4.30683 -9.78125,10.77734 L 260.10156,694.29688 c 0.7373,1.1757 1.78399,2.12576 3.02539,2.74609 l 390.65821,195.14648 c 2.88211,1.94677 6.72059,1.67593 9.30078,-0.65625 l 37.94336,-24.35351 c 2.16918,-1.39217 3.47959,-3.7936 3.47656,-6.3711 L 704.0625,463.38281 c -10e-4,-0.65557 -0.0881,-1.30818 -0.25781,-1.9414 l -13.64258,-51.00782 c -0.54955,-2.05988 -1.9433,-3.79197 -3.83789,-4.76953 L 522.93359,321.5625 c -3.59381,-1.84969 -8.00684,-0.54531 -10.01757,2.96094 L 497.9082,350.68359 255.65625,218.36328 c -1.11146,-0.60577 -2.35723,-0.92275 -3.62305,-0.92187 z" - transform="scale(0.26458333)" - id="path8282" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient8290);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:15.11811066;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 259.59961,237.74805 497.16211,367.5 c 3.60932,1.97111 8.13222,0.69547 10.17969,-2.87109 l 15.08984,-26.31641 153.99219,79.25977 12.52148,46.82226 0.43555,392.29688 -27.38867,17.58203 -11.18164,-32.46094 0.27539,-342.16602 c 0.0276,-5.9631 -1.83546,-7.94024 -7.33399,-10.02343 L 311.30078,320.16211 c -7.94045,-4.67459 -13.80057,-2.99198 -13.89844,7.48047 l 0.85547,177.1875 -38.45312,-19.10938 z" - transform="scale(0.26458333)" - id="path8280" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient8298);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:15.11811066;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 111.58398,428.71094 571.34907,657.19172 644.80859,870.80469 271.78711,684.4707 Z" - transform="scale(0.26458333)" - id="path8257" - inkscape:connector-curvature="0" /> - <path - id="path8263" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0066ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 144.89648,135.01172 c -1.10303,0.0172 -1.98385,0.92428 -1.96875,2.02734 v 28.33069 l 4,2.00452 v -30.33521 c 0.0154,-1.12754 -0.90374,-2.04495 -2.03125,-2.02734 z m -20.45312,-8.91602 c -1.10381,0.0172 -1.98495,0.92548 -1.96875,2.0293 v 27.08851 l 4,2.00452 V 128.125 c 0.0165,-1.1283 -0.90296,-2.04694 -2.03125,-2.0293 z M 104.0918,113.85938 c -1.10457,0.0162 -1.98689,0.92472 -1.97071,2.02929 v 29.16859 l 4,1.93771 v -31.1063 c 0.0165,-1.12752 -0.90177,-2.04581 -2.02929,-2.02929 z" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccccccccccccccc" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="621.192" height="676.044" viewBox="0 0 164.357 178.87"><style><![CDATA[.B{dominant-baseline:auto}]]></style><defs><linearGradient id="A" x1="259.6" y1="556.011" x2="689.381" y2="556.011" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#9cf"/><stop offset="1" stop-color="#076bff" stop-opacity="1"/></linearGradient><linearGradient id="B" x1="111.584" y1="649.758" x2="644.809" y2="649.758" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#9cf"/><stop offset="1" stop-color="#096cff"/></linearGradient></defs><g transform="translate(-22.043 -57.531)" class="B"><path d="M66.684 57.53a2 2 0 0 0-2 2.002l.057 66.988-39.793-19.844c-1.808-.902-3.66 1.14-2.588 2.852l46.46 74.17a2 2 0 0 0 .8.727l103.362 51.633a2 2 0 0 0 2.461-.174l10.04-6.444a2 2 0 0 0 .92-1.686l-.117-105.152c0-.173-.023-.346-.068-.514l-3.6-13.496a2 2 0 0 0-1.015-1.262L138.36 85.08a2 2 0 0 0-2.65.783l-3.97 6.922-64.096-35a2 2 0 0 0-.959-.244z" fill="#fff"/><g transform="scale(.26458333)"><path d="M259.6 237.748L497.162 367.5a7.56 7.56 0 0 0 10.18-2.871l15.1-26.316 153.992 79.26 12.52 46.822.436 392.297-27.39 17.582-11.182-32.46.275-342.166c.028-5.963-1.835-7.94-7.334-10.023L311.3 320.162c-7.94-4.675-13.8-2.992-13.898 7.48l.855 177.188-38.453-19.11z" fill="url(#A)"/><path d="M111.584 428.71l459.765 228.48 73.46 213.613-373.02-186.334z" fill="url(#B)"/></g><path d="M144.896 135.012a2 2 0 0 0-1.969 2.027v28.33l4 2.005V137.04a2 2 0 0 0-2.031-2.027zm-20.453-8.916a2 2 0 0 0-1.969 2.029v27.09l4 2.005v-29.093a2 2 0 0 0-2.031-2.029zm-20.352-12.236a2 2 0 0 0-1.971 2.029v29.17l4 1.938V115.89a2 2 0 0 0-2.029-2.029z" fill="#06f"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/generic_node.svg b/src/main/webapp/img/lib/active_directory/generic_node.svg index 37a82780b4071bba88fb3240b389a89b70d5063f..090e459fac637eb8003e1f82ce0ef8dcaea6eb1b 100644 --- a/src/main/webapp/img/lib/active_directory/generic_node.svg +++ b/src/main/webapp/img/lib/active_directory/generic_node.svg @@ -1,146 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="152.67383mm" - height="151.88672mm" - viewBox="0 0 152.67383 151.88672" - version="1.1" - id="svg6591" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="generic_node.svg"> - <defs - id="defs6585"> - <linearGradient - inkscape:collect="always" - id="linearGradient847"> - <stop - style="stop-color:#a6defe;stop-opacity:1" - offset="0" - id="stop843" /> - <stop - style="stop-color:#10a6fc;stop-opacity:1" - offset="1" - id="stop845" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient841"> - <stop - style="stop-color:#0b79fc;stop-opacity:1" - offset="0" - id="stop837" /> - <stop - style="stop-color:#8bc7fe;stop-opacity:1" - offset="1" - id="stop839" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient6633"> - <stop - style="stop-color:#0b299d;stop-opacity:1" - offset="0" - id="stop6629" /> - <stop - style="stop-color:#8cb7f5;stop-opacity:1" - offset="1" - id="stop6631" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6633" - id="linearGradient6627" - x1="147.80005" - y1="213.61189" - x2="146.73097" - y2="117.92941" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient841" - id="linearGradient835" - x1="68.955536" - y1="214.41371" - x2="68.688271" - y2="120.33484" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient847" - id="linearGradient849" - x1="106.70141" - y1="140.51953" - x2="108.78344" - y2="82.787109" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.35" - inkscape:cx="26.157701" - inkscape:cy="469.16018" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata6588"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-28.789062,-73.958984)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 108.77344,73.958984 28.789062,111.375 v 78.64258 l 78.078128,35.82812 1.69336,-0.8125 72.90234,-35.00586 v -82.24023 z" - id="path6619" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient849);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 108.78344,82.787109 168.17993,110.42969 106.70141,140.51953 42.664302,113.7168 Z" - id="path6617" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient6627);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 173.46313,116.74805 v 68.24609 l -62.63281,30.07617 v -67.66406 z" - id="path6615" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient835);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 36.789302,119.92969 66.041018,27.64258 v 67.61914 L 36.789062,184.88672 Z" - id="path6608" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="577.036" height="574.061" viewBox="0 0 152.674 151.887"><style><![CDATA[.B{dominant-baseline:auto}]]></style><defs><linearGradient id="A" x1="147.8" y1="213.612" x2="146.731" y2="117.929" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#0b299d"/><stop offset="1" stop-color="#8cb7f5"/></linearGradient><linearGradient id="B" x1="68.956" y1="214.414" x2="68.688" y2="120.335" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#0b79fc"/><stop offset="1" stop-color="#8bc7fe"/></linearGradient><linearGradient id="C" x1="106.701" y1="140.52" x2="108.783" y2="82.787" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#a6defe"/><stop offset="1" stop-color="#10a6fc"/></linearGradient></defs><g transform="translate(-28.789 -73.959)" class="B"><path d="M108.773 73.96L28.79 111.375v78.643l78.078 35.828 1.693-.812 72.902-35.006v-82.24z" fill="#fff"/><path d="M108.783 82.787l59.396 27.643-61.48 30.1-64.037-26.803z" fill="url(#C)"/><path d="M173.463 116.748v68.246L110.83 215.07v-67.664z" fill="url(#A)"/><path d="M36.79 119.93l66.04 27.643v67.62l-66.04-30.305z" fill="url(#B)"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/generic_server.svg b/src/main/webapp/img/lib/active_directory/generic_server.svg index 3a588c73f54f9f46aaccd1ebf5163347781ec8d0..d54d7f927719e806e448e8658162d62dba767f7c 100644 --- a/src/main/webapp/img/lib/active_directory/generic_server.svg +++ b/src/main/webapp/img/lib/active_directory/generic_server.svg @@ -1,162 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="58.436977mm" - height="103.1048mm" - viewBox="0 0 58.436977 103.1048" - version="1.1" - id="svg8" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="generic_server.svg"> - <defs - id="defs2"> - <linearGradient - inkscape:collect="always" - id="linearGradient922"> - <stop - style="stop-color:#a8defe;stop-opacity:1" - offset="0" - id="stop918" /> - <stop - style="stop-color:#12a7fc;stop-opacity:1" - offset="1" - id="stop920" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient914"> - <stop - style="stop-color:#05239a;stop-opacity:1" - offset="0" - id="stop910" /> - <stop - style="stop-color:#91bcf8;stop-opacity:1" - offset="1" - id="stop912" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient904"> - <stop - style="stop-color:#0677fc;stop-opacity:1;" - offset="0" - id="stop900" /> - <stop - style="stop-color:#8fcafe;stop-opacity:1" - offset="1" - id="stop902" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient904" - id="linearGradient908" - gradientUnits="userSpaceOnUse" - x1="83.838669" - y1="200.39299" - x2="83.469749" - y2="127.29478" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient914" - id="linearGradient916" - x1="111.26579" - y1="206.30371" - x2="111.47961" - y2="118.37204" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient922" - id="linearGradient924" - x1="103.08207" - y1="136.8896" - x2="103.19426" - y2="107.62359" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.98994949" - inkscape:cx="24.495921" - inkscape:cy="339.54491" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata5"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-72.583331,-105.73763)"> - <path - style="opacity:1;fill:url(#linearGradient916);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 129.52031,187.46797 92.556918,207.13616 V 137.21057 L 129.52031,117.27232 Z" - id="path833" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="opacity:1;fill:url(#linearGradient908);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 92.556918,207.13616 74.083331,196.9308 v -69.8311 l 18.473587,10.11087" - id="path835" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccc" /> - <path - style="opacity:1;fill:url(#linearGradient924);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 129.52031,117.27232 92.556918,137.21057 74.083331,127.0997 110.93126,107.43625 Z" - id="path837" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 79.355465,150.82884 v 1.32227 l 6.631269,3.63829 v -1.32227 z" - id="path839" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 79.355465,157.50336 v 1.32227 l 6.631269,3.63829 v -1.32227 z" - id="path839-0" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - id="path830" - style="opacity:1;fill:none;stroke:#ffffff;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 92.556918,137.21057 36.963392,-19.93825 z m 0,69.92559 V 137.21057 L 74.083331,127.0997 M 92.556918,207.13616 74.083331,196.9308 v -69.8311 l 36.847929,-19.66345 18.58905,9.83607 v 70.19565 z" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccccccc" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="220.864" height="389.688" viewBox="0 0 58.437 103.105"><defs><linearGradient id="A" x1="83.839" y1="200.393" x2="83.47" y2="127.295" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#0677fc"/><stop offset="1" stop-color="#8fcafe"/></linearGradient><linearGradient id="B" x1="111.266" y1="206.304" x2="111.48" y2="118.372" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#05239a"/><stop offset="1" stop-color="#91bcf8"/></linearGradient><linearGradient id="C" x1="103.082" y1="136.89" x2="103.194" y2="107.624" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#a8defe"/><stop offset="1" stop-color="#12a7fc"/></linearGradient></defs><g transform="translate(-72.583 -105.738)"><path d="M129.52 187.468l-36.963 19.668V137.21l36.963-19.938z" fill="url(#B)"/><path d="M92.557 207.136L74.083 196.93V127.1l18.474 10.11" fill="url(#A)"/><path d="M129.52 117.272L92.557 137.21 74.083 127.1l36.848-19.663z" fill="url(#C)"/><path d="M79.355 150.83v1.322l6.63 3.638v-1.322zm0 6.673v1.322l6.63 3.638v-1.322z" dominant-baseline="auto" fill="#fff"/><path d="M92.557 137.21l36.963-19.938zm0 69.926V137.21L74.083 127.1m18.474 80.036L74.083 196.93V127.1l36.848-19.663 18.59 9.836v70.196z" fill="none" stroke="#fff" stroke-width="3"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/hard_disk.svg b/src/main/webapp/img/lib/active_directory/hard_disk.svg index 1bd148b79acbfe921487eb52add389efb8a34492..2eb005458da9ac3d436d36c4e15af65543fb7dcb 100644 --- a/src/main/webapp/img/lib/active_directory/hard_disk.svg +++ b/src/main/webapp/img/lib/active_directory/hard_disk.svg @@ -1,182 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="224.28915mm" - height="121.63081mm" - viewBox="0 0 224.28915 121.63081" - version="1.1" - id="svg6483" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="hard_disk.svg"> - <defs - id="defs6477"> - <linearGradient - inkscape:collect="always" - id="linearGradient6615"> - <stop - style="stop-color:#f6f6fc;stop-opacity:1" - offset="0" - id="stop6611" /> - <stop - style="stop-color:#1717a2;stop-opacity:1" - offset="1" - id="stop6613" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient6607"> - <stop - style="stop-color:#f6f6fc;stop-opacity:1" - offset="0" - id="stop6603" /> - <stop - style="stop-color:#1717a2;stop-opacity:1" - offset="1" - id="stop6605" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient6583"> - <stop - style="stop-color:#7676c8;stop-opacity:1" - offset="0" - id="stop6579" /> - <stop - style="stop-color:#eeeef8;stop-opacity:1" - offset="1" - id="stop6581" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient6567"> - <stop - style="stop-color:#bfe5ff;stop-opacity:0.84422112" - offset="0" - id="stop6563" /> - <stop - style="stop-color:#40b2ff;stop-opacity:0.95979899" - offset="1" - id="stop6565" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6567" - id="linearGradient6569" - x1="413.1524" - y1="612.39264" - x2="413.1524" - y2="347.73267" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6583" - id="linearGradient6585" - x1="120.54223" - y1="135.45032" - x2="120.54038" - y2="117.9816" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.0679961,0,0,1.2254699,-7.3070257,-28.252843)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6607" - id="linearGradient6609" - x1="-2.1328125" - y1="614.04395" - x2="792.66016" - y2="614.04395" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6615" - id="linearGradient6617" - x1="-2.1328125" - y1="697.79785" - x2="792.66016" - y2="697.79785" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.98994949" - inkscape:cx="352.39042" - inkscape:cy="246.68189" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" /> - <metadata - id="metadata6480"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(7.5643961,-88.771324)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:26.45669365;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 395.26367,335.51367 c -114.54347,0 -218.23356,14.8489 -294.41211,39.39844 -38.089275,12.27476 -69.3361,26.8892 -91.9628881,44.12891 -22.6267879,17.23971 -37.4785159,38.2123 -37.4785159,62.02929 0,15.5954 6.36841,29.9719 17.117188,42.87891 -10.73973,12.90239 -17.117188,27.26535 -17.117188,42.85351 0,15.0155 5.906702,28.89971 15.939453,41.43165 -10.030327,12.5328 -15.939453,26.41814 -15.939453,41.43164 0,23.81699 14.851728,44.78958 37.4785159,62.02929 22.6267881,17.23971 53.8736131,31.85414 91.9628881,44.12891 76.17855,24.54954 179.86864,39.39648 294.41211,39.39648 114.54346,0 218.23358,-14.84694 294.41211,-39.39648 38.08929,-12.27477 69.33611,-26.8892 91.96289,-44.12891 22.62679,-17.23971 37.47852,-38.2123 37.47852,-62.02929 0,-15.012 -5.91874,-28.89199 -15.94727,-41.42383 10.03654,-12.53397 15.94727,-26.42086 15.94727,-41.43946 0,-15.58847 -6.37707,-29.9529 -17.11719,-42.85546 10.74817,-12.9067 17.11719,-27.28205 17.11719,-42.87696 0,-23.81699 -14.85173,-44.78958 -37.47852,-62.02929 -22.62678,-17.23971 -53.8736,-31.85415 -91.96289,-44.12891 -76.17853,-24.54954 -179.86865,-39.39844 -294.41211,-39.39844 z" - transform="scale(0.26458333)" - id="path6547" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient6569);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:26.45669365;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 395.26367,361.9707 c 112.23957,0 213.85965,14.77662 286.29883,38.1211 36.21959,11.67224 65.11203,25.57036 84.04297,39.99414 18.9309,14.42377 27.05469,28.25946 27.05469,40.98437 0,12.72495 -8.12379,26.56842 -27.05469,40.99219 -18.93094,14.42377 -47.82338,28.3219 -84.04297,39.99414 -72.43918,23.34448 -174.05926,38.12109 -286.29883,38.12109 -112.23957,0 -213.85964,-14.77661 -286.29883,-38.12109 C 72.745249,550.3844 43.852799,536.48627 24.921875,522.0625 5.9909498,507.63873 -2.1328125,493.79526 -2.1328125,481.07031 c 0,-12.72491 8.1237623,-26.5606 27.0546875,-40.98437 18.930924,-14.42378 47.823374,-28.3219 84.042965,-39.99414 72.43919,-23.34448 174.05926,-38.1211 286.29883,-38.1211 z" - id="path6545" - transform="scale(0.26458333)" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 105.49805,110.09375 c -11.204063,0 -21.349268,1.55378 -28.910159,4.17969 -3.780446,1.31295 -6.923943,2.88044 -9.279297,4.81445 -2.355355,1.93401 -4.035157,4.42336 -4.035156,7.30078 -10e-7,2.87742 1.679801,5.36873 4.035156,7.30274 2.355354,1.934 5.498851,3.5015 9.279297,4.81445 7.560891,2.6259 17.706096,4.17969 28.910159,4.17969 11.20406,0 21.34731,-1.55379 28.9082,-4.17969 3.78045,-1.31295 6.92394,-2.88045 9.2793,-4.81445 2.35535,-1.93401 4.03515,-4.42532 4.03515,-7.30274 0,-2.87742 -1.6798,-5.36677 -4.03515,-7.30078 -2.35536,-1.93401 -5.49885,-3.5015 -9.2793,-4.81445 -7.56089,-2.62591 -17.70414,-4.17969 -28.9082,-4.17969 z" - id="path6553" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient6585);fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:5.72013378;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 105.36448,112.79108 c 11.46475,0 21.84187,1.88114 29.12166,4.7822 3.63991,1.45054 6.49676,3.17153 8.2749,4.84685 1.77813,1.67533 2.35709,3.07006 2.35709,4.21254 0,1.14248 -0.57896,2.53962 -2.35709,4.21494 -1.77814,1.67532 -4.63499,3.39631 -8.2749,4.84684 -7.27979,2.90107 -17.65691,4.78222 -29.12166,4.78222 -11.464749,0 -21.843955,-1.88115 -29.123755,-4.78222 -3.639899,-1.45053 -6.494671,-3.17152 -8.272798,-4.84684 -1.778126,-1.67532 -2.359186,-3.07246 -2.359186,-4.21494 0,-1.14248 0.58106,-2.53721 2.359186,-4.21254 1.778127,-1.67532 4.632899,-3.39631 8.272798,-4.84685 7.2798,-2.90106 17.659006,-4.7822 29.123755,-4.7822 z" - id="path6539" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient6609);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:26.45669365;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 782.80664,542.17773 c 6.77412,8.5475 9.85352,16.79654 9.85352,24.625 0,12.72492 -8.12379,26.56842 -27.05469,40.99219 -18.93094,14.42378 -47.82338,28.31604 -84.04297,39.98828 -72.43918,23.34448 -174.05926,38.12696 -286.29883,38.12696 -112.23957,0 -213.85964,-14.78248 -286.29883,-38.12696 C 72.745249,636.11096 43.852799,622.2187 24.921875,607.79492 5.9909498,593.37115 -2.1328125,579.52765 -2.1328125,566.80273 c 0,-7.82631 3.09110325,-16.07415 9.8613281,-24.61914 0.3905913,0.30352 0.7647788,0.61477 1.1601563,0.91602 22.6267881,17.23971 53.8736131,31.86195 91.9628881,44.13672 76.17855,24.54954 179.86864,39.3984 294.41211,39.39844 114.54346,0 218.23358,-14.8489 294.41211,-39.39844 38.08929,-12.27477 69.33611,-26.89701 91.96289,-44.13672 0.39799,-0.30323 0.77483,-0.61634 1.16797,-0.92188 z" - transform="scale(0.26458333)" - id="path6543" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient6617);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:26.45669365;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 6.3496094,626.83008 c 0.8420327,0.67005 1.6738977,1.34472 2.5390625,2.0039 22.6267881,17.23971 53.8736131,31.86195 91.9628881,44.13672 76.17855,24.54955 179.86864,39.39649 294.41211,39.39649 114.54346,0 218.23358,-14.84694 294.41211,-39.39649 38.08929,-12.27477 69.33611,-26.89701 91.96289,-44.13672 0.86517,-0.65918 1.69703,-1.33385 2.53906,-2.0039 5.81901,7.91034 8.48243,15.55676 8.48243,22.83594 0,12.72495 -8.12379,26.5606 -27.05469,40.98437 -18.93094,14.42374 -47.82338,28.3219 -84.04297,39.99414 -72.43918,23.34448 -174.05926,38.1211 -286.29883,38.12109 -112.23957,0 -213.85964,-14.77661 -286.29883,-38.12109 C 72.745249,718.97229 43.852799,705.07413 24.921875,690.65039 5.9909498,676.22662 -2.1328125,662.39097 -2.1328125,649.66602 c 0,-7.27968 2.66260126,-14.92504 8.4824219,-22.83594 z" - transform="scale(0.26458333)" - id="path6533" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="847.706" height="459.708" viewBox="0 0 224.289 121.631"><style><![CDATA[.B{dominant-baseline:auto}]]></style><defs><linearGradient id="A" x1="413.152" y1="612.393" x2="413.152" y2="347.733" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#bfe5ff" stop-opacity=".844"/><stop offset="1" stop-color="#40b2ff" stop-opacity=".96"/></linearGradient><linearGradient id="B" x1="121.432" y1="137.737" x2="121.43" y2="116.33" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#7676c8"/><stop offset="1" stop-color="#eeeef8"/></linearGradient><linearGradient id="C" x1="-2.133" y1="614.044" x2="792.66" y2="614.044" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#f6f6fc"/><stop offset="1" stop-color="#1717a2"/></linearGradient><linearGradient id="D" x1="-2.133" y1="697.798" x2="792.66" y2="697.798" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#f6f6fc"/><stop offset="1" stop-color="#1717a2"/></linearGradient></defs><g transform="translate(7.564 -88.771)" class="B"><path d="M104.58 88.77c-30.306 0-57.74 3.93-77.897 10.424-10.078 3.248-18.345 7.114-24.332 11.676s-9.916 10.1-9.916 16.412c0 4.126 1.685 7.93 4.53 11.345-2.842 3.414-4.53 7.214-4.53 11.338 0 3.973 1.563 7.646 4.217 10.962-2.654 3.316-4.217 7-4.217 10.962 0 6.302 3.93 11.85 9.916 16.412s14.254 8.428 24.332 11.676c20.156 6.495 47.6 10.424 77.897 10.424s57.74-3.928 77.897-10.424c10.078-3.248 18.345-7.114 24.332-11.676s9.916-10.1 9.916-16.412c0-3.972-1.566-7.644-4.22-10.96 2.656-3.316 4.22-6.99 4.22-10.964 0-4.124-1.687-7.925-4.53-11.34 2.844-3.415 4.53-7.218 4.53-11.345 0-6.302-3.93-11.85-9.916-16.412s-14.254-8.428-24.332-11.676C162.32 92.7 134.886 88.77 104.58 88.77z" fill="#fff" paint-order="normal"/><path d="M395.264 361.97c112.24 0 213.86 14.777 286.3 38.12 36.22 11.672 65.112 25.57 84.043 39.994s27.055 28.26 27.055 40.984-8.124 26.568-27.055 40.992-47.823 28.322-84.043 39.994c-72.44 23.344-174.06 38.12-286.3 38.12s-213.86-14.777-286.3-38.12c-36.22-11.672-65.112-25.57-84.043-39.994S-2.133 493.795-2.133 481.07s8.124-26.56 27.055-40.984 47.823-28.322 84.043-39.994c72.44-23.344 174.06-38.12 286.3-38.12z" transform="scale(.26458333)" fill="url(#A)" paint-order="normal"/><path d="M105.498 110.094c-11.204 0-21.35 1.554-28.9 4.18-3.78 1.313-6.924 2.88-9.28 4.814s-4.035 4.423-4.035 7.3 1.68 5.37 4.035 7.303 5.5 3.502 9.28 4.814c7.56 2.626 17.706 4.18 28.9 4.18s21.347-1.554 28.908-4.18c3.78-1.313 6.924-2.88 9.28-4.814s4.035-4.425 4.035-7.303-1.68-5.367-4.035-7.3-5.5-3.502-9.28-4.814c-7.56-2.626-17.704-4.18-28.908-4.18z" fill="#fff" paint-order="normal"/><path d="M105.364 112.79c11.465 0 21.842 1.88 29.122 4.782 3.64 1.45 6.497 3.172 8.275 4.847s2.357 3.07 2.357 4.213-.58 2.54-2.357 4.215-4.635 3.396-8.275 4.847c-7.28 2.9-17.657 4.782-29.122 4.782s-21.844-1.88-29.124-4.782c-3.64-1.45-6.495-3.172-8.273-4.847s-2.36-3.072-2.36-4.215.58-2.537 2.36-4.213 4.633-3.396 8.273-4.847c7.28-2.9 17.66-4.782 29.124-4.782z" fill="url(#B)" stroke="#fff" stroke-width="5.72" stroke-linejoin="round" paint-order="normal"/><g transform="scale(.26458333)"><path d="M782.807 542.178c6.774 8.548 9.854 16.797 9.854 24.625 0 12.725-8.124 26.568-27.055 40.992s-47.823 28.316-84.043 39.988c-72.44 23.344-174.06 38.127-286.3 38.127s-213.86-14.782-286.3-38.127c-36.22-11.672-65.112-25.564-84.043-39.988s-27.055-28.267-27.055-40.992c0-7.826 3.09-16.074 9.86-24.62l1.16.916c22.627 17.24 53.874 31.862 91.963 44.137 76.18 24.55 179.87 39.398 294.412 39.398s218.234-14.85 294.412-39.398c38.09-12.275 69.336-26.897 91.963-44.137.398-.303.775-.616 1.168-.922z" fill="url(#C)" paint-order="normal"/><path d="M6.35 626.83l2.54 2.004c22.627 17.24 53.874 31.862 91.963 44.137 76.18 24.55 179.87 39.396 294.412 39.396s218.234-14.847 294.412-39.396c38.09-12.275 69.336-26.897 91.963-44.137.865-.66 1.697-1.334 2.54-2.004 5.82 7.9 8.482 15.557 8.482 22.836 0 12.725-8.124 26.56-27.055 40.984s-47.823 28.322-84.043 39.994c-72.44 23.344-174.06 38.12-286.3 38.12s-213.86-14.777-286.3-38.12c-36.22-11.672-65.112-25.57-84.043-39.994s-27.055-28.26-27.055-40.984c0-7.28 2.663-14.925 8.482-22.836z" fill="url(#D)" paint-order="normal"/></g></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/home.svg b/src/main/webapp/img/lib/active_directory/home.svg index 25e6e734a35005dd946872971fa6e9c187f62a3b..f7dfb89bb59808831285c6a728d26f5960a77b3b 100644 --- a/src/main/webapp/img/lib/active_directory/home.svg +++ b/src/main/webapp/img/lib/active_directory/home.svg @@ -1,189 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="169.80272mm" - height="164.91992mm" - viewBox="0 0 169.80272 164.91992" - version="1.1" - id="svg1243" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="home.svg"> - <defs - id="defs1237"> - <linearGradient - inkscape:collect="always" - id="linearGradient1353"> - <stop - style="stop-color:#ffc526;stop-opacity:1" - offset="0" - id="stop1349" /> - <stop - style="stop-color:#fe5f03;stop-opacity:1" - offset="1" - id="stop1351" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1339"> - <stop - style="stop-color:#0b79fc;stop-opacity:1" - offset="0" - id="stop1335" /> - <stop - style="stop-color:#88c5fd;stop-opacity:1" - offset="1" - id="stop1337" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1311"> - <stop - style="stop-color:#08259b;stop-opacity:1" - offset="0" - id="stop1307" /> - <stop - style="stop-color:#7099e2;stop-opacity:1" - offset="1" - id="stop1309" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1295"> - <stop - style="stop-color:#b9e4fe;stop-opacity:1" - offset="0" - id="stop1291" /> - <stop - style="stop-color:#07a2fc;stop-opacity:1" - offset="1" - id="stop1293" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1295" - id="linearGradient1297" - x1="118.29492" - y1="165.58789" - x2="118.30655" - y2="72.104156" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1311" - id="linearGradient1305" - x1="142.30803" - y1="219.51488" - x2="143.064" - y2="148.64433" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1339" - id="linearGradient1333" - x1="72.193451" - y1="219.89285" - x2="71.6875" - y2="109.51953" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1353" - id="linearGradient1347" - x1="84.855652" - y1="215.9241" - x2="84.288689" - y2="152.80208" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.70710678" - inkscape:cx="192.00651" - inkscape:cy="341.48888" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata1240"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-23.593754,-61.666016)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 90.853516,61.666016 -19.072266,7.765625 0.03516,21.544921 -48.222656,41.388668 7.222656,10.18946 1.574219,-1.18164 v 50.51562 l 74.501951,34.69727 68.28711,-30.9043 v -50.45898 l 18.21679,-8.2793 -54.69531,-71.111329 -36.87695,13.710938 0.0254,-9.355469 z" - id="path1289" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccccccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1333);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 71.6875,109.51953 32.7207,45.36328 v 65.03125 L 37.390625,188.70117 v -51.14453 z" - id="path1283" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1347);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 74.132812,153.04102 19.980469,8.41899 v 53.65917 l -19.980469,-9.30586 z" - id="rect1265" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0073fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 90.068359,67.382812 6.773438,5.25 -0.02344,8.771485 L 76.8125,88.84375 76.787109,72.791016 Z" - id="path1287" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1297);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 136.98633,71.804688 48.60547,63.191402 -67.29688,30.5918 -45.658201,-63.30273 -39.248047,32.08593 -0.02148,0.0156 -1.44336,1.08398 -1.615234,-2.27929 44.654297,-38.326176 z" - id="path1285" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1305);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 170.17969,147.49609 v 44.96094 l -60.77149,27.50195 v -58.14453 l 7.22657,10.01953 z" - id="path1260" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00222409;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 44.645183,153.5904 15.109653,7.74851 v 17.3045 L 44.645183,170.8949 Z" - id="rect1263" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="641.775" height="623.32" viewBox="0 0 169.803 164.92"><style><![CDATA[.B{dominant-baseline:auto}]]></style><defs><linearGradient id="A" x1="118.295" y1="165.588" x2="118.307" y2="72.104" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#b9e4fe"/><stop offset="1" stop-color="#07a2fc"/></linearGradient><linearGradient id="B" x1="142.308" y1="219.515" x2="143.064" y2="148.644" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#08259b"/><stop offset="1" stop-color="#7099e2"/></linearGradient><linearGradient id="C" x1="72.193" y1="219.893" x2="71.688" y2="109.52" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#0b79fc"/><stop offset="1" stop-color="#88c5fd"/></linearGradient><linearGradient id="D" x1="84.856" y1="215.924" x2="84.289" y2="152.802" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#ffc526"/><stop offset="1" stop-color="#fe5f03"/></linearGradient></defs><g transform="translate(-23.594 -61.666)" class="B"><path d="M90.854 61.666L71.78 69.432l.035 21.545-48.223 41.39 7.223 10.19 1.574-1.182v50.516l74.502 34.697 68.287-30.904v-50.46l18.217-8.28-54.695-71.11-36.877 13.71.025-9.355z" fill="#fff"/><path d="M71.688 109.52l32.72 45.363v65.03L37.39 188.7v-51.145z" fill="url(#C)"/><path d="M74.133 153.04l19.98 8.42v53.66l-19.98-9.306z" fill="url(#D)" paint-order="normal"/><path d="M90.068 67.383l6.773 5.25-.023 8.77-20.006 7.44-.025-16.053z" fill="#0073fc"/><path d="M136.986 71.805l48.605 63.19-67.297 30.592-45.658-63.303-39.27 32.102-1.443 1.084-1.615-2.28 44.654-38.326z" fill="url(#A)"/><path d="M170.18 147.496v44.96l-60.77 27.502v-58.145l7.227 10.02z" fill="url(#B)"/><path d="M44.645 153.6l15.1 7.75v17.304l-15.1-7.75z" fill="#fff" paint-order="normal"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/home_page.svg b/src/main/webapp/img/lib/active_directory/home_page.svg index ccc340fdff5073ac1f414977419ba91149547c2e..4e61a6160cda2d763cd244e24669186af6740cfd 100644 --- a/src/main/webapp/img/lib/active_directory/home_page.svg +++ b/src/main/webapp/img/lib/active_directory/home_page.svg @@ -1,316 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="188.80547mm" - height="168.3165mm" - viewBox="0 0 188.80547 168.3165" - version="1.1" - id="svg1243" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="home_page.svg"> - <defs - id="defs1237"> - <linearGradient - inkscape:collect="always" - id="linearGradient3869"> - <stop - style="stop-color:#0f2da0;stop-opacity:1" - offset="0" - id="stop3865" /> - <stop - style="stop-color:#89b3f3;stop-opacity:1" - offset="1" - id="stop3867" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3855"> - <stop - style="stop-color:#1c84fd;stop-opacity:1" - offset="0" - id="stop3851" /> - <stop - style="stop-color:#89c6fe;stop-opacity:1" - offset="1" - id="stop3853" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3839"> - <stop - style="stop-color:#98cffe;stop-opacity:1" - offset="0" - id="stop3835" /> - <stop - style="stop-color:#98cffe;stop-opacity:1" - offset="1" - id="stop3837" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3829"> - <stop - style="stop-color:#1b82fc;stop-opacity:1" - offset="0" - id="stop3825" /> - <stop - style="stop-color:#deedff;stop-opacity:1" - offset="1" - id="stop3827" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3823"> - <stop - style="stop-color:#b7defe;stop-opacity:1" - offset="0" - id="stop3819" /> - <stop - style="stop-color:#eaf5ff;stop-opacity:1" - offset="1" - id="stop3821" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1579"> - <stop - style="stop-color:#fe5d02;stop-opacity:1" - offset="0" - id="stop1575" /> - <stop - style="stop-color:#fff835;stop-opacity:1" - offset="1" - id="stop1577" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1567"> - <stop - style="stop-color:#2c6dc9;stop-opacity:1" - offset="0" - id="stop1563" /> - <stop - style="stop-color:#94cdfe;stop-opacity:1" - offset="1" - id="stop1565" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1567" - id="linearGradient1569" - x1="70.511459" - y1="138.11771" - x2="70.776039" - y2="103.98646" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1579" - id="linearGradient1581" - x1="-3.1992188" - y1="131.43945" - x2="150.53906" - y2="131.43945" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3823" - id="linearGradient3817" - x1="97.827736" - y1="153.13545" - x2="97.549446" - y2="125.69669" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3829" - id="linearGradient3833" - gradientUnits="userSpaceOnUse" - x1="146.38016" - y1="172.71407" - x2="145.91211" - y2="150.67383" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3839" - id="linearGradient3841" - x1="155.56055" - y1="184.05859" - x2="155.92169" - y2="171.40445" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3855" - id="linearGradient3849" - x1="137.96117" - y1="220.98294" - x2="138.27792" - y2="174.14363" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3869" - id="linearGradient3863" - x1="165.56107" - y1="220.33961" - x2="165.03191" - y2="180.51982" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.70710678" - inkscape:cx="913.95907" - inkscape:cy="256.44538" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata1240"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(11.709762,-57.884668)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.72722149;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m -11.709762,57.884668 v 1.874 144.620072 H 158.51476 V 57.884668 Z" - id="path1573-9" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#00a0fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m -6.6992188,63.039062 v 1.75 135.050778 H 154.03906 V 63.039062 Z" - id="path1573" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1581);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M -3.1992188,66.539062 H 150.53906 V 196.33984 H -3.1992188 Z" - id="rect1439" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - id="rect1449-9-4-1-3" - style="opacity:1;vector-effect:none;fill:#2c6dc9;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - d="m 51.28981,177.51122 h 85.07046 v 3.43293 H 51.28981 Z m 0,-14.34389 h 85.07046 v 3.43293 H 51.28981 Z m 0,-14.3439 h 85.07046 v 3.43293 H 51.28981 Z m 47.858338,-14.29709 h 37.212122 v 3.33938 H 99.148148 Z m 0,-14.34391 h 37.212122 v 3.33938 H 99.148148 Z m 0,-14.34388 h 37.212122 v 3.33938 H 99.148148 Z" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccccccccccccccccccccccccccc" /> - <rect - style="opacity:1;vector-effect:none;fill:#0073fc;fill-opacity:0.94974874;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="rect1441" - width="153.73059" - height="23.192968" - x="-3.1992188" - y="66.539062" /> - <rect - style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="rect1443" - width="10.365515" - height="10.380196" - x="92.203278" - y="69.889938" /> - <rect - style="opacity:1;vector-effect:none;fill:#7eb9fd;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="rect1445" - width="37.399254" - height="103.08497" - x="-3.1992188" - y="89.732033" /> - <rect - style="opacity:1;vector-effect:none;fill:url(#linearGradient1569);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="rect1447" - width="37.569458" - height="34.240837" - x="51.267719" - y="104.01053" /> - <rect - style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="rect1443-1" - width="10.365515" - height="10.380196" - x="110.97902" - y="69.890625" /> - <rect - style="opacity:1;vector-effect:none;fill:#fd1800;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="rect1443-1-2" - width="10.365515" - height="10.380196" - x="129.75475" - y="69.890633" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 139.6582,158.28906 -21.38867,11.25977 0.39844,40.15625 1.17187,0.52148 35.78516,15.97461 21.28125,-11.35547 0.18945,-40.16211 z" - id="path3809" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient3841);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 139.81836,162.72461 30.67383,13.43359 -14.93164,7.90039 -30.67578,-13.47265 z" - id="path3807" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient3849);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 122.3125,173.82422 31.32422,13.75781 -0.082,33.31445 -30.91211,-13.79882 z" - id="path3805" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient3863);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 173.07422,179.31641 -0.1582,33.125 -15.36133,8.19726 0.082,-33.15429 z" - id="path3732" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 96.052734,121.41602 c -7.330442,0 -13.998333,1.46244 -18.988281,3.74023 -2.494974,1.1389 -4.577967,2.47815 -6.125,4.04297 -1.547033,1.56482 -2.611328,3.44468 -2.611328,5.53516 0,3.63104 2.299768,6.61574 5.648437,8.86328 3.34867,2.24754 7.879148,4.03843 13.333985,5.76562 l 0.0293,0.01 0.0293,0.008 c 5.696355,1.61348 11.009336,1.13425 16.046883,0.75391 l 26.74218,12.72461 -3.38867,-5.66993 -8.46875,-14.16992 c 1.05679,-0.72251 2.04474,-1.48969 2.83594,-2.47461 1.19793,-1.49123 1.89258,-3.44775 1.89258,-5.7168 0,-2.5153 -0.92397,-4.7961 -2.47852,-6.57031 -1.55455,-1.77421 -3.67439,-3.08279 -6.14453,-4.07617 -4.94027,-1.98676 -11.37366,-2.76562 -18.35352,-2.76562 z" - id="path3797" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient3817);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 96.052734,125.41602 c 6.668456,0 12.725516,0.81527 16.861326,2.47851 2.06791,0.83162 3.63295,1.86331 4.62891,3 0.99596,1.1367 1.48633,2.33649 1.48633,3.93359 0,1.54898 -0.33583,2.37396 -1.00977,3.2129 -0.67393,0.83894 -1.8251,1.67878 -3.44336,2.64843 l -1.71289,1.02735 7.08399,11.85351 -15.74805,-7.49219 -0.5293,0.0391 c -5.248395,0.38854 -10.158554,0.83911 -15.187498,-0.58008 -5.273725,-1.67192 -9.527007,-3.41381 -12.277344,-5.25977 -2.757551,-1.85079 -3.876953,-3.52643 -3.876953,-5.54296 0,-0.70857 0.387044,-1.64037 1.457031,-2.72266 1.069987,-1.08229 2.770295,-2.22574 4.941406,-3.2168 4.342223,-1.98212 10.53591,-3.3789 17.326172,-3.3789 z" - id="path3734" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 145.91211,146.67383 c -8.41704,0 -15.2832,6.86616 -15.2832,15.2832 0,8.41704 6.86616,15.2832 15.2832,15.2832 8.41704,0 15.2832,-6.86616 15.2832,-15.2832 0,-8.41704 -6.86616,-15.2832 -15.2832,-15.2832 z" - id="path3801" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient3833);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 145.91211,150.67383 c 6.25528,0 11.2832,5.02792 11.2832,11.2832 0,6.25528 -5.02792,11.2832 -11.2832,11.2832 -6.25528,0 -11.2832,-5.02792 -11.2832,-11.2832 0,-6.25528 5.02792,-11.2832 11.2832,-11.2832 z" - id="path3736" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="713.594" height="636.159" viewBox="0 0 188.805 168.317"><style><![CDATA[.B{dominant-baseline:auto}.C{fill:#fff}]]></style><defs><linearGradient id="A" x1="70.511" y1="138.118" x2="70.776" y2="103.986" xlink:href="#H"><stop offset="0" stop-color="#2c6dc9"/><stop offset="1" stop-color="#94cdfe"/></linearGradient><linearGradient id="B" x1="-3.199" y1="131.439" x2="150.539" y2="131.439" xlink:href="#H"><stop offset="0" stop-color="#fe5d02"/><stop offset="1" stop-color="#fff835"/></linearGradient><linearGradient id="C" x1="97.828" y1="153.135" x2="97.549" y2="125.697" xlink:href="#H"><stop offset="0" stop-color="#b7defe"/><stop offset="1" stop-color="#eaf5ff"/></linearGradient><linearGradient id="D" x1="146.38" y1="172.714" x2="145.912" y2="150.674" xlink:href="#H"><stop offset="0" stop-color="#1b82fc"/><stop offset="1" stop-color="#deedff"/></linearGradient><linearGradient id="E" x1="155.561" y1="184.059" x2="155.922" y2="171.404" xlink:href="#H"><stop offset="0" stop-color="#98cffe"/><stop offset="1" stop-color="#98cffe"/></linearGradient><linearGradient id="F" x1="137.961" y1="220.983" x2="138.278" y2="174.144" xlink:href="#H"><stop offset="0" stop-color="#1c84fd"/><stop offset="1" stop-color="#89c6fe"/></linearGradient><linearGradient id="G" x1="165.561" y1="220.34" x2="165.032" y2="180.52" xlink:href="#H"><stop offset="0" stop-color="#0f2da0"/><stop offset="1" stop-color="#89b3f3"/></linearGradient><linearGradient id="H" gradientUnits="userSpaceOnUse"/></defs><g transform="translate(11.71 -57.885)"><path d="M-11.7 57.885V204.38h170.225V57.885z" paint-order="normal" class="B C"/><path d="M-6.7 63.04v136.8H154.04V63.04z" fill="#00a0fc" paint-order="normal" class="B"/><path d="M-3.2 66.54H150.54v129.8H-3.2z" fill="url(#B)" paint-order="normal" class="B"/><path d="M51.3 177.51h85.07v3.433H51.3zm0-14.344h85.07v3.433H51.3zm0-14.344h85.07v3.433H51.3zm47.858-14.297h37.212v3.34H99.148zm0-14.344h37.212v3.34H99.148zm0-14.344h37.212v3.34H99.148z" fill="#2c6dc9" paint-order="normal"/><path d="M-3.2 66.54h153.73v23.193H-3.2z" fill="#0073fc" fill-opacity=".95" paint-order="normal"/><path d="M92.203 69.9h10.366v10.38H92.203z" paint-order="normal" class="C"/><path d="M-3.2 89.732h37.4v103.085H-3.2z" fill="#7eb9fd" paint-order="normal"/><path d="M51.268 104.01h37.57v34.24h-37.57z" fill="url(#A)" paint-order="normal"/><path d="M110.98 69.89h10.366v10.38H110.98z" paint-order="normal" class="C"/><path d="M129.755 69.89h10.366v10.38h-10.366z" fill="#fd1800" paint-order="normal"/><path d="M139.658 158.29l-21.39 11.26.398 40.156 1.172.52 35.785 15.975 21.28-11.355.19-40.162z" class="B C"/><path d="M139.818 162.725l30.674 13.434-14.932 7.9-30.676-13.473z" fill="url(#E)" class="B"/><path d="M122.313 173.824l31.324 13.758-.082 33.314-30.912-13.8z" fill="url(#F)" class="B"/><path d="M173.074 179.316l-.158 33.125-15.36 8.197.082-33.154z" fill="url(#G)" class="B"/><path d="M96.053 121.416c-7.33 0-13.998 1.462-18.988 3.74-2.495 1.14-4.578 2.478-6.125 4.043s-2.61 3.445-2.61 5.535c0 3.63 2.3 6.616 5.648 8.863s7.88 4.038 13.334 5.766l.03.01.03.008c5.696 1.613 11.01 1.134 16.047.754l26.742 12.725-11.857-19.84c1.057-.723 2.045-1.5 2.836-2.475 1.198-1.49 1.893-3.448 1.893-5.717 0-2.515-.924-4.796-2.48-6.57s-3.674-3.083-6.145-4.076c-4.94-1.987-11.374-2.766-18.354-2.766z" class="B C"/><path d="M96.053 125.416c6.668 0 12.726.815 16.86 2.48 2.068.832 3.633 1.863 4.63 3s1.486 2.336 1.486 3.934c0 1.55-.336 2.374-1 3.213s-1.825 1.68-3.443 2.648l-1.713 1.027 7.084 11.854-15.748-7.492-.53.04c-5.248.39-10.16.84-15.187-.58-5.274-1.672-9.527-3.414-12.277-5.26-2.758-1.85-3.877-3.526-3.877-5.543 0-.71.387-1.64 1.457-2.723s2.77-2.226 4.94-3.217c4.342-1.982 10.536-3.38 17.326-3.38z" fill="url(#C)" class="B"/><path d="M145.912 146.674c-8.417 0-15.283 6.866-15.283 15.283s6.866 15.283 15.283 15.283 15.283-6.866 15.283-15.283-6.866-15.283-15.283-15.283z" paint-order="normal" class="B C"/><path d="M145.912 150.674c6.255 0 11.283 5.028 11.283 11.283s-5.028 11.283-11.283 11.283-11.283-5.028-11.283-11.283 5.028-11.283 11.283-11.283z" fill="url(#D)" paint-order="normal" class="B"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/input_output_filter.svg b/src/main/webapp/img/lib/active_directory/input_output_filter.svg index 143d708704f7ab934d267f0c54a069a5f41148ca..73f0eb5c45c3b35ad99ae5bd3a0c472634bea467 100644 --- a/src/main/webapp/img/lib/active_directory/input_output_filter.svg +++ b/src/main/webapp/img/lib/active_directory/input_output_filter.svg @@ -1,283 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="124.55078mm" - height="184.92773mm" - viewBox="0 0 124.55078 184.92773" - version="1.1" - id="svg1164" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="input_output_filter.svg"> - <defs - id="defs1158"> - <linearGradient - id="linearGradient1718" - inkscape:collect="always"> - <stop - id="stop1714" - offset="0" - style="stop-color:#b0e1fe;stop-opacity:1" /> - <stop - id="stop1716" - offset="1" - style="stop-color:#09a3fc;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1702"> - <stop - style="stop-color:#032198;stop-opacity:1" - offset="0" - id="stop1698" /> - <stop - style="stop-color:#92bdf9;stop-opacity:1" - offset="1" - id="stop1700" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1694"> - <stop - style="stop-color:#0576fd;stop-opacity:1" - offset="0" - id="stop1690" /> - <stop - style="stop-color:#93ccfe;stop-opacity:1" - offset="1" - id="stop1692" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1694" - id="linearGradient1696" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(61.647559,96.812694)" - x1="39.687859" - y1="140.92062" - x2="40.217026" - y2="-26.560617" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1702" - id="linearGradient1704" - x1="164.41992" - y1="237.07869" - x2="164.25195" - y2="119.70117" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1718" - id="linearGradient1712" - x1="111.69193" - y1="119.63993" - x2="110.75649" - y2="64.261688" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.70710678" - inkscape:cx="282.57985" - inkscape:cy="388.19661" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" /> - <metadata - id="metadata1161"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-43.701172,-58.9375)"> - <path - id="path1630-58" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 71.709473,162.25594 4.757814,2.40234 v 7.37695 l -4.757814,-2.50196 z m 30.735647,15.73443 4.75782,2.40234 v 7.37696 l -4.75782,-2.50196 z m 30.73563,15.73444 4.75782,2.40234 v 7.37695 l -4.75782,-2.50196 z m -0.13229,-32.14688 4.75782,2.40234 v 7.37696 l -4.75782,-2.50196 z m -30.73563,-15.73444 4.75781,2.40234 v 7.37695 l -4.75781,-2.50196 z m -30.735656,-15.73444 4.75782,2.40234 v 7.37695 l -4.75782,-2.50196 z m 61.427286,-1.72806 4.75782,2.40234 v 7.37696 l -4.75782,-2.50196 z m -30.73563,-15.73444 4.75781,2.40234 v 7.37696 l -4.75781,-2.50196 z m -30.735628,-15.734437 4.757814,2.40234 v 7.376957 l -4.757814,-2.50196 z M 57.980469,58.9375 43.701172,64.589844 V 187.20898 l 1.095703,0.55469 110.675785,56.10156 12.77929,-8.89648 V 115.19531 Z" - inkscape:connector-curvature="0" /> - <path - id="path1524-9" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1696);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 133.18076,201.00214 4.75781,2.50196 v -7.37695 l -4.75781,-2.40235 z m -30.73564,-15.73443 4.75781,2.50196 v -7.37696 l -4.75781,-2.40235 z m -30.735648,-15.73444 4.757814,2.50196 v -7.37696 l -4.757814,-2.40234 z m -0.132292,-32.14689 4.757814,2.50196 v -7.37695 l -4.757814,-2.40235 z m 30.73565,15.73445 4.75781,2.50196 v -7.37696 l -4.75781,-2.40234 z m 30.73563,15.73444 4.75782,2.50196 v -7.37696 l -4.75782,-2.40234 z m -0.044,-33.19695 4.75782,2.50196 v -7.37695 l -4.75782,-2.40235 z m -30.73563,-15.73443 4.75781,2.50196 v -7.37696 l -4.75781,-2.40234 z m -30.735648,-15.73444 4.757814,2.50196 V 99.314453 L 71.533182,96.912109 Z M 47.701172,69.220703 153.31055,123.28711 V 238.28516 L 47.701172,184.75195 Z" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccc" /> - <path - inkscape:connector-curvature="0" - id="path1246" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 71.533203,96.912109 4.757813,2.402344 v 7.376957 l -4.757813,-2.50196 z M 59.410156,87.904297 v 22.769533 l 0.679688,0.34961 18.701172,9.60742 v -9.80078 -13.050783 -0.002 l -0.453125,-0.228516 z" /> - <path - inkscape:connector-curvature="0" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0073fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 61.910156,91.984375 7.123047,3.628906 v 8.570309 l -7.123047,3.67579 z" - id="path1248" /> - <path - inkscape:connector-curvature="0" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#00a0fc;fill-opacity:0.99497483;fill-rule:nonzero;stroke:none;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 70.277344,106.35547 6.013672,3.16015 v 7.02149 L 63.392578,109.9082 Z" - id="path1198" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1712);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 57.771484,63.322266 104.099606,53.107424 -6.5625,3.38476 L 50.544922,66.183594 Z" - id="path1354" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1704);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 164.25195,119.70117 v 113.17969 l -6.9414,4.83203 V 123.2832 Z" - id="path1189" - inkscape:connector-curvature="0" /> - <path - id="path1246-3" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 102.26885,112.64655 4.75781,2.40234 v 7.37696 l -4.75781,-2.50196 z m -12.123045,-9.00781 v 22.76953 l 0.679688,0.34961 18.701167,9.60742 v -9.80078 -13.05078 -0.002 l -0.45312,-0.22852 z" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0073fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 92.645805,107.71882 7.123047,3.6289 v 8.57031 l -7.123047,3.67579 z" - id="path1248-0" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#00a0fc;fill-opacity:0.99497483;fill-rule:nonzero;stroke:none;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 101.01299,122.08991 6.01367,3.16015 v 7.02149 l -12.898433,-6.62891 z" - id="path1198-3" - inkscape:connector-curvature="0" /> - <path - id="path1246-6" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 133.00449,128.38099 4.75781,2.40234 v 7.37696 l -4.75781,-2.50196 z m -12.12305,-9.00781 v 22.76953 l 0.67969,0.34961 18.70117,9.60742 v -9.80078 -13.05078 -0.002 l -0.45312,-0.22852 z" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0073fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 123.38144,123.45326 7.12305,3.6289 v 8.57031 l -7.12305,3.67579 z" - id="path1248-9" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#00a0fc;fill-opacity:0.99497483;fill-rule:nonzero;stroke:none;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 131.74863,137.82435 6.01367,3.16015 v 7.02149 l -12.89843,-6.62891 z" - id="path1198-7" - inkscape:connector-curvature="0" /> - <path - id="path1246-2" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 71.577181,130.10905 4.757813,2.40234 v 7.37696 l -4.757813,-2.50196 z m -12.123046,-9.00781 v 22.76953 l 0.679687,0.34961 18.701172,9.60742 v -9.80078 -13.05078 -0.002 l -0.453125,-0.22852 z" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0073fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 61.954135,125.18131 7.123046,3.62891 v 8.57031 l -7.123046,3.67579 z" - id="path1248-90" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#00a0fc;fill-opacity:0.99497483;fill-rule:nonzero;stroke:none;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 70.321322,139.55241 6.013672,3.16015 v 7.02149 l -12.898437,-6.62891 z" - id="path1198-1" - inkscape:connector-curvature="0" /> - <path - id="path1246-3-1" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 102.31283,145.84349 4.75781,2.40234 v 7.37696 l -4.75781,-2.50196 z m -12.123047,-9.00781 v 22.76953 l 0.679688,0.34961 18.701169,9.60742 v -9.80078 -13.05078 -0.002 l -0.45312,-0.22852 z" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0073fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 92.689783,140.91575 7.123047,3.62891 v 8.57031 l -7.123047,3.67579 z" - id="path1248-0-5" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#00a0fc;fill-opacity:0.99497483;fill-rule:nonzero;stroke:none;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 101.05697,155.28685 6.01367,3.16015 v 7.02149 l -12.898435,-6.62891 z" - id="path1198-3-0" - inkscape:connector-curvature="0" /> - <path - id="path1246-6-5" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 133.04847,161.57793 4.75781,2.40234 v 7.37696 l -4.75781,-2.50196 z m -12.12305,-9.00781 v 22.76953 l 0.67969,0.34961 18.70117,9.60742 v -9.80078 -13.05078 -0.002 l -0.45312,-0.22852 z" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0073fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 123.42542,156.65019 7.12305,3.62891 v 8.57031 l -7.12305,3.67579 z" - id="path1248-9-4" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#00a0fc;fill-opacity:0.99497483;fill-rule:nonzero;stroke:none;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 131.79261,171.02129 6.01367,3.16015 v 7.02149 l -12.89844,-6.62891 z" - id="path1198-7-4" - inkscape:connector-curvature="0" /> - <path - id="path1246-1" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 71.709473,162.25592 4.757813,2.40235 v 7.37696 l -4.757813,-2.50196 z m -12.123047,-9.00781 v 22.76954 l 0.679688,0.3496 18.701172,9.60742 v -9.80077 -13.05079 -0.002 l -0.453125,-0.22851 z" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0073fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 62.086426,157.32819 7.123047,3.62891 v 8.5703 l -7.123047,3.67579 z" - id="path1248-1" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#00a0fc;fill-opacity:0.99497483;fill-rule:nonzero;stroke:none;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 70.453614,171.69928 6.013672,3.16016 v 7.02148 l -12.898438,-6.62891 z" - id="path1198-30" - inkscape:connector-curvature="0" /> - <path - id="path1246-3-3" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 102.44512,177.99036 4.75781,2.40235 v 7.37695 l -4.75781,-2.50196 z m -12.123046,-9.00781 v 22.76953 l 0.679688,0.34961 18.701168,9.60742 v -9.80078 -13.05078 -0.002 l -0.45312,-0.22851 z" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0073fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 92.822074,173.06263 7.123047,3.62891 v 8.5703 l -7.123047,3.67579 z" - id="path1248-0-9" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#00a0fc;fill-opacity:0.99497483;fill-rule:nonzero;stroke:none;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 101.18926,187.43372 6.01367,3.16015 v 7.02149 l -12.898434,-6.62891 z" - id="path1198-3-5" - inkscape:connector-curvature="0" /> - <path - id="path1246-6-4" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 133.18076,193.7248 4.75781,2.40235 v 7.37695 l -4.75781,-2.50195 z m -12.12305,-9.00781 v 22.76953 l 0.67969,0.34962 18.70117,9.60741 v -9.80078 -13.05078 -0.002 l -0.45312,-0.22851 z" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0073fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 123.55771,188.79707 7.12305,3.62891 v 8.5703 l -7.12305,3.67579 z" - id="path1248-9-8" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#00a0fc;fill-opacity:0.99497483;fill-rule:nonzero;stroke:none;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 131.9249,203.16816 6.01367,3.16015 v 7.02149 l -12.89844,-6.62891 z" - id="path1198-7-5" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="470.744" height="698.94" viewBox="0 0 124.551 184.928"><style><![CDATA[.B{dominant-baseline:auto}.C{fill:#fff}.D{fill:#0073fc}.E{fill:#00a0fc}.F{fill-opacity:.995}]]></style><defs><linearGradient id="A" x1="101.335" y1="237.733" x2="101.865" y2="70.252" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#0576fd"/><stop offset="1" stop-color="#93ccfe"/></linearGradient><linearGradient id="B" x1="164.42" y1="237.079" x2="164.252" y2="119.701" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#032198"/><stop offset="1" stop-color="#92bdf9"/></linearGradient><linearGradient id="C" x1="111.692" y1="119.64" x2="110.756" y2="64.262" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#b0e1fe"/><stop offset="1" stop-color="#09a3fc"/></linearGradient><path id="D" d="M70.277 106.355l6.014 3.16v7.02l-12.898-6.63z"/><path id="E" d="M102.27 112.647l4.758 2.402v7.377l-4.758-2.502zm-12.123-9.008v22.77l19.38 9.957v-22.854l-.453-.23z"/><path id="F" d="M92.646 107.72l7.123 3.63v8.57l-7.123 3.676z"/></defs><g transform="translate(-43.701 -58.937)" class="B"><path d="M71.71 162.256l4.758 2.402v7.377l-4.758-2.502zM102.445 178l4.758 2.402v7.377l-4.758-2.502zm30.736 15.734l4.758 2.402v7.377l-4.758-2.502zm-.132-32.147l4.758 2.402v7.377l-4.758-2.502zm-30.736-15.734l4.758 2.402v7.377l-4.758-2.502zM71.577 130.11l4.758 2.402v7.377l-4.758-2.502zm61.427-1.728l4.758 2.402v7.377l-4.758-2.502zm-30.736-15.734l4.758 2.402v7.377l-4.758-2.502zM71.533 96.912l4.758 2.402v7.377l-4.758-2.502zM57.98 58.938L43.7 64.6v122.62l111.77 56.656 12.78-8.896V115.195z" class="C"/><path d="M133.18 201.002l4.758 2.502v-7.377l-4.758-2.402zm-30.736-15.734l4.758 2.502v-7.377L102.445 178zM71.71 169.533l4.758 2.502v-7.377l-4.758-2.402zm-.132-32.147l4.758 2.502v-7.377l-4.758-2.402zm30.736 15.734l4.758 2.502v-7.377l-4.758-2.402zm30.736 15.734l4.758 2.502v-7.377l-4.758-2.402zm-.044-33.197l4.758 2.502v-7.377l-4.758-2.402zm-30.736-15.734l4.758 2.502v-7.377l-4.758-2.402zM71.533 104.19l4.758 2.502v-7.377l-4.758-2.402zM47.7 69.22l105.61 54.066v114.998L47.7 184.752z" fill="url(#A)"/><path d="M71.533 96.912l4.758 2.402v7.377l-4.758-2.502zM59.4 87.904v22.77l19.38 9.957V97.777l-.453-.23z" class="C"/><path d="M61.9 91.984l7.123 3.63v8.57L61.9 107.86z" class="D"/><use xlink:href="#D" class="E F"/><path d="M57.77 63.322l104.1 53.107-6.562 3.385-104.764-53.63z" fill="url(#C)"/><path d="M164.252 119.7v113.18l-6.94 4.832v-114.43z" fill="url(#B)"/><use xlink:href="#E" class="C"/><use xlink:href="#F" class="D"/><use xlink:href="#D" x="30.736" y="15.745" class="E F"/><use xlink:href="#E" x="30.734" y="15.733" class="C"/><use xlink:href="#F" x="30.734" y="15.733" class="D"/><use xlink:href="#D" x="61.473" y="31.469" class="E F"/><path d="M71.577 130.11l4.758 2.402v7.377l-4.758-2.502zM59.454 121.1v22.77l19.38 9.957v-22.854l-.453-.23z" class="C"/><use xlink:href="#F" x="-30.692" y="17.46" class="D"/><use xlink:href="#D" x="0.043" y="33.197" class="E F"/><path d="M102.313 145.843l4.758 2.402v7.377l-4.758-2.502zM90.2 136.836v22.77l19.38 9.957V146.71l-.453-.23z" class="C"/><path d="M92.7 140.916l7.123 3.63v8.57L92.7 156.79z" class="D"/><use xlink:href="#D" x="30.78" y="48.932" class="E F"/><use xlink:href="#E" x="30.778" y="48.931" class="C"/><use xlink:href="#F" x="30.779" y="48.93" class="D"/><use xlink:href="#D" x="61.516" y="64.665" class="E F"/><path d="M71.71 162.256l4.758 2.402v7.377l-4.758-2.502zm-12.123-9.008v22.77l19.38 9.957V163.12l-.453-.23z" class="C"/><use xlink:href="#F" x="-30.56" y="49.608" class="D"/><use xlink:href="#D" x="0.177" y="65.345" class="E F"/><use xlink:href="#E" x="0.175" y="65.353" class="C"/><use xlink:href="#F" x="0.176" y="65.343" class="D"/><use xlink:href="#D" x="30.913" y="81.079" class="E F"/><path d="M133.18 193.725l4.758 2.402v7.377l-4.758-2.502zm-12.123-9.008v22.77l19.38 9.957V194.6l-.453-.23z" class="C"/><use xlink:href="#F" x="30.912" y="81.077" class="D"/><use xlink:href="#D" x="61.648" y="96.813" class="E F"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/interface.svg b/src/main/webapp/img/lib/active_directory/interface.svg index b7ad3b0de950e40f90e6d3f21d8a36c9481d654d..9ae69edc2069fed4b386e86691ccd1271e6f7de3 100644 --- a/src/main/webapp/img/lib/active_directory/interface.svg +++ b/src/main/webapp/img/lib/active_directory/interface.svg @@ -1,73 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="90.848969mm" - height="43.837399mm" - viewBox="0 0 90.848969 43.837399" - version="1.1" - id="svg1997" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="interface.svg"> - <defs - id="defs1991" /> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.35" - inkscape:cx="382.78317" - inkscape:cy="-178.68708" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" /> - <metadata - id="metadata1994"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-59.959608,-127.10359)"> - <circle - style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#0066ff;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="path2010" - cx="128.88988" - cy="149.02229" - r="19.918699" /> - <path - style="opacity:1;fill:none;stroke:#0066ff;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 106.96727,148.26636 H 61.988093" - id="path2012" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="343.366" height="165.683" viewBox="0 0 90.849 43.837" stroke="#06f" stroke-width="4"><circle cx="68.93" cy="21.918" r="19.919" fill="#fff" stroke-linejoin="round" paint-order="normal"/><path d="M47.007 21.162H2.028" fill="none" stroke-linecap="round"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/internet_cloud.svg b/src/main/webapp/img/lib/active_directory/internet_cloud.svg index 8d7e779dc571faa4961c1a58dee4136a0cc56292..9909df12e36c6ec2e717ddf64683c84af970490e 100644 --- a/src/main/webapp/img/lib/active_directory/internet_cloud.svg +++ b/src/main/webapp/img/lib/active_directory/internet_cloud.svg @@ -1,94 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="260.56827mm" - height="164.36427mm" - viewBox="0 0 260.56827 164.36427" - version="1.1" - id="svg1199" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="internet_cloud.svg"> - <defs - id="defs1193"> - <linearGradient - inkscape:collect="always" - id="linearGradient1233"> - <stop - style="stop-color:#80bafd;stop-opacity:1" - offset="0" - id="stop1229" /> - <stop - style="stop-color:#fbfdff;stop-opacity:1" - offset="1" - id="stop1231" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1233" - id="linearGradient1235" - x1="118.13313" - y1="224.83722" - x2="118.74414" - y2="73.349617" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.7" - inkscape:cx="754.61213" - inkscape:cy="232.74287" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata1196"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(23.501943,-67.138277)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 112.0332,67.138672 c -2.41513,0.0066 -4.86723,0.09762 -7.35351,0.271484 l -0.0898,0.0059 -0.0879,0.01172 C 87.958475,69.578434 76.325332,74.405205 66.019531,84.839844 54.45197,81.430335 42.488717,80.257946 29.699219,84.367188 l -0.07617,0.02344 -0.07422,0.0293 C 13.428458,90.560221 1.8737212,98.340566 -4.0292969,110.6875 l -0.019531,0.0391 -0.017578,0.041 c -3.1287648,7.07679 -4.0702409,12.76375 -3.8417969,17.71484 -6.3774752,4.40361 -11.5727612,10.20107 -13.9902352,18.54883 -2.57056,8.87639 -2.151165,20.29377 1.990235,35.83594 l 0.02539,0.0977 0.0332,0.0937 c 6.789811,20.0305 25.8117207,31.33602 44.394531,36.33008 l 0.04687,0.0117 0.04687,0.0117 c 26.434095,6.19968 41.590647,1.0921 52.078125,-4.18945 13.045785,10.89551 26.788617,15.28529 41.216797,16.16992 l 0.043,0.002 0.041,0.002 c 20.73922,0.68747 36.26189,-1.81953 49.7168,-11.9414 l 0.004,-0.002 0.004,-0.004 c 3.51463,-2.66086 6.47226,-5.4831 9.01562,-8.41211 11.83335,-2.50072 25.42939,-7.70485 35.74219,-13.5332 15.05113,-7.58511 24.85595,-21.09985 24.55859,-38.94727 0.25155,-14.68704 -5.77527,-31.27525 -19.94921,-42.31836 -10.83466,-8.6185 -25.69435,-15.33481 -41.37305,-16.572264 -3.76183,-7.20407 -9.37098,-13.778501 -19.10938,-20.234375 l -0.004,-0.0039 -0.004,-0.002 C 144.04746,71.151617 128.9391,67.092151 112.0332,67.138672 Z" - id="path1227" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1235);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 118.74414,73.349609 c 13.13893,0.895327 24.73235,4.609091 34.57617,11.087891 15.85425,10.512774 19.15655,19.556 22.74024,33.9375 l 5.82226,-1.44922 c -0.93887,-3.76774 -1.95031,-7.32221 -3.20508,-10.71875 13.03996,1.78624 25.58353,7.47221 34.71094,14.73633 l 0.0137,0.01 0.0117,0.01 c 12.5442,9.76785 17.88689,24.56749 17.64844,37.54883 l -0.002,0.0527 0.002,0.0547 c 0.2764,15.71219 -7.76952,26.74731 -21.31055,33.55274 l -0.0664,0.0332 -0.0645,0.0371 c -7.81133,4.42349 -17.98053,8.55321 -27.46289,11.24219 3.07792,-5.33404 4.93594,-10.93299 5.64844,-16.67188 l -5.95312,-0.74023 c -1.28682,10.36476 -6.31294,19.94826 -17.73243,28.59375 -12.0745,9.07994 -25.71616,11.39568 -45.85937,10.73242 -21.401029,-1.32127 -39.982433,-9.85246 -58.640626,-39.78711 l -5.091797,3.17383 c 5.67295,9.10151 11.516418,16.22445 17.494141,22.03906 -9.614909,4.58787 -22.38555,8.27618 -45.964844,2.75586 -17.3394407,-4.66992 -34.2650414,-15.00354 -40.19336,-32.3711 -3.945965,-14.86129 -4.128813,-25.15877 -2,-32.50976 1.726137,-5.96051 4.968694,-10.13672 9.384766,-13.64063 0.8082493,2.94609 1.8334011,5.75742 3.0878906,8.4336 l 5.4335938,-2.54688 C -2.1349478,132.61181 -4.748712,127.18156 1.40625,113.23438 6.4218591,102.78089 16.227823,95.931468 31.605469,90.0625 47.895545,84.854857 62.571987,88.981624 78.197266,95.652344 l 2.355468,-5.519532 c -2.642985,-1.128339 -5.326285,-2.058732 -8,-3.035156 8.715552,-7.987246 18.114622,-11.803291 32.628906,-13.701172 4.68424,-0.323856 9.20981,-0.34348 13.5625,-0.04687 z" - id="path1220" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="984.824" height="621.218" viewBox="0 0 260.568 164.364"><defs><linearGradient id="A" x1="118.133" y1="224.837" x2="118.744" y2="73.35" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#80bafd"/><stop offset="1" stop-color="#fbfdff"/></linearGradient></defs><path d="M135.535.001l-7.354.27-.1.006-.088.012C111.46 2.44 99.827 7.267 89.522 17.702c-11.568-3.4-23.53-4.582-36.32-.473l-.076.023-.074.03c-16.12 6.14-27.675 13.92-33.578 26.268l-.02.04-.018.04c-3.13 7.077-4.07 12.764-3.842 17.715-6.377 4.404-11.573 10.2-14 18.55-2.57 8.876-2.15 20.294 2 35.836l.025.098.033.094c6.8 20.03 25.812 31.336 44.395 36.33l.094.023c26.434 6.2 41.59 1.092 52.078-4.19 13.046 10.896 26.79 15.285 41.217 16.17l.043.002.04.002c20.74.687 36.262-1.82 49.717-11.94l.004-.002.004-.004c3.515-2.66 6.472-5.483 9.016-8.412 11.833-2.5 25.43-7.705 35.742-13.533 15.05-7.585 24.856-21.1 24.56-38.947.252-14.687-5.775-31.275-19.95-42.318-10.835-8.618-25.694-15.335-41.373-16.572-3.762-7.204-9.37-13.78-19.11-20.234l-.004-.004-.004-.002C167.55 4.014 152.44-.046 135.535.001z" dominant-baseline="auto" fill="#fff"/><path d="M118.744 73.35c13.14.895 24.732 4.61 34.576 11.088 15.854 10.513 19.157 19.556 22.74 33.938l5.822-1.45c-.94-3.768-1.95-7.322-3.205-10.72 13.04 1.786 25.584 7.472 34.71 14.736l.014.01.012.01c12.544 9.768 17.887 24.567 17.648 37.55l-.002.053.002.055c.276 15.712-7.77 26.747-21.31 33.553l-.066.033-.065.037c-7.81 4.423-17.98 8.553-27.463 11.242 3.078-5.334 4.936-10.933 5.648-16.672l-5.953-.74c-1.287 10.365-6.313 19.948-17.732 28.594-12.074 9.08-25.716 11.396-45.86 10.732-21.4-1.32-39.982-9.852-58.64-39.787l-5.092 3.174c5.673 9.102 11.516 16.224 17.494 22.04-9.615 4.588-22.386 8.276-45.965 2.756-17.34-4.67-34.265-15.004-40.193-32.37-3.946-14.86-4.13-25.16-2-32.5 1.726-5.96 4.97-10.137 9.385-13.64.808 2.946 1.833 5.757 3.088 8.434l5.434-2.547c-3.906-8.334-6.52-13.764-.365-27.71 5.016-10.453 14.822-17.303 30.2-23.172 16.3-5.208 30.967-1.08 46.592 5.6l2.355-5.52c-2.643-1.128-5.326-2.06-8-3.035 8.716-7.987 18.115-11.803 32.63-13.7 4.684-.324 9.2-.343 13.563-.047z" dominant-baseline="auto" fill="url(#A)" transform="translate(23.502 -67.138)"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/internet_globe.svg b/src/main/webapp/img/lib/active_directory/internet_globe.svg index c2665f4c935e9cc481c73f455cedffa50723f0d3..a37b3c08199496346d94418093d19269155a1d12 100644 --- a/src/main/webapp/img/lib/active_directory/internet_globe.svg +++ b/src/main/webapp/img/lib/active_directory/internet_globe.svg @@ -1,131 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="55.444218mm" - height="55.444218mm" - viewBox="0 0 55.444218 55.444218" - version="1.1" - id="svg8" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="internet_globe.svg"> - <defs - id="defs2"> - <linearGradient - inkscape:collect="always" - id="linearGradient1059"> - <stop - style="stop-color:#0375fc;stop-opacity:1;" - offset="0" - id="stop1055" /> - <stop - style="stop-color:#f6fbff;stop-opacity:1" - offset="1" - id="stop1057" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1051"> - <stop - style="stop-color:#fdc125;stop-opacity:1" - offset="0" - id="stop1047" /> - <stop - style="stop-color:#d03604;stop-opacity:1" - offset="1" - id="stop1049" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1051" - id="linearGradient1053" - x1="132.35118" - y1="211.70523" - x2="131.81923" - y2="159.60558" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1059" - id="linearGradient1061" - x1="132.71446" - y1="211.56192" - x2="131.29002" - y2="160.13483" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="1.979899" - inkscape:cx="48.020387" - inkscape:cy="61.491889" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata5"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-103.62462,-158.38913)"> - <g - id="g1067"> - <path - inkscape:connector-curvature="0" - id="path1021-4" - d="m 131.29003,160.13482 c 14.32462,0 25.90183,11.57926 25.90183,25.90387 0,14.32463 -11.57721,25.90184 -25.90183,25.90184 -14.32461,0 -25.90388,-11.57721 -25.90388,-25.90184 0,-14.32461 11.57927,-25.90387 25.90388,-25.90387 z" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1061);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.14333677;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> - <path - sodipodi:nodetypes="cccccccccccc" - inkscape:connector-curvature="0" - id="path1044" - d="m 136.00104,192.57253 c -2.33525,1.39098 -3.67831,1.6612 -6.10805,2.06324 -2.32867,0.35714 -5.26692,0.20848 -8.06673,-0.18633 l -6.07106,-1.08579 -5.37289,-8.0155 -3.14041,-8.35217 c 1.26494,-5.68101 5.01648,-10.53315 11.62622,-14.43256 3.15304,-1.06325 4.74433,-2.39219 10.33387,-2.8295 3.70236,1.52507 7.25562,3.47782 10.04543,6.77173 3.14531,3.91207 5.08878,7.87265 4.8581,12.24715 -0.16757,2.78556 -1.19929,6.22775 -2.69632,8.53306 -1.51875,2.25832 -2.18759,3.31184 -5.40816,5.28667 z" - style="opacity:0.1;fill:#000000;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" - inkscape:connector-curvature="0" - d="m 151.51162,173.57603 1.35341,-0.009 1.3879,2.33053 c 0.47107,1.73048 0.63246,3.42755 0.91105,5.20814 0.2367,1.97536 0.12359,5.15998 0.0945,6.88857 -0.0387,1.45722 -0.52127,2.39305 -0.89958,3.72294 -0.79673,0.40154 -1.9059,0.69859 -2.4616,1.50568 l -1.49341,0.015 -1.95176,-1.01332 -1.49412,-1.58139 -0.95324,-2.333 c -0.0112,-1.9681 0.27744,-3.87566 0.46675,-5.80327 0.93009,-1.90456 1.90672,-3.7601 2.99563,-5.49736 0.57175,-1.15554 1.25121,-2.27768 2.04447,-3.43323 z m -5.08498,-8.67297 c 1.28463,1.21025 2.4339,2.45433 3.36264,3.75356 1.16624,1.58584 2.28209,3.20087 2.52415,3.95056 l -3.8962,-0.10023 -0.006,2.29505 -0.75595,2.69021 -1.59173,0.0513 -1.12568,-0.63449 -1.36779,-2.07216 c -0.0285,-0.51573 0.23467,-1.24349 0.52228,-1.7545 l 0.99487,-0.92048 0.0554,-3.7683 z m -2.42295,-1.56727 -2.63486,1.88415 -1.1454,-2.80239 -0.28298,1.49569 -2.45685,-0.0496 0.0449,0.81081 -1.35531,-0.003 -3.09115,1.30961 -3.8491,0.54452 -1.56998,0.35079 -0.41378,-2.38177 1.04609,-1.93253 -2.50172,-0.27725 -1.26233,-1.24514 c 1.83867,-0.6578 4.43034,-1.08643 7.28801,-1.43411 l 7.27604,1.32292 z m -23.92538,45.47763 0.42523,-2.90568 -1.55916,-0.4961 c -1.87085,-1.34896 -3.4366,-3.18931 -5.1263,-4.96094 l -0.0236,-2.83481 c 0.29923,-1.34093 0.92919,-2.77301 1.39378,-3.7089 -0.89665,-0.69835 -1.83025,-1.36503 -2.5159,-2.24424 -1.02531,-1.57048 -2.07347,-3.30099 -3.13012,-5.09086 -0.88048,-1.29674 -2.12428,-2.09629 -3.60258,-2.57496 l 2.53953,-10.87863 6.14211,-7.08705 7.12554,-4.30022 -0.76153,1.82192 c -0.33758,-0.0598 -0.64637,-0.17242 -1.11099,6.5e-4 0.0216,0.61349 0.0892,1.64006 0.34931,2.24428 0.79064,0.78216 1.59923,1.45095 1.67371,2.35137 l 1.04991,-1.14539 0.62855,-2.14044 c 1.15109,0.65427 1.59427,0.77955 2.46663,1.46479 l 2.46949,1.97089 2.26786,0.75596 -1.98438,1.73633 c -0.97251,1.07833 -2.15015,2.30721 -3.93331,3.23641 l -1.12211,-0.0236 -0.98038,1.13392 -0.85045,1.87807 -2.19698,1.72451 c -0.60979,0.5479 -1.05431,1.28574 -1.18118,2.11431 0.0402,1.19841 0.0424,2.27003 -0.0118,3.15374 -0.68908,-0.5692 -1.04635,-1.4201 -1.35836,-2.39778 l -0.5079,-1.71271 c -0.87587,-0.907 -2.00647,-1.73866 -3.23642,-2.45684 -1.03586,0.31577 -1.78364,0.66144 -2.53952,1.03943 -0.37157,0.93492 -0.4992,1.74494 -0.4961,2.49228 0.2894,1.44742 0.94714,2.55657 1.86625,3.53171 0.87784,0.30172 1.93194,-0.0341 2.46867,-0.49609 l 0.44884,1.97257 c -0.73882,0.22575 -1.14889,0.57208 -1.38198,0.88587 l -0.0236,1.77177 c 0.31714,0.9049 0.639,1.80321 1.11031,2.49228 0.49429,0.29012 1.09647,0.41841 1.84263,0.33073 l 0.37798,0.54334 5.76413,-0.0591 c 2.2391,0.97212 3.44852,2.21285 4.69094,3.44498 l 2.91786,2.97943 c 1.18161,0.52887 2.33134,0.89835 3.4686,1.2055 2.05374,0.21824 3.15454,0.36586 4.19639,0.77887 l 1.07857,1.03321 0.007,1.56657 -1.44103,0.37797 -7.74851,8.22098 c -1.77964,-0.2359 -3.27579,-0.36497 -5.31529,-0.96856 -1.57374,-0.47872 -2.84198,-0.928 -4.63021,-1.77177 z" - style="opacity:1;fill:url(#linearGradient1053);fill-opacity:1;stroke:#ffc727;stroke-width:1.70000005;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path1019" /> - <circle - r="26.222109" - cy="186.11124" - cx="131.34673" - id="path1021" - style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:0;stroke:#ffffff;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" /> - </g> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="209.552" height="209.552" viewBox="0 0 55.444 55.444"><defs><linearGradient id="A" x1="132.351" y1="211.705" x2="131.819" y2="159.606" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fdc125"/><stop offset="1" stop-color="#d03604"/></linearGradient><linearGradient id="B" x1="132.714" y1="211.562" x2="131.29" y2="160.135" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#0375fc"/><stop offset="1" stop-color="#f6fbff"/></linearGradient></defs><g transform="translate(-103.625 -158.389)"><path d="M131.3 160.135c14.325 0 25.902 11.58 25.902 25.904a25.88 25.88 0 0 1-25.902 25.902c-14.325 0-25.904-11.577-25.904-25.902s11.58-25.904 25.904-25.904z" dominant-baseline="auto" fill="url(#B)" paint-order="normal"/><path d="M136 192.573c-2.335 1.39-3.678 1.66-6.108 2.063-2.33.357-5.267.208-8.067-.186l-6.07-1.086-5.373-8.016-3.14-8.352c1.265-5.68 5.016-10.533 11.626-14.433 3.153-1.063 4.744-2.392 10.334-2.83 3.702 1.525 7.256 3.478 10.045 6.772 3.145 3.912 5.09 7.873 4.858 12.247-.168 2.786-1.2 6.228-2.696 8.533-1.52 2.258-2.188 3.312-5.408 5.287z" opacity=".1"/><path d="M151.512 173.576l1.353-.01 1.388 2.33c.47 1.73.632 3.428.91 5.208.237 1.975.124 5.16.094 6.89-.04 1.457-.52 2.393-.9 3.723-.797.402-1.906.7-2.462 1.506l-1.493.015-1.952-1.013-1.494-1.58-.953-2.333c-.01-1.968.277-3.876.467-5.803l2.996-5.497c.572-1.156 1.25-2.278 2.044-3.433zm-5.085-8.673c1.285 1.2 2.434 2.454 3.363 3.754 1.166 1.586 2.282 3.2 2.524 3.95l-3.896-.1-.006 2.295-.756 2.7-1.592.05-1.126-.634-1.368-2.072c-.028-.516.235-1.243.522-1.755l.995-.92.055-3.768zm-2.423-1.567l-2.635 1.884-1.145-2.802-.283 1.496-2.457-.05.045.81-1.355-.003-3.09 1.3-3.85.545-1.57.35-.414-2.382 1.046-1.933-2.502-.277-1.262-1.245c1.84-.658 4.43-1.086 7.288-1.434l7.276 1.323zm-23.925 45.478l.425-2.906-1.56-.496c-1.87-1.35-3.437-3.19-5.126-4.96l-.024-2.835c.3-1.34.93-2.773 1.394-3.71-.897-.698-1.83-1.365-2.516-2.244l-3.13-5.09c-.88-1.297-2.124-2.096-3.603-2.575l2.54-10.88 6.142-7.087 7.126-4.3-.762 1.822c-.338-.06-.646-.172-1.11.001.022.613.09 1.64.35 2.244.79.782 1.6 1.45 1.674 2.35l1.05-1.145.63-2.14c1.15.654 1.594.78 2.467 1.465l2.47 1.97 2.268.756-1.984 1.736c-.973 1.078-2.15 2.307-3.933 3.236l-1.122-.024-.98 1.134-.85 1.878-2.197 1.725c-.6.548-1.054 1.286-1.18 2.114l-.012 3.154c-.69-.57-1.046-1.42-1.358-2.398l-.508-1.713c-.876-.907-2.006-1.74-3.236-2.457-1.036.316-1.784.66-2.54 1.04-.372.935-.5 1.745-.496 2.492.29 1.447.947 2.557 1.866 3.532.878.302 1.932-.034 2.47-.496l.45 1.973c-.74.226-1.15.572-1.382.886l-.024 1.772c.317.905.64 1.803 1.1 2.492.494.3 1.096.418 1.843.33l.378.543 5.764-.06c2.24.972 3.45 2.213 4.69 3.445l2.918 2.98c1.182.53 2.33.898 3.47 1.206 2.054.218 3.155.366 4.196.78l1.08 1.033.007 1.567-1.44.378-7.75 8.22c-1.78-.236-3.276-.365-5.315-.97a30.97 30.97 0 0 1-4.63-1.772z" fill="url(#A)" stroke="#ffc727" stroke-width="1.7" stroke-linejoin="round"/><circle r="26.222" cy="186.111" cx="131.347" fill="#fff" fill-opacity="0" stroke="#fff" stroke-width="3" paint-order="normal"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/key.svg b/src/main/webapp/img/lib/active_directory/key.svg index fd1d146dd2186a2cae1428df8536191c6fbf04f5..b222976407bb87d35717e2a4db693fe70ff13008 100644 --- a/src/main/webapp/img/lib/active_directory/key.svg +++ b/src/main/webapp/img/lib/active_directory/key.svg @@ -1,189 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="191.76978mm" - height="140.03937mm" - viewBox="0 0 191.76978 140.03937" - version="1.1" - id="svg837" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="key.svg"> - <defs - id="defs831"> - <linearGradient - inkscape:collect="always" - id="linearGradient915"> - <stop - style="stop-color:#8fb4f8;stop-opacity:1" - offset="0" - id="stop911" /> - <stop - style="stop-color:#2129af;stop-opacity:1" - offset="1" - id="stop913" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient907"> - <stop - style="stop-color:#a2d9ff;stop-opacity:1" - offset="0" - id="stop903" /> - <stop - style="stop-color:#aedeff;stop-opacity:1" - offset="1" - id="stop905" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient899"> - <stop - style="stop-color:#bfe4ff;stop-opacity:1" - offset="0" - id="stop895" /> - <stop - style="stop-color:#a5daff;stop-opacity:1" - offset="1" - id="stop897" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient891"> - <stop - style="stop-color:#b2d9ff;stop-opacity:1" - offset="0" - id="stop887" /> - <stop - style="stop-color:#0b6dff;stop-opacity:1" - offset="1" - id="stop889" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient891" - id="linearGradient893" - x1="30.557383" - y1="148.04533" - x2="203.97859" - y2="148.04533" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient899" - id="linearGradient901" - x1="47.601562" - y1="102.71271" - x2="107.63672" - y2="102.71271" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient907" - id="linearGradient909" - x1="102.43164" - y1="148.91406" - x2="196.9082" - y2="148.91406" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient915" - id="linearGradient919" - x1="193.4668" - y1="185.70605" - x2="214.35547" - y2="185.70605" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.7" - inkscape:cx="570.53447" - inkscape:cy="272.47645" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata834"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-26.585689,-74.457)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 58.482422,74.457031 c -1.616011,0.0021 -3.285497,0.10657 -5.015625,0.328125 l -0.419922,0.05469 -15.876953,9.634765 a 2.0002,2.0002 0 0 0 -0.695313,0.570313 c -8.268669,7.377546 -11.065141,16.989206 -9.453125,27.560546 3.484779,26.10897 19.988498,45.23374 43.8125,55.53515 l 0.01367,0.006 0.01367,0.006 c 13.850363,5.75072 24.543398,0.92764 30.380866,-6.48242 l 27.89648,14.04297 12.66406,15.84766 13.18946,-6.07227 8.65429,16.58594 13.5918,-3.10938 10.37695,15.53125 18.87305,-8.00586 a 2.0002,2.0002 0 0 0 0.91602,-0.51562 l 10.95117,-8.05469 v -5.80273 l -15.9043,-25.06836 a 2.0002,2.0002 0 0 0 -0.35351,-0.55469 l -0.11914,-0.18945 -0.21094,-0.10547 a 2.0002,2.0002 0 0 0 -0.54297,-0.27539 L 111.66602,120.74805 C 106.6421,108.03144 101.74538,99.095173 88.105469,86.144531 l -0.113281,-0.109375 -0.13086,-0.08984 C 78.53468,79.532933 69.794496,74.442501 58.482422,74.457031 Z" - id="path883" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient893);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 50.472656,86.583984 c 3.395983,-0.08616 6.290153,0.263513 8.957032,0.988282 5.333756,1.449537 9.927374,4.467349 15.792968,8.958984 l 0.0098,0.0078 0.0098,0.0078 c 14.050658,10.4891 18.784616,22.39278 21.232421,33.88477 a 2.0002,2.0002 0 0 0 0.121094,0.51172 l 0.136719,0.64453 0.58789,0.28906 a 2.0002,2.0002 0 0 0 0.546876,0.26953 l 91.568364,45.05469 10.99218,17.65821 -95.01562,-48.50977 a 2.0002,2.0002 0 1 0 -1.81836,3.5625 l 100.35547,51.23633 0.0293,2.06054 -14.87696,6.31055 -10.06836,-15.07031 -13.26953,3.03711 -8.98633,-17.22266 -13.80468,6.35547 -11.25586,-14.08594 -31.69532,-15.95508 -0.984373,1.45704 c -4.682188,6.92765 -13.337928,11.93397 -26.615234,6.43359 l -0.0039,-0.002 c -22.805398,-9.86231 -38.143564,-27.6681 -41.4375,-52.41407 l -0.002,-0.0195 -0.002,-0.0195 c -1.461162,-9.55987 0.816799,-17.365922 8.111329,-23.9043 4.393687,-0.931471 8.140281,-1.443078 11.384765,-1.525391 z" - id="path879" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 83.892578,121.64648 a 2.0002,2.0002 0 0 0 -1.970703,2.0293 v 26.59375 a 2.0002,2.0002 0 1 0 4,0 v -26.59375 a 2.0002,2.0002 0 0 0 -2.029297,-2.0293 z" - id="path858" - inkscape:connector-curvature="0" /> - <path - style="opacity:1;fill:#ffffff;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 65.481032,131.29289 c -2.112898,3.90418 -5.513082,5.65417 -10.223058,4.20949 -5.11386,-2.11874 -9.699552,-5.09866 -12.695303,-9.68853 -2.166474,-3.57753 -3.899306,-8.09213 -3.407687,-12.29439 0.348219,-3.7351 3.420997,-7.50705 8.753078,-8.21853 4.440929,-0.46735 8.790955,2.90235 12.027128,6.61492 5.869969,6.18077 8.062307,15.00522 5.545842,19.37704 z" - id="path860" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccc" /> - <path - style="opacity:1;fill:#0066ff;fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 49.24441,110.44586 -0.06682,3.74177 c 2.719801,6.18174 7.181837,8.35859 11.893494,11.15851 0.555844,3.88713 -0.444981,6.3576 -3.474505,5.67948 -4.766294,-1.59808 -8.949455,-4.60844 -11.425773,-8.61945 -3.686396,-6.14626 -2.893202,-13.02684 3.073601,-11.96031 z" - id="path862" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient901);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 58.513672,78.445312 c 10.148577,-0.04639 17.813223,4.438759 26.939453,10.705079 12.961022,12.328709 17.394085,20.325859 22.183595,32.335939 l -7.968751,5.49414 C 96.894051,115.70294 91.456312,103.65888 77.636719,93.341797 h -0.002 C 71.667492,88.77341 66.600343,85.376068 60.480469,83.712891 56.695858,82.68436 52.481793,82.434889 47.601562,82.824219 l 6.748047,-4.095703 c 1.432639,-0.16936 2.826884,-0.277092 4.164063,-0.283204 z" - id="path881" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient909);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 110.27344,124.52539 86.63476,43.70117 -6.33593,5.07617 -88.14063,-43.36718 z" - id="path877" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient919);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 200.09375,170.79883 14.26172,22.48047 v 2.61718 l -6.41406,4.7168 -0.006,-0.41601 a 2.0002,2.0002 0 0 0 -0.008,-0.59571 l -0.004,-0.27148 -0.15625,-0.25196 -0.004,-0.008 a 2.0002,2.0002 0 0 0 -0.23633,-0.3789 L 193.4668,176.10938 Z" - id="path864" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="724.8" height="529.281" viewBox="0 0 191.77 140.039"><style><![CDATA[.B{dominant-baseline:auto}]]></style><defs><linearGradient id="A" x1="30.557" y1="148.045" x2="203.979" y2="148.045" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#b2d9ff"/><stop offset="1" stop-color="#0b6dff"/></linearGradient><linearGradient id="B" x1="47.602" y1="102.713" x2="107.637" y2="102.713" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#bfe4ff"/><stop offset="1" stop-color="#a5daff"/></linearGradient><linearGradient id="C" x1="102.432" y1="148.914" x2="196.908" y2="148.914" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#a2d9ff"/><stop offset="1" stop-color="#aedeff"/></linearGradient><linearGradient id="D" x1="193.467" y1="185.706" x2="214.355" y2="185.706" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#8fb4f8"/><stop offset="1" stop-color="#2129af"/></linearGradient></defs><g transform="translate(-26.586 -74.457)"><path d="M58.482 74.457c-1.616.002-3.285.107-5.016.328l-.42.055-15.877 9.635a2 2 0 0 0-.695.57c-8.27 7.378-11.065 16.99-9.453 27.56C30.506 138.714 47 157.84 70.834 168.14l.027.012c13.85 5.75 24.543.928 30.38-6.482l27.896 14.043 12.664 15.848 13.19-6.072 8.654 16.586 13.592-3.11 10.377 15.53 18.873-8.006a2 2 0 0 0 .916-.516l10.95-8.055v-5.803L202.45 167.05a2 2 0 0 0-.354-.555l-.12-.19-.21-.105a2 2 0 0 0-.543-.275l-89.56-45.176c-5.024-12.717-9.92-21.653-23.56-34.604l-.113-.11-.13-.1c-9.327-6.412-18.067-11.503-29.38-11.488z" fill="#fff" class="B"/><path d="M50.473 86.584c3.396-.086 6.3.264 8.957.988 5.334 1.45 9.927 4.467 15.793 8.96l.02.016c14.05 10.49 18.785 22.393 21.232 33.885a2 2 0 0 0 .121.512l.137.645.588.29a2 2 0 0 0 .547.27l91.568 45.055 10.992 17.658-95.016-48.5a2 2 0 1 0-1.818 3.563l100.355 51.236.03 2.06-14.877 6.31-10.068-15.07-13.27 3.037-8.986-17.223-13.805 6.355-11.256-14.086-31.695-15.955-.984 1.457c-4.682 6.928-13.338 11.934-26.615 6.434l-.004-.002c-22.805-9.862-38.144-27.668-41.437-52.414l-.004-.04c-1.46-9.56.817-17.366 8.11-23.904 4.394-.93 8.14-1.443 11.385-1.525z" fill="url(#A)" class="B"/><g fill="#fff"><path d="M83.893 121.646a2 2 0 0 0-1.971 2.029v26.594a2 2 0 1 0 4 0v-26.594a2 2 0 0 0-2.029-2.029z" class="B"/><path d="M65.48 131.293c-2.113 3.904-5.513 5.654-10.223 4.21-5.114-2.12-9.7-5.1-12.695-9.69-2.166-3.578-3.9-8.092-3.408-12.294.348-3.735 3.42-7.507 8.753-8.22 4.44-.467 8.79 2.902 12.027 6.615 5.87 6.18 8.062 15.005 5.546 19.377z"/></g><path d="M49.244 110.446l-.067 3.742c2.72 6.182 7.182 8.36 11.893 11.16.556 3.887-.445 6.358-3.475 5.68-4.766-1.598-8.95-4.608-11.426-8.62-3.686-6.146-2.893-13.027 3.074-11.96z" fill="#06f"/><path d="M58.514 78.445c10.15-.046 17.813 4.44 26.94 10.705 12.96 12.33 17.394 20.326 22.184 32.336l-7.97 5.494c-2.774-11.278-8.212-23.322-22.03-33.64h-.002c-5.967-4.568-11.034-7.966-17.154-9.63-3.785-1.03-8-1.278-12.88-.89l6.748-4.096c1.433-.17 2.827-.277 4.164-.283z" fill="url(#B)" class="B"/><path d="M110.273 124.525l86.635 43.7-6.336 5.076-88.14-43.367z" fill="url(#C)" class="B"/><path d="M200.094 170.8l14.262 22.48v2.617l-6.414 4.717-.006-.416a2 2 0 0 0-.008-.596l-.004-.27-.156-.252-.004-.008a2 2 0 0 0-.236-.379l-14.06-22.582z" fill="url(#D)" class="B"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/laptop_client.svg b/src/main/webapp/img/lib/active_directory/laptop_client.svg index a0d6e7d5a80fd17f68c7b93fbcc90faf8575ee40..b09312ef602f1f73ece981bbe634c78b2cbe7d3a 100644 --- a/src/main/webapp/img/lib/active_directory/laptop_client.svg +++ b/src/main/webapp/img/lib/active_directory/laptop_client.svg @@ -1,215 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="137.57227mm" - height="153.77148mm" - viewBox="0 0 137.57227 153.77148" - version="1.1" - id="svg1367" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="laptop_client.svg"> - <defs - id="defs1361"> - <linearGradient - inkscape:collect="always" - id="linearGradient1629"> - <stop - style="stop-color:#b2e2fe;stop-opacity:1" - offset="0" - id="stop1625" /> - <stop - style="stop-color:#0ca5fc;stop-opacity:1" - offset="1" - id="stop1627" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1621"> - <stop - style="stop-color:#0274fc;stop-opacity:1" - offset="0" - id="stop1617" /> - <stop - style="stop-color:#8ac6fd;stop-opacity:1" - offset="1" - id="stop1619" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1613"> - <stop - style="stop-color:#032098;stop-opacity:1" - offset="0" - id="stop1609" /> - <stop - style="stop-color:#92bef9;stop-opacity:1" - offset="1" - id="stop1611" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1605"> - <stop - style="stop-color:#bce6fe;stop-opacity:1" - offset="0" - id="stop1601" /> - <stop - style="stop-color:#10a6fc;stop-opacity:1" - offset="1" - id="stop1603" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1597"> - <stop - style="stop-color:#0e7cfc;stop-opacity:0.99497485" - offset="0" - id="stop1593" /> - <stop - style="stop-color:#88c6fe;stop-opacity:1" - offset="1" - id="stop1595" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1597" - id="linearGradient1599" - x1="78.75518" - y1="211.72745" - x2="78.3582" - y2="164.66942" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1605" - id="linearGradient1607" - x1="108.72852" - y1="200.26758" - x2="107.96062" - y2="139.4379" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1613" - id="linearGradient1615" - x1="142.46289" - y1="210.19402" - x2="143.45258" - y2="96.801163" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1621" - id="linearGradient1623" - x1="130.61607" - y1="173.65321" - x2="131.20616" - y2="67.252914" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1629" - id="linearGradient1631" - x1="134.42873" - y1="100.38478" - x2="134.302" - y2="63.910076" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.49497475" - inkscape:cx="500.80057" - inkscape:cy="344.56523" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata1364"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-39.189452,-60.503906)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1623);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 94.930212,66.651105 162.17,100.54708 l 0.21919,73.51895 -68.436809,-35.35956 z" - id="path1587" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="opacity:1;fill:#0073fc;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 103.00997,129.23964 -0.0114,-42.772388 45.85323,22.678568 0.0236,43.96336 z" - id="path1559" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="opacity:1;fill:#ffffff;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 106.72816,126.89973 0.003,-34.384859 38.38821,18.875189 0.0236,35.34077 z" - id="path1561" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1631);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 102.97729,63.180815 173.61153,96.415806 162.17,100.54708 94.930212,66.651105 Z" - id="path1589" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1615);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 173.61153,96.415806 0.83509,83.594144 -65.85033,32.08133 -0.15125,-9.36686 53.94415,-28.65839 -0.21919,-73.51895 z" - id="path1585" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1607);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 93.952381,138.70647 68.436809,35.35956 -53.94415,28.65839 -66.746286,-38.22983 z" - id="path1583" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1599);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 41.698754,164.49459 66.746286,38.22983 0.15125,9.36686 -66.977271,-37.15193 z" - id="path1557-0" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 103.41602,60.503906 -11.472661,5.373047 0.08789,71.376957 -52.841797,26.07226 0.04102,13.05274 69.248048,37.89648 0.92382,-0.44531 67.35938,-32.35547 -0.16406,-86.31836 z m -0.01,4.421875 65.95703,31.230469 -6.92578,2.453125 -63.871094,-31.416016 z m -7.457031,5.4375 64.361331,31.658199 v 69.11524 L 96.03125,137.28906 Z M 172.60547,99.25 l 0.15039,79.71094 -62.16406,29.86133 0.084,-5.06055 53.63477,-28.10156 v -73.47071 z m -78.601564,41.49023 64.005864,33.70508 -49.28125,25.82227 -63.250004,-35.58399 z m -50.800781,27.25391 63.472655,35.70703 -0.084,4.98242 -63.369144,-34.67968 z" - id="path1557" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="519.957" height="581.182" viewBox="0 0 137.572 153.771"><style><![CDATA[.B{dominant-baseline:auto}]]></style><defs><linearGradient id="A" x1="78.755" y1="211.727" x2="78.358" y2="164.669" xlink:href="#F"><stop offset="0" stop-color="#0e7cfc" stop-opacity=".995"/><stop offset="1" stop-color="#88c6fe"/></linearGradient><linearGradient id="B" x1="108.729" y1="200.268" x2="107.961" y2="139.438" xlink:href="#F"><stop offset="0" stop-color="#bce6fe"/><stop offset="1" stop-color="#10a6fc"/></linearGradient><linearGradient id="C" x1="142.463" y1="210.194" x2="143.453" y2="96.801" xlink:href="#F"><stop offset="0" stop-color="#032098"/><stop offset="1" stop-color="#92bef9"/></linearGradient><linearGradient id="D" x1="130.616" y1="173.653" x2="131.206" y2="67.253" xlink:href="#F"><stop offset="0" stop-color="#0274fc"/><stop offset="1" stop-color="#8ac6fd"/></linearGradient><linearGradient id="E" x1="134.429" y1="100.385" x2="134.302" y2="63.91" xlink:href="#F"><stop offset="0" stop-color="#b2e2fe"/><stop offset="1" stop-color="#0ca5fc"/></linearGradient><linearGradient id="F" gradientUnits="userSpaceOnUse"/></defs><g transform="translate(-39.189 -60.504)"><path d="M94.93 66.65l67.24 33.896.22 73.52-68.437-35.36z" fill="url(#D)" class="B"/><path d="M103 129.24V86.467l45.853 22.68.024 43.963z" fill="#0073fc"/><path d="M106.728 126.9l.003-34.385L145.12 111.4l.024 35.34z" fill="#fff"/><path d="M102.977 63.18l70.634 33.235-11.442 4.13L94.93 66.65z" fill="url(#E)" class="B"/><path d="M173.612 96.416l.835 83.594-65.85 32.08-.15-9.367 53.944-28.658-.22-73.52z" fill="url(#C)" class="B"/><path d="M93.952 138.706l68.437 35.36-53.944 28.658-66.746-38.23z" fill="url(#B)" class="B"/><path d="M41.7 164.495l66.746 38.23.15 9.367L41.62 174.94z" fill="url(#A)" class="B"/><path d="M103.416 60.504l-11.473 5.373.088 71.377-52.842 26.072.04 13.053 69.248 37.896.924-.445 67.36-32.355-.164-86.318zm-.01 4.422l65.957 31.23-6.926 2.453-63.87-31.416zm-7.457 5.438l64.36 31.658v69.115L96.03 137.29zm76.656 28.887l.15 79.71-62.164 29.86.084-5.06 53.635-28.102v-73.47zm-78.602 41.5L158 174.445l-49.28 25.822-63.25-35.584zm-50.8 27.254l63.473 35.707-.084 4.982-63.37-34.68z" fill="#fff" class="B"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/list.svg b/src/main/webapp/img/lib/active_directory/list.svg index f081bdcb11ed768c6053ec56cbd0fc803c7374d7..477900167d7fa688e52526118a38e1ae750e1ca5 100644 --- a/src/main/webapp/img/lib/active_directory/list.svg +++ b/src/main/webapp/img/lib/active_directory/list.svg @@ -1,154 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="110.99219mm" - height="158.65109mm" - viewBox="0 0 110.99219 158.65109" - version="1.1" - id="svg6223" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="list.svg"> - <defs - id="defs6217"> - <linearGradient - inkscape:collect="always" - id="linearGradient6270"> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="0" - id="stop6266" /> - <stop - style="stop-color:#83b6ff;stop-opacity:0.95979899" - offset="1" - id="stop6268" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient6262"> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="0" - id="stop6258" /> - <stop - style="stop-color:#83b6ff;stop-opacity:1" - offset="1" - id="stop6260" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient6254"> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="0" - id="stop6250" /> - <stop - style="stop-color:#83b6ff;stop-opacity:0.91457283" - offset="1" - id="stop6252" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6254" - id="linearGradient6256" - x1="54.995228" - y1="136.01797" - x2="89.881561" - y2="136.01797" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6262" - id="linearGradient6264" - x1="120.2036" - y1="172.25797" - x2="156.63736" - y2="172.25797" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6270" - id="linearGradient6272" - x1="85.881561" - y1="154.51299" - x2="124.2036" - y2="154.51299" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.98994949" - inkscape:cx="130.73692" - inkscape:cy="292.15793" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata6220"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-50.349609,-66.882089)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 57.744141,66.921875 c -1.555937,-0.199741 -3.095825,0.374872 -4.339844,1.224609 -1.658693,1.132983 -3.054688,2.981974 -3.054688,5.316407 V 160.125 c 0,2.53992 0.970587,5.16629 2.390625,7.53516 1.420039,2.36886 3.288428,4.47977 5.585938,5.66601 l -0.0625,-0.0332 90.595708,50.88281 -0.18946,-0.12109 c 1.87272,1.34776 4.49196,1.83404 7.22266,1.20898 1.36535,-0.31253 2.76641,-0.99748 3.81054,-2.22851 1.04414,-1.23104 1.63868,-2.95179 1.63868,-4.94727 v -83.1875 c 0,-6.36525 -2.7075,-11.69084 -7.51172,-14.66211 l -0.0371,-0.0234 -94.457032,-52.796871 -0.04102,-0.01953 c -0.512039,-0.257016 -1.032136,-0.409983 -1.550781,-0.476563 z" - id="path6248" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0066ff;fill-opacity:0.93467335;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 57.498047,70.974609 94.238283,52.671871 c 3.59633,2.22928 5.60547,5.97496 5.60547,11.25391 v 83.1875 c 0,1.2549 -0.30625,1.90988 -0.6875,2.35938 -0.38126,0.44949 -0.92886,0.75191 -1.6543,0.91796 -1.45088,0.33211 -3.58363,-0.2612 -3.99414,-0.55664 l -0.0898,-0.0664 -90.724614,-50.95508 -0.03125,-0.0156 c -1.276693,-0.65917 -2.854983,-2.27743 -3.988281,-4.16796 -1.133298,-1.89054 -1.822266,-4.05547 -1.822266,-5.47852 V 73.462891 c 0,-0.610216 0.506909,-1.463407 1.3125,-2.013672 0.803782,-0.549029 1.640308,-0.570809 1.835938,-0.47461 z" - id="path6236" - inkscape:connector-curvature="0" /> - <path - style="opacity:1;fill:url(#linearGradient6256);fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 56.995226,89.899514 87.881559,107.5226 v 74.65172 L 61.47199,167.44108 c -2.258672,-1.50127 -4.476764,-4.60804 -4.476764,-8.35217 z" - id="path6238" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccc" /> - <path - style="opacity:1;fill:url(#linearGradient6272);fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 87.881559,107.5226 122.2036,126.98316 V 201.5139 L 87.881559,182.17432 Z" - id="path6240" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="opacity:1;fill:url(#linearGradient6264);fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 122.2036,126.98316 32.43376,18.34137 v 72.36404 c 0,1.39494 -0.98778,1.56396 -2.3206,0.80042 L 122.2036,201.5139 Z" - id="path6242" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccc" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="419.497" height="599.626" viewBox="0 0 110.992 158.651"><defs><linearGradient id="A" x1="54.995" y1="136.018" x2="89.882" y2="136.018" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fff"/><stop offset="1" stop-color="#83b6ff" stop-opacity=".915"/></linearGradient><linearGradient id="B" x1="120.204" y1="172.258" x2="156.637" y2="172.258" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fff"/><stop offset="1" stop-color="#83b6ff"/></linearGradient><linearGradient id="C" x1="85.882" y1="154.513" x2="124.204" y2="154.513" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fff"/><stop offset="1" stop-color="#83b6ff" stop-opacity=".96"/></linearGradient></defs><g transform="translate(-50.35 -66.882)"><path d="M57.744 66.922c-1.556-.2-3.096.375-4.34 1.225-1.66 1.133-3.055 2.982-3.055 5.316v86.662c0 2.54.97 5.166 2.39 7.535s3.288 4.48 5.586 5.666l-.062-.033 90.406 50.762c1.873 1.348 4.492 1.834 7.223 1.21 1.365-.313 2.766-.997 3.81-2.23s1.64-2.952 1.64-4.947V134.9c0-6.365-2.708-11.69-7.512-14.662l-.037-.023-94.498-52.816a4.8 4.8 0 0 0-1.551-.477z" dominant-baseline="auto" fill="#fff"/><path d="M57.498 70.975l94.238 52.672c3.596 2.23 5.605 5.975 5.605 11.254v83.188c0 1.255-.306 1.9-.687 2.36s-.93.752-1.654.918c-1.45.332-3.584-.26-3.994-.557l-.1-.066-90.756-50.97c-1.277-.66-2.855-2.277-3.988-4.168s-1.822-4.055-1.822-5.48V73.463c0-.6.507-1.463 1.313-2.014s1.64-.57 1.836-.475z" dominant-baseline="auto" fill="#06f" fill-opacity=".935"/><path d="M56.995 89.9l30.886 17.623v74.652l-26.4-14.733c-2.26-1.5-4.477-4.608-4.477-8.352z" fill="url(#A)"/><path d="M87.882 107.523l34.322 19.46v74.53l-34.322-19.34z" fill="url(#C)"/><path d="M122.204 126.983l32.434 18.34v72.364c0 1.395-.988 1.564-2.32.8l-30.113-16.975z" fill="url(#B)"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/mac_client.svg b/src/main/webapp/img/lib/active_directory/mac_client.svg index 13a294b798d55198d7553b059714fd1d27e281e4..0b53664cf9c26a42c5a1e419998499a24576514b 100644 --- a/src/main/webapp/img/lib/active_directory/mac_client.svg +++ b/src/main/webapp/img/lib/active_directory/mac_client.svg @@ -1,229 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="135.21484mm" - height="142.93164mm" - viewBox="0 0 135.21484 142.93164" - version="1.1" - id="svg1367" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="mac_client.svg"> - <defs - id="defs1361"> - <linearGradient - inkscape:collect="always" - id="linearGradient898"> - <stop - style="stop-color:#b6e3fe;stop-opacity:1" - offset="0" - id="stop894" /> - <stop - style="stop-color:#06a2fc;stop-opacity:1" - offset="1" - id="stop896" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient890"> - <stop - style="stop-color:#2187fc;stop-opacity:1" - offset="0" - id="stop886" /> - <stop - style="stop-color:#8ac6fd;stop-opacity:1" - offset="1" - id="stop888" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient878"> - <stop - style="stop-color:#0777fd;stop-opacity:1" - offset="0" - id="stop874" /> - <stop - style="stop-color:#3b97fd;stop-opacity:1" - offset="1" - id="stop876" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient870"> - <stop - style="stop-color:#0d2b9f;stop-opacity:1" - offset="0" - id="stop866" /> - <stop - style="stop-color:#8ab4f3;stop-opacity:1" - offset="1" - id="stop868" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient862"> - <stop - style="stop-color:#0b299d;stop-opacity:1" - offset="0" - id="stop858" /> - <stop - style="stop-color:#8fbaf7;stop-opacity:1" - offset="1" - id="stop860" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient862" - id="linearGradient864" - x1="144.47729" - y1="185.49408" - x2="144.35953" - y2="108.9539" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-209.00477,49.177593)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient870" - id="linearGradient872" - x1="140.46683" - y1="207.55792" - x2="140.57977" - y2="144.2469" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-209.00477,49.177593)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient878" - id="linearGradient880" - x1="78.154533" - y1="207.05316" - x2="76.70697" - y2="156.12086" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-209.00477,49.177593)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient890" - id="linearGradient892" - x1="86.390137" - y1="184.63304" - x2="83.704155" - y2="87.346924" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-209.00477,49.177593)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient898" - id="linearGradient900" - x1="92.205986" - y1="115.68236" - x2="91.8591" - y2="76.260101" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-209.00477,49.177593)" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.49497475" - inkscape:cx="-7.0240689" - inkscape:cy="74.397016" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata1364"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(170.56337,-120.92173)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient892);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7.61838007;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m -93.094641,165.20276 c -1.33451,2.50995 -1.28387,5.0301 -2.19844,9.08665 -0.91456,4.05654 -1.75153,8.68717 -2.40199,12.93679 l -0.004,0.0255 -0.004,0.0255 c -2.333719,16.7658 -3.268609,31.63652 -4.451129,47.76367 l -61.0854,-29.96116 c 2.22163,-23.21958 4.54201,-45.21175 7.95401,-68.98363 z" - id="path884" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient880);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7.91022825;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m -163.2396,205.07971 61.0854,29.96116 c -0.7335,6.52774 -2.33162,16.81368 -2.55018,23.77097 l -60.63619,-29.6184 c 0.62794,-7.70139 1.43543,-16.39741 2.10097,-24.11373 z" - id="path1659-2" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="opacity:1;fill:#0073fc;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m -156.0714,194.42014 6.73675,-47.72621 43.26058,21.83484 -6.71214,49.08966 z" - id="path1661" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="opacity:1;fill:#ffffff;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m -151.93659,192.34552 5.69159,-39.8755 35.98078,18.10421 -5.5458,41.20918 z" - id="path1663" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="opacity:1;fill:#ffffff;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m -122.51909,240.88759 c -1.3376,-0.52938 -1.70331,-1.76341 -1.32292,-3.07106 0.35462,-1.21775 1.79399,-1.47415 3.18917,-0.89769 l 7.11068,3.30728 c 1.43063,0.78425 1.60805,2.15726 1.1103,3.33092 -0.48791,1.05023 -1.71595,0.95583 -2.85844,0.37798 z" - id="path1665" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccc" /> - <path - style="opacity:1;fill:#ffffff;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m -159.4533,222.55972 c -1.33759,-0.52938 -1.7033,-1.76341 -1.32291,-3.07106 0.35462,-1.21775 1.79399,-1.47415 3.18917,-0.89769 l 7.11068,3.30728 c 1.43063,0.78425 1.60805,2.15726 1.1103,3.33092 -0.48791,1.05023 -1.71595,0.95583 -2.85844,0.37798 z" - id="path1665-1" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient900);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7.61838007;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m -155.28559,136.09608 c 4.45436,-5.15295 7.54191,-9.89625 13.60021,-11.13478 l -3.2e-4,-5e-5 59.418699,30.431 c -1.10653,0.63447 -2.14162,1.38716 -3.13536,2.20431 -2.18136,1.79378 -4.24263,3.94428 -6.21118,6.00076 l -1.4811,1.60544 z" - id="path854" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient864);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8.19876099;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m -77.758071,157.63306 c 1.72033,0.14375 3.44334,0.53764 4.99825,1.41543 9.8e-4,9.4e-4 0.004,0.001 0.005,0.002 l 0.14028,0.074 0.0226,0.0118 c 14.24886,7.21416 21.40341,11.23777 29.61849,18.40753 1.71183,1.72365 4.3923,8.66694 5.35351,15.51422 l -63.382239,43.12669 c 1.188599,-16.69817 2.190829,-32.15377 4.518569,-49.26482 l 0.002,-0.0118 c 0.66759,-4.45651 1.53586,-9.34856 2.45049,-13.49515 0.87422,-3.96355 1.90952,-7.19327 2.39843,-8.25437 1.8821,-2.00022 3.7556,-3.97228 5.36934,-5.32868 1.77489,-1.49182 3.28757,-2.10009 3.50942,-2.1162 h 0.009 0.009 c 1.53819,-0.1187 3.25589,-0.22484 4.97789,-0.0809 z" - id="path850" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient872);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8.07909966;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m -37.619941,193.05804 c -0.86029,4.87278 -4.37057,12.60994 -7.71552,18.48518 l -0.0217,0.035 -0.0196,0.035 c -7.83232,14.39078 -19.17337,24.77049 -28.58892,31.62067 h -0.002 c -8.58575,6.25167 -18.6252,11.80073 -29.344069,17.45886 0.38159,-5.80339 1.60061,-17.04043 2.30957,-24.50802 z" - id="path848" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m -139.7743,120.92173 -1.13477,0.18555 c -8.4882,1.38592 -13.1528,5.91062 -18.11719,11.68945 l -0.66211,0.77149 -0.14648,1.00586 c -4.7694,32.80766 -7.74291,64.67991 -10.51172,96.39453 l -0.2168,2.46679 2.25586,1.02344 64.69336,29.39453 1.47852,-0.7168 c 11.610039,-5.62776 22.467319,-11.04499 32.031249,-17.53515 8.9933,-6.09802 19.98951,-15.39614 27.75781,-28.68555 5.13087,-8.41009 6.99805,-15.45508 6.99805,-23.70898 v -0.14844 l -0.0117,-0.14648 c -0.63109,-7.489 -2.55713,-15.04353 -7.05469,-19.36719 l -0.0723,-0.0703 -0.0762,-0.0645 c -7.66555,-6.569 -14.63636,-10.39891 -26.99805,-16.52539 l 0.002,-0.002 c -0.006,-0.003 -0.0116,-0.005 -0.0176,-0.008 -0.0496,-0.0246 -0.0732,-0.0398 -0.12304,-0.0645 l 0.043,0.0195 z m -0.9961,7.35352 54.595709,27.96093 c -1.0167,0.58297 -1.96778,1.27456 -2.88086,2.02539 -2.0043,1.64817 -3.89826,3.62412 -5.70703,5.51368 l -0.33594,0.34961 -0.22656,0.42773 c -1.22619,2.30622 -1.97803,5.3196 -2.81836,9.04688 -0.84033,3.72727 -1.60936,7.98204 -2.207029,11.88671 l -0.004,0.0234 -0.004,0.0234 c -2.1443,15.40492 -3.0033,29.06861 -4.08984,43.88672 l -56.12695,-27.5293 c 2.0626,-21.5575 4.34489,-43.21003 7.53125,-65.28906 4.09281,-4.73469 6.70688,-7.18817 12.27343,-8.32617 z m 58.695319,26.62304 c -0.002,1.6e-4 -0.004,0.002 -0.006,0.002 -0.002,1.7e-4 -0.007,-1.8e-4 -0.01,0 z m 4.80859,6.91407 c 1.48498,0.1214 2.97226,0.45403 4.31445,1.19531 10e-4,7.1e-4 0.003,0.001 0.004,0.002 l 0.12109,0.0625 0.0195,0.01 c 12.29949,6.09226 18.47523,9.49015 25.5664,15.54492 1.47764,1.4556 3.7914,7.31912 4.6211,13.10156 l -54.71094,36.41992 c 1.02599,-14.10139 1.89111,-27.15345 3.90039,-41.60351 l 0.002,-0.01 c 0.57626,-3.76347 1.32575,-7.89474 2.11524,-11.39648 0.75463,-3.34717 1.64828,-6.07463 2.07031,-6.97071 1.62461,-1.68916 3.24179,-3.35454 4.63476,-4.5 1.53207,-1.25983 2.8378,-1.7735 3.0293,-1.78711 h 0.008 0.008 c 1.32775,-0.10024 2.81046,-0.18987 4.29687,-0.0683 z m 34.22461,38.60546 c -0.7721,4.07585 -2.29288,7.96846 -5.29492,12.88282 l -0.0195,0.0293 -0.0176,0.0293 c -7.0294,12.03723 -17.20786,20.71936 -25.6582,26.44922 h -0.002 c -7.7056,5.22923 -16.71588,9.87076 -26.335929,14.60352 0.34247,-4.85426 1.627389,-11.09161 2.263669,-17.3379 z m -118.236329,8.92579 56.11133,27.51953 c -0.673,5.57143 -2.1393,11.59516 -2.33984,17.5332 l -55.63477,-25.2793 c 0.57614,-6.57315 1.25264,-13.18755 1.86328,-19.77343 z" - id="path1659" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="511.049" height="540.215" viewBox="0 0 135.215 142.932"><style><![CDATA[.B{dominant-baseline:auto}]]></style><defs><linearGradient id="A" x1="-64.527" y1="234.672" x2="-64.645" y2="158.131" xlink:href="#G"><stop offset="0" stop-color="#0b299d"/><stop offset="1" stop-color="#8fbaf7"/></linearGradient><linearGradient id="B" x1="-68.538" y1="256.736" x2="-68.425" y2="193.424" xlink:href="#G"><stop offset="0" stop-color="#0d2b9f"/><stop offset="1" stop-color="#8ab4f3"/></linearGradient><linearGradient id="C" x1="-130.85" y1="256.231" x2="-132.298" y2="205.298" xlink:href="#G"><stop offset="0" stop-color="#0777fd"/><stop offset="1" stop-color="#3b97fd"/></linearGradient><linearGradient id="D" x1="-122.615" y1="233.811" x2="-125.301" y2="136.525" xlink:href="#G"><stop offset="0" stop-color="#2187fc"/><stop offset="1" stop-color="#8ac6fd"/></linearGradient><linearGradient id="E" x1="-116.799" y1="164.86" x2="-117.146" y2="125.438" xlink:href="#G"><stop offset="0" stop-color="#b6e3fe"/><stop offset="1" stop-color="#06a2fc"/></linearGradient><path id="F" d="M-122.52 240.888c-1.338-.53-1.703-1.763-1.323-3.07.355-1.218 1.794-1.474 3.19-.898l7.11 3.307c1.43.784 1.608 2.157 1.1 3.33-.488 1.05-1.716.956-2.858.378z"/><linearGradient id="G" gradientUnits="userSpaceOnUse"/></defs><g transform="translate(170.563 -120.922)"><path d="M-93.095 165.203c-1.335 2.5-1.284 5.03-2.198 9.087s-1.752 8.687-2.402 12.937l-.008.05c-2.334 16.766-3.27 31.637-4.45 47.764l-61.085-29.96c2.222-23.22 4.542-45.212 7.954-68.984z" fill="url(#D)" class="B"/><path d="M-163.24 205.08l61.085 29.96c-.733 6.528-2.332 16.814-2.55 23.77l-60.636-29.618 2.1-24.114z" fill="url(#C)" class="B"/><path d="M-156.07 194.42l6.737-47.726 43.26 21.835-6.712 49.1z" fill="#0073fc"/><g fill="#fff"><path d="M-151.937 192.346l5.692-39.875 35.98 18.104-5.546 41.21z"/><use xlink:href="#F"/><use xlink:href="#F" x="-36.933" y="-18.328"/></g><path d="M-155.286 136.096c4.454-5.153 7.542-9.896 13.6-11.135l59.418 30.43c-1.107.634-2.142 1.387-3.135 2.204-2.18 1.794-4.243 3.944-6.21 6l-1.48 1.605z" fill="url(#E)" class="B"/><path d="M-77.758 157.633c1.72.144 3.443.538 4.998 1.415l.168.088c14.25 7.214 21.403 11.238 29.618 18.408 1.712 1.724 4.392 8.667 5.354 15.514l-63.382 43.127c1.19-16.698 2.19-32.154 4.52-49.265l.002-.012c.668-4.457 1.536-9.35 2.45-13.495.874-3.964 1.9-7.193 2.398-8.254 1.882-2 3.756-3.972 5.37-5.33 1.775-1.492 3.288-2.1 3.51-2.116h.018c1.538-.12 3.256-.225 4.978-.08z" fill="url(#A)" class="B"/><path d="M-37.62 193.058c-.86 4.873-4.37 12.6-7.716 18.485l-.022.035-.02.035c-7.832 14.39-19.173 24.77-28.59 31.62h-.002c-8.586 6.252-18.625 11.8-29.344 17.46.382-5.803 1.6-17.04 2.3-24.508z" fill="url(#B)" class="B"/><path d="M-139.774 120.922l-1.135.186c-8.488 1.386-13.153 5.91-18.117 11.69l-.662.77-.146 1.006c-4.77 32.808-7.743 64.68-10.512 96.395l-.217 2.467 66.95 30.418 1.48-.717c11.6-5.628 22.467-11.045 32.03-17.535 8.993-6.098 20-15.396 27.758-28.686 5.13-8.4 6.998-15.455 6.998-23.71v-.148l-.012-.146c-.63-7.49-2.557-15.044-7.055-19.367l-.072-.07-.076-.065c-7.666-6.57-14.636-10.4-26.998-16.525v-.002c-.067-.033-.09-.048-.14-.072l.043.02zm-.996 7.354l54.596 27.96c-1.017.583-1.968 1.275-2.88 2.025-2.004 1.648-3.898 3.624-5.707 5.514l-.336.35-.227.428c-1.226 2.306-1.978 5.32-2.818 9.047s-1.61 7.982-2.207 11.887l-.008.047c-2.144 15.405-3.003 29.07-4.1 43.887l-56.127-27.53c2.063-21.558 4.345-43.2 7.53-65.29 4.093-4.735 6.707-7.188 12.273-8.326zm58.695 26.623zm4.81 6.914c1.485.12 2.972.454 4.314 1.195l.145.075c12.3 6.092 18.475 9.5 25.566 15.545 1.478 1.456 3.79 7.32 4.62 13.102l-54.71 36.42c1.026-14.1 1.89-27.153 3.9-41.604v-.01c.576-3.763 1.326-7.895 2.115-11.396.755-3.347 1.648-6.075 2.07-6.97 1.625-1.69 3.242-3.355 4.635-4.5 1.532-1.26 2.838-1.773 3.03-1.787h.016c1.328-.1 2.8-.2 4.297-.068zm34.225 38.605c-.772 4.076-2.293 7.968-5.295 12.883l-.02.03-.018.03c-7.03 12.037-17.208 20.72-25.658 26.45h-.002c-7.706 5.23-16.716 9.87-26.336 14.604.342-4.854 1.627-11.092 2.264-17.338zm-118.236 8.926l56.11 27.52c-.673 5.57-2.14 11.595-2.34 17.533l-55.635-25.28 1.863-19.773z" fill="#fff" class="B"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/mainframe.svg b/src/main/webapp/img/lib/active_directory/mainframe.svg index 450779634036a0b840b5b9c9cb7e0d6acfcfe32c..67feaaeab99428f52a860c2825c8c44ddb160046 100644 --- a/src/main/webapp/img/lib/active_directory/mainframe.svg +++ b/src/main/webapp/img/lib/active_directory/mainframe.svg @@ -1,322 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="195.68365mm" - height="186.38863mm" - viewBox="0 0 195.68365 186.38863" - version="1.1" - id="svg1782" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="mainframe.svg"> - <defs - id="defs1776"> - <linearGradient - inkscape:collect="always" - id="linearGradient3651"> - <stop - style="stop-color:#0066ff;stop-opacity:0.96482414" - offset="0" - id="stop3647" /> - <stop - style="stop-color:#0066ff;stop-opacity:1" - offset="1" - id="stop3649" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3643"> - <stop - style="stop-color:#5ca3ff;stop-opacity:1" - offset="0" - id="stop3639" /> - <stop - style="stop-color:#98cbff;stop-opacity:1" - offset="1" - id="stop3641" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3635"> - <stop - style="stop-color:#cce2ff;stop-opacity:1" - offset="0" - id="stop3631" /> - <stop - style="stop-color:#80bcff;stop-opacity:1" - offset="1" - id="stop3633" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3627"> - <stop - style="stop-color:#1373ff;stop-opacity:1" - offset="0" - id="stop3623" /> - <stop - style="stop-color:#6fb0ff;stop-opacity:1" - offset="1" - id="stop3625" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3619"> - <stop - style="stop-color:#0066ff;stop-opacity:1" - offset="0" - id="stop3615" /> - <stop - style="stop-color:#0066ff;stop-opacity:1" - offset="1" - id="stop3617" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3611"> - <stop - style="stop-color:#1014a4;stop-opacity:1" - offset="0" - id="stop3607" /> - <stop - style="stop-color:#8baff6;stop-opacity:1" - offset="1" - id="stop3609" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3601"> - <stop - style="stop-color:#c0e5ff;stop-opacity:1" - offset="0" - id="stop3597" /> - <stop - style="stop-color:#8acfff;stop-opacity:1" - offset="1" - id="stop3599" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3593"> - <stop - style="stop-color:#84cdff;stop-opacity:1" - offset="0" - id="stop3589" /> - <stop - style="stop-color:#a2d9ff;stop-opacity:1" - offset="1" - id="stop3591" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3585"> - <stop - style="stop-color:#a6dbff;stop-opacity:1" - offset="0" - id="stop3581" /> - <stop - style="stop-color:#c0e5ff;stop-opacity:1" - offset="1" - id="stop3583" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3585" - id="linearGradient3587" - x1="261.95825" - y1="438.76334" - x2="262.30072" - y2="227.2666" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3593" - id="linearGradient3595" - x1="432.14716" - y1="488.323" - x2="429.75787" - y2="353.97272" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3601" - id="linearGradient3605" - gradientUnits="userSpaceOnUse" - x1="571.89648" - y1="591.85742" - x2="577.28119" - y2="404.55585" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3611" - id="linearGradient3613" - x1="672.48676" - y1="890.30225" - x2="670.80029" - y2="509.47473" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3619" - id="linearGradient3621" - x1="540.28125" - y1="879.60742" - x2="540.28125" - y2="592.30664" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3627" - id="linearGradient3629" - x1="465.85788" - y1="872.57452" - x2="464.16196" - y2="505.88916" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3635" - id="linearGradient3637" - x1="329.15948" - y1="460.0502" - x2="330.00864" - y2="788.26923" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3643" - id="linearGradient3645" - x1="180.51329" - y1="738.51471" - x2="180.13591" - y2="349.60599" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3651" - id="linearGradient3653" - x1="65.048828" - y1="626.23633" - x2="67.90625" - y2="343.81055" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.7" - inkscape:cx="485.46913" - inkscape:cy="291.47057" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata1779"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-7.7147744,-55.357344)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:15.11811066;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 222.34961,209.22461 29.158203,314.37305 v 309.86133 l 4.001953,2.13281 L 572.05859,913.68555 768.75,804.5957 V 491.11719 Z" - transform="scale(0.26458333)" - id="path3579" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient3587);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:15.11811066;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 222.54102,226.33594 461.30078,349.50977 287.69531,442.34961 52.744141,318.75 Z" - transform="scale(0.26458333)" - id="path3577" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient3653);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:15.11811066;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 44.277344,331.38086 67.90625,343.81055 65.048828,626.23633 44.277344,615.16211 Z" - transform="scale(0.26458333)" - id="path3575" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient3645);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:15.11811066;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 77.306641,348.75586 279.13086,454.92578 V 740.375 L 74.447266,631.24805 Z" - transform="scale(0.26458333)" - id="path3573" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient3595);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:15.11811066;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 471.49609,354.76953 80.49024,41.52539 -172.6543,94.26172 -81.53515,-42.89258 z" - transform="scale(0.26458333)" - id="path3571" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient3605);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:15.11811066;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 562.12891,401.52539 183.03515,94.42773 -173.26758,95.9043 -182.52734,-96.02148 z" - transform="scale(0.26458333)" - id="path3569" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient3637);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:15.11811066;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 288.58008,459.89844 79.94531,42.05468 v 286.08204 l -79.94531,-42.62305 z" - transform="scale(0.26458333)" - id="path3567" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient3629);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:15.11811066;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 377.97461,506.92383 152.85742,80.41211 V 874.57031 L 377.97461,793.07422 Z" - transform="scale(0.26458333)" - id="path3565" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient3613);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:15.11811066;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 753.63281,508.53906 v 287.1543 L 579.55273,892.24805 V 604.90234 Z" - transform="scale(0.26458333)" - id="path3563" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient3621);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:15.11811066;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 540.28125,592.30664 24.15234,12.70508 v 287.47266 l -24.15234,-12.87696 z" - transform="scale(0.26458333)" - id="path1799" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#003399;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 81.435547,135.63672 v 22.7168 l 0.753906,0.32617 11.464844,4.9707 v -22.49023 z" - id="path3659" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 83.935547,139.50977 7.21875,3.26367 v 17.06836 l -7.21875,-3.13086 z" - id="path1809" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="739.593" height="704.462" viewBox="0 0 195.684 186.389"><style><![CDATA[.B{dominant-baseline:auto}]]></style><defs><linearGradient id="A" x1="261.958" y1="438.763" x2="262.301" y2="227.267" xlink:href="#J"><stop offset="0" stop-color="#a6dbff"/><stop offset="1" stop-color="#c0e5ff"/></linearGradient><linearGradient id="B" x1="432.147" y1="488.323" x2="429.758" y2="353.973" xlink:href="#J"><stop offset="0" stop-color="#84cdff"/><stop offset="1" stop-color="#a2d9ff"/></linearGradient><linearGradient id="C" x1="571.896" y1="591.857" x2="577.281" y2="404.556" xlink:href="#J"><stop offset="0" stop-color="#c0e5ff"/><stop offset="1" stop-color="#8acfff"/></linearGradient><linearGradient id="D" x1="672.487" y1="890.302" x2="670.8" y2="509.475" xlink:href="#J"><stop offset="0" stop-color="#1014a4"/><stop offset="1" stop-color="#8baff6"/></linearGradient><linearGradient id="E" x1="540.281" y1="879.607" x2="540.281" y2="592.307" xlink:href="#J"><stop offset="0" stop-color="#06f"/><stop offset="1" stop-color="#06f"/></linearGradient><linearGradient id="F" x1="465.858" y1="872.575" x2="464.162" y2="505.889" xlink:href="#J"><stop offset="0" stop-color="#1373ff"/><stop offset="1" stop-color="#6fb0ff"/></linearGradient><linearGradient id="G" x1="329.159" y1="460.05" x2="330.009" y2="788.269" xlink:href="#J"><stop offset="0" stop-color="#cce2ff"/><stop offset="1" stop-color="#80bcff"/></linearGradient><linearGradient id="H" x1="180.513" y1="738.515" x2="180.136" y2="349.606" xlink:href="#J"><stop offset="0" stop-color="#5ca3ff"/><stop offset="1" stop-color="#98cbff"/></linearGradient><linearGradient id="I" x1="65.049" y1="626.236" x2="67.906" y2="343.811" xlink:href="#J"><stop offset="0" stop-color="#06f" stop-opacity=".965"/><stop offset="1" stop-color="#06f"/></linearGradient><linearGradient id="J" gradientUnits="userSpaceOnUse"/></defs><g transform="translate(-7.715 -55.357)" class="B"><path d="M58.83 55.357L7.715 83.178v81.984l143.642 76.584 52.04-28.863v-82.94z" fill="#fff"/><g transform="scale(.26458333)"><path d="M222.54 226.336L461.3 349.5l-173.605 92.84-234.95-123.6z" fill="url(#A)"/><path d="M44.277 331.38l23.63 12.43-2.857 282.426-20.77-11.074z" fill="url(#I)"/><path d="M77.307 348.756l201.824 106.17v285.45L74.447 631.248z" fill="url(#H)"/><path d="M471.496 354.77l80.5 41.525-172.654 94.262-81.535-42.893z" fill="url(#B)"/><path d="M562.13 401.525l183.035 94.428-173.268 95.904-182.527-96.02z" fill="url(#C)"/><path d="M288.58 459.898l79.945 42.055v286.082l-79.945-42.623z" fill="url(#G)"/><path d="M377.975 506.924l152.857 80.412V874.57l-152.857-81.496z" fill="url(#F)"/><path d="M753.633 508.54v287.154l-174.08 96.555V604.902z" fill="url(#D)"/><path d="M540.28 592.307l24.152 12.705v287.473l-24.152-12.877z" fill="url(#E)"/></g><path d="M81.436 135.637v22.717l.754.326 11.465 4.97v-22.5z" fill="#039"/><path d="M83.936 139.5l7.22 3.264v17.068l-7.22-3.13z" fill="#fff"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/mainframe_host.svg b/src/main/webapp/img/lib/active_directory/mainframe_host.svg index f25138cd592010c780a0627051e1e7aa954620d2..87c085b410d32c06668201350de201605994185f 100644 --- a/src/main/webapp/img/lib/active_directory/mainframe_host.svg +++ b/src/main/webapp/img/lib/active_directory/mainframe_host.svg @@ -1,183 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="127.61914mm" - height="176.71094mm" - viewBox="0 0 127.61914 176.71094" - version="1.1" - id="svg3667" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="mainframe_host.svg"> - <defs - id="defs3661"> - <linearGradient - inkscape:collect="always" - id="linearGradient3746"> - <stop - style="stop-color:#3388ff;stop-opacity:1" - offset="0" - id="stop3742" /> - <stop - style="stop-color:#98cbff;stop-opacity:1" - offset="1" - id="stop3744" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3738"> - <stop - style="stop-color:#1674ff;stop-opacity:1" - offset="0" - id="stop3734" /> - <stop - style="stop-color:#8ec5ff;stop-opacity:0.99497485" - offset="1" - id="stop3736" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3722"> - <stop - style="stop-color:#61bfff;stop-opacity:1" - offset="0" - id="stop3718" /> - <stop - style="stop-color:#bfe5ff;stop-opacity:1" - offset="1" - id="stop3720" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3714"> - <stop - style="stop-color:#090c9f;stop-opacity:1" - offset="0" - id="stop3710" /> - <stop - style="stop-color:#92b7fa;stop-opacity:1" - offset="1" - id="stop3712" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3714" - id="linearGradient3716" - x1="141.7652" - y1="230.89746" - x2="140.51718" - y2="96.99543" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-2.3666667e-6)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3722" - id="linearGradient3724" - x1="111.60742" - y1="119.71484" - x2="111.49113" - y2="64.440964" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3738" - id="linearGradient3740" - x1="90.124687" - y1="227.10757" - x2="91.099617" - y2="109.24172" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3746" - id="linearGradient3748" - x1="66.52343" - y1="215.82376" - x2="66.089546" - y2="97.15609" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.7" - inkscape:cx="111.43795" - inkscape:cy="170.5462" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" /> - <metadata - id="metadata3664"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-43.625,-59.78125)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 103.8418,59.78125 43.636719,88.605469 43.625,204 l 1.126953,0.54688 65.849607,31.94531 60.64258,-29.23438 V 92.640625 Z" - id="path3708" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient3724);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 103.8262,64.224609 164.67776,93.890625 111.60742,119.71484 50.238281,89.880859 Z" - id="path3706" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0066ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 47.636719,93.0625 4.77539,2.320312 -0.04297,108.414068 -4.744141,-2.30079 z" - id="path3704" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient3716);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 167.24414,97.087891 V 204.74609 l -54.61133,26.32618 0.96289,-107.87891 z" - id="path3702" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient3748);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 56.410156,97.328125 19.56836,9.511715 -0.273438,108.27735 -19.33789,-9.38086 z" - id="path3700" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient3740);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 79.972656,108.7832 21.283204,10.34571 -0.4375,108.16992 -21.117188,-10.24219 z" - id="path3698" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0066ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 105.24805,121.07031 4.34765,2.11328 -0.96484,107.90625 -3.82031,-1.85351 z" - id="path3690" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="482.34" height="667.884" viewBox="0 0 127.619 176.711"><style><![CDATA[.B{dominant-baseline:auto}]]></style><defs><linearGradient id="A" x1="141.765" y1="230.897" x2="140.517" y2="96.995" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#090c9f"/><stop offset="1" stop-color="#92b7fa"/></linearGradient><linearGradient id="B" x1="111.607" y1="119.715" x2="111.491" y2="64.441" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#61bfff"/><stop offset="1" stop-color="#bfe5ff"/></linearGradient><linearGradient id="C" x1="90.125" y1="227.108" x2="91.1" y2="109.242" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#1674ff"/><stop offset="1" stop-color="#8ec5ff" stop-opacity=".995"/></linearGradient><linearGradient id="D" x1="66.523" y1="215.824" x2="66.09" y2="97.156" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#38f"/><stop offset="1" stop-color="#98cbff"/></linearGradient></defs><g transform="translate(-43.625 -59.781)" class="B"><path d="M103.842 59.78L43.637 88.605 43.625 204l66.977 32.492 60.643-29.234V92.64z" fill="#fff"/><path d="M103.826 64.225l60.852 29.666-53.07 25.824-61.37-29.834z" fill="url(#B)"/><path d="M47.637 93.063l4.775 2.32-.043 108.414-4.744-2.3z" fill="#06f"/><path d="M167.244 97.088v107.658l-54.61 26.326.963-107.88z" fill="url(#A)"/><path d="M56.4 97.328l19.568 9.512-.273 108.277-19.338-9.38z" fill="url(#D)"/><path d="M79.973 108.783l21.283 10.346-.437 108.17L79.7 217.057z" fill="url(#C)"/><path d="M105.248 121.07l4.348 2.113-.965 107.906-3.82-1.854z" fill="#06f"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/meeting.svg b/src/main/webapp/img/lib/active_directory/meeting.svg index ae9c024b86d0fd2bf9160d2299b3b39dcfb71ca0..6bb3bb9360331d7ac519b697273636ce54ff7827 100644 --- a/src/main/webapp/img/lib/active_directory/meeting.svg +++ b/src/main/webapp/img/lib/active_directory/meeting.svg @@ -1,337 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="144.51758mm" - height="132.23875mm" - viewBox="0 0 144.51758 132.23876" - version="1.1" - id="svg1243" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="meeting.svg"> - <defs - id="defs1237"> - <linearGradient - inkscape:collect="always" - id="linearGradient5328"> - <stop - style="stop-color:#acdffe;stop-opacity:1" - offset="0" - id="stop5324" /> - <stop - style="stop-color:#09a3fc;stop-opacity:1" - offset="1" - id="stop5326" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient5322"> - <stop - style="stop-color:#0f7cfc;stop-opacity:1" - offset="0" - id="stop5318" /> - <stop - style="stop-color:#b1d9fe;stop-opacity:1" - offset="1" - id="stop5320" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient5308"> - <stop - style="stop-color:#0f2ea0;stop-opacity:1" - offset="0" - id="stop5304" /> - <stop - style="stop-color:#89b3f3;stop-opacity:1" - offset="1" - id="stop5306" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3869"> - <stop - style="stop-color:#0f2da0;stop-opacity:1" - offset="0" - id="stop3865" /> - <stop - style="stop-color:#89b3f3;stop-opacity:1" - offset="1" - id="stop3867" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3855"> - <stop - style="stop-color:#1c84fd;stop-opacity:1" - offset="0" - id="stop3851" /> - <stop - style="stop-color:#89c6fe;stop-opacity:1" - offset="1" - id="stop3853" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3839"> - <stop - style="stop-color:#98cffe;stop-opacity:1" - offset="0" - id="stop3835" /> - <stop - style="stop-color:#98cffe;stop-opacity:1" - offset="1" - id="stop3837" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3829"> - <stop - style="stop-color:#1b82fc;stop-opacity:1" - offset="0" - id="stop3825" /> - <stop - style="stop-color:#deedff;stop-opacity:1" - offset="1" - id="stop3827" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3829" - id="linearGradient3833" - gradientUnits="userSpaceOnUse" - x1="146.38016" - y1="172.71407" - x2="145.91211" - y2="150.67383" - gradientTransform="translate(179.0665,-13.503262)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3839" - id="linearGradient3841" - x1="155.56055" - y1="184.05859" - x2="155.92169" - y2="171.40445" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(179.0665,-13.503262)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3855" - id="linearGradient3849" - x1="137.96117" - y1="220.98294" - x2="138.27792" - y2="174.14363" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(179.0665,-13.503262)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3869" - id="linearGradient3863" - x1="165.56107" - y1="220.33961" - x2="165.03191" - y2="180.51982" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(179.0665,-13.503262)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3839" - id="linearGradient5262" - gradientUnits="userSpaceOnUse" - x1="155.56055" - y1="184.05859" - x2="155.92169" - y2="171.40445" - gradientTransform="matrix(-1,0,0,1,393.83679,-13.503262)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3855" - id="linearGradient5264" - gradientUnits="userSpaceOnUse" - x1="137.96117" - y1="220.98294" - x2="138.27792" - y2="174.14363" - gradientTransform="matrix(-1,0,0,1,393.83679,-13.503262)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3869" - id="linearGradient5266" - gradientUnits="userSpaceOnUse" - x1="165.56107" - y1="220.33961" - x2="165.03191" - y2="180.51982" - gradientTransform="matrix(-1,0,0,1,393.83679,-13.503262)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3829" - id="linearGradient5268" - gradientUnits="userSpaceOnUse" - x1="146.38016" - y1="172.71407" - x2="145.91211" - y2="150.67383" - gradientTransform="matrix(-1,0,0,1,393.83679,-13.503262)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5308" - id="linearGradient5302" - x1="153.11536" - y1="243.97459" - x2="152.54234" - y2="204.89124" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(173.24411,14.592916)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5322" - id="linearGradient5316" - x1="78.279884" - y1="243.60042" - x2="77.157356" - y2="205.43433" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(173.24411,14.592916)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5328" - id="linearGradient5330" - x1="114.02148" - y1="231.58984" - x2="113.32422" - y2="172.14844" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(173.24411,14.592916)" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.70710678" - inkscape:cx="-82.088132" - inkscape:cy="220.47159" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata1240"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-215.67965,-133.17057)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 318.7247,144.7858 -21.38867,11.25977 0.39844,40.15625 1.17187,0.52148 35.78516,15.97461 21.28125,-11.35547 0.18945,-40.16211 z" - id="path3809" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient3841);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 318.88486,149.22135 30.67383,13.43359 -14.93164,7.90039 -30.67578,-13.47265 z" - id="path3807" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient3849);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 301.379,160.32096 31.32422,13.75781 -0.082,33.31445 -30.91211,-13.79882 z" - id="path3805" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient3863);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 352.14072,165.81315 -0.1582,33.125 -15.36133,8.19726 0.082,-33.15429 z" - id="path3732" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 324.97861,133.17057 c -8.41704,0 -15.2832,6.86616 -15.2832,15.2832 0,8.41704 6.86616,15.2832 15.2832,15.2832 8.41704,0 15.2832,-6.86616 15.2832,-15.2832 0,-8.41704 -6.86616,-15.2832 -15.2832,-15.2832 z" - id="path3801" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient3833);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 324.97861,137.17057 c 6.25528,0 11.2832,5.02792 11.2832,11.2832 0,6.25528 -5.02792,11.2832 -11.2832,11.2832 -6.25528,0 -11.2832,-5.02792 -11.2832,-11.2832 0,-6.25528 5.02792,-11.2832 11.2832,-11.2832 z" - id="path3736" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 254.17859,144.7858 21.38867,11.25977 -0.39844,40.15625 -1.17187,0.52148 -35.78516,15.97461 -21.28125,-11.35547 -0.18945,-40.16211 z" - id="path3809-8" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient5262);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 254.01843,149.22135 -30.67383,13.43359 14.93164,7.90039 30.67578,-13.47265 z" - id="path3807-4" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient5264);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 271.52429,160.32096 -31.32422,13.75781 0.082,33.31445 30.91211,-13.79882 z" - id="path3805-8" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient5266);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 220.76257,165.81315 0.1582,33.125 15.36133,8.19726 -0.082,-33.15429 z" - id="path3732-2" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 247.92468,133.17057 c 8.41704,0 15.2832,6.86616 15.2832,15.2832 0,8.41704 -6.86616,15.2832 -15.2832,15.2832 -8.41704,0 -15.2832,-6.86616 -15.2832,-15.2832 0,-8.41704 6.86616,-15.2832 15.2832,-15.2832 z" - id="path3801-2" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient5268);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 247.92468,137.17057 c -6.25528,0 -11.2832,5.02792 -11.2832,11.2832 0,6.25528 5.02792,11.2832 11.2832,11.2832 6.25528,0 11.2832,-5.02792 11.2832,-11.2832 0,-6.25528 -5.02792,-11.2832 -11.2832,-11.2832 z" - id="path3736-2" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 286.45114,181.28433 -70.77149,32.86523 0.45899,17.10547 1.375,0.66016 69.77149,33.49414 72.9121,-36.7168 v -16.98047 z" - id="path5294" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient5330);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 286.56833,186.74136 65.13086,26.87304 -64.4336,32.56836 -63.19531,-30.41796 z" - id="path5292" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient5302);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 355.19723,217.45034 v 8.16211 l -65.42968,32.94922 0.0215,-8.05078 z" - id="path5290" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient5316);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 220.832,219.75503 63.95703,30.78711 -0.0215,8.11328 -63.7129,-30.58594 z" - id="path5283" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="546.21" height="499.801" viewBox="0 0 144.518 132.239"><style><![CDATA[.B{dominant-baseline:auto}]]></style><defs><linearGradient id="A" xlink:href="#P"><stop offset="0" stop-color="#0f2da0"/><stop offset="1" stop-color="#89b3f3"/></linearGradient><linearGradient id="B" xlink:href="#P"><stop offset="0" stop-color="#1c84fd"/><stop offset="1" stop-color="#89c6fe"/></linearGradient><linearGradient id="C" xlink:href="#P"><stop offset="0" stop-color="#98cffe"/><stop offset="1" stop-color="#98cffe"/></linearGradient><linearGradient id="D" xlink:href="#P"><stop offset="0" stop-color="#1b82fc"/><stop offset="1" stop-color="#deedff"/></linearGradient><linearGradient xlink:href="#D" id="E" x1="325.447" y1="159.211" x2="324.979" y2="137.171"/><linearGradient xlink:href="#C" id="F" x1="334.627" y1="170.555" x2="334.988" y2="157.901"/><linearGradient xlink:href="#B" id="G" x1="317.028" y1="207.48" x2="317.344" y2="160.64"/><linearGradient xlink:href="#A" id="H" x1="344.628" y1="206.836" x2="344.098" y2="167.017"/><linearGradient xlink:href="#C" id="I" x1="238.276" y1="170.555" x2="237.915" y2="157.901"/><linearGradient xlink:href="#B" id="J" x1="255.876" y1="207.48" x2="255.559" y2="160.64"/><linearGradient xlink:href="#A" id="K" x1="228.276" y1="206.836" x2="228.805" y2="167.017"/><linearGradient xlink:href="#D" id="L" x1="247.457" y1="159.211" x2="247.925" y2="137.171"/><linearGradient id="M" x1="326.359" y1="258.568" x2="325.786" y2="219.484" xlink:href="#P"><stop offset="0" stop-color="#0f2ea0"/><stop offset="1" stop-color="#89b3f3"/></linearGradient><linearGradient id="N" x1="251.524" y1="258.193" x2="250.401" y2="220.027" xlink:href="#P"><stop offset="0" stop-color="#0f7cfc"/><stop offset="1" stop-color="#b1d9fe"/></linearGradient><linearGradient id="O" x1="287.266" y1="246.183" x2="286.568" y2="186.741" xlink:href="#P"><stop offset="0" stop-color="#acdffe"/><stop offset="1" stop-color="#09a3fc"/></linearGradient><linearGradient id="P" gradientUnits="userSpaceOnUse"/></defs><g transform="translate(-215.68 -133.171)" class="B"><path d="M318.725 144.786l-21.39 11.26.398 40.156 1.172.52 35.785 15.975 21.28-11.355.19-40.162z" fill="#fff"/><path d="M318.885 149.22l30.674 13.434-14.932 7.9-30.676-13.473z" fill="url(#F)"/><path d="M301.38 160.32l31.324 13.758-.082 33.314-30.912-13.8z" fill="url(#G)"/><path d="M352.14 165.813l-.158 33.125-15.36 8.197.082-33.154z" fill="url(#H)"/><path d="M324.98 133.17c-8.417 0-15.283 6.866-15.283 15.283s6.866 15.283 15.283 15.283 15.283-6.866 15.283-15.283-6.866-15.283-15.283-15.283z" fill="#fff" paint-order="normal"/><path d="M324.98 137.17c6.255 0 11.283 5.028 11.283 11.283s-5.028 11.283-11.283 11.283-11.283-5.028-11.283-11.283 5.028-11.283 11.283-11.283z" fill="url(#E)" paint-order="normal"/><path d="M254.18 144.786l21.39 11.26-.398 40.156-1.172.52-35.785 15.975-21.28-11.355-.19-40.162z" fill="#fff"/><path d="M254.018 149.22l-30.674 13.434 14.932 7.9 30.676-13.473z" fill="url(#I)"/><path d="M271.524 160.32L240.2 174.08l.082 33.314 30.912-13.8z" fill="url(#J)"/><path d="M220.763 165.813l.158 33.125 15.36 8.197-.082-33.154z" fill="url(#K)"/><path d="M247.925 133.17c8.417 0 15.283 6.866 15.283 15.283s-6.866 15.283-15.283 15.283-15.283-6.866-15.283-15.283 6.866-15.283 15.283-15.283z" fill="#fff" paint-order="normal"/><path d="M247.925 137.17c-6.255 0-11.283 5.028-11.283 11.283s5.028 11.283 11.283 11.283 11.283-5.028 11.283-11.283-5.028-11.283-11.283-11.283z" fill="url(#L)" paint-order="normal"/><path d="M286.45 181.284l-70.77 32.865.46 17.105 71.146 34.154 72.912-36.717v-16.98z" fill="#fff"/><path d="M286.568 186.74l65.13 26.873-64.434 32.568-63.195-30.418z" fill="url(#O)"/><path d="M355.197 217.45v8.162l-65.43 32.95.02-8.05z" fill="url(#M)"/><path d="M220.832 219.755l63.957 30.787-.022 8.113-63.713-30.586z" fill="url(#N)"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/modem.svg b/src/main/webapp/img/lib/active_directory/modem.svg index 85a0f94b8cdd4a96d5bf8220c22d23b0b8473d98..53c5e932113f600ae26ba24f5d9c9435be6ecfaa 100644 --- a/src/main/webapp/img/lib/active_directory/modem.svg +++ b/src/main/webapp/img/lib/active_directory/modem.svg @@ -1,158 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="140.95465mm" - height="116.02512mm" - viewBox="0 0 140.95465 116.02512" - version="1.1" - id="svg5743" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="modem.svg"> - <defs - id="defs5737"> - <linearGradient - gradientTransform="translate(-0.71549367,-0.51627467)" - inkscape:collect="always" - xlink:href="#linearGradient5705" - id="linearGradient5707" - x1="116.56683" - y1="190.98032" - x2="118.75132" - y2="121.75751" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5705"> - <stop - style="stop-color:#c0e5ff;stop-opacity:1" - offset="0" - id="stop5701" /> - <stop - style="stop-color:#64c1ff;stop-opacity:1" - offset="1" - id="stop5703" /> - </linearGradient> - <linearGradient - gradientTransform="translate(-0.71549367,-0.51627467)" - inkscape:collect="always" - xlink:href="#linearGradient5735" - id="linearGradient5729" - x1="84.457169" - y1="225.10448" - x2="83.92263" - y2="163.89977" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5735"> - <stop - style="stop-color:#086bff;stop-opacity:1" - offset="0" - id="stop5731" /> - <stop - style="stop-color:#99ccff;stop-opacity:1" - offset="1" - id="stop5733" /> - </linearGradient> - <linearGradient - gradientTransform="translate(-0.71549367,-0.51627467)" - inkscape:collect="always" - xlink:href="#linearGradient5721" - id="linearGradient5715" - x1="178.26877" - y1="224.83722" - x2="178.53604" - y2="157.48529" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5721"> - <stop - style="stop-color:#080a9e;stop-opacity:1" - offset="0" - id="stop5717" /> - <stop - style="stop-color:#7998ea;stop-opacity:1" - offset="1" - id="stop5719" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="1.4" - inkscape:cx="379.5042" - inkscape:cy="222.22687" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" /> - <metadata - id="metadata5740"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-60.880251,-116.07774)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 138.6898,116.07774 -77.809549,40.87008 0.06836,41.39649 1.347656,0.69726 62.517543,33.06129 77.02109,-39.24302 V 151.5747 Z" - id="path5699" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient5707);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 138.64293,121.68712 193.94037,153.1079 124.681,191.08724 68.811897,158.58064 Z" - id="path5697" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient5729);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 65.890022,162.6861 56.285118,32.72926 0.14063,29.76367 -56.373014,-29.87964 z" - id="path5695" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient5715);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 196.8349,157.23485 v 32.5332 l -69.51914,35.49692 -0.14063,-29.8418 z" - id="path5632" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - id="path5634" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.29283762;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 111.03486,201.43479 v 7.12545 l 5.715,3.00591 v -7.12545 z m -11.961094,-6.29135 v 7.12546 l 5.951044,3.13014 v -7.12545 z M 87.11223,188.85166 v 7.1259 l 5.951484,3.13058 v -7.12589 z" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="532.743" height="438.52" viewBox="0 0 140.955 116.025"><style><![CDATA[.B{dominant-baseline:auto}]]></style><defs><linearGradient id="A" x1="115.851" y1="190.464" x2="118.036" y2="121.241" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#c0e5ff"/><stop offset="1" stop-color="#64c1ff"/></linearGradient><linearGradient id="B" x1="83.742" y1="224.588" x2="83.207" y2="163.383" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#086bff"/><stop offset="1" stop-color="#9cf"/></linearGradient><linearGradient id="C" x1="177.553" y1="224.321" x2="177.821" y2="156.969" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#080a9e"/><stop offset="1" stop-color="#7998ea"/></linearGradient></defs><g transform="translate(-60.88 -116.078)" class="B"><path d="M138.7 116.078l-77.8 40.87.068 41.396 1.348.697 62.518 33.06 77.02-39.243v-41.285z" fill="#fff"/><path d="M138.643 121.687l55.297 31.42-69.26 37.98-55.87-32.507z" fill="url(#A)"/><path d="M65.9 162.686l56.285 32.73.14 29.764-56.373-29.88z" fill="url(#B)"/><path d="M196.835 157.235v32.533l-69.52 35.497-.14-29.842z" fill="url(#C)"/><path d="M111.035 201.435v7.125l5.715 3.006v-7.125zm-11.96-6.29v7.125l5.95 3.13v-7.125zm-11.962-6.292v7.126l5.95 3.13v-7.126z" fill="#fff"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/my_sites.svg b/src/main/webapp/img/lib/active_directory/my_sites.svg index 1d82ae4b4ee5cf08f2225321a599cd15d8b02a65..25ef3605b4cdc226c42421068a36a88dff073d99 100644 --- a/src/main/webapp/img/lib/active_directory/my_sites.svg +++ b/src/main/webapp/img/lib/active_directory/my_sites.svg @@ -1,306 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="191.29964mm" - height="173.06387mm" - viewBox="0 0 191.29964 173.06387" - version="1.1" - id="svg3009" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="my_sites.svg"> - <defs - id="defs3003"> - <linearGradient - gradientTransform="matrix(1.2776221,0,0,1.2776221,-32.110976,-33.954128)" - inkscape:collect="always" - xlink:href="#linearGradient1579" - id="linearGradient1581" - x1="41.40197" - y1="132.1954" - x2="152.42894" - y2="131.43945" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient1579"> - <stop - style="stop-color:#fe5d02;stop-opacity:1" - offset="0" - id="stop1575" /> - <stop - style="stop-color:#fff835;stop-opacity:1" - offset="1" - id="stop1577" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1567" - id="linearGradient1569-5-8-4" - x1="70.511459" - y1="138.11771" - x2="70.776039" - y2="103.98646" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.58599359,0,0,0.62751376,95.213058,112.60752)" /> - <linearGradient - inkscape:collect="always" - id="linearGradient1567"> - <stop - style="stop-color:#2c6dc9;stop-opacity:1" - offset="0" - id="stop1563" /> - <stop - style="stop-color:#94cdfe;stop-opacity:1" - offset="1" - id="stop1565" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1567" - id="linearGradient1569-5" - x1="70.511459" - y1="138.11771" - x2="70.776039" - y2="103.98646" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.58599359,0,0,0.62751376,-0.94647469,112.60752)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1567" - id="linearGradient1569-5-8" - x1="70.511459" - y1="138.11771" - x2="70.776039" - y2="103.98646" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.58599359,0,0,0.62751376,47.133296,112.60752)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1567" - id="linearGradient1569" - x1="70.511459" - y1="138.11771" - x2="70.776039" - y2="103.98646" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.2776221,0,0,1.2776221,-1.2762801,-38.256644)" /> - <linearGradient - gradientTransform="matrix(1.2621365,0,0,1.2621365,-23.204565,-46.395238)" - inkscape:collect="always" - xlink:href="#linearGradient3829" - id="linearGradient3833" - gradientUnits="userSpaceOnUse" - x1="146.38016" - y1="172.71407" - x2="145.91211" - y2="150.67383" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3829"> - <stop - style="stop-color:#1b82fc;stop-opacity:1" - offset="0" - id="stop3825" /> - <stop - style="stop-color:#deedff;stop-opacity:1" - offset="1" - id="stop3827" /> - </linearGradient> - <linearGradient - gradientTransform="matrix(1.2621365,0,0,1.2621365,-23.204565,-46.395238)" - inkscape:collect="always" - xlink:href="#linearGradient3869" - id="linearGradient3863" - x1="165.56107" - y1="220.33961" - x2="165.03191" - y2="180.51982" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3869"> - <stop - style="stop-color:#0f2da0;stop-opacity:1" - offset="0" - id="stop3865" /> - <stop - style="stop-color:#89b3f3;stop-opacity:1" - offset="1" - id="stop3867" /> - </linearGradient> - <linearGradient - gradientTransform="matrix(1.2621365,0,0,1.2621365,-23.204565,-46.395238)" - inkscape:collect="always" - xlink:href="#linearGradient3855" - id="linearGradient3849" - x1="137.96117" - y1="220.98294" - x2="138.27792" - y2="174.14363" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3855"> - <stop - style="stop-color:#1c84fd;stop-opacity:1" - offset="0" - id="stop3851" /> - <stop - style="stop-color:#89c6fe;stop-opacity:1" - offset="1" - id="stop3853" /> - </linearGradient> - <linearGradient - gradientTransform="matrix(1.2621365,0,0,1.2621365,-23.204565,-46.395238)" - inkscape:collect="always" - xlink:href="#linearGradient3839" - id="linearGradient3841" - x1="155.56055" - y1="184.05859" - x2="155.92169" - y2="171.40445" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3839"> - <stop - style="stop-color:#98cffe;stop-opacity:1" - offset="0" - id="stop3835" /> - <stop - style="stop-color:#98cffe;stop-opacity:1" - offset="1" - id="stop3837" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.98994949" - inkscape:cx="377.85936" - inkscape:cy="247.25799" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata3006"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-9.0147358,-66.03765)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.76198101;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 9.0147358,66.03765 V 223.67661 H 176.54813 V 66.03765 Z" - id="path1573-9" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#00a0fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.4716773;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 15.587054,73.647436 V 215.97273 H 168.41711 V 73.647436 Z" - id="path1573" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1581);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.4716773;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 20.741672,78.545942 H 163.52806 V 210.80258 H 20.741672 Z" - id="rect1439" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#2c6dc9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.4716773;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 83.830751,135.24847 v 22.80007 H 40.16701 v 21.82936 h 4.471678 v -17.35768 h 39.192063 v 18.97967 h 4.471681 v -18.97967 h 47.923298 v 18.85988 h 4.47169 V 158.04854 H 88.302432 v -22.80007 z" - id="path1818" - inkscape:connector-curvature="0" /> - <rect - style="opacity:1;vector-effect:none;fill:url(#linearGradient1569-5-8-4);fill-opacity:1;stroke:none;stroke-width:0.60639846;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="rect1447-7-7-2" - width="22.015461" - height="21.486595" - x="125.25558" - y="177.87553" /> - <rect - style="opacity:1;vector-effect:none;fill:url(#linearGradient1569-5);fill-opacity:1;stroke:none;stroke-width:0.60639846;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="rect1447-7" - width="22.015461" - height="21.486595" - x="29.09609" - y="177.87553" /> - <rect - style="opacity:1;vector-effect:none;fill:url(#linearGradient1569-5-8);fill-opacity:1;stroke:none;stroke-width:0.60639846;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="rect1447-7-7" - width="22.015461" - height="21.486595" - x="77.17585" - y="177.87553" /> - <rect - style="opacity:1;vector-effect:none;fill:url(#linearGradient1569);fill-opacity:1;stroke:none;stroke-width:1.27762222;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="rect1447" - width="47.999573" - height="43.746853" - x="64.224503" - y="94.629501" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.04854584;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 153.06315,153.38716 -26.99542,14.21137 0.50289,50.68267 1.47905,0.65818 45.16576,20.16215 26.85984,-14.33216 0.23911,-50.69007 z" - id="path3809" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient3841);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.04854584;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 153.26529,158.98543 38.71456,16.95503 -18.84576,9.97137 -38.71703,-17.00432 z" - id="path3807" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient3849);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.04854584;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 131.17051,172.99466 39.53544,17.36423 -0.10349,42.04739 -39.01531,-17.416 z" - id="path3805" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient3863);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.04854584;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 195.23872,179.92655 -0.19966,41.80827 -19.38809,10.34606 0.10349,-41.84524 z" - id="path3732" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.04854584;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 160.95644,138.72716 c -10.62345,0 -19.28948,8.66603 -19.28948,19.28948 0,10.62346 8.66603,19.28949 19.28948,19.28949 10.62345,0 19.28948,-8.66603 19.28948,-19.28949 0,-10.62345 -8.66603,-19.28948 -19.28948,-19.28948 z" - id="path3801" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient3833);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.04854584;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 160.95644,143.7757 c 7.89502,0 14.24094,6.34592 14.24094,14.24094 0,7.89502 -6.34592,14.24094 -14.24094,14.24094 -7.89502,0 -14.24094,-6.34592 -14.24094,-14.24094 0,-7.89502 6.34592,-14.24094 14.24094,-14.24094 z" - id="path3736" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="723.024" height="654.1" viewBox="0 0 191.3 173.064"><style><![CDATA[.B{dominant-baseline:auto}]]></style><defs><linearGradient id="A" x1="20.785" y1="134.942" x2="162.636" y2="133.976" xlink:href="#K"><stop offset="0" stop-color="#fe5d02"/><stop offset="1" stop-color="#fff835"/></linearGradient><linearGradient xlink:href="#C" id="B" x1="136.532" y1="199.278" x2="136.687" y2="177.86"/><linearGradient id="C" xlink:href="#K"><stop offset="0" stop-color="#2c6dc9"/><stop offset="1" stop-color="#94cdfe"/></linearGradient><linearGradient xlink:href="#C" id="D" x1="40.373" y1="199.278" x2="40.528" y2="177.86"/><linearGradient xlink:href="#C" id="E" x1="88.453" y1="199.278" x2="88.608" y2="177.86"/><linearGradient xlink:href="#C" id="F" x1="88.811" y1="138.206" x2="89.149" y2="94.599"/><linearGradient id="G" x1="161.547" y1="171.593" x2="160.956" y2="143.776" xlink:href="#K"><stop offset="0" stop-color="#1b82fc"/><stop offset="1" stop-color="#deedff"/></linearGradient><linearGradient id="H" x1="185.756" y1="231.703" x2="185.088" y2="181.445" xlink:href="#K"><stop offset="0" stop-color="#0f2da0"/><stop offset="1" stop-color="#89b3f3"/></linearGradient><linearGradient id="I" x1="150.921" y1="232.515" x2="151.321" y2="173.398" xlink:href="#K"><stop offset="0" stop-color="#1c84fd"/><stop offset="1" stop-color="#89c6fe"/></linearGradient><linearGradient id="J" x1="173.134" y1="185.912" x2="173.59" y2="169.941" xlink:href="#K"><stop offset="0" stop-color="#98cffe"/><stop offset="1" stop-color="#98cffe"/></linearGradient><linearGradient id="K" gradientUnits="userSpaceOnUse"/></defs><g transform="translate(-9.015 -66.038)"><path d="M9.015 66.038v157.64h167.533V66.038z" fill="#fff" paint-order="normal" class="B"/><path d="M15.587 73.647v142.325h152.83V73.647z" fill="#00a0fc" paint-order="normal" class="B"/><path d="M20.742 78.546h142.786v132.257H20.742z" fill="url(#A)" paint-order="normal" class="B"/><path d="M83.83 135.248v22.8H40.167v21.83h4.472V162.52H83.83v18.98h4.472v-18.98h47.923v18.86h4.472V158.05H88.302v-22.8z" fill="#2c6dc9" class="B"/><path d="M125.256 177.876h22.015v21.487h-22.015z" fill="url(#B)" paint-order="normal"/><path d="M29.096 177.876h22.015v21.487H29.096z" fill="url(#D)" paint-order="normal"/><path d="M77.176 177.876H99.19v21.487H77.176z" fill="url(#E)" paint-order="normal"/><path d="M64.225 94.63h48v43.747h-48z" fill="url(#F)" paint-order="normal"/><path d="M153.063 153.387l-26.995 14.21.503 50.683 1.48.658 45.166 20.162 26.86-14.332.24-50.7z" fill="#fff" class="B"/><path d="M153.265 158.985l38.715 16.955-18.846 9.97-38.717-17.004z" fill="url(#J)" class="B"/><path d="M131.17 172.995l39.535 17.364-.103 42.047L131.587 215z" fill="url(#I)" class="B"/><path d="M195.24 179.927l-.2 41.808-19.388 10.346.103-41.845z" fill="url(#H)" class="B"/><path d="M160.956 138.727c-10.623 0-19.29 8.666-19.29 19.29s8.666 19.29 19.29 19.29 19.29-8.666 19.29-19.29-8.666-19.29-19.29-19.29z" fill="#fff" paint-order="normal" class="B"/><path d="M160.956 143.776c7.895 0 14.24 6.346 14.24 14.24s-6.346 14.24-14.24 14.24-14.24-6.346-14.24-14.24 6.346-14.24 14.24-14.24z" fill="url(#G)" paint-order="normal" class="B"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/not_secure.svg b/src/main/webapp/img/lib/active_directory/not_secure.svg index 1ee28e3e58f257bcecdeef7a8b77067de8c18a41..71057848f3de427541ebf48c0d9b89df1525aeab 100644 --- a/src/main/webapp/img/lib/active_directory/not_secure.svg +++ b/src/main/webapp/img/lib/active_directory/not_secure.svg @@ -1,206 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="155.94705mm" - height="178.29344mm" - viewBox="0 0 155.94706 178.29344" - version="1.1" - id="svg927" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="not_secure.svg"> - <defs - id="defs921"> - <linearGradient - id="linearGradient1843" - inkscape:collect="always"> - <stop - id="stop1839" - offset="0" - style="stop-color:#8dc4ff;stop-opacity:0.93969852" /> - <stop - id="stop1841" - offset="1" - style="stop-color:#3d8fff;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1022"> - <stop - style="stop-color:#0e12a3;stop-opacity:1" - offset="0" - id="stop1018" /> - <stop - style="stop-color:#94bafc;stop-opacity:1" - offset="1" - id="stop1020" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1006"> - <stop - style="stop-color:#c0e5ff;stop-opacity:1" - offset="0" - id="stop1002" /> - <stop - style="stop-color:#34adff;stop-opacity:1" - offset="1" - id="stop1004" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient998"> - <stop - style="stop-color:#99ccff;stop-opacity:1" - offset="0" - id="stop994" /> - <stop - style="stop-color:#c0d9ff;stop-opacity:1" - offset="1" - id="stop996" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient992"> - <stop - style="stop-color:#bfe5ff;stop-opacity:1" - offset="0" - id="stop988" /> - <stop - style="stop-color:#6ec5ff;stop-opacity:1" - offset="1" - id="stop990" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient992" - id="linearGradient986" - x1="102.43155" - y1="151.47916" - x2="101.6756" - y2="96.861595" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(3.7795276,0,0,3.7795276,-179.06988,-224.7636)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient998" - id="linearGradient1000" - x1="51.378906" - y1="176.13867" - x2="116.5" - y2="176.13867" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1006" - id="linearGradient1008" - x1="128.55664" - y1="234.45892" - x2="128.55664" - y2="155.34714" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1022" - id="linearGradient1016" - x1="149.67093" - y1="232.0535" - x2="149.1364" - y2="145.45818" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1843" - id="linearGradient1837" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(3.7795276,0,0,3.7795276,-179.06988,-224.7636)" - x1="128.08942" - y1="96.956177" - x2="199.22897" - y2="96.059784" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.49497475" - inkscape:cx="353.86643" - inkscape:cy="476.94233" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" /> - <metadata - id="metadata924"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-47.378906,-59.534908)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:15.11811066;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 500.48438,0.26367188 C 481.2605,-0.04582353 461.9349,5.0071771 443.17969,13.257812 414.6003,25.830214 386.89649,45.81285 360.98242,66.798828 l -0.16992,0.140625 -0.16211,0.146485 C 337.68259,87.968196 297.64893,135.0728 291.9375,187.27148 L 174.03906,123.09961 82.394531,123.25781 0,173.88867 v 355.88086 l 266.89258,144.3457 h 76.9043 l 84.84765,-48.5 V 261.68164 l -66.67187,-36.28906 c 0.3317,-11.85112 1.43551,-22.73119 3.64453,-32.99024 4.9485,-22.98145 15.23104,-43.19633 35.66211,-65.70703 29.28162,-30.091594 47.2997,-45.86937 83.04492,-51.716794 l 0.082,-0.01563 0.082,-0.01367 c 17.09239,-3.185866 26.04527,-0.399363 31.15039,4.339843 5.10516,4.739203 7.63285,13.119709 7.63281,24.337891 v 56.57422 c 0,7.98894 3.55168,15.32062 8.66602,21.12695 5.11438,5.80638 12.1756,10.42387 20.61914,10.42383 8.06222,0 16.71823,-2.79038 23.96094,-8.51172 7.24267,-5.72129 12.88867,-14.94252 12.88867,-26.32226 v -56.91602 c 0,-21.955136 -4.17759,-41.869065 -13.77344,-58.294922 -9.59584,-16.425857 -24.7245,-29.096614 -45.08984,-36.222656 h -0.0156 l -0.0137,-0.00781 C 523.30188,2.9909373 516.0218,1.448904 508.71484,0.73046875 505.97474,0.46105647 503.23064,0.3078855 500.48438,0.26367188 Z" - transform="matrix(0.26458333,0,0,0.26458333,47.378906,59.468703)" - id="path1835" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient986);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:15.11811066;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 168.10938,136.91016 123.08789,67.32422 -0.72657,70.59374 v 0.0449 c 0,24.55725 17.83055,42.59179 37.46875,42.59179 9.33302,0 17.24636,-5.6262 23.9043,-13.14648 6.65798,-7.52032 11.88477,-17.64344 11.88477,-29.00391 v -0.27929 l -0.0234,-0.28125 c -0.84272,-11.39018 -1.45605,-21.92275 -1.71094,-31.79493 l 51.53125,28.18555 v 35.05664 l -73.73047,41.79688 H 270.70898 L 15.117188,210.87891 v -28.21289 l 76.28125,-44.85157 z" - transform="matrix(0.26458333,0,0,0.26458333,47.378906,59.468703)" - id="path1833" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1837);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:15.11811066;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 346.72852,234.60938 c 0.047,12.64872 0.79954,26.1145 1.875,40.73437 -0.0113,6.50052 -3.38412,13.65726 -8.07618,18.95703 -4.69905,5.30767 -10.90106,8.04688 -12.58593,8.04688 -10.06821,0 -22.34974,-10.16657 -22.35352,-27.46875 v -0.008 l 0.64453,-62.41211 0.24805,-17.27148 c 2.42136,-47.37408 42.39151,-96.898115 64.2168,-116.785156 25.39464,-20.552285 52.19199,-39.699713 78.57226,-51.304688 17.35625,-7.635223 34.33254,-12.011774 50.82227,-11.751953 2.35567,0.03712 4.7016,0.168033 7.03711,0.398438 v 0.002 c 6.22802,0.614411 12.37888,1.929197 18.45507,4.023437 17.36455,6.083445 29.12893,16.107695 36.99024,29.564453 7.86625,13.465217 11.71484,30.639372 11.71484,50.667969 v 56.91602 c 0,6.64063 -2.8289,11.05029 -7.14648,14.46094 -4.31762,3.41064 -10.30037,5.25586 -14.58594,5.25586 -2.44418,0 -6.24866,-1.86894 -9.27148,-5.30079 -3.02287,-3.43184 -4.89454,-8.0924 -4.89454,-11.13281 v -56.57422 c 4e-5,-13.445325 -2.91648,-26.550396 -12.46874,-35.417969 -9.53711,-8.853479 -24.42267,-11.778959 -44.11329,-8.126953 -39.40902,6.468352 -61.77576,25.651495 -91.49804,56.205082 l -0.0898,0.0957 -0.0879,0.0957 c -21.83316,24.04035 -33.80105,47.23687 -39.29297,72.74218 -1.94935,9.05307 -3.09363,18.3693 -3.66211,28.11719 z" - transform="matrix(0.26458333,0,0,0.26458333,47.378906,59.468703)" - id="path963" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1000);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 51.378906,119.80469 116.5,154.74023 v 77.73243 L 51.378906,197.25195 Z" - id="path961" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1016);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 156.79102,145.08203 v 77.5918 l -16.98047,9.70703 v -77.67188 z" - id="path959" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1008);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 120.5,155.54297 h 15.31055 v 78.28515 H 120.5 Z" - id="path952" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="589.406" height="673.863" viewBox="0 0 155.947 178.293"><style><![CDATA[.B{dominant-baseline:auto}]]></style><defs><linearGradient id="A" x1="208.073" y1="347.756" x2="205.216" y2="141.327" xlink:href="#F"><stop offset="0" stop-color="#bfe5ff"/><stop offset="1" stop-color="#6ec5ff"/></linearGradient><linearGradient id="B" x1="51.379" y1="176.139" x2="116.5" y2="176.139" xlink:href="#F"><stop offset="0" stop-color="#9cf"/><stop offset="1" stop-color="#c0d9ff"/></linearGradient><linearGradient id="C" x1="128.557" y1="234.459" x2="128.557" y2="155.347" xlink:href="#F"><stop offset="0" stop-color="#c0e5ff"/><stop offset="1" stop-color="#34adff"/></linearGradient><linearGradient id="D" x1="149.671" y1="232.054" x2="149.136" y2="145.458" xlink:href="#F"><stop offset="0" stop-color="#0e12a3"/><stop offset="1" stop-color="#94bafc"/></linearGradient><linearGradient id="E" x1="305.048" y1="141.685" x2="573.922" y2="138.297" xlink:href="#F"><stop offset="0" stop-color="#8dc4ff" stop-opacity=".94"/><stop offset="1" stop-color="#3d8fff"/></linearGradient><linearGradient id="F" gradientUnits="userSpaceOnUse"/></defs><g transform="translate(-47.379 -59.535)" class="B"><path d="M179.8 59.538c-5.086-.082-10.2 1.255-15.162 3.438-7.562 3.326-14.892 8.614-21.748 14.166l-.045.037-.043.04c-6.077 5.525-16.67 17.988-18.18 31.8L93.427 92.04l-24.248.042-21.8 13.396v94.16l70.615 38.19h20.348l22.45-12.832v-96.29l-17.64-9.6c.088-3.136.38-6.014.964-8.73 1.31-6.08 4.03-11.43 9.436-17.385 7.747-7.962 12.515-12.136 21.972-13.683l.022-.004.022-.004c4.522-.843 6.89-.106 8.242 1.148s2.02 3.47 2.02 6.44v14.97c0 2.114.94 4.054 2.293 5.6s3.22 2.758 5.455 2.758c2.133 0 4.423-.738 6.34-2.252s3.4-3.954 3.4-6.964v-15.06c0-5.81-1.105-11.078-3.644-15.424s-6.542-7.698-11.93-9.584h-.004l-.004-.002a25.21 25.21 0 0 0-5.768-1.256c-.725-.07-1.45-.112-2.178-.124z" fill="#fff"/><g transform="matrix(.264583 0 0 .264583 47.378906 59.468703)"><path d="M168.11 136.9l123.088 67.324-.727 70.64c0 24.557 17.83 42.592 37.47 42.592 9.333 0 17.246-5.626 23.904-13.146s11.885-17.643 11.885-29.004v-.28l-.023-.28c-.843-11.4-1.456-21.923-1.71-31.795l51.53 28.186V306.2l-73.73 41.797H270.71L15.117 210.88v-28.213l76.28-44.852z" fill="url(#A)"/><path d="M346.73 234.61c.047 12.65.8 26.115 1.875 40.734-.01 6.5-3.384 13.657-8.076 18.957-4.7 5.308-10.9 8.047-12.586 8.047-10.068 0-22.35-10.167-22.354-27.47v-.008l.893-79.684c2.42-47.374 42.392-96.898 64.217-116.785 25.395-20.552 52.192-39.7 78.572-51.305 17.356-7.635 34.333-12.012 50.822-11.752 2.356.037 4.702.168 7.037.398v.002c6.228.614 12.38 1.93 18.455 4.023 17.365 6.083 29.13 16.108 37 29.564 7.866 13.465 11.715 30.64 11.715 50.668v56.916c0 6.64-2.83 11.05-7.146 14.46s-10.3 5.256-14.586 5.256c-2.444 0-6.25-1.87-9.27-5.3s-4.895-8.092-4.895-11.133v-56.574c0-13.445-2.916-26.55-12.47-35.418-9.537-8.853-24.423-11.78-44.113-8.127-39.41 6.468-61.776 25.65-91.498 56.205l-.1.096-.088.096c-21.833 24.04-33.8 47.237-39.293 72.742-1.95 9.053-3.094 18.37-3.662 28.117z" fill="url(#E)"/></g><path d="M51.38 119.805l65.12 34.936v77.732l-65.12-35.22z" fill="url(#B)"/><path d="M156.79 145.082v77.592l-16.98 9.707V154.71z" fill="url(#D)"/><path d="M120.5 155.543h15.31v78.285H120.5z" fill="url(#C)"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/pda.svg b/src/main/webapp/img/lib/active_directory/pda.svg index 0be823249d3c099ea5aa8a947712528fe54ee061..bef227d01d347de87e23e718b3700002e615a80e 100644 --- a/src/main/webapp/img/lib/active_directory/pda.svg +++ b/src/main/webapp/img/lib/active_directory/pda.svg @@ -1,191 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="95.604065mm" - height="177.68033mm" - viewBox="0 0 95.604065 177.68033" - version="1.1" - id="svg1023" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="pda.svg"> - <defs - id="defs1017"> - <linearGradient - inkscape:collect="always" - id="linearGradient1134"> - <stop - style="stop-color:#0b6dff;stop-opacity:1" - offset="0" - id="stop1130" /> - <stop - style="stop-color:#99ccff;stop-opacity:0.94974875" - offset="1" - id="stop1132" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1118"> - <stop - style="stop-color:#bde4ff;stop-opacity:1" - offset="0" - id="stop1114" /> - <stop - style="stop-color:#8ad0ff;stop-opacity:1" - offset="1" - id="stop1116" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1112"> - <stop - style="stop-color:#222bb0;stop-opacity:1" - offset="0" - id="stop1108" /> - <stop - style="stop-color:#7694e7;stop-opacity:1" - offset="1" - id="stop1110" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1112" - id="linearGradient1106" - x1="140.36133" - y1="214.08594" - x2="142.79492" - y2="112.7793" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1118" - id="linearGradient1120" - x1="67.609375" - y1="92.512695" - x2="142.44336" - y2="92.512695" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1134" - id="linearGradient1128" - x1="95.147949" - y1="231.51895" - x2="97.018837" - y2="78.106247" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.7" - inkscape:cx="331.64861" - inkscape:cy="344.4017" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata1020"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-55.718754,-59.274958)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 143.44531,59.275391 c -1.26621,0.01311 -2.5097,0.354047 -3.5957,0.916015 -2.17201,1.123937 -3.93471,3.021844 -5.10547,5.212891 -0.002,0.0026 -0.004,0.0052 -0.006,0.0078 L 122.33008,88.919922 75.898438,67.304688 c -0.546609,-0.254389 -1.178803,-0.24865 -1.720704,0.01562 l -11.980468,5.832032 0.03516,-0.01563 c -3.521665,1.632003 -6.513672,5.209953 -6.513672,9.402343 l 0.01758,98.658207 c -1.83e-4,0.27988 0.05837,0.55668 0.171875,0.8125 l 13.357422,30.05273 c 0.185933,0.41745 0.509201,0.75864 0.916016,0.9668 l 45.035163,23.07617 c 0.0448,0.0225 0.0904,0.0434 0.13672,0.0625 1.44156,0.60669 3.01795,0.79466 4.50586,0.78711 1.4879,-0.008 2.79032,-0.11829 4.04882,-0.81055 0.0446,-0.0244 0.0882,-0.0504 0.13086,-0.0781 l 14.29883,-9.35547 c 0.30194,-0.19736 0.54489,-0.47271 0.70313,-0.79688 l 7.5996,-15.58008 c 0.13375,-0.27368 0.20322,-0.57429 0.20313,-0.8789 l -0.0508,-99.87696 v -0.002 c -7.4e-4,-2.86023 -1.65461,-5.71338 -3.7832,-8.46289 -1.5938,-2.058703 -3.46493,-3.980051 -5.58789,-5.191404 l 12.74218,-23.751953 c 0.009,-0.01616 0.0171,-0.03244 0.0254,-0.04883 1.04546,-2.085496 1.41403,-4.334563 0.91016,-6.441406 -0.50387,-2.106844 -1.88192,-3.98045 -3.88867,-5.328126 -0.0129,-0.0086 -0.026,-0.01708 -0.0391,-0.02539 -1.17274,-0.749024 -2.46036,-1.063895 -3.72657,-1.050781 z" - id="path1098" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1120);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 134.07617,98.800781 c 1.50763,0.440873 3.96213,2.425149 5.76953,4.759769 1.40985,1.82109 2.22437,3.68691 2.59766,4.9375 l -10.63477,5.19531 c -0.50057,-1.57244 -1.20957,-3.14696 -2.16406,-4.70508 -1.54331,-2.5193 -3.31433,-4.81039 -5.50586,-6.00976 -0.0239,-0.0129 -0.048,-0.0252 -0.0723,-0.0371 L 67.609375,74.966797 75.074219,71.332031 122.36719,93.349609 Z" - id="path1096" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1128);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 63.302734,77.294922 122.2207,106.49023 c 0.84175,0.4623 2.69133,2.42735 4.01368,4.58594 1.32346,2.16044 2.19335,4.68807 2.19335,5.51758 l -0.5332,100.36328 -6.42773,15.75977 c -0.34639,0.0881 -0.81373,0.23414 -1.62891,0.23828 -1.06443,0.005 -2.23938,-0.19006 -2.91211,-0.46875 L 72.634766,209.79102 59.736328,180.77148 59.71875,82.539062 c 0,-1.787138 1.731052,-4.055279 3.583984,-5.24414 z" - id="path1092" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1106);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 142.79492,112.7793 0.0488,95.47265 -10.93359,5.77539 0.51172,-96.18164 z" - id="path1090" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#191fa9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 140.36133,214.08594 -4.67383,9.58008 -8.4707,5.54101 4.25195,-10.42383 z" - id="path1044" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0066ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 69.683594,95.048828 a 1.50015,1.50015 0 0 0 -1.451172,1.498047 v 79.931645 a 1.50015,1.50015 0 0 0 0.814453,1.33398 l 48.517575,24.92969 A 1.50015,1.50015 0 0 0 119.75,201.4082 v -80.35547 a 1.50015,1.50015 0 0 0 -0.82422,-1.33789 L 70.408203,95.208984 a 1.50015,1.50015 0 0 0 -0.724609,-0.160156 z" - id="path1083" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 71.232422,98.986328 116.75,121.97656 v 76.97461 L 71.232422,175.5625 Z" - id="path1048" - inkscape:connector-curvature="0" /> - <path - style="opacity:1;fill:#ffffff;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 76.639535,201.58477 c -4.570451,-2.69922 -5.813112,-5.02013 -5.813112,-8.55263 0,-2.14629 1.920406,-4.82509 5.078121,-3.40768 3.708063,1.97791 5.412207,4.42796 5.412207,8.55263 0,2.68799 -2.800526,4.3522 -4.677216,3.40768 z" - id="path1050" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="opacity:1;fill:#ffffff;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 88.967344,212.3737 c -4.570451,-2.69922 -5.813112,-5.02013 -5.813112,-8.55263 0,-2.14629 1.920406,-4.82509 5.078121,-3.40768 3.708064,1.97791 5.412207,4.42796 5.412207,8.55263 0,2.68799 -2.800525,4.3522 -4.677216,3.40768 z" - id="path1050-5" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="opacity:1;fill:#ffffff;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 101.79629,218.98863 c -4.570459,-2.69922 -5.81312,-5.02013 -5.81312,-8.55263 0,-2.14629 1.920406,-4.82509 5.07812,-3.40768 3.70807,1.97791 5.41221,4.42796 5.41221,8.55263 0,2.68799 -2.80052,4.3522 -4.67721,3.40768 z" - id="path1050-54" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="opacity:1;fill:#ffffff;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 114.75886,221.1936 c -4.57045,-2.69922 -5.81311,-5.02013 -5.81311,-8.55263 0,-2.14629 1.9204,-4.82509 5.07812,-3.40768 3.70806,1.97791 5.4122,4.42796 5.4122,8.55263 0,2.68799 -2.80052,4.3522 -4.67721,3.40768 z" - id="path1050-2" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#003399;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 98.167784,142.88328 40.103696,-75.594218 0.002,-0.0039 0.004,-0.0059 c 0.81668,-1.523512 2.14036,-2.878078 3.41016,-3.535156 0.63629,-0.329257 1.20332,-0.510946 1.74414,-0.525391 l -1.7e-4,3.5e-5 c 0.53478,-0.01428 1.04405,0.140422 1.57031,0.472656 1.30262,0.882424 1.95374,1.858876 2.20703,2.917969 0.25483,1.065496 0.11176,2.30552 -0.59375,3.714844 -7.2e-4,0.0015 -10e-4,0.0024 -0.002,0.0039 l -40.669,75.689271 -7.85441,5.49669 z" - id="path1094" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccccccccccc" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="361.338" height="671.546" viewBox="0 0 95.604 177.68"><style><![CDATA[.B{dominant-baseline:auto}]]></style><defs><linearGradient id="A" x1="140.361" y1="214.086" x2="142.795" y2="112.779" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#222bb0"/><stop offset="1" stop-color="#7694e7"/></linearGradient><linearGradient id="B" x1="67.609" y1="92.513" x2="142.443" y2="92.513" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#bde4ff"/><stop offset="1" stop-color="#8ad0ff"/></linearGradient><linearGradient id="C" x1="95.148" y1="231.519" x2="97.019" y2="78.106" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#0b6dff"/><stop offset="1" stop-color="#9cf" stop-opacity=".95"/></linearGradient><path id="D" d="M76.64 201.585c-4.57-2.7-5.813-5.02-5.813-8.553 0-2.146 1.92-4.825 5.078-3.408 3.708 1.978 5.412 4.428 5.412 8.553 0 2.688-2.8 4.352-4.677 3.408z"/></defs><g transform="translate(-55.719 -59.275)"><path d="M143.445 59.275c-1.266.013-2.5.354-3.596.916-2.172 1.124-3.935 3.022-5.105 5.213L122.33 88.92 75.898 67.305a2 2 0 0 0-1.721.016l-11.98 5.832.035-.016c-3.522 1.632-6.514 5.2-6.514 9.402l.018 98.658a2 2 0 0 0 .172.813l13.357 30.053a2 2 0 0 0 .916.967l45.035 23.076c.045.023.1.043.137.063 1.442.607 3.018.795 4.506.787s2.8-.118 4.05-.81c.045-.024.088-.05.13-.078l14.3-9.355a2 2 0 0 0 .703-.797l7.6-15.58a2 2 0 0 0 .203-.879l-.05-99.88c-.001-2.86-1.655-5.713-3.783-8.463-1.594-2.06-3.465-3.98-5.588-5.19l12.742-23.752c.01-.016.017-.032.025-.05 1.045-2.085 1.414-4.335.9-6.44s-1.882-3.98-3.89-5.328l-.04-.025c-1.173-.75-2.46-1.064-3.727-1.05z" fill="#fff" class="B"/><path d="M134.076 98.8c1.508.44 3.962 2.425 5.77 4.76 1.4 1.82 2.224 3.687 2.598 4.938l-10.635 5.195c-.5-1.572-1.2-3.147-2.164-4.705-1.543-2.52-3.314-4.8-5.506-6l-.072-.037L67.61 74.967l7.465-3.635 47.293 22.018z" fill="url(#B)" class="B"/><path d="M63.303 77.295L122.22 106.5c.842.462 2.69 2.427 4.014 4.586s2.193 4.688 2.193 5.518l-.533 100.363-6.428 15.76c-.346.088-.814.234-1.63.238-1.064.005-2.24-.2-2.912-.47l-44.29-22.695-12.898-29.02-.018-98.232c0-1.787 1.73-4.055 3.584-5.244z" fill="url(#C)" class="B"/><path d="M142.795 112.78l.05 95.473-10.934 5.775.512-96.182z" fill="url(#A)" class="B"/><path d="M140.36 214.086l-4.674 9.58-8.47 5.54 4.252-10.424z" fill="#191fa9" class="B"/><path d="M69.684 95.05a1.5 1.5 0 0 0-1.451 1.498v79.932a1.5 1.5 0 0 0 .814 1.334l48.518 24.93a1.5 1.5 0 0 0 2.186-1.334v-80.355a1.5 1.5 0 0 0-.824-1.338L70.408 95.21a1.5 1.5 0 0 0-.725-.16z" fill="#06f" class="B"/><g fill="#fff"><path d="M71.232 98.986l45.518 23v76.975l-45.518-23.39z" class="B"/><use xlink:href="#D"/><use xlink:href="#D" x="12.327" y="10.789"/><use xlink:href="#D" x="25.156" y="17.405"/><use xlink:href="#D" x="38.12" y="19.609"/></g><path d="M98.168 142.883l40.1-75.604c.817-1.524 2.14-2.878 3.4-3.535.636-.33 1.203-.51 1.744-.525.535-.014 1.044.14 1.57.473 1.303.882 1.954 1.86 2.207 2.918.255 1.065.112 2.306-.594 3.715l-40.67 75.693-7.854 5.497z" fill="#039" class="B"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/phone.svg b/src/main/webapp/img/lib/active_directory/phone.svg index d54d3b3d4a0f85a42436e4f8e50cb02b99dc1ea0..c4bb2d520a27c6614d18a8dec8d664f7353e8e68 100644 --- a/src/main/webapp/img/lib/active_directory/phone.svg +++ b/src/main/webapp/img/lib/active_directory/phone.svg @@ -1,171 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="189.08951mm" - height="148.67671mm" - viewBox="0 0 189.08951 148.67671" - version="1.1" - id="svg8306" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="phone.svg"> - <defs - id="defs8300"> - <linearGradient - inkscape:collect="always" - id="linearGradient8390"> - <stop - style="stop-color:#97cbff;stop-opacity:1" - offset="0" - id="stop8386" /> - <stop - style="stop-color:#579bff;stop-opacity:0.89447236" - offset="1" - id="stop8388" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient8384"> - <stop - style="stop-color:#0c0ea1;stop-opacity:1" - offset="0" - id="stop8380" /> - <stop - style="stop-color:#6d88e1;stop-opacity:0.94472361" - offset="1" - id="stop8382" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient8370"> - <stop - style="stop-color:#c0e5ff;stop-opacity:0.98492461" - offset="0" - id="stop8366" /> - <stop - style="stop-color:#52b9ff;stop-opacity:1" - offset="1" - id="stop8368" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8370" - id="linearGradient8364" - x1="121.89732" - y1="205.52975" - x2="121.70834" - y2="83.632431" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8384" - id="linearGradient8378" - x1="151.37947" - y1="221.78273" - x2="151.0015" - y2="112.35862" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8390" - id="linearGradient8392" - x1="14.529297" - y1="196.83594" - x2="86.71875" - y2="196.83594" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.7" - inkscape:cx="356.02058" - inkscape:cy="397.3555" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" /> - <metadata - id="metadata8303"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-10.488637,-78.578968)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 149.60547,78.580078 a 2.0002,2.0002 0 0 0 -1.5918,0.88086 l -18.11914,26.861332 -6.56836,-3.35743 c -0.59403,-4.851269 -3.49038,-10.087952 -7.20312,-13.113278 a 2.0002,2.0002 0 0 0 -0.0566,-0.04297 c -6.75478,-5.119425 -16.641604,-5.6468 -23.130863,-4.169922 -2.073211,0.412721 -4.407946,1.739762 -7.654297,3.683594 -3.257443,1.950473 -7.200469,4.535672 -11.460938,7.425781 -8.520936,5.780215 -18.309249,12.784275 -26.1875,18.271485 -12.285623,8.15307 -22.089173,15.35078 -25.996093,26.2207 a 2.0002,2.0002 0 0 0 -0.04297,0.14063 c -1.200106,4.317 -1.326701,10.86398 1.164062,16.03711 l -11.267578,9.14062 a 2.0002,2.0002 0 0 0 -0.976562,2.04883 l 0.113281,20 a 2.0002,2.0002 0 0 0 1.130859,1.79102 l 75.794922,36.50586 a 2.0002,2.0002 0 0 0 2.300782,-0.0254 L 198.47461,172.43555 a 2.0002,2.0002 0 0 0 1.10351,-1.79688 l -0.33203,-65.88086 a 2.0002,2.0002 0 0 0 -1.39257,-2.125 L 150.57227,78.792969 a 2.0002,2.0002 0 0 0 -0.9668,-0.212891 z" - id="path8356" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient8364);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 150.34375,83.158203 44.08789,22.228517 -13.9668,23.52148 -92.001949,76.98047 -72.333985,-37.94336 9.03711,-7.33203 c 3.434226,2.9476 8.469869,4.72051 14.746093,5.52539 6.487968,1.09765 13.59919,-1.48841 17.548829,-5.02539 a 2.0002,2.0002 0 0 0 0.07031,-0.0664 c 4.013855,-3.95657 6.544732,-9.19882 8.09375,-13.50977 a 2.0002,2.0002 0 0 0 0.03516,-1.25 c -0.821375,-2.7407 -2.00989,-4.63314 -2.980468,-6.44727 -0.82963,-1.55067 -1.498269,-3.20244 -1.970704,-5.44336 l 23.988282,-19.21484 c 3.495844,2.8486 9.240858,7.55054 16.285152,8.66602 a 2.0002,2.0002 0 0 0 0.14844,0.0176 c 3.27742,0.26869 7.30918,-0.27954 11.02539,-1.54296 3.71621,-1.26343 7.20801,-3.18484 8.88672,-6.41016 a 2.0002,2.0002 0 0 0 0.0391,-0.0781 c 1.41654,-3.03802 1.9044,-5.84525 2.16406,-8.41796 l 6.4043,3.27343 a 2.0002,2.0002 0 0 0 2.56836,-0.66211 z" - id="path8354" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0066ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 154.9375,93.480469 a 2.0002,2.0002 0 0 0 -1.74805,0.93164 l -8.75195,13.898441 a 2.0002,2.0002 0 0 0 0.86523,2.88672 l 27.66211,12.5625 a 2.0002,2.0002 0 0 0 2.52344,-0.76172 l 8.68555,-13.89844 a 2.0002,2.0002 0 0 0 -0.86719,-2.87891 l -27.5957,-12.562497 a 2.0002,2.0002 0 0 0 -0.77344,-0.177734 z" - id="path8346" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 155.64453,98.023438 23.92969,10.892582 -6.54883,10.47656 -23.98242,-10.88867 z" - id="path8344" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0066ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 137.4043,118.20117 a 2.0002,2.0002 0 0 0 -1.25977,0.42383 l -60.736327,47.50781 a 2.0002,2.0002 0 0 0 0.414063,3.40039 l 27.595704,12.36133 a 2.0002,2.0002 0 0 0 2.12305,-0.31055 l 57.19531,-49.31054 a 2.0002,2.0002 0 0 0 -0.50195,-3.34571 l -24.05469,-10.55859 a 2.0002,2.0002 0 0 0 -0.77539,-0.16797 z" - id="path8342" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 137.66797,122.51367 20.05469,8.80078 -53.83008,46.41016 -23.408205,-10.48633 z" - id="path8329" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0066ff;fill-opacity:0.92462314;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 98.396484,89.007812 c 5.087316,-0.136208 11.270226,0.990897 15.224606,3.972657 2.82627,2.322558 5.77982,7.987331 5.91211,11.349611 -0.0739,2.84584 -0.43129,6.23717 -2.05664,9.7539 -0.85549,1.62052 -3.43059,3.37113 -6.60742,4.45118 -3.15968,1.07421 -6.80467,1.53318 -9.33008,1.33984 -5.021933,-0.82077 -9.742936,-4.27096 -13.261716,-7.03125 3.457261,-2.09396 9.014365,-4.88768 13.017576,-6.76563 a 2.0002,2.0002 0 1 0 -1.697264,-3.62109 c -4.730801,2.21927 -12.054325,5.63021 -15.740234,8.36328 a 2.0002,2.0002 0 0 0 -0.419922,0.24805 c -0.0018,0.001 -0.0061,0.003 -0.0078,0.004 a 2.0002,2.0002 0 0 0 -0.01758,0.0137 2.0002,2.0002 0 0 0 -0.0039,0.004 l -26.193359,20.98047 a 2.0002,2.0002 0 0 0 -0.726563,1.86524 c 0.52949,3.44607 1.611397,5.82345 2.664063,7.79101 0.941331,1.75946 1.777399,3.22765 2.423828,5.08594 -1.435404,3.81347 -3.666858,8.21764 -6.814453,11.33984 -2.765351,2.45646 -9.381144,4.86514 -14.201172,4.04297 a 2.0002,2.0002 0 0 0 -0.08398,-0.0117 c -6.582346,-0.83671 -11.316211,-2.83659 -13.660156,-5.38281 -2.261319,-3.65046 -2.365859,-10.66436 -1.378906,-14.28516 3.393406,-9.33828 12.274438,-16.11403 24.445312,-24.18945 a 2.0002,2.0002 0 0 0 0.03711,-0.0254 c 7.912925,-5.51136 17.690238,-12.50585 26.146484,-18.24219 4.228123,-2.868163 8.128514,-5.42197 11.269532,-7.302731 3.141017,-1.88076 5.753829,-3.073885 6.392578,-3.199218 a 2.0002,2.0002 0 0 0 0.0625,-0.01367 c 1.32957,-0.304665 2.906055,-0.489656 4.605468,-0.535157 z" - id="path8352" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient8378);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 195.28125,111.78906 0.29102,57.62696 -104.880864,52.57031 0.02734,-12.76758 92.576174,-77.46094 a 2.0002,2.0002 0 0 0 0.43555,-0.51367 z" - id="path8350" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient8392);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 14.529297,171.62305 86.71875,209.49219 86.69141,222.04883 14.619145,187.33594 Z" - id="path8332" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="714.671" height="561.929" viewBox="0 0 189.09 148.677"><style><![CDATA[.B{dominant-baseline:auto}]]></style><defs><linearGradient id="A" x1="121.897" y1="205.53" x2="121.708" y2="83.632" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#c0e5ff" stop-opacity=".985"/><stop offset="1" stop-color="#52b9ff"/></linearGradient><linearGradient id="B" x1="151.379" y1="221.783" x2="151.002" y2="112.359" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#0c0ea1"/><stop offset="1" stop-color="#6d88e1" stop-opacity=".945"/></linearGradient><linearGradient id="C" x1="14.529" y1="196.836" x2="86.719" y2="196.836" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#97cbff"/><stop offset="1" stop-color="#579bff" stop-opacity=".894"/></linearGradient></defs><g transform="translate(-10.489 -78.579)" class="B"><path d="M149.605 78.58a2 2 0 0 0-1.592.881l-18.12 26.86-6.568-3.357c-.594-4.85-3.5-10.088-7.203-13.113a2 2 0 0 0-.057-.043c-6.755-5.12-16.642-5.647-23.13-4.17-2.073.413-4.408 1.74-7.654 3.684-3.257 1.95-7.2 4.536-11.46 7.426l-26.187 18.27c-12.286 8.153-22.09 15.35-25.996 26.22a2 2 0 0 0-.043.141c-1.2 4.317-1.327 10.864 1.164 16.037L11.5 166.56a2 2 0 0 0-.977 2.049l.113 20a2 2 0 0 0 1.131 1.791l75.795 36.506a2 2 0 0 0 2.301-.025l108.62-54.443a2 2 0 0 0 1.104-1.797l-.332-65.88a2 2 0 0 0-1.393-2.125l-47.28-23.84a2 2 0 0 0-.967-.213z" fill="#fff"/><path d="M150.344 83.158l44.088 22.23-13.967 23.52-92.002 76.98-72.334-37.943 9.037-7.332c3.434 2.948 8.47 4.72 14.746 5.525 6.488 1.098 13.6-1.488 17.55-5.025a2 2 0 0 0 .07-.066c4.014-3.957 6.545-9.2 8.094-13.5a2 2 0 0 0 .035-1.25c-.82-2.74-2-4.633-2.98-6.447-.83-1.55-1.498-3.202-1.97-5.443l23.988-19.215c3.496 2.85 9.24 7.55 16.285 8.666a2 2 0 0 0 .148.018c3.277.27 7.31-.28 11.025-1.543s7.208-3.185 8.887-6.4a2 2 0 0 0 .039-.078c1.417-3.038 1.904-5.845 2.164-8.418l6.404 3.273a2 2 0 0 0 2.568-.662z" fill="url(#A)"/><path d="M154.938 93.48a2 2 0 0 0-1.748.932l-8.752 13.898a2 2 0 0 0 .865 2.887l27.662 12.563a2 2 0 0 0 2.523-.762l8.686-13.898a2 2 0 0 0-.867-2.879L155.71 93.658a2 2 0 0 0-.773-.178z" fill="#06f"/><path d="M155.645 98.023l23.93 10.893-6.55 10.477-23.982-10.89z" fill="#fff"/><path d="M137.404 118.2a2 2 0 0 0-1.26.424l-60.736 47.508a2 2 0 0 0 .414 3.4l27.596 12.36a2 2 0 0 0 2.123-.311l57.195-49.31a2 2 0 0 0-.502-3.346l-24.055-10.56a2 2 0 0 0-.775-.168z" fill="#06f"/><path d="M137.668 122.514l20.055 8.8-53.83 46.4-23.408-10.486z" fill="#fff"/><path d="M98.396 89.008c5.087-.136 11.27.99 15.225 3.973 2.826 2.323 5.78 7.987 5.912 11.35-.074 2.846-.43 6.237-2.057 9.754-.855 1.62-3.43 3.37-6.607 4.45-3.16 1.074-6.805 1.533-9.33 1.34-5.022-.82-9.743-4.27-13.262-7.03 3.457-2.094 9.014-4.888 13.018-6.766a2 2 0 1 0-1.697-3.621c-4.73 2.22-12.054 5.63-15.74 8.363a2 2 0 0 0-.42.248 2 2 0 0 0-.025.018 2 2 0 0 0-.004.004l-26.193 20.98a2 2 0 0 0-.727 1.865c.53 3.446 1.61 5.823 2.664 7.79.94 1.76 1.777 3.228 2.424 5.086-1.435 3.813-3.667 8.218-6.814 11.34-2.765 2.456-9.38 4.865-14.2 4.043a2 2 0 0 0-.084-.012c-6.582-.837-11.316-2.837-13.66-5.383-2.26-3.65-2.366-10.664-1.38-14.285 3.393-9.338 12.274-16.114 24.445-24.19a2 2 0 0 0 .037-.025l26.146-18.242c4.228-2.868 8.13-5.422 11.27-7.303s5.754-3.074 6.393-3.2a2 2 0 0 0 .063-.014c1.33-.305 2.906-.5 4.605-.535z" fill="#06f" fill-opacity=".925"/><path d="M195.28 111.79l.29 57.627-104.88 52.57.027-12.768 92.576-77.46a2 2 0 0 0 .436-.514z" fill="url(#B)"/><path d="M14.53 171.623l72.19 37.87-.027 12.557-72.072-34.713z" fill="url(#C)"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/printer.svg b/src/main/webapp/img/lib/active_directory/printer.svg index 9a4eff8c8cc51492faa2c4ce431e9e86d9d248e0..31352ad00c78f4f43572c7b20a39126a38e0dbe9 100644 --- a/src/main/webapp/img/lib/active_directory/printer.svg +++ b/src/main/webapp/img/lib/active_directory/printer.svg @@ -1,181 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="235.32184mm" - height="155.9081mm" - viewBox="0 0 235.32184 155.9081" - version="1.1" - id="svg8484" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="printer.svg"> - <defs - id="defs8478"> - <linearGradient - id="linearGradient900" - inkscape:collect="always"> - <stop - id="stop896" - offset="0" - style="stop-color:#c0e5ff;stop-opacity:1" /> - <stop - id="stop898" - offset="1" - style="stop-color:#50b9ff;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient884"> - <stop - style="stop-color:#95caff;stop-opacity:1" - offset="0" - id="stop880" /> - <stop - style="stop-color:#1d79ff;stop-opacity:1" - offset="1" - id="stop882" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient876"> - <stop - style="stop-color:#81a1ef;stop-opacity:1" - offset="0" - id="stop872" /> - <stop - style="stop-color:#090c9f;stop-opacity:1" - offset="1" - id="stop874" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient876" - id="linearGradient878" - x1="112.68942" - y1="171.80664" - x2="218.78513" - y2="171.80664" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient884" - id="linearGradient886" - x1="23.867159" - y1="179.75488" - x2="108.68942" - y2="179.75488" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient900" - id="linearGradient894" - x1="143.13959" - y1="172.11667" - x2="141.55208" - y2="75.543755" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="1" - inkscape:cx="372.38093" - inkscape:cy="280.53547" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata8481"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(12.536681,-71.157659)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 132.48828,71.158203 a 2.0002,2.0002 0 0 0 -0.92187,0.25 L 20.898438,132.81836 a 2.0002,2.0002 0 0 0 -1.03125,1.74805 v 33.39257 l -31.294922,15.54688 a 2.0002,2.0002 0 0 0 -0.0625,3.54883 l 45.642578,24.77539 a 2.0002,2.0002 0 0 0 1.919922,-0.006 l 20.46875,-11.27149 53.261714,26.30665 a 2.0002,2.0002 0 0 0 1.8418,-0.0371 l 110.0957,-59.82813 a 2.0002,2.0002 0 0 0 1.04493,-1.75781 v -46.58594 a 2.0002,2.0002 0 0 0 -1.08399,-1.77734 L 133.45312,71.380859 a 2.0002,2.0002 0 0 0 -0.96484,-0.222656 z" - id="path870" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient894);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 132.57028,75.425781 216.3945,118.63672 110.63669,172.37305 26.322236,134.38086 Z" - id="path868" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient878);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 218.78513,121.91016 v 42.13672 l -106.09571,57.65624 v -45.88671 z" - id="path866" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient886);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 23.867158,137.66211 84.822262,38.2207 v 45.96485 L 23.867188,179.51797 Z" - id="path825" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0066ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999995;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 47.439453,158.98047 a 1.40014,1.40014 0 0 0 -0.667969,0.14258 L -3.8261719,184.0918 a 1.40014,1.40014 0 0 0 -0.050781,2.48632 l 38.3691409,20.87696 a 1.40014,1.40014 0 0 0 1.347656,-0.004 l 50.630859,-28.02734 a 1.40014,1.40014 0 0 0 -0.08789,-2.49414 L 47.980469,159.10938 a 1.40014,1.40014 0 0 0 -0.541016,-0.12891 z" - id="path860" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999995;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 47.410153,161.93164 82.705075,178.30859 35.156247,204.62891 -0.16797175,185.41016 Z" - id="path827" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 127.27734,91.974609 c -0.25301,0.0012 -0.5016,0.06637 -0.72265,0.189453 L 60.472656,129.11523 c -1.038418,0.58165 -1.018398,2.08297 0.03516,2.63672 l 50.314454,26.39258 c 0.43248,0.22699 0.94838,0.22923 1.38281,0.006 l 68.18164,-35.12891 c 1.07274,-0.55319 1.08622,-2.08228 0.0234,-2.65429 L 127.99805,92.154297 c -0.22138,-0.119364 -0.46921,-0.181154 -0.72071,-0.179688 z" - id="path853" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 127.30074,95.185547 49.2463,26.421833 -65.02169,33.51957 -47.169921,-24.74414 z" - id="path829" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="opacity:1;fill:#0066ff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 64.355429,130.38281 62.945311,-35.197263 49.2463,26.421833 -18.01411,9.26791 -31.179,-14.34904 -61.316333,14.74026 z" - id="path831" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccc" /> - <path - style="opacity:1;fill:#0099ff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 129.24486,113.51947 0.0671,-17.211391 47.2351,25.299301 -13.91307,7.18431 z" - id="path833" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="889.406" height="589.259" viewBox="0 0 235.322 155.908"><style><![CDATA[.B{dominant-baseline:auto}]]></style><defs><linearGradient id="A" x1="112.689" y1="171.807" x2="218.785" y2="171.807" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#81a1ef"/><stop offset="1" stop-color="#090c9f"/></linearGradient><linearGradient id="B" x1="23.867" y1="179.755" x2="108.689" y2="179.755" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#95caff"/><stop offset="1" stop-color="#1d79ff"/></linearGradient><linearGradient id="C" x1="143.14" y1="172.117" x2="141.552" y2="75.544" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#c0e5ff"/><stop offset="1" stop-color="#50b9ff"/></linearGradient></defs><g transform="translate(12.537 -71.158)"><path d="M132.488 71.158a2 2 0 0 0-.922.25l-110.668 61.4a2 2 0 0 0-1.031 1.748v33.393l-31.295 15.547a2 2 0 0 0-.062 3.549l45.643 24.775a2 2 0 0 0 1.92-.006l20.47-11.27 53.262 26.307a2 2 0 0 0 1.842-.037l110.096-59.828a2 2 0 0 0 1.045-1.758V118.65a2 2 0 0 0-1.084-1.777L133.453 71.38a2 2 0 0 0-.965-.223z" fill="#fff" class="B"/><path d="M132.57 75.426l83.824 43.21-105.758 53.736-84.314-37.992z" fill="url(#C)" class="B"/><path d="M218.785 121.9v42.137L112.69 221.703v-45.887z" fill="url(#A)" class="B"/><path d="M23.867 137.662l84.822 38.22v45.965l-84.822-42.33z" fill="url(#B)" class="B"/><path d="M47.44 158.98a1.4 1.4 0 0 0-.668.143l-50.598 24.97a1.4 1.4 0 0 0-.051 2.486l38.37 20.877a1.4 1.4 0 0 0 1.348-.004l50.63-28.027a1.4 1.4 0 0 0-.088-2.494L47.98 159.11a1.4 1.4 0 0 0-.541-.129z" fill="#06f" class="B"/><g fill="#fff" class="B"><path d="M47.4 161.932l35.295 16.377-47.55 26.32L-.168 185.4zm79.877-69.957a1.5 1.5 0 0 0-.723.189l-66.082 36.95c-1.038.582-1.018 2.083.035 2.637l50.314 26.393a1.5 1.5 0 0 0 1.383.006l68.182-35.13c1.073-.553 1.086-2.082.023-2.654l-52.412-28.213a1.5 1.5 0 0 0-.721-.18z"/><path d="M127.3 95.186l49.246 26.422-65.022 33.52-47.17-24.744z"/></g><path d="M64.355 130.383L127.3 95.186l49.246 26.422-18.014 9.268-31.18-14.35-61.316 14.74z" fill="#06f"/><path d="M129.245 113.52l.067-17.21 47.235 25.3-13.913 7.184z" fill="#09f"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/router.svg b/src/main/webapp/img/lib/active_directory/router.svg index 74ae8ecc127e4faa1303bc239266f54456a5a913..faff24f368324648838a54ea20fbb1d86ce51355 100644 --- a/src/main/webapp/img/lib/active_directory/router.svg +++ b/src/main/webapp/img/lib/active_directory/router.svg @@ -1,157 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="195.61031mm" - height="149.74922mm" - viewBox="0 0 195.61031 149.74922" - version="1.1" - id="svg924" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="router.svg"> - <defs - id="defs918"> - <linearGradient - inkscape:collect="always" - id="linearGradient1054"> - <stop - style="stop-color:#0c7afc;stop-opacity:1" - offset="0" - id="stop1050" /> - <stop - style="stop-color:#85c4fe;stop-opacity:1" - offset="1" - id="stop1052" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1040"> - <stop - style="stop-color:#0c2a9e;stop-opacity:1" - offset="0" - id="stop1036" /> - <stop - style="stop-color:#7da6eb;stop-opacity:1" - offset="1" - id="stop1038" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1026"> - <stop - style="stop-color:#b7e4fe;stop-opacity:1" - offset="0" - id="stop1022" /> - <stop - style="stop-color:#09a3fc;stop-opacity:1" - offset="1" - id="stop1024" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1026" - id="linearGradient1020" - x1="106.90781" - y1="168.44334" - x2="107.17508" - y2="98.686005" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1040" - id="linearGradient1034" - x1="143.44197" - y1="192.30058" - x2="143.064" - y2="141.08481" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1054" - id="linearGradient1048" - x1="78.619049" - y1="192.30058" - x2="79.375" - y2="134.09225" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.49497475" - inkscape:cx="914.07744" - inkscape:cy="72.53437" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata921"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-9.3152927,-73.601802)"> - <path - style="opacity:1;fill:#ef790f;fill-opacity:0.98492462;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 104.74279,223.35102 H 9.3152927 v -62.8447 L 40.970518,177.85985 78.739365,147.85525 36.003104,119.45474 9.3152927,138.88436 V 73.601802 H 99.515975 L 70.572584,97.147231 108.51421,123.32899 143.35374,97.255155 109.36466,73.601802 h 95.56094 v 61.384208 l -28.24419,-17.3563 -39.96629,33.39525 39.79352,26.60003 28.41696,-21.16292 v 66.88895 h -90.68405 l 29.14859,-21.63264 -36.272,-24.82248 -33.054797,24.81577 z" - id="path937" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccccccccccccccccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 100.12695,93.146484 42.078125,128.91797 v 26.04297 l 71.550785,43.6914 1.04492,-0.64453 56.01953,-34.56054 v -27.8125 z" - id="path1012" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1020);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 100.15035,97.830078 64.74609,38.984372 -51.30468,32.72657 -65.667972,-39.52735 z" - id="path1010" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1048);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 46.078085,133.57227 65.544925,39.45117 v 19.71875 L 46.078125,152.7168 Z" - id="path1008" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1034);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 166.69332,140.41406 v 20.80078 l -51.07031,31.50586 v -19.73047 z" - id="path943" - inkscape:connector-curvature="0" /> - <path - id="path945-1-1" - style="opacity:1;fill:#ffffff;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 93.035933,176.74911 v -9.59402 l 8.499647,5.12872 -0.0236,9.48471 z m -16.381088,-9.92304 v -9.59402 l 8.499646,5.12872 -0.02362,9.48471 z m -16.381086,-9.92304 v -9.59402 l 8.499646,5.12872 -0.02362,9.48471 z" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="739.313" height="565.98" viewBox="0 0 195.61 149.749"><style><![CDATA[.B{dominant-baseline:auto}]]></style><defs><linearGradient id="A" x1="106.908" y1="168.443" x2="107.175" y2="98.686" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#b7e4fe"/><stop offset="1" stop-color="#09a3fc"/></linearGradient><linearGradient id="B" x1="143.442" y1="192.301" x2="143.064" y2="141.085" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#0c2a9e"/><stop offset="1" stop-color="#7da6eb"/></linearGradient><linearGradient id="C" x1="78.619" y1="192.301" x2="79.375" y2="134.092" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#0c7afc"/><stop offset="1" stop-color="#85c4fe"/></linearGradient></defs><g transform="translate(-9.315 -73.602)"><path d="M104.743 223.35H9.315v-62.845L40.97 177.86l37.77-30.005-42.736-28.4-26.688 19.43V73.602h90.2L70.573 97.147l37.942 26.182 34.84-26.074-33.99-23.653h95.56v61.384L176.68 117.63l-39.966 33.395 39.794 26.6 28.417-21.163v66.89h-90.684l29.15-21.633-36.272-24.822-33.055 24.816z" fill="#ef790f" fill-opacity=".985"/><path d="M100.127 93.146l-58.05 35.77v26.043l71.55 43.69 57.064-35.205v-27.812z" fill="#fff" class="B"/><path d="M100.15 97.83l64.746 38.984-51.305 32.727-65.668-39.527z" fill="url(#A)" class="B"/><path d="M46.078 133.572l65.545 39.45v19.72l-65.545-40.025z" fill="url(#C)" class="B"/><path d="M166.693 140.414v20.8l-51.07 31.506V173z" fill="url(#B)" class="B"/><path d="M93.036 176.75v-9.594l8.5 5.13-.024 9.485zm-16.38-9.923v-9.594l8.5 5.13-.024 9.485zm-16.38-9.923v-9.594l8.5 5.13-.024 9.485z" fill="#fff"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/secure.svg b/src/main/webapp/img/lib/active_directory/secure.svg index 379d5c151178fe76c6ae3bab845dff4a6afa3890..19e73a01bddbb7dd7d18d3027ee28e26ef5fe3c8 100644 --- a/src/main/webapp/img/lib/active_directory/secure.svg +++ b/src/main/webapp/img/lib/active_directory/secure.svg @@ -1,198 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="113.41212mm" - height="178.35942mm" - viewBox="0 0 113.41212 178.35942" - version="1.1" - id="svg927" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="secure.svg"> - <defs - id="defs921"> - <linearGradient - inkscape:collect="always" - id="linearGradient1022"> - <stop - style="stop-color:#0e12a3;stop-opacity:1" - offset="0" - id="stop1018" /> - <stop - style="stop-color:#94bafc;stop-opacity:1" - offset="1" - id="stop1020" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1006"> - <stop - style="stop-color:#c0e5ff;stop-opacity:1" - offset="0" - id="stop1002" /> - <stop - style="stop-color:#34adff;stop-opacity:1" - offset="1" - id="stop1004" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient998"> - <stop - style="stop-color:#99ccff;stop-opacity:1" - offset="0" - id="stop994" /> - <stop - style="stop-color:#c0d9ff;stop-opacity:1" - offset="1" - id="stop996" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient992"> - <stop - style="stop-color:#bfe5ff;stop-opacity:1" - offset="0" - id="stop988" /> - <stop - style="stop-color:#6cc4ff;stop-opacity:1" - offset="1" - id="stop990" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient976"> - <stop - style="stop-color:#93c8ff;stop-opacity:1" - offset="0" - id="stop972" /> - <stop - style="stop-color:#1373ff;stop-opacity:1" - offset="1" - id="stop974" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient976" - id="linearGradient978" - x1="68.816383" - y1="101.56152" - x2="139.48647" - y2="101.56152" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient992" - id="linearGradient986" - x1="102.43155" - y1="151.47916" - x2="101.6756" - y2="96.861595" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient998" - id="linearGradient1000" - x1="51.378906" - y1="176.13867" - x2="116.5" - y2="176.13867" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1006" - id="linearGradient1008" - x1="128.55664" - y1="234.45892" - x2="128.55664" - y2="155.34714" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1022" - id="linearGradient1016" - x1="149.67093" - y1="232.0535" - x2="149.1364" - y2="145.45818" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.49497475" - inkscape:cx="8.8272274" - inkscape:cy="447.44636" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" /> - <metadata - id="metadata924"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-47.378906,-59.468703)"> - <path - id="path965" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 88,79.070312 c 3.198938,0.0131 8.531943,1.793509 14.47656,4.742188 12.36013,7.538495 20.2892,16.39924 21.93946,27.54297 L 84.119141,91.691406 v -8.162109 l -0.0039,-0.05664 C 84.004624,81.49906 84.420749,80.524764 84.951179,79.978517 85.481602,79.432268 86.394133,79.063735 88,79.070312 Z M 90.337891,59.46875 c -5.811463,0 -12.024808,2.009029 -16.939453,5.580078 -4.914646,3.571049 -8.582032,8.869972 -8.582032,15.261719 v 15.210937 l -17.4375,9.955076 v 94.16016 l 70.615234,38.1914 h 20.34766 l 22.44922,-12.83203 v -96.29101 l -17.30469,-8.41211 v -6.03906 c 0,-12.97813 -5.48097,-25.223231 -16.69336,-35.861332 l -0.0195,-0.01758 -0.0195,-0.01758 C 119.12802,71.488454 106.04606,60.058649 90.412109,59.470703 l -0.03711,-0.002 z" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient978);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 90.302731,63.472656 c 13.692229,0.535219 26.193719,11.030611 33.736329,17.822266 0.002,0.0019 0.004,0.0059 0.006,0.0078 10.57741,10.038676 15.44141,21.086058 15.44141,32.951178 v 20.71484 c 0,1.36993 -0.58883,2.37928 -1.77539,3.24023 -1.18656,0.86096 -3.00238,1.44141 -5.07813,1.44141 -1.2728,0 -3.88086,-1.77967 -3.88086,-4.94922 V 117.1953 l -0.002,0.084 c 0.67342,-15.68616 -9.15733,-27.740443 -24.27734,-36.939458 l -0.0723,-0.04492 -0.0762,-0.03711 c -6.219095,-3.092106 -11.779331,-5.168957 -16.306645,-5.1875 -2.263657,-0.0093 -4.425153,0.563649 -5.9375,2.121094 -1.512346,1.557445 -2.10794,3.848251 -1.958984,6.50586 l -0.002,-0.111328 v 25.589842 c 0,0.65798 -0.442074,1.30306 -1.853516,1.9961 -1.411442,0.69303 -3.57371,1.14843 -5.769531,1.14843 -0.897657,0 -1.778993,-0.51602 -2.511719,-1.38672 -0.732726,-0.87069 -1.153468,-2.0941 -1.167969,-2.55468 V 80.310547 c 0,-4.87134 2.757469,-8.990961 6.933594,-12.025391 4.166306,-3.027295 9.696088,-4.804147 14.552734,-4.8125 z" - id="path967" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient986);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 84.119141,96.140625 40.589839,19.810545 c -0.002,0.39229 0.062,0.76048 0.0449,1.15821 l -0.002,0.043 v 17.54883 c 0,5.21936 3.84218,8.94922 7.88086,8.94922 2.7959,0 5.40555,-0.73584 7.42774,-2.20312 2.02218,-1.46729 3.42578,-3.79793 3.42578,-6.47852 v -10.22656 l 13.30469,6.46679 v 9.2754 l -19.50782,11.05859 h -18.27929 l -67.625004,-36.2793 v -7.46484 l 13.4375,-7.67188 v 8.34571 l 0.002,0.0312 c 0.05601,1.77895 0.835249,3.49646 2.105469,5.00586 1.27022,1.50939 3.19326,2.81054 5.572266,2.81054 2.710698,0 5.360422,-0.48977 7.533203,-1.55664 2.172781,-1.06687 4.089844,-2.99562 4.089844,-5.58789 z" - id="path963" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1000);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 51.378906,119.80469 116.5,154.74023 v 77.73243 L 51.378906,197.25195 Z" - id="path961" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1016);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 156.79102,145.08203 v 77.5918 l -16.98047,9.70703 v -77.67188 z" - id="path959" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1008);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 120.5,155.54297 h 15.31055 v 78.28515 H 120.5 Z" - id="path952" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="428.644" height="674.113" viewBox="0 0 113.412 178.359"><style><![CDATA[.B{dominant-baseline:auto}]]></style><defs><linearGradient id="A" x1="68.816" y1="101.562" x2="139.486" y2="101.562" xlink:href="#F"><stop offset="0" stop-color="#93c8ff"/><stop offset="1" stop-color="#1373ff"/></linearGradient><linearGradient id="B" x1="102.432" y1="151.479" x2="101.676" y2="96.862" xlink:href="#F"><stop offset="0" stop-color="#bfe5ff"/><stop offset="1" stop-color="#6cc4ff"/></linearGradient><linearGradient id="C" x1="51.379" y1="176.139" x2="116.5" y2="176.139" xlink:href="#F"><stop offset="0" stop-color="#9cf"/><stop offset="1" stop-color="#c0d9ff"/></linearGradient><linearGradient id="D" x1="128.557" y1="234.459" x2="128.557" y2="155.347" xlink:href="#F"><stop offset="0" stop-color="#c0e5ff"/><stop offset="1" stop-color="#34adff"/></linearGradient><linearGradient id="E" x1="149.671" y1="232.054" x2="149.136" y2="145.458" xlink:href="#F"><stop offset="0" stop-color="#0e12a3"/><stop offset="1" stop-color="#94bafc"/></linearGradient><linearGradient id="F" gradientUnits="userSpaceOnUse"/></defs><g transform="translate(-47.379 -59.469)" class="B"><path d="M88 79.07c3.2.013 8.532 1.794 14.477 4.742 12.36 7.538 20.29 16.4 21.94 27.543L84.12 91.69l-.004-8.22c-.11-1.974.306-2.948.836-3.494s1.443-.915 3.05-.908zm2.338-19.602c-5.81 0-12.025 2.01-16.94 5.58s-8.582 8.87-8.582 15.262v15.21l-17.437 9.955v94.16l70.615 38.19h20.348l22.45-12.832v-96.29l-17.305-8.412v-6.04c0-12.978-5.48-25.223-16.693-35.86l-.04-.035c-7.626-6.87-20.708-18.3-36.342-18.887h-.037z" fill="#fff"/><path d="M90.303 63.473c13.692.535 26.194 11.03 33.736 17.822 10.583 10.046 15.447 21.094 15.447 32.96v20.715c0 1.37-.59 2.38-1.775 3.24s-3.002 1.44-5.078 1.44c-1.273 0-3.88-1.78-3.88-4.95l-.002-17.422c.673-15.686-9.157-27.74-24.277-36.94l-.072-.045-.076-.037c-6.22-3.092-11.78-5.17-16.307-5.187-2.264-.01-4.425.564-5.937 2.12s-2.108 3.848-1.96 6.506v-.11 25.6c0 .658-.442 1.303-1.854 1.996s-3.574 1.148-5.77 1.148c-.898 0-1.78-.516-2.512-1.387s-1.153-2.094-1.168-2.555V80.31c0-4.87 2.757-8.99 6.934-12.025 4.166-3.027 9.696-4.804 14.553-4.812z" fill="url(#A)"/><path d="M84.12 96.14l40.6 19.81.045 1.158-.002.043v17.55c0 5.22 3.842 8.95 7.88 8.95 2.796 0 5.406-.736 7.428-2.203s3.426-3.798 3.426-6.48v-10.227l13.305 6.467v9.275l-19.508 11.06h-18.28l-67.625-36.28V107.8l13.438-7.672.002 8.377c.056 1.78.835 3.496 2.105 5.006s3.193 2.81 5.572 2.81c2.71 0 5.36-.5 7.533-1.557s4.1-2.996 4.1-5.588z" fill="url(#B)"/><path d="M51.38 119.805l65.12 34.936v77.732l-65.12-35.22z" fill="url(#C)"/><path d="M156.79 145.082v77.592l-16.98 9.707V154.71z" fill="url(#E)"/><path d="M120.5 155.543h15.31v78.285H120.5z" fill="url(#D)"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/security.svg b/src/main/webapp/img/lib/active_directory/security.svg index 4da11ac94f0c822506dd4e8031b24220f53d84de..b6243dbe6a12418ff6d04b1167cb4104ee0d0694 100644 --- a/src/main/webapp/img/lib/active_directory/security.svg +++ b/src/main/webapp/img/lib/active_directory/security.svg @@ -1,328 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="126.81646mm" - height="201.72256mm" - viewBox="0 0 126.81646 201.72256" - version="1.1" - id="svg927" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="security.svg"> - <defs - id="defs921"> - <linearGradient - inkscape:collect="always" - id="linearGradient1022"> - <stop - style="stop-color:#0e12a3;stop-opacity:1" - offset="0" - id="stop1018" /> - <stop - style="stop-color:#94bafc;stop-opacity:1" - offset="1" - id="stop1020" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1006"> - <stop - style="stop-color:#c0e5ff;stop-opacity:1" - offset="0" - id="stop1002" /> - <stop - style="stop-color:#34adff;stop-opacity:1" - offset="1" - id="stop1004" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient998"> - <stop - style="stop-color:#99ccff;stop-opacity:1" - offset="0" - id="stop994" /> - <stop - style="stop-color:#c0d9ff;stop-opacity:1" - offset="1" - id="stop996" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient992"> - <stop - style="stop-color:#bfe5ff;stop-opacity:1" - offset="0" - id="stop988" /> - <stop - style="stop-color:#6cc4ff;stop-opacity:1" - offset="1" - id="stop990" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient976"> - <stop - style="stop-color:#93c8ff;stop-opacity:1" - offset="0" - id="stop972" /> - <stop - style="stop-color:#1373ff;stop-opacity:1" - offset="1" - id="stop974" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient976" - id="linearGradient978" - x1="68.816383" - y1="101.56152" - x2="139.48647" - y2="101.56152" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient992" - id="linearGradient986" - x1="102.43155" - y1="151.47916" - x2="101.6756" - y2="96.861595" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient998" - id="linearGradient1000" - x1="51.378906" - y1="176.13867" - x2="116.5" - y2="176.13867" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1006" - id="linearGradient1008" - x1="128.55664" - y1="234.45892" - x2="128.55664" - y2="155.34714" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1022" - id="linearGradient1016" - x1="149.67093" - y1="232.0535" - x2="149.1364" - y2="145.45818" - gradientUnits="userSpaceOnUse" /> - <linearGradient - gradientTransform="matrix(0.59157423,0,0,0.59157423,18.247146,134.2998)" - inkscape:collect="always" - xlink:href="#linearGradient891" - id="linearGradient893" - x1="30.557383" - y1="148.04533" - x2="203.97859" - y2="148.04533" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient891"> - <stop - style="stop-color:#b2d9ff;stop-opacity:1" - offset="0" - id="stop887" /> - <stop - style="stop-color:#0b6dff;stop-opacity:1" - offset="1" - id="stop889" /> - </linearGradient> - <linearGradient - gradientTransform="matrix(0.59157423,0,0,0.59157423,18.247146,134.2998)" - inkscape:collect="always" - xlink:href="#linearGradient899" - id="linearGradient901" - x1="47.601562" - y1="102.71271" - x2="107.63672" - y2="102.71271" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient899"> - <stop - style="stop-color:#bfe4ff;stop-opacity:1" - offset="0" - id="stop895" /> - <stop - style="stop-color:#a5daff;stop-opacity:1" - offset="1" - id="stop897" /> - </linearGradient> - <linearGradient - gradientTransform="matrix(0.59157423,0,0,0.59157423,18.247146,134.2998)" - inkscape:collect="always" - xlink:href="#linearGradient907" - id="linearGradient909" - x1="102.43164" - y1="148.91406" - x2="196.9082" - y2="148.91406" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient907"> - <stop - style="stop-color:#a2d9ff;stop-opacity:1" - offset="0" - id="stop903" /> - <stop - style="stop-color:#aedeff;stop-opacity:1" - offset="1" - id="stop905" /> - </linearGradient> - <linearGradient - gradientTransform="matrix(0.59157423,0,0,0.59157423,18.247146,134.2998)" - inkscape:collect="always" - xlink:href="#linearGradient915" - id="linearGradient919" - x1="193.4668" - y1="185.70605" - x2="214.35547" - y2="185.70605" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient915"> - <stop - style="stop-color:#8fb4f8;stop-opacity:1" - offset="0" - id="stop911" /> - <stop - style="stop-color:#2129af;stop-opacity:1" - offset="1" - id="stop913" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.98994949" - inkscape:cx="323.64838" - inkscape:cy="354.35482" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" /> - <metadata - id="metadata924"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-33.97456,-59.468703)"> - <path - id="path965" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 88,79.070312 c 3.198938,0.0131 8.531943,1.793509 14.47656,4.742188 12.36013,7.538495 20.2892,16.39924 21.93946,27.54297 L 84.119141,91.691406 v -8.162109 l -0.0039,-0.05664 C 84.004624,81.49906 84.420749,80.524764 84.951179,79.978517 85.481602,79.432268 86.394133,79.063735 88,79.070312 Z M 90.337891,59.46875 c -5.811463,0 -12.024808,2.009029 -16.939453,5.580078 -4.914646,3.571049 -8.582032,8.869972 -8.582032,15.261719 v 15.210937 l -17.4375,9.955076 v 94.16016 l 70.615234,38.1914 h 20.34766 l 22.44922,-12.83203 v -96.29101 l -17.30469,-8.41211 v -6.03906 c 0,-12.97813 -5.48097,-25.223231 -16.69336,-35.861332 l -0.0195,-0.01758 -0.0195,-0.01758 C 119.12802,71.488454 106.04606,60.058649 90.412109,59.470703 l -0.03711,-0.002 z" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient978);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 90.302731,63.472656 c 13.692229,0.535219 26.193719,11.030611 33.736329,17.822266 0.002,0.0019 0.004,0.0059 0.006,0.0078 10.57741,10.038676 15.44141,21.086058 15.44141,32.951178 v 20.71484 c 0,1.36993 -0.58883,2.37928 -1.77539,3.24023 -1.18656,0.86096 -3.00238,1.44141 -5.07813,1.44141 -1.2728,0 -3.88086,-1.77967 -3.88086,-4.94922 V 117.1953 l -0.002,0.084 c 0.67342,-15.68616 -9.15733,-27.740443 -24.27734,-36.939458 l -0.0723,-0.04492 -0.0762,-0.03711 c -6.219095,-3.092106 -11.779331,-5.168957 -16.306645,-5.1875 -2.263657,-0.0093 -4.425153,0.563649 -5.9375,2.121094 -1.512346,1.557445 -2.10794,3.848251 -1.958984,6.50586 l -0.002,-0.111328 v 25.589842 c 0,0.65798 -0.442074,1.30306 -1.853516,1.9961 -1.411442,0.69303 -3.57371,1.14843 -5.769531,1.14843 -0.897657,0 -1.778993,-0.51602 -2.511719,-1.38672 -0.732726,-0.87069 -1.153468,-2.0941 -1.167969,-2.55468 V 80.310547 c 0,-4.87134 2.757469,-8.990961 6.933594,-12.025391 4.166306,-3.027295 9.696088,-4.804147 14.552734,-4.8125 z" - id="path967" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient986);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 84.119141,96.140625 40.589839,19.810545 c -0.002,0.39229 0.062,0.76048 0.0449,1.15821 l -0.002,0.043 v 17.54883 c 0,5.21936 3.84218,8.94922 7.88086,8.94922 2.7959,0 5.40555,-0.73584 7.42774,-2.20312 2.02218,-1.46729 3.42578,-3.79793 3.42578,-6.47852 v -10.22656 l 13.30469,6.46679 v 9.2754 l -19.50782,11.05859 h -18.27929 l -67.625004,-36.2793 v -7.46484 l 13.4375,-7.67188 v 8.34571 l 0.002,0.0312 c 0.05601,1.77895 0.835249,3.49646 2.105469,5.00586 1.27022,1.50939 3.19326,2.81054 5.572266,2.81054 2.710698,0 5.360422,-0.48977 7.533203,-1.55664 2.172781,-1.06687 4.089844,-2.99562 4.089844,-5.58789 z" - id="path963" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1000);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 51.378906,119.80469 116.5,154.74023 v 77.73243 L 51.378906,197.25195 Z" - id="path961" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1016);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 156.79102,145.08203 v 77.5918 l -16.98047,9.70703 v -77.67188 z" - id="path959" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1008);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 120.5,155.54297 h 15.31055 v 78.28515 H 120.5 Z" - id="path952" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.36629701;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 52.843846,178.34666 c -0.95599,10e-4 -1.94362,0.063 -2.96712,0.19411 l -0.24841,0.0324 -9.3924,5.69968 a 1.1832668,1.1832668 0 0 0 -0.41133,0.33738 c -4.89153,4.36436 -6.54585,10.05037 -5.59222,16.30411 2.06151,15.44539 11.82468,26.75911 25.91835,32.85316 l 0.008,0.004 0.008,0.004 c 8.19352,3.40198 14.51925,0.54877 17.97254,-3.83483 l 16.50284,8.30746 7.491734,9.37506 7.80255,-3.59219 5.11965,9.81181 8.04056,-1.83943 6.13874,9.18789 11.16481,-4.73606 a 1.1832668,1.1832668 0 0 0 0.54189,-0.30503 l 6.47843,-4.76495 v -3.43274 l -9.40857,-14.8298 a 1.1832668,1.1832668 0 0 0 -0.20913,-0.32814 l -0.0705,-0.11207 -0.12478,-0.0624 a 1.1832668,1.1832668 0 0 0 -0.32121,-0.16291 l -52.980594,-26.725 c -2.97202,-7.52282 -5.8688,-12.80928 -13.93782,-20.47055 l -0.067,-0.0647 -0.0774,-0.0531 c -5.51741,-3.79341 -10.68788,-6.80477 -17.37981,-6.79618 z" - id="path883" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient893);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.36629701;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 48.105476,185.52065 c 2.00897,-0.051 3.72109,0.15589 5.29875,0.58465 3.15531,0.8575 5.87277,2.64276 9.34271,5.2999 l 0.006,0.005 0.006,0.005 c 8.31201,6.20508 11.1125,13.24699 12.56055,20.04536 a 1.1832668,1.1832668 0 0 0 0.0716,0.30272 l 0.0809,0.38129 0.34778,0.171 a 1.1832668,1.1832668 0 0 0 0.32352,0.15944 l 54.169504,26.6532 6.50269,10.44614 -56.208794,-28.69713 a 1.1832668,1.1832668 0 1 0 -1.0757,2.10749 l 59.367714,30.31009 0.0173,1.21896 -8.80082,3.73316 -5.95618,-8.91521 -7.84992,1.79668 -5.31608,-10.18849 -8.16649,3.75974 -6.658684,-8.33288 -18.75013,-9.43862 -0.58233,0.86195 c -2.76986,4.09822 -7.89038,7.05984 -15.74489,3.80595 l -0.002,-10e-4 c -13.49109,-5.83429 -22.56476,-16.36773 -24.51337,-31.00681 l -10e-4,-0.0115 -10e-4,-0.0115 c -0.86437,-5.65537 0.48321,-10.27323 4.79846,-14.14117 2.59919,-0.55103 4.81558,-0.85369 6.73493,-0.90238 z" - id="path879" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.36629701;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 67.875846,206.26272 a 1.1832668,1.1832668 0 0 0 -1.16582,1.20048 v 15.73218 a 1.1832668,1.1832668 0 1 0 2.36629,0 V 207.4632 a 1.1832668,1.1832668 0 0 0 -1.20047,-1.20048 z" - id="path858" - inkscape:connector-curvature="0" /> - <path - style="opacity:1;fill:#ffffff;stroke:none;stroke-width:2.36629701;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 56.984046,211.96929 c -1.24994,2.30961 -3.2614,3.34486 -6.0477,2.49022 -3.02523,-1.25339 -5.738,-3.01623 -7.51022,-5.73148 -1.28163,-2.11638 -2.30672,-4.7871 -2.01589,-7.27305 0.20599,-2.20958 2.02376,-4.44097 5.17809,-4.86187 2.62714,-0.27647 5.2005,1.71696 7.11494,3.91322 3.47252,3.65638 4.76945,8.8767 3.28078,11.46296 z" - id="path860" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccc" /> - <path - style="opacity:1;fill:#0066ff;fill-opacity:1;stroke:none;stroke-width:2.36629701;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 47.378876,199.63672 -0.0395,2.21354 c 1.60896,3.65695 4.24859,4.94472 7.03589,6.60108 0.32882,2.29953 -0.26324,3.761 -2.05543,3.35984 -2.81962,-0.94539 -5.29427,-2.72624 -6.75919,-5.09905 -2.18078,-3.63597 -1.71155,-7.70634 1.81826,-7.07541 z" - id="path862" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient901);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.36629701;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 52.862336,180.70602 c 6.00363,-0.0274 10.53784,2.62586 15.93668,6.33285 7.66741,7.29335 10.2899,12.02426 13.12325,19.12911 l -4.71411,3.25019 c -1.64098,-6.6715 -4.85781,-13.79645 -13.03312,-19.89977 h -0.001 c -3.52999,-2.70254 -6.52759,-4.71232 -10.14795,-5.69621 -2.23888,-0.60846 -4.73181,-0.75604 -7.61883,-0.52572 l 3.99197,-2.42291 c 0.84751,-0.10019 1.67232,-0.16392 2.46336,-0.16754 z" - id="path881" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient909);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.36629701;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 83.482076,207.96581 51.250904,25.85248 -3.74818,3.00294 -52.141724,-25.65491 z" - id="path877" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient919);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.36629701;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 136.61746,235.33999 8.43687,13.29886 v 1.54826 l -3.79439,2.79033 -0.004,-0.2461 a 1.1832668,1.1832668 0 0 0 -0.005,-0.3524 l -0.002,-0.1606 -0.0924,-0.14906 -0.002,-0.005 a 1.1832668,1.1832668 0 0 0 -0.13981,-0.22415 l -8.31755,-13.35883 z" - id="path864" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="479.305" height="762.418" viewBox="0 0 126.816 201.723"><style><![CDATA[.B{dominant-baseline:auto}]]></style><defs><linearGradient id="A" x1="68.816" y1="101.562" x2="139.486" y2="101.562" xlink:href="#J"><stop offset="0" stop-color="#93c8ff"/><stop offset="1" stop-color="#1373ff"/></linearGradient><linearGradient id="B" x1="102.432" y1="151.479" x2="101.676" y2="96.862" xlink:href="#J"><stop offset="0" stop-color="#bfe5ff"/><stop offset="1" stop-color="#6cc4ff"/></linearGradient><linearGradient id="C" x1="51.379" y1="176.139" x2="116.5" y2="176.139" xlink:href="#J"><stop offset="0" stop-color="#9cf"/><stop offset="1" stop-color="#c0d9ff"/></linearGradient><linearGradient id="D" x1="128.557" y1="234.459" x2="128.557" y2="155.347" xlink:href="#J"><stop offset="0" stop-color="#c0e5ff"/><stop offset="1" stop-color="#34adff"/></linearGradient><linearGradient id="E" x1="149.671" y1="232.054" x2="149.136" y2="145.458" xlink:href="#J"><stop offset="0" stop-color="#0e12a3"/><stop offset="1" stop-color="#94bafc"/></linearGradient><linearGradient id="F" x1="36.324" y1="221.88" x2="138.916" y2="221.88" xlink:href="#J"><stop offset="0" stop-color="#b2d9ff"/><stop offset="1" stop-color="#0b6dff"/></linearGradient><linearGradient id="G" x1="46.407" y1="195.062" x2="81.922" y2="195.062" xlink:href="#J"><stop offset="0" stop-color="#bfe4ff"/><stop offset="1" stop-color="#a5daff"/></linearGradient><linearGradient id="H" x1="78.843" y1="222.394" x2="134.733" y2="222.394" xlink:href="#J"><stop offset="0" stop-color="#a2d9ff"/><stop offset="1" stop-color="#aedeff"/></linearGradient><linearGradient id="I" x1="132.697" y1="244.159" x2="145.054" y2="244.159" xlink:href="#J"><stop offset="0" stop-color="#8fb4f8"/><stop offset="1" stop-color="#2129af"/></linearGradient><linearGradient id="J" gradientUnits="userSpaceOnUse"/></defs><g transform="translate(-33.975 -59.469)"><path d="M88 79.07c3.2.013 8.532 1.794 14.477 4.742 12.36 7.538 20.29 16.4 21.94 27.543L84.12 91.69l-.004-8.22c-.11-1.974.306-2.948.836-3.494s1.443-.915 3.05-.908zm2.338-19.602c-5.81 0-12.025 2.01-16.94 5.58s-8.582 8.87-8.582 15.262v15.21l-17.437 9.955v94.16l70.615 38.19h20.348l22.45-12.832v-96.29l-17.305-8.412v-6.04c0-12.978-5.48-25.223-16.693-35.86l-.04-.035c-7.626-6.87-20.708-18.3-36.342-18.887h-.037z" fill="#fff" class="B"/><path d="M90.303 63.473c13.692.535 26.194 11.03 33.736 17.822 10.583 10.046 15.447 21.094 15.447 32.96v20.715c0 1.37-.59 2.38-1.775 3.24s-3.002 1.44-5.078 1.44c-1.273 0-3.88-1.78-3.88-4.95l-.002-17.422c.673-15.686-9.157-27.74-24.277-36.94l-.072-.045-.076-.037c-6.22-3.092-11.78-5.17-16.307-5.187-2.264-.01-4.425.564-5.937 2.12s-2.108 3.848-1.96 6.506v-.11 25.6c0 .658-.442 1.303-1.854 1.996s-3.574 1.148-5.77 1.148c-.898 0-1.78-.516-2.512-1.387s-1.153-2.094-1.168-2.555V80.31c0-4.87 2.757-8.99 6.934-12.025 4.166-3.027 9.696-4.804 14.553-4.812z" fill="url(#A)" class="B"/><path d="M84.12 96.14l40.6 19.81.045 1.158-.002.043v17.55c0 5.22 3.842 8.95 7.88 8.95 2.796 0 5.406-.736 7.428-2.203s3.426-3.798 3.426-6.48v-10.227l13.305 6.467v9.275l-19.508 11.06h-18.28l-67.625-36.28V107.8l13.438-7.672.002 8.377c.056 1.78.835 3.496 2.105 5.006s3.193 2.81 5.572 2.81c2.71 0 5.36-.5 7.533-1.557s4.1-2.996 4.1-5.588z" fill="url(#B)" class="B"/><path d="M51.38 119.805l65.12 34.936v77.732l-65.12-35.22z" fill="url(#C)" class="B"/><path d="M156.79 145.082v77.592l-16.98 9.707V154.71z" fill="url(#E)" class="B"/><path d="M120.5 155.543h15.31v78.285H120.5z" fill="url(#D)" class="B"/><path d="M52.844 178.347c-.956.001-1.944.063-2.967.194l-.248.032-9.392 5.7a1.183 1.183 0 0 0-.411.337c-4.892 4.364-6.546 10.05-5.592 16.304 2.062 15.445 11.825 26.76 25.918 32.853l.016.008c8.194 3.402 14.52.55 17.973-3.835l16.503 8.307 7.492 9.375 7.803-3.592 5.12 9.812 8.04-1.84 6.14 9.188 11.165-4.736a1.183 1.183 0 0 0 .542-.305l6.478-4.765v-3.433l-9.41-14.83a1.183 1.183 0 0 0-.209-.328l-.07-.112-.125-.062a1.183 1.183 0 0 0-.321-.163l-52.98-26.725c-2.972-7.523-5.87-12.81-13.938-20.47l-.067-.065-.077-.053c-5.517-3.793-10.688-6.805-17.38-6.796z" fill="#fff" class="B"/><path d="M48.105 185.52c2.01-.05 3.72.156 5.3.585 3.155.857 5.873 2.643 9.343 5.3l.012.01c8.312 6.205 11.113 13.247 12.56 20.045a1.183 1.183 0 0 0 .072.303l.08.38.348.17a1.183 1.183 0 0 0 .324.159l54.17 26.653 6.503 10.446-56.21-28.697a1.183 1.183 0 1 0-1.076 2.107l59.368 30.3.017 1.22-8.8 3.733-5.956-8.915-7.85 1.797-5.316-10.188-8.166 3.76-6.66-8.333-18.75-9.44-.582.862c-2.77 4.098-7.9 7.06-15.745 3.806l-.002-.001c-13.49-5.834-22.565-16.368-24.513-31.007l-.002-.023c-.864-5.655.483-10.273 4.798-14.14 2.6-.55 4.816-.854 6.735-.902z" fill="url(#F)" class="B"/><g fill="#fff"><path d="M67.876 206.263a1.183 1.183 0 0 0-1.166 1.2v15.732a1.183 1.183 0 1 0 2.366 0v-15.732a1.183 1.183 0 0 0-1.2-1.2z" class="B"/><path d="M56.984 211.97c-1.25 2.3-3.26 3.345-6.048 2.5-3.025-1.253-5.738-3.016-7.5-5.73-1.282-2.116-2.307-4.787-2.016-7.273.206-2.2 2.024-4.44 5.178-4.862 2.627-.276 5.2 1.717 7.115 3.913 3.473 3.656 4.77 8.877 3.28 11.463z"/></g><path d="M47.38 199.637l-.04 2.214c1.61 3.657 4.25 4.945 7.036 6.6.33 2.3-.263 3.76-2.055 3.36-2.82-.945-5.294-2.726-6.76-5.1-2.18-3.636-1.712-7.706 1.818-7.075z" fill="#06f"/><path d="M52.862 180.706c6.004-.027 10.538 2.626 15.937 6.333 7.667 7.293 10.3 12.024 13.123 19.13l-4.714 3.25c-1.64-6.672-4.858-13.796-13.033-19.9h-.001c-3.53-2.703-6.528-4.712-10.148-5.696-2.24-.608-4.732-.756-7.62-.526l3.992-2.423c.848-.1 1.672-.164 2.463-.168z" fill="url(#G)" class="B"/><path d="M83.482 207.966l51.25 25.852-3.748 3.003-52.142-25.655z" fill="url(#H)" class="B"/><path d="M136.617 235.34l8.437 13.3v1.548l-3.794 2.8-.004-.246a1.183 1.183 0 0 0-.005-.352l-.002-.16-.092-.15-.002-.005a1.183 1.183 0 0 0-.14-.224l-8.318-13.36z" fill="url(#I)" class="B"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/server_farm.svg b/src/main/webapp/img/lib/active_directory/server_farm.svg index 616b27ef9f95b38105b50abab2576b25daa6c1b2..aaee9dcd6f4fe3b19525928e3f0b2218dcaaebc6 100644 --- a/src/main/webapp/img/lib/active_directory/server_farm.svg +++ b/src/main/webapp/img/lib/active_directory/server_farm.svg @@ -1,483 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="207.08594mm" - height="207.08789mm" - viewBox="0 0 207.08594 207.08789" - version="1.1" - id="svg1529" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="server_farm.svg"> - <defs - id="defs1523"> - <linearGradient - inkscape:collect="always" - id="linearGradient2929"> - <stop - style="stop-color:#fec225;stop-opacity:1" - offset="0" - id="stop2925" /> - <stop - style="stop-color:#e3611e;stop-opacity:1" - offset="1" - id="stop2927" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient914"> - <stop - style="stop-color:#05239a;stop-opacity:1" - offset="0" - id="stop910" /> - <stop - style="stop-color:#91bcf8;stop-opacity:1" - offset="1" - id="stop912" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient904"> - <stop - style="stop-color:#0677fc;stop-opacity:1;" - offset="0" - id="stop900" /> - <stop - style="stop-color:#8fcafe;stop-opacity:1" - offset="1" - id="stop902" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient922"> - <stop - style="stop-color:#a8defe;stop-opacity:1" - offset="0" - id="stop918" /> - <stop - style="stop-color:#12a7fc;stop-opacity:1" - offset="1" - id="stop920" /> - </linearGradient> - <linearGradient - gradientTransform="matrix(0.86609011,0,0,0.86609011,-44.797462,-22.998541)" - inkscape:collect="always" - xlink:href="#linearGradient914" - id="linearGradient916-9" - x1="111.26579" - y1="206.30371" - x2="111.47961" - y2="118.37204" - gradientUnits="userSpaceOnUse" /> - <linearGradient - gradientTransform="matrix(0.86609011,0,0,0.86609011,-44.797462,-22.998541)" - inkscape:collect="always" - xlink:href="#linearGradient904" - id="linearGradient908-2" - gradientUnits="userSpaceOnUse" - x1="83.838669" - y1="200.39299" - x2="83.469749" - y2="127.29478" /> - <linearGradient - gradientTransform="matrix(0.86609011,0,0,0.86609011,-44.797462,-22.998541)" - inkscape:collect="always" - xlink:href="#linearGradient922" - id="linearGradient924-9" - x1="103.08207" - y1="136.8896" - x2="103.19426" - y2="107.62359" - gradientUnits="userSpaceOnUse" /> - <linearGradient - gradientTransform="translate(0.14173179,0.19714039)" - inkscape:collect="always" - xlink:href="#linearGradient2929" - id="linearGradient2923-1" - x1="107.34524" - y1="239.16963" - x2="108.66204" - y2="57.17952" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient914" - id="linearGradient3041" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.3125998,0,0,1.3125998,-5.3356873,-23.850212)" - x1="111.26579" - y1="206.30371" - x2="111.47961" - y2="118.37204" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient904" - id="linearGradient3043" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.3125998,0,0,1.3125998,-5.3356873,-23.850212)" - x1="83.838669" - y1="200.39299" - x2="83.469749" - y2="127.29478" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient922" - id="linearGradient3045" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.3125998,0,0,1.3125998,-5.3356873,-23.850212)" - x1="103.08207" - y1="136.8896" - x2="103.19426" - y2="107.62359" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient914" - id="linearGradient3077" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.3125998,0,0,1.3125998,-5.3356873,-23.850212)" - x1="111.26579" - y1="206.30371" - x2="111.47961" - y2="118.37204" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient904" - id="linearGradient3079" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.3125998,0,0,1.3125998,-5.3356873,-23.850212)" - x1="83.838669" - y1="200.39299" - x2="83.469749" - y2="127.29478" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient922" - id="linearGradient3081" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.3125998,0,0,1.3125998,-5.3356873,-23.850212)" - x1="103.08207" - y1="136.8896" - x2="103.19426" - y2="107.62359" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient914" - id="linearGradient3113" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.3125998,0,0,1.3125998,-5.3356873,-23.850212)" - x1="111.26579" - y1="206.30371" - x2="111.47961" - y2="118.37204" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient904" - id="linearGradient3115" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.3125998,0,0,1.3125998,-5.3356873,-23.850212)" - x1="83.838669" - y1="200.39299" - x2="83.469749" - y2="127.29478" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient922" - id="linearGradient3117" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.3125998,0,0,1.3125998,-5.3356873,-23.850212)" - x1="103.08207" - y1="136.8896" - x2="103.19426" - y2="107.62359" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient914" - id="linearGradient3149" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.8660901,0,0,0.8660901,89.479256,44.544991)" - x1="111.26579" - y1="206.30371" - x2="111.47961" - y2="118.37204" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient904" - id="linearGradient3151" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.8660901,0,0,0.8660901,89.479256,44.544991)" - x1="83.838669" - y1="200.39299" - x2="83.469749" - y2="127.29478" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient922" - id="linearGradient3153" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.8660901,0,0,0.8660901,89.479256,44.544991)" - x1="103.08207" - y1="136.8896" - x2="103.19426" - y2="107.62359" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.9899495" - inkscape:cx="430.71798" - inkscape:cy="369.60694" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata1526"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-5.5507812,-44.779297)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 109.09375,44.779297 c -57.161694,0 -103.5429688,46.381274 -103.5429688,103.542973 0,57.16169 46.3812748,103.54492 103.5429688,103.54492 57.16169,0 103.54297,-46.38323 103.54297,-103.54492 0,-57.161699 -46.38128,-103.542973 -103.54297,-103.542973 z" - id="path2915" - inkscape:connector-curvature="0" /> - <circle - style="opacity:1;vector-effect:none;fill:url(#linearGradient2923-1);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="path1542-1-4" - cx="109.23512" - cy="148.5202" - r="92.471878" /> - <path - style="opacity:1;fill:url(#linearGradient916-9);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 67.378801,139.36561 35.36518,156.40003 V 95.838181 l 32.013621,-17.26832 z" - id="path833-2" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="opacity:1;fill:url(#linearGradient908-2);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 35.36518,156.40003 -15.999795,-8.83876 v -35.39164 l 10.159671,-19.527839 5.840124,3.19639" - id="path835-2" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="opacity:1;fill:url(#linearGradient924-9);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 67.378801,78.569861 35.36518,95.838181 30.648349,93.256587 46.351207,72.680596 51.279011,70.050934 Z" - id="path837-1" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.29913521;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 23.931528,107.63282 v 1.14521 l 5.743275,3.15108 v -1.1452 z" - id="path839-1" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.29913521;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 23.931528,113.41356 v 1.14521 l 5.743275,3.15109 v -1.14521 z" - id="path839-0-3" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.59827042;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 51.281244,71.521484 13.339844,7.058594 -29.251953,15.779297 -5.137217,-2.811672 -0.954023,2.43937 4.788505,2.620349 v 57.591798 l -13.402344,-7.4043 v -35.01271 l -2.59765,4.14268 v 32.40323 l 17.28711,9.54883 0.621093,-0.33007 32.703125,-17.4004 V 77.787109 l -17.40039,-9.207031 z m 14.798828,9.22461 v 57.839846 l -29.41601,15.65234 V 96.615234 Z" - id="path830-7" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccccccccccccccccccc" /> - <g - id="g2971-7" - transform="matrix(0.659828,0,0,0.659828,-6.7858226,8.6882786)" - style="opacity:1"> - <path - sodipodi:nodetypes="ccccc" - inkscape:connector-curvature="0" - id="path833-2-5" - d="m 164.67265,222.2202 -48.51813,25.81646 v -91.7843 l 48.51813,-26.17094 z" - style="opacity:1;fill:url(#linearGradient3041);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - sodipodi:nodetypes="cccc" - inkscape:connector-curvature="0" - id="path835-2-7" - d="M 116.15452,248.03666 91.906088,234.6411 v -91.66028 l 24.248432,13.27154" - style="opacity:1;fill:url(#linearGradient3043);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - sodipodi:nodetypes="ccccc" - inkscape:connector-curvature="0" - id="path837-1-7" - d="M 164.67265,130.08142 116.15452,156.25236 91.906088,142.98082 140.27267,117.17059 Z" - style="opacity:1;fill:url(#linearGradient3045);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - sodipodi:nodetypes="ccccc" - inkscape:connector-curvature="0" - id="path839-1-0" - d="m 98.82629,174.12769 v 1.73561 l 8.7042,4.77561 v -1.7356 z" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.96889973;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> - <path - sodipodi:nodetypes="ccccc" - inkscape:connector-curvature="0" - id="path839-0-3-7" - d="m 98.82629,182.88867 v 1.73561 l 8.7042,4.77562 v -1.73562 z" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.96889973;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> - <path - sodipodi:nodetypes="ccccccccccccc" - inkscape:connector-curvature="0" - d="m 116.15452,156.25236 48.51813,-26.17094 z m 0,91.7843 v -91.7843 L 91.906088,142.98082 M 116.15452,248.03666 91.906088,234.6411 v -91.66028 l 48.366582,-25.81023 24.39998,12.91083 v 92.13878 z" - style="opacity:1;fill:none;stroke:#ffffff;stroke-width:3.93779945;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path830-7-4" /> - </g> - <g - id="g2971-6" - transform="matrix(0.659828,0,0,0.659828,24.586201,28.721017)" - style="opacity:1"> - <path - sodipodi:nodetypes="ccccc" - inkscape:connector-curvature="0" - id="path833-2-4" - d="m 164.67265,222.2202 -48.51813,25.81646 v -91.7843 l 48.51813,-26.17094 z" - style="opacity:1;fill:url(#linearGradient3077);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - sodipodi:nodetypes="cccc" - inkscape:connector-curvature="0" - id="path835-2-5" - d="M 116.15452,248.03666 91.906088,234.6411 v -91.66028 l 24.248432,13.27154" - style="opacity:1;fill:url(#linearGradient3079);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - sodipodi:nodetypes="ccccc" - inkscape:connector-curvature="0" - id="path837-1-3" - d="M 164.67265,130.08142 116.15452,156.25236 91.906088,142.98082 140.27267,117.17059 Z" - style="opacity:1;fill:url(#linearGradient3081);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - sodipodi:nodetypes="ccccc" - inkscape:connector-curvature="0" - id="path839-1-5" - d="m 98.82629,174.12769 v 1.73561 l 8.7042,4.77561 v -1.7356 z" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.96889973;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> - <path - sodipodi:nodetypes="ccccc" - inkscape:connector-curvature="0" - id="path839-0-3-9" - d="m 98.82629,182.88867 v 1.73561 l 8.7042,4.77562 v -1.73562 z" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.96889973;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> - <path - sodipodi:nodetypes="ccccccccccccc" - inkscape:connector-curvature="0" - d="m 116.15452,156.25236 48.51813,-26.17094 z m 0,91.7843 v -91.7843 L 91.906088,142.98082 M 116.15452,248.03666 91.906088,234.6411 v -91.66028 l 48.366582,-25.81023 24.39998,12.91083 v 92.13878 z" - style="opacity:1;fill:none;stroke:#ffffff;stroke-width:3.93779945;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path830-7-6" /> - </g> - <g - id="g2971-77" - transform="matrix(0.659828,0,0,0.659828,55.958226,45.729945)" - style="opacity:1"> - <path - sodipodi:nodetypes="ccccc" - inkscape:connector-curvature="0" - id="path833-2-1" - d="m 164.67265,222.2202 -48.51813,25.81646 v -91.7843 l 48.51813,-26.17094 z" - style="opacity:1;fill:url(#linearGradient3113);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - sodipodi:nodetypes="cccc" - inkscape:connector-curvature="0" - id="path835-2-0" - d="M 116.15452,248.03666 91.906088,234.6411 v -91.66028 l 24.248432,13.27154" - style="opacity:1;fill:url(#linearGradient3115);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - sodipodi:nodetypes="ccccc" - inkscape:connector-curvature="0" - id="path837-1-79" - d="M 164.67265,130.08142 116.15452,156.25236 91.906088,142.98082 140.27267,117.17059 Z" - style="opacity:1;fill:url(#linearGradient3117);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - sodipodi:nodetypes="ccccc" - inkscape:connector-curvature="0" - id="path839-1-3" - d="m 98.82629,174.12769 v 1.73561 l 8.7042,4.77561 v -1.7356 z" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.96889973;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> - <path - sodipodi:nodetypes="ccccc" - inkscape:connector-curvature="0" - id="path839-0-3-1" - d="m 98.82629,182.88867 v 1.73561 l 8.7042,4.77562 v -1.73562 z" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.96889973;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> - <path - sodipodi:nodetypes="ccccccccccccc" - inkscape:connector-curvature="0" - d="m 116.15452,156.25236 48.51813,-26.17094 z m 0,91.7843 v -91.7843 L 91.906088,142.98082 M 116.15452,248.03666 91.906088,234.6411 v -91.66028 l 48.366582,-25.81023 24.39998,12.91083 v 92.13878 z" - style="opacity:1;fill:none;stroke:#ffffff;stroke-width:3.93779945;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path830-7-0" /> - </g> - <path - style="opacity:1;fill:url(#linearGradient3149);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 169.6419,223.94356 v -60.56185 l 32.01362,-17.26832 v 27.27445 c -4.94573,16.43711 -11.36626,33.37802 -32.01362,50.55572 z" - id="path833-2-15" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="opacity:1;fill:url(#linearGradient3151);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 169.6419,223.94356 -15.9998,-8.83876 v -60.48002 l 15.9998,8.75693" - id="path835-2-8" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccc" /> - <path - style="opacity:1;fill:url(#linearGradient3153);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 201.65552,146.11339 -32.01362,17.26832 -15.9998,-8.75693 31.91363,-17.03031 z" - id="path837-1-9" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.29913521;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 158.20825,175.17635 v 1.14521 l 5.74327,3.15108 v -1.1452 z" - id="path839-1-6" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.29913521;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 158.20825,180.95709 v 1.14521 l 5.74327,3.15109 v -1.14521 z" - id="path839-0-3-17" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.59827042;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 202.95508,170.5815 v -25.25142 l -17.40235,-9.20703 -33.20898,17.72265 v 62.02539 l 17.28711,9.55079 0.62109,-0.33204 0.6896,-3.30859 v -57.625 l 29.41406,-15.86719 v 24.16333 z m -17.39635,-31.51509 13.33985,7.05859 -29.25196,15.77734 -13.27148,-7.26367 z m -30.61718,17.75 13.40039,7.33593 v 57.58985 l -13.40039,-7.4043 z" - id="path830-7-67" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccccccccccccccccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0073fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:15.11811066;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 412.32227,184.36328 c -207.87377,0 -376.224614,168.35083 -376.224614,376.22461 0,207.87375 168.350844,376.23242 376.224614,376.23242 207.87375,0 376.22656,-168.35867 376.22656,-376.23242 0,-207.87378 -168.35281,-376.22461 -376.22656,-376.22461 z m 0,26.72852 a 349.49998,349.49998 0 0 1 349.5,349.5 349.49998,349.49998 0 0 1 -349.5,349.5 349.49998,349.49998 0 0 1 -349.500004,-349.5 349.49998,349.49998 0 0 1 349.500004,-349.5 z" - id="path1542" - transform="scale(0.26458333)" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="782.687" height="782.695" viewBox="0 0 207.086 207.088"><style><![CDATA[.B{dominant-baseline:auto}.C{fill:#fff}.D{stroke-width:3.938}]]></style><defs><linearGradient id="A" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#05239a"/><stop offset="1" stop-color="#91bcf8"/></linearGradient><linearGradient id="B" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#0677fc"/><stop offset="1" stop-color="#8fcafe"/></linearGradient><linearGradient id="C" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#a8defe"/><stop offset="1" stop-color="#12a7fc"/></linearGradient><linearGradient xlink:href="#A" id="D" x1="51.569" y1="155.679" x2="51.754" y2="79.522"/><linearGradient xlink:href="#B" id="E" x1="27.814" y1="150.56" x2="27.495" y2="87.25"/><linearGradient xlink:href="#C" id="F" x1="44.481" y1="95.56" x2="44.578" y2="70.213"/><linearGradient id="G" x1="107.487" y1="239.367" x2="108.804" y2="57.377" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fec225"/><stop offset="1" stop-color="#e3611e"/></linearGradient><linearGradient xlink:href="#A" id="H" x1="140.712" y1="246.944" x2="140.992" y2="131.525"/><linearGradient xlink:href="#B" id="I" x1="104.711" y1="239.186" x2="104.227" y2="143.237"/><linearGradient xlink:href="#C" id="J" x1="129.97" y1="155.831" x2="130.117" y2="117.416"/><linearGradient xlink:href="#A" id="K" x1="185.845" y1="223.223" x2="186.031" y2="147.066"/><linearGradient xlink:href="#B" id="L" x1="162.091" y1="218.103" x2="161.772" y2="154.794"/><linearGradient xlink:href="#C" id="M" x1="178.758" y1="163.104" x2="178.855" y2="137.757"/><path id="N" d="M23.932 107.633v1.145l5.743 3.15v-1.145z"/><path id="O" d="M164.673 222.22l-48.518 25.816v-91.784l48.518-26.17z"/><path id="P" d="M116.155 248.037L91.906 234.64v-91.66l24.248 13.272"/><path id="Q" d="M164.673 130.08l-48.518 26.17-24.248-13.272 48.367-25.8z"/><path id="R" d="M98.826 174.128v1.736l8.704 4.776v-1.736z"/><path id="S" d="M116.155 156.252l48.518-26.17zm0 91.784v-91.784L91.906 142.98m24.248 105.056L91.906 234.64v-91.66l48.367-25.8 24.4 12.91v92.14z"/></defs><g transform="translate(-5.551 -44.779)"><path d="M109.094 44.78C51.932 44.78 5.55 91.16 5.55 148.322s46.38 103.545 103.543 103.545 103.543-46.383 103.543-103.545S166.255 44.78 109.094 44.78z" paint-order="normal" class="B C"/><circle cx="109.235" cy="148.52" r="92.472" fill="url(#G)" paint-order="normal"/><path d="M67.38 139.366L35.365 156.4V95.838L67.38 78.57z" fill="url(#D)"/><path d="M35.365 156.4l-16-8.84V112.17l10.16-19.528 5.84 3.196" fill="url(#E)"/><path d="M67.38 78.57L35.365 95.838l-4.717-2.582L46.35 72.68l4.928-2.63z" fill="url(#F)"/><g class="C B"><use xlink:href="#N"/><use xlink:href="#N" y="5.781"/><path d="M51.28 71.52l13.34 7.06L35.37 94.36l-5.137-2.812-.954 2.44 4.79 2.62V154.2l-13.402-7.404v-35.013l-2.598 4.143v32.403l17.287 9.55.62-.33 32.703-17.4v-62.36l-17.4-9.207zm14.8 9.225v57.84l-29.416 15.652V96.615z"/></g><g transform="matrix(.659828 0 0 .659828 -6.785823 8.688279)"><use xlink:href="#O" fill="url(#H)"/><use xlink:href="#P" fill="url(#I)"/><use xlink:href="#Q" fill="url(#J)"/><g class="C B"><use xlink:href="#R"/><use xlink:href="#R" y="8.762"/></g><use xlink:href="#S" fill="none" stroke="#fff" class="D"/></g><g transform="matrix(.659828 0 0 .659828 24.586201 28.721017)"><use xlink:href="#O" fill="url(#H)"/><use xlink:href="#P" fill="url(#I)"/><use xlink:href="#Q" fill="url(#J)"/><g class="C B"><use xlink:href="#R"/><use xlink:href="#R" y="8.762"/></g><use xlink:href="#S" fill="none" stroke="#fff" class="D"/></g><g transform="matrix(.659828 0 0 .659828 55.958226 45.729945)"><use xlink:href="#O" fill="url(#H)"/><use xlink:href="#P" fill="url(#I)"/><use xlink:href="#Q" fill="url(#J)"/><g class="C B"><use xlink:href="#R"/><use xlink:href="#R" y="8.762"/></g><use xlink:href="#S" fill="none" stroke="#fff" class="D"/></g><path d="M169.642 223.944v-60.562l32.014-17.268v27.274c-4.946 16.437-11.366 33.378-32.014 50.556z" fill="url(#K)"/><path d="M169.642 223.944l-16-8.84v-60.48l16 8.757" fill="url(#L)"/><path d="M201.656 146.113l-32.014 17.268-16-8.757 31.914-17.03z" fill="url(#M)"/><g class="C B"><use xlink:href="#N" x="134.276" y="67.543"/><use xlink:href="#N" x="134.276" y="73.324"/><path d="M202.955 170.582v-25.25l-17.402-9.207-33.21 17.723v62.025l17.287 9.55.62-.332.7-3.31v-57.625l29.414-15.867v24.163zm-17.396-31.515l13.34 7.06-29.252 15.777-13.27-7.264zm-30.617 17.75l13.4 7.336v57.6l-13.4-7.404z"/></g><path d="M109.094 48.78c-55 0-99.543 44.543-99.543 99.543s44.543 99.545 99.543 99.545 99.543-44.545 99.543-99.545-44.543-99.543-99.543-99.543zm0 7.072a92.47 92.47 0 0 1 92.472 92.472 92.47 92.47 0 0 1-92.472 92.472 92.47 92.47 0 0 1-92.472-92.472 92.47 92.47 0 0 1 92.472-92.472z" fill="#0073fc" paint-order="normal" class="B"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/shadowed_router.svg b/src/main/webapp/img/lib/active_directory/shadowed_router.svg index d09ad6b7616f66d79cbf53e54ea0c06d0cb55112..3ce42500e7d927a5320f4ef4d4f043119f9b9b07 100644 --- a/src/main/webapp/img/lib/active_directory/shadowed_router.svg +++ b/src/main/webapp/img/lib/active_directory/shadowed_router.svg @@ -1,217 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="141.1284mm" - height="172.53934mm" - viewBox="0 0 141.1284 172.53933" - version="1.1" - id="svg5743" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="shadowed_router.svg"> - <defs - id="defs5737"> - <linearGradient - gradientTransform="translate(-0.71549367,-0.51627467)" - inkscape:collect="always" - xlink:href="#linearGradient5705" - id="linearGradient5707" - x1="116.56683" - y1="190.98032" - x2="118.75132" - y2="121.75751" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5705"> - <stop - style="stop-color:#c0e5ff;stop-opacity:1" - offset="0" - id="stop5701" /> - <stop - style="stop-color:#64c1ff;stop-opacity:1" - offset="1" - id="stop5703" /> - </linearGradient> - <linearGradient - gradientTransform="translate(-0.71549367,-0.51627467)" - inkscape:collect="always" - xlink:href="#linearGradient5735" - id="linearGradient5729" - x1="84.457169" - y1="225.10448" - x2="83.92263" - y2="163.89977" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5735"> - <stop - style="stop-color:#086bff;stop-opacity:1" - offset="0" - id="stop5731" /> - <stop - style="stop-color:#99ccff;stop-opacity:1" - offset="1" - id="stop5733" /> - </linearGradient> - <linearGradient - gradientTransform="translate(-0.71549367,-0.51627467)" - inkscape:collect="always" - xlink:href="#linearGradient5721" - id="linearGradient5715" - x1="178.26877" - y1="224.83722" - x2="178.53604" - y2="157.48529" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5721"> - <stop - style="stop-color:#080a9e;stop-opacity:1" - offset="0" - id="stop5717" /> - <stop - style="stop-color:#7998ea;stop-opacity:1" - offset="1" - id="stop5719" /> - </linearGradient> - <linearGradient - gradientTransform="translate(-0.88925011,-57.030497)" - inkscape:collect="always" - xlink:href="#linearGradient5705" - id="linearGradient5707-2" - x1="116.56683" - y1="190.98032" - x2="118.75132" - y2="121.75751" - gradientUnits="userSpaceOnUse" /> - <linearGradient - gradientTransform="translate(-0.88925011,-57.030497)" - inkscape:collect="always" - xlink:href="#linearGradient5735" - id="linearGradient5729-1" - x1="84.457169" - y1="225.10448" - x2="83.92263" - y2="163.89977" - gradientUnits="userSpaceOnUse" /> - <linearGradient - gradientTransform="translate(-0.88925011,-57.030497)" - inkscape:collect="always" - xlink:href="#linearGradient5721" - id="linearGradient5715-4" - x1="178.26877" - y1="224.83722" - x2="178.53604" - y2="157.48529" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.7" - inkscape:cx="94.797497" - inkscape:cy="290.53293" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" /> - <metadata - id="metadata5740"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-60.7065,-59.563518)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 138.6898,116.07774 -77.809549,40.87008 0.06836,41.39649 1.347656,0.69726 62.517543,33.06129 77.02109,-39.24302 V 151.5747 Z" - id="path5699" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient5707);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 138.64293,121.68712 193.94037,153.1079 124.681,191.08724 68.811897,158.58064 Z" - id="path5697" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient5729);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 65.890022,162.6861 56.285118,32.72926 0.14063,29.76367 -56.373014,-29.87964 z" - id="path5695" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient5715);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 196.8349,157.23485 v 32.5332 l -69.51914,35.49692 -0.14063,-29.8418 z" - id="path5632" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - id="path5634" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.29283762;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 111.03486,201.43479 v 7.12545 l 5.715,3.00591 v -7.12545 z m -11.961094,-6.29135 v 7.12546 l 5.951044,3.13014 v -7.12545 z M 87.11223,188.85166 v 7.1259 l 5.951484,3.13058 v -7.12589 z" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 138.51605,59.563518 -77.80955,40.870072 0.0684,41.39649 1.34765,0.69726 62.51755,33.06129 77.02109,-39.24302 V 95.060475 Z" - id="path5699-0" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient5707-2);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 138.46918,65.172898 55.29744,31.420777 -69.25937,37.979335 -55.86911,-32.5066 z" - id="path5697-9" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient5729-1);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 65.71627,106.17187 56.28512,32.72926 0.14063,29.76367 L 65.769,138.78516 Z" - id="path5695-0" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient5715-4);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 196.66115,100.72062 v 32.5332 l -69.51914,35.49692 -0.14063,-29.8418 z" - id="path5632-1" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - id="path5634-1" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.29283762;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 110.86111,144.92056 v 7.12545 l 5.715,3.00591 v -7.12545 z m -11.9611,-6.29135 v 7.12546 l 5.95105,3.13014 v -7.12545 z m -11.96153,-6.29178 v 7.1259 l 5.95148,3.13058 v -7.12589 z" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="533.397" height="652.116" viewBox="0 0 141.128 172.539"><style><![CDATA[.B{dominant-baseline:auto}]]></style><defs><linearGradient xlink:href="#B" id="A" x1="115.851" y1="190.464" x2="118.036" y2="121.241"/><linearGradient id="B" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#c0e5ff"/><stop offset="1" stop-color="#64c1ff"/></linearGradient><linearGradient xlink:href="#D" id="C" x1="83.742" y1="224.588" x2="83.207" y2="163.383"/><linearGradient id="D" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#086bff"/><stop offset="1" stop-color="#9cf"/></linearGradient><linearGradient xlink:href="#F" id="E" x1="177.553" y1="224.321" x2="177.821" y2="156.969"/><linearGradient id="F" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#080a9e"/><stop offset="1" stop-color="#7998ea"/></linearGradient><linearGradient xlink:href="#B" id="G" x1="115.678" y1="133.95" x2="117.862" y2="64.727"/><linearGradient xlink:href="#D" id="H" x1="83.568" y1="168.074" x2="83.033" y2="106.869"/><linearGradient xlink:href="#F" id="I" x1="177.38" y1="167.807" x2="177.647" y2="100.455"/><path id="J" d="M111.035 201.435v7.125l5.715 3.006v-7.125zm-11.96-6.29v7.125l5.95 3.13v-7.125zm-11.962-6.292v7.126l5.95 3.13v-7.126z"/></defs><g transform="translate(-60.706 -59.564)" class="B"><path d="M138.7 116.078l-77.8 40.87.068 41.396 1.348.697 62.518 33.06 77.02-39.243v-41.285z" fill="#fff"/><path d="M138.643 121.687l55.297 31.42-69.26 37.98-55.87-32.507z" fill="url(#A)"/><path d="M65.9 162.686l56.285 32.73.14 29.764-56.373-29.88z" fill="url(#C)"/><path d="M196.835 157.235v32.533l-69.52 35.497-.14-29.842z" fill="url(#E)"/><g fill="#fff"><use xlink:href="#J"/><path d="M138.516 59.564l-77.8 40.87.068 41.396 1.348.697 62.518 33.06 77.02-39.243V95.06z"/></g><path d="M138.47 65.173l55.297 31.42-69.26 37.98-55.87-32.507z" fill="url(#G)"/><path d="M65.716 106.172L122 138.9l.14 29.764-56.373-29.88z" fill="url(#H)"/><path d="M196.66 100.72v32.533l-69.52 35.497-.14-29.842z" fill="url(#I)"/><use xlink:href="#J" x="-0.175" y="-56.515" fill="#fff"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/site_collection.svg b/src/main/webapp/img/lib/active_directory/site_collection.svg index 8dc4e46c72659510eab657ad90b83d1b3007914d..387cd9b6c7dfbea88fde461f96265186ecbb32dc 100644 --- a/src/main/webapp/img/lib/active_directory/site_collection.svg +++ b/src/main/webapp/img/lib/active_directory/site_collection.svg @@ -1,188 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="131.12906mm" - height="123.38464mm" - viewBox="0 0 131.12906 123.38464" - version="1.1" - id="svg2464" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="site_collection.svg"> - <defs - id="defs2458"> - <linearGradient - gradientTransform="translate(15.523627,23.523555)" - inkscape:collect="always" - xlink:href="#linearGradient1579" - id="linearGradient1581" - x1="41.40197" - y1="132.1954" - x2="152.42894" - y2="131.43945" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient1579"> - <stop - style="stop-color:#fe5d02;stop-opacity:1" - offset="0" - id="stop1575" /> - <stop - style="stop-color:#fff835;stop-opacity:1" - offset="1" - id="stop1577" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1567" - id="linearGradient1569-5-8-4" - x1="70.511459" - y1="138.11771" - x2="70.776039" - y2="103.98646" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.45865954,0,0,0.49115754,115.18066,138.23794)" /> - <linearGradient - inkscape:collect="always" - id="linearGradient1567"> - <stop - style="stop-color:#2c6dc9;stop-opacity:1" - offset="0" - id="stop1563" /> - <stop - style="stop-color:#94cdfe;stop-opacity:1" - offset="1" - id="stop1565" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1567" - id="linearGradient1569-5" - x1="70.511459" - y1="138.11771" - x2="70.776039" - y2="103.98646" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.45865954,0,0,0.49115754,39.916207,138.23794)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1567" - id="linearGradient1569-5-8" - x1="70.511459" - y1="138.11771" - x2="70.776039" - y2="103.98646" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.45865954,0,0,0.49115754,77.548432,138.23794)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1567" - id="linearGradient1569" - x1="70.511459" - y1="138.11771" - x2="70.776039" - y2="103.98646" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(39.658064,20.15596)" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.98994949" - inkscape:cx="11.897557" - inkscape:cy="166.30341" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata2461"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-47.712885,-101.78752)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.72722149;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 47.712885,101.78752 V 225.17216 H 178.84195 V 101.78752 Z" - id="path1573-9" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#00a0fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 52.857063,107.74373 V 219.14231 H 172.47776 V 107.74373 Z" - id="path1573" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1581);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 56.891603,111.57781 H 168.65108 v 103.5178 H 56.891603 Z" - id="rect1439" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#2c6dc9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 106.27168,155.95911 v 17.8457 H 72.095894 v 17.08593 h 3.500001 v -13.58593 h 30.675785 v 14.85546 h 3.5 v -14.85546 h 37.50976 v 14.76171 h 3.5 v -18.26171 h -41.00976 v -17.8457 z" - id="path1818" - inkscape:connector-curvature="0" /> - <rect - style="opacity:1;vector-effect:none;fill:url(#linearGradient1569-5-8-4);fill-opacity:1;stroke:none;stroke-width:0.47463053;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="rect1447-7-7-2" - width="17.23159" - height="16.817644" - x="138.69507" - y="189.32349" /> - <rect - style="opacity:1;vector-effect:none;fill:url(#linearGradient1569-5);fill-opacity:1;stroke:none;stroke-width:0.4746305;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="rect1447-7" - width="17.23159" - height="16.817644" - x="63.430637" - y="189.32349" /> - <rect - style="opacity:1;vector-effect:none;fill:url(#linearGradient1569-5-8);fill-opacity:1;stroke:none;stroke-width:0.47463053;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="rect1447-7-7" - width="17.23159" - height="16.817644" - x="101.06286" - y="189.32349" /> - <rect - style="opacity:1;vector-effect:none;fill:url(#linearGradient1569);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="rect1447" - width="37.569458" - height="34.240837" - x="90.925789" - y="124.16649" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="495.606" height="466.337" viewBox="0 0 131.129 123.385"><style><![CDATA[.B{dominant-baseline:auto}]]></style><defs><linearGradient id="A" x1="56.926" y1="155.719" x2="167.953" y2="154.963" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fe5d02"/><stop offset="1" stop-color="#fff835"/></linearGradient><linearGradient xlink:href="#C" id="B" x1="147.521" y1="206.075" x2="147.643" y2="189.312"/><linearGradient id="C" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#2c6dc9"/><stop offset="1" stop-color="#94cdfe"/></linearGradient><linearGradient xlink:href="#C" id="D" x1="72.257" y1="206.075" x2="72.378" y2="189.312"/><linearGradient xlink:href="#C" id="E" x1="109.889" y1="206.075" x2="110.011" y2="189.312"/><linearGradient xlink:href="#C" id="F" x1="110.17" y1="158.274" x2="110.434" y2="124.142"/></defs><g transform="translate(-47.713 -101.788)"><path d="M47.713 101.788v123.385h131.13V101.788z" fill="#fff" paint-order="normal" class="B"/><path d="M52.857 107.744v111.4h119.62v-111.4z" fill="#00a0fc" paint-order="normal" class="B"/><path d="M56.892 111.578h111.76v103.518H56.892z" fill="url(#A)" paint-order="normal" class="B"/><path d="M106.272 155.96v17.846H72.096v17.086h3.5v-13.586h30.676v14.855h3.5v-14.855h37.5v14.762h3.5v-18.262h-41V155.96z" fill="#2c6dc9" class="B"/><path d="M138.695 189.323h17.232v16.818h-17.232z" fill="url(#B)" paint-order="normal"/><path d="M63.43 189.323h17.232v16.818H63.43z" fill="url(#D)" paint-order="normal"/><path d="M101.063 189.323h17.232v16.818h-17.232z" fill="url(#E)" paint-order="normal"/><path d="M90.926 124.166h37.57v34.24h-37.57z" fill="url(#F)" paint-order="normal"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/sql_server.svg b/src/main/webapp/img/lib/active_directory/sql_server.svg index dc1ff17816facad6e7642eb8fbd0611f8a3b5922..dcd326b3b8de558ff8aad37f8725a62779b77929 100644 --- a/src/main/webapp/img/lib/active_directory/sql_server.svg +++ b/src/main/webapp/img/lib/active_directory/sql_server.svg @@ -1,245 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="87.276161mm" - height="113.66861mm" - viewBox="0 0 87.276161 113.66861" - version="1.1" - id="svg8" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="sql_server.svg"> - <defs - id="defs2"> - <linearGradient - inkscape:collect="always" - id="linearGradient1814"> - <stop - style="stop-color:#a8defe;stop-opacity:1" - offset="0" - id="stop1810" /> - <stop - style="stop-color:#14a7fc;stop-opacity:1" - offset="1" - id="stop1812" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1806"> - <stop - style="stop-color:#0e7bfc;stop-opacity:1" - offset="0" - id="stop1802" /> - <stop - style="stop-color:#8cc8fe;stop-opacity:1" - offset="1" - id="stop1804" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1790"> - <stop - style="stop-color:#0e2da0;stop-opacity:1;" - offset="0" - id="stop1786" /> - <stop - style="stop-color:#8bb5f4;stop-opacity:1" - offset="1" - id="stop1788" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient922"> - <stop - style="stop-color:#a8defe;stop-opacity:1" - offset="0" - id="stop918" /> - <stop - style="stop-color:#12a7fc;stop-opacity:1" - offset="1" - id="stop920" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient914"> - <stop - style="stop-color:#05239a;stop-opacity:1" - offset="0" - id="stop910" /> - <stop - style="stop-color:#91bcf8;stop-opacity:1" - offset="1" - id="stop912" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient904"> - <stop - style="stop-color:#0677fc;stop-opacity:1;" - offset="0" - id="stop900" /> - <stop - style="stop-color:#8fcafe;stop-opacity:1" - offset="1" - id="stop902" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient904" - id="linearGradient908" - gradientUnits="userSpaceOnUse" - x1="83.838669" - y1="200.39299" - x2="83.469749" - y2="127.29478" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient914" - id="linearGradient916" - x1="111.26579" - y1="206.30371" - x2="111.47961" - y2="118.37204" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient922" - id="linearGradient924" - x1="103.08207" - y1="136.8896" - x2="103.19426" - y2="107.62359" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1790" - id="linearGradient1792" - x1="147.06595" - y1="217.34947" - x2="146.86617" - y2="176.65768" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1806" - id="linearGradient1808" - x1="122.4753" - y1="217.58464" - x2="122.60874" - y2="177.02649" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1814" - id="linearGradient1816" - x1="134.70384" - y1="188.48857" - x2="135.37201" - y2="165.50339" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="1.4" - inkscape:cx="104.6674" - inkscape:cy="176.77655" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata5"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-72.583331,-105.73763)"> - <path - style="opacity:1;fill:url(#linearGradient916);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 129.52031,187.46797 92.556918,207.13616 V 137.21057 L 129.52031,117.27232 Z" - id="path833" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="opacity:1;fill:url(#linearGradient908);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 92.556918,207.13616 74.083331,196.9308 v -69.8311 l 18.473587,10.11087" - id="path835" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccc" /> - <path - style="opacity:1;fill:url(#linearGradient924);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 129.52031,117.27232 92.556918,137.21057 74.083331,127.0997 110.93126,107.43625 Z" - id="path837" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 79.355465,150.82884 v 1.32227 l 6.631269,3.63829 v -1.32227 z" - id="path839" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 79.355465,157.50336 v 1.32227 l 6.631269,3.63829 v -1.32227 z" - id="path839-0" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - id="path830" - style="opacity:1;fill:none;stroke:#ffffff;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 92.556918,137.21057 36.963392,-19.93825 z m 0,69.92559 V 137.21057 L 74.083331,127.0997 M 92.556918,207.13616 74.083331,196.9308 v -69.8311 l 36.847929,-19.66345 18.58905,9.83607 v 70.19565 z" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccccccc" /> - <path - style="fill:url(#linearGradient1816);fill-opacity:1;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 112.11956,177.19643 23.25245,-11.69304 22.25019,11.35896 -22.91836,11.62622 z" - id="path1772" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient1808);fill-opacity:1;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 112.11956,177.19643 22.58428,11.29214 -0.0668,28.99874 -23.31926,-10.62396 z" - id="path1774" - inkscape:connector-curvature="0" /> - <path - style="opacity:1;fill:url(#linearGradient1792);fill-opacity:1;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 134.63704,217.48731 0.0668,-28.99874 22.91836,-11.62622 1.00226,30.001 z" - id="path1776" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.79999983;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 134.97677,163.83186 -24.74836,12.08815 -0.35553,32.10553 0.8909,0.40411 24.14633,10.97659 24.94938,-11.58585 -0.0703,-31.68954 z m -0.0103,3.34398 4.79608,2.37712 -4.97954,2.4939 -4.83226,-2.42104 z m 6.81715,3.3786 4.66845,2.31408 -4.99711,2.52026 -4.66173,-2.3363 z m -13.86789,0.0656 4.85759,2.43241 -4.69326,2.34973 -4.90667,-2.46548 z m 20.55275,3.24787 6.45335,3.19825 -5.06945,2.5275 -6.39135,-3.20136 z m -27.32753,0.0615 4.93148,2.47892 -6.06061,3.03496 -4.9475,-2.54507 z m 13.64206,0.1292 4.67,2.3399 -4.68912,2.36523 -4.67775,-2.35179 z m 6.67401,3.34398 6.38049,3.19567 -4.73046,2.35799 -6.34121,-3.18688 z m -13.37902,0.0134 4.6855,2.35541 -6.11642,3.08457 -4.65295,-2.39314 z m -14.88695,1.89084 3.94343,2.0283 -0.0367,7.86412 -3.99356,-1.99522 z m 43.60561,0.1757 0.0165,7.55871 -4.34702,2.173 -0.0186,-7.56285 z m -22.03277,1.29501 6.33088,3.18224 -6.24716,3.11454 -6.22288,-3.20084 z m -15.83314,1.48157 6.5474,3.36827 -0.003,7.75766 -6.58151,-3.28869 z m 31.719,0.28887 0.0181,7.56491 -6.58978,3.29334 -0.0191,-7.57215 z m -23.37274,4.00492 6.06268,3.11867 0.0176,7.65122 -6.08335,-3.03909 z m 14.98462,0.17777 0.0191,7.5737 -5.92367,2.96002 -0.0176,-7.58093 z m 14.55621,2.32182 0.0176,8.02948 -4.34443,2.16163 -0.0202,-8.01915 z m -43.73583,0.154 4.00596,2.00091 -0.0372,8.02225 -4.0566,-2.02624 z m 5.80172,2.89801 6.59081,3.29231 -0.003,8.0393 -6.62595,-3.30988 z m 31.78927,0.0186 0.0196,8.01553 -6.58978,3.27835 -0.0202,-8.00158 z m -23.39961,4.17183 6.088,3.04168 0.0186,8.04964 -6.10971,-3.05201 z m 15.01252,0.0186 0.0202,7.99744 -5.92626,2.94866 -0.0181,-7.98608 z m 14.55415,2.77605 0.015,6.81664 -4.34289,2.01693 -0.0165,-6.67194 z m -43.8676,0.11369 4.069,2.03295 -0.0315,6.73706 -4.11345,-1.86965 z m 5.86372,2.92954 6.63474,3.31504 -0.002,6.37016 -6.66419,-3.02876 z m 31.86111,0.0134 0.016,6.61199 -6.58927,3.06028 -0.016,-6.39392 z m -8.38606,4.17235 0.016,6.3345 -5.92884,2.75332 -0.0139,-6.13865 z m -15.04145,0.0274 6.11487,3.05511 0.0134,6.02082 -6.13037,-2.78639 z" - id="path1753" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="329.862" height="429.615" viewBox="0 0 87.276 113.669"><defs><linearGradient id="A" x1="83.839" y1="200.393" x2="83.47" y2="127.295" xlink:href="#G"><stop offset="0" stop-color="#0677fc"/><stop offset="1" stop-color="#8fcafe"/></linearGradient><linearGradient id="B" x1="111.266" y1="206.304" x2="111.48" y2="118.372" xlink:href="#G"><stop offset="0" stop-color="#05239a"/><stop offset="1" stop-color="#91bcf8"/></linearGradient><linearGradient id="C" x1="103.082" y1="136.89" x2="103.194" y2="107.624" xlink:href="#G"><stop offset="0" stop-color="#a8defe"/><stop offset="1" stop-color="#12a7fc"/></linearGradient><linearGradient id="D" x1="147.066" y1="217.349" x2="146.866" y2="176.658" xlink:href="#G"><stop offset="0" stop-color="#0e2da0"/><stop offset="1" stop-color="#8bb5f4"/></linearGradient><linearGradient id="E" x1="122.475" y1="217.585" x2="122.609" y2="177.026" xlink:href="#G"><stop offset="0" stop-color="#0e7bfc"/><stop offset="1" stop-color="#8cc8fe"/></linearGradient><linearGradient id="F" x1="134.704" y1="188.489" x2="135.372" y2="165.503" xlink:href="#G"><stop offset="0" stop-color="#a8defe"/><stop offset="1" stop-color="#14a7fc"/></linearGradient><linearGradient id="G" gradientUnits="userSpaceOnUse"/></defs><g transform="translate(-72.583 -105.738)"><path d="M129.52 187.468l-36.963 19.668V137.21l36.963-19.938z" fill="url(#B)"/><path d="M92.557 207.136L74.083 196.93V127.1l18.474 10.11" fill="url(#A)"/><path d="M129.52 117.272L92.557 137.21 74.083 127.1l36.848-19.663z" fill="url(#C)"/><path d="M79.355 150.83v1.322l6.63 3.638v-1.322zm0 6.673v1.322l6.63 3.638v-1.322z" dominant-baseline="auto" fill="#fff"/><path d="M92.557 137.21l36.963-19.938zm0 69.926V137.21L74.083 127.1m18.474 80.036L74.083 196.93V127.1l36.848-19.663 18.59 9.836v70.196z" fill="none" stroke="#fff" stroke-width="3"/><g stroke="#000" stroke-width=".265"><path d="M112.12 177.196l23.252-11.693 22.25 11.36-22.918 11.626z" fill="url(#F)"/><path d="M112.12 177.196l22.584 11.292-.067 29-23.32-10.624z" fill="url(#E)"/><path d="M134.637 217.487l.067-29 22.918-11.626 1.002 30z" fill="url(#D)"/></g><path d="M134.977 163.832l-24.748 12.088-.356 32.106.89.404 24.146 10.977 24.95-11.586-.07-31.7zm-.01 3.344l4.796 2.377-4.98 2.494-4.832-2.42zm6.817 3.38l4.668 2.314-4.997 2.52-4.662-2.336zm-13.868.066l4.858 2.432-4.693 2.35-4.907-2.465zm20.553 3.248l6.453 3.198-5.07 2.528-6.39-3.2zm-27.328.06l4.93 2.48-6.06 3.035-4.948-2.545zm13.642.13l4.67 2.34-4.69 2.365-4.678-2.352zm6.674 3.344l6.38 3.196-4.73 2.358-6.34-3.187zm-13.38.013l4.685 2.355-6.116 3.085-4.653-2.393zm-14.887 1.89l3.943 2.028-.037 7.864-3.994-1.995zm43.606.176l.017 7.56-4.347 2.173-.02-7.563zm-22.033 1.295l6.33 3.182-6.247 3.115-6.223-3.2zm-15.833 1.482l6.547 3.368-.003 7.758-6.582-3.29zm31.72.29l.018 7.565-6.6 3.293-.02-7.572zm-23.373 4.005l6.063 3.12.018 7.65-6.083-3.04zm14.985.178l.02 7.574-5.924 2.96-.018-7.58zm14.556 2.322l.018 8.03-4.344 2.162-.02-8.02zm-43.736.154l4.006 2-.037 8.022-4.057-2.026zm5.802 2.898l6.59 3.292-.003 8.04-6.626-3.3zm31.79.02l.02 8.016-6.6 3.278-.02-8.002zm-23.4 4.172l6.088 3.042.02 8.05-6.1-3.052zm15.013.02l.02 7.997-5.926 2.95-.018-7.986zm14.554 2.776l.015 6.817-4.343 2.017-.017-6.672zm-43.868.114l4.07 2.033-.03 6.737-4.113-1.87zm5.864 2.93l6.635 3.315v6.37l-6.664-3.03zm31.86.013l.016 6.612-6.59 3.06-.016-6.394zm-8.386 4.172l.016 6.335-5.93 2.753-.014-6.14zm-15.04.027l6.115 3.055.013 6.02-6.13-2.786z" dominant-baseline="auto" fill="#fff"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/sub_site.svg b/src/main/webapp/img/lib/active_directory/sub_site.svg index 0a3d86d26bb21649741b5576e1f3688d2900b0d7..62dc382a1a4c3cdfb0996815cba675472b83675e 100644 --- a/src/main/webapp/img/lib/active_directory/sub_site.svg +++ b/src/main/webapp/img/lib/active_directory/sub_site.svg @@ -1,222 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="170.22452mm" - height="146.49408mm" - viewBox="0 0 170.22452 146.49408" - version="1.1" - id="svg1243" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="sub_site.svg"> - <defs - id="defs1237"> - <linearGradient - inkscape:collect="always" - id="linearGradient1579"> - <stop - style="stop-color:#fe5d02;stop-opacity:1" - offset="0" - id="stop1575" /> - <stop - style="stop-color:#fff835;stop-opacity:1" - offset="1" - id="stop1577" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1567"> - <stop - style="stop-color:#2c6dc9;stop-opacity:1" - offset="0" - id="stop1563" /> - <stop - style="stop-color:#94cdfe;stop-opacity:1" - offset="1" - id="stop1565" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1567" - id="linearGradient1569" - x1="70.511459" - y1="138.11771" - x2="70.776039" - y2="103.98646" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(24.134438,-3.367596)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1579" - id="linearGradient1581" - x1="-3.1992188" - y1="131.43945" - x2="150.53906" - y2="131.43945" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1567" - id="linearGradient1569-5" - x1="70.511459" - y1="138.11771" - x2="70.776039" - y2="103.98646" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.45865954,0,0,0.49115754,24.39258,114.71438)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1567" - id="linearGradient1569-5-8" - x1="70.511459" - y1="138.11771" - x2="70.776039" - y2="103.98646" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.45865954,0,0,0.49115754,62.024804,114.71438)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1567" - id="linearGradient1569-5-8-4" - x1="70.511459" - y1="138.11771" - x2="70.776039" - y2="103.98646" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.45865954,0,0,0.49115754,99.657026,114.71438)" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="1" - inkscape:cx="329.36115" - inkscape:cy="175.39194" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata1240"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(11.709762,-57.884668)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.72722149;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m -11.709762,57.884668 v 1.874 144.620072 H 158.51476 V 57.884668 Z" - id="path1573-9" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#00a0fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m -6.6992188,63.039062 v 1.75 135.050778 H 154.03906 V 63.039062 Z" - id="path1573" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1581);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M -3.1992188,66.539062 H 150.53906 V 196.33984 H -3.1992188 Z" - id="rect1439" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#2c6dc9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 90.748047,132.43555 v 17.8457 H 56.572266 v 17.08594 h 3.5 v -13.58594 h 30.675781 v 14.85547 h 3.5 v -14.85547 h 37.509763 v 14.76172 h 3.5 V 150.28125 H 94.248047 v -17.8457 z" - id="path1818" - inkscape:connector-curvature="0" /> - <rect - style="opacity:1;vector-effect:none;fill:#0073fc;fill-opacity:0.94974874;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="rect1441" - width="153.73059" - height="23.192968" - x="-3.1992188" - y="66.539062" /> - <rect - style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="rect1443" - width="10.365515" - height="10.380196" - x="92.203278" - y="69.889938" /> - <rect - style="opacity:1;vector-effect:none;fill:#7eb9fd;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="rect1445" - width="37.399254" - height="103.08497" - x="-3.1992188" - y="89.732033" /> - <rect - style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="rect1443-1" - width="10.365515" - height="10.380196" - x="110.97902" - y="69.890625" /> - <rect - style="opacity:1;vector-effect:none;fill:#fd1800;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="rect1443-1-2" - width="10.365515" - height="10.380196" - x="129.75475" - y="69.890633" /> - <rect - style="opacity:1;vector-effect:none;fill:url(#linearGradient1569-5-8-4);fill-opacity:1;stroke:none;stroke-width:0.47463053;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="rect1447-7-7-2" - width="17.23159" - height="16.817644" - x="123.17145" - y="165.79993" /> - <rect - style="opacity:1;vector-effect:none;fill:url(#linearGradient1569-5);fill-opacity:1;stroke:none;stroke-width:0.47463048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="rect1447-7" - width="17.23159" - height="16.817644" - x="47.907009" - y="165.79993" /> - <rect - style="opacity:1;vector-effect:none;fill:url(#linearGradient1569-5-8);fill-opacity:1;stroke:none;stroke-width:0.4746305;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="rect1447-7-7" - width="17.23159" - height="16.817644" - x="85.53923" - y="165.79993" /> - <rect - style="opacity:1;vector-effect:none;fill:url(#linearGradient1569);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="rect1447" - width="37.569458" - height="34.240837" - x="75.402161" - y="100.64293" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="643.37" height="553.678" viewBox="0 0 170.225 146.494"><style><![CDATA[.B{dominant-baseline:auto}]]></style><defs><linearGradient id="A" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#2c6dc9"/><stop offset="1" stop-color="#94cdfe"/></linearGradient><linearGradient xlink:href="#A" id="B" x1="94.646" y1="134.75" x2="94.91" y2="100.619"/><linearGradient id="C" x1="-3.199" y1="131.439" x2="150.539" y2="131.439" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fe5d02"/><stop offset="1" stop-color="#fff835"/></linearGradient><linearGradient xlink:href="#A" id="D" x1="56.733" y1="182.552" x2="56.855" y2="165.788"/><linearGradient xlink:href="#A" id="E" x1="94.366" y1="182.552" x2="94.487" y2="165.788"/><linearGradient xlink:href="#A" id="F" x1="131.998" y1="182.552" x2="132.119" y2="165.788"/></defs><g transform="translate(11.71 -57.885)"><path d="M-11.7 57.885V204.38h170.225V57.885z" fill="#fff" paint-order="normal" class="B"/><path d="M-6.7 63.04v136.8H154.04V63.04z" fill="#00a0fc" paint-order="normal" class="B"/><path d="M-3.2 66.54H150.54v129.8H-3.2z" fill="url(#C)" paint-order="normal" class="B"/><path d="M90.748 132.436v17.846H56.572v17.086h3.5V153.78h30.676v14.855h3.5V153.78h37.5v14.762h3.5V150.28h-41v-17.846z" fill="#2c6dc9" class="B"/><path d="M-3.2 66.54h153.73v23.193H-3.2z" fill="#0073fc" fill-opacity=".95" paint-order="normal"/><path d="M92.203 69.9h10.366v10.38H92.203z" fill="#fff" paint-order="normal"/><path d="M-3.2 89.732h37.4v103.085H-3.2z" fill="#7eb9fd" paint-order="normal"/><path d="M110.98 69.89h10.366v10.38H110.98z" fill="#fff" paint-order="normal"/><path d="M129.755 69.89h10.366v10.38h-10.366z" fill="#fd1800" paint-order="normal"/><path d="M123.17 165.8h17.232v16.818H123.17z" fill="url(#F)" paint-order="normal"/><path d="M47.907 165.8H65.14v16.818H47.907z" fill="url(#D)" paint-order="normal"/><path d="M85.54 165.8h17.232v16.818H85.54z" fill="url(#E)" paint-order="normal"/><path d="M75.402 100.643h37.57v34.24h-37.57z" fill="url(#B)" paint-order="normal"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/switch.svg b/src/main/webapp/img/lib/active_directory/switch.svg index 6df183416d16e51b0ca434bb259f8ddacbceac77..b0b9d4d6723ee42bc6ce945a14ebc0e070622167 100644 --- a/src/main/webapp/img/lib/active_directory/switch.svg +++ b/src/main/webapp/img/lib/active_directory/switch.svg @@ -1,217 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="179.01573mm" - height="178.88893mm" - viewBox="0 0 179.01573 178.88893" - version="1.1" - id="svg924" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="switch.svg"> - <defs - id="defs918"> - <linearGradient - id="linearGradient1111" - inkscape:collect="always"> - <stop - id="stop1107" - offset="0" - style="stop-color:#f9b922;stop-opacity:1" /> - <stop - id="stop1109" - offset="1" - style="stop-color:#ffdf2e;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1095"> - <stop - style="stop-color:#f07c10;stop-opacity:1" - offset="0" - id="stop1091" /> - <stop - style="stop-color:#f6a21b;stop-opacity:1" - offset="1" - id="stop1093" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1054"> - <stop - style="stop-color:#0c7afc;stop-opacity:1" - offset="0" - id="stop1050" /> - <stop - style="stop-color:#85c4fe;stop-opacity:1" - offset="1" - id="stop1052" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1040"> - <stop - style="stop-color:#0c2a9e;stop-opacity:1" - offset="0" - id="stop1036" /> - <stop - style="stop-color:#7da6eb;stop-opacity:1" - offset="1" - id="stop1038" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1026"> - <stop - style="stop-color:#b7e4fe;stop-opacity:1" - offset="0" - id="stop1022" /> - <stop - style="stop-color:#09a3fc;stop-opacity:1" - offset="1" - id="stop1024" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1026" - id="linearGradient1020" - x1="106.90781" - y1="168.44334" - x2="107.17508" - y2="98.686005" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1040" - id="linearGradient1034" - x1="143.44197" - y1="192.30058" - x2="143.064" - y2="141.08481" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1054" - id="linearGradient1048" - x1="78.619049" - y1="192.30058" - x2="79.375" - y2="134.09225" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1095" - id="linearGradient1097" - x1="112.25893" - y1="228.96428" - x2="112.25893" - y2="154.12498" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1111" - id="linearGradient1105" - x1="110.74702" - y1="133.71428" - x2="110.66602" - y2="59.173828" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.7" - inkscape:cx="238.72824" - inkscape:cy="368.81342" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata921"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-17.363234,-55.115052)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 110.79883,55.173828 c -27.921255,-0.720053 -45.5032,5.16603 -69.513674,18.195313 l -0.01563,0.0098 -0.01367,0.0078 c -18.776938,10.608636 -25.839012,26.101175 -22.40625,39.076169 2.528293,11.16204 13.540463,23.66237 22.825056,29.29185 l 1.099609,0.66797 1.0625,-0.72461 27.458148,-23.46958 -1.939453,-1.70313 c -3.019072,-2.65038 -5.114881,-4.91322 -6.347657,-6.80664 -1.232775,-1.89342 -1.600223,-3.32111 -1.470703,-4.62109 0.258198,-2.5915 3.046131,-5.701326 8.833985,-9.777346 8.206471,-5.120747 18.362038,-6.939399 29.449218,-8.189453 l -0.002,0.002 c 12.692341,-1.417585 24.540821,1.072088 36.416021,4.105469 0.001,3.52e-4 0.003,0.0016 0.004,0.002 7.77428,2.099903 11.28804,4.392172 14.77149,8.232422 L 136.89067,110.7677 h 59.48829 L 196.26953,60.484375 178.69922,75.5625 C 155.45708,62.81904 132.94472,56.46488 110.86328,55.177734 l -0.0332,-0.002 z" - id="path1089" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccccssccccccccccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1105);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 110.66602,59.173828 c 21.85549,1.279321 44.1271,7.596298 67.33203,20.535156 l 1.21679,0.679688 13.07422,-11.216797 0.082,37.595705 h -44.07617 l 8.4707,-6.777346 -1.29296,-1.566406 c -4.33134,-5.246893 -8.92177,-8.545279 -18.21875,-11.052734 l -0.0137,-0.0039 -0.0117,-0.002 C 125.24537,84.304154 112.85399,81.650804 99.375,83.15625 h -0.002 c -11.256521,1.269146 -22.066315,3.098826 -31.169922,8.796875 l -0.04492,0.0293 -0.04492,0.0293 c -6.068669,4.265919 -10.080175,7.905278 -10.55664,12.687505 -0.238233,2.39111 0.54342,4.81102 2.099609,7.20117 1.209076,1.85702 3.039146,3.80379 5.214844,5.86328 L 42.7547,137.59655 C 34.7432,132.39059 24.861423,120.96398 22.740191,111.54103 l -0.0098,-0.0371 -0.0098,-0.0371 C 19.818951,100.5554 25.485143,86.903826 43.193247,76.886745 l 0.0078,-0.0039 C 66.931404,64.006394 83.359241,58.474084 110.66602,59.173828 Z" - id="path1067" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccccccccccsscccccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 167.43359,147.51562 -1.23437,0.98047 -27.20703,21.60157 1.98047,1.5664 c 3.00426,2.37562 6.04914,5.29839 8.10351,8.41016 2.0314,3.07696 3.05979,6.22696 2.51563,9.39648 -1.18565,3.72975 -2.81167,5.45098 -6.56641,6.95118 -3.79797,1.51747 -9.82163,2.47367 -18.75,3.7207 -21.08895,2.41291 -31.561381,0.46408 -49.873046,-2.77344 h -0.002 c -6.967648,-1.29348 -11.45592,-3.91784 -14.84961,-7.64844 l 17.47461,-15.13672 -61.554688,1.39844 -0.107422,52.01563 17.480469,-12.26953 c 19.095925,11.45899 42.391568,15.97965 66.212887,17.77343 9.3378,1.20335 22.47049,0.13449 35.06055,-2.04687 12.59652,-2.18248 24.51815,-5.44035 31.48633,-9.02735 l 0.0312,-0.0176 0.0312,-0.0176 c 4.54299,-2.54842 10.86954,-6.53397 16.18945,-11.75586 5.31853,-5.22054 9.731,-11.7729 9.87305,-19.42774 0.23353,-7.99332 -2.11324,-16.3741 -7.36133,-23.7832 -5.14802,-7.54397 -10.13945,-13.03785 -17.69141,-18.93945 z" - id="path1083" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccscccccccccscccscccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1097);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 167.41209,152.64258 c 6.56255,5.29534 10.97951,10.18556 15.67187,17.0664 l 0.01,0.0156 0.01,0.0137 c 4.75502,6.71301 6.83685,14.23274 6.625,21.36914 v 0.0117 0.0117 c -0.11221,6.14279 -3.76565,11.83072 -8.67579,16.65039 -4.89911,4.80885 -10.94611,8.65129 -15.31054,11.10156 -6.17019,3.16909 -17.97912,6.49499 -30.30664,8.63086 -12.34351,2.13864 -25.33162,3.1219 -33.88086,2.01758 h -0.0117 l -0.01,-0.002 C 76.558685,228.54378 51.152804,220.47678 35.458984,211.66797 l -1.058593,-0.51367 -13.021485,9.13867 0.08203,-40.40039 46.546874,-1.05664 -12.068359,10.45312 1.162109,1.49805 c 4.08826,5.2672 10.005839,8.92821 18.585938,10.51758 l 0.0078,0.002 0.0078,0.002 c 18.311083,3.23741 29.546962,5.27013 51.052732,2.80664 l 0.0234,-0.004 0.0254,-0.002 c 8.966,-1.25204 15.13195,-2.14548 19.70508,-3.97266 4.57312,-1.82718 7.50435,-4.94167 8.95312,-9.60547 l 0.0352,-0.11523 0.0215,-0.11719 c 0.82327,-4.49868 -0.69305,-8.77559 -3.10547,-12.42969 -1.94249,-2.94231 -4.50317,-5.45106 -7.09765,-7.68555 z" - id="path1069" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccccscsccccccccccccccccscccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 100.12695,93.146484 42.078125,128.91797 v 26.04297 l 71.550785,43.6914 1.04492,-0.64453 56.01953,-34.56054 v -27.8125 z" - id="path1012" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1020);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 100.15035,97.830078 64.74609,38.984372 -51.30468,32.72657 -65.667972,-39.52735 z" - id="path1010" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1048);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 46.078085,133.57227 65.544925,39.45117 v 19.71875 L 46.078125,152.7168 Z" - id="path1008" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1034);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 166.69332,140.41406 v 20.80078 l -51.07031,31.50586 v -19.73047 z" - id="path943" - inkscape:connector-curvature="0" /> - <path - id="path945-1-1" - style="opacity:1;fill:#ffffff;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 93.035933,176.74911 v -9.59402 l 8.499647,5.12872 -0.0236,9.48471 z m -16.381088,-9.92304 v -9.59402 l 8.499646,5.12872 -0.02362,9.48471 z m -16.381086,-9.92304 v -9.59402 l 8.499646,5.12872 -0.02362,9.48471 z" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="676.596" height="676.116" viewBox="0 0 179.016 178.889"><style><![CDATA[.B{dominant-baseline:auto}]]></style><defs><linearGradient id="A" x1="106.908" y1="168.443" x2="107.175" y2="98.686" xlink:href="#F"><stop offset="0" stop-color="#b7e4fe"/><stop offset="1" stop-color="#09a3fc"/></linearGradient><linearGradient id="B" x1="143.442" y1="192.301" x2="143.064" y2="141.085" xlink:href="#F"><stop offset="0" stop-color="#0c2a9e"/><stop offset="1" stop-color="#7da6eb"/></linearGradient><linearGradient id="C" x1="78.619" y1="192.301" x2="79.375" y2="134.092" xlink:href="#F"><stop offset="0" stop-color="#0c7afc"/><stop offset="1" stop-color="#85c4fe"/></linearGradient><linearGradient id="D" x1="112.259" y1="228.964" x2="112.259" y2="154.125" xlink:href="#F"><stop offset="0" stop-color="#f07c10"/><stop offset="1" stop-color="#f6a21b"/></linearGradient><linearGradient id="E" x1="110.747" y1="133.714" x2="110.666" y2="59.174" xlink:href="#F"><stop offset="0" stop-color="#f9b922"/><stop offset="1" stop-color="#ffdf2e"/></linearGradient><linearGradient id="F" gradientUnits="userSpaceOnUse"/></defs><g transform="translate(-17.363 -55.115)"><path d="M110.8 55.174c-27.92-.72-45.503 5.166-69.514 18.195l-.016.01-.014.008c-18.777 10.61-25.84 26.1-22.406 39.076 2.528 11.162 13.54 23.662 22.825 29.292l1.1.668 1.063-.725 27.458-23.47-1.94-1.703c-3.02-2.65-5.115-4.913-6.348-6.807s-1.6-3.32-1.47-4.62c.258-2.59 3.046-5.7 8.834-9.777 8.206-5.12 18.362-6.94 29.45-8.19l-.002.002c12.692-1.418 24.54 1.072 36.416 4.105 7.778 2.102 11.292 4.394 14.775 8.234l-14.12 11.295h59.488l-.11-50.283-17.57 15.078c-23.242-12.743-45.755-19.098-67.836-20.385l-.033-.002z" fill="#fff" class="B"/><path d="M110.666 59.174c21.855 1.28 44.127 7.596 67.332 20.535l1.217.68 13.074-11.217.082 37.596h-44.076l8.47-6.777-1.293-1.566c-4.33-5.247-8.922-8.545-18.22-11.053l-.014-.004-.012-.002c-11.983-3.06-24.374-5.714-37.853-4.21h-.002c-11.257 1.27-22.066 3.1-31.17 8.797l-.1.06c-6.07 4.266-10.08 7.905-10.557 12.688-.238 2.39.543 4.81 2.1 7.2 1.21 1.857 3.04 3.804 5.215 5.863l-22.116 19.833c-8.01-5.206-17.893-16.633-20.015-26.056l-.02-.074c-2.902-10.91 2.765-24.563 20.473-34.58l.008-.004c23.73-12.876 40.158-18.41 67.465-17.71z" fill="url(#E)" class="B"/><path d="M167.434 147.516l-1.234.98-27.207 21.602 1.98 1.566c3.004 2.376 6.05 5.298 8.104 8.4 2.03 3.077 3.06 6.227 2.516 9.396-1.186 3.73-2.812 5.45-6.566 6.95-3.798 1.517-9.822 2.474-18.75 3.72-21.09 2.413-31.56.464-49.873-2.773H76.4c-6.968-1.293-11.456-3.918-14.85-7.648l17.475-15.137-61.555 1.398-.107 52.016 17.48-12.27c19.096 11.46 42.392 15.98 66.213 17.773 9.338 1.203 22.47.134 35.06-2.047 12.597-2.182 24.518-5.44 31.486-9.027l.062-.035c4.543-2.548 10.87-6.534 16.19-11.756s9.73-11.773 9.873-19.428c.234-7.993-2.113-16.374-7.36-23.783-5.148-7.544-10.14-13.038-17.69-18.94z" fill="#fff" class="B"/><path d="M167.412 152.643c6.563 5.295 10.98 10.186 15.672 17.066l.01.016.01.014c4.755 6.713 6.837 14.233 6.625 21.37v.023c-.112 6.143-3.766 11.83-8.676 16.65-4.9 4.81-10.946 8.65-15.31 11.102-6.17 3.17-17.98 6.495-30.307 8.63-12.344 2.14-25.332 3.122-33.88 2.018h-.012-.01c-24.975-.985-50.38-9.052-66.074-17.86l-1.06-.514-13.02 9.14.082-40.4 46.547-1.057L55.94 189.29l1.162 1.498c4.088 5.267 10.006 8.928 18.586 10.518l.016.004c18.31 3.237 29.547 5.27 51.053 2.807l.023-.004h.025c8.966-1.252 15.132-2.145 19.705-3.973s7.504-4.942 8.953-9.605l.035-.115.022-.117c.823-4.5-.693-8.776-3.105-12.43-1.942-2.942-4.503-5.45-7.098-7.686z" fill="url(#D)" class="B"/><path d="M100.127 93.146l-58.05 35.77v26.043l71.55 43.69 57.064-35.205v-27.812z" fill="#fff" class="B"/><path d="M100.15 97.83l64.746 38.984-51.305 32.727-65.668-39.527z" fill="url(#A)" class="B"/><path d="M46.078 133.572l65.545 39.45v19.72l-65.545-40.025z" fill="url(#C)" class="B"/><path d="M166.693 140.414v20.8l-51.07 31.506V173z" fill="url(#B)" class="B"/><path d="M93.036 176.75v-9.594l8.5 5.13-.024 9.485zm-16.38-9.923v-9.594l8.5 5.13-.024 9.485zm-16.38-9.923v-9.594l8.5 5.13-.024 9.485z" fill="#fff"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/tablet_pc.svg b/src/main/webapp/img/lib/active_directory/tablet_pc.svg index 2f9d0f4aa7077e6bf8664e03edcc25b92843c4d1..3eff0a40d1e9ad164b39063e119a6f65f12ac7a8 100644 --- a/src/main/webapp/img/lib/active_directory/tablet_pc.svg +++ b/src/main/webapp/img/lib/active_directory/tablet_pc.svg @@ -1,162 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="137.75975mm" - height="188.38451mm" - viewBox="0 0 137.75975 188.38451" - version="1.1" - id="svg1142" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="tablet_pc.svg"> - <defs - id="defs1136"> - <linearGradient - inkscape:collect="always" - id="linearGradient1210"> - <stop - style="stop-color:#82ccff;stop-opacity:1" - offset="0" - id="stop1206" /> - <stop - style="stop-color:#bfe5ff;stop-opacity:1" - offset="1" - id="stop1208" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1202"> - <stop - style="stop-color:#99ccff;stop-opacity:1" - offset="0" - id="stop1198" /> - <stop - style="stop-color:#056aff;stop-opacity:1" - offset="1" - id="stop1200" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1196"> - <stop - style="stop-color:#0d11a2;stop-opacity:1" - offset="0" - id="stop1192" /> - <stop - style="stop-color:#8cb0f6;stop-opacity:1" - offset="1" - id="stop1194" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1196" - id="linearGradient1190" - x1="166.50891" - y1="238.46797" - x2="165.97438" - y2="128.08565" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1202" - id="linearGradient1204" - x1="102.6315" - y1="67.148201" - x2="105.30419" - y2="239.26978" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1210" - id="linearGradient1212" - x1="48.376904" - y1="94.276962" - x2="171.56833" - y2="94.276962" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.98994949" - inkscape:cx="285.54009" - inkscape:cy="332.53168" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata1139"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-38.328129,-56.009466)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 56.845703,56.023438 c -1.603684,-0.100037 -3.240028,0.339492 -4.796875,1.242187 l -8.414062,4.439453 c -1.164168,0.604196 -2.265534,1.171232 -3.205078,1.828125 -0.471562,0.329697 -0.910716,0.678271 -1.308594,1.160156 -0.153923,0.186422 -0.176209,0.546176 -0.306641,0.794922 -0.06607,0.09727 -0.158019,0.154589 -0.21875,0.259766 l 0.09766,0.05664 c -0.12876,0.323245 -0.365234,0.541899 -0.365234,0.943359 V 173.28906 c 0,5.37945 0.968932,9.4506 2.84375,12.64453 1.874818,3.19394 4.599457,5.39946 7.722656,7.22071 l 0.05273,0.0312 0.05664,0.0273 99.480475,49.97656 0.0527,0.0215 c 2.97275,1.28272 6.95703,1.49075 9.73047,0.77734 l 0.24609,-0.0625 12.375,-6.81836 0.0469,-0.0293 c 2.94221,-1.84119 5.15234,-4.81209 5.15234,-8.16601 V 125.3457 c 0,-1.64262 -0.70599,-3.02545 -1.61133,-4.45508 -0.90534,-1.42962 -2.09125,-2.86856 -3.39258,-4.23437 -2.60265,-2.73163 -5.49192,-5.12739 -8.01171,-6.17383 l 0.1582,0.0742 -101.771487,-53.068359 -0.0039,-0.002 c -1.525334,-0.788905 -3.005691,-1.362854 -4.609375,-1.46289 z" - id="path1182" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1212);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 56.595703,60.015625 c 0.785856,0.04902 1.744205,0.36478 3.021485,1.025391 l 101.839842,53.103514 0.082,0.0332 c 1.31904,0.54779 4.3195,2.79394 6.64844,5.23829 1.16447,1.22217 2.20608,2.50342 2.91016,3.61523 0.33453,0.52827 0.31057,0.69811 0.4707,1.09961 l -12.18164,4.41602 c -0.87799,-5.37176 -4.13124,-10.91746 -9.35742,-13.95118 l -0.0508,-0.0293 -100.488286,-50.494144 -0.03125,-0.01563 c -0.327391,-0.150883 -0.724643,-0.214652 -1.082031,-0.332032 l 5.644531,-2.978515 0.03516,-0.01953 c 1.049473,-0.608508 1.753206,-0.759958 2.539062,-0.710937 z" - id="path1180" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1204);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 44.1875,67.080078 c 1.286155,-0.05718 2.858114,0.271184 3.59375,0.609375 7.77e-4,3.57e-4 0.0031,-3.57e-4 0.0039,0 l 100.25391,50.378907 c 4.62432,2.69604 7.73047,8.79066 7.73047,13.19141 v 108.88085 c -1.80686,0.0549 -4.47985,-0.10467 -5.63672,-0.5996 L 50.890625,189.68555 c -2.783549,-1.62563 -4.840388,-3.34266 -6.269531,-5.77735 -1.43252,-2.44044 -2.292969,-5.71369 -2.292969,-10.61914 V 67.664062 c 0.22294,-0.194014 0.733826,-0.533945 1.859375,-0.583984 z" - id="path1178" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1190);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 172.08789,128.19922 v 100.71289 c 0,1.36792 -1.30146,3.5321 -3.26367,4.76562 l -9.05469,4.99024 V 132.66211 Z" - id="path1159" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0066ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 61.042969,88.941406 a 2.250225,2.250225 0 0 0 -2.199219,2.25 v 85.662114 a 2.250225,2.250225 0 0 0 1.220703,2.00195 l 77.056637,39.64258 a 2.250225,2.250225 0 0 0 3.2793,-2 v -85.43946 a 2.250225,2.250225 0 0 0 -1.21484,-1.99804 L 62.126953,89.191406 a 2.250225,2.250225 0 0 0 -1.083984,-0.25 z" - id="path1174" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 63.34375,94.888672 72.55664,37.539058 v 80.38086 L 63.34375,175.48242 Z" - id="path1161" - inkscape:connector-curvature="0" /> - <path - style="opacity:1;fill:#003399;fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 123.03986,164.68397 c -1.99147,1.88209 -3.98295,2.26892 -5.97442,2.95757 -1.02821,-2.00943 -1.56775,-4.36985 -0.8963,-7.21628 L 155.37808,78.8622 c 1.90673,-3.192535 4.18186,-5.327206 7.08937,-3.852479 2.53702,1.615811 2.37934,6.591895 1.27428,8.616082 z" - id="path1163" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccc" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="520.668" height="712.006" viewBox="0 0 137.76 188.385"><style><![CDATA[.B{dominant-baseline:auto}]]></style><defs><linearGradient id="A" x1="166.509" y1="238.468" x2="165.974" y2="128.086" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#0d11a2"/><stop offset="1" stop-color="#8cb0f6"/></linearGradient><linearGradient id="B" x1="102.632" y1="67.148" x2="105.304" y2="239.27" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#9cf"/><stop offset="1" stop-color="#056aff"/></linearGradient><linearGradient id="C" x1="48.377" y1="94.277" x2="171.568" y2="94.277" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#82ccff"/><stop offset="1" stop-color="#bfe5ff"/></linearGradient></defs><g transform="translate(-38.328 -56.009)"><path d="M56.846 56.023c-1.604-.1-3.24.34-4.797 1.242l-8.414 4.44-3.205 1.828c-.472.33-.91.678-1.31 1.16-.154.186-.176.546-.307.795-.066.097-.158.155-.22.26l.098.057c-.13.323-.365.542-.365.943v106.54c0 5.38.97 9.45 2.844 12.645s4.6 5.4 7.723 7.22l.053.03.057.027 99.533 49.998c2.973 1.283 6.957 1.49 9.73.777l.246-.062 12.422-6.848c2.942-1.84 5.152-4.812 5.152-8.166V125.346c0-1.643-.706-3.025-1.61-4.455s-2.09-2.87-3.393-4.234c-2.603-2.732-5.492-5.127-8.012-6.174l.158.074-101.775-53.07c-1.525-.79-3.006-1.363-4.61-1.463z" fill="#fff" class="B"/><path d="M56.596 60.016c.786.05 1.744.365 3.02 1.025l101.922 53.137c1.32.548 4.32 2.794 6.648 5.238 1.164 1.222 2.206 2.503 2.9 3.615.335.528.31.698.47 1.1l-12.182 4.416c-.878-5.372-4.13-10.917-9.357-13.95l-.05-.03-100.52-50.5c-.327-.15-.725-.215-1.082-.332l5.68-2.998c1.05-.61 1.753-.76 2.54-.71z" fill="url(#C)" class="B"/><path d="M44.188 67.08c1.286-.057 2.858.27 3.594.61l100.258 50.38c4.624 2.696 7.73 8.79 7.73 13.19v108.88c-1.807.055-4.48-.105-5.637-.6L50.89 189.686c-2.784-1.626-4.84-3.343-6.27-5.777-1.433-2.44-2.293-5.714-2.293-10.62V67.664c.223-.194.734-.534 1.86-.584z" fill="url(#B)" class="B"/><path d="M172.088 128.2v100.713c0 1.368-1.3 3.532-3.264 4.766l-9.055 5V132.662z" fill="url(#A)" class="B"/><path d="M61.043 88.94a2.25 2.25 0 0 0-2.199 2.25v85.662a2.25 2.25 0 0 0 1.221 2.002l77.057 39.643a2.25 2.25 0 0 0 3.279-2v-85.44a2.25 2.25 0 0 0-1.215-1.998l-77.06-39.87a2.25 2.25 0 0 0-1.084-.25z" fill="#06f" class="B"/><path d="M63.344 94.89l72.557 37.54v80.38l-72.557-37.326z" fill="#fff" class="B"/><path d="M123.04 164.684c-1.99 1.882-3.983 2.27-5.974 2.958-1.028-2.01-1.568-4.37-.896-7.216l39.21-81.563c1.907-3.193 4.182-5.327 7.09-3.852 2.537 1.616 2.38 6.592 1.274 8.616z" fill="#039"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/tunnel.svg b/src/main/webapp/img/lib/active_directory/tunnel.svg index 543218f7e4b7f481b13c2060ba4e38093269b3eb..f0d86bd26eee2884220791bb0af12ea069808725 100644 --- a/src/main/webapp/img/lib/active_directory/tunnel.svg +++ b/src/main/webapp/img/lib/active_directory/tunnel.svg @@ -1,124 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="210.57617mm" - height="43.638672mm" - viewBox="0 0 210.57617 43.638672" - version="1.1" - id="svg3756" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="tunnel.svg"> - <defs - id="defs3750"> - <linearGradient - id="linearGradient3820" - inkscape:collect="always"> - <stop - id="stop3816" - offset="0" - style="stop-color:#1574ff;stop-opacity:1" /> - <stop - style="stop-color:#bee4ff;stop-opacity:1" - offset="0.5" - id="stop3822" /> - <stop - id="stop3818" - offset="1" - style="stop-color:#1473ff;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3787-4-5"> - <stop - style="stop-color:#b9dcfb;stop-opacity:1" - offset="0" - id="stop3783" /> - <stop - style="stop-color:#090a9e;stop-opacity:1" - offset="1" - id="stop3785" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3787-4-5" - id="linearGradient3789" - x1="11.920945" - y1="163.3889" - x2="12.189453" - y2="127.80469" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3820" - id="linearGradient3814" - gradientUnits="userSpaceOnUse" - x1="116.95312" - y1="162.82195" - x2="117.16825" - y2="128.04814" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.98994949" - inkscape:cx="258.2628" - inkscape:cy="87.341861" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" /> - <metadata - id="metadata3753"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(4.3632812,-123.80469)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 12.189453,123.80469 c -4.7538372,0 -8.9794028,2.64008 -11.9003905,6.60351 -2.9209877,3.96344 -4.6523437,9.28954 -4.6523437,15.11719 0,5.82765 1.7291944,11.19482 4.6445312,15.20508 2.9153368,4.01026 7.1380321,6.7129 11.908203,6.71289 0.08949,0 0.170663,-0.0352 0.259766,-0.0371 v 0.0371 H 190.65234 c 3.55064,0 7.10878,-2.51736 10.15235,-6.40039 3.04357,-3.88303 5.4082,-9.35187 5.4082,-15.79102 0,-5.33738 -1.81655,-10.56535 -4.79883,-14.57226 -2.98228,-4.00692 -7.25325,-6.875 -12.12304,-6.875 H 12.332031 v 0.0195 c -0.04893,-5.6e-4 -0.09354,-0.0195 -0.142578,-0.0195 z" - id="path3781" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient3789);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 12.189453,127.80469 c 3.283057,0 6.333857,1.79355 8.679688,4.97656 2.345831,3.18301 3.873047,7.71676 3.873047,12.74414 0,5.02738 -1.529378,9.61888 -3.88086,12.85352 -2.351482,3.23463 -5.40515,5.06445 -8.671875,5.06445 -3.2667231,0 -6.320393,-1.82982 -8.6718749,-5.06445 -2.3514819,-3.23464 -3.88085935,-7.82614 -3.88085935,-12.85352 0,-5.02738 1.52721585,-9.56113 3.87304685,-12.74414 2.345831,-3.18301 5.3966306,-4.97656 8.6796874,-4.97656 z" - id="path3779" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient3814);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 21.755859,127.80469 H 189.29102 c 3.28405,0 6.47353,1.98269 8.91406,5.26172 2.44052,3.27903 4.00781,7.77388 4.00781,12.18554 0,5.45647 -2.01809,10.08355 -4.55664,13.32227 -2.53855,3.23872 -5.76047,4.86914 -7.00391,4.86914 H 21.703125 c 0.869526,-0.81074 1.673423,-1.72095 2.394531,-2.71289 2.915337,-4.01026 4.644531,-9.37743 4.644532,-15.20508 0,-5.82765 -1.731357,-11.15375 -4.652344,-15.11719 -0.703267,-0.95425 -1.490352,-1.8211 -2.333985,-2.60351 z" - id="path3771" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="795.878" height="164.935" viewBox="0 0 210.576 43.639"><defs><linearGradient id="A" x1="11.921" y1="163.389" x2="12.189" y2="127.805" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#b9dcfb"/><stop offset="1" stop-color="#090a9e"/></linearGradient><linearGradient id="B" x1="116.953" y1="162.822" x2="117.168" y2="128.048" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#1574ff"/><stop offset=".5" stop-color="#bee4ff"/><stop offset="1" stop-color="#1473ff"/></linearGradient></defs><g transform="translate(4.363 -123.805)"><path d="M12.19 123.805c-4.754 0-8.98 2.64-11.9 6.604s-4.652 9.3-4.652 15.117S-2.634 156.72.28 160.73s7.138 6.713 11.908 6.713c.09 0 .17-.035.26-.037v.037h178.203c3.55 0 7.11-2.517 10.152-6.4s5.408-9.352 5.408-15.79c0-5.337-1.817-10.565-4.8-14.572s-7.253-6.875-12.123-6.875H12.332v.02c-.05-.001-.094-.02-.143-.02z" dominant-baseline="auto" fill="#fff"/><path d="M12.19 127.805c3.283 0 6.334 1.794 8.68 4.977s3.873 7.717 3.873 12.744-1.53 9.62-3.88 12.854-5.405 5.064-8.672 5.064-6.32-1.83-8.672-5.064-3.88-7.826-3.88-12.854 1.527-9.56 3.873-12.744 5.397-4.977 8.68-4.977z" dominant-baseline="auto" fill="url(#A)"/><path d="M21.756 127.805H189.29c3.284 0 6.474 1.983 8.914 5.262s4.008 7.774 4.008 12.186c0 5.456-2.018 10.084-4.557 13.322s-5.76 4.87-7.004 4.87H21.703a18.92 18.92 0 0 0 2.395-2.713c2.915-4 4.645-9.377 4.645-15.205s-1.73-11.154-4.652-15.117a18.63 18.63 0 0 0-2.334-2.604z" dominant-baseline="auto" fill="url(#B)"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/user.svg b/src/main/webapp/img/lib/active_directory/user.svg index 1528cd8d03f8fe91359ea32a74e1d009589e0dab..c05aee076b4302dffb087c2298fe9d184e906d16 100644 --- a/src/main/webapp/img/lib/active_directory/user.svg +++ b/src/main/webapp/img/lib/active_directory/user.svg @@ -1,204 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="67.634766mm" - height="178.04688mm" - viewBox="0 0 67.634766 178.04688" - version="1.1" - id="svg1100" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="user.svg"> - <defs - id="defs1094"> - <linearGradient - inkscape:collect="always" - id="linearGradient1188"> - <stop - style="stop-color:#107cfc;stop-opacity:1" - offset="0" - id="stop1184" /> - <stop - style="stop-color:#edf5ff;stop-opacity:1" - offset="1" - id="stop1186" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1182"> - <stop - style="stop-color:#3bb6fc;stop-opacity:1" - offset="0" - id="stop1178" /> - <stop - style="stop-color:#aee0fe;stop-opacity:1" - offset="1" - id="stop1180" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1166"> - <stop - style="stop-color:#0b299d;stop-opacity:1" - offset="0" - id="stop1162" /> - <stop - style="stop-color:#8cb7f5;stop-opacity:1" - offset="1" - id="stop1164" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1158"> - <stop - style="stop-color:#0a289c;stop-opacity:1" - offset="0" - id="stop1154" /> - <stop - style="stop-color:#7fa9ec;stop-opacity:1" - offset="1" - id="stop1156" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1150"> - <stop - style="stop-color:#0978fc;stop-opacity:1" - offset="0" - id="stop1146" /> - <stop - style="stop-color:#92ccfe;stop-opacity:1" - offset="1" - id="stop1148" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1150" - id="linearGradient1152" - x1="100.99443" - y1="235.9617" - x2="100.89886" - y2="100.18879" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1158" - id="linearGradient1160" - x1="124.77986" - y1="231.99921" - x2="123.875" - y2="170.95703" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1166" - id="linearGradient1168" - x1="132.04297" - y1="171.97266" - x2="132.27324" - y2="112.44965" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1182" - id="linearGradient1176" - x1="111.45139" - y1="93.60788" - x2="111.71867" - y2="114.72218" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1188" - id="linearGradient1190" - x1="112.52047" - y1="97.884193" - x2="112.25391" - y2="65.941406" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.7" - inkscape:cx="281.88463" - inkscape:cy="295.62542" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata1097"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-76.935547,-61.941406)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 97.732422,87.09375 -20.796875,8.302734 0.164062,59.076176 7.535157,3.69726 -0.3125,67.00196 30.464844,14.8164 0.82617,-0.33594 20.5586,-8.35937 -0.13282,-60.93359 8.53125,-3.45118 -0.25586,-58.96289 z" - id="path1144" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1176);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 97.642578,91.435547 137.2207,109.15039 121.94727,115.3418 83.894531,96.925781 Z" - id="path1142" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1152);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 80.949219,99.945312 119.875,118.78125 v 51.93945 l -7.12305,-3.47851 0.10352,67.35937 -11.39695,-5.84366 v -54.43554 l -4.000001,-2.00452 v 54.49475 l -9.124535,-4.13681 0.3125,-66.99219 -7.554687,-3.70703 z" - id="path1140" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1168);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 140.33398,112.20703 0.22461,52.00977 -7.27148,2.93945 -9.41211,3.80078 V 118.875 Z" - id="path1138" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1160);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 132.04297,171.97266 0.12305,56.63086 -15.31055,6.22656 -0.0937,-61.17969 5.03711,2.46094 z" - id="path1121" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 112.25391,61.941406 c -11.19209,0 -20.308598,9.114552 -20.308598,20.306641 0,11.192089 9.116508,20.308593 20.308598,20.308593 11.19208,0 20.30664,-9.116504 20.30664,-20.308593 0,-11.192089 -9.11456,-20.306641 -20.30664,-20.306641 z" - id="path1132" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1190);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 112.25391,65.941406 c 9.03032,0 16.30664,7.276313 16.30664,16.306641 0,9.030328 -7.27632,16.308594 -16.30664,16.308594 -9.03033,0 -16.308598,-7.278266 -16.308598,-16.308594 0,-9.030328 7.278268,-16.306641 16.308598,-16.306641 z" - id="path1123" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="255.628" height="672.934" viewBox="0 0 67.635 178.047"><style><![CDATA[.B{dominant-baseline:auto}]]></style><defs><linearGradient id="A" x1="100.994" y1="235.962" x2="100.899" y2="100.189" xlink:href="#F"><stop offset="0" stop-color="#0978fc"/><stop offset="1" stop-color="#92ccfe"/></linearGradient><linearGradient id="B" x1="124.78" y1="231.999" x2="123.875" y2="170.957" xlink:href="#F"><stop offset="0" stop-color="#0a289c"/><stop offset="1" stop-color="#7fa9ec"/></linearGradient><linearGradient id="C" x1="132.043" y1="171.973" x2="132.273" y2="112.45" xlink:href="#F"><stop offset="0" stop-color="#0b299d"/><stop offset="1" stop-color="#8cb7f5"/></linearGradient><linearGradient id="D" x1="111.451" y1="93.608" x2="111.719" y2="114.722" xlink:href="#F"><stop offset="0" stop-color="#3bb6fc"/><stop offset="1" stop-color="#aee0fe"/></linearGradient><linearGradient id="E" x1="112.52" y1="97.884" x2="112.254" y2="65.941" xlink:href="#F"><stop offset="0" stop-color="#107cfc"/><stop offset="1" stop-color="#edf5ff"/></linearGradient><linearGradient id="F" gradientUnits="userSpaceOnUse"/></defs><g transform="translate(-76.936 -61.941)" class="B"><path d="M97.732 87.094l-20.797 8.303.164 59.076 7.535 3.697-.312 67.002 30.465 14.816 21.385-8.695-.133-60.934 8.53-3.45-.256-58.963z" fill="#fff"/><path d="M97.643 91.436l39.578 17.715-15.273 6.19-38.053-18.416z" fill="url(#D)"/><path d="M80.95 99.945l38.926 18.836v51.94l-7.123-3.48.104 67.36-11.397-5.844v-54.436l-4-2.005v54.495l-9.125-4.137.313-66.992-7.555-3.707z" fill="url(#A)"/><path d="M140.334 112.207l.225 52-7.27 2.94-9.412 3.8v-52.082z" fill="url(#C)"/><path d="M132.043 171.973l.123 56.63-15.31 6.227-.094-61.18 5.037 2.46z" fill="url(#B)"/><path d="M112.254 61.94c-11.192 0-20.31 9.115-20.31 20.307s9.117 20.31 20.31 20.31 20.307-9.117 20.307-20.31-9.115-20.307-20.307-20.307z" fill="#fff" paint-order="normal"/><path d="M112.254 65.94c9.03 0 16.307 7.276 16.307 16.307a16.28 16.28 0 1 1-32.615 0 16.28 16.28 0 0 1 16.309-16.307z" fill="url(#E)" paint-order="normal"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/user_accounts.svg b/src/main/webapp/img/lib/active_directory/user_accounts.svg index 88eef5820cb09b57d9f8b8031c61497432fb2d9e..0df9d887827e0ece53880eb961e1e33a5bcdaf3c 100644 --- a/src/main/webapp/img/lib/active_directory/user_accounts.svg +++ b/src/main/webapp/img/lib/active_directory/user_accounts.svg @@ -1,207 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="169.77995mm" - height="165.50591mm" - viewBox="0 0 169.77995 165.50591" - version="1.1" - id="svg1198" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="user_accounts.svg"> - <defs - id="defs1192"> - <linearGradient - id="linearGradient1317" - inkscape:collect="always"> - <stop - id="stop1313" - offset="0" - style="stop-color:#0475fc;stop-opacity:1" /> - <stop - id="stop1315" - offset="1" - style="stop-color:#95cdfe;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1295"> - <stop - style="stop-color:#f6faff;stop-opacity:1" - offset="0" - id="stop1291" /> - <stop - style="stop-color:#85bdfd;stop-opacity:1" - offset="1" - id="stop1293" /> - </linearGradient> - <linearGradient - id="linearGradient1281" - inkscape:collect="always"> - <stop - id="stop1277" - offset="0" - style="stop-color:#6d92dd;stop-opacity:1" /> - <stop - id="stop1279" - offset="1" - style="stop-color:#94c0fb;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1251"> - <stop - style="stop-color:#c0ddfe;stop-opacity:1" - offset="0" - id="stop1247" /> - <stop - style="stop-color:#0a78fc;stop-opacity:1" - offset="1" - id="stop1249" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1251" - id="linearGradient1253" - x1="99.154297" - y1="153.79688" - x2="180.84961" - y2="153.79688" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1281" - id="linearGradient1275" - x1="148.06732" - y1="107.77316" - x2="148.06732" - y2="69.286354" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1295" - id="linearGradient1297" - x1="52.419731" - y1="153.25671" - x2="137.3457" - y2="153.25671" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1317" - id="linearGradient1311" - x1="84.457169" - y1="176.46144" - x2="83.92263" - y2="69.820892" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.35" - inkscape:cx="-367.23743" - inkscape:cy="705.55843" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata1195"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-17.39974,-64.957031)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 105.07031,76.126953 94.882812,230.45117 146.72656,230.30664 v -1.99414 -47.02734 l 14.92774,0.12304 10.20898,-9.14258 -0.26172,-18.60742 15.57813,-5.76953 -15.21875,-21.01562 8.78125,-32.046878 z" - id="path1245" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1253);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 108.74609,81.154297 67.05274,16.570312 -8.20313,29.941411 13.25391,18.30273 -13.28711,4.91992 0.27539,19.61133 -7.69922,6.89453 -17.41211,-0.14258 v 49.06641 l -43.572263,0.12109 z" - id="path1215" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 114.90039,64.957031 -19.273437,7.148438 32.822267,41.906251 22.92187,-16.945314 11.38868,-0.07031 10.87109,11.271484 8.61719,-1.43555 0.20312,-1.45508 3.02344,-21.683589 -28.8457,-18.736328 z" - id="path1267" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1275);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 115.61914,68.957031 h 39.82422 l 25.71875,16.705078 -2.46875,17.707031 -3.64453,0.60742 -10.59961,-10.990232 -14.40625,0.08789 -20.84375,15.408202 -27.04492,-34.531249 z" - id="path1217" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 151.30664,198.4668 -1.01562,4.43945 c -1.7715,7.74315 -4.22923,11.90851 -7.42969,15.08789 -3.20047,3.17938 -7.34525,5.41445 -12.45313,8.76563 l -5.58984,3.66796 6.68555,0.004 41.82031,0.0312 z" - id="path1230" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0073fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 153,207.98242 12.71289,18.47461 -27.36328,-0.0195 c 2.63483,-1.69165 5.12747,-3.41738 7.33008,-5.60547 3.04364,-3.02358 5.48726,-7.05161 7.32031,-12.84961 z" - id="path1221" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 118.10938,82.068359 -66.320318,16.371094 -3.214843,73.263667 -0.166016,46.5586 1.783203,0.19922 54.318364,6.08594 0.008,-43.35352 17.18554,0.008 5.45118,-6.85547 -0.15821,-19.76172 16.88477,-5.97656 -16.52344,-21.46094 10.10156,-28.77148 z" - id="path1289" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1297);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 117.08789,86.439453 15.68164,13.214844 -9.9043,28.214843 14.48047,18.80664 -14.37304,5.08789 0.16992,21.20117 -3.36719,4.23633 -19.25781,-0.01 -0.008,42.88281 -48.089848,-5.38867 0.152344,-42.88672 3.082031,-70.19336 z" - id="path1213" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 55.195312,64.957031 -31.271484,26.386719 0.06836,60.81445 25.390624,28.94727 8.978516,0.28515 0.613281,-0.95507 13.886719,-21.65625 -8.021484,-11.25782 -2.480469,-10.7207 3.689453,-9.16601 22.796875,-7.24805 13.179687,-16.43945 9.35742,-6.939458 10.05078,-0.05859 10.75586,11.089838 9.00782,-0.74218 3.41992,-23.482424 -28.75977,-18.857422 z" - id="path1303" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1311);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 56.65625,68.957031 h 58.00586 l 25.62891,16.804688 -2.59375,17.810551 -3.95313,0.32617 -10.62695,-10.958987 -13.06641,0.07617 -10.822264,8.027347 -12.746094,15.89844 -23.441406,7.45312 -4.861328,12.08203 2.941406,12.72071 6.914062,9.69921 -11.816406,18.42383 -4.974609,-0.1582 -23.253907,-26.51172 -0.06445,-57.451173 z" - id="path1219" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 56.919273,187.25977 -20.957032,0.31835 -18.562501,42.86719 h 3.046875 l 114.736345,-0.0137 -24.13673,-37.27539 -0.56641,5.67969 c -0.50971,5.10407 -2.85715,8.47308 -5.95899,11.40234 -2.82113,2.66418 -6.224881,4.85329 -9.222651,7.29492 -11.192957,-3.11828 -20.955813,-6.84504 -27.757813,-10.93554 -7.000752,-4.21004 -10.621093,-8.62808 -10.621093,-12.65039 z" - id="path1238" - inkscape:connector-curvature="0" /> - <path - id="path1223" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#003c97;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 113.34311,204.06445 14.48243,22.36719 -39.496111,0.006 c 2.60976,-1.35655 5.145511,-2.89474 7.642578,-4.52734 l 0.210937,0.0586 0.806641,-0.69727 c 2.790173,-2.41157 6.761285,-4.80455 10.277345,-8.125 2.51449,-2.37459 4.75512,-5.34325 6.07618,-9.08203 z M 52.919273,191.32227 v 2.625 c 0,6.26687 5.040169,11.5556 12.560546,16.07812 6.542107,3.93422 15.461429,7.3075 25.394532,10.27149 -3.997825,2.40272 -8.079684,4.54368 -12.339844,6.14062 l -55.04297,0.008 15.115236,-34.9082 z" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="641.688" height="625.534" viewBox="0 0 169.78 165.506"><style><![CDATA[.B{dominant-baseline:auto}.C{fill:#fff}]]></style><defs><linearGradient id="A" x1="99.154" y1="153.797" x2="180.85" y2="153.797" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#c0ddfe"/><stop offset="1" stop-color="#0a78fc"/></linearGradient><linearGradient id="B" x1="148.067" y1="107.773" x2="148.067" y2="69.286" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#6d92dd"/><stop offset="1" stop-color="#94c0fb"/></linearGradient><linearGradient id="C" x1="52.42" y1="153.257" x2="137.346" y2="153.257" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#f6faff"/><stop offset="1" stop-color="#85bdfd"/></linearGradient><linearGradient id="D" x1="84.457" y1="176.461" x2="83.923" y2="69.821" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#0475fc"/><stop offset="1" stop-color="#95cdfe"/></linearGradient></defs><g transform="translate(-17.4 -64.957)" class="B"><path d="M105.07 76.127L94.883 230.45l51.844-.145v-49.02l14.928.123 10.21-9.143-.262-18.607 15.578-5.77-15.22-21.016 8.78-32.047z" class="C"/><path d="M108.746 81.154l67.053 16.57-8.203 29.94 13.254 18.303-13.287 4.92.275 19.61-7.7 6.895-17.412-.143v49.066l-43.572.12z" fill="url(#A)"/><path d="M114.9 64.957l-19.273 7.148 32.822 41.906 22.922-16.945 11.39-.07 10.87 11.27 8.617-1.436 3.227-23.14-28.846-18.736z" class="C"/><path d="M115.62 68.957h39.824l25.72 16.705-2.47 17.707-3.645.607-10.6-11-14.406.088-20.844 15.408-27.045-34.53z" fill="url(#B)"/><path d="M151.307 198.467l-1.016 4.44c-1.772 7.743-4.23 11.91-7.43 15.088s-7.345 5.414-12.453 8.766l-5.6 3.668 48.506.035z" class="C"/><path d="M153 207.982l12.713 18.475-27.363-.02c2.635-1.692 5.127-3.417 7.33-5.605 3.044-3.024 5.487-7.052 7.32-12.85z" fill="#0073fc"/><path d="M118.11 82.068L51.79 98.44l-3.215 73.264-.166 46.56 1.783.2 54.318 6.086.008-43.354 17.186.008 5.45-6.855-.158-19.762 16.885-5.977-16.523-21.46 10.102-28.77z" class="C"/><path d="M117.088 86.44l15.682 13.215-9.904 28.215 14.48 18.807-14.373 5.088.17 21.2-3.367 4.236-19.258-.01-.008 42.883-48.1-5.39.152-42.887 3.082-70.193z" fill="url(#C)"/><path d="M55.195 64.957l-31.27 26.387.068 60.814 25.39 28.947 8.98.285.613-.955L72.86 158.78l-8.02-11.258-2.48-10.72 3.69-9.166 22.797-7.248 13.18-16.44 9.357-6.94 10.05-.06 10.756 11.1 9.008-.742 3.42-23.482-28.76-18.857z" class="C"/><path d="M56.656 68.957h58.006l25.63 16.805-2.594 17.81-3.953.326-10.627-10.96-13.066.076-10.822 8.027-12.746 15.898-23.44 7.453-4.86 12.082 2.94 12.72 6.914 9.7L56.22 177.32l-4.975-.158L28 150.65l-.064-57.45z" fill="url(#D)"/><path d="M56.92 187.26l-20.957.318L17.4 230.445l117.783-.014-24.137-37.275-.566 5.68c-.5 5.104-2.857 8.473-5.96 11.402-2.82 2.664-6.225 4.853-9.223 7.295-11.193-3.118-20.956-6.845-27.758-10.936-7-4.2-10.62-8.628-10.62-12.65z" class="C"/><path d="M113.343 204.064l14.482 22.367-39.496.006c2.6-1.357 5.146-2.895 7.643-4.527l.21.06.807-.697c2.8-2.412 6.76-4.805 10.277-8.125 2.514-2.375 4.755-5.343 6.076-9.082zM52.92 191.322v2.625c0 6.267 5.04 11.556 12.56 16.078 6.542 3.934 15.46 7.308 25.395 10.27-3.998 2.403-8.08 4.544-12.34 6.14l-55.043.008 15.115-34.908z" fill="#003c97"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/users.svg b/src/main/webapp/img/lib/active_directory/users.svg index 329e96c3de79bf622c2eb4f746918c0bd26344e2..2dd1463bc8c73cb87fee2e7388274f819812026d 100644 --- a/src/main/webapp/img/lib/active_directory/users.svg +++ b/src/main/webapp/img/lib/active_directory/users.svg @@ -1,381 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="145.12579mm" - height="219.6286mm" - viewBox="0 0 145.12579 219.6286" - version="1.1" - id="svg1100" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="users.svg"> - <defs - id="defs1094"> - <linearGradient - inkscape:collect="always" - id="linearGradient1188"> - <stop - style="stop-color:#107cfc;stop-opacity:1" - offset="0" - id="stop1184" /> - <stop - style="stop-color:#edf5ff;stop-opacity:1" - offset="1" - id="stop1186" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1182"> - <stop - style="stop-color:#3bb6fc;stop-opacity:1" - offset="0" - id="stop1178" /> - <stop - style="stop-color:#aee0fe;stop-opacity:1" - offset="1" - id="stop1180" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1166"> - <stop - style="stop-color:#0b299d;stop-opacity:1" - offset="0" - id="stop1162" /> - <stop - style="stop-color:#8cb7f5;stop-opacity:1" - offset="1" - id="stop1164" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1158"> - <stop - style="stop-color:#0a289c;stop-opacity:1" - offset="0" - id="stop1154" /> - <stop - style="stop-color:#7fa9ec;stop-opacity:1" - offset="1" - id="stop1156" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1150"> - <stop - style="stop-color:#0978fc;stop-opacity:1" - offset="0" - id="stop1146" /> - <stop - style="stop-color:#92ccfe;stop-opacity:1" - offset="1" - id="stop1148" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1150" - id="linearGradient1152" - x1="100.99443" - y1="235.9617" - x2="100.89886" - y2="100.18879" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(37.797619,-12.095238)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1158" - id="linearGradient1160" - x1="124.77986" - y1="231.99921" - x2="123.875" - y2="170.95703" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(37.797619,-12.095238)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1166" - id="linearGradient1168" - x1="132.04297" - y1="171.97266" - x2="132.27324" - y2="112.44965" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(37.797619,-12.095238)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1182" - id="linearGradient1176" - x1="111.45139" - y1="93.60788" - x2="111.71867" - y2="114.72218" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(37.797619,-12.095238)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1188" - id="linearGradient1190" - x1="112.52047" - y1="97.884193" - x2="112.25391" - y2="65.941406" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(37.797619,-12.095238)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1188" - id="linearGradient1190-1" - x1="112.52047" - y1="97.884193" - x2="112.25391" - y2="65.941406" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-39.693406,-5.1553192)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1158" - id="linearGradient1160-4" - x1="124.77986" - y1="231.99921" - x2="123.875" - y2="170.95703" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-39.693406,-5.1553192)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1166" - id="linearGradient1168-9" - x1="132.04297" - y1="171.97266" - x2="132.27324" - y2="112.44965" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-39.693406,-5.1553192)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1150" - id="linearGradient1152-9" - x1="100.99443" - y1="235.9617" - x2="100.89886" - y2="100.18879" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-39.693406,-5.1553192)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1182" - id="linearGradient1176-4" - x1="111.45139" - y1="93.60788" - x2="111.71867" - y2="114.72218" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-39.693406,-5.1553192)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1188" - id="linearGradient1190-6" - x1="112.52047" - y1="97.884193" - x2="112.25391" - y2="65.941406" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(19.562056,29.486531)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1158" - id="linearGradient1160-8" - x1="124.77986" - y1="231.99921" - x2="123.875" - y2="170.95703" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(19.562056,29.486531)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1166" - id="linearGradient1168-1" - x1="132.04297" - y1="171.97266" - x2="132.27324" - y2="112.44965" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(19.562056,29.486531)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1150" - id="linearGradient1152-3" - x1="100.99443" - y1="235.9617" - x2="100.89886" - y2="100.18879" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(19.562056,29.486531)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1182" - id="linearGradient1176-41" - x1="111.45139" - y1="93.60788" - x2="111.71867" - y2="114.72218" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(19.562056,29.486531)" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.7" - inkscape:cx="677.0237" - inkscape:cy="398.09488" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata1097"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-37.242144,-49.846168)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 135.53004,74.998512 -20.79687,8.302734 0.16406,59.076174 7.53516,3.69726 -0.3125,67.00196 30.46484,14.8164 0.82617,-0.33594 20.5586,-8.35937 -0.13282,-60.93359 8.53125,-3.45118 -0.25586,-58.962888 z" - id="path1144" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1176);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 135.4402,79.340309 39.57812,17.714843 -15.27343,6.191408 -38.05274,-18.416017 z" - id="path1142" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1152);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 118.74684,87.850074 38.92578,18.835936 v 51.93945 l -7.12305,-3.47851 0.10352,67.35937 -11.39695,-5.84366 v -54.43554 l -4,-2.00452 v 54.49475 l -9.12454,-4.13681 0.3125,-66.99219 -7.55468,-3.70703 z" - id="path1140" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1168);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 178.1316,100.11179 0.22461,52.00977 -7.27148,2.93945 -9.41211,3.80078 v -52.08203 z" - id="path1138" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1160);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 169.84059,159.87742 0.12305,56.63086 -15.31055,6.22656 -0.0937,-61.17969 5.03711,2.46094 z" - id="path1121" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 150.05153,49.846168 c -11.19209,0 -20.3086,9.114552 -20.3086,20.306641 0,11.192089 9.11651,20.308593 20.3086,20.308593 11.19208,0 20.30664,-9.116504 20.30664,-20.308593 0,-11.192089 -9.11456,-20.306641 -20.30664,-20.306641 z" - id="path1132" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1190);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 150.05153,53.846168 c 9.03032,0 16.30664,7.276313 16.30664,16.306641 0,9.030328 -7.27632,16.308594 -16.30664,16.308594 -9.03033,0 -16.3086,-7.278266 -16.3086,-16.308594 0,-9.030328 7.27827,-16.306641 16.3086,-16.306641 z" - id="path1123" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 58.039014,81.938435 -20.79687,8.30273 0.16406,59.076175 7.53516,3.69726 -0.3125,67.00195 30.464842,14.8164 0.826169,-0.33594 20.558599,-8.35937 -0.132819,-60.93359 8.531245,-3.45118 -0.25586,-58.96288 z" - id="path1144-1" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1176-4);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 57.949174,86.280235 97.527295,103.99507 82.253865,110.18648 44.201124,91.770465 Z" - id="path1142-3" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1152-9);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 41.255814,94.789995 38.925781,18.835935 v 51.93944 l -7.123051,-3.47851 0.103521,67.35937 -11.396951,-5.84366 v -54.43554 l -4,-2.00452 v 54.49475 l -9.12454,-4.13681 0.3125,-66.99218 -7.55468,-3.70703 z" - id="path1140-3" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1168-9);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 100.64058,107.05171 0.22461,52.00976 -7.271484,2.93945 -9.412111,3.80078 v -52.08202 z" - id="path1138-4" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1160-4);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 92.349563,166.81733 0.123053,56.63086 -15.310551,6.22656 -0.0937,-61.17969 5.037108,2.46094 z" - id="path1121-0" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 72.560505,56.786085 c -11.192091,0 -20.308601,9.11456 -20.308601,20.30665 0,11.19208 9.11651,20.30859 20.308601,20.30859 11.192079,0 20.306639,-9.11651 20.306639,-20.30859 0,-11.19209 -9.11456,-20.30665 -20.306639,-20.30665 z" - id="path1132-8" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1190-1);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 72.560505,60.786085 c 9.030319,0 16.306639,7.27632 16.306639,16.30665 0,9.03032 -7.27632,16.30859 -16.306639,16.30859 -9.030331,0 -16.308601,-7.27827 -16.308601,-16.30859 0,-9.03033 7.27827,-16.30665 16.308601,-16.30665 z" - id="path1123-5" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 117.29442,116.58024 -20.796849,8.30274 0.16406,59.07617 7.535139,3.69726 -0.3125,67.00196 30.46484,14.8164 0.82617,-0.33594 20.5586,-8.35937 -0.13282,-60.93359 8.53125,-3.45118 -0.25586,-58.96289 z" - id="path1144-11" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1176-41);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 117.20458,120.92204 39.57812,17.71485 -15.27343,6.1914 -38.05274,-18.41601 z" - id="path1142-7" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1152-3);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 100.51122,129.43181 38.92578,18.83593 v 51.93945 l -7.12305,-3.47851 0.10352,67.35937 -11.39695,-5.84366 v -54.43554 l -4,-2.00452 v 54.49475 l -9.12454,-4.13681 0.3125,-66.99219 -7.55468,-3.70703 z" - id="path1140-2" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1168-1);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 159.89598,141.69352 0.22461,52.00977 -7.27148,2.93945 -9.41211,3.80078 v -52.08203 z" - id="path1138-6" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1160-8);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 151.60497,201.45915 0.12305,56.63086 -15.31055,6.22656 -0.0937,-61.17969 5.03711,2.46094 z" - id="path1121-4" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 131.81591,91.427939 c -11.19209,0 -20.3086,9.114511 -20.3086,20.306601 0,11.19209 9.11651,20.3086 20.3086,20.3086 11.19208,0 20.30664,-9.11651 20.30664,-20.3086 0,-11.19209 -9.11456,-20.306601 -20.30664,-20.306601 z" - id="path1132-0" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1190-6);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 131.81591,95.427927 c 9.03032,0 16.30664,7.276283 16.30664,16.306613 0,9.03033 -7.27632,16.3086 -16.30664,16.3086 -9.03033,0 -16.3086,-7.27827 -16.3086,-16.3086 0,-9.03033 7.27827,-16.306613 16.3086,-16.306613 z" - id="path1123-7" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="548.508" height="830.094" viewBox="0 0 145.126 219.629"><style><![CDATA[.B{dominant-baseline:auto}.C{fill:#fff}]]></style><defs><linearGradient id="A" xlink:href="#Y"><stop offset="0" stop-color="#107cfc"/><stop offset="1" stop-color="#edf5ff"/></linearGradient><linearGradient id="B" xlink:href="#Y"><stop offset="0" stop-color="#3bb6fc"/><stop offset="1" stop-color="#aee0fe"/></linearGradient><linearGradient id="C" xlink:href="#Y"><stop offset="0" stop-color="#0b299d"/><stop offset="1" stop-color="#8cb7f5"/></linearGradient><linearGradient id="D" xlink:href="#Y"><stop offset="0" stop-color="#0a289c"/><stop offset="1" stop-color="#7fa9ec"/></linearGradient><linearGradient id="E" xlink:href="#Y"><stop offset="0" stop-color="#0978fc"/><stop offset="1" stop-color="#92ccfe"/></linearGradient><linearGradient xlink:href="#E" id="F" x1="138.792" y1="223.866" x2="138.696" y2="88.094"/><linearGradient xlink:href="#D" id="G" x1="162.577" y1="219.904" x2="161.673" y2="158.862"/><linearGradient xlink:href="#C" id="H" x1="169.841" y1="159.877" x2="170.071" y2="100.354"/><linearGradient xlink:href="#B" id="I" x1="149.249" y1="81.513" x2="149.516" y2="102.627"/><linearGradient xlink:href="#A" id="J" x1="150.318" y1="85.789" x2="150.052" y2="53.846"/><linearGradient xlink:href="#A" id="K" x1="150.319" y1="85.789" x2="150.053" y2="53.846"/><linearGradient xlink:href="#D" id="L" x1="162.576" y1="219.904" x2="161.672" y2="158.862"/><linearGradient xlink:href="#C" id="M" x1="92.35" y1="166.817" x2="92.58" y2="107.294"/><linearGradient xlink:href="#E" id="N" x1="138.792" y1="223.856" x2="138.696" y2="88.083"/><linearGradient xlink:href="#B" id="O" x1="71.758" y1="88.453" x2="72.025" y2="109.567"/><linearGradient xlink:href="#A" id="P" x1="150.319" y1="85.789" x2="150.052" y2="53.846"/><linearGradient xlink:href="#D" id="Q" x1="162.577" y1="219.903" x2="161.672" y2="158.861"/><linearGradient xlink:href="#C" id="R" x1="151.605" y1="201.459" x2="151.835" y2="141.936"/><linearGradient xlink:href="#E" id="S" x1="120.556" y1="265.448" x2="120.461" y2="129.675"/><linearGradient xlink:href="#B" id="T" x1="131.013" y1="123.094" x2="131.281" y2="144.209"/><path id="U" d="M118.747 87.85l38.926 18.836v51.94l-7.123-3.48.104 67.36-11.397-5.844v-54.436l-4-2.005v54.495l-9.125-4.137.313-66.992-7.555-3.707z"/><path id="V" d="M169.84 159.877l.123 56.63-15.31 6.227-.094-61.18 5.037 2.46z"/><path id="W" d="M150.052 49.846c-11.192 0-20.31 9.115-20.31 20.307s9.117 20.31 20.31 20.31 20.307-9.117 20.307-20.31-9.115-20.307-20.307-20.307z"/><path id="X" d="M150.052 53.846c9.03 0 16.307 7.276 16.307 16.307a16.28 16.28 0 1 1-32.615 0 16.28 16.28 0 0 1 16.309-16.307z"/><linearGradient id="Y" gradientUnits="userSpaceOnUse"/></defs><g transform="translate(-37.242 -49.846)" class="B"><path d="M135.53 75L114.733 83.3l.164 59.076 7.535 3.697-.312 67.002 30.465 14.816 21.385-8.695-.133-60.934 8.53-3.45-.256-58.963z" class="C"/><path d="M135.44 79.34l39.578 17.715-15.273 6.19-38.053-18.416z" fill="url(#I)"/><use xlink:href="#U" fill="url(#F)"/><path d="M178.132 100.112l.225 52-7.27 2.94-9.412 3.8V106.78z" fill="url(#H)"/><use xlink:href="#V" fill="url(#G)"/><use xlink:href="#W" paint-order="normal" class="C"/><use xlink:href="#X" fill="url(#J)" paint-order="normal"/><path d="M58.04 81.938L37.242 90.24l.164 59.076 7.535 3.697-.312 67.002 30.465 14.816 21.385-8.695-.133-60.934 8.53-3.45-.256-58.963z" class="C"/><path d="M57.95 86.28l39.578 17.715-15.273 6.19L44.2 91.77z" fill="url(#O)"/><use xlink:href="#U" x="-77.491" y="6.95" fill="url(#N)"/><path d="M100.64 107.052l.225 52-7.27 2.94-9.412 3.8V113.72z" fill="url(#M)"/><use xlink:href="#V" x="-77.49" y="6.94" fill="url(#L)"/><path d="M72.56 56.786c-11.192 0-20.31 9.115-20.31 20.307S61.368 97.4 72.56 97.4s20.307-9.117 20.307-20.31-9.115-20.307-20.307-20.307z" paint-order="normal" class="C"/><use xlink:href="#X" x="-77.492" y="6.94" fill="url(#K)" paint-order="normal"/><path d="M117.294 116.58l-20.797 8.303.164 59.076 7.535 3.697-.312 67.002 30.465 14.816 21.385-8.695-.133-60.934 8.53-3.45-.256-58.963z" class="C"/><path d="M117.205 120.922l39.578 17.715-15.273 6.19-38.053-18.416z" fill="url(#T)"/><path d="M100.51 129.432l38.926 18.836v51.94l-7.123-3.48.104 67.36-11.397-5.844V203.81l-4-2.005V256.3l-9.125-4.137.313-66.992-7.555-3.707z" fill="url(#S)"/><path d="M159.896 141.694l.225 52-7.27 2.94-9.412 3.8V148.36z" fill="url(#R)"/><use xlink:href="#V" x="-18.235" y="41.583" fill="url(#Q)"/><use xlink:href="#W" x="-18.236" y="41.582" paint-order="normal" class="C"/><use xlink:href="#X" x="-18.236" y="41.582" fill="url(#P)" paint-order="normal"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/vista_client.svg b/src/main/webapp/img/lib/active_directory/vista_client.svg index c4223020be1b65acb7221a0bdb3adfa66c83d651..42f3aafc02a55cca1def10929a59a58f21aa4753 100644 --- a/src/main/webapp/img/lib/active_directory/vista_client.svg +++ b/src/main/webapp/img/lib/active_directory/vista_client.svg @@ -1,284 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="146.26953mm" - height="190.38867mm" - viewBox="0 0 146.26953 190.38867" - version="1.1" - id="svg908" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="vista_client.svg"> - <defs - id="defs902"> - <linearGradient - inkscape:collect="always" - id="linearGradient1090"> - <stop - style="stop-color:#0a289d;stop-opacity:1" - offset="0" - id="stop1086" /> - <stop - style="stop-color:#84aff0;stop-opacity:1" - offset="1" - id="stop1088" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1082"> - <stop - style="stop-color:#a5ddfd;stop-opacity:1" - offset="0" - id="stop1078" /> - <stop - style="stop-color:#0fa6fd;stop-opacity:1" - offset="1" - id="stop1080" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1074"> - <stop - style="stop-color:#0677fc;stop-opacity:1;" - offset="0" - id="stop1070" /> - <stop - style="stop-color:#8fcafd;stop-opacity:1" - offset="1" - id="stop1072" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1066"> - <stop - style="stop-color:#0a79fc;stop-opacity:1" - offset="0" - id="stop1062" /> - <stop - style="stop-color:#76bafe;stop-opacity:1" - offset="1" - id="stop1064" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1039"> - <stop - style="stop-color:#aee0fe;stop-opacity:1" - offset="0" - id="stop1035" /> - <stop - style="stop-color:#2eb1fd;stop-opacity:1" - offset="1" - id="stop1037" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1031"> - <stop - style="stop-color:#0c7afc;stop-opacity:1" - offset="0" - id="stop1027" /> - <stop - style="stop-color:#8cc8fe;stop-opacity:1" - offset="1" - id="stop1029" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1023"> - <stop - style="stop-color:#09279c;stop-opacity:1" - offset="0" - id="stop1019" /> - <stop - style="stop-color:#8db8f6;stop-opacity:1" - offset="1" - id="stop1021" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1023" - id="linearGradient1025" - x1="147.93318" - y1="242.82953" - x2="147.59947" - y2="169.3304" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1031" - id="linearGradient1033" - x1="74.860275" - y1="243.42053" - x2="74.449066" - y2="171.79404" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1039" - id="linearGradient1041" - x1="109.09372" - y1="204.9668" - x2="108.1156" - y2="152.44983" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1066" - id="linearGradient1068" - x1="114.39202" - y1="189.84822" - x2="113.95918" - y2="157.05879" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1074" - id="linearGradient1076" - x1="104.94865" - y1="180.84476" - x2="105.85771" - y2="64.582512" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1082" - id="linearGradient1084" - x1="109.44029" - y1="102.68846" - x2="108.17121" - y2="59.977154" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1090" - id="linearGradient1092" - x1="142.60912" - y1="180.52667" - x2="141.61719" - y2="100.20898" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.7" - inkscape:cx="380.51573" - inkscape:cy="406.87668" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata905"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-36.212891,-57.21875)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1041);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.30791616;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 109.24897,135.27789 70.68211,34.03674 -71.55363,38.48274 -67.797608,-37.99844 z" - id="path990" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1068);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.34139538;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 111.67151,152.2573 c 9.71976,0 18.49598,2.32707 24.6743,5.93404 6.17835,3.60697 9.55235,8.28059 9.55235,13.04045 0,4.75988 -3.374,9.4335 -9.55235,13.04047 -6.17832,3.60697 -14.95454,5.93622 -24.6743,5.93622 -9.71977,0 -18.498045,-2.32925 -24.676379,-5.93622 -6.178333,-3.60697 -9.550285,-8.28059 -9.550285,-13.04047 0,-4.75986 3.371952,-9.43348 9.550285,-13.04045 6.178334,-3.60697 14.956609,-5.93404 24.676379,-5.93404 z" - id="path938-6" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1025);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 179.93108,169.31463 0.008,38.10204 -70.90535,36.23042 -0.65644,-35.84972 z" - id="path988" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1033);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.21965981;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 39.343269,171.37849 69.034181,36.41888 0.65644,35.84972 L 39.141522,202.912 Z" - id="path925-0" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 108.18164,132.33594 36.212891,168.25 v 1.54688 35.04101 l 72.814449,42.76953 73.45508,-38.48828 v -41.31641 z m 0.0488,5.56445 66.24609,31.61914 -65.38281,35.44727 -64.955078,-35.08399 z m 69.25195,35.67773 v 32.51563 l -65.88672,34.52344 v -31.31836 z m -136.269529,0.41016 65.382809,35.3125 v 31.08008 l -65.382809,-38.4043 z" - id="path925" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 80.055664,209.01116 v 4.70619 l 16.445313,8.29883 v -4.70423 z" - id="path927" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 111.71875,150.14062 c -9.81822,0 -18.728025,2.16348 -25.34375,5.80469 -6.615725,3.64122 -11.134766,8.94788 -11.134766,15.16992 0,6.22205 4.519041,11.53067 11.134766,15.17188 6.615725,3.64121 15.52553,5.80469 25.34375,5.80469 9.81822,0 18.72803,-2.16348 25.34375,-5.80469 6.61572,-3.64121 11.13477,-8.94983 11.13477,-15.17188 0,-6.22204 -4.51905,-11.5287 -11.13477,-15.16992 -6.61572,-3.64121 -15.52553,-5.80469 -25.34375,-5.80469 z m 0,4 c 9.22332,0 17.55129,2.0818 23.41406,5.3086 5.86278,3.2268 9.06446,7.40783 9.06446,11.66601 0,4.25819 -3.20168,8.43922 -9.06446,11.66602 -5.86277,3.2268 -14.19074,5.31055 -23.41406,5.31055 -9.22332,0 -17.553243,-2.08375 -23.416016,-5.31055 -5.862772,-3.2268 -9.0625,-7.40783 -9.0625,-11.66602 0,-4.25818 3.199728,-8.43921 9.0625,-11.66601 5.862773,-3.2268 14.192696,-5.3086 23.416016,-5.3086 z" - id="path938" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1076);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 63.887333,64.421464 74.042727,40.142986 v 76.70862 L 63.655503,142.25409 Z" - id="path1013" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="opacity:1;fill:#0073fc;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 73.881897,84.870843 50.094293,27.204297 v 49.65663 L 73.949697,133.36872 Z" - id="path948" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="opacity:1;fill:#ffffff;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 77.906492,91.680636 41.817468,22.851354 v 40.11272 L 77.906492,130.92236 Z" - id="path950" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1084);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 71.607793,59.775391 72.849137,40.801089 -6.49579,3.0697 -72.366089,-39.962586 z" - id="path1015" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1092);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 144.94408,102.1398 0.80181,73.941 -6.91653,4.21371 0.10023,-75.53598 z" - id="path946-8" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 71.597656,57.21875 -9.910156,5.222656 0.04883,80.695314 76.30664,40.89453 1.00976,-0.71289 8.82227,-6.23438 V 99.080078 Z m -0.03711,4.541016 70.056644,38.449214 -3.68946,1.9004 -70.017575,-38.425786 z m -5.869141,5.267578 70.207035,38.529296 v 72.78711 L 65.734375,140.74219 Z M 143.875,103.54297 v 71.46875 l -3.97656,2.81055 v -72.22852 z" - id="path946" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="552.832" height="719.581" viewBox="0 0 146.27 190.389"><style><![CDATA[.B{dominant-baseline:auto}]]></style><defs><linearGradient id="A" x1="147.933" y1="242.83" x2="147.599" y2="169.33" xlink:href="#H"><stop offset="0" stop-color="#09279c"/><stop offset="1" stop-color="#8db8f6"/></linearGradient><linearGradient id="B" x1="74.86" y1="243.421" x2="74.449" y2="171.794" xlink:href="#H"><stop offset="0" stop-color="#0c7afc"/><stop offset="1" stop-color="#8cc8fe"/></linearGradient><linearGradient id="C" x1="109.094" y1="204.967" x2="108.116" y2="152.45" xlink:href="#H"><stop offset="0" stop-color="#aee0fe"/><stop offset="1" stop-color="#2eb1fd"/></linearGradient><linearGradient id="D" x1="114.392" y1="189.848" x2="113.959" y2="157.059" xlink:href="#H"><stop offset="0" stop-color="#0a79fc"/><stop offset="1" stop-color="#76bafe"/></linearGradient><linearGradient id="E" x1="104.949" y1="180.845" x2="105.858" y2="64.583" xlink:href="#H"><stop offset="0" stop-color="#0677fc"/><stop offset="1" stop-color="#8fcafd"/></linearGradient><linearGradient id="F" x1="109.44" y1="102.688" x2="108.171" y2="59.977" xlink:href="#H"><stop offset="0" stop-color="#a5ddfd"/><stop offset="1" stop-color="#0fa6fd"/></linearGradient><linearGradient id="G" x1="142.609" y1="180.527" x2="141.617" y2="100.209" xlink:href="#H"><stop offset="0" stop-color="#0a289d"/><stop offset="1" stop-color="#84aff0"/></linearGradient><linearGradient id="H" gradientUnits="userSpaceOnUse"/></defs><g transform="translate(-36.213 -57.219)"><path d="M109.25 135.278l70.682 34.037-71.554 38.483L40.58 169.8z" fill="url(#C)" class="B"/><path d="M111.672 152.257c9.72 0 18.496 2.327 24.674 5.934s9.552 8.28 9.552 13.04-3.374 9.434-9.552 13.04-14.955 5.936-24.674 5.936-18.498-2.33-24.676-5.936-9.55-8.28-9.55-13.04 3.372-9.433 9.55-13.04 14.957-5.934 24.676-5.934z" fill="url(#D)" paint-order="normal" class="B"/><path d="M179.93 169.315l.008 38.102-70.905 36.23-.656-35.85z" fill="url(#A)" class="B"/><path d="M39.343 171.378l69.034 36.42.656 35.85-69.892-40.735z" fill="url(#B)" class="B"/><g fill="#fff" class="B"><path d="M108.182 132.336l-71.97 35.914v36.588l72.814 42.77 73.455-38.488v-41.316zm.05 5.564l66.246 31.62-65.383 35.447-64.955-35.084zm69.252 35.678v32.516l-65.887 34.523V209.3zm-136.27.4l65.383 35.313v31.08l-65.383-38.404zM80.056 209v4.706l16.445 8.3v-4.704z"/><path d="M111.72 150.14c-9.818 0-18.728 2.163-25.344 5.805s-11.135 8.948-11.135 15.17 4.52 11.53 11.135 15.172 15.526 5.805 25.344 5.805 18.728-2.163 25.344-5.805 11.135-8.95 11.135-15.172-4.52-11.53-11.135-15.17-15.526-5.805-25.344-5.805zm0 4c9.223 0 17.55 2.082 23.414 5.31s9.064 7.408 9.064 11.666-3.202 8.44-9.064 11.666-14.19 5.31-23.414 5.31-17.553-2.084-23.416-5.31-9.062-7.408-9.062-11.666 3.2-8.44 9.063-11.666 14.193-5.31 23.416-5.31z" paint-order="normal"/></g><path d="M63.887 64.42l74.043 40.143v76.71l-74.275-39.02z" fill="url(#E)" class="B"/><path d="M73.882 84.87l50.094 27.204v49.657L73.95 133.37z" fill="#0073fc"/><path d="M77.906 91.68l41.817 22.85v40.113l-41.817-23.722z" fill="#fff"/><path d="M71.608 59.775l72.85 40.8-6.496 3.07-72.366-39.963z" fill="url(#F)" class="B"/><path d="M144.944 102.14l.802 73.94-6.917 4.214.1-75.536z" fill="url(#G)" class="B"/><path d="M71.598 57.22l-9.9 5.223.05 80.695 76.307 40.895 9.832-6.947V99.08zm-.037 4.54l70.057 38.45-3.69 1.9L67.9 63.684zm-5.87 5.268l70.207 38.53v72.787l-70.164-37.602zm78.184 36.516v71.47l-3.977 2.81v-72.23z" fill="#fff" class="B"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/vista_terminal.svg b/src/main/webapp/img/lib/active_directory/vista_terminal.svg index 6c9d1d6f0e199471e08a0d70ad7a7b7711ced46a..af198af29bfe86587fed4228363422ad3bec7357 100644 --- a/src/main/webapp/img/lib/active_directory/vista_terminal.svg +++ b/src/main/webapp/img/lib/active_directory/vista_terminal.svg @@ -1,192 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="86.509773mm" - height="134.87305mm" - viewBox="0 0 86.509773 134.87305" - version="1.1" - id="svg908" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="vista_terminal.svg"> - <defs - id="defs902"> - <linearGradient - inkscape:collect="always" - id="linearGradient1090"> - <stop - style="stop-color:#0a289d;stop-opacity:1" - offset="0" - id="stop1086" /> - <stop - style="stop-color:#84aff0;stop-opacity:1" - offset="1" - id="stop1088" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1082"> - <stop - style="stop-color:#a5ddfd;stop-opacity:1" - offset="0" - id="stop1078" /> - <stop - style="stop-color:#0fa6fd;stop-opacity:1" - offset="1" - id="stop1080" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1074"> - <stop - style="stop-color:#0677fc;stop-opacity:1;" - offset="0" - id="stop1070" /> - <stop - style="stop-color:#8fcafd;stop-opacity:1" - offset="1" - id="stop1072" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1066"> - <stop - style="stop-color:#0a79fc;stop-opacity:1" - offset="0" - id="stop1062" /> - <stop - style="stop-color:#76bafe;stop-opacity:1" - offset="1" - id="stop1064" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1066" - id="linearGradient1068" - x1="114.39202" - y1="189.84822" - x2="113.95918" - y2="157.05879" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1074" - id="linearGradient1076" - x1="104.94865" - y1="180.84476" - x2="105.85771" - y2="64.582512" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1082" - id="linearGradient1084" - x1="109.44029" - y1="102.68846" - x2="108.17121" - y2="59.977154" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1090" - id="linearGradient1092" - x1="142.60912" - y1="180.52667" - x2="141.61719" - y2="100.20898" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.7" - inkscape:cx="284.23374" - inkscape:cy="197.05387" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata905"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-61.6875,-57.21875)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1068);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.34139538;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 111.67151,152.2573 c 9.71976,0 18.49598,2.32707 24.6743,5.93404 6.17835,3.60697 9.55235,8.28059 9.55235,13.04045 0,4.75988 -3.374,9.4335 -9.55235,13.04047 -6.17832,3.60697 -14.95454,5.93622 -24.6743,5.93622 -9.71977,0 -18.498045,-2.32925 -24.676379,-5.93622 -6.178333,-3.60697 -9.550285,-8.28059 -9.550285,-13.04047 0,-4.75986 3.371952,-9.43348 9.550285,-13.04045 6.178334,-3.60697 14.956609,-5.93404 24.676379,-5.93404 z" - id="path938-6" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 111.71875,150.14062 c -9.81822,0 -18.728025,2.16348 -25.34375,5.80469 -6.615725,3.64122 -11.134766,8.94788 -11.134766,15.16992 0,6.22205 4.519041,11.53067 11.134766,15.17188 6.615725,3.64121 15.52553,5.80469 25.34375,5.80469 9.81822,0 18.72803,-2.16348 25.34375,-5.80469 6.61572,-3.64121 11.13477,-8.94983 11.13477,-15.17188 0,-6.22204 -4.51905,-11.5287 -11.13477,-15.16992 -6.61572,-3.64121 -15.52553,-5.80469 -25.34375,-5.80469 z m 0,4 c 9.22332,0 17.55129,2.0818 23.41406,5.3086 5.86278,3.2268 9.06446,7.40783 9.06446,11.66601 0,4.25819 -3.20168,8.43922 -9.06446,11.66602 -5.86277,3.2268 -14.19074,5.31055 -23.41406,5.31055 -9.22332,0 -17.553243,-2.08375 -23.416016,-5.31055 -5.862772,-3.2268 -9.0625,-7.40783 -9.0625,-11.66602 0,-4.25818 3.199728,-8.43921 9.0625,-11.66601 5.862773,-3.2268 14.192696,-5.3086 23.416016,-5.3086 z" - id="path938" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1076);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 63.887333,64.421464 74.042727,40.142986 v 76.70862 L 63.655503,142.25409 Z" - id="path1013" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="opacity:1;fill:#0073fc;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 73.881897,84.870843 50.094293,27.204297 v 49.65663 L 73.949697,133.36872 Z" - id="path948" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="opacity:1;fill:#ffffff;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 77.906492,91.680636 41.817468,22.851354 v 40.11272 L 77.906492,130.92236 Z" - id="path950" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1084);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 71.607793,59.775391 72.849137,40.801089 -6.49579,3.0697 -72.366089,-39.962586 z" - id="path1015" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1092);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 144.94408,102.1398 0.80181,73.941 -6.91653,4.21371 0.10023,-75.53598 z" - id="path946-8" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 71.597656,57.21875 -9.910156,5.222656 0.04883,80.695314 76.30664,40.89453 1.00976,-0.71289 8.82227,-6.23438 V 99.080078 Z m -0.03711,4.541016 70.056644,38.449214 -3.68946,1.9004 -70.017575,-38.425786 z m -5.869141,5.267578 70.207035,38.529296 v 72.78711 L 65.734375,140.74219 Z M 143.875,103.54297 v 71.46875 l -3.97656,2.81055 v -72.22852 z" - id="path946" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="326.967" height="509.756" viewBox="0 0 86.51 134.873"><style><![CDATA[.B{dominant-baseline:auto}]]></style><defs><linearGradient id="A" x1="114.392" y1="189.848" x2="113.959" y2="157.059" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#0a79fc"/><stop offset="1" stop-color="#76bafe"/></linearGradient><linearGradient id="B" x1="104.949" y1="180.845" x2="105.858" y2="64.583" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#0677fc"/><stop offset="1" stop-color="#8fcafd"/></linearGradient><linearGradient id="C" x1="109.44" y1="102.688" x2="108.171" y2="59.977" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#a5ddfd"/><stop offset="1" stop-color="#0fa6fd"/></linearGradient><linearGradient id="D" x1="142.609" y1="180.527" x2="141.617" y2="100.209" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#0a289d"/><stop offset="1" stop-color="#84aff0"/></linearGradient></defs><g transform="translate(-61.687 -57.219)"><path d="M111.672 152.257c9.72 0 18.496 2.327 24.674 5.934s9.552 8.28 9.552 13.04-3.374 9.434-9.552 13.04-14.955 5.936-24.674 5.936-18.498-2.33-24.676-5.936-9.55-8.28-9.55-13.04 3.372-9.433 9.55-13.04 14.957-5.934 24.676-5.934z" fill="url(#A)" paint-order="normal" class="B"/><path d="M111.72 150.14c-9.818 0-18.728 2.163-25.344 5.805s-11.135 8.948-11.135 15.17 4.52 11.53 11.135 15.172 15.526 5.805 25.344 5.805 18.728-2.163 25.344-5.805 11.135-8.95 11.135-15.172-4.52-11.53-11.135-15.17-15.526-5.805-25.344-5.805zm0 4c9.223 0 17.55 2.082 23.414 5.31s9.064 7.408 9.064 11.666-3.202 8.44-9.064 11.666-14.19 5.31-23.414 5.31-17.553-2.084-23.416-5.31-9.062-7.408-9.062-11.666 3.2-8.44 9.063-11.666 14.193-5.31 23.416-5.31z" fill="#fff" paint-order="normal" class="B"/><path d="M63.887 64.42l74.043 40.143v76.71l-74.275-39.02z" fill="url(#B)" class="B"/><path d="M73.882 84.87l50.094 27.204v49.657L73.95 133.37z" fill="#0073fc"/><path d="M77.906 91.68l41.817 22.85v40.113l-41.817-23.722z" fill="#fff"/><path d="M71.608 59.775l72.85 40.8-6.496 3.07-72.366-39.963z" fill="url(#C)" class="B"/><path d="M144.944 102.14l.802 73.94-6.917 4.214.1-75.536z" fill="url(#D)" class="B"/><path d="M71.598 57.22l-9.9 5.223.05 80.695 76.307 40.895 9.832-6.947V99.08zm-.037 4.54l70.057 38.45-3.69 1.9L67.9 63.684zm-5.87 5.268l70.207 38.53v72.787l-70.164-37.602zm78.184 36.516v71.47l-3.977 2.81v-72.23z" fill="#fff" class="B"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/web_server.svg b/src/main/webapp/img/lib/active_directory/web_server.svg index db4751ccd6f0a21052190fc2edafa29805b6d84d..63d33a118c4bead074c31a6e6589d6459e4e6503 100644 --- a/src/main/webapp/img/lib/active_directory/web_server.svg +++ b/src/main/webapp/img/lib/active_directory/web_server.svg @@ -1,230 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="86.485504mm" - height="108.09572mm" - viewBox="0 0 86.485504 108.09572" - version="1.1" - id="svg8" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="web_server.svg"> - <defs - id="defs2"> - <linearGradient - inkscape:collect="always" - id="linearGradient1059"> - <stop - style="stop-color:#0375fc;stop-opacity:1;" - offset="0" - id="stop1055" /> - <stop - style="stop-color:#f6fbff;stop-opacity:1" - offset="1" - id="stop1057" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1051"> - <stop - style="stop-color:#fdc125;stop-opacity:1" - offset="0" - id="stop1047" /> - <stop - style="stop-color:#d03604;stop-opacity:1" - offset="1" - id="stop1049" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient922"> - <stop - style="stop-color:#a8defe;stop-opacity:1" - offset="0" - id="stop918" /> - <stop - style="stop-color:#12a7fc;stop-opacity:1" - offset="1" - id="stop920" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient914"> - <stop - style="stop-color:#05239a;stop-opacity:1" - offset="0" - id="stop910" /> - <stop - style="stop-color:#91bcf8;stop-opacity:1" - offset="1" - id="stop912" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient904"> - <stop - style="stop-color:#0677fc;stop-opacity:1;" - offset="0" - id="stop900" /> - <stop - style="stop-color:#8fcafe;stop-opacity:1" - offset="1" - id="stop902" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient904" - id="linearGradient908" - gradientUnits="userSpaceOnUse" - x1="83.838669" - y1="200.39299" - x2="83.469749" - y2="127.29478" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient914" - id="linearGradient916" - x1="111.26579" - y1="206.30371" - x2="111.47961" - y2="118.37204" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient922" - id="linearGradient924" - x1="103.08207" - y1="136.8896" - x2="103.19426" - y2="107.62359" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1051" - id="linearGradient1053" - x1="132.35118" - y1="211.70523" - x2="131.81923" - y2="159.60558" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1059" - id="linearGradient1061" - x1="132.71446" - y1="211.56192" - x2="131.29002" - y2="160.13483" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.70000001" - inkscape:cx="-209.92795" - inkscape:cy="266.90038" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata5"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-72.583331,-105.73763)"> - <path - style="opacity:1;fill:url(#linearGradient916);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 129.52031,187.46797 92.556918,207.13616 V 137.21057 L 129.52031,117.27232 Z" - id="path833" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="opacity:1;fill:url(#linearGradient908);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 92.556918,207.13616 74.083331,196.9308 v -69.8311 l 18.473587,10.11087" - id="path835" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccc" /> - <path - style="opacity:1;fill:url(#linearGradient924);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 129.52031,117.27232 92.556918,137.21057 74.083331,127.0997 110.93126,107.43625 Z" - id="path837" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 79.355465,150.82884 v 1.32227 l 6.631269,3.63829 v -1.32227 z" - id="path839" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 79.355465,157.50336 v 1.32227 l 6.631269,3.63829 v -1.32227 z" - id="path839-0" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - id="path830" - style="opacity:1;fill:none;stroke:#ffffff;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 92.556918,137.21057 36.963392,-19.93825 z m 0,69.92559 V 137.21057 L 74.083331,127.0997 M 92.556918,207.13616 74.083331,196.9308 v -69.8311 l 36.847929,-19.66345 18.58905,9.83607 v 70.19565 z" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccccccc" /> - <g - id="g1067"> - <path - inkscape:connector-curvature="0" - id="path1021-4" - d="m 131.29003,160.13482 c 14.32462,0 25.90183,11.57926 25.90183,25.90387 0,14.32463 -11.57721,25.90184 -25.90183,25.90184 -14.32461,0 -25.90388,-11.57721 -25.90388,-25.90184 0,-14.32461 11.57927,-25.90387 25.90388,-25.90387 z" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1061);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.14333677;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> - <path - sodipodi:nodetypes="cccccccccccc" - inkscape:connector-curvature="0" - id="path1044" - d="m 136.00104,192.57253 c -2.33525,1.39098 -3.67831,1.6612 -6.10805,2.06324 -2.32867,0.35714 -5.26692,0.20848 -8.06673,-0.18633 l -6.07106,-1.08579 -5.37289,-8.0155 -3.14041,-8.35217 c 1.26494,-5.68101 5.01648,-10.53315 11.62622,-14.43256 3.15304,-1.06325 4.74433,-2.39219 10.33387,-2.8295 3.70236,1.52507 7.25562,3.47782 10.04543,6.77173 3.14531,3.91207 5.08878,7.87265 4.8581,12.24715 -0.16757,2.78556 -1.19929,6.22775 -2.69632,8.53306 -1.51875,2.25832 -2.18759,3.31184 -5.40816,5.28667 z" - style="opacity:0.1;fill:#000000;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" - inkscape:connector-curvature="0" - d="m 151.51162,173.57603 1.35341,-0.009 1.3879,2.33053 c 0.47107,1.73048 0.63246,3.42755 0.91105,5.20814 0.2367,1.97536 0.12359,5.15998 0.0945,6.88857 -0.0387,1.45722 -0.52127,2.39305 -0.89958,3.72294 -0.79673,0.40154 -1.9059,0.69859 -2.4616,1.50568 l -1.49341,0.015 -1.95176,-1.01332 -1.49412,-1.58139 -0.95324,-2.333 c -0.0112,-1.9681 0.27744,-3.87566 0.46675,-5.80327 0.93009,-1.90456 1.90672,-3.7601 2.99563,-5.49736 0.57175,-1.15554 1.25121,-2.27768 2.04447,-3.43323 z m -5.08498,-8.67297 c 1.28463,1.21025 2.4339,2.45433 3.36264,3.75356 1.16624,1.58584 2.28209,3.20087 2.52415,3.95056 l -3.8962,-0.10023 -0.006,2.29505 -0.75595,2.69021 -1.59173,0.0513 -1.12568,-0.63449 -1.36779,-2.07216 c -0.0285,-0.51573 0.23467,-1.24349 0.52228,-1.7545 l 0.99487,-0.92048 0.0554,-3.7683 z m -2.42295,-1.56727 -2.63486,1.88415 -1.1454,-2.80239 -0.28298,1.49569 -2.45685,-0.0496 0.0449,0.81081 -1.35531,-0.003 -3.09115,1.30961 -3.8491,0.54452 -1.56998,0.35079 -0.41378,-2.38177 1.04609,-1.93253 -2.50172,-0.27725 -1.26233,-1.24514 c 1.83867,-0.6578 4.43034,-1.08643 7.28801,-1.43411 l 7.27604,1.32292 z m -23.92538,45.47763 0.42523,-2.90568 -1.55916,-0.4961 c -1.87085,-1.34896 -3.4366,-3.18931 -5.1263,-4.96094 l -0.0236,-2.83481 c 0.29923,-1.34093 0.92919,-2.77301 1.39378,-3.7089 -0.89665,-0.69835 -1.83025,-1.36503 -2.5159,-2.24424 -1.02531,-1.57048 -2.07347,-3.30099 -3.13012,-5.09086 -0.88048,-1.29674 -2.12428,-2.09629 -3.60258,-2.57496 l 2.53953,-10.87863 6.14211,-7.08705 7.12554,-4.30022 -0.76153,1.82192 c -0.33758,-0.0598 -0.64637,-0.17242 -1.11099,6.5e-4 0.0216,0.61349 0.0892,1.64006 0.34931,2.24428 0.79064,0.78216 1.59923,1.45095 1.67371,2.35137 l 1.04991,-1.14539 0.62855,-2.14044 c 1.15109,0.65427 1.59427,0.77955 2.46663,1.46479 l 2.46949,1.97089 2.26786,0.75596 -1.98438,1.73633 c -0.97251,1.07833 -2.15015,2.30721 -3.93331,3.23641 l -1.12211,-0.0236 -0.98038,1.13392 -0.85045,1.87807 -2.19698,1.72451 c -0.60979,0.5479 -1.05431,1.28574 -1.18118,2.11431 0.0402,1.19841 0.0424,2.27003 -0.0118,3.15374 -0.68908,-0.5692 -1.04635,-1.4201 -1.35836,-2.39778 l -0.5079,-1.71271 c -0.87587,-0.907 -2.00647,-1.73866 -3.23642,-2.45684 -1.03586,0.31577 -1.78364,0.66144 -2.53952,1.03943 -0.37157,0.93492 -0.4992,1.74494 -0.4961,2.49228 0.2894,1.44742 0.94714,2.55657 1.86625,3.53171 0.87784,0.30172 1.93194,-0.0341 2.46867,-0.49609 l 0.44884,1.97257 c -0.73882,0.22575 -1.14889,0.57208 -1.38198,0.88587 l -0.0236,1.77177 c 0.31714,0.9049 0.639,1.80321 1.11031,2.49228 0.49429,0.29012 1.09647,0.41841 1.84263,0.33073 l 0.37798,0.54334 5.76413,-0.0591 c 2.2391,0.97212 3.44852,2.21285 4.69094,3.44498 l 2.91786,2.97943 c 1.18161,0.52887 2.33134,0.89835 3.4686,1.2055 2.05374,0.21824 3.15454,0.36586 4.19639,0.77887 l 1.07857,1.03321 0.007,1.56657 -1.44103,0.37797 -7.74851,8.22098 c -1.77964,-0.2359 -3.27579,-0.36497 -5.31529,-0.96856 -1.57374,-0.47872 -2.84198,-0.928 -4.63021,-1.77177 z" - style="opacity:1;fill:url(#linearGradient1053);fill-opacity:1;stroke:#ffc727;stroke-width:1.70000005;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path1019" /> - <circle - r="26.222109" - cy="186.11124" - cx="131.34673" - id="path1021" - style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:0;stroke:#ffffff;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" /> - </g> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="326.876" height="408.552" viewBox="0 0 86.486 108.096"><defs><linearGradient id="A" x1="83.839" y1="200.393" x2="83.47" y2="127.295" xlink:href="#F"><stop offset="0" stop-color="#0677fc"/><stop offset="1" stop-color="#8fcafe"/></linearGradient><linearGradient id="B" x1="111.266" y1="206.304" x2="111.48" y2="118.372" xlink:href="#F"><stop offset="0" stop-color="#05239a"/><stop offset="1" stop-color="#91bcf8"/></linearGradient><linearGradient id="C" x1="103.082" y1="136.89" x2="103.194" y2="107.624" xlink:href="#F"><stop offset="0" stop-color="#a8defe"/><stop offset="1" stop-color="#12a7fc"/></linearGradient><linearGradient id="D" x1="132.351" y1="211.705" x2="131.819" y2="159.606" xlink:href="#F"><stop offset="0" stop-color="#fdc125"/><stop offset="1" stop-color="#d03604"/></linearGradient><linearGradient id="E" x1="132.714" y1="211.562" x2="131.29" y2="160.135" xlink:href="#F"><stop offset="0" stop-color="#0375fc"/><stop offset="1" stop-color="#f6fbff"/></linearGradient><linearGradient id="F" gradientUnits="userSpaceOnUse"/></defs><g transform="translate(-72.583 -105.738)"><path d="M129.52 187.468l-36.963 19.668V137.21l36.963-19.938z" fill="url(#B)"/><path d="M92.557 207.136L74.083 196.93V127.1l18.474 10.11" fill="url(#A)"/><path d="M129.52 117.272L92.557 137.21 74.083 127.1l36.848-19.663z" fill="url(#C)"/><path d="M79.355 150.83v1.322l6.63 3.638v-1.322zm0 6.673v1.322l6.63 3.638v-1.322z" dominant-baseline="auto" fill="#fff"/><path d="M92.557 137.21l36.963-19.938zm0 69.926V137.21L74.083 127.1m18.474 80.036L74.083 196.93V127.1l36.848-19.663 18.59 9.836v70.196z" fill="none" stroke="#fff" stroke-width="3"/><path d="M131.3 160.135c14.325 0 25.902 11.58 25.902 25.904a25.88 25.88 0 0 1-25.902 25.902c-14.325 0-25.904-11.577-25.904-25.902s11.58-25.904 25.904-25.904z" dominant-baseline="auto" fill="url(#E)" paint-order="normal"/><path d="M136 192.573c-2.335 1.39-3.678 1.66-6.108 2.063-2.33.357-5.267.208-8.067-.186l-6.07-1.086-5.373-8.016-3.14-8.352c1.265-5.68 5.016-10.533 11.626-14.433 3.153-1.063 4.744-2.392 10.334-2.83 3.702 1.525 7.256 3.478 10.045 6.772 3.145 3.912 5.09 7.873 4.858 12.247-.168 2.786-1.2 6.228-2.696 8.533-1.52 2.258-2.188 3.312-5.408 5.287z" opacity=".1"/><path d="M151.512 173.576l1.353-.01 1.388 2.33c.47 1.73.632 3.428.91 5.208.237 1.975.124 5.16.094 6.89-.04 1.457-.52 2.393-.9 3.723-.797.402-1.906.7-2.462 1.506l-1.493.015-1.952-1.013-1.494-1.58-.953-2.333c-.01-1.968.277-3.876.467-5.803l2.996-5.497c.572-1.156 1.25-2.278 2.044-3.433zm-5.085-8.673c1.285 1.2 2.434 2.454 3.363 3.754 1.166 1.586 2.282 3.2 2.524 3.95l-3.896-.1-.006 2.295-.756 2.7-1.592.05-1.126-.634-1.368-2.072c-.028-.516.235-1.243.522-1.755l.995-.92.055-3.768zm-2.423-1.567l-2.635 1.884-1.145-2.802-.283 1.496-2.457-.05.045.81-1.355-.003-3.09 1.3-3.85.545-1.57.35-.414-2.382 1.046-1.933-2.502-.277-1.262-1.245c1.84-.658 4.43-1.086 7.288-1.434l7.276 1.323zm-23.925 45.478l.425-2.906-1.56-.496c-1.87-1.35-3.437-3.19-5.126-4.96l-.024-2.835c.3-1.34.93-2.773 1.394-3.71-.897-.698-1.83-1.365-2.516-2.244l-3.13-5.09c-.88-1.297-2.124-2.096-3.603-2.575l2.54-10.88 6.142-7.087 7.126-4.3-.762 1.822c-.338-.06-.646-.172-1.11.001.022.613.09 1.64.35 2.244.79.782 1.6 1.45 1.674 2.35l1.05-1.145.63-2.14c1.15.654 1.594.78 2.467 1.465l2.47 1.97 2.268.756-1.984 1.736c-.973 1.078-2.15 2.307-3.933 3.236l-1.122-.024-.98 1.134-.85 1.878-2.197 1.725c-.6.548-1.054 1.286-1.18 2.114l-.012 3.154c-.69-.57-1.046-1.42-1.358-2.398l-.508-1.713c-.876-.907-2.006-1.74-3.236-2.457-1.036.316-1.784.66-2.54 1.04-.372.935-.5 1.745-.496 2.492.29 1.447.947 2.557 1.866 3.532.878.302 1.932-.034 2.47-.496l.45 1.973c-.74.226-1.15.572-1.382.886l-.024 1.772c.317.905.64 1.803 1.1 2.492.494.3 1.096.418 1.843.33l.378.543 5.764-.06c2.24.972 3.45 2.213 4.69 3.445l2.918 2.98c1.182.53 2.33.898 3.47 1.206 2.054.218 3.155.366 4.196.78l1.08 1.033.007 1.567-1.44.378-7.75 8.22c-1.78-.236-3.276-.365-5.315-.97a30.97 30.97 0 0 1-4.63-1.772z" fill="url(#D)" stroke="#ffc727" stroke-width="1.7" stroke-linejoin="round"/><circle r="26.222" cy="186.111" cx="131.347" fill="#fff" fill-opacity="0" stroke="#fff" stroke-width="3" paint-order="normal"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/wiki_site.svg b/src/main/webapp/img/lib/active_directory/wiki_site.svg index bea9c03cd62eeb049bd8638ae0b3e090eeae4621..6e67549d94d90dc98b7beb10dd3494494041a2fe 100644 --- a/src/main/webapp/img/lib/active_directory/wiki_site.svg +++ b/src/main/webapp/img/lib/active_directory/wiki_site.svg @@ -1,267 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="193.18477mm" - height="193.63191mm" - viewBox="0 0 193.18477 193.63191" - version="1.1" - id="svg5350" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="wiki_site.svg"> - <defs - id="defs5344"> - <linearGradient - inkscape:collect="always" - id="linearGradient6581"> - <stop - style="stop-color:#ff7a0c;stop-opacity:1" - offset="0" - id="stop6577" /> - <stop - style="stop-color:#ffde2d;stop-opacity:1" - offset="1" - id="stop6579" /> - </linearGradient> - <linearGradient - gradientTransform="translate(34.890216,6.4710993)" - inkscape:collect="always" - xlink:href="#linearGradient1579" - id="linearGradient1581" - x1="-3.1992188" - y1="131.43945" - x2="150.53906" - y2="131.43945" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient1579"> - <stop - style="stop-color:#fe5d02;stop-opacity:1" - offset="0" - id="stop1575" /> - <stop - style="stop-color:#fff835;stop-opacity:1" - offset="1" - id="stop1577" /> - </linearGradient> - <linearGradient - gradientTransform="translate(34.890216,6.4710993)" - inkscape:collect="always" - xlink:href="#linearGradient1567" - id="linearGradient1569" - x1="70.511459" - y1="138.11771" - x2="70.776039" - y2="103.98646" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient1567"> - <stop - style="stop-color:#2c6dc9;stop-opacity:1" - offset="0" - id="stop1563" /> - <stop - style="stop-color:#94cdfe;stop-opacity:1" - offset="1" - id="stop1565" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6581" - id="linearGradient6583" - x1="162.77966" - y1="180.44215" - x2="155.48184" - y2="173.6196" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.49497475" - inkscape:cx="731.97424" - inkscape:cy="309.91909" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata5347"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-23.180454,-64.355767)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.72722149;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 23.180454,64.355767 v 1.874 144.620073 H 193.40497 V 64.355767 Z" - id="path1573-9" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#00a0fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 28.190998,69.510161 V 71.260162 206.31094 H 188.92927 V 69.510161 Z" - id="path1573" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1581);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 31.690998,73.010161 H 185.42927 V 202.81094 H 31.690998 Z" - id="rect1439" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - id="rect1449-9-4-1-3" - style="opacity:1;vector-effect:none;fill:#2c6dc9;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - d="m 86.180026,183.98232 h 85.070454 v 3.43293 H 86.180026 Z m 0,-14.34389 h 85.070454 v 3.43293 H 86.180026 Z m 0,-14.3439 h 85.070454 v 3.43293 H 86.180026 Z m 47.858334,-14.29709 h 37.21212 v 3.33938 h -37.21212 z m 0,-14.34391 h 37.21212 v 3.33938 h -37.21212 z m 0,-14.34388 h 37.21212 v 3.33938 h -37.21212 z" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccccccccccccccccccccccccccc" /> - <rect - style="opacity:1;vector-effect:none;fill:#0073fc;fill-opacity:0.94974874;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="rect1441" - width="153.73059" - height="23.192968" - x="31.690998" - y="73.010162" /> - <rect - style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="rect1443" - width="10.365515" - height="10.380196" - x="127.0935" - y="76.361038" /> - <rect - style="opacity:1;vector-effect:none;fill:#7eb9fd;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="rect1445" - width="37.399254" - height="103.08497" - x="31.690998" - y="96.203133" /> - <rect - style="opacity:1;vector-effect:none;fill:url(#linearGradient1569);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="rect1447" - width="37.569458" - height="34.240837" - x="86.157936" - y="110.48163" /> - <rect - style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="rect1443-1" - width="10.365515" - height="10.380196" - x="145.86923" - y="76.361725" /> - <rect - style="opacity:1;vector-effect:none;fill:#fd1800;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="rect1443-1-2" - width="10.365515" - height="10.380196" - x="164.64496" - y="76.361732" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 141.99609,103.78516 v 110.45703 l 1.07422,0.71093 70.56934,37.84766 V 143.86133 Z" - id="path6493" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#48a0fc;fill-opacity:0.96984923;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 146.98242,112.29492 61.66504,34.49219 v 97.66211 l -61.66504,-33.18945 z" - id="path6450" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 151.92454,208.27486 v -87.63477 l 51.82374,29.24223 v 86.29927 z" - id="path6452" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - id="path6454-9" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0073fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 159.3324,186.66139 v 5.61244 l 30.30957,15.0293 v -5.61244 z m 0,-40.4324 v 5.61244 l 30.30957,15.0293 v -5.61244 z m 0,20.2162 v 5.61244 l 30.30957,15.0293 v -5.61244 z" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccccccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 111.68652,108.97206 v 110.45703 l 1.07422,0.71093 70.56934,37.84766 V 149.04823 Z" - id="path6493-1" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#48a0fc;fill-opacity:0.96984923;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 116.67285,117.48182 61.66504,34.49219 v 97.66211 l -61.66504,-33.18945 z" - id="path6450-5" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 121.61497,213.46176 v -87.63477 l 51.82374,29.24223 v 86.29927 z" - id="path6452-4" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - id="path6454-9-1" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0073fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 129.02283,191.84829 v 5.61244 l 30.30957,15.0293 v -5.61244 z m 0,-40.4324 v 5.61244 l 30.30957,15.0293 v -5.61244 z m 0,20.2162 v 5.61244 l 30.30957,15.0293 v -5.61244 z" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccccccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 202.50586,120.17773 -81.83594,81.21289 -18.61328,33.04493 3.67774,3.22656 29.68359,-22.22852 80.94726,-82.16797 -3.03711,-10.24023 z" - id="path6575" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#00a0fc;fill-opacity:0.92964825;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 203.99805,125.74023 5.33593,1.4043 1.39844,4.71485 -1.53906,1.5625 -6.3418,-6.54493 z" - id="path6573" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 199.30469,130.39844 6.3789,6.58594 -12.73437,12.92578 -6.60547,-6.65039 z" - id="path6571" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient6583);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 182.79492,146.7832 6.64453,6.68946 -55.72265,56.5625 -7.45899,-7.14649 z" - id="path6569" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cccccc;fill-opacity:0.93969852;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 123.27344,206.95508 6.63672,6.35547 -17.66797,13.23047 z" - id="path6561" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="730.148" height="731.838" viewBox="0 0 193.185 193.632"><style><![CDATA[.B{dominant-baseline:auto}.C{fill:#fff}.D{fill:#0073fc}]]></style><defs><linearGradient id="A" x1="31.691" y1="137.911" x2="185.429" y2="137.911" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fe5d02"/><stop offset="1" stop-color="#fff835"/></linearGradient><linearGradient id="B" x1="105.402" y1="144.589" x2="105.666" y2="110.458" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#2c6dc9"/><stop offset="1" stop-color="#94cdfe"/></linearGradient><linearGradient id="C" x1="162.78" y1="180.442" x2="155.482" y2="173.62" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#ff7a0c"/><stop offset="1" stop-color="#ffde2d"/></linearGradient><path id="D" d="M159.332 186.66v5.612l30.3 15.03v-5.612zm0-40.432v5.612l30.3 15.03v-5.612zm0 20.216v5.612l30.3 15.03v-5.612z"/></defs><g transform="translate(-23.18 -64.356)"><path d="M23.18 64.356V210.85h170.225V64.356z" paint-order="normal" class="B C"/><path d="M28.19 69.5v136.8H188.93V69.5z" fill="#00a0fc" paint-order="normal" class="B"/><path d="M31.69 73H185.43v129.8H31.69z" fill="url(#A)" paint-order="normal" class="B"/><path d="M86.18 183.982h85.07v3.433H86.18zm0-14.344h85.07v3.433H86.18zm0-14.344h85.07v3.433H86.18zm47.858-14.297h37.212v3.34h-37.212zm0-14.344h37.212v3.34h-37.212zm0-14.344h37.212v3.34h-37.212z" fill="#2c6dc9" paint-order="normal"/><path d="M31.69 73h153.73v23.193H31.69z" fill-opacity=".95" paint-order="normal" class="D"/><path d="M127.093 76.36h10.366v10.38h-10.366z" paint-order="normal" class="C"/><path d="M31.69 96.203h37.4v103.085h-37.4z" fill="#7eb9fd" paint-order="normal"/><path d="M86.158 110.482h37.57v34.24h-37.57z" fill="url(#B)" paint-order="normal"/><path d="M145.87 76.362h10.366v10.38H145.87z" paint-order="normal" class="C"/><path d="M164.645 76.362H175v10.38h-10.366z" fill="#fd1800" paint-order="normal"/><path d="M141.996 103.785v110.457l1.074.71 70.57 37.848V143.86z" class="B C"/><path d="M146.982 112.295l61.665 34.492v97.662l-61.665-33.19z" fill="#48a0fc" fill-opacity=".97" class="B"/><path d="M151.925 208.275V120.64l51.824 29.242v86.3z" class="C"/><use xlink:href="#D" class="B D"/><path d="M111.687 108.972V219.43l1.074.71 70.57 37.848v-108.94z" class="B C"/><path d="M116.673 117.482l61.665 34.492v97.662l-61.665-33.19z" fill="#48a0fc" fill-opacity=".97" class="B"/><path d="M121.615 213.462v-87.635l51.824 29.242v86.3z" class="C"/><use xlink:href="#D" x="-30.309" y="5.188" class="B D"/><path d="M202.506 120.178L120.67 201.39l-18.613 33.045 3.678 3.227 29.684-22.23 80.947-82.168-3.037-10.24z" class="B C"/><path d="M203.998 125.74l5.336 1.404 1.398 4.715-1.54 1.563-6.342-6.545z" fill="#00a0fc" fill-opacity=".93" class="B"/><path d="M199.305 130.398l6.38 6.586L192.95 149.9l-6.605-6.65z" fill="#ccc" class="B"/><path d="M182.795 146.783l6.645 6.69-55.723 56.563-7.46-7.146z" fill="url(#C)" class="B"/><path d="M123.273 206.955l6.637 6.355-17.668 13.23z" fill="#ccc" fill-opacity=".94" class="B"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/windows_domain.svg b/src/main/webapp/img/lib/active_directory/windows_domain.svg index d025958127b28d281456092e27535059a778ffaa..8686c80243ca618d61f1d0e924c5e14ded69e5c7 100644 --- a/src/main/webapp/img/lib/active_directory/windows_domain.svg +++ b/src/main/webapp/img/lib/active_directory/windows_domain.svg @@ -1,102 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="162.20799mm" - height="138.49704mm" - viewBox="0 0 162.20799 138.49704" - version="1.1" - id="svg3177" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="windows_domain.svg"> - <defs - id="defs3171"> - <linearGradient - inkscape:collect="always" - id="linearGradient3237"> - <stop - style="stop-color:#ffc426;stop-opacity:1" - offset="0" - id="stop3233" /> - <stop - style="stop-color:#fe6305;stop-opacity:1" - offset="1" - id="stop3235" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3237" - id="linearGradient3239" - x1="102.36423" - y1="206.12836" - x2="102.24294" - y2="96.305199" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.98994949" - inkscape:cx="354.81801" - inkscape:cy="216.09573" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata3174"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-21.540271,-77.375427)"> - <path - style="opacity:1;fill:#ffffff;stroke:none;stroke-width:1.09168017;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 21.540271,215.87247 102.13732,77.375427 183.74826,215.87247 Z" - id="path3201-2" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccc" /> - <path - style="opacity:1;fill:#e57a10;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 28.351713,211.85106 102.18018,84.985117 176.93737,211.85106 Z" - id="path3201" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccc" /> - <path - style="opacity:1;fill:url(#linearGradient3239);fill-opacity:1;stroke:none;stroke-width:0.86483461;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 38.393534,206.02325 102.24294,96.305195 166.89555,206.02325 Z" - id="path3201-9" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccc" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="613.07" height="523.453" viewBox="0 0 162.208 138.497"><defs><linearGradient id="A" x1="102.364" y1="206.128" x2="102.243" y2="96.305" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#ffc426"/><stop offset="1" stop-color="#fe6305"/></linearGradient></defs><path d="M0 138.497L80.597 0l81.61 138.497z" fill="#fff"/><path d="M6.812 134.476L80.64 7.6l74.757 126.866z" fill="#e57a10"/><path d="M38.394 206.023l63.85-109.718 64.653 109.718z" fill="url(#A)" transform="translate(-21.54 -77.375)"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/windows_router.svg b/src/main/webapp/img/lib/active_directory/windows_router.svg index 0ac455e26d4ea1bea75616132cdf815b679ef513..82040de4003a00594d7e1239bc52908425df5626 100644 --- a/src/main/webapp/img/lib/active_directory/windows_router.svg +++ b/src/main/webapp/img/lib/active_directory/windows_router.svg @@ -1,321 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="87.927505mm" - height="107.97492mm" - viewBox="0 0 87.927505 107.97492" - version="1.1" - id="svg8" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="windows_router.svg"> - <defs - id="defs2"> - <linearGradient - inkscape:collect="always" - id="linearGradient1111"> - <stop - style="stop-color:#8b7312;stop-opacity:1" - offset="0" - id="stop1107" /> - <stop - id="stop1115" - offset="0.64065492" - style="stop-color:#fdcc38;stop-opacity:1" /> - <stop - style="stop-color:#e7b623;stop-opacity:1" - offset="1" - id="stop1109" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1101"> - <stop - style="stop-color:#2c6ffa;stop-opacity:1" - offset="0" - id="stop1097" /> - <stop - id="stop1105" - offset="0.2798228" - style="stop-color:#9eb9fd;stop-opacity:1" /> - <stop - style="stop-color:#033ac8;stop-opacity:1" - offset="1" - id="stop1099" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1091"> - <stop - style="stop-color:#4a610e;stop-opacity:1" - offset="0" - id="stop1087" /> - <stop - id="stop1095" - offset="0.57889199" - style="stop-color:#a3d944;stop-opacity:1" /> - <stop - style="stop-color:#6ca01f;stop-opacity:1" - offset="1" - id="stop1089" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1076"> - <stop - style="stop-color:#f2580a;stop-opacity:1" - offset="0" - id="stop1072" /> - <stop - id="stop1085" - offset="0.41320711" - style="stop-color:#fea15f;stop-opacity:1" /> - <stop - style="stop-color:#a11a00;stop-opacity:1" - offset="1" - id="stop1074" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient922"> - <stop - style="stop-color:#a8defe;stop-opacity:1" - offset="0" - id="stop918" /> - <stop - style="stop-color:#12a7fc;stop-opacity:1" - offset="1" - id="stop920" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient914"> - <stop - style="stop-color:#05239a;stop-opacity:1" - offset="0" - id="stop910" /> - <stop - style="stop-color:#91bcf8;stop-opacity:1" - offset="1" - id="stop912" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient904"> - <stop - style="stop-color:#0677fc;stop-opacity:1;" - offset="0" - id="stop900" /> - <stop - style="stop-color:#8fcafe;stop-opacity:1" - offset="1" - id="stop902" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient904" - id="linearGradient908" - gradientUnits="userSpaceOnUse" - x1="83.838669" - y1="200.39299" - x2="83.469749" - y2="127.29478" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient914" - id="linearGradient916" - x1="111.26579" - y1="206.30371" - x2="111.47961" - y2="118.37204" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient922" - id="linearGradient924" - x1="103.08207" - y1="136.8896" - x2="103.19426" - y2="107.62359" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1076" - id="linearGradient1078" - x1="113.40508" - y1="171.62988" - x2="135.61188" - y2="178.2917" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1091" - id="linearGradient1093" - x1="137.74834" - y1="177.9375" - x2="157.73453" - y2="182.47322" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1101" - id="linearGradient1103" - x1="111.00654" - y1="194.66295" - x2="129.52806" - y2="198.91518" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,-0.52916667)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1111" - id="linearGradient1113" - x1="131.47989" - y1="200.50813" - x2="151.12216" - y2="204.65082" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.7" - inkscape:cx="528.80274" - inkscape:cy="164.25155" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata5"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-72.583331,-105.73763)"> - <path - style="opacity:1;fill:url(#linearGradient916);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 129.52031,187.46797 92.556918,207.13616 V 137.21057 L 129.52031,117.27232 Z" - id="path833" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="opacity:1;fill:url(#linearGradient908);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 92.556918,207.13616 74.083331,196.9308 v -69.8311 l 18.473587,10.11087" - id="path835" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccc" /> - <path - style="opacity:1;fill:url(#linearGradient924);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 129.52031,117.27232 92.556918,137.21057 74.083331,127.0997 110.93126,107.43625 Z" - id="path837" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 79.355465,150.82884 v 1.32227 l 6.631269,3.63829 v -1.32227 z" - id="path839" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 79.355465,157.50336 v 1.32227 l 6.631269,3.63829 v -1.32227 z" - id="path839-0" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - id="path830" - style="opacity:1;fill:none;stroke:#ffffff;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 92.556918,137.21057 36.963392,-19.93825 z m 0,69.92559 V 137.21057 L 74.083331,127.0997 M 92.556918,207.13616 74.083331,196.9308 v -69.8311 l 36.847929,-19.66345 18.58905,9.83607 v 70.19565 z" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccccccc" /> - <g - id="g1189" - transform="translate(81.146898,-42.713993)"> - <path - sodipodi:nodetypes="ccccccc" - inkscape:connector-curvature="0" - id="path1034-2" - d="m 33.261905,229.47225 4.96093,-17.43415 c 3.61485,-1.53197 6.89537,-2.22061 11.05581,-2.22061 2.78291,0 6.59069,1.79451 8.32932,3.34643 l -5.0082,17.7544 c -3.05146,-2.06265 -6.22687,-3.68526 -9.13349,-3.68526 -4.32967,0 -6.40329,0.9223 -10.20437,2.23919 z" - style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - sodipodi:nodetypes="ccccccc" - inkscape:connector-curvature="0" - id="path1034-9-9" - d="m 27.60333,249.33032 4.960925,-17.43415 c 3.61485,-1.53197 6.89537,-2.22061 11.05581,-2.22061 2.78291,0 6.59068,1.79451 8.32931,3.34643 l -5.00819,17.7544 c -3.05146,-2.06265 -6.22687,-3.68526 -9.13349,-3.68526 -4.32967,0 -6.403285,0.9223 -10.204365,2.23919 z" - style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - sodipodi:nodetypes="ccccccc" - inkscape:connector-curvature="0" - id="path1034-4-9" - d="m 79.363935,216.45557 -4.96094,17.43415 c -3.61484,1.53197 -6.89537,2.22061 -11.0558,2.22061 -2.78292,0 -6.59068,-1.79451 -8.32931,-3.34643 l 5.00818,-17.7544 c 3.05147,2.06265 6.22688,3.68526 9.1335,3.68526 4.32967,0 6.40329,-0.9223 10.20437,-2.23919 z" - style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <path - sodipodi:nodetypes="ccccccc" - inkscape:connector-curvature="0" - id="path1034-4-8-4" - d="m 73.599805,236.77178 -4.96093,17.43415 c -3.61486,1.53197 -6.89538,2.22061 -11.05581,2.22061 -2.78292,0 -6.59069,-1.79451 -8.32932,-3.34643 l 5.00819,-17.7544 c 3.05146,2.06265 6.22688,3.68526 9.13349,3.68526 4.32968,0 6.40329,-0.92229 10.20438,-2.23919 z" - style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - </g> - <path - style="opacity:1;fill:url(#linearGradient1078);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 113.58185,185.59151 4.96093,-17.43415 c 3.61485,-1.53197 6.89537,-2.22061 11.05581,-2.22061 2.78291,0 6.59068,1.79451 8.32931,3.34643 l -5.00819,17.7544 c -3.05146,-2.06265 -6.22687,-3.68526 -9.13349,-3.68526 -4.32967,0 -6.40329,0.9223 -10.20437,2.23919 z" - id="path1034" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccc" /> - <path - style="opacity:1;fill:url(#linearGradient1103);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 107.92327,205.44958 4.96093,-17.43415 c 3.61485,-1.53197 6.89537,-2.22061 11.05581,-2.22061 2.78291,0 6.59068,1.79451 8.32931,3.34643 l -5.00819,17.7544 c -3.05146,-2.06265 -6.22687,-3.68526 -9.13349,-3.68526 -4.32967,0 -6.40329,0.9223 -10.20437,2.23919 z" - id="path1034-9" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccc" /> - <path - style="opacity:1;fill:url(#linearGradient1093);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 159.68387,172.57483 -4.96093,17.43415 c -3.61485,1.53197 -6.89537,2.22061 -11.05581,2.22061 -2.78291,0 -6.59068,-1.79451 -8.32931,-3.34643 l 5.00819,-17.7544 c 3.05146,2.06265 6.22687,3.68526 9.13349,3.68526 4.32967,0 6.40329,-0.9223 10.20437,-2.23919 z" - id="path1034-4" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccc" /> - <path - style="opacity:1;fill:url(#linearGradient1113);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 153.91974,192.89104 -4.96093,17.43415 c -3.61485,1.53197 -6.89537,2.22061 -11.05581,2.22061 -2.78291,0 -6.59068,-1.79451 -8.32931,-3.34643 l 5.00819,-17.7544 c 3.05146,2.06265 6.22687,3.68526 9.13349,3.68526 4.32967,0 6.40329,-0.9223 10.20437,-2.23919 z" - id="path1034-4-8" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccc" /> - <path - style="opacity:1;fill:#ef790f;fill-opacity:1;stroke:#ffffff;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 110.17028,155.07366 v -16.72343 l 8.20309,4.38012 6.66993,-5.45297 -7.94225,-5.60184 -6.93077,4.34001 V 118.7446 h 24.45901 l -7.85169,6.27723 7.21496,5.84143 7.72084,-5.85388 -9.51442,-6.26478 h 26.22127 v 16.39955 l -7.46364,-4.52524 -8.04248,6.54778 7.97091,5.60183 7.53521,-5.54845 v 17.85359 h -24.75842 l 8.07924,-5.86234 -7.41778,-5.33891 -6.70908,5.31528 8.7407,5.88597 z" - id="path1202" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccccccccccccccccccc" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="332.326" height="408.094" viewBox="0 0 87.928 107.975"><defs><linearGradient id="A" x1="83.839" y1="200.393" x2="83.47" y2="127.295" xlink:href="#J"><stop offset="0" stop-color="#0677fc"/><stop offset="1" stop-color="#8fcafe"/></linearGradient><linearGradient id="B" x1="111.266" y1="206.304" x2="111.48" y2="118.372" xlink:href="#J"><stop offset="0" stop-color="#05239a"/><stop offset="1" stop-color="#91bcf8"/></linearGradient><linearGradient id="C" x1="103.082" y1="136.89" x2="103.194" y2="107.624" xlink:href="#J"><stop offset="0" stop-color="#a8defe"/><stop offset="1" stop-color="#12a7fc"/></linearGradient><linearGradient id="D" x1="114.233" y1="172.796" x2="136.44" y2="179.458" xlink:href="#J"><stop offset="0" stop-color="#f2580a"/><stop offset=".413" stop-color="#fea15f"/><stop offset="1" stop-color="#a11a00"/></linearGradient><linearGradient id="E" x1="138.574" y1="179.105" x2="158.561" y2="183.64" xlink:href="#J"><stop offset="0" stop-color="#4a610e"/><stop offset=".579" stop-color="#a3d944"/><stop offset="1" stop-color="#6ca01f"/></linearGradient><linearGradient id="F" x1="117.494" y1="175.442" x2="136.015" y2="179.694" xlink:href="#J"><stop offset="0" stop-color="#2c6ffa"/><stop offset=".28" stop-color="#9eb9fd"/><stop offset="1" stop-color="#033ac8"/></linearGradient><linearGradient id="G" x1="138.07" y1="181.36" x2="157.712" y2="185.503" xlink:href="#J"><stop offset="0" stop-color="#8b7312"/><stop offset=".641" stop-color="#fdcc38"/><stop offset="1" stop-color="#e7b623"/></linearGradient><path id="H" d="M114.41 186.758l4.96-17.434c3.615-1.532 6.895-2.22 11.056-2.22 2.783 0 6.59 1.795 8.33 3.346l-5.008 17.754c-3.05-2.063-6.227-3.685-9.133-3.685-4.33 0-6.403.922-10.204 2.24z"/><path id="I" d="M160.51 173.742l-4.96 17.434c-3.615 1.532-6.895 2.22-11.056 2.22-2.783 0-6.59-1.795-8.33-3.346l5.008-17.754c3.05 2.063 6.227 3.685 9.133 3.685 4.33 0 6.403-.922 10.204-2.24z"/><linearGradient id="J" gradientUnits="userSpaceOnUse"/></defs><g transform="translate(-72.583 -105.738)"><path d="M129.52 187.468l-36.963 19.668V137.21l36.963-19.938z" fill="url(#B)"/><path d="M92.557 207.136L74.083 196.93V127.1l18.474 10.11" fill="url(#A)"/><path d="M129.52 117.272L92.557 137.21 74.083 127.1l36.848-19.663z" fill="url(#C)"/><path d="M79.355 150.83v1.322l6.63 3.638v-1.322zm0 6.673v1.322l6.63 3.638v-1.322z" dominant-baseline="auto" fill="#fff"/><path d="M92.557 137.21l36.963-19.938zm0 69.926V137.21L74.083 127.1m18.474 80.036L74.083 196.93V127.1l36.848-19.663 18.59 9.836v70.196z" fill="none" stroke="#fff" stroke-width="3"/><use xlink:href="#H" opacity=".1"/><use xlink:href="#H" x="-5.66" y="19.858" opacity=".1"/><use xlink:href="#I" opacity=".1"/><use xlink:href="#I" x="-5.763" y="20.316" opacity=".1"/><use xlink:href="#H" x="-0.828" y="-1.166" fill="url(#D)"/><use xlink:href="#H" x="-6.487" y="18.692" fill="url(#F)"/><use xlink:href="#I" x="-0.826" y="-1.167" fill="url(#E)"/><use xlink:href="#I" x="-6.59" y="19.148" fill="url(#G)"/><path d="M110.17 155.074V138.35l8.203 4.38 6.67-5.453-7.942-5.602-6.93 4.34v-17.27h24.46l-7.852 6.277 7.215 5.84 7.72-5.854-9.514-6.265h26.22v16.4l-7.464-4.525-8.042 6.548 7.97 5.602 7.535-5.548v17.854h-24.758l8.08-5.862-7.418-5.34-6.71 5.315 8.74 5.886z" fill="#ef790f" stroke="#fff" stroke-width="2.5"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/windows_server.svg b/src/main/webapp/img/lib/active_directory/windows_server.svg index 44dc29c246b5d327a9530806352ac850992037af..919b819980025dde340f761a72a07f1956b13a23 100644 --- a/src/main/webapp/img/lib/active_directory/windows_server.svg +++ b/src/main/webapp/img/lib/active_directory/windows_server.svg @@ -1,212 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="85.744057mm" - height="103.1048mm" - viewBox="0 0 85.744057 103.1048" - version="1.1" - id="svg8" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="windows_server.svg"> - <defs - id="defs2"> - <linearGradient - inkscape:collect="always" - id="linearGradient922"> - <stop - style="stop-color:#a8defe;stop-opacity:1" - offset="0" - id="stop918" /> - <stop - style="stop-color:#12a7fc;stop-opacity:1" - offset="1" - id="stop920" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient914"> - <stop - style="stop-color:#05239a;stop-opacity:1" - offset="0" - id="stop910" /> - <stop - style="stop-color:#91bcf8;stop-opacity:1" - offset="1" - id="stop912" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient904"> - <stop - style="stop-color:#0677fc;stop-opacity:1;" - offset="0" - id="stop900" /> - <stop - style="stop-color:#8fcafe;stop-opacity:1" - offset="1" - id="stop902" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient904" - id="linearGradient908" - gradientUnits="userSpaceOnUse" - x1="83.838669" - y1="200.39299" - x2="83.469749" - y2="127.29478" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient914" - id="linearGradient916" - x1="111.26579" - y1="206.30371" - x2="111.47961" - y2="118.37204" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient922" - id="linearGradient924" - x1="103.08207" - y1="136.8896" - x2="103.19426" - y2="107.62359" - gradientUnits="userSpaceOnUse" /> - <linearGradient - gradientTransform="translate(-53.461716,21.42703)" - inkscape:collect="always" - xlink:href="#linearGradient922" - id="linearGradient924-0" - x1="115.22456" - y1="144.77986" - x2="114.76978" - y2="122.12843" - gradientUnits="userSpaceOnUse" /> - <linearGradient - gradientTransform="translate(-48.383595,25.035168)" - inkscape:collect="always" - xlink:href="#linearGradient904" - id="linearGradient908-4" - gradientUnits="userSpaceOnUse" - x1="109.22927" - y1="170.05789" - x2="108.72672" - y2="126.89388" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="1.4" - inkscape:cx="244.47579" - inkscape:cy="170.47868" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata5"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-45.276255,-105.73763)"> - <path - style="opacity:0.5;fill:url(#linearGradient908-4);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 73.362287,195.19355 -26.585073,-13.92393 0.03144,-29.77905 26.553633,14.88241 z" - id="path835-0" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="opacity:1;fill:#0073fc;fill-opacity:0.95979901;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 51.02891,162.48109 16.780947,8.36364 v 16.18602 L 51.02891,178.02186 Z" - id="path1006" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="opacity:1;fill:url(#linearGradient916);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 129.52031,187.46797 92.556918,207.13616 V 137.21057 L 129.52031,117.27232 Z" - id="path833" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="opacity:1;fill:url(#linearGradient908);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 92.556918,207.13616 74.083331,196.9308 v -69.8311 l 18.473587,10.11087" - id="path835" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccc" /> - <path - style="opacity:1;fill:url(#linearGradient924);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 129.52031,117.27232 92.556918,137.21057 74.083331,127.0997 110.93126,107.43625 Z" - id="path837" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 79.355465,150.82884 v 1.32227 l 6.631269,3.63829 v -1.32227 z" - id="path839" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 79.355465,157.50336 v 1.32227 l 6.631269,3.63829 v -1.32227 z" - id="path839-0" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - id="path830" - style="opacity:1;fill:none;stroke:#ffffff;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 92.556918,137.21057 36.963392,-19.93825 z m 0,69.92559 V 137.21057 L 74.083331,127.0997 M 92.556918,207.13616 74.083331,196.9308 v -69.8311 l 36.847929,-19.66345 18.58905,9.83607 v 70.19565 z" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccccccc" /> - <path - style="opacity:1;fill:url(#linearGradient924-0);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 73.075555,147.8017 0.222467,18.57128 -26.489368,-14.88241 16.817363,-8.30972 z" - id="path837-4" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - id="path830-9" - style="opacity:1;fill:none;stroke:#ffffff;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 73.362287,147.8017 -9.73627,-4.62085 -16.817363,8.30972 -0.03144,29.77905 26.585073,13.92393 z m 0,18.57128 -26.553633,-14.88241" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccccc" /> - <path - style="opacity:1;fill:#ffffff;stroke:none;stroke-width:0.80534679;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 52.433946,164.79503 13.904057,6.97589 v 12.91845 l -13.904056,-7.49088 z" - id="path1006-8" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="324.072" height="389.688" viewBox="0 0 85.744 103.105"><defs><linearGradient id="A" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#a8defe"/><stop offset="1" stop-color="#12a7fc"/></linearGradient><linearGradient id="B" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#0677fc"/><stop offset="1" stop-color="#8fcafe"/></linearGradient><linearGradient xlink:href="#B" id="C" x1="83.839" y1="200.393" x2="83.47" y2="127.295"/><linearGradient id="D" x1="111.266" y1="206.304" x2="111.48" y2="118.372" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#05239a"/><stop offset="1" stop-color="#91bcf8"/></linearGradient><linearGradient xlink:href="#A" id="E" x1="103.082" y1="136.89" x2="103.194" y2="107.624"/><linearGradient xlink:href="#A" id="F" x1="61.763" y1="166.207" x2="61.308" y2="143.555"/><linearGradient xlink:href="#B" id="G" x1="60.846" y1="195.093" x2="60.343" y2="151.929"/></defs><g transform="translate(-45.276 -105.738)"><path d="M73.362 195.194L46.777 181.27l.03-29.78 26.554 14.882z" opacity=".5" fill="url(#G)"/><path d="M51.03 162.48l16.78 8.364v16.186l-16.78-9.01z" fill="#0073fc" fill-opacity=".96"/><path d="M129.52 187.468l-36.963 19.668V137.21l36.963-19.938z" fill="url(#D)"/><path d="M92.557 207.136L74.083 196.93V127.1l18.474 10.11" fill="url(#C)"/><path d="M129.52 117.272L92.557 137.21 74.083 127.1l36.848-19.663z" fill="url(#E)"/><path d="M79.355 150.83v1.322l6.63 3.638v-1.322zm0 6.673v1.322l6.63 3.638v-1.322z" dominant-baseline="auto" fill="#fff"/><path d="M92.557 137.21l36.963-19.938zm0 69.926V137.21L74.083 127.1m18.474 80.036L74.083 196.93V127.1l36.848-19.663 18.59 9.836v70.196z" fill="none" stroke="#fff" stroke-width="3"/><path d="M73.076 147.802l.222 18.57-26.49-14.882 16.817-8.3z" fill="url(#F)"/><path d="M73.362 147.802l-9.736-4.62-16.817 8.3-.03 29.78 26.585 13.924zm0 18.57L46.81 151.49" fill="none" stroke="#fff" stroke-width="3"/><path d="M52.434 164.795l13.904 6.976v12.918l-13.904-7.49z" fill="#fff"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/windows_server_2.svg b/src/main/webapp/img/lib/active_directory/windows_server_2.svg index 342184f18583057001ce8821308b5b1b6aac5c32..bfc8aea6577033340d74f1e85c35e68dcdc16547 100644 --- a/src/main/webapp/img/lib/active_directory/windows_server_2.svg +++ b/src/main/webapp/img/lib/active_directory/windows_server_2.svg @@ -1,311 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="88.456673mm" - height="108.50409mm" - viewBox="0 0 88.456673 108.50409" - version="1.1" - id="svg8" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="windows_server_2.svg"> - <defs - id="defs2"> - <linearGradient - inkscape:collect="always" - id="linearGradient1111"> - <stop - style="stop-color:#8b7312;stop-opacity:1" - offset="0" - id="stop1107" /> - <stop - id="stop1115" - offset="0.64065492" - style="stop-color:#fdcc38;stop-opacity:1" /> - <stop - style="stop-color:#e7b623;stop-opacity:1" - offset="1" - id="stop1109" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1101"> - <stop - style="stop-color:#2c6ffa;stop-opacity:1" - offset="0" - id="stop1097" /> - <stop - id="stop1105" - offset="0.2798228" - style="stop-color:#9eb9fd;stop-opacity:1" /> - <stop - style="stop-color:#033ac8;stop-opacity:1" - offset="1" - id="stop1099" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1091"> - <stop - style="stop-color:#4a610e;stop-opacity:1" - offset="0" - id="stop1087" /> - <stop - id="stop1095" - offset="0.57889199" - style="stop-color:#a3d944;stop-opacity:1" /> - <stop - style="stop-color:#6ca01f;stop-opacity:1" - offset="1" - id="stop1089" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1076"> - <stop - style="stop-color:#f2580a;stop-opacity:1" - offset="0" - id="stop1072" /> - <stop - id="stop1085" - offset="0.41320711" - style="stop-color:#fea15f;stop-opacity:1" /> - <stop - style="stop-color:#a11a00;stop-opacity:1" - offset="1" - id="stop1074" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient922"> - <stop - style="stop-color:#a8defe;stop-opacity:1" - offset="0" - id="stop918" /> - <stop - style="stop-color:#12a7fc;stop-opacity:1" - offset="1" - id="stop920" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient914"> - <stop - style="stop-color:#05239a;stop-opacity:1" - offset="0" - id="stop910" /> - <stop - style="stop-color:#91bcf8;stop-opacity:1" - offset="1" - id="stop912" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient904"> - <stop - style="stop-color:#0677fc;stop-opacity:1;" - offset="0" - id="stop900" /> - <stop - style="stop-color:#8fcafe;stop-opacity:1" - offset="1" - id="stop902" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient904" - id="linearGradient908" - gradientUnits="userSpaceOnUse" - x1="83.838669" - y1="200.39299" - x2="83.469749" - y2="127.29478" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient914" - id="linearGradient916" - x1="111.26579" - y1="206.30371" - x2="111.47961" - y2="118.37204" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient922" - id="linearGradient924" - x1="103.08207" - y1="136.8896" - x2="103.19426" - y2="107.62359" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1076" - id="linearGradient1078" - x1="113.40508" - y1="171.62988" - x2="135.61188" - y2="178.2917" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1091" - id="linearGradient1093" - x1="137.74834" - y1="177.9375" - x2="157.73453" - y2="182.47322" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1101" - id="linearGradient1103" - x1="111.00654" - y1="194.66295" - x2="129.52806" - y2="198.91518" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,-0.52916667)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1111" - id="linearGradient1113" - x1="131.47989" - y1="200.50813" - x2="151.12216" - y2="204.65082" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="1.4" - inkscape:cx="64.713919" - inkscape:cy="118.77431" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata5"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-72.583331,-105.73763)"> - <path - style="opacity:1;fill:url(#linearGradient916);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 129.52031,187.46797 92.556918,207.13616 V 137.21057 L 129.52031,117.27232 Z" - id="path833" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="opacity:1;fill:url(#linearGradient908);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 92.556918,207.13616 74.083331,196.9308 v -69.8311 l 18.473587,10.11087" - id="path835" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccc" /> - <path - style="opacity:1;fill:url(#linearGradient924);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 129.52031,117.27232 92.556918,137.21057 74.083331,127.0997 110.93126,107.43625 Z" - id="path837" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 79.355465,150.82884 v 1.32227 l 6.631269,3.63829 v -1.32227 z" - id="path839" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 79.355465,157.50336 v 1.32227 l 6.631269,3.63829 v -1.32227 z" - id="path839-0" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - id="path830" - style="opacity:1;fill:none;stroke:#ffffff;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 92.556918,137.21057 36.963392,-19.93825 z m 0,69.92559 V 137.21057 L 74.083331,127.0997 M 92.556918,207.13616 74.083331,196.9308 v -69.8311 l 36.847929,-19.66345 18.58905,9.83607 v 70.19565 z" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccccccc" /> - <path - style="opacity:0.2;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 114.93797,187.28743 4.96093,-17.43415 c 3.61485,-1.53197 6.89537,-2.22061 11.05581,-2.22061 2.78291,0 6.59069,1.79451 8.32932,3.34643 l -5.0082,17.7544 c -3.05146,-2.06265 -6.22687,-3.68526 -9.13349,-3.68526 -4.32967,0 -6.40329,0.9223 -10.20437,2.23919 z" - id="path1034-2" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccc" /> - <path - style="opacity:0.2;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 109.27939,207.1455 4.96093,-17.43415 c 3.61485,-1.53197 6.89537,-2.22061 11.05581,-2.22061 2.78291,0 6.59068,1.79451 8.32931,3.34643 l -5.00819,17.7544 c -3.05146,-2.06265 -6.22687,-3.68526 -9.13349,-3.68526 -4.32967,0 -6.40329,0.9223 -10.20437,2.23919 z" - id="path1034-9-9" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccc" /> - <path - style="opacity:0.2;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 161.04,174.27075 -4.96094,17.43415 c -3.61484,1.53197 -6.89537,2.22061 -11.0558,2.22061 -2.78292,0 -6.59068,-1.79451 -8.32931,-3.34643 l 5.00818,-17.7544 c 3.05147,2.06265 6.22688,3.68526 9.1335,3.68526 4.32967,0 6.40329,-0.9223 10.20437,-2.23919 z" - id="path1034-4-9" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccc" /> - <path - style="opacity:0.2;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 155.27587,194.58696 -4.96093,17.43415 c -3.61486,1.53197 -6.89538,2.22061 -11.05581,2.22061 -2.78292,0 -6.59069,-1.79451 -8.32932,-3.34643 l 5.00819,-17.7544 c 3.05146,2.06265 6.22688,3.68526 9.13349,3.68526 4.32968,0 6.40329,-0.92229 10.20438,-2.23919 z" - id="path1034-4-8-4" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccc" /> - <path - style="opacity:1;fill:url(#linearGradient1078);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 113.58185,185.59151 4.96093,-17.43415 c 3.61485,-1.53197 6.89537,-2.22061 11.05581,-2.22061 2.78291,0 6.59068,1.79451 8.32931,3.34643 l -5.00819,17.7544 c -3.05146,-2.06265 -6.22687,-3.68526 -9.13349,-3.68526 -4.32967,0 -6.40329,0.9223 -10.20437,2.23919 z" - id="path1034" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccc" /> - <path - style="opacity:1;fill:url(#linearGradient1103);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 107.92327,205.44958 4.96093,-17.43415 c 3.61485,-1.53197 6.89537,-2.22061 11.05581,-2.22061 2.78291,0 6.59068,1.79451 8.32931,3.34643 l -5.00819,17.7544 c -3.05146,-2.06265 -6.22687,-3.68526 -9.13349,-3.68526 -4.32967,0 -6.40329,0.9223 -10.20437,2.23919 z" - id="path1034-9" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccc" /> - <path - style="opacity:1;fill:url(#linearGradient1093);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 159.68387,172.57483 -4.96093,17.43415 c -3.61485,1.53197 -6.89537,2.22061 -11.05581,2.22061 -2.78291,0 -6.59068,-1.79451 -8.32931,-3.34643 l 5.00819,-17.7544 c 3.05146,2.06265 6.22687,3.68526 9.13349,3.68526 4.32967,0 6.40329,-0.9223 10.20437,-2.23919 z" - id="path1034-4" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccc" /> - <path - style="opacity:1;fill:url(#linearGradient1113);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 153.91974,192.89104 -4.96093,17.43415 c -3.61485,1.53197 -6.89537,2.22061 -11.05581,2.22061 -2.78291,0 -6.59068,-1.79451 -8.32931,-3.34643 l 5.00819,-17.7544 c 3.05146,2.06265 6.22687,3.68526 9.13349,3.68526 4.32967,0 6.40329,-0.9223 10.20437,-2.23919 z" - id="path1034-4-8" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccc" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="334.326" height="410.094" viewBox="0 0 88.457 108.504"><defs><linearGradient id="A" x1="83.839" y1="200.393" x2="83.47" y2="127.295" xlink:href="#J"><stop offset="0" stop-color="#0677fc"/><stop offset="1" stop-color="#8fcafe"/></linearGradient><linearGradient id="B" x1="111.266" y1="206.304" x2="111.48" y2="118.372" xlink:href="#J"><stop offset="0" stop-color="#05239a"/><stop offset="1" stop-color="#91bcf8"/></linearGradient><linearGradient id="C" x1="103.082" y1="136.89" x2="103.194" y2="107.624" xlink:href="#J"><stop offset="0" stop-color="#a8defe"/><stop offset="1" stop-color="#12a7fc"/></linearGradient><linearGradient id="D" x1="114.761" y1="173.325" x2="136.968" y2="179.987" xlink:href="#J"><stop offset="0" stop-color="#f2580a"/><stop offset=".413" stop-color="#fea15f"/><stop offset="1" stop-color="#a11a00"/></linearGradient><linearGradient id="E" x1="139.104" y1="179.633" x2="159.091" y2="184.168" xlink:href="#J"><stop offset="0" stop-color="#4a610e"/><stop offset=".579" stop-color="#a3d944"/><stop offset="1" stop-color="#6ca01f"/></linearGradient><linearGradient id="F" x1="118.022" y1="175.971" x2="136.543" y2="180.223" xlink:href="#J"><stop offset="0" stop-color="#2c6ffa"/><stop offset=".28" stop-color="#9eb9fd"/><stop offset="1" stop-color="#033ac8"/></linearGradient><linearGradient id="G" x1="138.6" y1="181.888" x2="158.242" y2="186.031" xlink:href="#J"><stop offset="0" stop-color="#8b7312"/><stop offset=".641" stop-color="#fdcc38"/><stop offset="1" stop-color="#e7b623"/></linearGradient><path id="H" d="M114.938 187.287l4.96-17.434c3.615-1.532 6.895-2.22 11.056-2.22 2.783 0 6.59 1.795 8.33 3.346l-5.008 17.754c-3.05-2.063-6.227-3.685-9.133-3.685-4.33 0-6.403.922-10.204 2.24z"/><path id="I" d="M161.04 174.27l-4.96 17.434c-3.615 1.532-6.895 2.22-11.056 2.22-2.783 0-6.59-1.795-8.33-3.346l5.008-17.754c3.05 2.063 6.227 3.685 9.133 3.685 4.33 0 6.403-.922 10.204-2.24z"/><linearGradient id="J" gradientUnits="userSpaceOnUse"/></defs><g transform="translate(-72.583 -105.738)"><path d="M129.52 187.468l-36.963 19.668V137.21l36.963-19.938z" fill="url(#B)"/><path d="M92.557 207.136L74.083 196.93V127.1l18.474 10.11" fill="url(#A)"/><path d="M129.52 117.272L92.557 137.21 74.083 127.1l36.848-19.663z" fill="url(#C)"/><path d="M79.355 150.83v1.322l6.63 3.638v-1.322zm0 6.673v1.322l6.63 3.638v-1.322z" dominant-baseline="auto" fill="#fff"/><path d="M92.557 137.21l36.963-19.938zm0 69.926V137.21L74.083 127.1m18.474 80.036L74.083 196.93V127.1l36.848-19.663 18.59 9.836v70.196z" fill="none" stroke="#fff" stroke-width="3"/><use xlink:href="#H" opacity=".2"/><use xlink:href="#H" x="-5.658" y="19.859" opacity=".2"/><use xlink:href="#I" opacity=".2"/><use xlink:href="#I" x="-5.764" y="20.317" opacity=".2"/><use xlink:href="#H" x="-1.356" y="-1.695" fill="url(#D)"/><use xlink:href="#H" x="-7.015" y="18.163" fill="url(#F)"/><use xlink:href="#I" x="-1.356" y="-1.695" fill="url(#E)"/><use xlink:href="#I" x="-7.12" y="18.62" fill="url(#G)"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/wiring_hub.svg b/src/main/webapp/img/lib/active_directory/wiring_hub.svg index c1e7cf66f388f058e53735ffcfd64db938c823c6..6599995104e66b798f3cb7a82c5b190a5744054e 100644 --- a/src/main/webapp/img/lib/active_directory/wiring_hub.svg +++ b/src/main/webapp/img/lib/active_directory/wiring_hub.svg @@ -1,152 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="245.45703mm" - height="166.53906mm" - viewBox="0 0 245.45703 166.53906" - version="1.1" - id="svg3830" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="wiring_hub.svg"> - <defs - id="defs3824"> - <linearGradient - inkscape:collect="always" - id="linearGradient5735"> - <stop - style="stop-color:#086bff;stop-opacity:1" - offset="0" - id="stop5731" /> - <stop - style="stop-color:#99ccff;stop-opacity:1" - offset="1" - id="stop5733" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient5721"> - <stop - style="stop-color:#080a9e;stop-opacity:1" - offset="0" - id="stop5717" /> - <stop - style="stop-color:#7998ea;stop-opacity:1" - offset="1" - id="stop5719" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient5705"> - <stop - style="stop-color:#c0e5ff;stop-opacity:1" - offset="0" - id="stop5701" /> - <stop - style="stop-color:#64c1ff;stop-opacity:1" - offset="1" - id="stop5703" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5705" - id="linearGradient5707" - x1="116.56683" - y1="190.98032" - x2="116.07862" - y2="72.04538" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5721" - id="linearGradient5715" - x1="178.26877" - y1="224.83722" - x2="177.46696" - y2="145.72543" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5735" - id="linearGradient5729" - x1="52.384827" - y1="225.63902" - x2="53.453907" - y2="123.80934" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.98994949" - inkscape:cx="328.18527" - inkscape:cy="299.84533" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" /> - <metadata - id="metadata3827"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(16.179688,-66.080078)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 87.822266,66.080078 -104.001954,51.828122 0.06836,41.39649 1.347656,0.69726 140.292972,72.61719 103.74804,-51.80469 V 139.5293 Z" - id="path5699" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient5707);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 87.775396,71.689453 221.38281,141.0625 125.39649,191.60352 -8.2480419,119.54102 Z" - id="path5697" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient5729);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m -11.169917,123.64648 134.060547,72.28516 0.14063,29.76367 -134.148443,-69.43554 z" - id="path5695" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient5715);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 224.27734,145.18945 v 32.53321 l -96.24609,48.05859 -0.14063,-29.8418 z" - id="path5632" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:18.89763832;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 17.679688,542.41016 v 31.375 l 21.371093,11.24023 v -31.375 z m 47.828124,25.15625 v 31.375 l 26.189454,13.77539 v -31.375 z m 52.646488,27.6914 v 31.37305 l 26.19922,13.78125 v -31.37305 z m 52.65429,27.69531 v 31.37305 l 26.19922,13.7793 v -31.37109 z m 52.65625,27.69727 v 31.37109 l 26.19727,13.7793 v -31.37109 z m 52.6543,27.69531 v 31.36914 l 26.19922,13.78125 v -31.36914 z m 52.65625,27.69727 v 31.36719 l 26.19727,13.77929 v -31.36718 z m 52.6543,27.69531 v 31.36719 l 25.1582,13.23242 V 746.9707 Z" - transform="scale(0.26458333)" - id="path5634" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="927.712" height="629.439" viewBox="0 0 245.457 166.539"><style><![CDATA[.B{dominant-baseline:auto}]]></style><defs><linearGradient id="A" x1="116.567" y1="190.98" x2="116.079" y2="72.045" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#c0e5ff"/><stop offset="1" stop-color="#64c1ff"/></linearGradient><linearGradient id="B" x1="178.269" y1="224.837" x2="177.467" y2="145.725" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#080a9e"/><stop offset="1" stop-color="#7998ea"/></linearGradient><linearGradient id="C" x1="52.385" y1="225.639" x2="53.454" y2="123.809" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#086bff"/><stop offset="1" stop-color="#9cf"/></linearGradient></defs><g transform="translate(16.18 -66.08)" class="B"><path d="M87.822 66.08L-16.18 117.908l.068 41.396 1.348.697L125.53 232.62l103.748-51.805V139.53z" fill="#fff"/><path d="M87.775 71.69l133.607 69.373-95.986 50.54L-8.248 119.54z" fill="url(#A)"/><path d="M-11.17 123.646l134.06 72.285.14 29.764-134.148-69.436z" fill="url(#C)"/><path d="M224.277 145.19v32.533l-96.246 48.06-.14-29.842z" fill="url(#B)"/><path d="M4.678 143.513v8.3l5.654 2.974v-8.3zm12.655 6.656v8.3l6.93 3.645v-8.3zm13.93 7.327v8.3l6.932 3.646v-8.3zm13.93 7.328v8.3l6.932 3.646v-8.3zm13.932 7.328v8.3l6.93 3.646v-8.3zm13.93 7.328v8.3l6.932 3.646v-8.3zm13.932 7.328v8.3l6.93 3.646v-8.3zm13.93 7.328v8.3l6.656 3.5v-8.3z" fill="#fff"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/workspace_site.svg b/src/main/webapp/img/lib/active_directory/workspace_site.svg index 68ec4b29efd7428e77a6a4386f237faf80bed440..b01f1d64d32d174c97e9af27b5a6d53e0edd9ef6 100644 --- a/src/main/webapp/img/lib/active_directory/workspace_site.svg +++ b/src/main/webapp/img/lib/active_directory/workspace_site.svg @@ -1,442 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="198.66289mm" - height="192.93175mm" - viewBox="0 0 198.66289 192.93175" - version="1.1" - id="svg1243" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="workspace_site.svg"> - <defs - id="defs1237"> - <linearGradient - inkscape:collect="always" - id="linearGradient5328"> - <stop - style="stop-color:#acdffe;stop-opacity:1" - offset="0" - id="stop5324" /> - <stop - style="stop-color:#09a3fc;stop-opacity:1" - offset="1" - id="stop5326" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient5322"> - <stop - style="stop-color:#0f7cfc;stop-opacity:1" - offset="0" - id="stop5318" /> - <stop - style="stop-color:#b1d9fe;stop-opacity:1" - offset="1" - id="stop5320" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient5308"> - <stop - style="stop-color:#0f2ea0;stop-opacity:1" - offset="0" - id="stop5304" /> - <stop - style="stop-color:#89b3f3;stop-opacity:1" - offset="1" - id="stop5306" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3869"> - <stop - style="stop-color:#0f2da0;stop-opacity:1" - offset="0" - id="stop3865" /> - <stop - style="stop-color:#89b3f3;stop-opacity:1" - offset="1" - id="stop3867" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3855"> - <stop - style="stop-color:#1c84fd;stop-opacity:1" - offset="0" - id="stop3851" /> - <stop - style="stop-color:#89c6fe;stop-opacity:1" - offset="1" - id="stop3853" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3839"> - <stop - style="stop-color:#98cffe;stop-opacity:1" - offset="0" - id="stop3835" /> - <stop - style="stop-color:#98cffe;stop-opacity:1" - offset="1" - id="stop3837" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3829"> - <stop - style="stop-color:#1b82fc;stop-opacity:1" - offset="0" - id="stop3825" /> - <stop - style="stop-color:#deedff;stop-opacity:1" - offset="1" - id="stop3827" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1579"> - <stop - style="stop-color:#fe5d02;stop-opacity:1" - offset="0" - id="stop1575" /> - <stop - style="stop-color:#fff835;stop-opacity:1" - offset="1" - id="stop1577" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1567"> - <stop - style="stop-color:#2c6dc9;stop-opacity:1" - offset="0" - id="stop1563" /> - <stop - style="stop-color:#94cdfe;stop-opacity:1" - offset="1" - id="stop1565" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1567" - id="linearGradient1569" - x1="70.511459" - y1="138.11771" - x2="70.776039" - y2="103.98646" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1579" - id="linearGradient1581" - x1="-3.1992188" - y1="131.43945" - x2="150.53906" - y2="131.43945" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3829" - id="linearGradient3833" - gradientUnits="userSpaceOnUse" - x1="146.38016" - y1="172.71407" - x2="145.91211" - y2="150.67383" - gradientTransform="translate(5.8223934,-28.096178)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3839" - id="linearGradient3841" - x1="155.56055" - y1="184.05859" - x2="155.92169" - y2="171.40445" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(5.8223934,-28.096178)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3855" - id="linearGradient3849" - x1="137.96117" - y1="220.98294" - x2="138.27792" - y2="174.14363" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(5.8223934,-28.096178)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3869" - id="linearGradient3863" - x1="165.56107" - y1="220.33961" - x2="165.03191" - y2="180.51982" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(5.8223934,-28.096178)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3839" - id="linearGradient5262" - gradientUnits="userSpaceOnUse" - x1="155.56055" - y1="184.05859" - x2="155.92169" - y2="171.40445" - gradientTransform="matrix(-1,0,0,1,220.59268,-28.096178)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3855" - id="linearGradient5264" - gradientUnits="userSpaceOnUse" - x1="137.96117" - y1="220.98294" - x2="138.27792" - y2="174.14363" - gradientTransform="matrix(-1,0,0,1,220.59268,-28.096178)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3869" - id="linearGradient5266" - gradientUnits="userSpaceOnUse" - x1="165.56107" - y1="220.33961" - x2="165.03191" - y2="180.51982" - gradientTransform="matrix(-1,0,0,1,220.59268,-28.096178)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3829" - id="linearGradient5268" - gradientUnits="userSpaceOnUse" - x1="146.38016" - y1="172.71407" - x2="145.91211" - y2="150.67383" - gradientTransform="matrix(-1,0,0,1,220.59268,-28.096178)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5308" - id="linearGradient5302" - x1="153.11536" - y1="243.97459" - x2="152.54234" - y2="204.89124" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5322" - id="linearGradient5316" - x1="78.279884" - y1="243.60042" - x2="77.157356" - y2="205.43433" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5328" - id="linearGradient5330" - x1="114.02148" - y1="231.58984" - x2="113.32422" - y2="172.14844" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.70710678" - inkscape:cx="508.63584" - inkscape:cy="373.20666" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata1240"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(11.709762,-57.884668)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.72722149;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m -11.709762,57.884668 v 1.874 144.620072 H 158.51476 V 57.884668 Z" - id="path1573-9" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#00a0fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m -6.6992188,63.039062 v 1.75 135.050778 H 154.03906 V 63.039062 Z" - id="path1573" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1581);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M -3.1992188,66.539062 H 150.53906 V 196.33984 H -3.1992188 Z" - id="rect1439" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - id="rect1449-9-4-1-3" - style="opacity:1;vector-effect:none;fill:#2c6dc9;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - d="m 51.28981,177.51122 h 85.07046 v 3.43293 H 51.28981 Z m 0,-14.34389 h 85.07046 v 3.43293 H 51.28981 Z m 0,-14.3439 h 85.07046 v 3.43293 H 51.28981 Z m 47.858338,-14.29709 h 37.212122 v 3.33938 H 99.148148 Z m 0,-14.34391 h 37.212122 v 3.33938 H 99.148148 Z m 0,-14.34388 h 37.212122 v 3.33938 H 99.148148 Z" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccccccccccccccccccccccccccc" /> - <rect - style="opacity:1;vector-effect:none;fill:#0073fc;fill-opacity:0.94974874;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="rect1441" - width="153.73059" - height="23.192968" - x="-3.1992188" - y="66.539062" /> - <rect - style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="rect1443" - width="10.365515" - height="10.380196" - x="92.203278" - y="69.889938" /> - <rect - style="opacity:1;vector-effect:none;fill:#7eb9fd;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="rect1445" - width="37.399254" - height="103.08497" - x="-3.1992188" - y="89.732033" /> - <rect - style="opacity:1;vector-effect:none;fill:url(#linearGradient1569);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="rect1447" - width="37.569458" - height="34.240837" - x="51.267719" - y="104.01053" /> - <rect - style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="rect1443-1" - width="10.365515" - height="10.380196" - x="110.97902" - y="69.890625" /> - <rect - style="opacity:1;vector-effect:none;fill:#fd1800;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="rect1443-1-2" - width="10.365515" - height="10.380196" - x="129.75475" - y="69.890633" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 145.48059,130.19288 -21.38867,11.25977 0.39844,40.15625 1.17187,0.52148 35.78516,15.97461 21.28125,-11.35547 0.18945,-40.16211 z" - id="path3809" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient3841);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 145.64075,134.62843 30.67383,13.43359 -14.93164,7.90039 -30.67578,-13.47265 z" - id="path3807" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient3849);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 128.13489,145.72804 31.32422,13.75781 -0.082,33.31445 -30.91211,-13.79882 z" - id="path3805" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient3863);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 178.89661,151.22023 -0.1582,33.125 -15.36133,8.19726 0.082,-33.15429 z" - id="path3732" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 151.7345,118.57765 c -8.41704,0 -15.2832,6.86616 -15.2832,15.2832 0,8.41704 6.86616,15.2832 15.2832,15.2832 8.41704,0 15.2832,-6.86616 15.2832,-15.2832 0,-8.41704 -6.86616,-15.2832 -15.2832,-15.2832 z" - id="path3801" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient3833);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 151.7345,122.57765 c 6.25528,0 11.2832,5.02792 11.2832,11.2832 0,6.25528 -5.02792,11.2832 -11.2832,11.2832 -6.25528,0 -11.2832,-5.02792 -11.2832,-11.2832 0,-6.25528 5.02792,-11.2832 11.2832,-11.2832 z" - id="path3736" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 80.93448,130.19288 21.38867,11.25977 -0.39844,40.15625 -1.17187,0.52148 -35.78516,15.97461 -21.28125,-11.35547 -0.18945,-40.16211 z" - id="path3809-8" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient5262);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 80.77432,134.62843 -30.67383,13.43359 14.93164,7.90039 30.67578,-13.47265 z" - id="path3807-4" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient5264);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 98.28018,145.72804 -31.32422,13.75781 0.082,33.31445 30.91211,-13.79882 z" - id="path3805-8" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient5266);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 47.51846,151.22023 0.1582,33.125 15.36133,8.19726 -0.082,-33.15429 z" - id="path3732-2" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 74.68057,118.57765 c 8.41704,0 15.2832,6.86616 15.2832,15.2832 0,8.41704 -6.86616,15.2832 -15.2832,15.2832 -8.41704,0 -15.2832,-6.86616 -15.2832,-15.2832 0,-8.41704 6.86616,-15.2832 15.2832,-15.2832 z" - id="path3801-2" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient5268);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 74.68057,122.57765 c -6.25528,0 -11.2832,5.02792 -11.2832,11.2832 0,6.25528 5.02792,11.2832 11.2832,11.2832 6.25528,0 11.2832,-5.02792 11.2832,-11.2832 0,-6.25528 -5.02792,-11.2832 -11.2832,-11.2832 z" - id="path3736-2" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 113.20703,166.69141 -70.771483,32.86523 0.458984,17.10547 1.375,0.66016 69.771489,33.49414 72.9121,-36.7168 v -16.98047 z" - id="path5294" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient5330);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 113.32422,172.14844 65.13086,26.87304 -64.4336,32.56836 -63.195308,-30.41796 z" - id="path5292" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient5302);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 181.95312,202.85742 v 8.16211 l -65.42968,32.94922 0.0215,-8.05078 z" - id="path5290" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient5316);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 47.587891,205.16211 63.957029,30.78711 -0.0215,8.11328 -63.712893,-30.58594 z" - id="path5283" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="750.852" height="729.192" viewBox="0 0 198.663 192.932"><style><![CDATA[.B{dominant-baseline:auto}.C{fill:#fff}]]></style><defs><linearGradient id="A" xlink:href="#R"><stop offset="0" stop-color="#0f2da0"/><stop offset="1" stop-color="#89b3f3"/></linearGradient><linearGradient id="B" xlink:href="#R"><stop offset="0" stop-color="#1c84fd"/><stop offset="1" stop-color="#89c6fe"/></linearGradient><linearGradient id="C" xlink:href="#R"><stop offset="0" stop-color="#98cffe"/><stop offset="1" stop-color="#98cffe"/></linearGradient><linearGradient id="D" xlink:href="#R"><stop offset="0" stop-color="#1b82fc"/><stop offset="1" stop-color="#deedff"/></linearGradient><linearGradient id="E" x1="70.511" y1="138.118" x2="70.776" y2="103.986" xlink:href="#R"><stop offset="0" stop-color="#2c6dc9"/><stop offset="1" stop-color="#94cdfe"/></linearGradient><linearGradient id="F" x1="-3.199" y1="131.439" x2="150.539" y2="131.439" xlink:href="#R"><stop offset="0" stop-color="#fe5d02"/><stop offset="1" stop-color="#fff835"/></linearGradient><linearGradient xlink:href="#D" id="G" x1="152.203" y1="144.618" x2="151.735" y2="122.578"/><linearGradient xlink:href="#C" id="H" x1="161.383" y1="155.962" x2="161.744" y2="143.308"/><linearGradient xlink:href="#B" id="I" x1="143.784" y1="192.887" x2="144.1" y2="146.047"/><linearGradient xlink:href="#A" id="J" x1="171.383" y1="192.243" x2="170.854" y2="152.424"/><linearGradient xlink:href="#C" id="K" x1="65.032" y1="155.962" x2="64.671" y2="143.308"/><linearGradient xlink:href="#B" id="L" x1="82.632" y1="192.887" x2="82.315" y2="146.047"/><linearGradient xlink:href="#A" id="M" x1="55.032" y1="192.243" x2="55.561" y2="152.424"/><linearGradient xlink:href="#D" id="N" x1="74.213" y1="144.618" x2="74.681" y2="122.578"/><linearGradient id="O" x1="153.115" y1="243.975" x2="152.542" y2="204.891" xlink:href="#R"><stop offset="0" stop-color="#0f2ea0"/><stop offset="1" stop-color="#89b3f3"/></linearGradient><linearGradient id="P" x1="78.28" y1="243.6" x2="77.157" y2="205.434" xlink:href="#R"><stop offset="0" stop-color="#0f7cfc"/><stop offset="1" stop-color="#b1d9fe"/></linearGradient><linearGradient id="Q" x1="114.021" y1="231.59" x2="113.324" y2="172.148" xlink:href="#R"><stop offset="0" stop-color="#acdffe"/><stop offset="1" stop-color="#09a3fc"/></linearGradient><linearGradient id="R" gradientUnits="userSpaceOnUse"/></defs><g transform="translate(11.71 -57.885)"><path d="M-11.7 57.885V204.38h170.225V57.885z" paint-order="normal" class="B C"/><path d="M-6.7 63.04v136.8H154.04V63.04z" fill="#00a0fc" paint-order="normal" class="B"/><path d="M-3.2 66.54H150.54v129.8H-3.2z" fill="url(#F)" paint-order="normal" class="B"/><path d="M51.3 177.51h85.07v3.433H51.3zm0-14.344h85.07v3.433H51.3zm0-14.344h85.07v3.433H51.3zm47.858-14.297h37.212v3.34H99.148zm0-14.344h37.212v3.34H99.148zm0-14.344h37.212v3.34H99.148z" fill="#2c6dc9" paint-order="normal"/><path d="M-3.2 66.54h153.73v23.193H-3.2z" fill="#0073fc" fill-opacity=".95" paint-order="normal"/><path d="M92.203 69.9h10.366v10.38H92.203z" paint-order="normal" class="C"/><path d="M-3.2 89.732h37.4v103.085H-3.2z" fill="#7eb9fd" paint-order="normal"/><path d="M51.268 104.01h37.57v34.24h-37.57z" fill="url(#E)" paint-order="normal"/><path d="M110.98 69.89h10.366v10.38H110.98z" paint-order="normal" class="C"/><path d="M129.755 69.89h10.366v10.38h-10.366z" fill="#fd1800" paint-order="normal"/><path d="M145.48 130.193l-21.39 11.26.398 40.156 1.172.52 35.785 15.975 21.28-11.355.19-40.162z" class="B C"/><path d="M145.64 134.628l30.674 13.434-14.932 7.9-30.676-13.473z" fill="url(#H)" class="B"/><path d="M128.135 145.728l31.324 13.758-.082 33.314-30.912-13.8z" fill="url(#I)" class="B"/><path d="M178.897 151.22l-.158 33.125-15.36 8.197.082-33.154z" fill="url(#J)" class="B"/><path d="M151.735 118.578c-8.417 0-15.283 6.866-15.283 15.283s6.866 15.283 15.283 15.283 15.283-6.866 15.283-15.283-6.866-15.283-15.283-15.283z" paint-order="normal" class="B C"/><path d="M151.735 122.578c6.255 0 11.283 5.028 11.283 11.283s-5.028 11.283-11.283 11.283-11.283-5.028-11.283-11.283 5.028-11.283 11.283-11.283z" fill="url(#G)" paint-order="normal" class="B"/><path d="M80.934 130.193l21.39 11.26-.398 40.156-1.172.52-35.785 15.975-21.28-11.355-.19-40.162z" class="B C"/><path d="M80.774 134.628L50.1 148.062l14.932 7.9L95.708 142.5z" fill="url(#K)" class="B"/><path d="M98.28 145.728l-31.324 13.758.082 33.314L97.95 179z" fill="url(#L)" class="B"/><path d="M47.518 151.22l.158 33.125 15.36 8.197-.082-33.154z" fill="url(#M)" class="B"/><path d="M74.68 118.578c8.417 0 15.283 6.866 15.283 15.283s-6.866 15.283-15.283 15.283-15.283-6.866-15.283-15.283 6.866-15.283 15.283-15.283z" paint-order="normal" class="B C"/><path d="M74.68 122.578c-6.255 0-11.283 5.028-11.283 11.283s5.028 11.283 11.283 11.283 11.283-5.028 11.283-11.283-5.028-11.283-11.283-11.283z" fill="url(#N)" paint-order="normal" class="B"/><path d="M113.207 166.69l-70.77 32.865.46 17.105 71.146 34.154 72.912-36.717v-16.98z" class="B C"/><path d="M113.324 172.148l65.13 26.873L114.02 231.6l-63.195-30.418z" fill="url(#Q)" class="B"/><path d="M181.953 202.857v8.162l-65.43 32.95.022-8.05z" fill="url(#O)" class="B"/><path d="M47.588 205.162l63.957 30.787-.022 8.113-63.713-30.586z" fill="url(#P)" class="B"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/workstation_client.svg b/src/main/webapp/img/lib/active_directory/workstation_client.svg index c38bb96e369d8897c895f594419238b1f4cc8834..e5486de5b13302ea2d182736f838b60a4da44e74 100644 --- a/src/main/webapp/img/lib/active_directory/workstation_client.svg +++ b/src/main/webapp/img/lib/active_directory/workstation_client.svg @@ -1,274 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="121.03125mm" - height="142.77148mm" - viewBox="0 0 121.03125 142.77148" - version="1.1" - id="svg1367" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="workstation_client.svg"> - <defs - id="defs1361"> - <linearGradient - inkscape:collect="always" - id="linearGradient1534"> - <stop - style="stop-color:#032098;stop-opacity:1" - offset="0" - id="stop1530" /> - <stop - style="stop-color:#4a6ec8;stop-opacity:1" - offset="1" - id="stop1532" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1526"> - <stop - style="stop-color:#4063c1;stop-opacity:1" - offset="0" - id="stop1522" /> - <stop - style="stop-color:#8fbaf7;stop-opacity:1" - offset="1" - id="stop1524" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1518"> - <stop - style="stop-color:#3355b9;stop-opacity:1;" - offset="0" - id="stop1514" /> - <stop - style="stop-color:#82acee;stop-opacity:1" - offset="1" - id="stop1516" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1502"> - <stop - style="stop-color:#77ccfd;stop-opacity:1;" - offset="0" - id="stop1498" /> - <stop - style="stop-color:#12a7fc;stop-opacity:1" - offset="1" - id="stop1500" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1494"> - <stop - style="stop-color:#a0dbfe;stop-opacity:1" - offset="0" - id="stop1490" /> - <stop - style="stop-color:#1eabfd;stop-opacity:1" - offset="1" - id="stop1492" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1486"> - <stop - style="stop-color:#2d8efd;stop-opacity:1;" - offset="0" - id="stop1482" /> - <stop - style="stop-color:#8bc7fe;stop-opacity:1" - offset="1" - id="stop1484" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient1452"> - <stop - style="stop-color:#0676fc;stop-opacity:1" - offset="0" - id="stop1448" /> - <stop - style="stop-color:#439cfd;stop-opacity:1" - offset="1" - id="stop1450" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1452" - id="linearGradient1454" - x1="77.255371" - y1="209.23868" - x2="75.102737" - y2="161.49434" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1486" - id="linearGradient1488" - x1="77.999771" - y1="178.47578" - x2="77.365036" - y2="100.118" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1494" - id="linearGradient1496" - x1="87.263641" - y1="119.19267" - x2="87.871048" - y2="85.174812" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1502" - id="linearGradient1504" - x1="119.87" - y1="106.97574" - x2="120.22609" - y2="82.864517" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1518" - id="linearGradient1520" - x1="111.91082" - y1="176.83435" - x2="113.25636" - y2="116.16418" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1526" - id="linearGradient1528" - x1="144.32516" - y1="167.80792" - x2="144.66016" - y2="102.12109" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient1534" - id="linearGradient1536" - x1="134.32059" - y1="212.85394" - x2="134.26509" - y2="154.72281" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.98994949" - inkscape:cx="228.7084" - inkscape:cy="300.20178" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata1364"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-46.257817,-74.808594)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1504);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8.80867577;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 110.36313,78.731679 144.28035,96.612796 122.27542,109.31435 90.23672,92.41226 Z" - id="path1428" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1496);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8.28602791;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 69.276991,85.028041 18.399328,9.170499 0.399298,0.208465 30.031553,15.510915 -15.55073,9.42151 -49.688634,-25.34008 z" - id="path1426" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1488);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 50.00232,94.739363 52.55412,24.600067 -0.7091,61.1269 -52.12592,-25.41036 z" - id="path1424" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1528);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 146.77578,98.881226 0.44734,46.704994 12.37249,7.46019 -36.23446,15.5345 -1.08573,-59.26656 z" - id="path1422" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1520);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8.63408852;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 120.22775,112.46566 0.37852,57.8936 -17.54492,7.50092 -0.50496,-58.52075 z" - id="path1420" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1536);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 163.26384,154.16461 -0.86596,31.80077 -60.10988,27.58039 -0.44066,-33.07944 z" - id="path1418" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1454);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 49.72142,155.05597 52.12592,25.41036 -1.46545,31.0927 -50.573083,-24.36668 z" - id="path1388-8" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 75.920899,182.63353 v 4.17362 l 15.058593,7.59375 v -4.17362 z" - id="path1390" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="opacity:1;fill:#0073fc;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 58.966339,113.45264 30.619065,14.2321 v 33.7762 L 58.966339,147.29565 Z" - id="path1394" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="opacity:1;fill:#ffffff;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 62.774929,119.29916 23.035292,10.79101 v 25.59106 L 62.774929,145.02385 Z" - id="path1396" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 111.93555,74.808594 88.248047,89.617188 69.138672,80.394531 46.279297,92.648438 l -0.02148,97.574222 1.960938,0.96093 53.867195,26.39649 65.20311,-30.20508 -0.30468,-36.12109 -15.60352,-7.93555 0.33594,-49.222657 z m 0.42968,7.986328 28.10547,13.626953 -18.23437,9.679685 L 95.6875,93.220703 Z m -43.058589,5.451172 17.630859,8.509765 0.349609,0.169922 27.289061,13.242189 -12.62109,6.69922 -44.558596,-22.234378 z m -16.027344,12.154296 45.228515,22.56836 0.06836,51.66602 -45.310547,-22.20313 z m 91.380863,1.7207 -0.3086,45.47657 10.95508,5.57031 -29.52539,12.88867 0.0606,-53.94531 z m -25.82422,13.70899 -0.0586,53.2832 -13.20117,5.76367 -0.0684,-51.97265 z m 41.21094,42.90625 0.20312,24.18359 -54.63086,25.3086 -0.0332,-25.7168 z m -106.783208,1.49023 45.322266,22.20899 0.0332,25.65039 -45.361329,-22.22852 z" - id="path1388" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="457.44" height="539.607" viewBox="0 0 121.031 142.771"><style><![CDATA[.B{dominant-baseline:auto}]]></style><defs><linearGradient id="A" x1="77.255" y1="209.239" x2="75.103" y2="161.494" xlink:href="#H"><stop offset="0" stop-color="#0676fc"/><stop offset="1" stop-color="#439cfd"/></linearGradient><linearGradient id="B" x1="78" y1="178.476" x2="77.365" y2="100.118" xlink:href="#H"><stop offset="0" stop-color="#2d8efd"/><stop offset="1" stop-color="#8bc7fe"/></linearGradient><linearGradient id="C" x1="87.264" y1="119.193" x2="87.871" y2="85.175" xlink:href="#H"><stop offset="0" stop-color="#a0dbfe"/><stop offset="1" stop-color="#1eabfd"/></linearGradient><linearGradient id="D" x1="119.87" y1="106.976" x2="120.226" y2="82.865" xlink:href="#H"><stop offset="0" stop-color="#77ccfd"/><stop offset="1" stop-color="#12a7fc"/></linearGradient><linearGradient id="E" x1="111.911" y1="176.834" x2="113.256" y2="116.164" xlink:href="#H"><stop offset="0" stop-color="#3355b9"/><stop offset="1" stop-color="#82acee"/></linearGradient><linearGradient id="F" x1="144.325" y1="167.808" x2="144.66" y2="102.121" xlink:href="#H"><stop offset="0" stop-color="#4063c1"/><stop offset="1" stop-color="#8fbaf7"/></linearGradient><linearGradient id="G" x1="134.321" y1="212.854" x2="134.265" y2="154.723" xlink:href="#H"><stop offset="0" stop-color="#032098"/><stop offset="1" stop-color="#4a6ec8"/></linearGradient><linearGradient id="H" gradientUnits="userSpaceOnUse"/></defs><g transform="translate(-46.258 -74.809)"><path d="M110.363 78.732l33.917 17.88-22.005 12.702-32.04-16.902z" fill="url(#D)" class="B"/><path d="M69.277 85.028l18.4 9.17.4.208 30.032 15.51-15.55 9.422L52.868 94z" fill="url(#C)" class="B"/><path d="M50.002 94.74l52.554 24.6-.71 61.127-52.126-25.4z" fill="url(#B)" class="B"/><path d="M146.776 98.88l.447 46.705 12.372 7.46-36.234 15.534-1.086-59.267z" fill="url(#F)" class="B"/><path d="M120.228 112.466l.38 57.894-17.545 7.5-.505-58.52z" fill="url(#E)" class="B"/><path d="M163.264 154.165l-.866 31.8-60.1 27.58-.44-33.08z" fill="url(#G)" class="B"/><path d="M49.72 155.056l52.126 25.4-1.465 31.093-50.573-24.367z" fill="url(#A)" class="B"/><path d="M75.92 182.634v4.174l15.06 7.594v-4.174z" fill="#fff" class="B"/><path d="M58.966 113.453l30.62 14.232v33.776l-30.62-14.165z" fill="#0073fc"/><g fill="#fff"><path d="M62.775 119.3L85.8 130.1v25.59l-23.035-10.657z"/><path d="M111.936 74.81l-23.688 14.81-19.11-9.223-22.86 12.254-.02 97.574 55.828 27.357 65.203-30.205-.305-36.12-15.604-7.936.336-49.223zm.43 7.986l28.105 13.627-18.234 9.68-26.55-12.88zm-43.06 5.45l17.98 8.68 27.29 13.242-12.62 6.7-44.56-22.234zM53.28 100.4l45.23 22.568.068 51.666-45.31-22.203zm91.38 1.72l-.31 45.477 10.955 5.57-29.525 12.89.06-53.945zm-25.824 13.71l-.06 53.283-13.2 5.764-.068-51.973zm41.21 42.906l.203 24.184-54.63 25.31-.033-25.717zm-106.783 1.5l45.322 22.21.033 25.65-45.36-22.23z" class="B"/></g></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/writer.svg b/src/main/webapp/img/lib/active_directory/writer.svg index 92a5edc36fbd8b9c119b9d0dc711dbe07bcded86..bf405b187e4f611e0196f33a95d20d39770a21e8 100644 --- a/src/main/webapp/img/lib/active_directory/writer.svg +++ b/src/main/webapp/img/lib/active_directory/writer.svg @@ -1,256 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="114.30859mm" - height="119.62001mm" - viewBox="0 0 114.30859 119.62001" - version="1.1" - id="svg5350" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="writer.svg"> - <defs - id="defs5344"> - <linearGradient - inkscape:collect="always" - id="linearGradient6581"> - <stop - style="stop-color:#ff7a0c;stop-opacity:1" - offset="0" - id="stop6577" /> - <stop - style="stop-color:#ffde2d;stop-opacity:1" - offset="1" - id="stop6579" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6581" - id="linearGradient6583" - x1="162.77966" - y1="180.44215" - x2="155.48184" - y2="173.6196" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(141.11831,-1.0690781)" /> - <linearGradient - gradientTransform="matrix(0.6088056,0,0,0.6088056,240.3725,79.262749)" - inkscape:collect="always" - xlink:href="#linearGradient1182" - id="linearGradient1176" - x1="111.45139" - y1="93.60788" - x2="111.71867" - y2="114.72218" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient1182"> - <stop - style="stop-color:#3bb6fc;stop-opacity:1" - offset="0" - id="stop1178" /> - <stop - style="stop-color:#aee0fe;stop-opacity:1" - offset="1" - id="stop1180" /> - </linearGradient> - <linearGradient - gradientTransform="matrix(0.6088056,0,0,0.6088056,240.3725,79.262749)" - inkscape:collect="always" - xlink:href="#linearGradient1150" - id="linearGradient1152" - x1="100.99443" - y1="235.9617" - x2="100.89886" - y2="100.18879" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient1150"> - <stop - style="stop-color:#0978fc;stop-opacity:1" - offset="0" - id="stop1146" /> - <stop - style="stop-color:#92ccfe;stop-opacity:1" - offset="1" - id="stop1148" /> - </linearGradient> - <linearGradient - gradientTransform="matrix(0.6088056,0,0,0.6088056,240.3725,79.262749)" - inkscape:collect="always" - xlink:href="#linearGradient1166" - id="linearGradient1168" - x1="132.04297" - y1="171.97266" - x2="132.27324" - y2="112.44965" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient1166"> - <stop - style="stop-color:#0b299d;stop-opacity:1" - offset="0" - id="stop1162" /> - <stop - style="stop-color:#8cb7f5;stop-opacity:1" - offset="1" - id="stop1164" /> - </linearGradient> - <linearGradient - gradientTransform="matrix(0.6088056,0,0,0.6088056,240.3725,79.262749)" - inkscape:collect="always" - xlink:href="#linearGradient1158" - id="linearGradient1160" - x1="124.77986" - y1="231.99921" - x2="123.875" - y2="170.95703" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient1158"> - <stop - style="stop-color:#0a289c;stop-opacity:1" - offset="0" - id="stop1154" /> - <stop - style="stop-color:#7fa9ec;stop-opacity:1" - offset="1" - id="stop1156" /> - </linearGradient> - <linearGradient - gradientTransform="matrix(0.6088056,0,0,0.6088056,240.3725,79.262749)" - inkscape:collect="always" - xlink:href="#linearGradient1188" - id="linearGradient1190" - x1="112.52047" - y1="97.884193" - x2="112.25391" - y2="65.941406" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - id="linearGradient1188"> - <stop - style="stop-color:#107cfc;stop-opacity:1" - offset="0" - id="stop1184" /> - <stop - style="stop-color:#edf5ff;stop-opacity:1" - offset="1" - id="stop1186" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.7" - inkscape:cx="150.39244" - inkscape:cy="186.92809" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata5347"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-243.17495,-116.97302)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 343.62417,119.10865 -81.83594,81.21289 -18.61328,33.04493 3.67774,3.22656 29.68359,-22.22852 80.94726,-82.16797 -3.03711,-10.24023 z" - id="path6575" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#00a0fc;fill-opacity:0.92964825;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 345.11636,124.67115 5.33593,1.4043 1.39844,4.71485 -1.53906,1.5625 -6.3418,-6.54493 z" - id="path6573" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 340.423,129.32936 6.3789,6.58594 -12.73437,12.92578 -6.60547,-6.65039 z" - id="path6571" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient6583);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 323.91323,145.71412 6.64453,6.68946 -55.72265,56.5625 -7.45899,-7.14649 z" - id="path6569" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cccccc;fill-opacity:0.93969852;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 264.39175,205.886 6.63672,6.35547 -17.66797,13.23047 z" - id="path6561" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.43522239;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 299.87255,132.28591 -12.66125,5.05475 0.0999,35.96591 4.58745,2.25091 -0.19026,40.79117 18.54717,9.0203 0.50298,-0.20452 12.51618,-5.08923 -0.0809,-37.0967 5.19387,-2.1011 -0.15577,-35.89695 z" - id="path1144" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1176);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.43522239;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 299.81785,134.92922 24.09538,10.7849 -9.29854,3.76936 -23.16672,-11.21177 z" - id="path1142" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1152);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.43522239;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 289.65484,140.11002 23.69823,11.46741 v 31.62103 l -4.33655,-2.11773 0.063,41.00876 -6.93853,-3.55766 v -33.14065 l -2.43523,-1.22036 v 33.17671 l -5.55506,-2.51852 0.19026,-40.78522 -4.59934,-2.25686 z" - id="path1140" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccccccc" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1168);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.43522239;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 325.80861,147.57501 0.13675,31.66384 -4.42692,1.78956 -5.73014,2.31394 v -31.70784 z" - id="path1138" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1160);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.43522239;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 320.761,183.96066 0.0749,34.47719 -9.32115,3.79077 -0.057,-37.24653 3.06661,1.49823 z" - id="path1121" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.43522239;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 308.71331,116.97302 c -6.8138,0 -12.36398,5.54899 -12.36398,12.3628 0,6.8138 5.55018,12.36398 12.36398,12.36398 6.81381,0 12.3628,-5.55018 12.3628,-12.36398 0,-6.81381 -5.54899,-12.3628 -12.3628,-12.3628 z" - id="path1132" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient1190);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.43522239;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 308.71331,119.40825 c 5.49771,0 9.92757,4.42986 9.92757,9.92757 0,5.49771 -4.42986,9.92876 -9.92757,9.92876 -5.49771,0 -9.92877,-4.43105 -9.92877,-9.92876 0,-5.49771 4.43106,-9.92757 9.92877,-9.92757 z" - id="path1123" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="432.034" height="452.107" viewBox="0 0 114.309 119.62"><style><![CDATA[.B{dominant-baseline:auto}]]></style><defs><linearGradient id="A" x1="303.898" y1="179.373" x2="296.6" y2="172.551" xlink:href="#G"><stop offset="0" stop-color="#ff7a0c"/><stop offset="1" stop-color="#ffde2d"/></linearGradient><linearGradient id="B" x1="308.225" y1="136.252" x2="308.387" y2="149.106" xlink:href="#G"><stop offset="0" stop-color="#3bb6fc"/><stop offset="1" stop-color="#aee0fe"/></linearGradient><linearGradient id="C" x1="301.858" y1="222.918" x2="301.8" y2="140.258" xlink:href="#G"><stop offset="0" stop-color="#0978fc"/><stop offset="1" stop-color="#92ccfe"/></linearGradient><linearGradient id="D" x1="320.761" y1="183.961" x2="320.901" y2="147.723" xlink:href="#G"><stop offset="0" stop-color="#0b299d"/><stop offset="1" stop-color="#8cb7f5"/></linearGradient><linearGradient id="E" x1="316.339" y1="220.505" x2="315.788" y2="183.342" xlink:href="#G"><stop offset="0" stop-color="#0a289c"/><stop offset="1" stop-color="#7fa9ec"/></linearGradient><linearGradient id="F" x1="308.876" y1="138.855" x2="308.713" y2="119.408" xlink:href="#G"><stop offset="0" stop-color="#107cfc"/><stop offset="1" stop-color="#edf5ff"/></linearGradient><linearGradient id="G" gradientUnits="userSpaceOnUse"/></defs><g transform="translate(-243.175 -116.973)" class="B"><path d="M343.624 119.11l-81.836 81.213-18.613 33.045 3.678 3.227 29.684-22.23 80.947-82.168-3.037-10.24z" fill="#fff"/><path d="M345.116 124.67l5.336 1.404 1.398 4.715-1.54 1.563-6.342-6.545z" fill="#00a0fc" fill-opacity=".93"/><path d="M340.423 129.33l6.38 6.586-12.734 12.926-6.605-6.65z" fill="#ccc"/><path d="M323.913 145.714l6.645 6.69-55.723 56.563-7.46-7.146z" fill="url(#A)"/><path d="M264.392 205.886l6.637 6.355-17.668 13.23z" fill="#ccc" fill-opacity=".94"/><path d="M299.873 132.286l-12.66 5.055.1 35.966 4.587 2.25-.2 40.79 18.547 9.02 13.02-5.294-.08-37.097 5.194-2.1-.156-35.897z" fill="#fff"/><path d="M299.818 134.93l24.095 10.785-9.3 3.77-23.167-11.212z" fill="url(#B)"/><path d="M289.655 140.1l23.698 11.467v31.62l-4.337-2.118.063 41.01-6.94-3.558v-33.14l-2.435-1.22v33.177l-5.555-2.52.2-40.785-4.6-2.257z" fill="url(#C)"/><path d="M325.81 147.575l.137 31.664-4.427 1.8-5.73 2.314v-31.708z" fill="url(#D)"/><path d="M320.76 183.96l.075 34.477-9.32 3.79-.057-37.247 3.067 1.498z" fill="url(#E)"/><path d="M308.713 116.973c-6.814 0-12.364 5.55-12.364 12.363s5.55 12.364 12.364 12.364 12.363-5.55 12.363-12.364-5.55-12.363-12.363-12.363z" fill="#fff" paint-order="normal"/><path d="M308.713 119.408a9.91 9.91 0 1 1 0 19.856 9.91 9.91 0 1 1 0-19.856z" fill="url(#F)" paint-order="normal"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/active_directory/writing.svg b/src/main/webapp/img/lib/active_directory/writing.svg index c07b5184842ae0977ff52afb53e9c1c0c311fbd6..5eef634a926fb0a6df67885949a9780bb1bb8041 100644 --- a/src/main/webapp/img/lib/active_directory/writing.svg +++ b/src/main/webapp/img/lib/active_directory/writing.svg @@ -1,110 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="114.30859mm" - height="117.48438mm" - viewBox="0 0 114.30859 117.48438" - version="1.1" - id="svg5350" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="writing.svg"> - <defs - id="defs5344"> - <linearGradient - inkscape:collect="always" - id="linearGradient6581"> - <stop - style="stop-color:#ff7a0c;stop-opacity:1" - offset="0" - id="stop6577" /> - <stop - style="stop-color:#ffde2d;stop-opacity:1" - offset="1" - id="stop6579" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6581" - id="linearGradient6583" - x1="162.77966" - y1="180.44215" - x2="155.48184" - y2="173.6196" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(141.11831,-1.0690781)" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.7" - inkscape:cx="61.267827" - inkscape:cy="240.06241" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata5347"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-243.17495,-119.10865)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 343.62417,119.10865 -81.83594,81.21289 -18.61328,33.04493 3.67774,3.22656 29.68359,-22.22852 80.94726,-82.16797 -3.03711,-10.24023 z" - id="path6575" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#00a0fc;fill-opacity:0.92964825;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 345.11636,124.67115 5.33593,1.4043 1.39844,4.71485 -1.53906,1.5625 -6.3418,-6.54493 z" - id="path6573" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 340.423,129.32936 6.3789,6.58594 -12.73437,12.92578 -6.60547,-6.65039 z" - id="path6571" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:url(#linearGradient6583);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 323.91323,145.71412 6.64453,6.68946 -55.72265,56.5625 -7.45899,-7.14649 z" - id="path6569" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cccccc;fill-opacity:0.93969852;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 264.39175,205.886 6.63672,6.35547 -17.66797,13.23047 z" - id="path6561" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="432.034" height="444.034" viewBox="0 0 114.309 117.484"><style><![CDATA[.B{dominant-baseline:auto}]]></style><defs><linearGradient id="A" x1="303.898" y1="179.373" x2="296.6" y2="172.551" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#ff7a0c"/><stop offset="1" stop-color="#ffde2d"/></linearGradient></defs><path d="M100.45 0L18.613 81.213 0 114.257l3.678 3.227 29.684-22.23 80.947-82.168-3.037-10.24z" fill="#fff" class="B"/><path d="M101.94 5.562l5.336 1.404 1.398 4.715-1.54 1.563-6.342-6.545z" fill="#00a0fc" fill-opacity=".93" class="B"/><path d="M97.248 10.22l6.38 6.586-12.734 12.926-6.605-6.65z" fill="#ccc" class="B"/><path d="M323.913 145.714l6.645 6.69-55.723 56.563-7.46-7.146z" fill="url(#A)" transform="translate(-243.175 -119.109)" class="B"/><path d="M21.217 86.777l6.637 6.355-17.668 13.23z" fill="#ccc" fill-opacity=".94" class="B"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/buildings/Apartments.svg b/src/main/webapp/img/lib/allied_telesis/buildings/Apartments.svg index 4bdd7c39500dea5d76c6ae98da14c947528c5129..eb0be0f59983c7b3597f22e074fe21e920459684 100644 --- a/src/main/webapp/img/lib/allied_telesis/buildings/Apartments.svg +++ b/src/main/webapp/img/lib/allied_telesis/buildings/Apartments.svg @@ -1,106 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 90.458 175.661" style="enable-background:new 0 0 90.458 175.661;" xml:space="preserve"> -<style type="text/css"> - .st0{filter:url(#Adobe_OpacityMaskFilter);} - .st1{fill:#FFFFFF;} - .st2{mask:url(#mask-6_1_);fill:#1C5A84;} - .st3{fill:#1F608C;} - .st4{fill:#FEFEFE;} - .st5{fill:#D6DEE6;} - .st6{fill:#6089B1;} - .st7{fill:#276E9F;} - .st8{fill:#19557D;} - .st9{fill:#1C5A84;} -</style> -<title>icon-apartment</title> -<desc>Created with Sketch.</desc> -<defs> - <filter id="Adobe_OpacityMaskFilter" filterUnits="userSpaceOnUse" x="47.779" y="149.499" width="42.679" height="25.822"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> -</defs> -<mask maskUnits="userSpaceOnUse" x="47.779" y="149.499" width="42.679" height="25.822" id="mask-6_1_"> - <g class="st0"> - <path id="path-5_1_" class="st1" d="M49.682,171.143c0.002,2.102-0.731,3.556-1.903,4.178 - c13.593-7.215,27.183-14.43,40.776-21.645c1.171-0.622,1.904-2.075,1.903-4.176"/> - </g> -</mask> -<path id="Fill-8" class="st2" d="M49.682,171.143l40.776-21.644c0.001,2.102-0.732,3.555-1.903,4.177l-40.776,21.645 - C48.951,174.699,49.683,173.246,49.682,171.143"/> -<path class="st3" d="M49.638,111.872c0-0.016-0.004-0.034-0.004-0.05L49.59,52.764c0-1.179-0.793-2.612-1.772-3.2L1.769,21.895 - C0.791,21.307-0.001,21.787,0,22.966l0.041,59.27c0,0.056,0.006,0.114,0.007,0.17l0.041,58.938c0.003,4.014,2.68,8.874,5.978,10.856 - l37.648,22.621c3.298,1.982,5.97,0.335,5.967-3.678L49.638,111.872z"/> -<path id="Fill-43" class="st4" d="M46.186,130.849l-8.69-5.222v-12.853l8.69,5.221V130.849z M46.186,149.979l-8.69-5.222v-12.851 - l8.69,5.221V149.979z M46.186,168.715l-8.69-5.22v-12.853l8.69,5.222V168.715z M34.545,123.854l-8.692-5.222v-12.854l8.692,5.223 - V123.854z M34.545,142.985l-8.692-5.224V124.91l8.692,5.223V142.985z M14.868,131.161v-12.852l8.695,5.225v12.852L14.868,131.161z - M11.862,110.225l-8.693-5.224V92.148l8.693,5.223V110.225z M11.862,129.355l-8.693-5.224V111.28l8.693,5.223V129.355z - M11.523,147.888l-8.691-5.223v-12.852l8.691,5.223V147.888z M14.868,99.177l8.695,5.225v12.854l-8.695-5.224V99.177z - M15.993,157.799v-19.323l7.284,4.377v19.321L15.993,157.799z M25.258,163.365v-19.323l7.07,4.249v19.323L25.258,163.365z"/> -<path id="Fill-44" class="st5" d="M38.79,114.838l6.667,4.019l-0.015,8.242c0,0-0.406-4.831-3.24-8.531 - C39.602,115.178,38.79,114.838,38.79,114.838"/> -<path id="Fill-46" class="st5" d="M4.371,94.09l6.666,4.018l-0.016,8.241c0,0-0.406-4.83-3.242-8.53 - C5.18,94.428,4.371,94.09,4.371,94.09"/> -<path id="Fill-48" class="st5" d="M38.759,133.827l6.667,4.019l-0.016,8.247c0,0-0.404-4.832-3.239-8.532 - C39.571,134.167,38.759,133.827,38.759,133.827"/> -<path id="Fill-50" class="st5" d="M27.157,107.826l6.667,4.019l-0.016,8.241c0,0-0.405-4.829-3.238-8.528 - C27.969,108.166,27.157,107.826,27.157,107.826"/> -<path id="Fill-52" class="st5" d="M27.128,126.815l6.667,4.019l-0.016,8.247c0,0-0.405-4.833-3.238-8.532 - C27.939,127.155,27.128,126.815,27.128,126.815"/> -<path id="Fill-54" class="st5" d="M16.186,101.212l6.67,4.021l-0.016,8.241c0,0-0.409-4.831-3.243-8.531 - C16.996,101.552,16.186,101.212,16.186,101.212"/> -<path id="Fill-56" class="st5" d="M16.156,120.201l6.669,4.021l-0.016,8.246c0,0-0.408-4.833-3.241-8.534 - C16.966,120.541,16.156,120.201,16.156,120.201"/> -<path id="Fill-58" class="st5" d="M4.34,113.078l6.666,4.019l-0.016,8.247c0,0-0.406-4.833-3.241-8.535 - C5.149,113.417,4.34,113.078,4.34,113.078"/> -<path id="Fill-60" class="st5" d="M38.73,152.77l6.667,4.02l-0.016,8.245c0,0-0.404-4.832-3.24-8.532 - C39.541,153.113,38.73,152.77,38.73,152.77"/> -<path id="Fill-62" class="st5" d="M4.1,131.896l6.666,4.019l-0.016,8.244c0,0-0.407-4.832-3.237-8.531 - C4.91,132.237,4.1,131.896,4.1,131.896"/> -<path class="st6" d="M41.855,0.004l-0.001,0.001c-0.193-0.018-0.37,0.015-0.52,0.096L0.558,21.745 - c0.151-0.08,0.328-0.113,0.522-0.096l15.394-8.171L1.08,21.649c0.211,0.019,0.444,0.1,0.689,0.246L42.545,0.252 - C42.301,0.104,42.067,0.024,41.855,0.004z"/> -<polygon id="Fill-75" class="st7" points="1.769,21.895 42.545,0.251 88.594,27.919 47.818,49.564 "/> -<polygon class="st8" points="90.458,149.5 90.414,90.228 90.41,90.23 90.366,31.119 49.59,52.764 49.633,112.035 49.638,112.032 - 49.681,171.143 "/> -<g> - <path class="st9" d="M48.146,49.798c0.08,0.066,0.158,0.138,0.234,0.214l40.776-21.645c-0.076-0.076-0.154-0.147-0.234-0.214l0,0 - c-0.106-0.088-0.217-0.167-0.328-0.235L47.818,49.564C47.93,49.631,48.04,49.71,48.146,49.798"/> - <path class="st9" d="M48.38,50.012c0.124,0.125,0.242,0.261,0.352,0.407l0,0c0.043,0.058,0.085,0.116,0.126,0.176l0,0 - c0.038,0.057,0.075,0.114,0.111,0.172l0,0c0.043,0.069,0.083,0.141,0.122,0.212h0c0.055,0.102,0.107,0.205,0.154,0.311 - c0.083,0.187,0.154,0.378,0.209,0.568l0,0v0c0.088,0.307,0.137,0.614,0.137,0.906L90.367,31.12c0-0.292-0.049-0.6-0.137-0.906l0,0 - c-0.056-0.192-0.126-0.382-0.209-0.568h0c-0.048-0.105-0.099-0.209-0.154-0.312l0,0c-0.039-0.071-0.08-0.141-0.123-0.211h0 - c-0.035-0.058-0.072-0.116-0.111-0.173l0,0c-0.04-0.059-0.082-0.118-0.125-0.176l-0.001,0c-0.109-0.146-0.227-0.283-0.351-0.408"/> -</g> -<path id="Fill-110" class="st4" d="M46.138,71.741l-8.69-5.222V53.666l8.69,5.221V71.741z M46.138,90.871l-8.69-5.222V72.798 - l8.69,5.221V90.871z M46.138,109.607l-8.69-5.22V91.534l8.69,5.222V109.607z M34.497,64.746l-8.692-5.222V46.67l8.692,5.223V64.746z - M34.497,83.877l-8.692-5.224V65.802l8.692,5.223V83.877z M14.82,72.053V59.201l8.695,5.225v12.852L14.82,72.053z M11.814,51.117 - l-8.693-5.224V33.04l8.693,5.223V51.117z M11.814,70.247l-8.693-5.224V52.172l8.693,5.223V70.247z M11.475,88.78l-8.691-5.223 - V70.705l8.691,5.223V88.78z M14.82,40.069l8.695,5.225v12.854l-8.695-5.224V40.069z"/> -<path id="Fill-112" class="st5" d="M38.742,55.73l6.667,4.019l-0.015,8.242c0,0-0.406-4.831-3.24-8.531 - C39.554,56.07,38.742,55.73,38.742,55.73"/> -<path id="Fill-114" class="st5" d="M4.323,34.982L10.989,39l-0.016,8.241c0,0-0.406-4.83-3.242-8.53 - C5.132,35.32,4.323,34.982,4.323,34.982"/> -<path id="Fill-116" class="st5" d="M38.711,74.718l6.667,4.019l-0.016,8.247c0,0-0.404-4.832-3.239-8.532 - C39.523,75.058,38.711,74.718,38.711,74.718"/> -<path id="Fill-118" class="st5" d="M27.109,48.717l6.667,4.019l-0.016,8.241c0,0-0.405-4.829-3.238-8.528 - C27.921,49.057,27.109,48.717,27.109,48.717"/> -<path id="Fill-120" class="st5" d="M27.08,67.706l6.667,4.019l-0.016,8.247c0,0-0.405-4.833-3.238-8.532 - C27.891,68.046,27.08,67.706,27.08,67.706"/> -<path id="Fill-122" class="st5" d="M16.138,42.104l6.67,4.021l-0.016,8.241c0,0-0.409-4.831-3.243-8.531 - C16.948,42.444,16.138,42.104,16.138,42.104"/> -<path id="Fill-124" class="st5" d="M16.108,61.092l6.669,4.021l-0.016,8.246c0,0-0.408-4.833-3.241-8.534 - C16.918,61.432,16.108,61.092,16.108,61.092"/> -<path id="Fill-126" class="st5" d="M4.293,53.97l6.666,4.019l-0.016,8.247c0,0-0.406-4.833-3.241-8.535 - C5.102,54.309,4.293,53.97,4.293,53.97"/> -<path id="Fill-128" class="st5" d="M38.682,93.661l6.667,4.02l-0.016,8.245c0,0-0.404-4.832-3.24-8.532 - C39.493,94.004,38.682,93.661,38.682,93.661"/> -<path id="Fill-130" class="st5" d="M4.052,72.787l6.666,4.019l-0.016,8.244c0,0-0.407-4.832-3.237-8.531 - C4.862,73.128,4.052,72.787,4.052,72.787"/> -<path id="Fill-132" class="st4" d="M34.191,102.095l-8.692-5.222V84.019l8.692,5.223V102.095z M14.514,77.418l8.695,5.225v12.854 - l-8.695-5.224V77.418z"/> -<path id="Fill-134" class="st5" d="M26.615,86.057l6.667,4.019l-0.016,8.241c0,0-0.405-4.829-3.238-8.528 - C27.427,86.397,26.615,86.057,26.615,86.057"/> -<path id="Fill-136" class="st5" d="M15.644,79.444l6.67,4.021l-0.016,8.241c0,0-0.409-4.831-3.243-8.531 - C16.454,79.784,15.644,79.444,15.644,79.444"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 90.458 175.661"><defs><filter id="A" filterUnits="userSpaceOnUse" x="47.779" y="149.499" width="42.679" height="25.822"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter><path id="B" d="M27.157 107.826l6.667 4.02-.016 8.24s-.405-4.83-3.238-8.528c-2.6-3.392-3.413-3.732-3.413-3.732"/><path id="C" d="M16.186 101.212l6.67 4.02-.016 8.24s-.41-4.83-3.243-8.53c-2.6-3.39-3.41-3.73-3.41-3.73"/></defs><mask maskUnits="userSpaceOnUse" x="47.779" y="149.499" width="42.679" height="25.822" id="D"><g filter="url(#A)"><path d="M49.682 171.143c.002 2.102-.73 3.556-1.903 4.178l40.776-21.645c1.17-.622 1.904-2.075 1.903-4.176" fill="#fff"/></g></mask><path d="M49.682 171.143L90.458 149.5c.001 2.102-.732 3.555-1.903 4.177L47.78 175.32c1.172-.622 1.904-2.075 1.903-4.178" mask="url(#D)" fill="#1c5a84"/><path d="M49.638 111.872c0-.016-.004-.034-.004-.05L49.6 52.764c0-1.18-.793-2.612-1.772-3.2L1.77 21.895c-.978-.588-1.77-.108-1.77 1.07l.09 118.378c.003 4.014 2.68 8.874 5.978 10.856l37.648 22.62c3.298 1.982 5.97.335 5.967-3.678l-.044-59.27z" fill="#1f608c"/><path d="M46.186 130.85l-8.7-5.222v-12.853l8.7 5.22v12.854zm0 19.13l-8.7-5.222v-12.85l8.7 5.22v12.852zm0 18.736l-8.7-5.22v-12.853l8.7 5.222v12.85zm-11.64-44.86l-8.692-5.222v-12.854L34.545 111v12.853zm0 19.13l-8.692-5.224V124.9l8.692 5.223v12.852zM14.868 131.16V118.31l8.695 5.225v12.852l-8.695-5.225zm-3.006-20.936L3.17 105V92.148l8.693 5.223v12.854zm0 19.13L3.17 124.13v-12.85l8.693 5.223v12.852zm-.34 18.533l-8.69-5.223v-12.852l8.69 5.223v12.852zm3.345-48.71l8.695 5.225v12.854l-8.695-5.224V99.177zm1.125 58.622v-19.323l7.284 4.377v19.32l-7.284-4.375zm9.265 5.566v-19.323l7.07 4.25v19.323l-7.07-4.25z" fill="#fefefe"/><g fill="#d6dee6"><path d="M38.8 114.838l6.667 4.02-.015 8.242s-.406-4.83-3.24-8.53c-2.6-3.4-3.412-3.73-3.412-3.73M4.37 94.1l6.666 4.018-.016 8.24s-.406-4.83-3.242-8.53c-2.6-3.4-3.408-3.73-3.408-3.73m34.4 39.73l6.667 4.02-.016 8.247s-.404-4.832-3.24-8.532c-2.6-3.394-3.412-3.734-3.412-3.734"/><use xlink:href="#B"/><path d="M27.128 126.815l6.667 4.02-.016 8.247s-.405-4.833-3.238-8.532c-2.602-3.394-3.413-3.734-3.413-3.734"/><use xlink:href="#C"/><path d="M16.156 120.2l6.67 4.02-.016 8.246s-.408-4.833-3.24-8.534c-2.602-3.393-3.412-3.733-3.412-3.733m-11.818-7.12l6.666 4.02-.016 8.247s-.406-4.833-3.24-8.535c-2.6-3.392-3.4-3.73-3.4-3.73m34.4 39.7l6.667 4.02-.016 8.245s-.404-4.832-3.24-8.532c-2.6-3.4-3.4-3.733-3.4-3.733M4.1 131.896l6.666 4.02-.016 8.244s-.407-4.832-3.237-8.53c-2.603-3.4-3.413-3.732-3.413-3.732"/></g><path d="M41.855.004l-.001.001c-.193-.018-.37.015-.52.096L.558 21.745c.15-.08.328-.113.522-.096l15.394-8.17L1.08 21.65a1.66 1.66 0 0 1 .689.246L42.545.252c-.244-.148-.478-.228-.7-.248z" fill="#6089b1"/><path d="M1.77 21.895L42.545.25l46.05 27.668-40.776 21.645z" fill="#276e9f"/><path d="M90.458 149.5l-.092-118.38L49.6 52.764l.09 118.38z" fill="#19557d"/><g fill="#1c5a84"><path d="M48.146 49.798c.08.066.158.138.234.214l40.776-21.645-.234-.214c-.106-.088-.217-.167-.328-.235L47.818 49.564c.112.067.222.146.328.234"/><path d="M48.38 50.012a3.97 3.97 0 0 1 .352.407l.126.176.11.172.122.212.154.31c.083.187.154.378.21.568.088.307.137.614.137.906L90.367 31.12a3.31 3.31 0 0 0-.137-.906 4.46 4.46 0 0 0-.209-.568l-.154-.312-.123-.21-.11-.173-.125-.176c-.1-.146-.228-.283-.352-.408"/></g><path d="M46.138 71.74l-8.7-5.222V53.666l8.7 5.22V71.74zm0 19.13l-8.7-5.222v-12.85l8.7 5.22V90.87zm0 18.736l-8.7-5.22V91.534l8.7 5.222v12.85zm-11.64-44.86l-8.692-5.222V46.67l8.692 5.223v12.853zm0 19.13l-8.692-5.224v-12.85l8.692 5.223v12.852zM14.82 72.053V59.2l8.695 5.225v12.852l-8.695-5.225zm-3.006-20.936L3.12 45.893V33.04l8.693 5.223v12.854zm0 19.13L3.12 65.023v-12.85l8.693 5.223v12.852zm-.34 18.533l-8.69-5.223V70.705l8.69 5.223V88.78zm3.345-48.71l8.695 5.225v12.854l-8.695-5.224V40.07z" fill="#fefefe"/><g fill="#d6dee6"><path d="M38.742 55.73l6.667 4.02-.015 8.242s-.406-4.83-3.24-8.53c-2.6-3.4-3.412-3.73-3.412-3.73m-34.42-20.75L11 39l-.016 8.24s-.406-4.83-3.242-8.53c-2.6-3.4-3.408-3.73-3.408-3.73M38.7 74.718l6.667 4.02-.016 8.247s-.404-4.832-3.24-8.532c-2.6-3.394-3.412-3.734-3.412-3.734"/><use xlink:href="#B" x="-0.047" y="-59.109"/><path d="M27.08 67.706l6.667 4.02-.016 8.247s-.405-4.833-3.238-8.532c-2.602-3.394-3.413-3.734-3.413-3.734"/><use xlink:href="#C" x="-0.048" y="-59.108"/><path d="M16.108 61.092l6.67 4.02-.016 8.246s-.408-4.833-3.24-8.534C16.92 61.43 16.1 61.09 16.1 61.09M4.293 53.97L10.96 58l-.016 8.247s-.406-4.833-3.24-8.535c-2.6-3.392-3.4-3.73-3.4-3.73m34.39 39.688l6.667 4.02-.016 8.245s-.404-4.832-3.24-8.532c-2.6-3.4-3.4-3.733-3.4-3.733M4.052 72.787l6.666 4.02-.016 8.244s-.407-4.832-3.237-8.53c-2.603-3.4-3.413-3.732-3.413-3.732"/></g><path d="M34.19 102.095L25.5 96.873V84.02l8.692 5.223v12.853zM14.514 77.418l8.695 5.225v12.854l-8.695-5.224V77.418z" fill="#fefefe"/><g fill="#d6dee6"><use xlink:href="#B" x="-0.542" y="-21.769"/><use xlink:href="#C" x="-0.542" y="-21.768"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/buildings/Building_Cluster.svg b/src/main/webapp/img/lib/allied_telesis/buildings/Building_Cluster.svg index 13aeb9d583d4c6da2e227d7adc76ecc0bd5c067b..8744b37a8937aaf972bbb6d786d8c8efb10b0134 100644 --- a/src/main/webapp/img/lib/allied_telesis/buildings/Building_Cluster.svg +++ b/src/main/webapp/img/lib/allied_telesis/buildings/Building_Cluster.svg @@ -1,225 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" - id="Layer_1" inkscape:version="0.92.3 (2405546, 2018-03-11)" sodipodi:docname="Building Cluster4.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 201.889 184.58" - style="enable-background:new 0 0 201.889 184.58;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#6089B1;} - .st1{filter:url(#Adobe_OpacityMaskFilter);} - .st2{fill:#FFFFFF;} - .st3{mask:url(#mask-6_2_);fill:#1C5A84;} - .st4{fill:#276E9F;} - .st5{fill:#19557D;} - .st6{fill:#1C5A84;} - .st7{fill:#1F608C;} - .st8{fill:#FEFEFE;} - .st9{fill:#D6DEE6;} - .st10{filter:url(#Adobe_OpacityMaskFilter_1_);} - .st11{mask:url(#mask-30_2_);fill:#1C5A84;} - .st12{filter:url(#Adobe_OpacityMaskFilter_2_);} - .st13{mask:url(#mask-62_2_);fill:#1C5A84;} - .st14{fill:#1A5881;} - .st15{filter:url(#Adobe_OpacityMaskFilter_3_);} - .st16{mask:url(#mask-82_2_);fill:#1F5F8B;} -</style> -<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview173" inkscape:current-layer="Layer_1" inkscape:cx="109.60495" inkscape:cy="138.74616" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-height="1017" inkscape:window-maximized="1" inkscape:window-width="1920" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="5.6568543" objecttolerance="10" pagecolor="#ffffff" showgrid="false"> - </sodipodi:namedview> -<title id="title4">icon-building-cluster</title> -<desc id="desc6">Created with Sketch.</desc> -<g id="g12"> - <path id="path8" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccc" class="st0" d="M58.628,0.108L15.65,22.92 - c0.155-0.084,0.345-0.116,0.549-0.101c0.221,0.021,0.467,0.105,0.725,0.264L59.907,0.266c-0.258-0.157-0.502-0.243-0.727-0.262 - C58.975-0.014,58.792,0.02,58.628,0.108z"/> -</g> -<defs> - <filter id="Adobe_OpacityMaskFilter" filterUnits="userSpaceOnUse" x="65.374" y="95.283" width="44.989" height="27.221"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> -</defs> -<mask maskUnits="userSpaceOnUse" x="65.374" y="95.283" width="44.989" height="27.221" id="mask-6_2_"> - <g id="g20_1_" class="st1"> - <path id="path-5_2_" class="st2" d="M67.38,118.098c0,2.218-0.77,3.749-2.006,4.406c14.326-7.608,28.653-15.213,42.984-22.818 - c1.235-0.655,2.008-2.183,2.005-4.403"/> - </g> -</mask> -<path id="Fill-8" class="st3" d="M67.38,118.098l42.983-22.815c0.002,2.22-0.77,3.748-2.005,4.403l-42.984,22.818 - C66.609,121.847,67.38,120.317,67.38,118.098"/> -<polygon id="Fill-11" class="st4" points="16.924,23.081 65.465,52.246 108.45,29.432 59.908,0.266 "/> -<polygon id="Fill-12" class="st5" points="67.335,55.617 110.316,32.803 110.363,95.282 67.38,118.097 "/> -<g id="g32"> - <path id="path26" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" class="st6" d="M108.449,29.434L65.465,52.246 - c1.087,0.709,1.871,2.314,1.871,3.371l42.98-22.814C110.316,30.97,109.418,30.034,108.449,29.434z"/> -</g> -<path id="Fill-41" class="st7" d="M65.464,52.246c1.032,0.62,1.869,2.13,1.871,3.371l0.045,62.481 - c0.003,4.234-2.816,5.968-6.291,3.875L21.401,98.132c-3.474-2.089-6.295-7.214-6.295-11.446l-0.047-62.48 - c0-1.241,0.833-1.744,1.865-1.125L65.464,52.246z"/> -<polygon id="polygon35" class="st8" points="63.694,75.625 54.535,70.12 54.535,56.567 63.694,62.076 "/> -<polygon id="polygon37" class="st8" points="51.423,68.25 42.262,62.747 42.262,49.194 51.423,54.703 "/> -<polygon id="polygon39" class="st8" points="30.682,75.954 30.682,62.405 39.848,67.914 39.848,81.458 "/> -<polygon id="polygon41" class="st8" points="27.513,53.885 18.349,48.378 18.349,34.829 27.513,40.337 "/> -<polygon id="polygon43" class="st8" points="27.513,74.05 18.349,68.543 18.349,54.997 27.513,60.501 "/> -<polygon id="polygon45" class="st8" points="27.155,93.587 17.994,88.081 17.994,74.533 27.155,80.04 "/> -<polygon id="polygon47" class="st8" points="30.682,42.24 39.848,47.743 39.848,61.297 30.682,55.791 "/> -<path id="Fill-44" class="st9" d="M55.899,58.748l7.028,4.233l-0.015,8.69c0,0-0.432-5.094-3.419-8.993 - C56.754,59.108,55.899,58.748,55.899,58.748"/> -<path id="Fill-46" class="st9" d="M19.617,36.872l7.025,4.239l-0.016,8.688c0,0-0.43-5.094-3.418-8.997 - C20.469,37.229,19.617,36.872,19.617,36.872"/> -<path id="Fill-50" class="st9" d="M43.639,51.353l7.025,4.239l-0.016,8.686c0,0-0.426-5.09-3.416-8.989 - C44.492,51.716,43.639,51.353,43.639,51.353"/> -<path id="Fill-54" class="st9" d="M32.071,44.38l7.03,4.243l-0.014,8.685c0,0-0.435-5.094-3.421-8.991 - C32.926,44.739,32.071,44.38,32.071,44.38"/> -<path id="Fill-56" class="st9" d="M32.041,64.401l7.032,4.232l-0.019,8.699c0,0-0.429-5.094-3.418-8.996 - C32.895,64.756,32.041,64.401,32.041,64.401"/> -<path id="Fill-58" class="st9" d="M19.583,56.892l7.03,4.235l-0.02,8.694c0,0-0.427-5.096-3.416-8.998 - C20.434,57.247,19.583,56.892,19.583,56.892"/> -<g id="g59"> - <path id="path57" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccc" class="st0" d="M150.155,55.097l-42.981,22.812 - c0.159-0.085,0.344-0.116,0.558-0.098s0.46,0.104,0.719,0.262l42.982-22.817c-0.258-0.156-0.503-0.242-0.725-0.263 - C150.5,54.977,150.316,55.011,150.155,55.097z"/> -</g> -<defs> - <filter id="Adobe_OpacityMaskFilter_1_" filterUnits="userSpaceOnUse" x="156.902" y="150.272" width="44.987" height="27.219"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> -</defs> -<mask maskUnits="userSpaceOnUse" x="156.902" y="150.272" width="44.987" height="27.219" id="mask-30_2_"> - <g id="g67_1_" class="st10"> - <path id="path-29_2_" class="st2" d="M158.908,173.089c0,2.214-0.774,3.746-2.007,4.403c14.325-7.606,28.652-15.21,42.984-22.814 - c1.233-0.657,2.005-2.187,2.004-4.406"/> - </g> -</mask> -<path id="Fill-72" class="st11" d="M158.908,173.089l42.981-22.817c0.001,2.219-0.771,3.749-2.004,4.406l-42.983,22.813 - C158.135,176.835,158.908,175.303,158.908,173.089"/> -<polygon id="Fill-75" class="st4" points="108.451,78.073 151.433,55.257 199.975,84.422 156.989,107.236 "/> -<polygon id="Fill-77" class="st5" points="158.861,110.609 201.841,87.793 201.889,150.272 158.908,173.089 "/> -<g id="g79"> - <path id="path73" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" class="st6" d="M199.975,84.422l-42.986,22.814 - c1.173,0.804,1.871,2.322,1.871,3.373l42.982-22.816C201.842,86.272,200.943,85.03,199.975,84.422z"/> -</g> -<path id="Fill-108" class="st7" d="M156.989,107.236c1.032,0.621,1.869,2.131,1.872,3.373l0.046,62.481 - c0.003,4.23-2.816,5.964-6.29,3.875l-39.689-23.843c-3.476-2.088-6.297-7.214-6.299-11.444l-0.045-62.482 - c0-1.24,0.833-1.741,1.867-1.123L156.989,107.236z"/> -<polygon id="polygon82" class="st8" points="155.221,130.613 146.06,125.109 146.06,111.558 155.221,117.066 "/> -<polygon id="polygon84" class="st8" points="155.221,150.777 146.06,145.275 146.06,131.728 155.221,137.23 "/> -<polygon id="polygon86" class="st8" points="155.221,170.531 146.06,165.026 146.06,151.48 155.221,156.984 "/> -<polygon id="polygon88" class="st8" points="142.948,123.242 133.788,117.736 133.788,104.186 142.948,109.693 "/> -<polygon id="polygon90" class="st8" points="142.948,143.409 133.788,137.9 133.788,124.35 142.948,129.859 "/> -<polygon id="polygon92" class="st8" points="122.206,130.945 122.206,117.396 131.373,122.902 131.373,136.448 "/> -<polygon id="polygon94" class="st8" points="119.04,108.875 109.877,103.366 109.877,89.819 119.04,95.329 "/> -<polygon id="polygon96" class="st8" points="122.206,97.229 131.373,102.732 131.373,116.285 122.206,110.781 "/> -<polygon id="polygon98" class="st8" points="123.394,159.022 123.394,138.654 131.072,143.264 131.072,163.634 "/> -<polygon id="polygon100" class="st8" points="133.159,164.887 133.159,144.521 140.613,148.999 140.613,169.368 "/> -<path id="Fill-112" class="st9" d="M147.424,113.738l7.028,4.232l-0.016,8.69c0,0-0.429-5.092-3.416-8.99 - C148.281,114.096,147.424,113.738,147.424,113.738"/> -<path id="Fill-114" class="st9" d="M111.142,91.862l7.025,4.238l-0.013,8.687c0,0-0.431-5.09-3.42-8.992 - C111.995,92.223,111.142,91.862,111.142,91.862"/> -<path id="Fill-116" class="st9" d="M147.393,133.75l7.028,4.236l-0.019,8.698c0,0-0.423-5.098-3.412-8.997 - C148.249,134.11,147.393,133.75,147.393,133.75"/> -<path id="Fill-118" class="st9" d="M135.162,106.343l7.027,4.238l-0.016,8.688c0,0-0.427-5.093-3.414-8.991 - C136.017,106.703,135.162,106.343,135.162,106.343"/> -<path id="Fill-120" class="st9" d="M135.133,126.362l7.025,4.236l-0.016,8.694c0,0-0.427-5.099-3.413-8.994 - C135.983,126.718,135.133,126.362,135.133,126.362"/> -<path id="Fill-122" class="st9" d="M123.594,99.367l7.034,4.244l-0.017,8.688c0,0-0.432-5.095-3.419-8.994 - C124.451,99.728,123.594,99.367,123.594,99.367"/> -<path id="Fill-124" class="st9" d="M123.567,119.389l7.029,4.233l-0.017,8.697c0,0-0.43-5.092-3.418-8.993 - C124.417,119.745,123.567,119.389,123.567,119.389"/> -<path id="Fill-128" class="st9" d="M147.363,153.721l7.027,4.238l-0.016,8.693c0,0-0.428-5.097-3.417-8.997 - C148.217,154.083,147.363,153.721,147.363,153.721"/> -<path id="path110" class="st0" d="M46.018,61.226L46.018,61.226c-0.182-0.051-0.462-0.097-0.726,0l-0.009,0.005 - c-0.033,0.012-0.067,0.024-0.099,0.042L0.635,84.919c0.036-0.019,0.077-0.034,0.112-0.048c0.263-0.094,0.542-0.051,0.725,0l0,0 - c0.113,0.032,0.192,0.068,0.207,0.076L46.226,61.3C46.209,61.293,46.131,61.258,46.018,61.226z"/> -<polygon id="Fill-143" class="st4" points="1.678,84.948 46.226,61.3 58.774,68.841 14.228,92.485 "/> -<g id="g117"> - <path id="path113" class="st0" d="M59.283,60.287L14.735,83.934c0.03-0.017,0.058-0.029,0.088-0.039l44.546-23.646 - C59.341,60.26,59.312,60.272,59.283,60.287z"/> - <path id="path115" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccc" class="st0" d="M59.91,60.249L59.91,60.249 - c-0.198-0.059-0.381-0.059-0.541,0L14.824,83.895c0.159-0.058,0.346-0.058,0.502-0.013s0.276,0.102,0.401,0.174L60.271,60.41 - C60.147,60.335,60.027,60.282,59.91,60.249z"/> -</g> -<defs> - <filter id="Adobe_OpacityMaskFilter_2_" filterUnits="userSpaceOnUse" x="77.102" y="156.557" width="46.396" height="27.69"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> -</defs> -<mask maskUnits="userSpaceOnUse" x="77.102" y="156.557" width="46.396" height="27.69" id="mask-62_2_"> - <g id="g125_1_" class="st12"> - <path id="path-61_2_" class="st2" d="M78.951,180.196c0.003,2.038-0.709,3.449-1.849,4.05l44.546-23.64 - c1.14-0.605,1.853-2.012,1.851-4.049"/> - </g> -</mask> -<path id="Fill-155" class="st13" d="M78.951,180.197l44.547-23.64c0.002,2.037-0.71,3.445-1.851,4.049l-44.545,23.641 - C78.242,183.645,78.954,182.234,78.951,180.197"/> -<polygon id="Fill-158" class="st4" points="15.726,84.056 60.271,60.41 105.051,87.32 60.506,110.961 "/> -<polygon id="Fill-160" class="st14" points="61.986,113.628 106.529,89.98 106.536,97.54 61.989,121.184 "/> -<g id="g137"> - <path id="path131" class="st6" d="M105.598,87.772L105.598,87.772c-0.053-0.057-0.108-0.113-0.164-0.165l0,0 - c-0.12-0.113-0.249-0.21-0.383-0.288l-44.546,23.642c0.134,0.081,0.261,0.183,0.383,0.292l13.102-6.955l-13.101,6.955 - c0.058,0.052,0.111,0.104,0.162,0.163l8.022-4.258l-8.022,4.258c0.139,0.15,0.268,0.318,0.382,0.498l44.547-23.649 - C105.866,88.091,105.738,87.921,105.598,87.772z"/> - <path id="path133" class="st6" d="M106.171,88.605L106.171,88.605c-0.028-0.057-0.057-0.111-0.088-0.163l0,0 - c-0.034-0.059-0.066-0.118-0.103-0.177l-44.547,23.649c0.037,0.058,0.071,0.112,0.105,0.173l0,0 - c0.029,0.054,0.058,0.108,0.087,0.162l3.733-1.981l-3.733,1.982c0.036,0.069,0.066,0.141,0.096,0.209l44.547-23.645 - C106.237,88.742,106.205,88.672,106.171,88.605z"/> - <path id="path135" class="st6" d="M106.509,89.658L106.509,89.658c-0.022-0.171-0.064-0.348-0.12-0.524l-41.012,21.77l41.012-21.77 - c-0.035-0.109-0.075-0.212-0.12-0.32l-44.547,23.645c0.044,0.105,0.085,0.213,0.122,0.321l0,0c0.056,0.176,0.096,0.35,0.121,0.523 - l12.235-6.494l-12.235,6.495c0.013,0.109,0.02,0.217,0.022,0.325L106.53,89.98C106.53,89.876,106.523,89.768,106.509,89.658z"/> -</g> -<polygon id="Fill-191" class="st4" points="61.989,121.184 106.536,97.54 120.605,105.994 76.059,129.638 "/> -<polygon id="Fill-193" class="st14" points="78.921,134.382 123.466,110.736 123.498,156.557 78.951,180.196 "/> -<defs> - <filter id="Adobe_OpacityMaskFilter_3_" filterUnits="userSpaceOnUse" x="0" y="83.85" width="78.951" height="100.73"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> -</defs> -<mask maskUnits="userSpaceOnUse" x="0" y="83.85" width="78.951" height="100.73" id="mask-82_2_"> - <g id="g147_1_" class="st15"> - <polygon id="path-81_2_" class="st2" points="0,83.85 78.951,83.85 78.951,184.58 0,184.58 "/> - </g> -</mask> -<path id="Fill-195" class="st16" d="M60.506,110.961c0.816,0.492,1.478,1.685,1.48,2.667l0.003,7.556l14.071,8.454 - c2.858,1.717,2.862,4.592,2.862,4.744l0.029,45.814c0.003,3.905-2.614,5.501-5.856,3.553L5.898,143.378 - c-3.235-1.946-5.862-6.688-5.865-10.594L0,86.599c0-2.417,1.596-1.691,1.678-1.652l12.55,7.538l-0.005-7.393 - c0.029-1.127,0.686-1.526,1.504-1.036L60.506,110.961z"/> -<g id="g155"> - <path id="path151" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" class="st6" d="M120.605,105.993l-44.545,23.646 - c1.561,0.896,2.861,2.881,2.861,4.744l44.545-23.646C123.467,108.787,122.227,107.08,120.605,105.993z"/> -</g> -<path id="Fill-227" class="st8" d="M75.417,147.689l-8.632-5.185v-12.757l8.632,5.182C75.417,134.929,75.417,147.689,75.417,147.689 - z M75.417,166.696l-8.632-5.187v-12.767l8.632,5.184C75.417,153.926,75.417,166.696,75.417,166.696z M59.189,130.248l-8.628-5.185 - v-12.766l8.628,5.185C59.189,117.482,59.189,130.248,59.189,130.248z M59.189,149.249l-8.628-5.189v-12.763l8.628,5.186 - C59.189,136.483,59.189,149.249,59.189,149.249z M59.189,167.854l-8.628-5.185v-12.764l8.628,5.185 - C59.189,155.09,59.189,167.854,59.189,167.854z M47.627,123.302l-8.629-5.188v-12.767l8.629,5.189V123.302z M47.627,142.301 - l-8.629-5.187v-12.765l8.629,5.188V142.301z M28.086,130.559v-12.764l8.636,5.189v12.763L28.086,130.559z M25.102,109.765 - l-8.635-5.185V91.812l8.635,5.187V109.765z M25.102,128.764l-8.635-5.189v-12.76L25.102,116V128.764z M24.765,147.169l-8.633-5.185 - v-12.765l8.633,5.189V147.169z M28.086,98.791l8.636,5.191v12.766l-8.636-5.19V98.791z M11.424,109.241l-8.636-5.19V91.293 - l8.636,5.187V109.241z M11.424,128.242l-8.636-5.189v-12.765l8.636,5.19V128.242z M29.205,157.012v-19.19l7.234,4.347v19.187 - L29.205,157.012z M38.405,162.54v-19.188l7.021,4.218v19.192L38.405,162.54z"/> -<path id="Fill-229" class="st9" d="M51.845,114.566l6.621,3.992l-0.016,8.186c0,0-0.403-4.798-3.217-8.472 - C52.65,114.905,51.845,114.566,51.845,114.566"/> -<path id="Fill-231" class="st9" d="M17.662,93.96l6.621,3.989l-0.018,8.187c0,0-0.405-4.797-3.219-8.474 - C18.463,94.296,17.662,93.96,17.662,93.96"/> -<path id="Fill-233" class="st9" d="M51.812,133.424l6.623,3.992l-0.016,8.192c0,0-0.402-4.8-3.217-8.475 - C52.621,133.76,51.812,133.424,51.812,133.424"/> -<path id="Fill-235" class="st9" d="M40.292,107.602l6.621,3.991l-0.015,8.185c0,0-0.404-4.797-3.218-8.469 - C41.097,107.943,40.292,107.602,40.292,107.602"/> -<path id="Fill-237" class="st9" d="M40.26,126.462l6.624,3.991l-0.016,8.191c0,0-0.404-4.802-3.217-8.474 - C41.068,126.799,40.26,126.462,40.26,126.462"/> -<path id="Fill-239" class="st9" d="M29.396,101.034l6.624,3.992l-0.018,8.186c0,0-0.405-4.797-3.218-8.473 - C30.201,101.371,29.396,101.034,29.396,101.034"/> -<path id="Fill-241" class="st9" d="M29.367,119.891l6.623,3.994l-0.015,8.192c0,0-0.407-4.802-3.221-8.475 - C30.172,120.228,29.367,119.891,29.367,119.891"/> -<path id="Fill-243" class="st9" d="M17.631,112.818l6.619,3.993l-0.014,8.191c0,0-0.404-4.804-3.22-8.476 - C18.434,113.156,17.631,112.818,17.631,112.818"/> -<path id="Fill-245" class="st9" d="M51.784,152.238l6.623,3.99l-0.015,8.191c0,0-0.403-4.798-3.218-8.473 - C52.593,152.581,51.784,152.238,51.784,152.238"/> -<path id="Fill-247" class="st9" d="M17.392,131.509l6.621,3.989l-0.016,8.19c0,0-0.403-4.8-3.215-8.473 - C18.195,131.846,17.392,131.509,17.392,131.509"/> -<path id="Fill-249" class="st9" d="M4.109,93.475l6.618,3.991l-0.015,8.188c0,0-0.399-4.799-3.215-8.469 - C4.914,93.813,4.109,93.475,4.109,93.475"/> -<path id="Fill-251" class="st9" d="M4.079,112.615l6.62,3.989l-0.016,8.192c0,0-0.402-4.798-3.216-8.474 - C4.882,112.954,4.079,112.615,4.079,112.615"/> -<path id="Fill-253" class="st9" d="M68.044,132.016l6.624,3.989l-0.018,8.19c0,0-0.4-4.797-3.215-8.467 - C68.85,132.354,68.044,132.016,68.044,132.016"/> -<path id="Fill-255" class="st9" d="M68.015,151.156l6.621,3.992l-0.014,8.189c0,0-0.401-4.8-3.219-8.474 - C68.819,151.495,68.015,151.156,68.015,151.156"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 201.889 184.58"><path d="M58.628.108L15.65 22.92c.155-.084.345-.116.55-.1.22.02.467.105.725.264L59.907.266C59.65.11 59.405.023 59.18.004a.96.96 0 0 0-.552.104z" fill="#6089b1"/><defs><filter id="A" filterUnits="userSpaceOnUse" x="65.374" y="95.283" width="44.989" height="27.221"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="65.374" y="95.283" width="44.989" height="27.221" id="B"><g filter="url(#A)"><path d="M67.38 118.098c0 2.218-.77 3.75-2.006 4.406l42.984-22.818c1.235-.655 2.008-2.183 2.005-4.403" fill="#fff"/></g></mask><path d="M67.38 118.098l42.983-22.815c.002 2.22-.77 3.748-2.005 4.403l-42.984 22.818c1.235-.657 2.006-2.187 2.006-4.406" mask="url(#B)" fill="#1c5a84"/><path d="M16.924 23.08l48.54 29.165 42.985-22.814L59.908.266z" fill="#276e9f"/><path d="M67.335 55.617l42.98-22.814.047 62.48-42.983 22.815z" fill="#19557d"/><path d="M108.45 29.434L65.465 52.246c1.087.71 1.87 2.314 1.87 3.37l42.98-22.814c0-1.833-.898-2.77-1.867-3.37z" fill="#1c5a84"/><path d="M65.464 52.246c1.032.62 1.87 2.13 1.87 3.37l.045 62.48c.003 4.234-2.816 5.968-6.29 3.875L21.4 98.132c-3.474-2.09-6.295-7.214-6.295-11.446l-.047-62.48c0-1.24.833-1.744 1.865-1.125l48.54 29.165z" fill="#1f608c"/><path d="M63.694 75.625l-9.16-5.505V56.567l9.16 5.5zm-12.27-7.375l-9.16-5.503V49.194l9.16 5.5zm-20.74 7.704v-13.55l9.166 5.5v13.544zm-3.17-22.07l-9.164-5.507V34.83l9.164 5.508zm0 20.165l-9.164-5.507V54.997l9.164 5.504zm-.358 19.537l-9.16-5.506V74.533l9.16 5.507zm3.527-51.347l9.166 5.503v13.554l-9.166-5.506z" fill="#fefefe"/><g fill="#d6dee6"><path d="M55.9 58.748l7.028 4.233-.015 8.7s-.432-5.094-3.42-8.993c-2.74-3.57-3.594-3.93-3.594-3.93M19.617 36.872l7.025 4.24-.016 8.688s-.43-5.094-3.418-8.997c-2.74-3.573-3.6-3.93-3.6-3.93"/><path d="M43.64 51.353l7.025 4.24-.016 8.686s-.426-5.1-3.416-9c-2.74-3.573-3.593-3.936-3.593-3.936M32.07 44.38l7.03 4.243-.014 8.685s-.435-5.094-3.42-9c-2.74-3.578-3.595-3.937-3.595-3.937m-.03 20.02l7.032 4.232-.02 8.7s-.43-5.094-3.418-8.996c-2.74-3.58-3.595-3.935-3.595-3.935m-12.456-7.51l7.03 4.235-.02 8.694s-.427-5.096-3.416-8.998c-2.743-3.576-3.594-3.93-3.594-3.93"/></g><path d="M150.155 55.097l-42.98 22.812c.16-.085.344-.116.558-.098s.46.104.72.262l42.982-22.817c-.258-.156-.503-.242-.725-.263-.208-.016-.392.018-.553.104z" fill="#6089b1"/><defs><filter id="C" filterUnits="userSpaceOnUse" x="156.902" y="150.272" width="44.987" height="27.219"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="156.902" y="150.272" width="44.987" height="27.219" id="D"><g filter="url(#C)"><path d="M158.908 173.09c0 2.214-.774 3.746-2.007 4.403l42.984-22.814c1.233-.657 2.005-2.187 2.004-4.406" fill="#fff"/></g></mask><path d="M158.908 173.09l42.98-22.817c.001 2.22-.77 3.75-2.004 4.406l-42.983 22.813c1.233-.656 2.006-2.188 2.006-4.402" mask="url(#D)" fill="#1c5a84"/><path d="M108.45 78.073l42.982-22.816 48.542 29.165-42.986 22.814z" fill="#276e9f"/><path d="M158.86 110.61l42.98-22.816.048 62.48-42.98 22.817z" fill="#19557d"/><path d="M199.975 84.422l-42.986 22.814c1.173.804 1.87 2.322 1.87 3.373l42.982-22.816c0-1.52-.9-2.763-1.867-3.37z" fill="#1c5a84"/><path d="M156.99 107.236c1.032.62 1.87 2.13 1.872 3.373l.046 62.48c.003 4.23-2.816 5.964-6.3 3.875l-39.69-23.843c-3.476-2.088-6.297-7.214-6.3-11.444l-.045-62.482c0-1.24.833-1.74 1.867-1.123l48.538 29.163z" fill="#1f608c"/><path d="M155.22 130.613l-9.16-5.504v-13.55l9.16 5.508zm0 20.164l-9.16-5.502v-13.547l9.16 5.502zm0 19.753l-9.16-5.505V151.48l9.16 5.504zm-12.272-47.288l-9.16-5.506v-13.55l9.16 5.507zm0 20.168l-9.16-5.5v-13.55l9.16 5.5zm-20.742-12.465v-13.55l9.167 5.506v13.546zm-3.166-22.07l-9.163-5.5V89.82l9.163 5.5zm3.166-11.645l9.167 5.503v13.553l-9.167-5.504zm1.188 61.792v-20.368l7.678 4.6v20.37zm9.766 5.865V144.52l7.454 4.478v20.37z" fill="#fefefe"/><path d="M147.424 113.738l7.028 4.232-.016 8.7s-.43-5.092-3.416-9c-2.74-3.574-3.596-3.932-3.596-3.932m-36.282-21.876l7.025 4.238-.013 8.687s-.43-5.1-3.42-8.992c-2.74-3.572-3.592-3.933-3.592-3.933m36.25 41.888l7.028 4.236-.02 8.698s-.423-5.098-3.412-8.997c-2.74-3.577-3.597-3.937-3.597-3.937m-12.23-27.407l7.027 4.238-.016 8.688s-.427-5.093-3.414-9c-2.742-3.575-3.597-3.935-3.597-3.935m-.03 20.018l7.025 4.236-.016 8.694s-.427-5.1-3.413-8.994c-2.746-3.58-3.596-3.936-3.596-3.936m-11.54-26.995l7.034 4.244-.017 8.688s-.432-5.095-3.42-8.994c-2.74-3.577-3.598-3.938-3.598-3.938m-.026 20.023l7.03 4.233-.017 8.697s-.43-5.092-3.418-8.993c-2.744-3.58-3.594-3.937-3.594-3.937m23.795 34.33l7.027 4.238-.016 8.693s-.428-5.097-3.417-8.997c-2.74-3.572-3.594-3.934-3.594-3.934" fill="#d6dee6"/><path d="M46.018 61.226c-.182-.05-.462-.097-.726 0l-.01.005c-.033.012-.067.024-.1.042L.635 84.92c.036-.02.077-.034.112-.048.263-.094.542-.05.725 0 .113.032.192.068.207.076L46.226 61.3c-.017-.007-.095-.042-.208-.074z" fill="#6089b1"/><path d="M1.678 84.948L46.226 61.3l12.548 7.54-44.546 23.644z" fill="#276e9f"/><g fill="#6089b1"><path d="M59.283 60.287L14.735 83.934c.03-.017.058-.03.088-.04l44.46-23.608z"/><path d="M59.9 60.25c-.198-.06-.38-.06-.54 0L14.824 83.895c.16-.058.346-.058.502-.013a1.72 1.72 0 0 1 .401.174L60.27 60.4a1.47 1.47 0 0 0-.361-.161z"/></g><defs><filter id="E" filterUnits="userSpaceOnUse" x="77.102" y="156.557" width="46.396" height="27.69"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="77.102" y="156.557" width="46.396" height="27.69" id="F"><g filter="url(#E)"><path d="M78.95 180.196c.003 2.038-.71 3.45-1.85 4.05l44.546-23.64c1.14-.605 1.853-2.012 1.85-4.05" fill="#fff"/></g></mask><path d="M78.95 180.197l44.547-23.64c.002 2.037-.7 3.445-1.85 4.05l-44.545 23.64c1.14-.602 1.852-2.013 1.85-4.05" mask="url(#F)" fill="#1c5a84"/><path d="M15.726 84.056L60.27 60.4l44.78 26.9-44.545 23.64z" fill="#276e9f"/><path d="M61.986 113.628L106.53 89.98l.007 7.56-44.547 23.644z" fill="#1a5881"/><g fill="#1c5a84"><path d="M105.598 87.772l-.164-.165a2.11 2.11 0 0 0-.383-.288L60.505 110.96c.134.08.26.183.383.292L74 104.298l-13.1 6.955a1.78 1.78 0 0 1 .162.163l8.022-4.258-8.022 4.258c.14.15.268.318.382.498l44.547-23.65a3.62 3.62 0 0 0-.382-.493z"/><path d="M106.17 88.605l-.088-.163-.103-.177-44.547 23.65.105.173.087.162 3.733-1.98-3.733 1.982.096.21 44.547-23.645-.097-.21z"/><path d="M106.51 89.658c-.022-.17-.064-.348-.12-.524l-41.012 21.77 41.012-21.77-.12-.32-44.547 23.645.122.32a3.26 3.26 0 0 1 .121.523L74.2 106.81l-12.235 6.495c.013.11.02.217.022.325l44.543-23.65a2.56 2.56 0 0 0-.021-.322z"/></g><path d="M61.99 121.184l44.547-23.644 14.07 8.454-44.546 23.644z" fill="#276e9f"/><path d="M78.92 134.382l44.545-23.646.032 45.82-44.547 23.64z" fill="#1a5881"/><defs><filter id="G" filterUnits="userSpaceOnUse" x="0" y="83.85" width="78.951" height="100.73"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="0" y="83.85" width="78.951" height="100.73" id="H"><g filter="url(#G)"><path d="M0 83.85h78.95v100.73H0z" fill="#fff"/></g></mask><path d="M60.506 110.96c.816.492 1.478 1.685 1.48 2.667l.003 7.556 14.07 8.454c2.858 1.717 2.862 4.592 2.862 4.744l.03 45.814c.003 3.905-2.614 5.5-5.856 3.553l-67.197-40.37C2.663 141.432.036 136.7.033 132.784L0 86.6c0-2.417 1.596-1.69 1.678-1.652l12.55 7.538-.005-7.393c.03-1.127.686-1.526 1.504-1.036l44.78 26.905z" mask="url(#H)" fill="#1f5f8b"/><path d="M120.605 105.993L76.06 129.64c1.56.896 2.86 2.88 2.86 4.744l44.545-23.646c.001-1.95-1.24-3.657-2.86-4.744z" fill="#1c5a84"/><path d="M75.417 147.69l-8.632-5.185v-12.757l8.632 5.182v12.76zm0 19.007l-8.632-5.187v-12.767l8.632 5.184v12.77zM59.19 130.248l-8.628-5.185v-12.766l8.628 5.185v12.766zm0 19l-8.628-5.19v-12.763l8.628 5.186v12.766zm0 18.605l-8.628-5.185v-12.764l8.628 5.185v12.764zm-11.562-44.552l-8.63-5.188v-12.767l8.63 5.19v12.766zm0 19l-8.63-5.187V124.35l8.63 5.188V142.3zm-19.54-11.742v-12.764l8.636 5.19v12.763l-8.636-5.188zm-2.984-20.794l-8.635-5.185V91.812L25.102 97v12.766zm0 19l-8.635-5.19v-12.76L25.102 116v12.764zm-.337 18.405l-8.633-5.185V129.22l8.633 5.19v12.76zm3.32-48.378l8.636 5.19v12.766l-8.636-5.2V98.79zm-16.662 10.45l-8.636-5.2V91.293l8.636 5.187v12.76zm0 19l-8.636-5.19v-12.765l8.636 5.2v12.764zm17.78 28.77v-19.2l7.234 4.347v19.187l-7.234-4.344zm9.2 5.528v-19.188l7.02 4.218v19.192l-7.02-4.222z" fill="#fefefe"/><g fill="#d6dee6"><path d="M51.845 114.566l6.62 3.992-.016 8.186s-.403-4.798-3.217-8.472c-2.583-3.367-3.388-3.706-3.388-3.706M17.662 93.96l6.62 4-.018 8.187s-.405-4.797-3.22-8.474c-2.583-3.366-3.384-3.702-3.384-3.702m34.152 39.463l6.623 3.992-.016 8.192s-.402-4.8-3.217-8.475c-2.58-3.373-3.4-3.7-3.4-3.7m-11.5-25.82l6.62 4-.015 8.185s-.404-4.797-3.218-8.47c-2.583-3.366-3.388-3.707-3.388-3.707m-.03 18.862l6.624 4-.016 8.2s-.404-4.802-3.217-8.474c-2.583-3.37-3.4-3.708-3.4-3.708m-10.865-25.426l6.624 3.992-.018 8.186s-.405-4.797-3.218-8.473c-2.583-3.368-3.388-3.705-3.388-3.705m-.03 18.856L36 123.885l-.015 8.192s-.407-4.802-3.22-8.475c-2.582-3.374-3.387-3.7-3.387-3.7m-11.748-7.074l6.62 3.993-.014 8.2s-.404-4.804-3.22-8.476c-2.582-3.37-3.385-3.708-3.385-3.708"/><path d="M51.784 152.238l6.623 4-.015 8.2s-.403-4.798-3.218-8.473c-2.58-3.365-3.4-3.708-3.4-3.708M17.392 131.5l6.62 4-.016 8.2s-.403-4.8-3.215-8.473c-2.587-3.37-3.4-3.706-3.4-3.706M4.1 93.475l6.618 4-.015 8.188s-.4-4.8-3.215-8.47c-2.583-3.372-3.388-3.7-3.388-3.7m-.03 19.132l6.62 4-.016 8.192s-.402-4.798-3.216-8.474c-2.585-3.368-3.388-3.707-3.388-3.707m63.964 19.4l6.624 4-.018 8.2s-.4-4.797-3.215-8.467c-2.585-3.374-3.4-3.712-3.4-3.712m-.03 19.13l6.62 3.992-.014 8.2s-.4-4.8-3.22-8.474c-2.584-3.368-3.388-3.707-3.388-3.707"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/buildings/Large_Building.svg b/src/main/webapp/img/lib/allied_telesis/buildings/Large_Building.svg index 3e48fa6c765f8ca306bddfddc8f6955f3762d1d6..115c132618929f12b6b85a092bef8d492e5fe41e 100644 --- a/src/main/webapp/img/lib/allied_telesis/buildings/Large_Building.svg +++ b/src/main/webapp/img/lib/allied_telesis/buildings/Large_Building.svg @@ -1,105 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" - id="Layer_1" inkscape:version="0.92.3 (2405546, 2018-03-11)" sodipodi:docname="Large Building4.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 124.348 125.232" - style="enable-background:new 0 0 124.348 125.232;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#6089B1;} - .st1{fill:#276E9F;} - .st2{filter:url(#Adobe_OpacityMaskFilter);} - .st3{fill:#FFFFFF;} - .st4{mask:url(#mask-14_2_);fill:#1C5A84;} - .st5{fill:#1A5881;} - .st6{fill:#1C5A84;} - .st7{filter:url(#Adobe_OpacityMaskFilter_1_);} - .st8{mask:url(#mask-34_2_);fill:#1F5F8B;} - .st9{fill:#FEFEFE;} - .st10{fill:#D6DEE6;} -</style> -<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview67" inkscape:current-layer="Layer_1" inkscape:cx="56.656382" inkscape:cy="77.509328" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-height="1017" inkscape:window-maximized="1" inkscape:window-width="1920" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="5.6568543" objecttolerance="10" pagecolor="#ffffff" showgrid="false"> - </sodipodi:namedview> -<title id="title4">icon-large-building</title> -<desc id="desc6">Created with Sketch.</desc> -<g id="g12"> - <path id="path10" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccc" class="st0" d="M1.482,24.831 - c0.112,0.033,0.191,0.068,0.209,0.076L46.543,1.099c-0.017-0.008-0.095-0.043-0.208-0.077c-0.186-0.051-0.465-0.095-0.731,0.002 - l-0.007,0.004c-0.034,0.012-0.068,0.027-0.102,0.044L0.641,24.881C1.01,24.729,1.298,24.779,1.482,24.831z"/> -</g> -<polygon id="Fill-11" class="st1" points="1.69,24.907 46.543,1.098 59.179,8.69 14.326,32.499 "/> -<path id="path15" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" class="st0" d="M59.691,0.076L14.838,23.885 - c0.389-0.198,0.758-0.017,0.994,0.125L60.686,0.201C60.306-0.066,59.906-0.022,59.691,0.076z"/> -<defs> - <filter id="Adobe_OpacityMaskFilter" filterUnits="userSpaceOnUse" x="77.633" y="97.011" width="46.715" height="27.885"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> -</defs> -<mask maskUnits="userSpaceOnUse" x="77.633" y="97.011" width="46.715" height="27.885" id="mask-14_2_"> - <g id="g23_1_" class="st2"> - <path id="path-13_2_" class="st3" d="M79.495,120.82c0.001,2.049-0.714,3.468-1.862,4.076l44.853-23.808 - c1.148-0.61,1.863-2.027,1.862-4.076"/> - </g> -</mask> -<path id="Fill-22" class="st4" d="M79.495,120.82l44.853-23.809c0.001,2.05-0.714,3.467-1.862,4.077l-44.853,23.808 - C78.78,124.288,79.496,122.87,79.495,120.82"/> -<polygon id="Fill-25" class="st1" points="15.832,24.011 60.923,51.104 105.776,27.295 60.685,0.202 "/> -<polygon id="Fill-26" class="st5" points="62.411,53.786 107.265,29.977 107.269,37.587 62.416,61.395 "/> -<g id="g35"> - <path id="path29" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" class="st6" d="M105.775,27.295L60.924,51.104 - c0.84,0.568,1.486,1.738,1.486,2.684l44.855-23.809C107.266,28.82,106.626,27.913,105.775,27.295z"/> -</g> -<polygon id="Fill-55" class="st1" points="62.416,61.395 107.27,37.586 121.436,46.098 76.582,69.907 "/> -<polygon id="Fill-56" class="st5" points="79.462,74.684 79.495,120.82 124.348,97.011 124.315,50.875 "/> -<defs> - <filter id="Adobe_OpacityMaskFilter_1_" filterUnits="userSpaceOnUse" x="0" y="23.802" width="79.495" height="101.43"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> -</defs> -<mask maskUnits="userSpaceOnUse" x="0" y="23.802" width="79.495" height="101.43" id="mask-34_2_"> - <g id="g45_1_" class="st7"> - <polygon id="path-33_2_" class="st3" points="0,23.802 79.495,23.802 79.495,125.232 0,125.232 "/> - </g> -</mask> -<path id="Fill-57" class="st8" d="M60.923,51.103c0.82,0.493,1.487,1.693,1.488,2.683l0.005,7.609l14.166,8.512 - c2.878,1.728,2.88,4.625,2.88,4.777l0.033,46.136c0.002,3.932-2.634,5.536-5.897,3.575L5.938,83.741 - c-3.257-1.957-5.903-6.735-5.906-10.667L0,26.572c-0.002-2.435,1.606-1.704,1.691-1.665l12.635,7.592l-0.006-7.448 - c0.03-1.133,0.691-1.535,1.512-1.041L60.923,51.103z"/> -<path id="path49" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" class="st6" d="M121.436,46.097l-44.854,23.81 - c1.497,0.865,2.88,3.031,2.88,4.777l44.854-23.809C124.316,48.797,122.973,47.084,121.436,46.097z"/> -<path id="Fill-88" class="st9" d="M75.937,88.085l-8.691-5.223V70.015l8.691,5.221V88.085z M75.937,107.217l-8.692-5.223V89.142 - l8.691,5.222L75.937,107.217L75.937,107.217z M59.597,70.521l-8.69-5.221V52.445l8.69,5.222V70.521z M59.597,89.65l-8.69-5.22 - V71.577l8.69,5.223V89.65z M59.597,108.388l-8.69-5.222V90.314l8.69,5.221V108.388z M47.957,63.526l-8.693-5.222V45.45l8.693,5.223 - V63.526z M47.957,82.656l-8.693-5.222V64.581l8.693,5.224V82.656z M28.278,70.833V57.981l8.695,5.225v12.852L28.278,70.833z - M25.272,49.897l-8.693-5.224V31.819l8.693,5.225V49.897z M25.272,69.026l-8.692-5.222V50.952l8.693,5.223L25.272,69.026 - L25.272,69.026z M24.934,87.56l-8.691-5.222V69.485l8.691,5.223V87.56z M28.278,38.849l8.695,5.224v12.855l-8.695-5.225V38.849z - M11.5,49.368l-8.694-5.224V31.296l8.695,5.224L11.5,49.368L11.5,49.368z M11.5,68.499l-8.694-5.225V50.423l8.695,5.224L11.5,68.499 - L11.5,68.499z M29.403,97.471V78.147l7.284,4.377v19.322L29.403,97.471z M38.667,103.036V83.715l7.071,4.248v19.323L38.667,103.036z - "/> -<path id="Fill-89" class="st10" d="M52.2,54.731l6.667,4.019l-0.016,8.241c0,0-0.404-4.83-3.239-8.53 - C53.012,55.071,52.2,54.731,52.2,54.731"/> -<path id="Fill-91" class="st10" d="M17.781,33.983l6.666,4.018l-0.016,8.241c0,0-0.407-4.83-3.242-8.53 - C18.59,34.321,17.781,33.983,17.781,33.983"/> -<path id="Fill-93" class="st10" d="M52.17,73.719l6.668,4.019l-0.017,8.247c0,0-0.404-4.832-3.239-8.532 - C52.982,74.059,52.17,73.719,52.17,73.719"/> -<path id="Fill-95" class="st10" d="M40.568,47.719l6.667,4.018l-0.016,8.242c0,0-0.405-4.83-3.238-8.529 - C41.38,48.059,40.568,47.719,40.568,47.719"/> -<path id="Fill-97" class="st10" d="M40.538,66.708l6.668,4.019l-0.017,8.247c0,0-0.405-4.833-3.238-8.532 - C41.35,67.048,40.538,66.708,40.538,66.708"/> -<path id="Fill-99" class="st10" d="M29.597,41.106l6.67,4.02l-0.017,8.242c0,0-0.408-4.832-3.242-8.532 - C30.408,41.444,29.597,41.106,29.597,41.106"/> -<path id="Fill-101" class="st10" d="M29.566,60.094l6.67,4.02l-0.017,8.246c0,0-0.407-4.833-3.241-8.534 - C30.377,60.433,29.566,60.094,29.566,60.094"/> -<path id="Fill-103" class="st10" d="M17.751,52.971l6.666,4.018l-0.016,8.248c0,0-0.406-4.834-3.242-8.535 - C18.56,53.309,17.751,52.971,17.751,52.971"/> -<path id="Fill-105" class="st10" d="M52.141,92.664l6.667,4.019l-0.016,8.245c0,0-0.404-4.832-3.24-8.532 - C52.953,93.006,52.141,92.664,52.141,92.664"/> -<path id="Fill-107" class="st10" d="M17.511,71.79l6.666,4.018l-0.016,8.244c0,0-0.407-4.832-3.237-8.53 - C18.321,72.13,17.511,71.79,17.511,71.79"/> -<path id="Fill-109" class="st10" d="M4.137,33.493l6.665,4.018l-0.016,8.248c0,0-0.405-4.834-3.238-8.53 - C4.946,33.836,4.137,33.493,4.137,33.493"/> -<path id="Fill-111" class="st10" d="M4.105,52.766l6.666,4.018l-0.017,8.246c0,0-0.404-4.832-3.237-8.532 - C4.916,53.107,4.105,52.766,4.105,52.766"/> -<path id="Fill-113" class="st10" d="M68.513,72.299l6.667,4.019l-0.016,8.247c0,0-0.403-4.832-3.237-8.53 - C69.325,72.643,68.513,72.299,68.513,72.299"/> -<path id="Fill-115" class="st10" d="M68.482,91.573l6.667,4.019l-0.016,8.245c0,0-0.403-4.831-3.238-8.532 - C69.294,91.915,68.482,91.573,68.482,91.573"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 124.348 125.232"><path d="M1.482 24.83a1.71 1.71 0 0 1 .209.076L46.543 1.1a1.63 1.63 0 0 0-.208-.077c-.186-.05-.465-.095-.73.002l-.007.004c-.034.012-.068.027-.102.044L.64 24.88a1.23 1.23 0 0 1 .841-.05z" fill="#6089b1"/><path d="M1.7 24.907l44.853-23.81L59.18 8.7 14.326 32.5z" fill="#276e9f"/><path d="M59.69.076l-44.853 23.81c.39-.198.758-.017.994.125L60.686.2c-.38-.267-.78-.223-.995-.125z" fill="#6089b1"/><defs><filter id="A" filterUnits="userSpaceOnUse" x="77.633" y="97.011" width="46.715" height="27.885"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="77.633" y="97.011" width="46.715" height="27.885" id="B"><g filter="url(#A)"><path d="M79.495 120.82c.001 2.05-.714 3.468-1.862 4.076l44.853-23.808c1.148-.6 1.863-2.027 1.862-4.076" fill="#fff"/></g></mask><path d="M79.495 120.82l44.853-23.81c.001 2.05-.714 3.467-1.862 4.077l-44.853 23.808c1.147-.608 1.863-2.026 1.862-4.076" mask="url(#B)" fill="#1c5a84"/><path d="M15.832 24.01l45.09 27.093 44.853-23.81L60.685.202z" fill="#276e9f"/><path d="M62.41 53.786l44.854-23.81.004 7.6-44.853 23.808z" fill="#1a5881"/><path d="M105.775 27.295l-44.85 23.81c.84.568 1.486 1.738 1.486 2.684l44.855-23.81c.001-1.16-.64-2.066-1.5-2.684z" fill="#1c5a84"/><path d="M62.416 61.395l44.854-23.81 14.166 8.512-44.854 23.81z" fill="#276e9f"/><path d="M79.462 74.684l.033 46.136 44.853-23.81-.033-46.136z" fill="#1a5881"/><defs><filter id="C" filterUnits="userSpaceOnUse" x="0" y="23.802" width="79.495" height="101.43"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="0" y="23.802" width="79.495" height="101.43" id="D"><g filter="url(#C)"><path d="M0 23.802h79.495v101.43H0z" fill="#fff"/></g></mask><path d="M60.923 51.103c.82.493 1.487 1.693 1.488 2.683l.005 7.61 14.166 8.512c2.878 1.728 2.88 4.625 2.88 4.777l.033 46.136c.002 3.932-2.634 5.536-5.897 3.575L5.938 83.74C2.68 81.784.035 77.006.032 73.074L0 26.572c-.002-2.435 1.606-1.704 1.69-1.665L14.326 32.5l-.006-7.448c.03-1.133.69-1.535 1.512-1.04l45.09 27.093z" mask="url(#D)" fill="#1f5f8b"/><path d="M121.436 46.097l-44.854 23.8c1.497.865 2.88 3.03 2.88 4.777l44.854-23.81c0-2.078-1.343-3.79-2.88-4.778z" fill="#1c5a84"/><path d="M75.937 88.085l-8.69-5.223V70.015l8.69 5.22v12.85zm0 19.132l-8.692-5.223V89.142l8.69 5.222.001 12.853zM59.597 70.52l-8.7-5.22V52.445l8.7 5.222V70.52zm0 19.13l-8.7-5.22V71.577l8.7 5.223v12.85zm0 18.738l-8.7-5.222V90.314l8.7 5.22v12.853zm-11.64-44.862l-8.693-5.222V45.45l8.693 5.223v12.853zm0 19.13l-8.693-5.222V64.58l8.693 5.224v12.85zm-19.68-11.823V57.98l8.695 5.225v12.852l-8.695-5.225zm-3.006-20.936l-8.693-5.224V31.82l8.693 5.225v12.853zm0 19.13l-8.692-5.222V50.952l8.693 5.223-.001 12.85zm-.338 18.534l-8.69-5.222V69.485l8.69 5.223V87.56zm3.344-48.71l8.695 5.224v12.855l-8.695-5.225V38.85zM11.5 49.368l-8.694-5.224V31.296L11.5 36.52v12.848zm0 19.13l-8.694-5.225v-12.85l8.695 5.224V68.5zM29.403 97.47V78.147l7.284 4.377v19.322l-7.284-4.375zm9.264 5.565v-19.32l7.07 4.248v19.323l-7.07-4.25z" fill="#fefefe"/><g fill="#d6dee6"><path d="M52.2 54.73l6.667 4.02L58.85 67s-.404-4.83-3.24-8.53c-2.6-3.4-3.412-3.73-3.412-3.73M17.78 33.983L24.447 38l-.016 8.24s-.407-4.83-3.242-8.53c-2.6-3.4-3.408-3.73-3.408-3.73m34.39 39.74l6.668 4.02-.017 8.247s-.404-4.832-3.24-8.532c-2.6-3.394-3.412-3.734-3.412-3.734m-11.6-26l6.667 4.018-.016 8.242s-.405-4.83-3.238-8.53c-2.6-3.4-3.413-3.73-3.413-3.73m-.03 18.988l6.668 4.02-.017 8.247s-.405-4.833-3.238-8.532c-2.6-3.394-3.413-3.734-3.413-3.734m-10.94-25.603l6.67 4.02-.017 8.242s-.408-4.832-3.242-8.532c-2.6-3.392-3.4-3.73-3.4-3.73m-.032 18.988l6.67 4.02-.017 8.246s-.407-4.833-3.24-8.534c-2.6-3.393-3.412-3.732-3.412-3.732M17.75 52.97l6.666 4.018-.016 8.248s-.406-4.834-3.242-8.535c-2.6-3.393-3.408-3.73-3.408-3.73"/><path d="M52.14 92.664l6.667 4.02-.016 8.245s-.404-4.832-3.24-8.532c-2.6-3.4-3.4-3.732-3.4-3.732M17.5 71.8l6.666 4.018-.016 8.244s-.407-4.832-3.237-8.53C18.32 72.13 17.5 71.8 17.5 71.8M4.137 33.493l6.665 4.018-.016 8.248s-.405-4.834-3.238-8.53c-2.602-3.393-3.4-3.736-3.4-3.736m-.033 19.273l6.666 4.018-.017 8.246s-.404-4.832-3.237-8.532c-2.6-3.4-3.412-3.732-3.412-3.732M68.513 72.3l6.667 4.02-.016 8.247s-.403-4.832-3.237-8.53c-2.602-3.392-3.414-3.736-3.414-3.736m-.03 19.272l6.667 4.02-.016 8.245s-.403-4.83-3.238-8.532c-2.6-3.4-3.413-3.732-3.413-3.732"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/buildings/Long_Building.svg b/src/main/webapp/img/lib/allied_telesis/buildings/Long_Building.svg index a5a5780b54c8a2a84b6401c28f14c5366bd24491..1f7b1b9c42b9fcc4bbfcf270d7673c48ac669e9e 100644 --- a/src/main/webapp/img/lib/allied_telesis/buildings/Long_Building.svg +++ b/src/main/webapp/img/lib/allied_telesis/buildings/Long_Building.svg @@ -1,182 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" - id="Layer_1" inkscape:version="0.92.3 (2405546, 2018-03-11)" sodipodi:docname="Long_Building4.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 208.73 215.073" - style="enable-background:new 0 0 208.73 215.073;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#216391;} - .st1{fill:#18547D;} - .st2{fill:#276E9F;} - .st3{fill:#19557D;} - .st4{filter:url(#Adobe_OpacityMaskFilter);} - .st5{fill:#FFFFFF;} - .st6{mask:url(#mask-98_2_);fill:#1F608C;} - .st7{fill:#FEFEFE;} - .st8{fill:#D6DEE6;} -</style> -<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview133" inkscape:current-layer="Layer_1" inkscape:cx="123.13008" inkscape:cy="81.349642" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-height="1017" inkscape:window-maximized="1" inkscape:window-width="1920" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="5.6568543" objecttolerance="10" pagecolor="#ffffff" showgrid="false"> - </sodipodi:namedview> -<title id="title4">icon-long-building</title> -<desc id="desc6">Created with Sketch.</desc> -<g id="g22"> - <path id="path8" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" class="st0" d="M1.84,26.193 - c1.46-0.631,2.88-0.194,3.977,0.486l48.84-25.924c-1.235-0.783-2.045-0.865-3.582-0.658L1.84,26.193z"/> -</g> -<g id="g38"> - <path id="path34" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" class="st1" d="M208.73,184.806l-48.841,25.926 - c0.018,1.83-0.628,3.252-1.842,4.008l48.84-25.924C208.338,188.101,208.73,186.193,208.73,184.806z"/> -</g> -<polygon id="Fill-98" class="st2" points="54.656,0.755 202.848,89.798 154.01,115.722 5.816,26.679 "/> -<polygon id="Fill-100" class="st3" points="159.83,126.236 208.669,100.311 208.729,184.806 159.889,210.732 "/> -<g id="g56"> - <path id="path42" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" class="st3" d="M202.85,89.798l-48.84,25.924 - c3.223,2.066,5.82,6.829,5.82,10.514l48.84-25.924C208.67,96.41,206.098,91.849,202.85,89.798z"/> -</g> -<defs> - <filter id="Adobe_OpacityMaskFilter" filterUnits="userSpaceOnUse" x="0" y="25.859" width="159.889" height="189.214"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> -</defs> -<mask maskUnits="userSpaceOnUse" x="0" y="25.859" width="159.889" height="189.214" id="mask-98_2_"> - <g id="g64_1_" class="st4"> - <polygon id="path-97_2_" class="st5" points="0,25.859 159.889,25.859 159.889,215.073 0,215.073 "/> - </g> -</mask> -<path id="Fill-209" class="st6" d="M154.01,115.722c3.197,1.922,5.816,6.651,5.82,10.514l0.059,84.496 - c0.004,3.861-2.613,5.445-5.811,3.524L5.887,125.213c-3.205-1.925-5.826-6.655-5.828-10.517L0,30.201 - c-0.004-3.864,2.614-5.447,5.817-3.522L154.01,115.722z"/> -<path id="Fill-212" class="st7" d="M95.582,129.974l-8.691-5.223v-12.853l8.691,5.222V129.974z M95.582,149.103l-8.691-5.221 - v-12.851l8.691,5.22V149.103z M95.582,167.839l-8.691-5.22v-12.852l8.691,5.221V167.839z M83.941,122.978l-8.693-5.221v-12.855 - l8.693,5.224V122.978z M83.941,142.109l-8.693-5.223v-12.851l8.693,5.222V142.109z M64.264,130.285v-12.852l8.695,5.225v12.853 - L64.264,130.285z M61.258,109.349l-8.694-5.223V91.273l8.694,5.222V109.349z M61.258,128.48l-8.694-5.225v-12.851l8.694,5.224 - V128.48z M60.918,147.013l-8.691-5.223v-12.853l8.691,5.223V147.013z M64.264,98.302l8.695,5.225v12.853l-8.695-5.224V98.302z - M65.389,156.923v-19.322l7.283,4.377v19.32L65.389,156.923z M74.652,162.49v-19.323l7.071,4.248v19.323L74.652,162.49z"/> -<path id="Fill-214" class="st8" d="M88.186,113.962l6.668,4.02l-0.016,8.242c0,0-0.406-4.832-3.24-8.532 - C88.996,114.302,88.186,113.962,88.186,113.962"/> -<path id="Fill-216" class="st8" d="M53.765,93.214l6.666,4.018l-0.016,8.242c0,0-0.406-4.83-3.242-8.53 - C54.575,93.552,53.765,93.214,53.765,93.214"/> -<path id="Fill-218" class="st8" d="M88.154,132.951l6.668,4.02l-0.016,8.246c0,0-0.404-4.832-3.24-8.532 - C88.966,133.29,88.154,132.951,88.154,132.951"/> -<path id="Fill-220" class="st8" d="M76.553,106.951l6.668,4.018l-0.016,8.242c0,0-0.406-4.83-3.238-8.528 - C77.365,107.29,76.553,106.951,76.553,106.951"/> -<path id="Fill-222" class="st8" d="M76.523,125.939l6.666,4.02l-0.016,8.246c0,0-0.404-4.832-3.238-8.532 - C77.334,126.279,76.523,125.939,76.523,125.939"/> -<path id="Fill-224" class="st8" d="M65.582,100.337l6.67,4.02l-0.016,8.242c0,0-0.41-4.832-3.244-8.532 - C66.391,100.677,65.582,100.337,65.582,100.337"/> -<path id="Fill-226" class="st8" d="M65.551,119.326l6.67,4.02l-0.016,8.246c0,0-0.408-4.832-3.242-8.534 - C66.362,119.665,65.551,119.326,65.551,119.326"/> -<path id="Fill-228" class="st8" d="M53.736,112.203l6.666,4.02l-0.016,8.246c0,0-0.406-4.832-3.242-8.534 - C54.545,112.542,53.736,112.203,53.736,112.203"/> -<path id="Fill-230" class="st8" d="M88.125,151.894l6.668,4.02l-0.016,8.246c0,0-0.404-4.832-3.24-8.532 - C88.937,152.238,88.125,151.894,88.125,151.894"/> -<path id="Fill-232" class="st8" d="M53.496,131.021l6.666,4.018l-0.016,8.244c0,0-0.408-4.832-3.238-8.53 - C54.307,131.361,53.496,131.021,53.496,131.021"/> -<path id="Fill-234" class="st7" d="M141.455,158.66l-8.689-5.221v-12.854l8.689,5.22V158.66z M141.455,177.79l-8.689-5.223v-12.851 - l8.689,5.222V177.79z M141.455,196.527l-8.689-5.221v-12.853l8.689,5.223V196.527z M129.814,151.665l-8.691-5.223v-12.853 - l8.691,5.222V151.665z M129.814,170.796l-8.691-5.225V152.72l8.691,5.224V170.796z M110.139,158.971V146.12l8.695,5.225v12.851 - L110.139,158.971z M107.133,138.037l-8.694-5.225v-12.853l8.694,5.224V138.037z M107.133,157.165l-8.694-5.223v-12.851l8.694,5.222 - V157.165z M106.793,175.699l-8.692-5.223v-12.851l8.692,5.222V175.699z M110.139,126.987l8.695,5.225v12.855l-8.695-5.224V126.987z" - /> -<path id="Fill-236" class="st8" d="M134.061,142.65l6.666,4.018l-0.016,8.242c0,0-0.404-4.83-3.24-8.53 - C134.872,142.99,134.061,142.65,134.061,142.65"/> -<path id="Fill-238" class="st8" d="M99.641,121.902l6.666,4.018l-0.016,8.24c0,0-0.406-4.83-3.242-8.529 - C100.45,122.24,99.641,121.902,99.641,121.902"/> -<path id="Fill-240" class="st8" d="M134.029,161.638l6.668,4.018l-0.018,8.248c0,0-0.402-4.832-3.238-8.532 - C134.841,161.978,134.029,161.638,134.029,161.638"/> -<path id="Fill-242" class="st8" d="M122.428,135.636l6.666,4.02l-0.016,8.24c0,0-0.404-4.828-3.238-8.528 - C123.239,135.976,122.428,135.636,122.428,135.636"/> -<path id="Fill-244" class="st8" d="M122.398,154.626l6.666,4.018l-0.016,8.248c0,0-0.406-4.834-3.238-8.532 - C123.209,154.966,122.398,154.626,122.398,154.626"/> -<path id="Fill-246" class="st8" d="M111.457,129.023l6.67,4.021l-0.018,8.241c0,0-0.408-4.83-3.242-8.53 - C112.266,129.363,111.457,129.023,111.457,129.023"/> -<path id="Fill-248" class="st8" d="M111.426,148.011l6.67,4.021l-0.016,8.247c0,0-0.408-4.834-3.242-8.534 - C112.237,148.351,111.426,148.011,111.426,148.011"/> -<path id="Fill-250" class="st8" d="M99.611,140.89l6.664,4.018l-0.016,8.248c0,0-0.406-4.834-3.24-8.536 - C100.42,141.228,99.611,140.89,99.611,140.89"/> -<path id="Fill-252" class="st8" d="M134,180.581l6.668,4.02l-0.016,8.244c0,0-0.406-4.832-3.24-8.532 - C134.811,180.923,134,180.581,134,180.581"/> -<path id="Fill-254" class="st8" d="M99.371,159.706l6.666,4.02l-0.018,8.244c0,0-0.406-4.832-3.236-8.532 - C100.18,160.048,99.371,159.706,99.371,159.706"/> -<path id="Fill-256" class="st7" d="M49.332,103.371l-8.689-5.222V85.296l8.689,5.221V103.371z M49.332,122.501l-8.689-5.222v-12.851 - l8.689,5.221V122.501z M49.332,141.237l-8.689-5.22v-12.853l8.689,5.222V141.237z M37.691,96.376L29,91.154V78.3l8.691,5.223V96.376 - z M37.691,115.507L29,110.283V97.432l8.691,5.223V115.507z M18.016,103.683V90.831l8.695,5.225v12.852L18.016,103.683z - M15.01,82.747l-8.694-5.224V64.67l8.694,5.223V82.747z M15.01,101.877l-8.694-5.224V83.802l8.694,5.223V101.877z M14.67,120.41 - l-8.692-5.223v-12.852l8.692,5.223V120.41z M18.016,71.699l8.695,5.225v12.854l-8.695-5.224V71.699z"/> -<path id="Fill-258" class="st8" d="M41.937,87.361l6.666,4.019l-0.016,8.242c0,0-0.404-4.831-3.24-8.531 - C42.748,87.701,41.937,87.361,41.937,87.361"/> -<path id="Fill-260" class="st8" d="M7.517,66.613l6.666,4.018l-0.016,8.241c0,0-0.406-4.83-3.242-8.53 - C8.326,66.951,7.517,66.613,7.517,66.613"/> -<path id="Fill-262" class="st8" d="M41.906,106.349l6.668,4.019l-0.018,8.247c0,0-0.402-4.832-3.238-8.532 - C42.718,106.689,41.906,106.349,41.906,106.349"/> -<path id="Fill-264" class="st8" d="M30.305,80.348l6.666,4.019l-0.016,8.241c0,0-0.404-4.829-3.238-8.528 - C31.116,80.688,30.305,80.348,30.305,80.348"/> -<path id="Fill-266" class="st8" d="M30.275,99.337l6.666,4.019l-0.016,8.247c0,0-0.406-4.833-3.238-8.532 - C31.086,99.677,30.275,99.337,30.275,99.337"/> -<path id="Fill-268" class="st8" d="M19.334,73.735l6.67,4.021l-0.018,8.241c0,0-0.408-4.831-3.242-8.531 - C20.143,74.075,19.334,73.735,19.334,73.735"/> -<path id="Fill-270" class="st8" d="M19.303,92.723l6.67,4.021l-0.016,8.246c0,0-0.408-4.833-3.242-8.534 - C20.114,93.063,19.303,92.723,19.303,92.723"/> -<path id="Fill-272" class="st8" d="M7.488,85.601l6.664,4.019l-0.016,8.247c0,0-0.406-4.833-3.24-8.535 - C8.297,85.94,7.488,85.601,7.488,85.601"/> -<path id="Fill-274" class="st8" d="M41.877,125.292l6.668,4.02l-0.016,8.245c0,0-0.406-4.832-3.24-8.532 - C42.688,125.635,41.877,125.292,41.877,125.292"/> -<path id="Fill-276" class="st8" d="M7.248,104.418l6.666,4.019l-0.018,8.244c0,0-0.406-4.832-3.236-8.531 - C8.057,104.759,7.248,104.418,7.248,104.418"/> -<polygon id="Fill-278" class="st7" points="153.484,202.308 144.795,197.087 144.795,184.236 153.484,189.456 "/> -<polygon id="Fill-280" class="st7" points="153.484,183.572 144.795,178.351 144.795,165.5 153.484,170.72 "/> -<polygon id="Fill-282" class="st7" points="153.484,164.443 144.795,159.22 144.795,146.367 153.484,151.589 "/> -<path id="Fill-284" class="st8" d="M146.09,148.431l6.666,4.02l-0.016,8.242c0,0-0.404-4.832-3.24-8.532 - C146.901,148.771,146.09,148.431,146.09,148.431"/> -<path id="Fill-286" class="st8" d="M146.059,167.419l6.668,4.02l-0.018,8.246c0,0-0.402-4.832-3.238-8.532 - C146.87,167.759,146.059,167.419,146.059,167.419"/> -<path id="Fill-288" class="st8" d="M146.029,186.363l6.668,4.02l-0.016,8.246c0,0-0.406-4.832-3.24-8.532 - C146.84,186.707,146.029,186.363,146.029,186.363"/> -<polyline id="Fill-290" class="st7" points="109.871,163.492 118.562,168.716 118.562,181.568 109.871,176.346 "/> -<polygon id="Fill-292" class="st7" points="130.203,188.564 121.514,183.342 121.514,170.489 130.203,175.71 "/> -<path id="Fill-294" class="st8" d="M129.459,184.814c0,0-0.404-4.831-3.24-8.53c-2.6-3.391-3.41-3.731-3.41-3.731l6.666,4.019 - L129.459,184.814"/> -<path id="Fill-296" class="st8" d="M111.176,165.54l6.666,4.019l-0.016,8.241c0,0-0.404-4.829-3.238-8.528 - C111.987,165.88,111.176,165.54,111.176,165.54"/> -<polyline id="Fill-298" class="st7" points="17.664,108.804 26.357,114.029 26.357,126.88 17.664,121.659 "/> -<polygon id="Fill-300" class="st7" points="37.998,133.876 29.307,128.653 29.307,115.8 37.998,121.022 "/> -<path id="Fill-302" class="st8" d="M37.254,130.126c0,0-0.406-4.832-3.24-8.531c-2.602-3.391-3.412-3.731-3.412-3.731l6.668,4.02 - L37.254,130.126"/> -<path id="Fill-304" class="st8" d="M18.969,110.853l6.668,4.018l-0.016,8.242c0,0-0.406-4.83-3.238-8.528 - C19.781,111.193,18.969,110.853,18.969,110.853"/> -<path id="Fill-306" class="st7" d="M50.709,82.384l-8.691-5.221V64.312l8.691,5.22V82.384z M39.068,75.39l-8.693-5.223V57.316 - l8.693,5.222V75.39z M19.391,63.566V50.714l8.695,5.225v12.853L19.391,63.566z M16.385,61.761l-8.694-5.225V43.685l8.694,5.224 - V61.761z"/> -<path id="Fill-308" class="st8" d="M43.281,66.232l6.668,4.02l-0.016,8.246c0,0-0.404-4.832-3.24-8.532 - C44.093,66.572,43.281,66.232,43.281,66.232"/> -<path id="Fill-310" class="st8" d="M31.65,59.22l6.666,4.02L38.3,71.486c0,0-0.404-4.832-3.238-8.532 - C32.461,59.56,31.65,59.22,31.65,59.22"/> -<path id="Fill-312" class="st8" d="M20.678,52.607l6.67,4.02l-0.016,8.246c0,0-0.408-4.832-3.242-8.534 - C21.489,52.947,20.678,52.607,20.678,52.607"/> -<path id="Fill-314" class="st8" d="M8.863,45.484l6.666,4.02l-0.016,8.246c0,0-0.406-4.832-3.242-8.534 - C9.672,45.824,8.863,45.484,8.863,45.484"/> -<path id="Fill-316" class="st7" d="M96.965,110.394l-8.689-5.222V92.321l8.689,5.221V110.394z M85.324,103.4l-8.691-5.224V85.325 - l8.691,5.223V103.4z M65.649,91.576V78.724l8.695,5.225v12.852L65.649,91.576z M62.643,89.77l-8.694-5.224V71.695l8.694,5.223V89.77 - z"/> -<path id="Fill-318" class="st8" d="M89.539,94.242l6.668,4.019l-0.018,8.247c0,0-0.402-4.832-3.238-8.532 - C90.351,94.581,89.539,94.242,89.539,94.242"/> -<path id="Fill-320" class="st8" d="M77.908,87.23l6.666,4.019l-0.016,8.247c0,0-0.406-4.833-3.238-8.532 - C78.719,87.57,77.908,87.23,77.908,87.23"/> -<path id="Fill-322" class="st8" d="M66.936,80.616l6.67,4.021l-0.016,8.246c0,0-0.408-4.833-3.242-8.534 - C67.746,80.956,66.936,80.616,66.936,80.616"/> -<path id="Fill-324" class="st8" d="M55.121,73.494l6.664,4.019l-0.016,8.247c0,0-0.406-4.833-3.24-8.535 - C55.93,73.832,55.121,73.494,55.121,73.494"/> -<path id="Fill-326" class="st7" d="M142.375,137.554l-8.691-5.223V119.48l8.691,5.222V137.554z M130.734,130.56l-8.693-5.225 - v-12.851l8.693,5.224V130.56z M111.057,118.736v-12.852l8.695,5.225v12.851L111.057,118.736z M108.051,116.929l-8.694-5.223V98.855 - l8.694,5.222V116.929z"/> -<path id="Fill-328" class="st8" d="M134.947,121.402l6.668,4.018l-0.016,8.248c0,0-0.404-4.832-3.24-8.532 - C135.759,121.742,134.947,121.402,134.947,121.402"/> -<path id="Fill-330" class="st8" d="M123.316,114.39l6.666,4.018l-0.016,8.248c0,0-0.404-4.834-3.238-8.532 - C124.127,114.73,123.316,114.39,123.316,114.39"/> -<path id="Fill-332" class="st8" d="M112.344,107.775l6.67,4.021l-0.016,8.247c0,0-0.408-4.834-3.242-8.534 - C113.155,108.115,112.344,107.775,112.344,107.775"/> -<path id="Fill-334" class="st8" d="M100.529,100.654l6.666,4.018l-0.016,8.248c0,0-0.406-4.834-3.242-8.536 - C101.338,100.992,100.529,100.654,100.529,100.654"/> -<polygon id="Fill-336" class="st7" points="153.883,144.089 145.19,138.866 145.19,126.015 153.883,131.237 "/> -<path id="Fill-338" class="st8" d="M146.361,127.814l6.666,4.018l-0.016,8.248c0,0-0.406-4.834-3.242-8.536 - C147.17,128.152,146.361,127.814,146.361,127.814"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 208.73 215.073"><style><![CDATA[.J{fill:#fefefe}.K{fill:#d6dee6}]]></style><path d="M1.84 26.193c1.46-.63 2.88-.194 3.977.486L54.657.755C53.422-.028 52.612-.1 51.075.097L1.84 26.193z" fill="#216391"/><path d="M208.73 184.806l-48.84 25.926c.018 1.83-.628 3.252-1.842 4.008l48.84-25.924c1.45-.715 1.843-2.623 1.843-4z" fill="#18547d"/><path d="M54.656.755l148.192 89.043L154 115.722 5.816 26.68z" fill="#276e9f"/><g fill="#19557d"><path d="M159.83 126.236l48.84-25.925.06 84.495-48.84 25.926z"/><path d="M202.85 89.798L154 115.722c3.223 2.066 5.82 6.83 5.82 10.514l48.84-25.924c0-3.902-2.572-8.463-5.82-10.514z"/></g><defs><filter id="A" filterUnits="userSpaceOnUse" x="0" y="25.859" width="159.889" height="189.214"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="0" y="25.859" width="159.889" height="189.214" id="B"><g filter="url(#A)"><path d="M0 25.86h159.89v189.214H0z" fill="#fff"/></g></mask><path d="M154 115.722c3.197 1.922 5.816 6.65 5.82 10.514l.06 84.496c.004 3.86-2.613 5.445-5.81 3.524L5.887 125.213C2.682 123.288.06 118.558.06 114.696L0 30.2c-.004-3.864 2.614-5.447 5.817-3.522L154 115.722z" mask="url(#B)" fill="#1f608c"/><path d="M95.582 129.974l-8.69-5.223v-12.853l8.69 5.222v12.854zm0 19.13l-8.69-5.22v-12.85l8.69 5.22v12.852zm0 18.736l-8.69-5.22v-12.852l8.69 5.22v12.85zm-11.64-44.86l-8.693-5.22v-12.855l8.693 5.224v12.852zm0 19.13l-8.693-5.223v-12.85l8.693 5.222v12.852zm-19.677-11.824v-12.852l8.695 5.225v12.853l-8.695-5.226zm-3.006-20.936l-8.694-5.223V91.273l8.694 5.222v12.854zm0 19.13l-8.694-5.225v-12.85l8.694 5.224v12.852zm-.34 18.533l-8.69-5.223v-12.853l8.69 5.223v12.853zm3.346-48.71l8.695 5.225v12.853l-8.695-5.224V98.302zm1.125 58.62V137.6l7.283 4.377v19.32l-7.283-4.375zm9.263 5.567v-19.323l7.07 4.248v19.323l-7.07-4.248z" class="J"/><path d="M88.186 113.962l6.668 4.02-.016 8.242s-.406-4.832-3.24-8.532c-2.602-3.4-3.412-3.73-3.412-3.73m-34.42-20.748l6.666 4.018-.016 8.242s-.406-4.83-3.242-8.53c-2.598-3.392-3.408-3.73-3.408-3.73m34.39 39.736l6.668 4.02-.016 8.246s-.404-4.832-3.24-8.532c-2.6-3.395-3.412-3.734-3.412-3.734m-11.6-26l6.668 4.018-.016 8.242s-.406-4.83-3.238-8.528c-2.602-3.393-3.414-3.732-3.414-3.732m-.03 19l6.666 4.02-.016 8.246s-.404-4.832-3.238-8.532c-2.6-3.394-3.412-3.734-3.412-3.734m-10.94-25.603l6.67 4.02-.016 8.242s-.4-4.832-3.244-8.532c-2.6-3.4-3.4-3.73-3.4-3.73m-.042 18.99l6.67 4.02-.016 8.246s-.408-4.832-3.242-8.534c-2.6-3.393-3.412-3.732-3.412-3.732m-11.814-7.123l6.666 4.02-.016 8.246s-.406-4.832-3.242-8.534c-2.6-3.393-3.408-3.732-3.408-3.732m34.39 39.69l6.668 4.02-.016 8.246s-.404-4.832-3.24-8.532c-2.6-3.4-3.412-3.734-3.412-3.734m-34.63-20.874l6.666 4.018-.016 8.244s-.408-4.832-3.238-8.53c-2.6-3.392-3.412-3.732-3.412-3.732" class="K"/><path d="M141.455 158.66l-8.69-5.22v-12.854l8.69 5.22v12.855zm0 19.13l-8.69-5.223v-12.85l8.69 5.222V177.8zm0 18.737l-8.69-5.22v-12.853l8.69 5.223v12.85zm-11.64-44.862l-8.69-5.223V133.59l8.69 5.222v12.854zm0 19.13l-8.69-5.225v-12.85l8.69 5.224v12.852zM110.14 158.97v-12.85l8.695 5.225v12.85l-8.695-5.225zm-3.006-20.934l-8.694-5.225V119.96l8.694 5.224v12.854zm0 19.128l-8.694-5.223v-12.85l8.694 5.222v12.852zm-.34 18.534l-8.692-5.223v-12.85l8.692 5.222V175.7zm3.346-48.712l8.695 5.225v12.855l-8.695-5.224v-12.856z" class="J"/><path d="M134.06 142.65l6.666 4.018-.016 8.242s-.404-4.83-3.24-8.53c-2.6-3.4-3.4-3.73-3.4-3.73m-34.43-20.748l6.666 4.018-.016 8.24s-.406-4.83-3.242-8.53c-2.6-3.4-3.408-3.73-3.408-3.73m34.4 39.738l6.668 4.018-.018 8.248s-.402-4.832-3.238-8.532c-2.6-3.394-3.412-3.734-3.412-3.734m-11.602-26.002l6.666 4.02-.016 8.24s-.404-4.828-3.238-8.528c-2.6-3.392-3.412-3.732-3.412-3.732m-.03 19l6.666 4.018-.016 8.248s-.406-4.834-3.238-8.532c-2.6-3.394-3.412-3.734-3.412-3.734m-10.94-25.603l6.67 4.02-.018 8.24s-.408-4.83-3.242-8.53c-2.6-3.392-3.4-3.732-3.4-3.732m-.04 18.99l6.67 4.02-.016 8.247s-.408-4.834-3.242-8.534c-2.6-3.394-3.412-3.734-3.412-3.734M99.6 140.9l6.664 4.018-.016 8.248s-.406-4.834-3.24-8.536c-2.6-3.392-3.408-3.73-3.408-3.73m34.4 39.68l6.668 4.02-.016 8.244s-.406-4.832-3.24-8.532c-2.6-3.4-3.412-3.732-3.412-3.732m-34.63-20.874l6.666 4.02-.018 8.244s-.406-4.832-3.236-8.532c-2.603-3.4-3.412-3.732-3.412-3.732" class="K"/><path d="M49.332 103.37l-8.69-5.222V85.296l8.69 5.22v12.854zm0 19.13l-8.69-5.222v-12.85l8.69 5.22V122.5zm0 18.736l-8.69-5.22v-12.853l8.69 5.222v12.85zm-11.64-44.86L29 91.154V78.3l8.69 5.223v12.853zm0 19.13L29 110.283v-12.85l8.69 5.223v12.852zm-19.675-11.824V90.83l8.695 5.225v12.852l-8.695-5.225zM15 82.747l-8.694-5.224V64.67L15 69.893v12.854zm0 19.13l-8.694-5.224v-12.85L15 89.025v12.852zm-.34 18.533l-8.692-5.223v-12.852l8.692 5.223V120.4zm3.346-48.71l8.695 5.225v12.854l-8.695-5.224V71.7z" class="J"/><path d="M41.937 87.36l6.666 4.02-.016 8.242s-.404-4.83-3.24-8.53c-2.6-3.4-3.4-3.73-3.4-3.73m-34.43-20.75l6.666 4.018-.016 8.24s-.406-4.83-3.242-8.53c-2.6-3.4-3.408-3.73-3.408-3.73m34.39 39.74l6.668 4.02-.018 8.247s-.402-4.832-3.238-8.532c-2.6-3.394-3.412-3.734-3.412-3.734m-11.6-26.003l6.666 4.02-.016 8.24s-.404-4.83-3.238-8.528c-2.6-3.392-3.412-3.732-3.412-3.732m-.03 18.99l6.666 4.02-.016 8.247s-.406-4.833-3.238-8.532c-2.6-3.394-3.412-3.734-3.412-3.734m-10.94-25.603l6.67 4.02-.018 8.24s-.408-4.83-3.242-8.53c-2.6-3.4-3.4-3.73-3.4-3.73m-.04 18.988l6.67 4.02-.016 8.246s-.408-4.833-3.242-8.534c-2.6-3.393-3.412-3.733-3.412-3.733M7.488 85.6l6.664 4.02-.016 8.247s-.406-4.833-3.24-8.535c-2.6-3.392-3.408-3.73-3.408-3.73m34.39 39.7l6.668 4.02-.016 8.245s-.406-4.832-3.24-8.532c-2.6-3.4-3.412-3.733-3.412-3.733m-34.63-20.874l6.666 4.02-.018 8.244s-.406-4.832-3.236-8.53c-2.603-3.4-3.412-3.732-3.412-3.732" class="K"/><path d="M153.484 202.308l-8.7-5.22v-12.85l8.7 5.22zm0-18.736l-8.7-5.22V165.5l8.7 5.22zm0-19.13l-8.7-5.223v-12.853l8.7 5.222z" class="J"/><path d="M146.1 148.43l6.666 4.02-.016 8.242s-.404-4.832-3.24-8.532c-2.6-3.4-3.4-3.73-3.4-3.73m-.05 19l6.668 4.02-.018 8.246s-.402-4.832-3.238-8.532c-2.6-3.394-3.412-3.734-3.412-3.734m-.03 18.943l6.668 4.02-.016 8.246s-.406-4.832-3.24-8.532c-2.6-3.4-3.412-3.734-3.412-3.734" class="K"/><path d="M109.87 163.492l8.7 5.224v12.852l-8.7-5.222m20.333 12.218l-8.7-5.222V170.5l8.7 5.22z" class="J"/><path d="M129.46 184.814s-.404-4.83-3.24-8.53c-2.6-3.4-3.4-3.73-3.4-3.73l6.666 4.02-.016 8.242m-18.294-19.276l6.666 4.02-.016 8.24s-.404-4.83-3.238-8.528c-2.6-3.392-3.412-3.732-3.412-3.732" class="K"/><path d="M17.664 108.804l8.693 5.225v12.85l-8.693-5.22m20.334 12.217l-8.7-5.223V115.8l8.7 5.222z" class="J"/><path d="M37.254 130.126s-.406-4.832-3.24-8.53c-2.602-3.4-3.412-3.73-3.412-3.73l6.668 4.02-.016 8.242M18.97 110.853l6.668 4.018-.016 8.242s-.406-4.83-3.238-8.528c-2.602-3.392-3.414-3.732-3.414-3.732" class="K"/><path d="M50.71 82.384l-8.69-5.22v-12.85l8.69 5.22v12.852zM39.068 75.4l-8.693-5.223v-12.85l8.693 5.222V75.4zM19.39 63.566V50.714l8.695 5.225v12.853l-8.695-5.226zm-3.006-1.805L7.69 56.536v-12.85l8.694 5.224V61.76z" class="J"/><path d="M43.28 66.232l6.668 4.02-.016 8.246s-.404-4.832-3.24-8.532c-2.6-3.394-3.412-3.734-3.412-3.734M31.65 59.22l6.666 4.02-.016 8.246s-.404-4.832-3.238-8.532c-2.6-3.394-3.412-3.734-3.412-3.734m-10.972-6.613l6.67 4.02-.016 8.246s-.408-4.832-3.242-8.534c-2.6-3.392-3.412-3.732-3.412-3.732M8.863 45.484l6.666 4.02-.016 8.246s-.406-4.832-3.242-8.534c-2.6-3.392-3.408-3.732-3.408-3.732" class="K"/><path d="M96.965 110.394l-8.69-5.222V92.32l8.69 5.22v12.852zm-11.64-6.994l-8.69-5.224v-12.85l8.69 5.223V103.4zM65.65 91.576V78.724l8.695 5.225V96.8l-8.695-5.225zm-3.006-1.806l-8.694-5.224v-12.85l8.694 5.223V89.77z" class="J"/><path d="M89.54 94.242l6.668 4.02-.018 8.247s-.402-4.832-3.238-8.532c-2.6-3.395-3.412-3.734-3.412-3.734M77.908 87.23l6.666 4.02-.016 8.247s-.406-4.833-3.238-8.532c-2.6-3.394-3.412-3.734-3.412-3.734m-10.972-6.615l6.67 4.02-.016 8.246s-.408-4.833-3.242-8.534c-2.602-3.393-3.412-3.733-3.412-3.733m-11.816-7.12l6.664 4.02-.016 8.247s-.406-4.833-3.24-8.535c-2.6-3.393-3.408-3.73-3.408-3.73" class="K"/><path d="M142.375 137.554l-8.69-5.223v-12.85l8.69 5.222v12.852zm-11.64-6.994l-8.693-5.225v-12.85l8.693 5.224v12.852zm-19.677-11.824v-12.852l8.695 5.225v12.85l-8.695-5.224zm-3.006-1.807l-8.694-5.223v-12.85l8.694 5.222v12.852z" class="J"/><path d="M134.947 121.402l6.668 4.018-.016 8.248s-.404-4.832-3.24-8.532c-2.6-3.394-3.412-3.734-3.412-3.734m-11.63-7.002l6.666 4.018-.016 8.248s-.404-4.834-3.238-8.532c-2.6-3.394-3.412-3.734-3.412-3.734m-10.972-6.625l6.67 4.02-.016 8.247s-.408-4.834-3.242-8.534c-2.6-3.394-3.412-3.734-3.412-3.734m-11.814-7.12l6.666 4.018-.016 8.248s-.406-4.834-3.242-8.536c-2.6-3.392-3.408-3.73-3.408-3.73" class="K"/><path d="M153.883 144.09l-8.693-5.223v-12.85l8.693 5.222z" class="J"/><path d="M146.36 127.814l6.666 4.018-.016 8.248s-.406-4.834-3.242-8.536c-2.6-3.392-3.408-3.73-3.408-3.73" class="K"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/buildings/Medium_Business_Building.svg b/src/main/webapp/img/lib/allied_telesis/buildings/Medium_Business_Building.svg index cbcc10cc1852b89bcf27f9681553bae0e4f66fea..b39ee82d7a67e18f29cf64919e857edca8fd2f82 100644 --- a/src/main/webapp/img/lib/allied_telesis/buildings/Medium_Business_Building.svg +++ b/src/main/webapp/img/lib/allied_telesis/buildings/Medium_Business_Building.svg @@ -1,94 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" - id="Layer_1" inkscape:version="0.92.3 (2405546, 2018-03-11)" sodipodi:docname="Medium_Business_Building4.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 90.411 116.551" - style="enable-background:new 0 0 90.411 116.551;" xml:space="preserve"> -<style type="text/css"> - .st0{filter:url(#Adobe_OpacityMaskFilter);} - .st1{fill:#FFFFFF;} - .st2{mask:url(#mask-2_2_);fill:#447CA8;} - .st3{filter:url(#Adobe_OpacityMaskFilter_1_);} - .st4{mask:url(#mask-6_2_);fill:#1C5A84;} - .st5{fill:#276E9F;} - .st6{fill:#19557D;} - .st7{filter:url(#Adobe_OpacityMaskFilter_2_);} - .st8{mask:url(#mask-8_2_);fill:#4D7EA6;} - .st9{fill:#1F608C;} - .st10{fill:#FEFEFE;} - .st11{fill:#D6DEE6;} -</style> -<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview143" inkscape:current-layer="Layer_1" inkscape:cx="127.82604" inkscape:cy="74.291954" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-height="1017" inkscape:window-maximized="1" inkscape:window-width="1920" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="8.0683761" objecttolerance="10" pagecolor="#ffffff" showgrid="false"> - </sodipodi:namedview> -<title id="title4">icon-med-business</title> -<desc id="desc6">Created with Sketch.</desc> -<defs> - <filter id="Adobe_OpacityMaskFilter" filterUnits="userSpaceOnUse" x="0.559" y="0" width="41.986" height="21.893"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> -</defs> -<mask maskUnits="userSpaceOnUse" x="0.559" y="0" width="41.986" height="21.893" id="mask-2_2_"> - <g id="g14_1_" class="st0"> - <path id="path-1_2_" class="st1" d="M41.334,0.1C27.743,7.314,14.151,14.53,0.558,21.744c0.317-0.168,0.743-0.131,1.211,0.15 - L42.546,0.25C42.262,0.08,41.994,0,41.756,0C41.601,0,41.459,0.034,41.334,0.1"/> - </g> -</mask> -<path id="Fill-1" class="st2" d="M41.855,0.003l-0.004,0.002C41.659-0.013,41.484,0.02,41.334,0.1L0.559,21.743 - c0.151-0.08,0.327-0.113,0.521-0.096c0.21,0.019,0.444,0.1,0.689,0.246L42.545,0.251C42.301,0.103,42.067,0.023,41.855,0.003z"/> -<defs> - <filter id="Adobe_OpacityMaskFilter_1_" filterUnits="userSpaceOnUse" x="47.731" y="90.39" width="42.679" height="25.822"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> -</defs> -<mask maskUnits="userSpaceOnUse" x="47.731" y="90.39" width="42.679" height="25.822" id="mask-6_2_"> - <g id="g34_1_" class="st3"> - <path id="path-5_2_" class="st1" d="M49.634,112.034c0.002,2.102-0.731,3.556-1.902,4.178 - c13.591-7.215,27.183-14.43,40.775-21.645c1.172-0.622,1.904-2.075,1.903-4.176"/> - </g> -</mask> -<path id="Fill-8" class="st4" d="M49.634,112.034L90.41,90.39c0.001,2.102-0.732,3.555-1.903,4.177l-40.776,21.645 - C48.903,115.59,49.635,114.137,49.634,112.034"/> -<polygon id="Fill-11" class="st5" points="1.769,21.895 47.818,49.563 88.593,27.919 42.545,0.251 "/> -<polygon id="Fill-12" class="st6" points="90.411,90.391 90.411,31.119 49.591,52.764 49.634,112.034 "/> -<defs> - <filter id="Adobe_OpacityMaskFilter_2_" filterUnits="userSpaceOnUse" x="47.818" y="27.919" width="42.549" height="24.844"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> -</defs> -<mask maskUnits="userSpaceOnUse" x="47.818" y="27.919" width="42.549" height="24.844" id="mask-8_2_"> - <g id="g46_1_" class="st7"> - <path id="path-7_2_" class="st1" d="M47.818,49.563c0.979,0.588,1.772,2.021,1.773,3.201l40.775-21.645 - c0-1.179-0.793-2.611-1.773-3.2"/> - </g> -</mask> -<path id="Fill-13" inkscape:connector-curvature="0" inkscape:label="" sodipodi:nodetypes="ccccc" class="st8" d="M88.594,27.919 - L47.818,49.563c1.119,0.772,1.682,2.001,1.773,3.199l40.775-21.645C90.367,29.763,89.587,28.708,88.594,27.919z"/> -<path id="Fill-41" class="st9" d="M47.818,49.563c0.979,0.588,1.772,2.021,1.772,3.2l0.044,59.271 - c0.003,4.013-2.669,5.66-5.967,3.678L6.019,93.091c-3.298-1.982-5.975-6.842-5.978-10.856L0,22.965 - c-0.001-1.179,0.791-1.659,1.769-1.071L47.818,49.563z"/> -<path id="Fill-43" class="st10" d="M46.138,71.74l-8.69-5.222V53.665l8.69,5.221V71.74z M46.138,90.87l-8.69-5.222V72.797 - l8.69,5.221V90.87z M46.138,109.606l-8.69-5.22V91.533l8.69,5.222V109.606z M34.497,64.745l-8.692-5.222V46.669l8.692,5.223V64.745z - M34.497,83.876l-8.692-5.224V65.801l8.692,5.223V83.876z M14.82,72.052V59.2l8.695,5.225v12.852L14.82,72.052z M11.814,51.116 - l-8.693-5.224V33.039l8.693,5.223V51.116z M11.814,70.246l-8.693-5.224V52.171l8.693,5.223V70.246z M11.475,88.779l-8.691-5.223 - V70.704l8.691,5.223V88.779z M14.82,40.068l8.695,5.225v12.854l-8.695-5.224V40.068z M15.945,98.69V79.367l7.284,4.377v19.321 - L15.945,98.69z M25.21,104.256V84.933l7.07,4.249v19.323L25.21,104.256z"/> -<path id="Fill-44" class="st11" d="M38.742,55.729l6.667,4.019l-0.015,8.242c0,0-0.406-4.831-3.24-8.531 - C39.554,56.069,38.742,55.729,38.742,55.729"/> -<path id="Fill-46" class="st11" d="M4.323,34.981l6.666,4.018l-0.016,8.241c0,0-0.406-4.83-3.242-8.53 - C5.132,35.319,4.323,34.981,4.323,34.981"/> -<path id="Fill-48" class="st11" d="M38.712,74.718l6.667,4.019l-0.016,8.247c0,0-0.404-4.832-3.239-8.532 - C39.524,75.058,38.712,74.718,38.712,74.718"/> -<path id="Fill-50" class="st11" d="M27.11,48.717l6.667,4.019l-0.016,8.241c0,0-0.405-4.829-3.238-8.528 - C27.922,49.057,27.11,48.717,27.11,48.717"/> -<path id="Fill-52" class="st11" d="M27.08,67.706l6.667,4.019l-0.016,8.247c0,0-0.405-4.833-3.238-8.532 - C27.891,68.046,27.08,67.706,27.08,67.706"/> -<path id="Fill-54" class="st11" d="M16.139,42.103l6.67,4.021l-0.016,8.241c0,0-0.409-4.831-3.243-8.531 - C16.949,42.443,16.139,42.103,16.139,42.103"/> -<path id="Fill-56" class="st11" d="M16.108,61.092l6.669,4.021l-0.016,8.246c0,0-0.408-4.833-3.241-8.534 - C16.918,61.432,16.108,61.092,16.108,61.092"/> -<path id="Fill-58" class="st11" d="M4.293,53.97l6.666,4.019l-0.016,8.247c0,0-0.406-4.833-3.241-8.535 - C5.102,54.309,4.293,53.97,4.293,53.97"/> -<path id="Fill-60" class="st11" d="M38.683,93.661l6.667,4.02l-0.016,8.245c0,0-0.404-4.832-3.24-8.532 - C39.494,94.004,38.683,93.661,38.683,93.661"/> -<path id="Fill-62" class="st11" d="M4.053,72.787l6.666,4.019l-0.016,8.244c0,0-0.407-4.832-3.237-8.531 - C4.863,73.128,4.053,72.787,4.053,72.787"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 90.411 116.551"><defs><filter id="A" filterUnits="userSpaceOnUse" x=".559" y="0" width="41.986" height="21.893"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x=".559" y="0" width="41.986" height="21.893" id="B"><g filter="url(#A)"><path d="M41.334.1L.558 21.744c.317-.168.743-.13 1.21.15L42.546.25c-.284-.17-.552-.25-.8-.25-.155 0-.297.034-.422.1" fill="#fff"/></g></mask><path d="M41.855.003l-.004.002c-.192-.018-.367.015-.517.095L.56 21.743c.15-.08.327-.113.52-.096.2.02.444.1.69.246L42.545.25c-.244-.148-.478-.228-.7-.248z" mask="url(#B)" fill="#447ca8"/><defs><filter id="C" filterUnits="userSpaceOnUse" x="47.731" y="90.39" width="42.679" height="25.822"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="47.731" y="90.39" width="42.679" height="25.822" id="D"><g filter="url(#C)"><path d="M49.634 112.034c.002 2.102-.73 3.556-1.902 4.178l40.775-21.645c1.172-.622 1.904-2.075 1.903-4.176" fill="#fff"/></g></mask><path d="M49.634 112.034L90.4 90.4c.001 2.102-.732 3.555-1.903 4.177L47.73 116.212c1.172-.622 1.904-2.075 1.903-4.178" mask="url(#D)" fill="#1c5a84"/><path d="M1.77 21.895l46.05 27.668L88.593 27.92 42.545.25z" fill="#276e9f"/><path d="M90.41 90.39V31.12L49.59 52.764l.043 59.27z" fill="#19557d"/><defs><filter id="E" filterUnits="userSpaceOnUse" x="47.818" y="27.919" width="42.549" height="24.844"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="47.818" y="27.919" width="42.549" height="24.844" id="F"><g filter="url(#E)"><path d="M47.818 49.563c.98.588 1.772 2.02 1.773 3.2L90.366 31.12c0-1.18-.793-2.61-1.773-3.2" fill="#fff"/></g></mask><path d="M88.594 27.92L47.818 49.563c1.12.772 1.682 2 1.773 3.2l40.775-21.645c.001-1.354-.78-2.41-1.772-3.198z" mask="url(#F)" fill="#4d7ea6"/><path d="M47.818 49.563c.98.588 1.772 2.02 1.772 3.2l.044 59.27c.003 4.013-2.67 5.66-5.967 3.678L6.02 93.09C2.72 91.11.044 86.25.04 82.235L0 22.965c-.001-1.18.79-1.66 1.77-1.07l46.05 27.67z" fill="#1f608c"/><path d="M46.138 71.74l-8.7-5.222V53.665l8.7 5.22V71.74zm0 19.13l-8.7-5.222v-12.85l8.7 5.22V90.87zm0 18.736l-8.7-5.22V91.533l8.7 5.222v12.85zm-11.64-44.86l-8.692-5.222V46.67l8.692 5.223v12.853zm0 19.13l-8.692-5.224V65.8l8.692 5.223v12.852zM14.82 72.052V59.2l8.695 5.225v12.852l-8.695-5.225zm-3.006-20.936L3.12 45.892V33.04l8.693 5.223v12.854zm0 19.13L3.12 65.022V52.17l8.693 5.223v12.852zm-.34 18.533l-8.69-5.223V70.704l8.69 5.223V88.78zm3.345-48.71l8.695 5.225v12.854l-8.695-5.224V40.068zM15.945 98.7V79.367l7.284 4.377v19.32L15.945 98.7zm9.265 5.566V84.933l7.07 4.25v19.323l-7.07-4.25z" fill="#fefefe"/><path d="M38.742 55.73l6.667 4.02-.015 8.25s-.406-4.83-3.24-8.53c-2.6-3.4-3.412-3.73-3.412-3.73M4.323 34.98L11 39l-.016 8.24s-.406-4.83-3.242-8.53c-2.6-3.4-3.408-3.73-3.408-3.73m34.388 39.738l6.667 4.02-.016 8.247s-.404-4.832-3.24-8.532c-2.6-3.394-3.412-3.734-3.412-3.734M27.1 48.717l6.667 4.02-.016 8.24s-.405-4.83-3.238-8.528c-2.6-3.392-3.413-3.732-3.413-3.732m-.02 18.99l6.667 4.02-.016 8.247s-.405-4.833-3.238-8.532c-2.602-3.394-3.413-3.734-3.413-3.734M16.14 42.103l6.67 4.02-.016 8.24s-.4-4.83-3.243-8.53c-2.6-3.4-3.4-3.73-3.4-3.73m-.033 18.99l6.67 4.02-.016 8.246s-.408-4.833-3.24-8.534C16.92 61.43 16.1 61.09 16.1 61.09M4.293 53.97L10.96 58l-.016 8.247s-.406-4.833-3.24-8.535c-2.6-3.392-3.4-3.73-3.4-3.73m34.4 39.688l6.667 4.02-.016 8.245s-.404-4.832-3.24-8.532c-2.6-3.4-3.4-3.733-3.4-3.733M4.053 72.787l6.666 4.02-.016 8.244s-.407-4.832-3.237-8.53c-2.603-3.4-3.413-3.732-3.413-3.732" fill="#d6dee6"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/buildings/School_Building.svg b/src/main/webapp/img/lib/allied_telesis/buildings/School_Building.svg index daea7434abb836859540beb419627324c01fc2d1..f968c5b50f50e34609ece02e4799199726962316 100644 --- a/src/main/webapp/img/lib/allied_telesis/buildings/School_Building.svg +++ b/src/main/webapp/img/lib/allied_telesis/buildings/School_Building.svg @@ -1,346 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" - id="Layer_1" inkscape:version="0.92.3 (2405546, 2018-03-11)" sodipodi:docname="School_Building7.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 274.629 277.106" - style="enable-background:new 0 0 274.629 277.106;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#FEFEFE;} - .st1{fill:#1D5176;} - .st2{fill:#276E9F;} - .st3{fill:#215880;} - .st4{fill:#1E567D;} - .st5{fill:#2B75AC;} - .st6{fill:#1C4F73;} - .st7{fill:#19557D;} - .st8{filter:url(#Adobe_OpacityMaskFilter);} - .st9{fill:#FFFFFF;} - .st10{mask:url(#mask-2_1_);fill:#1F608C;} - .st11{fill:#D6DEE6;} - .st12{fill:#143B55;} - .st13{fill:#225E89;} - .st14{fill:#CBCBCB;} - .st15{fill:#888788;} - .st16{fill:#1D5174;} - .st17{fill:#16405D;} - .st18{fill:#276B9C;} - .st19{fill:#123953;} - .st20{fill:#143B56;} - .st21{fill:#163E5A;} - .st22{fill:#24618E;} - .st23{fill:#17405C;} - .st24{fill:#1B4D70;} - .st25{fill:#194B6D;} - .st26{fill:#194A6B;} - .st27{fill:#194766;} - .st28{fill:#215B84;} - .st29{fill:#225C86;} - .st30{fill:#23608B;} - .st31{fill:#23618E;} - .st32{fill:#236390;} - .st33{fill:#256593;} - .st34{fill:#256796;} - .st35{fill:#266A9A;} - .st36{fill:#286C9D;} - .st37{fill:#286E9F;} - .st38{fill:#437FAB;} - .st39{fill:#4D87AF;} - .st40{fill:#548CB5;} - .st41{fill:#5C91B7;} - .st42{fill:#6195B8;} - .st43{fill:#1F547A;} - .st44{fill:#266997;} - .st45{fill:none;stroke:#1F608C;stroke-width:2;} - .st46{filter:url(#Adobe_OpacityMaskFilter_1_);} - .st47{mask:url(#mask-4_1_);fill:#256695;} -</style> -<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview426" inkscape:current-layer="Layer_1" inkscape:cx="143.20779" inkscape:cy="147.00504" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-height="1017" inkscape:window-maximized="1" inkscape:window-width="1920" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="2.8284271" objecttolerance="10" pagecolor="#ffffff" showgrid="false"> - </sodipodi:namedview> -<title id="title4">icon-school</title> -<desc id="desc6">Created with Sketch.</desc> -<path id="Fill-1" class="st0" d="M133.623,208.211l-13.33-0.025L133.623,208.211z"/> -<g id="g25"> - <path id="path9" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" class="st1" d="M82.617,58.975L0.76,102.418 - c0.388-0.212,0.919-0.074,1.178,0.032l81.857-43.444C83.399,58.849,82.896,58.83,82.617,58.975z"/> -</g> -<polygon id="Fill-26" class="st2" points="1.937,102.45 83.795,59.007 149.154,98.304 67.297,141.748 "/> -<g id="g34"> - <path id="path28" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" class="st3" d="M149.752,88.693l-81.857,43.443 - c0.376-0.19,0.849-0.023,1.102,0.143l81.857-43.443C150.541,88.547,150.038,88.561,149.752,88.693z"/> -</g> -<polygon id="Fill-60" class="st2" points="119.373,162.662 68.996,132.278 150.853,88.835 201.23,119.217 "/> -<polygon id="polygon37" class="st4" points="202.883,129.743 202.888,122.22 121.031,165.663 121.025,173.187 192.383,135.315 - 121.025,173.187 121.019,174.149 202.877,130.706 202.882,129.743 "/> -<g id="g51"> - <path id="path39" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" class="st5" d="M201.23,119.219l-81.857,43.443 - c0.965,0.584,1.66,2.04,1.66,3.002l81.857-43.443C202.891,120.987,202.299,119.883,201.23,119.219L201.23,119.219z"/> -</g> -<g id="g61"> - <path id="path53" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" class="st6" d="M274.58,228.746l-81.857,43.445 - c0,1.935-0.688,3.812-2.078,4.541l81.857-43.445C274.036,232.466,274.58,230.524,274.58,228.746z"/> -</g> -<polygon id="Fill-156" class="st7" points="274.581,228.747 192.723,272.191 192.771,220.702 274.629,177.258 "/> -<path id="Fill-158" inkscape:connector-curvature="0" class="st2" d="M121.02,174.149l81.857-43.443 - c1.713,1.036,67.43,40.547,68.539,41.214l0.124,0.076l-81.858,43.443c-0.041-0.025-0.082-0.051-0.123-0.075 - C188.45,214.697,122.733,175.185,121.02,174.149"/> -<g id="g79"> - <path id="path65" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccc" class="st5" d="M271.539,171.998l-81.857,43.443 - c2.12,1.322,3.02,3.578,3.09,5.248v0.012l81.857-43.443v-0.012C274.629,175.254,273.255,173.072,271.539,171.998z"/> -</g> -<defs> - <filter id="Adobe_OpacityMaskFilter" filterUnits="userSpaceOnUse" x="0" y="102.299" width="192.771" height="174.807"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> -</defs> -<mask maskUnits="userSpaceOnUse" x="0" y="102.299" width="192.771" height="174.807" id="mask-2_1_"> - <g id="g87_2_" class="st8"> - <polygon id="path-1_1_" class="st9" points="0,102.299 192.771,102.299 192.771,277.106 0,277.106 "/> - </g> -</mask> -<path id="Fill-232" class="st10" d="M68.996,132.278l50.377,30.384c0.912,0.548,1.658,1.894,1.658,3.001l-0.006,7.524l-0.006,0.962 - c1.713,1.036,67.43,40.548,68.54,41.215c3.205,1.933,3.212,5.315,3.212,5.338l-0.048,51.489c-0.004,4.393-2.952,6.171-6.6,3.972 - L6.58,168.117c-3.635-2.192-6.59-7.529-6.58-11.92l0.043-51.894c0.004-2.722,1.801-1.896,1.894-1.853l65.36,39.298l0.045-8.29 - C67.34,132.173,68.078,131.726,68.996,132.278"/> -<path id="Fill-235" class="st11" d="M182.621,163.937h0.174C182.676,163.928,182.621,163.937,182.621,163.937"/> -<polygon id="Fill-237" class="st7" points="133.646,133.995 172.626,113.308 172.633,123.899 133.652,144.588 "/> -<polygon id="Fill-239" class="st2" points="100.701,114.202 139.681,93.515 172.625,113.307 133.646,133.995 "/> -<polygon id="Fill-241" class="st12" points="133.646,133.995 133.652,144.588 100.709,124.795 100.701,114.202 "/> -<polygon id="Fill-243" class="st4" points="134.795,91.689 158.184,79.277 158.209,115.264 134.822,127.676 "/> -<polygon id="Fill-247" class="st12" points="134.809,90.956 134.822,127.676 114.088,115.22 114.077,78.5 "/> -<path id="Fill-375" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" class="st12" d="M136.07,89.838 - c0,0.857,0,1.713,0,2.57l-24.326-14.623v-2.57L136.07,89.838z"/> -<path id="path1061" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" class="st13" d="M111.744,75.215l23.389-12.412 - l24.327,14.623l-23.39,12.412L111.744,75.215z"/> -<polygon id="Fill-377" class="st4" points="134.254,45.303 157.643,32.89 157.674,76.282 134.285,88.696 "/> -<polygon id="Fill-381" class="st12" points="134.254,45.303 134.314,90.038 113.588,77.585 113.527,32.851 "/> -<path id="Fill-516" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccccccccccccccccc" class="st14" d=" - M117.76,44.105c0.567-0.326,1.252-0.373,1.844-0.424c0.682-0.009,1.31,0.2,1.934,0.401c0.649,0.237,1.271,0.629,1.832,0.979 - c0.706,0.471,1.371,1.11,1.943,1.643c0.731,0.736,1.394,1.647,1.959,2.418c0.548,0.788,1.012,1.667,1.424,2.5 - c0.396,0.811,0.716,1.742,0.979,2.512c0.037,0.126,0.076,0.253,0.111,0.381v0.002c0.08,0.27,0.137,0.541,0.201,0.795 - c0.13,0.536,0.196,1.073,0.268,1.584c0.083,0.632,0.072,1.293,0.063,1.879c-0.015,0.513-0.118,1.009-0.203,1.479 - c-0.125,0.649-0.435,1.23-0.721,1.773c-0.377,0.588-0.855,1.037-1.414,1.334l0.389-0.207c1.148-0.692,1.613-1.573,2.031-2.711 - c0.339-1.106,0.341-2.242,0.283-3.373c-0.066-0.944-0.278-1.864-0.506-2.76v-0.002c-0.314-1.164-0.791-2.263-1.305-3.332 - c-0.633-1.224-1.318-2.214-2.027-3.178c-0.771-1.025-1.85-1.968-2.768-2.717c-0.659-0.514-1.399-0.874-2.148-1.204 - c-0.733-0.311-1.538-0.377-2.318-0.393C118.933,43.517,118.272,43.862,117.76,44.105L117.76,44.105z"/> -<path id="Fill-636" inkscape:connector-curvature="0" class="st15" d="M122.863,44.739c4.121,2.477,7.463,8.508,7.467,13.478 - c0.004,4.968-3.334,6.988-7.455,4.512s-7.465-8.51-7.469-13.478C115.404,44.282,118.74,42.262,122.863,44.739"/> -<polygon id="Fill-638" class="st16" points="122.76,56.244 123.149,56.037 123.377,56.101 122.987,56.307 "/> -<polygon id="Fill-640" class="st17" points="122.986,56.307 123.377,56.101 123.259,56.356 122.871,56.563 "/> -<polygon id="Fill-642" class="st18" points="122.871,56.563 123.26,56.356 123.896,57.069 123.506,57.276 "/> -<path id="Fill-644" inkscape:connector-curvature="0" class="st12" d="M122.986,56.307l-0.115,0.256l0.635,0.713 - c-0.149,0.047-0.336,0.016-0.538-0.105c-0.492-0.296-0.886-1.009-0.886-1.602c0-0.387,0.166-0.623,0.418-0.658l0.259,1.333 - L122.986,56.307z"/> -<path id="Fill-646" inkscape:connector-curvature="0" class="st19" d="M122.359,54.956l0.391-0.207 - c0.019-0.011,0.039-0.02,0.06-0.026l-0.39,0.206C122.4,54.936,122.379,54.945,122.359,54.956"/> -<path id="Fill-648" inkscape:connector-curvature="0" class="st20" d="M122.42,54.929l0.391-0.206 - c0.019-0.007,0.041-0.013,0.06-0.017l-0.389,0.207C122.461,54.917,122.441,54.923,122.42,54.929"/> -<path id="Fill-650" inkscape:connector-curvature="0" class="st21" d="M122.482,54.913l0.389-0.207c0.006,0,0.011-0.002,0.019-0.002 - l-0.39,0.207C122.494,54.911,122.489,54.912,122.482,54.913"/> -<polygon id="Fill-652" class="st22" points="122.5,54.911 122.891,54.704 123.148,56.037 122.76,56.244 "/> -<polygon id="Fill-654" class="st23" points="123.131,56.001 123.522,55.794 123.377,56.102 122.986,56.308 "/> -<polygon id="Fill-656" class="st18" points="123.129,55.998 123.52,55.791 124.234,56.593 123.844,56.8 "/> -<polygon id="Fill-658" class="st22" points="122.939,55.016 123.33,54.809 123.521,55.793 123.131,56 "/> -<polygon id="Fill-660" class="st22" points="121.992,50.139 122.381,49.932 123.33,54.809 122.939,55.016 "/> -<path id="Fill-662" inkscape:connector-curvature="0" class="st4" d="M122.939,55.016l0.391-0.207 - c0.007,0.005,0.015,0.01,0.023,0.014l-0.389,0.207C122.955,55.025,122.948,55.021,122.939,55.016"/> -<path id="Fill-664" inkscape:connector-curvature="0" class="st3" d="M122.965,55.03l0.389-0.207l0.004,0.002l-0.389,0.207 - C122.967,55.032,122.965,55.031,122.965,55.03"/> -<polygon id="Fill-666" class="st6" points="123.855,56.636 124.246,56.429 124.246,56.45 123.855,56.657 "/> -<path id="Fill-668" inkscape:connector-curvature="0" class="st24" d="M123.855,56.657l0.391-0.207c0,0.016-0.002,0.029-0.002,0.044 - l-0.391,0.207C123.855,56.686,123.855,56.673,123.855,56.657"/> -<path id="Fill-670" inkscape:connector-curvature="0" class="st25" d="M123.854,56.701l0.391-0.207 - c-0.002,0.015-0.002,0.03-0.004,0.044l-0.389,0.207C123.852,56.73,123.854,56.716,123.854,56.701"/> -<path id="Fill-672" inkscape:connector-curvature="0" class="st26" d="M123.852,56.745l0.389-0.207c0,0.016-0.002,0.029-0.004,0.045 - l-0.391,0.207C123.848,56.774,123.85,56.761,123.852,56.745"/> -<path id="Fill-674" inkscape:connector-curvature="0" class="st27" d="M123.846,56.79l0.391-0.207 - c-0.002,0.003-0.002,0.006-0.002,0.01l-0.391,0.207C123.846,56.796,123.846,56.793,123.846,56.79"/> -<polygon id="Fill-676" class="st12" points="123.131,56.001 122.986,56.308 122.76,56.243 122.5,54.91 121.547,50.015 - 121.221,49.588 121.127,46.762 122.182,49.861 121.992,50.14 122.939,55.017 "/> -<path id="Fill-678" inkscape:connector-curvature="0" class="st12" d="M122.969,55.032c0.486,0.293,0.887,1.009,0.887,1.604 - c0,0.057-0.004,0.112-0.012,0.164l-0.713-0.799l-0.191-0.985C122.949,55.022,122.959,55.026,122.969,55.032"/> -<path id="Fill-680" inkscape:connector-curvature="0" class="st3" d="M122.969,55.032l0.389-0.207l0.023,0.015l-0.391,0.207 - C122.983,55.042,122.975,55.037,122.969,55.032"/> -<path id="Fill-682" inkscape:connector-curvature="0" class="st28" d="M122.99,55.047l0.391-0.207 - c0.011,0.008,0.025,0.017,0.037,0.024l-0.391,0.207C123.015,55.063,123.004,55.055,122.99,55.047"/> -<path id="Fill-684" inkscape:connector-curvature="0" class="st29" d="M123.027,55.071l0.391-0.207 - c0.011,0.008,0.025,0.018,0.037,0.026l-0.389,0.207C123.052,55.089,123.041,55.079,123.027,55.071"/> -<path id="Fill-686" inkscape:connector-curvature="0" class="st30" d="M123.066,55.097l0.389-0.207 - c0.013,0.009,0.025,0.019,0.037,0.028l-0.389,0.207C123.089,55.117,123.078,55.106,123.066,55.097"/> -<path id="Fill-688" inkscape:connector-curvature="0" class="st31" d="M123.104,55.126l0.389-0.207 - c0.013,0.011,0.027,0.021,0.039,0.032l-0.389,0.207C123.129,55.147,123.118,55.137,123.104,55.126"/> -<path id="Fill-690" inkscape:connector-curvature="0" class="st32" d="M123.143,55.158l0.389-0.207 - c0.013,0.011,0.027,0.022,0.039,0.034l-0.389,0.207C123.168,55.18,123.155,55.169,123.143,55.158"/> -<path id="Fill-692" inkscape:connector-curvature="0" class="st33" d="M123.182,55.192l0.389-0.207 - c0.013,0.012,0.027,0.023,0.039,0.036l-0.389,0.207C123.207,55.215,123.194,55.204,123.182,55.192"/> -<path id="Fill-694" inkscape:connector-curvature="0" class="st34" d="M123.221,55.228l0.389-0.207 - c0.013,0.013,0.025,0.024,0.039,0.038l-0.391,0.207C123.246,55.252,123.233,55.241,123.221,55.228"/> -<path id="Fill-696" inkscape:connector-curvature="0" class="st35" d="M123.258,55.266l0.391-0.207 - c0.011,0.012,0.025,0.025,0.037,0.038l-0.391,0.207C123.283,55.292,123.272,55.278,123.258,55.266"/> -<polygon id="Fill-698" class="st36" points="123.295,55.305 123.686,55.098 123.721,55.136 123.33,55.343 "/> -<path id="Fill-700" inkscape:connector-curvature="0" class="st37" d="M123.33,55.343l0.391-0.207 - c0.009,0.014,0.021,0.026,0.031,0.039l-0.389,0.207C123.351,55.368,123.342,55.357,123.33,55.343"/> -<path id="Fill-702" inkscape:connector-curvature="0" class="st38" d="M123.363,55.382l0.389-0.207 - c0.011,0.014,0.021,0.026,0.033,0.039l-0.391,0.207C123.384,55.407,123.373,55.395,123.363,55.382"/> -<path id="Fill-704" inkscape:connector-curvature="0" class="st39" d="M123.395,55.421l0.391-0.207 - c0.009,0.014,0.019,0.026,0.029,0.04l-0.389,0.207C123.416,55.447,123.405,55.435,123.395,55.421"/> -<path id="Fill-706" inkscape:connector-curvature="0" class="st40" d="M123.426,55.461l0.389-0.207 - c0.011,0.015,0.023,0.03,0.033,0.045l-0.389,0.207C123.447,55.491,123.438,55.476,123.426,55.461"/> -<path id="Fill-708" inkscape:connector-curvature="0" class="st41" d="M123.459,55.506l0.389-0.207 - c0.011,0.017,0.023,0.032,0.035,0.05l-0.391,0.207C123.482,55.538,123.471,55.523,123.459,55.506"/> -<path id="Fill-710" inkscape:connector-curvature="0" class="st42" d="M123.492,55.556l0.391-0.207 - c0.052,0.077,0.099,0.159,0.142,0.244l-0.388,0.207C123.594,55.715,123.545,55.633,123.492,55.556"/> -<path id="Fill-712" inkscape:connector-curvature="0" class="st41" d="M123.637,55.8l0.389-0.207 - c0.009,0.017,0.017,0.034,0.025,0.052l-0.389,0.206C123.653,55.834,123.645,55.817,123.637,55.8"/> -<path id="Fill-714" inkscape:connector-curvature="0" class="st40" d="M123.662,55.85l0.389-0.206 - c0.007,0.016,0.015,0.032,0.023,0.048l-0.391,0.207C123.676,55.883,123.668,55.868,123.662,55.85"/> -<polygon id="Fill-716" class="st39" points="123.684,55.899 124.075,55.692 124.092,55.733 123.702,55.94 "/> -<path id="Fill-718" inkscape:connector-curvature="0" class="st38" d="M123.701,55.94l0.391-0.207 - c0.004,0.014,0.009,0.027,0.015,0.04l-0.388,0.207C123.713,55.966,123.707,55.953,123.701,55.94"/> -<path id="Fill-720" inkscape:connector-curvature="0" class="st37" d="M123.719,55.98l0.389-0.207 - c0.006,0.014,0.011,0.027,0.015,0.041l-0.388,0.207C123.729,56.007,123.723,55.994,123.719,55.98"/> -<path id="Fill-722" inkscape:connector-curvature="0" class="st36" d="M123.734,56.021l0.389-0.207 - c0.006,0.014,0.011,0.027,0.015,0.041l-0.39,0.207C123.744,56.048,123.738,56.035,123.734,56.021"/> -<path id="Fill-724" inkscape:connector-curvature="0" class="st35" d="M123.748,56.062l0.391-0.207 - c0.005,0.015,0.009,0.028,0.015,0.043l-0.39,0.207C123.76,56.09,123.754,56.077,123.748,56.062"/> -<path id="Fill-726" inkscape:connector-curvature="0" class="st34" d="M123.764,56.105l0.391-0.207 - c0.004,0.015,0.007,0.03,0.013,0.044l-0.39,0.207C123.774,56.134,123.768,56.12,123.764,56.105"/> -<path id="Fill-728" inkscape:connector-curvature="0" class="st33" d="M123.777,56.149l0.391-0.207 - c0.004,0.016,0.007,0.031,0.013,0.046l-0.39,0.207C123.787,56.18,123.783,56.165,123.777,56.149"/> -<path id="Fill-730" inkscape:connector-curvature="0" class="st32" d="M123.791,56.195l0.391-0.207 - c0.004,0.016,0.007,0.032,0.011,0.048l-0.39,0.207C123.799,56.226,123.795,56.211,123.791,56.195"/> -<polygon id="Fill-732" class="st31" points="123.803,56.243 124.194,56.036 124.205,56.083 123.815,56.29 "/> -<path id="Fill-734" inkscape:connector-curvature="0" class="st30" d="M123.814,56.29l0.391-0.207 - c0.004,0.016,0.005,0.032,0.009,0.048l-0.39,0.207C123.823,56.321,123.818,56.306,123.814,56.29"/> -<path id="Fill-736" inkscape:connector-curvature="0" class="st29" d="M123.824,56.338l0.391-0.207 - c0.004,0.017,0.005,0.032,0.007,0.048l-0.388,0.207C123.832,56.37,123.828,56.354,123.824,56.338"/> -<path id="Fill-738" inkscape:connector-curvature="0" class="st28" d="M123.834,56.386l0.389-0.207 - c0.004,0.016,0.006,0.031,0.007,0.047l-0.388,0.207C123.838,56.417,123.836,56.402,123.834,56.386"/> -<path id="Fill-740" inkscape:connector-curvature="0" class="st3" d="M123.842,56.432l0.389-0.207 - c0.002,0.016,0.004,0.03,0.006,0.046l-0.389,0.206C123.846,56.462,123.844,56.447,123.842,56.432"/> -<path id="Fill-742" inkscape:connector-curvature="0" class="st4" d="M123.848,56.477l0.389-0.206 - c0.002,0.015,0.004,0.03,0.004,0.046l-0.389,0.206C123.85,56.508,123.848,56.493,123.848,56.477"/> -<path id="Fill-744" inkscape:connector-curvature="0" class="st43" d="M123.852,56.523l0.389-0.206 - c0.002,0.015,0.002,0.029,0.004,0.045l-0.391,0.207C123.854,56.553,123.852,56.538,123.852,56.523"/> -<path id="Fill-746" inkscape:connector-curvature="0" class="st1" d="M123.854,56.569l0.391-0.207c0,0.015,0.002,0.029,0.002,0.045 - l-0.391,0.206C123.855,56.598,123.855,56.583,123.854,56.569"/> -<polygon id="Fill-748" class="st6" points="123.855,56.613 124.246,56.407 124.246,56.428 123.855,56.635 "/> -<polygon id="Fill-750" class="st18" points="123.844,56.8 124.235,56.593 126.096,58.675 125.705,58.882 "/> -<polygon id="Fill-752" class="st36" points="126,58.718 126.391,58.511 127.34,60.493 126.951,60.7 "/> -<polygon id="Fill-754" class="st12" points="126.951,60.7 125.447,59.937 125.447,59.447 123.508,57.275 122.871,56.563 - 122.986,56.308 123.129,55.998 123.844,56.8 125.705,58.882 126,58.718 "/> -<polygon id="Fill-756" class="st20" points="122.182,49.86 122.573,49.653 122.381,49.932 121.993,50.139 "/> -<polygon id="Fill-758" class="st44" points="121.127,46.762 121.518,46.555 122.572,49.654 122.182,49.861 "/> -<polygon id="Fill-760" class="st0" points="83.866,212.32 92.668,217.786 92.668,195.571 83.822,189.873 "/> -<polygon id="Fill-762" class="st0" points="93.459,196.082 93.459,196.103 93.375,196.05 93.486,196.05 93.535,218.562 - 102.232,223.701 102.492,223.611 102.523,201.921 "/> -<polygon id="Fill-764" class="st0" points="173.992,225.411 183.607,231.001 183.469,217.413 174.14,211.62 "/> -<polygon id="Fill-766" class="st0" points="173.992,246.06 183.607,251.65 183.469,238.062 174.14,232.269 "/> -<polygon id="Fill-768" class="st0" points="161.246,217.732 170.861,223.322 170.723,209.734 161.394,203.941 "/> -<polygon id="Fill-770" class="st0" points="161.246,238.381 170.861,243.971 170.723,230.383 161.394,224.59 "/> -<polygon id="Fill-772" class="st0" points="148.236,209.942 157.851,215.532 157.715,201.944 148.384,196.151 "/> -<polygon id="Fill-774" class="st0" points="148.236,230.591 157.851,236.181 157.715,222.593 148.384,216.8 "/> -<polygon id="Fill-776" class="st0" points="135.49,202.264 145.105,207.854 144.969,194.266 135.638,188.473 "/> -<polygon id="Fill-778" class="st0" points="135.49,222.912 145.105,228.502 144.969,214.914 135.638,209.121 "/> -<polygon id="Fill-780" class="st0" points="122.596,194.511 132.211,200.101 132.073,186.513 122.744,180.72 "/> -<polygon id="Fill-782" class="st0" points="122.596,215.159 132.211,220.749 132.073,207.161 122.744,201.368 "/> -<polygon id="Fill-784" class="st0" points="54.934,153.852 64.549,159.441 64.411,145.854 55.082,140.061 "/> -<polygon id="Fill-786" class="st0" points="54.934,174.5 64.549,180.09 64.411,166.502 55.082,160.709 "/> -<polygon id="Fill-788" class="st0" points="42.188,146.173 51.803,151.763 51.665,138.175 42.335,132.382 "/> -<polygon id="Fill-790" class="st0" points="42.188,166.821 51.803,172.411 51.665,158.823 42.335,153.03 "/> -<polygon id="Fill-792" class="st0" points="29.178,138.383 38.793,143.973 38.657,130.385 29.326,124.592 "/> -<polygon id="Fill-794" class="st0" points="29.178,159.031 38.793,164.621 38.657,151.033 29.326,145.24 "/> -<polygon id="Fill-796" class="st0" points="16.432,130.704 26.047,136.294 25.911,122.706 16.58,116.913 "/> -<polygon id="Fill-798" class="st0" points="16.432,151.352 26.047,156.942 25.911,143.354 16.58,137.561 "/> -<polygon id="Fill-800" class="st0" points="108.125,177.286 117.74,182.876 117.604,169.288 108.273,163.495 "/> -<polygon id="Fill-802" class="st0" points="108.125,197.935 117.74,203.525 117.604,189.937 108.273,184.144 "/> -<polygon id="Fill-804" class="st0" points="95.379,169.607 104.994,175.197 104.858,161.609 95.527,155.816 "/> -<polygon id="Fill-806" class="st0" points="95.379,190.256 104.994,195.846 104.858,182.258 95.527,176.465 "/> -<polygon id="Fill-808" class="st0" points="82.371,161.817 91.986,167.407 91.848,153.819 82.519,148.026 "/> -<polygon id="Fill-810" class="st0" points="82.371,182.466 91.986,188.056 91.848,174.468 82.519,168.675 "/> -<polygon id="Fill-812" class="st0" points="69.625,154.139 79.24,159.729 79.102,146.141 69.773,140.348 "/> -<polygon id="Fill-814" class="st0" points="69.625,174.787 79.24,180.377 79.102,166.789 69.773,160.996 "/> -<polygon id="Fill-816" class="st0" points="107.707,218.02 117.322,223.61 117.184,210.022 107.855,204.229 "/> -<polygon id="Fill-818" class="st0" points="69.625,195.501 79.24,201.091 79.102,187.503 69.773,181.71 "/> -<polygon id="Fill-820" class="st0" points="3.537,122.951 13.152,128.541 13.014,114.953 3.685,109.16 "/> -<polygon id="Fill-822" class="st0" points="3.537,143.6 13.152,149.189 13.014,135.602 3.685,129.809 "/> -<path id="Stroke-824" class="st45" d="M72.367,206.395l37.063,21.832"/> -<path id="Fill-826" class="st11" d="M108.852,206.83l6.668,4.019l-0.018,8.247c0,0-0.402-4.832-3.238-8.532 - C109.664,207.17,108.852,206.83,108.852,206.83"/> -<path id="Fill-828" class="st11" d="M43.108,135.374l6.667,4.019l-0.016,8.242c0,0-0.405-4.831-3.24-8.531 - C43.919,135.714,43.108,135.374,43.108,135.374"/> -<path id="Fill-830" class="st11" d="M4.806,112.129l6.666,4.018l-0.016,8.241c0,0-0.406-4.83-3.242-8.53 - C5.615,112.467,4.806,112.129,4.806,112.129"/> -<path id="Fill-832" class="st11" d="M17.608,119.486l6.668,4.019l-0.016,8.241c0,0-0.406-4.829-3.238-8.528 - C18.42,119.826,17.608,119.486,17.608,119.486"/> -<path id="Fill-834" class="st11" d="M30.19,127.644l6.666,4.019l-0.016,8.247c0,0-0.406-4.833-3.238-8.532 - C31,127.984,30.19,127.644,30.19,127.644"/> -<path id="Fill-836" class="st11" d="M55.729,143.103l6.67,4.021l-0.017,8.241c0,0-0.409-4.831-3.243-8.531 - C56.537,143.443,55.729,143.103,55.729,143.103"/> -<path id="Fill-838" class="st11" d="M70.99,184.452l6.668,4.02l-0.016,8.245c0,0-0.405-4.832-3.24-8.532 - C71.802,184.795,70.99,184.452,70.99,184.452"/> -<path id="Fill-375_3_" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" class="st12" d="M136.07,43.838 - c0,0.857,0,1.713,0,2.57l-24.326-14.623v-2.57L136.07,43.838z"/> -<path id="path1061_1_" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" class="st13" d="M111.744,29.215l23.389-12.412 - l24.327,14.623l-23.39,12.412L111.744,29.215z"/> -<path id="Fill-375_2_" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" class="st4" d="M159.46,31.426 - c0,0.857,0,1.713,0,2.57l-23.39,12.412v-2.57L159.46,31.426z"/> -<path id="Fill-840" class="st11" d="M43.313,156.152l6.667,4.019l-0.016,8.242c0,0-0.405-4.831-3.24-8.531 - C44.124,156.492,43.313,156.152,43.313,156.152"/> -<path id="Fill-842" class="st11" d="M5.01,132.907l6.666,4.018l-0.016,8.241c0,0-0.406-4.83-3.242-8.53 - C5.819,133.245,5.01,132.907,5.01,132.907"/> -<path id="Fill-844" class="st11" d="M17.813,140.264l6.666,4.019l-0.016,8.241c0,0-0.404-4.829-3.238-8.528 - C18.624,140.605,17.813,140.264,17.813,140.264"/> -<path id="Fill-846" class="st11" d="M30.393,148.423l6.666,4.019l-0.016,8.247c0,0-0.404-4.833-3.238-8.532 - C31.204,148.763,30.393,148.423,30.393,148.423"/> -<path id="Fill-848" class="st11" d="M55.933,163.882l6.67,4.021l-0.017,8.241c0,0-0.409-4.831-3.243-8.531 - C56.742,164.222,55.933,163.882,55.933,163.882"/> -<path id="Fill-850" class="st11" d="M161.55,206.926l6.667,4.019l-0.016,8.242c0,0-0.405-4.831-3.24-8.531 - C162.361,207.266,161.55,206.926,161.55,206.926"/> -<path id="Fill-852" class="st11" d="M123.247,183.681l6.666,4.018l-0.016,8.241c0,0-0.406-4.83-3.242-8.53 - C124.056,184.019,123.247,183.681,123.247,183.681"/> -<path id="Fill-854" class="st11" d="M136.049,191.038l6.668,4.019l-0.016,8.241c0,0-0.406-4.829-3.238-8.528 - C136.861,191.378,136.049,191.038,136.049,191.038"/> -<path id="Fill-856" class="st11" d="M148.631,199.196l6.666,4.019l-0.016,8.247c0,0-0.406-4.833-3.238-8.532 - C149.442,199.536,148.631,199.196,148.631,199.196"/> -<path id="Fill-858" class="st11" d="M174.17,214.655l6.67,4.021l-0.017,8.241c0,0-0.409-4.831-3.243-8.531 - C174.979,214.995,174.17,214.655,174.17,214.655"/> -<path id="Fill-860" class="st11" d="M162.469,227.679l6.666,4.019l-0.016,8.242c0,0-0.404-4.831-3.24-8.531 - C163.28,228.019,162.469,227.679,162.469,227.679"/> -<path id="Fill-862" class="st11" d="M124.166,204.434l6.666,4.018l-0.016,8.241c0,0-0.406-4.83-3.242-8.53 - C124.975,204.771,124.166,204.434,124.166,204.434"/> -<path id="Fill-864" class="st11" d="M136.968,211.791l6.667,4.019l-0.016,8.241c0,0-0.405-4.829-3.238-8.528 - C137.78,212.131,136.968,211.791,136.968,211.791"/> -<path id="Fill-866" class="st11" d="M149.549,219.949l6.666,4.019l-0.016,8.247c0,0-0.405-4.833-3.238-8.532 - C150.36,220.289,149.549,219.949,149.549,219.949"/> -<path id="Fill-868" class="st11" d="M175.088,235.408l6.67,4.021l-0.016,8.241c0,0-0.41-4.831-3.244-8.531 - C175.897,235.748,175.088,235.408,175.088,235.408"/> -<path id="Fill-870" class="st11" d="M96.23,159.011l6.668,4.019l-0.016,8.242c0,0-0.406-4.831-3.24-8.531 - C97.041,159.351,96.23,159.011,96.23,159.011"/> -<path id="Fill-872" class="st11" d="M70.73,143.123l6.667,4.019l-0.016,8.241c0,0-0.405-4.829-3.238-8.528 - C71.543,143.463,70.73,143.123,70.73,143.123"/> -<path id="Fill-874" class="st11" d="M83.312,151.281l6.666,4.019l-0.016,8.247c0,0-0.405-4.833-3.238-8.532 - C84.123,151.621,83.312,151.281,83.312,151.281"/> -<path id="Fill-876" class="st11" d="M108.852,166.74l6.67,4.021l-0.018,8.241c0,0-0.408-4.831-3.242-8.531 - C109.661,167.08,108.852,166.74,108.852,166.74"/> -<path id="Fill-878" class="st11" d="M96.517,179.521l6.667,4.019l-0.016,8.242c0,0-0.405-4.831-3.24-8.531 - C97.328,179.861,96.517,179.521,96.517,179.521"/> -<path id="Fill-880" class="st11" d="M71.016,163.634l6.668,4.019l-0.016,8.241c0,0-0.406-4.829-3.238-8.528 - C71.828,163.974,71.016,163.634,71.016,163.634"/> -<path id="Fill-882" class="st11" d="M83.598,171.792l6.666,4.019l-0.016,8.247c0,0-0.406-4.833-3.238-8.532 - C84.409,172.132,83.598,171.792,83.598,171.792"/> -<path id="Fill-884" class="st11" d="M109.137,187.251l6.67,4.021l-0.017,8.241c0,0-0.409-4.831-3.243-8.531 - C109.946,187.591,109.137,187.251,109.137,187.251"/> -<path id="Fill-375_1_" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" class="st4" d="M159.46,77.426 - c0,0.857,0,1.713,0,2.57l-23.39,12.412v-2.57L159.46,77.426z"/> -<defs> - <filter id="Adobe_OpacityMaskFilter_1_" filterUnits="userSpaceOnUse" x="125.307" y="0" width="28.375" height="40.665"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> -</defs> -<mask maskUnits="userSpaceOnUse" x="125.307" y="0" width="28.375" height="40.665" id="mask-4_1_"> - <g id="g235_2_" class="st46"> - <polygon id="path-3_1_" class="st9" points="125.307,0 153.682,0 153.682,40.665 125.307,40.665 "/> - </g> -</mask> -<polygon id="Fill-511" class="st47" points="125.307,10.344 144.797,0 153.682,30.322 134.192,40.665 "/> -<polygon id="Fill-514" class="st12" points="125.307,10.344 134.192,40.665 116.467,30.015 "/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 274.629 277.106"><style><![CDATA[.w{fill:#143b55}.x{fill:#1e567d}.y{fill:#276e9f}.z{fill:#215880}.AA{fill:#1c4f73}.AB{fill:#d6dee6}.AC{fill:#276b9c}.AD{fill:#286c9d}]]></style><path d="M133.623 208.21l-13.33-.025 13.33.025z" fill="#fefefe"/><path d="M82.617 58.975L.76 102.418c.388-.212.92-.074 1.178.032l81.857-43.444c-.396-.157-.9-.176-1.178-.03z" fill="#1d5176"/><path d="M1.937 102.45l81.858-43.443 65.36 39.297-81.857 43.444z" class="y"/><path d="M149.752 88.693l-81.857 43.443c.376-.2.85-.023 1.102.143l81.857-43.443c-.313-.29-.816-.275-1.102-.143z" class="z"/><path d="M119.373 162.662l-50.377-30.384 81.857-43.443 50.377 30.382z" class="y"/><path d="M202.883 129.743l.005-7.523-81.857 43.443-.006 7.524 71.358-37.872-71.358 37.872-.006.962 81.858-43.443.005-.963z" class="x"/><path d="M201.23 119.22l-81.857 43.443c.965.584 1.66 2.04 1.66 3.002L202.9 122.22a3.46 3.46 0 0 0-1.66-3.002z" fill="#2b75ac"/><path d="M274.58 228.746l-81.857 43.445c0 1.935-.688 3.812-2.078 4.54l81.857-43.445c1.534-.82 2.078-2.763 2.078-4.54z" class="AA"/><path d="M274.58 228.747l-81.858 43.444.048-51.49 81.858-43.444z" fill="#19557d"/><path d="M121.02 174.15l81.857-43.443 68.663 41.3-81.858 43.443-.123-.075-68.54-41.215" class="y"/><path d="M271.54 171.998l-81.857 43.443c2.12 1.322 3.02 3.578 3.1 5.248v.012l81.857-43.455c0-1.992-1.374-4.174-3.1-5.248z" fill="#2b75ac"/><defs><filter id="A" filterUnits="userSpaceOnUse" x="0" y="102.299" width="192.771" height="174.807"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter><path id="B" d="M173.992 225.41l9.615 5.6-.138-13.588-9.33-5.793z"/><path id="C" d="M148.236 209.942l9.615 5.6-.136-13.588-9.33-5.793z"/><path id="D" d="M43.108 135.374l6.667 4.02-.016 8.242s-.405-4.83-3.24-8.53c-2.6-3.4-3.41-3.73-3.41-3.73"/><path id="E" d="M4.806 112.13l6.666 4.018-.016 8.24s-.406-4.83-3.242-8.53c-2.6-3.39-3.408-3.73-3.408-3.73"/><path id="F" d="M17.608 119.486l6.668 4.02-.016 8.24s-.406-4.83-3.238-8.528c-2.602-3.392-3.414-3.732-3.414-3.732"/><path id="G" d="M55.933 163.882l6.67 4.02-.017 8.24s-.41-4.83-3.243-8.53c-2.6-3.39-3.4-3.73-3.4-3.73"/></defs><mask maskUnits="userSpaceOnUse" x="0" y="102.299" width="192.771" height="174.807" id="H"><g filter="url(#A)"><path d="M0 102.3h192.77v174.807H0z" fill="#fff"/></g></mask><path d="M68.996 132.278l50.377 30.384c.912.548 1.658 1.894 1.658 3l-.012 8.486 68.54 41.215c3.205 1.933 3.212 5.315 3.212 5.338l-.048 51.49c-.004 4.393-2.952 6.17-6.6 3.972L6.58 168.117c-3.635-2.192-6.6-7.53-6.58-11.92l.043-51.894c.004-2.722 1.8-1.896 1.894-1.853l65.36 39.298.045-8.3c-.002-1.285.736-1.732 1.654-1.18" mask="url(#H)" fill="#1f608c"/><path d="M182.62 163.937h.174c-.12-.01-.174 0-.174 0" class="AB"/><path d="M133.646 133.995l38.98-20.687.007 10.59-38.98 20.69z" fill="#19557d"/><path d="M100.7 114.202l38.98-20.687 32.944 19.792-38.98 20.688z" class="y"/><path d="M133.646 133.995l.006 10.593-32.943-19.793-.008-10.593z" class="w"/><path d="M134.795 91.69l23.39-12.412.025 35.987-23.387 12.412z" class="x"/><g class="w"><path d="M134.81 90.956l.013 36.72-20.734-12.456-.01-36.72z"/><path d="M136.07 89.838v2.57l-24.326-14.623v-2.57l24.326 14.623z"/></g><path d="M111.744 75.215l23.39-12.412 24.327 14.623-23.4 12.412-24.326-14.623z" fill="#225e89"/><path d="M134.254 45.303l23.39-12.413.03 43.392-23.39 12.414z" class="x"/><path d="M134.254 45.303l.06 44.735-20.726-12.453-.06-44.734z" class="w"/><path d="M117.76 44.105c.567-.326 1.252-.373 1.844-.424.682-.01 1.3.2 1.934.4.65.237 1.27.63 1.832.98.706.47 1.37 1.1 1.943 1.643.73.736 1.394 1.647 1.96 2.418.548.788 1.012 1.667 1.424 2.5.396.81.716 1.742.98 2.512l.11.38v.002l.2.795c.13.536.196 1.073.268 1.584.083.632.072 1.293.063 1.88-.015.513-.118 1.01-.203 1.48-.125.65-.435 1.23-.72 1.773-.377.588-.855 1.037-1.414 1.334l.39-.207c1.148-.692 1.613-1.573 2.03-2.71.34-1.106.34-2.242.283-3.373-.066-.944-.278-1.864-.506-2.76v-.002c-.314-1.164-.79-2.263-1.305-3.332-.633-1.224-1.318-2.214-2.027-3.178-.77-1.025-1.85-1.968-2.768-2.717-.66-.514-1.4-.874-2.148-1.204-.733-.31-1.538-.377-2.318-.393-.678.033-1.34.378-1.85.62z" fill="#cbcbcb"/><path d="M122.863 44.74c4.12 2.477 7.463 8.508 7.467 13.478s-3.334 6.988-7.455 4.512-7.465-8.5-7.47-13.478 3.334-6.99 7.457-4.512" fill="#888788"/><path d="M122.76 56.244l.39-.207.228.064-.4.206z" fill="#1d5174"/><path d="M122.986 56.307l.39-.206-.118.255-.388.207z" fill="#16405d"/><path d="M122.87 56.563l.39-.207.636.713-.4.207z" class="AC"/><path d="M122.986 56.307l-.115.256.635.713c-.15.047-.336.016-.538-.105-.492-.296-.886-1.01-.886-1.602 0-.387.166-.623.418-.658l.26 1.333.227.063z" class="w"/><path d="M122.36 54.956l.39-.207c.02-.01.04-.02.06-.026l-.4.206c-.02.007-.04.016-.06.027" fill="#123953"/><path d="M122.42 54.93l.39-.206a.45.45 0 0 1 .06-.017l-.39.207c-.02.004-.04.01-.062.016" fill="#143b56"/><path d="M122.482 54.913l.39-.207-.37.205" fill="#163e5a"/><path d="M122.5 54.91l.39-.207.257 1.333-.388.207z" fill="#24618e"/><path d="M123.13 56l.39-.207-.145.308-.39.206z" fill="#17405c"/><path d="M123.13 55.998l.39-.207.714.802-.4.207z" class="AC"/><g fill="#24618e"><path d="M122.94 55.016l.39-.207.19.984-.4.207z"/><path d="M121.992 50.14l.39-.207.95 4.877-.39.207z"/></g><path d="M122.94 55.016l.39-.207c.007.005.015.01.023.014l-.39.207-.025-.014" class="x"/><path d="M122.965 55.03l.39-.207.004.002-.39.207" class="z"/><path d="M123.855 56.636l.39-.207v.02l-.39.207z" class="AA"/><path d="M123.855 56.657l.39-.207-.002.044-.39.207c.002-.015.002-.028.002-.044" fill="#1b4d70"/><path d="M123.854 56.7l.39-.207-.004.044-.39.207.002-.044" fill="#194b6d"/><path d="M123.852 56.745l.39-.207c0 .016-.002.03-.004.045l-.39.207.006-.045" fill="#194a6b"/><path d="M123.846 56.8l.39-.207-.393.217" fill="#194766"/><g class="w"><path d="M123.13 56l-.145.307-.226-.065-1.213-6.228-.326-.427-.094-2.826 1.055 3.1-.2.28.947 4.877z"/><path d="M122.97 55.032c.486.293.887 1.01.887 1.604a1.08 1.08 0 0 1-.012.164l-.713-.8-.19-.985c.01.006.02.01.03.016"/></g><path d="M122.97 55.032l.39-.207.023.015-.39.207-.02-.015" class="z"/><path d="M123 55.047l.39-.207a.47.47 0 0 0 .037.024l-.39.207-.037-.024" fill="#215b84"/><path d="M123.027 55.07l.39-.207.037.026-.39.207c-.014-.008-.025-.018-.04-.026" fill="#225c86"/><path d="M123.066 55.097l.39-.207.037.028-.39.207c-.014-.008-.025-.02-.037-.028" fill="#23608b"/><path d="M123.104 55.126l.39-.207.04.032-.39.207-.04-.032" fill="#23618e"/><path d="M123.143 55.158l.39-.207.04.034-.39.207-.04-.034" fill="#236390"/><path d="M123.182 55.192l.39-.207.04.036-.39.207-.04-.036" fill="#256593"/><path d="M123.22 55.228l.39-.207.04.038-.39.207c-.012-.014-.025-.025-.037-.038" fill="#256796"/><path d="M123.258 55.266l.39-.207.037.038-.39.207-.037-.038" fill="#266a9a"/><path d="M123.295 55.305l.39-.207.035.038-.39.207z" class="AD"/><path d="M123.33 55.343l.39-.207c.01.014.02.026.03.04l-.39.207-.033-.04" fill="#286e9f"/><path d="M123.363 55.382l.39-.207.033.04-.39.207c-.01-.014-.02-.026-.03-.04" fill="#437fab"/><path d="M123.395 55.42l.39-.207c.01.014.02.026.03.04l-.39.207-.03-.04" fill="#4d87af"/><path d="M123.426 55.46l.39-.207.033.045-.39.207-.033-.045" fill="#548cb5"/><path d="M123.46 55.506l.39-.207.035.05-.39.207c-.01-.018-.02-.033-.033-.05" fill="#5c91b7"/><path d="M123.492 55.556l.39-.207c.052.077.1.16.142.244l-.388.207a2.12 2.12 0 0 0-.145-.244" fill="#6195b8"/><path d="M123.637 55.8l.39-.207.025.052-.39.206-.025-.05" fill="#5c91b7"/><path d="M123.662 55.85l.39-.206.023.048-.39.207-.02-.05" fill="#548cb5"/><path d="M123.684 55.9l.39-.207.017.04-.4.207z" fill="#4d87af"/><path d="M123.7 55.94l.39-.207c.004.014.01.027.015.04l-.388.207-.018-.04" fill="#437fab"/><path d="M123.72 55.98l.39-.207a.34.34 0 0 1 .015.041l-.388.207-.016-.04" fill="#286e9f"/><path d="M123.734 56.02l.39-.207a.34.34 0 0 1 .015.041l-.4.207c-.004-.014-.01-.027-.014-.04" class="AD"/><path d="M123.748 56.062l.39-.207.015.043-.4.207c-.004-.015-.01-.028-.016-.043" fill="#266a9a"/><path d="M123.764 56.105l.39-.207c.004.015.007.03.013.044l-.4.207-.014-.044" fill="#256796"/><path d="M123.777 56.15l.39-.207c.004.016.007.03.013.046l-.4.207-.014-.046" fill="#256593"/><path d="M123.79 56.195l.39-.207.01.048-.4.207-.012-.048" fill="#236390"/><path d="M123.803 56.243l.39-.207.01.047-.4.207z" fill="#23618e"/><path d="M123.814 56.3l.39-.207c.004.016.005.032.01.048l-.4.207c-.001-.017-.006-.032-.01-.048" fill="#23608b"/><path d="M123.824 56.338l.39-.207c.004.017.005.032.007.048l-.388.207c-.002-.016-.006-.032-.01-.048" fill="#225c86"/><path d="M123.834 56.386l.39-.207c.004.016.006.03.007.047l-.388.207c-.004-.016-.006-.03-.008-.047" fill="#215b84"/><path d="M123.842 56.432l.39-.207.006.046-.39.206-.006-.045" class="z"/><path d="M123.848 56.477l.39-.206.004.046-.39.206-.004-.046" class="x"/><path d="M123.852 56.523l.39-.206.004.045-.39.207-.002-.046" fill="#1f547a"/><path d="M123.854 56.57l.39-.207.002.045-.39.206-.002-.044" fill="#1d5176"/><path d="M123.855 56.613l.39-.206v.02l-.39.207z" class="AA"/><path d="M123.844 56.8l.39-.207 1.86 2.082-.39.207z" class="AC"/><path d="M126 58.718l.39-.207.95 1.982-.39.207z" class="AD"/><path d="M126.95 60.7l-1.504-.763v-.5l-2.576-2.884.115-.255.143-.3.715.802 1.86 2.082.295-.164z" class="w"/><path d="M122.182 49.86l.39-.207-.192.28-.388.207z" fill="#143b56"/><path d="M121.127 46.762l.39-.207 1.054 3.1-.4.207z" fill="#266997"/><g fill="#fefefe"><path d="M83.866 212.32l8.802 5.466V195.57l-8.846-5.698zm9.594-16.238v.02l-.084-.053h.1l.05 22.512 8.697 5.14.26-.1.03-21.7z"/><use xlink:href="#B"/><use xlink:href="#B" y="20.65"/><use xlink:href="#B" x="-12.746" y="-7.678"/><use xlink:href="#B" x="-12.746" y="12.97"/><use xlink:href="#C"/><use xlink:href="#C" y="20.648"/><use xlink:href="#C" x="-12.736" y="-7.678"/><use xlink:href="#C" x="-12.736" y="12.97"/><use xlink:href="#B" x="-51.396" y="-30.9"/><use xlink:href="#B" x="-51.396" y="-10.25"/><path d="M54.934 153.852l9.615 5.59-.138-13.587-9.33-5.793z"/><use xlink:href="#B" x="-119.058" y="-50.91"/><use xlink:href="#B" x="-131.804" y="-79.237"/><use xlink:href="#B" x="-131.804" y="-58.59"/><use xlink:href="#C" x="-119.058" y="-71.559"/><use xlink:href="#C" x="-119.058" y="-50.912"/><use xlink:href="#C" x="-131.804" y="-79.238"/><use xlink:href="#C" x="-131.804" y="-58.59"/><use xlink:href="#C" x="-40.111" y="-32.656"/><use xlink:href="#C" x="-40.111" y="-12.007"/><use xlink:href="#C" x="-52.856" y="-40.335"/><use xlink:href="#C" x="-52.856" y="-19.686"/><use xlink:href="#B" x="-91.622" y="-63.593"/><use xlink:href="#B" x="-91.622" y="-42.944"/><use xlink:href="#B" x="-104.367" y="-71.27"/><use xlink:href="#B" x="-104.367" y="-50.623"/><use xlink:href="#B" x="-66.285" y="-7.39"/><use xlink:href="#B" x="-104.367" y="-29.91"/><use xlink:href="#B" x="-170.455" y="-102.46"/><path d="M3.537 143.6l9.615 5.59-.138-13.587-9.33-5.793z"/></g><path d="M72.367,206.395l37.063,21.832" fill="none" stroke="#1f608c" stroke-width="2"/><g class="AB"><path d="M108.852 206.83l6.668 4.02-.018 8.247s-.402-4.832-3.238-8.532c-2.6-3.394-3.412-3.734-3.412-3.734"/><use xlink:href="#D"/><use xlink:href="#E"/><use xlink:href="#F"/><path d="M30.2 127.644l6.666 4.02-.016 8.247s-.406-4.833-3.238-8.532c-2.602-3.394-3.412-3.734-3.412-3.734m25.53 15.458l6.67 4.02-.017 8.24s-.4-4.83-3.243-8.53c-2.602-3.4-3.4-3.73-3.4-3.73M71 184.452l6.668 4.02-.016 8.245s-.405-4.832-3.24-8.532c-2.6-3.4-3.412-3.733-3.412-3.733"/></g><path d="M136.07 43.838v2.57l-24.326-14.623v-2.57l24.326 14.623z" class="w"/><path d="M111.744 29.215l23.39-12.412 24.327 14.623-23.4 12.412-24.326-14.623z" fill="#225e89"/><path d="M159.46 31.426v2.57l-23.4 12.412v-2.57l23.4-12.412z" class="x"/><g class="AB"><use xlink:href="#D" x="0.205" y="20.778"/><use xlink:href="#E" x="0.194" y="20.777"/><path d="M17.813 140.264l6.666 4.02-.016 8.24s-.404-4.83-3.238-8.528c-2.6-3.4-3.412-3.732-3.412-3.732m12.58 8.16l6.666 4.02-.016 8.247s-.404-4.833-3.238-8.532c-2.6-3.394-3.412-3.734-3.412-3.734"/><use xlink:href="#G"/><use xlink:href="#D" x="118.442" y="71.552"/><use xlink:href="#E" x="118.441" y="71.55"/><use xlink:href="#F" x="118.442" y="71.552"/><path d="M148.63 199.196l6.666 4.02-.016 8.247s-.406-4.833-3.238-8.532c-2.6-3.394-3.412-3.734-3.412-3.734"/><use xlink:href="#G" x="118.237" y="50.773"/><path d="M162.47 227.68l6.666 4.02-.016 8.242s-.404-4.83-3.24-8.53c-2.6-3.4-3.4-3.73-3.4-3.73m-38.314-23.248l6.666 4.018-.016 8.24s-.406-4.83-3.242-8.53c-2.6-3.392-3.408-3.73-3.408-3.73"/><path d="M136.968 211.8l6.667 4.02-.016 8.24s-.405-4.83-3.238-8.528c-2.6-3.392-3.413-3.732-3.413-3.732m12.582 8.16l6.666 4.02-.016 8.247s-.405-4.833-3.238-8.532c-2.6-3.394-3.412-3.734-3.412-3.734m25.538 15.457l6.67 4.02-.016 8.24s-.4-4.83-3.244-8.53c-2.6-3.4-3.4-3.73-3.4-3.73M96.23 159l6.668 4.02-.016 8.242s-.406-4.83-3.24-8.53c-2.6-3.4-3.412-3.73-3.412-3.73m-25.5-15.89l6.667 4.02-.016 8.24s-.405-4.83-3.238-8.528c-2.6-3.392-3.413-3.732-3.413-3.732m12.582 8.157l6.666 4.02-.016 8.247s-.405-4.833-3.238-8.532c-2.6-3.394-3.412-3.734-3.412-3.734m25.54 15.46l6.67 4.02-.018 8.24s-.408-4.83-3.242-8.53c-2.6-3.4-3.4-3.73-3.4-3.73"/><use xlink:href="#D" x="53.409" y="44.146"/><use xlink:href="#F" x="53.408" y="44.148"/><path d="M83.598 171.792l6.666 4.02-.016 8.247s-.406-4.833-3.238-8.532c-2.6-3.394-3.412-3.734-3.412-3.734"/><use xlink:href="#G" x="53.204" y="23.368"/></g><path d="M159.46 77.426v2.57l-23.4 12.412v-2.57l23.4-12.412z" class="x"/><defs><filter id="I" filterUnits="userSpaceOnUse" x="125.307" y="0" width="28.375" height="40.665"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="125.307" y="0" width="28.375" height="40.665" id="J"><g filter="url(#I)"><path d="M125.307 0h28.375v40.665h-28.375z" fill="#fff"/></g></mask><path d="M125.307 10.344L144.797 0l8.885 30.322-19.5 10.343z" mask="url(#J)" fill="#256695"/><path d="M125.307 10.344l8.885 30.32-17.725-10.65z" class="w"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/buildings/Secure_Building.svg b/src/main/webapp/img/lib/allied_telesis/buildings/Secure_Building.svg index 9c96d47b5a61b83d167548297deb6ea59ac9031e..57a6fd690911079b8542e0231677966458980806 100644 --- a/src/main/webapp/img/lib/allied_telesis/buildings/Secure_Building.svg +++ b/src/main/webapp/img/lib/allied_telesis/buildings/Secure_Building.svg @@ -1,830 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" - id="Layer_1" inkscape:version="0.92.3 (2405546, 2018-03-11)" sodipodi:docname="Secure_Building8.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 271.87 185.188" - style="enable-background:new 0 0 271.87 185.188;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#BBBDBF;} - .st1{fill:none;stroke:#626366;stroke-width:1.078;} - .st2{filter:url(#Adobe_OpacityMaskFilter);} - .st3{fill:#FFFFFF;} - .st4{mask:url(#mask-2_2_);fill:url(#Fill-10_1_);} - .st5{filter:url(#Adobe_OpacityMaskFilter_1_);} - .st6{mask:url(#mask-5_2_);fill:url(#Fill-15_1_);} - .st7{filter:url(#Adobe_OpacityMaskFilter_2_);} - .st8{mask:url(#mask-8_2_);fill:url(#Fill-25_1_);} - .st9{filter:url(#Adobe_OpacityMaskFilter_3_);} - .st10{mask:url(#mask-11_2_);fill:url(#Fill-30_1_);} - .st11{filter:url(#Adobe_OpacityMaskFilter_4_);} - .st12{mask:url(#mask-14_2_);fill:#1D5C87;} - .st13{fill:#216390;} - .st14{filter:url(#Adobe_OpacityMaskFilter_5_);} - .st15{mask:url(#mask-18_2_);fill:#1E5E89;} - .st16{filter:url(#Adobe_OpacityMaskFilter_6_);} - .st17{mask:url(#mask-22_2_);fill:#236796;} - .st18{fill:#276E9F;} - .st19{filter:url(#Adobe_OpacityMaskFilter_7_);} - .st20{mask:url(#mask-30_2_);fill:#457AA5;} - .st21{fill:#1D5C87;} - .st22{filter:url(#Adobe_OpacityMaskFilter_8_);} - .st23{mask:url(#mask-42_2_);fill:#467DA8;} - .st24{fill:#FEFEFE;} - .st25{fill:#D6DEE6;} - .st26{fill:#D0D2D3;} - .st27{filter:url(#Adobe_OpacityMaskFilter_9_);} - .st28{mask:url(#mask-54_2_);fill:url(#Fill-183_1_);} - .st29{filter:url(#Adobe_OpacityMaskFilter_10_);} - .st30{mask:url(#mask-57_2_);fill:url(#Fill-188_1_);} - .st31{filter:url(#Adobe_OpacityMaskFilter_11_);} - .st32{mask:url(#mask-60_2_);fill:url(#Fill-202_1_);} - .st33{filter:url(#Adobe_OpacityMaskFilter_12_);} - .st34{mask:url(#mask-63_2_);fill:url(#Fill-207_1_);} - .st35{filter:url(#Adobe_OpacityMaskFilter_13_);} - .st36{mask:url(#mask-66_2_);fill:url(#Fill-217_1_);} - .st37{filter:url(#Adobe_OpacityMaskFilter_14_);} - .st38{mask:url(#mask-69_2_);fill:url(#Fill-222_1_);} - .st39{filter:url(#Adobe_OpacityMaskFilter_15_);} - .st40{mask:url(#mask-72_2_);fill:url(#Fill-240_1_);} - .st41{filter:url(#Adobe_OpacityMaskFilter_16_);} - .st42{mask:url(#mask-75_2_);fill:url(#Fill-245_1_);} - .st43{filter:url(#Adobe_OpacityMaskFilter_17_);} - .st44{mask:url(#mask-78_2_);fill:url(#Fill-255_1_);} - .st45{filter:url(#Adobe_OpacityMaskFilter_18_);} - .st46{mask:url(#mask-81_2_);fill:url(#Fill-260_1_);} - .st47{fill:none;stroke:#4F504F;stroke-width:4.32;} - .st48{fill:none;stroke:#4F504F;stroke-width:2.25;} - .st49{filter:url(#Adobe_OpacityMaskFilter_19_);} - .st50{mask:url(#mask-84_2_);fill:#AC8631;} - .st51{filter:url(#Adobe_OpacityMaskFilter_20_);} - .st52{mask:url(#mask-114_2_);fill:#A3802E;} - .st53{fill:#D3A43E;} - .st54{fill:#C49939;} - .st55{filter:url(#Adobe_OpacityMaskFilter_21_);} - .st56{mask:url(#mask-136_2_);fill:#DFB04B;} - .st57{fill:#FCBD56;} - .st58{fill:none;stroke:#F2EFEF;stroke-width:0.115;} - .st59{fill:#9D8043;} - .st60{fill:#BFBEC0;} - .st61{filter:url(#Adobe_OpacityMaskFilter_22_);} - .st62{mask:url(#mask-246_2_);fill:#B7B7B8;} - .st63{filter:url(#Adobe_OpacityMaskFilter_23_);} - .st64{mask:url(#mask-526_2_);fill:#B7B7B8;} - .st65{fill:#A1A1A3;} - .st66{fill:#D0D1D1;} - .st67{fill:none;stroke:#4F504F;stroke-width:0.115;} -</style> -<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview2733" inkscape:current-layer="Layer_1" inkscape:cx="171.33195" inkscape:cy="113.08455" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-height="1017" inkscape:window-maximized="1" inkscape:window-width="1920" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="4" objecttolerance="10" pagecolor="#ffffff" showgrid="false"> - </sodipodi:namedview> -<title id="title4">icon-chain-building</title> -<desc id="desc6">Created with Sketch.</desc> -<path id="Fill-1" class="st0" d="M242.087,82.917c0.094,0.293,3.477,0.175,4.705-0.982c0,0-0.707-0.825,0.471-2.885 - c1.119-1.953,6.746-3.672,12.744,0.076c6.92,4.324,6.473,9.367,5.648,10.44c-2.076,2.699-7.041,2.857-11.293,0.816 - c-4.162-1.998-4.289-3.305-5.011-3.682c0,0-2.588,1.151-5.174,0.953c0,0,2.437,3.812,8.344,6.687 - c7.519,3.659,14.597,2.339,17.839-1.971c1.944-2.584,1.858-11.327-8.816-17.345c-8.908-5.021-17.182-2.127-19.094,1.285 - C241.177,78.578,241.749,81.89,242.087,82.917"/> -<path id="Stroke-3" class="st1" d="M242.087,82.917c0.094,0.293,3.477,0.175,4.705-0.982c0,0-0.707-0.825,0.471-2.885 - c1.119-1.953,6.746-3.672,12.744,0.076c6.92,4.324,6.473,9.367,5.648,10.44c-2.076,2.699-7.041,2.857-11.293,0.816 - c-4.162-1.998-4.289-3.305-5.011-3.682c0,0-2.588,1.151-5.174,0.953c0,0,2.437,3.812,8.344,6.687 - c7.519,3.659,14.597,2.339,17.839-1.971c1.944-2.584,1.858-11.327-8.816-17.345c-8.908-5.021-17.182-2.127-19.094,1.285 - C241.177,78.578,241.749,81.89,242.087,82.917z"/> -<path id="Fill-5" class="st0" d="M208.31,63.985c0.094,0.293,3.477,0.176,4.705-0.982c0,0-0.707-0.825,0.471-2.885 - c1.119-1.953,6.746-3.672,12.744,0.076c6.92,4.324,6.473,9.367,5.648,10.439c-2.076,2.7-7.041,2.859-11.293,0.819 - c-4.162-2-4.289-3.307-5.011-3.684c0,0-2.588,1.153-5.174,0.953c0,0,2.437,3.812,8.344,6.686c7.519,3.66,14.597,2.34,17.839-1.97 - c1.944-2.583,1.858-11.327-8.816-17.344c-8.908-5.022-17.182-2.128-19.094,1.284C207.4,59.647,207.974,62.957,208.31,63.985"/> -<path id="Stroke-7" class="st1" d="M208.31,63.985c0.094,0.293,3.477,0.176,4.705-0.982c0,0-0.707-0.825,0.471-2.885 - c1.119-1.953,6.746-3.672,12.744,0.076c6.92,4.324,6.473,9.367,5.648,10.439c-2.076,2.7-7.041,2.859-11.293,0.819 - c-4.162-2-4.289-3.307-5.011-3.684c0,0-2.588,1.153-5.174,0.953c0,0,2.437,3.812,8.344,6.686c7.519,3.66,14.597,2.34,17.839-1.97 - c1.944-2.583,1.858-11.327-8.816-17.344c-8.908-5.022-17.182-2.128-19.094,1.284C207.4,59.647,207.974,62.957,208.31,63.985z"/> -<defs> - <filter id="Adobe_OpacityMaskFilter" filterUnits="userSpaceOnUse" x="224.763" y="63.426" width="30.06" height="23.889"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> -</defs> -<mask maskUnits="userSpaceOnUse" x="224.763" y="63.426" width="30.06" height="23.889" id="mask-2_2_"> - <g id="g18_1_" class="st2"> - <path id="path-1_2_" class="st3" d="M225.212,68.121c-1.146,3.592-0.762,11.01,9.283,16.52c5.969,3.273,10.49,2.731,12.598,2.473 - c3.462-0.425,7.271-3.55,7.672-6.998c0.187-1.629-0.117-3.402-0.356-3.419c-2.769-0.169-4.349,0.384-4.99,0.712 - c0,0,0.817,3.429-3.449,4.953c-1.379,0.492-5.156,0.798-9.402-1.517c-4.12-2.25-5.147-4.293-6.081-6.302 - c-2.269-4.889,2.098-6.034,2.003-6.672c-0.115-0.761-1.27-3.821-2.17-4.439c-0.007-0.004-0.017-0.006-0.031-0.006 - C229.854,63.426,226.004,65.641,225.212,68.121"/> - </g> -</mask> -<linearGradient id="Fill-10_1_" gradientUnits="userSpaceOnUse" x1="-653.1445" y1="50.4992" x2="-652.886" y2="51.6065" gradientTransform="matrix(30.0601 0 0 23.8889 19869.4102 -1144.5823)"> - <stop offset="0" style="stop-color:#E6E7E7"/> - <stop offset="1" style="stop-color:#A7A9AC"/> -</linearGradient> -<path id="Fill-10" class="st4" d="M225.212,68.121c-1.146,3.592-0.762,11.01,9.283,16.52c5.969,3.273,10.49,2.731,12.598,2.473 - c3.462-0.425,7.271-3.55,7.672-6.998c0.187-1.629-0.117-3.402-0.356-3.419c-2.769-0.169-4.349,0.384-4.99,0.712 - c0,0,0.817,3.429-3.449,4.953c-1.379,0.492-5.156,0.798-9.402-1.517c-4.12-2.25-5.147-4.293-6.081-6.302 - c-2.269-4.889,2.098-6.034,2.003-6.672c-0.115-0.761-1.27-3.821-2.17-4.439c-0.007-0.004-0.017-0.006-0.031-0.006 - C229.854,63.426,226.004,65.641,225.212,68.121"/> -<path id="Stroke-13" class="st1" d="M230.319,63.432c0.9,0.617,2.055,3.678,2.17,4.439c0.096,0.638-4.272,1.783-2.002,6.671 - c0.934,2.009,1.961,4.052,6.08,6.302c4.246,2.317,8.023,2.01,9.402,1.518c4.266-1.524,3.45-4.953,3.45-4.953 - c0.64-0.329,2.22-0.881,4.99-0.711c0.238,0.015,0.543,1.789,0.355,3.418c-0.4,3.448-4.209,6.573-7.672,6.998 - c-2.107,0.257-6.628,0.8-12.597-2.473c-10.045-5.51-10.43-12.928-9.283-16.52C226.028,65.563,230.101,63.286,230.319,63.432z"/> -<defs> - <filter id="Adobe_OpacityMaskFilter_1_" filterUnits="userSpaceOnUse" x="235.558" y="62.926" width="16.631" height="9.967"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> -</defs> -<mask maskUnits="userSpaceOnUse" x="235.558" y="62.926" width="16.631" height="9.967" id="mask-5_2_"> - <g id="g34_1_" class="st5"> - <path id="path-4_2_" class="st3" d="M235.558,62.957l1.209,2.298l0.769,2.363c-0.092-0.551,6.338,0.907,9.666,5.275 - c1.004-0.234,1.006-0.222,2.243-0.597c1.247-0.379,2.744-0.252,2.744-0.252c-1.623-3.242-9.564-9.118-15.859-9.118 - C236.07,62.926,235.812,62.937,235.558,62.957"/> - </g> -</mask> -<linearGradient id="Fill-15_1_" gradientUnits="userSpaceOnUse" x1="-635.3679" y1="121.2468" x2="-634.3674" y2="122.158" gradientTransform="matrix(16.631 0 0 9.967 10802.126 -1145.0762)"> - <stop offset="0" style="stop-color:#E6E7E7"/> - <stop offset="1" style="stop-color:#A7A9AC"/> -</linearGradient> -<path id="Fill-15" class="st6" d="M235.558,62.957l1.209,2.298l0.769,2.363c-0.092-0.551,6.338,0.907,9.666,5.275 - c1.004-0.234,1.006-0.222,2.243-0.597c1.247-0.379,2.744-0.252,2.744-0.252c-1.623-3.242-9.564-9.118-15.859-9.118 - C236.07,62.926,235.812,62.937,235.558,62.957"/> -<path id="Stroke-18" class="st1" d="M237.536,67.619l-0.77-2.364l-1.209-2.297c6.401-0.522,14.942,5.711,16.631,9.086 - c0,0-1.496-0.127-2.744,0.252c-1.236,0.375-1.238,0.363-2.242,0.597C243.874,68.525,237.444,67.067,237.536,67.619z"/> -<path id="Fill-20" class="st0" d="M44.926,83.588c0.297,0.078,2.029-2.83,1.723-4.49c0,0-1.077,0.15-2.171-1.957 - c-1.036-1.996,0.566-7.658,6.965-10.672c7.382-3.477,11.38-0.369,11.836,0.904c1.145,3.207-1.412,7.467-5.429,9.936 - c-3.935,2.418-5.102,1.814-5.81,2.218c0,0-0.433,2.801-2.001,4.868c0,0,4.525,0.015,10.139-3.395 - c7.149-4.34,9.871-11.006,8.005-16.064c-1.119-3.034-8.517-7.696-19.356-1.981c-9.046,4.77-11.093,13.293-9.26,16.748 - C40.786,82.002,43.879,83.313,44.926,83.588"/> -<path id="Stroke-22" class="st1" d="M44.926,83.588c0.297,0.078,2.029-2.83,1.723-4.49c0,0-1.077,0.15-2.171-1.957 - c-1.036-1.996,0.566-7.658,6.965-10.672c7.382-3.477,11.38-0.369,11.836,0.904c1.145,3.207-1.412,7.467-5.429,9.936 - c-3.935,2.418-5.102,1.814-5.81,2.218c0,0-0.433,2.801-2.001,4.868c0,0,4.525,0.015,10.139-3.395 - c7.149-4.34,9.871-11.006,8.005-16.064c-1.119-3.034-8.517-7.696-19.356-1.981c-9.046,4.77-11.093,13.293-9.26,16.748 - C40.786,82.002,43.879,83.313,44.926,83.588z"/> -<defs> - <filter id="Adobe_OpacityMaskFilter_2_" filterUnits="userSpaceOnUse" x="21.959" y="70.389" width="30.005" height="23.878"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> -</defs> -<mask maskUnits="userSpaceOnUse" x="21.959" y="70.389" width="30.005" height="23.878" id="mask-8_2_"> - <g id="g52_1_" class="st7"> - <path id="path-7_2_" class="st3" d="M46.341,70.421c-1.643,2.232-2.033,3.863-2.104,4.579c0,0,3.324,1.17,2.296,5.583 - c-0.333,1.424-2.121,4.767-6.367,7.08c-4.122,2.246-6.396,2.004-8.591,1.699c-5.337-0.739-3.937-5.032-4.524-5.295 - c-0.704-0.316-3.901-1.002-4.907-0.578c-0.243,0.102-0.532,4.76,1.177,6.832c2.398,2.908,8.843,6.601,18.914,1.14 - c5.983-3.245,7.976-7.339,8.901-9.252c1.518-3.138,0.953-8.032-1.73-10.237c-1.125-0.925-2.558-1.583-2.964-1.583 - C46.391,70.389,46.357,70.399,46.341,70.421"/> - </g> -</mask> -<linearGradient id="Fill-25_1_" gradientUnits="userSpaceOnUse" x1="-653.4116" y1="50.9084" x2="-652.5302" y2="51.2347" gradientTransform="matrix(30.0051 0 0 23.8779 19629.4277 -1137.6095)"> - <stop offset="0" style="stop-color:#E6E7E7"/> - <stop offset="1" style="stop-color:#A7A9AC"/> -</linearGradient> -<path id="Fill-25" class="st8" d="M46.341,70.421c-1.643,2.232-2.033,3.863-2.104,4.579c0,0,3.324,1.17,2.296,5.583 - c-0.333,1.424-2.121,4.767-6.367,7.08c-4.122,2.246-6.396,2.004-8.591,1.699c-5.337-0.739-3.937-5.032-4.524-5.295 - c-0.704-0.316-3.901-1.002-4.907-0.578c-0.243,0.102-0.532,4.76,1.177,6.832c2.398,2.908,8.843,6.601,18.914,1.14 - c5.983-3.245,7.976-7.339,8.901-9.252c1.518-3.138,0.953-8.032-1.73-10.237c-1.125-0.925-2.558-1.583-2.964-1.583 - C46.391,70.389,46.357,70.399,46.341,70.421"/> -<path id="Stroke-28" class="st1" d="M22.145,83.489c1.005-0.424,4.203,0.262,4.906,0.578c0.587,0.264-0.813,4.557,4.524,5.295 - c2.195,0.305,4.469,0.547,8.591-1.699c4.247-2.313,6.034-5.656,6.367-7.08c1.029-4.412-2.296-5.582-2.296-5.582 - c0.071-0.717,0.462-2.348,2.104-4.58c0.142-0.194,1.798,0.509,3.066,1.55c2.682,2.205,3.248,7.1,1.729,10.239 - c-0.925,1.912-2.918,6.006-8.9,9.252c-10.071,5.461-16.517,1.767-18.915-1.141C21.613,88.249,21.902,83.591,22.145,83.489z"/> -<defs> - <filter id="Adobe_OpacityMaskFilter_3_" filterUnits="userSpaceOnUse" x="24.58" y="69.737" width="16.645" height="9.949"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> -</defs> -<mask maskUnits="userSpaceOnUse" x="24.58" y="69.737" width="16.645" height="9.949" id="mask-11_2_"> - <g id="g68_1_" class="st9"> - <path id="path-10_2_" class="st3" d="M24.58,78.827l2.587,0.228l2.404,0.631c-0.514-0.221,4.194-4.836,9.67-5.267 - c0.345-0.973,0.357-0.967,0.709-2.21c0.357-1.253,1.275-2.442,1.275-2.442c-0.184-0.02-0.383-0.03-0.596-0.03 - C36.52,69.737,27.459,73.444,24.58,78.827"/> - </g> -</mask> -<linearGradient id="Fill-30_1_" gradientUnits="userSpaceOnUse" x1="-635.3737" y1="122.3767" x2="-634.3741" y2="121.4656" gradientTransform="matrix(16.645 0 0 9.949 10600.6123 -1138.2651)"> - <stop offset="0" style="stop-color:#E6E7E7"/> - <stop offset="1" style="stop-color:#A7A9AC"/> -</linearGradient> -<path id="Fill-30" class="st10" d="M24.58,78.827l2.587,0.228l2.404,0.631c-0.514-0.221,4.194-4.836,9.67-5.267 - c0.345-0.973,0.357-0.967,0.709-2.21c0.357-1.253,1.275-2.442,1.275-2.442c-0.184-0.02-0.383-0.03-0.596-0.03 - C36.52,69.737,27.459,73.444,24.58,78.827"/> -<path id="Stroke-33" class="st1" d="M29.571,79.686l-2.404-0.631l-2.587-0.228c3.028-5.662,12.892-9.469,16.645-9.061 - c0,0-0.918,1.19-1.275,2.443c-0.353,1.243-0.365,1.237-0.71,2.209C33.764,74.85,29.057,79.465,29.571,79.686z"/> -<defs> - <filter id="Adobe_OpacityMaskFilter_4_" filterUnits="userSpaceOnUse" x="159.526" y="0.504" width="71.394" height="40.691"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> -</defs> -<mask maskUnits="userSpaceOnUse" x="159.526" y="0.504" width="71.394" height="40.691" id="mask-14_2_"> - <g id="g84_1_" class="st11"> - <path id="path-13_2_" class="st3" d="M159.527,1.205l68.148,39.991c1.594-0.849,2.603-0.829,3.244-0.454 - c-22.717-13.332-45.432-26.658-68.15-39.99c-0.261-0.153-0.583-0.247-0.982-0.247C161.209,0.505,160.47,0.702,159.527,1.205"/> - </g> -</mask> -<path id="Fill-35" class="st12" d="M161.767,0.504c-0.408,0.003-0.894,0.106-1.475,0.342h-0.002 - c-0.238,0.096-0.492,0.213-0.764,0.359l68.148,39.99c0.273-0.146,0.527-0.263,0.766-0.359c1.161-0.471,1.948-0.406,2.48-0.096 - L162.769,0.752C162.503,0.596,162.174,0.5,161.767,0.504z"/> -<polygon id="Fill-42" class="st13" points="227.675,41.196 206.2,52.615 138.05,12.623 159.526,1.205 "/> -<defs> - <filter id="Adobe_OpacityMaskFilter_5_" filterUnits="userSpaceOnUse" x="135.835" y="0" width="69.716" height="40.257"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> -</defs> -<mask maskUnits="userSpaceOnUse" x="135.835" y="0" width="69.716" height="40.257" id="mask-18_2_"> - <g id="g105_1_" class="st14"> - <path id="path-17_2_" class="st3" d="M136.753,0c-0.281,0.006-0.592,0.091-0.92,0.265l68.148,39.992 - c0.613-0.325,1.168-0.342,1.571-0.105c-22.717-13.329-45.432-26.66-68.148-39.989c-0.175-0.103-0.376-0.159-0.599-0.163"/> - </g> -</mask> -<path id="Fill-44" class="st15" d="M136.804,0c-0.222-0.004-0.463,0.044-0.717,0.146c-0.083,0.034-0.168,0.074-0.252,0.119 - l68.146,39.992c0.086-0.046,0.168-0.086,0.254-0.119c0.509-0.207,0.968-0.19,1.316,0.014l-68.148-39.99 - C137.228,0.06,137.026,0.004,136.804,0z"/> -<defs> - <filter id="Adobe_OpacityMaskFilter_6_" filterUnits="userSpaceOnUse" x="43.257" y="133.857" width="70.838" height="45.912"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> -</defs> -<mask maskUnits="userSpaceOnUse" x="43.257" y="133.857" width="70.838" height="45.912" id="mask-22_2_"> - <g id="g125_1_" class="st16"> - <path id="path-21_2_" class="st3" d="M45.947,139.777c22.717,13.33,45.431,26.66,68.148,39.992 - c-1.664-0.977-2.698-3.034-2.689-5.923l-68.15-39.989C43.249,136.744,44.281,138.8,45.947,139.777"/> - </g> -</mask> -<path id="Fill-51" class="st17" d="M43.257,133.857c-0.001,0.678,0.054,1.306,0.16,1.889l-0.002-0.002 - c0.109,0.586,0.27,1.124,0.479,1.611c0.243,0.563,0.547,1.054,0.91,1.469c0.335,0.385,0.717,0.705,1.141,0.953l68.15,39.992 - c-0.426-0.25-0.808-0.569-1.143-0.955c-0.363-0.415-0.668-0.904-0.908-1.469c-0.21-0.484-0.369-1.021-0.479-1.611 - c-0.107-0.58-0.162-1.214-0.16-1.889L43.257,133.857z"/> -<polygon id="Fill-64" class="st18" points="133.302,91.375 65.152,51.384 65.177,40.645 133.327,80.635 "/> -<polygon id="Fill-66" class="st13" points="135.628,76.603 67.478,36.613 135.833,0.265 203.982,40.257 "/> -<defs> - <filter id="Adobe_OpacityMaskFilter_7_" filterUnits="userSpaceOnUse" x="65.178" y="36.613" width="70.45" height="44.021"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> -</defs> -<mask maskUnits="userSpaceOnUse" x="65.178" y="36.613" width="70.45" height="44.021" id="mask-30_2_"> - <g id="g167_1_" class="st19"> - <path id="path-29_2_" class="st3" d="M65.177,40.644l68.151,39.99c0.046-1.68,1.054-3.37,2.3-4.031l-68.151-39.99 - C66.232,37.273,65.224,38.962,65.177,40.644"/> - </g> -</mask> -<path id="Fill-69" class="st20" d="M67.478,36.613c-0.08,0.042-0.161,0.088-0.238,0.141h-0.002c-0.14,0.091-0.276,0.194-0.408,0.311 - c-0.125,0.111-0.246,0.232-0.361,0.363c-0.202,0.223-0.383,0.476-0.547,0.75c-0.182,0.307-0.338,0.636-0.459,0.98l-0.002-0.002 - c-0.167,0.477-0.268,0.984-0.283,1.488l68.15,39.99c0.014-0.504,0.115-1.009,0.281-1.488c0.121-0.344,0.274-0.675,0.459-0.979 - c0.162-0.272,0.348-0.524,0.549-0.75c0.116-0.131,0.237-0.251,0.361-0.363h0.002c0.131-0.115,0.267-0.217,0.406-0.309h0.002 - c0.078-0.053,0.158-0.102,0.24-0.143L67.478,36.613z"/> -<polygon id="Fill-88" class="st18" points="111.405,173.846 43.256,133.857 43.421,66.802 111.569,106.791 "/> -<polygon id="Fill-90" class="st13" points="114.146,101.56 45.998,61.569 65.152,51.384 133.302,91.375 "/> -<path id="Fill-92" class="st21" d="M203.982,40.257c1.244-0.662,2.248-0.041,2.246,1.379l-0.027,10.978l21.474-11.419 - c4.364-2.32,4.354,1.852,4.354,2.072l-0.165,66.53c-0.013,5.672-4.026,12.396-8.972,15.026l-102.568,54.538 - c-4.938,2.625-8.934,0.158-8.918-5.515l0.164-67.055c0.008-3.513,2.449-5.144,2.576-5.231l19.156-10.185l0.026-10.741 - c0.047-1.681,1.054-3.371,2.3-4.031L203.982,40.257z"/> -<defs> - <filter id="Adobe_OpacityMaskFilter_8_" filterUnits="userSpaceOnUse" x="43.423" y="61.568" width="70.722" height="45.225"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> -</defs> -<mask maskUnits="userSpaceOnUse" x="43.423" y="61.568" width="70.722" height="45.225" id="mask-42_2_"> - <g id="g230_1_" class="st22"> - <path id="path-41_2_" class="st3" d="M43.421,66.802l68.148,39.99c0.008-3.513,2.45-5.145,2.577-5.232L45.997,61.568 - C45.868,61.656,43.429,63.287,43.421,66.802"/> - </g> -</mask> -<path id="Fill-95" class="st23" d="M45.997,61.568c-0.031,0.02-0.198,0.133-0.43,0.338c-0.149,0.133-0.329,0.303-0.518,0.516 - c-0.231,0.26-0.478,0.582-0.709,0.969l68.148,39.99c0.229-0.386,0.477-0.708,0.709-0.967h0.002v-0.002 - c0.187-0.214,0.367-0.383,0.516-0.516c0.233-0.205,0.398-0.314,0.43-0.336L45.997,61.568z M112.489,103.381L44.341,63.393 - c-0.203,0.335-0.393,0.722-0.545,1.158c-0.209,0.596-0.352,1.283-0.373,2.068h0.002v0.002c-0.002,0.059-0.002,0.119-0.002,0.182 - l68.146,39.99c0-0.06,0.001-0.124,0.002-0.186c0.022-0.783,0.163-1.472,0.373-2.064 - C112.096,104.105,112.286,103.717,112.489,103.381z"/> -<polygon id="Fill-114" class="st24" points="168.927,152.881 157.174,159.105 157.238,126.874 168.989,120.649 "/> -<polygon id="Fill-116" class="st24" points="185.066,144.173 173.312,150.398 173.377,118.164 185.128,111.939 "/> -<polygon id="Fill-118" class="st24" points="202.366,67.72 189.395,74.591 189.43,56.992 202.401,50.12 "/> -<path id="Fill-120" class="st25" d="M191.148,57.671l9.959-5.277l-0.027,13.867c0,0-0.604-7.379-4.836-8.479 - C192.36,56.78,191.148,57.671,191.148,57.671"/> -<polygon id="Fill-122" class="st24" points="151.14,94.859 138.167,101.73 138.202,84.13 151.175,77.257 "/> -<path id="Fill-124" class="st25" d="M139.732,84.91l9.959-5.275L149.664,93.5c0,0-0.606-7.377-4.84-8.477 - C140.939,84.019,139.732,84.91,139.732,84.91"/> -<polygon id="Fill-126" class="st24" points="202.316,93.914 189.347,100.785 189.378,83.189 202.349,76.318 "/> -<path id="Fill-128" class="st25" d="M191.095,83.867l9.961-5.276l-0.027,13.872c0,0-0.602-7.385-4.837-8.482 - C192.308,82.974,191.095,83.867,191.095,83.867"/> -<polygon id="Fill-130" class="st24" points="184.993,76.925 172.02,83.798 172.055,66.197 185.028,59.324 "/> -<path id="Fill-132" class="st25" d="M173.773,66.876l9.957-5.275l-0.025,13.865c0,0-0.604-7.377-4.834-8.481 - C174.982,65.986,173.773,66.876,173.773,66.876"/> -<polygon id="Fill-134" class="st24" points="184.942,103.117 171.97,109.991 172.004,92.395 184.976,85.523 "/> -<path id="Fill-136" class="st25" d="M173.72,93.074l9.959-5.277l-0.025,13.871c0,0-0.604-7.385-4.836-8.487 - C174.933,92.179,173.72,93.074,173.72,93.074"/> -<polygon id="Fill-138" class="st24" points="168.605,85.605 155.627,92.483 155.662,74.881 168.638,68.007 "/> -<path id="Fill-140" class="st25" d="M157.382,75.56l9.963-5.278l-0.027,13.866c0,0-0.608-7.377-4.841-8.477 - C158.593,74.669,157.382,75.56,157.382,75.56"/> -<polygon id="Fill-142" class="st24" points="168.553,111.8 155.575,118.673 155.611,101.077 168.587,94.204 "/> -<path id="Fill-144" class="st25" d="M157.331,101.755l9.963-5.276l-0.027,13.869c0,0-0.608-7.38-4.84-8.482 - C158.54,100.864,157.331,101.755,157.331,101.755"/> -<polygon id="Fill-146" class="st24" points="151.091,121.05 138.118,127.925 138.15,110.325 151.122,103.454 "/> -<path id="Fill-148" class="st25" d="M139.683,111.105l9.956-5.274l-0.026,13.87c0,0-0.607-7.381-4.842-8.481 - C140.89,110.214,139.683,111.105,139.683,111.105"/> -<polygon id="Fill-150" class="st24" points="202.267,119.57 189.296,126.438 189.33,108.843 202.3,101.97 "/> -<path id="Fill-152" class="st25" d="M191.046,109.517l9.961-5.275l-0.027,13.869c0,0-0.604-7.381-4.838-8.479 - C192.259,108.626,191.046,109.517,191.046,109.517"/> -<polygon id="Fill-154" class="st24" points="150.534,146.972 137.562,153.847 137.598,136.246 150.569,129.374 "/> -<path id="Fill-156" class="st25" d="M139.317,136.921l9.957-5.274l-0.027,13.871c0,0-0.606-7.379-4.834-8.483 - C140.526,136.035,139.317,136.921,139.317,136.921"/> -<polygon id="Fill-158" class="st24" points="130.567,116.349 117.592,123.227 117.625,105.634 130.602,98.759 "/> -<path id="Fill-160" class="st25" d="M119.347,106.304l9.957-5.273l-0.027,13.875c0,0-0.604-7.387-4.834-8.483 - C120.556,105.42,119.347,106.304,119.347,106.304"/> -<polygon id="Fill-162" class="st24" points="130.515,142.55 117.54,149.423 117.576,131.825 130.55,124.949 "/> -<path id="Fill-164" class="st25" d="M119.296,132.5l9.957-5.273l-0.027,13.872c0,0-0.604-7.383-4.834-8.486 - C120.506,131.612,119.296,132.5,119.296,132.5"/> -<polygon id="Fill-166" class="st24" points="226.732,65.407 213.759,72.279 213.794,54.687 226.765,47.816 "/> -<path id="Fill-168" class="st25" d="M215.511,55.358l9.96-5.274l-0.028,13.875c0,0-0.599-7.389-4.832-8.483 - C216.724,54.473,215.511,55.358,215.511,55.358"/> -<polygon id="Fill-170" class="st24" points="226.679,91.604 213.71,98.476 213.741,80.876 226.714,74.007 "/> -<path id="Fill-172" class="st25" d="M215.462,81.554l9.961-5.275l-0.029,13.872c0,0-0.602-7.384-4.834-8.484 - C216.675,80.665,215.462,81.554,215.462,81.554"/> -<path id="Fill-174" class="st26" d="M34.177,89.43c-0.096,0.291-3.665,0.014-4.89-0.775c0,0,0.606-1.442-0.284-3.098 - c-1.065-1.982-6.743-3.676-12.743,0.064c-6.924,4.321-6.48,9.364-5.657,10.438c2.072,2.701,7.04,2.863,11.292,0.826 - c4.163-1.996,4.384-3.437,5.106-3.812c0,0,3.888,1.138,5.082,1.091c0,0-2.441,3.809-8.349,6.678 - c-7.523,3.654-14.599,2.326-17.838-1.984c-1.943-2.584-1.849-11.328,8.83-17.338c8.912-5.014,17.183-2.113,19.093,1.299 - C35.09,85.09,34.514,88.401,34.177,89.43"/> -<path id="Stroke-176" class="st1" d="M34.177,89.43c-0.096,0.291-3.665,0.014-4.89-0.775c0,0,0.606-1.442-0.284-3.098 - c-1.065-1.982-6.743-3.676-12.743,0.064c-6.924,4.321-6.48,9.364-5.657,10.438c2.072,2.701,7.04,2.863,11.292,0.826 - c4.163-1.996,4.384-3.437,5.106-3.812c0,0,3.888,1.138,5.082,1.091c0,0-2.441,3.809-8.349,6.678 - c-7.523,3.654-14.599,2.326-17.838-1.984c-1.943-2.584-1.849-11.328,8.83-17.338c8.912-5.014,17.183-2.113,19.093,1.299 - C35.09,85.09,34.514,88.401,34.177,89.43z"/> -<path id="Fill-178" class="st26" d="M264.179,90.833c-0.094,0.291-4.092,1.395-5.316,0.605c0,0,0.605-1.441-0.284-3.097 - c-1.066-1.983-6.744-3.676-12.744,0.064c-6.924,4.319-6.48,9.364-5.656,10.438c2.072,2.701,7.039,2.863,11.291,0.824 - c4.164-1.994,4.385-3.436,5.107-3.813c0,0,3.887,1.141,5.081,1.092c0,0-2.44,3.811-8.348,6.68c-7.524,3.654-14.6,2.326-17.838-1.984 - c-1.943-2.586-1.85-11.33,8.83-17.338c8.91-5.014,17.182-2.116,19.092,1.299C264.665,87.874,264.517,89.806,264.179,90.833"/> -<path id="Stroke-180" class="st1" d="M264.179,90.833c-0.094,0.291-4.092,1.395-5.316,0.605c0,0,0.605-1.441-0.284-3.097 - c-1.066-1.983-6.744-3.676-12.744,0.064c-6.924,4.319-6.48,9.364-5.656,10.438c2.072,2.701,7.039,2.863,11.291,0.824 - c4.164-1.994,4.385-3.436,5.107-3.813c0,0,3.887,1.141,5.081,1.092c0,0-2.44,3.811-8.348,6.68c-7.524,3.654-14.6,2.326-17.838-1.984 - c-1.943-2.586-1.85-11.33,8.83-17.338c8.91-5.014,17.182-2.116,19.092,1.299C264.665,87.874,264.517,89.806,264.179,90.833z"/> -<defs> - <filter id="Adobe_OpacityMaskFilter_9_" filterUnits="userSpaceOnUse" x="217.354" y="91.352" width="30.005" height="23.879"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> -</defs> -<mask maskUnits="userSpaceOnUse" x="217.354" y="91.352" width="30.005" height="23.879" id="mask-54_2_"> - <g id="g324_1_" class="st27"> - <path id="path-53_2_" class="st3" d="M241.735,91.384c-1.642,2.234-2.033,3.863-2.105,4.58c0,0,3.326,1.172,2.297,5.582 - c-0.334,1.425-2.121,4.765-6.367,7.08c-4.122,2.245-6.395,2.001-8.59,1.699c-5.338-0.739-3.938-5.032-4.525-5.296 - c-0.701-0.315-3.901-1.001-4.907-0.577c-0.242,0.101-0.531,4.76,1.178,6.832c2.399,2.908,8.842,6.603,18.914,1.141 - c5.983-3.247,7.976-7.341,8.901-9.252c1.517-3.139,0.953-8.034-1.731-10.239c-1.124-0.924-2.558-1.582-2.963-1.582 - C241.786,91.352,241.751,91.362,241.735,91.384"/> - </g> -</mask> -<linearGradient id="Fill-183_1_" gradientUnits="userSpaceOnUse" x1="-653.4114" y1="50.9056" x2="-652.5298" y2="51.2319" gradientTransform="matrix(30.0049 0 0 23.879 19824.6797 -1116.635)"> - <stop offset="0" style="stop-color:#E6E7E7"/> - <stop offset="1" style="stop-color:#A7A9AC"/> -</linearGradient> -<path id="Fill-183" class="st28" d="M241.735,91.384c-1.642,2.234-2.033,3.863-2.105,4.58c0,0,3.326,1.172,2.297,5.582 - c-0.334,1.425-2.121,4.765-6.367,7.08c-4.122,2.245-6.395,2.001-8.59,1.699c-5.338-0.739-3.938-5.032-4.525-5.296 - c-0.701-0.315-3.901-1.001-4.907-0.577c-0.242,0.101-0.531,4.76,1.178,6.832c2.399,2.908,8.842,6.603,18.914,1.141 - c5.983-3.247,7.976-7.341,8.901-9.252c1.517-3.139,0.953-8.034-1.731-10.239c-1.124-0.924-2.558-1.582-2.963-1.582 - C241.786,91.352,241.751,91.362,241.735,91.384"/> -<path id="Stroke-186" class="st1" d="M217.538,104.452c1.006-0.424,4.205,0.262,4.906,0.578c0.588,0.264-0.812,4.557,4.526,5.295 - c2.195,0.303,4.468,0.547,8.589-1.699c4.247-2.315,6.034-5.654,6.368-7.08c1.029-4.41-2.297-5.582-2.297-5.582 - c0.072-0.717,0.463-2.346,2.105-4.58c0.141-0.194,1.799,0.509,3.065,1.55c2.683,2.205,3.248,7.1,1.73,10.239 - c-0.924,1.912-2.918,6.006-8.9,9.252c-10.072,5.463-16.516,1.767-18.914-1.141C217.007,109.212,217.296,104.554,217.538,104.452z"/> -<defs> - <filter id="Adobe_OpacityMaskFilter_10_" filterUnits="userSpaceOnUse" x="219.976" y="90.699" width="16.644" height="9.95"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> -</defs> -<mask maskUnits="userSpaceOnUse" x="219.976" y="90.699" width="16.644" height="9.95" id="mask-57_2_"> - <g id="g340_1_" class="st29"> - <path id="path-56_2_" class="st3" d="M219.976,99.79l2.586,0.228l2.404,0.631c-0.513-0.22,4.194-4.836,9.667-5.268 - c0.347-0.971,0.36-0.966,0.712-2.209c0.358-1.254,1.275-2.443,1.275-2.443c-0.185-0.02-0.384-0.03-0.596-0.03 - C231.915,90.7,222.854,94.404,219.976,99.79"/> - </g> -</mask> -<linearGradient id="Fill-188_1_" gradientUnits="userSpaceOnUse" x1="-635.3713" y1="122.3644" x2="-634.3717" y2="121.4533" gradientTransform="matrix(16.644 0 0 9.95 10795.3311 -1117.3027)"> - <stop offset="0" style="stop-color:#E6E7E7"/> - <stop offset="1" style="stop-color:#A7A9AC"/> -</linearGradient> -<path id="Fill-188" class="st30" d="M219.976,99.79l2.586,0.228l2.404,0.631c-0.513-0.22,4.194-4.836,9.667-5.268 - c0.347-0.971,0.36-0.966,0.712-2.209c0.358-1.254,1.275-2.443,1.275-2.443c-0.185-0.02-0.384-0.03-0.596-0.03 - C231.915,90.7,222.854,94.404,219.976,99.79"/> -<path id="Stroke-191" class="st1" d="M224.966,100.649l-2.404-0.631l-2.586-0.228c3.027-5.664,12.892-9.469,16.644-9.061 - c0,0-0.918,1.19-1.275,2.443c-0.352,1.243-0.365,1.239-0.711,2.209C229.159,95.813,224.452,100.428,224.966,100.649z"/> -<path id="Fill-193" class="st26" d="M229.853,110.682c-0.094,0.291-3.664,0.014-4.889-0.775c0,0,0.606-1.442-0.283-3.096 - c-1.066-1.984-6.744-3.678-12.744,0.064c-6.924,4.319-6.48,9.364-5.656,10.436c2.072,2.701,7.039,2.863,11.291,0.826 - c4.164-1.996,4.385-3.437,5.107-3.812c0,0,3.887,1.138,5.08,1.091c0,0-2.439,3.809-8.347,6.678c-7.524,3.654-14.6,2.328-17.84-1.984 - c-1.942-2.584-1.848-11.328,8.832-17.338c8.91-5.014,17.181-2.113,19.092,1.299C230.767,106.342,230.191,109.653,229.853,110.682"/> -<path id="Stroke-195" class="st1" d="M229.853,110.682c-0.094,0.291-3.664,0.014-4.889-0.775c0,0,0.606-1.442-0.283-3.096 - c-1.066-1.984-6.744-3.678-12.744,0.064c-6.924,4.319-6.48,9.364-5.656,10.436c2.072,2.701,7.039,2.863,11.291,0.826 - c4.164-1.996,4.385-3.437,5.107-3.812c0,0,3.887,1.138,5.08,1.091c0,0-2.439,3.809-8.347,6.678c-7.524,3.654-14.6,2.328-17.84-1.984 - c-1.942-2.584-1.848-11.328,8.832-17.338c8.91-5.014,17.181-2.113,19.092,1.299C230.767,106.342,230.191,109.653,229.853,110.682z" - /> -<path id="Fill-197" class="st26" d="M213.442,119.624c-0.096,0.291-3.664,0.014-4.889-0.775c0,0,0.606-1.442-0.285-3.096 - c-1.064-1.984-6.742-3.678-12.742,0.064c-6.924,4.319-6.48,9.362-5.658,10.436c2.072,2.701,7.041,2.863,11.293,0.826 - c4.162-1.996,4.385-3.437,5.105-3.812c0,0,3.889,1.138,5.082,1.091c0,0-2.441,3.809-8.347,6.678 - c-7.524,3.654-14.6,2.328-17.84-1.984c-1.942-2.584-1.848-11.328,8.83-17.338c8.912-5.014,17.183-2.113,19.094,1.299 - C214.356,115.284,213.78,118.595,213.442,119.624"/> -<path id="Stroke-199" class="st1" d="M213.442,119.624c-0.096,0.291-3.664,0.014-4.889-0.775c0,0,0.606-1.442-0.285-3.096 - c-1.064-1.984-6.742-3.678-12.742,0.064c-6.924,4.319-6.48,9.362-5.658,10.436c2.072,2.701,7.041,2.863,11.293,0.826 - c4.162-1.996,4.385-3.437,5.105-3.812c0,0,3.889,1.138,5.082,1.091c0,0-2.441,3.809-8.347,6.678 - c-7.524,3.654-14.6,2.328-17.84-1.984c-1.942-2.584-1.848-11.328,8.83-17.338c8.912-5.014,17.183-2.113,19.094,1.299 - C214.356,115.284,213.78,118.595,213.442,119.624z"/> -<defs> - <filter id="Adobe_OpacityMaskFilter_11_" filterUnits="userSpaceOnUse" x="167.398" y="118.584" width="30.004" height="23.881"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> -</defs> -<mask maskUnits="userSpaceOnUse" x="167.398" y="118.584" width="30.004" height="23.881" id="mask-60_2_"> - <g id="g360_1_" class="st31"> - <path id="path-59_2_" class="st3" d="M191.778,118.616c-1.642,2.235-2.033,3.863-2.103,4.58c0,0,3.326,1.172,2.295,5.582 - c-0.332,1.425-2.12,4.767-6.368,7.082c-4.121,2.245-6.394,2.001-8.589,1.699c-5.338-0.74-3.936-5.031-4.524-5.295 - c-0.703-0.316-3.902-1.001-4.905-0.58c-0.245,0.103-0.534,4.76,1.175,6.835c2.398,2.907,8.843,6.601,18.914,1.14 - c5.984-3.246,7.976-7.34,8.9-9.252c1.518-3.141,0.953-8.035-1.729-10.239c-1.126-0.925-2.56-1.584-2.965-1.584 - C191.829,118.584,191.794,118.595,191.778,118.616"/> - </g> -</mask> -<linearGradient id="Fill-202_1_" gradientUnits="userSpaceOnUse" x1="-653.4109" y1="50.9036" x2="-652.5294" y2="51.23" gradientTransform="matrix(30.0036 0 0 23.8807 19773.8594 -1089.4443)"> - <stop offset="0" style="stop-color:#E6E7E7"/> - <stop offset="1" style="stop-color:#A7A9AC"/> -</linearGradient> -<path id="Fill-202" class="st32" d="M191.778,118.616c-1.642,2.235-2.033,3.863-2.103,4.58c0,0,3.326,1.172,2.295,5.582 - c-0.332,1.425-2.12,4.767-6.368,7.082c-4.121,2.245-6.394,2.001-8.589,1.699c-5.338-0.74-3.936-5.031-4.524-5.295 - c-0.703-0.316-3.902-1.001-4.905-0.58c-0.245,0.103-0.534,4.76,1.175,6.835c2.398,2.907,8.843,6.601,18.914,1.14 - c5.984-3.246,7.976-7.34,8.9-9.252c1.518-3.141,0.953-8.035-1.729-10.239c-1.126-0.925-2.56-1.584-2.965-1.584 - C191.829,118.584,191.794,118.595,191.778,118.616"/> -<path id="Stroke-205" class="st1" d="M167.583,131.684c1.004-0.422,4.203,0.264,4.906,0.58c0.588,0.264-0.814,4.555,4.524,5.295 - c2.195,0.303,4.468,0.545,8.59-1.699c4.248-2.315,6.035-5.656,6.367-7.082c1.031-4.41-2.295-5.582-2.295-5.582 - c0.07-0.717,0.461-2.346,2.103-4.58c0.143-0.192,1.799,0.511,3.067,1.552c2.681,2.203,3.246,7.098,1.728,10.239 - c-0.924,1.912-2.916,6.006-8.9,9.252c-10.07,5.461-16.516,1.767-18.914-1.141C167.05,136.444,167.339,131.788,167.583,131.684z"/> -<defs> - <filter id="Adobe_OpacityMaskFilter_12_" filterUnits="userSpaceOnUse" x="170.019" y="117.933" width="16.646" height="9.95"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> -</defs> -<mask maskUnits="userSpaceOnUse" x="170.019" y="117.933" width="16.646" height="9.95" id="mask-63_2_"> - <g id="g376_1_" class="st33"> - <path id="path-62_2_" class="st3" d="M170.019,127.024l2.586,0.226l2.406,0.633c-0.516-0.222,4.193-4.836,9.668-5.267 - c0.346-0.972,0.357-0.967,0.711-2.209c0.355-1.257,1.275-2.444,1.275-2.444c-0.184-0.02-0.383-0.03-0.596-0.03 - C181.958,117.934,172.897,121.639,170.019,127.024"/> - </g> -</mask> -<linearGradient id="Fill-207_1_" gradientUnits="userSpaceOnUse" x1="-635.3762" y1="122.3644" x2="-634.3765" y2="121.4534" gradientTransform="matrix(16.646 0 0 9.95 10746.7266 -1090.0688)"> - <stop offset="0" style="stop-color:#E6E7E7"/> - <stop offset="1" style="stop-color:#A7A9AC"/> -</linearGradient> -<path id="Fill-207" class="st34" d="M170.019,127.024l2.586,0.226l2.406,0.633c-0.516-0.222,4.193-4.836,9.668-5.267 - c0.346-0.972,0.357-0.967,0.711-2.209c0.355-1.257,1.275-2.444,1.275-2.444c-0.184-0.02-0.383-0.03-0.596-0.03 - C181.958,117.934,172.897,121.639,170.019,127.024"/> -<path id="Stroke-210" class="st1" d="M175.011,127.883l-2.406-0.633l-2.586-0.226c3.027-5.664,12.892-9.469,16.646-9.061 - c0,0-0.92,1.188-1.275,2.443c-0.354,1.243-0.365,1.237-0.711,2.209C179.204,123.047,174.495,127.66,175.011,127.883z"/> -<path id="Fill-212" class="st0" d="M157.043,150.352c0.297,0.078,2.029-2.828,1.723-4.488c0,0-1.078,0.148-2.172-1.957 - c-1.035-1.998,0.566-7.66,6.965-10.672c7.381-3.477,11.38-0.371,11.837,0.904c1.144,3.205-1.413,7.467-5.43,9.936 - c-3.935,2.416-5.103,1.814-5.81,2.218c0,0-0.433,2.799-2,4.868c0,0,4.523,0.013,10.138-3.395c7.15-4.34,9.871-11.006,8.004-16.064 - c-1.117-3.034-8.516-7.696-19.355-1.981c-9.046,4.77-11.093,13.293-9.259,16.748C152.902,148.768,155.994,150.079,157.043,150.352" - /> -<path id="Stroke-214" class="st1" d="M157.043,150.352c0.297,0.078,2.029-2.828,1.723-4.488c0,0-1.078,0.148-2.172-1.957 - c-1.035-1.998,0.566-7.66,6.965-10.672c7.381-3.477,11.38-0.371,11.837,0.904c1.144,3.205-1.413,7.467-5.43,9.936 - c-3.935,2.416-5.103,1.814-5.81,2.218c0,0-0.433,2.799-2,4.868c0,0,4.523,0.013,10.138-3.395c7.15-4.34,9.871-11.006,8.004-16.064 - c-1.117-3.034-8.516-7.696-19.355-1.981c-9.046,4.77-11.093,13.293-9.259,16.748C152.902,148.768,155.994,150.079,157.043,150.352z" - /> -<defs> - <filter id="Adobe_OpacityMaskFilter_13_" filterUnits="userSpaceOnUse" x="134.721" y="136.373" width="30.004" height="23.879"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> -</defs> -<mask maskUnits="userSpaceOnUse" x="134.721" y="136.373" width="30.004" height="23.879" id="mask-66_2_"> - <g id="g394_1_" class="st35"> - <path id="path-65_2_" class="st3" d="M159.102,136.404c-1.643,2.235-2.033,3.864-2.106,4.58c0,0,3.326,1.173,2.297,5.583 - c-0.332,1.426-2.119,4.767-6.367,7.08c-4.121,2.246-6.394,2.004-8.59,1.701c-5.337-0.74-3.935-5.031-4.524-5.297 - c-0.703-0.314-3.901-1.002-4.906-0.578c-0.244,0.104-0.533,4.76,1.177,6.832c2.397,2.908,8.841,6.604,18.913,1.14 - c5.984-3.243,7.977-7.339,8.9-9.249c1.518-3.141,0.953-8.035-1.728-10.24c-1.127-0.926-2.562-1.583-2.966-1.583 - C159.152,136.373,159.118,136.383,159.102,136.404"/> - </g> -</mask> -<linearGradient id="Fill-217_1_" gradientUnits="userSpaceOnUse" x1="-653.4106" y1="50.9053" x2="-652.5292" y2="51.2316" gradientTransform="matrix(30.0039 0 0 23.8792 19741.377 -1071.616)"> - <stop offset="0" style="stop-color:#E6E7E7"/> - <stop offset="1" style="stop-color:#A7A9AC"/> -</linearGradient> -<path id="Fill-217" class="st36" d="M159.102,136.404c-1.643,2.235-2.033,3.864-2.106,4.58c0,0,3.326,1.173,2.297,5.583 - c-0.332,1.426-2.119,4.767-6.367,7.08c-4.121,2.246-6.394,2.004-8.59,1.701c-5.337-0.74-3.935-5.031-4.524-5.297 - c-0.703-0.314-3.901-1.002-4.906-0.578c-0.244,0.104-0.533,4.76,1.177,6.832c2.397,2.908,8.841,6.604,18.913,1.14 - c5.984-3.243,7.977-7.339,8.9-9.249c1.518-3.141,0.953-8.035-1.728-10.24c-1.127-0.926-2.562-1.583-2.966-1.583 - C159.152,136.373,159.118,136.383,159.102,136.404"/> -<path id="Stroke-220" class="st1" d="M134.906,149.473c1.004-0.424,4.203,0.264,4.906,0.578c0.588,0.266-0.814,4.557,4.524,5.297 - c2.195,0.303,4.468,0.545,8.59-1.701c4.248-2.313,6.035-5.654,6.367-7.08c1.029-4.41-2.297-5.582-2.297-5.582 - c0.072-0.717,0.463-2.346,2.105-4.58c0.143-0.192,1.799,0.509,3.067,1.55c2.681,2.205,3.246,7.1,1.728,10.241 - c-0.924,1.91-2.916,6.006-8.9,9.25c-10.072,5.463-16.516,1.767-18.914-1.141C134.373,154.233,134.662,149.577,134.906,149.473z"/> -<defs> - <filter id="Adobe_OpacityMaskFilter_14_" filterUnits="userSpaceOnUse" x="137.342" y="135.72" width="16.646" height="9.951"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> -</defs> -<mask maskUnits="userSpaceOnUse" x="137.342" y="135.72" width="16.646" height="9.951" id="mask-69_2_"> - <g id="g410_1_" class="st37"> - <path id="path-68_2_" class="st3" d="M137.342,144.813l2.586,0.227l2.404,0.631c-0.514-0.222,4.193-4.837,9.67-5.268 - c0.344-0.971,0.357-0.966,0.711-2.209c0.355-1.254,1.275-2.444,1.275-2.444c-0.184-0.02-0.383-0.03-0.595-0.03 - C149.283,135.72,140.221,139.425,137.342,144.813"/> - </g> -</mask> -<linearGradient id="Fill-222_1_" gradientUnits="userSpaceOnUse" x1="-635.3762" y1="122.3522" x2="-634.3765" y2="121.4411" gradientTransform="matrix(16.646 0 0 9.951 10714.0498 -1072.2822)"> - <stop offset="0" style="stop-color:#E6E7E7"/> - <stop offset="1" style="stop-color:#A7A9AC"/> -</linearGradient> -<path id="Fill-222" class="st38" d="M137.342,144.813l2.586,0.227l2.404,0.631c-0.514-0.222,4.193-4.837,9.67-5.268 - c0.344-0.971,0.357-0.966,0.711-2.209c0.355-1.254,1.275-2.444,1.275-2.444c-0.184-0.02-0.383-0.03-0.595-0.03 - C149.283,135.72,140.221,139.425,137.342,144.813"/> -<path id="Stroke-225" class="st1" d="M142.332,145.671l-2.404-0.631l-2.586-0.226c3.027-5.666,12.892-9.471,16.646-9.063 - c0,0-0.92,1.19-1.275,2.443c-0.354,1.243-0.367,1.239-0.711,2.209C146.525,140.835,141.818,145.45,142.332,145.671z"/> -<path id="Fill-227" class="st0" d="M123.83,168.448c0.297,0.078,2.031-2.828,1.723-4.488c0,0-1.077,0.148-2.17-1.957 - c-1.037-1.998,0.566-7.66,6.965-10.672c7.382-3.477,11.38-0.371,11.836,0.904c1.144,3.205-1.413,7.467-5.43,9.936 - c-3.934,2.416-5.102,1.814-5.809,2.218c0,0-0.433,2.799-2,4.866c0,0,4.524,0.015,10.137-3.393c7.15-4.342,9.871-11.006,8.004-16.066 - c-1.117-3.032-8.516-7.694-19.354-1.979c-9.047,4.77-11.093,13.291-9.261,16.748C119.691,166.862,122.783,168.175,123.83,168.448"/> -<path id="Stroke-229" class="st1" d="M123.83,168.448c0.297,0.078,2.031-2.828,1.723-4.488c0,0-1.077,0.148-2.17-1.957 - c-1.037-1.998,0.566-7.66,6.965-10.672c7.382-3.477,11.38-0.371,11.836,0.904c1.144,3.205-1.413,7.467-5.43,9.936 - c-3.934,2.416-5.102,1.814-5.809,2.218c0,0-0.433,2.799-2,4.866c0,0,4.524,0.015,10.137-3.393c7.15-4.342,9.871-11.006,8.004-16.066 - c-1.117-3.032-8.516-7.694-19.354-1.979c-9.047,4.77-11.093,13.291-9.261,16.748C119.691,166.862,122.783,168.175,123.83,168.448z" - /> -<path id="Fill-231" class="st0" d="M102.192,157.426c0.095,0.291,3.478,0.174,4.706-0.983c0,0-0.708-0.824,0.471-2.885 - c1.118-1.952,6.746-3.671,12.744,0.075c6.92,4.324,6.473,9.367,5.648,10.441c-2.076,2.7-7.041,2.857-11.293,0.817 - c-4.162-1.999-4.289-3.307-5.011-3.683c0,0-2.589,1.152-5.174,0.954c0,0,2.436,3.811,8.344,6.686 - c7.519,3.659,14.597,2.338,17.839-1.971c1.944-2.584,1.858-11.327-8.816-17.344c-8.908-5.023-17.183-2.128-19.095,1.284 - C101.284,153.086,101.855,156.398,102.192,157.426"/> -<path id="Stroke-233" class="st1" d="M102.192,157.426c0.095,0.291,3.478,0.174,4.706-0.983c0,0-0.708-0.824,0.471-2.885 - c1.118-1.952,6.746-3.671,12.744,0.075c6.92,4.324,6.473,9.367,5.648,10.441c-2.076,2.7-7.041,2.857-11.293,0.817 - c-4.162-1.999-4.289-3.307-5.011-3.683c0,0-2.589,1.152-5.174,0.954c0,0,2.436,3.811,8.344,6.686 - c7.519,3.659,14.597,2.338,17.839-1.971c1.944-2.584,1.858-11.327-8.816-17.344c-8.908-5.023-17.183-2.128-19.095,1.284 - C101.284,153.086,101.855,156.398,102.192,157.426z"/> -<path id="Fill-235" class="st26" d="M91.461,151.552c-0.297,0.077-1.998-3.072-1.998-4.53c0,0,1.541-0.271,2.45-1.915 - c1.091-1.971-0.559-7.661-6.954-10.678c-7.381-3.483-11.382-0.379-11.838,0.894c-1.148,3.205,1.405,7.47,5.422,9.94 - c3.932,2.421,5.263,1.825,5.97,2.229c0,0,1.147,3.885,1.834,4.864c0,0-4.525,0.009-10.136-3.403 - c-7.146-4.347-9.862-11.013-7.991-16.072c1.12-3.031,8.522-7.687,19.356-1.965c9.042,4.778,11.082,13.303,9.247,16.756 - C95.602,149.97,92.508,151.278,91.461,151.552"/> -<path id="Stroke-237" class="st1" d="M91.461,151.552c-0.297,0.077-1.998-3.072-1.998-4.53c0,0,1.541-0.271,2.45-1.915 - c1.091-1.971-0.559-7.661-6.954-10.678c-7.381-3.483-11.382-0.379-11.838,0.894c-1.148,3.205,1.405,7.47,5.422,9.94 - c3.932,2.421,5.263,1.825,5.97,2.229c0,0,1.147,3.885,1.834,4.864c0,0-4.525,0.009-10.136-3.403 - c-7.146-4.347-9.862-11.013-7.991-16.072c1.12-3.031,8.522-7.687,19.356-1.965c9.042,4.778,11.082,13.303,9.247,16.756 - C95.602,149.97,92.508,151.278,91.461,151.552z"/> -<defs> - <filter id="Adobe_OpacityMaskFilter_15_" filterUnits="userSpaceOnUse" x="84.384" y="138.214" width="30.06" height="23.887"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> -</defs> -<mask maskUnits="userSpaceOnUse" x="84.384" y="138.214" width="30.06" height="23.887" id="mask-72_2_"> - <g id="g432_1_" class="st39"> - <path id="path-71_2_" class="st3" d="M84.833,142.909c-1.147,3.591-0.762,11.008,9.283,16.518 - c5.968,3.273,10.49,2.731,12.598,2.472c3.46-0.421,7.271-3.549,7.67-6.998c0.19-1.628-0.118-3.402-0.355-3.416 - c-2.768-0.172-4.349,0.382-4.99,0.71c0,0,0.817,3.431-3.449,4.954c-1.379,0.491-5.156,0.799-9.402-1.52 - c-4.12-2.248-5.146-4.291-6.079-6.301c-2.271-4.886,2.096-6.032,2.001-6.67c-0.114-0.763-1.271-3.822-2.17-4.437 - c-0.007-0.005-0.018-0.007-0.032-0.007C89.47,138.214,85.624,140.43,84.833,142.909"/> - </g> -</mask> -<linearGradient id="Fill-240_1_" gradientUnits="userSpaceOnUse" x1="-653.1442" y1="50.5041" x2="-652.8857" y2="51.6116" gradientTransform="matrix(30.0596 0 0 23.8866 19728.6934 -1069.7941)"> - <stop offset="0" style="stop-color:#E6E7E7"/> - <stop offset="1" style="stop-color:#A7A9AC"/> -</linearGradient> -<path id="Fill-240" class="st40" d="M84.833,142.909c-1.147,3.591-0.762,11.008,9.283,16.518c5.968,3.273,10.49,2.731,12.598,2.472 - c3.46-0.421,7.271-3.549,7.67-6.998c0.19-1.628-0.118-3.402-0.355-3.416c-2.768-0.172-4.349,0.382-4.99,0.71 - c0,0,0.817,3.431-3.449,4.954c-1.379,0.491-5.156,0.799-9.402-1.52c-4.12-2.248-5.146-4.291-6.079-6.301 - c-2.271-4.886,2.096-6.032,2.001-6.67c-0.114-0.763-1.271-3.822-2.17-4.437c-0.007-0.005-0.018-0.007-0.032-0.007 - C89.47,138.214,85.624,140.43,84.833,142.909"/> -<path id="Stroke-243" class="st1" d="M89.94,138.22c0.899,0.616,2.057,3.675,2.17,4.437c0.096,0.638-4.272,1.785-2.001,6.671 - c0.934,2.01,1.96,4.053,6.08,6.301c4.245,2.319,8.022,2.011,9.401,1.52c4.266-1.524,3.45-4.954,3.45-4.954 - c0.64-0.328,2.222-0.882,4.99-0.71c0.236,0.014,0.545,1.788,0.355,3.416c-0.4,3.449-4.211,6.576-7.671,6.998 - c-2.108,0.258-6.629,0.8-12.598-2.472c-10.045-5.51-10.429-12.928-9.282-16.519C85.65,140.35,89.721,138.071,89.94,138.22z"/> -<defs> - <filter id="Adobe_OpacityMaskFilter_16_" filterUnits="userSpaceOnUse" x="95.178" y="137.712" width="16.631" height="9.969"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> -</defs> -<mask maskUnits="userSpaceOnUse" x="95.178" y="137.712" width="16.631" height="9.969" id="mask-75_2_"> - <g id="g448_1_" class="st41"> - <path id="path-74_2_" class="st3" d="M95.178,137.743l1.209,2.298l0.771,2.364c-0.092-0.553,6.336,0.906,9.665,5.276 - c1.002-0.237,1.005-0.224,2.242-0.599c1.248-0.381,2.744-0.25,2.744-0.25c-1.622-3.244-9.563-9.12-15.859-9.12 - C95.689,137.712,95.432,137.722,95.178,137.743"/> - </g> -</mask> -<linearGradient id="Fill-245_1_" gradientUnits="userSpaceOnUse" x1="-635.368" y1="121.2224" x2="-634.3674" y2="122.1335" gradientTransform="matrix(16.631 0 0 9.969 10661.7461 -1070.29)"> - <stop offset="0" style="stop-color:#E6E7E7"/> - <stop offset="1" style="stop-color:#A7A9AC"/> -</linearGradient> -<path id="Fill-245" class="st42" d="M95.178,137.743l1.209,2.298l0.771,2.364c-0.092-0.553,6.336,0.906,9.665,5.276 - c1.002-0.237,1.005-0.224,2.242-0.599c1.248-0.381,2.744-0.25,2.744-0.25c-1.622-3.244-9.563-9.12-15.859-9.12 - C95.689,137.712,95.432,137.722,95.178,137.743"/> -<path id="Stroke-248" class="st1" d="M97.157,142.405l-0.771-2.363l-1.208-2.299c6.4-0.522,14.942,5.711,16.63,9.089 - c0,0-1.496-0.13-2.744,0.25c-1.236,0.376-1.239,0.362-2.242,0.599C103.494,143.311,97.065,141.852,97.157,142.405z"/> -<defs> - <filter id="Adobe_OpacityMaskFilter_17_" filterUnits="userSpaceOnUse" x="33.77" y="110.14" width="30.059" height="23.888"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> -</defs> -<mask maskUnits="userSpaceOnUse" x="33.77" y="110.14" width="30.059" height="23.888" id="mask-78_2_"> - <g id="g466_1_" class="st43"> - <path id="path-77_2_" class="st3" d="M34.219,114.836c-1.146,3.591-0.762,11.01,9.283,16.519 - c5.969,3.273,10.491,2.729,12.598,2.473c3.462-0.425,7.272-3.55,7.671-6.999c0.188-1.63-0.117-3.402-0.355-3.416 - c-2.77-0.172-4.349,0.381-4.991,0.711c0,0,0.817,3.429-3.449,4.952c-1.378,0.491-5.156,0.799-9.402-1.518 - c-4.119-2.249-5.145-4.293-6.079-6.302c-2.269-4.888,2.098-6.033,2.001-6.669c-0.114-0.764-1.27-3.824-2.17-4.44 - c-0.006-0.005-0.017-0.007-0.031-0.007C38.858,110.14,35.01,112.357,34.219,114.836"/> - </g> -</mask> -<linearGradient id="Fill-255_1_" gradientUnits="userSpaceOnUse" x1="-653.1441" y1="50.5011" x2="-652.8855" y2="51.6085" gradientTransform="matrix(30.0595 0 0 23.888 19678.0117 -1097.8618)"> - <stop offset="0" style="stop-color:#E6E7E7"/> - <stop offset="1" style="stop-color:#A7A9AC"/> -</linearGradient> -<path id="Fill-255" class="st44" d="M34.219,114.836c-1.146,3.591-0.762,11.01,9.283,16.519c5.969,3.273,10.491,2.729,12.598,2.473 - c3.462-0.425,7.272-3.55,7.671-6.999c0.188-1.63-0.117-3.402-0.355-3.416c-2.77-0.172-4.349,0.381-4.991,0.711 - c0,0,0.817,3.429-3.449,4.952c-1.378,0.491-5.156,0.799-9.402-1.518c-4.119-2.249-5.145-4.293-6.079-6.302 - c-2.269-4.888,2.098-6.033,2.001-6.669c-0.114-0.764-1.27-3.824-2.17-4.44c-0.006-0.005-0.017-0.007-0.031-0.007 - C38.858,110.14,35.01,112.357,34.219,114.836"/> -<path id="Stroke-258" class="st1" d="M39.326,110.147c0.9,0.616,2.056,3.677,2.17,4.439c0.097,0.637-4.271,1.782-2.002,6.67 - c0.935,2.009,1.961,4.053,6.08,6.302c4.246,2.317,8.023,2.009,9.402,1.518c4.265-1.523,3.449-4.952,3.449-4.952 - c0.641-0.33,2.221-0.883,4.991-0.711c0.238,0.014,0.543,1.787,0.355,3.417c-0.4,3.448-4.21,6.573-7.672,6.998 - c-2.107,0.256-6.628,0.799-12.597-2.474c-10.045-5.508-10.429-12.927-9.283-16.519C35.035,112.277,39.107,109.999,39.326,110.147z" - /> -<defs> - <filter id="Adobe_OpacityMaskFilter_18_" filterUnits="userSpaceOnUse" x="44.564" y="109.64" width="16.631" height="9.968"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> -</defs> -<mask maskUnits="userSpaceOnUse" x="44.564" y="109.64" width="16.631" height="9.968" id="mask-81_2_"> - <g id="g482_1_" class="st45"> - <path id="path-80_2_" class="st3" d="M44.564,109.671l1.21,2.298l0.77,2.364c-0.091-0.552,6.337,0.906,9.665,5.275 - c1.004-0.236,1.006-0.223,2.241-0.598c1.249-0.38,2.745-0.252,2.745-0.252c-1.622-3.243-9.562-9.118-15.859-9.118 - C45.076,109.64,44.818,109.65,44.564,109.671"/> - </g> -</mask> -<linearGradient id="Fill-260_1_" gradientUnits="userSpaceOnUse" x1="-635.3679" y1="121.2346" x2="-634.3674" y2="122.1457" gradientTransform="matrix(16.631 0 0 9.968 10611.1318 -1098.3618)"> - <stop offset="0" style="stop-color:#E6E7E7"/> - <stop offset="1" style="stop-color:#A7A9AC"/> -</linearGradient> -<path id="Fill-260" class="st46" d="M44.564,109.671l1.21,2.298l0.77,2.364c-0.091-0.552,6.337,0.906,9.665,5.275 - c1.004-0.236,1.006-0.223,2.241-0.598c1.249-0.38,2.745-0.252,2.745-0.252c-1.622-3.243-9.562-9.118-15.859-9.118 - C45.076,109.64,44.818,109.65,44.564,109.671"/> -<path id="Stroke-263" class="st1" d="M46.544,114.333l-0.771-2.363l-1.208-2.299c6.4-0.521,14.941,5.711,16.63,9.088 - c0,0-1.497-0.128-2.745,0.252c-1.235,0.374-1.237,0.361-2.241,0.597C52.881,115.239,46.452,113.781,46.544,114.333z"/> -<path id="Fill-265" class="st26" d="M40.757,123.874c-0.297,0.078-1.997-3.072-1.997-4.529c0,0,1.539-0.273,2.449-1.917 - c1.09-1.97-0.56-7.659-6.954-10.678c-7.38-3.481-11.382-0.378-11.837,0.895c-1.148,3.206,1.404,7.469,5.42,9.94 - c3.932,2.42,5.264,1.826,5.971,2.23c0,0,1.147,3.885,1.834,4.862c0,0-4.526,0.012-10.136-3.402 - c-7.146-4.346-9.862-11.014-7.991-16.071c1.121-3.032,8.523-7.687,19.356-1.965c9.042,4.777,11.083,13.301,9.247,16.755 - C44.899,122.292,41.804,123.601,40.757,123.874"/> -<path id="Stroke-267" class="st1" d="M40.757,123.874c-0.297,0.078-1.997-3.072-1.997-4.529c0,0,1.539-0.273,2.449-1.917 - c1.09-1.97-0.56-7.659-6.954-10.678c-7.38-3.481-11.382-0.378-11.837,0.895c-1.148,3.206,1.404,7.469,5.42,9.94 - c3.932,2.42,5.264,1.826,5.971,2.23c0,0,1.147,3.885,1.834,4.862c0,0-4.526,0.012-10.136-3.402 - c-7.146-4.346-9.862-11.014-7.991-16.071c1.121-3.032,8.523-7.687,19.356-1.965c9.042,4.777,11.083,13.301,9.247,16.755 - C44.899,122.292,41.804,123.601,40.757,123.874z"/> -<path id="Fill-269" class="st26" d="M24.353,114.919c-0.296,0.078-1.996-3.072-1.997-4.529c0,0,1.541-0.272,2.451-1.916 - c1.089-1.969-0.56-7.66-6.955-10.678c-7.381-3.482-11.381-0.379-11.837,0.894c-1.149,3.206,1.405,7.469,5.42,9.942 - c3.932,2.419,5.263,1.825,5.97,2.228c0,0,1.147,3.885,1.835,4.864c0,0-4.525,0.01-10.136-3.403 - c-7.147-4.345-9.862-11.014-7.992-16.072c1.121-3.031,8.523-7.687,19.357-1.965c9.041,4.778,11.083,13.301,9.248,16.756 - C28.495,113.339,25.4,114.646,24.353,114.919"/> -<path id="Stroke-271" class="st1" d="M24.353,114.919c-0.296,0.078-1.996-3.072-1.997-4.529c0,0,1.541-0.272,2.451-1.916 - c1.089-1.969-0.56-7.66-6.955-10.678c-7.381-3.482-11.381-0.379-11.837,0.894c-1.149,3.206,1.405,7.469,5.42,9.942 - c3.932,2.419,5.263,1.825,5.97,2.228c0,0,1.147,3.885,1.835,4.864c0,0-4.525,0.01-10.136-3.403 - c-7.147-4.345-9.862-11.014-7.992-16.072c1.121-3.031,8.523-7.687,19.357-1.965c9.041,4.778,11.083,13.301,9.248,16.756 - C28.495,113.339,25.4,114.646,24.353,114.919z"/> -<path id="Stroke-273" inkscape:connector-curvature="0" class="st47" d="M46.478,168.211c-0.564-0.337-1.754-0.741-1.77-2.095 - c-0.013-1.353,0-22.298,0.11-24.003c0.039-0.627-0.065-1.722,0.322-1.936c0.599-0.331,0.824-0.393,1.637-0.853 - c1.283-0.726,3.986-2.13,3.986-2.13s-0.039-14.607,0.117-15.887c0.157-1.278,0.746-3.267,2.082-4.448 - c1.334-1.18,1.864-1.218,3.801-2.258c1.891-1.017,5.605-3.396,7.221-3.61c1.463-0.196,3.963,0.135,5.43,1.075 - c1.281,0.818,4.56,2.716,6.66,5.839c1.502,2.236,4.304,7.278,5.021,11.016c0.238,1.242,0.36,4.356,0.41,6.302 - c0.018,0.688-0.131,8.434-0.131,8.434s4.54,2.751,4.877,2.977c0.338,0.225,1.471,0.718,1.436,2.297 - c-0.023,1.022-0.019,23.71,0,24.176c0.035,0.861-0.071,1.579-1.615,2.258c-0.979,0.434-14.098,7.462-14.098,7.462 - s-0.467,0.574-1.685-0.217C68.697,181.582,46.478,168.211,46.478,168.211L46.478,168.211z"/> -<path id="Stroke-275" class="st48" d="M69.176,136.412c-0.574-0.108-6.063-3.732-6.063-3.732l-0.037-9.651 - c0,0,3.697,3.733,4.808,6.422c0.682,1.649,1.262,6.073,1.148,6.639C69.025,136.125,69.223,136.421,69.176,136.412z"/> -<defs> - <filter id="Adobe_OpacityMaskFilter_19_" filterUnits="userSpaceOnUse" x="45.575" y="132.172" width="16.142" height="8.37"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> -</defs> -<mask maskUnits="userSpaceOnUse" x="45.575" y="132.172" width="16.142" height="8.37" id="mask-84_2_"> - <g id="g504_1_" class="st49"> - <path id="path-83_2_" class="st3" d="M61.106,132.225l-15.531,8.241c0.162-0.085,0.377-0.067,0.612,0.074l15.529-8.244 - c-0.139-0.084-0.272-0.123-0.391-0.123C61.245,132.173,61.171,132.191,61.106,132.225"/> - </g> -</mask> -<path id="Fill-278" class="st50" d="M61.284,132.172l-0.053,0.01c-0.022,0.003-0.042,0.009-0.064,0.018l-15.529,8.24 - c0.02-0.009,0.042-0.012,0.064-0.018c0.018-0.003,0.035-0.006,0.053-0.006L61.284,132.172z M45.638,140.439l15.529-8.242 - c-0.02,0.006-0.041,0.015-0.061,0.027l-15.531,8.242C45.596,140.455,45.617,140.444,45.638,140.439z M61.284,132.174l-15.529,8.244 - c0.014-0.003,0.03-0.004,0.047-0.004c0.014,0,0.029,0.004,0.043,0.004c0.012,0.003,0.027,0.003,0.039,0.006l0.002-0.002 - c0.012,0.003,0.024,0.003,0.037,0.006c0.012,0.003,0.025,0.006,0.037,0.012c0.012,0.003,0.022,0.007,0.035,0.01 - c0.012,0.006,0.024,0.01,0.037,0.016l0.002-0.002c0.011,0.003,0.022,0.01,0.033,0.016c0.012,0.003,0.022,0.008,0.035,0.014 - l0.035,0.02h0.002c0.011,0.006,0.022,0.014,0.033,0.02c0.005,0.003,0.01,0.005,0.014,0.008l15.531-8.242 - c-0.005-0.003-0.01-0.005-0.014-0.008c-0.011-0.008-0.023-0.014-0.035-0.02l-0.035-0.018l-0.035-0.018 - c-0.011-0.006-0.023-0.01-0.035-0.016v0.002h-0.002c-0.012-0.003-0.024-0.011-0.035-0.014c-0.013-0.003-0.025-0.009-0.037-0.012 - c-0.011-0.003-0.025-0.005-0.037-0.008s-0.025-0.007-0.039-0.01l-0.004,0.002c-0.01-0.001-0.022-0.004-0.033-0.004 - c-0.015-0.003-0.029-0.002-0.045-0.002H61.284z"/> -<defs> - <filter id="Adobe_OpacityMaskFilter_20_" filterUnits="userSpaceOnUse" x="71.543" y="173.771" width="15.814" height="8.848"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> -</defs> -<mask maskUnits="userSpaceOnUse" x="71.543" y="173.771" width="15.814" height="8.848" id="mask-114_2_"> - <g id="g654_1_" class="st51"> - <path id="path-113_2_" class="st3" d="M71.825,182.012c0,0.305-0.107,0.516-0.28,0.606l15.53-8.241 - c0.172-0.091,0.282-0.301,0.282-0.606L71.825,182.012z"/> - </g> -</mask> -<path id="Fill-324" class="st52" d="M87.356,173.771l-15.531,8.24v0.023l15.531-8.244V173.771z M71.825,182.035 - c-0.001,0.015-0.001,0.029-0.002,0.041c0,0.015-0.002,0.03-0.004,0.045c0,0.015-0.003,0.028-0.004,0.043 - c-0.002,0.015-0.004,0.03-0.008,0.045c-0.002,0.015-0.006,0.026-0.008,0.041c-0.004,0.018-0.008,0.032-0.012,0.047l-0.018,0.049 - h0.002c-0.007,0.017-0.015,0.034-0.021,0.049l-0.002,0.002c-0.012,0.023-0.023,0.044-0.035,0.064 - c-0.043,0.07-0.102,0.122-0.17,0.158l15.531-8.24c0.067-0.035,0.125-0.092,0.17-0.162c0.012-0.017,0.024-0.039,0.035-0.063 - c0.007-0.018,0.014-0.036,0.02-0.053c0.006-0.014,0.012-0.031,0.018-0.045v-0.002c0.004-0.015,0.01-0.031,0.012-0.045 - c0.004-0.015,0.006-0.03,0.01-0.045c0.002-0.015,0.007-0.028,0.008-0.043s0.004-0.027,0.004-0.041 - c0.001-0.015,0.002-0.031,0.002-0.045c0.002-0.015,0.002-0.028,0.004-0.043L71.825,182.035z"/> -<polygon id="Fill-358" class="st53" points="61.717,132.296 86.439,147.149 70.91,155.394 46.187,140.54 "/> -<polygon id="Fill-360" class="st54" points="87.337,148.769 87.357,173.771 71.826,182.012 71.807,157.01 "/> -<defs> - <filter id="Adobe_OpacityMaskFilter_21_" filterUnits="userSpaceOnUse" x="70.909" y="147.148" width="16.429" height="9.865"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> -</defs> -<mask maskUnits="userSpaceOnUse" x="70.909" y="147.148" width="16.429" height="9.865" id="mask-136_2_"> - <g id="g766_1_" class="st55"> - <path id="path-135_2_" class="st3" d="M70.909,155.394c0.491,0.292,0.897,1.027,0.897,1.616l15.531-8.241 - c0-0.592-0.407-1.324-0.898-1.62"/> - </g> -</mask> -<path id="Fill-363" class="st56" d="M86.438,147.148l-15.529,8.244c0.008,0.003,0.016,0.009,0.023,0.012 - c0.012,0.009,0.024,0.019,0.037,0.027c0.013,0.006,0.023,0.013,0.035,0.021l15.531-8.24c-0.011-0.009-0.023-0.016-0.037-0.025 - c-0.013-0.009-0.025-0.014-0.037-0.023C86.455,147.158,86.448,147.154,86.438,147.148z M86.536,147.215l-15.531,8.24 - c0.014,0.012,0.027,0.021,0.039,0.029c0.012,0.012,0.025,0.02,0.037,0.031c0.014,0.012,0.027,0.024,0.039,0.033 - c0.014,0.015,0.025,0.025,0.041,0.037l15.529-8.24c-0.013-0.015-0.025-0.027-0.041-0.039c-0.011-0.012-0.024-0.022-0.037-0.031 - c-0.011-0.012-0.027-0.024-0.039-0.033C86.562,147.233,86.549,147.224,86.536,147.215z M86.69,147.346l-15.529,8.242 - c0.012,0.012,0.024,0.021,0.037,0.037c0.012,0.012,0.023,0.025,0.037,0.037c0.011,0.012,0.022,0.027,0.035,0.039 - c0.01,0.015,0.021,0.026,0.033,0.041c0.011,0.012,0.021,0.025,0.033,0.037c0.01,0.015,0.019,0.026,0.029,0.041 - c0.012,0.015,0.023,0.032,0.035,0.047s0.023,0.033,0.035,0.051c0.053,0.079,0.102,0.163,0.146,0.252 - c0.01,0.018,0.018,0.034,0.025,0.053c0.01,0.018,0.018,0.031,0.023,0.049c0.006,0.015,0.012,0.026,0.018,0.041 - c0.007,0.015,0.012,0.029,0.018,0.041c0.006,0.015,0.013,0.03,0.018,0.045c0.006,0.012,0.01,0.026,0.016,0.041 - c0.004,0.015,0.008,0.028,0.014,0.043c0.005,0.015,0.01,0.03,0.016,0.045c0.004,0.018,0.009,0.032,0.014,0.047h-0.002 - c0.005,0.018,0.01,0.032,0.014,0.047c0.004,0.018,0.008,0.033,0.012,0.051c0.004,0.014,0.006,0.03,0.01,0.045v0.002 - c0.003,0.015,0.007,0.031,0.008,0.045c0.004,0.018,0.006,0.032,0.008,0.047s0.004,0.032,0.006,0.047s0.003,0.03,0.004,0.045 - c0.002,0.015,0.004,0.028,0.004,0.043s0.002,0.03,0.002,0.045v0.021l15.529-8.242v-0.021c0-0.015-0.002-0.029-0.002-0.043 - c0-0.015-0.001-0.031-0.002-0.045c-0.002-0.015-0.005-0.03-0.006-0.047c-0.001-0.015-0.005-0.029-0.006-0.043 - c-0.001-0.015-0.004-0.033-0.006-0.047c-0.004-0.015-0.006-0.033-0.01-0.047c-0.002-0.018-0.006-0.032-0.008-0.049 - c-0.005-0.015-0.01-0.03-0.012-0.047c-0.005-0.015-0.01-0.035-0.014-0.049c-0.004-0.015-0.009-0.033-0.014-0.047 - c-0.006-0.015-0.01-0.029-0.014-0.043c-0.006-0.015-0.011-0.031-0.016-0.045c-0.006-0.015-0.01-0.028-0.016-0.043 - c-0.004-0.012-0.01-0.027-0.016-0.041c-0.006-0.015-0.012-0.027-0.018-0.041c-0.006-0.015-0.012-0.029-0.018-0.041 - c-0.008-0.017-0.016-0.035-0.023-0.049v-0.002c-0.01-0.017-0.017-0.034-0.027-0.051c-0.043-0.088-0.093-0.173-0.146-0.252 - c-0.011-0.018-0.023-0.037-0.035-0.051c-0.011-0.018-0.021-0.033-0.033-0.047c-0.01-0.015-0.02-0.027-0.031-0.041 - c-0.012-0.015-0.021-0.026-0.031-0.041c-0.011-0.012-0.022-0.023-0.033-0.037c-0.011-0.012-0.023-0.027-0.035-0.039h-0.002 - c-0.012-0.015-0.023-0.025-0.035-0.037C86.716,147.37,86.702,147.358,86.69,147.346z"/> -<path id="Fill-471" inkscape:connector-curvature="0" class="st57" d="M45.087,141.876c-0.105-0.926,0.059-2.32,1.232-1.485 - c1.071,0.756,22.252,13.532,23.014,13.907c2.457,1.213,2.699,2.32,2.57,3.533c-0.126,1.21-0.023,22.872-0.043,23.78 - c-0.011,0.774,0.157,1.62-1.255,0.888c-0.686-0.357-24.141-14.502-24.726-14.88c-0.581-0.384-0.733-1.134-0.696-2.191 - C45.235,163.937,45.194,142.799,45.087,141.876"/> -<path id="Stroke-473" inkscape:connector-curvature="0" class="st58" d="M45.087,141.876c-0.105-0.926,0.059-2.32,1.232-1.485 - c1.071,0.756,22.252,13.532,23.014,13.907c2.457,1.213,2.699,2.32,2.57,3.533c-0.126,1.21-0.023,22.872-0.043,23.78 - c-0.011,0.774,0.157,1.62-1.255,0.888c-0.686-0.357-24.141-14.502-24.726-14.88c-0.581-0.384-0.733-1.134-0.696-2.191 - C45.235,163.937,45.194,142.799,45.087,141.876z"/> -<path id="Fill-475" inkscape:connector-curvature="0" class="st24" d="M60.605,170.633c0,1.245-0.873,1.737-1.94,1.099l-0.861-0.519 - c-1.066-0.642-1.94-2.183-1.94-3.431v-15.257c0-1.246,0.874-1.741,1.94-1.099l0.861,0.516c1.067,0.641,1.94,2.185,1.94,3.43V170.633 - z"/> -<polygon id="Fill-479" class="st59" points="62.097,132.305 85.597,146.555 70.44,154.479 46.534,140.162 "/> -<path id="path1200" inkscape:connector-curvature="0" sodipodi:nodetypes="csccscccc" class="st60" d="M55.066,127.888 - c0-1.521,0.016-2.906,0.358-3.904c0.342-0.997,0.923-1.978,1.732-2.43l7.766-4.123c-0.767,0.409-1.501,1.516-1.784,2.565 - c-0.268,0.994-0.325,2.26-0.306,3.769l0.01,14.007l-7.766,4.121L55.066,127.888z"/> -<defs> - <filter id="Adobe_OpacityMaskFilter_22_" filterUnits="userSpaceOnUse" x="55.071" y="129.671" width="7.771" height="12.22"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> -</defs> -<mask maskUnits="userSpaceOnUse" x="55.071" y="129.671" width="7.771" height="12.22" id="mask-246_2_"> - <g id="g1323_1_" class="st61"> - <path id="path-245_2_" class="st3" d="M55.072,133.793c0,0.556,0.005,7.722,0.005,8.097l7.766-4.119 - c-0.002-0.377-0.006-7.544-0.006-8.1"/> - </g> -</mask> -<path id="Fill-545" inkscape:connector-curvature="0" class="st62" d="M55.071,133.793l7.766-4.122c0,0.557,0.005,7.723,0.005,8.101 - l-7.765,4.119C55.077,141.516,55.071,134.35,55.071,133.793"/> -<defs> - <filter id="Adobe_OpacityMaskFilter_23_" filterUnits="userSpaceOnUse" x="73.307" y="133.063" width="7.845" height="19.74"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> -</defs> -<mask maskUnits="userSpaceOnUse" x="73.307" y="133.063" width="7.845" height="19.74" id="mask-526_2_"> - <g id="g2724_1_" class="st63"> - <path id="path-525_2_" class="st3" d="M73.236,134.915c0.147,1.259,0.15,17.209,0.15,17.888l7.765-4.122 - c0-0.679-0.004-16.629-0.152-17.888"/> - </g> -</mask> -<path id="Fill-981" inkscape:connector-curvature="0" class="st64" d="M73.307,137.182l7.765-4.119 - c0.076,4.743,0.08,15.073,0.08,15.618l-7.766,4.122C73.386,152.258,73.384,141.928,73.307,137.182"/> -<path id="Fill-985" class="st65" d="M69.429,150.369l3.883,2.332c0-0.978-0.012-16.6-0.152-17.818 - c-0.157-1.31-0.872-4.087-1.769-6.331c-0.843-2.098-2.274-4.509-4.254-7.146c-1.415-1.875-3.644-3.58-5.251-4.547 - c-0.451-0.272-0.878-0.504-1.275-0.688c-2.31-1.075-4.573-0.686-5.543-0.279c-3.02,1.248-3.471,4.064-3.682,5.417 - c-0.046,0.317-0.082,0.563-0.139,0.698c-0.276,0.679-0.134,16.467-0.134,17.458l3.89,2.338c0-0.636-0.013-7.527-0.013-8.06 - c0-0.123,0-0.425-0.002-0.838c-0.01-1.564-0.032-4.482-0.004-5.223c0.009-0.153,0.009-0.329,0.018-0.537 - c0.018-1.081,0.044-2.88,0.562-3.794c0.054-0.099,0.111-0.202,0.165-0.301c0.405-0.747,0.858-1.6,2.345-1.899 - c0.953-0.196,2.125-0.205,4.212,0.993c0.047,0.027,0.093,0.056,0.139,0.082c1.983,1.193,3.467,3.258,4.66,5.119 - c1.879,2.944,2.25,6.53,2.287,6.931C69.439,135.029,69.429,149.267,69.429,150.369 M73.236,134.915 - c0.147,1.26,0.15,17.209,0.15,17.889l-4.039-2.382c0-0.202,0.017-15.416-0.059-16.184c-0.036-0.401-0.399-3.937-2.25-6.844 - c-1.183-1.845-2.654-3.887-4.612-5.065l-0.14-0.082c-2.069-1.19-3.223-1.181-4.166-0.99c-1.477,0.281-1.921,1.128-2.316,1.872 - c-0.057,0.111-0.111,0.211-0.168,0.31c-0.516,0.894-0.541,2.681-0.561,3.75c0.002,0.214,0.002,0.402-0.007,0.542 - c-0.028,0.742-0.007,3.771,0.004,5.224v0.838c0,0.556,0.005,7.722,0.005,8.097l-4.039-2.37c-0.009-0.741-0.15-16.883,0.137-17.592 - c0.045-0.138,0.082-0.372,0.137-0.674c0.211-1.365,0.662-4.201,3.709-5.467c0.978-0.401,3.252-0.797,5.582,0.29 - c0.396,0.185,0.832,0.41,1.283,0.683c1.617,0.972,3.863,2.689,5.287,4.59c1.998,2.649,3.44,5.075,4.293,7.202 - C72.364,130.793,73.085,133.599,73.236,134.915"/> -<path id="Fill-989" inkscape:connector-curvature="0" class="st66" d="M51.083,139.494l3.896,2.314c0,0,0.227-16.602,0.235-16.854 - c0.051-1.342,0.806-3.278,2.941-3.847c1.369-0.366,2.166-0.047,3.489,0.709c1.742,0.996,2.843,2.028,4.537,4.301 - c1.653,2.224,2.157,3.53,2.693,5.625c0.52,2.03,0.428,4.808,0.428,4.808l0.113,13.863l3.961,2.317l-0.058-17.877 - c0,0-0.354-1.986-1.372-5.097c-1.019-3.112-1.681-4.407-3.777-7.178c-2.093-2.771-4.664-5.042-6.9-6.167 - c-1.092-0.548-3.313-1.825-5.489-1.02c-2.138,0.794-3.021,1.7-3.902,3.566c-0.904,1.91-0.623,3.621-0.737,4.638 - c-0.113,1.019-0.058,2.434-0.058,2.434V139.494z"/> -<path id="Stroke-991" class="st67" d="M51.083,139.494l3.896,2.314c0,0,0.227-16.602,0.235-16.854 - c0.051-1.342,0.806-3.278,2.941-3.847c1.369-0.366,2.166-0.047,3.489,0.709c1.742,0.996,2.843,2.028,4.537,4.301 - c1.653,2.224,2.157,3.53,2.693,5.625c0.52,2.03,0.428,4.808,0.428,4.808l0.113,13.863l3.961,2.317l-0.058-17.877 - c0,0-0.354-1.986-1.372-5.097c-1.019-3.112-1.681-4.407-3.777-7.178c-2.093-2.771-4.664-5.042-6.9-6.167 - c-1.092-0.548-3.313-1.825-5.489-1.02c-2.138,0.794-3.021,1.7-3.902,3.566c-0.904,1.91-0.623,3.621-0.737,4.638 - c-0.113,1.019-0.058,2.434-0.058,2.434V139.494z"/> -<path id="path1217" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccscc" class="st60" d="M73.316,152.655 - l-0.129-17.537c-0.421-5.647-4.539-12.433-7.504-15.356c-2.622-2.471-6.767-5.747-11.066-3.701l7.636-4.18 - c2.8-1.342,5.821-0.685,9.124,1.874c3.615,2.662,5.743,6.266,7.611,10.034c0.873,2.078,1.965,5.435,2.025,7.234l0.067,17.512 - L73.316,152.655z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 271.87 185.188"><style><![CDATA[.AQ{fill:none}.AR{stroke:#626366}.AS{stroke-width:1.078}.AT{fill:#fff}.AU{fill:#fefefe}.AV{fill:#d6dee6}.AW{fill:#d0d2d3}.AX{fill:#bbbdbf}.AY{fill:#216390}.AZ{stroke-width:.115}]]></style><path d="M242.087 82.917c.094.293 3.477.175 4.705-.982 0 0-.707-.825.47-2.885 1.12-1.953 6.746-3.672 12.744.076 6.92 4.324 6.473 9.367 5.648 10.44-2.076 2.7-7.04 2.857-11.293.816-4.162-1.998-4.29-3.305-5.01-3.682 0 0-2.588 1.15-5.174.953 0 0 2.437 3.812 8.344 6.687 7.52 3.66 14.597 2.34 17.84-1.97 1.944-2.584 1.858-11.327-8.816-17.345-8.908-5.02-17.182-2.127-19.094 1.285-1.273 2.27-.7 5.58-.363 6.608" class="AX"/><path d="M242.087 82.917c.094.293 3.477.175 4.705-.982 0 0-.707-.825.47-2.885 1.12-1.953 6.746-3.672 12.744.076 6.92 4.324 6.473 9.367 5.648 10.44-2.076 2.7-7.04 2.857-11.293.816-4.162-1.998-4.29-3.305-5.01-3.682 0 0-2.588 1.15-5.174.953 0 0 2.437 3.812 8.344 6.687 7.52 3.66 14.597 2.34 17.84-1.97 1.944-2.584 1.858-11.327-8.816-17.345-8.908-5.02-17.182-2.127-19.094 1.285-1.273 2.27-.7 5.58-.363 6.608z" class="AQ AR AS"/><path d="M208.3 63.985c.094.293 3.477.176 4.705-.982 0 0-.707-.825.47-2.885 1.12-1.953 6.746-3.672 12.744.076 6.92 4.324 6.473 9.367 5.648 10.44-2.076 2.7-7.04 2.86-11.293.82-4.162-2-4.29-3.307-5.01-3.684 0 0-2.588 1.153-5.174.953 0 0 2.437 3.812 8.344 6.686 7.52 3.66 14.597 2.34 17.84-1.97 1.944-2.583 1.858-11.327-8.816-17.344-8.908-5.022-17.182-2.128-19.094 1.284-1.273 2.27-.7 5.58-.363 6.608" class="AX"/><path d="M208.3 63.985c.094.293 3.477.176 4.705-.982 0 0-.707-.825.47-2.885 1.12-1.953 6.746-3.672 12.744.076 6.92 4.324 6.473 9.367 5.648 10.44-2.076 2.7-7.04 2.86-11.293.82-4.162-2-4.29-3.307-5.01-3.684 0 0-2.588 1.153-5.174.953 0 0 2.437 3.812 8.344 6.686 7.52 3.66 14.597 2.34 17.84-1.97 1.944-2.583 1.858-11.327-8.816-17.344-8.908-5.022-17.182-2.128-19.094 1.284-1.273 2.27-.7 5.58-.363 6.608z" class="AQ AR AS"/><defs><filter id="A" filterUnits="userSpaceOnUse" x="224.763" y="63.426" width="30.06" height="23.889"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter><path id="B" d="M225.212 68.12c-1.146 3.592-.762 11 9.283 16.52 5.97 3.273 10.5 2.73 12.598 2.473 3.462-.425 7.27-3.55 7.672-6.998.187-1.63-.117-3.402-.356-3.42-2.77-.17-4.35.384-5 .712 0 0 .817 3.43-3.45 4.953-1.38.492-5.156.798-9.402-1.517-4.12-2.25-5.147-4.293-6.08-6.302-2.27-4.89 2.098-6.034 2.003-6.672-.115-.76-1.27-3.82-2.17-4.44-.007-.004-.017-.006-.03-.006-.435 0-4.285 2.215-5.077 4.695"/><path id="C" d="M235.558 62.957l1.21 2.298.77 2.363c-.092-.55 6.338.907 9.666 5.275 1.004-.234 1.006-.222 2.243-.597 1.247-.38 2.744-.252 2.744-.252-1.623-3.242-9.564-9.118-15.86-9.118a9.84 9.84 0 0 0-.772.031"/><path id="D" d="M46.34 70.42c-1.643 2.232-2.033 3.863-2.104 4.58 0 0 3.324 1.17 2.296 5.583-.333 1.424-2.12 4.767-6.367 7.08-4.122 2.246-6.396 2.004-8.59 1.7-5.337-.74-3.937-5.032-4.524-5.295-.704-.316-3.9-1.002-4.907-.578-.243.102-.532 4.76 1.177 6.832 2.398 2.908 8.843 6.6 18.914 1.14 5.983-3.245 7.976-7.34 8.9-9.252 1.518-3.138.953-8.032-1.73-10.237-1.125-.925-2.558-1.583-2.964-1.583-.05 0-.085.01-.1.032"/><path id="E" d="M24.58 78.827l2.587.228 2.404.63c-.514-.22 4.194-4.836 9.67-5.267.345-.973.357-.967.71-2.2.357-1.253 1.275-2.442 1.275-2.442-.184-.02-.383-.03-.596-.03-4.11 0-13.17 3.707-16.05 9.1"/><path id="F" d="M241.735 91.384c-1.642 2.234-2.033 3.863-2.105 4.58 0 0 3.326 1.172 2.297 5.582-.334 1.425-2.12 4.765-6.367 7.08-4.122 2.245-6.395 2-8.6 1.7-5.338-.74-3.938-5.032-4.525-5.296-.7-.315-3.9-1-4.907-.577-.242.1-.53 4.76 1.178 6.832 2.4 2.908 8.842 6.603 18.914 1.14 5.983-3.247 7.976-7.34 8.9-9.252 1.517-3.14.953-8.034-1.73-10.24-1.124-.924-2.558-1.582-2.963-1.582-.05 0-.086.01-.102.032"/><path id="G" d="M219.976 99.8l2.586.228 2.404.63c-.513-.22 4.194-4.836 9.667-5.268.347-.97.36-.966.712-2.21.358-1.254 1.275-2.443 1.275-2.443-.185-.02-.384-.03-.596-.03-4.11.001-13.17 3.705-16.048 9.09"/><path id="H" d="M191.778 118.616c-1.642 2.235-2.033 3.863-2.103 4.58 0 0 3.326 1.172 2.295 5.582-.332 1.425-2.12 4.767-6.368 7.082-4.12 2.245-6.394 2-8.59 1.7-5.338-.74-3.936-5.03-4.524-5.295-.703-.316-3.902-1-4.905-.58-.245.103-.534 4.76 1.175 6.835 2.398 2.907 8.843 6.6 18.914 1.14 5.984-3.246 7.976-7.34 8.9-9.252 1.518-3.14.953-8.035-1.73-10.24-1.126-.925-2.56-1.584-2.965-1.584-.05 0-.085.01-.1.032"/><path id="I" d="M170.02 127.024l2.586.226 2.406.633c-.516-.222 4.193-4.836 9.668-5.267.346-.972.357-.967.71-2.21.355-1.257 1.275-2.444 1.275-2.444-.184-.02-.383-.03-.596-.03-4.11.001-13.172 3.706-16.05 9.09"/><path id="J" d="M159.102 136.404c-1.643 2.235-2.033 3.864-2.106 4.58 0 0 3.326 1.173 2.297 5.583-.332 1.426-2.12 4.767-6.367 7.08-4.12 2.246-6.394 2.004-8.6 1.7-5.337-.74-3.935-5.03-4.524-5.297-.703-.314-3.9-1.002-4.906-.578-.244.104-.533 4.76 1.177 6.832 2.397 2.908 8.84 6.604 18.913 1.14 5.984-3.243 7.977-7.34 8.9-9.25 1.518-3.14.953-8.035-1.728-10.24-1.127-.926-2.562-1.583-2.966-1.583-.05 0-.084.01-.1.03"/><path id="K" d="M137.342 144.813l2.586.227 2.404.63c-.514-.222 4.193-4.837 9.67-5.268.344-.97.357-.966.71-2.21.355-1.254 1.275-2.444 1.275-2.444a5.53 5.53 0 0 0-.595-.03c-4.1 0-13.172 3.705-16.05 9.093"/><path id="L" d="M84.833 142.91c-1.147 3.59-.762 11.008 9.283 16.518 5.968 3.273 10.5 2.73 12.598 2.472 3.46-.42 7.27-3.55 7.67-6.998.2-1.628-.118-3.402-.355-3.416-2.768-.172-4.35.382-5 .7 0 0 .817 3.43-3.45 4.954-1.38.49-5.156.8-9.402-1.52-4.12-2.248-5.146-4.29-6.08-6.3-2.27-4.886 2.096-6.032 2-6.67-.114-.763-1.27-3.822-2.17-4.437-.007-.005-.018-.007-.032-.007-.438 0-4.284 2.216-5.075 4.695"/><path id="M" d="M95.178 137.743l1.21 2.298.77 2.364c-.092-.553 6.336.906 9.665 5.276 1.002-.237 1.005-.224 2.242-.6 1.248-.38 2.744-.25 2.744-.25-1.622-3.244-9.563-9.12-15.86-9.12a9.36 9.36 0 0 0-.772.031"/><path id="N" d="M34.22 114.836c-1.146 3.59-.762 11 9.283 16.52 5.97 3.273 10.49 2.73 12.598 2.473 3.462-.425 7.272-3.55 7.67-7 .188-1.63-.117-3.402-.355-3.416-2.77-.172-4.35.38-4.99.71 0 0 .817 3.43-3.45 4.952-1.378.49-5.156.8-9.402-1.518-4.12-2.25-5.145-4.293-6.08-6.302-2.27-4.888 2.098-6.033 2-6.67-.114-.764-1.27-3.824-2.17-4.44-.006-.005-.017-.007-.03-.007-.437 0-4.285 2.217-5.076 4.696"/><path id="O" d="M44.564 109.67l1.2 2.298.77 2.364c-.09-.552 6.337.906 9.665 5.275 1.004-.236 1.006-.223 2.24-.598 1.25-.38 2.745-.252 2.745-.252-1.622-3.243-9.562-9.118-15.86-9.118a9.38 9.38 0 0 0-.772.031"/><path id="P" d="M51.083 139.494l3.896 2.314.235-16.854c.05-1.342.806-3.278 2.94-3.847 1.37-.366 2.166-.047 3.49.71 1.742.996 2.843 2.028 4.537 4.3 1.653 2.224 2.157 3.53 2.693 5.625.52 2.03.428 4.808.428 4.808l.113 13.863 3.96 2.317-.058-17.877s-.354-1.986-1.372-5.097-1.68-4.407-3.777-7.178-4.664-5.042-6.9-6.167c-1.092-.548-3.313-1.825-5.49-1.02-2.138.794-3.02 1.7-3.902 3.566-.904 1.9-.623 3.62-.737 4.638s-.058 2.434-.058 2.434v13.465z"/></defs><mask maskUnits="userSpaceOnUse" x="224.763" y="63.426" width="30.06" height="23.889" id="Q"><g filter="url(#A)"><use xlink:href="#B" class="AT"/></g></mask><linearGradient id="R" gradientUnits="userSpaceOnUse" x1="235.821" y1="61.788" x2="243.592" y2="88.24"><stop offset="0" stop-color="#e6e7e7"/><stop offset="1" stop-color="#a7a9ac"/></linearGradient><use xlink:href="#B" mask="url(#Q)" fill="url(#R)"/><path d="M230.32 63.432c.9.617 2.055 3.678 2.17 4.44.096.638-4.272 1.783-2.002 6.67.934 2.01 1.96 4.052 6.08 6.302 4.246 2.317 8.023 2 9.402 1.518 4.266-1.524 3.45-4.953 3.45-4.953.64-.33 2.22-.88 5-.71.238.015.543 1.79.355 3.418-.4 3.448-4.21 6.573-7.672 6.998-2.107.257-6.628.8-12.597-2.473-10.045-5.5-10.43-12.928-9.283-16.52.816-2.558 4.89-4.835 5.107-4.69z" class="AQ AR AS"/><defs><filter id="S" filterUnits="userSpaceOnUse" x="235.558" y="62.926" width="16.631" height="9.967"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="235.558" y="62.926" width="16.631" height="9.967" id="T"><g filter="url(#S)"><use xlink:href="#C" class="AT"/></g></mask><linearGradient id="U" gradientUnits="userSpaceOnUse" x1="235.322" y1="55.288" x2="251.962" y2="80.575"><stop offset="0" stop-color="#e6e7e7"/><stop offset="1" stop-color="#a7a9ac"/></linearGradient><use xlink:href="#C" mask="url(#T)" fill="url(#U)"/><path d="M237.536 67.62l-.77-2.364-1.21-2.297c6.4-.522 14.942 5.71 16.63 9.086 0 0-1.496-.127-2.744.252-1.236.375-1.238.363-2.242.597-3.328-4.368-9.758-5.826-9.666-5.274z" class="AQ AR AS"/><path d="M44.926 83.588c.297.078 2.03-2.83 1.723-4.5 0 0-1.077.15-2.17-1.957-1.036-1.996.566-7.658 6.965-10.672 7.382-3.477 11.38-.37 11.836.904 1.145 3.207-1.412 7.467-5.43 9.936-3.935 2.418-5.102 1.814-5.8 2.218 0 0-.433 2.8-2 4.868 0 0 4.525.015 10.14-3.395 7.15-4.34 9.87-11.006 8.005-16.064-1.12-3.034-8.517-7.696-19.356-1.98-9.046 4.77-11.093 13.293-9.26 16.748 1.22 2.3 4.312 3.6 5.36 3.885" class="AX"/><path d="M44.926 83.588c.297.078 2.03-2.83 1.723-4.5 0 0-1.077.15-2.17-1.957-1.036-1.996.566-7.658 6.965-10.672 7.382-3.477 11.38-.37 11.836.904 1.145 3.207-1.412 7.467-5.43 9.936-3.935 2.418-5.102 1.814-5.8 2.218 0 0-.433 2.8-2 4.868 0 0 4.525.015 10.14-3.395 7.15-4.34 9.87-11.006 8.005-16.064-1.12-3.034-8.517-7.696-19.356-1.98-9.046 4.77-11.093 13.293-9.26 16.748 1.22 2.3 4.312 3.6 5.36 3.885z" class="AQ AR AS"/><defs><filter id="V" filterUnits="userSpaceOnUse" x="21.959" y="70.389" width="30.005" height="23.878"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="21.959" y="70.389" width="30.005" height="23.878" id="W"><g filter="url(#V)"><use xlink:href="#D" class="AT"/></g></mask><linearGradient id="X" gradientUnits="userSpaceOnUse" x1="23.747" y1="77.976" x2="50.194" y2="85.768"><stop offset="0" stop-color="#e6e7e7"/><stop offset="1" stop-color="#a7a9ac"/></linearGradient><use xlink:href="#D" mask="url(#W)" fill="url(#X)"/><path d="M22.145 83.49c1.005-.424 4.203.262 4.906.578.587.264-.813 4.557 4.524 5.295 2.195.305 4.47.547 8.59-1.7 4.247-2.313 6.034-5.656 6.367-7.08C47.562 76.17 44.237 75 44.237 75c.07-.717.462-2.348 2.104-4.58.142-.194 1.798.51 3.066 1.55 2.682 2.205 3.248 7.1 1.73 10.24-.925 1.912-2.918 6.006-8.9 9.252-10.07 5.46-16.517 1.767-18.915-1.14-1.708-2.072-1.42-6.73-1.176-6.832z" class="AQ AR AS"/><defs><filter id="Y" filterUnits="userSpaceOnUse" x="24.58" y="69.737" width="16.645" height="9.949"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="24.58" y="69.737" width="16.645" height="9.949" id="Z"><g filter="url(#Y)"><use xlink:href="#E" class="AT"/></g></mask><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="24.817" y1="87.414" x2="41.455" y2="62.042"><stop offset="0" stop-color="#e6e7e7"/><stop offset="1" stop-color="#a7a9ac"/></linearGradient><use xlink:href="#E" mask="url(#Z)" fill="url(#a)"/><path d="M29.57 79.686l-2.404-.63-2.587-.228c3.028-5.662 12.892-9.47 16.645-9.06 0 0-.918 1.2-1.275 2.443-.353 1.243-.365 1.237-.7 2.21-5.476.432-10.183 5.047-9.67 5.268z" class="AQ AR AS"/><defs><filter id="b" filterUnits="userSpaceOnUse" x="159.526" y=".504" width="71.394" height="40.691"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="159.526" y=".504" width="71.394" height="40.691" id="c"><g filter="url(#b)"><path d="M159.527 1.205l68.148 39.99c1.594-.85 2.603-.83 3.244-.454l-68.15-40c-.26-.153-.583-.247-.982-.247-.578 0-1.317.197-2.26.7" class="AT"/></g></mask><path d="M161.767.504c-.408.003-.894.106-1.475.342h-.002c-.238.096-.492.213-.764.36l68.148 40c.273-.146.527-.263.766-.36 1.16-.47 1.948-.406 2.48-.096L162.77.752c-.266-.156-.595-.252-1.002-.248z" mask="url(#c)" fill="#1d5c87"/><path d="M227.675 41.196L206.2 52.615l-68.15-39.992 21.476-11.418z" class="AY"/><defs><filter id="d" filterUnits="userSpaceOnUse" x="135.835" y="0" width="69.716" height="40.257"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="135.835" y="0" width="69.716" height="40.257" id="e"><g filter="url(#d)"><path d="M136.753 0c-.28.006-.592.09-.92.265l68.148 39.992c.613-.325 1.168-.342 1.57-.105L137.404.163c-.175-.103-.376-.16-.6-.163" class="AT"/></g></mask><path d="M136.804 0c-.222-.004-.463.044-.717.146a2.72 2.72 0 0 0-.252.119l68.146 39.992a2.23 2.23 0 0 1 .254-.119c.51-.207.968-.2 1.316.014l-68.148-40a1.22 1.22 0 0 0-.599-.162z" mask="url(#e)" fill="#1e5e89"/><defs><filter id="f" filterUnits="userSpaceOnUse" x="43.257" y="133.857" width="70.838" height="45.912"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="43.257" y="133.857" width="70.838" height="45.912" id="g"><g filter="url(#f)"><path d="M45.947 139.777l68.148 39.992c-1.664-.977-2.698-3.034-2.69-5.923l-68.15-39.99c-.007 2.887 1.025 4.943 2.69 5.92" class="AT"/></g></mask><path d="M43.257 133.857a10.46 10.46 0 0 0 .16 1.889l-.002-.002c.11.586.27 1.124.48 1.61a5.56 5.56 0 0 0 .91 1.469 4.57 4.57 0 0 0 1.141.953l68.15 39.992c-.426-.25-.808-.57-1.143-.955-.363-.415-.668-.904-.908-1.47-.2-.484-.37-1.02-.48-1.61-.107-.58-.162-1.214-.16-1.89l-68.148-39.988z" mask="url(#g)" fill="#236796"/><path d="M133.302 91.375l-68.15-39.99.025-10.74 68.15 40z" fill="#276e9f"/><path d="M135.628 76.603l-68.15-40L135.833.265l68.15 39.992z" class="AY"/><defs><filter id="h" filterUnits="userSpaceOnUse" x="65.178" y="36.613" width="70.45" height="44.021"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="65.178" y="36.613" width="70.45" height="44.021" id="i"><g filter="url(#h)"><path d="M65.177 40.644l68.15 40c.046-1.68 1.054-3.37 2.3-4.03l-68.15-40c-1.245.66-2.253 2.35-2.3 4.03" class="AT"/></g></mask><path d="M67.478 36.613c-.08.042-.16.088-.238.14h-.002a3.44 3.44 0 0 0-.408.311c-.125.11-.246.232-.36.363-.202.223-.383.476-.547.75-.182.307-.338.636-.46.98l-.002-.002c-.167.477-.268.984-.283 1.488l68.15 40c.014-.504.115-1.01.28-1.488.12-.344.274-.675.46-.98a4.92 4.92 0 0 1 .549-.75c.116-.13.237-.25.36-.363h.002c.13-.115.267-.217.406-.31h.002a2.11 2.11 0 0 1 .24-.143l-68.15-39.99z" mask="url(#i)" fill="#457aa5"/><path d="M111.405 173.846l-68.15-39.99.165-67.055 68.148 39.99z" fill="#276e9f"/><path d="M114.146 101.56L45.998 61.57l19.154-10.185 68.15 39.99z" class="AY"/><path d="M203.982 40.257c1.244-.662 2.248-.04 2.246 1.38l-.027 10.978 21.474-11.42c4.364-2.32 4.354 1.852 4.354 2.072l-.165 66.53c-.013 5.672-4.026 12.396-8.972 15.026L120.324 179.36c-4.938 2.625-8.934.158-8.918-5.515l.164-67.055c.008-3.513 2.45-5.144 2.576-5.23l19.156-10.185.026-10.74c.047-1.68 1.054-3.37 2.3-4.03l68.354-36.346z" fill="#1d5c87"/><defs><filter id="j" filterUnits="userSpaceOnUse" x="43.423" y="61.568" width="70.722" height="45.225"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="43.423" y="61.568" width="70.722" height="45.225" id="k"><g filter="url(#j)"><path d="M43.42 66.802l68.148 40c.008-3.513 2.45-5.145 2.577-5.232l-68.15-39.992c-.13.088-2.568 1.72-2.576 5.234" class="AT"/></g></mask><path d="M45.997 61.568c-.03.02-.198.133-.43.338a6.22 6.22 0 0 0-.518.516c-.23.26-.478.582-.71.97l68.148 40c.23-.386.477-.708.71-.967h.002v-.002a5.8 5.8 0 0 1 .516-.516c.233-.205.398-.314.43-.336L45.997 61.568zm66.492 41.813L44.34 63.393a6.13 6.13 0 0 0-.545 1.158c-.21.596-.352 1.283-.373 2.068h.002 0l-.002.182 68.146 40v-.186c.022-.783.163-1.472.373-2.064a6.14 6.14 0 0 1 .545-1.162z" mask="url(#k)" fill="#467da8"/><path d="M168.927 152.88l-11.753 6.224.064-32.23 11.75-6.225zm16.14-8.707l-11.754 6.225.065-32.234 11.75-6.225zm17.3-76.453l-12.97 6.87.035-17.6 12.97-6.872z" class="AU"/><path d="M191.148 57.67l9.96-5.277-.027 13.867s-.604-7.38-4.836-8.48c-3.884-1.002-5.096-.11-5.096-.11" class="AV"/><path d="M151.14 94.86l-12.973 6.87.035-17.6 12.973-6.873z" class="AU"/><path d="M139.732 84.9l9.96-5.275-.027 13.865s-.606-7.377-4.84-8.477c-3.885-1.004-5.092-.113-5.092-.113" class="AV"/><path d="M202.316 93.914l-12.97 6.87.03-17.596 12.97-6.87z" class="AU"/><path d="M191.095 83.867l9.96-5.276-.027 13.872s-.602-7.385-4.837-8.482c-3.884-1.007-5.097-.114-5.097-.114" class="AV"/><path d="M184.993 76.925l-12.973 6.873.035-17.6 12.973-6.873z" class="AU"/><path d="M173.773 66.876l9.957-5.275-.025 13.865s-.604-7.377-4.834-8.48c-3.89-1-5.098-.11-5.098-.11" class="AV"/><path d="M184.942 103.117l-12.972 6.874.034-17.596 12.972-6.872z" class="AU"/><path d="M173.72 93.074l9.96-5.277-.025 13.87s-.604-7.385-4.836-8.487c-3.885-1.002-5.098-.107-5.098-.107" class="AV"/><path d="M168.605 85.605l-12.978 6.878.035-17.602 12.976-6.874z" class="AU"/><path d="M157.382 75.56l9.963-5.278-.027 13.866s-.608-7.377-4.84-8.477c-3.884-1.002-5.095-.11-5.095-.11" class="AV"/><path d="M168.553 111.8l-12.978 6.873.036-17.596 12.976-6.873z" class="AU"/><path d="M157.33 101.755l9.963-5.276-.027 13.87s-.608-7.38-4.84-8.482c-3.887-1.002-5.096-.11-5.096-.11" class="AV"/><path d="M151.09 121.05l-12.973 6.875.032-17.6 12.972-6.87z" class="AU"/><path d="M139.683 111.105l9.956-5.274-.026 13.87s-.607-7.38-4.842-8.48c-3.88-1.006-5.088-.115-5.088-.115" class="AV"/><path d="M202.267 119.57l-12.97 6.868.034-17.595 12.97-6.873z" class="AU"/><path d="M191.046 109.517l9.96-5.275-.027 13.87s-.604-7.38-4.838-8.48c-3.883-1.006-5.096-.115-5.096-.115" class="AV"/><path d="M150.534 146.972l-12.972 6.875.036-17.6 12.97-6.872z" class="AU"/><path d="M139.317 136.92l9.957-5.274-.027 13.87s-.606-7.38-4.834-8.483c-3.887-1-5.096-.114-5.096-.114" class="AV"/><path d="M130.567 116.35l-12.975 6.878.033-17.593 12.977-6.875z" class="AU"/><path d="M119.347 106.304l9.957-5.273-.027 13.875s-.604-7.387-4.834-8.483c-3.887-1.003-5.096-.12-5.096-.12" class="AV"/><path d="M130.515 142.55l-12.975 6.873.036-17.598 12.974-6.876z" class="AU"/><path d="M119.296 132.5l9.957-5.273-.027 13.872s-.604-7.383-4.834-8.486c-3.886-1-5.096-.113-5.096-.113" class="AV"/><path d="M226.732 65.407L213.76 72.28l.035-17.592 12.97-6.87z" class="AU"/><path d="M215.51 55.358l9.96-5.274-.028 13.875s-.6-7.39-4.832-8.483c-3.887-1.003-5.1-.118-5.1-.118" class="AV"/><path d="M226.68 91.604l-12.97 6.872.03-17.6 12.973-6.87z" class="AU"/><path d="M215.462 81.554l9.96-5.275-.03 13.872s-.602-7.384-4.834-8.484c-3.885-1.002-5.098-.113-5.098-.113" class="AV"/><path d="M34.177 89.43c-.096.29-3.665.014-4.9-.775 0 0 .606-1.442-.284-3.098-1.065-1.982-6.743-3.676-12.743.064-6.924 4.32-6.48 9.364-5.657 10.438 2.072 2.7 7.04 2.863 11.292.826 4.163-1.996 4.384-3.437 5.106-3.812 0 0 3.888 1.138 5.082 1.09 0 0-2.44 3.81-8.35 6.678-7.523 3.654-14.6 2.326-17.838-1.984-1.943-2.584-1.85-11.328 8.83-17.338 8.912-5.014 17.183-2.113 19.093 1.3 1.27 2.27.695 5.582.358 6.61" class="AW"/><path d="M34.177 89.43c-.096.29-3.665.014-4.9-.775 0 0 .606-1.442-.284-3.098-1.065-1.982-6.743-3.676-12.743.064-6.924 4.32-6.48 9.364-5.657 10.438 2.072 2.7 7.04 2.863 11.292.826 4.163-1.996 4.384-3.437 5.106-3.812 0 0 3.888 1.138 5.082 1.09 0 0-2.44 3.81-8.35 6.678-7.523 3.654-14.6 2.326-17.838-1.984-1.943-2.584-1.85-11.328 8.83-17.338 8.912-5.014 17.183-2.113 19.093 1.3 1.27 2.27.695 5.582.358 6.61z" class="AQ AR AS"/><path d="M264.18 90.833c-.094.29-4.092 1.395-5.316.605 0 0 .605-1.44-.284-3.097-1.066-1.983-6.744-3.676-12.744.064-6.924 4.32-6.48 9.364-5.656 10.438 2.072 2.7 7.04 2.863 11.29.824 4.164-1.994 4.385-3.436 5.107-3.813 0 0 3.887 1.14 5.08 1.092 0 0-2.44 3.81-8.348 6.68-7.524 3.654-14.6 2.326-17.838-1.984-1.943-2.586-1.85-11.33 8.83-17.338 8.9-5.014 17.182-2.116 19.092 1.3 1.27 2.27 1.123 4.203.785 5.23" class="AW"/><path d="M264.18 90.833c-.094.29-4.092 1.395-5.316.605 0 0 .605-1.44-.284-3.097-1.066-1.983-6.744-3.676-12.744.064-6.924 4.32-6.48 9.364-5.656 10.438 2.072 2.7 7.04 2.863 11.29.824 4.164-1.994 4.385-3.436 5.107-3.813 0 0 3.887 1.14 5.08 1.092 0 0-2.44 3.81-8.348 6.68-7.524 3.654-14.6 2.326-17.838-1.984-1.943-2.586-1.85-11.33 8.83-17.338 8.9-5.014 17.182-2.116 19.092 1.3 1.27 2.27 1.123 4.203.785 5.23z" class="AQ AR AS"/><defs><filter id="l" filterUnits="userSpaceOnUse" x="217.354" y="91.352" width="30.005" height="23.879"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="217.354" y="91.352" width="30.005" height="23.879" id="m"><g filter="url(#l)"><use xlink:href="#F" class="AT"/></g></mask><linearGradient id="n" gradientUnits="userSpaceOnUse" x1="219.136" y1="98.94" x2="245.588" y2="106.732"><stop offset="0" stop-color="#e6e7e7"/><stop offset="1" stop-color="#a7a9ac"/></linearGradient><use xlink:href="#F" mask="url(#m)" fill="url(#n)"/><path d="M217.538 104.452c1.006-.424 4.205.262 4.906.578.588.264-.812 4.557 4.526 5.295 2.195.303 4.468.547 8.59-1.7 4.247-2.315 6.034-5.654 6.368-7.08 1.03-4.4-2.297-5.582-2.297-5.582.072-.717.463-2.346 2.105-4.58.14-.194 1.8.51 3.065 1.55 2.683 2.205 3.248 7.1 1.73 10.24-.924 1.912-2.918 6.006-8.9 9.252-10.072 5.463-16.516 1.767-18.914-1.14-1.71-2.072-1.42-6.73-1.178-6.832z" class="AQ AR AS"/><defs><filter id="o" filterUnits="userSpaceOnUse" x="219.976" y="90.699" width="16.644" height="9.95"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="219.976" y="90.699" width="16.644" height="9.95" id="p"><g filter="url(#o)"><use xlink:href="#G" class="AT"/></g></mask><linearGradient id="q" gradientUnits="userSpaceOnUse" x1="220.211" y1="108.374" x2="236.849" y2="83.007"><stop offset="0" stop-color="#e6e7e7"/><stop offset="1" stop-color="#a7a9ac"/></linearGradient><use xlink:href="#G" mask="url(#p)" fill="url(#q)"/><path d="M224.966 100.65l-2.404-.63-2.586-.228c3.027-5.664 12.892-9.47 16.644-9.06 0 0-.918 1.2-1.275 2.443-.352 1.243-.365 1.24-.71 2.21-5.475.432-10.182 5.047-9.668 5.268z" class="AQ AR AS"/><path d="M229.853 110.682c-.094.29-3.664.014-4.89-.775 0 0 .606-1.442-.283-3.096-1.066-1.984-6.744-3.678-12.744.064-6.924 4.32-6.48 9.364-5.656 10.436 2.072 2.7 7.04 2.863 11.29.826 4.164-1.996 4.385-3.437 5.107-3.812 0 0 3.887 1.138 5.08 1.09 0 0-2.44 3.81-8.347 6.678-7.524 3.654-14.6 2.328-17.84-1.984-1.942-2.584-1.848-11.328 8.832-17.338 8.9-5.014 17.18-2.113 19.092 1.3 1.27 2.27.695 5.582.357 6.61" class="AW"/><path d="M229.853 110.682c-.094.29-3.664.014-4.89-.775 0 0 .606-1.442-.283-3.096-1.066-1.984-6.744-3.678-12.744.064-6.924 4.32-6.48 9.364-5.656 10.436 2.072 2.7 7.04 2.863 11.29.826 4.164-1.996 4.385-3.437 5.107-3.812 0 0 3.887 1.138 5.08 1.09 0 0-2.44 3.81-8.347 6.678-7.524 3.654-14.6 2.328-17.84-1.984-1.942-2.584-1.848-11.328 8.832-17.338 8.9-5.014 17.18-2.113 19.092 1.3 1.27 2.27.695 5.582.357 6.61z" class="AQ AR AS"/><path d="M213.442 119.624c-.096.29-3.664.014-4.89-.775 0 0 .606-1.442-.285-3.096-1.064-1.984-6.742-3.678-12.742.064-6.924 4.32-6.48 9.362-5.658 10.436 2.072 2.7 7.04 2.863 11.293.826 4.162-1.996 4.385-3.437 5.105-3.812 0 0 3.89 1.138 5.082 1.09 0 0-2.44 3.81-8.347 6.678-7.524 3.654-14.6 2.328-17.84-1.984-1.942-2.584-1.848-11.328 8.83-17.338 8.912-5.014 17.183-2.113 19.094 1.3 1.27 2.27.695 5.582.357 6.61" class="AW"/><path d="M213.442 119.624c-.096.29-3.664.014-4.89-.775 0 0 .606-1.442-.285-3.096-1.064-1.984-6.742-3.678-12.742.064-6.924 4.32-6.48 9.362-5.658 10.436 2.072 2.7 7.04 2.863 11.293.826 4.162-1.996 4.385-3.437 5.105-3.812 0 0 3.89 1.138 5.082 1.09 0 0-2.44 3.81-8.347 6.678-7.524 3.654-14.6 2.328-17.84-1.984-1.942-2.584-1.848-11.328 8.83-17.338 8.912-5.014 17.183-2.113 19.094 1.3 1.27 2.27.695 5.582.357 6.61z" class="AQ AR AS"/><defs><filter id="r" filterUnits="userSpaceOnUse" x="167.398" y="118.584" width="30.004" height="23.881"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="167.398" y="118.584" width="30.004" height="23.881" id="s"><g filter="url(#r)"><use xlink:href="#H" class="AT"/></g></mask><linearGradient id="t" gradientUnits="userSpaceOnUse" x1="169.18" y1="126.169" x2="195.628" y2="133.964"><stop offset="0" stop-color="#e6e7e7"/><stop offset="1" stop-color="#a7a9ac"/></linearGradient><use xlink:href="#H" mask="url(#s)" fill="url(#t)"/><path d="M167.583 131.684c1.004-.422 4.203.264 4.906.58.588.264-.814 4.555 4.524 5.295 2.195.303 4.468.545 8.6-1.7 4.248-2.315 6.035-5.656 6.367-7.082 1.03-4.4-2.295-5.582-2.295-5.582.07-.717.46-2.346 2.103-4.58.143-.192 1.8.51 3.067 1.552 2.68 2.203 3.246 7.098 1.728 10.24-.924 1.912-2.916 6.006-8.9 9.252-10.07 5.46-16.516 1.767-18.914-1.14-1.71-2.074-1.42-6.73-1.176-6.834z" class="AQ AR AS"/><defs><filter id="u" filterUnits="userSpaceOnUse" x="170.019" y="117.933" width="16.646" height="9.95"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="170.019" y="117.933" width="16.646" height="9.95" id="v"><g filter="url(#u)"><use xlink:href="#I" class="AT"/></g></mask><linearGradient id="w" gradientUnits="userSpaceOnUse" x1="170.254" y1="135.61" x2="186.895" y2="110.24"><stop offset="0" stop-color="#e6e7e7"/><stop offset="1" stop-color="#a7a9ac"/></linearGradient><use xlink:href="#I" mask="url(#v)" fill="url(#w)"/><path d="M175.01 127.883l-2.406-.633-2.586-.226c3.027-5.664 12.892-9.47 16.646-9.06 0 0-.92 1.188-1.275 2.443-.354 1.243-.365 1.237-.71 2.21-5.475.432-10.184 5.045-9.668 5.268z" class="AQ AR AS"/><path d="M157.043 150.352c.297.078 2.03-2.828 1.723-4.488 0 0-1.078.148-2.172-1.957-1.035-1.998.566-7.66 6.965-10.672 7.38-3.477 11.38-.37 11.837.904 1.144 3.205-1.413 7.467-5.43 9.936-3.935 2.416-5.103 1.814-5.8 2.218 0 0-.433 2.8-2 4.868 0 0 4.523.013 10.138-3.395 7.15-4.34 9.87-11.006 8.004-16.064-1.117-3.034-8.516-7.696-19.355-1.98-9.046 4.77-11.093 13.293-9.26 16.748 1.218 2.3 4.3 3.6 5.36 3.883" class="AX"/><path d="M157.043 150.352c.297.078 2.03-2.828 1.723-4.488 0 0-1.078.148-2.172-1.957-1.035-1.998.566-7.66 6.965-10.672 7.38-3.477 11.38-.37 11.837.904 1.144 3.205-1.413 7.467-5.43 9.936-3.935 2.416-5.103 1.814-5.8 2.218 0 0-.433 2.8-2 4.868 0 0 4.523.013 10.138-3.395 7.15-4.34 9.87-11.006 8.004-16.064-1.117-3.034-8.516-7.696-19.355-1.98-9.046 4.77-11.093 13.293-9.26 16.748 1.218 2.3 4.3 3.6 5.36 3.883z" class="AQ AR AS"/><defs><filter id="x" filterUnits="userSpaceOnUse" x="134.721" y="136.373" width="30.004" height="23.879"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="134.721" y="136.373" width="30.004" height="23.879" id="y"><g filter="url(#x)"><use xlink:href="#J" class="AT"/></g></mask><linearGradient id="z" gradientUnits="userSpaceOnUse" x1="136.511" y1="143.962" x2="162.956" y2="151.754"><stop offset="0" stop-color="#e6e7e7"/><stop offset="1" stop-color="#a7a9ac"/></linearGradient><use xlink:href="#J" mask="url(#y)" fill="url(#z)"/><path d="M134.906 149.473c1.004-.424 4.203.264 4.906.578.588.266-.814 4.557 4.524 5.297 2.195.303 4.468.545 8.6-1.7 4.248-2.313 6.035-5.654 6.367-7.08 1.03-4.4-2.297-5.582-2.297-5.582.072-.717.463-2.346 2.105-4.58.143-.192 1.8.51 3.067 1.55 2.68 2.205 3.246 7.1 1.728 10.24-.924 1.9-2.916 6.006-8.9 9.25-10.072 5.463-16.516 1.767-18.914-1.14-1.71-2.072-1.42-6.728-1.176-6.832z" class="AQ AR AS"/><defs><filter id="AA" filterUnits="userSpaceOnUse" x="137.342" y="135.72" width="16.646" height="9.951"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="137.342" y="135.72" width="16.646" height="9.951" id="AB"><g filter="url(#AA)"><use xlink:href="#K" class="AT"/></g></mask><linearGradient id="AC" gradientUnits="userSpaceOnUse" x1="137.578" y1="153.396" x2="154.219" y2="128.026"><stop offset="0" stop-color="#e6e7e7"/><stop offset="1" stop-color="#a7a9ac"/></linearGradient><use xlink:href="#K" mask="url(#AB)" fill="url(#AC)"/><path d="M142.332 145.67l-2.404-.63-2.586-.226c3.027-5.666 12.892-9.47 16.646-9.063 0 0-.92 1.2-1.275 2.443-.354 1.243-.367 1.24-.71 2.21-5.477.432-10.184 5.047-9.67 5.268z" class="AQ AR AS"/><path d="M123.83 168.448c.297.078 2.03-2.828 1.723-4.488 0 0-1.077.148-2.17-1.957-1.037-1.998.566-7.66 6.965-10.672 7.382-3.477 11.38-.37 11.836.904 1.144 3.205-1.413 7.467-5.43 9.936-3.934 2.416-5.102 1.814-5.81 2.218 0 0-.433 2.8-2 4.866 0 0 4.524.015 10.137-3.393 7.15-4.342 9.87-11.006 8.004-16.066-1.117-3.032-8.516-7.694-19.354-1.98-9.047 4.77-11.093 13.29-9.26 16.748 1.22 2.297 4.312 3.6 5.36 3.883" class="AX"/><path d="M123.83 168.448c.297.078 2.03-2.828 1.723-4.488 0 0-1.077.148-2.17-1.957-1.037-1.998.566-7.66 6.965-10.672 7.382-3.477 11.38-.37 11.836.904 1.144 3.205-1.413 7.467-5.43 9.936-3.934 2.416-5.102 1.814-5.81 2.218 0 0-.433 2.8-2 4.866 0 0 4.524.015 10.137-3.393 7.15-4.342 9.87-11.006 8.004-16.066-1.117-3.032-8.516-7.694-19.354-1.98-9.047 4.77-11.093 13.29-9.26 16.748 1.22 2.297 4.312 3.6 5.36 3.883z" class="AQ AR AS"/><path d="M102.192 157.426c.095.29 3.478.174 4.706-.983 0 0-.708-.824.47-2.885 1.118-1.952 6.746-3.67 12.744.075 6.92 4.324 6.473 9.367 5.648 10.44-2.076 2.7-7.04 2.857-11.293.817-4.162-2-4.29-3.307-5.01-3.683 0 0-2.59 1.152-5.174.954 0 0 2.436 3.81 8.344 6.686 7.52 3.66 14.597 2.338 17.84-1.97 1.944-2.584 1.858-11.327-8.816-17.344-8.908-5.023-17.183-2.128-19.095 1.284-1.27 2.27-.7 5.58-.363 6.61" class="AX"/><path d="M102.192 157.426c.095.29 3.478.174 4.706-.983 0 0-.708-.824.47-2.885 1.118-1.952 6.746-3.67 12.744.075 6.92 4.324 6.473 9.367 5.648 10.44-2.076 2.7-7.04 2.857-11.293.817-4.162-2-4.29-3.307-5.01-3.683 0 0-2.59 1.152-5.174.954 0 0 2.436 3.81 8.344 6.686 7.52 3.66 14.597 2.338 17.84-1.97 1.944-2.584 1.858-11.327-8.816-17.344-8.908-5.023-17.183-2.128-19.095 1.284-1.27 2.27-.7 5.58-.363 6.61z" class="AQ AR AS"/><path d="M91.46 151.552c-.297.077-1.998-3.072-1.998-4.53 0 0 1.54-.27 2.45-1.915 1.09-1.97-.56-7.66-6.954-10.678-7.38-3.483-11.382-.38-11.838.894-1.148 3.205 1.405 7.47 5.422 9.94 3.932 2.42 5.263 1.825 5.97 2.23 0 0 1.147 3.885 1.834 4.864 0 0-4.525.01-10.136-3.403-7.146-4.347-9.862-11.013-7.99-16.072 1.12-3.03 8.522-7.687 19.356-1.965 9.042 4.778 11.082 13.303 9.247 16.756-1.22 2.298-4.315 3.606-5.362 3.88" class="AW"/><path d="M91.46 151.552c-.297.077-1.998-3.072-1.998-4.53 0 0 1.54-.27 2.45-1.915 1.09-1.97-.56-7.66-6.954-10.678-7.38-3.483-11.382-.38-11.838.894-1.148 3.205 1.405 7.47 5.422 9.94 3.932 2.42 5.263 1.825 5.97 2.23 0 0 1.147 3.885 1.834 4.864 0 0-4.525.01-10.136-3.403-7.146-4.347-9.862-11.013-7.99-16.072 1.12-3.03 8.522-7.687 19.356-1.965 9.042 4.778 11.082 13.303 9.247 16.756-1.22 2.298-4.315 3.606-5.362 3.88z" class="AQ AR AS"/><defs><filter id="AD" filterUnits="userSpaceOnUse" x="84.384" y="138.214" width="30.06" height="23.887"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="84.384" y="138.214" width="30.06" height="23.887" id="AE"><g filter="url(#AD)"><use xlink:href="#L" class="AT"/></g></mask><linearGradient id="AF" gradientUnits="userSpaceOnUse" x1="95.44" y1="136.577" x2="103.21" y2="163.032"><stop offset="0" stop-color="#e6e7e7"/><stop offset="1" stop-color="#a7a9ac"/></linearGradient><use xlink:href="#L" mask="url(#AE)" fill="url(#AF)"/><path d="M89.94 138.22c.9.616 2.057 3.675 2.17 4.437.096.638-4.272 1.785-2 6.67.934 2 1.96 4.053 6.08 6.3 4.245 2.32 8.022 2.01 9.4 1.52 4.266-1.524 3.45-4.954 3.45-4.954.64-.328 2.222-.882 5-.7.236.014.545 1.788.355 3.416-.4 3.45-4.21 6.576-7.67 6.998-2.108.258-6.63.8-12.598-2.472-10.045-5.5-10.43-12.928-9.282-16.52.816-2.558 4.887-4.837 5.106-4.688z" class="AQ AR AS"/><defs><filter id="AG" filterUnits="userSpaceOnUse" x="95.178" y="137.712" width="16.631" height="9.969"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="95.178" y="137.712" width="16.631" height="9.969" id="AH"><g filter="url(#AG)"><use xlink:href="#M" class="AT"/></g></mask><linearGradient id="AI" gradientUnits="userSpaceOnUse" x1="94.941" y1="130.078" x2="111.582" y2="155.357"><stop offset="0" stop-color="#e6e7e7"/><stop offset="1" stop-color="#a7a9ac"/></linearGradient><use xlink:href="#M" mask="url(#AH)" fill="url(#AI)"/><path d="M97.157 142.405l-.77-2.363-1.208-2.3c6.4-.522 14.942 5.71 16.63 9.09 0 0-1.496-.13-2.744.25-1.236.376-1.24.362-2.242.6-3.328-4.37-9.757-5.83-9.665-5.276z" class="AQ AR AS"/><defs><filter id="AJ" filterUnits="userSpaceOnUse" x="33.77" y="110.14" width="30.059" height="23.888"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="33.77" y="110.14" width="30.059" height="23.888" id="AK"><g filter="url(#AJ)"><use xlink:href="#N" class="AT"/></g></mask><linearGradient id="AL" gradientUnits="userSpaceOnUse" x1="44.827" y1="108.508" x2="52.6" y2="134.962"><stop offset="0" stop-color="#e6e7e7"/><stop offset="1" stop-color="#a7a9ac"/></linearGradient><use xlink:href="#N" mask="url(#AK)" fill="url(#AL)"/><path d="M39.326 110.147c.9.616 2.056 3.677 2.17 4.44.097.637-4.27 1.782-2.002 6.67.935 2.01 1.96 4.053 6.08 6.302 4.246 2.317 8.023 2.01 9.402 1.518 4.265-1.523 3.45-4.952 3.45-4.952.64-.33 2.22-.883 4.99-.71.238.014.543 1.787.355 3.417-.4 3.448-4.2 6.573-7.672 6.998-2.107.256-6.628.8-12.597-2.474-10.045-5.508-10.43-12.927-9.283-16.52.816-2.558 4.888-4.836 5.107-4.688z" class="AQ AR AS"/><defs><filter id="AM" filterUnits="userSpaceOnUse" x="44.564" y="109.64" width="16.631" height="9.968"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="44.564" y="109.64" width="16.631" height="9.968" id="AN"><g filter="url(#AM)"><use xlink:href="#O" class="AT"/></g></mask><linearGradient id="AO" gradientUnits="userSpaceOnUse" x1="44.328" y1="102.005" x2="60.968" y2="127.286"><stop offset="0" stop-color="#e6e7e7"/><stop offset="1" stop-color="#a7a9ac"/></linearGradient><use xlink:href="#O" mask="url(#AN)" fill="url(#AO)"/><path d="M46.544 114.333l-.77-2.363-1.208-2.3c6.4-.52 14.94 5.71 16.63 9.088 0 0-1.497-.128-2.745.252-1.235.374-1.237.36-2.24.597-3.328-4.37-9.757-5.827-9.665-5.275z" class="AQ AR AS"/><path d="M40.757 123.874c-.297.078-1.997-3.072-1.997-4.53 0 0 1.54-.273 2.45-1.917 1.1-1.97-.56-7.66-6.954-10.678-7.38-3.48-11.382-.378-11.837.895-1.148 3.206 1.404 7.47 5.42 9.94 3.932 2.42 5.264 1.826 5.97 2.23 0 0 1.147 3.885 1.834 4.862 0 0-4.526.012-10.136-3.402-7.146-4.346-9.862-11.014-7.99-16.07 1.12-3.032 8.523-7.687 19.356-1.965 9.042 4.777 11.083 13.3 9.247 16.755-1.22 2.298-4.315 3.607-5.362 3.88" class="AW"/><path d="M40.757 123.874c-.297.078-1.997-3.072-1.997-4.53 0 0 1.54-.273 2.45-1.917 1.1-1.97-.56-7.66-6.954-10.678-7.38-3.48-11.382-.378-11.837.895-1.148 3.206 1.404 7.47 5.42 9.94 3.932 2.42 5.264 1.826 5.97 2.23 0 0 1.147 3.885 1.834 4.862 0 0-4.526.012-10.136-3.402-7.146-4.346-9.862-11.014-7.99-16.07 1.12-3.032 8.523-7.687 19.356-1.965 9.042 4.777 11.083 13.3 9.247 16.755-1.22 2.298-4.315 3.607-5.362 3.88z" class="AQ AR AS"/><path d="M24.353 114.92c-.296.078-1.996-3.072-1.997-4.53 0 0 1.54-.272 2.45-1.916 1.09-1.97-.56-7.66-6.955-10.678-7.38-3.482-11.38-.38-11.837.894-1.15 3.206 1.405 7.47 5.42 9.942 3.932 2.42 5.263 1.825 5.97 2.228 0 0 1.147 3.885 1.835 4.864 0 0-4.525.01-10.136-3.403-7.147-4.345-9.862-11.014-7.992-16.072 1.12-3.03 8.523-7.687 19.357-1.965 9.04 4.778 11.083 13.3 9.248 16.756-1.222 2.3-4.317 3.606-5.364 3.88" class="AW"/><g class="AQ"><path d="M24.353 114.92c-.296.078-1.996-3.072-1.997-4.53 0 0 1.54-.272 2.45-1.916 1.09-1.97-.56-7.66-6.955-10.678-7.38-3.482-11.38-.38-11.837.894-1.15 3.206 1.405 7.47 5.42 9.942 3.932 2.42 5.263 1.825 5.97 2.228 0 0 1.147 3.885 1.835 4.864 0 0-4.525.01-10.136-3.403-7.147-4.345-9.862-11.014-7.992-16.072 1.12-3.03 8.523-7.687 19.357-1.965 9.04 4.778 11.083 13.3 9.248 16.756-1.222 2.3-4.317 3.606-5.364 3.88z" class="AR AS"/><g stroke="#4f504f"><path d="M46.478 168.21c-.564-.337-1.754-.74-1.77-2.095l.1-24.003c.04-.627-.065-1.722.322-1.936l1.637-.853 3.986-2.13.117-15.887c.157-1.278.746-3.267 2.082-4.448s1.864-1.218 3.8-2.258c1.89-1.017 5.605-3.396 7.22-3.6 1.463-.196 3.963.135 5.43 1.075 1.28.818 4.56 2.716 6.66 5.84 1.502 2.236 4.304 7.278 5.02 11.016.238 1.242.36 4.356.4 6.302.018.688-.13 8.434-.13 8.434l4.877 2.977c.338.225 1.47.718 1.436 2.297-.023 1.022-.02 23.7 0 24.176.035.86-.07 1.58-1.615 2.258-.98.434-14.098 7.462-14.098 7.462s-.467.574-1.685-.217c-1.592-1.028-23.81-14.4-23.81-14.4z" stroke-width="4.32"/><path d="M69.176 136.412c-.574-.108-6.063-3.732-6.063-3.732l-.037-9.65s3.697 3.733 4.808 6.422c.682 1.65 1.262 6.073 1.148 6.64-.007.035.19.33.144.322z" stroke-width="2.25"/></g></g><defs><filter id="AP" filterUnits="userSpaceOnUse" x="45.575" y="132.172" width="16.142" height="8.37"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="45.575" y="132.172" width="16.142" height="8.37" id="AQ"><g filter="url(#AP)"><path d="M61.106 132.225l-15.53 8.24c.162-.085.377-.067.612.074l15.53-8.244c-.14-.084-.272-.123-.39-.123a.47.47 0 0 0-.219.052" class="AT"/></g></mask><path d="M61.284 132.172l-.053.01c-.022.003-.042.01-.064.018l-15.53 8.24c.02-.01.042-.012.064-.018s.035-.006.053-.006l15.53-8.244zm-15.646 8.267l15.53-8.242a.27.27 0 0 0-.061.027l-15.53 8.242c.02-.01.042-.022.063-.027zm15.646-8.265l-15.53 8.244c.014-.003.03-.004.047-.004s.03.004.043.004.027.003.04.006l.002-.002c.012.003.024.003.037.006s.025.006.037.012l.035.01c.012.006.024.01.037.016l.002-.002c.01.003.022.01.033.016s.022.008.035.014l.035.02h.002l.033.02 15.545-8.234-.05-.028-.07-.036c-.01-.006-.023-.01-.035-.016v.002h-.002c-.012-.003-.024-.01-.035-.014s-.025-.01-.037-.012-.025-.005-.037-.008l-.04-.01-.004.002c-.01-.001-.022-.004-.033-.004s-.03-.002-.045-.002h-.047z" mask="url(#AQ)" fill="#ac8631"/><defs><filter id="AR" filterUnits="userSpaceOnUse" x="71.543" y="173.771" width="15.814" height="8.848"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="71.543" y="173.771" width="15.814" height="8.848" id="AS"><g filter="url(#AR)"><path d="M71.825 182.012c0 .305-.107.516-.28.606l15.53-8.24c.172-.09.282-.3.282-.606l-15.532 8.24z" class="AT"/></g></mask><path d="M87.356 173.77l-15.53 8.24v.023l15.53-8.244v-.02zm-15.53 8.264l-.002.04c0 .015-.002.03-.004.045s-.003.028-.004.043l-.008.045c-.002.015-.006.026-.008.04l-.012.047-.018.05h.002l-.02.05-.002.002-.035.064c-.043.07-.102.122-.17.158l15.53-8.24a.46.46 0 0 0 .17-.162c.012-.017.024-.04.035-.063l.02-.053.018-.045v-.002c.004-.015.01-.03.012-.045l.01-.045c.002-.015.007-.028.008-.043s.004-.027.004-.04l.002-.045.004-.043-15.532 8.243z" mask="url(#AS)" fill="#a3802e"/><path d="M61.717 132.296L86.44 147.15l-15.53 8.245-24.723-14.854z" fill="#d3a43e"/><path d="M87.337 148.77l.02 25.002-15.53 8.24-.02-25.002z" fill="#c49939"/><defs><filter id="AT" filterUnits="userSpaceOnUse" x="70.909" y="147.148" width="16.429" height="9.865"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="70.909" y="147.148" width="16.429" height="9.865" id="AU"><g filter="url(#AT)"><path d="M70.91 155.394c.49.292.897 1.027.897 1.616l15.53-8.24c0-.592-.407-1.324-.898-1.62" class="AT"/></g></mask><path d="M86.438 147.148l-15.53 8.244c.008.003.016.01.023.012l.037.027c.013.006.023.013.035.02l15.53-8.24c-.01-.01-.023-.016-.037-.025l-.037-.023c-.006-.006-.013-.01-.023-.016zm.098.067l-15.53 8.24a.39.39 0 0 0 .039.029c.012.012.025.02.037.03l.04.033c.014.015.025.025.04.037l15.53-8.24c-.013-.015-.025-.027-.04-.04-.01-.012-.024-.022-.037-.03s-.027-.024-.04-.033-.024-.018-.037-.027zm.154.13l-15.53 8.242c.012.012.024.02.037.037l.037.037.035.04c.01.015.02.026.033.04l.033.037.03.04.035.047c.012.015.023.033.035.05a2.21 2.21 0 0 1 .146.252c.01.018.018.034.025.053s.018.03.023.05l.036.082.018.045c.006.012.01.026.016.04a.36.36 0 0 0 .014.043l.016.045c.004.018.01.032.014.047h-.002l.014.047.012.05c.004.014.006.03.01.045v.002l.008.045.008.047.006.047.004.045.004.043.002.045v.02l15.53-8.242v-.02l-.002-.043-.002-.045-.006-.047c-.001-.015-.005-.03-.006-.043s-.004-.033-.006-.047-.006-.033-.01-.047-.006-.032-.008-.05-.01-.03-.012-.047l-.014-.05-.014-.047a.43.43 0 0 1-.014-.043l-.016-.045-.016-.043c-.004-.012-.01-.027-.016-.04l-.036-.082-.023-.05v-.002l-.027-.05a2.15 2.15 0 0 0-.146-.252c-.01-.018-.023-.037-.035-.05s-.02-.033-.033-.047-.02-.027-.03-.04l-.03-.04-.033-.037-.035-.04h-.002c-.012-.015-.023-.025-.035-.037s-.027-.027-.04-.04z" mask="url(#AU)" fill="#dfb04b"/><path d="M45.087 141.876c-.105-.926.06-2.32 1.232-1.485 1.07.756 22.252 13.532 23.014 13.907 2.457 1.213 2.7 2.32 2.57 3.533s-.023 22.872-.043 23.78c-.01.774.157 1.62-1.255.888-.686-.357-24.14-14.502-24.726-14.88-.58-.384-.733-1.134-.696-2.19.052-1.49.01-22.63-.096-23.552" fill="#fcbd56"/><path d="M45.087 141.876c-.105-.926.06-2.32 1.232-1.485 1.07.756 22.252 13.532 23.014 13.907 2.457 1.213 2.7 2.32 2.57 3.533s-.023 22.872-.043 23.78c-.01.774.157 1.62-1.255.888-.686-.357-24.14-14.502-24.726-14.88-.58-.384-.733-1.134-.696-2.19.052-1.49.01-22.63-.096-23.552z" stroke="#f2efef" class="AQ AZ"/><path d="M60.605 170.633c0 1.245-.873 1.737-1.94 1.1l-.86-.52c-1.066-.642-1.94-2.183-1.94-3.43v-15.257c0-1.246.874-1.74 1.94-1.1l.86.516c1.067.64 1.94 2.185 1.94 3.43v15.26z" class="AU"/><path d="M62.097 132.305l23.5 14.25-15.157 7.924-23.906-14.317z" fill="#9d8043"/><path d="M55.066 127.888c0-1.52.016-2.906.358-3.904s.923-1.978 1.732-2.43l7.766-4.123c-.767.41-1.5 1.516-1.784 2.565-.268.994-.325 2.26-.306 3.77l.01 14.007-7.766 4.12-.01-14.005z" fill="#bfbec0"/><defs><filter id="AV" filterUnits="userSpaceOnUse" x="55.071" y="129.671" width="7.771" height="12.22"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="55.071" y="129.671" width="7.771" height="12.22" id="AW"><g filter="url(#AV)"><path d="M55.072 133.793l.005 8.097 7.766-4.12-.006-8.1" class="AT"/></g></mask><path d="M55.07 133.793l7.766-4.122.005 8.1-7.765 4.12-.006-8.098" mask="url(#AW)" fill="#b7b7b8"/><defs><filter id="AX" filterUnits="userSpaceOnUse" x="73.307" y="133.063" width="7.845" height="19.74"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="73.307" y="133.063" width="7.845" height="19.74" id="AY"><g filter="url(#AX)"><path d="M73.236 134.915c.147 1.26.15 17.21.15 17.888l7.765-4.122L81 130.793" class="AT"/></g></mask><path d="M73.307 137.182l7.765-4.12.08 15.618-7.766 4.122-.08-15.62" mask="url(#AY)" fill="#b7b7b8"/><path d="M69.43 150.37l3.883 2.332-.152-17.818c-.157-1.3-.872-4.087-1.77-6.33-.843-2.098-2.274-4.51-4.254-7.146-1.415-1.875-3.644-3.58-5.25-4.547l-1.275-.688c-2.3-1.075-4.573-.686-5.543-.28-3.02 1.248-3.47 4.064-3.682 5.417-.046.317-.082.563-.14.698-.276.68-.134 16.467-.134 17.458l3.9 2.338-.02-14.12c.01-.153.01-.33.018-.537.018-1.08.044-2.88.562-3.794l.165-.3c.405-.747.858-1.6 2.345-1.9.953-.196 2.125-.205 4.212.993l.14.082c1.983 1.193 3.467 3.258 4.66 5.12 1.88 2.944 2.25 6.53 2.287 6.93.067.753.057 14.99.057 16.093m3.807-15.454c.147 1.26.15 17.21.15 17.89l-4.04-2.382-.06-16.184c-.036-.4-.4-3.937-2.25-6.844-1.183-1.845-2.654-3.887-4.612-5.065l-.14-.082c-2.07-1.2-3.223-1.18-4.166-1-1.477.28-1.92 1.128-2.316 1.872-.057.11-.11.21-.168.3-.516.894-.54 2.68-.56 3.75a8.11 8.11 0 0 1-.007.542c-.028.742-.007 3.77.004 5.224v.838l.005 8.097-4.04-2.37c-.01-.74-.15-16.883.137-17.592.045-.138.082-.372.137-.674.21-1.365.662-4.2 3.71-5.467.978-.4 3.252-.797 5.582.3.396.185.832.4 1.283.683 1.617.972 3.863 2.69 5.287 4.6 1.998 2.65 3.44 5.075 4.293 7.202.898 2.24 1.62 5.047 1.77 6.363" fill="#a1a1a3"/><use xlink:href="#P" fill="#d0d1d1"/><use xlink:href="#P" stroke="#4f504f" class="AQ AZ"/><path d="M73.316 152.655l-.13-17.537c-.42-5.647-4.54-12.433-7.504-15.356-2.622-2.47-6.767-5.747-11.066-3.7l7.636-4.18c2.8-1.342 5.82-.685 9.124 1.874 3.615 2.662 5.743 6.266 7.61 10.034.873 2.078 1.965 5.435 2.025 7.234l.067 17.512-7.764 4.12z" fill="#bfbec0"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/IP_TV.svg b/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/IP_TV.svg index bf42779e06dee4cc91b4494b83ae84013dc8e1ac..5034557256fdb3a0ed4943a57c6d2a71a9920979 100644 --- a/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/IP_TV.svg +++ b/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/IP_TV.svg @@ -1,75 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" - id="Layer_1" inkscape:version="0.92.3 (2405546, 2018-03-11)" sodipodi:docname="IP_TV5.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 82.075 84.463" - style="enable-background:new 0 0 82.075 84.463;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#626366;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;} - .st1{fill:#898B8E;} - .st2{fill:#BBBDBF;} - .st3{fill:#B3B5B7;} - .st4{fill:#FEFEFE;} - .st5{fill:#C4CACE;} - .st6{fill:none;stroke:#636466;stroke-width:1.3;} - .st7{fill:none;stroke:#E1E2E3;stroke-linecap:round;stroke-linejoin:round;} - .st8{fill:none;stroke:#636466;stroke-width:1.45;} - .st9{fill:none;stroke:#636466;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;} - .st10{fill:#636466;stroke:#636466;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;} - .st11{fill:none;stroke:#636466;stroke-width:2;} - .st12{fill:#636466;} - .st13{fill:#F5F6F6;} - .st14{fill:#626366;} - .st15{fill:#787A7D;} -</style> -<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview144" inkscape:current-layer="Layer_1" inkscape:cx="36.379572" inkscape:cy="40.486765" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-height="1017" inkscape:window-maximized="1" inkscape:window-width="1920" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="7.8530447" objecttolerance="10" pagecolor="#ffffff" showgrid="false"> - </sodipodi:namedview> -<title id="title4">icon-IP-TV</title> -<desc id="desc6">Created with Sketch.</desc> -<polygon id="Stroke-1" class="st0" points="75.644,35.017 80.54,32.417 80.575,80.363 75.677,82.963 "/> -<polygon id="Stroke-3" class="st0" points="24.188,4.1 29.085,1.5 80.54,32.417 75.644,35.017 "/> -<polygon id="Stroke-5" class="st0" points="75.644,35.017 75.677,82.963 24.223,52.045 24.189,4.1 "/> -<polygon id="Fill-8" class="st1" points="75.643,35.017 80.54,32.417 80.574,80.363 75.676,82.963 "/> -<polygon id="Fill-9" class="st2" points="24.188,4.1 29.084,1.5 80.54,32.417 75.643,35.017 "/> -<polygon id="Fill-10" class="st3" points="75.643,35.017 75.676,82.963 24.222,52.045 24.188,4.1 "/> -<polygon id="Fill-11" class="st4" points="70.985,69.122 28.917,43.845 28.917,13.621 70.985,38.898 "/> -<path id="Fill-12" class="st5" d="M53.929,30.612l15.564,9.35l0.087,8.702c0,0-0.277-6.24-4.903-10.151 - C58.77,33.521,53.929,30.612,53.929,30.612"/> -<polygon id="Fill-14" class="st4" points="64.392,70.68 53.863,64.353 53.863,62.802 64.392,69.128 "/> -<path id="Fill-16" class="st4" d="M67.824,72.04c0,0.468-0.38,0.619-0.85,0.338c-0.466-0.281-0.849-0.892-0.849-1.359 - c0-0.469,0.383-0.62,0.849-0.339C67.444,70.961,67.824,71.571,67.824,72.04"/> -<path id="Fill-18" class="st4" d="M70.338,73.55c0,0.468-0.381,0.619-0.85,0.338c-0.467-0.281-0.848-0.891-0.848-1.358 - c0-0.469,0.381-0.621,0.848-0.34C69.957,72.472,70.338,73.081,70.338,73.55"/> -<path id="Stroke-20" class="st6" d="M24.788,53.037L75.671,83.61"/> -<polyline id="Stroke-22" class="st7" points="24.622,4.261 75.624,34.906 75.658,82.557 "/> -<path id="Stroke-24" class="st8" d="M81.178,64.547v12.598"/> -<path id="Stroke-85" inkscape:connector-curvature="0" class="st9" d="M33.043,62.077l-14.169,7.521 - c0.386-0.205,0.625-0.679,0.628-1.366l14.168-7.521C33.67,61.397,33.429,61.873,33.043,62.077z"/> -<polygon id="Stroke-87" class="st9" points="3.156,38.438 17.326,30.917 31.844,39.64 17.674,47.162 "/> -<polygon id="Stroke-89" class="st9" points="19.502,50.572 33.673,43.05 33.684,60.555 19.516,68.076 "/> -<path id="Stroke-129" class="st9" d="M17.5,47.144c1.099,0.658,1.985,2.258,1.987,3.583l0.015,17.505 - c-0.003,1.318-0.888,1.858-1.985,1.198L3,60.707c-1.097-0.659-1.986-2.264-1.988-3.583L1,39.619 - c-0.001-1.323,0.888-1.857,1.984-1.198L17.5,47.144z"/> -<path id="Stroke-163" class="st10" d="M17.5,47.144l14.171-7.522c1.097,0.659,1.982,2.261,1.987,3.585l-14.171,7.52 - C19.485,49.402,18.599,47.802,17.5,47.144z"/> -<path id="Fill-228" inkscape:connector-curvature="0" class="st11" d="M1.796,38.269c4.725-2.507,9.447-5.015,14.17-7.521 - c0.354-0.189,0.833-0.146,1.359,0.169L3.156,38.438C2.629,38.123,2.152,38.082,1.796,38.269"/> -<polygon id="Fill-256" class="st3" points="2.749,38.438 16.918,30.917 31.436,39.639 17.265,47.162 "/> -<polygon id="Fill-258" class="st1" points="19.252,50.745 33.423,43.224 33.435,60.728 19.266,68.249 "/> -<path id="Fill-292" class="st12" d="M18.68,67.896l-0.014-17.504c0-0.933-0.625-2.062-1.4-2.527L2.749,39.142 - c-0.773-0.464-1.397-0.086-1.397,0.846l0.013,17.504c0,0.93,0.626,2.059,1.4,2.527l14.517,8.723 - C18.055,69.205,18.68,68.826,18.68,67.896z M17.265,47.161c1.099,0.658,1.985,2.258,1.987,3.583l0.014,17.505 - c-0.002,1.318-0.887,1.857-1.984,1.198L2.765,60.724c-1.097-0.66-1.986-2.265-1.988-3.583L0.765,39.636 - c-0.001-1.323,0.888-1.857,1.984-1.198L17.265,47.161z"/> -<path id="Fill-294" class="st13" d="M17.266,47.866c0.775,0.464,1.4,1.594,1.4,2.527l0.014,17.504c0,0.929-0.625,1.309-1.398,0.846 - L2.765,60.02c-0.774-0.468-1.4-1.597-1.4-2.527L1.352,39.989c0-0.933,0.624-1.311,1.397-0.847L17.266,47.866z"/> -<polygon id="Fill-328" class="st14" points="6.608,59.455 3.881,57.816 3.881,43.936 6.608,45.575 "/> -<path id="Fill-330" class="st14" d="M10.638,53.128l1.268,0.761c1.251,0.752,1.7,0.513,1.7-0.411c0-1.052-0.53-1.751-2.006-2.638 - l-0.962-0.578C10.638,50.262,10.638,53.128,10.638,53.128z M12.787,49.286c2.503,1.503,3.626,4.154,3.626,5.842 - c0,1.741-1.09,3.082-3.609,1.568l-2.166-1.301v6.48l-2.727-1.638v-13.88L12.787,49.286z"/> -<path id="Stroke-163-1" inkscape:connector-curvature="0" class="st2" d="M17.265,47.161l14.171-7.522 - c1.097,0.659,1.982,2.261,1.987,3.585l-14.171,7.52C19.25,49.419,18.364,47.819,17.265,47.161z"/> -<path id="Fill-228-8" inkscape:connector-curvature="0" class="st2" d="M1.389,38.269c4.725-2.507,9.447-5.015,14.17-7.521 - c0.354-0.189,0.833-0.146,1.359,0.169L2.749,38.438C2.222,38.123,1.745,38.082,1.389,38.269"/> -<path id="Stroke-85-0" inkscape:connector-curvature="0" class="st15" d="M32.808,62.094l-14.169,7.521 - c0.386-0.205,0.625-0.679,0.628-1.366l14.168-7.521C33.435,61.414,33.194,61.89,32.808,62.094z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 82.075 84.463"><style><![CDATA[.Q{stroke-linejoin:round}.R{stroke:#636466}.S{stroke-width:2}]]></style><g fill="none" stroke="#626366" stroke-width="3" class="Q"><path d="M75.644 35.017l4.896-2.6.035 47.946-4.898 2.6z"/><path d="M24.188 4.1l4.897-2.6L80.54 32.417l-4.896 2.6z"/><path d="M75.644 35.017l.033 47.946-51.454-30.918L24.19 4.1z"/></g><path d="M75.643 35.017l4.897-2.6.034 47.946-4.898 2.6z" fill="#898b8e"/><path d="M24.188 4.1l4.896-2.6L80.54 32.417l-4.897 2.6z" fill="#bbbdbf"/><path d="M75.643 35.017l.033 47.946-51.454-30.918L24.188 4.1z" fill="#b3b5b7"/><path d="M70.985 69.122L28.917 43.845V13.62l42.068 25.277z" fill="#fefefe"/><path d="M53.93 30.612l15.564 9.35.087 8.702s-.277-6.24-4.903-10.15c-5.907-4.992-10.748-7.9-10.748-7.9" fill="#c4cace"/><path d="M64.392 70.68l-10.53-6.327v-1.55l10.53 6.326zm3.432 1.36c0 .468-.38.62-.85.338s-.85-.892-.85-1.36.383-.62.85-.34.85.9.85 1.36m2.514 1.512c0 .468-.38.62-.85.338s-.848-.9-.848-1.358.38-.62.848-.34.85.9.85 1.36" fill="#fefefe"/><g fill="none"><path d="M24.788 53.037L75.67 83.6" stroke-width="1.3" class="R"/><path d="M24.622 4.26l51.002 30.645.034 47.65" stroke="#e1e2e3" stroke-linecap="round" class="Q"/><g class="R"><path d="M81.178,64.547v12.598" stroke-width="1.45"/><g class="Q S"><path d="M33.043 62.077l-14.17 7.52c.386-.205.625-.68.628-1.366l14.168-7.52c0 .686-.24 1.162-.627 1.366zM3.156 38.438l14.17-7.52 14.518 8.723-14.17 7.522zm16.346 12.134l14.17-7.522.01 17.505-14.168 7.52z"/><path d="M17.5 47.144c1.1.658 1.985 2.258 1.987 3.583l.015 17.505c-.003 1.318-.888 1.858-1.985 1.198L3 60.707c-1.097-.66-1.986-2.264-1.988-3.583L1 39.62c-.001-1.323.888-1.857 1.984-1.198L17.5 47.144z"/></g></g></g><path d="M17.5 47.144l14.17-7.522c1.097.66 1.982 2.26 1.987 3.585l-14.17 7.52c-.002-1.325-.888-2.925-1.987-3.583z" fill="#636466" class="Q R S"/><path d="M1.796 38.27l14.17-7.52c.354-.19.833-.146 1.36.17l-14.17 7.52c-.527-.315-1.004-.356-1.36-.17" fill="none" class="R S"/><path d="M2.75 38.438l14.17-7.52 14.518 8.722-14.17 7.523z" fill="#b3b5b7"/><path d="M19.252 50.745l14.17-7.52.012 17.504-14.17 7.52z" fill="#898b8e"/><path d="M18.68 67.896l-.014-17.504c0-.933-.625-2.062-1.4-2.527L2.75 39.142c-.773-.464-1.397-.086-1.397.846l.013 17.504c0 .93.626 2.06 1.4 2.527l14.517 8.723c.773.463 1.398.084 1.398-.846zM17.265 47.16c1.1.658 1.985 2.258 1.987 3.583l.014 17.505c-.002 1.318-.887 1.857-1.984 1.198L2.765 60.724C1.668 60.064.78 58.46.777 57.14L.765 39.636c-.001-1.323.888-1.857 1.984-1.198l14.516 8.723z" fill="#636466"/><path d="M17.266 47.866c.775.464 1.4 1.594 1.4 2.527l.014 17.504c0 .93-.625 1.31-1.398.846L2.765 60.02c-.774-.468-1.4-1.597-1.4-2.527L1.352 39.99c0-.933.624-1.31 1.397-.847l14.517 8.724z" fill="#f5f6f6"/><path d="M6.608 59.455l-2.727-1.64v-13.88l2.727 1.64zm4.03-6.327l1.268.76c1.25.752 1.7.513 1.7-.4 0-1.052-.53-1.75-2.006-2.638l-.962-.578v2.866zm2.15-3.842c2.503 1.503 3.626 4.154 3.626 5.842 0 1.74-1.1 3.082-3.6 1.568l-2.166-1.3v6.48L7.9 60.237v-13.88l4.876 2.93z" fill="#626366"/><path d="M17.265 47.16l14.17-7.522c1.097.66 1.982 2.26 1.987 3.585l-14.17 7.52c-.002-1.325-.888-2.925-1.987-3.583zM1.4 38.27l14.17-7.52c.354-.2.833-.146 1.36.17L2.75 38.44c-.527-.315-1.004-.356-1.36-.17" fill="#bbbdbf"/><path d="M32.808 62.094l-14.17 7.52c.386-.205.625-.68.628-1.366l14.168-7.52c0 .686-.24 1.162-.627 1.366z" fill="#787a7d"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Keypad.svg b/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Keypad.svg index 54289e25223f59ef9593cd3e8f0eabc89ef4d986..8d1664cc47ffb0a994f42e6113493c1f8f28f1e4 100644 --- a/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Keypad.svg +++ b/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Keypad.svg @@ -1,58 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 43.37 79.605" style="enable-background:new 0 0 43.37 79.605;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#626366;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;} - .st1{fill:#898B8E;} - .st2{fill:#BBBDBF;} - .st3{fill:#B3B5B7;} - .st4{fill:none;stroke:#DFE0DF;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;} - .st5{fill:#FEFEFE;} - .st6{fill:#231F20;} - .st7{fill:#626366;} -</style> -<title>icon-keypad</title> -<desc>Created with Sketch.</desc> -<g id="Page-1"> - <g id="Desktop" transform="translate(-329.000000, -206.000000)"> - <g id="icon-keypad" transform="translate(330.000000, 206.000000)"> - <g id="Group-7" transform="translate(0.000000, 0.604000)"> - <polygon id="Stroke-1" class="st0" points="37.188,24.876 40.833,22.941 40.87,75.565 37.225,77.501 "/> - <polygon id="Stroke-3" class="st0" points="0.5,2.831 4.145,0.896 40.833,22.941 37.188,24.876 "/> - <polygon id="Stroke-5" class="st0" points="37.188,24.876 37.225,77.501 0.537,55.456 0.5,2.831 "/> - </g> - <polygon id="Fill-8" class="st1" points="37.188,25.48 40.833,23.545 40.87,76.169 37.225,78.105 "/> - <polygon id="Fill-9" class="st2" points="0.5,3.435 4.145,1.5 40.833,23.545 37.188,25.48 "/> - <polygon id="Fill-10" class="st3" points="37.188,25.48 37.225,78.105 0.537,56.06 0.5,3.435 "/> - <polyline id="Stroke-11" class="st4" points="0.766,3.583 37.37,25.577 37.37,77.816 "/> - <polygon id="Fill-12" class="st5" points="20.591,56.813 13.75,52.687 13.737,45.573 20.575,49.705 "/> - <polygon id="Fill-13" class="st6" points="14.883,45.015 21.726,49.143 20.593,49.696 13.751,45.568 "/> - <polygon id="Fill-14" class="st7" points="20.612,56.803 20.596,49.695 21.725,49.143 21.741,56.251 "/> - <polygon id="Fill-15" class="st5" points="29.832,62.369 22.984,58.245 22.975,51.129 29.812,55.252 "/> - <polygon id="Fill-16" class="st6" points="24.117,50.573 30.962,54.696 29.833,55.25 22.991,51.124 "/> - <polygon id="Fill-17" class="st7" points="29.854,62.356 29.837,55.246 30.962,54.696 30.979,61.807 "/> - <polygon id="Fill-18" class="st5" points="11.475,51.328 4.63,47.204 4.618,40.09 11.462,44.216 "/> - <polygon id="Fill-19" class="st6" points="5.767,39.534 12.609,43.66 11.476,44.213 4.638,40.085 "/> - <polygon id="Fill-20" class="st7" points="11.495,51.317 11.479,44.209 12.608,43.66 12.625,50.764 "/> - <polygon id="Fill-21" class="st5" points="20.597,47.467 13.755,43.348 13.743,36.231 20.583,40.355 "/> - <polygon id="Fill-22" class="st6" points="14.892,35.676 21.734,39.791 20.602,40.344 13.766,36.225 "/> - <polygon id="Fill-23" class="st7" points="20.625,47.454 20.608,40.344 21.733,39.792 21.75,46.904 "/> - <polygon id="Fill-24" class="st5" points="29.841,53.025 22.991,48.896 22.979,41.785 29.82,45.911 "/> - <polygon id="Fill-25" class="st6" points="24.125,41.226 30.968,45.353 29.841,45.902 22.997,41.778 "/> - <polygon id="Fill-26" class="st7" points="29.859,53.015 29.842,45.902 30.967,45.353 30.99,52.464 "/> - <polygon id="Fill-27" class="st5" points="11.479,41.986 4.64,37.86 4.625,30.743 11.467,34.872 "/> - <polygon id="Fill-28" class="st6" points="5.769,30.184 12.616,34.312 11.488,34.861 4.64,30.737 "/> - <polygon id="Fill-29" class="st7" points="11.508,41.97 11.487,34.861 12.615,34.312 12.634,41.42 "/> - <polygon id="Fill-30" class="st5" points="20.582,38.187 13.737,34.061 13.725,26.949 20.563,31.077 "/> - <polygon id="Fill-31" class="st6" points="14.87,26.391 21.713,30.517 20.583,31.069 13.747,26.939 "/> - <polygon id="Fill-32" class="st7" points="20.604,38.175 20.586,31.067 21.712,30.517 21.732,37.626 "/> - <polygon id="Fill-33" class="st5" points="29.813,43.74 22.975,39.619 22.959,32.505 29.802,36.63 "/> - <polygon id="Fill-34" class="st6" points="24.111,31.947 30.953,36.066 29.821,36.62 22.984,32.497 "/> - <polygon id="Fill-35" class="st7" points="29.841,43.728 29.824,36.62 30.953,36.066 30.964,43.178 "/> - <polygon id="Fill-36" class="st5" points="11.462,32.7 4.62,28.578 4.608,21.466 11.445,25.589 "/> - <polygon id="Fill-37" class="st6" points="5.751,20.905 12.6,25.03 11.466,25.583 4.625,21.455 "/> - <polygon id="Fill-38" class="st7" points="11.487,32.687 11.467,25.581 12.599,25.03 12.615,32.138 "/> - </g> - </g> -</g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 43.37 79.605"><style><![CDATA[.I{fill:#fefefe}.J{fill:#231f20}.K{fill:#626366}.L{stroke-linejoin:round}]]></style><g fill="none" stroke="#626366" stroke-width="3" class="L"><path d="M38.188 25.48l3.645-1.935.037 52.624-3.645 1.936z"/><path d="M1.5 3.435L5.145 1.5l36.688 22.045-3.645 1.935z"/><path d="M38.188 25.48l.037 52.625L1.537 56.06 1.5 3.435z"/></g><path d="M38.188 25.48l3.645-1.935.037 52.624-3.645 1.936z" fill="#898b8e"/><path d="M1.5 3.435L5.145 1.5l36.688 22.045-3.645 1.935z" fill="#bbbdbf"/><path d="M38.188 25.48l.037 52.625L1.537 56.06 1.5 3.435z" fill="#b3b5b7"/><path d="M1.766 3.583L38.37 25.577v52.24" fill="none" stroke="#dfe0df" stroke-width=".75" stroke-linecap="round" class="L"/><path d="M21.59 56.813l-6.84-4.126-.013-7.114 6.838 4.132z" class="I"/><path d="M15.883 45.015l6.843 4.128-1.133.553-6.842-4.128z" class="J"/><path d="M21.612 56.803l-.016-7.108 1.13-.552.016 7.108z" class="K"/><path d="M30.832 62.37l-6.848-4.124-.01-7.116 6.837 4.123z" class="I"/><path d="M25.117 50.573l6.845 4.123-1.13.554-6.842-4.126z" class="J"/><path d="M30.854 62.356l-.017-7.1 1.125-.55.017 7.11z" class="K"/><path d="M12.475 51.328L5.63 47.204 5.618 40.1l6.844 4.126z" class="I"/><path d="M6.767 39.534l6.842 4.126-1.133.553-6.838-4.128z" class="J"/><path d="M12.495 51.317l-.016-7.108 1.13-.55.017 7.104z" class="K"/><path d="M21.597 47.467l-6.842-4.12-.012-7.117 6.84 4.124z" class="I"/><path d="M15.892 35.676l6.842 4.115-1.132.553-6.836-4.12z" class="J"/><path d="M21.625 47.454l-.017-7.1 1.125-.552.017 7.112z" class="K"/><path d="M30.84 53.025l-6.85-4.13-.012-7.11 6.84 4.126z" class="I"/><path d="M25.125 41.226l6.843 4.127-1.127.55-6.844-4.124z" class="J"/><path d="M30.86 53.015l-.017-7.113 1.125-.55.023 7.11z" class="K"/><path d="M12.48 41.986L5.64 37.86l-.015-7.117 6.842 4.13z" class="I"/><path d="M6.77 30.184l6.847 4.128-1.128.55-6.848-4.124z" class="J"/><path d="M12.508 41.97l-.02-7.11 1.128-.55.02 7.108z" class="K"/><path d="M21.582 38.187l-6.845-4.126-.012-7.112 6.838 4.128z" class="I"/><path d="M15.87 26.39l6.843 4.126-1.13.552-6.836-4.13z" class="J"/><path d="M21.604 38.175l-.018-7.108 1.126-.55.02 7.11z" class="K"/><path d="M30.813 43.74l-6.838-4.12-.016-7.114 6.843 4.125z" class="I"/><path d="M25.11 31.947l6.842 4.12-1.132.554-6.837-4.123z" class="J"/><path d="M30.84 43.728l-.017-7.108 1.13-.554.01 7.112z" class="K"/><path d="M12.462 32.7L5.62 28.578l-.012-7.112 6.837 4.123z" class="I"/><path d="M6.75 20.905l6.85 4.125-1.134.553-6.84-4.128z" class="J"/><path d="M12.487 32.687l-.02-7.106 1.132-.55.016 7.108z" class="K"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Laptop.svg b/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Laptop.svg index 93469741019ad8065ef8462dbcf109272bfaa20a..2b214580473049f32cd7a9b91096a96d7a1196af 100644 --- a/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Laptop.svg +++ b/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Laptop.svg @@ -1,238 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 69.511 70.936" style="enable-background:new 0 0 69.511 70.936;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#626366;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;} - .st1{fill:#898B8E;} - .st2{fill:#BBBDBF;} - .st3{fill:#B3B5B7;} - .st4{fill:none;stroke:#E1E2E3;stroke-linecap:round;stroke-linejoin:round;} - .st5{fill:#FEFEFE;} - .st6{fill:none;stroke:#626366;stroke-width:1.184;} - .st7{fill:#C4CACE;} - .st8{fill:none;stroke:#636466;} - .st9{fill:none;stroke:#626366;stroke-linecap:round;stroke-linejoin:round;} - .st10{fill:#231F20;} - .st11{fill:#626366;} -</style> -<title>icon-laptop</title> -<desc>Created with Sketch.</desc> -<g id="Page-1"> - <g id="Desktop" transform="translate(-611.000000, -68.000000)"> - <g id="icon-laptop" transform="translate(612.000000, 68.000000)"> - <g id="Group-15" transform="translate(0.000000, 0.935500)"> - <polygon id="Stroke-1" class="st0" points="29.79,64.631 55.303,51.088 55.306,54.957 29.792,68.5 "/> - <polygon id="Stroke-3" class="st0" points="0.5,47.031 26.014,33.49 55.303,51.088 29.79,64.632 "/> - <polygon id="Stroke-5" class="st0" points="29.79,64.631 29.792,68.5 0.503,50.902 0.5,47.031 "/> - <polyline id="Stroke-7" class="st0" points="0.5,47.031 29.79,64.632 29.792,68.5 "/> - <polygon id="Stroke-9" class="st0" points="63.491,19.565 67.011,18.973 58.817,51.477 55.299,52.071 "/> - <polygon id="Stroke-11" class="st0" points="34.34,1.156 37.859,0.564 67.011,18.972 63.491,19.565 "/> - <polygon id="Stroke-13" class="st0" points="63.491,19.565 55.299,52.071 26.146,33.663 34.34,1.157 "/> - </g> - <polygon id="Fill-16" class="st1" points="29.79,65.567 55.303,52.024 55.306,55.893 29.792,69.436 "/> - <polygon id="Fill-17" class="st2" points="0.5,47.967 26.014,34.426 55.303,52.024 29.79,65.567 "/> - <polygon id="Fill-18" class="st3" points="29.79,65.567 29.792,69.436 0.503,51.838 0.5,47.967 "/> - <polyline id="Stroke-19" class="st4" points="0.896,48.205 29.79,65.566 29.792,69.031 "/> - <polygon id="Fill-21" class="st1" points="63.491,20.5 67.011,19.908 58.817,52.412 55.299,53.006 "/> - <polygon id="Fill-22" class="st1" points="34.34,2.092 37.859,1.5 67.011,19.908 63.491,20.5 "/> - <polygon id="Fill-23" class="st3" points="63.491,20.5 55.299,53.006 26.146,34.598 34.34,2.092 "/> - <polygon id="Fill-24" class="st5" points="60.592,21.37 53.487,49.562 28.202,33.595 35.308,5.402 "/> - <polygon id="Stroke-25" class="st6" points="60.592,21.37 53.487,49.562 28.202,33.595 35.308,5.402 "/> - <path id="Fill-26" class="st7" d="M57.864,22.196c-0.92-0.539-18.42-10.778-20.068-9c-1.255,1.315-5.354,12.692-5.57,13.292 - l4.453-17.529L57.864,22.196z"/> - <polygon id="Fill-28" class="st5" points="15.049,53.301 19.314,51.035 25.888,54.987 21.622,57.25 "/> - <polygon id="Stroke-29" class="st8" points="15.049,53.301 19.314,51.035 25.888,54.987 21.622,57.25 "/> - <path id="Stroke-30" class="st9" d="M55.467,53.248L25.731,34.271"/> - <polygon id="Fill-31" class="st10" points="15.342,43.446 16.799,42.673 16.799,42.954 15.342,43.727 "/> - <polygon id="Fill-32" class="st5" points="14.084,42.69 15.543,41.917 16.799,42.672 15.342,43.446 "/> - <polygon id="Fill-33" class="st11" points="15.342,43.446 15.342,43.727 14.084,42.973 14.084,42.69 "/> - <polygon id="Fill-34" class="st10" points="17.201,44.563 18.66,43.79 18.66,44.073 17.201,44.846 "/> - <polygon id="Fill-35" class="st5" points="15.945,43.807 17.402,43.034 18.66,43.789 17.201,44.563 "/> - <polygon id="Fill-36" class="st11" points="17.201,44.563 17.201,44.846 15.945,44.09 15.945,43.807 "/> - <polygon id="Fill-37" class="st10" points="19.154,45.737 20.611,44.964 20.613,45.245 19.154,46.02 "/> - <polygon id="Fill-38" class="st5" points="17.898,44.981 19.355,44.208 20.611,44.963 19.154,45.737 "/> - <polygon id="Fill-39" class="st11" points="19.154,45.737 19.154,46.02 17.898,45.264 17.898,44.981 "/> - <polygon id="Fill-40" class="st10" points="21.021,46.858 22.478,46.085 22.48,46.368 21.021,47.141 "/> - <polygon id="Fill-41" class="st5" points="19.766,46.104 21.223,45.329 22.479,46.084 21.022,46.858 "/> - <polygon id="Fill-42" class="st11" points="21.021,46.858 21.021,47.141 19.765,46.385 19.765,46.104 "/> - <polygon id="Fill-43" class="st10" points="22.949,48.016 24.408,47.243 24.408,47.526 22.949,48.299 "/> - <polygon id="Fill-44" class="st5" points="21.693,47.262 23.15,46.489 24.408,47.242 22.949,48.016 "/> - <polygon id="Fill-45" class="st11" points="22.949,48.016 22.949,48.299 21.693,47.543 21.693,47.262 "/> - <polygon id="Fill-46" class="st10" points="24.816,49.139 26.275,48.366 26.275,48.647 24.816,49.42 "/> - <polygon id="Fill-47" class="st5" points="23.553,48.379 25.012,47.606 26.276,48.365 24.817,49.139 "/> - <polygon id="Fill-48" class="st11" points="24.816,49.139 24.816,49.42 23.552,48.662 23.552,48.379 "/> - <polygon id="Fill-49" class="st10" points="26.77,50.313 28.227,49.538 28.229,49.821 26.77,50.594 "/> - <polygon id="Fill-50" class="st5" points="25.512,49.557 26.971,48.784 28.227,49.537 26.77,50.313 "/> - <polygon id="Fill-51" class="st11" points="26.77,50.313 26.77,50.594 25.514,49.84 25.512,49.557 "/> - <polygon id="Fill-52" class="st10" points="28.631,51.43 30.088,50.657 30.088,50.938 28.631,51.713 "/> - <polygon id="Fill-53" class="st5" points="27.373,50.674 28.83,49.901 30.088,50.656 28.631,51.43 "/> - <polygon id="Fill-54" class="st11" points="28.631,51.43 28.631,51.713 27.373,50.957 27.373,50.674 "/> - <polygon id="Fill-55" class="st10" points="30.461,52.529 31.918,51.757 31.918,52.037 30.461,52.813 "/> - <polygon id="Fill-56" class="st5" points="29.203,51.774 30.662,51.001 31.918,51.756 30.461,52.53 "/> - <polygon id="Fill-57" class="st11" points="30.461,52.529 30.461,52.813 29.203,52.056 29.203,51.773 "/> - <polygon id="Fill-58" class="st10" points="32.32,53.647 33.779,52.874 33.779,53.157 32.32,53.93 "/> - <polygon id="Fill-59" class="st5" points="31.064,52.893 32.521,52.12 33.779,52.873 32.32,53.647 "/> - <polygon id="Fill-60" class="st11" points="32.32,53.647 32.32,53.93 31.064,53.174 31.064,52.893 "/> - <polygon id="Fill-61" class="st10" points="34.273,54.821 35.732,54.048 35.732,54.331 34.273,55.104 "/> - <polygon id="Fill-62" class="st5" points="33.018,54.067 34.475,53.292 35.733,54.047 34.274,54.821 "/> - <polygon id="Fill-63" class="st11" points="34.273,54.821 34.273,55.104 33.017,54.348 33.017,54.067 "/> - <polygon id="Fill-64" class="st10" points="36.141,55.944 37.6,55.169 37.6,55.452 36.141,56.225 "/> - <polygon id="Fill-65" class="st5" points="34.885,55.188 36.342,54.415 37.6,55.168 36.141,55.944 "/> - <polygon id="Fill-66" class="st11" points="36.141,55.944 36.141,56.225 34.885,55.471 34.885,55.188 "/> - <polygon id="Fill-67" class="st10" points="38.068,57.102 39.527,56.329 39.527,56.61 38.068,57.383 "/> - <polygon id="Fill-68" class="st5" points="36.813,56.346 38.27,55.573 39.528,56.328 38.069,57.102 "/> - <polygon id="Fill-69" class="st11" points="38.068,57.102 38.068,57.383 36.812,56.629 36.812,56.346 "/> - <polygon id="Fill-70" class="st10" points="39.893,58.197 41.35,57.424 41.352,57.705 39.893,58.478 "/> - <polygon id="Fill-71" class="st5" points="38.635,57.442 40.094,56.669 41.35,57.424 39.893,58.198 "/> - <polygon id="Fill-72" class="st11" points="39.893,58.197 39.893,58.478 38.637,57.724 38.635,57.441 "/> - <polygon id="Fill-73" class="st10" points="17.342,42.321 18.799,41.548 18.799,41.829 17.342,42.602 "/> - <polygon id="Fill-74" class="st5" points="16.084,41.565 17.543,40.792 18.799,41.547 17.342,42.321 "/> - <polygon id="Fill-75" class="st11" points="17.342,42.321 17.342,42.602 16.084,41.848 16.084,41.565 "/> - <polygon id="Fill-76" class="st10" points="19.201,43.438 20.66,42.665 20.66,42.948 19.201,43.721 "/> - <polygon id="Fill-77" class="st5" points="17.945,42.682 19.402,41.909 20.66,42.664 19.201,43.438 "/> - <polygon id="Fill-78" class="st11" points="19.201,43.438 19.201,43.721 17.945,42.965 17.945,42.682 "/> - <polygon id="Fill-79" class="st10" points="21.154,44.612 22.611,43.839 22.613,44.12 21.154,44.895 "/> - <polygon id="Fill-80" class="st5" points="19.898,43.856 21.355,43.083 22.611,43.838 21.154,44.612 "/> - <polygon id="Fill-81" class="st11" points="21.154,44.612 21.154,44.895 19.898,44.139 19.898,43.856 "/> - <polygon id="Fill-82" class="st10" points="23.021,45.733 24.478,44.96 24.48,45.243 23.021,46.016 "/> - <polygon id="Fill-83" class="st5" points="21.766,44.979 23.223,44.204 24.479,44.959 23.022,45.733 "/> - <polygon id="Fill-84" class="st11" points="23.021,45.733 23.021,46.016 21.765,45.26 21.765,44.979 "/> - <polygon id="Fill-85" class="st10" points="24.949,46.891 26.408,46.118 26.408,46.401 24.949,47.174 "/> - <polygon id="Fill-86" class="st5" points="23.693,46.137 25.15,45.364 26.408,46.117 24.949,46.891 "/> - <polygon id="Fill-87" class="st11" points="24.949,46.891 24.949,47.174 23.693,46.418 23.693,46.137 "/> - <polygon id="Fill-88" class="st10" points="26.816,48.014 28.275,47.241 28.275,47.522 26.816,48.295 "/> - <polygon id="Fill-89" class="st5" points="25.553,47.254 27.012,46.481 28.276,47.24 26.817,48.014 "/> - <polygon id="Fill-90" class="st11" points="26.816,48.014 26.816,48.295 25.552,47.537 25.552,47.254 "/> - <polygon id="Fill-91" class="st10" points="28.77,49.188 30.227,48.413 30.229,48.696 28.77,49.469 "/> - <polygon id="Fill-92" class="st5" points="27.512,48.432 28.971,47.659 30.227,48.412 28.77,49.188 "/> - <polygon id="Fill-93" class="st11" points="28.77,49.188 28.77,49.469 27.514,48.715 27.512,48.432 "/> - <polygon id="Fill-94" class="st10" points="30.631,50.305 32.088,49.532 32.088,49.813 30.631,50.588 "/> - <polygon id="Fill-95" class="st5" points="29.373,49.549 30.83,48.776 32.088,49.531 30.631,50.305 "/> - <polygon id="Fill-96" class="st11" points="30.631,50.305 30.631,50.588 29.373,49.832 29.373,49.549 "/> - <polygon id="Fill-97" class="st10" points="32.461,51.404 33.918,50.632 33.918,50.912 32.461,51.688 "/> - <polygon id="Fill-98" class="st5" points="31.203,50.649 32.662,49.876 33.918,50.631 32.461,51.405 "/> - <polygon id="Fill-99" class="st11" points="32.461,51.404 32.461,51.688 31.203,50.931 31.203,50.648 "/> - <polygon id="Fill-100" class="st10" points="34.32,52.522 35.779,51.749 35.779,52.032 34.32,52.805 "/> - <polygon id="Fill-101" class="st5" points="33.064,51.768 34.521,50.995 35.779,51.748 34.32,52.522 "/> - <polygon id="Fill-102" class="st11" points="34.32,52.522 34.32,52.805 33.064,52.049 33.064,51.768 "/> - <polygon id="Fill-103" class="st10" points="36.273,53.696 37.732,52.923 37.732,53.206 36.273,53.979 "/> - <polygon id="Fill-104" class="st5" points="35.018,52.942 36.475,52.167 37.733,52.922 36.274,53.696 "/> - <polygon id="Fill-105" class="st11" points="36.273,53.696 36.273,53.979 35.017,53.223 35.017,52.942 "/> - <polygon id="Fill-106" class="st10" points="38.141,54.819 39.6,54.044 39.6,54.327 38.141,55.1 "/> - <polygon id="Fill-107" class="st5" points="36.885,54.063 38.342,53.29 39.6,54.043 38.141,54.819 "/> - <polygon id="Fill-108" class="st11" points="38.141,54.819 38.141,55.1 36.885,54.346 36.885,54.063 "/> - <polygon id="Fill-109" class="st10" points="40.068,55.977 41.527,55.204 41.527,55.485 40.068,56.258 "/> - <polygon id="Fill-110" class="st5" points="38.813,55.221 40.27,54.448 41.528,55.203 40.069,55.977 "/> - <polygon id="Fill-111" class="st11" points="40.068,55.977 40.068,56.258 38.812,55.504 38.812,55.221 "/> - <polygon id="Fill-112" class="st10" points="41.893,57.072 43.35,56.299 43.352,56.58 41.893,57.353 "/> - <polygon id="Fill-113" class="st5" points="40.635,56.317 42.094,55.544 43.35,56.299 41.893,57.073 "/> - <polygon id="Fill-114" class="st11" points="41.893,57.072 41.893,57.353 40.637,56.599 40.635,56.316 "/> - <polygon id="Fill-115" class="st10" points="19.467,41.196 20.924,40.423 20.924,40.704 19.467,41.477 "/> - <polygon id="Fill-116" class="st5" points="18.209,40.44 19.668,39.667 20.924,40.422 19.467,41.196 "/> - <polygon id="Fill-117" class="st11" points="19.467,41.196 19.467,41.477 18.209,40.723 18.209,40.44 "/> - <polygon id="Fill-118" class="st10" points="21.326,42.313 22.785,41.54 22.785,41.823 21.326,42.596 "/> - <polygon id="Fill-119" class="st5" points="20.07,41.557 21.527,40.784 22.785,41.539 21.326,42.313 "/> - <polygon id="Fill-120" class="st11" points="21.326,42.313 21.326,42.596 20.07,41.84 20.07,41.557 "/> - <polygon id="Fill-121" class="st10" points="23.279,43.487 24.736,42.714 24.738,42.995 23.279,43.77 "/> - <polygon id="Fill-122" class="st5" points="22.023,42.731 23.48,41.958 24.736,42.713 23.279,43.487 "/> - <polygon id="Fill-123" class="st11" points="23.279,43.487 23.279,43.77 22.023,43.014 22.023,42.731 "/> - <polygon id="Fill-124" class="st10" points="25.146,44.608 26.603,43.835 26.605,44.118 25.146,44.891 "/> - <polygon id="Fill-125" class="st5" points="23.891,43.854 25.348,43.079 26.604,43.834 25.147,44.608 "/> - <polygon id="Fill-126" class="st11" points="25.146,44.608 25.146,44.891 23.89,44.135 23.89,43.854 "/> - <polygon id="Fill-127" class="st10" points="27.074,45.766 28.533,44.993 28.533,45.276 27.074,46.049 "/> - <polygon id="Fill-128" class="st5" points="25.818,45.012 27.275,44.239 28.533,44.992 27.074,45.766 "/> - <polygon id="Fill-129" class="st11" points="27.074,45.766 27.074,46.049 25.818,45.293 25.818,45.012 "/> - <polygon id="Fill-130" class="st10" points="28.941,46.889 30.4,46.116 30.4,46.397 28.941,47.17 "/> - <polygon id="Fill-131" class="st5" points="27.678,46.129 29.137,45.356 30.401,46.115 28.942,46.889 "/> - <polygon id="Fill-132" class="st11" points="28.941,46.889 28.941,47.17 27.677,46.412 27.677,46.129 "/> - <polygon id="Fill-133" class="st10" points="30.895,48.063 32.352,47.288 32.354,47.571 30.895,48.344 "/> - <polygon id="Fill-134" class="st5" points="29.637,47.307 31.096,46.534 32.352,47.287 30.895,48.063 "/> - <polygon id="Fill-135" class="st11" points="30.895,48.063 30.895,48.344 29.639,47.59 29.637,47.307 "/> - <polygon id="Fill-136" class="st10" points="32.756,49.18 34.213,48.407 34.213,48.688 32.756,49.463 "/> - <polygon id="Fill-137" class="st5" points="31.498,48.424 32.955,47.651 34.213,48.406 32.756,49.18 "/> - <polygon id="Fill-138" class="st11" points="32.756,49.18 32.756,49.463 31.498,48.707 31.498,48.424 "/> - <polygon id="Fill-139" class="st10" points="34.586,50.279 36.043,49.507 36.043,49.787 34.586,50.563 "/> - <polygon id="Fill-140" class="st5" points="33.328,49.524 34.787,48.751 36.043,49.506 34.586,50.28 "/> - <polygon id="Fill-141" class="st11" points="34.586,50.279 34.586,50.563 33.328,49.806 33.328,49.523 "/> - <polygon id="Fill-142" class="st10" points="36.445,51.397 37.904,50.624 37.904,50.907 36.445,51.68 "/> - <polygon id="Fill-143" class="st5" points="35.189,50.643 36.646,49.87 37.904,50.623 36.445,51.397 "/> - <polygon id="Fill-144" class="st11" points="36.445,51.397 36.445,51.68 35.189,50.924 35.189,50.643 "/> - <polygon id="Fill-145" class="st10" points="38.398,52.571 39.857,51.798 39.857,52.081 38.398,52.854 "/> - <polygon id="Fill-146" class="st5" points="37.143,51.817 38.6,51.042 39.858,51.797 38.399,52.571 "/> - <polygon id="Fill-147" class="st11" points="38.398,52.571 38.398,52.854 37.142,52.098 37.142,51.817 "/> - <polygon id="Fill-148" class="st10" points="40.266,53.694 41.725,52.919 41.725,53.202 40.266,53.975 "/> - <polygon id="Fill-149" class="st5" points="39.01,52.938 40.467,52.165 41.725,52.918 40.266,53.694 "/> - <polygon id="Fill-150" class="st11" points="40.266,53.694 40.266,53.975 39.01,53.221 39.01,52.938 "/> - <polygon id="Fill-151" class="st10" points="42.193,54.852 43.652,54.079 43.652,54.36 42.193,55.133 "/> - <polygon id="Fill-152" class="st5" points="40.938,54.096 42.395,53.323 43.653,54.078 42.194,54.852 "/> - <polygon id="Fill-153" class="st11" points="42.193,54.852 42.193,55.133 40.937,54.379 40.937,54.096 "/> - <polygon id="Fill-154" class="st10" points="44.018,55.947 45.475,55.174 45.477,55.455 44.018,56.228 "/> - <polygon id="Fill-155" class="st5" points="42.76,55.192 44.219,54.419 45.475,55.174 44.018,55.948 "/> - <polygon id="Fill-156" class="st11" points="44.018,55.947 44.018,56.228 42.762,55.474 42.76,55.191 "/> - <polygon id="Fill-157" class="st10" points="13.949,45.121 15.408,44.348 15.408,44.623 13.949,45.396 "/> - <polygon id="Fill-158" class="st5" points="12.691,44.367 14.15,43.592 15.408,44.347 13.949,45.121 "/> - <polygon id="Fill-159" class="st11" points="13.949,45.121 13.949,45.396 12.693,44.641 12.691,44.367 "/> - <polygon id="Fill-160" class="st10" points="15.719,46.184 17.176,45.411 17.176,45.686 15.719,46.459 "/> - <polygon id="Fill-161" class="st5" points="14.461,45.43 15.92,44.657 17.176,45.41 15.719,46.184 "/> - <polygon id="Fill-162" class="st11" points="15.719,46.184 15.719,46.459 14.461,45.704 14.461,45.43 "/> - <polygon id="Fill-163" class="st10" points="17.578,47.303 19.037,46.53 19.037,46.803 17.578,47.576 "/> - <polygon id="Fill-164" class="st5" points="16.322,46.547 17.779,45.774 19.037,46.529 17.578,47.303 "/> - <polygon id="Fill-165" class="st11" points="17.578,47.303 17.578,47.576 16.322,46.823 16.322,46.547 "/> - <polygon id="Fill-166" class="st10" points="33.137,56.621 34.596,55.848 34.596,56.123 33.137,56.896 "/> - <polygon id="Fill-167" class="st5" points="31.879,55.867 33.338,55.092 34.596,55.847 33.137,56.621 "/> - <polygon id="Fill-168" class="st11" points="33.137,56.621 33.137,56.896 31.881,56.141 31.879,55.867 "/> - <polygon id="Fill-169" class="st10" points="34.906,57.684 36.363,56.911 36.363,57.186 34.906,57.959 "/> - <polygon id="Fill-170" class="st5" points="33.648,56.93 35.107,56.157 36.363,56.91 34.906,57.684 "/> - <polygon id="Fill-171" class="st11" points="34.906,57.684 34.906,57.959 33.648,57.204 33.648,56.93 "/> - <polygon id="Fill-172" class="st10" points="36.766,58.803 38.225,58.03 38.225,58.303 36.766,59.076 "/> - <polygon id="Fill-173" class="st5" points="35.51,58.047 36.967,57.274 38.225,58.029 36.766,58.803 "/> - <polygon id="Fill-174" class="st11" points="36.766,58.803 36.766,59.076 35.51,58.323 35.51,58.047 "/> - <polygon id="Fill-175" class="st10" points="31.15,55.469 32.609,54.696 32.609,54.969 31.15,55.744 "/> - <polygon id="Fill-176" class="st5" points="18.256,47.721 19.715,46.948 32.61,54.696 31.151,55.469 "/> - <polygon id="Fill-177" class="st11" points="31.15,55.469 31.15,55.744 18.255,47.996 18.255,47.721 "/> - <polygon id="Fill-178" class="st10" points="21.678,39.936 23.135,39.163 23.135,39.446 21.678,40.219 "/> - <polygon id="Fill-179" class="st5" points="20.42,39.182 21.879,38.409 23.135,39.162 21.678,39.936 "/> - <polygon id="Fill-180" class="st11" points="21.678,39.936 21.678,40.219 20.42,39.463 20.42,39.182 "/> - <polygon id="Fill-181" class="st10" points="23.537,41.055 24.996,40.282 24.996,40.563 23.537,41.336 "/> - <polygon id="Fill-182" class="st5" points="22.281,40.299 23.738,39.526 24.996,40.281 23.537,41.055 "/> - <polygon id="Fill-183" class="st11" points="23.537,41.055 23.537,41.336 22.281,40.582 22.281,40.299 "/> - <polygon id="Fill-184" class="st10" points="25.49,42.229 26.947,41.454 26.949,41.737 25.49,42.51 "/> - <polygon id="Fill-185" class="st5" points="24.234,41.473 25.691,40.7 26.947,41.453 25.49,42.229 "/> - <polygon id="Fill-186" class="st11" points="25.49,42.229 25.49,42.51 24.234,41.756 24.234,41.473 "/> - <polygon id="Fill-187" class="st10" points="27.358,43.35 28.814,42.577 28.816,42.858 27.358,43.633 "/> - <polygon id="Fill-188" class="st5" points="26.102,42.594 27.559,41.821 28.815,42.576 27.358,43.35 "/> - <polygon id="Fill-189" class="st11" points="27.358,43.35 27.358,43.633 26.101,42.877 26.101,42.594 "/> - <polygon id="Fill-190" class="st10" points="29.285,44.508 30.744,43.735 30.744,44.018 29.285,44.791 "/> - <polygon id="Fill-191" class="st5" points="28.029,43.754 29.486,42.979 30.744,43.734 29.285,44.508 "/> - <polygon id="Fill-192" class="st11" points="29.285,44.508 29.285,44.791 28.029,44.035 28.029,43.754 "/> - <polygon id="Fill-193" class="st10" points="31.152,45.631 32.611,44.856 32.611,45.139 31.152,45.912 "/> - <polygon id="Fill-194" class="st5" points="29.889,44.871 31.348,44.098 32.612,44.855 31.153,45.631 "/> - <polygon id="Fill-195" class="st11" points="31.152,45.631 31.152,45.912 29.888,45.154 29.888,44.871 "/> - <polygon id="Fill-196" class="st10" points="33.105,46.803 34.563,46.03 34.564,46.313 33.105,47.086 "/> - <polygon id="Fill-197" class="st5" points="31.848,46.049 33.307,45.274 34.563,46.029 33.106,46.803 "/> - <polygon id="Fill-198" class="st11" points="33.105,46.803 33.105,47.086 31.849,46.33 31.847,46.049 "/> - <polygon id="Fill-199" class="st10" points="34.967,47.922 36.424,47.147 36.424,47.43 34.967,48.203 "/> - <polygon id="Fill-200" class="st5" points="33.709,47.166 35.166,46.393 36.424,47.146 34.967,47.922 "/> - <polygon id="Fill-201" class="st11" points="34.967,47.922 34.967,48.203 33.709,47.449 33.709,47.166 "/> - <polygon id="Fill-202" class="st10" points="36.797,49.022 38.254,48.249 38.254,48.53 36.797,49.303 "/> - <polygon id="Fill-203" class="st5" points="35.539,48.266 36.998,47.493 38.254,48.248 36.797,49.022 "/> - <polygon id="Fill-204" class="st11" points="36.797,49.022 36.797,49.303 35.539,48.549 35.539,48.266 "/> - <polygon id="Fill-205" class="st10" points="38.656,50.139 40.115,49.366 40.115,49.649 38.656,50.422 "/> - <polygon id="Fill-206" class="st5" points="37.4,49.385 38.857,48.61 40.115,49.365 38.656,50.139 "/> - <polygon id="Fill-207" class="st11" points="38.656,50.139 38.656,50.422 37.4,49.666 37.4,49.385 "/> - <polygon id="Fill-208" class="st10" points="40.609,51.313 42.068,50.54 42.068,50.821 40.609,51.596 "/> - <polygon id="Fill-209" class="st5" points="39.354,50.557 40.811,49.784 42.069,50.539 40.61,51.313 "/> - <polygon id="Fill-210" class="st11" points="40.609,51.313 40.609,51.596 39.353,50.84 39.353,50.557 "/> - <polygon id="Fill-211" class="st10" points="42.477,52.434 43.936,51.661 43.936,51.944 42.477,52.717 "/> - <polygon id="Fill-212" class="st5" points="41.221,51.68 42.678,50.905 43.936,51.66 42.477,52.434 "/> - <polygon id="Fill-213" class="st11" points="42.477,52.434 42.477,52.717 41.221,51.961 41.221,51.68 "/> - <polygon id="Fill-214" class="st10" points="44.404,53.592 45.863,52.819 45.863,53.102 44.404,53.875 "/> - <polygon id="Fill-215" class="st5" points="43.148,52.838 44.605,52.065 45.863,52.818 44.404,53.592 "/> - <polygon id="Fill-216" class="st11" points="44.404,53.592 44.404,53.875 43.148,53.119 43.148,52.838 "/> - <polygon id="Fill-217" class="st10" points="46.229,54.69 47.686,53.915 47.688,54.198 46.229,54.971 "/> - <polygon id="Fill-218" class="st5" points="44.971,53.934 46.43,53.161 47.686,53.914 46.229,54.69 "/> - <polygon id="Fill-219" class="st11" points="46.229,54.69 46.229,54.971 44.973,54.215 44.971,53.934 "/> - </g> - </g> -</g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 69.511 70.936"><style><![CDATA[.M{fill:#fefefe}.N{fill:#231f20}.O{fill:#626366}.P{stroke:#626366}.Q{stroke-linejoin:round}.R{stroke-linecap:round}]]></style><g fill="none" stroke-width="3" class="P Q"><path d="M30.8 65.567l25.513-13.543.003 3.87-25.514 13.543z"/><path d="M1.5 47.967l25.514-13.54 29.29 17.598L30.8 65.568z"/><path d="M30.8 65.567l.002 3.87-29.29-17.598-.003-3.87z"/><path d="M1.5 47.967l29.3 17.6.002 3.868" class="R"/><path d="M64.49 20.5l3.52-.592-8.194 32.504-3.518.594z"/><path d="M35.34 2.092l3.52-.592L68.01 19.908l-3.52.593z"/><path d="M64.49 20.5L56.3 53.007 27.146 34.6 35.34 2.093z"/></g><path d="M30.8 65.567l25.513-13.543.003 3.87-25.514 13.543z" fill="#898b8e"/><path d="M1.5 47.967l25.514-13.54 29.29 17.598L30.8 65.567z" fill="#bbbdbf"/><path d="M30.8 65.567l.002 3.87-29.29-17.598-.003-3.87z" fill="#b3b5b7"/><path d="M1.896 48.205L30.8 65.566l.002 3.465" fill="none" stroke="#e1e2e3" class="Q R"/><g fill="#898b8e"><path d="M64.49 20.5l3.52-.592-8.194 32.504-3.518.594z"/><path d="M35.34 2.092l3.52-.592L68.01 19.908l-3.52.592z"/></g><path d="M64.49 20.5L56.3 53.006 27.146 34.598 35.34 2.092z" fill="#b3b5b7"/><path d="M61.592 21.37l-7.105 28.192-25.285-15.967 7.106-28.193z" class="M"/><path d="M61.592 21.37l-7.105 28.192-25.285-15.967 7.106-28.193z" fill="none" stroke-width="1.184" class="P"/><path d="M58.864 22.196c-.92-.54-18.42-10.778-20.068-9-1.255 1.315-5.354 12.692-5.57 13.292L37.68 8.96l21.185 13.237z" fill="#c4cace"/><path d="M16.05 53.3l4.265-2.266 6.574 3.952-4.266 2.263z" class="M"/><g fill="none"><path d="M16.05 53.3l4.265-2.266 6.574 3.952-4.266 2.263z" stroke="#636466"/><path d="M56.467 53.248L26.73 34.27" class="P Q R"/></g><path d="M16.342 43.446l1.457-.773v.28l-1.457.773z" class="N"/><use xlink:href="#B" class="M"/><path d="M16.342 43.446v.28l-1.258-.754V42.7z" class="O"/><use xlink:href="#C" class="N"/><use xlink:href="#D" class="M"/><path d="M18.2 44.563v.283l-1.256-.756v-.283z" class="O"/><path d="M20.154 45.737l1.457-.773.002.28-1.46.775z" class="N"/><path d="M18.898 44.98l1.457-.773 1.256.755-1.457.774z" class="M"/><path d="M20.154 45.737v.283l-1.256-.756v-.283z" class="O"/><path d="M22.02 46.858l1.457-.773.002.283-1.46.773z" class="N"/><path d="M20.766 46.104l1.457-.775 1.256.755-1.457.774z" class="M"/><use xlink:href="#E" class="O"/><use xlink:href="#C" x="5.75" y="3.453" class="N"/><use xlink:href="#F" class="M"/><use xlink:href="#E" x="1.93" y="1.158" class="O"/><path d="M25.816 49.14l1.46-.773v.28l-1.46.773z" class="N"/><path d="M24.553 48.38l1.46-.773 1.264.76-1.46.774z" class="M"/><path d="M25.816 49.14v.28l-1.264-.758v-.283z" class="O"/><path d="M27.77 50.313l1.457-.775.002.283-1.46.773z" class="N"/><path d="M26.512 49.557l1.46-.773 1.256.753-1.457.776z" class="M"/><path d="M27.77 50.313v.28l-1.256-.754-.002-.283z" class="O"/><path d="M29.63 51.43l1.457-.773v.28l-1.457.775z" class="N"/><path d="M28.373 50.674l1.457-.773 1.258.755-1.457.774z" class="M"/><path d="M29.63 51.43v.283l-1.258-.756v-.283z" class="O"/><path d="M31.46 52.53l1.457-.772v.28l-1.457.776z" class="N"/><use xlink:href="#B" x="15.119" y="9.074" class="M"/><path d="M31.46 52.53v.284l-1.258-.757v-.283z" class="O"/><use xlink:href="#C" x="15.12" y="9.084" class="N"/><use xlink:href="#F" x="9.371" y="5.631" class="M"/><use xlink:href="#E" x="11.3" y="6.789" class="O"/><use xlink:href="#C" x="17.073" y="10.257" class="N"/><path d="M34.018 54.067l1.457-.775 1.258.755-1.46.774z" class="M"/><use xlink:href="#E" x="13.253" y="7.962" class="O"/><path d="M37.14 55.944l1.46-.775v.283l-1.46.773z" class="N"/><path d="M35.885 55.188l1.457-.773 1.258.753-1.46.776z" class="M"/><path d="M37.14 55.944v.28l-1.256-.754v-.283z" class="O"/><path d="M39.068 57.102l1.46-.773v.28l-1.46.773z" class="N"/><use xlink:href="#D" x="20.868" y="12.539" class="M"/><path d="M39.068 57.102v.28l-1.256-.754v-.283z" class="O"/><path d="M40.893 58.197l1.457-.773.002.28-1.46.773z" class="N"/><use xlink:href="#B" x="24.551" y="14.742" class="M"/><path d="M40.893 58.197v.28l-1.256-.754-.002-.283z" class="O"/><path d="M18.342 42.32l1.457-.773v.28l-1.457.773z" class="N"/><use xlink:href="#B" x="2" y="-1.135" class="M"/><path d="M18.342 42.32v.28l-1.258-.754v-.283z" class="O"/><use xlink:href="#C" x="2" y="-1.125" class="N"/><use xlink:href="#D" x="2" y="-1.125" class="M"/><path d="M20.2 43.438v.283l-1.256-.756v-.283z" class="O"/><path d="M22.154 44.612l1.457-.773.002.28-1.46.775z" class="N"/><path d="M20.898 43.856l1.457-.773 1.256.755-1.457.774z" class="M"/><path d="M22.154 44.612v.283l-1.256-.756v-.283z" class="O"/><path d="M24.02 45.733l1.457-.773.002.283-1.46.773z" class="N"/><path d="M22.766 44.98l1.457-.775 1.256.755-1.457.774z" class="M"/><use xlink:href="#E" x="2" y="-1.125" class="O"/><use xlink:href="#C" x="7.75" y="2.327" class="N"/><use xlink:href="#F" x="2" y="-1.125" class="M"/><use xlink:href="#E" x="3.93" y="0.032" class="O"/><path d="M27.816 48.014l1.46-.773v.28l-1.46.773z" class="N"/><path d="M26.553 47.254l1.46-.773 1.264.76-1.46.774z" class="M"/><path d="M27.816 48.014v.28l-1.264-.758v-.283z" class="O"/><path d="M29.77 49.188l1.457-.775.002.283-1.46.773z" class="N"/><path d="M28.512 48.432l1.46-.773 1.256.753-1.457.776z" class="M"/><path d="M29.77 49.188v.28l-1.256-.754-.002-.283z" class="O"/><path d="M31.63 50.305l1.457-.773v.28l-1.457.775z" class="N"/><path d="M30.373 49.55l1.457-.773 1.258.755-1.457.774z" class="M"/><path d="M31.63 50.305v.283l-1.258-.756v-.283z" class="O"/><path d="M33.46 51.404l1.457-.772v.28l-1.457.776z" class="N"/><use xlink:href="#B" x="17.119" y="7.95" class="M"/><path d="M33.46 51.404v.284l-1.258-.757v-.283z" class="O"/><use xlink:href="#C" x="17.12" y="7.959" class="N"/><use xlink:href="#F" x="11.371" y="4.506" class="M"/><use xlink:href="#E" x="13.3" y="5.664" class="O"/><use xlink:href="#C" x="19.073" y="9.133" class="N"/><path d="M36.018 52.942l1.457-.775 1.258.755-1.46.774z" class="M"/><use xlink:href="#E" x="15.253" y="6.838" class="O"/><path d="M39.14 54.82l1.46-.775v.283l-1.46.773z" class="N"/><path d="M37.885 54.063l1.457-.773 1.258.753-1.46.776z" class="M"/><path d="M39.14 54.82v.28l-1.256-.754v-.283z" class="O"/><path d="M41.068 55.977l1.46-.773v.28l-1.46.773z" class="N"/><use xlink:href="#D" x="22.868" y="11.413" class="M"/><path d="M41.068 55.977v.28l-1.256-.754v-.283z" class="O"/><path d="M42.893 57.072l1.457-.773.002.28-1.46.773z" class="N"/><use xlink:href="#B" x="26.551" y="13.617" class="M"/><path d="M42.893 57.072v.28l-1.256-.754-.002-.283z" class="O"/><path d="M20.467 41.196l1.457-.773v.28l-1.457.773z" class="N"/><use xlink:href="#B" x="4.126" y="-2.26" class="M"/><path d="M20.467 41.196v.28l-1.258-.754v-.283z" class="O"/><use xlink:href="#C" x="4.126" y="-2.25" class="N"/><use xlink:href="#D" x="4.125" y="-2.25" class="M"/><path d="M22.326 42.313v.283l-1.256-.756v-.283z" class="O"/><path d="M24.28 43.487l1.457-.773.002.28-1.46.775z" class="N"/><path d="M23.023 42.73l1.457-.773 1.256.755-1.457.774z" class="M"/><path d="M24.28 43.487v.283l-1.256-.756v-.283z" class="O"/><path d="M26.146 44.608l1.457-.773.002.283-1.46.773z" class="N"/><path d="M24.89 43.854l1.457-.775 1.256.755-1.457.774z" class="M"/><use xlink:href="#E" x="4.126" y="-2.25" class="O"/><use xlink:href="#C" x="9.874" y="1.203" class="N"/><use xlink:href="#F" x="4.125" y="-2.25" class="M"/><use xlink:href="#E" x="6.054" y="-1.092" class="O"/><path d="M29.94 46.89l1.46-.773v.28l-1.46.773z" class="N"/><path d="M28.678 46.13l1.46-.773 1.264.76-1.46.774z" class="M"/><path d="M29.94 46.89v.28l-1.264-.758v-.283z" class="O"/><path d="M31.895 48.063l1.457-.775.002.283-1.46.773z" class="N"/><path d="M30.637 47.307l1.46-.773 1.256.753-1.457.776z" class="M"/><path d="M31.895 48.063v.28L30.64 47.6l-.002-.283z" class="O"/><path d="M33.756 49.18l1.457-.773v.28l-1.457.775z" class="N"/><path d="M32.498 48.424l1.457-.773 1.258.755-1.457.774z" class="M"/><path d="M33.756 49.18v.283l-1.258-.756v-.283z" class="O"/><path d="M35.586 50.28l1.457-.772v.28l-1.457.776z" class="N"/><use xlink:href="#B" x="19.244" y="6.824" class="M"/><path d="M35.586 50.28v.284l-1.258-.757v-.283z" class="O"/><use xlink:href="#C" x="19.245" y="6.834" class="N"/><use xlink:href="#F" x="13.497" y="3.381" class="M"/><use xlink:href="#E" x="15.425" y="4.539" class="O"/><use xlink:href="#C" x="21.198" y="8.007" class="N"/><path d="M38.143 51.817l1.457-.775 1.258.755-1.46.774z" class="M"/><use xlink:href="#E" x="17.378" y="5.712" class="O"/><path d="M41.266 53.694l1.46-.775v.283l-1.46.773z" class="N"/><path d="M40 52.938l1.457-.773 1.258.753-1.46.776z" class="M"/><path d="M41.266 53.694v.28L40 53.22v-.283z" class="O"/><path d="M43.193 54.852l1.46-.773v.28l-1.46.773z" class="N"/><use xlink:href="#D" x="24.993" y="10.289" class="M"/><path d="M43.193 54.852v.28l-1.256-.754v-.283z" class="O"/><path d="M45.018 55.947l1.457-.773.002.28-1.46.773z" class="N"/><use xlink:href="#B" x="28.676" y="12.492" class="M"/><path d="M45.018 55.947v.28l-1.256-.754-.002-.283z" class="O"/><path d="M14.95 45.12l1.46-.773v.275l-1.46.773z" class="N"/><path d="M13.69 44.367l1.46-.775 1.258.755-1.46.774z" class="M"/><path d="M14.95 45.12v.275l-1.256-.755-.002-.274z" class="O"/><path d="M16.72 46.184l1.457-.773v.275l-1.457.773z" class="N"/><path d="M15.46 45.43l1.46-.773 1.256.753-1.457.774z" class="M"/><path d="M16.72 46.184v.275l-1.258-.755v-.274z" class="O"/><path d="M18.578 47.303l1.46-.773v.273l-1.46.773z" class="N"/><use xlink:href="#D" x="0.377" y="2.74" class="M"/><path d="M18.578 47.303v.273l-1.256-.753v-.276z" class="O"/><path d="M34.137 56.62l1.46-.773v.275l-1.46.773z" class="N"/><path d="M32.88 55.867l1.46-.775 1.258.755-1.46.774z" class="M"/><path d="M34.137 56.62v.275l-1.256-.755v-.274z" class="O"/><path d="M35.906 57.684l1.457-.773v.275l-1.457.773z" class="N"/><path d="M34.648 56.93l1.46-.773 1.256.753-1.457.774z" class="M"/><path d="M35.906 57.684v.275l-1.258-.755v-.274z" class="O"/><path d="M37.766 58.803l1.46-.773v.273l-1.46.773z" class="N"/><use xlink:href="#D" x="19.555" y="14.24" class="M"/><path d="M37.766 58.803v.273l-1.256-.753v-.276z" class="O"/><path d="M32.15 55.47l1.46-.773v.273l-1.46.775z" class="N"/><path d="M19.256 47.72l1.46-.773L33.6 54.696l-1.46.773z" class="M"/><path d="M32.15 55.47v.275l-12.895-7.748v-.275z" class="O"/><path d="M22.678 39.936l1.457-.773v.283l-1.457.773z" class="N"/><path d="M21.42 39.182l1.46-.773 1.256.753-1.457.774z" class="M"/><path d="M22.678 39.936v.283l-1.258-.756v-.28z" class="O"/><path d="M24.537 41.055l1.46-.773v.28l-1.46.773z" class="N"/><use xlink:href="#D" x="6.335" y="-3.507" class="M"/><path d="M24.537 41.055v.28l-1.256-.754V40.3z" class="O"/><path d="M26.5 42.23l1.457-.775.002.283-1.46.773z" class="N"/><path d="M25.234 41.473l1.457-.773 1.256.753-1.457.776z" class="M"/><path d="M26.5 42.23v.28l-1.256-.754v-.283z" class="O"/><path d="M28.358 43.35l1.456-.773.002.28-1.458.775z" class="N"/><path d="M27.102 42.594l1.457-.773 1.256.755-1.457.774z" class="M"/><path d="M28.358 43.35v.283l-1.257-.756v-.283z" class="O"/><use xlink:href="#C" x="12.085" y="-0.055" class="N"/><path d="M29.03 43.754l1.457-.775 1.258.755-1.46.774z" class="M"/><use xlink:href="#E" x="8.265" y="-2.35" class="O"/><path d="M32.152 45.63l1.46-.775v.283l-1.46.773z" class="N"/><path d="M30.89 44.87l1.46-.773 1.264.757-1.46.776z" class="M"/><path d="M32.152 45.63v.28l-1.264-.758v-.283z" class="O"/><path d="M34.105 46.803l1.458-.773.001.283-1.46.773z" class="N"/><path d="M32.848 46.05l1.46-.775 1.256.755-1.457.774z" class="M"/><path d="M34.105 46.803v.283l-1.256-.756-.002-.28z" class="O"/><path d="M35.967 47.922l1.457-.775v.283l-1.457.773z" class="N"/><path d="M34.71 47.166l1.457-.773 1.258.753-1.457.776z" class="M"/><path d="M35.967 47.922v.28l-1.258-.754v-.283z" class="O"/><path d="M37.797 49.022l1.457-.773v.28l-1.457.773z" class="N"/><use xlink:href="#B" x="21.456" y="5.566" class="M"/><path d="M37.797 49.022v.28l-1.258-.754v-.283z" class="O"/><use xlink:href="#C" x="21.456" y="5.577" class="N"/><path d="M38.4 49.385l1.457-.775 1.258.755-1.46.774z" class="M"/><use xlink:href="#E" x="17.636" y="3.282" class="O"/><path d="M41.61 51.313l1.46-.773v.28l-1.46.775z" class="N"/><use xlink:href="#D" x="23.409" y="6.75" class="M"/><path d="M41.61 51.313v.283l-1.256-.756v-.283z" class="O"/><use xlink:href="#C" x="25.277" y="7.871" class="N"/><path d="M42.22 51.68l1.457-.775 1.258.755-1.46.774z" class="M"/><use xlink:href="#E" x="21.457" y="5.576" class="O"/><use xlink:href="#C" x="27.204" y="9.029" class="N"/><use xlink:href="#F" x="21.455" y="5.576" class="M"/><use xlink:href="#E" x="23.384" y="6.734" class="O"/><path d="M47.23 54.7l1.457-.775.002.283-1.46.773z" class="N"/><path d="M45.97 53.934l1.46-.773 1.256.753-1.457.776z" class="M"/><path d="M47.23 54.7v.28l-1.256-.756-.002-.28z" class="O"/><defs ><path id="B" d="M15.084 42.7l1.46-.773 1.256.755-1.457.774z"/><path id="C" d="M18.2 44.563l1.46-.773v.283l-1.46.773z"/><path id="D" d="M16.945 43.807l1.457-.773 1.258.755-1.46.774z"/><path id="E" d="M22.02 46.858v.283l-1.256-.756v-.28z"/><path id="F" d="M22.693 47.262l1.457-.773 1.258.753-1.46.774z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/POS_Printer.svg b/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/POS_Printer.svg index 6780ce9f8aea10352f3dc12b96eb92b7d432c208..2bb3e45ca5385ebc02c49e5f75ba3e8e50fcea14 100644 --- a/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/POS_Printer.svg +++ b/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/POS_Printer.svg @@ -1,96 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 62.1 53.7" style="enable-background:new 0 0 62.1 53.7;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#626366;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;} - .st1{fill:#B0B2B5;} - .st2{fill:#BBBDBF;} - .st3{fill:#B3B5B7;} - .st4{fill:#898B8E;} - .st5{fill:#FEFEFE;} - .st6{fill:#231F20;} - .st7{fill:#626366;} - .st8{fill:none;stroke:#DFE0DF;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;} - .st9{fill:#999B9D;} - .st10{fill:#F0F0F1;} -</style> -<title>icon-EFTPOS-printer</title> -<desc>Created with Sketch.</desc> -<g id="Page-1"> - <g id="Desktop" transform="translate(-1120.000000, -82.000000)"> - <g id="icon-EFTPOS-printer" transform="translate(1121.000000, 81.000000)"> - <g id="Group-9" transform="translate(0.000000, 9.650400)"> - <polygon id="Stroke-1" class="st0" points="48.3,22.3 21.3,6.4 32.6,0.4 59.6,16.2 "/> - <polygon id="Stroke-3" class="st0" points="27.5,37.9 0.5,22.1 21.3,6.4 48.3,22.3 "/> - <polygon id="Stroke-5" class="st0" points="27.5,43.5 0.5,27.7 0.5,22.1 27.5,37.9 "/> - <polygon id="Stroke-7" class="st0" points="59.6,16.2 59.6,26.4 27.5,43.5 27.5,37.9 48.3,22.3 "/> - </g> - <polygon id="Stroke-10" class="st0" points="19.1,28.1 22,26.2 24.8,27.9 21.8,29.8 "/> - <polygon id="Stroke-11" class="st0" points="24.8,28.5 21.8,30.4 21.8,29.8 24.8,27.9 "/> - <polygon id="Stroke-12" class="st0" points="19.1,28.1 21.8,29.8 21.8,30.4 19.1,28.7 "/> - <polygon id="Stroke-13" class="st0" points="15.1,30.7 18,28.8 20.8,30.5 17.9,32.4 "/> - <polygon id="Stroke-14" class="st0" points="20.8,31.1 17.9,33 17.9,32.4 20.8,30.5 "/> - <polygon id="Stroke-15" class="st0" points="15.1,30.7 17.9,32.4 17.9,33 15.1,31.3 "/> - <polygon id="Stroke-16" class="st0" points="22.9,25.6 25.9,23.7 28.7,25.4 25.7,27.3 "/> - <polygon id="Stroke-17" class="st0" points="28.7,26 25.7,27.9 25.7,27.3 28.7,25.4 "/> - <polygon id="Stroke-18" class="st0" points="22.9,25.6 25.7,27.3 25.7,27.9 22.9,26.2 "/> - <polygon id="Stroke-19" class="st0" points="22.7,30.3 25.6,28.4 28.4,30.1 25.5,32 "/> - <polygon id="Stroke-20" class="st0" points="28.4,30.7 25.5,32.6 25.5,32 28.4,30.1 "/> - <polygon id="Stroke-21" class="st0" points="22.7,30.4 25.5,32 25.5,32.6 22.7,31 "/> - <polygon id="Stroke-22" class="st0" points="18.8,32.9 21.7,31 24.5,32.7 21.6,34.6 "/> - <polygon id="Stroke-23" class="st0" points="24.5,33.3 21.6,35.2 21.6,34.6 24.5,32.7 "/> - <polygon id="Stroke-24" class="st0" points="18.8,32.9 21.6,34.6 21.6,35.2 18.8,33.5 "/> - <polygon id="Stroke-25" class="st0" points="26.6,27.8 29.5,25.9 32.3,27.6 29.4,29.5 "/> - <polygon id="Stroke-26" class="st0" points="32.3,28.2 29.4,30.1 29.4,29.5 32.3,27.6 "/> - <polygon id="Stroke-27" class="st0" points="26.6,27.8 29.4,29.5 29.4,30.1 26.6,28.4 "/> - <polygon id="Stroke-28" class="st0" points="26.3,32.5 29.3,30.6 32.1,32.3 29.1,34.2 "/> - <polygon id="Stroke-29" class="st0" points="32.1,32.9 29.1,34.8 29.1,34.2 32.1,32.3 "/> - <polygon id="Stroke-30" class="st0" points="26.3,32.5 29.1,34.2 29.1,34.8 26.3,33.1 "/> - <polygon id="Stroke-31" class="st0" points="22.4,35.1 25.3,33.2 28.1,34.9 25.2,36.8 "/> - <polygon id="Stroke-32" class="st0" points="28.1,35.5 25.2,37.4 25.2,36.8 28.1,34.9 "/> - <polygon id="Stroke-33" class="st0" points="22.4,35.1 25.2,36.8 25.2,37.4 22.4,35.7 "/> - <polygon id="Stroke-34" class="st0" points="30.2,30 33.2,28.1 35.9,29.8 33,31.7 "/> - <polygon id="Stroke-35" class="st0" points="35.9,30.4 33,32.3 33,31.7 35.9,29.8 "/> - <polygon id="Stroke-36" class="st0" points="30.2,30 33,31.7 33,32.3 30.2,30.6 "/> - <g id="Group-115" transform="translate(0.000000, 0.650400)"> - <polygon id="Fill-45" class="st1" points="48.3,31.3 21.3,15.4 32.6,9.4 59.6,25.2 "/> - <polygon id="Fill-47" class="st2" points="27.5,46.9 0.5,31.1 21.3,15.4 48.3,31.3 "/> - <polygon id="Fill-49" class="st3" points="27.5,52.5 0.5,36.7 0.5,31.1 27.5,46.9 "/> - <polygon id="Fill-51" class="st4" points="59.6,25.2 59.6,35.4 27.5,52.5 27.5,46.9 48.3,31.3 "/> - <polygon id="Fill-53" class="st5" points="19.1,27.5 22,25.6 24.8,27.3 21.8,29.2 "/> - <polygon id="Fill-55" class="st6" points="24.8,27.9 21.8,29.8 21.8,29.2 24.8,27.3 "/> - <polygon id="Fill-57" class="st7" points="19.1,27.5 21.8,29.2 21.8,29.8 19.1,28.1 "/> - <polygon id="Fill-59" class="st5" points="15.1,30 18,28.1 20.8,29.8 17.9,31.7 "/> - <polygon id="Fill-61" class="st6" points="20.8,30.4 17.9,32.3 17.9,31.7 20.8,29.8 "/> - <polygon id="Fill-63" class="st7" points="15.1,30 17.9,31.7 17.9,32.3 15.1,30.6 "/> - <polygon id="Fill-65" class="st5" points="22.9,25 25.9,23.1 28.7,24.7 25.7,26.6 "/> - <polygon id="Fill-67" class="st6" points="28.7,25.4 25.7,27.2 25.7,26.6 28.7,24.8 "/> - <polygon id="Fill-69" class="st7" points="22.9,25 25.7,26.6 25.7,27.2 22.9,25.6 "/> - <polygon id="Fill-71" class="st5" points="22.7,29.7 25.6,27.8 28.4,29.5 25.5,31.4 "/> - <polygon id="Fill-73" class="st6" points="28.4,30.1 25.5,32 25.5,31.4 28.4,29.5 "/> - <polygon id="Fill-75" class="st7" points="22.7,29.7 25.5,31.4 25.5,32 22.7,30.3 "/> - <polygon id="Fill-77" class="st5" points="18.8,32.2 21.7,30.4 24.5,32 21.6,33.9 "/> - <polygon id="Fill-79" class="st6" points="24.5,32.6 21.6,34.5 21.6,33.9 24.5,32 "/> - <polygon id="Fill-81" class="st7" points="18.8,32.3 21.6,33.9 21.6,34.5 18.8,32.9 "/> - <polygon id="Fill-83" class="st5" points="26.6,27.2 29.5,25.3 32.3,27 29.4,28.8 "/> - <polygon id="Fill-85" class="st6" points="32.3,27.6 29.4,29.5 29.4,28.9 32.3,27 "/> - <polygon id="Fill-87" class="st7" points="26.6,27.2 29.4,28.9 29.4,29.5 26.6,27.8 "/> - <polygon id="Fill-89" class="st5" points="26.3,31.9 29.3,30 32.1,31.7 29.1,33.5 "/> - <polygon id="Fill-91" class="st6" points="32.1,32.3 29.1,34.2 29.1,33.6 32.1,31.7 "/> - <polygon id="Fill-93" class="st7" points="26.3,31.9 29.1,33.6 29.1,34.2 26.3,32.5 "/> - <polygon id="Fill-95" class="st5" points="22.4,34.4 25.3,32.5 28.1,34.2 25.2,36.1 "/> - <polygon id="Fill-97" class="st6" points="28.1,34.8 25.2,36.7 25.2,36.1 28.1,34.2 "/> - <polygon id="Fill-99" class="st7" points="22.4,34.4 25.2,36.1 25.2,36.7 22.4,35 "/> - <polygon id="Fill-101" class="st5" points="30.2,29.4 33.2,27.5 35.9,29.1 33,31 "/> - <polygon id="Fill-103" class="st6" points="35.9,29.8 33,31.6 33,31 35.9,29.1 "/> - <polygon id="Fill-105" class="st7" points="30.2,29.4 33,31 33,31.6 30.2,30 "/> - <path id="Fill-107" class="st7" d="M24.1,16.8c-0.7-0.4-0.7-1.1,0-1.5l2.1-1.4c0.7-0.4,1.8-0.5,2.5,0l21.6,13 - c0.7,0.4,0.7,1.1,0,1.5l-2.1,1.4c-0.7,0.4-1.8,0.5-2.5,0L24.1,16.8z"/> - <polyline id="Stroke-109" class="st8" points="1,31.3 27.5,46.9 27.5,52.1 "/> - <polygon id="Fill-111" class="st9" points="41.2,25.7 51.2,7.1 51.7,7.4 41.7,26 "/> - <polygon id="Fill-113" class="st10" points="30.2,19 40.2,0.3 51.2,7.1 41.2,25.7 "/> - </g> - </g> - </g> -</g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 62.1 53.7"><style><![CDATA[.L{fill:#fefefe}.M{fill:#231f20}.N{fill:#626366}.O{stroke-linejoin:round}]]></style><g fill="none" stroke="#626366" stroke-width="3" class="O"><path d="M49.3 30.95l-27-15.9 11.3-6 27 15.8z"/><path d="M28.5 46.55l-27-15.8 20.8-15.7 27 15.9z"/><path d="M28.5 52.15l-27-15.8v-5.6l27 15.8z"/><path d="M60.6 24.85v10.2l-32.1 17.1v-5.6l20.8-15.6zM20.1 27.1l2.9-1.9 2.8 1.7-3 1.9z"/><path d="M25.8 27.5l-3 1.9v-.6l3-1.9z"/><path d="M20.1 27.1l2.7 1.7v.6l-2.7-1.7zm-4 2.6l2.9-1.9 2.8 1.7-2.9 1.9z"/><path d="M21.8 30.1L18.9 32v-.6l2.9-1.9z"/><path d="M16.1 29.7l2.8 1.7v.6l-2.8-1.7zm7.8-5.1l3-1.9 2.8 1.7-3 1.9z"/><path d="M29.7 25l-3 1.9v-.6l3-1.9z"/><path d="M23.9 24.6l2.8 1.7v.6l-2.8-1.7zm-.2 4.7l2.9-1.9 2.8 1.7-2.9 1.9z"/><path d="M29.4 29.7l-2.9 1.9V31l2.9-1.9z"/><path d="M23.7 29.4l2.8 1.6v.6L23.7 30zm-3.9 2.5l2.9-1.9 2.8 1.7-2.9 1.9z"/><path d="M25.5 32.3l-2.9 1.9v-.6l2.9-1.9z"/><path d="M19.8 31.9l2.8 1.7v.6l-2.8-1.7zm7.8-5.1l2.9-1.9 2.8 1.7-2.9 1.9z"/><path d="M33.3 27.2l-2.9 1.9v-.6l2.9-1.9z"/><path d="M27.6 26.8l2.8 1.7v.6l-2.8-1.7zm-.3 4.7l3-1.9 2.8 1.7-3 1.9z"/><path d="M33.1 31.9l-3 1.9v-.6l3-1.9z"/><path d="M27.3 31.5l2.8 1.7v.6l-2.8-1.7zm-3.9 2.6l2.9-1.9 2.8 1.7-2.9 1.9z"/><path d="M29.1 34.5l-2.9 1.9v-.6l2.9-1.9z"/><path d="M23.4 34.1l2.8 1.7v.6l-2.8-1.7zm7.8-5.1l3-1.9 2.7 1.7-2.9 1.9z"/><path d="M36.9 29.4L34 31.3v-.6l2.9-1.9z"/><path d="M31.2 29l2.8 1.7v.6l-2.8-1.7z"/></g><path d="M49.3 30.95l-27-15.9 11.3-6 27 15.8z" fill="#b0b2b5"/><path d="M28.5 46.55l-27-15.8 20.8-15.7 27 15.9z" fill="#bbbdbf"/><path d="M28.5 52.15l-27-15.8v-5.6l27 15.8z" fill="#b3b5b7"/><path d="M60.6 24.85v10.2l-32.1 17.1v-5.6l20.8-15.6z" fill="#898b8e"/><path d="M20.1 27.15l2.9-1.9 2.8 1.7-3 1.9z" class="L"/><path d="M25.8 27.55l-3 1.9v-.6l3-1.9z" class="M"/><path d="M20.1 27.15l2.7 1.7v.6l-2.7-1.7z" class="N"/><path d="M16.1 29.65l2.9-1.9 2.8 1.7-2.9 1.9z" class="L"/><path d="M21.8 30.05l-2.9 1.9v-.6l2.9-1.9z" class="M"/><path d="M16.1 29.65l2.8 1.7v.6l-2.8-1.7z" class="N"/><path d="M23.9 24.65l3-1.9 2.8 1.6-3 1.9z" class="L"/><path d="M29.7 25.05l-3 1.8v-.6l3-1.8z" class="M"/><path d="M23.9 24.65l2.8 1.6v.6l-2.8-1.6z" class="N"/><path d="M23.7 29.35l2.9-1.9 2.8 1.7-2.9 1.9z" class="L"/><path d="M29.4 29.75l-2.9 1.9v-.6l2.9-1.9z" class="M"/><path d="M23.7 29.35l2.8 1.7v.6l-2.8-1.7z" class="N"/><path d="M19.8 31.85l2.9-1.8 2.8 1.6-2.9 1.9z" class="L"/><path d="M25.5 32.25l-2.9 1.9v-.6l2.9-1.9z" class="M"/><path d="M19.8 31.95l2.8 1.6v.6l-2.8-1.6z" class="N"/><path d="M27.6 26.85l2.9-1.9 2.8 1.7-2.9 1.8z" class="L"/><path d="M33.3 27.25l-2.9 1.9v-.6l2.9-1.9z" class="M"/><path d="M27.6 26.85l2.8 1.7v.6l-2.8-1.7z" class="N"/><path d="M27.3 31.55l3-1.9 2.8 1.7-3 1.8z" class="L"/><path d="M33.1 31.95l-3 1.9v-.6l3-1.9z" class="M"/><path d="M27.3 31.55l2.8 1.7v.6l-2.8-1.7z" class="N"/><path d="M23.4 34.05l2.9-1.9 2.8 1.7-2.9 1.9z" class="L"/><path d="M29.1 34.45l-2.9 1.9v-.6l2.9-1.9z" class="M"/><path d="M23.4 34.05l2.8 1.7v.6l-2.8-1.7z" class="N"/><path d="M31.2 29.05l3-1.9 2.7 1.6-2.9 1.9z" class="L"/><path d="M36.9 29.45l-2.9 1.8v-.6l2.9-1.9z" class="M"/><path d="M31.2 29.05l2.8 1.6v.6l-2.8-1.6zm-6.1-12.6c-.7-.4-.7-1.1 0-1.5l2.1-1.4c.7-.4 1.8-.5 2.5 0l21.6 13c.7.4.7 1.1 0 1.5l-2.1 1.4c-.7.4-1.8.5-2.5 0l-21.6-13z" class="N"/><path d="M2 30.95l26.5 15.6v5.2" fill="none" stroke="#dfe0df" stroke-width=".75" stroke-linecap="round" class="O"/><path d="M42.2 25.35l10-18.6.5.3-10 18.6z" fill="#999b9d"/><path d="M31.2 18.65l10-18.7 11 6.8-10 18.6z" fill="#f0f0f1"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/POS_keypad.svg b/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/POS_keypad.svg index d500dbf1faa9d6c10dca057ecd303d4c8c766069..ed0487ec0ea465a8381b497d3055344e0f408b16 100644 --- a/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/POS_keypad.svg +++ b/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/POS_keypad.svg @@ -1,64 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 62.1 46.1" style="enable-background:new 0 0 62.1 46.1;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#626366;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;} - .st1{fill:#B0B2B5;} - .st2{fill:#BBBDBF;} - .st3{fill:#B3B5B7;} - .st4{fill:#898B8E;} - .st5{fill:#FEFEFE;} - .st6{fill:#231F20;} - .st7{fill:#626366;} - .st8{fill:none;stroke:#DFE0DF;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;} -</style> -<title>icon-EFTPOS</title> -<desc>Created with Sketch.</desc> -<g id="Page-1"> - <g id="Desktop" transform="translate(-1022.000000, -90.000000)"> - <g id="icon-EFTPOS" transform="translate(1023.000000, 91.000000)"> - <g id="Group-9" transform="translate(0.000000, 0.099100)"> - <polygon id="Stroke-1" class="st0" points="48.3,22.301 21.3,6.401 32.6,0.401 59.6,16.201 "/> - <polygon id="Stroke-3" class="st0" points="27.5,37.901 0.5,22.101 21.3,6.401 48.3,22.301 "/> - <polygon id="Stroke-5" class="st0" points="27.5,43.501 0.5,27.701 0.5,22.101 27.5,37.901 "/> - <polygon id="Stroke-7" class="st0" points="59.6,16.201 59.6,26.401 27.5,43.501 27.5,37.901 48.3,22.301 "/> - </g> - <g id="Group-111" transform="translate(0.000000, 0.099100)"> - <polygon id="Fill-45" class="st1" points="48.3,22.301 21.3,6.401 32.6,0.401 59.6,16.201 "/> - <polygon id="Fill-47" class="st2" points="27.5,37.901 0.5,22.101 21.3,6.401 48.3,22.301 "/> - <polygon id="Fill-49" class="st3" points="27.5,43.501 0.5,27.701 0.5,22.101 27.5,37.901 "/> - <polygon id="Fill-51" class="st4" points="59.6,16.201 59.6,26.401 27.5,43.501 27.5,37.901 48.3,22.301 "/> - <polygon id="Fill-53" class="st5" points="19.8,13.101 24.7,9.601 29.6,12.301 24.7,15.701 "/> - <polygon id="Fill-55" class="st6" points="29.6,13.401 24.8,16.801 24.7,15.801 29.6,12.301 "/> - <polygon id="Fill-57" class="st7" points="19.8,13.101 24.7,15.801 24.8,16.801 19.9,14.101 "/> - <polygon id="Fill-59" class="st5" points="26.2,16.701 31,13.301 35.9,16.001 31,19.401 "/> - <polygon id="Fill-61" class="st6" points="36,17.001 31.1,20.501 31,19.401 35.9,16.001 "/> - <polygon id="Fill-63" class="st7" points="26.2,16.801 31,19.401 31.1,20.501 26.2,17.801 "/> - <polygon id="Fill-65" class="st5" points="32.5,20.301 37.3,16.901 42.2,19.601 37.3,23.001 "/> - <polygon id="Fill-67" class="st6" points="42.2,20.601 37.4,24.101 37.3,23.001 42.2,19.601 "/> - <polygon id="Fill-69" class="st7" points="32.5,20.401 37.3,23.001 37.4,24.101 32.5,21.401 "/> - <polyline id="Stroke-71" class="st8" points="1,22.301 27.5,37.901 27.5,43.101 "/> - <path id="Fill-73" class="st7" d="M24.2,6.601c0.2,0.1,8.5-4.6,8.5-4.6s23.7,14,23.6,14s-8.4,4.5-8.4,4.5L24.2,6.601z"/> - <polygon id="Fill-75" class="st5" points="13.5,17.901 18.3,14.501 23.2,17.101 18.3,20.601 "/> - <polygon id="Fill-77" class="st6" points="23.2,18.201 18.4,21.601 18.3,20.601 23.2,17.201 "/> - <polygon id="Fill-79" class="st7" points="13.5,17.901 18.3,20.601 18.4,21.601 13.5,19.001 "/> - <polygon id="Fill-81" class="st5" points="19.8,21.601 24.6,18.201 29.5,20.801 24.7,24.301 "/> - <polygon id="Fill-83" class="st6" points="29.6,21.901 24.7,25.301 24.7,24.301 29.5,20.801 "/> - <polygon id="Fill-85" class="st7" points="19.8,21.601 24.7,24.301 24.7,25.301 19.8,22.601 "/> - <polygon id="Fill-87" class="st5" points="26.1,25.201 30.9,21.701 35.8,24.401 30.9,27.801 "/> - <polygon id="Fill-89" class="st6" points="35.8,25.501 31,28.901 30.9,27.901 35.8,24.401 "/> - <polygon id="Fill-91" class="st7" points="26.1,25.201 30.9,27.901 31,28.901 26.1,26.201 "/> - <polygon id="Fill-93" class="st5" points="6.9,22.401 11.8,19.001 16.7,21.601 11.8,25.101 "/> - <polygon id="Fill-95" class="st6" points="16.7,22.701 11.8,26.101 11.8,25.101 16.6,21.701 "/> - <polygon id="Fill-97" class="st7" points="6.9,22.401 11.8,25.101 11.8,26.101 7,23.501 "/> - <polygon id="Fill-99" class="st5" points="13.2,26.101 18.1,22.601 23,25.301 18.1,28.701 "/> - <polygon id="Fill-101" class="st6" points="23,26.401 18.2,29.801 18.1,28.801 23,25.301 "/> - <polygon id="Fill-103" class="st7" points="13.2,26.101 18.1,28.801 18.2,29.801 13.3,27.101 "/> - <polygon id="Fill-105" class="st5" points="19.5,29.701 24.4,26.201 29.3,28.901 24.4,32.301 "/> - <polygon id="Fill-107" class="st6" points="29.3,29.901 24.4,33.401 24.4,32.401 29.3,28.901 "/> - <polygon id="Fill-109" class="st7" points="19.5,29.701 24.4,32.401 24.4,33.401 19.6,30.701 "/> - </g> - </g> - </g> -</g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 62.1 46.1"><style><![CDATA[.J{fill:#626366}.K{fill:#fefefe}.L{fill:#231f20}.M{stroke-linejoin:round}]]></style><g fill="none" stroke="#626366" stroke-width="3" class="M"><path d="M49.3 23.4l-27-15.9 11.3-6 27 15.8z"/><path d="M28.5 39l-27-15.8L22.3 7.5l27 15.9z"/><path d="M28.5 44.6l-27-15.8v-5.6l27 15.8z"/><path d="M60.6 17.3v10.2L28.5 44.6V39l20.8-15.6z"/></g><path d="M49.3 23.4l-27-15.9 11.3-6 27 15.8z" fill="#b0b2b5"/><path d="M28.5 39l-27-15.8L22.3 7.5l27 15.9z" fill="#bbbdbf"/><path d="M28.5 44.6l-27-15.8v-5.6l27 15.8z" fill="#b3b5b7"/><path d="M60.6 17.3v10.2L28.5 44.6V39l20.8-15.6z" fill="#898b8e"/><path d="M20.8 14.2l4.9-3.5 4.9 2.7-4.9 3.4z" class="K"/><path d="M30.6 14.5l-4.8 3.4-.1-1 4.9-3.5z" class="L"/><path d="M20.8 14.2l4.9 2.7.1 1-4.9-2.7z" class="J"/><path d="M27.2 17.8l4.8-3.4 4.9 2.7-4.9 3.4z" class="K"/><path d="M37 18.1l-4.9 3.5-.1-1.1 4.9-3.4z" class="L"/><path d="M27.2 17.9l4.8 2.6.1 1.1-4.9-2.7z" class="J"/><path d="M33.5 21.4l4.8-3.4 4.9 2.7-4.9 3.4z" class="K"/><path d="M43.2 21.7l-4.8 3.5-.1-1.1 4.9-3.4z" class="L"/><path d="M33.5 21.5l4.8 2.6.1 1.1-4.9-2.7z" class="J"/><path d="M2 23.4L28.5 39v5.2" fill="none" stroke="#dfe0df" stroke-width=".75" stroke-linecap="round" class="M"/><path d="M25.2 7.7c.2.1 8.5-4.6 8.5-4.6l23.6 14c-.1 0-8.4 4.5-8.4 4.5L25.2 7.7z" class="J"/><path d="M14.5 19l4.8-3.4 4.9 2.6-4.9 3.5z" class="K"/><path d="M24.2 19.3l-4.8 3.4-.1-1 4.9-3.4z" class="L"/><path d="M14.5 19l4.8 2.7.1 1-4.9-2.6z" class="J"/><path d="M20.8 22.7l4.8-3.4 4.9 2.6-4.8 3.5z" class="K"/><path d="M30.6 23l-4.9 3.4v-1l4.8-3.5z" class="L"/><path d="M20.8 22.7l4.9 2.7v1l-4.9-2.7z" class="J"/><path d="M27.1 26.3l4.8-3.5 4.9 2.7-4.9 3.4z" class="K"/><path d="M36.8 26.6L32 30l-.1-1 4.9-3.5z" class="L"/><path d="M27.1 26.3l4.8 2.7.1 1-4.9-2.7z" class="J"/><path d="M7.9 23.5l4.9-3.4 4.9 2.6-4.9 3.5z" class="K"/><path d="M17.7 23.8l-4.9 3.4v-1l4.8-3.4z" class="L"/><path d="M7.9 23.5l4.9 2.7v1L8 24.6z" class="J"/><path d="M14.2 27.2l4.9-3.5 4.9 2.7-4.9 3.4z" class="K"/><path d="M24 27.5l-4.8 3.4-.1-1 4.9-3.5z" class="L"/><path d="M14.2 27.2l4.9 2.7.1 1-4.9-2.7z" class="J"/><path d="M20.5 30.8l4.9-3.5 4.9 2.7-4.9 3.4z" class="K"/><path d="M30.3 31l-4.9 3.5v-1l4.9-3.5z" class="L"/><path d="M20.5 30.8l4.9 2.7v1l-4.8-2.7z" class="J"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Personal Computer Wireless.svg b/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Personal Computer Wireless.svg index fc073ee2dc4170b606c8fc1b5ee4ef65af7087a1..4eaa91c60faa9bb58ea615683ef9dbe4f7eb29aa 100644 --- a/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Personal Computer Wireless.svg +++ b/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Personal Computer Wireless.svg @@ -1,888 +1 @@ -<?xml version="1.0" encoding="UTF-8"?> -<svg width="105px" height="107px" viewBox="0 0 105 107" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> - <title>icon-PC-wireless</title> - <desc>Created with Sketch.</desc> - <defs> - <path d="M1.169,9.439 C0.845,9.611 0.644,10.01 0.644,10.59 L17.517,1.633 C17.516,1.056 17.716,0.655 18.039,0.484 C12.416,3.469 6.791,6.454 1.169,9.439" id="path-1"></path> - <path d="M1.169,9.439 C0.845,9.611 0.644,10.01 0.644,10.59 L17.517,1.633 C17.516,1.056 17.716,0.655 18.039,0.484 C12.416,3.469 6.791,6.454 1.169,9.439" id="path-3"></path> - <path d="M0.612,9.826 C1.054,10.089 1.452,10.123 1.751,9.965 C7.374,6.981 12.997,3.995 18.622,1.01 C18.326,1.168 17.924,1.133 17.483,0.87" id="path-5"></path> - <path d="M0.612,9.826 C1.054,10.089 1.452,10.123 1.751,9.965 C7.374,6.981 12.997,3.995 18.622,1.01 C18.326,1.168 17.924,1.133 17.483,0.87" id="path-7"></path> - <path d="M0.612,9.826 C1.054,10.089 1.452,10.123 1.751,9.965 C7.374,6.981 12.997,3.995 18.622,1.01 C18.326,1.168 17.924,1.133 17.483,0.87" id="path-9"></path> - <path d="M17.039,0.484 C11.416,3.469 5.791,6.454 0.169,9.439 C0.466,9.282 0.866,9.317 1.308,9.581 L18.181,0.626 C17.913,0.465 17.66,0.389 17.436,0.389 C17.29,0.389 17.157,0.422 17.039,0.484" id="path-11"></path> - <path d="M17.039,0.484 C11.416,3.469 5.791,6.454 0.169,9.439 C0.466,9.282 0.866,9.317 1.308,9.581 L18.181,0.626 C17.913,0.465 17.66,0.389 17.436,0.389 C17.29,0.389 17.157,0.422 17.039,0.484" id="path-13"></path> - <path d="M17.039,0.484 C11.416,3.469 5.791,6.454 0.169,9.439 C0.466,9.282 0.866,9.317 1.308,9.581 L18.181,0.626 C17.913,0.465 17.66,0.389 17.436,0.389 C17.29,0.389 17.157,0.422 17.039,0.484" id="path-15"></path> - <path d="M17.56,0.585 C11.937,3.57 6.314,6.556 0.689,9.541 C1.113,9.318 1.681,9.367 2.308,9.743 L19.179,0.787 C18.799,0.559 18.441,0.451 18.123,0.451 C17.916,0.451 17.726,0.497 17.56,0.585" id="path-17"></path> - <path d="M17.56,0.585 C11.937,3.57 6.314,6.556 0.689,9.541 C1.113,9.318 1.681,9.367 2.308,9.743 L19.179,0.787 C18.799,0.559 18.441,0.451 18.123,0.451 C17.916,0.451 17.726,0.497 17.56,0.585" id="path-19"></path> - <path d="M17.56,0.585 C11.937,3.57 6.314,6.556 0.689,9.541 C1.113,9.318 1.681,9.367 2.308,9.743 L19.179,0.787 C18.799,0.559 18.441,0.451 18.123,0.451 C17.916,0.451 17.726,0.497 17.56,0.585" id="path-21"></path> - <path d="M1.277,9.818 C1.277,10.394 1.074,10.793 0.751,10.965 C6.374,7.981 11.997,4.995 17.622,2.01 C17.946,1.837 18.146,1.439 18.146,0.863" id="path-23"></path> - <path d="M0.975,9.238 C0.972,10.056 0.687,10.62 0.228,10.865 L17.1,1.909 C17.559,1.667 17.846,1.1 17.846,0.283" id="path-25"></path> - <path d="M0.975,9.238 C0.972,10.056 0.687,10.62 0.228,10.865 L17.1,1.909 C17.559,1.667 17.846,1.1 17.846,0.283" id="path-27"></path> - <path d="M0.594,8.969 C1.516,9.521 2.26,10.866 2.26,11.976 L19.134,3.02 C19.13,1.911 18.385,0.566 17.465,0.012" id="path-29"></path> - <path d="M0.594,8.969 C1.516,9.521 2.26,10.866 2.26,11.976 L19.134,3.02 C19.13,1.911 18.385,0.566 17.465,0.012" id="path-31"></path> - <path d="M0.594,8.969 C1.516,9.521 2.26,10.866 2.26,11.976 L19.134,3.02 C19.13,1.911 18.385,0.566 17.465,0.012" id="path-33"></path> - <path d="M0.594,8.969 C1.516,9.521 2.26,10.866 2.26,11.976 L19.134,3.02 C19.13,1.911 18.385,0.566 17.465,0.012" id="path-35"></path> - <path d="M0.594,8.969 C1.516,9.521 2.26,10.866 2.26,11.976 L19.134,3.02 C19.13,1.911 18.385,0.566 17.465,0.012" id="path-37"></path> - <path d="M0.594,8.969 C1.516,9.521 2.26,10.866 2.26,11.976 L19.134,3.02 C19.13,1.911 18.385,0.566 17.465,0.012" id="path-39"></path> - <path d="M0.594,8.969 C1.516,9.521 2.26,10.866 2.26,11.976 L19.134,3.02 C19.13,1.911 18.385,0.566 17.465,0.012" id="path-41"></path> - <path d="M0.594,8.969 C1.516,9.521 2.26,10.866 2.26,11.976 L19.134,3.02 C19.13,1.911 18.385,0.566 17.465,0.012" id="path-43"></path> - <path d="M0.594,8.969 C1.516,9.521 2.26,10.866 2.26,11.976 L19.134,3.02 C19.13,1.911 18.385,0.566 17.465,0.012" id="path-45"></path> - <path d="M0.594,8.969 C1.516,9.521 2.26,10.866 2.26,11.976 L19.134,3.02 C19.13,1.911 18.385,0.566 17.465,0.012" id="path-47"></path> - <path d="M0.592,9.129 C1.9,9.913 2.955,11.818 2.959,13.396 L19.831,4.442 C19.826,2.865 18.771,0.958 17.465,0.173" id="path-49"></path> - <path d="M0.592,9.129 C1.9,9.913 2.955,11.818 2.959,13.396 L19.831,4.442 C19.826,2.865 18.771,0.958 17.465,0.173" id="path-51"></path> - <path d="M0.592,9.129 C1.9,9.913 2.955,11.818 2.959,13.396 L19.831,4.442 C19.826,2.865 18.771,0.958 17.465,0.173" id="path-53"></path> - <path d="M0.592,9.129 C1.9,9.913 2.955,11.818 2.959,13.396 L19.831,4.442 C19.826,2.865 18.771,0.958 17.465,0.173" id="path-55"></path> - <path d="M0.592,9.129 C1.9,9.913 2.955,11.818 2.959,13.396 L19.831,4.442 C19.826,2.865 18.771,0.958 17.465,0.173" id="path-57"></path> - <path d="M0.592,9.129 C1.9,9.913 2.955,11.818 2.959,13.396 L19.831,4.442 C19.826,2.865 18.771,0.958 17.465,0.173" id="path-59"></path> - <path d="M0.592,9.129 C1.9,9.913 2.955,11.818 2.959,13.396 L19.831,4.442 C19.826,2.865 18.771,0.958 17.465,0.173" id="path-61"></path> - <path d="M0.592,9.129 C1.9,9.913 2.955,11.818 2.959,13.396 L19.831,4.442 C19.826,2.865 18.771,0.958 17.465,0.173" id="path-63"></path> - <path d="M0.592,9.129 C1.9,9.913 2.955,11.818 2.959,13.396 L19.831,4.442 C19.826,2.865 18.771,0.958 17.465,0.173" id="path-65"></path> - <path d="M0.592,9.129 C1.9,9.913 2.955,11.818 2.959,13.396 L19.831,4.442 C19.826,2.865 18.771,0.958 17.465,0.173" id="path-67"></path> - <path d="M0.38,9.451 C0.38,10.558 1.125,11.902 2.046,12.459 L18.918,3.505 C17.996,2.948 17.252,1.603 17.249,0.496" id="path-69"></path> - <path d="M0.38,9.451 C0.38,10.558 1.125,11.902 2.046,12.459 L18.918,3.505 C17.996,2.948 17.252,1.603 17.249,0.496" id="path-71"></path> - <path d="M0.38,9.451 C0.38,10.558 1.125,11.902 2.046,12.459 L18.918,3.505 C17.996,2.948 17.252,1.603 17.249,0.496" id="path-73"></path> - <path d="M0.38,9.451 C0.38,10.558 1.125,11.902 2.046,12.459 L18.918,3.505 C17.996,2.948 17.252,1.603 17.249,0.496" id="path-75"></path> - <path d="M0.38,9.451 C0.38,10.558 1.125,11.902 2.046,12.459 L18.918,3.505 C17.996,2.948 17.252,1.603 17.249,0.496" id="path-77"></path> - <path d="M0.38,9.451 C0.38,10.558 1.125,11.902 2.046,12.459 L18.918,3.505 C17.996,2.948 17.252,1.603 17.249,0.496" id="path-79"></path> - <path d="M0.38,9.451 C0.38,10.558 1.125,11.902 2.046,12.459 L18.918,3.505 C17.996,2.948 17.252,1.603 17.249,0.496" id="path-81"></path> - <path d="M0.38,9.451 C0.38,10.558 1.125,11.902 2.046,12.459 L18.918,3.505 C17.996,2.948 17.252,1.603 17.249,0.496" id="path-83"></path> - <path d="M0.38,9.451 C0.38,10.558 1.125,11.902 2.046,12.459 L18.918,3.505 C17.996,2.948 17.252,1.603 17.249,0.496" id="path-85"></path> - <path d="M0.38,9.451 C0.38,10.558 1.125,11.902 2.046,12.459 L18.918,3.505 C17.996,2.948 17.252,1.603 17.249,0.496" id="path-87"></path> - <path d="M0.888,9.46 C0.565,9.632 0.363,10.031 0.363,10.609 L17.237,1.654 C17.235,1.076 17.436,0.676 17.76,0.505 C12.136,3.49 6.511,6.475 0.888,9.46" id="path-89"></path> - <path d="M0.888,9.46 C0.565,9.632 0.363,10.031 0.363,10.609 L17.237,1.654 C17.235,1.076 17.436,0.676 17.76,0.505 C12.136,3.49 6.511,6.475 0.888,9.46" id="path-91"></path> - <path d="M0.332,9.846 C0.773,10.11 1.172,10.143 1.471,9.985 C7.094,7.001 12.718,4.015 18.342,1.031 C18.046,1.188 17.644,1.153 17.202,0.89" id="path-93"></path> - <path d="M0.332,9.846 C0.773,10.11 1.172,10.143 1.471,9.985 C7.094,7.001 12.718,4.015 18.342,1.031 C18.046,1.188 17.644,1.153 17.202,0.89" id="path-95"></path> - <path d="M0.332,9.846 C0.773,10.11 1.172,10.143 1.471,9.985 C7.094,7.001 12.718,4.015 18.342,1.031 C18.046,1.188 17.644,1.153 17.202,0.89" id="path-97"></path> - <path d="M17.76,0.505 C12.136,3.49 6.511,6.475 0.888,9.46 C1.186,9.303 1.587,9.337 2.027,9.601 L18.9,0.645 C18.633,0.486 18.381,0.409 18.157,0.409 C18.011,0.409 17.877,0.442 17.76,0.505" id="path-99"></path> - <path d="M17.76,0.505 C12.136,3.49 6.511,6.475 0.888,9.46 C1.186,9.303 1.587,9.337 2.027,9.601 L18.9,0.645 C18.633,0.486 18.381,0.409 18.157,0.409 C18.011,0.409 17.877,0.442 17.76,0.505" id="path-101"></path> - <path d="M17.76,0.505 C12.136,3.49 6.511,6.475 0.888,9.46 C1.186,9.303 1.587,9.337 2.027,9.601 L18.9,0.645 C18.633,0.486 18.381,0.409 18.157,0.409 C18.011,0.409 17.877,0.442 17.76,0.505" id="path-103"></path> - <path d="M17.28,0.606 C11.657,3.59 6.033,6.577 0.408,9.561 C0.832,9.338 1.401,9.387 2.027,9.763 L18.899,0.808 C18.519,0.58 18.16,0.471 17.843,0.471 C17.636,0.471 17.447,0.517 17.28,0.606" id="path-105"></path> - <path d="M17.28,0.606 C11.657,3.59 6.033,6.577 0.408,9.561 C0.832,9.338 1.401,9.387 2.027,9.763 L18.899,0.808 C18.519,0.58 18.16,0.471 17.843,0.471 C17.636,0.471 17.447,0.517 17.28,0.606" id="path-107"></path> - <path d="M17.28,0.606 C11.657,3.59 6.033,6.577 0.408,9.561 C0.832,9.338 1.401,9.387 2.027,9.763 L18.899,0.808 C18.519,0.58 18.16,0.471 17.843,0.471 C17.636,0.471 17.447,0.517 17.28,0.606" id="path-109"></path> - <path d="M0.997,9.838 C0.997,10.414 0.793,10.814 0.471,10.985 C6.094,8.001 11.718,5.015 17.342,2.031 C17.666,1.858 17.866,1.46 17.866,0.884" id="path-111"></path> - <path d="M1.695,9.258 C1.692,10.077 1.407,10.641 0.948,10.886 L17.819,1.93 C18.278,1.687 18.565,1.121 18.565,0.304" id="path-113"></path> - <path d="M1.695,9.258 C1.692,10.077 1.407,10.641 0.948,10.886 L17.819,1.93 C18.278,1.687 18.565,1.121 18.565,0.304" id="path-115"></path> - <path d="M0.313,8.988 C1.236,9.541 1.98,10.886 1.98,11.997 L18.853,3.041 C18.85,1.931 18.105,0.586 17.185,0.032" id="path-117"></path> - <path d="M0.313,8.988 C1.236,9.541 1.98,10.886 1.98,11.997 L18.853,3.041 C18.85,1.931 18.105,0.586 17.185,0.032" id="path-119"></path> - <path d="M0.313,8.988 C1.236,9.541 1.98,10.886 1.98,11.997 L18.853,3.041 C18.85,1.931 18.105,0.586 17.185,0.032" id="path-121"></path> - <path d="M0.313,8.988 C1.236,9.541 1.98,10.886 1.98,11.997 L18.853,3.041 C18.85,1.931 18.105,0.586 17.185,0.032" id="path-123"></path> - <path d="M0.313,8.988 C1.236,9.541 1.98,10.886 1.98,11.997 L18.853,3.041 C18.85,1.931 18.105,0.586 17.185,0.032" id="path-125"></path> - <path d="M0.313,8.988 C1.236,9.541 1.98,10.886 1.98,11.997 L18.853,3.041 C18.85,1.931 18.105,0.586 17.185,0.032" id="path-127"></path> - <path d="M0.313,8.988 C1.236,9.541 1.98,10.886 1.98,11.997 L18.853,3.041 C18.85,1.931 18.105,0.586 17.185,0.032" id="path-129"></path> - <path d="M0.313,8.988 C1.236,9.541 1.98,10.886 1.98,11.997 L18.853,3.041 C18.85,1.931 18.105,0.586 17.185,0.032" id="path-131"></path> - <path d="M0.313,8.988 C1.236,9.541 1.98,10.886 1.98,11.997 L18.853,3.041 C18.85,1.931 18.105,0.586 17.185,0.032" id="path-133"></path> - <path d="M0.313,8.988 C1.236,9.541 1.98,10.886 1.98,11.997 L18.853,3.041 C18.85,1.931 18.105,0.586 17.185,0.032" id="path-135"></path> - <path d="M0.312,9.15 C1.62,9.933 2.675,11.839 2.678,13.416 L19.551,4.461 C19.545,2.885 18.491,0.977 17.185,0.194" id="path-137"></path> - <path d="M0.312,9.15 C1.62,9.933 2.675,11.839 2.678,13.416 L19.551,4.461 C19.545,2.885 18.491,0.977 17.185,0.194" id="path-139"></path> - <path d="M0.312,9.15 C1.62,9.933 2.675,11.839 2.678,13.416 L19.551,4.461 C19.545,2.885 18.491,0.977 17.185,0.194" id="path-141"></path> - <path d="M0.312,9.15 C1.62,9.933 2.675,11.839 2.678,13.416 L19.551,4.461 C19.545,2.885 18.491,0.977 17.185,0.194" id="path-143"></path> - <path d="M0.312,9.15 C1.62,9.933 2.675,11.839 2.678,13.416 L19.551,4.461 C19.545,2.885 18.491,0.977 17.185,0.194" id="path-145"></path> - <path d="M0.312,9.15 C1.62,9.933 2.675,11.839 2.678,13.416 L19.551,4.461 C19.545,2.885 18.491,0.977 17.185,0.194" id="path-147"></path> - <path d="M0.312,9.15 C1.62,9.933 2.675,11.839 2.678,13.416 L19.551,4.461 C19.545,2.885 18.491,0.977 17.185,0.194" id="path-149"></path> - <path d="M0.312,9.15 C1.62,9.933 2.675,11.839 2.678,13.416 L19.551,4.461 C19.545,2.885 18.491,0.977 17.185,0.194" id="path-151"></path> - <path d="M0.312,9.15 C1.62,9.933 2.675,11.839 2.678,13.416 L19.551,4.461 C19.545,2.885 18.491,0.977 17.185,0.194" id="path-153"></path> - <path d="M0.312,9.15 C1.62,9.933 2.675,11.839 2.678,13.416 L19.551,4.461 C19.545,2.885 18.491,0.977 17.185,0.194" id="path-155"></path> - </defs> - <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"> - <g id="Desktop" transform="translate(-1423.000000, -66.000000)"> - <g id="icon-PC-wireless" transform="translate(1424.000000, 66.000000)"> - <polygon id="Stroke-1" stroke="#626366" stroke-width="3" stroke-linejoin="round" points="49.3482 82.5456 61.0572 76.3306 61.0602 79.6276 49.3502 85.8446"></polygon> - <polygon id="Stroke-2" stroke="#626366" stroke-width="3" stroke-linejoin="round" points="19.4488 64.5808 31.1578 58.3658 61.0568 76.3308 49.3478 82.5458"></polygon> - <polygon id="Stroke-3" stroke="#626366" stroke-width="3" stroke-linejoin="round" points="49.3482 82.5456 49.3502 85.8446 19.4512 67.8776 19.4492 64.5806"></polygon> - <polygon id="Fill-4" fill="#898B8E" fill-rule="evenodd" points="49.3482 82.5456 61.0572 76.3306 61.0602 79.6276 49.3502 85.8446"></polygon> - <polygon id="Fill-5" fill="#BBBDBF" fill-rule="evenodd" points="19.4488 64.5808 31.1578 58.3658 61.0568 76.3308 49.3478 82.5458"></polygon> - <polygon id="Fill-6" fill="#B3B5B7" fill-rule="evenodd" points="49.3482 82.5456 49.3502 85.8446 19.4512 67.8776 19.4492 64.5806"></polygon> - <polyline id="Stroke-7" stroke="#E1E2E3" stroke-width="1" stroke-linecap="round" stroke-linejoin="round" points="19.6909 64.614 49.1009 82.284 49.1009 85.489"></polyline> - <polygon id="Stroke-8" stroke="#626366" stroke-width="2.668" stroke-linecap="round" stroke-linejoin="round" points="68.0445 36.8313 73.2305 34.0783 73.2665 84.8563 68.0795 87.6103"></polygon> - <g id="Group-13" stroke-width="1" fill-rule="evenodd" transform="translate(13.000000, 0.663000)" stroke="#626366" stroke-linecap="round" stroke-linejoin="round"> - <polygon id="Stroke-9" stroke-width="2.668" points="0.5493 3.4251 5.7363 0.6711 60.2303 33.4151 55.0443 36.1681"></polygon> - <polygon id="Stroke-11" stroke-width="2.668" points="55.0445 36.1683 55.0795 86.9473 0.5855 54.2033 0.5495 3.4253"></polygon> - </g> - <polygon id="Fill-14" fill="#898B8E" fill-rule="evenodd" points="68.0425 36.8313 73.2295 34.0783 73.2655 84.8563 68.0795 87.6103"></polygon> - <polygon id="Fill-15" fill="#BBBDBF" fill-rule="evenodd" points="13.5493 4.0881 18.7353 1.3341 73.2303 34.0781 68.0423 36.8311"></polygon> - <polygon id="Fill-16" fill="#B3B5B7" fill-rule="evenodd" points="68.0425 36.8313 68.0795 87.6103 13.5845 54.8663 13.5495 4.0883"></polygon> - <polygon id="Fill-17" fill="#FEFEFE" fill-rule="evenodd" points="65.1909 81.9031 15.5259 51.6981 15.5259 8.7831 65.1909 38.9851"></polygon> - <g id="Group-344" stroke-width="1" fill-rule="evenodd" transform="translate(0.000000, 3.663000)"> - <path d="M46.7642,26.9183 L63.2472,36.8203 L63.3392,46.0363 C63.3392,46.0363 63.0462,39.4283 58.1462,35.2863 C51.8902,30.0003 46.7642,26.9183 46.7642,26.9183" id="Fill-18" fill="#C4CACE"></path> - <path d="M14.1841,52.2518 L68.0741,84.6308" id="Stroke-20" stroke="#636466" stroke-width="1.156"></path> - <polyline id="Stroke-22" stroke="#E1E2E3" stroke-width="0.889" stroke-linecap="round" stroke-linejoin="round" points="14.0083 0.595 68.0233 33.05 68.0603 83.515"></polyline> - <path d="M73.9058,64.4432 L73.9058,77.7852" id="Stroke-24" stroke="#636466" stroke-width="1.29"></path> - <path d="M48.5562,90.4998 C48.5562,90.4998 49.9312,89.7658 51.0562,89.7338 C52.1812,89.7028 53.5722,90.3748 53.5722,90.3748 C53.5722,90.3748 54.9472,91.1088 55.6182,91.8118 C56.2902,92.5158 56.3372,92.7968 56.3842,93.0468 C56.4312,93.2968 56.4152,93.8748 56.3372,93.9998 C56.2592,94.1248 48.5872,98.0938 48.5872,98.0938 C48.5872,98.0938 48.1342,98.2968 47.4002,98.1868 C46.6652,98.0778 45.4002,97.1868 44.9932,96.6088 C44.5872,96.0308 44.6182,95.1408 44.6182,95.1408 C44.6182,95.1408 44.6342,94.0938 46.0092,92.5308 C46.9152,91.4368 48.5562,90.4998 48.5562,90.4998 Z" id="Stroke-26" stroke="#626366" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></path> - <path d="M48.5562,90.4998 C48.5562,90.4998 49.9312,89.7658 51.0562,89.7338 C52.1812,89.7028 53.5722,90.3748 53.5722,90.3748 C53.5722,90.3748 54.9492,91.1088 55.6182,91.8118 C56.2902,92.5158 56.3372,92.7968 56.3842,93.0468 C56.4312,93.2968 56.4152,93.8748 56.3372,93.9998 C56.2592,94.1248 48.5872,98.0938 48.5872,98.0938 C48.5872,98.0938 48.1342,98.2968 47.4002,98.1868 C46.6652,98.0778 45.4002,97.1868 44.9932,96.6088 C44.5872,96.0308 44.6182,95.1408 44.6182,95.1408 C44.6182,95.1408 44.6342,94.0938 46.0092,92.5308 C46.9152,91.4368 48.5562,90.4998 48.5562,90.4998" id="Fill-28" fill="#BBBDBF"></path> - <path d="M48.7574,97.7889 C48.7694,97.6989 49.6464,95.2379 52.5254,93.6819 C55.4094,92.1639 56.0734,93.8029 56.0154,93.4589 L56.0094,94.0059 C53.9314,95.1149 50.8944,96.7339 48.8184,97.8419" id="Fill-30" fill="#898B8E"></path> - <path d="M46.4624,96.2264 C46.6494,95.4764 47.7284,93.8354 48.4544,93.0854 C49.1814,92.3354 49.8144,91.8434 50.9154,91.2814 C52.0174,90.7184 53.3534,90.2964 54.0094,90.6244 C54.6654,90.9534 55.5794,91.7734 55.9544,92.2654 C56.3294,92.7574 56.2354,93.2734 56.2354,93.2734 C56.2354,93.2734 54.8534,92.8044 54.0324,93.0854 C53.2124,93.3674 51.8994,94.0234 51.0564,94.8434 C50.2124,95.6644 49.8844,96.7424 49.2984,97.4214 C48.7124,98.1014 47.5874,98.1954 47.5874,98.1954 C47.5874,98.1954 46.4394,97.9604 46.3214,97.7494 C46.2044,97.5384 46.2754,96.9764 46.4624,96.2264" id="Fill-32" fill="#B3B5B7"></path> - <path d="M48.3687,93.5838 L47.8647,93.2808 C46.9467,94.2768 46.4197,95.2558 46.1657,95.8048 L46.6717,96.1068 C46.9237,95.5588 47.4527,94.5778 48.3687,93.5838" id="Fill-34" fill="#E1E2E3"></path> - <polygon id="Stroke-36" stroke="#626366" stroke-width="3" stroke-linejoin="round" points="30.3999 90.8153 42.1089 84.6003 42.1109 87.8973 30.4019 94.1143"></polygon> - <polygon id="Stroke-38" stroke="#626366" stroke-width="3" stroke-linejoin="round" points="0.5 72.8514 12.209 66.6344 42.109 84.6004 30.4 90.8154"></polygon> - <polygon id="Stroke-40" stroke="#626366" stroke-width="3" stroke-linejoin="round" points="30.3999 90.8153 30.4019 94.1143 0.5019 76.1483 0.4999 72.8513"></polygon> - <polygon id="Fill-42" fill="#898B8E" points="30.3999 90.8153 42.1089 84.6003 42.1109 87.8973 30.4019 94.1143"></polygon> - <polygon id="Fill-44" fill="#BBBDBF" points="0.5 72.8514 12.209 66.6344 42.109 84.6004 30.4 90.8154"></polygon> - <polygon id="Fill-46" fill="#B3B5B7" points="30.3999 90.8153 30.4019 94.1143 0.5019 76.1483 0.4999 72.8513"></polygon> - <polygon id="Fill-48" fill="#231F20" points="7.6573 72.5037 9.1153 71.7307 9.1153 72.0117 7.6573 72.7867"></polygon> - <polygon id="Fill-50" fill="#FEFEFE" points="6.4004 71.7479 7.8584 70.9749 9.1154 71.7299 7.6574 72.5039"></polygon> - <polygon id="Fill-52" fill="#626366" points="7.6573 72.5037 7.6573 72.7867 6.4003 72.0307 6.4003 71.7477"></polygon> - <polygon id="Fill-54" fill="#231F20" points="9.5176 73.6209 10.9756 72.8479 10.9756 73.1309 9.5176 73.9039"></polygon> - <polygon id="Fill-56" fill="#FEFEFE" points="8.2608 72.867 9.7188 72.092 10.9758 72.847 9.5178 73.621"></polygon> - <polygon id="Fill-58" fill="#626366" points="9.5176 73.6209 9.5176 73.9039 8.2606 73.1479 8.2606 72.8669"></polygon> - <polygon id="Fill-60" fill="#231F20" points="11.4707 74.7948 12.9277 74.0218 12.9287 74.3048 11.4707 75.0778"></polygon> - <polygon id="Fill-62" fill="#FEFEFE" points="10.2139 74.0389 11.6719 73.2659 12.9279 74.0209 11.4709 74.7949"></polygon> - <polygon id="Fill-64" fill="#626366" points="11.4707 74.7948 11.4707 75.0778 10.2137 74.3218 10.2137 74.0388"></polygon> - <polygon id="Fill-66" fill="#231F20" points="13.3379 75.9178 14.7949 75.1428 14.7959 75.4258 13.3379 76.1988"></polygon> - <polygon id="Fill-68" fill="#FEFEFE" points="12.0811 75.1619 13.5391 74.3889 14.7951 75.1419 13.3381 75.9179"></polygon> - <polygon id="Fill-70" fill="#626366" points="13.3379 75.9178 13.3379 76.1988 12.0809 75.4448 12.0809 75.1618"></polygon> - <polygon id="Fill-72" fill="#231F20" points="15.2657 77.076 16.7237 76.301 16.7237 76.584 15.2657 77.357"></polygon> - <polygon id="Fill-74" fill="#FEFEFE" points="14.0088 76.3201 15.4668 75.5471 16.7238 76.3001 15.2658 77.0761"></polygon> - <polygon id="Fill-76" fill="#626366" points="15.2657 77.076 15.2657 77.357 14.0087 76.603 14.0087 76.32"></polygon> - <polygon id="Fill-78" fill="#231F20" points="17.1324 78.1971 18.5914 77.4241 18.5914 77.7051 17.1324 78.4801"></polygon> - <polygon id="Fill-80" fill="#FEFEFE" points="15.8687 77.4373 17.3277 76.6643 18.5917 77.4233 17.1327 78.1973"></polygon> - <polygon id="Fill-82" fill="#626366" points="17.1324 78.1971 17.1324 78.4801 15.8684 77.7201 15.8684 77.4371"></polygon> - <polygon id="Fill-84" fill="#231F20" points="19.0855 79.3709 20.5425 78.5979 20.5445 78.8789 19.0855 79.6519"></polygon> - <polygon id="Fill-86" fill="#FEFEFE" points="17.8277 78.6151 19.2867 77.8421 20.5427 78.5971 19.0857 79.3711"></polygon> - <polygon id="Fill-88" fill="#626366" points="19.0855 79.3709 19.0855 79.6519 17.8295 78.8979 17.8275 78.6149"></polygon> - <polygon id="Fill-90" fill="#231F20" points="20.9468 80.4881 22.4038 79.7151 22.4038 79.9981 20.9468 80.7711"></polygon> - <polygon id="Fill-92" fill="#FEFEFE" points="19.689 79.7342 21.146 78.9592 22.404 79.7142 20.947 80.4882"></polygon> - <polygon id="Fill-94" fill="#626366" points="20.9468 80.4881 20.9468 80.7711 19.6888 80.0151 19.6888 79.7341"></polygon> - <polygon id="Fill-96" fill="#231F20" points="22.7769 81.5887 24.2339 80.8147 24.2339 81.0977 22.7769 81.8697"></polygon> - <polygon id="Fill-98" fill="#FEFEFE" points="21.5191 80.8338 22.9781 80.0588 24.2341 80.8138 22.7771 81.5888"></polygon> - <polygon id="Fill-100" fill="#626366" points="22.7769 81.5887 22.7769 81.8697 21.5189 81.1147 21.5189 80.8337"></polygon> - <polygon id="Fill-102" fill="#231F20" points="24.6363 82.7059 26.0953 81.9329 26.0953 82.2139 24.6363 82.9889"></polygon> - <polygon id="Fill-104" fill="#FEFEFE" points="23.3804 81.95 24.8374 81.178 26.0954 81.932 24.6364 82.706"></polygon> - <polygon id="Fill-106" fill="#626366" points="24.6363 82.7059 24.6363 82.9889 23.3803 82.2329 23.3803 81.9499"></polygon> - <polygon id="Fill-108" fill="#231F20" points="26.5894 83.8797 28.0484 83.1047 28.0484 83.3877 26.5894 84.1607"></polygon> - <polygon id="Fill-110" fill="#FEFEFE" points="25.3335 83.1239 26.7905 82.3509 28.0485 83.1039 26.5895 83.8799"></polygon> - <polygon id="Fill-112" fill="#626366" points="26.5894 83.8797 26.5894 84.1607 25.3334 83.4067 25.3334 83.1237"></polygon> - <polygon id="Fill-114" fill="#231F20" points="28.4566 85.0008 29.9156 84.2278 29.9156 84.5108 28.4566 85.2838"></polygon> - <polygon id="Fill-116" fill="#FEFEFE" points="27.2007 84.2449 28.6577 83.4719 29.9157 84.2269 28.4567 85.0009"></polygon> - <polygon id="Fill-118" fill="#626366" points="28.4566 85.0008 28.4566 85.2838 27.2006 84.5278 27.2006 84.2448"></polygon> - <polygon id="Fill-120" fill="#231F20" points="30.3843 86.159 31.8433 85.386 31.8433 85.669 30.3843 86.442"></polygon> - <polygon id="Fill-122" fill="#FEFEFE" points="29.1284 85.4051 30.5854 84.6301 31.8434 85.3851 30.3844 86.1591"></polygon> - <polygon id="Fill-124" fill="#626366" points="30.3843 86.159 30.3843 86.442 29.1283 85.686 29.1283 85.405"></polygon> - <polygon id="Fill-126" fill="#231F20" points="32.2085 87.2547 33.6655 86.4817 33.6675 86.7647 32.2085 87.5377"></polygon> - <polygon id="Fill-128" fill="#FEFEFE" points="30.9507 86.5008 32.4097 85.7258 33.6657 86.4808 32.2087 87.2548"></polygon> - <polygon id="Fill-130" fill="#626366" points="32.2085 87.2547 32.2085 87.5377 30.9525 86.7817 30.9505 86.5007"></polygon> - <polygon id="Fill-132" fill="#231F20" points="9.6573 71.3787 11.1153 70.6057 11.1153 70.8867 9.6573 71.6617"></polygon> - <polygon id="Fill-134" fill="#FEFEFE" points="8.4004 70.6229 9.8584 69.8499 11.1154 70.6049 9.6574 71.3789"></polygon> - <polygon id="Fill-136" fill="#626366" points="9.6573 71.3787 9.6573 71.6617 8.4003 70.9057 8.4003 70.6227"></polygon> - <polygon id="Fill-138" fill="#231F20" points="11.5176 72.4959 12.9756 71.7229 12.9756 72.0059 11.5176 72.7789"></polygon> - <polygon id="Fill-140" fill="#FEFEFE" points="10.2608 71.742 11.7188 70.967 12.9758 71.722 11.5178 72.496"></polygon> - <polygon id="Fill-142" fill="#626366" points="11.5176 72.4959 11.5176 72.7789 10.2606 72.0229 10.2606 71.7419"></polygon> - <polygon id="Fill-144" fill="#231F20" points="13.4707 73.6698 14.9277 72.8968 14.9287 73.1798 13.4707 73.9528"></polygon> - <polygon id="Fill-146" fill="#FEFEFE" points="12.2139 72.9139 13.6719 72.1409 14.9279 72.8959 13.4709 73.6699"></polygon> - <polygon id="Fill-148" fill="#626366" points="13.4707 73.6698 13.4707 73.9528 12.2137 73.1968 12.2137 72.9138"></polygon> - <polygon id="Fill-150" fill="#231F20" points="15.3374 74.7928 16.7944 74.0178 16.7964 74.3008 15.3374 75.0738"></polygon> - <polygon id="Fill-152" fill="#FEFEFE" points="14.0811 74.0369 15.5391 73.2639 16.7941 74.0169 15.3371 74.7929"></polygon> - <polygon id="Fill-154" fill="#626366" points="15.3374 74.7928 15.3374 75.0738 14.0814 74.3198 14.0814 74.0368"></polygon> - <polygon id="Fill-156" fill="#231F20" points="17.2652 75.951 18.7242 75.176 18.7242 75.459 17.2652 76.232"></polygon> - <polygon id="Fill-158" fill="#FEFEFE" points="16.0093 75.1951 17.4663 74.4221 18.7243 75.1751 17.2653 75.9511"></polygon> - <polygon id="Fill-160" fill="#626366" points="17.2652 75.951 17.2652 76.232 16.0092 75.478 16.0092 75.195"></polygon> - <polygon id="Fill-162" fill="#231F20" points="19.1324 77.0721 20.5914 76.2991 20.5914 76.5801 19.1324 77.3551"></polygon> - <polygon id="Fill-164" fill="#FEFEFE" points="17.8687 76.3123 19.3277 75.5393 20.5917 76.2983 19.1327 77.0723"></polygon> - <polygon id="Fill-166" fill="#626366" points="19.1324 77.0721 19.1324 77.3551 17.8684 76.5951 17.8684 76.3121"></polygon> - <polygon id="Fill-168" fill="#231F20" points="21.0855 78.2459 22.5425 77.4729 22.5445 77.7539 21.0855 78.5269"></polygon> - <polygon id="Fill-170" fill="#FEFEFE" points="19.8277 77.4901 21.2867 76.7171 22.5427 77.4721 21.0857 78.2461"></polygon> - <polygon id="Fill-172" fill="#626366" points="21.0855 78.2459 21.0855 78.5269 19.8295 77.7729 19.8275 77.4899"></polygon> - <polygon id="Fill-174" fill="#231F20" points="22.9468 79.3631 24.4038 78.5901 24.4038 78.8731 22.9468 79.6461"></polygon> - <polygon id="Fill-176" fill="#FEFEFE" points="21.689 78.6092 23.146 77.8342 24.404 78.5892 22.947 79.3632"></polygon> - <polygon id="Fill-178" fill="#626366" points="22.9468 79.3631 22.9468 79.6461 21.6888 78.8901 21.6888 78.6091"></polygon> - <polygon id="Fill-180" fill="#231F20" points="24.7769 80.4627 26.2339 79.6897 26.2339 79.9727 24.7769 80.7457"></polygon> - <polygon id="Fill-182" fill="#FEFEFE" points="23.5191 79.7088 24.9781 78.9338 26.2341 79.6888 24.7771 80.4628"></polygon> - <polygon id="Fill-184" fill="#626366" points="24.7769 80.4627 24.7769 80.7457 23.5189 79.9897 23.5189 79.7087"></polygon> - <polygon id="Fill-186" fill="#231F20" points="26.6363 81.5809 28.0953 80.8069 28.0953 81.0899 26.6363 81.8639"></polygon> - <polygon id="Fill-188" fill="#FEFEFE" points="25.3804 80.826 26.8374 80.053 28.0954 80.806 26.6364 81.581"></polygon> - <polygon id="Fill-190" fill="#626366" points="26.6363 81.5809 26.6363 81.8639 25.3803 81.1089 25.3803 80.8259"></polygon> - <polygon id="Fill-192" fill="#231F20" points="28.5894 82.7547 30.0484 81.9797 30.0484 82.2627 28.5894 83.0357"></polygon> - <polygon id="Fill-194" fill="#FEFEFE" points="27.3335 81.9989 28.7905 81.2269 30.0485 81.9789 28.5895 82.7549"></polygon> - <polygon id="Fill-196" fill="#626366" points="28.5894 82.7547 28.5894 83.0357 27.3334 82.2817 27.3334 81.9987"></polygon> - <polygon id="Fill-198" fill="#231F20" points="30.4566 83.8758 31.9156 83.1028 31.9156 83.3858 30.4566 84.1588"></polygon> - <polygon id="Fill-200" fill="#FEFEFE" points="29.2007 83.1199 30.6577 82.3469 31.9157 83.1019 30.4567 83.8759"></polygon> - <polygon id="Fill-202" fill="#626366" points="30.4566 83.8758 30.4566 84.1588 29.2006 83.4028 29.2006 83.1198"></polygon> - <polygon id="Fill-204" fill="#231F20" points="32.3843 85.034 33.8433 84.261 33.8433 84.544 32.3843 85.317"></polygon> - <polygon id="Fill-206" fill="#FEFEFE" points="31.1284 84.2801 32.5854 83.5051 33.8434 84.2601 32.3844 85.0341"></polygon> - <polygon id="Fill-208" fill="#626366" points="32.3843 85.034 32.3843 85.317 31.1283 84.561 31.1283 84.28"></polygon> - <polygon id="Fill-210" fill="#231F20" points="34.2085 86.1297 35.6655 85.3567 35.6675 85.6397 34.2085 86.4127"></polygon> - <polygon id="Fill-212" fill="#FEFEFE" points="32.9507 85.3758 34.4097 84.6008 35.6657 85.3558 34.2087 86.1298"></polygon> - <polygon id="Fill-214" fill="#626366" points="34.2085 86.1297 34.2085 86.4127 32.9525 85.6567 32.9505 85.3757"></polygon> - <polygon id="Fill-216" fill="#231F20" points="11.7823 70.2537 13.2403 69.4807 13.2403 69.7617 11.7823 70.5367"></polygon> - <polygon id="Fill-218" fill="#FEFEFE" points="10.5254 69.4979 11.9834 68.7249 13.2404 69.4799 11.7824 70.2539"></polygon> - <polygon id="Fill-220" fill="#626366" points="11.7823 70.2537 11.7823 70.5367 10.5253 69.7807 10.5253 69.4977"></polygon> - <polygon id="Fill-222" fill="#231F20" points="13.6426 71.3709 15.1006 70.5979 15.1006 70.8809 13.6426 71.6539"></polygon> - <polygon id="Fill-224" fill="#FEFEFE" points="12.3858 70.617 13.8438 69.842 15.1008 70.597 13.6428 71.371"></polygon> - <polygon id="Fill-226" fill="#626366" points="13.6426 71.3709 13.6426 71.6539 12.3856 70.8979 12.3856 70.6169"></polygon> - <polygon id="Fill-228" fill="#231F20" points="15.5952 72.5448 17.0522 71.7718 17.0542 72.0548 15.5952 72.8278"></polygon> - <polygon id="Fill-230" fill="#FEFEFE" points="14.3389 71.7889 15.7969 71.0159 17.0519 71.7709 15.5949 72.5449"></polygon> - <polygon id="Fill-232" fill="#626366" points="15.5952 72.5448 15.5952 72.8278 14.3392 72.0718 14.3392 71.7888"></polygon> - <polygon id="Fill-234" fill="#231F20" points="17.4624 73.6678 18.9194 72.8928 18.9214 73.1758 17.4624 73.9488"></polygon> - <polygon id="Fill-236" fill="#FEFEFE" points="16.2066 72.9119 17.6636 72.1389 18.9196 72.8919 17.4626 73.6679"></polygon> - <polygon id="Fill-238" fill="#626366" points="17.4624 73.6678 17.4624 73.9488 16.2064 73.1948 16.2064 72.9118"></polygon> - <polygon id="Fill-240" fill="#231F20" points="19.3902 74.826 20.8492 74.051 20.8492 74.334 19.3902 75.107"></polygon> - <polygon id="Fill-242" fill="#FEFEFE" points="18.1343 74.0701 19.5913 73.2971 20.8493 74.0501 19.3903 74.8261"></polygon> - <polygon id="Fill-244" fill="#626366" points="19.3902 74.826 19.3902 75.107 18.1342 74.353 18.1342 74.07"></polygon> - <polygon id="Fill-246" fill="#231F20" points="21.2574 75.9471 22.7164 75.1741 22.7164 75.4551 21.2574 76.2301"></polygon> - <polygon id="Fill-248" fill="#FEFEFE" points="19.9937 75.1873 21.4527 74.4143 22.7167 75.1733 21.2577 75.9473"></polygon> - <polygon id="Fill-250" fill="#626366" points="21.2574 75.9471 21.2574 76.2301 19.9934 75.4701 19.9934 75.1871"></polygon> - <polygon id="Fill-252" fill="#231F20" points="23.2105 77.1209 24.6675 76.3479 24.6695 76.6289 23.2105 77.4019"></polygon> - <polygon id="Fill-254" fill="#FEFEFE" points="21.9527 76.3651 23.4117 75.5921 24.6677 76.3471 23.2107 77.1211"></polygon> - <polygon id="Fill-256" fill="#626366" points="23.2105 77.1209 23.2105 77.4019 21.9545 76.6479 21.9525 76.3649"></polygon> - <polygon id="Fill-258" fill="#231F20" points="25.0718 78.2381 26.5288 77.4651 26.5288 77.7481 25.0718 78.5211"></polygon> - <polygon id="Fill-260" fill="#FEFEFE" points="23.814 77.4842 25.271 76.7092 26.529 77.4642 25.072 78.2382"></polygon> - <polygon id="Fill-262" fill="#626366" points="25.0718 78.2381 25.0718 78.5211 23.8138 77.7651 23.8138 77.4841"></polygon> - <polygon id="Fill-264" fill="#231F20" points="26.9019 79.3377 28.3589 78.5647 28.3589 78.8477 26.9019 79.6207"></polygon> - <polygon id="Fill-266" fill="#FEFEFE" points="25.6441 78.5838 27.1031 77.8088 28.3591 78.5638 26.9021 79.3378"></polygon> - <polygon id="Fill-268" fill="#626366" points="26.9019 79.3377 26.9019 79.6207 25.6439 78.8647 25.6439 78.5837"></polygon> - <polygon id="Fill-270" fill="#231F20" points="28.7613 80.4569 30.2203 79.6819 30.2203 79.9649 28.7613 80.7379"></polygon> - <polygon id="Fill-272" fill="#FEFEFE" points="27.5054 79.701 28.9624 78.928 30.2204 79.681 28.7614 80.457"></polygon> - <polygon id="Fill-274" fill="#626366" points="28.7613 80.4569 28.7613 80.7379 27.5053 79.9839 27.5053 79.7009"></polygon> - <polygon id="Fill-276" fill="#231F20" points="30.7144 81.6297 32.1734 80.8557 32.1734 81.1387 30.7144 81.9107"></polygon> - <polygon id="Fill-278" fill="#FEFEFE" points="29.4585 80.8748 30.9155 80.1018 32.1735 80.8548 30.7145 81.6298"></polygon> - <polygon id="Fill-280" fill="#626366" points="30.7144 81.6297 30.7144 81.9107 29.4584 81.1557 29.4584 80.8747"></polygon> - <polygon id="Fill-282" fill="#231F20" points="32.5816 82.7508 34.0406 81.9778 34.0406 82.2608 32.5816 83.0338"></polygon> - <polygon id="Fill-284" fill="#FEFEFE" points="31.3257 81.9949 32.7827 81.2229 34.0407 81.9769 32.5817 82.7509"></polygon> - <polygon id="Fill-286" fill="#626366" points="32.5816 82.7508 32.5816 83.0338 31.3256 82.2778 31.3256 81.9948"></polygon> - <polygon id="Fill-288" fill="#231F20" points="34.5093 83.909 35.9683 83.136 35.9683 83.419 34.5093 84.192"></polygon> - <polygon id="Fill-290" fill="#FEFEFE" points="33.2534 83.1551 34.7104 82.3801 35.9684 83.1351 34.5094 83.9091"></polygon> - <polygon id="Fill-292" fill="#626366" points="34.5093 83.909 34.5093 84.192 33.2533 83.436 33.2533 83.155"></polygon> - <polygon id="Fill-294" fill="#231F20" points="36.3335 85.0047 37.7905 84.2317 37.7925 84.5147 36.3335 85.2877"></polygon> - <polygon id="Fill-296" fill="#FEFEFE" points="35.0757 84.2508 36.5347 83.4758 37.7907 84.2308 36.3337 85.0048"></polygon> - <polygon id="Fill-298" fill="#626366" points="36.3335 85.0047 36.3335 85.2877 35.0775 84.5317 35.0755 84.2507"></polygon> - <polygon id="Fill-300" fill="#231F20" points="6.2657 74.1815 7.7237 73.4065 7.7237 73.6815 6.2657 74.4545"></polygon> - <polygon id="Fill-302" fill="#FEFEFE" points="5.0078 73.4256 6.4658 72.6526 7.7238 73.4056 6.2658 74.1816"></polygon> - <polygon id="Fill-304" fill="#626366" points="6.2657 74.1815 6.2657 74.4545 5.0087 73.6995 5.0077 73.4255"></polygon> - <polygon id="Fill-306" fill="#231F20" points="8.0342 75.244 9.4922 74.469 9.4922 74.744 8.0342 75.517"></polygon> - <polygon id="Fill-308" fill="#FEFEFE" points="6.7774 74.4881 8.2354 73.7151 9.4924 74.4681 8.0344 75.2441"></polygon> - <polygon id="Fill-310" fill="#626366" points="8.0342 75.244 8.0342 75.517 6.7772 74.764 6.7772 74.488"></polygon> - <polygon id="Fill-312" fill="#231F20" points="9.8946 76.3612 11.3526 75.5882 11.3526 75.8612 9.8946 76.6362"></polygon> - <polygon id="Fill-314" fill="#FEFEFE" points="8.6377 75.6053 10.0957 74.8323 11.3527 75.5873 9.8947 76.3613"></polygon> - <polygon id="Fill-316" fill="#626366" points="9.8946 76.3612 9.8946 76.6362 8.6376 75.8812 8.6376 75.6052"></polygon> - <polygon id="Fill-318" fill="#231F20" points="25.4527 85.6805 26.9117 84.9075 26.9117 85.1805 25.4527 85.9555"></polygon> - <polygon id="Fill-320" fill="#FEFEFE" points="24.1949 84.9246 25.6539 84.1516 26.9119 84.9066 25.4529 85.6806"></polygon> - <polygon id="Fill-322" fill="#626366" points="25.4527 85.6805 25.4527 85.9555 24.1967 85.2005 24.1947 84.9245"></polygon> - <polygon id="Fill-324" fill="#231F20" points="27.2222 86.743 28.6792 85.97 28.6792 86.243 27.2222 87.018"></polygon> - <polygon id="Fill-326" fill="#FEFEFE" points="25.9644 85.9871 27.4234 85.2141 28.6794 85.9691 27.2224 86.7431"></polygon> - <polygon id="Fill-328" fill="#626366" points="27.2222 86.743 27.2222 87.018 25.9642 86.263 25.9642 85.987"></polygon> - <polygon id="Fill-330" fill="#231F20" points="29.0816 87.8602 30.5406 87.0872 30.5406 87.3622 29.0816 88.1352"></polygon> - <polygon id="Fill-332" fill="#FEFEFE" points="27.8257 87.1063 29.2827 86.3313 30.5407 87.0863 29.0817 87.8603"></polygon> - <polygon id="Fill-334" fill="#626366" points="29.0816 87.8602 29.0816 88.1352 27.8256 87.3802 27.8256 87.1062"></polygon> - <polygon id="Fill-336" fill="#231F20" points="23.4663 84.5262 24.9253 83.7532 24.9253 84.0282 23.4663 84.8012"></polygon> - <polygon id="Fill-338" fill="#FEFEFE" points="10.5723 76.7791 12.0303 76.0061 24.9253 83.7531 23.4663 84.5261"></polygon> - <polygon id="Fill-340" fill="#626366" points="23.4663 84.5262 23.4663 84.8012 10.5723 77.0542 10.5723 76.7792"></polygon> - <polyline id="Stroke-342" stroke="#E1E2E3" stroke-linecap="round" stroke-linejoin="round" points="0.7422 72.8846 30.1522 90.5536 30.1522 93.7586"></polyline> - </g> - <g id="Group-351" stroke-width="1" fill-rule="evenodd" transform="translate(64.000000, 59.663000)"> - <g id="Group-347"> - <mask id="mask-2" fill="white"> - <use xlink:href="#path-1"></use> - </mask> - <g id="Clip-346"></g> - <path d="M1.1685,9.4393 L18.0395,0.4843 C17.7615,0.6323 17.5735,0.9483 17.5265,1.4033 L0.6555,10.3573 C0.7025,9.9033 0.8915,9.5853 1.1685,9.4393" id="Stroke-345" stroke="#636466" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-2)"></path> - </g> - <g id="Group-350"> - <mask id="mask-4" fill="white"> - <use xlink:href="#path-3"></use> - </mask> - <g id="Clip-349"></g> - <path d="M0.6558,10.3577 L17.5268,1.4027 C17.5198,1.4757 17.5168,1.5527 17.5168,1.6327 L0.6438,10.5887 C0.6438,10.5087 0.6468,10.4307 0.6558,10.3577" id="Stroke-348" stroke="#636466" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-4)"></path> - </g> - </g> - <path d="M65.1685,69.1023 C70.7915,66.1173 76.4165,63.1323 82.0395,60.1473 C81.7165,60.3183 81.5155,60.7183 81.5175,61.2963 L64.6445,70.2523 C64.6445,69.6733 64.8455,69.2743 65.1685,69.1023 Z" id="Stroke-352" stroke="#636466" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path> - <g id="Group-363" stroke-width="1" fill-rule="evenodd" transform="translate(83.000000, 94.663000)"> - <g id="Group-356"> - <mask id="mask-6" fill="white"> - <use xlink:href="#path-5"></use> - </mask> - <g id="Clip-355"></g> - <path d="M0.6118,9.8255 L17.4828,0.8695 C17.5528,0.9115 17.6218,0.9475 17.6888,0.9775 L0.8188,9.9335 C0.7508,9.9035 0.6808,9.8665 0.6118,9.8255" id="Stroke-354" stroke="#636466" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-6)"></path> - </g> - <g id="Group-359"> - <mask id="mask-8" fill="white"> - <use xlink:href="#path-7"></use> - </mask> - <g id="Clip-358"></g> - <path d="M0.8189,9.9334 L17.6889,0.9774 C17.8569,1.0534 18.0139,1.0934 18.1599,1.1024 L1.2899,10.0574 C1.1429,10.0484 0.9839,10.0074 0.8189,9.9334" id="Stroke-357" stroke="#636466" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-8)"></path> - </g> - <g id="Group-362"> - <mask id="mask-10" fill="white"> - <use xlink:href="#path-9"></use> - </mask> - <g id="Clip-361"></g> - <path d="M1.2896,10.0574 L18.1596,1.1024 C18.3326,1.1134 18.4876,1.0804 18.6216,1.0104 L1.7516,9.9644 C1.6166,10.0364 1.4606,10.0684 1.2896,10.0574" id="Stroke-360" stroke="#636466" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-10)"></path> - </g> - </g> - <path d="M101.6216,95.6731 C95.9976,98.6581 90.3746,101.6431 84.7516,104.6281 C84.4526,104.7861 84.0536,104.7521 83.6116,104.4881 L100.4826,95.5331 C100.9246,95.7961 101.3256,95.8311 101.6216,95.6731 Z" id="Stroke-364" stroke="#636466" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path> - <g id="Group-375" stroke-width="1" fill-rule="evenodd" transform="translate(65.000000, 59.663000)"> - <g id="Group-368"> - <mask id="mask-12" fill="white"> - <use xlink:href="#path-11"></use> - </mask> - <g id="Clip-367"></g> - <path d="M0.1685,9.4393 L17.0395,0.4843 C17.1745,0.4133 17.3295,0.3803 17.4995,0.3913 L0.6295,9.3473 C0.4565,9.3373 0.3045,9.3683 0.1685,9.4393" id="Stroke-366" stroke="#636466" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-12)"></path> - </g> - <g id="Group-371"> - <mask id="mask-14" fill="white"> - <use xlink:href="#path-13"></use> - </mask> - <g id="Clip-370"></g> - <path d="M0.6294,9.347 L17.4994,0.391 C17.6454,0.401 17.8044,0.441 17.9694,0.516 L1.0984,9.47 C0.9324,9.397 0.7744,9.355 0.6294,9.347" id="Stroke-369" stroke="#636466" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-14)"></path> - </g> - <g id="Group-374"> - <mask id="mask-16" fill="white"> - <use xlink:href="#path-15"></use> - </mask> - <g id="Clip-373"></g> - <path d="M1.0982,9.47 L17.9692,0.516 C18.0382,0.546 18.1082,0.584 18.1802,0.625 L1.3082,9.581 C1.2372,9.537 1.1652,9.503 1.0982,9.47" id="Stroke-372" stroke="#636466" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-16)"></path> - </g> - </g> - <path d="M65.1685,69.1023 C70.7915,66.1173 76.4165,63.1323 82.0395,60.1473 C82.3375,59.9883 82.7375,60.0233 83.1805,60.2883 L66.3085,69.2443 C65.8665,68.9793 65.4665,68.9453 65.1685,69.1023 Z" id="Stroke-376" stroke="#636466" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path> - <g id="Group-387" stroke-width="1" fill-rule="evenodd" transform="translate(64.000000, 58.663000)"> - <g id="Group-380"> - <mask id="mask-18" fill="white"> - <use xlink:href="#path-17"></use> - </mask> - <g id="Clip-379"></g> - <path d="M0.689,9.5408 L17.56,0.5848 C17.751,0.4848 17.971,0.4388 18.212,0.4548 L1.342,9.4088 C1.102,9.3938 0.878,9.4388 0.689,9.5408" id="Stroke-378" stroke="#636466" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-18)"></path> - </g> - <g id="Group-383"> - <mask id="mask-20" fill="white"> - <use xlink:href="#path-19"></use> - </mask> - <g id="Clip-382"></g> - <path d="M1.3423,9.4085 L18.2123,0.4545 C18.4213,0.4665 18.6443,0.5245 18.8803,0.6305 L2.0083,9.5855 C1.7743,9.4795 1.5513,9.4235 1.3423,9.4085" id="Stroke-381" stroke="#636466" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-20)"></path> - </g> - <g id="Group-386"> - <mask id="mask-22" fill="white"> - <use xlink:href="#path-21"></use> - </mask> - <g id="Clip-385"></g> - <path d="M2.0083,9.5858 L18.8803,0.6298 C18.9783,0.6738 19.0783,0.7268 19.1793,0.7868 L2.3083,9.7428 C2.2073,9.6828 2.1083,9.6298 2.0083,9.5858" id="Stroke-384" stroke="#636466" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-22)"></path> - </g> - </g> - <path d="M64.689,68.2038 C70.314,65.2188 75.937,62.2328 81.56,59.2478 C81.983,59.0238 82.552,59.0738 83.179,59.4498 L66.308,68.4058 C65.681,68.0298 65.113,67.9808 64.689,68.2038 Z" id="Stroke-388" stroke="#636466" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path> - <g id="Group-392" stroke-width="1" fill-rule="evenodd" transform="translate(84.000000, 93.663000)"> - <mask id="mask-24" fill="white"> - <use xlink:href="#path-23"></use> - </mask> - <g id="Clip-391"></g> - <path d="M1.2642,10.0467 L18.1342,1.0917 C18.0882,1.5447 17.9022,1.8607 17.6212,2.0097 L0.7512,10.9647 C1.0292,10.8167 1.2172,10.5007 1.2642,10.0467" id="Stroke-390" stroke="#636466" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-24)"></path> - </g> - <path d="M101.6216,95.6731 C95.9976,98.6581 90.3746,101.6431 84.7516,104.6281 C85.0736,104.4561 85.2766,104.0571 85.2766,103.4811 L102.1456,94.5271 C102.1456,95.1021 101.9456,95.5011 101.6216,95.6731 Z" id="Stroke-393" stroke="#636466" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path> - <g id="Group-401" stroke-width="1" fill-rule="evenodd" transform="translate(85.000000, 94.663000)"> - <g id="Group-397"> - <mask id="mask-26" fill="white"> - <use xlink:href="#path-25"></use> - </mask> - <g id="Clip-396"></g> - <path d="M0.9751,9.2376 L17.8451,0.2826 C17.8451,0.3936 17.8391,0.5016 17.8291,0.6036 L0.9581,9.5586 C0.9681,9.4566 0.9751,9.3486 0.9751,9.2376" id="Stroke-395" stroke="#636466" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-26)"></path> - </g> - <g id="Group-400"> - <mask id="mask-28" fill="white"> - <use xlink:href="#path-27"></use> - </mask> - <g id="Clip-399"></g> - <path d="M0.9585,9.5584 L17.8295,0.6034 C17.7645,1.2474 17.4945,1.6994 17.0995,1.9094 L0.2285,10.8654 C0.6245,10.6544 0.8905,10.2024 0.9585,9.5584" id="Stroke-398" stroke="#636466" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-28)"></path> - </g> - </g> - <g id="Group-412" stroke-width="1" fill-rule="evenodd" transform="translate(66.000000, 58.663000)" stroke="#636466" stroke-linecap="round" stroke-linejoin="round"> - <path d="M36.0992,37.9095 L19.2282,46.8655 C19.6872,46.6205 19.9722,46.0555 19.9752,45.2375 L36.8452,36.2835 C36.8452,37.0995 36.5582,37.6665 36.0992,37.9095 Z" id="Stroke-402" stroke-width="2"></path> - <polygon id="Stroke-404" stroke-width="2" points="0.3081 10.5809 17.1801 1.6249 34.4651 12.0119 17.5931 20.9679"></polygon> - <polygon id="Stroke-406" stroke-width="2" points="19.2603 23.9764 36.1333 15.0204 36.1463 35.8634 19.2773 44.8184"></polygon> - <polygon id="Stroke-408" stroke-width="2" points="0.3081 9.7425 17.1791 0.7865 34.4651 11.1725 17.5921 20.1295"></polygon> - <polygon id="Stroke-410" stroke-width="2" points="19.9585 24.3958 36.8315 15.4408 36.8455 36.2828 19.9755 45.2378"></polygon> - </g> - <g id="Group-443" stroke-width="1" fill-rule="evenodd" transform="translate(83.000000, 70.663000)"> - <g id="Group-415"> - <mask id="mask-30" fill="white"> - <use xlink:href="#path-29"></use> - </mask> - <g id="Clip-414"></g> - <path d="M0.5933,8.9681 L17.4653,0.0111 C17.5563,0.0671 17.6483,0.1301 17.7363,0.2011 L0.8633,9.1551 C0.7763,9.0851 0.6873,9.0221 0.5933,8.9681" id="Stroke-413" stroke="#636466" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-30)"></path> - </g> - <g id="Group-418"> - <mask id="mask-32" fill="white"> - <use xlink:href="#path-31"></use> - </mask> - <g id="Clip-417"></g> - <path d="M0.8628,9.1556 L17.7358,0.2006 C17.8478,0.2916 17.9578,0.3916 18.0618,0.5046 L1.1908,9.4596 C1.0868,9.3486 0.9768,9.2456 0.8628,9.1556" id="Stroke-416" stroke="#636466" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-32)"></path> - </g> - <g id="Group-421"> - <mask id="mask-34" fill="white"> - <use xlink:href="#path-33"></use> - </mask> - <g id="Clip-420"></g> - <path d="M1.1909,9.4593 L18.0619,0.5043 C18.1279,0.5723 18.1929,0.6473 18.2529,0.7233 L1.3819,9.6783 C1.3209,9.6033 1.2559,9.5283 1.1909,9.4593" id="Stroke-419" stroke="#636466" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-34)"></path> - </g> - <g id="Group-424"> - <mask id="mask-36" fill="white"> - <use xlink:href="#path-35"></use> - </mask> - <g id="Clip-423"></g> - <path d="M1.3824,9.6785 L18.2524,0.7235 C18.3144,0.7985 18.3704,0.8765 18.4264,0.9555 L1.5534,9.9115 C1.4994,9.8315 1.4434,9.7545 1.3824,9.6785" id="Stroke-422" stroke="#636466" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-36)"></path> - </g> - <g id="Group-427"> - <mask id="mask-38" fill="white"> - <use xlink:href="#path-37"></use> - </mask> - <g id="Clip-426"></g> - <path d="M1.5533,9.9115 L18.4263,0.9555 C18.5233,1.0975 18.6133,1.2475 18.6953,1.4025 L1.8223,10.3585 C1.7423,10.2035 1.6533,10.0535 1.5533,9.9115" id="Stroke-425" stroke="#636466" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-38)"></path> - </g> - <g id="Group-430"> - <mask id="mask-40" fill="white"> - <use xlink:href="#path-39"></use> - </mask> - <g id="Clip-429"></g> - <path d="M1.8218,10.3582 L18.6948,1.4022 C18.7378,1.4842 18.7788,1.5682 18.8158,1.6572 L1.9458,10.6102 C1.9068,10.5252 1.8678,10.4412 1.8218,10.3582" id="Stroke-428" stroke="#636466" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-40)"></path> - </g> - <g id="Group-433"> - <mask id="mask-42" fill="white"> - <use xlink:href="#path-41"></use> - </mask> - <g id="Clip-432"></g> - <path d="M1.9458,10.6107 L18.8158,1.6567 C18.8498,1.7327 18.8828,1.8087 18.9088,1.8867 L2.0388,10.8407 C2.0088,10.7647 1.9778,10.6877 1.9458,10.6107" id="Stroke-431" stroke="#636466" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-42)"></path> - </g> - <g id="Group-436"> - <mask id="mask-44" fill="white"> - <use xlink:href="#path-43"></use> - </mask> - <g id="Clip-435"></g> - <path d="M2.0386,10.8411 L18.9086,1.8861 C18.9466,1.9851 18.9776,2.0851 19.0086,2.1851 L2.1376,11.1411 C2.1086,11.0401 2.0756,10.9401 2.0386,10.8411" id="Stroke-434" stroke="#636466" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-44)"></path> - </g> - <g id="Group-439"> - <mask id="mask-46" fill="white"> - <use xlink:href="#path-45"></use> - </mask> - <g id="Clip-438"></g> - <path d="M2.1372,11.1409 L19.0082,2.1849 C19.0532,2.3509 19.0882,2.5149 19.1092,2.6739 L2.2382,11.6289 C2.2172,11.4679 2.1832,11.3039 2.1372,11.1409" id="Stroke-437" stroke="#636466" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-46)"></path> - </g> - <g id="Group-442"> - <mask id="mask-48" fill="white"> - <use xlink:href="#path-47"></use> - </mask> - <g id="Clip-441"></g> - <path d="M2.2378,11.6292 L19.1088,2.6742 C19.1248,2.7912 19.1318,2.9072 19.1338,3.0202 L2.2598,11.9762 C2.2598,11.8622 2.2538,11.7472 2.2378,11.6292" id="Stroke-440" stroke="#636466" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-48)"></path> - </g> - </g> - <g id="Group-448" stroke-width="1" fill-rule="evenodd" transform="translate(63.000000, 67.663000)" stroke="#636466" stroke-linecap="round" stroke-linejoin="round"> - <path d="M20.5933,11.9681 L37.4653,3.0111 C38.3853,3.5661 39.1303,4.9111 39.1333,6.0201 L22.2603,14.9761 C22.2603,13.8651 21.5163,12.5211 20.5933,11.9681 Z" id="Stroke-444" stroke-width="2"></path> - <path d="M20.5923,11.1292 C21.9003,11.9132 22.9553,13.8182 22.9583,15.3962 L22.9753,36.2372 C22.9723,37.8082 21.9183,38.4502 20.6123,37.6652 L3.3273,27.2782 C2.0213,26.4932 0.9623,24.5822 0.9593,23.0122 L0.9463,2.1692 C0.9453,0.5942 2.0023,-0.0418 3.3083,0.7422 L20.5923,11.1292 Z" id="Stroke-446" stroke-width="2"></path> - </g> - <g id="Group-479" stroke-width="1" fill-rule="evenodd" transform="translate(83.000000, 69.663000)"> - <g id="Group-451"> - <mask id="mask-50" fill="white"> - <use xlink:href="#path-49"></use> - </mask> - <g id="Clip-450"></g> - <path d="M0.5923,9.1292 L17.4653,0.1722 C17.5953,0.2512 17.7213,0.3412 17.8473,0.4412 L0.9763,9.3962 C0.8513,9.2952 0.7233,9.2082 0.5923,9.1292" id="Stroke-449" stroke="#636466" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-50)"></path> - </g> - <g id="Group-454"> - <mask id="mask-52" fill="white"> - <use xlink:href="#path-51"></use> - </mask> - <g id="Clip-453"></g> - <path d="M0.9761,9.3958 L17.8471,0.4408 C18.0071,0.5678 18.1631,0.7128 18.3111,0.8698 L1.4401,9.8258 C1.2911,9.6688 1.1371,9.5238 0.9761,9.3958" id="Stroke-452" stroke="#636466" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-52)"></path> - </g> - <g id="Group-457"> - <mask id="mask-54" fill="white"> - <use xlink:href="#path-53"></use> - </mask> - <g id="Clip-456"></g> - <path d="M1.44,9.8255 L18.311,0.8695 C18.404,0.9695 18.497,1.0745 18.583,1.1815 L1.711,10.1385 C1.624,10.0295 1.534,9.9245 1.44,9.8255" id="Stroke-455" stroke="#636466" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-54)"></path> - </g> - <g id="Group-460"> - <mask id="mask-56" fill="white"> - <use xlink:href="#path-55"></use> - </mask> - <g id="Clip-459"></g> - <path d="M1.7115,10.139 L18.5825,1.182 C18.6675,1.288 18.7485,1.399 18.8275,1.512 L1.9555,10.467 C1.8775,10.354 1.7975,10.245 1.7115,10.139" id="Stroke-458" stroke="#636466" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-56)"></path> - </g> - <g id="Group-463"> - <mask id="mask-58" fill="white"> - <use xlink:href="#path-57"></use> - </mask> - <g id="Clip-462"></g> - <path d="M1.9556,10.4671 L18.8276,1.5121 C18.9666,1.7141 19.0946,1.9261 19.2086,2.1471 L2.3386,11.1021 C2.2246,10.8821 2.0956,10.6691 1.9556,10.4671" id="Stroke-461" stroke="#636466" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-58)"></path> - </g> - <g id="Group-466"> - <mask id="mask-60" fill="white"> - <use xlink:href="#path-59"></use> - </mask> - <g id="Clip-465"></g> - <path d="M2.3384,11.1024 L19.2084,2.1464 C19.2704,2.2644 19.3274,2.3844 19.3824,2.5054 L2.5094,11.4604 C2.4564,11.3384 2.4004,11.2194 2.3384,11.1024" id="Stroke-464" stroke="#636466" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-60)"></path> - </g> - <g id="Group-469"> - <mask id="mask-62" fill="white"> - <use xlink:href="#path-61"></use> - </mask> - <g id="Clip-468"></g> - <path d="M2.5093,11.4608 L19.3823,2.5048 C19.4293,2.6128 19.4723,2.7228 19.5143,2.8308 L2.6443,11.7888 C2.6043,11.6768 2.5583,11.5678 2.5093,11.4608" id="Stroke-467" stroke="#636466" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-62)"></path> - </g> - <g id="Group-472"> - <mask id="mask-64" fill="white"> - <use xlink:href="#path-63"></use> - </mask> - <g id="Clip-471"></g> - <path d="M2.6441,11.7884 L19.5141,2.8304 C19.5681,2.9744 19.6141,3.1174 19.6541,3.2604 L2.7841,12.2144 C2.7441,12.0724 2.6971,11.9294 2.6441,11.7884" id="Stroke-470" stroke="#636466" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-64)"></path> - </g> - <g id="Group-475"> - <mask id="mask-66" fill="white"> - <use xlink:href="#path-65"></use> - </mask> - <g id="Clip-474"></g> - <path d="M2.7837,12.2142 L19.6537,3.2602 C19.7207,3.4912 19.7697,3.7252 19.7977,3.9542 L2.9267,12.9092 C2.8967,12.6802 2.8477,12.4482 2.7837,12.2142" id="Stroke-473" stroke="#636466" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-66)"></path> - </g> - <g id="Group-478"> - <mask id="mask-68" fill="white"> - <use xlink:href="#path-67"></use> - </mask> - <g id="Clip-477"></g> - <path d="M2.9263,12.9095 L19.7973,3.9535 C19.8193,4.1175 19.8293,4.2815 19.8313,4.4415 L2.9583,13.3955 C2.9583,13.2365 2.9473,13.0745 2.9263,12.9095" id="Stroke-476" stroke="#636466" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-68)"></path> - </g> - </g> - <path d="M83.5923,78.7922 L100.4653,69.8352 C101.7713,70.6202 102.8253,72.5272 102.8313,74.1042 L85.9583,83.0592 C85.9553,81.4812 84.9003,79.5762 83.5923,78.7922 Z" id="Stroke-480" stroke="#636466" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path> - <g id="Group-512" stroke-width="1" fill-rule="evenodd" transform="translate(64.000000, 81.663000)"> - <g id="Group-484"> - <mask id="mask-70" fill="white"> - <use xlink:href="#path-69"></use> - </mask> - <g id="Clip-483"></g> - <path d="M0.3794,9.451 L17.2494,0.496 C17.2494,0.61 17.2594,0.723 17.2734,0.84 L0.4024,9.797 C0.3864,9.68 0.3794,9.563 0.3794,9.451" id="Fill-482" fill="#231F20" mask="url(#mask-70)"></path> - </g> - <g id="Group-487"> - <mask id="mask-72" fill="white"> - <use xlink:href="#path-71"></use> - </mask> - <g id="Clip-486"></g> - <path d="M0.4029,9.7967 L17.2729,0.8397 C17.2939,1.0017 17.3279,1.1647 17.3739,1.3287 L0.5029,10.2827 C0.4569,10.1207 0.4229,9.9557 0.4029,9.7967" id="Fill-485" fill="#231F20" mask="url(#mask-72)"></path> - </g> - <g id="Group-490"> - <mask id="mask-74" fill="white"> - <use xlink:href="#path-73"></use> - </mask> - <g id="Clip-489"></g> - <path d="M0.5025,10.283 L17.3735,1.328 C17.4005,1.429 17.4345,1.528 17.4715,1.628 L0.6015,10.582 C0.5645,10.483 0.5305,10.383 0.5025,10.283" id="Fill-488" fill="#231F20" mask="url(#mask-74)"></path> - </g> - <g id="Group-493"> - <mask id="mask-76" fill="white"> - <use xlink:href="#path-75"></use> - </mask> - <g id="Clip-492"></g> - <path d="M0.6011,10.5824 L17.4711,1.6274 C17.5001,1.7054 17.5321,1.7824 17.5651,1.8584 L0.6941,10.8134 C0.6611,10.7374 0.6281,10.6604 0.6011,10.5824" id="Fill-491" fill="#535456" mask="url(#mask-76)"></path> - </g> - <g id="Group-496"> - <mask id="mask-78" fill="white"> - <use xlink:href="#path-77"></use> - </mask> - <g id="Clip-495"></g> - <path d="M0.6939,10.8138 L17.5649,1.8588 C17.6029,1.9448 17.6439,2.0288 17.6879,2.1118 L0.8169,11.0678 C0.7729,10.9848 0.7309,10.8998 0.6939,10.8138" id="Fill-494" fill="#636467" mask="url(#mask-78)"></path> - </g> - <g id="Group-499"> - <mask id="mask-80" fill="white"> - <use xlink:href="#path-79"></use> - </mask> - <g id="Clip-498"></g> - <path d="M0.8169,11.0677 L17.6879,2.1117 C17.7689,2.2667 17.8589,2.4177 17.9559,2.5587 L1.0859,11.5137 C0.9879,11.3717 0.8959,11.2217 0.8169,11.0677" id="Fill-497" fill="#6F7073" mask="url(#mask-80)"></path> - </g> - <g id="Group-502"> - <mask id="mask-82" fill="white"> - <use xlink:href="#path-81"></use> - </mask> - <g id="Clip-501"></g> - <path d="M1.0855,11.514 L17.9555,2.559 C18.0125,2.639 18.0675,2.718 18.1295,2.792 L1.2585,11.749 C1.1975,11.673 1.1405,11.595 1.0855,11.514" id="Fill-500" fill="#636467" mask="url(#mask-82)"></path> - </g> - <g id="Group-505"> - <mask id="mask-84" fill="white"> - <use xlink:href="#path-83"></use> - </mask> - <g id="Clip-504"></g> - <path d="M1.2583,11.7489 L18.1293,2.7919 C18.1913,2.8699 18.2553,2.9439 18.3213,3.0149 L1.4513,11.9699 C1.3853,11.8989 1.3203,11.8249 1.2583,11.7489" id="Fill-503" fill="#535456" mask="url(#mask-84)"></path> - </g> - <g id="Group-508"> - <mask id="mask-86" fill="white"> - <use xlink:href="#path-85"></use> - </mask> - <g id="Clip-507"></g> - <path d="M1.4517,11.9696 L18.3217,3.0146 C18.4277,3.1256 18.5377,3.2276 18.6507,3.3186 L1.7807,12.2746 C1.6667,12.1836 1.5567,12.0806 1.4517,11.9696" id="Fill-506" fill="#231F20" mask="url(#mask-86)"></path> - </g> - <g id="Group-511"> - <mask id="mask-88" fill="white"> - <use xlink:href="#path-87"></use> - </mask> - <g id="Clip-510"></g> - <path d="M1.7808,12.2742 L18.6508,3.3182 C18.7378,3.3872 18.8248,3.4492 18.9178,3.5052 L2.0468,12.4602 C1.9568,12.4052 1.8668,12.3432 1.7808,12.2742" id="Fill-509" fill="#231F20" mask="url(#mask-88)"></path> - </g> - </g> - <g id="Group-517" stroke-width="1" fill-rule="evenodd" transform="translate(64.000000, 60.663000)" fill="#231F20"> - <polygon id="Fill-513" points="0.3638 9.6097 17.2368 0.6537 17.2498 21.4957 0.3798 30.4507"></polygon> - <polygon id="Fill-515" points="2.0464 33.4598 18.9174 24.5048 36.2024 34.8908 19.3314 43.8458"></polygon> - </g> - <g id="Group-524" stroke-width="1" fill-rule="evenodd" transform="translate(64.000000, 59.663000)"> - <g id="Group-520"> - <mask id="mask-90" fill="white"> - <use xlink:href="#path-89"></use> - </mask> - <g id="Clip-519"></g> - <path d="M0.8882,9.4598 L17.7592,0.5048 C17.4812,0.6528 17.2932,0.9688 17.2462,1.4238 L0.3752,10.3778 C0.4222,9.9238 0.6112,9.6058 0.8882,9.4598" id="Fill-518" fill="#231F20" mask="url(#mask-90)"></path> - </g> - <g id="Group-523"> - <mask id="mask-92" fill="white"> - <use xlink:href="#path-91"></use> - </mask> - <g id="Clip-522"></g> - <path d="M0.3755,10.3783 L17.2465,1.4233 C17.2395,1.4963 17.2365,1.5733 17.2365,1.6533 L0.3635,10.6093 C0.3635,10.5293 0.3665,10.4513 0.3755,10.3783" id="Fill-521" fill="#231F20" mask="url(#mask-92)"></path> - </g> - </g> - <g id="Group-534" stroke-width="1" fill-rule="evenodd" transform="translate(83.000000, 94.663000)"> - <g id="Group-527"> - <mask id="mask-94" fill="white"> - <use xlink:href="#path-93"></use> - </mask> - <g id="Clip-526"></g> - <path d="M0.3316,9.846 L17.2026,0.89 C17.2726,0.932 17.3416,0.968 17.4086,0.998 L0.5386,9.954 C0.4706,9.924 0.4006,9.887 0.3316,9.846" id="Fill-525" fill="#231F20" mask="url(#mask-94)"></path> - </g> - <g id="Group-530"> - <mask id="mask-96" fill="white"> - <use xlink:href="#path-95"></use> - </mask> - <g id="Clip-529"></g> - <path d="M0.5386,9.9539 L17.4086,0.9979 C17.5766,1.0739 17.7336,1.1139 17.8796,1.1229 L1.0096,10.0779 C0.8626,10.0689 0.7036,10.0279 0.5386,9.9539" id="Fill-528" fill="#231F20" mask="url(#mask-96)"></path> - </g> - <g id="Group-533"> - <mask id="mask-98" fill="white"> - <use xlink:href="#path-97"></use> - </mask> - <g id="Clip-532"></g> - <path d="M1.0093,10.078 L17.8793,1.123 C18.0523,1.134 18.2073,1.101 18.3413,1.031 L1.4713,9.985 C1.3363,10.057 1.1803,10.089 1.0093,10.078" id="Fill-531" fill="#231F20" mask="url(#mask-98)"></path> - </g> - </g> - <g id="Group-544" stroke-width="1" fill-rule="evenodd" transform="translate(64.000000, 59.663000)"> - <g id="Group-537"> - <mask id="mask-100" fill="white"> - <use xlink:href="#path-99"></use> - </mask> - <g id="Clip-536"></g> - <path d="M0.8882,9.4598 L17.7592,0.5048 C17.8942,0.4338 18.0492,0.4008 18.2192,0.4118 L1.3492,9.3678 C1.1762,9.3578 1.0242,9.3888 0.8882,9.4598" id="Fill-535" fill="#ABAEB0" mask="url(#mask-100)"></path> - </g> - <g id="Group-540"> - <mask id="mask-102" fill="white"> - <use xlink:href="#path-101"></use> - </mask> - <g id="Clip-539"></g> - <path d="M1.3492,9.3675 L18.2192,0.4115 C18.3652,0.4215 18.5242,0.4615 18.6892,0.5365 L1.8182,9.4905 C1.6522,9.4175 1.4942,9.3755 1.3492,9.3675" id="Fill-538" fill="#C6C7C9" mask="url(#mask-102)"></path> - </g> - <g id="Group-543"> - <mask id="mask-104" fill="white"> - <use xlink:href="#path-103"></use> - </mask> - <g id="Clip-542"></g> - <path d="M1.8179,9.4906 L18.6889,0.5366 C18.7579,0.5666 18.8279,0.6046 18.8999,0.6456 L2.0279,9.6016 C1.9569,9.5576 1.8849,9.5236 1.8179,9.4906" id="Fill-541" fill="#E0E1E2" mask="url(#mask-104)"></path> - </g> - </g> - <path d="M64.4087,68.2244 C70.0337,65.2394 75.6567,62.2534 81.2797,59.2684 C81.7027,59.0444 82.2717,59.0944 82.8987,59.4704 L66.0277,68.4264 C65.4007,68.0504 64.8327,68.0014 64.4087,68.2244" id="Fill-545" fill="#636466" fill-rule="evenodd"></path> - <g id="Group-556" stroke-width="1" fill-rule="evenodd" transform="translate(64.000000, 58.663000)"> - <g id="Group-549"> - <mask id="mask-106" fill="white"> - <use xlink:href="#path-105"></use> - </mask> - <g id="Clip-548"></g> - <path d="M0.4087,9.5614 L17.2797,0.6054 C17.4707,0.5054 17.6907,0.4594 17.9317,0.4754 L1.0617,9.4294 C0.8217,9.4144 0.5977,9.4594 0.4087,9.5614" id="Fill-547" fill="#636466" mask="url(#mask-106)"></path> - </g> - <g id="Group-552"> - <mask id="mask-108" fill="white"> - <use xlink:href="#path-107"></use> - </mask> - <g id="Clip-551"></g> - <path d="M1.062,9.429 L17.932,0.475 C18.141,0.487 18.364,0.545 18.6,0.651 L1.728,9.606 C1.494,9.5 1.271,9.444 1.062,9.429" id="Fill-550" fill="#898B8E" mask="url(#mask-108)"></path> - </g> - <g id="Group-555"> - <mask id="mask-110" fill="white"> - <use xlink:href="#path-109"></use> - </mask> - <g id="Clip-554"></g> - <path d="M1.7281,9.6063 L18.6001,0.6503 C18.6981,0.6943 18.7981,0.7473 18.8991,0.8073 L2.0281,9.7633 C1.9271,9.7033 1.8281,9.6503 1.7281,9.6063" id="Fill-553" fill="#989A9D" mask="url(#mask-110)"></path> - </g> - </g> - <g id="Group-559" stroke-width="1" fill-rule="evenodd" transform="translate(84.000000, 93.663000)"> - <mask id="mask-112" fill="white"> - <use xlink:href="#path-111"></use> - </mask> - <g id="Clip-558"></g> - <path d="M0.9839,10.0672 L17.8539,1.1122 C17.8079,1.5652 17.6219,1.8812 17.3409,2.0302 L0.4709,10.9852 C0.7489,10.8372 0.9369,10.5212 0.9839,10.0672" id="Fill-557" fill="#ABAEB0" mask="url(#mask-112)"></path> - </g> - <path d="M101.8189,96.593 L84.9479,105.549 C85.4069,105.304 85.6919,104.739 85.6949,103.921 L102.5649,94.967 C102.5649,95.783 102.2779,96.35 101.8189,96.593" id="Fill-560" fill="#626366" fill-rule="evenodd"></path> - <g id="Group-568" stroke-width="1" fill-rule="evenodd" transform="translate(84.000000, 94.663000)"> - <g id="Group-564"> - <mask id="mask-114" fill="white"> - <use xlink:href="#path-113"></use> - </mask> - <g id="Clip-563"></g> - <path d="M1.6949,9.2581 L18.5649,0.3031 C18.5649,0.4141 18.5589,0.5221 18.5489,0.6241 L1.6779,9.5791 C1.6879,9.4771 1.6949,9.3691 1.6949,9.2581" id="Fill-562" fill="#808184" mask="url(#mask-114)"></path> - </g> - <g id="Group-567"> - <mask id="mask-116" fill="white"> - <use xlink:href="#path-115"></use> - </mask> - <g id="Clip-566"></g> - <path d="M1.6783,9.5789 L18.5493,0.6239 C18.4843,1.2679 18.2143,1.7199 17.8193,1.9299 L0.9483,10.8859 C1.3443,10.6749 1.6103,10.2229 1.6783,9.5789" id="Fill-565" fill="#76787A" mask="url(#mask-116)"></path> - </g> - </g> - <g id="Group-577" stroke-width="1" fill-rule="evenodd" transform="translate(66.000000, 58.663000)"> - <polygon id="Fill-569" fill="#DCDEDF" points="0.0279 10.6014 16.8999 1.6454 34.1849 12.0324 17.3129 20.9884"></polygon> - <polygon id="Fill-571" fill="#BDBFC1" points="18.98 23.9969 35.853 15.0409 35.866 35.8839 18.997 44.8389"></polygon> - <polygon id="Fill-573" fill="#B3B5B7" points="0.0279 9.763 16.8989 0.807 34.1849 11.193 17.3119 20.15"></polygon> - <polygon id="Fill-575" fill="#898B8E" points="19.6783 24.4163 36.5513 15.4613 36.5653 36.3033 19.6953 45.2583"></polygon> - </g> - <g id="Group-608" stroke-width="1" fill-rule="evenodd" transform="translate(83.000000, 70.663000)"> - <g id="Group-580"> - <mask id="mask-118" fill="white"> - <use xlink:href="#path-117"></use> - </mask> - <g id="Clip-579"></g> - <path d="M0.313,8.9886 L17.185,0.0316 C17.276,0.0876 17.368,0.1506 17.456,0.2216 L0.583,9.1756 C0.496,9.1056 0.407,9.0426 0.313,8.9886" id="Fill-578" fill="#E0E1E2" mask="url(#mask-118)"></path> - </g> - <g id="Group-583"> - <mask id="mask-120" fill="white"> - <use xlink:href="#path-119"></use> - </mask> - <g id="Clip-582"></g> - <path d="M0.5826,9.1761 L17.4556,0.2211 C17.5676,0.3121 17.6776,0.4121 17.7816,0.5251 L0.9106,9.4801 C0.8066,9.3691 0.6966,9.2661 0.5826,9.1761" id="Fill-581" fill="#FEFEFE" mask="url(#mask-120)"></path> - </g> - <g id="Group-586"> - <mask id="mask-122" fill="white"> - <use xlink:href="#path-121"></use> - </mask> - <g id="Clip-585"></g> - <path d="M0.9107,9.4798 L17.7817,0.5248 C17.8477,0.5928 17.9127,0.6678 17.9727,0.7438 L1.1017,9.6988 C1.0407,9.6238 0.9757,9.5488 0.9107,9.4798" id="Fill-584" fill="#FEFEFE" mask="url(#mask-122)"></path> - </g> - <g id="Group-589"> - <mask id="mask-124" fill="white"> - <use xlink:href="#path-123"></use> - </mask> - <g id="Clip-588"></g> - <path d="M1.1021,9.6991 L17.9721,0.7441 C18.0341,0.8191 18.0901,0.8971 18.1461,0.9761 L1.2731,9.9321 C1.2191,9.8521 1.1631,9.7751 1.1021,9.6991" id="Fill-587" fill="#FEFEFE" mask="url(#mask-124)"></path> - </g> - <g id="Group-592"> - <mask id="mask-126" fill="white"> - <use xlink:href="#path-125"></use> - </mask> - <g id="Clip-591"></g> - <path d="M1.273,9.932 L18.146,0.976 C18.243,1.118 18.333,1.268 18.415,1.423 L1.542,10.379 C1.462,10.224 1.373,10.074 1.273,9.932" id="Fill-590" fill="#FEFEFE" mask="url(#mask-126)"></path> - </g> - <g id="Group-595"> - <mask id="mask-128" fill="white"> - <use xlink:href="#path-127"></use> - </mask> - <g id="Clip-594"></g> - <path d="M1.5415,10.3787 L18.4145,1.4227 C18.4575,1.5047 18.4985,1.5887 18.5355,1.6777 L1.6655,10.6307 C1.6265,10.5457 1.5875,10.4617 1.5415,10.3787" id="Fill-593" fill="#FEFEFE" mask="url(#mask-128)"></path> - </g> - <g id="Group-598"> - <mask id="mask-130" fill="white"> - <use xlink:href="#path-129"></use> - </mask> - <g id="Clip-597"></g> - <path d="M1.6656,10.6312 L18.5356,1.6772 C18.5696,1.7532 18.6026,1.8292 18.6286,1.9072 L1.7586,10.8612 C1.7286,10.7852 1.6976,10.7082 1.6656,10.6312" id="Fill-596" fill="#FEFEFE" mask="url(#mask-130)"></path> - </g> - <g id="Group-601"> - <mask id="mask-132" fill="white"> - <use xlink:href="#path-131"></use> - </mask> - <g id="Clip-600"></g> - <path d="M1.7583,10.8616 L18.6283,1.9066 C18.6663,2.0056 18.6973,2.1056 18.7283,2.2056 L1.8573,11.1616 C1.8283,11.0606 1.7953,10.9606 1.7583,10.8616" id="Fill-599" fill="#FEFEFE" mask="url(#mask-132)"></path> - </g> - <g id="Group-604"> - <mask id="mask-134" fill="white"> - <use xlink:href="#path-133"></use> - </mask> - <g id="Clip-603"></g> - <path d="M1.857,11.1615 L18.728,2.2055 C18.773,2.3715 18.808,2.5355 18.829,2.6945 L1.958,11.6495 C1.937,11.4885 1.903,11.3245 1.857,11.1615" id="Fill-602" fill="#E0E1E2" mask="url(#mask-134)"></path> - </g> - <g id="Group-607"> - <mask id="mask-136" fill="white"> - <use xlink:href="#path-135"></use> - </mask> - <g id="Clip-606"></g> - <path d="M1.9576,11.6497 L18.8286,2.6947 C18.8446,2.8117 18.8516,2.9277 18.8536,3.0407 L1.9796,11.9967 C1.9796,11.8827 1.9736,11.7677 1.9576,11.6497" id="Fill-605" fill="#C6C7C9" mask="url(#mask-136)"></path> - </g> - </g> - <g id="Group-613" stroke-width="1" fill-rule="evenodd" transform="translate(63.000000, 67.663000)"> - <path d="M21.9966,35.8387 L21.9796,14.9967 C21.9796,13.8857 21.2356,12.5417 20.3126,11.9887 L3.0276,1.6017 C2.1066,1.0487 1.3636,1.4997 1.3636,2.6097 L1.3796,23.4507 C1.3796,24.5577 2.1246,25.9027 3.0466,26.4597 L20.3316,36.8457 C21.2526,37.3977 21.9966,36.9457 21.9966,35.8387 Z M20.3116,11.1497 C21.6196,11.9337 22.6756,13.8387 22.6786,15.4167 L22.6946,36.2577 C22.6916,37.8287 21.6386,38.4707 20.3316,37.6857 L3.0476,27.2987 C1.7406,26.5137 0.6826,24.6027 0.6796,23.0327 L0.6656,2.1897 C0.6646,0.6147 1.7226,-0.0213 3.0276,0.7627 L20.3116,11.1497 Z" id="Fill-609" fill="#636466"></path> - <path d="M20.313,11.9886 C21.236,12.5416 21.98,13.8856 21.98,14.9966 L21.997,35.8386 C21.997,36.9456 21.252,37.3976 20.332,36.8456 L3.046,26.4596 C2.125,25.9026 1.379,24.5576 1.379,23.4506 L1.364,2.6096 C1.364,1.4996 2.107,1.0496 3.028,1.6016 L20.313,11.9886 Z" id="Fill-611" fill="#F5F6F6"></path> - </g> - <g id="Group-644" stroke-width="1" fill-rule="evenodd" transform="translate(83.000000, 69.663000)"> - <g id="Group-616"> - <mask id="mask-138" fill="white"> - <use xlink:href="#path-137"></use> - </mask> - <g id="Clip-615"></g> - <path d="M0.312,9.1497 L17.185,0.1927 C17.315,0.2717 17.441,0.3617 17.567,0.4617 L0.696,9.4167 C0.571,9.3157 0.443,9.2287 0.312,9.1497" id="Fill-614" fill="#B3B5B7" mask="url(#mask-138)"></path> - </g> - <g id="Group-619"> - <mask id="mask-140" fill="white"> - <use xlink:href="#path-139"></use> - </mask> - <g id="Clip-618"></g> - <path d="M0.6958,9.4163 L17.5668,0.4613 C17.7268,0.5883 17.8828,0.7333 18.0308,0.8903 L1.1598,9.8463 C1.0108,9.6893 0.8568,9.5443 0.6958,9.4163" id="Fill-617" fill="#B3B5B7" mask="url(#mask-140)"></path> - </g> - <g id="Group-622"> - <mask id="mask-142" fill="white"> - <use xlink:href="#path-141"></use> - </mask> - <g id="Clip-621"></g> - <path d="M1.1597,9.846 L18.0307,0.89 C18.1237,0.99 18.2167,1.095 18.3027,1.202 L1.4307,10.159 C1.3437,10.05 1.2537,9.945 1.1597,9.846" id="Fill-620" fill="#BBBDBF" mask="url(#mask-142)"></path> - </g> - <g id="Group-625"> - <mask id="mask-144" fill="white"> - <use xlink:href="#path-143"></use> - </mask> - <g id="Clip-624"></g> - <path d="M1.4312,10.1595 L18.3022,1.2025 C18.3872,1.3085 18.4682,1.4195 18.5472,1.5325 L1.6752,10.4875 C1.5972,10.3745 1.5172,10.2655 1.4312,10.1595" id="Fill-623" fill="#D2D4D5" mask="url(#mask-144)"></path> - </g> - <g id="Group-628"> - <mask id="mask-146" fill="white"> - <use xlink:href="#path-145"></use> - </mask> - <g id="Clip-627"></g> - <path d="M1.6753,10.4876 L18.5473,1.5326 C18.6863,1.7346 18.8143,1.9466 18.9283,2.1676 L2.0583,11.1226 C1.9443,10.9026 1.8153,10.6896 1.6753,10.4876" id="Fill-626" fill="#E1E2E3" mask="url(#mask-146)"></path> - </g> - <g id="Group-631"> - <mask id="mask-148" fill="white"> - <use xlink:href="#path-147"></use> - </mask> - <g id="Clip-630"></g> - <path d="M2.0581,11.1229 L18.9281,2.1669 C18.9901,2.2849 19.0471,2.4049 19.1021,2.5259 L2.2291,11.4809 C2.1761,11.3589 2.1201,11.2399 2.0581,11.1229" id="Fill-629" fill="#D2D4D5" mask="url(#mask-148)"></path> - </g> - <g id="Group-634"> - <mask id="mask-150" fill="white"> - <use xlink:href="#path-149"></use> - </mask> - <g id="Clip-633"></g> - <path d="M2.229,11.4813 L19.102,2.5253 C19.149,2.6333 19.192,2.7433 19.234,2.8513 L2.364,11.8093 C2.324,11.6973 2.278,11.5883 2.229,11.4813" id="Fill-632" fill="#B3B5B7" mask="url(#mask-150)"></path> - </g> - <g id="Group-637"> - <mask id="mask-152" fill="white"> - <use xlink:href="#path-151"></use> - </mask> - <g id="Clip-636"></g> - <path d="M2.3638,11.8089 L19.2338,2.8509 C19.2878,2.9949 19.3338,3.1379 19.3738,3.2809 L2.5038,12.2349 C2.4638,12.0929 2.4168,11.9499 2.3638,11.8089" id="Fill-635" fill="#898B8E" mask="url(#mask-152)"></path> - </g> - <g id="Group-640"> - <mask id="mask-154" fill="white"> - <use xlink:href="#path-153"></use> - </mask> - <g id="Clip-639"></g> - <path d="M2.5034,12.2347 L19.3734,3.2807 C19.4404,3.5117 19.4894,3.7457 19.5174,3.9747 L2.6464,12.9297 C2.6164,12.7007 2.5674,12.4687 2.5034,12.2347" id="Fill-638" fill="#898B8E" mask="url(#mask-154)"></path> - </g> - <g id="Group-643"> - <mask id="mask-156" fill="white"> - <use xlink:href="#path-155"></use> - </mask> - <g id="Clip-642"></g> - <path d="M2.646,12.93 L19.517,3.974 C19.539,4.138 19.549,4.302 19.551,4.462 L2.678,13.416 C2.678,13.257 2.667,13.095 2.646,12.93" id="Fill-641" fill="#898B8E" mask="url(#mask-156)"></path> - </g> - </g> - <g id="Group-655" stroke-width="1" fill-rule="evenodd" transform="translate(65.000000, 75.663000)"> - <path d="M11.5835,11.9998 C11.5835,13.4788 10.5225,14.0398 9.2155,13.2548 C7.9085,12.4678 6.8475,10.6318 6.8475,9.1528 C6.8475,7.6728 7.9085,7.1108 9.2155,7.8978 C10.5225,8.6838 11.5835,10.5208 11.5835,11.9998" id="Fill-645" fill="#626366"></path> - <path d="M9.2115,11.7196 L9.2115,21.3846" id="Stroke-647" stroke="#626366" stroke-width="1.854" stroke-linecap="round" stroke-linejoin="round"></path> - <path d="M10.5962,10.743 C10.5962,11.09 10.3472,11.222 10.0382,11.037 C9.7332,10.854 9.4852,10.423 9.4852,10.076 C9.4852,9.729 9.7332,9.597 10.0382,9.781 C10.3472,9.967 10.5962,10.396 10.5962,10.743" id="Fill-649" fill="#FEFEFE"></path> - <path d="M15.0913,14.2752 C14.6733,10.7352 12.1773,6.7042 9.1533,4.8852 C6.1613,3.0882 3.6883,4.0782 3.2313,7.0392" id="Stroke-651" stroke="#626366" stroke-width="1.246" stroke-linecap="round" stroke-linejoin="round"></path> - <path d="M17.7193,13.4593 C17.6473,13.1793 17.5673,12.8973 17.4793,12.6153 C16.1283,8.2163 12.9873,3.8133 9.3233,1.6093 C5.4523,-0.7157 2.1693,0.1113 0.9563,3.2903" id="Stroke-653" stroke="#626366" stroke-width="1.246" stroke-linecap="round" stroke-linejoin="round"></path> - </g> - </g> - </g> - </g> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="105" height="107"><style><![CDATA[.B{fill:#fff}.C{fill:#231f20}.D{fill:#fefefe}.E{stroke-linejoin:round}.F{fill:#626366}.G{stroke:#636466}.H{stroke-width:2}.I{stroke-linecap:round}.J{fill:#898b8e}.K{fill:#b3b5b7}.L{stroke:#626366}.M{fill:#bbbdbf}.N{stroke-width:3}.O{stroke:#e1e2e3}.P{fill:#e0e1e2}.Q{fill:#636466}.R{stroke-width:2.668}]]></style><defs><path d="M1.17 9.44C.845 9.61.644 10 .644 10.6l16.873-8.957c-.001-.577.2-.978.522-1.15L1.17 9.44" id="A"/><path d="M.612 9.826c.442.263.84.297 1.14.14L18.622 1c-.296.158-.698.123-1.14-.14" id="B"/><path d="M17.04.484L.17 9.44c.297-.157.697-.122 1.14.142L18.18.626c-.268-.16-.52-.237-.745-.237-.146 0-.28.033-.397.095" id="C"/><path d="M17.56.585L.69 9.54c.424-.223.992-.174 1.62.202L19.18.787C18.8.56 18.44.45 18.123.45a1.19 1.19 0 0 0-.563.134" id="D"/><path d="M1.277 9.818c0 .576-.203.975-.526 1.147L17.622 2c.324-.173.524-.57.524-1.147" id="E"/><path d="M.975 9.238c-.003.818-.288 1.382-.747 1.627L17.1 1.91c.46-.242.746-.81.746-1.626" id="F"/><path d="M.594 8.97c.922.552 1.666 1.897 1.666 3.007L19.134 3.02c-.004-1.11-.75-2.454-1.67-3.008" id="G"/><path d="M.592 9.13c1.308.784 2.363 2.69 2.367 4.267L19.83 4.442c-.005-1.577-1.06-3.484-2.366-4.27" id="H"/><path d="M.38 9.45c0 1.107.745 2.45 1.666 3.008l16.872-8.954c-.922-.557-1.666-1.902-1.67-3.01" id="I"/><path d="M.888 9.46c-.323.172-.525.57-.525 1.15l16.874-8.955c-.002-.578.2-.978.523-1.15L.888 9.46" id="J"/><path d="M.332 9.846c.44.264.84.297 1.14.14l16.87-8.954c-.296.157-.698.122-1.14-.14" id="K"/><path d="M17.76.505L.888 9.46c.298-.157.7-.123 1.14.14L18.9.645c-.267-.16-.52-.236-.743-.236a.83.83 0 0 0-.397.096" id="L"/><path d="M17.28.606L.408 9.56c.424-.223.993-.174 1.62.202L18.9.808C18.52.58 18.16.47 17.843.47c-.207 0-.396.046-.563.135" id="M"/><path d="M.997 9.838c0 .576-.204.976-.526 1.147l16.87-8.954c.324-.173.524-.57.524-1.147" id="N"/><path d="M1.695 9.258c-.003.82-.288 1.383-.747 1.628L17.82 1.93c.46-.243.746-.81.746-1.626" id="O"/><path d="M.313 8.988c.923.553 1.667 1.898 1.667 3.01L18.853 3.04c-.003-1.1-.748-2.455-1.668-3.01" id="P"/><path d="M.312 9.15c1.308.783 2.363 2.69 2.366 4.266L19.55 4.46C19.545 2.885 18.49.977 17.185.194" id="Q"/><path id="R" d="M49.348 82.546l11.71-6.215.003 3.297-11.7 6.217z"/><path id="S" d="M19.45 64.58l11.71-6.215 29.9 17.965-11.71 6.215z"/><path id="T" d="M49.348 82.546l.002 3.3-29.9-17.967V64.58z"/><path id="U" d="M30.4 94.478l11.71-6.215v3.297l-11.71 6.217z"/><path id="V" d="M.5 76.514l11.71-6.217 29.9 17.966-11.71 6.215z"/><path id="W" d="M30.4 94.478l.002 3.3L.502 79.81.5 76.514z"/><path id="X" d="M6.4 75.41l1.458-.773 1.257.755-1.458.774z"/><path id="Y" d="M8.26 76.53l1.458-.775 1.257.755-1.458.774z"/><path id="Z" d="M17.828 82.278l1.46-.773 1.256.755-1.457.774z"/><path id="a" d="M20.947 84.15l1.457-.773v.283l-1.457.773z"/><path id="b" d="M19.69 83.397l1.457-.775 1.258.755-1.457.774z"/><path id="c" d="M26.59 87.543l1.46-.775v.283l-1.46.773z"/><path id="d" d="M25.334 86.787l1.457-.773 1.258.753-1.46.776z"/><path id="e" d="M28.457 88.664l1.46-.773v.283l-1.46.773z"/><path id="f" d="M29.128 89.068l1.457-.775 1.258.755-1.46.774z"/><path id="g" d="M32.21 90.918l1.457-.773.002.283-1.46.773z"/><path id="h" d="M30.95 90.164l1.46-.775 1.256.755-1.457.774z"/></defs><g transform="translate(1)" fill="none" fill-rule="evenodd"><g class="E L N"><use xlink:href="#R"/><use xlink:href="#S"/><use xlink:href="#T"/></g><use xlink:href="#R" class="J"/><use xlink:href="#S" class="M"/><use xlink:href="#T" class="K"/><g class="E"><path d="M19.69 64.614l29.4 17.67v3.205" class="I O"/><path d="M68.045 36.83l5.186-2.753.036 50.778L68.08 87.6z" class="L R"/><g class="L R"><path d="M13.55 4.088l5.187-2.754L73.23 34.078l-5.186 2.753z"/><path d="M68.045 36.83l.035 50.78-54.494-32.744-.036-50.778z"/></g></g><path d="M68.043 36.83l5.187-2.753.036 50.778L68.08 87.6z" class="J"/><path d="M13.55 4.088l5.186-2.754L73.23 34.078l-5.188 2.753z" class="M"/><path d="M68.043 36.83l.037 50.78-54.495-32.744-.035-50.778z" class="K"/><path d="M65.19 81.903L15.526 51.698V8.783L65.19 38.985z" class="D"/><path d="M46.764 30.58l16.483 9.902.092 9.216s-.293-6.608-5.193-10.75C51.9 33.663 46.764 30.58 46.764 30.58" fill="#c4cace"/><path d="M14.184 55.915l53.9 32.38" stroke-width="1.156" class="G"/><path stroke-width=".889" d="M14.008 4.258l54.015 32.455.037 50.465" class="E I O"/><path d="M73.906 68.106v13.342" stroke-width="1.29" class="G"/><path d="M48.556 94.163s1.375-.734 2.5-.766 2.516.64 2.516.64 1.375.734 2.046 1.437.72.985.766 1.235.03.828-.047.953-7.75 4.094-7.75 4.094-.453.203-1.187.093-2-1-2.407-1.578-.375-1.468-.375-1.468.016-1.047 1.39-2.6c.906-1.094 2.547-2.03 2.547-2.03z" class="E L N"/><path d="M48.556 94.163s1.375-.734 2.5-.766 2.516.64 2.516.64 1.377.734 2.046 1.437.72.985.766 1.235.03.828-.047.953-7.75 4.094-7.75 4.094-.453.203-1.187.093-2-1-2.407-1.578-.375-1.468-.375-1.468.016-1.047 1.39-2.6c.906-1.094 2.547-2.03 2.547-2.03" class="M"/><path d="M48.757 101.452c.012-.1.89-2.55 3.768-4.107 2.884-1.518 3.548.12 3.5-.223l-.006.547-7.19 3.836" class="J"/><path d="M46.462 99.89c.187-.75 1.266-2.39 1.992-3.14s1.36-1.242 2.46-1.804 2.438-.985 3.094-.657 1.57 1.15 1.945 1.64.28 1.008.28 1.008-1.382-.47-2.203-.188-2.133.938-2.976 1.758-1.172 1.9-1.758 2.578-1.71.774-1.71.774-1.148-.235-1.266-.446-.046-.773.14-1.523" class="K"/><path d="M48.37 97.247l-.504-.303c-.918.996-1.445 1.975-1.7 2.524l.506.302c.252-.548.78-1.53 1.697-2.523" fill="#e1e2e3"/><g class="E L N"><use xlink:href="#U"/><use xlink:href="#V"/><use xlink:href="#W"/></g><use xlink:href="#U" class="J"/><use xlink:href="#V" class="M"/><use xlink:href="#W" class="K"/><path d="M7.657 76.167l1.458-.773v.28l-1.458.775z" class="C"/><use xlink:href="#X" class="D"/><path d="M7.657 76.167v.283L6.4 75.694v-.283z" class="F"/><path d="M9.518 77.284l1.458-.773v.283l-1.458.773z" class="C"/><use xlink:href="#Y" class="D"/><path d="M9.518 77.284v.283L8.26 76.81v-.28z" class="F"/><path d="M11.47 78.458l1.457-.773.001.283-1.458.773z" class="C"/><path d="M10.214 77.702l1.458-.773 1.256.755-1.457.774z" class="D"/><path d="M11.47 78.458v.283l-1.257-.756v-.283z" class="F"/><path d="M13.338 79.58l1.457-.775.001.283-1.458.773z" class="C"/><path d="M12.08 78.825l1.458-.773 1.256.753-1.457.776z" class="D"/><path d="M13.338 79.58v.28l-1.257-.754v-.283z" class="F"/><path d="M15.266 80.74l1.458-.775v.283l-1.458.773z" class="C"/><path d="M14.01 79.983l1.458-.773 1.257.753-1.458.776z" class="D"/><path d="M15.266 80.74v.28l-1.257-.754v-.283z" class="F"/><path d="M17.132 81.86l1.46-.773v.28l-1.46.775z" class="C"/><path d="M15.87 81.1l1.46-.773 1.264.76-1.46.774z" class="D"/><path d="M17.132 81.86v.283l-1.264-.76V81.1z" class="F"/><path d="M19.086 83.034l1.457-.773.002.28-1.46.773z" class="C"/><use xlink:href="#Z" class="D"/><path d="M19.086 83.034v.28l-1.256-.754-.002-.283z" class="F"/><use xlink:href="#a" class="C"/><use xlink:href="#b" class="D"/><path d="M20.947 84.15v.283l-1.258-.756v-.28z" class="F"/><path d="M22.777 85.252l1.457-.774v.283l-1.457.772z" class="C"/><path d="M21.52 84.497l1.46-.775 1.256.755-1.457.775z" class="D"/><path d="M22.777 85.252v.28l-1.258-.755v-.28z" class="F"/><path d="M24.636 86.37l1.46-.773v.28l-1.46.775z" class="C"/><path d="M23.38 85.613l1.457-.772 1.258.754-1.46.774z" class="D"/><path d="M24.636 86.37v.283l-1.256-.756v-.283z" class="F"/><use xlink:href="#c" class="C"/><use xlink:href="#d" class="D"/><path d="M26.59 87.543v.28l-1.256-.754v-.283z" class="F"/><use xlink:href="#e" class="C"/><path d="M27.2 87.908l1.457-.773 1.258.755-1.46.774z" class="D"/><path d="M28.457 88.664v.283L27.2 88.19v-.283z" class="F"/><use xlink:href="#e" x="1.927" y="1.158" class="C"/><use xlink:href="#f" class="D"/><path d="M30.384 89.822v.283l-1.256-.756v-.28z" class="F"/><use xlink:href="#g" class="C"/><use xlink:href="#h" class="D"/><path d="M32.21 90.918v.283l-1.256-.756-.002-.28z" class="F"/><path d="M9.657 75.042l1.458-.773v.28l-1.458.775z" class="C"/><use xlink:href="#X" x="2" y="-1.124" class="D"/><path d="M9.657 75.042v.283L8.4 74.57v-.283z" class="F"/><path d="M11.518 76.16l1.458-.773v.283l-1.458.773z" class="C"/><use xlink:href="#Y" x="2" y="-1.125" class="D"/><path d="M11.518 76.16v.283l-1.257-.756v-.28z" class="F"/><path d="M13.47 77.333l1.457-.773.001.283-1.458.773z" class="C"/><path d="M12.214 76.577l1.458-.773 1.256.755-1.457.774z" class="D"/><path d="M13.47 77.333v.283l-1.257-.756v-.283z" class="F"/><path d="M15.337 78.456l1.457-.775.002.283-1.46.773z" class="C"/><path d="M14.08 77.7l1.458-.773 1.255.753-1.457.776z" class="D"/><path d="M15.337 78.456v.28l-1.256-.754V77.7z" class="F"/><use xlink:href="#c" x="-9.325" y="-7.929" class="C"/><use xlink:href="#d" x="-9.324" y="-7.929" class="D"/><path d="M17.265 79.614v.28l-1.256-.754v-.283z" class="F"/><path d="M19.132 80.735l1.46-.773v.28l-1.46.775z" class="C"/><path d="M17.87 79.975l1.46-.773 1.264.76-1.46.774z" class="D"/><path d="M19.132 80.735v.283l-1.264-.76v-.283z" class="F"/><path d="M21.086 81.91l1.457-.773.002.28-1.46.773z" class="C"/><use xlink:href="#Z" x="2" y="-1.125" class="D"/><path d="M21.086 81.91v.28l-1.256-.754-.002-.283z" class="F"/><use xlink:href="#a" x="2" y="-1.124" class="C"/><use xlink:href="#b" x="2" y="-1.125" class="D"/><path d="M22.947 83.026v.283l-1.258-.756v-.28z" class="F"/><use xlink:href="#a" x="3.83" y="-0.024" class="C"/><use xlink:href="#h" x="-7.43" y="-6.792" class="D"/><path d="M24.777 84.126v.283l-1.258-.756v-.28z" class="F"/><path d="M26.636 85.244l1.46-.774v.283l-1.46.774z" class="C"/><path d="M25.38 84.49l1.457-.773 1.258.753-1.46.775z" class="D"/><path d="M26.636 85.244v.283l-1.256-.755v-.283z" class="F"/><use xlink:href="#c" x="2" y="-1.125" class="C"/><path d="M27.334 85.662l1.457-.772 1.258.752-1.46.776z" class="D"/><path d="M28.59 86.418v.28l-1.256-.754v-.283z" class="F"/><use xlink:href="#e" x="2" y="-1.124" class="C"/><path d="M29.2 86.783L30.658 86l1.258.755-1.46.774z" class="D"/><path d="M30.457 87.54v.283l-1.256-.756v-.283z" class="F"/><use xlink:href="#e" x="3.927" y="0.033" class="C"/><use xlink:href="#f" x="2" y="-1.125" class="D"/><path d="M32.384 88.697v.283l-1.256-.756v-.28z" class="F"/><use xlink:href="#g" x="2" y="-1.125" class="C"/><use xlink:href="#h" x="2" y="-1.124" class="D"/><path d="M34.21 89.793v.283l-1.256-.756-.002-.28z" class="F"/><path d="M11.782 73.917l1.458-.773v.28l-1.458.775z" class="C"/><use xlink:href="#X" x="4.125" y="-2.25" class="D"/><path d="M11.782 73.917v.283l-1.257-.756v-.283z" class="F"/><path d="M13.643 75.034l1.458-.773v.283l-1.458.773z" class="C"/><use xlink:href="#Y" x="4.126" y="-2.25" class="D"/><path d="M13.643 75.034v.283l-1.257-.756v-.28z" class="F"/><use xlink:href="#g" x="-16.615" y="-14.71" class="C"/><path d="M14.34 75.452l1.458-.773 1.255.755-1.457.774z" class="D"/><path d="M15.595 76.208v.283l-1.256-.756v-.283z" class="F"/><path d="M17.462 77.33l1.457-.775v.283l-1.46.773z" class="C"/><path d="M16.207 76.575l1.457-.773 1.256.753-1.457.776z" class="D"/><path d="M17.462 77.33v.28l-1.256-.754v-.283z" class="F"/><use xlink:href="#c" x="-7.19" y="-9.053" class="C"/><use xlink:href="#d" x="-7.2" y="-9.054" class="D"/><path d="M19.4 78.49v.28l-1.256-.754v-.283z" class="F"/><path d="M21.257 79.6l1.46-.773v.28l-1.46.775z" class="C"/><path d="M19.994 78.85l1.46-.773 1.264.76-1.46.774z" class="D"/><path d="M21.257 79.6v.283l-1.264-.76v-.283z" class="F"/><path d="M23.21 80.784l1.457-.773.002.28-1.46.773z" class="C"/><use xlink:href="#Z" x="4.125" y="-2.25" class="D"/><path d="M23.21 80.784v.28l-1.256-.754-.002-.283z" class="F"/><use xlink:href="#a" x="4.125" y="-2.25" class="C"/><use xlink:href="#b" x="4.124" y="-2.25" class="D"/><path d="M25.072 81.9v.283l-1.258-.756v-.28z" class="F"/><use xlink:href="#a" x="5.955" y="-1.15" class="C"/><use xlink:href="#h" x="-5.306" y="-7.917" class="D"/><path d="M26.902 83v.283l-1.258-.756v-.28z" class="F"/><use xlink:href="#c" x="2.17" y="-3.423" class="C"/><use xlink:href="#d" x="2.171" y="-3.423" class="D"/><path d="M28.76 84.12v.28l-1.256-.754v-.283z" class="F"/><path d="M30.714 85.293l1.46-.774v.283l-1.46.772z" class="C"/><path d="M29.46 84.538l1.457-.773 1.258.753-1.46.775z" class="D"/><path d="M30.714 85.293v.28l-1.256-.755v-.28z" class="F"/><use xlink:href="#e" x="4.125" y="-2.25" class="C"/><path d="M31.326 85.658l1.457-.772 1.258.754-1.46.774z" class="D"/><path d="M32.582 86.414v.283l-1.256-.756v-.283z" class="F"/><use xlink:href="#e" x="6.053" y="-1.092" class="C"/><use xlink:href="#f" x="4.125" y="-2.25" class="D"/><path d="M34.51 87.572v.283l-1.256-.756v-.28z" class="F"/><use xlink:href="#g" x="4.124" y="-2.25" class="C"/><use xlink:href="#h" x="4.126" y="-2.25" class="D"/><path d="M36.334 88.668v.283l-1.256-.756-.002-.28z" class="F"/><path d="M6.266 77.845l1.458-.775v.275l-1.458.773z" class="C"/><path d="M5.008 77.09l1.458-.773 1.258.753-1.458.776z" class="D"/><path d="M6.266 77.845v.273l-1.257-.755-.001-.274z" class="F"/><path d="M8.034 78.907l1.458-.775v.275l-1.458.773z" class="C"/><path d="M6.777 78.15l1.458-.773 1.257.753-1.458.776z" class="D"/><path d="M8.034 78.907v.273l-1.257-.753v-.276z" class="F"/><path d="M9.895 80.024l1.458-.773v.273l-1.458.775z" class="C"/><use xlink:href="#X" x="2.238" y="3.858" class="D"/><path d="M9.895 80.024v.275l-1.257-.755v-.276z" class="F"/><path d="M25.453 89.343l1.46-.773v.273l-1.46.775z" class="C"/><path d="M24.195 88.588l1.46-.773 1.258.755-1.46.774z" class="D"/><path d="M25.453 89.343v.275l-1.256-.755-.002-.276z" class="F"/><path d="M27.222 90.406l1.457-.773v.273l-1.457.775z" class="C"/><use xlink:href="#Z" x="8.136" y="7.372" class="D"/><path d="M27.222 90.406v.275l-1.258-.755v-.276z" class="F"/><path d="M29.082 91.523l1.46-.773v.275l-1.46.773z" class="C"/><use xlink:href="#f" x="-1.302" y="1.702" class="D"/><path d="M29.082 91.523v.275l-1.256-.755v-.274z" class="F"/><path d="M23.466 88.19l1.46-.773v.275l-1.46.773z" class="C"/><path d="M10.572 80.442l1.458-.773 12.895 7.747-1.46.773z" class="D"/><path d="M23.466 88.19v.275l-12.894-7.747v-.275z" class="F"/><path d="M.742 76.548l29.4 17.67v3.205" class="E I O"/><g transform="translate(64 59.663)"><mask id="i" class="B"><use xlink:href="#A"/></mask><path d="M1.17 9.44L18.04.484c-.278.148-.466.464-.513.92L.656 10.357c.047-.454.236-.772.513-.918" mask="url(#i)" class="E G H I"/><mask id="j" class="B"><use xlink:href="#B" href="#A"/></mask><path d="M.656 10.358l16.87-8.955a2.42 2.42 0 0 0-.01.23L.644 10.59a1.91 1.91 0 0 1 .012-.231" mask="url(#j)" class="E G H I"/></g><path d="M65.168 69.102l16.87-8.955c-.323.17-.524.57-.522 1.15l-16.873 8.956c0-.58.2-.978.524-1.15z" class="E G H"/><g transform="translate(83 94.663)"><mask id="k" class="B"><use xlink:href="#B"/></mask><path d="M.612 9.826L17.483.87c.07.042.14.078.206.108L.82 9.934C.75 9.904.68 9.867.612 9.826" mask="url(#k)" class="E G H I"/><mask id="l" class="B"><use xlink:href="#D" href="#B"/></mask><path d="M.82 9.933L17.69.977c.168.076.325.116.47.125L1.3 10.057c-.147-.01-.306-.05-.47-.124" mask="url(#l)" class="E G H I"/><mask id="m" class="B"><use xlink:href="#E" href="#B"/></mask><path d="M1.3 10.057l16.87-8.955c.173.01.328-.022.462-.092L1.752 9.964c-.135.072-.29.104-.462.093" mask="url(#m)" class="E G H I"/></g><path d="M101.622 95.673l-16.87 8.955c-.3.158-.698.124-1.14-.14l16.87-8.955c.442.263.843.298 1.14.14z" class="E G H"/><g transform="translate(65 59.663)"><mask id="n" class="B"><use xlink:href="#C"/></mask><path d="M.17 9.44L17.04.484c.135-.07.3-.104.46-.093L.63 9.347c-.173-.01-.325.02-.46.092" mask="url(#n)" class="E G H I"/><mask id="o" class="B"><use xlink:href="#G" href="#C"/></mask><path d="M.63 9.347L17.5.39c.146.01.305.05.47.125L1.098 9.47c-.166-.073-.324-.115-.47-.123" mask="url(#o)" class="E G H I"/><mask id="p" class="B"><use xlink:href="#H" href="#C"/></mask><path d="M1.098 9.47L17.97.516a2.24 2.24 0 0 1 .211.109L1.308 9.58c-.07-.044-.143-.078-.2-.11" mask="url(#p)" class="E G H I"/></g><path d="M65.168 69.102l16.87-8.955c.298-.16.698-.124 1.14.14L66.31 69.244c-.442-.265-.842-.3-1.14-.142z" class="E G H"/><g transform="translate(64 58.663)"><mask id="q" class="B"><use xlink:href="#D"/></mask><path d="M.69 9.54L17.56.585c.19-.1.41-.146.652-.13L1.342 9.41c-.24-.015-.464.03-.653.132" mask="url(#q)" class="E G H I"/><mask id="r" class="B"><use xlink:href="#J" href="#D"/></mask><path d="M1.342 9.41L18.212.455c.21.012.432.07.668.176L2.008 9.586c-.234-.106-.457-.162-.666-.177" mask="url(#r)" class="E G H I"/><mask id="s" class="B"><use xlink:href="#K" href="#D"/></mask><path d="M2.008 9.586L18.88.63a2.98 2.98 0 0 1 .299.157L2.308 9.743a2.79 2.79 0 0 0-.3-.157" mask="url(#s)" class="E G H I"/></g><path d="M64.69 68.204l16.87-8.956c.423-.224.992-.174 1.62.202l-16.87 8.956c-.627-.376-1.195-.425-1.62-.202z" class="E G H"/><g transform="translate(84 93.663)"><mask id="t" class="B"><use xlink:href="#E"/></mask><path d="M1.264 10.047l16.87-8.955c-.046.453-.232.77-.513.918L.75 10.965c.278-.148.466-.464.513-.918" mask="url(#t)" class="E G H I"/></g><path d="M101.622 95.673l-16.87 8.955c.322-.172.525-.57.525-1.147l16.87-8.954c0 .575-.2.974-.524 1.146z" class="E G H"/><g transform="translate(85 94.663)"><mask id="u" class="B"><use xlink:href="#F"/></mask><path d="M.975 9.238L17.845.283a3.3 3.3 0 0 1-.016.321L.958 9.56l.017-.32" mask="url(#u)" class="E G H I"/><mask id="v" class="B"><use xlink:href="#N" href="#F"/></mask><path d="M.96 9.558L17.83.603c-.065.644-.335 1.096-.73 1.306L.23 10.865c.396-.21.662-.663.73-1.307" mask="url(#v)" class="E G H I"/></g><g class="E G H"><path d="M102.1 96.572l-16.87 8.956c.46-.245.744-.8.747-1.628l16.87-8.954c0 .816-.287 1.383-.746 1.626zM66.308 69.244l16.872-8.956 17.285 10.387-16.872 8.956z"/><path d="M85.26 82.64l16.873-8.956.013 20.843-16.87 8.955zM66.308 68.405l16.87-8.956 17.286 10.386-16.873 8.957z"/><path d="M85.96 83.06l16.873-8.955.014 20.842-16.87 8.955z"/></g><g transform="translate(83 70.663)"><mask id="w" class="B"><use xlink:href="#G"/></mask><path d="M.593 8.968L17.465.01a2.61 2.61 0 0 1 .271.19L.863 9.155a2.1 2.1 0 0 0-.27-.187" mask="url(#w)" class="E G H I"/><mask id="x" class="B"><use xlink:href="#P" href="#G"/></mask><path d="M.863 9.156L17.736.2c.112.09.222.19.326.304L1.19 9.46c-.104-.11-.214-.214-.328-.304" mask="url(#x)" class="E G H I"/><mask id="y" class="B"><use xlink:href="#Q" href="#G"/></mask><path d="M1.19 9.46L18.062.504a2.88 2.88 0 0 1 .191.219L1.382 9.678l-.19-.22" mask="url(#y)" class="E G H I"/><mask id="z" class="B"><use xlink:href="#R" href="#G"/></mask><path d="M1.382 9.68L18.252.724l.174.232L1.553 9.912l-.17-.233" mask="url(#z)" class="E G H I"/><mask id="AA" class="B"><use xlink:href="#S" href="#G"/></mask><path d="M1.553 9.912L18.426.956c.097.142.187.292.27.447L1.822 10.36a3.81 3.81 0 0 0-.269-.447" mask="url(#AA)" class="E G H I"/><mask id="AB" class="B"><use xlink:href="#T" href="#G"/></mask><path d="M1.822 10.358l16.873-8.956.12.255L1.946 10.6l-.124-.252" mask="url(#AB)" class="E G H I"/><mask id="AC" class="B"><use xlink:href="#U" href="#G"/></mask><path d="M1.946 10.61l16.87-8.954.093.23L2.04 10.84l-.093-.23" mask="url(#AC)" class="E G H I"/><mask id="AD" class="B"><use xlink:href="#V" href="#G"/></mask><path d="M2.04 10.84l16.87-8.955.1.3-16.87 8.956-.1-.3" mask="url(#AD)" class="E G H I"/><mask id="AE" class="B"><use xlink:href="#W" href="#G"/></mask><path d="M2.137 11.14l16.87-8.956c.045.166.08.33.1.49L2.238 11.63c-.02-.16-.055-.325-.1-.488" mask="url(#AE)" class="E G H I"/><mask id="AF" class="B"><use xlink:href="#X" href="#G"/></mask><path d="M2.238 11.63l16.87-8.955c.016.117.023.233.025.346L2.26 11.976c0-.114-.006-.23-.022-.347" mask="url(#AF)" class="E G H I"/></g><g class="E G H"><path d="M83.593 79.63l16.872-8.957c.92.555 1.665 1.9 1.668 3.01L85.26 82.64c0-1.11-.744-2.455-1.667-3.008z"/><path d="M83.592 78.792c1.308.784 2.363 2.69 2.366 4.267l.017 20.84c-.003 1.57-1.057 2.213-2.363 1.428L66.327 94.94c-1.306-.785-2.365-2.696-2.368-4.266l-.013-20.843c-.001-1.575 1.056-2.21 2.362-1.427l17.284 10.387z"/></g><g transform="translate(83 69.663)"><mask id="AG" class="B"><use xlink:href="#H"/></mask><path d="M.592 9.13L17.465.172a3.74 3.74 0 0 1 .382.269L.976 9.396c-.125-.1-.253-.188-.384-.267" mask="url(#AG)" class="E G H I"/><mask id="AH" class="B"><use xlink:href="#Z" href="#H"/></mask><path d="M.976 9.396L17.847.44c.16.127.316.272.464.43L1.44 9.826a4.54 4.54 0 0 0-.464-.43" mask="url(#AH)" class="E G H I"/><mask id="AI" class="B"><use xlink:href="#a" href="#H"/></mask><path d="M1.44 9.826L18.31.87l.272.312L1.71 10.14l-.27-.313" mask="url(#AI)" class="E G H I"/><mask id="AJ" class="B"><use xlink:href="#b" href="#H"/></mask><path d="M1.712 10.14l16.87-8.957.245.33-16.872 8.955-.244-.328" mask="url(#AJ)" class="E G H I"/><mask id="AK" class="B"><use xlink:href="#c" href="#H"/></mask><path d="M1.956 10.467l16.872-8.955a5.86 5.86 0 0 1 .381.635L2.34 11.102c-.114-.22-.243-.433-.383-.635" mask="url(#AK)" class="E G H I"/><mask id="AL" class="B"><use xlink:href="#d" href="#H"/></mask><path d="M2.338 11.102l16.87-8.956.174.36L2.51 11.46l-.17-.358" mask="url(#AL)" class="E G H I"/><mask id="AM" class="B"><use xlink:href="#e" href="#H"/></mask><path d="M2.51 11.46l16.873-8.956.132.326-16.87 8.958-.135-.328" mask="url(#AM)" class="E G H I"/><mask id="AN" class="B"><use xlink:href="#f" href="#H"/></mask><path d="M2.644 11.788l16.87-8.958.14.43-16.87 8.954-.14-.426" mask="url(#AN)" class="E G H I"/><mask id="AO" class="B"><use xlink:href="#g" href="#H"/></mask><path d="M2.784 12.214l16.87-8.954a4.44 4.44 0 0 1 .144.694L2.927 12.91a5.2 5.2 0 0 0-.143-.695" mask="url(#AO)" class="E G H I"/><mask id="AP" class="B"><use xlink:href="#h" href="#H"/></mask><path d="M2.926 12.9l16.87-8.956a4.06 4.06 0 0 1 .034.488L2.958 13.396a3.85 3.85 0 0 0-.032-.486" mask="url(#AP)" class="E G H I"/></g><path d="M83.592 78.792l16.873-8.957c1.306.785 2.36 2.692 2.366 4.27L85.958 83.06c-.003-1.578-1.058-3.483-2.366-4.267z" class="E G H"/><g transform="translate(64 81.663)"><mask id="AQ" class="B"><use xlink:href="#I"/></mask><path d="M.38 9.45L17.25.496c0 .114.01.227.024.344L.402 9.797C.386 9.68.38 9.563.38 9.45" mask="url(#AQ)" class="C"/><mask id="AR" class="B"><use xlink:href="#j" href="#I"/></mask><path d="M.403 9.797L17.273.84c.02.162.055.325.1.49L.503 10.283c-.046-.162-.08-.327-.1-.486" mask="url(#AR)" class="C"/><mask id="AS" class="B"><use xlink:href="#k" href="#I"/></mask><path d="M.502 10.283l16.87-8.955c.027.1.06.2.098.3L.602 10.582l-.1-.3" mask="url(#AS)" class="C"/><mask id="AT" class="B"><use xlink:href="#l" href="#I"/></mask><path d="M.6 10.582l16.87-8.955.094.23-16.87 8.955-.093-.23" fill="#535456" mask="url(#AT)"/><mask id="AU" class="B"><use xlink:href="#m" href="#I"/></mask><path d="M.694 10.814l16.87-8.955.123.253-16.87 8.956-.123-.254" fill="#636467" mask="url(#AU)"/><mask id="AV" class="B"><use xlink:href="#n" href="#I"/></mask><path d="M.817 11.068l16.87-8.956a4.33 4.33 0 0 0 .268.447l-16.87 8.955a4.03 4.03 0 0 1-.269-.446" fill="#6f7073" mask="url(#AV)"/><mask id="AW" class="B"><use xlink:href="#o" href="#I"/></mask><path d="M1.086 11.514l16.87-8.955.174.233L1.26 11.75l-.173-.235" fill="#636467" mask="url(#AW)"/><mask id="AX" class="B"><use xlink:href="#p" href="#I"/></mask><path d="M1.258 11.75l16.87-8.957.192.223L1.45 11.97l-.193-.22" fill="#535456" mask="url(#AX)"/><mask id="AY" class="B"><use xlink:href="#q" href="#I"/></mask><path d="M1.452 11.97l16.87-8.955c.106.11.216.213.33.304L1.78 12.275a3.23 3.23 0 0 1-.329-.305" mask="url(#AY)" class="C"/><mask id="AZ" class="B"><use xlink:href="#r" href="#I"/></mask><path d="M1.78 12.274l16.87-8.956c.087.07.174.13.267.187L2.047 12.46c-.1-.055-.18-.117-.266-.186" mask="url(#AZ)" class="C"/></g><path d="M64.364 70.273l16.873-8.956.013 20.842-16.87 8.955zm1.682 23.85l16.87-8.955L100.2 95.554l-16.87 8.955z" class="C"/><g transform="translate(64 59.663)"><mask id="Aa" class="B"><use xlink:href="#J"/></mask><path d="M.888 9.46L17.76.505c-.278.148-.466.464-.513.92L.375 10.378c.047-.454.236-.772.513-.918" mask="url(#Aa)" class="C"/><mask id="Ab" class="B"><use xlink:href="#t" href="#J"/></mask><path d="M.376 10.378l16.87-8.955a2.42 2.42 0 0 0-.01.23L.364 10.61a1.91 1.91 0 0 1 .012-.231" mask="url(#Ab)" class="C"/></g><g transform="translate(83 94.663)"><mask id="Ac" class="B"><use xlink:href="#K"/></mask><path d="M.332 9.846L17.203.9c.07.042.14.078.206.108L.54 9.954C.47 9.924.4 9.887.332 9.846" mask="url(#Ac)" class="C"/><mask id="Ad" class="B"><use xlink:href="#v" href="#K"/></mask><path d="M.54 9.954L17.41.998c.168.076.325.116.47.125L1 10.078c-.147-.01-.306-.05-.47-.124" mask="url(#Ad)" class="C"/><mask id="Ae" class="B"><use xlink:href="#w" href="#K"/></mask><path d="M1.01 10.078l16.87-8.955c.173.01.328-.022.462-.092L1.47 9.985c-.135.072-.29.104-.462.093" mask="url(#Ae)" class="C"/></g><g transform="translate(64 59.663)"><mask id="Af" class="B"><use xlink:href="#L"/></mask><path d="M.888 9.46L17.76.505c.135-.07.3-.104.46-.093L1.35 9.368c-.173-.01-.325.02-.46.092" fill="#abaeb0" mask="url(#Af)"/><mask id="Ag" class="B"><use xlink:href="#y" href="#L"/></mask><path d="M1.35 9.368L18.22.412c.146.01.305.05.47.125L1.818 9.49c-.166-.073-.324-.115-.47-.123" fill="#c6c7c9" mask="url(#Ag)"/><mask id="Ah" class="B"><use xlink:href="#z" href="#L"/></mask><path d="M1.818 9.49L18.69.537a2.24 2.24 0 0 1 .211.109L2.028 9.602c-.07-.044-.143-.078-.2-.11" mask="url(#Ah)" class="P"/></g><path d="M64.41 68.224l16.87-8.956c.423-.224.992-.174 1.62.202l-16.87 8.956c-.627-.376-1.195-.425-1.62-.202" class="Q"/><g transform="translate(64 58.663)"><mask id="Ai" class="B"><use xlink:href="#M"/></mask><path d="M.41 9.56L17.28.605c.19-.1.41-.146.652-.13L1.062 9.43c-.24-.015-.464.03-.653.132" mask="url(#Ai)" class="Q"/><mask id="Aj" class="B"><use xlink:href="#AB" href="#M"/></mask><path d="M1.062 9.43L17.932.475c.21.012.432.07.668.176L1.728 9.606c-.234-.106-.457-.162-.666-.177" mask="url(#Aj)" class="J"/><mask id="Ak" class="B"><use xlink:href="#AC" href="#M"/></mask><path d="M1.728 9.606L18.6.65a2.98 2.98 0 0 1 .299.157L2.028 9.763a2.79 2.79 0 0 0-.3-.157" fill="#989a9d" mask="url(#Ak)"/></g><g transform="translate(84 93.663)"><mask id="Al" class="B"><use xlink:href="#N"/></mask><path d="M.984 10.067l16.87-8.955c-.046.453-.232.77-.513.918L.47 10.985c.278-.148.466-.464.513-.918" fill="#abaeb0" mask="url(#Al)"/></g><path d="M101.82 96.593l-16.87 8.956c.46-.245.744-.8.747-1.628l16.87-8.954c0 .816-.287 1.383-.746 1.626" class="F"/><g transform="translate(84 94.663)"><mask id="Am" class="B"><use xlink:href="#O"/></mask><path d="M1.695 9.258L18.565.303a3.3 3.3 0 0 1-.016.321L1.678 9.58l.017-.32" fill="#808184" mask="url(#Am)"/><mask id="An" class="B"><use xlink:href="#AF" href="#O"/></mask><path d="M1.678 9.58L18.55.624c-.065.644-.335 1.096-.73 1.306L.948 10.886c.396-.21.662-.663.73-1.307" fill="#76787a" mask="url(#An)"/></g><path fill="#dcdedf" d="M66.028 69.264L82.9 60.308l17.285 10.387-16.872 8.956z"/><path fill="#bdbfc1" d="M84.98 82.66l16.873-8.956.013 20.843-16.87 8.955z"/><path d="M66.028 68.426L82.9 59.47l17.286 10.386-16.873 8.957z" class="K"/><path d="M85.678 83.08l16.873-8.955.014 20.842-16.87 8.955z" class="J"/><g transform="translate(83 70.663)"><mask id="Ao" class="B"><use xlink:href="#P"/></mask><path d="M.313 8.99L17.185.032a2.61 2.61 0 0 1 .271.19L.583 9.176a2.1 2.1 0 0 0-.27-.187" mask="url(#Ao)" class="P"/><mask id="Ap" class="B"><use xlink:href="#AH" href="#P"/></mask><path d="M.583 9.176L17.456.22c.112.09.222.19.326.304L.91 9.48c-.104-.11-.214-.214-.328-.304" mask="url(#Ap)" class="D"/><mask id="Aq" class="B"><use xlink:href="#AI" href="#P"/></mask><path d="M.91 9.48L17.782.525a2.88 2.88 0 0 1 .191.219L1.102 9.7.91 9.48" mask="url(#Aq)" class="D"/><mask id="Ar" class="B"><use xlink:href="#AJ" href="#P"/></mask><path d="M1.102 9.7L17.972.744l.174.232L1.273 9.932l-.17-.233" mask="url(#Ar)" class="D"/><mask id="As" class="B"><use xlink:href="#AK" href="#P"/></mask><path d="M1.273 9.932L18.146.976c.097.142.187.292.27.447L1.542 10.38a3.81 3.81 0 0 0-.269-.447" mask="url(#As)" class="D"/><mask id="At" class="B"><use xlink:href="#AL" href="#P"/></mask><path d="M1.542 10.38l16.873-8.956.12.255-16.87 8.953-.124-.252" mask="url(#At)" class="D"/><mask id="Au" class="B"><use xlink:href="#AM" href="#P"/></mask><path d="M1.666 10.63l16.87-8.954.093.23L1.76 10.86l-.093-.23" mask="url(#Au)" class="D"/><mask id="Av" class="B"><use xlink:href="#AN" href="#P"/></mask><path d="M1.758 10.862l16.87-8.955.1.3-16.87 8.956-.1-.3" mask="url(#Av)" class="D"/><mask id="Aw" class="B"><use xlink:href="#AO" href="#P"/></mask><path d="M1.857 11.162l16.87-8.956c.045.166.08.33.1.49L1.958 11.65c-.02-.16-.055-.325-.1-.488" mask="url(#Aw)" class="P"/><mask id="Ax" class="B"><use xlink:href="#AP" href="#P"/></mask><path d="M1.958 11.65l16.87-8.955c.016.117.023.233.025.346L1.98 11.997c0-.114-.006-.23-.022-.347" fill="#c6c7c9" mask="url(#Ax)"/></g><path d="M84.997 103.502L84.98 82.66c0-1.11-.744-2.455-1.667-3.008L66.028 69.265c-.92-.553-1.664-.102-1.664 1.008l.016 20.84c0 1.107.745 2.452 1.667 3.01l17.285 10.386c.92.552 1.665.1 1.665-1.007zm-1.685-24.69c1.308.784 2.364 2.69 2.367 4.267l.016 20.84c-.003 1.57-1.056 2.213-2.363 1.428L66.048 94.962c-1.307-.785-2.365-2.696-2.368-4.266l-.014-20.843c-.001-1.575 1.057-2.21 2.362-1.427l17.284 10.387z" class="Q"/><path d="M83.313 79.652c.923.553 1.667 1.897 1.667 3.008l.017 20.842c0 1.107-.745 1.56-1.665 1.007L66.046 94.123c-.92-.557-1.667-1.902-1.667-3.01l-.015-20.84c0-1.1.743-1.56 1.664-1.008l17.285 10.387z" fill="#f5f6f6"/><g transform="translate(83 69.663)"><mask id="Ay" class="B"><use xlink:href="#Q"/></mask><path d="M.312 9.15L17.185.193a3.74 3.74 0 0 1 .382.269L.696 9.417C.57 9.316.443 9.23.312 9.15" mask="url(#Ay)" class="K"/><mask id="Az" class="B"><use xlink:href="#AR" href="#Q"/></mask><path d="M.696 9.416L17.567.46c.16.127.316.272.464.43L1.16 9.846a4.54 4.54 0 0 0-.464-.43" mask="url(#Az)" class="K"/><mask id="BA" class="B"><use xlink:href="#AS" href="#Q"/></mask><path d="M1.16 9.846L18.03.9l.272.312L1.43 10.16l-.27-.313" mask="url(#BA)" class="M"/><mask id="BB" class="B"><use xlink:href="#AT" href="#Q"/></mask><path d="M1.43 10.16l16.87-8.957.245.33-16.872 8.955-.244-.328" fill="#d2d4d5" mask="url(#BB)"/><mask id="BC" class="B"><use xlink:href="#AU" href="#Q"/></mask><path d="M1.675 10.488l16.872-8.955a5.86 5.86 0 0 1 .381.635l-16.87 8.955c-.114-.22-.243-.433-.383-.635" fill="#e1e2e3" mask="url(#BC)"/><mask id="BD" class="B"><use xlink:href="#AV" href="#Q"/></mask><path d="M2.058 11.123l16.87-8.956.174.36L2.23 11.48l-.17-.358" fill="#d2d4d5" mask="url(#BD)"/><mask id="BE" class="B"><use xlink:href="#AW" href="#Q"/></mask><path d="M2.23 11.48l16.873-8.956.132.326-16.87 8.958-.135-.328" mask="url(#BE)" class="K"/><mask id="BF" class="B"><use xlink:href="#AX" href="#Q"/></mask><path d="M2.364 11.81l16.87-8.958.14.43-16.87 8.954-.14-.426" mask="url(#BF)" class="J"/><mask id="BG" class="B"><use xlink:href="#AY" href="#Q"/></mask><path d="M2.503 12.235l16.87-8.954a4.44 4.44 0 0 1 .144.694L2.646 12.93a5.2 5.2 0 0 0-.143-.695" mask="url(#BG)" class="J"/><mask id="BH" class="B"><use xlink:href="#AZ" href="#Q"/></mask><path d="M2.646 12.93l16.87-8.956a4.06 4.06 0 0 1 .034.488L2.678 13.416a3.85 3.85 0 0 0-.032-.486" mask="url(#BH)" class="J"/></g><path d="M76.584 87.663c0 1.48-1.06 2.04-2.368 1.255s-2.368-2.623-2.368-4.102 1.06-2.042 2.368-1.255 2.368 2.623 2.368 4.102" class="F"/><path d="M74.212 87.383v9.665" stroke-width="1.854" class="E I L"/><path d="M75.596 86.406c0 .347-.25.48-.558.294a1.25 1.25 0 0 1-.553-.961c0-.347.248-.48.553-.295s.558.615.558.962" class="D"/><path d="M80.1 89.938c-.418-3.54-2.914-7.57-5.938-9.4-2.992-1.797-5.465-.807-5.922 2.154m14.5 6.43l-.24-.844c-1.35-4.4-4.492-8.802-8.156-11.006-3.87-2.325-7.154-1.498-8.367 1.68" stroke-width="1.246" class="E I L"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Personal_Computer.svg b/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Personal_Computer.svg index a66ff729c150e7f4422af3307129f75763fb2cc6..d7e3d5296cc45b9c195ebd053c354fa6f66f524d 100644 --- a/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Personal_Computer.svg +++ b/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Personal_Computer.svg @@ -1,234 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 75.601 103.382" style="enable-background:new 0 0 75.601 103.382;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#626366;stroke-width:3;stroke-linejoin:round;} - .st1{fill:#898B8E;} - .st2{fill:#BBBDBF;} - .st3{fill:#B3B5B7;} - .st4{fill:none;stroke:#E1E2E3;stroke-linecap:round;stroke-linejoin:round;} - .st5{fill:none;stroke:#626366;stroke-width:2.668;stroke-linecap:round;stroke-linejoin:round;} - .st6{fill:#FEFEFE;} - .st7{fill:#C4CACE;} - .st8{fill:none;stroke:#636466;stroke-width:1.156;} - .st9{fill:none;stroke:#E1E2E3;stroke-width:0.889;stroke-linecap:round;stroke-linejoin:round;} - .st10{filter:url(#Adobe_OpacityMaskFilter);} - .st11{fill:#FFFFFF;} - .st12{mask:url(#mask-2_1_);fill:none;stroke:#636466;stroke-width:1.29;} - .st13{fill:none;stroke:#626366;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;} - .st14{fill:#E1E2E3;} - .st15{fill:#231F20;} - .st16{fill:#626366;} -</style> -<title>icon-PC</title> -<desc>Created with Sketch.</desc> -<g id="icon-PC"> - <polygon id="Stroke-1" class="st0" points="50.348,82.545 62.057,76.33 62.06,79.627 50.35,85.844 "/> - <polygon id="Stroke-2" class="st0" points="20.449,64.581 32.158,58.366 62.057,76.331 50.348,82.546 "/> - <polygon id="Stroke-3" class="st0" points="50.348,82.545 50.35,85.844 20.451,67.877 20.449,64.58 "/> - <polygon id="Fill-4" class="st1" points="50.348,82.545 62.057,76.33 62.06,79.627 50.35,85.844 "/> - <polygon id="Fill-5" class="st2" points="20.449,64.581 32.158,58.366 62.057,76.331 50.348,82.546 "/> - <polygon id="Fill-6" class="st3" points="50.348,82.545 50.35,85.844 20.451,67.877 20.449,64.58 "/> - <polyline id="Stroke-7" class="st4" points="20.691,64.614 50.101,82.284 50.101,85.489 "/> - <g id="Group-14" transform="translate(14.000000, 0.383000)"> - <polygon id="Stroke-8" class="st5" points="55.044,36.448 60.23,33.695 60.266,84.473 55.079,87.227 "/> - <polygon id="Stroke-10" class="st5" points="0.549,3.705 5.736,0.951 60.23,33.695 55.044,36.448 "/> - <polygon id="Stroke-12" class="st5" points="55.044,36.448 55.079,87.227 0.586,54.483 0.549,3.705 "/> - </g> - <polygon id="Fill-15" class="st1" points="69.043,36.831 74.23,34.078 74.266,84.856 69.08,87.61 "/> - <polygon id="Fill-16" class="st2" points="14.549,4.088 19.735,1.334 74.23,34.078 69.042,36.831 "/> - <polygon id="Fill-17" class="st3" points="69.043,36.831 69.08,87.61 14.585,54.866 14.55,4.088 "/> - <polygon id="Fill-18" class="st6" points="66.191,81.903 16.526,51.698 16.526,8.783 66.191,38.985 "/> - <g id="Group-346" transform="translate(1.000000, 3.383000)"> - <path id="Fill-19" class="st7" d="M46.764,27.198L63.247,37.1l0.092,9.216c0,0-0.293-6.608-5.193-10.75 - C51.89,30.28,46.764,27.198,46.764,27.198"/> - <path id="Stroke-21" class="st8" d="M14.184,52.532l53.89,32.379"/> - <polyline id="Stroke-23" class="st9" points="14.008,0.875 68.023,33.33 68.06,83.795 "/> - <g id="Group-27" transform="translate(73.000000, 64.000000)"> - <g id="Clip-26"> - </g> - <defs> - <filter id="Adobe_OpacityMaskFilter" filterUnits="userSpaceOnUse" x="0.261" y="0.723" width="1.29" height="13.342"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> - </defs> - <mask maskUnits="userSpaceOnUse" x="0.261" y="0.723" width="1.29" height="13.342" id="mask-2_1_"> - <g class="st10"> - <polygon id="path-1_1_" class="st11" points="0.906,0.723 1.6,0.723 1.6,14.065 0.906,14.065 "/> - </g> - </mask> - <path id="Stroke-25" class="st12" d="M0.906,0.723v13.342"/> - </g> - <path id="Stroke-28" class="st13" d="M48.556,90.78c0,0,1.375-0.734,2.5-0.766c1.125-0.031,2.516,0.641,2.516,0.641 - s1.375,0.734,2.046,1.437c0.672,0.704,0.719,0.985,0.766,1.235c0.047,0.25,0.031,0.828-0.047,0.953s-7.75,4.094-7.75,4.094 - s-0.453,0.203-1.187,0.093c-0.735-0.109-2-1-2.407-1.578c-0.406-0.578-0.375-1.468-0.375-1.468s0.016-1.047,1.391-2.61 - C46.915,91.717,48.556,90.78,48.556,90.78z"/> - <path id="Fill-30" class="st2" d="M48.556,90.78c0,0,1.375-0.734,2.5-0.766c1.125-0.031,2.516,0.641,2.516,0.641 - s1.377,0.734,2.046,1.437c0.672,0.704,0.719,0.985,0.766,1.235c0.047,0.25,0.031,0.828-0.047,0.953s-7.75,4.094-7.75,4.094 - s-0.453,0.203-1.187,0.093c-0.735-0.109-2-1-2.407-1.578c-0.406-0.578-0.375-1.468-0.375-1.468s0.016-1.047,1.391-2.61 - C46.915,91.717,48.556,90.78,48.556,90.78"/> - <path id="Fill-32" class="st1" d="M48.757,98.069c0.012-0.09,0.889-2.551,3.768-4.107c2.884-1.518,3.548,0.121,3.49-0.223 - l-0.006,0.547c-2.078,1.109-5.115,2.728-7.191,3.836"/> - <path id="Fill-34" class="st3" d="M46.462,96.506c0.187-0.75,1.266-2.391,1.992-3.141c0.727-0.75,1.36-1.242,2.461-1.804 - c1.102-0.563,2.438-0.985,3.094-0.657c0.656,0.329,1.57,1.149,1.945,1.641c0.375,0.492,0.281,1.008,0.281,1.008 - s-1.382-0.469-2.203-0.188c-0.82,0.282-2.133,0.938-2.976,1.758c-0.844,0.821-1.172,1.899-1.758,2.578 - c-0.586,0.68-1.711,0.774-1.711,0.774s-1.148-0.235-1.266-0.446C46.204,97.818,46.275,97.256,46.462,96.506"/> - <path id="Fill-36" class="st14" d="M48.369,93.864l-0.504-0.303c-0.918,0.996-1.445,1.975-1.699,2.524l0.506,0.302 - C46.924,95.839,47.453,94.858,48.369,93.864"/> - <polygon id="Stroke-38" class="st0" points="30.4,91.095 42.109,84.88 42.111,88.177 30.402,94.394 "/> - <polygon id="Stroke-40" class="st0" points="0.5,73.131 12.209,66.914 42.109,84.88 30.4,91.095 "/> - <polygon id="Stroke-42" class="st0" points="30.4,91.095 30.402,94.394 0.502,76.428 0.5,73.131 "/> - <polygon id="Fill-44" class="st1" points="30.4,91.095 42.109,84.88 42.111,88.177 30.402,94.394 "/> - <polygon id="Fill-46" class="st2" points="0.5,73.131 12.209,66.914 42.109,84.88 30.4,91.095 "/> - <polygon id="Fill-48" class="st3" points="30.4,91.095 30.402,94.394 0.502,76.428 0.5,73.131 "/> - <polygon id="Fill-50" class="st15" points="7.657,72.784 9.115,72.011 9.115,72.292 7.657,73.067 "/> - <polygon id="Fill-52" class="st6" points="6.401,72.028 7.859,71.255 9.116,72.01 7.658,72.784 "/> - <polygon id="Fill-54" class="st16" points="7.657,72.784 7.657,73.067 6.4,72.311 6.4,72.028 "/> - <polygon id="Fill-56" class="st15" points="9.518,73.901 10.976,73.128 10.976,73.411 9.518,74.184 "/> - <polygon id="Fill-58" class="st6" points="8.261,73.147 9.719,72.372 10.976,73.127 9.518,73.901 "/> - <polygon id="Fill-60" class="st16" points="9.518,73.901 9.518,74.184 8.261,73.428 8.261,73.147 "/> - <polygon id="Fill-62" class="st15" points="11.471,75.075 12.928,74.302 12.929,74.585 11.471,75.358 "/> - <polygon id="Fill-64" class="st6" points="10.214,74.319 11.672,73.546 12.928,74.301 11.471,75.075 "/> - <polygon id="Fill-66" class="st16" points="11.471,75.075 11.471,75.358 10.214,74.602 10.214,74.319 "/> - <polygon id="Fill-68" class="st15" points="13.338,76.198 14.795,75.423 14.796,75.706 13.338,76.479 "/> - <polygon id="Fill-70" class="st6" points="12.081,75.442 13.539,74.669 14.795,75.422 13.338,76.198 "/> - <polygon id="Fill-72" class="st16" points="13.338,76.198 13.338,76.479 12.081,75.725 12.081,75.442 "/> - <polygon id="Fill-74" class="st15" points="15.266,77.356 16.724,76.581 16.724,76.864 15.266,77.637 "/> - <polygon id="Fill-76" class="st6" points="14.009,76.6 15.467,75.827 16.724,76.58 15.266,77.356 "/> - <polygon id="Fill-78" class="st16" points="15.266,77.356 15.266,77.637 14.009,76.883 14.009,76.6 "/> - <polygon id="Fill-80" class="st15" points="17.132,78.477 18.591,77.704 18.591,77.985 17.132,78.76 "/> - <polygon id="Fill-82" class="st6" points="15.869,77.717 17.328,76.944 18.592,77.703 17.133,78.477 "/> - <polygon id="Fill-84" class="st16" points="17.132,78.477 17.132,78.76 15.868,78 15.868,77.717 "/> - <polygon id="Fill-86" class="st15" points="19.085,79.651 20.542,78.878 20.544,79.159 19.085,79.932 "/> - <polygon id="Fill-88" class="st6" points="17.828,78.895 19.287,78.122 20.543,78.877 19.086,79.651 "/> - <polygon id="Fill-90" class="st16" points="19.085,79.651 19.085,79.932 17.829,79.178 17.827,78.895 "/> - <polygon id="Fill-92" class="st15" points="20.947,80.768 22.404,79.995 22.404,80.278 20.947,81.051 "/> - <polygon id="Fill-94" class="st6" points="19.689,80.014 21.146,79.239 22.404,79.994 20.947,80.768 "/> - <polygon id="Fill-96" class="st16" points="20.947,80.768 20.947,81.051 19.689,80.295 19.689,80.014 "/> - <polygon id="Fill-98" class="st15" points="22.777,81.869 24.234,81.095 24.234,81.378 22.777,82.15 "/> - <polygon id="Fill-100" class="st6" points="21.519,81.114 22.978,80.339 24.234,81.094 22.777,81.869 "/> - <polygon id="Fill-102" class="st16" points="22.777,81.869 22.777,82.15 21.519,81.395 21.519,81.114 "/> - <polygon id="Fill-104" class="st15" points="24.636,82.986 26.095,82.213 26.095,82.494 24.636,83.269 "/> - <polygon id="Fill-106" class="st6" points="23.38,82.23 24.837,81.458 26.095,82.212 24.636,82.986 "/> - <polygon id="Fill-108" class="st16" points="24.636,82.986 24.636,83.269 23.38,82.513 23.38,82.23 "/> - <polygon id="Fill-110" class="st15" points="26.589,84.16 28.049,83.385 28.049,83.668 26.589,84.441 "/> - <polygon id="Fill-112" class="st6" points="25.334,83.404 26.791,82.631 28.049,83.384 26.59,84.16 "/> - <polygon id="Fill-114" class="st16" points="26.589,84.16 26.589,84.441 25.333,83.687 25.333,83.404 "/> - <polygon id="Fill-116" class="st15" points="28.457,85.281 29.916,84.508 29.916,84.791 28.457,85.564 "/> - <polygon id="Fill-118" class="st6" points="27.201,84.525 28.658,83.752 29.916,84.507 28.457,85.281 "/> - <polygon id="Fill-120" class="st16" points="28.457,85.281 28.457,85.564 27.201,84.808 27.201,84.525 "/> - <polygon id="Fill-122" class="st15" points="30.384,86.439 31.843,85.666 31.843,85.949 30.384,86.722 "/> - <polygon id="Fill-124" class="st6" points="29.128,85.685 30.585,84.91 31.843,85.665 30.384,86.439 "/> - <polygon id="Fill-126" class="st16" points="30.384,86.439 30.384,86.722 29.128,85.966 29.128,85.685 "/> - <polygon id="Fill-128" class="st15" points="32.209,87.535 33.666,86.762 33.668,87.045 32.209,87.818 "/> - <polygon id="Fill-130" class="st6" points="30.951,86.781 32.41,86.006 33.666,86.761 32.209,87.535 "/> - <polygon id="Fill-132" class="st16" points="32.209,87.535 32.209,87.818 30.953,87.062 30.951,86.781 "/> - <polygon id="Fill-134" class="st15" points="9.657,71.659 11.115,70.886 11.115,71.167 9.657,71.942 "/> - <polygon id="Fill-136" class="st6" points="8.401,70.903 9.859,70.13 11.116,70.885 9.658,71.659 "/> - <polygon id="Fill-138" class="st16" points="9.657,71.659 9.657,71.942 8.4,71.186 8.4,70.903 "/> - <polygon id="Fill-140" class="st15" points="11.518,72.776 12.976,72.003 12.976,72.286 11.518,73.059 "/> - <polygon id="Fill-142" class="st6" points="10.261,72.022 11.719,71.247 12.976,72.002 11.518,72.776 "/> - <polygon id="Fill-144" class="st16" points="11.518,72.776 11.518,73.059 10.261,72.303 10.261,72.022 "/> - <polygon id="Fill-146" class="st15" points="13.471,73.95 14.928,73.177 14.929,73.46 13.471,74.233 "/> - <polygon id="Fill-148" class="st6" points="12.214,73.194 13.672,72.421 14.928,73.176 13.471,73.95 "/> - <polygon id="Fill-150" class="st16" points="13.471,73.95 13.471,74.233 12.214,73.477 12.214,73.194 "/> - <polygon id="Fill-152" class="st15" points="15.338,75.073 16.794,74.298 16.796,74.581 15.338,75.354 "/> - <polygon id="Fill-154" class="st6" points="14.081,74.317 15.539,73.544 16.794,74.297 15.337,75.073 "/> - <polygon id="Fill-156" class="st16" points="15.338,75.073 15.338,75.354 14.082,74.6 14.082,74.317 "/> - <polygon id="Fill-158" class="st15" points="17.265,76.231 18.724,75.456 18.724,75.739 17.265,76.512 "/> - <polygon id="Fill-160" class="st6" points="16.009,75.475 17.466,74.702 18.724,75.455 17.265,76.231 "/> - <polygon id="Fill-162" class="st16" points="17.265,76.231 17.265,76.512 16.009,75.758 16.009,75.475 "/> - <polygon id="Fill-164" class="st15" points="19.132,77.352 20.591,76.579 20.591,76.86 19.132,77.635 "/> - <polygon id="Fill-166" class="st6" points="17.869,76.592 19.328,75.819 20.592,76.578 19.133,77.352 "/> - <polygon id="Fill-168" class="st16" points="19.132,77.352 19.132,77.635 17.868,76.875 17.868,76.592 "/> - <polygon id="Fill-170" class="st15" points="21.085,78.526 22.542,77.753 22.544,78.034 21.085,78.807 "/> - <polygon id="Fill-172" class="st6" points="19.828,77.77 21.287,76.997 22.543,77.752 21.086,78.526 "/> - <polygon id="Fill-174" class="st16" points="21.085,78.526 21.085,78.807 19.829,78.053 19.827,77.77 "/> - <polygon id="Fill-176" class="st15" points="22.947,79.643 24.404,78.87 24.404,79.153 22.947,79.926 "/> - <polygon id="Fill-178" class="st6" points="21.689,78.889 23.146,78.114 24.404,78.869 22.947,79.643 "/> - <polygon id="Fill-180" class="st16" points="22.947,79.643 22.947,79.926 21.689,79.17 21.689,78.889 "/> - <polygon id="Fill-182" class="st15" points="24.777,80.743 26.234,79.97 26.234,80.253 24.777,81.026 "/> - <polygon id="Fill-184" class="st6" points="23.519,79.989 24.978,79.214 26.234,79.969 24.777,80.743 "/> - <polygon id="Fill-186" class="st16" points="24.777,80.743 24.777,81.026 23.519,80.27 23.519,79.989 "/> - <polygon id="Fill-188" class="st15" points="26.636,81.861 28.095,81.087 28.095,81.37 26.636,82.144 "/> - <polygon id="Fill-190" class="st6" points="25.38,81.106 26.837,80.333 28.095,81.086 26.636,81.861 "/> - <polygon id="Fill-192" class="st16" points="26.636,81.861 26.636,82.144 25.38,81.389 25.38,81.106 "/> - <polygon id="Fill-194" class="st15" points="28.589,83.035 30.049,82.26 30.049,82.543 28.589,83.316 "/> - <polygon id="Fill-196" class="st6" points="27.334,82.279 28.791,81.507 30.049,82.259 28.59,83.035 "/> - <polygon id="Fill-198" class="st16" points="28.589,83.035 28.589,83.316 27.333,82.562 27.333,82.279 "/> - <polygon id="Fill-200" class="st15" points="30.457,84.156 31.916,83.383 31.916,83.666 30.457,84.439 "/> - <polygon id="Fill-202" class="st6" points="29.201,83.4 30.658,82.627 31.916,83.382 30.457,84.156 "/> - <polygon id="Fill-204" class="st16" points="30.457,84.156 30.457,84.439 29.201,83.683 29.201,83.4 "/> - <polygon id="Fill-206" class="st15" points="32.384,85.314 33.843,84.541 33.843,84.824 32.384,85.597 "/> - <polygon id="Fill-208" class="st6" points="31.128,84.56 32.585,83.785 33.843,84.54 32.384,85.314 "/> - <polygon id="Fill-210" class="st16" points="32.384,85.314 32.384,85.597 31.128,84.841 31.128,84.56 "/> - <polygon id="Fill-212" class="st15" points="34.209,86.41 35.666,85.637 35.668,85.92 34.209,86.693 "/> - <polygon id="Fill-214" class="st6" points="32.951,85.656 34.41,84.881 35.666,85.636 34.209,86.41 "/> - <polygon id="Fill-216" class="st16" points="34.209,86.41 34.209,86.693 32.953,85.937 32.951,85.656 "/> - <polygon id="Fill-218" class="st15" points="11.782,70.534 13.24,69.761 13.24,70.042 11.782,70.817 "/> - <polygon id="Fill-220" class="st6" points="10.526,69.778 11.984,69.005 13.241,69.76 11.783,70.534 "/> - <polygon id="Fill-222" class="st16" points="11.782,70.534 11.782,70.817 10.525,70.061 10.525,69.778 "/> - <polygon id="Fill-224" class="st15" points="13.643,71.651 15.101,70.878 15.101,71.161 13.643,71.934 "/> - <polygon id="Fill-226" class="st6" points="12.386,70.897 13.844,70.122 15.101,70.877 13.643,71.651 "/> - <polygon id="Fill-228" class="st16" points="13.643,71.651 13.643,71.934 12.386,71.178 12.386,70.897 "/> - <polygon id="Fill-230" class="st15" points="15.595,72.825 17.052,72.052 17.054,72.335 15.595,73.108 "/> - <polygon id="Fill-232" class="st6" points="14.339,72.069 15.797,71.296 17.052,72.051 15.595,72.825 "/> - <polygon id="Fill-234" class="st16" points="15.595,72.825 15.595,73.108 14.339,72.352 14.339,72.069 "/> - <polygon id="Fill-236" class="st15" points="17.462,73.948 18.919,73.173 18.921,73.456 17.462,74.229 "/> - <polygon id="Fill-238" class="st6" points="16.207,73.192 17.664,72.419 18.92,73.172 17.463,73.948 "/> - <polygon id="Fill-240" class="st16" points="17.462,73.948 17.462,74.229 16.206,73.475 16.206,73.192 "/> - <polygon id="Fill-242" class="st15" points="19.39,75.106 20.849,74.331 20.849,74.614 19.39,75.387 "/> - <polygon id="Fill-244" class="st6" points="18.134,74.35 19.591,73.577 20.849,74.33 19.39,75.106 "/> - <polygon id="Fill-246" class="st16" points="19.39,75.106 19.39,75.387 18.134,74.633 18.134,74.35 "/> - <polygon id="Fill-248" class="st15" points="21.257,76.227 22.716,75.454 22.716,75.735 21.257,76.51 "/> - <polygon id="Fill-250" class="st6" points="19.994,75.467 21.453,74.694 22.717,75.453 21.258,76.227 "/> - <polygon id="Fill-252" class="st16" points="21.257,76.227 21.257,76.51 19.993,75.75 19.993,75.467 "/> - <polygon id="Fill-254" class="st15" points="23.21,77.401 24.667,76.628 24.669,76.909 23.21,77.682 "/> - <polygon id="Fill-256" class="st6" points="21.953,76.645 23.412,75.872 24.668,76.627 23.211,77.401 "/> - <polygon id="Fill-258" class="st16" points="23.21,77.401 23.21,77.682 21.954,76.928 21.952,76.645 "/> - <polygon id="Fill-260" class="st15" points="25.072,78.518 26.529,77.745 26.529,78.028 25.072,78.801 "/> - <polygon id="Fill-262" class="st6" points="23.814,77.764 25.271,76.989 26.529,77.744 25.072,78.518 "/> - <polygon id="Fill-264" class="st16" points="25.072,78.518 25.072,78.801 23.814,78.045 23.814,77.764 "/> - <polygon id="Fill-266" class="st15" points="26.902,79.618 28.359,78.845 28.359,79.128 26.902,79.901 "/> - <polygon id="Fill-268" class="st6" points="25.644,78.864 27.103,78.089 28.359,78.844 26.902,79.618 "/> - <polygon id="Fill-270" class="st16" points="26.902,79.618 26.902,79.901 25.644,79.145 25.644,78.864 "/> - <polygon id="Fill-272" class="st15" points="28.761,80.737 30.22,79.962 30.22,80.245 28.761,81.018 "/> - <polygon id="Fill-274" class="st6" points="27.505,79.981 28.962,79.208 30.22,79.961 28.761,80.737 "/> - <polygon id="Fill-276" class="st16" points="28.761,80.737 28.761,81.018 27.505,80.264 27.505,79.981 "/> - <polygon id="Fill-278" class="st15" points="30.714,81.91 32.174,81.136 32.174,81.419 30.714,82.191 "/> - <polygon id="Fill-280" class="st6" points="29.459,81.155 30.916,80.382 32.174,81.135 30.715,81.91 "/> - <polygon id="Fill-282" class="st16" points="30.714,81.91 30.714,82.191 29.458,81.436 29.458,81.155 "/> - <polygon id="Fill-284" class="st15" points="32.582,83.031 34.041,82.258 34.041,82.541 32.582,83.314 "/> - <polygon id="Fill-286" class="st6" points="31.326,82.275 32.783,81.503 34.041,82.257 32.582,83.031 "/> - <polygon id="Fill-288" class="st16" points="32.582,83.031 32.582,83.314 31.326,82.558 31.326,82.275 "/> - <polygon id="Fill-290" class="st15" points="34.509,84.189 35.968,83.416 35.968,83.699 34.509,84.472 "/> - <polygon id="Fill-292" class="st6" points="33.253,83.435 34.71,82.66 35.968,83.415 34.509,84.189 "/> - <polygon id="Fill-294" class="st16" points="34.509,84.189 34.509,84.472 33.253,83.716 33.253,83.435 "/> - <polygon id="Fill-296" class="st15" points="36.334,85.285 37.791,84.512 37.793,84.795 36.334,85.568 "/> - <polygon id="Fill-298" class="st6" points="35.076,84.531 36.535,83.756 37.791,84.511 36.334,85.285 "/> - <polygon id="Fill-300" class="st16" points="36.334,85.285 36.334,85.568 35.078,84.812 35.076,84.531 "/> - <polygon id="Fill-302" class="st15" points="6.266,74.461 7.724,73.686 7.724,73.961 6.266,74.734 "/> - <polygon id="Fill-304" class="st6" points="5.008,73.705 6.466,72.932 7.724,73.685 6.266,74.461 "/> - <polygon id="Fill-306" class="st16" points="6.266,74.461 6.266,74.734 5.009,73.979 5.008,73.705 "/> - <polygon id="Fill-308" class="st15" points="8.034,75.524 9.492,74.749 9.492,75.024 8.034,75.797 "/> - <polygon id="Fill-310" class="st6" points="6.777,74.768 8.235,73.995 9.492,74.748 8.034,75.524 "/> - <polygon id="Fill-312" class="st16" points="8.034,75.524 8.034,75.797 6.777,75.044 6.777,74.768 "/> - <polygon id="Fill-314" class="st15" points="9.895,76.641 11.353,75.868 11.353,76.141 9.895,76.916 "/> - <polygon id="Fill-316" class="st6" points="8.638,75.885 10.096,75.112 11.353,75.867 9.895,76.641 "/> - <polygon id="Fill-318" class="st16" points="9.895,76.641 9.895,76.916 8.638,76.161 8.638,75.885 "/> - <polygon id="Fill-320" class="st15" points="25.453,85.96 26.912,85.187 26.912,85.46 25.453,86.235 "/> - <polygon id="Fill-322" class="st6" points="24.195,85.204 25.654,84.431 26.912,85.186 25.453,85.96 "/> - <polygon id="Fill-324" class="st16" points="25.453,85.96 25.453,86.235 24.197,85.48 24.195,85.204 "/> - <polygon id="Fill-326" class="st15" points="27.222,87.023 28.679,86.25 28.679,86.523 27.222,87.298 "/> - <polygon id="Fill-328" class="st6" points="25.964,86.267 27.424,85.494 28.679,86.249 27.222,87.023 "/> - <polygon id="Fill-330" class="st16" points="27.222,87.023 27.222,87.298 25.964,86.543 25.964,86.267 "/> - <polygon id="Fill-332" class="st15" points="29.082,88.14 30.541,87.367 30.541,87.642 29.082,88.415 "/> - <polygon id="Fill-334" class="st6" points="27.826,87.386 29.283,86.611 30.541,87.366 29.082,88.14 "/> - <polygon id="Fill-336" class="st16" points="29.082,88.14 29.082,88.415 27.826,87.66 27.826,87.386 "/> - <polygon id="Fill-338" class="st15" points="23.466,84.806 24.925,84.033 24.925,84.308 23.466,85.081 "/> - <polygon id="Fill-340" class="st6" points="10.572,77.059 12.03,76.286 24.925,84.033 23.466,84.806 "/> - <polygon id="Fill-342" class="st16" points="23.466,84.806 23.466,85.081 10.572,77.334 10.572,77.059 "/> - <polyline id="Stroke-344" class="st4" points="0.742,73.164 30.152,90.833 30.152,94.038 "/> - </g> -</g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 75.601 103.382"><style><![CDATA[.R{fill:#fefefe}.S{fill:#231f20}.T{fill:#626366}.U{fill:none}.V{stroke-linejoin:round}.W{stroke:#626366}.X{fill:#898b8e}.Y{fill:#bbbdbf}.Z{fill:#b3b5b7}.a{stroke-width:3}.b{stroke:#e1e2e3}.c{stroke-linecap:round}]]></style><g class="U V W a"><path d="M50.348 82.545l11.71-6.215.003 3.297-11.7 6.217z"/><path d="M20.45 64.58l11.71-6.215 29.9 17.965-11.71 6.215z"/><path d="M50.348 82.545l.002 3.3-29.9-17.967V64.58z"/></g><path d="M50.348 82.545l11.71-6.215.003 3.297-11.7 6.217z" class="X"/><path d="M20.45 64.58l11.71-6.215 29.9 17.965-11.71 6.215z" class="Y"/><path d="M50.348 82.545l.002 3.3-29.9-17.967V64.58z" class="Z"/><g class="U V"><path d="M20.69 64.614l29.4 17.67v3.205" class="b c"/><g stroke-width="2.668" class="W"><path d="M69.044 36.83l5.186-2.753.036 50.778L69.08 87.6z"/><path d="M14.55 4.088l5.187-2.754L74.23 34.078l-5.186 2.753z"/><path d="M69.044 36.83l.035 50.78-54.493-32.744-.037-50.778z"/></g></g><path d="M69.043 36.83l5.187-2.753.036 50.778L69.08 87.6z" class="X"/><path d="M14.55 4.088l5.186-2.754L74.23 34.078l-5.188 2.753z" class="Y"/><path d="M69.043 36.83l.037 50.78-54.495-32.744-.035-50.778z" class="Z"/><path d="M66.19 81.903L16.526 51.698V8.783L66.19 38.985z" class="R"/><g transform="translate(1 3.383)"><path d="M46.764 27.198L63.247 37.1l.092 9.216s-.293-6.608-5.193-10.75c-6.256-5.286-11.382-8.368-11.382-8.368" fill="#c4cace"/><g class="U"><path d="M14.184 52.532l53.9 32.38" stroke="#636466" stroke-width="1.156"/><path d="M14.008.875L68.023 33.33l.037 50.465" stroke-width=".889" class="V b c"/></g><g transform="translate(73 64)"><defs><filter id="A" filterUnits="userSpaceOnUse" x=".261" y=".723" width="1.29" height="13.342"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x=".261" y=".723" width="1.29" height="13.342" id="B"><g filter="url(#A)"><path d="M.906.723H1.6v13.342H.906z" fill="#fff"/></g></mask><path d="M.906.723v13.342" mask="url(#B)" stroke="#636466" stroke-width="1.29" class="U"/></g><path d="M48.556 90.78s1.375-.734 2.5-.766 2.516.64 2.516.64 1.375.734 2.046 1.437.72.985.766 1.235.03.828-.047.953-7.75 4.094-7.75 4.094-.453.203-1.187.093-2-1-2.407-1.578-.375-1.468-.375-1.468.016-1.047 1.39-2.6c.906-1.094 2.547-2.03 2.547-2.03z" class="U V W a"/><path d="M48.556 90.78s1.375-.734 2.5-.766 2.516.64 2.516.64 1.377.734 2.046 1.437.72.985.766 1.235.03.828-.047.953-7.75 4.094-7.75 4.094-.453.203-1.187.093-2-1-2.407-1.578-.375-1.468-.375-1.468.016-1.047 1.39-2.6c.906-1.094 2.547-2.03 2.547-2.03" class="Y"/><path d="M48.757 98.07c.012-.1.89-2.55 3.768-4.107 2.884-1.518 3.548.12 3.5-.223l-.006.547-7.19 3.836" class="X"/><path d="M46.462 96.506c.187-.75 1.266-2.39 1.992-3.14s1.36-1.242 2.46-1.804 2.438-.985 3.094-.657 1.57 1.15 1.945 1.64.28 1.008.28 1.008-1.382-.47-2.203-.188-2.133.938-2.976 1.758-1.172 1.9-1.758 2.578-1.71.774-1.71.774-1.148-.235-1.266-.446-.046-.773.14-1.523" class="Z"/><path d="M48.37 93.864l-.504-.303c-.918.996-1.445 1.975-1.7 2.524l.506.302c.252-.548.78-1.53 1.697-2.523" fill="#e1e2e3"/><g class="U V W a"><path d="M30.4 91.095l11.71-6.215v3.297l-11.71 6.217z"/><path d="M.5 73.13l11.71-6.217 29.9 17.966-11.71 6.215z"/><path d="M30.4 91.095l.002 3.3-29.9-17.966L.5 73.13z"/></g><path d="M30.4 91.095l11.71-6.215v3.297l-11.71 6.217z" class="X"/><path d="M.5 73.13l11.71-6.217 29.9 17.966-11.71 6.215z" class="Y"/><path d="M30.4 91.095l.002 3.3-29.9-17.966L.5 73.13z" class="Z"/><path d="M7.657 72.784l1.458-.773v.28l-1.458.775z" class="S"/><path d="M6.4 72.028l1.458-.773L9.116 72l-1.458.774z" class="R"/><path d="M7.657 72.784v.283L6.4 72.31v-.283z" class="T"/><path d="M9.518 73.9l1.458-.773v.283l-1.458.773z" class="S"/><path d="M8.26 73.147l1.458-.775 1.257.755-1.458.774z" class="R"/><path d="M9.518 73.9v.283l-1.257-.756v-.28z" class="T"/><path d="M11.47 75.075l1.457-.773.001.283-1.458.773z" class="S"/><path d="M10.214 74.32l1.458-.773 1.256.755-1.457.774z" class="R"/><path d="M11.47 75.075v.283l-1.257-.756v-.283z" class="T"/><path d="M13.338 76.198l1.457-.775.001.283-1.458.773z" class="S"/><path d="M12.08 75.442l1.458-.773 1.256.753-1.457.776z" class="R"/><path d="M13.338 76.198v.28l-1.257-.754v-.283z" class="T"/><path d="M15.266 77.356l1.458-.775v.283l-1.458.773z" class="S"/><path d="M14.01 76.6l1.458-.773 1.257.753-1.458.776z" class="R"/><path d="M15.266 77.356v.28l-1.257-.754V76.6z" class="T"/><path d="M17.132 78.477l1.46-.773v.28l-1.46.775z" class="S"/><path d="M15.87 77.717l1.46-.773 1.264.76-1.46.774z" class="R"/><path d="M17.132 78.477v.283L15.868 78v-.283z" class="T"/><path d="M19.085 79.65l1.457-.773.002.28-1.46.773z" class="S"/><path d="M17.828 78.895l1.46-.773 1.256.755-1.457.774z" class="R"/><path d="M19.085 79.65v.28l-1.256-.754-.002-.283z" class="T"/><path d="M20.947 80.768l1.457-.773v.283l-1.457.773z" class="S"/><path d="M19.69 80.014l1.457-.775 1.258.755-1.457.774z" class="R"/><path d="M20.947 80.768v.283l-1.258-.756v-.28z" class="T"/><path d="M22.777 81.87l1.457-.774v.283l-1.457.772z" class="S"/><path d="M21.52 81.114l1.46-.775 1.256.755-1.457.775z" class="R"/><path d="M22.777 81.87v.28l-1.258-.755v-.28z" class="T"/><path d="M24.636 82.986l1.46-.773v.28l-1.46.775z" class="S"/><path d="M23.38 82.23l1.457-.772 1.258.754-1.46.774z" class="R"/><path d="M24.636 82.986v.283l-1.256-.756v-.283z" class="T"/><path d="M26.59 84.16l1.46-.775v.283l-1.46.773z" class="S"/><path d="M25.334 83.404l1.457-.773 1.258.753-1.46.776z" class="R"/><path d="M26.59 84.16v.28l-1.256-.754v-.283z" class="T"/><path d="M28.457 85.28l1.46-.773v.283l-1.46.773z" class="S"/><path d="M27.2 84.525l1.457-.773 1.258.755-1.46.774z" class="R"/><path d="M28.457 85.28v.283l-1.256-.756v-.283z" class="T"/><path d="M30.384 86.44l1.46-.773v.283l-1.46.773z" class="S"/><path d="M29.128 85.685l1.457-.775 1.258.755-1.46.774z" class="R"/><path d="M30.384 86.44v.283l-1.256-.756v-.28z" class="T"/><path d="M32.21 87.535l1.457-.773.002.283-1.46.773z" class="S"/><path d="M30.95 86.78l1.46-.775 1.256.755-1.457.774z" class="R"/><path d="M32.21 87.535v.283l-1.256-.756-.002-.28z" class="T"/><path d="M9.657 71.66l1.458-.773v.28l-1.458.775z" class="S"/><path d="M8.4 70.903l1.458-.773 1.257.755-1.458.774z" class="R"/><path d="M9.657 71.66v.283L8.4 71.186v-.283z" class="T"/><path d="M11.518 72.776l1.458-.773v.283l-1.458.773z" class="S"/><path d="M10.26 72.022l1.458-.775 1.257.755-1.458.774z" class="R"/><path d="M11.518 72.776v.283l-1.257-.756v-.28z" class="T"/><path d="M13.47 73.95l1.457-.773.001.283-1.458.773z" class="S"/><path d="M12.214 73.194l1.458-.773 1.256.755-1.457.774z" class="R"/><path d="M13.47 73.95v.283l-1.257-.756v-.283z" class="T"/><path d="M15.338 75.073l1.456-.775.002.283-1.458.773z" class="S"/><path d="M14.08 74.317l1.458-.773 1.255.753-1.457.776z" class="R"/><path d="M15.338 75.073v.28l-1.256-.754v-.283z" class="T"/><path d="M17.265 76.23l1.46-.775v.283l-1.46.773z" class="S"/><path d="M16.01 75.475l1.457-.773 1.258.753-1.46.776z" class="R"/><path d="M17.265 76.23v.28l-1.256-.754v-.283z" class="T"/><path d="M19.132 77.352l1.46-.773v.28l-1.46.775z" class="S"/><path d="M17.87 76.592l1.46-.773 1.264.76-1.46.774z" class="R"/><path d="M19.132 77.352v.283l-1.264-.76v-.283z" class="T"/><path d="M21.085 78.526l1.457-.773.002.28-1.46.773z" class="S"/><path d="M19.828 77.77l1.46-.773 1.256.755-1.457.774z" class="R"/><path d="M21.085 78.526v.28l-1.256-.754-.002-.283z" class="T"/><path d="M22.947 79.643l1.457-.773v.283l-1.457.773z" class="S"/><path d="M21.69 78.89l1.457-.775 1.258.755-1.457.774z" class="R"/><path d="M22.947 79.643v.283l-1.258-.756v-.28z" class="T"/><path d="M24.777 80.743l1.457-.773v.283l-1.457.773z" class="S"/><path d="M23.52 79.99l1.46-.775 1.256.755-1.457.774z" class="R"/><path d="M24.777 80.743v.283l-1.258-.756v-.28z" class="T"/><path d="M26.636 81.86l1.46-.774v.283l-1.46.774z" class="S"/><path d="M25.38 81.106l1.457-.773 1.258.753-1.46.775z" class="R"/><path d="M26.636 81.86v.283l-1.256-.755v-.283z" class="T"/><path d="M28.59 83.035l1.46-.775v.283l-1.46.773z" class="S"/><path d="M27.334 82.28l1.457-.772 1.258.752-1.46.776z" class="R"/><path d="M28.59 83.035v.28l-1.256-.754v-.283z" class="T"/><path d="M30.457 84.156l1.46-.773v.283l-1.46.773z" class="S"/><path d="M29.2 83.4l1.457-.773 1.258.755-1.46.774z" class="R"/><path d="M30.457 84.156v.283l-1.256-.756V83.4z" class="T"/><path d="M32.384 85.314l1.46-.773v.283l-1.46.773z" class="S"/><path d="M31.128 84.56l1.457-.775 1.258.755-1.46.774z" class="R"/><path d="M32.384 85.314v.283l-1.256-.756v-.28z" class="T"/><path d="M34.21 86.4l1.457-.773.002.283-1.46.773z" class="S"/><path d="M32.95 85.656l1.46-.775 1.256.755-1.457.774z" class="R"/><path d="M34.21 86.4v.283l-1.256-.756-.002-.28z" class="T"/><path d="M11.782 70.534l1.458-.773v.28l-1.458.775z" class="S"/><path d="M10.526 69.778l1.458-.773 1.257.755-1.458.774z" class="R"/><path d="M11.782 70.534v.283l-1.257-.756v-.283z" class="T"/><path d="M13.643 71.65l1.458-.773v.283l-1.458.773z" class="S"/><path d="M12.386 70.897l1.458-.775 1.257.755-1.458.774z" class="R"/><path d="M13.643 71.65v.283l-1.257-.756v-.28z" class="T"/><path d="M15.595 72.825l1.457-.773.002.283-1.46.773z" class="S"/><path d="M14.34 72.07l1.458-.773 1.255.755-1.457.774z" class="R"/><path d="M15.595 72.825v.283l-1.256-.756v-.283z" class="T"/><path d="M17.462 73.948l1.457-.775v.283l-1.46.773z" class="S"/><path d="M16.207 73.192l1.457-.773 1.256.753-1.457.776z" class="R"/><path d="M17.462 73.948v.28l-1.256-.754v-.283z" class="T"/><path d="M19.4 75.106l1.46-.775v.283l-1.46.773z" class="S"/><path d="M18.134 74.35l1.457-.773 1.258.753-1.46.776z" class="R"/><path d="M19.4 75.106v.28l-1.256-.754v-.283z" class="T"/><path d="M21.257 76.227l1.46-.773v.28l-1.46.775z" class="S"/><path d="M19.994 75.467l1.46-.773 1.264.76-1.46.774z" class="R"/><path d="M21.257 76.227v.283l-1.264-.76v-.283z" class="T"/><path d="M23.2 77.4l1.457-.773.002.28-1.46.773z" class="S"/><path d="M21.953 76.645l1.46-.773 1.256.755-1.457.774z" class="R"/><path d="M23.2 77.4v.28l-1.256-.754-.002-.283z" class="T"/><path d="M25.072 78.518l1.457-.773v.283l-1.457.773z" class="S"/><path d="M23.814 77.764l1.457-.775 1.258.755-1.457.774z" class="R"/><path d="M25.072 78.518v.283l-1.258-.756v-.28z" class="T"/><path d="M26.902 79.618l1.457-.773v.283l-1.457.773z" class="S"/><path d="M25.644 78.864l1.46-.775 1.256.755-1.457.774z" class="R"/><path d="M26.902 79.618v.283l-1.258-.756v-.28z" class="T"/><path d="M28.76 80.737l1.46-.775v.283l-1.46.773z" class="S"/><path d="M27.505 79.98l1.457-.773 1.258.753-1.46.776z" class="R"/><path d="M28.76 80.737v.28l-1.256-.754v-.283z" class="T"/><path d="M30.714 81.9l1.46-.774v.283l-1.46.772z" class="S"/><path d="M29.46 81.155l1.457-.773 1.258.753-1.46.775z" class="R"/><path d="M30.714 81.9v.28l-1.256-.755v-.28z" class="T"/><path d="M32.582 83.03l1.46-.773v.283l-1.46.773z" class="S"/><path d="M31.326 82.275l1.457-.772 1.258.754-1.46.774z" class="R"/><path d="M32.582 83.03v.283l-1.256-.756v-.283z" class="T"/><path d="M34.51 84.19l1.46-.773v.283l-1.46.773z" class="S"/><path d="M33.253 83.435l1.457-.775 1.258.755-1.46.774z" class="R"/><path d="M34.51 84.19v.283l-1.256-.756v-.28z" class="T"/><path d="M36.334 85.285l1.457-.773.002.283-1.46.773z" class="S"/><path d="M35.076 84.53l1.46-.775 1.256.755-1.457.774z" class="R"/><path d="M36.334 85.285v.283l-1.256-.756-.002-.28z" class="T"/><path d="M6.266 74.46l1.458-.775v.275l-1.458.773z" class="S"/><path d="M5.008 73.705l1.458-.773 1.258.753-1.458.776z" class="R"/><path d="M6.266 74.46v.273L5.01 73.98l-.001-.274z" class="T"/><path d="M8.034 75.524l1.458-.775v.275l-1.458.773z" class="S"/><path d="M6.777 74.768l1.458-.773 1.257.753-1.458.776z" class="R"/><path d="M8.034 75.524v.273l-1.257-.753v-.276z" class="T"/><path d="M9.895 76.64l1.458-.773v.273l-1.458.775z" class="S"/><path d="M8.638 75.885l1.458-.773 1.257.755-1.458.774z" class="R"/><path d="M9.895 76.64v.275l-1.257-.755v-.276z" class="T"/><path d="M25.453 85.96l1.46-.773v.273l-1.46.775z" class="S"/><path d="M24.195 85.204l1.46-.773 1.258.755-1.46.774z" class="R"/><path d="M25.453 85.96v.275l-1.256-.755-.002-.276z" class="T"/><path d="M27.222 87.023l1.457-.773v.273l-1.457.775z" class="S"/><path d="M25.964 86.267l1.46-.773 1.255.755-1.457.774z" class="R"/><path d="M27.222 87.023v.275l-1.258-.755v-.276z" class="T"/><path d="M29.082 88.14l1.46-.773v.275l-1.46.773z" class="S"/><path d="M27.826 87.386l1.457-.775 1.258.755-1.46.774z" class="R"/><path d="M29.082 88.14v.275l-1.256-.755v-.274z" class="T"/><path d="M23.466 84.806l1.46-.773v.275l-1.46.773z" class="S"/><path d="M10.572 77.06l1.458-.773 12.895 7.747-1.46.773z" class="R"/><path d="M23.466 84.806v.275l-12.894-7.747v-.275z" class="T"/><path d="M.742 73.164l29.4 17.67v3.205" class="U V b c"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Personal_Computer_Wireless.svg b/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Personal_Computer_Wireless.svg index ac5e9923a4239d25a401bcdd3a3d61b6768a9ab4..c85d102e0e686720610fca22ddac723ba1d22e29 100644 --- a/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Personal_Computer_Wireless.svg +++ b/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Personal_Computer_Wireless.svg @@ -1,257 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" - id="Layer_1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 106.016 107.776" - style="enable-background:new 0 0 106.016 107.776;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#626366;stroke-width:3;stroke-linejoin:round;} - .st1{fill:#898B8E;} - .st2{fill:#BBBDBF;} - .st3{fill:#B3B5B7;} - .st4{fill:none;stroke:#E1E2E3;stroke-linecap:round;stroke-linejoin:round;} - .st5{fill:none;stroke:#626366;stroke-width:2.668;stroke-linecap:round;stroke-linejoin:round;} - .st6{fill:#FEFEFE;} - .st7{fill:#C4CACE;} - .st8{fill:none;stroke:#636466;stroke-width:1.156;} - .st9{fill:none;stroke:#E1E2E3;stroke-width:0.889;stroke-linecap:round;stroke-linejoin:round;} - .st10{fill:none;stroke:#636466;stroke-width:1.29;} - .st11{fill:none;stroke:#626366;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;} - .st12{fill:#E1E2E3;} - .st13{fill:#231F20;} - .st14{fill:#626366;} - .st15{fill:none;stroke:#636466;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;} - .st16{fill:#636466;stroke:#636466;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;} - .st17{fill:none;stroke:#636466;stroke-width:2;} - .st18{fill:#636466;} - .st19{fill:#F5F6F6;} - .st20{fill:#787A7D;} - .st21{fill:none;stroke:#626366;stroke-width:1.854;stroke-linecap:round;stroke-linejoin:round;} - .st22{fill:none;stroke:#626366;stroke-width:1.246;stroke-linecap:round;stroke-linejoin:round;} -</style> -<title id="title4">icon-PC-wireless</title> -<desc id="desc6">Created with Sketch.</desc> -<polygon id="Stroke-1" class="st0" points="50.348,82.546 62.057,76.331 62.06,79.628 50.35,85.845 "/> -<polygon id="Stroke-2" class="st0" points="20.449,64.581 32.158,58.366 62.057,76.331 50.348,82.546 "/> -<polygon id="Stroke-3" class="st0" points="50.348,82.546 50.35,85.845 20.451,67.878 20.449,64.581 "/> -<polygon id="Fill-4" class="st1" points="50.348,82.546 62.057,76.331 62.06,79.628 50.35,85.845 "/> -<polygon id="Fill-5" class="st2" points="20.449,64.581 32.158,58.366 62.057,76.331 50.348,82.546 "/> -<polygon id="Fill-6" class="st3" points="50.348,82.546 50.35,85.845 20.451,67.878 20.449,64.581 "/> -<polyline id="Stroke-7" class="st4" points="20.691,64.614 50.101,82.284 50.101,85.489 "/> -<polygon id="Stroke-8" class="st5" points="69.045,36.831 74.23,34.078 74.267,84.856 69.079,87.61 "/> -<polygon id="Stroke-9" class="st5" points="14.549,4.088 19.736,1.334 74.23,34.078 69.044,36.831 "/> -<polygon id="Stroke-11" class="st5" points="69.044,36.831 69.079,87.61 14.586,54.866 14.549,4.088 "/> -<polygon id="Fill-14" class="st1" points="69.043,36.831 74.229,34.078 74.266,84.856 69.079,87.61 "/> -<polygon id="Fill-15" class="st2" points="14.549,4.088 19.735,1.334 74.23,34.078 69.042,36.831 "/> -<polygon id="Fill-16" class="st3" points="69.043,36.831 69.079,87.61 14.585,54.866 14.55,4.088 "/> -<polygon id="Fill-17" class="st6" points="66.191,81.903 16.526,51.698 16.526,8.783 66.191,38.985 "/> -<path id="Fill-18" class="st7" d="M47.764,30.581l16.483,9.902l0.092,9.216c0,0-0.293-6.608-5.193-10.75 - C52.89,33.663,47.764,30.581,47.764,30.581"/> -<path id="Stroke-20" class="st8" d="M15.184,55.915l53.89,32.379"/> -<polyline id="Stroke-22" class="st9" points="15.008,4.258 69.023,36.713 69.06,87.178 "/> -<path id="Stroke-24" class="st10" d="M74.906,68.106v13.342"/> -<path id="Stroke-26" class="st11" d="M49.556,94.163c0,0,1.375-0.734,2.5-0.766c1.125-0.031,2.516,0.641,2.516,0.641 - s1.375,0.734,2.046,1.437c0.672,0.704,0.719,0.985,0.766,1.235c0.047,0.25,0.031,0.828-0.047,0.953s-7.75,4.094-7.75,4.094 - s-0.453,0.203-1.187,0.093c-0.735-0.109-2-1-2.407-1.578c-0.406-0.578-0.375-1.468-0.375-1.468s0.016-1.047,1.391-2.61 - C47.915,95.1,49.556,94.163,49.556,94.163z"/> -<path id="Fill-28" class="st2" d="M49.556,94.163c0,0,1.375-0.734,2.5-0.766c1.125-0.031,2.516,0.641,2.516,0.641 - s1.377,0.734,2.046,1.437c0.672,0.704,0.719,0.985,0.766,1.235c0.047,0.25,0.031,0.828-0.047,0.953s-7.75,4.094-7.75,4.094 - s-0.453,0.203-1.187,0.093c-0.735-0.109-2-1-2.407-1.578c-0.406-0.578-0.375-1.468-0.375-1.468s0.016-1.047,1.391-2.61 - C47.915,95.1,49.556,94.163,49.556,94.163"/> -<path id="Fill-30" class="st1" d="M49.757,101.452c0.012-0.09,0.889-2.551,3.768-4.107c2.884-1.518,3.548,0.121,3.49-0.223 - l-0.006,0.547c-2.078,1.109-5.115,2.728-7.191,3.836"/> -<path id="Fill-32" class="st3" d="M47.462,99.889c0.187-0.75,1.266-2.391,1.992-3.141c0.727-0.75,1.36-1.242,2.461-1.804 - c1.102-0.563,2.438-0.985,3.094-0.657c0.656,0.329,1.57,1.149,1.945,1.641s0.281,1.008,0.281,1.008s-1.382-0.469-2.203-0.188 - c-0.82,0.282-2.133,0.938-2.976,1.758c-0.844,0.821-1.172,1.899-1.758,2.578c-0.586,0.68-1.711,0.774-1.711,0.774 - s-1.148-0.235-1.266-0.446C47.204,101.201,47.275,100.639,47.462,99.889"/> -<path id="Fill-34" class="st12" d="M49.369,97.247l-0.504-0.303c-0.918,0.996-1.445,1.975-1.699,2.524l0.506,0.302 - C47.924,99.222,48.453,98.241,49.369,97.247"/> -<polygon id="Stroke-36" class="st0" points="31.4,94.478 43.109,88.263 43.111,91.56 31.402,97.777 "/> -<polygon id="Stroke-38" class="st0" points="1.5,76.514 13.209,70.297 43.109,88.263 31.4,94.478 "/> -<polygon id="Stroke-40" class="st0" points="31.4,94.478 31.402,97.777 1.502,79.811 1.5,76.514 "/> -<polygon id="Fill-42" class="st1" points="31.4,94.478 43.109,88.263 43.111,91.56 31.402,97.777 "/> -<polygon id="Fill-44" class="st2" points="1.5,76.514 13.209,70.297 43.109,88.263 31.4,94.478 "/> -<polygon id="Fill-46" class="st3" points="31.4,94.478 31.402,97.777 1.502,79.811 1.5,76.514 "/> -<polygon id="Fill-48" class="st13" points="8.657,76.167 10.115,75.394 10.115,75.675 8.657,76.45 "/> -<polygon id="Fill-50" class="st6" points="7.4,75.411 8.858,74.638 10.115,75.393 8.657,76.167 "/> -<polygon id="Fill-52" class="st14" points="8.657,76.167 8.657,76.45 7.4,75.694 7.4,75.411 "/> -<polygon id="Fill-54" class="st13" points="10.518,77.284 11.976,76.511 11.976,76.794 10.518,77.567 "/> -<polygon id="Fill-56" class="st6" points="9.261,76.53 10.719,75.755 11.976,76.51 10.518,77.284 "/> -<polygon id="Fill-58" class="st14" points="10.518,77.284 10.518,77.567 9.261,76.811 9.261,76.53 "/> -<polygon id="Fill-60" class="st13" points="12.471,78.458 13.928,77.685 13.929,77.968 12.471,78.741 "/> -<polygon id="Fill-62" class="st6" points="11.214,77.702 12.672,76.929 13.928,77.684 12.471,78.458 "/> -<polygon id="Fill-64" class="st14" points="12.471,78.458 12.471,78.741 11.214,77.985 11.214,77.702 "/> -<polygon id="Fill-66" class="st13" points="14.338,79.581 15.795,78.806 15.796,79.089 14.338,79.862 "/> -<polygon id="Fill-68" class="st6" points="13.081,78.825 14.539,78.052 15.795,78.805 14.338,79.581 "/> -<polygon id="Fill-70" class="st14" points="14.338,79.581 14.338,79.862 13.081,79.108 13.081,78.825 "/> -<polygon id="Fill-72" class="st13" points="16.266,80.739 17.724,79.964 17.724,80.247 16.266,81.02 "/> -<polygon id="Fill-74" class="st6" points="15.009,79.983 16.467,79.21 17.724,79.963 16.266,80.739 "/> -<polygon id="Fill-76" class="st14" points="16.266,80.739 16.266,81.02 15.009,80.266 15.009,79.983 "/> -<polygon id="Fill-78" class="st13" points="18.132,81.86 19.591,81.087 19.591,81.368 18.132,82.143 "/> -<polygon id="Fill-80" class="st6" points="16.869,81.1 18.328,80.327 19.592,81.086 18.133,81.86 "/> -<polygon id="Fill-82" class="st14" points="18.132,81.86 18.132,82.143 16.868,81.383 16.868,81.1 "/> -<polygon id="Fill-84" class="st13" points="20.086,83.034 21.542,82.261 21.545,82.542 20.086,83.315 "/> -<polygon id="Fill-86" class="st6" points="18.828,82.278 20.287,81.505 21.543,82.26 20.086,83.034 "/> -<polygon id="Fill-88" class="st14" points="20.086,83.034 20.086,83.315 18.83,82.561 18.827,82.278 "/> -<polygon id="Fill-90" class="st13" points="21.947,84.151 23.404,83.378 23.404,83.661 21.947,84.434 "/> -<polygon id="Fill-92" class="st6" points="20.689,83.397 22.146,82.622 23.404,83.377 21.947,84.151 "/> -<polygon id="Fill-94" class="st14" points="21.947,84.151 21.947,84.434 20.689,83.678 20.689,83.397 "/> -<polygon id="Fill-96" class="st13" points="23.777,85.252 25.234,84.478 25.234,84.761 23.777,85.533 "/> -<polygon id="Fill-98" class="st6" points="22.519,84.497 23.978,83.722 25.234,84.477 23.777,85.252 "/> -<polygon id="Fill-100" class="st14" points="23.777,85.252 23.777,85.533 22.519,84.778 22.519,84.497 "/> -<polygon id="Fill-102" class="st13" points="25.636,86.369 27.095,85.596 27.095,85.877 25.636,86.652 "/> -<polygon id="Fill-104" class="st6" points="24.38,85.613 25.837,84.841 27.095,85.595 25.636,86.369 "/> -<polygon id="Fill-106" class="st14" points="25.636,86.369 25.636,86.652 24.38,85.896 24.38,85.613 "/> -<polygon id="Fill-108" class="st13" points="27.589,87.543 29.048,86.768 29.048,87.051 27.589,87.824 "/> -<polygon id="Fill-110" class="st6" points="26.333,86.787 27.791,86.014 29.049,86.767 27.59,87.543 "/> -<polygon id="Fill-112" class="st14" points="27.589,87.543 27.589,87.824 26.333,87.07 26.333,86.787 "/> -<polygon id="Fill-114" class="st13" points="29.457,88.664 30.916,87.891 30.916,88.174 29.457,88.947 "/> -<polygon id="Fill-116" class="st6" points="28.201,87.908 29.658,87.135 30.916,87.89 29.457,88.664 "/> -<polygon id="Fill-118" class="st14" points="29.457,88.664 29.457,88.947 28.201,88.191 28.201,87.908 "/> -<polygon id="Fill-120" class="st13" points="31.384,89.822 32.843,89.049 32.843,89.332 31.384,90.105 "/> -<polygon id="Fill-122" class="st6" points="30.128,89.068 31.585,88.293 32.843,89.048 31.384,89.822 "/> -<polygon id="Fill-124" class="st14" points="31.384,89.822 31.384,90.105 30.128,89.349 30.128,89.068 "/> -<polygon id="Fill-126" class="st13" points="33.208,90.918 34.666,90.145 34.667,90.428 33.208,91.201 "/> -<polygon id="Fill-128" class="st6" points="31.951,90.164 33.41,89.389 34.666,90.144 33.209,90.918 "/> -<polygon id="Fill-130" class="st14" points="33.208,90.918 33.208,91.201 31.952,90.445 31.951,90.164 "/> -<polygon id="Fill-132" class="st13" points="10.657,75.042 12.115,74.269 12.115,74.55 10.657,75.325 "/> -<polygon id="Fill-134" class="st6" points="9.4,74.286 10.858,73.513 12.115,74.268 10.657,75.042 "/> -<polygon id="Fill-136" class="st14" points="10.657,75.042 10.657,75.325 9.4,74.569 9.4,74.286 "/> -<polygon id="Fill-138" class="st13" points="12.518,76.159 13.976,75.386 13.976,75.669 12.518,76.442 "/> -<polygon id="Fill-140" class="st6" points="11.261,75.405 12.719,74.63 13.976,75.385 12.518,76.159 "/> -<polygon id="Fill-142" class="st14" points="12.518,76.159 12.518,76.442 11.261,75.686 11.261,75.405 "/> -<polygon id="Fill-144" class="st13" points="14.471,77.333 15.928,76.56 15.929,76.843 14.471,77.616 "/> -<polygon id="Fill-146" class="st6" points="13.214,76.577 14.672,75.804 15.928,76.559 14.471,77.333 "/> -<polygon id="Fill-148" class="st14" points="14.471,77.333 14.471,77.616 13.214,76.86 13.214,76.577 "/> -<polygon id="Fill-150" class="st13" points="16.337,78.456 17.794,77.681 17.796,77.964 16.337,78.737 "/> -<polygon id="Fill-152" class="st6" points="15.081,77.7 16.539,76.927 17.794,77.68 16.337,78.456 "/> -<polygon id="Fill-154" class="st14" points="16.337,78.456 16.337,78.737 15.081,77.983 15.081,77.7 "/> -<polygon id="Fill-156" class="st13" points="18.265,79.614 19.724,78.839 19.724,79.122 18.265,79.895 "/> -<polygon id="Fill-158" class="st6" points="17.009,78.858 18.466,78.085 19.724,78.838 18.265,79.614 "/> -<polygon id="Fill-160" class="st14" points="18.265,79.614 18.265,79.895 17.009,79.141 17.009,78.858 "/> -<polygon id="Fill-162" class="st13" points="20.132,80.735 21.591,79.962 21.591,80.243 20.132,81.018 "/> -<polygon id="Fill-164" class="st6" points="18.869,79.975 20.328,79.202 21.592,79.961 20.133,80.735 "/> -<polygon id="Fill-166" class="st14" points="20.132,80.735 20.132,81.018 18.868,80.258 18.868,79.975 "/> -<polygon id="Fill-168" class="st13" points="22.086,81.909 23.542,81.136 23.545,81.417 22.086,82.19 "/> -<polygon id="Fill-170" class="st6" points="20.828,81.153 22.287,80.38 23.543,81.135 22.086,81.909 "/> -<polygon id="Fill-172" class="st14" points="22.086,81.909 22.086,82.19 20.83,81.436 20.827,81.153 "/> -<polygon id="Fill-174" class="st13" points="23.947,83.026 25.404,82.253 25.404,82.536 23.947,83.309 "/> -<polygon id="Fill-176" class="st6" points="22.689,82.272 24.146,81.497 25.404,82.252 23.947,83.026 "/> -<polygon id="Fill-178" class="st14" points="23.947,83.026 23.947,83.309 22.689,82.553 22.689,82.272 "/> -<polygon id="Fill-180" class="st13" points="25.777,84.126 27.234,83.353 27.234,83.636 25.777,84.409 "/> -<polygon id="Fill-182" class="st6" points="24.519,83.372 25.978,82.597 27.234,83.352 25.777,84.126 "/> -<polygon id="Fill-184" class="st14" points="25.777,84.126 25.777,84.409 24.519,83.653 24.519,83.372 "/> -<polygon id="Fill-186" class="st13" points="27.636,85.244 29.095,84.47 29.095,84.753 27.636,85.527 "/> -<polygon id="Fill-188" class="st6" points="26.38,84.489 27.837,83.716 29.095,84.469 27.636,85.244 "/> -<polygon id="Fill-190" class="st14" points="27.636,85.244 27.636,85.527 26.38,84.772 26.38,84.489 "/> -<polygon id="Fill-192" class="st13" points="29.589,86.418 31.048,85.643 31.048,85.926 29.589,86.699 "/> -<polygon id="Fill-194" class="st6" points="28.333,85.662 29.791,84.89 31.049,85.642 29.59,86.418 "/> -<polygon id="Fill-196" class="st14" points="29.589,86.418 29.589,86.699 28.333,85.945 28.333,85.662 "/> -<polygon id="Fill-198" class="st13" points="31.457,87.539 32.916,86.766 32.916,87.049 31.457,87.822 "/> -<polygon id="Fill-200" class="st6" points="30.201,86.783 31.658,86.01 32.916,86.765 31.457,87.539 "/> -<polygon id="Fill-202" class="st14" points="31.457,87.539 31.457,87.822 30.201,87.066 30.201,86.783 "/> -<polygon id="Fill-204" class="st13" points="33.384,88.697 34.843,87.924 34.843,88.207 33.384,88.98 "/> -<polygon id="Fill-206" class="st6" points="32.128,87.943 33.585,87.168 34.843,87.923 33.384,88.697 "/> -<polygon id="Fill-208" class="st14" points="33.384,88.697 33.384,88.98 32.128,88.224 32.128,87.943 "/> -<polygon id="Fill-210" class="st13" points="35.208,89.793 36.666,89.02 36.667,89.303 35.208,90.076 "/> -<polygon id="Fill-212" class="st6" points="33.951,89.039 35.41,88.264 36.666,89.019 35.209,89.793 "/> -<polygon id="Fill-214" class="st14" points="35.208,89.793 35.208,90.076 33.952,89.32 33.951,89.039 "/> -<polygon id="Fill-216" class="st13" points="12.782,73.917 14.24,73.144 14.24,73.425 12.782,74.2 "/> -<polygon id="Fill-218" class="st6" points="11.525,73.161 12.983,72.388 14.24,73.143 12.782,73.917 "/> -<polygon id="Fill-220" class="st14" points="12.782,73.917 12.782,74.2 11.525,73.444 11.525,73.161 "/> -<polygon id="Fill-222" class="st13" points="14.643,75.034 16.101,74.261 16.101,74.544 14.643,75.317 "/> -<polygon id="Fill-224" class="st6" points="13.386,74.28 14.844,73.505 16.101,74.26 14.643,75.034 "/> -<polygon id="Fill-226" class="st14" points="14.643,75.034 14.643,75.317 13.386,74.561 13.386,74.28 "/> -<polygon id="Fill-228" class="st13" points="16.595,76.208 18.052,75.435 18.054,75.718 16.595,76.491 "/> -<polygon id="Fill-230" class="st6" points="15.339,75.452 16.797,74.679 18.052,75.434 16.595,76.208 "/> -<polygon id="Fill-232" class="st14" points="16.595,76.208 16.595,76.491 15.339,75.735 15.339,75.452 "/> -<polygon id="Fill-234" class="st13" points="18.462,77.331 19.919,76.556 19.921,76.839 18.462,77.612 "/> -<polygon id="Fill-236" class="st6" points="17.207,76.575 18.664,75.802 19.92,76.555 18.463,77.331 "/> -<polygon id="Fill-238" class="st14" points="18.462,77.331 18.462,77.612 17.206,76.858 17.206,76.575 "/> -<polygon id="Fill-240" class="st13" points="20.39,78.489 21.849,77.714 21.849,77.997 20.39,78.77 "/> -<polygon id="Fill-242" class="st6" points="19.134,77.733 20.591,76.96 21.849,77.713 20.39,78.489 "/> -<polygon id="Fill-244" class="st14" points="20.39,78.489 20.39,78.77 19.134,78.016 19.134,77.733 "/> -<polygon id="Fill-246" class="st13" points="22.257,79.61 23.716,78.837 23.716,79.118 22.257,79.893 "/> -<polygon id="Fill-248" class="st6" points="20.994,78.85 22.453,78.077 23.717,78.836 22.258,79.61 "/> -<polygon id="Fill-250" class="st14" points="22.257,79.61 22.257,79.893 20.993,79.133 20.993,78.85 "/> -<polygon id="Fill-252" class="st13" points="24.211,80.784 25.667,80.011 25.67,80.292 24.211,81.065 "/> -<polygon id="Fill-254" class="st6" points="22.953,80.028 24.412,79.255 25.668,80.01 24.211,80.784 "/> -<polygon id="Fill-256" class="st14" points="24.211,80.784 24.211,81.065 22.955,80.311 22.952,80.028 "/> -<polygon id="Fill-258" class="st13" points="26.072,81.901 27.529,81.128 27.529,81.411 26.072,82.184 "/> -<polygon id="Fill-260" class="st6" points="24.814,81.147 26.271,80.372 27.529,81.127 26.072,81.901 "/> -<polygon id="Fill-262" class="st14" points="26.072,81.901 26.072,82.184 24.814,81.428 24.814,81.147 "/> -<polygon id="Fill-264" class="st13" points="27.902,83.001 29.359,82.228 29.359,82.511 27.902,83.284 "/> -<polygon id="Fill-266" class="st6" points="26.644,82.247 28.103,81.472 29.359,82.227 27.902,83.001 "/> -<polygon id="Fill-268" class="st14" points="27.902,83.001 27.902,83.284 26.644,82.528 26.644,82.247 "/> -<polygon id="Fill-270" class="st13" points="29.761,84.12 31.22,83.345 31.22,83.628 29.761,84.401 "/> -<polygon id="Fill-272" class="st6" points="28.505,83.364 29.962,82.591 31.22,83.344 29.761,84.12 "/> -<polygon id="Fill-274" class="st14" points="29.761,84.12 29.761,84.401 28.505,83.647 28.505,83.364 "/> -<polygon id="Fill-276" class="st13" points="31.714,85.293 33.173,84.519 33.173,84.802 31.714,85.574 "/> -<polygon id="Fill-278" class="st6" points="30.458,84.538 31.916,83.765 33.174,84.518 31.715,85.293 "/> -<polygon id="Fill-280" class="st14" points="31.714,85.293 31.714,85.574 30.458,84.819 30.458,84.538 "/> -<polygon id="Fill-282" class="st13" points="33.582,86.414 35.041,85.641 35.041,85.924 33.582,86.697 "/> -<polygon id="Fill-284" class="st6" points="32.326,85.658 33.783,84.886 35.041,85.64 33.582,86.414 "/> -<polygon id="Fill-286" class="st14" points="33.582,86.414 33.582,86.697 32.326,85.941 32.326,85.658 "/> -<polygon id="Fill-288" class="st13" points="35.509,87.572 36.968,86.799 36.968,87.082 35.509,87.855 "/> -<polygon id="Fill-290" class="st6" points="34.253,86.818 35.71,86.043 36.968,86.798 35.509,87.572 "/> -<polygon id="Fill-292" class="st14" points="35.509,87.572 35.509,87.855 34.253,87.099 34.253,86.818 "/> -<polygon id="Fill-294" class="st13" points="37.333,88.668 38.791,87.895 38.792,88.178 37.333,88.951 "/> -<polygon id="Fill-296" class="st6" points="36.076,87.914 37.535,87.139 38.791,87.894 37.334,88.668 "/> -<polygon id="Fill-298" class="st14" points="37.333,88.668 37.333,88.951 36.077,88.195 36.076,87.914 "/> -<polygon id="Fill-300" class="st13" points="7.266,77.845 8.724,77.07 8.724,77.345 7.266,78.117 "/> -<polygon id="Fill-302" class="st6" points="6.008,77.089 7.466,76.316 8.724,77.069 7.266,77.845 "/> -<polygon id="Fill-304" class="st14" points="7.266,77.845 7.266,78.117 6.009,77.363 6.008,77.088 "/> -<polygon id="Fill-306" class="st13" points="9.034,78.907 10.492,78.132 10.492,78.407 9.034,79.18 "/> -<polygon id="Fill-308" class="st6" points="7.777,78.151 9.235,77.378 10.492,78.131 9.034,78.907 "/> -<polygon id="Fill-310" class="st14" points="9.034,78.907 9.034,79.18 7.777,78.427 7.777,78.151 "/> -<polygon id="Fill-312" class="st13" points="10.895,80.024 12.353,79.251 12.353,79.524 10.895,80.299 "/> -<polygon id="Fill-314" class="st6" points="9.638,79.268 11.096,78.495 12.353,79.25 10.895,80.024 "/> -<polygon id="Fill-316" class="st14" points="10.895,80.024 10.895,80.299 9.638,79.544 9.638,79.268 "/> -<polygon id="Fill-318" class="st13" points="26.453,89.343 27.912,88.571 27.912,88.843 26.453,89.618 "/> -<polygon id="Fill-320" class="st6" points="25.195,88.588 26.654,87.815 27.912,88.57 26.453,89.344 "/> -<polygon id="Fill-322" class="st14" points="26.453,89.343 26.453,89.618 25.197,88.864 25.195,88.587 "/> -<polygon id="Fill-324" class="st13" points="28.222,90.406 29.679,89.633 29.679,89.906 28.222,90.681 "/> -<polygon id="Fill-326" class="st6" points="26.964,89.65 28.423,88.877 29.679,89.632 28.222,90.406 "/> -<polygon id="Fill-328" class="st14" points="28.222,90.406 28.222,90.681 26.964,89.926 26.964,89.65 "/> -<polygon id="Fill-330" class="st13" points="30.082,91.523 31.541,90.75 31.541,91.025 30.082,91.798 "/> -<polygon id="Fill-332" class="st6" points="28.826,90.769 30.283,89.994 31.541,90.749 30.082,91.523 "/> -<polygon id="Fill-334" class="st14" points="30.082,91.523 30.082,91.798 28.826,91.043 28.826,90.769 "/> -<polygon id="Fill-336" class="st13" points="24.466,88.189 25.925,87.416 25.925,87.691 24.466,88.464 "/> -<polygon id="Fill-338" class="st6" points="11.572,80.442 13.03,79.669 25.925,87.416 24.466,88.189 "/> -<polygon id="Fill-340" class="st14" points="24.466,88.189 24.466,88.464 11.572,80.717 11.572,80.442 "/> -<polyline id="Stroke-342" class="st4" points="1.742,76.548 31.152,94.217 31.152,97.422 "/> -<path id="Stroke-85" class="st15" d="M104.222,97.317l-17.553,9.317c0.478-0.254,0.774-0.841,0.778-1.692l17.552-9.317 - C104.998,96.474,104.7,97.064,104.222,97.317z"/> -<polygon id="Stroke-87" class="st15" points="67.197,68.032 84.751,58.715 102.736,69.521 85.182,78.84 "/> -<polygon id="Stroke-89" class="st15" points="87.447,83.064 105.002,73.746 105.016,95.431 87.464,104.748 "/> -<path id="Stroke-129" class="st15" d="M84.967,78.818c1.361,0.815,2.459,2.797,2.462,4.439l0.019,21.686 - c-0.004,1.633-1.1,2.302-2.459,1.484L67.004,95.62c-1.359-0.816-2.46-2.805-2.463-4.439l-0.015-21.686 - c-0.001-1.639,1.1-2.3,2.458-1.484L84.967,78.818z"/> -<path id="Stroke-163" class="st16" d="M84.967,78.818l17.555-9.318c1.359,0.816,2.455,2.801,2.462,4.441l-17.555,9.316 - C87.426,81.615,86.328,79.633,84.967,78.818z"/> -<path id="Fill-228_1_" class="st17" d="M65.512,67.823c5.853-3.106,11.703-6.213,17.554-9.317c0.439-0.234,1.032-0.181,1.684,0.209 - l-17.553,9.317C66.544,67.642,65.953,67.591,65.512,67.823"/> -<polygon id="Fill-256_1_" class="st3" points="66.693,68.032 84.246,58.715 102.231,69.52 84.676,78.84 "/> -<polygon id="Fill-258_1_" class="st1" points="87.137,83.279 104.692,73.961 104.707,95.646 87.154,104.963 "/> -<path id="Fill-292_1_" class="st18" d="M86.429,104.525l-0.017-21.684c0-1.156-0.774-2.554-1.734-3.13L66.694,68.905 - c-0.958-0.575-1.731-0.107-1.731,1.048l0.016,21.684c0,1.152,0.775,2.551,1.734,3.13l17.984,10.806 - C85.654,106.147,86.429,105.678,86.429,104.525z M84.676,78.839c1.361,0.815,2.459,2.797,2.462,4.439l0.017,21.686 - c-0.002,1.633-1.099,2.3-2.458,1.484L66.713,95.642c-1.359-0.818-2.46-2.806-2.463-4.439l-0.015-21.686 - c-0.001-1.639,1.1-2.3,2.458-1.484L84.676,78.839z"/> -<path id="Fill-294_1_" class="st19" d="M84.677,79.712c0.96,0.575,1.734,1.975,1.734,3.13l0.017,21.684 - c0,1.151-0.774,1.622-1.732,1.048L66.712,94.768c-0.959-0.58-1.734-1.978-1.734-3.13l-0.016-21.684c0-1.156,0.773-1.624,1.731-1.049 - L84.677,79.712z"/> -<path id="Stroke-163-1" class="st2" d="M84.676,78.839l17.555-9.318c1.359,0.816,2.455,2.801,2.462,4.441l-17.555,9.316 - C87.135,81.636,86.037,79.654,84.676,78.839z"/> -<path id="Fill-228-8" class="st2" d="M65.008,67.823c5.853-3.106,11.703-6.213,17.554-9.317c0.439-0.234,1.032-0.181,1.684,0.209 - l-17.553,9.317C66.04,67.642,65.449,67.591,65.008,67.823"/> -<path id="Stroke-85-0" class="st20" d="M103.931,97.338l-17.553,9.317c0.478-0.254,0.774-0.841,0.778-1.692l17.552-9.317 - C104.707,96.495,104.409,97.085,103.931,97.338z"/> -<path id="Fill-645" class="st14" d="M77.679,87.986c0,1.479-1.061,2.04-2.368,1.255c-1.307-0.787-2.368-2.623-2.368-4.102 - c0-1.48,1.061-2.042,2.368-1.255C76.619,84.67,77.679,86.507,77.679,87.986"/> -<path id="Stroke-647" class="st21" d="M75.308,87.706v9.665"/> -<path id="Fill-649" class="st6" d="M76.692,86.729c0,0.347-0.249,0.479-0.558,0.294c-0.305-0.183-0.553-0.614-0.553-0.961 - s0.248-0.479,0.553-0.295C76.443,85.953,76.692,86.382,76.692,86.729"/> -<path id="Stroke-651" class="st22" d="M81.187,90.261c-0.418-3.54-2.914-7.571-5.938-9.39c-2.992-1.797-5.465-0.807-5.922,2.154"/> -<path id="Stroke-653" class="st22" d="M83.815,89.445c-0.072-0.28-0.152-0.562-0.24-0.844c-1.351-4.399-4.492-8.802-8.156-11.006 - c-3.871-2.325-7.154-1.498-8.367,1.681"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 106.016 107.776"><style><![CDATA[.X{fill:#fefefe}.Y{fill:#626366}.Z{fill:#231f20}.a{stroke-linejoin:round}.b{fill:none}.c{stroke:#626366}.d{fill:#898b8e}.e{fill:#bbbdbf}.f{fill:#b3b5b7}.g{stroke-linecap:round}.h{stroke:#636466}.i{stroke-width:3}.j{stroke:#e1e2e3}.k{stroke-width:2}]]></style><g class="a b c i"><path d="M50.348 82.546l11.71-6.215.003 3.297-11.7 6.217z"/><path d="M20.45 64.58l11.71-6.215 29.9 17.965-11.71 6.215z"/><path d="M50.348 82.546l.002 3.3-29.9-17.967V64.58z"/></g><path d="M50.348 82.546l11.71-6.215.003 3.297-11.7 6.217z" class="d"/><path d="M20.45 64.58l11.71-6.215 29.9 17.965-11.71 6.215z" class="e"/><path d="M50.348 82.546l.002 3.3-29.9-17.967V64.58z" class="f"/><g class="a b"><path d="M20.69 64.614l29.4 17.67v3.205" class="g j"/><g stroke-width="2.668" class="c"><path d="M69.045 36.83l5.185-2.753.037 50.778L69.08 87.6z"/><path d="M14.55 4.088l5.187-2.754L74.23 34.078l-5.186 2.753z"/><path d="M69.044 36.83l.035 50.78-54.493-32.744-.037-50.778z"/></g></g><path d="M69.043 36.83l5.186-2.753.037 50.778L69.08 87.6z" class="d"/><path d="M14.55 4.088l5.186-2.754L74.23 34.078l-5.188 2.753z" class="e"/><path d="M69.043 36.83l.036 50.78-54.494-32.744-.035-50.778z" class="f"/><path d="M66.19 81.903L16.526 51.698V8.783L66.19 38.985z" class="X"/><path d="M47.764 30.58l16.483 9.902.092 9.216s-.293-6.608-5.193-10.75C52.9 33.663 47.764 30.58 47.764 30.58" fill="#c4cace"/><g class="b"><path d="M15.184 55.915l53.9 32.38" stroke-width="1.156" class="h"/><path d="M15.008 4.258l54.015 32.455.037 50.465" stroke-width=".889" class="a g j"/><path d="M74.906,68.106v13.342" stroke-width="1.29" class="h"/><path d="M49.556 94.163s1.375-.734 2.5-.766 2.516.64 2.516.64 1.375.734 2.046 1.437.72.985.766 1.235.03.828-.047.953-7.75 4.094-7.75 4.094-.453.203-1.187.093-2-1-2.407-1.578-.375-1.468-.375-1.468.016-1.047 1.39-2.6c.906-1.094 2.547-2.03 2.547-2.03z" class="a c i"/></g><path d="M49.556 94.163s1.375-.734 2.5-.766 2.516.64 2.516.64 1.377.734 2.046 1.437.72.985.766 1.235.03.828-.047.953-7.75 4.094-7.75 4.094-.453.203-1.187.093-2-1-2.407-1.578-.375-1.468-.375-1.468.016-1.047 1.39-2.6c.906-1.094 2.547-2.03 2.547-2.03" class="e"/><path d="M49.757 101.452c.012-.1.89-2.55 3.768-4.107 2.884-1.518 3.548.12 3.5-.223l-.006.547-7.19 3.836" class="d"/><path d="M47.462 99.89c.187-.75 1.266-2.39 1.992-3.14s1.36-1.242 2.46-1.804 2.438-.985 3.094-.657 1.57 1.15 1.945 1.64.28 1.008.28 1.008-1.382-.47-2.203-.188-2.133.938-2.976 1.758-1.172 1.9-1.758 2.578-1.71.774-1.71.774-1.148-.235-1.266-.446-.046-.773.14-1.523" class="f"/><path d="M49.37 97.247l-.504-.303c-.918.996-1.445 1.975-1.7 2.524l.506.302c.252-.548.78-1.53 1.697-2.523" fill="#e1e2e3"/><g class="a b c i"><path d="M31.4 94.478l11.71-6.215v3.297l-11.71 6.217z"/><path d="M1.5 76.514l11.71-6.217 29.9 17.966-11.71 6.215z"/><path d="M31.4 94.478l.002 3.3-29.9-17.966-.002-3.297z"/></g><path d="M31.4 94.478l11.71-6.215v3.297l-11.71 6.217z" class="d"/><path d="M1.5 76.514l11.71-6.217 29.9 17.966-11.71 6.215z" class="e"/><path d="M31.4 94.478l.002 3.3-29.9-17.966-.002-3.297z" class="f"/><path d="M8.657 76.167l1.458-.773v.28l-1.458.775z" class="Z"/><path d="M7.4 75.41l1.458-.773 1.257.755-1.458.774z" class="X"/><path d="M8.657 76.167v.283L7.4 75.694v-.283z" class="Y"/><path d="M10.518 77.284l1.458-.773v.283l-1.458.773z" class="Z"/><path d="M9.26 76.53l1.458-.775 1.257.755-1.458.774z" class="X"/><path d="M10.518 77.284v.283L9.26 76.81v-.28z" class="Y"/><path d="M12.47 78.458l1.457-.773.001.283-1.458.773z" class="Z"/><path d="M11.214 77.702l1.458-.773 1.256.755-1.457.774z" class="X"/><path d="M12.47 78.458v.283l-1.257-.756v-.283z" class="Y"/><path d="M14.338 79.58l1.457-.775.001.283-1.458.773z" class="Z"/><path d="M13.08 78.825l1.458-.773 1.256.753-1.457.776z" class="X"/><path d="M14.338 79.58v.28l-1.257-.754v-.283z" class="Y"/><path d="M16.266 80.74l1.458-.775v.283l-1.458.773z" class="Z"/><path d="M15.01 79.983l1.458-.773 1.257.753-1.458.776z" class="X"/><path d="M16.266 80.74v.28l-1.257-.754v-.283z" class="Y"/><path d="M18.132 81.86l1.46-.773v.28l-1.46.775z" class="Z"/><path d="M16.87 81.1l1.46-.773 1.264.76-1.46.774z" class="X"/><path d="M18.132 81.86v.283l-1.264-.76V81.1z" class="Y"/><path d="M20.086 83.034l1.456-.773.003.28-1.46.773z" class="Z"/><path d="M18.828 82.278l1.46-.773 1.256.755-1.457.774z" class="X"/><path d="M20.086 83.034v.28l-1.256-.754-.003-.283z" class="Y"/><path d="M21.947 84.15l1.457-.773v.283l-1.457.773z" class="Z"/><path d="M20.69 83.397l1.457-.775 1.258.755-1.457.774z" class="X"/><path d="M21.947 84.15v.283l-1.258-.756v-.28z" class="Y"/><path d="M23.777 85.252l1.457-.774v.283l-1.457.772z" class="Z"/><path d="M22.52 84.497l1.46-.775 1.256.755-1.457.775z" class="X"/><path d="M23.777 85.252v.28l-1.258-.755v-.28z" class="Y"/><path d="M25.636 86.37l1.46-.773v.28l-1.46.775z" class="Z"/><path d="M24.38 85.613l1.457-.772 1.258.754-1.46.774z" class="X"/><path d="M25.636 86.37v.283l-1.256-.756v-.283z" class="Y"/><path d="M27.59 87.543l1.46-.775v.283l-1.46.773z" class="Z"/><path d="M26.333 86.787l1.458-.773 1.258.753-1.46.776z" class="X"/><path d="M27.59 87.543v.28l-1.256-.754v-.283z" class="Y"/><path d="M29.457 88.664l1.46-.773v.283l-1.46.773z" class="Z"/><path d="M28.2 87.908l1.457-.773 1.258.755-1.46.774z" class="X"/><path d="M29.457 88.664v.283L28.2 88.19v-.283z" class="Y"/><path d="M31.384 89.822l1.46-.773v.283l-1.46.773z" class="Z"/><path d="M30.128 89.068l1.457-.775 1.258.755-1.46.774z" class="X"/><path d="M31.384 89.822v.283l-1.256-.756v-.28z" class="Y"/><path d="M33.208 90.918l1.458-.773.001.283-1.46.773z" class="Z"/><path d="M31.95 90.164l1.46-.775 1.256.755-1.457.774z" class="X"/><path d="M33.208 90.918v.283l-1.256-.756-.001-.28z" class="Y"/><path d="M10.657 75.042l1.458-.773v.28l-1.458.775z" class="Z"/><path d="M9.4 74.286l1.458-.773 1.257.755-1.458.774z" class="X"/><path d="M10.657 75.042v.283L9.4 74.57v-.283z" class="Y"/><path d="M12.518 76.16l1.458-.773v.283l-1.458.773z" class="Z"/><path d="M11.26 75.405l1.458-.775 1.257.755-1.458.774z" class="X"/><path d="M12.518 76.16v.283l-1.257-.756v-.28z" class="Y"/><path d="M14.47 77.333l1.457-.773.001.283-1.458.773z" class="Z"/><path d="M13.214 76.577l1.458-.773 1.256.755-1.457.774z" class="X"/><path d="M14.47 77.333v.283l-1.257-.756v-.283z" class="Y"/><path d="M16.337 78.456l1.457-.775.002.283-1.46.773z" class="Z"/><path d="M15.08 77.7l1.458-.773 1.255.753-1.457.776z" class="X"/><path d="M16.337 78.456v.28l-1.256-.754V77.7z" class="Y"/><path d="M18.265 79.614l1.46-.775v.283l-1.46.773z" class="Z"/><path d="M17.01 78.858l1.457-.773 1.258.753-1.46.776z" class="X"/><path d="M18.265 79.614v.28l-1.256-.754v-.283z" class="Y"/><path d="M20.132 80.735l1.46-.773v.28l-1.46.775z" class="Z"/><path d="M18.87 79.975l1.46-.773 1.264.76-1.46.774z" class="X"/><path d="M20.132 80.735v.283l-1.264-.76v-.283z" class="Y"/><path d="M22.086 81.91l1.456-.773.003.28-1.46.773z" class="Z"/><path d="M20.828 81.153l1.46-.773 1.256.755-1.457.774z" class="X"/><path d="M22.086 81.91v.28l-1.256-.754-.003-.283z" class="Y"/><path d="M23.947 83.026l1.457-.773v.283l-1.457.773z" class="Z"/><path d="M22.69 82.272l1.457-.775 1.258.755-1.457.774z" class="X"/><path d="M23.947 83.026v.283l-1.258-.756v-.28z" class="Y"/><path d="M25.777 84.126l1.457-.773v.283l-1.457.773z" class="Z"/><path d="M24.52 83.372l1.46-.775 1.256.755-1.457.774z" class="X"/><path d="M25.777 84.126v.283l-1.258-.756v-.28z" class="Y"/><path d="M27.636 85.244l1.46-.774v.283l-1.46.774z" class="Z"/><path d="M26.38 84.49l1.457-.773 1.258.753-1.46.775z" class="X"/><path d="M27.636 85.244v.283l-1.256-.755v-.283z" class="Y"/><path d="M29.59 86.418l1.46-.775v.283l-1.46.773z" class="Z"/><path d="M28.333 85.662l1.458-.772 1.258.752-1.46.776z" class="X"/><path d="M29.59 86.418v.28l-1.256-.754v-.283z" class="Y"/><path d="M31.457 87.54l1.46-.773v.283l-1.46.773z" class="Z"/><path d="M30.2 86.783L31.658 86l1.258.755-1.46.774z" class="X"/><path d="M31.457 87.54v.283l-1.256-.756v-.283z" class="Y"/><path d="M33.384 88.697l1.46-.773v.283l-1.46.773z" class="Z"/><path d="M32.128 87.943l1.457-.775 1.258.755-1.46.774z" class="X"/><path d="M33.384 88.697v.283l-1.256-.756v-.28z" class="Y"/><path d="M35.208 89.793l1.458-.773.001.283-1.46.773z" class="Z"/><path d="M33.95 89.04l1.46-.775 1.256.755-1.457.774z" class="X"/><path d="M35.208 89.793v.283l-1.256-.756-.001-.28z" class="Y"/><path d="M12.782 73.917l1.458-.773v.28l-1.458.775z" class="Z"/><path d="M11.525 73.16l1.458-.773 1.257.755-1.458.774z" class="X"/><path d="M12.782 73.917v.283l-1.257-.756v-.283z" class="Y"/><path d="M14.643 75.034l1.458-.773v.283l-1.458.773z" class="Z"/><path d="M13.386 74.28l1.458-.775 1.257.755-1.458.774z" class="X"/><path d="M14.643 75.034v.283l-1.257-.756v-.28z" class="Y"/><path d="M16.595 76.208l1.457-.773.002.283-1.46.773z" class="Z"/><path d="M15.34 75.452l1.458-.773 1.255.755-1.457.774z" class="X"/><path d="M16.595 76.208v.283l-1.256-.756v-.283z" class="Y"/><path d="M18.462 77.33l1.457-.775v.283l-1.46.773z" class="Z"/><path d="M17.207 76.575l1.457-.773 1.256.753-1.457.776z" class="X"/><path d="M18.462 77.33v.28l-1.256-.754v-.283z" class="Y"/><path d="M20.4 78.49l1.46-.775v.283l-1.46.773z" class="Z"/><path d="M19.134 77.733l1.457-.773 1.258.753-1.46.776z" class="X"/><path d="M20.4 78.49v.28l-1.256-.754v-.283z" class="Y"/><path d="M22.257 79.6l1.46-.773v.28l-1.46.775z" class="Z"/><path d="M20.994 78.85l1.46-.773 1.264.76-1.46.774z" class="X"/><path d="M22.257 79.6v.283l-1.264-.76v-.283z" class="Y"/><path d="M24.21 80.784l1.456-.773.003.28-1.46.773z" class="Z"/><path d="M22.953 80.028l1.46-.773 1.256.755-1.457.774z" class="X"/><path d="M24.21 80.784v.28l-1.256-.754-.003-.283z" class="Y"/><path d="M26.072 81.9l1.457-.773v.283l-1.457.773z" class="Z"/><path d="M24.814 81.147l1.457-.775 1.258.755-1.457.774z" class="X"/><path d="M26.072 81.9v.283l-1.258-.756v-.28z" class="Y"/><path d="M27.902 83l1.457-.773v.283l-1.457.773z" class="Z"/><path d="M26.644 82.247l1.46-.775 1.256.755-1.457.774z" class="X"/><path d="M27.902 83v.283l-1.258-.756v-.28z" class="Y"/><path d="M29.76 84.12l1.46-.775v.283l-1.46.773z" class="Z"/><path d="M28.505 83.364l1.457-.773 1.258.753-1.46.776z" class="X"/><path d="M29.76 84.12v.28l-1.256-.754v-.283z" class="Y"/><path d="M31.714 85.293l1.46-.774v.283l-1.46.772z" class="Z"/><path d="M30.458 84.538l1.458-.773 1.258.753-1.46.775z" class="X"/><path d="M31.714 85.293v.28l-1.256-.755v-.28z" class="Y"/><path d="M33.582 86.414l1.46-.773v.283l-1.46.773z" class="Z"/><path d="M32.326 85.658l1.457-.772 1.258.754-1.46.774z" class="X"/><path d="M33.582 86.414v.283l-1.256-.756v-.283z" class="Y"/><path d="M35.51 87.572l1.46-.773v.283l-1.46.773z" class="Z"/><path d="M34.253 86.818l1.457-.775 1.258.755-1.46.774z" class="X"/><path d="M35.51 87.572v.283l-1.256-.756v-.28z" class="Y"/><path d="M37.333 88.668l1.458-.773.001.283-1.46.773z" class="Z"/><path d="M36.076 87.914l1.46-.775 1.256.755-1.457.774z" class="X"/><path d="M37.333 88.668v.283l-1.256-.756-.001-.28z" class="Y"/><path d="M7.266 77.845l1.458-.775v.275l-1.458.772z" class="Z"/><path d="M6.008 77.09l1.458-.773 1.258.753-1.458.776z" class="X"/><path d="M7.266 77.845v.272l-1.257-.754-.001-.275z" class="Y"/><path d="M9.034 78.907l1.458-.775v.275l-1.458.773z" class="Z"/><path d="M7.777 78.15l1.458-.773 1.257.753-1.458.776z" class="X"/><path d="M9.034 78.907v.273l-1.257-.753v-.276z" class="Y"/><path d="M10.895 80.024l1.458-.773v.273l-1.458.775z" class="Z"/><path d="M9.638 79.268l1.458-.773 1.257.755-1.458.774z" class="X"/><path d="M10.895 80.024v.275l-1.257-.755v-.276z" class="Y"/><path d="M26.453 89.343l1.46-.772v.272l-1.46.775z" class="Z"/><path d="M25.195 88.588l1.46-.773 1.258.755-1.46.774z" class="X"/><path d="M26.453 89.343v.275l-1.256-.754-.002-.277z" class="Y"/><path d="M28.222 90.406l1.457-.773v.273l-1.457.775z" class="Z"/><path d="M26.964 89.65l1.46-.773 1.256.755-1.457.774z" class="X"/><path d="M28.222 90.406v.275l-1.258-.755v-.276z" class="Y"/><path d="M30.082 91.523l1.46-.773v.275l-1.46.773z" class="Z"/><path d="M28.826 90.77l1.457-.775 1.258.755-1.46.774z" class="X"/><path d="M30.082 91.523v.275l-1.256-.755v-.274z" class="Y"/><path d="M24.466 88.19l1.46-.773v.275l-1.46.773z" class="Z"/><path d="M11.572 80.442l1.458-.773 12.895 7.747-1.46.773z" class="X"/><path d="M24.466 88.19v.275l-12.894-7.747v-.275z" class="Y"/><g class="a b"><path d="M1.742 76.548l29.4 17.67v3.205" class="g j"/><g class="h k"><path d="M104.222 97.317l-17.553 9.317c.478-.254.774-.84.778-1.692L105 95.625c-.001.85-.3 1.44-.777 1.692zM67.197 68.032l17.554-9.317 17.985 10.806-17.554 9.32zm20.25 15.032l17.555-9.318.014 21.685-17.552 9.317z"/><path d="M84.967 78.818c1.36.815 2.46 2.797 2.462 4.44l.02 21.686c-.004 1.633-1.1 2.302-2.46 1.484L67.004 95.62c-1.36-.816-2.46-2.805-2.463-4.44l-.015-21.686c-.001-1.64 1.1-2.3 2.458-1.484l17.983 10.807z"/></g></g><path d="M84.967 78.818l17.555-9.318c1.36.816 2.455 2.8 2.462 4.44L87.43 83.257c-.003-1.642-1.1-3.624-2.462-4.44z" fill="#636466" class="a h k"/><path d="M65.512 67.823l17.554-9.317c.44-.234 1.032-.18 1.684.21l-17.553 9.317c-.653-.4-1.244-.44-1.685-.21" class="b h k"/><path d="M66.693 68.032l17.553-9.317L102.23 69.52l-17.555 9.32z" class="f"/><path d="M87.137 83.28l17.555-9.318.015 21.685-17.553 9.317z" class="d"/><path d="M86.43 104.525l-.017-21.684c0-1.156-.774-2.554-1.734-3.13L66.694 68.905c-.958-.575-1.73-.107-1.73 1.048l.016 21.684c0 1.152.775 2.55 1.734 3.13l17.984 10.806c.957.574 1.732.105 1.732-1.048zM84.676 78.84c1.36.815 2.46 2.797 2.462 4.44l.017 21.686c-.002 1.633-1.1 2.3-2.458 1.484L66.713 95.642c-1.36-.818-2.46-2.806-2.463-4.44l-.015-21.686c-.001-1.64 1.1-2.3 2.458-1.484L84.676 78.84z" fill="#636466"/><path d="M84.677 79.712c.96.575 1.734 1.975 1.734 3.13l.017 21.684c0 1.15-.774 1.622-1.732 1.048L66.712 94.768c-.96-.58-1.734-1.978-1.734-3.13l-.016-21.684c0-1.156.773-1.624 1.73-1.05l17.984 10.807z" fill="#f5f6f6"/><path d="M84.676 78.84l17.555-9.318c1.36.816 2.455 2.8 2.462 4.44l-17.555 9.316c-.003-1.642-1.1-3.624-2.462-4.44zM65.008 67.823l17.554-9.317c.44-.234 1.032-.18 1.684.2l-17.553 9.317c-.653-.4-1.244-.44-1.685-.2" class="e"/><path d="M103.93 97.338l-17.553 9.317c.478-.254.774-.84.778-1.692l17.552-9.317c-.001.85-.3 1.44-.777 1.692z" fill="#787a7d"/><path d="M77.68 87.986c0 1.48-1.06 2.04-2.368 1.255s-2.368-2.623-2.368-4.102 1.06-2.042 2.368-1.255 2.368 2.623 2.368 4.102" class="Y"/><path d="M75.308,87.706v9.665" stroke-width="1.854" class="a b c g"/><path d="M76.692 86.73c0 .347-.25.48-.558.294a1.25 1.25 0 0 1-.553-.961c0-.347.248-.48.553-.295s.558.615.558.962" class="X"/><path d="M81.187 90.26c-.418-3.54-2.914-7.57-5.938-9.4-2.992-1.797-5.465-.807-5.922 2.154m14.488 6.43l-.24-.844c-1.35-4.4-4.492-8.802-8.156-11.006-3.87-2.325-7.154-1.498-8.367 1.68" stroke-width="1.246" class="a b c g"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Personal_Computer_with_Server.svg b/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Personal_Computer_with_Server.svg index 1989d944ebeb40def6ef21bc4e34c44fdede2d53..f90c21bfe92d6413d674765e1ee131fceefeff3f 100644 --- a/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Personal_Computer_with_Server.svg +++ b/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Personal_Computer_with_Server.svg @@ -1,253 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 103.97 103.382" style="enable-background:new 0 0 103.97 103.382;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#626366;stroke-width:3;stroke-linejoin:round;} - .st1{fill:#898B8E;} - .st2{fill:#BBBDBF;} - .st3{fill:#B3B5B7;} - .st4{fill:none;stroke:#DFE0DF;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;} - .st5{fill:#FEFEFE;} - .st6{fill:none;stroke:#E1E2E3;stroke-linecap:round;stroke-linejoin:round;} - .st7{fill:none;stroke:#626366;stroke-width:2.668;stroke-linecap:round;stroke-linejoin:round;} - .st8{fill:#C4CACE;} - .st9{fill:none;stroke:#636466;stroke-width:1.156;} - .st10{fill:none;stroke:#E1E2E3;stroke-width:0.889;stroke-linecap:round;stroke-linejoin:round;} - .st11{filter:url(#Adobe_OpacityMaskFilter);} - .st12{fill:#FFFFFF;} - .st13{mask:url(#mask-2_1_);fill:none;stroke:#636466;stroke-width:1.29;} - .st14{fill:none;stroke:#626366;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;} - .st15{fill:#E1E2E3;} - .st16{fill:#231F20;} - .st17{fill:#626366;} -</style> -<title>icon-pc-server</title> -<desc>Created with Sketch.</desc> -<g id="Page-1"> - <g id="Desktop" transform="translate(-193.000000, -51.000000)"> - <g id="icon-pc-server" transform="translate(194.000000, 51.000000)"> - <polygon id="Stroke-1" class="st0" points="16.801,38.037 49.084,20.901 49.109,55.86 16.825,72.996 "/> - <g id="Group-6" transform="translate(0.000000, 10.383000)"> - <polygon id="Stroke-2" class="st0" points="0.5,17.859 32.783,0.723 49.084,10.518 16.801,27.654 "/> - <polygon id="Stroke-4" class="st0" points="16.801,27.654 16.825,62.613 0.524,52.818 0.5,17.859 "/> - </g> - <polygon id="Fill-7" class="st1" points="16.801,38.038 49.084,20.902 49.109,55.86 16.825,72.997 "/> - <polygon id="Fill-8" class="st2" points="0.5,28.243 32.783,11.106 49.084,20.901 16.801,38.037 "/> - <polygon id="Fill-9" class="st3" points="16.801,38.038 16.825,72.997 0.524,63.202 0.5,28.244 "/> - <polyline id="Stroke-10" class="st4" points="1.002,28.274 16.938,37.851 16.938,72.847 "/> - <polygon id="Fill-11" class="st5" points="14.658,45.228 2.302,37.804 2.302,33.163 14.658,40.587 "/> - <polygon id="Fill-12" class="st5" points="14.658,49.668 2.302,42.244 2.302,39.62 14.658,47.044 "/> - <polygon id="Fill-13" class="st5" points="14.658,63.42 2.302,55.996 2.302,54.784 14.658,62.209 "/> - <polygon id="Fill-14" class="st5" points="14.658,66.111 2.302,58.687 2.302,57.476 14.658,64.9 "/> - <polygon id="Fill-15" class="st5" points="14.658,68.939 2.302,61.514 2.302,60.303 14.658,67.727 "/> - <polygon id="Stroke-16" class="st0" points="77.718,82.545 89.427,76.33 89.43,79.627 77.72,85.844 "/> - <polygon id="Stroke-17" class="st0" points="47.819,64.581 59.528,58.366 89.427,76.331 77.718,82.546 "/> - <polygon id="Stroke-18" class="st0" points="77.718,82.545 77.72,85.844 47.821,67.877 47.819,64.58 "/> - <polygon id="Fill-19" class="st1" points="77.718,82.545 89.427,76.33 89.43,79.627 77.72,85.844 "/> - <polygon id="Fill-20" class="st2" points="47.819,64.581 59.528,58.366 89.427,76.331 77.718,82.546 "/> - <polygon id="Fill-21" class="st3" points="77.718,82.545 77.72,85.844 47.821,67.877 47.819,64.58 "/> - <polyline id="Stroke-22" class="st6" points="48.061,64.614 77.471,82.284 77.471,85.489 "/> - <g id="Group-29" transform="translate(41.000000, 0.383000)"> - <polygon id="Stroke-23" class="st7" points="55.414,36.448 60.6,33.695 60.636,84.473 55.449,87.227 "/> - <polygon id="Stroke-25" class="st7" points="0.919,3.705 6.106,0.951 60.6,33.695 55.414,36.448 "/> - <polygon id="Stroke-27" class="st7" points="55.414,36.448 55.449,87.227 0.955,54.483 0.919,3.705 "/> - </g> - <polygon id="Fill-30" class="st1" points="96.412,36.831 101.599,34.078 101.635,84.856 96.449,87.61 "/> - <polygon id="Fill-31" class="st2" points="41.919,4.088 47.105,1.334 101.6,34.078 96.412,36.831 "/> - <polygon id="Fill-32" class="st3" points="96.412,36.831 96.449,87.61 41.954,54.866 41.919,4.088 "/> - <polygon id="Fill-33" class="st5" points="93.561,81.903 43.896,51.698 43.896,8.783 93.561,38.985 "/> - <g id="Group-361" transform="translate(28.000000, 3.383000)"> - <path id="Fill-34" class="st8" d="M47.134,27.198L63.617,37.1l0.092,9.216c0,0-0.293-6.608-5.193-10.75 - C52.26,30.28,47.134,27.198,47.134,27.198"/> - <path id="Stroke-36" class="st9" d="M14.554,52.532l53.89,32.379"/> - <polyline id="Stroke-38" class="st10" points="14.378,0.875 68.393,33.33 68.43,83.795 "/> - <g id="Group-42" transform="translate(74.000000, 64.000000)"> - <g id="Clip-41"> - </g> - <defs> - <filter id="Adobe_OpacityMaskFilter" filterUnits="userSpaceOnUse" x="-0.369" y="0.723" width="1.29" height="13.342"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> - </defs> - <mask maskUnits="userSpaceOnUse" x="-0.369" y="0.723" width="1.29" height="13.342" id="mask-2_1_"> - <g class="st11"> - <polygon id="path-1_1_" class="st12" points="0.276,0.723 0.97,0.723 0.97,14.065 0.276,14.065 "/> - </g> - </mask> - <path id="Stroke-40" class="st13" d="M0.276,0.723v13.342"/> - </g> - <path id="Stroke-43" class="st14" d="M48.926,90.78c0,0,1.375-0.734,2.5-0.766c1.125-0.031,2.516,0.641,2.516,0.641 - s1.375,0.734,2.046,1.437c0.672,0.704,0.719,0.985,0.766,1.235s0.031,0.828-0.047,0.953c-0.078,0.125-7.75,4.094-7.75,4.094 - s-0.453,0.203-1.187,0.093c-0.735-0.109-2-1-2.407-1.578c-0.406-0.578-0.375-1.468-0.375-1.468s0.016-1.047,1.391-2.61 - C47.285,91.717,48.926,90.78,48.926,90.78z"/> - <path id="Fill-45" class="st2" d="M48.926,90.78c0,0,1.375-0.734,2.5-0.766c1.125-0.031,2.516,0.641,2.516,0.641 - s1.377,0.734,2.046,1.437c0.672,0.704,0.719,0.985,0.766,1.235s0.031,0.828-0.047,0.953c-0.078,0.125-7.75,4.094-7.75,4.094 - s-0.453,0.203-1.187,0.093c-0.735-0.109-2-1-2.407-1.578c-0.406-0.578-0.375-1.468-0.375-1.468s0.016-1.047,1.391-2.61 - C47.285,91.717,48.926,90.78,48.926,90.78"/> - <path id="Fill-47" class="st1" d="M49.127,98.069c0.012-0.09,0.889-2.551,3.768-4.107c2.884-1.518,3.548,0.121,3.49-0.223 - l-0.006,0.547c-2.078,1.109-5.115,2.728-7.191,3.836"/> - <path id="Fill-49" class="st3" d="M46.832,96.506c0.187-0.75,1.266-2.391,1.992-3.141c0.727-0.75,1.36-1.242,2.461-1.804 - c1.102-0.563,2.438-0.985,3.094-0.657c0.656,0.329,1.57,1.149,1.945,1.641c0.375,0.492,0.281,1.008,0.281,1.008 - s-1.382-0.469-2.203-0.188c-0.82,0.282-2.133,0.938-2.976,1.758c-0.844,0.821-1.172,1.899-1.758,2.578 - c-0.586,0.68-1.711,0.774-1.711,0.774s-1.148-0.235-1.266-0.446C46.574,97.818,46.645,97.256,46.832,96.506"/> - <path id="Fill-51" class="st15" d="M48.738,93.864l-0.504-0.303c-0.918,0.996-1.445,1.975-1.699,2.524l0.506,0.302 - C47.293,95.839,47.822,94.858,48.738,93.864"/> - <polygon id="Stroke-53" class="st0" points="30.77,91.095 42.479,84.88 42.481,88.177 30.772,94.394 "/> - <polygon id="Stroke-55" class="st0" points="0.87,73.131 12.579,66.914 42.478,84.88 30.769,91.095 "/> - <polygon id="Stroke-57" class="st0" points="30.77,91.095 30.772,94.394 0.873,76.428 0.871,73.131 "/> - <polygon id="Fill-59" class="st1" points="30.77,91.095 42.479,84.88 42.481,88.177 30.772,94.394 "/> - <polygon id="Fill-61" class="st2" points="0.87,73.131 12.579,66.914 42.478,84.88 30.769,91.095 "/> - <polygon id="Fill-63" class="st3" points="30.77,91.095 30.772,94.394 0.873,76.428 0.871,73.131 "/> - <polygon id="Fill-65" class="st16" points="8.027,72.784 9.486,72.011 9.486,72.292 8.027,73.067 "/> - <polygon id="Fill-67" class="st5" points="6.771,72.028 8.228,71.255 9.486,72.01 8.027,72.784 "/> - <polygon id="Fill-69" class="st17" points="8.027,72.784 8.027,73.067 6.771,72.311 6.771,72.028 "/> - <polygon id="Fill-71" class="st16" points="9.888,73.901 11.345,73.128 11.345,73.411 9.888,74.184 "/> - <polygon id="Fill-73" class="st5" points="8.63,73.147 10.089,72.372 11.345,73.127 9.888,73.901 "/> - <polygon id="Fill-75" class="st17" points="9.888,73.901 9.888,74.184 8.63,73.428 8.63,73.147 "/> - <polygon id="Fill-77" class="st16" points="11.841,75.075 13.298,74.302 13.298,74.585 11.841,75.358 "/> - <polygon id="Fill-79" class="st5" points="10.583,74.319 12.042,73.546 13.298,74.301 11.841,75.075 "/> - <polygon id="Fill-81" class="st17" points="11.841,75.075 11.841,75.358 10.583,74.602 10.583,74.319 "/> - <polygon id="Fill-83" class="st16" points="13.708,76.198 15.165,75.423 15.165,75.706 13.708,76.479 "/> - <polygon id="Fill-85" class="st5" points="12.45,75.442 13.909,74.669 15.165,75.422 13.708,76.198 "/> - <polygon id="Fill-87" class="st17" points="13.708,76.198 13.708,76.479 12.45,75.725 12.45,75.442 "/> - <polygon id="Fill-89" class="st16" points="15.636,77.356 17.093,76.581 17.093,76.864 15.636,77.637 "/> - <polygon id="Fill-91" class="st5" points="14.378,76.6 15.837,75.827 17.093,76.58 15.636,77.356 "/> - <polygon id="Fill-93" class="st17" points="15.636,77.356 15.636,77.637 14.378,76.883 14.378,76.6 "/> - <polygon id="Fill-95" class="st16" points="17.503,78.477 18.96,77.704 18.96,77.985 17.503,78.76 "/> - <polygon id="Fill-97" class="st5" points="16.24,77.717 17.697,76.944 18.961,77.703 17.503,78.477 "/> - <polygon id="Fill-99" class="st17" points="17.503,78.477 17.503,78.76 16.239,78 16.239,77.717 "/> - <polygon id="Fill-101" class="st16" points="19.456,79.651 20.913,78.878 20.913,79.159 19.456,79.932 "/> - <polygon id="Fill-103" class="st5" points="18.198,78.895 19.658,78.122 20.913,78.877 19.457,79.651 "/> - <polygon id="Fill-105" class="st17" points="19.456,79.651 19.456,79.932 18.198,79.178 18.198,78.895 "/> - <polygon id="Fill-107" class="st16" points="21.316,80.768 22.775,79.995 22.775,80.278 21.316,81.051 "/> - <polygon id="Fill-109" class="st5" points="20.06,80.014 21.517,79.239 22.775,79.994 21.316,80.768 "/> - <polygon id="Fill-111" class="st17" points="21.316,80.768 21.316,81.051 20.06,80.295 20.06,80.014 "/> - <polygon id="Fill-113" class="st16" points="23.146,81.869 24.605,81.095 24.605,81.378 23.146,82.15 "/> - <polygon id="Fill-115" class="st5" points="21.89,81.114 23.347,80.339 24.605,81.094 23.146,81.869 "/> - <polygon id="Fill-117" class="st17" points="23.146,81.869 23.146,82.15 21.89,81.395 21.89,81.114 "/> - <polygon id="Fill-119" class="st16" points="25.007,82.986 26.464,82.213 26.464,82.494 25.007,83.269 "/> - <polygon id="Fill-121" class="st5" points="23.749,82.23 25.208,81.458 26.464,82.212 25.007,82.986 "/> - <polygon id="Fill-123" class="st17" points="25.007,82.986 25.007,83.269 23.749,82.513 23.749,82.23 "/> - <polygon id="Fill-125" class="st16" points="26.96,84.16 28.417,83.385 28.417,83.668 26.96,84.441 "/> - <polygon id="Fill-127" class="st5" points="25.702,83.404 27.161,82.631 28.417,83.384 26.96,84.16 "/> - <polygon id="Fill-129" class="st17" points="26.96,84.16 26.96,84.441 25.702,83.687 25.702,83.404 "/> - <polygon id="Fill-131" class="st16" points="28.826,85.281 30.285,84.508 30.285,84.791 28.826,85.564 "/> - <polygon id="Fill-133" class="st5" points="27.57,84.525 29.028,83.752 30.286,84.507 28.827,85.281 "/> - <polygon id="Fill-135" class="st17" points="28.826,85.281 28.826,85.564 27.569,84.808 27.569,84.525 "/> - <polygon id="Fill-137" class="st16" points="30.754,86.439 32.213,85.666 32.213,85.949 30.754,86.722 "/> - <polygon id="Fill-139" class="st5" points="29.498,85.685 30.955,84.91 32.213,85.665 30.754,86.439 "/> - <polygon id="Fill-141" class="st17" points="30.754,86.439 30.754,86.722 29.498,85.966 29.498,85.685 "/> - <polygon id="Fill-143" class="st16" points="32.578,87.535 34.035,86.762 34.037,87.045 32.578,87.818 "/> - <polygon id="Fill-145" class="st5" points="31.32,86.781 32.779,86.006 34.035,86.761 32.578,87.535 "/> - <polygon id="Fill-147" class="st17" points="32.578,87.535 32.578,87.818 31.322,87.062 31.32,86.781 "/> - <polygon id="Fill-149" class="st16" points="10.027,71.659 11.486,70.886 11.486,71.167 10.027,71.942 "/> - <polygon id="Fill-151" class="st5" points="8.771,70.903 10.228,70.13 11.486,70.885 10.027,71.659 "/> - <polygon id="Fill-153" class="st17" points="10.027,71.659 10.027,71.942 8.771,71.186 8.771,70.903 "/> - <polygon id="Fill-155" class="st16" points="11.888,72.776 13.345,72.003 13.345,72.286 11.888,73.059 "/> - <polygon id="Fill-157" class="st5" points="10.63,72.022 12.089,71.247 13.345,72.002 11.888,72.776 "/> - <polygon id="Fill-159" class="st17" points="11.888,72.776 11.888,73.059 10.63,72.303 10.63,72.022 "/> - <polygon id="Fill-161" class="st16" points="13.841,73.95 15.298,73.177 15.298,73.46 13.841,74.233 "/> - <polygon id="Fill-163" class="st5" points="12.583,73.194 14.042,72.421 15.298,73.176 13.841,73.95 "/> - <polygon id="Fill-165" class="st17" points="13.841,73.95 13.841,74.233 12.583,73.477 12.583,73.194 "/> - <polygon id="Fill-167" class="st16" points="15.708,75.073 17.165,74.298 17.165,74.581 15.708,75.354 "/> - <polygon id="Fill-169" class="st5" points="14.45,74.317 15.909,73.544 17.165,74.297 15.708,75.073 "/> - <polygon id="Fill-171" class="st17" points="15.708,75.073 15.708,75.354 14.45,74.6 14.45,74.317 "/> - <polygon id="Fill-173" class="st16" points="17.636,76.231 19.093,75.456 19.093,75.739 17.636,76.512 "/> - <polygon id="Fill-175" class="st5" points="16.378,75.475 17.837,74.702 19.093,75.455 17.636,76.231 "/> - <polygon id="Fill-177" class="st17" points="17.636,76.231 17.636,76.512 16.378,75.758 16.378,75.475 "/> - <polygon id="Fill-179" class="st16" points="19.503,77.352 20.96,76.579 20.96,76.86 19.503,77.635 "/> - <polygon id="Fill-181" class="st5" points="18.24,76.592 19.697,75.819 20.961,76.578 19.503,77.352 "/> - <polygon id="Fill-183" class="st17" points="19.503,77.352 19.503,77.635 18.239,76.875 18.239,76.592 "/> - <polygon id="Fill-185" class="st16" points="21.456,78.526 22.913,77.753 22.913,78.034 21.456,78.807 "/> - <polygon id="Fill-187" class="st5" points="20.198,77.77 21.658,76.997 22.913,77.752 21.457,78.526 "/> - <polygon id="Fill-189" class="st17" points="21.456,78.526 21.456,78.807 20.198,78.053 20.198,77.77 "/> - <polygon id="Fill-191" class="st16" points="23.316,79.643 24.775,78.87 24.775,79.153 23.316,79.926 "/> - <polygon id="Fill-193" class="st5" points="22.06,78.889 23.517,78.114 24.775,78.869 23.316,79.643 "/> - <polygon id="Fill-195" class="st17" points="23.316,79.643 23.316,79.926 22.06,79.17 22.06,78.889 "/> - <polygon id="Fill-197" class="st16" points="25.146,80.743 26.605,79.97 26.605,80.253 25.146,81.026 "/> - <polygon id="Fill-199" class="st5" points="23.89,79.989 25.347,79.214 26.605,79.969 25.146,80.743 "/> - <polygon id="Fill-201" class="st17" points="25.146,80.743 25.146,81.026 23.89,80.27 23.89,79.989 "/> - <polygon id="Fill-203" class="st16" points="27.007,81.861 28.464,81.087 28.464,81.37 27.007,82.144 "/> - <polygon id="Fill-205" class="st5" points="25.749,81.106 27.208,80.333 28.464,81.086 27.007,81.861 "/> - <polygon id="Fill-207" class="st17" points="27.007,81.861 27.007,82.144 25.749,81.389 25.749,81.106 "/> - <polygon id="Fill-209" class="st16" points="28.959,83.035 30.418,82.26 30.418,82.543 28.959,83.316 "/> - <polygon id="Fill-211" class="st5" points="27.702,82.279 29.16,81.507 30.418,82.259 28.959,83.035 "/> - <polygon id="Fill-213" class="st17" points="28.959,83.035 28.959,83.316 27.702,82.562 27.702,82.279 "/> - <polygon id="Fill-215" class="st16" points="30.826,84.156 32.285,83.383 32.285,83.666 30.826,84.439 "/> - <polygon id="Fill-217" class="st5" points="29.57,83.4 31.028,82.627 32.285,83.382 30.826,84.156 "/> - <polygon id="Fill-219" class="st17" points="30.826,84.156 30.826,84.439 29.57,83.683 29.57,83.4 "/> - <polygon id="Fill-221" class="st16" points="32.754,85.314 34.213,84.541 34.213,84.824 32.754,85.597 "/> - <polygon id="Fill-223" class="st5" points="31.498,84.56 32.955,83.785 34.213,84.54 32.754,85.314 "/> - <polygon id="Fill-225" class="st17" points="32.754,85.314 32.754,85.597 31.498,84.841 31.498,84.56 "/> - <polygon id="Fill-227" class="st16" points="34.578,86.41 36.035,85.637 36.037,85.92 34.578,86.693 "/> - <polygon id="Fill-229" class="st5" points="33.32,85.656 34.779,84.881 36.035,85.636 34.578,86.41 "/> - <polygon id="Fill-231" class="st17" points="34.578,86.41 34.578,86.693 33.322,85.937 33.32,85.656 "/> - <polygon id="Fill-233" class="st16" points="12.152,70.534 13.611,69.761 13.611,70.042 12.152,70.817 "/> - <polygon id="Fill-235" class="st5" points="10.896,69.778 12.353,69.005 13.611,69.76 12.152,70.534 "/> - <polygon id="Fill-237" class="st17" points="12.152,70.534 12.152,70.817 10.896,70.061 10.896,69.778 "/> - <polygon id="Fill-239" class="st16" points="14.013,71.651 15.47,70.878 15.47,71.161 14.013,71.934 "/> - <polygon id="Fill-241" class="st5" points="12.755,70.897 14.214,70.122 15.47,70.877 14.013,71.651 "/> - <polygon id="Fill-243" class="st17" points="14.013,71.651 14.013,71.934 12.755,71.178 12.755,70.897 "/> - <polygon id="Fill-245" class="st16" points="15.966,72.825 17.423,72.052 17.423,72.335 15.966,73.108 "/> - <polygon id="Fill-247" class="st5" points="14.708,72.069 16.167,71.296 17.423,72.051 15.966,72.825 "/> - <polygon id="Fill-249" class="st17" points="15.966,72.825 15.966,73.108 14.708,72.352 14.708,72.069 "/> - <polygon id="Fill-251" class="st16" points="17.833,73.948 19.29,73.173 19.29,73.456 17.833,74.229 "/> - <polygon id="Fill-253" class="st5" points="16.575,73.192 18.034,72.419 19.29,73.172 17.833,73.948 "/> - <polygon id="Fill-255" class="st17" points="17.833,73.948 17.833,74.229 16.575,73.475 16.575,73.192 "/> - <polygon id="Fill-257" class="st16" points="19.761,75.106 21.218,74.331 21.218,74.614 19.761,75.387 "/> - <polygon id="Fill-259" class="st5" points="18.503,74.35 19.962,73.577 21.218,74.33 19.761,75.106 "/> - <polygon id="Fill-261" class="st17" points="19.761,75.106 19.761,75.387 18.503,74.633 18.503,74.35 "/> - <polygon id="Fill-263" class="st16" points="21.628,76.227 23.085,75.454 23.085,75.735 21.628,76.51 "/> - <polygon id="Fill-265" class="st5" points="20.365,75.467 21.822,74.694 23.086,75.453 21.628,76.227 "/> - <polygon id="Fill-267" class="st17" points="21.628,76.227 21.628,76.51 20.364,75.75 20.364,75.467 "/> - <polygon id="Fill-269" class="st16" points="23.581,77.401 25.038,76.628 25.038,76.909 23.581,77.682 "/> - <polygon id="Fill-271" class="st5" points="22.323,76.645 23.783,75.872 25.038,76.627 23.582,77.401 "/> - <polygon id="Fill-273" class="st17" points="23.581,77.401 23.581,77.682 22.323,76.928 22.323,76.645 "/> - <polygon id="Fill-275" class="st16" points="25.441,78.518 26.9,77.745 26.9,78.028 25.441,78.801 "/> - <polygon id="Fill-277" class="st5" points="24.185,77.764 25.642,76.989 26.9,77.744 25.441,78.518 "/> - <polygon id="Fill-279" class="st17" points="25.441,78.518 25.441,78.801 24.185,78.045 24.185,77.764 "/> - <polygon id="Fill-281" class="st16" points="27.271,79.618 28.729,78.845 28.729,79.128 27.271,79.901 "/> - <polygon id="Fill-283" class="st5" points="26.015,78.864 27.472,78.089 28.729,78.844 27.271,79.618 "/> - <polygon id="Fill-285" class="st17" points="27.271,79.618 27.271,79.901 26.015,79.145 26.015,78.864 "/> - <polygon id="Fill-287" class="st16" points="29.131,80.737 30.59,79.962 30.59,80.245 29.131,81.018 "/> - <polygon id="Fill-289" class="st5" points="27.874,79.981 29.332,79.208 30.59,79.961 29.131,80.737 "/> - <polygon id="Fill-291" class="st17" points="29.131,80.737 29.131,81.018 27.874,80.264 27.874,79.981 "/> - <polygon id="Fill-293" class="st16" points="31.084,81.91 32.543,81.136 32.543,81.419 31.084,82.191 "/> - <polygon id="Fill-295" class="st5" points="29.828,81.155 31.285,80.382 32.543,81.135 31.084,81.91 "/> - <polygon id="Fill-297" class="st17" points="31.084,81.91 31.084,82.191 29.828,81.436 29.828,81.155 "/> - <polygon id="Fill-299" class="st16" points="32.951,83.031 34.41,82.258 34.41,82.541 32.951,83.314 "/> - <polygon id="Fill-301" class="st5" points="31.695,82.275 33.153,81.503 34.41,82.257 32.951,83.031 "/> - <polygon id="Fill-303" class="st17" points="32.951,83.031 32.951,83.314 31.695,82.558 31.695,82.275 "/> - <polygon id="Fill-305" class="st16" points="34.879,84.189 36.338,83.416 36.338,83.699 34.879,84.472 "/> - <polygon id="Fill-307" class="st5" points="33.623,83.435 35.08,82.66 36.338,83.415 34.879,84.189 "/> - <polygon id="Fill-309" class="st17" points="34.879,84.189 34.879,84.472 33.623,83.716 33.623,83.435 "/> - <polygon id="Fill-311" class="st16" points="36.703,85.285 38.16,84.512 38.162,84.795 36.703,85.568 "/> - <polygon id="Fill-313" class="st5" points="35.445,84.531 36.904,83.756 38.16,84.511 36.703,85.285 "/> - <polygon id="Fill-315" class="st17" points="36.703,85.285 36.703,85.568 35.447,84.812 35.445,84.531 "/> - <polygon id="Fill-317" class="st16" points="6.636,74.461 8.093,73.686 8.093,73.961 6.636,74.734 "/> - <polygon id="Fill-319" class="st5" points="5.378,73.705 6.835,72.932 8.093,73.685 6.636,74.461 "/> - <polygon id="Fill-321" class="st17" points="6.636,74.461 6.636,74.734 5.378,73.979 5.378,73.705 "/> - <polygon id="Fill-323" class="st16" points="8.404,75.524 9.863,74.749 9.863,75.024 8.404,75.797 "/> - <polygon id="Fill-325" class="st5" points="7.148,74.768 8.605,73.995 9.863,74.748 8.404,75.524 "/> - <polygon id="Fill-327" class="st17" points="8.404,75.524 8.404,75.797 7.147,75.044 7.147,74.768 "/> - <polygon id="Fill-329" class="st16" points="10.265,76.641 11.722,75.868 11.722,76.141 10.265,76.916 "/> - <polygon id="Fill-331" class="st5" points="9.007,75.885 10.466,75.112 11.722,75.867 10.265,76.641 "/> - <polygon id="Fill-333" class="st17" points="10.265,76.641 10.265,76.916 9.007,76.161 9.007,75.885 "/> - <polygon id="Fill-335" class="st16" points="25.823,85.96 27.281,85.187 27.281,85.46 25.823,86.235 "/> - <polygon id="Fill-337" class="st5" points="24.566,85.204 26.023,84.431 27.281,85.186 25.824,85.96 "/> - <polygon id="Fill-339" class="st17" points="25.823,85.96 25.823,86.235 24.566,85.48 24.566,85.204 "/> - <polygon id="Fill-341" class="st16" points="27.591,87.023 29.049,86.25 29.049,86.523 27.591,87.298 "/> - <polygon id="Fill-343" class="st5" points="26.335,86.267 27.792,85.494 29.049,86.249 27.591,87.023 "/> - <polygon id="Fill-345" class="st17" points="27.591,87.023 27.591,87.298 26.335,86.543 26.335,86.267 "/> - <polygon id="Fill-347" class="st16" points="29.451,88.14 30.91,87.367 30.91,87.642 29.451,88.415 "/> - <polygon id="Fill-349" class="st5" points="28.195,87.386 29.653,86.611 30.911,87.366 29.452,88.14 "/> - <polygon id="Fill-351" class="st17" points="29.451,88.14 29.451,88.415 28.194,87.66 28.194,87.386 "/> - <polygon id="Fill-353" class="st16" points="23.837,84.806 25.294,84.033 25.294,84.308 23.837,85.081 "/> - <polygon id="Fill-355" class="st5" points="10.943,77.059 12.4,76.286 25.295,84.033 23.838,84.806 "/> - <polygon id="Fill-357" class="st17" points="23.837,84.806 23.837,85.081 10.942,77.334 10.942,77.059 "/> - <polyline id="Stroke-359" class="st6" points="1.113,73.164 30.521,90.833 30.521,94.038 "/> - </g> - </g> - </g> -</g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 103.97 103.382"><style><![CDATA[.S{fill:#fefefe}.T{fill:#231f20}.U{fill:#626366}.V{fill:none}.W{stroke-linejoin:round}.X{stroke:#626366}.Y{fill:#898b8e}.Z{fill:#bbbdbf}.a{fill:#b3b5b7}.b{stroke-width:3}.c{stroke-linecap:round}.d{stroke:#e1e2e3}]]></style><g transform="translate(1)"><g class="V W X b"><path d="M16.8 38.037L49.084 20.9l.025 34.96-32.284 17.136z"/><path d="M.5 28.242l32.283-17.136 16.3 9.795L16.8 38.037z"/><path d="M16.8 38.037l.024 34.96L.524 63.2.5 28.242z"/></g><path d="M16.8 38.038l32.283-17.136.025 34.958-32.284 17.137z" class="Y"/><path d="M.5 28.243l32.283-17.137 16.3 9.795L16.8 38.037z" class="Z"/><path d="M16.8 38.038l.024 34.96-16.3-9.795L.5 28.244z" class="a"/><path d="M1.002 28.274l15.936 9.577v34.996" stroke="#dfe0df" stroke-width=".75" class="V W c"/><path d="M14.658 45.228L2.302 37.804v-4.64l12.356 7.424zm0 4.44L2.302 42.244V39.62l12.356 7.424zm0 13.752L2.302 55.996v-1.212l12.356 7.425zm0 2.7L2.302 58.687v-1.2L14.658 64.9zm0 2.83L2.302 61.514v-1.2l12.356 7.424z" class="S"/><g class="V W X b"><path d="M77.718 82.545l11.71-6.215.003 3.297-11.7 6.217z"/><path d="M47.82 64.58l11.71-6.215 29.9 17.965-11.71 6.215z"/><path d="M77.718 82.545l.002 3.3-29.9-17.967V64.58z"/></g><path d="M77.718 82.545l11.71-6.215.003 3.297-11.7 6.217z" class="Y"/><path d="M47.82 64.58l11.71-6.215 29.9 17.965-11.71 6.215z" class="Z"/><path d="M77.718 82.545l.002 3.3-29.9-17.967V64.58z" class="a"/><g class="V W"><path d="M48.06 64.614l29.4 17.67v3.205" class="c d"/><g stroke-width="2.668" class="X"><path d="M96.414 36.83l5.186-2.753.036 50.778L96.45 87.6z"/><path d="M41.92 4.088l5.187-2.754L101.6 34.078l-5.186 2.753z"/><path d="M96.414 36.83l.035 50.78-54.494-32.744-.036-50.778z"/></g></g><path d="M96.412 36.83l5.187-2.753.036 50.778L96.45 87.6z" class="Y"/><path d="M41.92 4.088l5.186-2.754L101.6 34.078l-5.188 2.753z" class="Z"/><path d="M96.412 36.83l.037 50.78-54.495-32.744-.035-50.778z" class="a"/><path d="M93.56 81.903L43.896 51.698V8.783L93.56 38.985z" class="S"/><g transform="translate(28 3.383)"><path d="M47.134 27.198L63.617 37.1l.092 9.216s-.293-6.608-5.193-10.75c-6.256-5.286-11.382-8.368-11.382-8.368" fill="#c4cace"/><g class="V"><path d="M14.554 52.532l53.9 32.38" stroke="#636466" stroke-width="1.156"/><path d="M14.378.875L68.393 33.33l.037 50.465" stroke-width=".889" class="W c d"/></g><g transform="translate(74 64)"><defs><filter id="A" filterUnits="userSpaceOnUse" x="-.369" y=".723" width="1.29" height="13.342"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter><path id="B" d="M12.45 75.442l1.46-.773 1.256.753-1.457.776z"/><path id="C" d="M21.316 80.768l1.46-.773v.283l-1.46.773z"/><path id="D" d="M20.06 80.014l1.457-.775 1.258.755-1.46.774z"/></defs><mask maskUnits="userSpaceOnUse" x="-.369" y=".723" width="1.29" height="13.342" id="E"><g filter="url(#A)"><path d="M.276.723H.97v13.342H.276z" fill="#fff"/></g></mask><path d="M.276.723v13.342" mask="url(#E)" stroke="#636466" stroke-width="1.29" class="V"/></g><path d="M48.926 90.78s1.375-.734 2.5-.766 2.516.64 2.516.64 1.375.734 2.046 1.437.72.985.766 1.235.03.828-.047.953-7.75 4.094-7.75 4.094-.453.203-1.187.093-2-1-2.407-1.578-.375-1.468-.375-1.468.016-1.047 1.39-2.6c.906-1.094 2.547-2.03 2.547-2.03z" class="V W X b"/><path d="M48.926 90.78s1.375-.734 2.5-.766 2.516.64 2.516.64 1.377.734 2.046 1.437.72.985.766 1.235.03.828-.047.953-7.75 4.094-7.75 4.094-.453.203-1.187.093-2-1-2.407-1.578-.375-1.468-.375-1.468.016-1.047 1.39-2.6c.906-1.094 2.547-2.03 2.547-2.03" class="Z"/><path d="M49.127 98.07c.012-.1.89-2.55 3.768-4.107 2.884-1.518 3.548.12 3.5-.223l-.006.547-7.19 3.836" class="Y"/><path d="M46.832 96.506c.187-.75 1.266-2.39 1.992-3.14s1.36-1.242 2.46-1.804 2.438-.985 3.094-.657 1.57 1.15 1.945 1.64.28 1.008.28 1.008-1.382-.47-2.203-.188-2.133.938-2.976 1.758-1.172 1.9-1.758 2.578-1.71.774-1.71.774-1.148-.235-1.266-.446-.046-.773.14-1.523" class="a"/><path d="M48.738 93.864l-.504-.303c-.918.996-1.445 1.975-1.7 2.524l.506.302c.252-.548.78-1.53 1.697-2.523" fill="#e1e2e3"/><g class="V W X b"><path d="M30.77 91.095l11.71-6.215v3.297l-11.71 6.217z"/><path d="M.87 73.13l11.71-6.217 29.9 17.966-11.71 6.215z"/><path d="M30.77 91.095l.002 3.3-29.9-17.966L.87 73.13z"/></g><path d="M30.77 91.095l11.71-6.215v3.297l-11.71 6.217z" class="Y"/><path d="M.87 73.13l11.71-6.217 29.9 17.966-11.71 6.215z" class="Z"/><path d="M30.77 91.095l.002 3.3-29.9-17.966L.87 73.13z" class="a"/><path d="M8.027 72.784l1.46-.773v.28l-1.46.775z" class="T"/><path d="M6.77 72.028l1.457-.773L9.486 72l-1.46.774z" class="S"/><path d="M8.027 72.784v.283L6.77 72.31v-.283z" class="U"/><path d="M9.888 73.9l1.457-.773v.283l-1.457.773z" class="T"/><path d="M8.63 73.147l1.46-.775 1.256.755-1.457.774z" class="S"/><path d="M9.888 73.9v.283l-1.258-.756v-.28z" class="U"/><path d="M11.84 75.075l1.457-.773v.283l-1.457.773z" class="T"/><path d="M10.583 74.32l1.46-.773 1.256.755-1.457.774z" class="S"/><path d="M11.84 75.075v.283l-1.258-.756v-.283z" class="U"/><path d="M13.708 76.198l1.457-.775v.283l-1.457.773z" class="T"/><use xlink:href="#B" class="S"/><path d="M13.708 76.198v.28l-1.258-.754v-.283z" class="U"/><path d="M15.636 77.356l1.457-.775v.283l-1.457.773z" class="T"/><use xlink:href="#B" x="1.928" y="1.158" class="S"/><path d="M15.636 77.356v.28l-1.258-.754V76.6z" class="U"/><path d="M17.503 78.477l1.457-.773v.28l-1.457.775z" class="T"/><path d="M16.24 77.717l1.457-.773 1.264.76-1.458.774z" class="S"/><path d="M17.503 78.477v.283L16.24 78v-.283z" class="U"/><path d="M19.456 79.65l1.457-.773v.28l-1.457.773z" class="T"/><path d="M18.198 78.895l1.46-.773 1.255.755-1.456.774z" class="S"/><path d="M19.456 79.65v.28l-1.258-.754v-.283z" class="U"/><use xlink:href="#C" class="T"/><use xlink:href="#D" class="S"/><path d="M21.316 80.768v.283l-1.256-.756v-.28z" class="U"/><path d="M23.146 81.87l1.46-.774v.283l-1.46.772z" class="T"/><path d="M21.9 81.114l1.457-.775 1.258.755-1.46.775z" class="S"/><path d="M23.146 81.87v.28l-1.256-.755v-.28z" class="U"/><path d="M25.007 82.986l1.457-.773v.28l-1.457.775z" class="T"/><path d="M23.75 82.23l1.46-.772 1.256.754-1.457.774z" class="S"/><path d="M25.007 82.986v.283l-1.258-.756v-.283z" class="U"/><path d="M26.96 84.16l1.457-.775v.283l-1.457.773z" class="T"/><use xlink:href="#B" x="13.252" y="7.962" class="S"/><path d="M26.96 84.16v.28l-1.258-.754v-.283z" class="U"/><use xlink:href="#C" x="7.51" y="4.512" class="T"/><path d="M27.57 84.525l1.458-.773 1.258.755-1.46.774z" class="S"/><path d="M28.826 85.28v.283l-1.257-.756v-.283z" class="U"/><use xlink:href="#C" x="9.438" y="5.672" class="T"/><use xlink:href="#D" x="9.438" y="5.671" class="S"/><path d="M30.754 86.44v.283l-1.256-.756v-.28z" class="U"/><path d="M32.578 87.535l1.457-.773.002.283-1.46.773z" class="T"/><path d="M31.32 86.78l1.46-.775 1.256.755-1.457.774z" class="S"/><path d="M32.578 87.535v.283l-1.256-.756-.002-.28z" class="U"/><path d="M10.027 71.66l1.46-.773v.28l-1.46.775z" class="T"/><path d="M8.77 70.903l1.457-.773 1.258.755-1.46.774z" class="S"/><path d="M10.027 71.66v.283l-1.256-.756v-.283z" class="U"/><path d="M11.888 72.776l1.457-.773v.283l-1.457.773z" class="T"/><path d="M10.63 72.022l1.46-.775 1.256.755-1.457.774z" class="S"/><path d="M11.888 72.776v.283l-1.258-.756v-.28z" class="U"/><path d="M13.84 73.95l1.457-.773v.283l-1.457.773z" class="T"/><path d="M12.583 73.194l1.46-.773 1.256.755-1.457.774z" class="S"/><path d="M13.84 73.95v.283l-1.258-.756v-.283z" class="U"/><path d="M15.708 75.073l1.457-.775v.283l-1.457.773z" class="T"/><use xlink:href="#B" x="2" y="-1.125" class="S"/><path d="M15.708 75.073v.28L14.45 74.6v-.283z" class="U"/><path d="M17.636 76.23l1.457-.775v.283l-1.457.773z" class="T"/><use xlink:href="#B" x="3.928" y="0.033" class="S"/><path d="M17.636 76.23v.28l-1.258-.754v-.283z" class="U"/><path d="M19.503 77.352l1.457-.773v.28l-1.457.775z" class="T"/><path d="M18.24 76.592l1.457-.773 1.264.76-1.458.774z" class="S"/><path d="M19.503 77.352v.283l-1.264-.76v-.283z" class="U"/><path d="M21.456 78.526l1.457-.773v.28l-1.457.773z" class="T"/><path d="M20.198 77.77l1.46-.773 1.255.755-1.456.774z" class="S"/><path d="M21.456 78.526v.28l-1.258-.754v-.283z" class="U"/><use xlink:href="#C" x="2" y="-1.125" class="T"/><use xlink:href="#D" x="2" y="-1.124" class="S"/><path d="M23.316 79.643v.283l-1.256-.756v-.28z" class="U"/><use xlink:href="#C" x="3.83" y="-0.025" class="T"/><use xlink:href="#D" x="3.84" y="-0.024" class="S"/><path d="M25.146 80.743v.283L23.9 80.27v-.28z" class="U"/><path d="M27.007 81.86l1.457-.774v.283l-1.457.774z" class="T"/><path d="M25.75 81.106l1.46-.773 1.256.753-1.457.775z" class="S"/><path d="M27.007 81.86v.283l-1.258-.755v-.283z" class="U"/><path d="M28.96 83.035l1.46-.775v.283l-1.46.773z" class="T"/><path d="M27.702 82.28l1.458-.772 1.258.752-1.46.776z" class="S"/><path d="M28.96 83.035v.28l-1.257-.754v-.283z" class="U"/><use xlink:href="#C" x="9.51" y="3.388" class="T"/><path d="M29.57 83.4l1.458-.773 1.257.755-1.46.774z" class="S"/><path d="M30.826 84.156v.283l-1.256-.756V83.4z" class="U"/><use xlink:href="#C" x="11.438" y="4.546" class="T"/><use xlink:href="#D" x="11.438" y="4.546" class="S"/><path d="M32.754 85.314v.283l-1.256-.756v-.28z" class="U"/><path d="M34.578 86.4l1.457-.773.002.283-1.46.773z" class="T"/><path d="M33.32 85.656l1.46-.775 1.256.755-1.457.774z" class="S"/><path d="M34.578 86.4v.283l-1.256-.756-.002-.28z" class="U"/><path d="M12.152 70.534l1.46-.773v.28l-1.46.775z" class="T"/><path d="M10.896 69.778l1.457-.773 1.258.755-1.46.774z" class="S"/><path d="M12.152 70.534v.283l-1.256-.756v-.283z" class="U"/><path d="M14.013 71.65l1.457-.773v.283l-1.457.773z" class="T"/><path d="M12.755 70.897l1.46-.775 1.256.755-1.457.774z" class="S"/><path d="M14.013 71.65v.283l-1.258-.756v-.28z" class="U"/><path d="M15.966 72.825l1.457-.773v.283l-1.457.773z" class="T"/><path d="M14.708 72.07l1.46-.773 1.256.755-1.457.774z" class="S"/><path d="M15.966 72.825v.283l-1.258-.756v-.283z" class="U"/><path d="M17.833 73.948l1.457-.775v.283l-1.457.773z" class="T"/><use xlink:href="#B" x="4.125" y="-2.25" class="S"/><path d="M17.833 73.948v.28l-1.258-.754v-.283z" class="U"/><path d="M19.76 75.106l1.457-.775v.283l-1.457.773z" class="T"/><use xlink:href="#B" x="6.053" y="-1.092" class="S"/><path d="M19.76 75.106v.28l-1.258-.754v-.283z" class="U"/><path d="M21.628 76.227l1.457-.773v.28l-1.457.775z" class="T"/><path d="M20.365 75.467l1.457-.773 1.264.76-1.458.774z" class="S"/><path d="M21.628 76.227v.283l-1.264-.76v-.283z" class="U"/><path d="M23.58 77.4l1.457-.773v.28l-1.457.773z" class="T"/><path d="M22.323 76.645l1.46-.773 1.255.755-1.456.774z" class="S"/><path d="M23.58 77.4v.28l-1.258-.754v-.283z" class="U"/><use xlink:href="#C" x="4.124" y="-2.25" class="T"/><use xlink:href="#D" x="4.125" y="-2.25" class="S"/><path d="M25.44 78.518v.283l-1.256-.756v-.28z" class="U"/><path d="M27.27 79.618l1.458-.773v.283l-1.458.773z" class="T"/><path d="M26.015 78.864l1.457-.775 1.257.755-1.458.774z" class="S"/><path d="M27.27 79.618v.283l-1.256-.756v-.28z" class="U"/><path d="M29.13 80.737l1.46-.775v.283l-1.46.773z" class="T"/><path d="M27.874 79.98l1.458-.773 1.258.753-1.46.776z" class="S"/><path d="M29.13 80.737v.28l-1.257-.754v-.283z" class="U"/><path d="M31.084 81.9l1.46-.774v.283l-1.46.772z" class="T"/><path d="M29.828 81.155l1.457-.773 1.258.753-1.46.775z" class="S"/><path d="M31.084 81.9v.28l-1.256-.755v-.28z" class="U"/><use xlink:href="#C" x="11.634" y="2.262" class="T"/><path d="M31.695 82.275l1.458-.772 1.257.754-1.46.774z" class="S"/><path d="M32.95 83.03v.283l-1.256-.756v-.283z" class="U"/><use xlink:href="#C" x="13.564" y="3.422" class="T"/><use xlink:href="#D" x="13.563" y="3.421" class="S"/><path d="M34.88 84.19v.283l-1.256-.756v-.28z" class="U"/><path d="M36.703 85.285l1.457-.773.002.283-1.46.773z" class="T"/><path d="M35.445 84.53l1.46-.775 1.256.755-1.457.774z" class="S"/><path d="M36.703 85.285v.283l-1.256-.756-.002-.28z" class="U"/><path d="M6.636 74.46l1.457-.775v.275l-1.457.773z" class="T"/><path d="M5.378 73.705l1.457-.773 1.258.753-1.457.776z" class="S"/><path d="M6.636 74.46v.273l-1.258-.755v-.274z" class="U"/><path d="M8.404 75.524l1.46-.775v.275l-1.46.773z" class="T"/><path d="M7.148 74.768l1.457-.773 1.258.753-1.46.776z" class="S"/><path d="M8.404 75.524v.273l-1.257-.753v-.276z" class="U"/><path d="M10.265 76.64l1.457-.773v.273l-1.457.775z" class="T"/><path d="M9.007 75.885l1.46-.773 1.256.755-1.457.774z" class="S"/><path d="M10.265 76.64v.275l-1.258-.755v-.276z" class="U"/><path d="M25.823 85.96l1.458-.773v.273l-1.458.775z" class="T"/><path d="M24.566 85.204l1.457-.773 1.258.755-1.457.774z" class="S"/><path d="M25.823 85.96v.275l-1.257-.755v-.276z" class="U"/><path d="M27.59 87.023l1.458-.773v.273l-1.458.775z" class="T"/><path d="M26.335 86.267l1.457-.773 1.257.755-1.458.774z" class="S"/><path d="M27.59 87.023v.275l-1.256-.755v-.276z" class="U"/><path d="M29.45 88.14l1.46-.773v.275l-1.46.773z" class="T"/><path d="M28.195 87.386l1.458-.775 1.258.755-1.46.774z" class="S"/><path d="M29.45 88.14v.275l-1.257-.755v-.274z" class="U"/><path d="M23.837 84.806l1.457-.773v.275l-1.457.773z" class="T"/><path d="M10.943 77.06l1.457-.773 12.895 7.747-1.457.773z" class="S"/><path d="M23.837 84.806v.275l-12.895-7.747v-.275z" class="U"/><path d="M1.113 73.164l29.408 17.67v3.205" class="V W c d"/></g></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Server_Desktop.svg b/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Server_Desktop.svg index 1c3229fce16b8b9082b759047dae2934e9238560..4541d083aabe0e1545a680d77eda54f14d414db1 100644 --- a/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Server_Desktop.svg +++ b/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Server_Desktop.svg @@ -1,34 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 71 89.6" style="enable-background:new 0 0 71 89.6;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#626366;stroke-width:3;stroke-linejoin:round;} - .st1{fill:#898B8E;} - .st2{fill:#BBBDBF;} - .st3{fill:#B3B5B7;} - .st4{fill:none;stroke:#DFE0DF;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;} - .st5{fill:#FEFEFE;} -</style> -<title>icon-server</title> -<desc>Created with Sketch.</desc> -<g id="Page-1"> - <g id="Desktop" transform="translate(-659.000000, -207.000000)"> - <g id="icon-server" transform="translate(660.000000, 207.000000)"> - <g id="Group-7" transform="translate(0.000000, 0.641600)"> - <polygon id="Stroke-1" class="st0" points="23.3,38.6 68.5,14.6 68.5,63.5 23.4,87.5 "/> - <polygon id="Stroke-3" class="st0" points="0.5,24.8 45.7,0.9 68.5,14.6 23.3,38.6 "/> - <polygon id="Stroke-5" class="st0" points="23.3,38.6 23.4,87.5 0.5,73.8 0.5,24.8 "/> - </g> - <polygon id="Fill-8" class="st1" points="23.3,39.2 68.5,15.2 68.5,64.2 23.4,88.1 "/> - <polygon id="Fill-9" class="st2" points="0.5,25.5 45.7,1.5 68.5,15.2 23.3,39.2 "/> - <polygon id="Fill-10" class="st3" points="23.3,39.2 23.4,88.1 0.5,74.4 0.5,25.5 "/> - <polyline id="Stroke-11" class="st4" points="1.2,25.5 23.5,38.9 23.5,87.9 "/> - <polygon id="Fill-12" class="st5" points="20.3,49.3 3,38.9 3,32.4 20.3,42.8 "/> - <polygon id="Fill-13" class="st5" points="20.3,55.5 3,45.1 3,41.4 20.3,51.8 "/> - <polygon id="Fill-14" class="st5" points="20.3,74.7 3,64.3 3,62.6 20.3,73 "/> - <polygon id="Fill-15" class="st5" points="20.3,78.5 3,68.1 3,66.4 20.3,76.8 "/> - <polygon id="Fill-16" class="st5" points="20.3,82.5 3,72.1 3,70.4 20.3,80.8 "/> - </g> - </g> -</g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 71 89.6"><g fill="none" stroke="#626366" stroke-width="3" stroke-linejoin="round"><path d="M24.3 39.242l45.2-24v48.9l-45.1 24z"/><path d="M1.5 25.442l45.2-23.9 22.8 13.7-45.2 24z"/><path d="M24.3 39.242l.1 48.9-22.9-13.7v-49z"/></g><path d="M24.3 39.2l45.2-24v49L24.4 88.1z" fill="#898b8e"/><path d="M1.5 25.5l45.2-24 22.8 13.7-45.2 24z" fill="#bbbdbf"/><path d="M24.3 39.2l.1 48.9L1.5 74.4V25.5z" fill="#b3b5b7"/><path d="M2.2 25.5l22.3 13.4v49" fill="none" stroke="#dfe0df" stroke-width=".75" stroke-linecap="round" stroke-linejoin="round"/><path d="M21.3 49.3L4 38.9v-6.5l17.3 10.4zm0 6.2L4 45.1v-3.7l17.3 10.4zm0 19.2L4 64.3v-1.7L21.3 73zm0 3.8L4 68.1v-1.7l17.3 10.4zm0 4L4 72.1v-1.7l17.3 10.4z" fill="#fefefe"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Smartphone.svg b/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Smartphone.svg index 2b6b90157faf0fe0a38db461920f7a3645c65ae6..618aa62ec1c5d88d31066939e5adbfe6f0edfdd5 100644 --- a/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Smartphone.svg +++ b/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Smartphone.svg @@ -1,45 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 33.3 72.4" style="enable-background:new 0 0 33.3 72.4;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#231F20;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;} - .st1{fill:#606163;} - .st2{fill:#808184;} - .st3{fill:#231F20;} - .st4{fill:#6D6E70;} - .st5{fill:#C6C8C7;} - .st6{fill:#A6A8AB;} - .st7{fill:#C4CACE;} - .st8{fill:#404042;} -</style> -<title>icon-iPhone</title> -<desc>Created with Sketch.</desc> -<path id="Stroke-11" class="st0" d="M2.9,4.7c12.1-6.4-7,3.4,5.1-3c0.8-0.4,1.8-0.3,3,0.4l-5.1,3C4.7,4.4,3.6,4.3,2.9,4.7z"/> -<path id="Stroke-20" class="st0" d="M30.5,67.71c-5.1,3,0,0-5.1,3c0.8-0.4,1.4-1.5,1.4-3l5.1-3C31.8,66.21,31.3,67.21,30.5,67.71z" - /> -<polygon id="Stroke-22" class="st0" points="5.9,5.11 11,2.11 27.4,11.81 22.3,14.81 "/> -<polygon id="Stroke-24" class="st0" points="26.7,22.61 31.8,19.61 31.8,64.71 26.7,67.71 "/> -<path id="Stroke-58_1_" class="st0" d="M27.4,11.81c2.4,1.4,4.3,5,4.4,7.9l-5.1,3c0-2.9-2-6.4-4.4-7.9"/> -<path id="Stroke-60" class="st0" d="M22.3,14.81c2.4,1.4,4.4,5,4.4,7.9v45c0,2.9-1.9,4.1-4.3,2.6l-16.5-9.7c-2.4-1.4-4.4-5-4.4-7.9 - v-45c0-2.9,1.9-4.1,4.4-2.6L22.3,14.81z"/> -<path class="st1" d="M10.46,1.433L10.5,1.41c-0.5-0.2-0.9-0.3-1.3-0.3c-0.4-0.1-0.9,0-1.2,0.2l-5.1,3c0.4-0.2,0.8-0.2,1.2-0.2 - c0.4,0,0.8,0.1,1.2,0.3c0.2,0.1,0.4,0.2,0.6,0.3l5.1-3C10.815,1.617,10.709,1.525,10.46,1.433z"/> -<polygon id="Fill-80" class="st2" points="5.9,4.7 11,1.7 27.5,11.4 22.4,14.4 "/> -<polygon id="Fill-81" class="st3" points="26.7,22.2 31.8,19.2 31.9,64.3 26.7,67.3 "/> -<path class="st3" d="M31.8,18.31c-0.1-0.4-0.2-0.9-0.3-1.3l-0.031,0.018c-0.09-0.253-0.18-0.449-0.269-0.718c0-0.2-0.1-0.4-0.2-0.6 - c-0.1-0.3-0.2-0.5-0.3-0.7c-0.2-0.4-0.4-0.8-0.7-1.2c-0.2-0.2-0.3-0.4-0.5-0.6c-0.2-0.2-0.3-0.4-0.5-0.6s-0.5-0.5-0.8-0.7 - c-0.2-0.2-0.5-0.4-0.7-0.5l-5.1,3c0.2,0.1,0.4,0.3,0.7,0.5c0.3,0.2,0.5,0.5,0.8,0.7c0.2,0.2,0.3,0.4,0.5,0.6 - c0.2,0.2,0.3,0.4,0.5,0.6c0.2,0.4,0.5,0.8,0.7,1.2c0.1,0.2,0.2,0.4,0.3,0.7c0.1,0.2,0.2,0.4,0.2,0.6c0.1,0.2,0.2,0.5,0.3,0.8 - l0.019-0.011c0.089,0.436,0.179,0.802,0.268,1.16L26.6,21.31c0.1,0.3,0.1,0.6,0.1,0.9l5.1-3c0-0.282-0.083-0.563-0.094-0.845 - L31.8,18.31z"/> -<path id="Fill-113" class="st4" d="M22.4,14.41c2.4,1.4,4.4,5,4.4,7.9v45c0,2.9-1.9,4.1-4.3,2.6l-16.6-9.7c-2.4-1.4-4.4-5-4.4-7.9 - v-45c0-2.9,1.9-4.1,4.4-2.6L22.4,14.41z"/> -<path id="Fill-115" class="st5" d="M26.7,67.41v-45c0-2.7-1.8-5.9-4-7.2L6.2,5.51c-2.2-1.3-4-0.2-4,2.4v45c0,2.7,1.8,5.9,4,7.2 - l16.5,9.7C24.9,71.11,26.7,70.11,26.7,67.41z M22.6,14.31c2.6,1.6,4.7,5.4,4.7,8.5v45c0,3.1-2.1,4.4-4.7,2.8l-16.4-9.6 - c-2.6-1.6-4.7-5.4-4.7-8.5v-45c0-3.1,2.1-4.4,4.7-2.8L22.6,14.31z"/> -<polygon id="Fill-121" class="st6" points="24.1,60.91 4.8,49.11 4.8,11.81 24.1,23.61 "/> -<path id="Fill-123" class="st7" d="M10.9,18.01l11.4,6.8l0.1,9.2c0,0,0.9-5.5-4-9.6C12.1,19.11,10.9,18.01,10.9,18.01"/> -<path id="Fill-125" class="st8" d="M16,62.11c0,1.3-1,1.7-2.3,0.9c-1.2-0.7-2.3-2.4-2.3-3.6c0-1.3,1-1.6,2.3-0.9S16,60.81,16,62.11" - /> -<polygon id="Fill-127" class="st8" points="16.3,15.91 11.2,12.91 11.2,11.71 16.3,14.71 "/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 33.3 72.4"><g fill="none" stroke="#231f20" stroke-width="3" stroke-linejoin="round"><path d="M2.9 4.7c12.1-6.4-7 3.4 5.1-3 .8-.4 1.8-.3 3 .4l-5.1 3c-1.2-.7-2.3-.8-3-.4zm27.6 63l-5.1 3c.8-.4 1.4-1.5 1.4-3l5.1-3c-.1 1.5-.6 2.5-1.4 3z"/><path d="M5.9 5.1l5.1-3 16.4 9.7-5.1 3zm20.8 17.5l5.1-3v45.1l-5.1 3z"/><path d="M27.4 11.8c2.4 1.4 4.3 5 4.4 7.9l-5.1 3c0-2.9-2-6.4-4.4-7.9" stroke-linecap="round"/><path d="M22.3 14.8c2.4 1.4 4.4 5 4.4 7.9v45c0 2.9-1.9 4.1-4.3 2.6L5.9 60.6c-2.4-1.4-4.4-5-4.4-7.9v-45c0-2.9 1.9-4.1 4.4-2.6l16.4 9.7z"/></g><path d="M10.46 1.433l.04-.023c-.5-.2-.9-.3-1.3-.3a1.64 1.64 0 0 0-1.2.2l-5.1 3c.4-.2.8-.2 1.2-.2s.8.1 1.2.3l.6.3 5.1-3c-.185-.093-.29-.185-.54-.277z" fill="#606163"/><path d="M5.9 4.7l5.1-3 16.5 9.7-5.1 3z" fill="#808184"/><g fill="#231f20"><path d="M26.7 22.2l5.1-3 .1 45.1-5.2 3z"/><path d="M31.8 18.3l-.3-1.3-.03.018-.27-.718c0-.2-.1-.4-.2-.6-.1-.3-.2-.5-.3-.7-.2-.4-.4-.8-.7-1.2-.2-.2-.3-.4-.5-.6s-.3-.4-.5-.6-.5-.5-.8-.7a3.04 3.04 0 0 0-.7-.5l-5.1 3c.2.1.4.3.7.5s.5.5.8.7c.2.2.3.4.5.6s.3.4.5.6c.2.4.5.8.7 1.2.1.2.2.4.3.7.1.2.2.4.2.6.1.2.2.5.3.8h.02l.268 1.16-.087.05c.1.3.1.6.1.9l5.1-3c0-.282-.083-.563-.094-.845l.094-.055z"/></g><path d="M22.4 14.4c2.4 1.4 4.4 5 4.4 7.9v45c0 2.9-1.9 4.1-4.3 2.6L5.9 60.2c-2.4-1.4-4.4-5-4.4-7.9v-45c0-2.9 1.9-4.1 4.4-2.6l16.5 9.7z" fill="#6d6e70"/><path d="M26.7 67.4v-45c0-2.7-1.8-5.9-4-7.2L6.2 5.5c-2.2-1.3-4-.2-4 2.4v45c0 2.7 1.8 5.9 4 7.2l16.5 9.7c2.2 1.3 4 .3 4-2.4zm-4.1-53.1c2.6 1.6 4.7 5.4 4.7 8.5v45c0 3.1-2.1 4.4-4.7 2.8L6.2 61c-2.6-1.6-4.7-5.4-4.7-8.5v-45c0-3.1 2.1-4.4 4.7-2.8l16.4 9.6z" fill="#c6c8c7"/><path d="M24.1 60.9L4.8 49.1V11.8l19.3 11.8z" fill="#a6a8ab"/><path d="M10.9 18l11.4 6.8.1 9.2s.9-5.5-4-9.6L10.9 18" fill="#c4cace"/><path d="M16 62.1c0 1.3-1 1.7-2.3.9-1.2-.7-2.3-2.4-2.3-3.6 0-1.3 1-1.6 2.3-.9s2.3 2.3 2.3 3.6m.3-46.2l-5.1-3v-1.2l5.1 3z" fill="#404042"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Tablet.svg b/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Tablet.svg index 34abd0bc51c338000072bdd37525487f588589d8..c1bcf45f2125f7fbb88fc8b2b0a910e2b4df7561 100644 --- a/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Tablet.svg +++ b/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Tablet.svg @@ -1,75 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" - id="Layer_1" inkscape:version="0.92.3 (2405546, 2018-03-11)" sodipodi:docname="Tablet4.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 45.453 95.324" - style="enable-background:new 0 0 45.453 95.324;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#231F20;stroke-width:4.49;stroke-linecap:round;stroke-linejoin:round;} - .st1{fill:#606163;} - .st2{fill:#808184;} - .st3{fill:#2A2526;} - .st4{fill:#433B3C;} - .st5{fill:#6D6E70;} - .st6{fill:#C6C8C7;} - .st7{fill:none;stroke:#C6C8C7;stroke-width:1.078;stroke-linecap:round;stroke-linejoin:round;} - .st8{fill:#707274;} - .st9{fill:#A6A8AB;} - .st10{fill:#C4CACE;} - .st11{fill:#404042;} -</style> -<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview66" inkscape:current-layer="Layer_1" inkscape:cx="67.018611" inkscape:cy="36.066692" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-height="1017" inkscape:window-maximized="1" inkscape:window-width="1920" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="4.9166667" objecttolerance="10" pagecolor="#ffffff" showgrid="false"> - </sodipodi:namedview> -<title id="title4">icon-iPad</title> -<desc id="desc6">Created with Sketch.</desc> -<path id="Stroke-11" class="st0" d="M4.296,4.545C5.2,4.054,5.995,3.399,7.554,2.607c1.176-0.598,2.734-0.483,4.463,0.556 - L8.759,5.102C7.03,4.063,5.462,3.927,4.296,4.545z"/> -<path id="Stroke-20" inkscape:connector-curvature="0" class="st0" d="M41.155,90.769c-2.146,1.259-1.328,0.959-3.258,1.938 - c1.276-0.647,2.053-2.23,2.053-4.487l3.258-1.941C43.208,88.539,42.419,90.097,41.155,90.769z"/> -<polygon id="Stroke-22" class="st0" points="8.759,5.102 12.017,3.163 36.646,17.622 33.388,19.56 "/> -<polygon id="Stroke-24" class="st0" points="39.903,31.321 43.161,29.382 43.208,86.279 39.95,88.22 "/> -<path id="Stroke-58" inkscape:connector-curvature="0" class="st0" d="M33.388,19.56l3.258-1.938 - c3.596,2.161,6.51,7.423,6.515,11.76l-3.257,1.939C39.902,26.983,36.984,21.72,33.388,19.56z"/> -<path id="Stroke-60" class="st0" d="M33.388,19.56c3.596,2.16,6.514,7.423,6.516,11.761L39.95,88.22 - c0.004,4.335-2.908,6.098-6.503,3.935L8.818,77.697c-3.606-2.166-6.522-7.428-6.526-11.763l-0.047-56.9 - c-0.002-4.337,2.91-6.098,6.514-3.932L33.388,19.56z"/> -<g id="g28" transform="translate(0,20)"> - <path id="path24" inkscape:connector-curvature="0" class="st1" d="M8.934-18.367c-0.477,0.031-0.917,0.153-1.309,0.363 - l-3.258,1.938c0.525-0.278,1.133-0.404,1.799-0.363c0.573,0.035,1.189,0.195,1.838,0.486c0.27,0.121,0.545,0.266,0.824,0.434 - l3.26-1.939c-0.279-0.169-0.557-0.311-0.826-0.434c-0.649-0.29-1.266-0.449-1.838-0.484C9.257-18.377,9.093-18.377,8.934-18.367z" - /> -</g> -<polygon id="Fill-80" class="st2" points="12.087,2.552 36.716,17.011 33.458,18.949 8.829,4.491 "/> -<polygon id="Fill-81" class="st3" points="43.278,85.668 40.02,87.608 39.973,30.71 43.231,28.771 "/> -<g id="g54" transform="translate(-20)"> - <path id="path42" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccccccccccccccc" class="st4" d="M61.994,23.434 - c-0.147-0.335-0.307-0.665-0.477-0.99h0.002c-0.317-0.605-0.666-1.191-1.049-1.746c-0.217-0.313-0.442-0.615-0.676-0.906 - c-0.242-0.3-0.49-0.59-0.824-0.945s-0.76-0.749-1.154-1.063s-0.743-0.559-1.1-0.774l-3.26,1.938 - c0.357,0.216,0.709,0.462,1.051,0.734c0.445,0.354,0.869,0.753,1.279,1.186c0.258,0.275,0.506,0.561,0.748,0.861 - c0.234,0.292,0.461,0.596,0.678,0.908c0.383,0.556,0.732,1.141,1.049,1.746H58.26c0.17,0.328,0.33,0.657,0.477,0.99 - c0.131,0.298,0.254,0.598,0.369,0.903c0.143,0.39,0.271,0.784,0.383,1.175c0.18,0.64,0.313,1.275,0.396,1.906 - c0.059,0.456,0.09,0.91,0.09,1.352l3.258-1.939c-0.002-0.44-0.032-0.894-0.09-1.35c-0.083-0.631-0.215-1.269-0.396-1.908 - c-0.112-0.393-0.241-0.786-0.383-1.176C62.248,24.035,62.125,23.731,61.994,23.434z"/> -</g> -<path id="Fill-113" inkscape:connector-curvature="0" class="st5" d="M31.458,18.949c3.596,2.16,6.514,7.425,6.516,11.761 - l0.046,56.899c0.002,4.335-2.908,6.097-6.503,3.934L6.888,77.086c-3.606-2.166-6.522-7.428-6.526-11.762L0.315,8.422 - C0.313,4.086,3.224,2.325,6.829,4.491L31.458,18.949z"/> -<path id="Fill-115" inkscape:connector-curvature="0" class="st6" d="M37.95,87.84l-0.047-56.899 - c-0.014-3.999-2.697-8.844-6.01-10.846L6.919,5.457C3.856,3.71,1.268,5.644,1.268,9.267l0.047,56.901 - c0.012,3.996,2.69,8.836,6.01,10.83l24.627,14.457C35.261,93.446,37.944,91.824,37.95,87.84z M31.893,18.861 - c3.883,2.333,7.03,8.013,7.034,12.694l0.046,56.898c0.002,4.669-3.253,6.227-7.021,4.248L7.325,78.243 - c-3.881-2.341-7.029-8.02-7.033-12.692L0.245,8.652c0-4.481,3.142-6.422,7.021-4.249L31.893,18.861z"/> -<path id="Stroke-117" inkscape:connector-curvature="0" class="st7" d="M0.745,8.965c0-4.911,3.227-6.151,7.066-3.843l24.03,14.099 - c3.842,2.309,6.955,7.928,6.957,12.559l0.047,56.181c0.004,4.615-3.079,6.364-6.918,4.067"/> -<path id="Fill-123" inkscape:connector-curvature="0" class="st8" d="M31.893,20.095c3.313,2.002,5.996,6.847,6.01,10.846 - L37.95,87.84c-0.006,3.984-2.69,5.607-5.998,3.615L7.325,76.998c-3.321-1.994-5.998-6.834-6.01-10.83L1.268,9.267 - c0.006-3.985,2.678-5.614,5.998-3.63L31.893,20.095z"/> -<polygon id="Fill-125" class="st9" points="5.165,65.68 5.165,9.839 34.063,27.422 34.063,83.265 "/> -<path id="Fill-119" inkscape:connector-curvature="0" class="st10" d="M14.37,19.012L31.368,29.22l0.137,13.794 - c0,0,1.295-8.211-6.039-14.41C16.102,20.693,14.37,19.012,14.37,19.012"/> -<path id="path63" inkscape:connector-curvature="0" d="M43.235,86.566c0.029-0.284,0.043-0.585,0.043-0.897l-3.258,1.94 - c0,0.205-0.016,0.394-0.028,0.586L39.95,88.22l0,0l0,0c0,0.295-0.015,0.577-0.041,0.849c-0.173,1.805-0.903,3.076-2.012,3.638 - c1.93-0.979,1.112-0.679,3.258-1.938c1.088-0.578,1.82-1.816,2.004-3.59l0.006-0.003c0.002-0.017,0.001-0.036,0.003-0.053 - c0.016-0.17,0.021-0.352,0.027-0.532L43.235,86.566z"/> -<path id="Fill-121" class="st11" d="M22.378,80.419c0,0.994-0.803,1.32-1.791,0.724c-0.98-0.587-1.783-1.878-1.783-2.872 - c0-0.985,0.803-1.293,1.783-0.705C21.575,78.161,22.378,79.432,22.378,80.419"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45.453 95.324"><g fill="none" stroke="#231f20" stroke-width="4.49" stroke-linejoin="round"><path d="M4.296 4.545c.904-.5 1.7-1.146 3.258-1.938 1.176-.598 2.734-.483 4.463.556L8.76 5.102c-1.73-1.04-3.297-1.175-4.463-.557zm36.86 86.225c-2.146 1.26-1.328.96-3.258 1.938 1.276-.647 2.053-2.23 2.053-4.487l3.258-1.94c0 2.26-.8 3.818-2.053 4.5z"/><path d="M8.76 5.102l3.258-1.94 24.63 14.46L33.4 19.56zM39.903 31.32l3.258-1.94.047 56.897-3.258 1.94z"/><path d="M33.388 19.56l3.258-1.938c3.596 2.16 6.5 7.423 6.515 11.76l-3.257 1.94c-.002-4.338-2.92-9.6-6.516-11.76z"/><path d="M33.388 19.56c3.596 2.16 6.514 7.423 6.516 11.76l.046 56.9c.004 4.335-2.908 6.098-6.503 3.935L8.818 77.697C5.212 75.53 2.296 70.27 2.292 65.934l-.047-56.9c-.002-4.337 2.9-6.098 6.514-3.932l24.63 14.458z"/></g><path d="M8.934 1.633c-.477.03-.917.153-1.31.363L4.367 3.934c.525-.278 1.133-.404 1.8-.363.573.035 1.19.195 1.838.486.27.12.545.266.824.434l3.26-1.94a8.05 8.05 0 0 0-.826-.434c-.65-.3-1.266-.45-1.838-.484-.167-.01-.33-.01-.5-.001z" fill="#606163"/><path d="M12.087 2.552l24.63 14.46-3.258 1.938L8.83 4.49z" fill="#808184"/><path d="M43.278 85.668l-3.258 1.94-.047-56.898 3.258-1.94z" fill="#2a2526"/><path d="M41.994 23.434l-.477-1h.002c-.317-.605-.666-1.19-1.05-1.746l-.676-.906-.824-.945a11.6 11.6 0 0 0-1.154-1.063c-.394-.314-.743-.56-1.1-.774l-3.26 1.938a10.06 10.06 0 0 1 1.051.734c.445.354.87.753 1.28 1.186l.748.86.678.908a16.92 16.92 0 0 1 1.049 1.746h-.001l.477 1 .37.903.383 1.175a13.58 13.58 0 0 1 .396 1.906c.06.456.1.9.1 1.352l3.258-1.94a11.14 11.14 0 0 0-.09-1.35c-.083-.63-.215-1.27-.396-1.908l-.383-1.176-.37-.902z" fill="#433b3c"/><path d="M31.458 18.95c3.596 2.16 6.514 7.425 6.516 11.76l.046 56.9c.002 4.335-2.908 6.097-6.503 3.934L6.888 77.086C3.282 74.92.366 69.658.362 65.324L.315 8.422C.313 4.086 3.224 2.325 6.83 4.49l24.63 14.458z" fill="#6d6e70"/><path d="M37.95 87.84l-.047-56.9c-.014-4-2.697-8.844-6-10.846L6.92 5.457c-3.063-1.747-5.65.187-5.65 3.8l.047 56.9c.012 3.996 2.7 8.836 6 10.83l24.627 14.457c3.31 1.99 5.992.37 5.998-3.615zm-6.057-68.98c3.883 2.333 7.03 8.013 7.034 12.694l.046 56.898c.002 4.67-3.253 6.227-7.02 4.248L7.325 78.243c-3.88-2.34-7.03-8.02-7.033-12.692l-.047-56.9c0-4.48 3.142-6.422 7.02-4.25L31.893 18.86z" fill="#c6c8c7"/><path d="M.745 8.965c0-4.91 3.227-6.15 7.066-3.843l24.03 14.1c3.842 2.31 6.955 7.928 6.957 12.56l.047 56.18c.004 4.615-3.08 6.364-6.918 4.067" fill="none" stroke="#c6c8c7" stroke-width="1.078" stroke-linecap="round" stroke-linejoin="round"/><path d="M31.893 20.095c3.313 2.002 5.996 6.847 6 10.846l.047 56.9c-.006 3.984-2.7 5.607-5.998 3.615L7.325 76.998c-3.32-1.994-5.998-6.834-6-10.83l-.047-56.9c.006-3.985 2.678-5.614 5.998-3.63l24.627 14.458z" fill="#707274"/><path d="M5.165 65.68V9.84l28.898 17.583v55.843z" fill="#a6a8ab"/><path d="M14.37 19.012L31.368 29.22l.137 13.794s1.295-8.21-6.04-14.4L14.37 19.012" fill="#c4cace"/><path d="M43.235 86.566a8.87 8.87 0 0 0 .043-.897l-3.258 1.94-.028.586-.042.025-.04.85c-.173 1.805-.903 3.076-2.012 3.638 1.93-.98 1.112-.68 3.258-1.938 1.088-.578 1.82-1.816 2.004-3.6l.006-.003c.002-.017.001-.036.003-.053l.027-.532.04-.025z"/><path d="M22.378 80.42c0 .994-.803 1.32-1.79.724-.98-.587-1.783-1.878-1.783-2.872 0-.985.803-1.293 1.783-.705.988.595 1.79 1.866 1.79 2.853" fill="#404042"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Tablet_Alternative.svg b/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Tablet_Alternative.svg index 7d31bf39d742f17d8a0c1d773cfa5b2295617567..6d273341bf2499f205902408b80897a1dc7eb997 100644 --- a/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Tablet_Alternative.svg +++ b/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Tablet_Alternative.svg @@ -1,43 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 58 79.6" style="enable-background:new 0 0 58 79.6;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#626366;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;} - .st1{fill:#898B8E;} - .st2{fill:#BBBDBF;} - .st3{fill:#B3B5B7;} - .st4{fill:none;stroke:#DFE0DF;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;} - .st5{fill:#FEFEFE;} - .st6{fill:#C4CACE;} - .st7{fill:none;stroke:#636466;stroke-width:2;stroke-linecap:round;} - .st8{fill:none;stroke:#636466;stroke-width:3;stroke-linecap:round;} -</style> -<title>icon-PDA</title> -<desc>Created with Sketch.</desc> -<g id="Page-1"> - <g id="Desktop" transform="translate(-1224.000000, -76.000000)"> - <g id="icon-PDA" transform="translate(1225.000000, 76.000000)"> - <g id="Group-7" transform="translate(15.000000, 0.603500)"> - <polygon id="Stroke-1" class="st0" points="36.8,24.9 40.5,22.9 40.5,75.6 36.8,77.5 "/> - <polygon id="Stroke-3" class="st0" points="0.1,2.8 3.8,0.9 40.5,22.9 36.8,24.9 "/> - <polygon id="Stroke-5" class="st0" points="36.8,24.9 36.8,77.5 0.2,55.5 0.1,2.8 "/> - </g> - <polygon id="Fill-8" class="st1" points="51.8,25.5 55.5,23.5 55.5,76.2 51.8,78.1 "/> - <polygon id="Fill-9" class="st2" points="15.1,3.4 18.8,1.5 55.5,23.5 51.8,25.5 "/> - <polygon id="Fill-10" class="st3" points="51.8,25.5 51.8,78.1 15.2,56.1 15.1,3.4 "/> - <polyline id="Stroke-11" class="st4" points="15.4,3.6 52,25.6 52,77.8 "/> - <polygon id="Fill-12" class="st5" points="48.4,69.5 18,52 17.9,9.1 48.4,26.8 "/> - <polygon id="Fill-13" class="st5" points="41.1,69.8 28.6,62.2 28.6,60.4 41.1,67.9 "/> - <g id="Group-24" transform="translate(0.000000, 16.603500)"> - <path id="Fill-14" class="st5" d="M45.2,54.8c0,0.6-0.5,0.7-1,0.4c-0.6-0.3-1-1.1-1-1.6c0-0.6,0.5-0.7,1-0.4 - C44.8,53.5,45.2,54.2,45.2,54.8"/> - <path id="Fill-16" class="st5" d="M48.2,56.6c0,0.6-0.5,0.7-1,0.4c-0.6-0.3-1-1.1-1-1.6c0-0.6,0.5-0.7,1-0.4 - C47.8,55.3,48.2,56,48.2,56.6"/> - <path id="Fill-18" class="st6" d="M28,0.8l18.5,11.1l0.1,10.4c0,0-0.3-7.4-5.8-12.1C33.8,4.3,28,0.8,28,0.8"/> - <path id="Stroke-20" class="st7" d="M0.6,1.8l24.1,13.9"/> - <path id="Stroke-22" class="st8" d="M0.5,1.8l9.3,5.9"/> - </g> - </g> - </g> -</g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 58 79.6"><g fill="none" stroke="#626366" stroke-width="3" stroke-linejoin="round"><path d="M52.8 25.504l3.7-2v52.7l-3.7 1.9z"/><path d="M16.1 3.404l3.7-1.9 36.7 22-3.7 2z"/><path d="M52.8 25.504v52.6l-36.6-22-.1-52.7z"/></g><path d="M52.8 25.5l3.7-2v52.7l-3.7 1.9z" fill="#898b8e"/><path d="M16.1 3.4l3.7-1.9 36.7 22-3.7 2z" fill="#bbbdbf"/><path d="M52.8 25.5v52.6l-36.6-22-.1-52.7z" fill="#b3b5b7"/><path d="M16.4 3.6l36.6 22v52.2" fill="none" stroke="#dfe0df" stroke-width=".75" stroke-linecap="round" stroke-linejoin="round"/><path d="M49.4 69.5L19 52l-.1-42.9 30.5 17.7zm-7.3.3l-12.5-7.6v-1.8l12.5 7.5zm4.1 1.604c0 .6-.5.7-1 .4-.6-.3-1-1.1-1-1.6 0-.6.5-.7 1-.4.6.3 1 1 1 1.6m3 1.8c0 .6-.5.7-1 .4-.6-.3-1-1.1-1-1.6 0-.6.5-.7 1-.4.6.3 1 1 1 1.6" fill="#fefefe"/><path d="M29 17.404l18.5 11.1.1 10.4s-.3-7.4-5.8-12.1c-7-5.9-12.8-9.4-12.8-9.4" fill="#c4cace"/><g fill="none" stroke-linecap="round" stroke="#636466"><path d="M1.6 18.404l24.1 13.9" stroke-width="2"/><path d="M1.5 18.404l9.3 5.9" stroke-width="3"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/VOIP_IP_phone.svg b/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/VOIP_IP_phone.svg index a031ba516184d3f8a7319e7373b2d229e0a30ef0..f7b3c7ab6600d6cd711dde67aa6391edfd106234 100644 --- a/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/VOIP_IP_phone.svg +++ b/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/VOIP_IP_phone.svg @@ -1,506 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 49.922 75.201" style="enable-background:new 0 0 49.922 75.201;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#626366;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;} - .st1{filter:url(#Adobe_OpacityMaskFilter);} - .st2{fill:#FFFFFF;} - .st3{mask:url(#mask-2_1_);fill:none;stroke:#626366;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;} - .st4{filter:url(#Adobe_OpacityMaskFilter_1_);} - .st5{mask:url(#mask-4_1_);fill:none;stroke:#626366;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;} - .st6{filter:url(#Adobe_OpacityMaskFilter_2_);} - .st7{mask:url(#mask-6_1_);fill:none;stroke:#626366;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;} - .st8{filter:url(#Adobe_OpacityMaskFilter_3_);} - .st9{mask:url(#mask-8_1_);fill:none;stroke:#626366;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;} - .st10{filter:url(#Adobe_OpacityMaskFilter_4_);} - .st11{mask:url(#mask-10_1_);fill:none;stroke:#626366;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;} - .st12{filter:url(#Adobe_OpacityMaskFilter_5_);} - .st13{mask:url(#mask-12_1_);fill:none;stroke:#626366;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;} - .st14{filter:url(#Adobe_OpacityMaskFilter_6_);} - .st15{mask:url(#mask-14_1_);fill:none;stroke:#626366;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;} - .st16{filter:url(#Adobe_OpacityMaskFilter_7_);} - .st17{mask:url(#mask-16_1_);fill:none;stroke:#626366;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;} - .st18{filter:url(#Adobe_OpacityMaskFilter_8_);} - .st19{mask:url(#mask-18_1_);fill:none;stroke:#626366;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;} - .st20{filter:url(#Adobe_OpacityMaskFilter_9_);} - .st21{mask:url(#mask-20_1_);fill:none;stroke:#626366;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;} - .st22{filter:url(#Adobe_OpacityMaskFilter_10_);} - .st23{mask:url(#mask-22_1_);fill:#8E969C;} - .st24{fill:#A4A6A9;} - .st25{filter:url(#Adobe_OpacityMaskFilter_11_);} - .st26{mask:url(#mask-24_1_);fill:#8E969C;} - .st27{filter:url(#Adobe_OpacityMaskFilter_12_);} - .st28{mask:url(#mask-26_1_);fill:#90989E;} - .st29{filter:url(#Adobe_OpacityMaskFilter_13_);} - .st30{mask:url(#mask-28_1_);fill:#A4A6A9;} - .st31{fill:#898B8E;} - .st32{filter:url(#Adobe_OpacityMaskFilter_14_);} - .st33{mask:url(#mask-30_1_);fill:#A4A6A9;} - .st34{filter:url(#Adobe_OpacityMaskFilter_15_);} - .st35{mask:url(#mask-32_1_);fill:#C6C7C9;} - .st36{filter:url(#Adobe_OpacityMaskFilter_16_);} - .st37{mask:url(#mask-34_1_);fill:#BBBDBF;} - .st38{filter:url(#Adobe_OpacityMaskFilter_17_);} - .st39{mask:url(#mask-36_1_);fill:#9EA0A3;} - .st40{filter:url(#Adobe_OpacityMaskFilter_18_);} - .st41{mask:url(#mask-38_1_);fill:#898B8E;} - .st42{filter:url(#Adobe_OpacityMaskFilter_19_);} - .st43{mask:url(#mask-40_1_);fill:#898B8E;} - .st44{fill:none;stroke:#DFE0DF;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;} - .st45{fill:#939BA0;} - .st46{fill:#B3B5B7;} - .st47{fill:none;stroke:#626366;stroke-width:1.25;} - .st48{fill:#CACCCD;} - .st49{fill:#DDDEDF;} - .st50{fill:#FEFEFE;} -</style> -<title>icon-VOIP-IP-phone</title> -<desc>Created with Sketch.</desc> -<g id="Page-1"> - <g id="Desktop" transform="translate(-365.000000, -71.000000)"> - <g id="icon-VOIP-IP-phone" transform="translate(366.000000, 72.000000)"> - <g id="Group-5" transform="translate(13.000000, 0.201100)"> - <path id="Stroke-1" class="st0" d="M18.461,14.916c0,0.688-0.559,1.247-1.246,1.247c-0.69,0-1.248-0.559-1.248-1.247V1.546 - c0-0.69,0.558-1.247,1.248-1.247c0.687,0,1.246,0.557,1.246,1.247V14.916z"/> - <path id="Stroke-3" class="st0" d="M7.086,0.864c0,0-1.437-0.75-3.875,0.5C0.774,2.614,0.92,3.823,0.752,4.115 - C0.529,4.507,0.586,5.739,0.586,5.739v35.125c0,0-0.125,0.563,0,1.25c0.125,0.688,1,1.625,1,1.625l12.625,7.5 - c0,0,1.188,0.813,2,0.75c0.813-0.062,1.375,0.125,3.125-1s2.125-3,2.125-3V11.364c0,0,0-1.375-0.375-1.875s-1-1-1-1L7.086,0.864 - z"/> - </g> - <g id="Group-8" transform="translate(0.000000, 45.201100)"> - <g id="Clip-7"> - </g> - <defs> - <filter id="Adobe_OpacityMaskFilter" filterUnits="userSpaceOnUse" x="-0.997" y="-1.171" width="17.579" height="10.744"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> - </defs> - <mask maskUnits="userSpaceOnUse" x="-0.997" y="-1.171" width="17.579" height="10.744" id="mask-2_1_"> - <g class="st1"> - <polyline id="path-1_1_" class="st2" points="0.503,8.069 0.503,8.073 15.082,0.335 15.082,0.33 "/> - </g> - </mask> - <polyline id="Stroke-6" class="st3" points="0.503,8.068 15.082,0.329 15.082,0.335 0.503,8.073 0.503,8.068 "/> - </g> - <polygon id="Stroke-9" class="st0" points="15.082,45.536 0.503,53.274 0.503,53.269 15.082,45.53 "/> - <g id="Group-20" transform="translate(2.000000, 36.201100)"> - <g id="Group-13"> - <g id="Clip-12"> - </g> - <defs> - <filter id="Adobe_OpacityMaskFilter_1_" filterUnits="userSpaceOnUse" x="-1.328" y="-1.349" width="17.872" height="10.865"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> - </defs> - <mask maskUnits="userSpaceOnUse" x="-1.328" y="-1.349" width="17.872" height="10.865" id="mask-4_1_"> - <g class="st4"> - <path id="path-3_1_" class="st2" d="M14.752,0.277L0.173,8.016c1.121-0.596,2.413,0.115,2.53,0.18l14.58-7.74 - c-0.083-0.045-0.757-0.415-1.541-0.415C15.42,0.041,15.078,0.103,14.752,0.277"/> - </g> - </mask> - <path id="Stroke-11" class="st5" d="M0.172,8.016l14.579-7.739c0.097-0.051,0.194-0.093,0.293-0.126L0.465,7.89 - C0.366,7.922,0.269,7.964,0.172,8.016"/> - </g> - <g id="Group-16"> - <g id="Clip-15"> - </g> - <defs> - <filter id="Adobe_OpacityMaskFilter_2_" filterUnits="userSpaceOnUse" x="-1.035" y="-1.459" width="18.63" height="10.849"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> - </defs> - <mask maskUnits="userSpaceOnUse" x="-1.035" y="-1.459" width="18.63" height="10.849" id="mask-6_1_"> - <g class="st6"> - <path id="path-5_1_" class="st2" d="M14.752,0.277L0.173,8.016c1.121-0.596,2.413,0.115,2.53,0.18l14.58-7.74 - c-0.083-0.045-0.757-0.415-1.541-0.415C15.42,0.041,15.078,0.103,14.752,0.277"/> - </g> - </mask> - <path id="Stroke-14" class="st7" d="M0.465,7.89l14.579-7.739c0.359-0.121,0.724-0.129,1.051-0.086L1.517,7.804 - C1.189,7.76,0.823,7.769,0.465,7.89"/> - </g> - <g id="Group-19"> - <g id="Clip-18"> - </g> - <defs> - <filter id="Adobe_OpacityMaskFilter_3_" filterUnits="userSpaceOnUse" x="0.017" y="-1.435" width="18.766" height="11.131"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> - </defs> - <mask maskUnits="userSpaceOnUse" x="0.017" y="-1.435" width="18.766" height="11.131" id="mask-8_1_"> - <g class="st8"> - <path id="path-7_1_" class="st2" d="M14.752,0.277L0.173,8.016c1.121-0.596,2.413,0.115,2.53,0.18l14.58-7.74 - c-0.083-0.045-0.757-0.415-1.541-0.415C15.42,0.041,15.078,0.103,14.752,0.277"/> - </g> - </mask> - <path id="Stroke-17" class="st9" d="M1.517,7.804l14.578-7.739c0.625,0.083,1.117,0.353,1.188,0.391l-14.58,7.74 - C2.632,8.157,2.141,7.886,1.517,7.804"/> - </g> - </g> - <g id="Group-25" transform="translate(2.000000, 36.201100)"> - <path id="Stroke-21" class="st0" d="M0.172,8.016l14.579-7.739c1.121-0.595,2.413,0.115,2.531,0.179l-14.58,7.74 - C2.585,8.131,1.293,7.42,0.172,8.016z"/> - <polygon id="Stroke-23" class="st0" points="2.703,8.195 17.283,0.456 41.686,15.12 27.107,22.858 "/> - </g> - <g id="Group-44" transform="translate(29.000000, 51.201100)"> - <g id="Group-28"> - <g id="Clip-27"> - </g> - <defs> - <filter id="Adobe_OpacityMaskFilter_4_" filterUnits="userSpaceOnUse" x="-1.393" y="-1.38" width="19.389" height="12.618"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> - </defs> - <mask maskUnits="userSpaceOnUse" x="-1.393" y="-1.38" width="19.389" height="12.618" id="mask-10_1_"> - <g class="st10"> - <path id="path-9_1_" class="st2" d="M0.108,7.858c0.186,0.126,3.727,2.515,3.732,8.584c0.001,1.938,0.003,4.902,0.003,5.058 - l14.579-7.739c0-0.156-0.002-3.119-0.004-5.057c-0.004-6.07-3.545-8.459-3.731-8.584"/> - </g> - </mask> - <path id="Stroke-26" class="st11" d="M0.107,7.858L14.686,0.12c0.089,0.059,0.942,0.634,1.81,1.879L1.917,9.738 - C1.048,8.494,0.196,7.919,0.107,7.858"/> - </g> - <g id="Group-31"> - <g id="Clip-30"> - </g> - <defs> - <filter id="Adobe_OpacityMaskFilter_5_" filterUnits="userSpaceOnUse" x="0.417" y="0.499" width="18.044" height="11.474"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> - </defs> - <mask maskUnits="userSpaceOnUse" x="0.417" y="0.499" width="18.044" height="11.474" id="mask-12_1_"> - <g class="st12"> - <path id="path-11_1_" class="st2" d="M0.108,7.858c0.186,0.126,3.727,2.515,3.732,8.584c0.001,1.938,0.003,4.902,0.003,5.058 - l14.579-7.739c0-0.156-0.002-3.119-0.004-5.057c-0.004-6.07-3.545-8.459-3.731-8.584"/> - </g> - </mask> - <path id="Stroke-29" class="st13" d="M1.917,9.738l14.579-7.739c0.156,0.223,0.313,0.468,0.465,0.735l-14.58,7.739 - C2.229,10.206,2.072,9.962,1.917,9.738"/> - </g> - <g id="Group-34"> - <g id="Clip-33"> - </g> - <defs> - <filter id="Adobe_OpacityMaskFilter_6_" filterUnits="userSpaceOnUse" x="0.88" y="1.235" width="18.041" height="11.655"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> - </defs> - <mask maskUnits="userSpaceOnUse" x="0.88" y="1.235" width="18.041" height="11.655" id="mask-14_1_"> - <g class="st14"> - <path id="path-13_1_" class="st2" d="M0.108,7.858c0.186,0.126,3.727,2.515,3.732,8.584c0.001,1.938,0.003,4.902,0.003,5.058 - l14.579-7.739c0-0.156-0.002-3.119-0.004-5.057c-0.004-6.07-3.545-8.459-3.731-8.584"/> - </g> - </mask> - <path id="Stroke-32" class="st15" d="M2.38,10.474l14.58-7.739c0.159,0.28,0.315,0.586,0.461,0.916L2.842,11.39 - C2.696,11.059,2.54,10.754,2.38,10.474"/> - </g> - <g id="Group-37"> - <g id="Clip-36"> - </g> - <defs> - <filter id="Adobe_OpacityMaskFilter_7_" filterUnits="userSpaceOnUse" x="1.342" y="2.151" width="17.981" height="11.798"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> - </defs> - <mask maskUnits="userSpaceOnUse" x="1.342" y="2.151" width="17.981" height="11.798" id="mask-16_1_"> - <g class="st16"> - <path id="path-15_1_" class="st2" d="M0.108,7.858c0.186,0.126,3.727,2.515,3.732,8.584c0.001,1.938,0.003,4.902,0.003,5.058 - l14.579-7.739c0-0.156-0.002-3.119-0.004-5.057c-0.004-6.07-3.545-8.459-3.731-8.584"/> - </g> - </mask> - <path id="Stroke-35" class="st17" d="M2.842,11.39l14.579-7.739c0.145,0.327,0.281,0.68,0.402,1.059L3.245,12.449 - C3.123,12.07,2.988,11.717,2.842,11.39"/> - </g> - <g id="Group-40"> - <g id="Clip-39"> - </g> - <defs> - <filter id="Adobe_OpacityMaskFilter_8_" filterUnits="userSpaceOnUse" x="1.746" y="3.21" width="18" height="12.51"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> - </defs> - <mask maskUnits="userSpaceOnUse" x="1.746" y="3.21" width="18" height="12.51" id="mask-18_1_"> - <g class="st18"> - <path id="path-17_1_" class="st2" d="M0.108,7.858c0.186,0.126,3.727,2.515,3.732,8.584c0.001,1.938,0.003,4.902,0.003,5.058 - l14.579-7.739c0-0.156-0.002-3.119-0.004-5.057c-0.004-6.07-3.545-8.459-3.731-8.584"/> - </g> - </mask> - <path id="Stroke-38" class="st19" d="M3.246,12.448L17.824,4.71c0.174,0.537,0.318,1.127,0.422,1.771L3.668,14.22 - C3.564,13.575,3.419,12.985,3.246,12.448"/> - </g> - <g id="Group-43"> - <g id="Clip-42"> - </g> - <defs> - <filter id="Adobe_OpacityMaskFilter_9_" filterUnits="userSpaceOnUse" x="2.168" y="4.982" width="17.754" height="18.018"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> - </defs> - <mask maskUnits="userSpaceOnUse" x="2.168" y="4.982" width="17.754" height="18.018" id="mask-20_1_"> - <g class="st20"> - <path id="path-19_1_" class="st2" d="M0.108,7.858c0.186,0.126,3.727,2.515,3.732,8.584c0.001,1.938,0.003,4.902,0.003,5.058 - l14.579-7.739c0-0.156-0.002-3.119-0.004-5.057c-0.004-6.07-3.545-8.459-3.731-8.584"/> - </g> - </mask> - <path id="Stroke-41" class="st21" d="M3.668,14.221l14.578-7.739c0.11,0.678,0.172,1.418,0.172,2.221 - c0.002,1.939,0.004,4.902,0.004,5.058L3.843,21.5c0-0.156-0.002-3.12-0.003-5.058C3.839,15.638,3.775,14.899,3.668,14.221"/> - </g> - </g> - <g id="Group-51" transform="translate(0.000000, 43.201100)"> - <path id="Stroke-45" class="st0" d="M29.107,15.858L43.686,8.12c0.187,0.125,3.728,2.513,3.732,8.583 - c0.001,1.938,0.003,4.901,0.003,5.057L32.842,29.5c0-0.157-0.002-3.121-0.003-5.059C32.835,18.373,29.294,15.984,29.107,15.858z - "/> - <path id="Stroke-47" class="st0" d="M29.107,15.858c0.187,0.126,3.728,2.515,3.732,8.583c0.001,1.938,0.003,4.902,0.003,5.059 - L0.503,10.068c0,0.067,0-0.437-0.003-4.175C0.495-1.119,4.493,1.079,4.703,1.195L29.107,15.858z"/> - <path id="Stroke-49" class="st0" d="M1.496,1.587c1.198-1.497,3.065-0.47,3.207-0.392l24.404,14.663 - c0.187,0.126,3.728,2.515,3.733,8.583c0.001,1.939,0.003,4.903,0.003,5.059"/> - </g> - <g id="Group-54" transform="translate(0.000000, 45.201100)"> - <g id="Clip-53"> - </g> - <defs> - <filter id="Adobe_OpacityMaskFilter_10_" filterUnits="userSpaceOnUse" x="0.504" y="0.327" width="14.578" height="7.744"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> - </defs> - <mask maskUnits="userSpaceOnUse" x="0.504" y="0.327" width="14.578" height="7.744" id="mask-22_1_"> - <g class="st22"> - <polygon id="path-21_1_" class="st2" points="0.504,8.065 0.504,8.071 15.082,0.332 15.082,0.327 "/> - </g> - </mask> - <polygon id="Fill-52" class="st23" points="0.504,8.065 15.082,0.327 15.082,0.332 0.504,8.071 "/> - </g> - <path id="Fill-55" class="st24" d="M2.173,44.214l14.578-7.739c1.121-0.595,2.414,0.115,2.531,0.179l-14.58,7.74 - C4.585,44.329,3.293,43.618,2.173,44.214"/> - <g id="Group-66" transform="translate(2.000000, 36.201100)"> - <g id="Group-59"> - <g id="Clip-58"> - </g> - <defs> - <filter id="Adobe_OpacityMaskFilter_11_" filterUnits="userSpaceOnUse" x="0.173" y="0.148" width="14.871" height="7.865"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> - </defs> - <mask maskUnits="userSpaceOnUse" x="0.173" y="0.148" width="14.871" height="7.865" id="mask-24_1_"> - <g class="st25"> - <path id="path-23_1_" class="st2" d="M14.752,0.274L0.173,8.013c1.121-0.596,2.413,0.115,2.53,0.18l14.58-7.74 - c-0.083-0.045-0.756-0.415-1.541-0.415C15.42,0.038,15.078,0.1,14.752,0.274"/> - </g> - </mask> - <path id="Fill-57" class="st26" d="M0.173,8.013l14.578-7.739c0.098-0.051,0.195-0.093,0.293-0.126L0.466,7.887 - C0.366,7.92,0.269,7.961,0.173,8.013"/> - </g> - <g id="Group-62"> - <g id="Clip-61"> - </g> - <defs> - <filter id="Adobe_OpacityMaskFilter_12_" filterUnits="userSpaceOnUse" x="0.466" y="0.038" width="15.63" height="7.849"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> - </defs> - <mask maskUnits="userSpaceOnUse" x="0.466" y="0.038" width="15.63" height="7.849" id="mask-26_1_"> - <g class="st27"> - <path id="path-25_1_" class="st2" d="M14.752,0.274L0.173,8.013c1.121-0.596,2.413,0.115,2.53,0.18l14.58-7.74 - c-0.083-0.045-0.756-0.415-1.541-0.415C15.42,0.038,15.078,0.1,14.752,0.274"/> - </g> - </mask> - <path id="Fill-60" class="st28" d="M0.466,7.887l14.578-7.739c0.36-0.121,0.724-0.129,1.052-0.086L1.517,7.801 - C1.189,7.757,0.824,7.766,0.466,7.887"/> - </g> - <g id="Group-65"> - <g id="Clip-64"> - </g> - <defs> - <filter id="Adobe_OpacityMaskFilter_13_" filterUnits="userSpaceOnUse" x="1.517" y="0.062" width="15.766" height="8.131"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> - </defs> - <mask maskUnits="userSpaceOnUse" x="1.517" y="0.062" width="15.766" height="8.131" id="mask-28_1_"> - <g class="st29"> - <path id="path-27_1_" class="st2" d="M14.752,0.274L0.173,8.013c1.121-0.596,2.413,0.115,2.53,0.18l14.58-7.74 - c-0.083-0.045-0.756-0.415-1.541-0.415C15.42,0.038,15.078,0.1,14.752,0.274"/> - </g> - </mask> - <path id="Fill-63" class="st30" d="M1.517,7.801l14.579-7.739c0.624,0.083,1.116,0.353,1.187,0.391l-14.58,7.74 - C2.632,8.154,2.141,7.883,1.517,7.801"/> - </g> - </g> - <polygon id="Fill-67" class="st31" points="4.703,44.393 19.283,36.654 43.686,51.318 29.107,59.056 "/> - <g id="Group-87" transform="translate(29.000000, 51.201100)"> - <g id="Group-71"> - <g id="Clip-70"> - </g> - <defs> - <filter id="Adobe_OpacityMaskFilter_14_" filterUnits="userSpaceOnUse" x="0.107" y="0.117" width="16.392" height="9.623"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> - </defs> - <mask maskUnits="userSpaceOnUse" x="0.107" y="0.117" width="16.392" height="9.623" id="mask-30_1_"> - <g class="st32"> - <path id="path-29_1_" class="st2" d="M0.108,7.856c0.186,0.126,3.734,2.525,3.737,8.587c0.002,1.938,0.005,4.902,0.005,5.058 - l14.578-7.739c0-0.156-0.003-3.12-0.004-5.058c-0.004-6.061-3.551-8.461-3.737-8.587"/> - </g> - </mask> - <path id="Fill-69" class="st33" d="M0.107,7.855l14.579-7.738c0.089,0.059,0.943,0.637,1.813,1.884L1.919,9.74 - C1.05,8.493,0.197,7.916,0.107,7.855"/> - </g> - <g id="Group-74"> - <g id="Clip-73"> - </g> - <defs> - <filter id="Adobe_OpacityMaskFilter_15_" filterUnits="userSpaceOnUse" x="1.92" y="2.001" width="15.045" height="8.476"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> - </defs> - <mask maskUnits="userSpaceOnUse" x="1.92" y="2.001" width="15.045" height="8.476" id="mask-32_1_"> - <g class="st34"> - <path id="path-31_1_" class="st2" d="M0.108,7.856c0.186,0.126,3.734,2.525,3.737,8.587c0.002,1.938,0.005,4.902,0.005,5.058 - l14.578-7.739c0-0.156-0.003-3.12-0.004-5.058c-0.004-6.061-3.551-8.461-3.737-8.587"/> - </g> - </mask> - <path id="Fill-72" class="st35" d="M1.92,9.74l14.579-7.739c0.157,0.224,0.314,0.469,0.466,0.738L2.387,10.477 - C2.233,10.21,2.076,9.964,1.92,9.74"/> - </g> - <g id="Group-77"> - <g id="Clip-76"> - </g> - <defs> - <filter id="Adobe_OpacityMaskFilter_16_" filterUnits="userSpaceOnUse" x="2.386" y="2.739" width="15.043" height="8.659"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> - </defs> - <mask maskUnits="userSpaceOnUse" x="2.386" y="2.739" width="15.043" height="8.659" id="mask-34_1_"> - <g class="st36"> - <path id="path-33_1_" class="st2" d="M0.108,7.856c0.186,0.126,3.734,2.525,3.737,8.587c0.002,1.938,0.005,4.902,0.005,5.058 - l14.578-7.739c0-0.156-0.003-3.12-0.004-5.058c-0.004-6.061-3.551-8.461-3.737-8.587"/> - </g> - </mask> - <path id="Fill-75" class="st37" d="M2.386,10.477l14.578-7.738c0.161,0.281,0.318,0.588,0.465,0.92l-14.58,7.739 - C2.702,11.065,2.546,10.758,2.386,10.477"/> - </g> - <g id="Group-80"> - <g id="Clip-79"> - </g> - <defs> - <filter id="Adobe_OpacityMaskFilter_17_" filterUnits="userSpaceOnUse" x="2.849" y="3.659" width="14.982" height="8.797"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> - </defs> - <mask maskUnits="userSpaceOnUse" x="2.849" y="3.659" width="14.982" height="8.797" id="mask-36_1_"> - <g class="st38"> - <path id="path-35_1_" class="st2" d="M0.108,7.856c0.186,0.126,3.734,2.525,3.737,8.587c0.002,1.938,0.005,4.902,0.005,5.058 - l14.578-7.739c0-0.156-0.003-3.12-0.004-5.058c-0.004-6.061-3.551-8.461-3.737-8.587"/> - </g> - </mask> - <path id="Fill-78" class="st39" d="M2.849,11.398l14.58-7.739c0.145,0.327,0.28,0.679,0.402,1.058L3.252,12.456 - C3.13,12.078,2.995,11.725,2.849,11.398"/> - </g> - <g id="Group-83"> - <g id="Clip-82"> - </g> - <defs> - <filter id="Adobe_OpacityMaskFilter_18_" filterUnits="userSpaceOnUse" x="3.253" y="4.718" width="15.001" height="9.509"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> - </defs> - <mask maskUnits="userSpaceOnUse" x="3.253" y="4.718" width="15.001" height="9.509" id="mask-38_1_"> - <g class="st40"> - <path id="path-37_1_" class="st2" d="M0.108,7.856c0.186,0.126,3.734,2.525,3.737,8.587c0.002,1.938,0.005,4.902,0.005,5.058 - l14.578-7.739c0-0.156-0.003-3.12-0.004-5.058c-0.004-6.061-3.551-8.461-3.737-8.587"/> - </g> - </mask> - <path id="Fill-81" class="st41" d="M3.253,12.456l14.579-7.738c0.173,0.537,0.318,1.127,0.422,1.771l-14.58,7.738 - C3.57,13.583,3.426,12.993,3.253,12.456"/> - </g> - <g id="Group-86"> - <g id="Clip-85"> - </g> - <defs> - <filter id="Adobe_OpacityMaskFilter_19_" filterUnits="userSpaceOnUse" x="3.673" y="6.489" width="14.754" height="15.011"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> - </defs> - <mask maskUnits="userSpaceOnUse" x="3.673" y="6.489" width="14.754" height="15.011" id="mask-40_1_"> - <g class="st42"> - <path id="path-39_1_" class="st2" d="M0.108,7.856c0.186,0.126,3.734,2.525,3.737,8.587c0.002,1.938,0.005,4.902,0.005,5.058 - l14.578-7.739c0-0.156-0.003-3.12-0.004-5.058c-0.004-6.061-3.551-8.461-3.737-8.587"/> - </g> - </mask> - <path id="Fill-84" class="st43" d="M3.673,14.227l14.58-7.738c0.108,0.676,0.17,1.413,0.171,2.215 - c0.001,1.937,0.003,4.901,0.003,5.057L3.849,21.5c0-0.156-0.002-3.12-0.004-5.058C3.845,15.641,3.782,14.904,3.673,14.227"/> - </g> - </g> - <g id="Group-146" transform="translate(0.000000, 0.201100)"> - <path id="Fill-88" class="st31" d="M29.107,58.855c0.187,0.126,3.734,2.525,3.738,8.587c0.002,1.938,0.004,4.902,0.004,5.059 - L0.503,53.065c0,0.068,0-0.437-0.003-4.175c-0.004-7.012,3.993-4.814,4.203-4.698L29.107,58.855z"/> - <path id="Stroke-90" class="st44" d="M1.996,44.587c1.198-1.497,3.065-0.47,3.207-0.392l24.404,14.663 - c0.187,0.126,3.728,2.515,3.733,8.583c0.001,1.939,0.003,4.903,0.003,5.059"/> - <path id="Fill-92" class="st45" d="M31.545,14.916c0,0.688-0.559,1.247-1.246,1.247c-0.69,0-1.248-0.559-1.248-1.247V1.546 - c0-0.69,0.558-1.247,1.248-1.247c0.687,0,1.246,0.557,1.246,1.247V14.916z"/> - <path id="Fill-94" class="st46" d="M20.211,0.864c0,0-1.437-0.75-3.875,0.5c-2.437,1.25-2.291,2.459-2.459,2.751 - c-0.223,0.392-0.166,1.624-0.166,1.624v38.807c0,0-0.125,0.562,0,1.25c0.125,0.687,1,1.625,1,1.625l12.625,7.5 - c0,0,1.188,0.812,2,0.75c0.813-0.063,1.375,0.125,3.125-1c1.75-1.125,2.125-3,2.125-3V11.364c0,0,0-1.375-0.375-1.875s-1-1-1-1 - L20.211,0.864z"/> - <path id="Stroke-96" class="st47" d="M13.065,35.864v8.15c0,0-0.134,0.6,0,1.334c0.134,0.735,1.067,1.734,1.067,1.734 - l13.471,8.004c0,0,1.268,0.866,2.135,0.799c0.866-0.067,1.466,0.134,3.334-1.067c1.867-1.2,2.267-3.201,2.267-3.201v-6.722"/> - <path id="Fill-98" class="st48" d="M33.086,10.864c0.236,0.682-0.361,1.507-1.332,1.843c-0.973,0.336-1.951,0.055-2.187-0.626 - c-0.236-0.682,0.361-1.507,1.333-1.843C31.871,9.902,32.85,10.182,33.086,10.864"/> - <path id="Fill-100" class="st49" d="M32.457,10.979c0.136,0.392-0.172,0.854-0.687,1.031c-0.516,0.179-1.044,0.006-1.18-0.385 - c-0.135-0.393,0.173-0.854,0.688-1.033C31.793,10.414,32.321,10.586,32.457,10.979"/> - <path id="Fill-102" class="st50" d="M19.721,25.407c0,0.27-0.173,0.382-0.388,0.253l-2.841-1.707 - c-0.211-0.127-0.387-0.449-0.387-0.719v-2.235c0-0.266,0.176-0.377,0.387-0.25l2.841,1.707c0.215,0.129,0.388,0.45,0.388,0.716 - V25.407z"/> - <path id="Fill-104" class="st50" d="M24.619,28.351c0,0.27-0.176,0.38-0.389,0.252l-2.839-1.706 - c-0.213-0.128-0.388-0.449-0.388-0.719v-2.235c0-0.266,0.175-0.378,0.388-0.25l2.839,1.706c0.213,0.128,0.389,0.451,0.389,0.717 - V28.351z"/> - <path id="Fill-106" class="st50" d="M29.49,31.277c0,0.27-0.174,0.381-0.389,0.251l-2.84-1.706 - c-0.212-0.128-0.387-0.448-0.387-0.718v-2.235c0-0.266,0.175-0.379,0.387-0.251l2.84,1.706c0.215,0.13,0.389,0.452,0.389,0.718 - V31.277z"/> - <path id="Fill-108" class="st50" d="M19.721,30.12c0,0.269-0.173,0.382-0.388,0.253l-2.841-1.707 - c-0.211-0.127-0.387-0.45-0.387-0.719v-2.235c0-0.267,0.176-0.377,0.387-0.25l2.841,1.707c0.215,0.129,0.388,0.449,0.388,0.716 - V30.12z"/> - <path id="Fill-110" class="st50" d="M24.619,33.063c0,0.269-0.176,0.38-0.389,0.252l-2.839-1.706 - c-0.213-0.128-0.388-0.45-0.388-0.719v-2.235c0-0.267,0.175-0.378,0.388-0.25l2.839,1.706c0.213,0.128,0.389,0.45,0.389,0.717 - V33.063z"/> - <path id="Fill-112" class="st50" d="M29.49,35.99c0,0.269-0.174,0.381-0.389,0.251l-2.84-1.706 - c-0.212-0.128-0.387-0.449-0.387-0.718v-2.235c0-0.267,0.175-0.379,0.387-0.251l2.84,1.706c0.215,0.13,0.389,0.451,0.389,0.718 - V35.99z"/> - <path id="Fill-114" class="st50" d="M19.721,34.816c0,0.269-0.173,0.382-0.388,0.253l-2.841-1.707 - c-0.211-0.127-0.387-0.45-0.387-0.719v-2.234c0-0.268,0.176-0.377,0.387-0.25l2.841,1.707c0.215,0.129,0.388,0.448,0.388,0.716 - V34.816z"/> - <path id="Fill-116" class="st50" d="M24.619,37.76c0,0.269-0.176,0.38-0.389,0.252l-2.839-1.706 - c-0.213-0.128-0.388-0.45-0.388-0.719v-2.234c0-0.268,0.175-0.378,0.388-0.25l2.839,1.706c0.213,0.128,0.389,0.449,0.389,0.717 - V37.76z"/> - <path id="Fill-118" class="st50" d="M29.49,40.686c0,0.269-0.174,0.381-0.389,0.251l-2.84-1.706 - c-0.212-0.128-0.387-0.449-0.387-0.718v-2.234c0-0.268,0.175-0.379,0.387-0.251l2.84,1.706c0.215,0.13,0.389,0.45,0.389,0.718 - V40.686z"/> - <path id="Fill-120" class="st50" d="M19.721,39.628c0,0.268-0.173,0.381-0.388,0.252l-2.841-1.707 - c-0.211-0.127-0.387-0.45-0.387-0.718V35.22c0-0.269,0.176-0.38,0.387-0.253l2.841,1.707c0.215,0.129,0.388,0.45,0.388,0.719 - V39.628z"/> - <path id="Fill-122" class="st50" d="M24.619,42.571c0,0.268-0.176,0.379-0.389,0.251l-2.839-1.706 - c-0.213-0.128-0.388-0.45-0.388-0.718v-2.235c0-0.269,0.175-0.381,0.388-0.253l2.839,1.706c0.213,0.128,0.389,0.451,0.389,0.72 - V42.571z"/> - <path id="Fill-124" class="st50" d="M29.49,45.498c0,0.268-0.174,0.38-0.389,0.25l-2.84-1.706 - c-0.212-0.128-0.387-0.449-0.387-0.717V41.09c0-0.269,0.175-0.382,0.387-0.254l2.84,1.706c0.215,0.13,0.389,0.452,0.389,0.721 - V45.498z"/> - <path id="Fill-126" class="st50" d="M29.144,24.476c0,0.908-0.623,1.27-1.394,0.807l-10.194-6.125 - c-0.769-0.463-1.392-1.574-1.392-2.482V9.082c0-0.908,0.623-1.27,1.392-0.807l10.194,6.125c0.771,0.463,1.394,1.574,1.394,2.482 - V24.476z"/> - <polygon id="Fill-128" class="st50" points="26.097,47.291 18.251,42.576 18.251,42.074 26.097,46.789 "/> - <polygon id="Fill-130" class="st50" points="26.097,48.316 18.251,43.601 18.251,43.098 26.097,47.813 "/> - <polygon id="Fill-132" class="st50" points="26.097,49.359 18.251,44.644 18.251,44.141 26.097,48.856 "/> - <path id="Stroke-134" class="st44" d="M31.886,48.957V11.934"/> - <path id="Stroke-136" class="st44" d="M30.553,6.623V2.198"/> - <polygon id="Fill-138" class="st50" points="5.121,45.389 7.561,46.856 8.715,55.208 8.742,55.222 9.908,48.267 12.35,49.733 - 10.151,58.318 7.25,56.576 "/> - <path id="Fill-140" class="st50" d="M15.429,55.26c-0.648-0.39-0.838,0.15-0.838,1.968c0,1.831,0.19,2.593,0.838,2.983 - c0.68,0.408,0.815-0.132,0.815-1.977C16.244,56.377,16.109,55.669,15.429,55.26 M12.394,55.934c0-2.247,0.486-3.675,3.023-2.15 - c2.686,1.614,3.027,3.495,3.027,5.743c0,2.246-0.492,3.671-3.027,2.149C12.73,60.061,12.394,58.183,12.394,55.934"/> - <polygon id="Fill-142" class="st50" points="19.361,53.946 21.638,55.314 21.638,65.219 19.361,63.85 "/> - <path id="Fill-144" class="st50" d="M25.185,61.761l0.623,0.376c0.908,0.546,1.129,0.093,1.129-0.572 - c0-0.762-0.246-1.493-1.168-2.048l-0.584-0.35V61.761z M22.904,56.076l3.529,2.121c2.398,1.439,2.863,3.495,2.863,4.731 - c0,1.773-0.828,2.525-3.107,1.156l-1.004-0.603v3.87l-2.281-1.37V56.076z"/> - </g> - </g> - </g> -</g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 49.922 75.201"><style><![CDATA[.z{fill:#fff}.AA{fill:none}.AB{stroke-linejoin:round}.AC{stroke:#626366}.AD{stroke-width:3}.AE{stroke-linecap:round}.AF{fill:#898b8e}.AG{fill:#a4a6a9}]]></style><g transform="translate(1 1)"><g class="AA AB AC AD"><use xlink:href="#B"/><path d="M20.086 1.065s-1.437-.75-3.875.5-2.29 2.46-2.46 2.75c-.223.392-.166 1.624-.166 1.624v35.125s-.125.563 0 1.25 1 1.625 1 1.625l12.625 7.5s1.188.813 2 .75 1.375.125 3.125-1 2.125-3 2.125-3V11.565s0-1.375-.375-1.875-1-1-1-1l-13-7.625z"/></g><g transform="translate(0 45.201)"><defs><filter id="A" filterUnits="userSpaceOnUse" x="-.997" y="-1.171" width="17.579" height="10.744"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter><path id="B" d="M31.46 15.117a1.25 1.25 0 0 1-1.246 1.247 1.25 1.25 0 0 1-1.248-1.247V1.747c0-.7.558-1.247 1.248-1.247s1.246.557 1.246 1.247v13.37z"/><path id="C" d="M14.752.277L.173 8.016c1.12-.596 2.413.115 2.53.18l14.58-7.74C17.2.41 16.526.04 15.742.04a2.08 2.08 0 0 0-.99.236"/><path id="D" d="M.108 7.858c.186.126 3.727 2.515 3.732 8.584l.003 5.058 14.58-7.74-.004-5.057c-.004-6.07-3.545-8.46-3.73-8.584"/><path id="E" d="M14.752.274L.173 8.013c1.12-.596 2.413.115 2.53.18l14.58-7.74c-.083-.045-.756-.415-1.54-.415a2.08 2.08 0 0 0-.99.236"/><path id="F" d="M.108 7.856c.186.126 3.734 2.525 3.737 8.587L3.85 21.5l14.578-7.74-.004-5.058c-.004-6.06-3.55-8.46-3.737-8.587"/></defs><mask maskUnits="userSpaceOnUse" x="-.997" y="-1.171" width="17.579" height="10.744" id="G"><g filter="url(#A)"><path d="M.503 8.07v.004L15.082.33" class="z"/></g></mask><path d="M.503 8.068L15.082.335.503 8.068" mask="url(#G)" class="AA AB AC AD AE"/></g><path d="M15.082 45.536L.503 53.27l14.58-7.74z" class="AA AB AC AD"/><g transform="translate(2 36.201)"><defs><filter id="H" filterUnits="userSpaceOnUse" x="-1.328" y="-1.349" width="17.872" height="10.865"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="-1.328" y="-1.349" width="17.872" height="10.865" id="I"><g filter="url(#H)"><use xlink:href="#C" class="z"/></g></mask><path d="M.172 8.016L14.75.277a1.96 1.96 0 0 1 .293-.126L.465 7.9c-.1.032-.196.074-.293.126" mask="url(#I)" class="AA AB AC AD AE"/><defs><filter id="J" filterUnits="userSpaceOnUse" x="-1.035" y="-1.459" width="18.63" height="10.849"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="-1.035" y="-1.459" width="18.63" height="10.849" id="K"><g filter="url(#J)"><use xlink:href="#C" class="z"/></g></mask><path d="M.465 7.9L15.044.15c.36-.12.724-.13 1.05-.086L1.517 7.804a2.32 2.32 0 0 0-1.052.086" mask="url(#K)" class="AA AB AC AD AE"/><defs><filter id="L" filterUnits="userSpaceOnUse" x=".017" y="-1.435" width="18.766" height="11.131"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x=".017" y="-1.435" width="18.766" height="11.131" id="M"><g filter="url(#L)"><use xlink:href="#C" class="z"/></g></mask><path d="M1.517 7.804L16.095.065c.625.083 1.117.353 1.188.39l-14.58 7.74c-.07-.04-.562-.3-1.186-.392" mask="url(#M)" class="AA AB AC AD AE"/></g><g class="AA AB AC AD"><path d="M2.172 44.217l14.58-7.74c1.12-.595 2.413.115 2.53.18l-14.58 7.74c-.117-.065-1.41-.776-2.53-.18z"/><path d="M4.703 44.396l14.58-7.74L43.686 51.32l-14.58 7.738z"/></g><g transform="translate(29 51.201)"><defs><filter id="N" filterUnits="userSpaceOnUse" x="-1.393" y="-1.38" width="19.389" height="12.618"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="-1.393" y="-1.38" width="19.389" height="12.618" id="O"><g filter="url(#N)"><use xlink:href="#D" class="z"/></g></mask><path d="M.107 7.858L14.686.12c.09.06.942.634 1.8 1.88l-14.58 7.74c-.87-1.244-1.72-1.82-1.8-1.88" mask="url(#O)" class="AA AB AC AD AE"/><defs><filter id="P" filterUnits="userSpaceOnUse" x=".417" y=".499" width="18.044" height="11.474"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x=".417" y=".499" width="18.044" height="11.474" id="Q"><g filter="url(#P)"><use xlink:href="#D" class="z"/></g></mask><path d="M1.917 9.738L16.496 2l.465.735-14.58 7.74-.464-.735" mask="url(#Q)" class="AA AB AC AD AE"/><defs><filter id="R" filterUnits="userSpaceOnUse" x=".88" y="1.235" width="18.041" height="11.655"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x=".88" y="1.235" width="18.041" height="11.655" id="S"><g filter="url(#R)"><use xlink:href="#D" class="z"/></g></mask><path d="M2.38 10.474l14.58-7.74a10.28 10.28 0 0 1 .461.916L2.842 11.4a9.89 9.89 0 0 0-.462-.916" mask="url(#S)" class="AA AB AC AD AE"/><defs><filter id="T" filterUnits="userSpaceOnUse" x="1.342" y="2.151" width="17.981" height="11.798"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="1.342" y="2.151" width="17.981" height="11.798" id="U"><g filter="url(#T)"><use xlink:href="#D" class="z"/></g></mask><path d="M2.842 11.4l14.58-7.74a10.46 10.46 0 0 1 .402 1.059L3.245 12.45c-.122-.38-.257-.732-.403-1.06" mask="url(#U)" class="AA AB AC AD AE"/><defs><filter id="V" filterUnits="userSpaceOnUse" x="1.746" y="3.21" width="18" height="12.51"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="1.746" y="3.21" width="18" height="12.51" id="W"><g filter="url(#V)"><use xlink:href="#D" class="z"/></g></mask><path d="M3.246 12.448L17.824 4.7c.174.537.318 1.127.422 1.77L3.668 14.22c-.104-.645-.25-1.235-.422-1.772" mask="url(#W)" class="AA AB AC AD AE"/><defs><filter id="X" filterUnits="userSpaceOnUse" x="2.168" y="4.982" width="17.754" height="18.018"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="2.168" y="4.982" width="17.754" height="18.018" id="Y"><g filter="url(#X)"><use xlink:href="#D" class="z"/></g></mask><path d="M3.668 14.22l14.578-7.74c.1.678.172 1.418.172 2.22l.004 5.058-14.58 7.74-.003-5.058a14.33 14.33 0 0 0-.172-2.221" mask="url(#Y)" class="AA AB AC AD AE"/></g><g class="AA AB AC AD"><path d="M29.107 59.06l14.58-7.738c.187.125 3.728 2.513 3.732 8.583l.003 5.057-14.58 7.74-.003-5.06c-.004-6.068-3.545-8.457-3.732-8.583z"/><path d="M29.107 59.06c.187.126 3.728 2.515 3.732 8.583l.003 5.06L.503 53.27c0 .067 0-.437-.003-4.175-.005-7.012 3.993-4.814 4.203-4.698L29.107 59.06z"/><path d="M1.496 44.788c1.198-1.497 3.065-.47 3.207-.392L29.107 59.06c.187.126 3.728 2.515 3.733 8.583l.003 5.06" class="AE"/></g><g transform="translate(0 45.201)"><defs><filter id="Z" filterUnits="userSpaceOnUse" x=".504" y=".327" width="14.578" height="7.744"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x=".504" y=".327" width="14.578" height="7.744" id="a"><g filter="url(#Z)"><path d="M.504 8.065v.006L15.082.327z" class="z"/></g></mask><path d="M.504 8.065L15.082.332.504 8.07z" mask="url(#a)" fill="#8e969c"/></g><path d="M2.173 44.214l14.578-7.74c1.12-.595 2.414.115 2.53.18l-14.58 7.74c-.117-.065-1.41-.776-2.53-.18" class="AG"/><g transform="translate(2 36.201)"><defs><filter id="b" filterUnits="userSpaceOnUse" x=".173" y=".148" width="14.871" height="7.865"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x=".173" y=".148" width="14.871" height="7.865" id="c"><g filter="url(#b)"><use xlink:href="#E" class="z"/></g></mask><path d="M.173 8.013L14.75.274c.098-.05.195-.093.293-.126L.466 7.887c-.1.033-.197.074-.293.126" mask="url(#c)" fill="#8e969c"/><defs><filter id="d" filterUnits="userSpaceOnUse" x=".466" y=".038" width="15.63" height="7.849"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x=".466" y=".038" width="15.63" height="7.849" id="e"><g filter="url(#d)"><use xlink:href="#E" class="z"/></g></mask><path d="M.466 7.887L15.044.148c.36-.12.724-.13 1.052-.086L1.517 7.8c-.328-.044-.693-.035-1.05.086" mask="url(#e)" fill="#90989e"/><defs><filter id="f" filterUnits="userSpaceOnUse" x="1.517" y=".062" width="15.766" height="8.131"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="1.517" y=".062" width="15.766" height="8.131" id="g"><g filter="url(#f)"><use xlink:href="#E" class="z"/></g></mask><path d="M1.517 7.8l14.58-7.74c.624.083 1.116.353 1.187.39l-14.58 7.74c-.07-.04-.562-.3-1.186-.392" mask="url(#g)" class="AG"/></g><path d="M4.703 44.393l14.58-7.74 24.403 14.664-14.58 7.738z" class="AF"/><g transform="translate(29 51.201)"><defs><filter id="h" filterUnits="userSpaceOnUse" x=".107" y=".117" width="16.392" height="9.623"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x=".107" y=".117" width="16.392" height="9.623" id="i"><g filter="url(#h)"><use xlink:href="#F" class="z"/></g></mask><path d="M.107 7.855L14.686.117c.09.06.943.637 1.813 1.884L1.92 9.74C1.05 8.493.197 7.916.107 7.855" mask="url(#i)" class="AG"/><defs><filter id="j" filterUnits="userSpaceOnUse" x="1.92" y="2.001" width="15.045" height="8.476"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="1.92" y="2.001" width="15.045" height="8.476" id="k"><g filter="url(#j)"><use xlink:href="#F" class="z"/></g></mask><path d="M1.92 9.74L16.5 2l.466.738-14.578 7.738-.467-.737" mask="url(#k)" fill="#c6c7c9"/><defs><filter id="l" filterUnits="userSpaceOnUse" x="2.386" y="2.739" width="15.043" height="8.659"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="2.386" y="2.739" width="15.043" height="8.659" id="m"><g filter="url(#l)"><use xlink:href="#F" class="z"/></g></mask><path d="M2.386 10.477L16.964 2.74c.16.28.318.588.465.92l-14.58 7.74-.463-.92" mask="url(#m)" fill="#bbbdbf"/><defs><filter id="n" filterUnits="userSpaceOnUse" x="2.849" y="3.659" width="14.982" height="8.797"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="2.849" y="3.659" width="14.982" height="8.797" id="o"><g filter="url(#n)"><use xlink:href="#F" class="z"/></g></mask><path d="M2.85 11.398l14.58-7.74c.145.327.28.68.402 1.058l-14.58 7.74a10.53 10.53 0 0 0-.403-1.058" mask="url(#o)" fill="#9ea0a3"/><defs><filter id="p" filterUnits="userSpaceOnUse" x="3.253" y="4.718" width="15.001" height="9.509"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="3.253" y="4.718" width="15.001" height="9.509" id="q"><g filter="url(#p)"><use xlink:href="#F" class="z"/></g></mask><path d="M3.253 12.456l14.58-7.738a12.02 12.02 0 0 1 .422 1.771l-14.58 7.738c-.104-.644-.248-1.234-.42-1.77" mask="url(#q)" class="AF"/><defs><filter id="r" filterUnits="userSpaceOnUse" x="3.673" y="6.489" width="14.754" height="15.011"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="3.673" y="6.489" width="14.754" height="15.011" id="s"><g filter="url(#r)"><use xlink:href="#F" class="z"/></g></mask><path d="M3.673 14.227l14.58-7.738c.108.676.17 1.413.17 2.215l.003 5.057L3.85 21.5l-.004-5.058a13.91 13.91 0 0 0-.172-2.215" mask="url(#s)" class="AF"/></g><path d="M29.107 59.056c.187.126 3.734 2.525 3.738 8.587l.004 5.06L.503 53.266c0 .068 0-.437-.003-4.175-.004-7.012 3.993-4.814 4.203-4.698l24.404 14.663z" class="AF"/><path d="M1.996 44.788c1.198-1.497 3.065-.47 3.207-.392L29.607 59.06c.187.126 3.728 2.515 3.733 8.583l.003 5.06" stroke="#dfe0df" stroke-width=".75" class="AA AB AE"/><use xlink:href="#B" x="0.085" fill="#939ba0"/><path d="M20.21 1.065s-1.437-.75-3.875.5-2.29 2.46-2.46 2.75c-.223.392-.166 1.624-.166 1.624v38.807s-.125.562 0 1.25 1 1.625 1 1.625l12.625 7.5s1.188.812 2 .75 1.375.125 3.125-1 2.125-3 2.125-3V11.565s0-1.375-.375-1.875-1-1-1-1l-13-7.625z" fill="#b3b5b7"/><path d="M13.065 36.065v8.15s-.134.6 0 1.334 1.067 1.734 1.067 1.734l13.47 8.004s1.268.866 2.135.8 1.466.134 3.334-1.067 2.267-3.2 2.267-3.2v-6.722" stroke-width="1.25" class="AA AC"/><path d="M33.086 11.065c.236.682-.36 1.507-1.332 1.843s-1.95.055-2.187-.626.36-1.507 1.333-1.843 1.95-.056 2.186.626" fill="#cacccd"/><path d="M32.457 11.18c.136.392-.172.854-.687 1.03s-1.044.006-1.18-.385.173-.854.688-1.033 1.043-.006 1.18.387" fill="#dddedf"/><path d="M19.72 25.608c0 .27-.173.382-.388.253l-2.84-1.707a.93.93 0 0 1-.387-.72V21.2c0-.266.176-.377.387-.25l2.84 1.707a.92.92 0 0 1 .388.716v2.235zm4.9 2.944c0 .27-.176.38-.4.252l-2.84-1.706c-.213-.128-.388-.45-.388-.72v-2.235c0-.266.175-.378.388-.25l2.84 1.706c.213.128.4.45.4.717v2.235zm4.88 2.926c0 .27-.174.38-.4.25l-2.84-1.706c-.212-.128-.387-.448-.387-.718V27.07c0-.266.175-.38.387-.25l2.84 1.706c.215.13.4.452.4.718v2.235zm-9.78-1.158c0 .27-.173.382-.388.253l-2.84-1.707a.93.93 0 0 1-.387-.72V25.91c0-.267.176-.377.387-.25l2.84 1.707a.92.92 0 0 1 .388.716v2.235zm4.9 2.944c0 .27-.176.38-.4.252L21.4 31.8c-.213-.128-.388-.45-.388-.72v-2.235c0-.267.175-.378.388-.25l2.84 1.706c.213.128.4.45.4.717v2.235zM29.5 36.2c0 .27-.174.38-.4.25l-2.84-1.706c-.212-.128-.387-.45-.387-.718V31.78c0-.267.175-.38.387-.25l2.84 1.706c.215.13.4.45.4.718V36.2zm-9.78-1.173c0 .27-.173.382-.388.253l-2.84-1.707a.93.93 0 0 1-.387-.72V30.6c0-.268.176-.377.387-.25l2.84 1.707c.215.13.388.448.388.716v2.234zm4.9 2.943c0 .27-.176.38-.4.252l-2.84-1.706c-.213-.128-.388-.45-.388-.72v-2.234c0-.268.175-.378.388-.25L24.23 35c.213.128.4.45.4.717v2.234zm4.88 2.927c0 .27-.174.38-.4.25l-2.84-1.706c-.212-.128-.387-.45-.387-.718V36.48c0-.268.175-.38.387-.25l2.84 1.706c.215.13.4.45.4.718v2.234zm-9.78-1.057c0 .268-.173.38-.388.252l-2.84-1.707a.93.93 0 0 1-.387-.718V35.42c0-.27.176-.38.387-.253l2.84 1.707a.92.92 0 0 1 .388.719v2.235zm4.9 2.942c0 .268-.176.38-.4.25l-2.84-1.706c-.213-.128-.388-.45-.388-.718v-2.235c0-.27.175-.38.388-.253l2.84 1.706c.213.128.4.45.4.72v2.235zM29.5 45.7c0 .268-.174.38-.4.25l-2.84-1.706c-.212-.128-.387-.45-.387-.717V41.3c0-.27.175-.382.387-.254l2.84 1.706c.215.13.4.452.4.72V45.7zm-.356-21.023c0 .908-.623 1.27-1.394.807L17.556 19.36c-.77-.463-1.392-1.574-1.392-2.482V9.283c0-.908.623-1.27 1.392-.807L27.75 14.6c.77.463 1.394 1.574 1.394 2.482v7.594zm-3.047 22.815l-7.846-4.715v-.502L26.097 47zm0 1.025l-7.846-4.715V43.3l7.846 4.715zm0 1.043l-7.846-4.715v-.503l7.846 4.715z" fill="#fefefe"/><path d="M31.886 49.158V12.135m-1.333-5.31V2.4" stroke="#dfe0df" stroke-width=".75" class="AA AB AE"/><path d="M5.12 45.6l2.44 1.467 1.154 8.352.027.014 1.166-6.955 2.442 1.466-2.2 8.585-2.9-1.742zm10.3 9.86c-.648-.4-.838.15-.838 1.968 0 1.83.2 2.593.838 2.983.68.408.815-.132.815-1.977 0-1.857-.135-2.565-.815-2.974m-3.035.674c0-2.247.486-3.675 3.023-2.15 2.686 1.614 3.027 3.495 3.027 5.743s-.492 3.67-3.027 2.15c-2.687-1.615-3.023-3.493-3.023-5.742m6.965-1.988l2.277 1.368v9.905l-2.277-1.37zm5.825 7.815l.623.376c.908.546 1.13.093 1.13-.572 0-.762-.246-1.493-1.168-2.048l-.584-.35v2.594zm-2.28-5.685l3.53 2.12c2.398 1.44 2.863 3.495 2.863 4.73 0 1.773-.828 2.525-3.107 1.156l-1.004-.603v3.87l-2.28-1.37v-9.905z" fill="#fefefe"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Vdeo_Conference_Terminal.svg b/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Vdeo_Conference_Terminal.svg index 68daec41d2ebcb1234184cb2dc632efb3cdac55b..b3b536f30683a4d9006681b60d6d9c62705211cf 100644 --- a/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Vdeo_Conference_Terminal.svg +++ b/src/main/webapp/img/lib/allied_telesis/computer_and_terminals/Vdeo_Conference_Terminal.svg @@ -1,477 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 52.193 74.645" style="enable-background:new 0 0 52.193 74.645;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#626366;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;} - .st1{fill:#898B8E;} - .st2{fill:#BBBDBF;} - .st3{fill:#B3B5B7;} - .st4{fill:#FEFEFE;} - .st5{fill:#C4CACE;} - .st6{fill:none;stroke:#E1E2E3;stroke-linecap:round;stroke-linejoin:round;} - .st7{fill:none;stroke:#626366;stroke-width:1.24;stroke-linecap:round;stroke-linejoin:round;} - .st8{fill:#A6A8AB;} - .st9{fill:#808184;} - .st10{fill:#90989E;} - .st11{fill:#8C9499;} - .st12{fill:#8E969C;} - .st13{fill:#939BA0;} - .st14{fill:#636466;} - .st15{fill:#B1B7BC;} - .st16{fill:#C8CDD0;} - .st17{fill:#939597;} - .st18{fill:#6C6E70;} - .st19{fill:none;stroke:#BABCBC;stroke-width:0.31;stroke-linecap:round;stroke-linejoin:round;} - .st20{fill:none;stroke:#DFE0DF;stroke-width:0.31;stroke-linecap:round;stroke-linejoin:round;} - .st21{fill:none;stroke:#636466;stroke-width:1.24;} - .st22{fill:none;stroke:#636466;stroke-width:0.827;} - .st23{fill:#D0D2D3;} - .st24{fill:#E5E6E7;} - .st25{fill:#626466;} - .st26{fill:#7A7C7F;} - .st27{fill:#999B9D;} - .st28{fill:#E1E2E3;} -</style> -<title>icon-video-conference</title> -<desc>Created with Sketch.</desc> -<g id="Page-1"> - <g id="Desktop" transform="translate(-1325.000000, -81.000000)"> - <g id="icon-video-conference" transform="translate(1326.000000, 80.000000)"> - <g id="Group-7" transform="translate(0.000000, 2.644900)"> - <polygon id="Stroke-1" class="st0" points="45.391,29.671 49.663,27.403 49.693,69.232 45.42,71.5 "/> - <polygon id="Stroke-3" class="st0" points="0.5,2.698 4.772,0.429 49.663,27.403 45.391,29.671 "/> - <polygon id="Stroke-5" class="st0" points="45.391,29.671 45.42,71.5 0.531,44.527 0.5,2.698 "/> - </g> - <polygon id="Fill-8" class="st1" points="45.39,32.316 49.662,30.048 49.692,71.877 45.419,74.145 "/> - <polygon id="Fill-9" class="st2" points="0.5,5.343 4.772,3.074 49.662,30.048 45.39,32.316 "/> - <polygon id="Fill-10" class="st3" points="45.39,32.316 45.419,74.145 0.53,47.172 0.5,5.343 "/> - <polygon id="Fill-11" class="st4" points="41.328,62.069 4.627,40.017 4.627,13.649 41.328,35.701 "/> - <g id="Group-22" transform="translate(0.000000, 4.644900)"> - <path id="Fill-12" class="st5" d="M26.447,23.828l13.578,8.157l0.076,7.592c0,0-0.242-5.445-4.277-8.856 - C30.671,26.366,26.447,23.828,26.447,23.828"/> - <polygon id="Fill-14" class="st4" points="35.575,58.784 26.388,53.264 26.388,51.91 35.575,57.43 "/> - <path id="Fill-16" class="st4" d="M38.57,59.971c0,0.408-0.332,0.54-0.741,0.294c-0.408-0.245-0.741-0.777-0.741-1.185 - c0-0.409,0.333-0.541,0.741-0.296C38.238,59.03,38.57,59.561,38.57,59.971"/> - <path id="Fill-18" class="st4" d="M40.762,61.289c0,0.408-0.332,0.54-0.741,0.294c-0.408-0.245-0.74-0.776-0.74-1.184 - c0-0.41,0.332-0.542,0.74-0.297C40.43,60.348,40.762,60.879,40.762,61.289"/> - <polyline id="Stroke-20" class="st6" points="0.878,0.839 45.374,27.574 45.403,69.146 "/> - </g> - <g id="Group-32" transform="translate(27.000000, 0.644900)"> - <g id="Group-25"> - <g id="Clip-24"> - </g> - <path id="Stroke-23" class="st7" d="M0.187,1.266C0.473,1.114,0.75,1.024,1.01,0.99"/> - </g> - <g id="Group-28"> - <g id="Clip-27"> - </g> - <path id="Stroke-26" class="st7" d="M1.01,0.99c0.237-0.03,0.459-0.013,0.659,0.046l5.946,3.521"/> - </g> - <g id="Group-31"> - <g id="Clip-30"> - </g> - <path id="Stroke-29" class="st7" d="M7.616,4.557L1.67,1.036c0.107,0.032,0.209,0.076,0.303,0.132l5.946,3.521 - C7.825,4.633,7.723,4.589,7.616,4.557"/> - </g> - </g> - <g id="Group-47" transform="translate(17.000000, 0.644900)"> - <path id="Stroke-33" class="st7" d="M10.187,1.266c0.684-0.364,1.319-0.375,1.786-0.098l5.945,3.521 - c-0.466-0.277-1.101-0.265-1.786,0.098"/> - <path id="Stroke-35" class="st7" d="M7.827,19.994l-5.945-3.521c-0.147-0.087-0.276-0.202-0.385-0.343l5.945,3.521 - C7.552,19.792,7.682,19.907,7.827,19.994"/> - <path id="Stroke-37" class="st7" d="M7.442,19.651L1.497,16.13c-0.116-0.148-0.207-0.325-0.272-0.53l5.946,3.522 - C7.236,19.326,7.329,19.503,7.442,19.651"/> - <path id="Stroke-39" class="st7" d="M1.225,15.6c-0.057-0.174-0.094-0.368-0.107-0.58"/> - <path id="Stroke-41" class="st7" d="M1.118,15.02c0-0.009-0.002-0.019-0.002-0.027"/> - <path id="Stroke-43" class="st7" d="M1.116,14.993l-0.35-6.111"/> - <path id="Stroke-45" class="st7" d="M3.012,4.952l7.175-3.686"/> - </g> - <g id="Group-66" transform="translate(17.000000, 4.644900)"> - <g id="Group-50"> - <g id="Clip-49"> - </g> - <path id="Stroke-48" class="st7" d="M0.766,4.882C0.757,4.713,0.763,4.539,0.781,4.364"/> - </g> - <g id="Group-53"> - <g id="Clip-52"> - </g> - <path id="Stroke-51" class="st7" d="M0.781,4.364C0.795,4.23,0.816,4.095,0.844,3.96"/> - </g> - <g id="Group-56"> - <g id="Clip-55"> - </g> - <path id="Stroke-54" class="st7" d="M0.844,3.96c0.041-0.184,0.093-0.368,0.159-0.55"/> - </g> - <g id="Group-59"> - <g id="Clip-58"> - </g> - <path id="Stroke-57" class="st7" d="M1.003,3.41C1.17,2.937,1.421,2.48,1.729,2.077"/> - </g> - <g id="Group-62"> - <g id="Clip-61"> - </g> - <path id="Stroke-60" class="st7" d="M1.729,2.076c0.294-0.383,0.64-0.717,1.018-0.966"/> - </g> - <g id="Group-65"> - <g id="Clip-64"> - </g> - <path id="Stroke-63" class="st7" d="M2.747,1.11c0.086-0.057,0.176-0.111,0.266-0.158"/> - </g> - </g> - <g id="Group-71" transform="translate(17.000000, 4.644900)"> - <path id="Stroke-67" class="st7" d="M0.766,4.882c-0.082-1.467,0.922-3.227,2.246-3.93"/> - <path id="Stroke-69" class="st7" d="M16.132,0.787c1.323-0.704,2.468-0.087,2.552,1.38l0.349,6.111 - c0.082,1.467-0.924,3.227-2.25,3.931l-7.172,3.685c-1.326,0.705-2.465,0.086-2.549-1.381"/> - </g> - <g id="Group-81" transform="translate(27.000000, 0.644900)"> - <g id="Group-74"> - <g id="Clip-73"> - </g> - <path id="Fill-72" class="st8" d="M6.132,4.787L0.187,1.266C0.473,1.114,0.75,1.023,1.01,0.99l5.946,3.521 - C6.696,4.544,6.418,4.635,6.132,4.787"/> - </g> - <g id="Group-77"> - <g id="Clip-76"> - </g> - <path id="Fill-75" class="st9" d="M6.957,4.511L1.01,0.99c0.237-0.031,0.459-0.014,0.659,0.045l5.946,3.521 - C7.416,4.497,7.194,4.48,6.957,4.511"/> - </g> - <g id="Group-80"> - <g id="Clip-79"> - </g> - <path id="Fill-78" class="st10" d="M7.616,4.557L1.67,1.036c0.107,0.032,0.209,0.076,0.303,0.132l5.946,3.521 - C7.825,4.633,7.723,4.589,7.616,4.557"/> - </g> - </g> - <g id="Group-94" transform="translate(18.000000, 14.644900)"> - <g id="Group-84"> - <g id="Clip-83"> - </g> - <path id="Fill-82" class="st11" d="M6.827,5.993L0.882,2.472C0.735,2.385,0.606,2.271,0.497,2.129L6.442,5.65 - C6.552,5.792,6.682,5.907,6.827,5.993"/> - </g> - <g id="Group-87"> - <g id="Clip-86"> - </g> - <path id="Fill-85" class="st12" d="M6.442,5.65L0.497,2.129C0.381,1.982,0.29,1.804,0.225,1.6l5.946,3.522 - C6.236,5.326,6.329,5.503,6.442,5.65"/> - </g> - <g id="Group-90"> - <g id="Clip-89"> - </g> - <path id="Fill-88" class="st3" d="M6.17,5.122L0.225,1.601C0.168,1.426,0.131,1.233,0.117,1.02l5.946,3.521 - C6.077,4.753,6.113,4.948,6.17,5.122"/> - </g> - <g id="Group-93"> - <g id="Clip-92"> - </g> - <path id="Fill-91" class="st13" d="M6.063,4.541L0.118,1.02c0-0.009-0.002-0.019-0.002-0.027l5.946,3.52 - C6.063,4.522,6.063,4.532,6.063,4.541"/> - </g> - </g> - <g id="Group-99" transform="translate(17.000000, 1.644900)"> - <polygon id="Fill-95" class="st3" points="7.062,17.513 1.116,13.992 0.766,7.881 6.713,11.403 "/> - <polygon id="Fill-97" class="st14" points="8.958,7.472 3.012,3.951 10.187,0.265 16.132,3.787 "/> - </g> - <g id="Group-118" transform="translate(17.000000, 4.644900)"> - <g id="Group-102"> - <g id="Clip-101"> - </g> - <path id="Fill-100" class="st3" d="M6.713,8.403L0.766,4.882C0.757,4.712,0.763,4.539,0.78,4.364l5.947,3.521 - C6.708,8.06,6.703,8.234,6.713,8.403"/> - </g> - <g id="Group-105"> - <g id="Clip-104"> - </g> - <path id="Fill-103" class="st15" d="M6.727,7.885L0.781,4.364C0.794,4.23,0.816,4.095,0.844,3.96l5.947,3.52 - C6.762,7.616,6.74,7.751,6.727,7.885"/> - </g> - <g id="Group-108"> - <g id="Clip-107"> - </g> - <path id="Fill-106" class="st8" d="M6.791,7.48L0.844,3.96c0.041-0.184,0.093-0.369,0.159-0.551L6.949,6.93 - C6.884,7.112,6.83,7.297,6.791,7.48"/> - </g> - <g id="Group-111"> - <g id="Clip-110"> - </g> - <path id="Fill-109" class="st16" d="M6.95,6.93L1.004,3.409c0.167-0.473,0.418-0.931,0.725-1.333l5.948,3.521 - C7.368,6,7.118,6.458,6.95,6.93"/> - </g> - <g id="Group-114"> - <g id="Clip-113"> - </g> - <path id="Fill-112" class="st17" d="M7.676,5.597L1.729,2.076C2.023,1.693,2.368,1.359,2.746,1.11l5.947,3.521 - C8.314,4.881,7.968,5.214,7.676,5.597"/> - </g> - <g id="Group-117"> - <g id="Clip-116"> - </g> - <path id="Fill-115" class="st18" d="M8.693,4.631L2.747,1.11c0.086-0.058,0.175-0.111,0.265-0.159l5.947,3.521 - C8.869,4.52,8.78,4.573,8.693,4.631"/> - </g> - </g> - <g id="Group-131" transform="translate(15.000000, 4.644900)"> - <path id="Fill-119" class="st1" d="M18.132,0.787c1.323-0.704,2.468-0.088,2.552,1.379l0.349,6.111 - c0.082,1.468-0.924,3.228-2.25,3.932l-7.172,3.685c-1.326,0.705-2.465,0.086-2.549-1.381l-0.349-6.11 - c-0.084-1.468,0.921-3.227,2.245-3.931L18.132,0.787z"/> - <path id="Stroke-121" class="st19" d="M10.305,16.24c-0.623-0.103-1.083-0.587-1.212-1.366"/> - <path id="Stroke-123" class="st19" d="M19.597,0.626c0.285,0.081,0.528,0.247,0.713,0.488"/> - <path id="Stroke-125" class="st20" d="M9.093,14.875c-0.015-0.091-0.024-0.187-0.031-0.286l-0.349-6.11 - c-0.084-1.468,0.921-3.227,2.245-3.931l7.174-3.685c0.538-0.286,1.046-0.355,1.465-0.237"/> - <path id="Stroke-127" class="st21" d="M5.769,13.828c-0.45,0.235-0.834,0.429-0.937,0.481c-0.156,0.078-0.712,0.336-1.234,0.125 - C0.659,13.242-0.238,9.473,0.161,8.28C0.257,7.989,0.42,7.544,0.714,7.268C0.881,7.11,1.868,6.589,2.6,6.215"/> - <path id="Stroke-129" class="st22" d="M0.7,7.288C0.869,7.13,1.854,6.61,2.587,6.235C3.016,6.016,3.359,5.847,3.399,5.83 - c0.268-0.108,0.728-0.233,1.516,0.03c0.442,0.148,1.47,0.86,2.093,1.913c0.546,0.923,1.164,2.01,1.053,3.826 - c-0.05,0.822-0.443,1.136-0.496,1.198c-0.134,0.158-1.062,0.661-1.81,1.052c-0.45,0.235-0.834,0.428-0.938,0.481 - c-0.155,0.077-0.712,0.336-1.233,0.125C0.645,13.262-0.251,9.493,0.146,8.3C0.243,8.01,0.407,7.565,0.7,7.288z"/> - </g> - <g id="Group-141" transform="translate(17.000000, 16.644900)"> - <g id="Group-134"> - <g id="Clip-133"> - </g> - <path id="Fill-132" class="st23" d="M0.873,1.676l2.41-1.279C3.43,0.485,3.574,0.556,3.713,0.61l-2.41,1.279 - C1.164,1.835,1.02,1.764,0.873,1.676"/> - </g> - <g id="Group-137"> - <g id="Clip-136"> - </g> - <path id="Fill-135" class="st2" d="M1.303,1.889l2.41-1.279c0.179,0.068,0.351,0.109,0.514,0.124l-2.41,1.28 - C1.654,1.998,1.482,1.957,1.303,1.889"/> - </g> - <g id="Group-140"> - <g id="Clip-139"> - </g> - <path id="Fill-138" class="st8" d="M1.817,2.013l2.41-1.279c0.269,0.025,0.514-0.021,0.724-0.133L2.541,1.88 - C2.331,1.992,2.086,2.038,1.817,2.013"/> - </g> - </g> - <g id="Group-169" transform="translate(15.000000, 10.644900)"> - <g id="Group-144"> - <g id="Clip-143"> - </g> - <path id="Fill-142" class="st8" d="M1.203,1.589l2.41-1.279C3.276,0.489,3.026,0.838,2.912,1.329l-2.41,1.279 - C0.617,2.117,0.865,1.769,1.203,1.589"/> - </g> - <g id="Group-147"> - <g id="Clip-146"> - </g> - <path id="Fill-145" class="st2" d="M0.502,2.608l2.41-1.279C2.87,1.509,2.846,1.71,2.843,1.928L0.432,3.207 - C0.436,2.989,0.46,2.789,0.502,2.608"/> - </g> - <g id="Group-150"> - <g id="Clip-149"> - </g> - <path id="Fill-148" class="st23" d="M0.432,3.207l2.411-1.279c-0.001,0.02-0.001,0.041-0.001,0.061 - c0,0.181,0.014,0.366,0.04,0.554l-2.41,1.279c-0.026-0.187-0.04-0.373-0.04-0.553L0.432,3.207"/> - </g> - <g id="Group-153"> - <g id="Clip-152"> - </g> - <path id="Fill-151" class="st24" d="M0.472,3.822l2.41-1.279c0.03,0.215,0.077,0.432,0.138,0.65L0.61,4.472 - C0.548,4.255,0.502,4.037,0.472,3.822"/> - </g> - <g id="Group-156"> - <g id="Clip-155"> - </g> - <path id="Fill-154" class="st4" d="M0.61,4.473l2.41-1.279C3.076,3.392,3.143,3.59,3.221,3.786l-2.41,1.279 - C0.733,4.869,0.666,4.671,0.61,4.473"/> - </g> - <g id="Group-159"> - <g id="Clip-158"> - </g> - <path id="Fill-157" class="st4" d="M0.811,5.065l2.41-1.279C3.461,4.383,3.8,4.958,4.202,5.44L1.791,6.719 - C1.39,6.237,1.05,5.663,0.811,5.065"/> - </g> - <g id="Group-162"> - <g id="Clip-161"> - </g> - <path id="Fill-160" class="st4" d="M1.791,6.719l2.41-1.279C4.358,5.629,4.525,5.804,4.7,5.961L2.29,7.24 - C2.115,7.083,1.948,6.908,1.791,6.719"/> - </g> - <g id="Group-165"> - <g id="Clip-164"> - </g> - <path id="Fill-163" class="st24" d="M2.29,7.24L4.7,5.961c0.167,0.15,0.342,0.284,0.521,0.397l-2.41,1.279 - C2.632,7.524,2.457,7.39,2.29,7.24"/> - </g> - <g id="Group-168"> - <g id="Clip-167"> - </g> - <path id="Fill-166" class="st23" d="M2.811,7.637l2.41-1.279c0.021,0.013,0.042,0.026,0.063,0.039L2.873,7.676 - C2.852,7.663,2.832,7.65,2.811,7.637"/> - </g> - </g> - <g id="Group-179" transform="translate(16.000000, 10.644900)"> - <g id="Group-172"> - <g id="Clip-171"> - </g> - <path id="Fill-170" class="st25" d="M0.203,1.589l2.41-1.279c0.21-0.112,0.455-0.158,0.725-0.133l-2.41,1.279 - C0.658,1.431,0.413,1.478,0.203,1.589"/> - </g> - <g id="Group-175"> - <g id="Clip-174"> - </g> - <path id="Fill-173" class="st25" d="M0.928,1.456l2.41-1.279C3.5,0.192,3.672,0.233,3.85,0.302L1.44,1.581 - C1.262,1.512,1.09,1.471,0.928,1.456"/> - </g> - <g id="Group-178"> - <g id="Clip-177"> - </g> - <path id="Fill-176" class="st25" d="M1.44,1.581l2.41-1.279c0.14,0.053,0.283,0.124,0.43,0.212L1.87,1.793 - C1.723,1.705,1.58,1.635,1.44,1.581"/> - </g> - </g> - <g id="Group-189" transform="translate(19.000000, 14.644900)"> - <g id="Group-182"> - <g id="Clip-181"> - </g> - <path id="Fill-180" class="st25" d="M1.272,1.647l2.41-1.279c0.027,0.188,0.04,0.373,0.04,0.553c0,0.021,0,0.042-0.001,0.062 - l-2.41,1.279c0.001-0.02,0.001-0.04,0.001-0.061C1.312,2.02,1.297,1.835,1.272,1.647"/> - </g> - <g id="Group-185"> - <g id="Clip-184"> - </g> - <path id="Fill-183" class="st25" d="M1.311,2.262l2.41-1.279c-0.003,0.218-0.027,0.419-0.069,0.6l-2.41,1.279 - C1.284,2.681,1.307,2.481,1.311,2.262"/> - </g> - <g id="Group-188"> - <g id="Clip-187"> - </g> - <path id="Fill-186" class="st25" d="M1.242,2.861l2.41-1.279C3.538,2.073,3.29,2.421,2.951,2.601L0.541,3.88 - C0.88,3.7,1.128,3.352,1.242,2.861"/> - </g> - </g> - <g id="Group-199" transform="translate(15.000000, 9.644900)"> - <g id="Group-192"> - <g id="Clip-191"> - </g> - <path id="Fill-190" class="st8" d="M0.958,2.128l2.41-1.279c0.241-0.128,0.522-0.181,0.83-0.153l-2.41,1.28 - C1.479,1.947,1.198,2,0.958,2.128"/> - </g> - <g id="Group-195"> - <g id="Clip-194"> - </g> - <path id="Fill-193" class="st2" d="M1.788,1.976l2.41-1.279C4.386,0.714,4.582,0.761,4.786,0.84l-2.41,1.279 - C2.172,2.04,1.975,1.993,1.788,1.976"/> - </g> - <g id="Group-198"> - <g id="Clip-197"> - </g> - <path id="Fill-196" class="st23" d="M2.376,2.119l2.41-1.279c0.16,0.061,0.325,0.142,0.493,0.243l-2.41,1.28 - C2.7,2.262,2.536,2.181,2.376,2.119"/> - </g> - </g> - <path id="Fill-200" class="st25" d="M17.87,12.438c1.344,0.807,2.441,2.788,2.442,4.407c0.001,1.62-1.094,2.283-2.438,1.476 - c-1.342-0.806-2.441-2.788-2.442-4.407C15.432,12.294,16.527,11.631,17.87,12.438"/> - <g id="Group-223" transform="translate(17.000000, 10.644900)"> - <g id="Group-204"> - <g id="Clip-203"> - </g> - <path id="Fill-202" class="st25" d="M0.87,1.793l2.41-1.279C3.302,0.526,3.322,0.54,3.344,0.553L0.932,1.832 - C0.912,1.818,0.891,1.806,0.87,1.793"/> - </g> - <g id="Group-207"> - <g id="Clip-206"> - </g> - <path id="Fill-205" class="st25" d="M0.932,1.832l2.411-1.279C3.522,0.665,3.696,0.799,3.864,0.95L1.453,2.229 - C1.286,2.079,1.112,1.945,0.932,1.832"/> - </g> - <g id="Group-210"> - <g id="Clip-209"> - </g> - <path id="Fill-208" class="st25" d="M1.453,2.23l2.41-1.279c0.175,0.156,0.342,0.332,0.499,0.521l-2.41,1.279 - C1.795,2.562,1.628,2.387,1.453,2.23"/> - </g> - <g id="Group-213"> - <g id="Clip-212"> - </g> - <path id="Fill-211" class="st26" d="M1.953,2.751l2.41-1.279c0.402,0.482,0.741,1.056,0.981,1.654L2.933,4.405 - C2.694,3.808,2.354,3.233,1.953,2.751"/> - </g> - <g id="Group-216"> - <g id="Clip-215"> - </g> - <path id="Fill-214" class="st25" d="M2.933,4.404l2.41-1.279c0.078,0.196,0.146,0.394,0.201,0.592l-2.41,1.279 - C3.079,4.798,3.011,4.6,2.933,4.404"/> - </g> - <g id="Group-219"> - <g id="Clip-218"> - </g> - <path id="Fill-217" class="st25" d="M3.134,4.997l2.41-1.279c0.062,0.217,0.108,0.435,0.138,0.65l-2.41,1.279 - C3.241,5.433,3.195,5.215,3.134,4.997"/> - </g> - <g id="Group-222"> - <g id="Clip-221"> - </g> - <path id="Fill-220" class="st25" d="M3.272,5.647l2.41-1.279c0.027,0.188,0.04,0.373,0.04,0.553c0,0.021,0,0.042-0.001,0.062 - l-2.41,1.279c0.001-0.02,0.001-0.04,0.001-0.061C3.312,6.02,3.297,5.835,3.272,5.647"/> - </g> - </g> - <g id="Group-251" transform="translate(17.000000, 10.644900)"> - <g id="Group-226"> - <g id="Clip-225"> - </g> - <path id="Fill-224" class="st23" d="M0.87,1.362l2.41-1.279c0.024,0.014,0.048,0.029,0.072,0.044l-2.41,1.279 - C0.918,1.391,0.893,1.377,0.87,1.362"/> - </g> - <g id="Group-229"> - <g id="Clip-228"> - </g> - <path id="Fill-227" class="st24" d="M0.942,1.407l2.41-1.279c0.205,0.13,0.405,0.283,0.598,0.456L1.54,1.863 - C1.347,1.69,1.147,1.537,0.942,1.407"/> - </g> - <g id="Group-232"> - <g id="Clip-231"> - </g> - <path id="Fill-230" class="st4" d="M1.539,1.863l2.41-1.279c0.199,0.179,0.392,0.38,0.572,0.597L2.112,2.46 - C1.93,2.243,1.738,2.043,1.539,1.863"/> - </g> - <g id="Group-235"> - <g id="Clip-234"> - </g> - <path id="Fill-233" class="st4" d="M2.112,2.46l2.41-1.279c0.46,0.553,0.849,1.211,1.123,1.896l-2.41,1.279 - C2.961,3.671,2.572,3.013,2.112,2.46"/> - </g> - <g id="Group-238"> - <g id="Clip-237"> - </g> - <path id="Fill-236" class="st4" d="M3.235,4.356l2.41-1.279c0.09,0.224,0.168,0.451,0.232,0.679L3.465,5.035 - C3.402,4.808,3.325,4.581,3.235,4.356"/> - </g> - <g id="Group-241"> - <g id="Clip-240"> - </g> - <path id="Fill-239" class="st24" d="M3.465,5.035l2.411-1.279c0.069,0.249,0.123,0.499,0.157,0.745L3.623,5.78 - C3.588,5.534,3.535,5.285,3.465,5.035"/> - </g> - <g id="Group-244"> - <g id="Clip-243"> - </g> - <path id="Fill-242" class="st23" d="M3.623,5.78l2.41-1.279C6.064,4.716,6.08,4.928,6.08,5.135v0.071l-2.411,1.28 - C3.67,6.462,3.67,6.439,3.67,6.415C3.669,6.208,3.654,5.995,3.623,5.78"/> - </g> - <g id="Group-247"> - <g id="Clip-246"> - </g> - <path id="Fill-245" class="st2" d="M3.668,6.486l2.411-1.279c-0.005,0.25-0.032,0.48-0.08,0.687L3.588,7.173 - C3.637,6.966,3.664,6.736,3.668,6.486"/> - </g> - <g id="Group-250"> - <g id="Clip-249"> - </g> - <path id="Fill-248" class="st8" d="M3.588,7.174l2.411-1.279C5.867,6.457,5.583,6.857,5.195,7.062l-2.41,1.279 - C3.173,8.136,3.457,7.736,3.588,7.174"/> - </g> - </g> - <g id="Group-256" transform="translate(15.000000, 10.644900)"> - <path id="Fill-252" class="st27" d="M2.873,7.676C4.218,8.484,5.313,7.82,5.312,6.2c0-1.619-1.098-3.6-2.442-4.407 - C1.526,0.987,0.431,1.65,0.433,3.269C0.433,4.888,1.531,6.87,2.873,7.676 M2.869,1.363c1.54,0.925,2.799,3.195,2.8,5.052 - S4.415,9.032,2.873,8.107c-1.54-0.926-2.798-3.196-2.799-5.053C0.072,1.197,1.328,0.437,2.869,1.363"/> - <path id="Fill-254" class="st28" d="M4.299,4.182c0.546,1.17,0.416,2.386-0.291,2.716S2.285,6.547,1.739,5.377 - s-0.416-2.386,0.29-2.716C2.737,2.331,3.753,3.012,4.299,4.182"/> - </g> - </g> - </g> -</g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 52.193 74.645"><style><![CDATA[.d{fill:#d0d2d3}.e{fill:#bbbdbf}.f{fill:#a6a8ab}.g{fill:#b3b5b7}.h{fill:#fefefe}.i{fill:#e5e6e7}.j{stroke-linejoin:round}.k{fill:#626466}.l{stroke-linecap:round}.m{stroke-width:1.24}]]></style><g fill="none" stroke="#626366" stroke-width="3" class="j"><path d="M46.39 31.316l4.272-2.268.03 41.83-4.273 2.268z"/><path d="M1.5 4.343l4.272-2.27 44.89 26.974-4.272 2.268z"/><path d="M46.39 31.316l.03 41.83L1.53 46.172 1.5 4.343z"/></g><path d="M46.4 31.316l4.272-2.268.03 41.83-4.273 2.268z" fill="#898b8e"/><path d="M1.5 4.343l4.272-2.27 44.9 26.974-4.272 2.268z" class="e"/><path d="M46.4 31.316l.03 41.83L1.53 46.172 1.5 4.343z" class="g"/><path d="M42.328 61.07l-36.7-22.052V12.65l36.7 22.052z" class="h"/><path d="M27.447 27.473l13.578 8.157.076 7.592s-.242-5.445-4.277-8.856c-5.153-4.355-9.377-6.893-9.377-6.893" fill="#c4cace"/><path d="M36.575 62.43l-9.187-5.52v-1.354l9.187 5.52zm2.995 1.186c0 .408-.332.54-.74.294s-.74-.777-.74-1.185.333-.54.74-.296.74.777.74 1.187m2.192 1.318c0 .408-.332.54-.74.294s-.74-.776-.74-1.184.332-.542.74-.297.74.777.74 1.187" class="h"/><g fill="none" class="j l"><path d="M1.878 4.484L46.374 31.22l.03 41.572" stroke="#e1e2e3"/><g stroke="#626366" class="m"><path d="M28.187.9A2.53 2.53 0 0 1 29 .635m0 0c.237-.03.46-.013.66.046l5.946 3.52m.01.001L29.67.68c.107.032.2.076.303.132l5.946 3.52c-.094-.056-.196-.1-.303-.132"/><path d="M28.187.9c.684-.364 1.32-.375 1.786-.098l5.945 3.52c-.466-.277-1.1-.265-1.786.098m-8.305 15.2l-5.945-3.52c-.147-.087-.276-.202-.385-.343l5.945 3.52c.1.14.24.256.385.343"/><path d="M25.442 19.296l-5.945-3.52a1.67 1.67 0 0 1-.272-.53l5.946 3.522c.065.204.158.38.27.53m-6.216-4.053c-.057-.174-.094-.368-.107-.58m0 0c0-.01-.002-.02-.002-.027m0 0l-.35-6.1m2.246-3.93L28.187.9m-9.42 7.617a3.22 3.22 0 0 1 .015-.518M18.78 8a4.03 4.03 0 0 1 .063-.404m.001-.001a4.45 4.45 0 0 1 .159-.55m0 0a4.91 4.91 0 0 1 .726-1.333m.001-.002c.294-.383.64-.717 1.018-.966m-.001.001l.266-.158"/><path d="M18.766 8.527c-.082-1.467.922-3.227 2.246-3.93m13.12-.165c1.323-.704 2.468-.087 2.552 1.38l.35 6.1c.082 1.467-.924 3.227-2.25 3.93L27.6 19.54c-1.326.705-2.465.086-2.55-1.38"/></g></g><path d="M34.132 4.432L28.187.91c.286-.152.563-.243.823-.276l5.946 3.52a2.42 2.42 0 0 0-.824.276" class="f"/><path d="M34.957 4.156L29 .635a1.59 1.59 0 0 1 .659.045l5.946 3.52c-.2-.06-.42-.076-.658-.045" fill="#808184"/><path d="M35.616 4.202L29.67.68c.107.032.21.076.303.132l5.946 3.52c-.094-.056-.196-.1-.303-.132" fill="#90989e"/><path d="M25.827 19.638l-5.945-3.52a1.35 1.35 0 0 1-.385-.343l5.945 3.52c.1.142.24.257.385.343" fill="#8c9499"/><path d="M25.442 19.295l-5.945-3.52c-.116-.147-.207-.325-.272-.53l5.946 3.522a1.72 1.72 0 0 0 .271.528" fill="#8e969c"/><path d="M25.17 18.767l-5.945-3.52a2.37 2.37 0 0 1-.108-.581l5.946 3.52a2.37 2.37 0 0 0 .107.581" class="g"/><path d="M25.063 18.186l-5.945-3.52c0-.01-.002-.02-.002-.027l5.946 3.52c.001.01.001.02.001.028" fill="#939ba0"/><path d="M25.062 18.158l-5.946-3.52-.35-6.11 5.947 3.522z" class="g"/><path d="M26.958 8.117l-5.946-3.52L28.187.9l5.945 3.522z" fill="#636466"/><path d="M24.713 12.048l-5.947-3.52c-.01-.17-.003-.343.014-.518l5.947 3.52a3.11 3.11 0 0 0-.014.518" class="g"/><path d="M24.727 11.53L18.78 8.01a3.8 3.8 0 0 1 .063-.404l5.947 3.52a3.62 3.62 0 0 0-.064.405" fill="#b1b7bc"/><path d="M24.79 11.125l-5.947-3.52c.04-.184.093-.37.16-.55l5.946 3.52c-.065.182-.12.367-.158.55" class="f"/><path d="M24.95 10.575l-5.946-3.52a4.92 4.92 0 0 1 .725-1.333l5.948 3.52a4.93 4.93 0 0 0-.727 1.333" fill="#c8cdd0"/><path d="M25.676 9.242L19.73 5.72c.294-.383.64-.717 1.017-.966l5.947 3.52c-.38.25-.725.583-1.017.966" fill="#939597"/><path d="M26.693 8.276l-5.946-3.52c.086-.058.175-.11.265-.16l5.947 3.52-.266.16" fill="#6c6e70"/><path d="M34.132 4.432c1.323-.704 2.468-.088 2.552 1.38l.35 6.11c.082 1.468-.924 3.228-2.25 3.932L27.61 19.54c-1.326.705-2.465.086-2.55-1.38l-.35-6.1c-.084-1.468.92-3.227 2.245-3.93l7.174-3.685z" fill="#898b8e"/><g fill="none"><g class="j l"><path d="M26.305 19.885c-.623-.103-1.083-.587-1.212-1.366M35.597 4.27a1.35 1.35 0 0 1 .713.488" stroke="#babcbc" stroke-width=".31"/><path d="M25.093 18.52a3.13 3.13 0 0 1-.031-.286l-.35-6.1c-.084-1.468.92-3.227 2.245-3.93l7.174-3.685c.538-.286 1.046-.355 1.465-.237" stroke="#dfe0df" stroke-width=".31"/></g><g stroke="#636466"><path d="M21.77 17.473l-.937.48c-.156.078-.712.336-1.234.125-2.94-1.192-3.836-4.96-3.437-6.154.096-.29.26-.736.553-1.012.167-.158 1.154-.68 1.886-1.053" class="m"/><path d="M16.7 10.933c.17-.158 1.154-.678 1.887-1.053l.812-.405c.268-.108.728-.233 1.516.03.442.148 1.47.86 2.093 1.913.546.923 1.164 2 1.053 3.826-.05.822-.443 1.136-.496 1.198-.134.158-1.062.66-1.8 1.052l-.938.48c-.155.077-.712.336-1.233.125-2.94-1.193-3.835-4.962-3.438-6.155.097-.3.26-.735.554-1.012z" stroke-width=".827"/></g></g><path d="M18.873 17.32l2.4-1.28c.147.088.29.16.43.213l-2.4 1.28c-.14-.054-.283-.125-.43-.213" class="d"/><path d="M19.303 17.534l2.4-1.28c.18.068.35.11.514.124l-2.4 1.28a2 2 0 0 1-.514-.125" class="e"/><path d="M19.817 17.658l2.4-1.28c.27.025.514-.02.724-.133l-2.4 1.28c-.2.112-.455.158-.724.133m-2.614-6.424l2.4-1.28c-.337.18-.587.528-.7 1.02l-2.4 1.28c.115-.5.363-.84.7-1.02" class="f"/><path d="M16.502 12.253l2.4-1.28c-.042.18-.066.38-.07.6l-2.41 1.28c.004-.218.028-.418.07-.6" class="e"/><path d="M16.432 12.852l2.41-1.28-.001.06a4.05 4.05 0 0 0 .04.554l-2.4 1.28c-.026-.187-.04-.373-.04-.553v-.062" class="d"/><path d="M16.472 13.467l2.4-1.28a4.96 4.96 0 0 0 .138.65l-2.4 1.28a4.77 4.77 0 0 1-.138-.65" class="i"/><g class="h"><path d="M16.6 14.118l2.4-1.28a6.07 6.07 0 0 0 .201.592l-2.4 1.28a6.07 6.07 0 0 1-.201-.592"/><path d="M16.8 14.7l2.4-1.28c.24.597.58 1.172.98 1.654l-2.4 1.28c-.4-.482-.74-1.056-.98-1.654m1 1.664l2.4-1.28a4.66 4.66 0 0 0 .5.52l-2.4 1.28c-.175-.157-.342-.332-.5-.52"/></g><path d="M18.3 16.885l2.4-1.28c.167.15.342.284.52.397l-2.4 1.28c-.18-.113-.354-.247-.52-.397" class="i"/><path d="M18.81 17.282l2.4-1.28.063.04-2.41 1.28-.062-.04" class="d"/><g class="k"><path d="M17.203 11.234l2.4-1.28a1.27 1.27 0 0 1 .725-.133l-2.4 1.28c-.27-.025-.515.022-.725.133"/><path d="M17.928 11.1l2.4-1.28a1.91 1.91 0 0 1 .512.125l-2.4 1.28a1.91 1.91 0 0 0-.512-.125"/><path d="M18.44 11.226l2.4-1.28a2.71 2.71 0 0 1 .43.212l-2.4 1.28a2.8 2.8 0 0 0-.43-.212"/><use xlink:href="#B"/><path d="M21.31 15.907l2.4-1.28c-.003.218-.027.42-.07.6l-2.4 1.28a2.89 2.89 0 0 0 .069-.6"/><path d="M21.242 16.506l2.4-1.28c-.114.49-.362.84-.7 1.02l-2.4 1.28c.34-.18.587-.528.7-1.02"/></g><path d="M16.958 10.773l2.4-1.28c.24-.128.522-.18.83-.153l-2.4 1.28c-.31-.03-.6.024-.83.152" class="f"/><path d="M17.788 10.62l2.4-1.28a2.17 2.17 0 0 1 .588.143l-2.4 1.28a2.18 2.18 0 0 0-.588-.143" class="e"/><path d="M18.376 10.764l2.4-1.28c.16.06.325.142.493.243l-2.4 1.28a3.26 3.26 0 0 0-.493-.244" class="d"/><g class="k"><path d="M18.87 11.438c1.344.807 2.44 2.788 2.442 4.407s-1.094 2.283-2.438 1.476-2.44-2.788-2.442-4.407 1.095-2.283 2.438-1.476"/><path d="M18.87 11.438l2.4-1.28.064.04-2.412 1.28-.062-.04"/><path d="M18.932 11.477l2.41-1.28a3.8 3.8 0 0 1 .521.397l-2.41 1.28a3.84 3.84 0 0 0-.521-.397"/><path d="M19.453 11.875l2.4-1.28a4.85 4.85 0 0 1 .499.521l-2.4 1.28c-.157-.19-.324-.364-.5-.52"/></g><path d="M19.953 12.396l2.4-1.28c.402.482.74 1.056.98 1.654l-2.41 1.28a6.26 6.26 0 0 0-.98-1.654" fill="#7a7c7f"/><g class="k"><path d="M20.933 14.05l2.4-1.28c.078.196.146.394.2.592l-2.4 1.28c-.055-.198-.123-.396-.2-.592"/><path d="M21.134 14.642l2.4-1.28a4.77 4.77 0 0 1 .138.65l-2.4 1.28c-.03-.214-.077-.432-.138-.65"/><use xlink:href="#B"/></g><path d="M18.87 11.007l2.4-1.28.072.044-2.4 1.28-.072-.044" class="d"/><path d="M18.942 11.052l2.4-1.28c.205.13.405.283.598.456l-2.4 1.28c-.193-.173-.393-.326-.598-.456" class="i"/><g class="h"><path d="M19.54 11.508l2.4-1.28a5.7 5.7 0 0 1 .572.597l-2.41 1.28a6.03 6.03 0 0 0-.573-.597"/><path d="M20.112 12.105l2.4-1.28c.46.553.85 1.21 1.123 1.896l-2.4 1.28c-.274-.685-.663-1.343-1.123-1.896"/><path d="M21.235 14l2.4-1.28a6.63 6.63 0 0 1 .232.679l-2.412 1.28a6.54 6.54 0 0 0-.23-.679"/></g><path d="M21.465 14.68l2.41-1.28a5.75 5.75 0 0 1 .157.745l-2.4 1.28c-.035-.246-.088-.495-.158-.745" class="i"/><path d="M21.623 15.425l2.4-1.28a4.45 4.45 0 0 1 .047.634v.07l-2.41 1.28v-.07c-.001-.207-.016-.42-.047-.635" class="d"/><path d="M21.668 16.13l2.41-1.28c-.005.25-.032.48-.08.687l-2.41 1.28c.05-.207.076-.437.08-.687" class="e"/><path d="M21.588 16.82L24 15.54c-.132.562-.416.962-.804 1.167l-2.4 1.28c.388-.205.672-.605.803-1.167" class="f"/><path d="M18.873 17.32c1.345.808 2.44.144 2.44-1.476s-1.098-3.6-2.442-4.407-2.44-.143-2.437 1.476 1.098 3.6 2.44 4.407m-.004-6.313c1.54.925 2.8 3.195 2.8 5.052s-1.254 2.617-2.796 1.692-2.798-3.196-2.8-5.053 1.254-2.617 2.795-1.69" fill="#999b9d"/><path d="M20.3 13.827c.546 1.17.416 2.386-.29 2.716s-1.723-.35-2.27-1.52-.416-2.386.3-2.716 1.724.35 2.27 1.52" fill="#e1e2e3"/><defs ><path id="B" d="M21.272 15.292l2.4-1.28c.027.188.04.373.04.553l-.001.062-2.4 1.28.001-.06c0-.18-.015-.366-.04-.554"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/media_converters/Industrial_Media_Converter.svg b/src/main/webapp/img/lib/allied_telesis/media_converters/Industrial_Media_Converter.svg index 7af54144d4a226c04613fe5a2e3547065696f59c..44a9e9e4a4717f7f6b072b06aef3fad0bd7c86b1 100644 --- a/src/main/webapp/img/lib/allied_telesis/media_converters/Industrial_Media_Converter.svg +++ b/src/main/webapp/img/lib/allied_telesis/media_converters/Industrial_Media_Converter.svg @@ -1,145 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 49.359 94.707" style="enable-background:new 0 0 49.359 94.707;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#626366;stroke-width:2.835;stroke-linejoin:round;} - .st1{fill:#898B8E;} - .st2{fill:#BBBDBF;} - .st3{fill:#B3B5B7;} - .st4{fill:#FEFEFE;} - .st5{fill:none;stroke:#626366;stroke-width:2.126;stroke-linejoin:round;} - .st6{fill:none;stroke:#626366;stroke-width:2.126;stroke-linecap:round;stroke-linejoin:round;} - .st7{fill:#B8BDC1;} - .st8{fill:#939BA0;} - .st9{fill:#E1E2E3;} - .st10{fill:none;stroke:#E1E2E3;stroke-width:0.511;stroke-linecap:round;stroke-linejoin:round;} - .st11{fill:none;stroke:#E1E2E3;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;} -</style> -<title>icon-IC100-1000</title> -<desc>Created with Sketch.</desc> -<g id="Page-1"> - <g id="Desktop" transform="translate(-1612.000000, -865.000000)"> - <g id="icon-IC100-1000" transform="translate(1613.000000, 865.000000)"> - <g id="Group-7" transform="translate(0.000000, 0.706700)"> - <polygon id="Stroke-1" class="st0" points="10.448,26.085 46.895,6.737 46.942,73.236 10.495,92.583 "/> - <polygon id="Stroke-3" class="st0" points="0.418,20.058 36.864,0.711 46.896,6.738 10.448,26.085 "/> - <polygon id="Stroke-5" class="st0" points="10.448,26.085 10.495,92.583 0.465,86.557 0.418,20.058 "/> - </g> - <polygon id="Fill-8" class="st1" points="10.448,26.792 46.895,7.444 46.942,73.943 10.495,93.29 "/> - <polygon id="Fill-9" class="st2" points="0.418,20.764 36.864,1.418 46.896,7.444 10.448,26.792 "/> - <polygon id="Fill-10" class="st3" points="10.448,26.792 10.495,93.29 0.465,87.264 0.418,20.765 "/> - <polygon id="Fill-11" class="st4" points="7.509,80.593 3.403,78.101 3.403,72.259 7.509,74.751 "/> - <polygon id="Fill-12" class="st4" points="7.51,40.934 3.403,38.443 3.403,32.6 7.51,35.092 "/> - <polygon id="Fill-13" class="st4" points="7.51,48.35 3.403,45.859 3.403,40.014 7.51,42.508 "/> - <polygon id="Fill-14" class="st4" points="7.51,62.741 3.403,60.248 3.403,54.406 7.51,56.898 "/> - <g id="Group-21" transform="translate(25.000000, 3.706700)"> - <g id="Group-17"> - <g id="Clip-16"> - </g> - <path id="Stroke-15" class="st5" d="M7.045,4.389L0.621,0.583c0,0,0.005-0.002,0.008-0.004l6.425,3.805 - C7.051,4.386,7.049,4.388,7.045,4.389"/> - </g> - <g id="Group-20"> - <g id="Clip-19"> - </g> - <path id="Stroke-18" class="st5" d="M7.054,4.384L0.629,0.579c0.127-0.064,0.244-0.065,0.33-0.013L7.384,4.37 - C7.297,4.319,7.18,4.32,7.054,4.384"/> - </g> - </g> - <path id="Stroke-22" class="st5" d="M25.959,4.272l6.425,3.805c-0.089-0.053-0.208-0.051-0.339,0.018L25.622,4.29 - C25.75,4.221,25.871,4.219,25.959,4.272z"/> - <g id="Group-26" transform="translate(18.000000, 13.706700)"> - <g id="Clip-25"> - </g> - <path id="Stroke-24" class="st5" d="M6.094,3.581L0.532,0.287C0.46,0.244,0.412,0.159,0.406,0.042l5.562,3.295 - C5.975,3.454,6.023,3.538,6.094,3.581"/> - </g> - <path id="Stroke-27" class="st5" d="M24.094,17.288l-5.562-3.294c-0.072-0.043-0.12-0.128-0.126-0.245l5.562,3.295 - C23.975,17.161,24.023,17.245,24.094,17.288z"/> - <polygon id="Stroke-29" class="st5" points="24.018,17.086 17.592,13.281 17.359,9.181 23.784,12.985 "/> - <polygon id="Stroke-30" class="st5" points="24.207,12.241 17.781,8.436 25.589,4.284 32.014,8.09 "/> - <g id="Group-37" transform="translate(17.000000, 7.706700)"> - <g id="Group-33"> - <g id="Clip-32"> - </g> - <path id="Stroke-31" class="st5" d="M6.784,5.278L0.359,1.473C0.358,1.46,0.358,1.446,0.358,1.432l6.425,3.805 - C6.782,5.251,6.783,5.264,6.784,5.278"/> - </g> - <g id="Group-36"> - <g id="Clip-35"> - </g> - <path id="Stroke-34" class="st5" d="M6.783,5.237L0.358,1.432c0.004-0.269,0.188-0.578,0.424-0.703l6.425,3.805 - C6.97,4.659,6.786,4.967,6.783,5.237"/> - </g> - </g> - <g id="Group-44" transform="translate(17.000000, 7.706700)"> - <path id="Stroke-38" class="st5" d="M6.784,5.278L0.359,1.473C0.344,1.194,0.534,0.861,0.782,0.729l6.425,3.805 - C6.958,4.666,6.768,4.999,6.784,5.278z"/> - <path id="Stroke-40" class="st5" d="M15.014,0.383c0.251-0.134,0.467-0.017,0.483,0.262l0.234,4.101 - c0.015,0.279-0.174,0.613-0.426,0.746L7.498,9.644C7.25,9.775,7.034,9.657,7.018,9.379l-0.234-4.1 - c-0.016-0.28,0.173-0.613,0.422-0.745L15.014,0.383z"/> - <path id="Stroke-42" class="st6" d="M6.971,4.69L7.218,9.4"/> - </g> - <g id="Group-47" transform="translate(17.000000, 12.706700)"> - <g id="Clip-46"> - </g> - <path id="Stroke-45" class="st5" d="M6.31,4.13L0.748,0.836c-0.072-0.043-0.12-0.128-0.126-0.245l5.562,3.295 - C6.19,4.003,6.239,4.087,6.31,4.13"/> - </g> - <path id="Stroke-48" class="st5" d="M23.31,16.837l-5.562-3.294c-0.072-0.043-0.12-0.128-0.126-0.245l5.562,3.295 - C23.19,16.71,23.239,16.794,23.31,16.837z"/> - <g id="Group-56" transform="translate(25.000000, 3.706700)"> - <g id="Group-52"> - <g id="Clip-51"> - </g> - <path id="Fill-50" class="st7" d="M7.045,4.389L0.621,0.583c0,0,0.005-0.002,0.008-0.004l6.425,3.805 - C7.051,4.386,7.049,4.388,7.045,4.389"/> - </g> - <g id="Group-55"> - <g id="Clip-54"> - </g> - <path id="Fill-53" class="st8" d="M7.054,4.384L0.629,0.579c0.127-0.064,0.244-0.065,0.33-0.013L7.384,4.37 - C7.297,4.319,7.18,4.32,7.054,4.384"/> - </g> - </g> - <g id="Group-59" transform="translate(18.000000, 13.706700)"> - <g id="Clip-58"> - </g> - <path id="Fill-57" class="st8" d="M6.094,3.581L0.532,0.287C0.46,0.244,0.412,0.159,0.406,0.042l5.562,3.295 - C5.975,3.454,6.023,3.538,6.094,3.581"/> - </g> - <g id="Group-64" transform="translate(17.000000, 3.706700)"> - <polygon id="Fill-60" class="st3" points="7.018,13.379 0.592,9.574 0.359,5.474 6.784,9.278 "/> - <polygon id="Fill-62" class="st2" points="7.207,8.534 0.782,4.729 8.589,0.577 15.015,4.383 "/> - </g> - <g id="Group-71" transform="translate(17.000000, 7.706700)"> - <g id="Group-67"> - <g id="Clip-66"> - </g> - <path id="Fill-65" class="st8" d="M6.784,5.278L0.359,1.473C0.358,1.46,0.358,1.446,0.358,1.432l6.425,3.805 - C6.782,5.251,6.783,5.264,6.784,5.278"/> - </g> - <g id="Group-70"> - <g id="Clip-69"> - </g> - <path id="Fill-68" class="st9" d="M6.783,5.237L0.358,1.432c0.004-0.269,0.188-0.578,0.424-0.703l6.425,3.805 - C6.97,4.659,6.786,4.967,6.783,5.237"/> - </g> - </g> - <g id="Group-76" transform="translate(23.000000, 7.706700)"> - <path id="Fill-72" class="st1" d="M9.014,0.383c0.251-0.134,0.467-0.017,0.483,0.262l0.234,4.101 - c0.015,0.279-0.174,0.613-0.426,0.746L1.498,9.644C1.25,9.775,1.034,9.657,1.018,9.379l-0.234-4.1 - c-0.016-0.28,0.173-0.613,0.422-0.745L9.014,0.383z"/> - <path id="Stroke-74" class="st10" d="M0.971,4.69L1.218,9.4"/> - </g> - <g id="Group-79" transform="translate(17.000000, 12.706700)"> - <g id="Clip-78"> - </g> - <path id="Fill-77" class="st8" d="M6.31,4.13L0.748,0.836c-0.072-0.043-0.12-0.128-0.126-0.245l5.562,3.295 - C6.19,4.003,6.239,4.087,6.31,4.13"/> - </g> - <polyline id="Stroke-80" class="st11" points="0.418,20.764 10.448,26.792 10.495,93.29 "/> - </g> - </g> -</g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 49.359 94.707"><style><![CDATA[.M{stroke-linejoin:round}.N{stroke-linecap:round}.O{fill:#939ba0}]]></style><g fill="none" stroke="#626366" stroke-width="2.835" class="M"><path d="M11.448 26.792L47.895 7.444l.047 66.5L11.495 93.3z"/><path d="M1.418 20.765L37.864 1.418l10.032 6.027-36.448 19.347z"/><path d="M11.448 26.792l.047 66.498-10.03-6.026-.047-66.5z"/></g><path d="M11.448 26.792L47.895 7.444l.047 66.5L11.495 93.3z" fill="#898b8e"/><path d="M1.418 20.764L37.864 1.418l10.032 6.026-36.448 19.348z" fill="#bbbdbf"/><path d="M11.448 26.792l.047 66.498-10.03-6.026-.047-66.5z" fill="#b3b5b7"/><path d="M8.5 80.593L4.403 78.1v-5.84l4.107 2.5zm-.01-39.66l-4.107-2.5V32.6L8.5 35.092zm0 7.416l-4.107-2.5v-5.845L8.5 42.508zm0 14.4l-4.107-2.493v-5.842L8.5 56.898z" fill="#fefefe"/><g fill="none" stroke="#626366" stroke-width="2.126" class="M"><path d="M33.045 8.096L26.62 4.3l6.433 3.8m.001-.01L26.63 4.286c.127-.064.244-.065.33-.013l6.425 3.804c-.087-.05-.204-.05-.33.014"/><path d="M26.96 4.272l6.425 3.805c-.1-.053-.208-.05-.34.018L26.622 4.3c.128-.07.25-.07.337-.018zm-1.866 13.016l-5.562-3.294c-.072-.043-.12-.128-.126-.245l5.562 3.295c.007.117.055.2.126.244"/><path d="M25.094 17.288l-5.562-3.294c-.072-.043-.12-.128-.126-.245l5.562 3.295c.007.117.055.2.126.244z"/><path d="M25.018 17.086l-6.426-3.805-.233-4.1 6.425 3.804zm.19-4.846L18.78 8.436l7.808-4.152L33.014 8.1z"/><path d="M24.784 12.985L18.36 9.18c-.001-.013-.001-.027-.001-.04l6.425 3.805c-.001.014 0 .027.001.04"/><path d="M24.783 12.944L18.358 9.14c.004-.27.188-.578.424-.703l6.425 3.805a.87.87 0 0 0-.424.703"/><path d="M24.784 12.985L18.36 9.18a.87.87 0 0 1 .423-.744l6.425 3.805c-.25.132-.44.465-.423.744z"/><use xlink:href="#B"/><path d="M24.97 12.397l.247 4.7" class="N"/><use xlink:href="#C"/><path d="M24.3 16.837l-5.562-3.294c-.072-.043-.12-.128-.126-.245l5.562 3.295c.006.117.055.2.126.244z"/></g><path d="M33.045 8.096L26.62 4.3l6.433 3.8" fill="#b8bdc1"/><path d="M33.054 8.1L26.63 4.286c.127-.064.244-.065.33-.013l6.425 3.804c-.087-.05-.204-.05-.33.014m-7.96 9.197l-5.562-3.294c-.072-.043-.12-.128-.126-.245l5.562 3.295c.007.117.055.2.126.244" class="O"/><path d="M25.018 17.086l-6.426-3.805-.233-4.1 6.425 3.804z" fill="#b3b5b7"/><path d="M25.207 12.24l-6.425-3.805 7.807-4.152L33.015 8.1z" fill="#bbbdbf"/><path d="M24.784 12.985L18.36 9.18c-.001-.013-.001-.027-.001-.04l6.425 3.805c-.001.014 0 .027.001.04" class="O"/><path d="M24.783 12.944L18.358 9.14c.004-.27.188-.578.424-.703l6.425 3.805a.87.87 0 0 0-.424.703" fill="#e1e2e3"/><use xlink:href="#B" fill="#898b8e"/><path d="M24.97 12.397l.247 4.7" fill="none" stroke="#e1e2e3" stroke-width=".511" class="M N"/><use xlink:href="#C" class="O"/><path d="M1.418 20.764l10.03 6.028.047 66.498" fill="none" stroke="#e1e2e3" stroke-width=".85" class="M N"/><defs ><path id="B" d="M33.014 8.1c.25-.134.467-.017.483.262l.234 4.1c.015.28-.174.613-.426.746l-7.807 4.152c-.248.13-.464.013-.48-.265l-.234-4.1c-.016-.28.173-.613.422-.745l7.808-4.15z"/><path id="C" d="M24.3 16.837l-5.562-3.294c-.072-.043-.12-.128-.126-.245l5.562 3.295c.006.117.055.2.126.244"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/media_converters/Industrial_Media_Converter_POE.svg b/src/main/webapp/img/lib/allied_telesis/media_converters/Industrial_Media_Converter_POE.svg index 214021de39f684afbb42964e25a30f63556ad122..a4a5e23c612c12a4db8d59c234d8a5ad50fb367e 100644 --- a/src/main/webapp/img/lib/allied_telesis/media_converters/Industrial_Media_Converter_POE.svg +++ b/src/main/webapp/img/lib/allied_telesis/media_converters/Industrial_Media_Converter_POE.svg @@ -1,158 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 49.359 94.707" style="enable-background:new 0 0 49.359 94.707;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#626366;stroke-width:2.835;stroke-linejoin:round;} - .st1{fill:#231F20;} - .st2{fill:#BBBDBF;} - .st3{fill:#B3B5B7;} - .st4{fill:#FEFEFE;} - .st5{fill:none;stroke:#626366;stroke-width:2.126;stroke-linejoin:round;} - .st6{fill:none;stroke:#626366;stroke-width:2.126;stroke-linecap:round;stroke-linejoin:round;} - .st7{fill:#B8BDC1;} - .st8{fill:#939BA0;} - .st9{fill:#E1E2E3;} - .st10{fill:#898B8E;} - .st11{fill:none;stroke:#E1E2E3;stroke-width:0.511;stroke-linecap:round;stroke-linejoin:round;} - .st12{fill:none;stroke:#E1E2E3;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;} -</style> -<title>icon-IC100-1000-poe</title> -<desc>Created with Sketch.</desc> -<g id="Page-1"> - <g id="Desktop" transform="translate(-1684.000000, -862.000000)"> - <g id="icon-IC100-1000-poe" transform="translate(1685.000000, 862.000000)"> - <g id="Group-7" transform="translate(0.000000, 0.706700)"> - <polygon id="Stroke-1" class="st0" points="10.448,26.085 46.895,6.737 46.942,73.236 10.495,92.583 "/> - <polygon id="Stroke-3" class="st0" points="0.418,20.058 36.863,0.711 46.896,6.738 10.448,26.085 "/> - <polygon id="Stroke-5" class="st0" points="10.448,26.085 10.495,92.583 0.465,86.557 0.418,20.058 "/> - </g> - <polygon id="Fill-8" class="st1" points="10.448,26.792 46.895,7.444 46.942,73.943 10.495,93.29 "/> - <polygon id="Fill-9" class="st2" points="0.418,20.764 36.863,1.418 46.896,7.444 10.448,26.792 "/> - <polygon id="Fill-10" class="st3" points="10.448,26.792 10.495,93.29 0.465,87.264 0.418,20.765 "/> - <polygon id="Fill-11" class="st4" points="7.508,80.593 3.403,78.101 3.403,72.259 7.508,74.751 "/> - <polygon id="Fill-12" class="st4" points="7.51,40.934 3.403,38.443 3.403,32.6 7.51,35.092 "/> - <polygon id="Fill-13" class="st4" points="7.51,48.35 3.403,45.859 3.403,40.014 7.51,42.508 "/> - <polygon id="Fill-14" class="st4" points="7.51,62.741 3.403,60.248 3.403,54.406 7.51,56.898 "/> - <g id="Group-21" transform="translate(25.000000, 3.706700)"> - <g id="Group-17"> - <g id="Clip-16"> - </g> - <path id="Stroke-15" class="st5" d="M7.044,4.389L0.62,0.583c0,0,0.005-0.002,0.008-0.004l6.425,3.805 - C7.05,4.386,7.048,4.388,7.048,4.388"/> - </g> - <g id="Group-20"> - <g id="Clip-19"> - </g> - <path id="Stroke-18" class="st5" d="M7.053,4.384L0.628,0.579c0.127-0.064,0.244-0.065,0.33-0.013L7.383,4.37 - C7.296,4.319,7.179,4.32,7.053,4.384"/> - </g> - </g> - <path id="Stroke-22" class="st5" d="M25.958,4.272l6.425,3.805c-0.089-0.053-0.208-0.051-0.339,0.018L25.622,4.29 - C25.75,4.221,25.871,4.219,25.958,4.272z"/> - <g id="Group-26" transform="translate(18.000000, 13.706700)"> - <g id="Clip-25"> - </g> - <path id="Stroke-24" class="st5" d="M6.093,3.581L0.531,0.287C0.46,0.244,0.412,0.159,0.405,0.042l5.562,3.295 - C5.974,3.454,6.022,3.538,6.093,3.581"/> - </g> - <path id="Stroke-27" class="st5" d="M24.094,17.288l-5.562-3.294c-0.072-0.043-0.12-0.128-0.126-0.245l5.562,3.295 - C23.975,17.161,24.023,17.245,24.094,17.288z"/> - <polygon id="Stroke-29" class="st5" points="24.017,17.086 17.591,13.281 17.358,9.181 23.784,12.985 "/> - <polygon id="Stroke-30" class="st5" points="24.207,12.241 17.781,8.436 25.589,4.284 32.014,8.09 "/> - <g id="Group-37" transform="translate(17.000000, 7.706700)"> - <g id="Group-33"> - <g id="Clip-32"> - </g> - <path id="Stroke-31" class="st5" d="M6.783,5.278L0.359,1.473C0.358,1.46,0.358,1.446,0.358,1.432l6.425,3.805 - C6.781,5.251,6.782,5.264,6.783,5.278"/> - </g> - <g id="Group-36"> - <g id="Clip-35"> - </g> - <path id="Stroke-34" class="st5" d="M6.782,5.237L0.358,1.432c0.004-0.269,0.188-0.578,0.424-0.703l6.425,3.805 - C6.969,4.659,6.785,4.967,6.782,5.237"/> - </g> - </g> - <g id="Group-44" transform="translate(17.000000, 7.706700)"> - <path id="Stroke-38" class="st5" d="M6.783,5.278L0.359,1.473C0.344,1.194,0.533,0.861,0.781,0.729l6.425,3.805 - C6.957,4.666,6.767,4.999,6.783,5.278z"/> - <path id="Stroke-40" class="st5" d="M15.014,0.383c0.251-0.134,0.467-0.017,0.483,0.262l0.234,4.101 - c0.015,0.279-0.174,0.613-0.426,0.746L7.497,9.644c-0.248,0.131-0.464,0.013-0.48-0.265l-0.234-4.1 - c-0.016-0.28,0.173-0.613,0.422-0.745L15.014,0.383z"/> - <path id="Stroke-42" class="st6" d="M6.97,4.69L7.217,9.4"/> - </g> - <g id="Group-47" transform="translate(17.000000, 12.706700)"> - <g id="Clip-46"> - </g> - <path id="Stroke-45" class="st5" d="M6.309,4.13L0.748,0.836c-0.072-0.043-0.12-0.128-0.126-0.245l5.562,3.295 - C6.189,4.003,6.238,4.087,6.309,4.13"/> - </g> - <path id="Stroke-48" class="st5" d="M23.309,16.837l-5.562-3.294c-0.072-0.043-0.12-0.128-0.126-0.245l5.562,3.295 - C23.19,16.71,23.239,16.794,23.309,16.837z"/> - <g id="Group-56" transform="translate(25.000000, 3.706700)"> - <g id="Group-52"> - <g id="Clip-51"> - </g> - <path id="Fill-50" class="st7" d="M7.044,4.389L0.62,0.583c0,0,0.005-0.002,0.008-0.004l6.425,3.805 - C7.05,4.386,7.048,4.388,7.048,4.388"/> - </g> - <g id="Group-55"> - <g id="Clip-54"> - </g> - <path id="Fill-53" class="st8" d="M7.053,4.384L0.628,0.579c0.127-0.064,0.244-0.065,0.33-0.013L7.383,4.37 - C7.296,4.319,7.179,4.32,7.053,4.384"/> - </g> - </g> - <g id="Group-59" transform="translate(18.000000, 13.706700)"> - <g id="Clip-58"> - </g> - <path id="Fill-57" class="st8" d="M6.093,3.581L0.531,0.287C0.46,0.244,0.412,0.159,0.405,0.042l5.562,3.295 - C5.974,3.454,6.022,3.538,6.093,3.581"/> - </g> - <g id="Group-64" transform="translate(17.000000, 3.706700)"> - <polygon id="Fill-60" class="st3" points="7.017,13.379 0.592,9.574 0.359,5.474 6.783,9.278 "/> - <polygon id="Fill-62" class="st2" points="7.206,8.534 0.781,4.729 8.589,0.577 15.015,4.383 "/> - </g> - <g id="Group-71" transform="translate(17.000000, 7.706700)"> - <g id="Group-67"> - <g id="Clip-66"> - </g> - <path id="Fill-65" class="st8" d="M6.783,5.278L0.359,1.473C0.358,1.46,0.358,1.446,0.358,1.432l6.425,3.805 - C6.781,5.251,6.782,5.264,6.783,5.278"/> - </g> - <g id="Group-70"> - <g id="Clip-69"> - </g> - <path id="Fill-68" class="st9" d="M6.782,5.237L0.358,1.432c0.004-0.269,0.188-0.578,0.424-0.703l6.425,3.805 - C6.969,4.659,6.785,4.967,6.782,5.237"/> - </g> - </g> - <g id="Group-76" transform="translate(23.000000, 7.706700)"> - <path id="Fill-72" class="st10" d="M9.014,0.383c0.251-0.134,0.467-0.017,0.483,0.262l0.234,4.101 - c0.015,0.279-0.174,0.613-0.426,0.746L1.498,9.644C1.25,9.775,1.034,9.657,1.018,9.379l-0.234-4.1 - c-0.016-0.28,0.173-0.613,0.422-0.745L9.014,0.383z"/> - <path id="Stroke-74" class="st11" d="M0.97,4.69L1.218,9.4"/> - </g> - <g id="Group-79" transform="translate(17.000000, 12.706700)"> - <g id="Clip-78"> - </g> - <path id="Fill-77" class="st8" d="M6.309,4.13L0.748,0.836c-0.072-0.043-0.12-0.128-0.126-0.245l5.562,3.295 - C6.189,4.003,6.238,4.087,6.309,4.13"/> - </g> - <g id="Group-90" transform="translate(0.000000, 20.706700)"> - <polyline id="Stroke-80" class="st12" points="0.418,0.058 10.448,6.085 10.495,72.583 "/> - <polygon id="Fill-82" class="st4" points="35.31,3.825 27.962,17.635 36.444,16.713 30.715,25.713 36.597,25.072 26.45,41.021 - 30.931,28.281 23.545,29.083 28.344,21.54 19.917,22.457 34.743,4.561 "/> - <path id="Fill-84" class="st4" d="M23.188,56.1l1.28-0.69c0.841-0.456,1.384-1.215,1.384-2.031c0-0.599-0.311-1.079-1.339-0.524 - l-1.325,0.715V56.1z M24.514,51.798c1.72-0.927,2.504-0.295,2.504,1c0,1.283-0.83,2.74-2.653,3.723l-1.176,0.635v3.538 - l-1.131,0.61v-8.18L24.514,51.798z"/> - <path id="Fill-86" class="st4" d="M28.311,55.184c0,1.139,0.68,1.528,1.672,0.992c1.084-0.585,1.765-1.672,1.765-2.835 - c0-1.044-0.739-1.4-1.765-0.846C29.014,53.017,28.311,54.152,28.311,55.184 M32.798,52.763c0,1.703-1.142,3.471-2.803,4.367 - c-1.592,0.86-2.735,0.276-2.735-1.379c0-1.548,1.189-3.388,2.735-4.222C31.622,50.651,32.798,51.167,32.798,52.763"/> - <polygon id="Fill-88" class="st4" points="38.542,45.284 35.208,47.083 35.208,49.554 38.428,47.817 38.428,48.874 - 35.208,50.61 35.208,53.151 38.646,51.297 38.646,52.352 34.078,54.817 34.078,46.638 38.542,44.229 "/> - </g> - </g> - </g> -</g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 49.359 94.707"><style><![CDATA[.N{stroke-linejoin:round}.O{stroke-linecap:round}.P{fill:#939ba0}]]></style><g fill="none" stroke="#626366" stroke-width="2.835" class="N"><path d="M11.448 26.792L47.895 7.444l.047 66.5L11.495 93.3z"/><path d="M1.418 20.765L37.863 1.418l10.033 6.027-36.448 19.347z"/><path d="M11.448 26.792l.047 66.498-10.03-6.026-.047-66.5z"/></g><path d="M11.448 26.792L47.895 7.444l.047 66.5L11.495 93.3z" fill="#231f20"/><path d="M1.418 20.764L37.863 1.418l10.033 6.026-36.448 19.348z" fill="#bbbdbf"/><path d="M11.448 26.792l.047 66.498-10.03-6.026-.047-66.5z" fill="#b3b5b7"/><path d="M8.508 80.593L4.403 78.1v-5.84l4.105 2.492zM8.5 40.934l-4.107-2.5V32.6L8.5 35.092zm0 7.416l-4.107-2.5v-5.845L8.5 42.508zm0 14.4l-4.107-2.493v-5.842L8.5 56.898z" fill="#fefefe"/><g fill="none" stroke="#626366" stroke-width="2.126" class="N"><path d="M33.044 8.096L26.62 4.3l6.433 3.8m0-.01l-6.425-3.805c.127-.064.244-.065.33-.013l6.425 3.804c-.087-.05-.204-.05-.33.014"/><path d="M26.958 4.272l6.425 3.805c-.1-.053-.208-.05-.34.018L26.622 4.3c.128-.07.25-.07.336-.018zm-1.865 13.016l-5.562-3.294c-.07-.043-.12-.128-.126-.245l5.562 3.295c.007.117.055.2.126.244"/><path d="M25.094 17.288l-5.562-3.294c-.072-.043-.12-.128-.126-.245l5.562 3.295c.007.117.055.2.126.244z"/><path d="M25.017 17.086L18.6 13.28l-.233-4.1 6.426 3.804zm.2-4.846L18.78 8.436l7.808-4.152L33.014 8.1z"/><path d="M24.783 12.985L18.36 9.18c-.001-.013-.001-.027-.001-.04l6.425 3.805c-.002.014-.001.027 0 .04"/><path d="M24.782 12.944L18.358 9.14c.004-.27.188-.578.424-.703l6.425 3.805a.87.87 0 0 0-.425.703"/><path d="M24.783 12.985L18.36 9.18a.87.87 0 0 1 .422-.744l6.425 3.805c-.25.132-.44.465-.423.744z"/><path d="M33.014 8.1c.25-.134.467-.017.483.262l.234 4.1c.015.28-.174.613-.426.746l-7.808 4.152c-.248.13-.464.013-.48-.265l-.234-4.1c-.016-.28.173-.613.422-.745l7.81-4.15z"/><path d="M24.97 12.397l.247 4.7" class="O"/><path d="M24.31 16.837l-5.56-3.294c-.072-.043-.12-.128-.126-.245l5.562 3.295c.005.117.054.2.125.244"/><path d="M24.31 16.837l-5.562-3.294c-.072-.043-.12-.128-.126-.245l5.562 3.295c.007.117.056.2.126.244z"/></g><path d="M33.044 8.096L26.62 4.3l6.433 3.8" fill="#b8bdc1"/><path d="M33.053 8.1l-6.425-3.805c.127-.064.244-.065.33-.013l6.425 3.804c-.087-.05-.204-.05-.33.014m-7.96 9.198l-5.562-3.294c-.07-.043-.12-.128-.126-.245l5.562 3.295c.007.117.055.2.126.244" class="P"/><path d="M25.017 17.086l-6.425-3.805-.233-4.1 6.424 3.804z" fill="#b3b5b7"/><path d="M25.206 12.24L18.78 8.436l7.808-4.152L33.015 8.1z" fill="#bbbdbf"/><path d="M24.783 12.985L18.36 9.18c-.001-.013-.001-.027-.001-.04l6.425 3.805c-.002.014-.001.027 0 .04" class="P"/><path d="M24.782 12.944L18.358 9.14c.004-.27.188-.578.424-.703l6.425 3.805a.87.87 0 0 0-.425.703" fill="#e1e2e3"/><path d="M33.014 8.1c.25-.134.467-.017.483.262l.234 4.1c.015.28-.174.613-.426.746l-7.807 4.152c-.248.13-.464.013-.48-.265l-.234-4.1c-.016-.28.173-.613.422-.745l7.808-4.15z" fill="#898b8e"/><path d="M24.97 12.397l.248 4.7" fill="none" stroke="#e1e2e3" stroke-width=".511" class="N O"/><path d="M24.31 16.837l-5.56-3.294c-.072-.043-.12-.128-.126-.245l5.562 3.295c.005.117.054.2.125.244" class="P"/><path d="M1.418 20.765l10.03 6.027.047 66.498" fill="none" stroke="#e1e2e3" stroke-width=".85" class="N O"/><path d="M36.3 24.532l-7.348 13.8 8.482-.922-5.73 9 5.882-.64L27.44 61.72l4.48-12.74-7.386.802 4.8-7.543-8.427.917L35.732 25.26zM24.188 76.807l1.28-.7c.84-.456 1.384-1.215 1.384-2.03 0-.6-.3-1.08-1.34-.524l-1.325.715v2.53zm1.326-4.302c1.72-.927 2.504-.295 2.504 1 0 1.283-.83 2.74-2.653 3.723l-1.176.635V81.4l-1.13.6v-8.18l2.456-1.326zM29.3 75.9c0 1.14.68 1.528 1.672.992 1.084-.585 1.765-1.672 1.765-2.835 0-1.044-.74-1.4-1.765-.846-.97.522-1.672 1.657-1.672 2.7m4.487-2.42c0 1.703-1.142 3.47-2.803 4.367-1.592.86-2.735.276-2.735-1.38 0-1.548 1.2-3.388 2.735-4.222 1.627-.878 2.803-.362 2.803 1.234M39.542 66l-3.334 1.8v2.47l3.22-1.737v1.057l-3.22 1.736v2.54l3.438-1.854v1.055l-4.568 2.465v-8.18l4.464-2.4z" fill="#fefefe"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/media_converters/Media_Converter_Modular.svg b/src/main/webapp/img/lib/allied_telesis/media_converters/Media_Converter_Modular.svg index e7173a5370974c9465346bf7b490cbafd2522dcf..6bad349673f55129d8636f572558c09bc8bf7846 100644 --- a/src/main/webapp/img/lib/allied_telesis/media_converters/Media_Converter_Modular.svg +++ b/src/main/webapp/img/lib/allied_telesis/media_converters/Media_Converter_Modular.svg @@ -1,37 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 117.96 90.752" style="enable-background:new 0 0 117.96 90.752;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#626366;stroke-width:2.717;stroke-linecap:round;stroke-linejoin:round;} - .st1{fill:#898B8E;} - .st2{fill:#BBBDBF;} - .st3{fill:#B3B5B7;} - .st4{fill:none;stroke:#DFE0DF;stroke-width:0.679;stroke-linecap:round;stroke-linejoin:round;} - .st5{fill:#FEFEFE;} -</style> -<title>icon-media-converter-MCR12</title> -<desc>Created with Sketch.</desc> -<g id="Page-1"> - <g id="Desktop" transform="translate(-1204.000000, -676.000000)"> - <g id="icon-media-converter-MCR12" transform="translate(1205.000000, 676.000000)"> - <g id="Group-7" transform="translate(0.000000, 0.752600)"> - <polygon id="Stroke-1" class="st0" points="0.359,24.092 44.597,0.606 115.592,43.272 71.354,66.753 "/> - <polygon id="Stroke-3" class="st0" points="71.355,66.753 71.364,88.641 0.366,45.98 0.359,24.092 "/> - <polygon id="Stroke-5" class="st0" points="71.355,66.753 115.593,43.272 115.602,65.158 71.364,88.641 "/> - </g> - <polygon id="Fill-8" class="st1" points="71.355,67.506 115.593,44.025 115.602,65.911 71.364,89.394 "/> - <polygon id="Fill-9" class="st2" points="0.359,24.844 44.597,1.363 115.592,44.025 71.354,67.506 "/> - <polygon id="Fill-10" class="st3" points="71.355,67.506 71.364,89.394 0.366,46.733 0.359,24.845 "/> - <polyline id="Stroke-11" class="st4" points="0.714,24.758 71.355,67.204 71.355,89.117 "/> - <polygon id="Fill-12" class="st5" points="41.022,69.075 37.289,66.901 37.289,49.455 41.022,51.653 "/> - <polygon id="Fill-13" class="st5" points="49.259,74.213 45.527,72.039 45.527,54.593 49.259,56.791 "/> - <polygon id="Fill-14" class="st5" points="57.554,78.956 53.821,76.782 53.821,59.336 57.554,61.534 "/> - <polygon id="Fill-15" class="st5" points="66.175,84.345 62.442,82.171 62.442,64.725 66.175,66.924 "/> - <polygon id="Fill-16" class="st5" points="8.805,49.968 5.072,47.795 5.072,30.348 8.805,32.546 "/> - <polygon id="Fill-17" class="st5" points="16.602,54.647 12.869,52.474 12.869,35.028 16.602,37.225 "/> - <polygon id="Fill-18" class="st5" points="24.632,59.26 20.899,57.086 20.899,39.641 24.632,41.838 "/> - <polygon id="Fill-19" class="st5" points="32.781,64.174 29.048,62.001 29.048,44.555 32.781,46.752 "/> - </g> - </g> -</g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 117.96 90.752"><g fill="none" stroke="#626366" stroke-width="2.717" stroke-linejoin="round"><path d="M1.36 24.845L45.597 1.36l70.995 42.666-44.238 23.48z"/><path d="M72.355 67.506l.01 21.888-70.998-42.66-.007-21.888z"/><path d="M72.355 67.506l44.238-23.48.01 21.886-44.238 23.483z"/></g><path d="M72.355 67.506l44.238-23.48.01 21.886-44.238 23.483z" fill="#898b8e"/><path d="M1.36 24.844l44.238-23.48 70.995 42.662-44.238 23.48z" fill="#bbbdbf"/><path d="M72.355 67.506l.01 21.888-70.998-42.66-.007-21.888z" fill="#b3b5b7"/><path d="M1.714 24.758l70.64 42.446v21.913" fill="none" stroke="#dfe0df" stroke-width=".679" stroke-linecap="round" stroke-linejoin="round"/><path d="M42.022 69.075L38.3 66.9V49.455l3.733 2.198zm8.238 5.138l-3.732-2.174V54.593l3.732 2.198zm8.294 4.743l-3.733-2.174V59.336l3.733 2.198zm8.62 5.39l-3.733-2.174V64.725l3.733 2.2zM9.805 49.968l-3.733-2.173V30.348l3.733 2.198zm7.797 4.68l-3.733-2.173V35.028l3.733 2.197zm8.03 4.613L21.9 57.086V39.64l3.733 2.197zm8.148 4.914L30.048 62V44.555l3.733 2.197z" fill="#fefefe"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/media_converters/Media_Converter_Standalone.svg b/src/main/webapp/img/lib/allied_telesis/media_converters/Media_Converter_Standalone.svg index 0c1beb3fffed7fe70654302863842be2baee02f6..f47c4c4253564df32692132f8f4ffcebaefff0da 100644 --- a/src/main/webapp/img/lib/allied_telesis/media_converters/Media_Converter_Standalone.svg +++ b/src/main/webapp/img/lib/allied_telesis/media_converters/Media_Converter_Standalone.svg @@ -1,21 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 75.713 61.36" style="enable-background:new 0 0 75.713 61.36;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#626366;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;} - .st1{fill:#BBBDBF;} - .st2{fill:none;stroke:#DFE0DF;stroke-width:0.525;stroke-linecap:round;stroke-linejoin:round;} - .st3{fill:#B3B5B7;} - .st4{fill:#FEFEFE;} - .st5{fill:#898B8E;} -</style> -<polygon id="Stroke-1" class="st0" points="40.025,42.946 74.213,24.799 74.213,41.714 40.025,59.86 "/> -<polygon id="Stroke-3" class="st0" points="40.02,42.946 40.025,59.86 1.5,36.759 1.5,19.888 "/> -<polygon id="Stroke-5" class="st0" points="1.5,19.888 35.581,1.5 74.208,24.798 40.021,42.946 "/> -<polygon id="Fill-8" class="st1" points="1.5,19.888 35.581,1.5 74.208,24.799 40.021,42.946 "/> -<polyline id="Stroke-9" class="st2" points="1.699,19.879 40.02,42.713 40.02,59.648 "/> -<polygon id="Fill-10" class="st3" points="40.02,42.946 40.025,59.861 1.5,36.759 1.5,19.888 "/> -<polygon id="Fill-11" class="st4" points="24.916,48.768 18.358,44.821 18.372,38.253 24.893,42.186 "/> -<polygon id="Fill-12" class="st4" points="35.741,55.23 29.183,51.284 29.197,44.716 35.719,48.649 "/> -<polygon id="Fill-13" class="st5" points="40.02,42.946 74.208,24.8 74.213,41.715 40.025,59.861 "/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 75.713 61.36"><g fill="none" stroke="#626366" stroke-width="3" stroke-linejoin="round"><path d="M40.025 42.946L74.213 24.8v16.915L40.025 59.86z"/><path d="M40.02 42.946l.005 16.914L1.5 36.76v-16.87z"/><path d="M1.5 19.888L35.58 1.5l38.627 23.298L40.02 42.946z"/></g><path d="M1.5 19.888L35.58 1.5l38.627 23.3L40.02 42.946z" fill="#bbbdbf"/><path d="M1.7 19.88l38.32 22.834v16.935" fill="none" stroke="#dfe0df" stroke-width=".525" stroke-linecap="round" stroke-linejoin="round"/><path d="M40.02 42.946l.005 16.915L1.5 36.76v-16.87z" fill="#b3b5b7"/><path d="M24.916 48.768l-6.558-3.947.014-6.568 6.52 3.933zM35.74 55.23l-6.558-3.946.014-6.568 6.522 3.933z" fill="#fefefe"/><path d="M40.02 42.946L74.208 24.8l.005 16.915L40.025 59.86z" fill="#898b8e"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/media_converters/Media_Converter_Standalone_POE.svg b/src/main/webapp/img/lib/allied_telesis/media_converters/Media_Converter_Standalone_POE.svg index 5bfb7ba8ab5e08f15a243229042720faf782d7d7..dcfbcc355e67e4413b66cc1a28c965e88b517292 100644 --- a/src/main/webapp/img/lib/allied_telesis/media_converters/Media_Converter_Standalone_POE.svg +++ b/src/main/webapp/img/lib/allied_telesis/media_converters/Media_Converter_Standalone_POE.svg @@ -1,33 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 75.713 61.359" style="enable-background:new 0 0 75.713 61.359;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#626366;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;} - .st1{fill:#231F20;} - .st2{fill:none;stroke:#DFE0DF;stroke-width:0.525;stroke-linecap:round;stroke-linejoin:round;} - .st3{fill:#B3B5B7;} - .st4{fill:#FEFEFE;} - .st5{fill:#898B8E;} -</style> -<title>icon-media-converter-poe</title> -<desc>Created with Sketch.</desc> -<g id="Page-1"> - <g id="Desktop" transform="translate(-1520.000000, -726.000000)"> - <g id="icon-media-converter-poe" transform="translate(1521.000000, 727.000000)"> - <g id="Group-7" transform="translate(0.000000, 0.359400)"> - <polygon id="Stroke-1" class="st0" points="39.02,41.586 73.208,23.439 73.213,40.354 39.024,58.5 "/> - <polygon id="Stroke-3" class="st0" points="39.02,41.586 39.024,58.5 0.5,35.399 0.5,18.528 "/> - <polygon id="Stroke-5" class="st0" points="0.5,18.529 34.581,0.141 73.208,23.439 39.021,41.587 "/> - </g> - <polygon id="Fill-8" class="st1" points="0.821,18.64 34.901,0.252 73.528,23.551 39.341,41.698 "/> - <polyline id="Stroke-9" class="st2" points="0.698,18.879 39.02,41.713 39.02,58.648 "/> - <polygon id="Fill-10" class="st3" points="39.02,41.946 39.024,58.861 0.5,35.759 0.5,18.888 "/> - <polygon id="Fill-11" class="st4" points="23.914,47.768 17.358,43.821 17.372,37.253 23.893,41.186 "/> - <polygon id="Fill-12" class="st4" points="34.741,54.23 28.182,50.284 28.196,43.716 34.718,47.649 "/> - <polygon id="Fill-13" class="st5" points="39.02,41.946 73.208,23.8 73.213,40.715 39.024,58.861 "/> - <polygon id="Fill-14" class="st4" points="34.15,3.357 32.946,17.316 40.145,13.219 38.52,23.449 43.51,20.607 40.633,38.733 - 39.704,25.653 33.435,29.22 34.796,20.648 27.642,24.72 33.936,3.054 "/> - </g> - </g> -</g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 75.713 61.359"><g fill="none" stroke="#626366" stroke-width="3" stroke-linejoin="round"><path d="M40.02 42.945l34.188-18.147.005 16.915-34.19 18.146z"/><path d="M40.02 42.945l.004 16.914L1.5 36.758v-16.87z"/><path d="M1.5 19.888L35.58 1.5l38.627 23.298L40.02 42.946z"/></g><path d="M1.82 19.64L35.9 1.252l38.627 23.3L40.34 42.698z" fill="#231f20"/><path d="M1.698 19.88L40.02 42.713v16.935" fill="none" stroke="#dfe0df" stroke-width=".525" stroke-linecap="round" stroke-linejoin="round"/><path d="M40.02 42.946l.004 16.915L1.5 36.76v-16.87z" fill="#b3b5b7"/><path d="M24.914 48.768l-6.556-3.947.014-6.568 6.52 3.933zM35.74 55.23l-6.56-3.946.014-6.568 6.522 3.933z" fill="#fefefe"/><path d="M40.02 42.946L74.208 24.8l.005 16.915-34.19 18.146z" fill="#898b8e"/><path d="M35.15 4.357l-1.204 13.96 7.2-4.097-1.625 10.23 5-2.842-2.877 18.126-.93-13.08-6.27 3.567 1.36-8.572-7.154 4.072 6.294-21.666z" fill="#fefefe"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/security/DVS_Surveillance_Monitor.svg b/src/main/webapp/img/lib/allied_telesis/security/DVS_Surveillance_Monitor.svg index 28de94a0be93a607ff996a3b88badd09585211ac..c4e0c671f3927156d7b562a7c71568359cbb735b 100644 --- a/src/main/webapp/img/lib/allied_telesis/security/DVS_Surveillance_Monitor.svg +++ b/src/main/webapp/img/lib/allied_telesis/security/DVS_Surveillance_Monitor.svg @@ -1,199 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 70.175 100.05" style="enable-background:new 0 0 70.175 100.05;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#626366;stroke-width:3.375;stroke-linejoin:round;} - .st1{fill:#898B8E;} - .st2{fill:#BBBDBF;} - .st3{fill:#B3B5B7;} - .st4{fill:none;stroke:#E1E2E3;stroke-width:1.125;stroke-linecap:round;stroke-linejoin:round;} - .st5{fill:none;stroke:#626366;stroke-width:3.002;stroke-linecap:round;stroke-linejoin:round;} - .st6{fill:#FEFEFE;} - .st7{fill:#C4CACE;} - .st8{fill:none;stroke:#636466;stroke-width:1.301;} - .st9{fill:none;stroke:#E1E2E3;stroke-width:1.001;stroke-linecap:round;stroke-linejoin:round;} - .st10{filter:url(#Adobe_OpacityMaskFilter);} - .st11{fill:#FFFFFF;} - .st12{mask:url(#mask-2_1_);fill:none;stroke:#636466;stroke-width:1.451;} - .st13{fill:none;stroke:#231F20;stroke-width:0.504;} - .st14{fill:#231F20;} - .st15{fill:none;stroke:#231F20;stroke-width:0.386;} - .st16{fill:#00A550;} - .st17{fill:none;stroke:#231F20;stroke-width:0.259;} - .st18{fill:#00ADEE;} - .st19{fill:#FFF100;} - .st20{fill:#FAAF3F;} - .st21{fill:#8CC63F;} - .st22{fill:#D0D2D3;} - .st23{fill:#27A9E0;} - .st24{fill:#EB008B;} - .st25{fill:#2B388F;} - .st26{fill:#652C90;} - .st27{fill:#F6931D;} - .st28{fill:#EC1D24;} - .st29{fill:#91278F;} - .st30{fill:none;stroke:#FEFEFE;stroke-width:0.504;stroke-linecap:round;} - .st31{fill:none;stroke:#FEFEFE;stroke-width:0.507;stroke-linecap:round;} -</style> -<title>icon-surveillance-monitor</title> -<desc>Created with Sketch.</desc> -<polygon id="Stroke-1" class="st0" points="41.77,92.853 54.94,85.861 54.943,89.57 41.772,96.563 "/> -<polygon id="Stroke-3" class="st0" points="8.137,72.645 21.307,65.654 54.94,85.861 41.77,92.853 "/> -<polygon id="Stroke-4" class="st0" points="41.77,92.853 41.772,96.563 8.139,76.353 8.137,72.645 "/> -<polygon id="Fill-6" class="st1" points="41.77,92.853 54.94,85.861 54.943,89.57 41.772,96.563 "/> -<polygon id="Fill-7" class="st2" points="8.137,72.645 21.307,65.654 54.94,85.861 41.77,92.853 "/> -<polygon id="Fill-8" class="st3" points="41.77,92.853 41.772,96.563 8.139,76.353 8.137,72.645 "/> -<polyline id="Stroke-9" class="st4" points="8.409,72.682 41.491,92.558 41.491,96.163 "/> -<polygon id="Stroke-10" class="st5" points="62.799,41.43 68.632,38.334 68.674,95.451 62.838,98.549 "/> -<polygon id="Stroke-12" class="st5" points="1.501,4.599 7.336,1.501 68.632,38.334 62.799,41.43 "/> -<polygon id="Stroke-14" class="st5" points="62.799,41.43 62.838,98.549 1.541,61.717 1.501,4.599 "/> -<polygon id="Fill-17" class="st1" points="62.797,41.43 68.632,38.334 68.672,95.451 62.838,98.549 "/> -<polygon id="Fill-18" class="st2" points="1.501,4.599 7.334,1.501 68.632,38.334 62.797,41.43 "/> -<polygon id="Fill-19" class="st3" points="62.797,41.43 62.838,98.549 1.541,61.717 1.501,4.599 "/> -<polygon id="Fill-20" class="st6" points="59.589,92.129 3.724,58.153 3.724,9.879 59.589,43.853 "/> -<path id="Fill-21" class="st7" d="M38.863,34.4l18.541,11.139l0.103,10.367c0,0-0.33-7.435-5.842-12.092 - C44.628,37.867,38.863,34.4,38.863,34.4"/> -<path id="Stroke-23" class="st8" d="M2.216,62.896l60.616,36.422"/> -<polyline id="Stroke-25" class="st9" points="2.018,4.79 62.776,41.298 62.817,98.063 "/> -<g id="Clip-28"> -</g> -<defs> - <filter id="Adobe_OpacityMaskFilter" filterUnits="userSpaceOnUse" x="68.667" y="76.61" width="1.451" height="15.008"> - <feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> - </filter> -</defs> -<mask maskUnits="userSpaceOnUse" x="68.667" y="76.61" width="1.451" height="15.008" id="mask-2_1_"> - <g class="st10"> - <polygon id="path-1_1_" class="st11" points="69.393,76.61 70.174,76.61 70.174,91.618 69.393,91.618 "/> - </g> -</mask> -<path id="Stroke-27" class="st12" d="M69.393,76.61v15.008"/> -<polygon id="Fill-30" class="st6" points="60.917,94.875 1.823,60.026 1.823,8.15 60.917,42.999 "/> -<polygon id="Stroke-32" class="st13" points="60.917,94.875 1.823,60.026 1.823,8.15 60.917,42.999 "/> -<polygon id="Fill-34" class="st14" points="22.045,54.319 1.941,42.464 1.941,25.501 22.045,37.356 "/> -<polygon id="Stroke-36" class="st15" points="22.045,54.319 1.941,42.464 1.941,25.501 22.045,37.356 "/> -<path id="Fill-38" class="st16" d="M11.692,40.222c0,1.858-1.973,2.202-4.405,0.767c-2.431-1.434-4.404-4.104-4.404-5.961 - c0-1.859,1.973-2.201,4.404-0.767C9.719,35.695,11.692,38.364,11.692,40.222"/> -<path id="Stroke-40" class="st17" d="M11.692,40.222c0,1.858-1.973,2.202-4.405,0.767c-2.431-1.434-4.404-4.104-4.404-5.961 - c0-1.859,1.973-2.201,4.404-0.767C9.719,35.695,11.692,38.364,11.692,40.222z"/> -<path id="Fill-42" class="st18" d="M20.125,48.947c0-0.928-0.545-2.002-1.217-2.399l-8.247-4.864 - c-0.673-0.396-1.219,0.035-1.219,0.963c0,0.93,0.546,2.005,1.219,2.401l8.247,4.863C19.58,50.308,20.125,49.877,20.125,48.947"/> -<path id="Stroke-44" class="st17" d="M20.125,48.947c0-0.928-0.545-2.002-1.217-2.399l-8.247-4.864 - c-0.673-0.396-1.219,0.035-1.219,0.963c0,0.93,0.546,2.005,1.219,2.401l8.247,4.863C19.58,50.308,20.125,49.877,20.125,48.947z"/> -<polygon id="Fill-46" class="st19" points="15.628,45.13 11.882,44.118 9.257,38.689 10.381,34.273 14.127,35.286 16.751,40.714 "/> -<polygon id="Stroke-48" class="st17" points="15.628,45.13 11.882,44.118 9.257,38.689 10.381,34.273 14.127,35.286 16.751,40.714 - "/> -<polygon id="Fill-50" class="st14" points="22.045,71.578 1.941,59.722 1.941,42.761 22.045,54.616 "/> -<polygon id="Stroke-52" class="st15" points="22.045,71.578 1.941,59.722 1.941,42.761 22.045,54.616 "/> -<path id="Fill-54" class="st20" d="M11.692,57.48c0,1.858-1.973,2.202-4.405,0.767c-2.431-1.434-4.404-4.103-4.404-5.962 - c0-1.858,1.973-2.201,4.404-0.766C9.719,52.953,11.692,55.622,11.692,57.48"/> -<path id="Stroke-56" class="st17" d="M11.692,57.48c0,1.858-1.973,2.202-4.405,0.767c-2.431-1.434-4.404-4.103-4.404-5.962 - c0-1.858,1.973-2.201,4.404-0.766C9.719,52.953,11.692,55.622,11.692,57.48z"/> -<path id="Fill-58" class="st21" d="M20.964,67.085c0-0.929-0.546-2.003-1.219-2.4l-8.246-4.863 - c-0.672-0.397-1.218,0.034-1.218,0.963c0,0.929,0.546,2.004,1.218,2.401l8.246,4.862C20.418,68.445,20.964,68.014,20.964,67.085"/> -<path id="Stroke-60" class="st17" d="M20.964,67.085c0-0.929-0.546-2.003-1.219-2.4l-8.246-4.863 - c-0.672-0.397-1.218,0.034-1.218,0.963c0,0.929,0.546,2.004,1.218,2.401l8.246,4.862C20.418,68.445,20.964,68.014,20.964,67.085z"/> -<polygon id="Fill-62" class="st22" points="15.628,62.389 11.882,61.377 9.257,55.948 10.381,51.531 14.127,52.545 16.751,57.973 - "/> -<polygon id="Stroke-64" class="st17" points="15.628,62.389 11.882,61.377 9.257,55.948 10.381,51.531 14.127,52.545 16.751,57.973 - "/> -<polygon id="Fill-66" class="st14" points="22.045,37.05 1.941,25.194 1.941,8.232 22.045,20.087 "/> -<polygon id="Stroke-68" class="st15" points="22.045,37.05 1.941,25.194 1.941,8.232 22.045,20.087 "/> -<path id="Fill-70" class="st23" d="M11.692,22.952c0,1.859-1.973,2.201-4.405,0.767c-2.431-1.434-4.404-4.103-4.404-5.961 - c0-1.859,1.973-2.201,4.404-0.767C9.719,18.427,11.692,21.096,11.692,22.952"/> -<path id="Stroke-72" class="st17" d="M11.692,22.952c0,1.859-1.973,2.201-4.405,0.767c-2.431-1.434-4.404-4.103-4.404-5.961 - c0-1.859,1.973-2.201,4.404-0.767C9.719,18.427,11.692,21.096,11.692,22.952z"/> -<path id="Fill-74" class="st24" d="M20.125,31.679c0-0.928-0.546-2.004-1.217-2.4l-8.247-4.864 - c-0.673-0.397-1.219,0.035-1.219,0.964c0,0.929,0.546,2.004,1.219,2.401l8.247,4.863C19.58,33.039,20.125,32.608,20.125,31.679"/> -<path id="Stroke-76" class="st17" d="M20.125,31.679c0-0.928-0.546-2.004-1.217-2.4l-8.247-4.864 - c-0.673-0.397-1.219,0.035-1.219,0.964c0,0.929,0.546,2.004,1.219,2.401l8.247,4.863C19.58,33.039,20.125,32.608,20.125,31.679z"/> -<polygon id="Fill-78" class="st25" points="15.628,27.862 11.882,26.849 9.257,21.421 10.381,17.005 14.127,18.017 16.751,23.446 - "/> -<polygon id="Stroke-80" class="st17" points="15.628,27.862 11.882,26.849 9.257,21.421 10.381,17.005 14.127,18.017 16.751,23.446 - "/> -<polygon id="Fill-82" class="st14" points="41.854,66.391 21.75,54.535 21.75,37.572 41.854,49.429 "/> -<polygon id="Stroke-84" class="st15" points="41.854,66.391 21.75,54.535 21.75,37.572 41.854,49.429 "/> -<path id="Fill-86" class="st19" d="M31.502,52.294c0,1.857-1.972,2.201-4.405,0.766c-2.43-1.434-4.403-4.103-4.403-5.961 - c0-1.858,1.973-2.201,4.403-0.767C29.53,47.767,31.502,50.436,31.502,52.294"/> -<path id="Stroke-88" class="st17" d="M31.502,52.294c0,1.857-1.972,2.201-4.405,0.766c-2.43-1.434-4.403-4.103-4.403-5.961 - c0-1.858,1.973-2.201,4.403-0.767C29.53,47.767,31.502,50.436,31.502,52.294z"/> -<path id="Fill-90" class="st24" d="M39.936,61.019c0-0.929-0.545-2.003-1.218-2.4l-8.247-4.863 - c-0.672-0.397-1.218,0.034-1.218,0.963c0,0.929,0.546,2.004,1.218,2.401l8.247,4.862C39.391,62.379,39.936,61.949,39.936,61.019"/> -<path id="Stroke-92" class="st17" d="M39.936,61.019c0-0.929-0.545-2.003-1.218-2.4l-8.247-4.863 - c-0.672-0.397-1.218,0.034-1.218,0.963c0,0.929,0.546,2.004,1.218,2.401l8.247,4.862C39.391,62.379,39.936,61.949,39.936,61.019z"/> -<polygon id="Fill-94" class="st21" points="35.438,57.201 31.691,56.189 29.067,50.761 30.19,46.345 33.937,47.357 36.561,52.786 - "/> -<polygon id="Stroke-96" class="st17" points="35.438,57.201 31.691,56.189 29.067,50.761 30.19,46.345 33.937,47.357 36.561,52.786 - "/> -<polygon id="Fill-98" class="st14" points="41.854,83.649 21.75,71.794 21.75,54.831 41.854,66.687 "/> -<polygon id="Stroke-100" class="st15" points="41.854,83.649 21.75,71.794 21.75,54.831 41.854,66.687 "/> -<path id="Fill-102" class="st20" d="M31.502,69.552c0,1.858-1.972,2.202-4.405,0.767c-2.43-1.434-4.403-4.103-4.403-5.961 - c0-1.859,1.973-2.202,4.403-0.767C29.53,65.025,31.502,67.694,31.502,69.552"/> -<path id="Stroke-104" class="st17" d="M31.502,69.552c0,1.858-1.972,2.202-4.405,0.767c-2.43-1.434-4.403-4.103-4.403-5.961 - c0-1.859,1.973-2.202,4.403-0.767C29.53,65.025,31.502,67.694,31.502,69.552z"/> -<path id="Fill-106" class="st16" d="M40.773,79.157c0-0.929-0.546-2.003-1.218-2.4l-8.247-4.863 - c-0.672-0.397-1.218,0.034-1.218,0.963s0.546,2.004,1.218,2.401l8.247,4.862C40.227,80.517,40.773,80.086,40.773,79.157"/> -<path id="Stroke-108" class="st17" d="M40.773,79.157c0-0.929-0.546-2.003-1.218-2.4l-8.247-4.863 - c-0.672-0.397-1.218,0.034-1.218,0.963s0.546,2.004,1.218,2.401l8.247,4.862C40.227,80.517,40.773,80.086,40.773,79.157z"/> -<polygon id="Fill-110" class="st24" points="35.438,74.46 31.691,73.447 29.067,68.019 30.19,63.603 33.937,64.616 36.561,70.044 - "/> -<polygon id="Stroke-112" class="st17" points="35.438,74.46 31.691,73.447 29.067,68.019 30.19,63.603 33.937,64.616 36.561,70.044 - "/> -<polygon id="Fill-114" class="st14" points="41.854,49.122 21.75,37.266 21.75,20.305 41.854,32.16 "/> -<polygon id="Stroke-116" class="st15" points="41.854,49.122 21.75,37.266 21.75,20.305 41.854,32.16 "/> -<path id="Fill-118" class="st20" d="M31.502,35.025c0,1.857-1.972,2.201-4.405,0.766c-2.43-1.434-4.403-4.103-4.403-5.961 - s1.973-2.201,4.403-0.766C29.53,30.499,31.502,33.167,31.502,35.025"/> -<path id="Stroke-120" class="st17" d="M31.502,35.025c0,1.857-1.972,2.201-4.405,0.766c-2.43-1.434-4.403-4.103-4.403-5.961 - s1.973-2.201,4.403-0.766C29.53,30.499,31.502,33.167,31.502,35.025z"/> -<path id="Fill-122" class="st23" d="M39.936,43.75c0-0.929-0.546-2.003-1.218-2.4l-8.247-4.863 - c-0.672-0.397-1.218,0.034-1.218,0.963c0,0.928,0.546,2.003,1.218,2.401l8.247,4.862C39.39,45.11,39.936,44.679,39.936,43.75"/> -<path id="Stroke-124" class="st17" d="M39.936,43.75c0-0.929-0.546-2.003-1.218-2.4l-8.247-4.863 - c-0.672-0.397-1.218,0.034-1.218,0.963c0,0.928,0.546,2.003,1.218,2.401l8.247,4.862C39.39,45.11,39.936,44.679,39.936,43.75z"/> -<polygon id="Fill-126" class="st26" points="35.438,39.933 31.691,38.921 29.067,33.492 30.19,29.076 33.937,30.089 36.561,35.517 - "/> -<polygon id="Stroke-128" class="st17" points="35.438,39.933 31.691,38.921 29.067,33.492 30.19,29.076 33.937,30.089 - 36.561,35.517 "/> -<polygon id="Fill-130" class="st14" points="60.922,77.461 40.818,65.605 40.818,48.642 60.922,60.498 "/> -<polygon id="Stroke-132" class="st15" points="60.922,77.461 40.818,65.605 40.818,48.642 60.922,60.498 "/> -<path id="Fill-134" class="st6" d="M50.57,63.363c0,1.857-1.971,2.201-4.403,0.766c-2.433-1.434-4.405-4.102-4.405-5.96 - c0-1.858,1.972-2.202,4.405-0.767C48.599,58.836,50.57,61.505,50.57,63.363"/> -<path id="Stroke-136" class="st17" d="M50.57,63.363c0,1.857-1.971,2.201-4.403,0.766c-2.433-1.434-4.405-4.102-4.405-5.96 - c0-1.858,1.972-2.202,4.405-0.767C48.599,58.836,50.57,61.505,50.57,63.363z"/> -<path id="Fill-138" class="st21" d="M59.005,72.088c0-0.928-0.546-2.002-1.218-2.399l-8.247-4.863 - c-0.673-0.398-1.218,0.034-1.218,0.962c0,0.93,0.545,2.004,1.218,2.402l8.247,4.862C58.459,73.449,59.005,73.017,59.005,72.088"/> -<path id="Stroke-140" class="st17" d="M59.005,72.088c0-0.928-0.546-2.002-1.218-2.399l-8.247-4.863 - c-0.673-0.398-1.218,0.034-1.218,0.962c0,0.93,0.545,2.004,1.218,2.402l8.247,4.862C58.459,73.449,59.005,73.017,59.005,72.088z"/> -<polygon id="Fill-142" class="st27" points="54.506,68.271 50.76,67.259 48.135,61.83 49.259,57.413 53.006,58.427 55.63,63.856 "/> -<polygon id="Stroke-144" class="st17" points="54.506,68.271 50.76,67.259 48.135,61.83 49.259,57.413 53.006,58.427 55.63,63.856 - "/> -<polygon id="Fill-146" class="st14" points="60.922,94.719 40.818,82.864 40.818,65.901 60.922,77.757 "/> -<polygon id="Stroke-148" class="st15" points="60.922,94.719 40.818,82.864 40.818,65.901 60.922,77.757 "/> -<path id="Fill-150" class="st28" d="M50.57,80.621c0,1.858-1.971,2.202-4.403,0.767c-2.433-1.434-4.405-4.103-4.405-5.961 - s1.972-2.202,4.405-0.767C48.599,76.094,50.57,78.763,50.57,80.621"/> -<path id="Stroke-152" class="st17" d="M50.57,80.621c0,1.858-1.971,2.202-4.403,0.767c-2.433-1.434-4.405-4.103-4.405-5.961 - s1.972-2.202,4.405-0.767C48.599,76.094,50.57,78.763,50.57,80.621z"/> -<path id="Fill-154" class="st27" d="M59.842,90.226c0-0.929-0.546-2.003-1.217-2.4l-8.248-4.863 - c-0.672-0.397-1.218,0.034-1.218,0.963c0,0.928,0.546,2.004,1.218,2.4l8.248,4.864C59.296,91.586,59.842,91.155,59.842,90.226"/> -<path id="Stroke-156" class="st17" d="M59.842,90.226c0-0.929-0.546-2.003-1.217-2.4l-8.248-4.863 - c-0.672-0.397-1.218,0.034-1.218,0.963c0,0.928,0.546,2.004,1.218,2.4l8.248,4.864C59.296,91.586,59.842,91.155,59.842,90.226z"/> -<polygon id="Fill-158" class="st23" points="54.506,85.53 50.76,84.518 48.135,79.088 49.259,74.672 53.006,75.685 55.63,81.114 "/> -<polygon id="Stroke-160" class="st17" points="54.506,85.53 50.76,84.518 48.135,79.088 49.259,74.672 53.006,75.685 55.63,81.114 - "/> -<polygon id="Fill-162" class="st14" points="60.922,60.191 40.818,48.335 40.818,31.373 60.922,43.229 "/> -<polygon id="Stroke-164" class="st15" points="60.922,60.191 40.818,48.335 40.818,31.373 60.922,43.229 "/> -<path id="Fill-166" class="st19" d="M50.57,46.094c0,1.857-1.971,2.202-4.403,0.767c-2.433-1.434-4.405-4.103-4.405-5.961 - c0-1.858,1.972-2.201,4.405-0.767C48.599,41.568,50.57,44.236,50.57,46.094"/> -<path id="Stroke-168" class="st17" d="M50.57,46.094c0,1.857-1.971,2.202-4.403,0.767c-2.433-1.434-4.405-4.103-4.405-5.961 - c0-1.858,1.972-2.201,4.405-0.767C48.599,41.568,50.57,44.236,50.57,46.094z"/> -<path id="Fill-170" class="st29" d="M59.005,54.819c0-0.928-0.546-2.004-1.218-2.4l-8.247-4.864 - c-0.673-0.397-1.218,0.036-1.218,0.964c0,0.929,0.545,2.004,1.218,2.401l8.247,4.863C58.459,56.18,59.005,55.749,59.005,54.819"/> -<path id="Stroke-172" class="st17" d="M59.005,54.819c0-0.928-0.546-2.004-1.218-2.4l-8.247-4.864 - c-0.673-0.397-1.218,0.036-1.218,0.964c0,0.929,0.545,2.004,1.218,2.401l8.247,4.863C58.459,56.18,59.005,55.749,59.005,54.819z"/> -<polygon id="Fill-174" class="st28" points="54.506,51.003 50.76,49.99 48.135,44.561 49.259,40.145 53.006,41.158 55.63,46.586 "/> -<polygon id="Stroke-176" class="st17" points="54.506,51.003 50.76,49.99 48.135,44.561 49.259,40.145 53.006,41.158 55.63,46.586 - "/> -<path id="Stroke-178" class="st30" d="M21.702,19.754v52.683"/> -<path id="Stroke-180" class="st30" d="M41.136,30.896v52.682"/> -<path id="Stroke-182" class="st31" d="M1.482,25.678l59.952,35.355"/> -<path id="Stroke-184" class="st31" d="M1.495,43.052l59.954,35.355"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 70.175 100.05"><style><![CDATA[.g{fill:none}.h{stroke:#231f20}.i{stroke-width:.259}.j{fill:#231f20}.k{stroke-width:.386}.l{stroke-linejoin:round}.m{stroke-linecap:round}.n{fill:#fefefe}.o{fill:#fff100}.p{fill:#faaf3f}.q{fill:#8cc63f}.r{fill:#27a9e0}.s{fill:#eb008b}.t{stroke-width:.504}]]></style><g stroke="#626366" stroke-width="3.375" class="g l"><path d="M41.77 92.853l13.17-6.992.003 3.71-13.17 6.993z"/><path d="M8.137 72.645l13.17-6.99L54.94 85.86l-13.17 6.992z"/><path d="M41.77 92.853l.002 3.7-33.633-20.2-.002-3.708z"/></g><path d="M41.77 92.853l13.17-6.992.003 3.71-13.17 6.993z" fill="#898b8e"/><path d="M8.137 72.645l13.17-6.99L54.94 85.86l-13.17 6.992z" fill="#bbbdbf"/><path d="M41.77 92.853l.002 3.7-33.633-20.2-.002-3.708z" fill="#b3b5b7"/><g class="g l"><path d="M8.41 72.682L41.49 92.558v3.605" stroke="#e1e2e3" stroke-width="1.125" class="m"/><g stroke="#626366" stroke-width="3.002"><path d="M62.8 41.43l5.833-3.096.042 57.117-5.836 3.098z"/><path d="M1.5 4.6L7.336 1.5l61.296 36.833L62.8 41.43z"/><path d="M62.8 41.43l.04 57.12L1.54 61.717 1.5 4.6z"/></g></g><path d="M62.797 41.43l5.835-3.096.04 57.117-5.834 3.098z" fill="#898b8e"/><path d="M1.5 4.6L7.334 1.5l61.298 36.833-5.835 3.096z" fill="#bbbdbf"/><path d="M62.797 41.43l.04 57.12L1.54 61.717 1.5 4.6z" fill="#b3b5b7"/><path d="M59.59 92.13L3.724 58.153V9.88L59.59 43.853z" class="n"/><path d="M38.863 34.4l18.54 11.14.103 10.367s-.33-7.435-5.842-12.092C44.628 37.867 38.863 34.4 38.863 34.4" fill="#c4cace"/><g class="g"><path d="M2.216,62.896l60.616,36.422" stroke="#636466" stroke-width="1.301"/><path d="M2.018 4.8l60.758 36.508.04 56.765" stroke="#e1e2e3" class="l m"/></g><defs><filter id="A" filterUnits="userSpaceOnUse" x="68.667" y="76.61" width="1.451" height="15.008"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="68.667" y="76.61" width="1.451" height="15.008" id="B"><g filter="url(#A)"><path d="M69.393 76.6h.78v15.008h-.78z" fill="#fff"/></g></mask><path d="M69.393 76.6v15.008" mask="url(#B)" stroke="#636466" stroke-width="1.451" class="g"/><path d="M60.917 94.875L1.823 60.026V8.15L60.917 43z" class="n"/><path d="M60.917 94.875L1.823 60.026V8.15L60.917 43z" class="g h t"/><path d="M22.045 54.32L1.94 42.464V25.5l20.104 11.855z" class="j"/><path d="M22.045 54.32L1.94 42.464V25.5l20.104 11.855z" class="g h k"/><path d="M11.692 40.222c0 1.858-1.973 2.202-4.405.767s-4.404-4.104-4.404-5.96 1.973-2.2 4.404-.767 4.405 4.103 4.405 5.96" fill="#00a550"/><path d="M11.692 40.222c0 1.858-1.973 2.202-4.405.767s-4.404-4.104-4.404-5.96 1.973-2.2 4.404-.767 4.405 4.103 4.405 5.96z" class="g h i"/><path d="M20.125 48.947c0-.928-.545-2.002-1.217-2.4l-8.247-4.864c-.673-.396-1.22.035-1.22.963s.546 2.005 1.22 2.4l8.247 4.863c.672.397 1.217-.034 1.217-.964" fill="#00adee"/><path d="M20.125 48.947c0-.928-.545-2.002-1.217-2.4l-8.247-4.864c-.673-.396-1.22.035-1.22.963s.546 2.005 1.22 2.4l8.247 4.863c.672.397 1.217-.034 1.217-.964z" class="g h i"/><path d="M15.628 45.13l-3.746-1.012-2.625-5.43 1.124-4.416 3.746 1.013 2.624 5.428z" class="o"/><path d="M15.628 45.13l-3.746-1.012-2.625-5.43 1.124-4.416 3.746 1.013 2.624 5.428z" class="g h i"/><path d="M22.045 71.578L1.94 59.722V42.76l20.104 11.855z" class="j"/><path d="M22.045 71.578L1.94 59.722V42.76l20.104 11.855z" class="g h k"/><path d="M11.692 57.48c0 1.858-1.973 2.202-4.405.767s-4.404-4.103-4.404-5.962 1.973-2.2 4.404-.766 4.405 4.103 4.405 5.96" class="p"/><path d="M11.692 57.48c0 1.858-1.973 2.202-4.405.767s-4.404-4.103-4.404-5.962 1.973-2.2 4.404-.766 4.405 4.103 4.405 5.96z" class="g h i"/><path d="M20.964 67.085c0-.93-.546-2.003-1.22-2.4L11.5 59.822c-.672-.397-1.218.034-1.218.963s.546 2.004 1.218 2.4l8.246 4.862c.673.397 1.22-.034 1.22-.963" class="q"/><path d="M20.964 67.085c0-.93-.546-2.003-1.22-2.4L11.5 59.822c-.672-.397-1.218.034-1.218.963s.546 2.004 1.218 2.4l8.246 4.862c.673.397 1.22-.034 1.22-.963z" class="g h i"/><path d="M15.628 62.39l-3.746-1.012-2.625-5.43 1.124-4.417 3.746 1.014 2.624 5.428z" fill="#d0d2d3"/><path d="M15.628 62.39l-3.746-1.012-2.625-5.43 1.124-4.417 3.746 1.014 2.624 5.428z" class="g h i"/><path d="M22.045 37.05L1.94 25.194V8.232l20.104 11.855z" class="j"/><path d="M22.045 37.05L1.94 25.194V8.232l20.104 11.855z" class="g h k"/><path d="M11.692 22.952c0 1.86-1.973 2.2-4.405.767s-4.404-4.103-4.404-5.96 1.973-2.2 4.404-.767 4.405 4.105 4.405 5.96" class="r"/><path d="M11.692 22.952c0 1.86-1.973 2.2-4.405.767s-4.404-4.103-4.404-5.96 1.973-2.2 4.404-.767 4.405 4.105 4.405 5.96z" class="g h i"/><path d="M20.125 31.68c0-.928-.546-2.004-1.217-2.4l-8.247-4.864c-.673-.397-1.22.035-1.22.964s.546 2.004 1.22 2.4l8.247 4.863c.672.396 1.217-.035 1.217-.964" class="s"/><path d="M20.125 31.68c0-.928-.546-2.004-1.217-2.4l-8.247-4.864c-.673-.397-1.22.035-1.22.964s.546 2.004 1.22 2.4l8.247 4.863c.672.396 1.217-.035 1.217-.964z" class="g h i"/><path d="M15.628 27.862l-3.746-1.013-2.625-5.428 1.124-4.416 3.746 1.012 2.624 5.43z" fill="#2b388f"/><path d="M15.628 27.862l-3.746-1.013-2.625-5.428 1.124-4.416 3.746 1.012 2.624 5.43z" class="g h i"/><path d="M41.854 66.39L21.75 54.535V37.572L41.854 49.43z" class="j"/><path d="M41.854 66.39L21.75 54.535V37.572L41.854 49.43z" class="g h k"/><path d="M31.502 52.294c0 1.857-1.972 2.2-4.405.766s-4.403-4.103-4.403-5.96 1.973-2.2 4.403-.767 4.405 4.104 4.405 5.962" class="o"/><path d="M31.502 52.294c0 1.857-1.972 2.2-4.405.766s-4.403-4.103-4.403-5.96 1.973-2.2 4.403-.767 4.405 4.104 4.405 5.962z" class="g h i"/><path d="M39.936 61.02c0-.93-.545-2.003-1.218-2.4l-8.247-4.863c-.672-.397-1.218.034-1.218.963s.546 2.004 1.218 2.4l8.247 4.862c.673.397 1.218-.033 1.218-.963" class="s"/><path d="M39.936 61.02c0-.93-.545-2.003-1.218-2.4l-8.247-4.863c-.672-.397-1.218.034-1.218.963s.546 2.004 1.218 2.4l8.247 4.862c.673.397 1.218-.033 1.218-.963z" class="g h i"/><path d="M35.438 57.2L31.69 56.19l-2.624-5.428 1.123-4.416 3.747 1.012 2.624 5.43z" class="q"/><path d="M35.438 57.2L31.69 56.19l-2.624-5.428 1.123-4.416 3.747 1.012 2.624 5.43z" class="g h i"/><path d="M41.854 83.65L21.75 71.794V54.83l20.104 11.856z" class="j"/><path d="M41.854 83.65L21.75 71.794V54.83l20.104 11.856z" class="g h k"/><path d="M31.502 69.552c0 1.858-1.972 2.202-4.405.767s-4.403-4.103-4.403-5.96 1.973-2.202 4.403-.767 4.405 4.103 4.405 5.96" class="p"/><path d="M31.502 69.552c0 1.858-1.972 2.202-4.405.767s-4.403-4.103-4.403-5.96 1.973-2.202 4.403-.767 4.405 4.103 4.405 5.96z" class="g h i"/><path d="M40.773 79.157c0-.93-.546-2.003-1.218-2.4l-8.247-4.863c-.672-.397-1.218.034-1.218.963s.546 2.004 1.218 2.4l8.247 4.862c.672.397 1.218-.034 1.218-.963" fill="#00a550"/><path d="M40.773 79.157c0-.93-.546-2.003-1.218-2.4l-8.247-4.863c-.672-.397-1.218.034-1.218.963s.546 2.004 1.218 2.4l8.247 4.862c.672.397 1.218-.034 1.218-.963z" class="g h i"/><path d="M35.438 74.46l-3.747-1.013-2.624-5.428 1.123-4.416 3.747 1.013 2.624 5.428z" class="s"/><path d="M35.438 74.46l-3.747-1.013-2.624-5.428 1.123-4.416 3.747 1.013 2.624 5.428z" class="g h i"/><path d="M41.854 49.122L21.75 37.266v-16.96L41.854 32.16z" class="j"/><path d="M41.854 49.122L21.75 37.266v-16.96L41.854 32.16z" class="g h k"/><path d="M31.502 35.025c0 1.857-1.972 2.2-4.405.766s-4.403-4.103-4.403-5.96 1.973-2.2 4.403-.766 4.405 4.103 4.405 5.96" class="p"/><path d="M31.502 35.025c0 1.857-1.972 2.2-4.405.766s-4.403-4.103-4.403-5.96 1.973-2.2 4.403-.766 4.405 4.103 4.405 5.96z" class="g h i"/><path d="M39.936 43.75c0-.93-.546-2.003-1.218-2.4l-8.247-4.863c-.672-.397-1.218.034-1.218.963s.546 2.003 1.218 2.4l8.247 4.862c.672.397 1.218-.034 1.218-.963" class="r"/><path d="M39.936 43.75c0-.93-.546-2.003-1.218-2.4l-8.247-4.863c-.672-.397-1.218.034-1.218.963s.546 2.003 1.218 2.4l8.247 4.862c.672.397 1.218-.034 1.218-.963z" class="g h i"/><path d="M35.438 39.933L31.69 38.92l-2.624-5.43 1.123-4.416 3.747 1.013 2.624 5.428z" fill="#652c90"/><path d="M35.438 39.933L31.69 38.92l-2.624-5.43 1.123-4.416 3.747 1.013 2.624 5.428z" class="g h i"/><path d="M60.922 77.46L40.818 65.605V48.642l20.104 11.856z" class="j"/><path d="M60.922 77.46L40.818 65.605V48.642l20.104 11.856z" class="g h k"/><path d="M50.57 63.363c0 1.857-1.97 2.2-4.403.766s-4.405-4.102-4.405-5.96 1.972-2.202 4.405-.767 4.403 4.103 4.403 5.96" class="n"/><path d="M50.57 63.363c0 1.857-1.97 2.2-4.403.766s-4.405-4.102-4.405-5.96 1.972-2.202 4.405-.767 4.403 4.103 4.403 5.96z" class="g h i"/><path d="M59.005 72.088c0-.928-.546-2.002-1.218-2.4l-8.247-4.863c-.673-.398-1.218.034-1.218.962s.545 2.004 1.218 2.402l8.247 4.862c.672.397 1.218-.035 1.218-.964" class="q"/><path d="M59.005 72.088c0-.928-.546-2.002-1.218-2.4l-8.247-4.863c-.673-.398-1.218.034-1.218.962s.545 2.004 1.218 2.402l8.247 4.862c.672.397 1.218-.035 1.218-.964z" class="g h i"/><path d="M54.506 68.27L50.76 67.26l-2.625-5.43 1.124-4.417 3.747 1.014 2.624 5.43z" fill="#f6931d"/><path d="M54.506 68.27L50.76 67.26l-2.625-5.43 1.124-4.417 3.747 1.014 2.624 5.43z" class="g h i"/><path d="M60.922 94.72L40.818 82.864V65.9l20.104 11.856z" class="j"/><path d="M60.922 94.72L40.818 82.864V65.9l20.104 11.856z" class="g h k"/><path d="M50.57 80.62c0 1.858-1.97 2.202-4.403.767s-4.405-4.103-4.405-5.96 1.972-2.202 4.405-.767 4.403 4.103 4.403 5.96" fill="#ec1d24"/><path d="M50.57 80.62c0 1.858-1.97 2.202-4.403.767s-4.405-4.103-4.405-5.96 1.972-2.202 4.405-.767 4.403 4.103 4.403 5.96z" class="g h i"/><path d="M59.842 90.226c0-.93-.546-2.003-1.217-2.4l-8.248-4.863c-.672-.397-1.218.034-1.218.963s.546 2.004 1.218 2.4l8.248 4.864c.67.396 1.217-.035 1.217-.964" fill="#f6931d"/><path d="M59.842 90.226c0-.93-.546-2.003-1.217-2.4l-8.248-4.863c-.672-.397-1.218.034-1.218.963s.546 2.004 1.218 2.4l8.248 4.864c.67.396 1.217-.035 1.217-.964z" class="g h i"/><path d="M54.506 85.53l-3.746-1.012-2.625-5.43 1.124-4.416 3.747 1.013 2.624 5.43z" class="r"/><path d="M54.506 85.53l-3.746-1.012-2.625-5.43 1.124-4.416 3.747 1.013 2.624 5.43z" class="g h i"/><path d="M60.922 60.19L40.818 48.335V31.373L60.922 43.23z" class="j"/><path d="M60.922 60.19L40.818 48.335V31.373L60.922 43.23z" class="g h k"/><path d="M50.57 46.094c0 1.857-1.97 2.202-4.403.767s-4.405-4.103-4.405-5.96 1.972-2.2 4.405-.767 4.403 4.103 4.403 5.96" class="o"/><path d="M50.57 46.094c0 1.857-1.97 2.202-4.403.767s-4.405-4.103-4.405-5.96 1.972-2.2 4.405-.767 4.403 4.103 4.403 5.96z" class="g h i"/><path d="M59.005 54.82c0-.928-.546-2.004-1.218-2.4l-8.247-4.864c-.673-.397-1.218.036-1.218.964s.545 2.004 1.218 2.4l8.247 4.863c.672.397 1.218-.034 1.218-.964" fill="#91278f"/><path d="M59.005 54.82c0-.928-.546-2.004-1.218-2.4l-8.247-4.864c-.673-.397-1.218.036-1.218.964s.545 2.004 1.218 2.4l8.247 4.863c.672.397 1.218-.034 1.218-.964z" class="g h i"/><path d="M54.506 51.003L50.76 50l-2.625-5.43 1.124-4.416 3.747 1.013 2.624 5.428z" fill="#ec1d24"/><g class="g"><path d="M54.506 51.003L50.76 50l-2.625-5.43 1.124-4.416 3.747 1.013 2.624 5.428z" class="h i"/><g class="m"><path d="M21.702 19.754v52.683m19.434-41.54v52.682" stroke="#fefefe" class="t"/><path d="M1.482 25.678l59.952 35.355m-59.94-17.98L61.45 78.407" stroke="#fefefe" stroke-width=".507"/></g></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/security/EtherGRID.svg b/src/main/webapp/img/lib/allied_telesis/security/EtherGRID.svg index 17f80d4056c663f0805c58969e4f229386d0f949..c473808d6591f95782f8dc06e4f6d9382c5650c6 100644 --- a/src/main/webapp/img/lib/allied_telesis/security/EtherGRID.svg +++ b/src/main/webapp/img/lib/allied_telesis/security/EtherGRID.svg @@ -1,95 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 149.215 107.9" style="enable-background:new 0 0 149.215 107.9;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#58585B;stroke-width:1.226;stroke-linejoin:round;} - .st1{fill:#231F20;} - .st2{fill:#626366;} - .st3{fill:#404042;} - .st4{fill:none;stroke:#DFDFDE;stroke-width:0.285;stroke-linecap:round;} - .st5{fill:#E5E6E7;} - .st6{fill:#6C6E70;} - .st7{fill:#58585B;} - .st8{fill:#FEFEFE;} -</style> -<title>icon-etherGRID</title> -<desc>Created with Sketch.</desc> -<g id="Page-1"> - <g id="Desktop" transform="translate(-932.000000, -870.000000)"> - <g id="icon-etherGRID" transform="translate(932.000000, 869.000000)"> - <g id="Group-7" transform="translate(0.000000, 0.901000)"> - <polygon id="Stroke-1" class="st0" points="96.738,85.99 148.589,58.469 148.602,79.865 96.753,107.386 "/> - <polygon id="Stroke-3" class="st0" points="0.613,28.233 52.463,0.712 148.589,58.468 96.738,85.99 "/> - <polygon id="Stroke-5" class="st0" points="96.738,85.99 96.753,107.386 0.629,49.63 0.613,28.233 "/> - </g> - <polygon id="Fill-8" class="st1" points="97.021,86.891 97.035,108.287 148.885,80.767 148.87,59.369 "/> - <polygon id="Fill-9" class="st2" points="0.896,29.134 97.021,86.891 148.87,59.37 52.746,1.613 "/> - <polygon id="Fill-10" class="st3" points="0.91,50.531 97.035,108.287 97.021,86.891 0.896,29.134 "/> - <path id="Stroke-11" class="st4" d="M0.756,28.907l96.124,58.236"/> - <path id="Stroke-12" class="st4" d="M96.881,87.25v20.173"/> - <polygon id="Fill-13" class="st5" points="46.221,67.402 38.794,62.953 38.794,57.118 46.221,61.568 "/> - <polygon id="Fill-14" class="st5" points="21.974,52.701 14.695,48.339 14.695,42.505 21.974,46.867 "/> - <g id="Group-65" transform="translate(3.000000, 14.901000)"> - <path id="Fill-15" class="st5" d="M71.769,71.064c0,0.161-0.113,0.226-0.253,0.143l-5.524-3.311 - c-0.139-0.083-0.252-0.283-0.252-0.445v-6.88c0-0.162,0.113-0.226,0.252-0.143l5.524,3.311c0.14,0.083,0.253,0.283,0.253,0.445 - V71.064z"/> - <path id="Fill-17" class="st5" d="M80.666,76.395c0,0.162-0.113,0.226-0.252,0.143l-5.525-3.311 - c-0.139-0.083-0.252-0.283-0.252-0.445v-6.88c0-0.161,0.113-0.226,0.252-0.143l5.525,3.311c0.139,0.083,0.252,0.283,0.252,0.445 - V76.395z"/> - <path id="Fill-19" class="st5" d="M89.784,75.937c0,1.456-1.116,1.968-2.491,1.144c-1.376-0.826-2.492-2.674-2.492-4.129 - c0-1.456,1.116-1.968,2.492-1.144C88.668,72.633,89.784,74.482,89.784,75.937"/> - <path id="Fill-21" class="st6" d="M88.964,75.446c0,0.978-0.748,1.32-1.671,0.768c-0.924-0.554-1.672-1.794-1.672-2.771 - s0.748-1.32,1.672-0.768C88.216,73.229,88.964,74.469,88.964,75.446"/> - <path id="Fill-23" class="st5" d="M7.017,25.641c0,1.456-1.115,1.968-2.491,1.144c-1.376-0.826-2.491-2.674-2.491-4.129 - c0-1.456,1.115-1.968,2.491-1.144C5.902,22.337,7.017,24.186,7.017,25.641"/> - <path id="Fill-25" class="st5" d="M7.017,25.641c0,1.456-1.115,1.968-2.491,1.144c-1.376-0.826-2.491-2.674-2.491-4.129 - c0-1.456,1.115-1.968,2.491-1.144C5.902,22.337,7.017,24.186,7.017,25.641"/> - <path id="Fill-27" class="st5" d="M7.017,25.641c0,1.456-1.115,1.968-2.491,1.144c-1.376-0.826-2.491-2.674-2.491-4.129 - c0-1.456,1.115-1.968,2.491-1.144C5.902,22.337,7.017,24.186,7.017,25.641"/> - <path id="Fill-29" class="st7" d="M6.198,25.15c0,0.978-0.749,1.32-1.672,0.768c-0.924-0.554-1.672-1.794-1.672-2.771 - c0-0.977,0.748-1.32,1.672-0.768C5.449,22.933,6.198,24.173,6.198,25.15"/> - <path id="Fill-31" class="st5" d="M2.94,35.277c0,0.728-0.558,0.983-1.245,0.571c-0.689-0.412-1.246-1.337-1.246-2.064 - c0-0.728,0.557-0.984,1.246-0.571C2.382,33.625,2.94,34.548,2.94,35.277"/> - <path id="Fill-33" class="st5" d="M34.181,54.599c0,0.728-0.558,0.983-1.245,0.571c-0.689-0.412-1.246-1.337-1.246-2.064 - c0-0.728,0.557-0.984,1.246-0.571C33.623,52.947,34.181,53.87,34.181,54.599"/> - <path id="Fill-35" class="st5" d="M53.206,66.205c0,0.728-0.558,0.983-1.245,0.571c-0.689-0.412-1.246-1.336-1.246-2.064 - c0-0.728,0.557-0.984,1.246-0.571C52.648,64.553,53.206,65.477,53.206,66.205"/> - <path id="Fill-37" class="st5" d="M90.417,88.006c0,0.728-0.558,0.983-1.246,0.571c-0.688-0.412-1.245-1.337-1.245-2.064 - c0-0.729,0.557-0.984,1.245-0.571C89.859,86.354,90.417,87.277,90.417,88.006"/> - <polygon id="Fill-39" class="st8" points="51.331,54.47 49.336,53.273 49.336,50.947 51.331,52.145 "/> - <polygon id="Fill-41" class="st8" points="51.284,57.977 49.292,56.781 49.292,54.456 51.284,55.651 "/> - <polygon id="Fill-43" class="st8" points="47.571,52.213 45.575,51.014 45.575,48.69 47.571,49.887 "/> - <polygon id="Fill-45" class="st8" points="47.525,55.717 45.534,54.521 45.534,52.197 47.525,53.391 "/> - <polygon id="Fill-47" class="st8" points="48.853,4.718 43.448,1.455 38.555,4.168 43.826,7.349 43.038,7.786 37.767,4.606 - 32.802,7.358 38.343,10.701 37.554,11.139 31.116,7.253 43.339,0.477 49.642,4.281 "/> - <path id="Fill-49" class="st8" d="M48.447,8.395l2.134,1.288l-0.699,0.388l-2.134-1.288l-4.785,2.652 - c-1.38,0.766-1.866,1.054-0.747,1.729c0.458,0.276,0.783,0.389,1.782,0.62l-0.824,0.457c-0.243-0.042-0.585-0.147-0.962-0.271 - c-0.361-0.134-0.754-0.288-1.026-0.452c-0.847-0.512-1.26-1.342-0.041-2.018l5.789-3.209l-2.05-1.237l0.699-0.388l2.051,1.238 - l1.917-1.064l1.311-0.079l0.255,0.154L48.447,8.395z"/> - <path id="Fill-51" class="st8" d="M51.186,11.667l0.035,0.021c1.841-0.197,2.966-0.015,4.067,0.649 - c1.627,0.982,1.7,2.334-0.452,3.526l-4.928,2.733l-0.813-0.491l4.589-2.543c1.738-0.964,2.167-1.91,0.71-2.789 - c-1.118-0.674-2.369-0.766-4.211-0.549l-5.646,3.13l-0.814-0.492l12.224-6.776l0.813,0.491L51.186,11.667z"/> - <path id="Fill-53" class="st8" d="M62.119,20.155c1.289-1.048,1.246-1.967-0.059-2.754c-1.253-0.757-3.114-0.863-4.872-0.222 - L62.119,20.155z M56.388,17.506c-2.299,0.999-2.333,2.804-0.605,3.847c1.017,0.614,2.205,0.916,4.029,1.042l-0.967,0.536 - c-1.633-0.134-2.906-0.508-4.007-1.172c-2.202-1.33-2.002-3.285,0.488-4.666c2.366-1.312,5.562-1.375,7.577-0.159 - c1.627,0.982,2.171,2.7-0.517,4.192L56.388,17.506z"/> - <path id="Fill-55" class="st8" d="M70.596,23.612c-0.03-0.827-0.188-1.172-0.611-1.428c-0.746-0.45-2.435-0.514-4.752-0.191 - l-5.055,2.803l-0.812-0.492l8.047-4.461l0.813,0.491l-2.115,1.173l0.034,0.02c2.404-0.293,4.089-0.168,4.936,0.344 - c0.526,0.317,0.748,0.742,0.795,1.58L70.596,23.612z"/> - <path id="Fill-57" class="st8" d="M85.199,29.811c-0.721-1.307-1.768-2.375-3.191-3.234c-3.135-1.892-6.279-1.424-8.089-0.42 - c-2.169,1.202-1.993,2.967,0.396,4.41c0.711,0.43,1.139,0.604,2.345,0.918l1.434-0.795l-1.678-1.013l2.24-1.242l4.558,2.751 - l-5,2.772c-1.815,0.005-4.648-0.896-6.512-2.021c-4.033-2.434-4.298-5.604-0.642-7.63c3.729-2.066,9.138-1.769,13.256,0.716 - c1.728,1.043,2.993,2.284,3.553,3.308L85.199,29.811z"/> - <path id="Fill-59" class="st8" d="M89.096,33.906l1.524,0.921c0.797,0.48,1.935,0.753,2.975,0.177 - c0.914-0.507,0.82-1.104-0.264-1.758l-1.457-0.88L89.096,33.906z M96.402,32.506c2.372,1.431,2.093,3.214,0.265,4.227 - c-1.344,0.745-3.008,0.903-4.975,0.463c0.559,1.064-0.59,2.113-2.549,5.082l-3.169-1.912c1.381-2.197,3.27-3.775,1.712-4.716 - l-0.83-0.502l-4.965,2.753l-2.881-1.738l12.224-6.777L96.402,32.506z"/> - <polygon id="Fill-61" class="st8" points="93.209,44.732 90.329,42.994 102.553,36.217 105.433,37.956 "/> - <path id="Fill-63" class="st8" d="M100.716,46.67l1.881,1.136c2.896,1.748,5.841,1.118,7.634,0.124 - c2.096-1.162,2.802-2.791,0.075-4.438l-1.847-1.115L100.716,46.67z M112.92,42.476c4.219,2.546,3.61,5.395,0.258,7.253 - c-3.513,1.948-8.195,2.11-12.804-0.671l-4.778-2.884l12.224-6.776L112.92,42.476z"/> - </g> - </g> - </g> -</g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 149.215 107.9"><g fill="none" stroke="#58585b" stroke-width="1.226" stroke-linejoin="round"><path d="M96.738 85.89l51.85-27.52.013 21.396-51.85 27.52z"/><path d="M.613 28.134L52.463.613 148.59 58.37 96.738 85.89z"/><path d="M96.738 85.89l.015 21.396L.63 49.53.613 28.134z"/></g><path d="M97.02 85.89l.014 21.396 51.85-27.52-.015-21.398z" fill="#231f20"/><path d="M.896 28.134L97.02 85.89l51.85-27.52L52.746.613z" fill="#626366"/><path d="M.9 49.53l96.125 57.756-.014-21.396L.896 28.134z" fill="#404042"/><path d="M.756 27.907L96.88 86.143m0 .107v20.173" fill="none" stroke="#dfdfde" stroke-width=".285" stroke-linecap="round"/><path d="M46.22 66.402l-7.427-4.45v-5.835l7.427 4.45zM21.974 51.7l-7.28-4.362v-5.834l7.28 4.362zM74.77 84.965c0 .16-.113.226-.253.143l-5.524-3.3c-.14-.083-.252-.283-.252-.445v-6.88c0-.162.113-.226.252-.143l5.524 3.3c.14.083.253.283.253.445v6.88zm8.896 5.33c0 .162-.113.226-.252.143l-5.525-3.3c-.14-.083-.252-.283-.252-.445v-6.88c0-.16.113-.226.252-.143l5.525 3.3c.14.083.252.283.252.445v6.88zm9.118-.458c0 1.456-1.116 1.968-2.5 1.144s-2.492-2.674-2.492-4.13 1.116-1.968 2.492-1.144 2.5 2.674 2.5 4.13" fill="#e5e6e7"/><path d="M91.964 89.347c0 .978-.748 1.32-1.67.768s-1.672-1.794-1.672-2.77.748-1.32 1.672-.768 1.67 1.794 1.67 2.77" fill="#6c6e70"/><path d="M10.017 39.542c0 1.456-1.115 1.968-2.49 1.144s-2.49-2.674-2.49-4.13 1.115-1.968 2.49-1.144 2.49 2.674 2.49 4.13" fill="#e5e6e7"/><path d="M9.198 39.05c0 .978-.75 1.32-1.672.768s-1.672-1.794-1.672-2.77.748-1.32 1.672-.768 1.672 1.794 1.672 2.77" fill="#58585b"/><path d="M5.94 49.178c0 .728-.558.983-1.245.57S3.45 48.412 3.45 47.685s.557-.984 1.246-.57S5.94 48.45 5.94 49.178M37.18 68.5c0 .728-.558.983-1.245.57S34.7 67.734 34.7 67.007s.557-.984 1.246-.57S37.18 67.77 37.18 68.5m19.026 11.606c0 .728-.558.983-1.245.57s-1.246-1.336-1.246-2.064.557-.984 1.246-.57 1.245 1.336 1.245 2.064m37.21 21.8c0 .728-.558.983-1.246.57s-1.245-1.337-1.245-2.064.557-.984 1.245-.57 1.246 1.335 1.246 2.064" fill="#e5e6e7"/><path d="M54.33 68.37l-1.995-1.197v-2.326l1.995 1.198zm-.046 3.508l-1.992-1.196v-2.325l1.992 1.195zm-3.714-5.764l-1.996-1.2V62.6l1.996 1.197zm-.045 3.504l-2-1.196v-2.324l2 1.194zm1.328-50.998l-5.405-3.263-4.893 2.713 5.27 3.18-.788.437-5.27-3.18-4.965 2.752 5.54 3.343-.8.438-6.438-3.886 12.223-6.776 6.303 3.804zm-.406 3.676l2.134 1.288-.7.388-2.134-1.288-4.785 2.652c-1.38.766-1.866 1.054-.747 1.73.458.276.783.4 1.782.62l-.824.457c-.243-.042-.585-.147-.962-.27-.36-.134-.754-.288-1.026-.452-.847-.512-1.26-1.342-.04-2.018l5.8-3.2-2.05-1.237.7-.388 2.05 1.238 1.917-1.064 1.3-.08.255.154-2.67 1.48zm2.74 3.272l.035.02c1.84-.197 2.966-.015 4.067.65 1.627.982 1.7 2.334-.452 3.526l-4.928 2.733-.813-.5 4.6-2.543c1.738-.964 2.167-1.9.7-2.8-1.118-.674-2.37-.766-4.2-.55l-5.646 3.13-.814-.492 12.224-6.776.813.5-5.574 3.1zm10.934 8.488c1.3-1.048 1.246-1.967-.06-2.754-1.253-.757-3.114-.863-4.872-.222l4.93 2.976zm-5.73-2.65c-2.3 1-2.333 2.804-.605 3.847 1.017.614 2.205.916 4.03 1.042l-.967.536c-1.633-.134-2.906-.508-4.007-1.172-2.202-1.33-2.002-3.285.488-4.666 2.366-1.312 5.562-1.375 7.577-.16 1.627.982 2.17 2.7-.517 4.192l-5.998-3.62zm14.206 6.107c-.03-.827-.188-1.172-.6-1.428-.746-.45-2.435-.514-4.752-.2l-5.055 2.803-.812-.492 8.047-4.46.813.5-2.115 1.173.034.02c2.404-.293 4.1-.168 4.936.344.526.317.748.742.795 1.58l-1.28.16zm14.604 6.2c-.72-1.307-1.768-2.375-3.2-3.234-3.135-1.892-6.28-1.424-8.1-.42-2.17 1.202-1.993 2.967.396 4.4.7.43 1.14.604 2.345.918l1.434-.795-1.678-1.013 2.24-1.242 4.558 2.75-5 2.772c-1.815.005-4.648-.896-6.512-2.02-4.033-2.434-4.298-5.604-.642-7.63 3.73-2.066 9.138-1.77 13.256.716 1.728 1.043 2.993 2.284 3.553 3.308l-2.67 1.48zm3.896 4.095l1.524.92c.797.48 1.935.753 2.975.177.914-.507.82-1.104-.264-1.758l-1.457-.88-2.778 1.54zm7.306-1.4c2.372 1.43 2.093 3.214.265 4.227-1.344.745-3.008.903-4.975.463.56 1.064-.6 2.113-2.55 5.082l-3.17-1.912c1.38-2.197 3.27-3.775 1.712-4.716l-.83-.502-4.965 2.753L82 50.064l12.224-6.777 5.168 3.12zM96.2 58.633l-2.88-1.738 12.224-6.777 2.88 1.74zm7.506 1.937l1.88 1.136c2.896 1.748 5.84 1.118 7.634.124 2.096-1.162 2.802-2.8.075-4.438l-1.847-1.115-7.743 4.293zm12.204-4.194c4.22 2.546 3.6 5.395.258 7.253-3.513 1.948-8.195 2.1-12.804-.67l-4.778-2.884L110.82 53.3l5.1 3.078z" fill="#fefefe"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/security/POE_DVS_Camera.svg b/src/main/webapp/img/lib/allied_telesis/security/POE_DVS_Camera.svg index 3f2106545868bbf60024598de3a60125465736f4..8a99ea02da2ea5492b387fc7eeb66aa6589219b9 100644 --- a/src/main/webapp/img/lib/allied_telesis/security/POE_DVS_Camera.svg +++ b/src/main/webapp/img/lib/allied_telesis/security/POE_DVS_Camera.svg @@ -1,301 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 84.724 66.274" style="enable-background:new 0 0 84.724 66.274;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#626366;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;} - .st1{fill:#A6A8AB;} - .st2{fill:#808184;} - .st3{fill:#90989E;} - .st4{fill:#8C9499;} - .st5{fill:#8E969C;} - .st6{fill:#B3B5B7;} - .st7{fill:#939BA0;} - .st8{fill:#231F20;} - .st9{fill:#B1B7BC;} - .st10{fill:#C8CDD0;} - .st11{fill:#939597;} - .st12{fill:#6C6E70;} - .st13{fill:#898B8E;} - .st14{fill:none;stroke:#BABCBC;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;} - .st15{fill:none;stroke:#DFE0DF;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;} - .st16{fill:#FEFEFE;} - .st17{fill:none;stroke:#636466;stroke-width:3;} - .st18{fill:none;stroke:#636466;stroke-width:2;} - .st19{fill:#BBBDBF;} - .st20{fill:#D0D2D3;} - .st21{fill:#626466;} - .st22{fill:#E5E6E7;} - .st23{fill:#999B9D;} - .st24{fill:#E1E2E3;} -</style> -<title>icon-POE-camera</title> -<desc>Created with Sketch.</desc> -<g id="Page-1"> - <g id="Desktop" transform="translate(-59.000000, -214.000000)"> - <g id="icon-POE-camera" transform="translate(60.000000, 215.000000)"> - <g id="Group-10" transform="translate(60.000000, 0.274200)"> - <g id="Group-3"> - <g id="Clip-2"> - </g> - <path id="Stroke-1" class="st0" d="M0.808,0.93c0.691-0.368,1.365-0.586,1.994-0.669"/> - </g> - <g id="Group-6"> - <g id="Clip-5"> - </g> - <path id="Stroke-4" class="st0" d="M2.802,0.261c0.572-0.073,1.109-0.032,1.594,0.111l14.386,8.521"/> - </g> - <g id="Group-9"> - <g id="Clip-8"> - </g> - <path id="Stroke-7" class="st0" d="M18.783,8.893L4.396,0.372C4.656,0.45,4.9,0.556,5.129,0.692l14.386,8.52 - C19.287,9.076,19.043,8.97,18.783,8.893"/> - </g> - </g> - <g id="Group-21" transform="translate(7.000000, 0.274200)"> - <path id="Stroke-11" class="st0" d="M53.808,0.93c1.654-0.88,3.191-0.908,4.32-0.238l14.387,8.52 - c-1.129-0.67-2.666-0.642-4.32,0.238"/> - <path id="Stroke-13" class="st0" d="M17.105,63.036l-14.386-8.52c-0.353-0.21-0.668-0.488-0.931-0.83l14.385,8.52 - C16.439,62.548,16.753,62.825,17.105,63.036"/> - <path id="Stroke-15" class="st0" d="M16.174,62.206l-14.386-8.52c-0.277-0.358-0.5-0.787-0.658-1.281l14.386,8.52 - C15.676,61.419,15.899,61.848,16.174,62.206"/> - <path id="Stroke-17" class="st0" d="M1.13,52.405c-0.137-0.422-0.225-0.891-0.26-1.404"/> - <path id="Stroke-19" class="st0" d="M0.87,51.001c0-0.021-0.002-0.044-0.002-0.066"/> - </g> - <path id="Stroke-22" class="st0" d="M7.868,51.209L7.022,36.424"/> - <path id="Stroke-23" class="st0" d="M12.456,26.914L60.809,1.205"/> - <g id="Group-43" transform="translate(7.000000, 26.274200)"> - <g id="Group-27"> - <g id="Clip-26"> - </g> - <path id="Stroke-25" class="st0" d="M0.022,10.15c-0.021-0.41-0.01-0.83,0.033-1.252"/> - </g> - <g id="Group-30"> - <g id="Clip-29"> - </g> - <path id="Stroke-28" class="st0" d="M0.055,8.898c0.033-0.324,0.086-0.651,0.156-0.979"/> - </g> - <g id="Group-33"> - <g id="Clip-32"> - </g> - <path id="Stroke-31" class="st0" d="M0.212,7.919c0.096-0.445,0.223-0.892,0.383-1.332"/> - </g> - <g id="Group-36"> - <g id="Clip-35"> - </g> - <path id="Stroke-34" class="st0" d="M0.594,6.587C1,5.443,1.606,4.337,2.352,3.36"/> - </g> - <g id="Group-39"> - <g id="Clip-38"> - </g> - <path id="Stroke-37" class="st0" d="M2.352,3.361c0.709-0.926,1.545-1.734,2.461-2.338"/> - </g> - <g id="Group-42"> - <g id="Clip-41"> - </g> - <path id="Stroke-40" class="st0" d="M4.813,1.023C5.022,0.885,5.237,0.755,5.456,0.64"/> - </g> - </g> - <g id="Group-48" transform="translate(7.000000, 8.274200)"> - <path id="Stroke-44" class="st0" d="M0.022,28.15c-0.201-3.551,2.23-7.807,5.434-9.51"/> - <path id="Stroke-46" class="st0" d="M68.195,1.45c3.201-1.703,5.971-0.211,6.174,3.339l0.844,14.785 - c0.201,3.55-2.237,7.809-5.442,9.513L21.422,54.796c-3.206,1.704-5.965,0.208-6.168-3.342"/> - </g> - <g id="Group-58" transform="translate(60.000000, 0.274200)"> - <g id="Group-51"> - <g id="Clip-50"> - </g> - <path id="Fill-49" class="st1" d="M15.195,9.448L0.808,0.929C1.5,0.561,2.174,0.342,2.802,0.261l14.387,8.52 - C16.56,8.862,15.886,9.081,15.195,9.448"/> - </g> - <g id="Group-54"> - <g id="Clip-53"> - </g> - <path id="Fill-52" class="st2" d="M17.189,8.782L2.802,0.261c0.573-0.073,1.11-0.033,1.594,0.111l14.387,8.52 - C18.298,8.748,17.761,8.707,17.189,8.782"/> - </g> - <g id="Group-57"> - <g id="Clip-56"> - </g> - <path id="Fill-55" class="st3" d="M18.783,8.892L4.396,0.371c0.26,0.078,0.504,0.184,0.733,0.32l14.386,8.52 - C19.287,9.075,19.043,8.968,18.783,8.892"/> - </g> - </g> - <g id="Group-71" transform="translate(7.000000, 50.274200)"> - <g id="Group-61"> - <g id="Clip-60"> - </g> - <path id="Fill-59" class="st4" d="M17.105,13.034L2.719,4.514c-0.353-0.21-0.668-0.487-0.931-0.829l14.385,8.519 - C16.439,12.547,16.753,12.824,17.105,13.034"/> - </g> - <g id="Group-64"> - <g id="Clip-63"> - </g> - <path id="Fill-62" class="st5" d="M16.174,12.204L1.788,3.685c-0.277-0.358-0.5-0.788-0.658-1.28l14.386,8.52 - C15.676,11.419,15.899,11.847,16.174,12.204"/> - </g> - <g id="Group-67"> - <g id="Clip-66"> - </g> - <path id="Fill-65" class="st6" d="M15.515,10.925L1.129,2.405C0.993,1.984,0.905,1.515,0.869,1l14.388,8.521 - C15.292,10.034,15.38,10.505,15.515,10.925"/> - </g> - <g id="Group-70"> - <g id="Clip-69"> - </g> - <path id="Fill-68" class="st7" d="M15.258,9.521L0.87,1c0-0.02-0.002-0.043-0.002-0.065l14.386,8.52 - C15.256,9.476,15.258,9.5,15.258,9.521"/> - </g> - </g> - <polygon id="Fill-72" class="st6" points="22.254,59.728 7.868,51.208 7.023,36.422 21.41,44.942 "/> - <polygon id="Fill-73" class="st8" points="26.844,35.433 12.456,26.913 60.809,1.204 75.196,9.723 "/> - <g id="Group-92" transform="translate(7.000000, 26.274200)"> - <g id="Group-76"> - <g id="Clip-75"> - </g> - <path id="Fill-74" class="st6" d="M14.41,18.668l-14.388-8.52c-0.021-0.41-0.009-0.83,0.034-1.252l14.387,8.519 - C14.398,17.839,14.387,18.259,14.41,18.668"/> - </g> - <g id="Group-79"> - <g id="Clip-78"> - </g> - <path id="Fill-77" class="st9" d="M14.443,17.415L0.055,8.895c0.034-0.324,0.086-0.65,0.157-0.976l14.387,8.517 - C14.529,16.765,14.474,17.091,14.443,17.415"/> - </g> - <g id="Group-82"> - <g id="Clip-81"> - </g> - <path id="Fill-80" class="st1" d="M14.599,16.437L0.211,7.919c0.096-0.445,0.223-0.892,0.383-1.333l14.388,8.52 - C14.824,15.546,14.693,15.994,14.599,16.437"/> - </g> - <g id="Group-85"> - <g id="Clip-84"> - </g> - <path id="Fill-83" class="st10" d="M14.982,15.106L0.594,6.586C1.001,5.443,1.606,4.335,2.352,3.36l14.388,8.52 - C15.992,12.855,15.388,13.962,14.982,15.106"/> - </g> - <g id="Group-88"> - <g id="Clip-87"> - </g> - <path id="Fill-86" class="st11" d="M16.74,11.88L2.352,3.359c0.709-0.926,1.545-1.734,2.461-2.336l14.386,8.519 - C18.285,10.146,17.447,10.952,16.74,11.88"/> - </g> - <g id="Group-91"> - <g id="Clip-90"> - </g> - <path id="Fill-89" class="st12" d="M19.199,9.542L4.813,1.022c0.209-0.138,0.424-0.268,0.643-0.383l14.388,8.519 - C19.625,9.273,19.41,9.403,19.199,9.542"/> - </g> - </g> - <g id="Group-244" transform="translate(0.000000, 8.274200)"> - <path id="Fill-93" class="st13" d="M75.195,1.448c3.201-1.703,5.971-0.211,6.174,3.339l0.844,14.785 - c0.201,3.552-2.237,7.81-5.442,9.515L28.422,54.794c-3.206,1.705-5.965,0.209-6.168-3.34L21.41,36.668 - c-0.201-3.55,2.23-7.808,5.433-9.51L75.195,1.448z"/> - <path id="Stroke-95" class="st14" d="M25.263,55.632c-1.51-0.248-2.623-1.422-2.934-3.305"/> - <path id="Stroke-97" class="st14" d="M78.738,1.06c0.689,0.195,1.277,0.596,1.725,1.182"/> - <path id="Stroke-99" class="st15" d="M22.33,52.327c-0.035-0.221-0.061-0.451-0.076-0.691L21.41,36.85 - c-0.201-3.55,2.231-7.807,5.434-9.51L75.195,1.63c1.301-0.691,2.53-0.857,3.543-0.571"/> - <path id="Fill-101" class="st16" d="M36.476,35.153l-3.037,1.639v-2.389c0-0.694-0.031-1.112-0.097-1.248 - c-0.065-0.138-0.209-0.146-0.429-0.026c-0.251,0.134-0.41,0.325-0.476,0.57c-0.069,0.247-0.102,0.718-0.102,1.414v6.385 - c0,0.667,0.033,1.084,0.102,1.252c0.066,0.167,0.219,0.188,0.454,0.06c0.226-0.121,0.374-0.303,0.443-0.546 - c0.07-0.241,0.105-0.739,0.105-1.494v-1.727l3.037-1.64v0.536c0,1.423-0.086,2.478-0.257,3.165 - c-0.17,0.688-0.547,1.413-1.132,2.175c-0.585,0.764-1.304,1.377-2.16,1.838c-0.888,0.48-1.624,0.688-2.2,0.619 - c-0.577-0.068-0.96-0.386-1.147-0.956c-0.189-0.567-0.281-1.527-0.281-2.875v-4.016c0-0.99,0.029-1.749,0.086-2.276 - c0.058-0.525,0.23-1.094,0.516-1.708c0.286-0.614,0.682-1.188,1.189-1.725c0.508-0.536,1.091-0.983,1.749-1.339 - c0.896-0.482,1.634-0.678,2.215-0.585c0.583,0.093,0.965,0.394,1.148,0.903c0.183,0.508,0.274,1.406,0.274,2.688 - C36.476,33.847,36.476,35.153,36.476,35.153z"/> - <path id="Fill-103" class="st16" d="M41.206,35.452c-0.154-1.475-0.309-3.316-0.463-5.523c-0.308,2.799-0.504,4.828-0.583,6.087 - L41.206,35.452z M42.815,25.744l1.736,12.808l-3.103,1.676l-0.162-2.382l-1.087,0.586l-0.183,2.569l-3.139,1.695l1.549-14.582 - L42.815,25.744z"/> - <path id="Fill-105" class="st16" d="M54.438,19.471v13.745l-2.655,1.434l-0.003-9.279l-1.058,9.851l-1.883,1.017l-1.115-8.467 - l-0.002,9.071l-2.655,1.432V24.529l3.93-2.121c0.117,0.763,0.237,1.672,0.36,2.728l0.431,3.262l0.699-6.795L54.438,19.471z"/> - <polygon id="Fill-107" class="st16" points="55.657,18.811 60.721,16.078 60.721,18.829 58.694,19.923 58.694,22.53 - 60.593,21.506 60.593,24.121 58.694,25.145 58.694,28.167 60.923,26.964 60.923,29.715 55.657,32.558 "/> - <path id="Fill-109" class="st16" d="M64.834,16.211v3.057c0.341-0.185,0.58-0.369,0.719-0.554 - c0.135-0.185,0.205-0.579,0.205-1.185v-0.755c0-0.436-0.068-0.687-0.199-0.751C65.426,15.959,65.185,16.022,64.834,16.211z - M61.797,15.498l2.149-1.16c1.433-0.773,2.404-1.232,2.911-1.376s0.921-0.034,1.24,0.327c0.32,0.363,0.48,1.13,0.48,2.301 - c0,1.07-0.112,1.851-0.338,2.341c-0.227,0.489-0.671,0.948-1.335,1.382c0.601-0.15,1.005-0.133,1.211,0.05 - c0.207,0.183,0.337,0.385,0.387,0.602c0.05,0.22,0.075,0.884,0.075,1.993v3.627l-2.819,1.522v-4.568 - c0-0.736-0.05-1.166-0.149-1.287c-0.099-0.124-0.357-0.07-0.775,0.155v6.198l-3.037,1.639V15.498z"/> - <path id="Fill-111" class="st16" d="M73.393,18.076c-0.153-1.475-0.308-3.315-0.462-5.524c-0.309,2.8-0.505,4.829-0.583,6.088 - L73.393,18.076z M75.002,8.368l1.738,12.809l-3.104,1.675l-0.163-2.382l-1.087,0.586l-0.181,2.569l-3.14,1.694l1.549-14.581 - L75.002,8.368z"/> - <path id="Stroke-113" class="st17" d="M14.286,49.795c-1.088,0.569-2.018,1.038-2.269,1.164 - c-0.376,0.188-1.722,0.815-2.985,0.302C1.923,48.377-0.247,39.256,0.716,36.37c0.234-0.702,0.63-1.779,1.341-2.448 - c0.405-0.382,2.79-1.642,4.563-2.547"/> - <path id="Stroke-115" class="st18" d="M2.022,33.972c0.406-0.382,2.791-1.642,4.563-2.547c1.041-0.531,1.869-0.94,1.965-0.979 - c0.65-0.264,1.761-0.566,3.668,0.071c1.072,0.358,3.556,2.08,5.065,4.629c1.322,2.233,2.816,4.863,2.549,9.256 - c-0.123,1.989-1.074,2.75-1.201,2.9c-0.324,0.38-2.571,1.599-4.379,2.543c-1.088,0.569-2.017,1.038-2.269,1.164 - c-0.375,0.188-1.723,0.815-2.984,0.302c-7.11-2.884-9.28-12.005-8.318-14.891C0.916,35.718,1.311,34.641,2.022,33.972z"/> - <g id="Group-235" transform="translate(0.000000, 30.000000)"> - <g id="Clip-166"> - </g> - <path id="Fill-165" class="st1" d="M2.652,3.572l5.832-3.095C9.065,0.169,9.742,0.04,10.487,0.11L4.655,3.205 - C3.91,3.135,3.233,3.264,2.652,3.572"/> - <g id="Clip-169"> - </g> - <path id="Fill-168" class="st19" d="M4.655,3.205l5.832-3.095c0.451,0.041,0.928,0.156,1.423,0.346L6.078,3.551 - C5.583,3.361,5.106,3.247,4.655,3.205"/> - <g id="Clip-172"> - </g> - <path id="Fill-171" class="st20" d="M6.078,3.551l5.832-3.095c0.388,0.149,0.788,0.346,1.196,0.591L7.274,4.142 - C6.866,3.897,6.467,3.7,6.078,3.551"/> - <path id="Fill-175" class="st21" d="M7.275,5.197c3.253,1.955,5.898,6.729,5.901,10.651s-2.637,5.52-5.891,3.566 - c-3.253-1.955-5.899-6.729-5.902-10.651C1.38,4.841,4.021,3.242,7.275,5.197"/> - <g id="Clip-206"> - </g> - <path id="Fill-205" class="st20" d="M7.274,4.143l5.832-3.095c0.059,0.035,0.117,0.072,0.176,0.108L7.45,4.251 - C7.391,4.215,7.333,4.179,7.274,4.143"/> - <g id="Clip-209"> - </g> - <path id="Fill-208" class="st22" d="M7.45,4.251l5.832-3.095c0.499,0.315,0.984,0.687,1.45,1.106L8.9,5.357 - C8.434,4.938,7.949,4.566,7.45,4.251"/> - <g id="Clip-212"> - </g> - <path id="Fill-211" class="st16" d="M8.9,5.358l5.832-3.095c0.484,0.435,0.948,0.921,1.386,1.447l-5.832,3.095 - C9.848,6.279,9.384,5.793,8.9,5.358"/> - <g id="Clip-215"> - </g> - <path id="Fill-214" class="st16" d="M10.286,6.804l5.832-3.095c1.111,1.335,2.051,2.924,2.713,4.578l-5.832,3.096 - C12.337,9.728,11.397,8.139,10.286,6.804"/> - <g id="Clip-218"> - </g> - <path id="Fill-217" class="st16" d="M12.999,11.383l5.832-3.095C19.049,8.83,19.236,9.38,19.39,9.93l-5.832,3.095 - C13.404,12.475,13.217,11.925,12.999,11.383"/> - <g id="Clip-221"> - </g> - <path id="Fill-220" class="st22" d="M13.557,13.025l5.832-3.095c0.17,0.604,0.299,1.209,0.382,1.806l-5.832,3.095 - C13.856,14.234,13.727,13.629,13.557,13.025"/> - <g id="Clip-224"> - </g> - <path id="Fill-223" class="st20" d="M13.939,14.831l5.832-3.095c0.073,0.523,0.112,1.039,0.112,1.543 - c0,0.057,0,0.115-0.001,0.172l-5.832,3.095c0.001-0.057,0.001-0.114,0.001-0.172C14.051,15.87,14.012,15.354,13.939,14.831"/> - <g id="Clip-227"> - </g> - <path id="Fill-226" class="st19" d="M14.051,16.546l5.832-3.095c-0.011,0.608-0.077,1.165-0.194,1.668l-5.832,3.095 - C13.974,17.711,14.04,17.154,14.051,16.546"/> - <g id="Clip-230"> - </g> - <path id="Fill-229" class="st1" d="M13.856,18.215l5.832-3.095c-0.317,1.362-1.005,2.327-1.942,2.824l-5.832,3.096 - C12.851,20.542,13.539,19.577,13.856,18.215"/> - <path id="Fill-233" class="st23" d="M7.285,19.414c3.254,1.955,5.895,0.356,5.892-3.566S10.528,7.152,7.275,5.197 - C4.021,3.243,1.381,4.841,1.384,8.763C1.387,12.685,4.032,17.459,7.285,19.414 M7.274,4.143 - c3.734,2.243,6.775,7.729,6.778,12.231c0.003,4.501-3.032,6.338-6.766,4.095c-3.733-2.243-6.768-7.727-6.772-12.228 - C0.512,3.74,3.541,1.899,7.274,4.143"/> - </g> - <path id="Fill-236" class="st24" d="M10.73,40.974c1.321,2.831,1.007,5.773-0.704,6.571c-1.71,0.8-4.168-0.847-5.489-3.679 - c-1.322-2.83-1.007-5.773,0.704-6.572S9.409,38.142,10.73,40.974"/> - <path id="Fill-238" class="st16" d="M34.964,13.057l0.785-0.401c0.698-0.357,0.576-0.977-0.711-1.784 - c-1.234-0.773-2.284-1.04-3.167-0.589l-0.735,0.375L34.964,13.057z M27.501,10.388l3.088-1.578 - c1.79-0.915,4.291-0.044,6.179,1.139c2.611,1.636,2.677,2.946,1.009,3.797l-0.943,0.482l5.027,3.15l-1.765,0.902L27.501,10.388z - "/> - <path id="Fill-240" class="st16" d="M47.631,12.585c1.042-0.532-0.073-1.427-3.461-3.55c-3.368-2.11-4.846-2.841-5.889-2.309 - c-1.041,0.533,0.094,1.439,3.462,3.549C45.131,12.398,46.589,13.117,47.631,12.585 M36.412,5.555 - c2.648-1.352,5.696,0.18,9.525,2.579c3.827,2.398,6.211,4.271,3.564,5.623c-2.646,1.352-5.694-0.182-9.523-2.58 - C36.151,8.778,33.765,6.907,36.412,5.555"/> - <polygon id="Fill-242" class="st16" points="45.572,1.156 47.653,2.461 44.53,4.057 47.492,5.914 50.433,4.411 52.515,5.716 - 49.575,7.218 52.961,9.341 56.209,7.682 58.29,8.986 53.276,11.546 40.683,3.654 "/> - </g> - </g> - </g> -</g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 84.724 66.274"><g fill="none" stroke="#626366" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M61.808 2.204c.7-.368 1.365-.586 1.994-.67m0 .001c.572-.073 1.1-.032 1.594.1l14.386 8.52"/><path d="M79.783 10.167l-14.387-8.52c.26.078.504.184.733.32l14.386 8.52a3.19 3.19 0 0 0-.732-.319"/><path d="M61.808 2.204c1.654-.88 3.2-.908 4.32-.238l14.387 8.52c-1.13-.67-2.666-.642-4.32.238M25.105 64.3L10.72 55.8a3.14 3.14 0 0 1-.93-.83l14.385 8.52a3.36 3.36 0 0 0 .932.83m-.933-.84L9.788 54.96c-.277-.358-.5-.787-.658-1.28l14.386 8.52a4.23 4.23 0 0 0 .658 1.281M9.13 53.68a5.83 5.83 0 0 1-.26-1.404"/><path d="M8.87 52.275l-.002-.066m0 .001l-.846-14.785m5.434-9.51L61.8 2.205M8.022 37.424a8.39 8.39 0 0 1 .033-1.252"/><path d="M8.055 36.172a9.13 9.13 0 0 1 .156-.979m.001 0c.096-.445.223-.892.383-1.332m-.001-.001c.406-1.144 1.012-2.25 1.758-3.227m0 .002c.7-.926 1.545-1.734 2.46-2.338m.001 0l.643-.383"/><path d="M8.022 37.424c-.2-3.55 2.23-7.807 5.434-9.5m62.74-17.2c3.2-1.703 5.97-.2 6.174 3.34l.844 14.785c.2 3.55-2.237 7.8-5.442 9.513l-48.35 25.7c-3.206 1.704-5.965.208-6.168-3.342"/></g><path d="M76.195 10.722l-14.387-8.52c.692-.368 1.366-.587 1.994-.668l14.387 8.52c-.63.08-1.303.3-1.994.667" fill="#a6a8ab"/><path d="M78.19 10.056l-14.387-8.52a3.86 3.86 0 0 1 1.594.111l14.387 8.52c-.485-.144-1.022-.185-1.594-.1" fill="#808184"/><path d="M79.783 10.166l-14.387-8.52c.26.078.504.184.733.32l14.386 8.52a3.15 3.15 0 0 0-.732-.319" fill="#90989e"/><path d="M25.105 64.308l-14.386-8.52a3.3 3.3 0 0 1-.931-.829l14.385 8.52c.266.343.58.62.932.83" fill="#8c9499"/><path d="M24.174 63.478L9.788 54.96c-.277-.358-.5-.788-.658-1.28l14.386 8.52c.16.494.383.922.658 1.28" fill="#8e969c"/><path d="M23.515 62.2L9.13 53.68c-.136-.42-.224-.9-.26-1.405l14.388 8.52a5.91 5.91 0 0 0 .258 1.404" fill="#b3b5b7"/><path d="M23.258 60.795L8.87 52.274l-.002-.065 14.386 8.52.004.066" fill="#939ba0"/><path d="M23.254 60.728l-14.386-8.52-.845-14.786 14.387 8.52z" fill="#b3b5b7"/><path d="M27.844 36.433l-14.388-8.52L61.81 2.204l14.387 8.52z" fill="#231f20"/><path d="M22.4 45.942l-14.388-8.52c-.02-.4-.01-.83.034-1.252l14.387 8.52a7.76 7.76 0 0 0-.033 1.253" fill="#b3b5b7"/><path d="M22.443 44.69L8.055 36.17a9 9 0 0 1 .157-.976L22.6 43.7a8.69 8.69 0 0 0-.156.979" fill="#b1b7bc"/><path d="M22.6 43.71L8.21 35.193a10.25 10.25 0 0 1 .383-1.333l14.388 8.52a10.27 10.27 0 0 0-.383 1.331" fill="#a6a8ab"/><path d="M22.982 42.38L8.594 33.86a11.97 11.97 0 0 1 1.758-3.226l14.388 8.52c-.748.975-1.352 2.082-1.758 3.226" fill="#c8cdd0"/><path d="M24.74 39.154l-14.388-8.52c.71-.926 1.545-1.734 2.46-2.336l14.386 8.52c-.914.604-1.752 1.4-2.46 2.338" fill="#939597"/><path d="M27.2 36.816l-14.386-8.52.643-.383 14.388 8.52c-.22.115-.434.245-.645.384" fill="#6c6e70"/><path d="M76.195 10.722c3.2-1.703 5.97-.21 6.174 3.34l.844 14.785c.2 3.552-2.237 7.8-5.442 9.515l-48.35 25.707c-3.206 1.705-5.965.21-6.168-3.34L22.4 45.942c-.2-3.55 2.23-7.808 5.433-9.5l48.352-25.7z" fill="#898b8e"/><g fill="none" stroke-linecap="round" stroke-linejoin="round"><path d="M26.263 64.906c-1.5-.248-2.623-1.422-2.934-3.305m56.41-51.267a3.26 3.26 0 0 1 1.725 1.182" stroke="#babcbc" stroke-width=".75"/><path d="M23.33 61.6l-.076-.69-.844-14.786c-.2-3.55 2.23-7.807 5.434-9.5l48.35-25.7c1.3-.69 2.53-.857 3.543-.57" stroke="#dfe0df" stroke-width=".75"/></g><path d="M37.476 44.427l-3.037 1.64v-2.4c0-.694-.03-1.112-.097-1.248s-.2-.146-.43-.026c-.25.134-.4.325-.476.57s-.102.718-.102 1.414v6.385c0 .667.033 1.084.102 1.252s.22.188.454.06c.226-.12.374-.303.443-.546s.105-.74.105-1.494v-1.727l3.037-1.64v.536c0 1.423-.086 2.478-.257 3.165s-.547 1.413-1.132 2.175a6.7 6.7 0 0 1-2.16 1.838c-.888.48-1.624.688-2.2.62s-.96-.386-1.147-.956-.28-1.527-.28-2.875v-4.016l.086-2.276c.058-.525.23-1.094.516-1.708s.682-1.188 1.2-1.725a6.95 6.95 0 0 1 1.749-1.339c.896-.482 1.634-.678 2.215-.585s.965.394 1.148.903.274 1.406.274 2.688v1.306zm4.73.3l-.463-5.523-.583 6.087 1.046-.564zm1.6-9.708l1.736 12.808-3.103 1.676-.162-2.382-1.087.586-.183 2.57-3.14 1.695 1.55-14.582 4.4-2.37zm11.622-6.273V42.5l-2.655 1.434-.003-9.28-1.058 9.85-1.883 1.017-1.115-8.467-.002 9.07-2.655 1.432V33.803l3.93-2.12.8 6 .7-6.795 3.95-2.132zm1.22-.66l5.064-2.733v2.75l-2.027 1.094v2.607l1.9-1.024v2.615l-1.9 1.024v3.022l2.23-1.203v2.75l-5.266 2.843zm9.177-2.6v3.057c.34-.185.58-.37.72-.554s.205-.58.205-1.185v-.755c0-.436-.068-.687-.2-.75s-.374-.001-.725.188zm-3.037-.713l2.15-1.16c1.433-.773 2.404-1.232 2.9-1.376s.92-.034 1.24.327.48 1.13.48 2.3c0 1.07-.112 1.85-.338 2.34s-.67.948-1.335 1.382c.6-.15 1.005-.133 1.2.05s.337.385.387.602.075.884.075 1.993v3.627l-2.82 1.522V31.81c0-.736-.05-1.166-.15-1.287s-.357-.07-.775.155v6.198l-3.037 1.64V24.772zm11.596 2.578l-.462-5.524-.583 6.088 1.045-.564zm1.6-9.708l1.738 12.8-3.104 1.675-.163-2.382-1.087.586-.18 2.57-3.14 1.694 1.55-14.58 4.388-2.37z" fill="#fefefe"/><g fill="none" stroke="#636466"><path d="M15.286 59.07l-2.27 1.164c-.376.188-1.722.815-2.985.302-7.11-2.884-9.28-12.005-8.316-14.89.234-.702.63-1.78 1.34-2.448.405-.382 2.8-1.642 4.563-2.547" stroke-width="3"/><path d="M3.022 43.246c.406-.382 2.79-1.642 4.563-2.547l1.965-.98c.65-.264 1.76-.566 3.668.07 1.072.358 3.556 2.08 5.065 4.63 1.322 2.233 2.816 4.863 2.55 9.256-.123 1.99-1.074 2.75-1.2 2.9-.324.38-2.57 1.6-4.38 2.543l-2.27 1.164c-.375.188-1.723.815-2.984.302C2.89 57.7.72 48.58 1.68 45.694c.235-.702.63-1.78 1.34-2.448z" stroke-width="2"/></g><path d="M3.652 42.846l5.832-3.095c.58-.308 1.258-.437 2.003-.367L5.655 42.48c-.745-.07-1.422.06-2.003.367" fill="#a6a8ab"/><path d="M5.655 42.48l5.832-3.095c.45.04.928.156 1.423.346l-5.832 3.095c-.495-.2-.972-.304-1.423-.346" fill="#bbbdbf"/><path d="M7.078 42.825L12.9 39.73a7.69 7.69 0 0 1 1.196.591l-5.832 3.095c-.408-.245-.807-.442-1.196-.59" fill="#d0d2d3"/><path d="M8.275 44.47c3.253 1.955 5.898 6.73 5.9 10.65s-2.637 5.52-5.89 3.566-5.9-6.73-5.902-10.65 2.638-5.52 5.892-3.566" fill="#626466"/><path d="M8.274 43.417l5.832-3.095.176.108-5.832 3.095-.176-.108" fill="#d0d2d3"/><path d="M8.45 43.525l5.832-3.095a10.81 10.81 0 0 1 1.45 1.106L9.9 44.63a10.81 10.81 0 0 0-1.45-1.106" fill="#e5e6e7"/><g fill="#fefefe"><path d="M9.9 44.632l5.832-3.095c.484.435.948.92 1.386 1.447l-5.832 3.095c-.438-.526-.902-1.012-1.386-1.447"/><path d="M11.286 46.078l5.832-3.095a17.3 17.3 0 0 1 2.713 4.578L14 50.657a17.29 17.29 0 0 0-2.713-4.579"/><path d="M14 50.657l5.832-3.095a15.89 15.89 0 0 1 .559 1.642L14.558 52.3a15.89 15.89 0 0 0-.559-1.642"/></g><path d="M14.557 52.3l5.832-3.095a13.59 13.59 0 0 1 .382 1.806l-5.832 3.095a13.59 13.59 0 0 0-.382-1.806" fill="#e5e6e7"/><path d="M14.94 54.105L20.77 51a11.18 11.18 0 0 1 .112 1.543l-.001.172-5.832 3.095v-.172a11.18 11.18 0 0 0-.112-1.543" fill="#d0d2d3"/><path d="M15.05 55.82l5.832-3.095c-.01.608-.077 1.165-.194 1.668l-5.832 3.095c.117-.503.183-1.06.194-1.668" fill="#bbbdbf"/><path d="M14.856 57.49l5.832-3.095c-.317 1.362-1.005 2.327-1.942 2.824l-5.832 3.096c.937-.498 1.625-1.463 1.942-2.825" fill="#a6a8ab"/><path d="M8.285 58.688c3.254 1.955 5.895.356 5.892-3.566s-2.65-8.696-5.902-10.65-5.894-.356-5.89 3.566 2.648 8.696 5.9 10.65m-.01-15.27c3.734 2.243 6.775 7.73 6.778 12.23s-3.032 6.338-6.766 4.095-6.768-7.727-6.772-12.228 3.027-6.342 6.76-4.098" fill="#999b9d"/><path d="M11.73 50.248c1.32 2.83 1.007 5.773-.704 6.57s-4.168-.847-5.49-3.68-1.007-5.773.704-6.572 4.168.848 5.49 3.68" fill="#e1e2e3"/><path d="M35.964 22.33l.785-.4c.698-.357.576-.977-.7-1.784-1.234-.773-2.284-1.04-3.167-.6l-.735.375 3.828 2.4zM28.5 19.66l3.088-1.578c1.8-.915 4.3-.044 6.18 1.14 2.6 1.636 2.677 2.946 1 3.797l-.943.482 5.027 3.15-1.765.902-12.598-7.89zm20.13 2.2c1.042-.532-.073-1.427-3.46-3.55-3.368-2.1-4.846-2.84-5.9-2.3s.094 1.44 3.462 3.55c3.388 2.123 4.846 2.842 5.888 2.3M37.4 14.82c2.648-1.352 5.696.18 9.525 2.58s6.2 4.27 3.564 5.623-5.694-.182-9.523-2.58-6.213-4.27-3.566-5.622m9.162-4.39l2.08 1.305-3.123 1.596 2.962 1.857 2.94-1.503L53.515 15l-2.94 1.502 3.386 2.123 3.248-1.66 2.08 1.304-5.014 2.56-12.593-7.892z" fill="#fefefe"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/security/POS.svg b/src/main/webapp/img/lib/allied_telesis/security/POS.svg index 67d384885261fe6774734da7c2e67562cd07c182..efea772b6199ec92b42d695511b1b6383ee882ac 100644 --- a/src/main/webapp/img/lib/allied_telesis/security/POS.svg +++ b/src/main/webapp/img/lib/allied_telesis/security/POS.svg @@ -1,389 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 113.141 119.688" style="enable-background:new 0 0 113.141 119.688;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#626366;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;} - .st1{fill:#898B8E;} - .st2{fill:#BBBDBF;} - .st3{fill:#B3B5B7;} - .st4{fill:none;stroke:#E1E2E3;stroke-linecap:round;stroke-linejoin:round;} - .st5{fill:none;stroke:#626366;stroke-linecap:round;stroke-linejoin:round;} - .st6{fill:#9FA2A4;} - .st7{fill:#9D9FA2;} - .st8{fill:#A8AAAC;} - .st9{fill:#B2B4B7;} - .st10{fill:#939BA0;} - .st11{fill:#A4ACB1;} - .st12{fill:#8C9499;} - .st13{fill:#90989E;} - .st14{fill:#8E969C;} - .st15{fill:#FEFEFE;} - .st16{fill:#B8BDC1;} - .st17{fill:#E1E2E3;} - .st18{fill:#626466;} - .st19{fill:#ADAFB2;} - .st20{fill:#DDDEDF;} - .st21{fill:none;stroke:#626366;stroke-width:3;stroke-linejoin:round;} - .st22{fill:#626366;} - .st23{fill:#A9ABAE;} - .st24{fill:#D2D4D5;} - .st25{fill:#231F20;} - .st26{fill:none;stroke:#626366;stroke-linecap:round;} -</style> -<title>icon-POS</title> -<desc>Created with Sketch.</desc> -<polygon id="Stroke-1" class="st0" points="55.976,108.797 97.43,86.797 97.436,96.188 55.982,118.188 "/> -<polygon id="Stroke-3" class="st0" points="1.5,76.069 42.954,54.069 97.43,86.798 55.976,108.798 "/> -<polygon id="Stroke-5" class="st0" points="55.976,108.797 55.982,118.188 1.506,85.459 1.5,76.068 "/> -<polygon id="Stroke-7" class="st0" points="64.979,104.966 111.632,80.202 111.641,92.294 64.988,117.059 "/> -<polygon id="Stroke-9" class="st0" points="4.391,68.562 51.044,43.797 111.632,80.203 64.979,104.966 "/> -<polygon id="Stroke-11" class="st0" points="64.979,104.966 64.988,117.059 4.4,80.654 4.391,68.562 "/> -<polygon id="Fill-14" class="st1" points="65.034,105.018 111.687,80.254 111.696,92.346 65.043,117.111 "/> -<polygon id="Fill-15" class="st2" points="4.391,68.562 51.044,43.797 111.632,80.203 64.979,104.966 "/> -<polygon id="Fill-16" class="st3" points="64.979,104.966 64.988,117.059 4.4,80.654 4.391,68.562 "/> -<polyline id="Stroke-17" class="st4" points="4.631,68.901 64.727,105.01 64.731,116.528 "/> -<polyline id="Stroke-18" class="st5" points="6.673,73.213 62.172,106.561 62.106,115.927 "/> -<path id="Stroke-19" class="st0" d="M46.996,2.714l2.188-1.161c0.097-0.053,0.216-0.067,0.348-0.04l-2.187,1.161 - C47.214,2.647,47.095,2.661,46.996,2.714"/> -<path id="Stroke-22" class="st0" d="M47.345,2.674l2.187-1.161c0.094,0.019,0.196,0.06,0.301,0.124l-2.186,1.161 - C47.541,2.735,47.44,2.694,47.345,2.674"/> -<path id="Stroke-26" class="st0" d="M46.995,2.714l2.188-1.161c0.168-0.09,0.396-0.068,0.65,0.084l-2.187,1.161 - C47.393,2.645,47.165,2.624,46.995,2.714z"/> -<path id="Stroke-28" class="st0" d="M61.454,19.581l2.188-1.161c0,0.329-0.116,0.556-0.3,0.654l-2.187,1.16 - C61.34,20.137,61.454,19.909,61.454,19.581"/> -<path id="Stroke-31" class="st0" d="M63.341,19.074l-2.187,1.16c0.185-0.098,0.299-0.325,0.299-0.653l2.188-1.161 - C63.641,18.749,63.526,18.975,63.341,19.074z"/> -<polygon id="Stroke-33" class="st0" points="47.647,2.798 49.834,1.637 62.686,9.36 60.5,10.52 "/> -<polygon id="Stroke-36" class="st0" points="61.449,12.235 63.636,11.074 63.641,18.42 61.454,19.581 "/> -<path id="Stroke-37" class="st0" d="M60.499,10.52l2.187-1.16c0.013,0.008,0.027,0.016,0.04,0.025l-2.187,1.16 - C60.525,10.537,60.512,10.529,60.499,10.52"/> -<path id="Stroke-40" class="st0" d="M60.539,10.546l2.187-1.16c0.121,0.077,0.234,0.178,0.338,0.295l-2.187,1.161 - C60.772,10.725,60.659,10.624,60.539,10.546"/> -<path id="Stroke-43" class="st0" d="M60.877,10.841l2.187-1.161c0.064,0.072,0.126,0.151,0.181,0.234l-2.186,1.16 - C61.002,10.991,60.941,10.913,60.877,10.841"/> -<path id="Stroke-46" class="st0" d="M61.059,11.075l2.187-1.16c0.067,0.098,0.126,0.204,0.179,0.312l-2.187,1.161 - C61.186,11.279,61.125,11.175,61.059,11.075"/> -<path id="Stroke-49" class="st0" d="M61.238,11.388l2.188-1.161c0.13,0.274,0.209,0.572,0.209,0.847l-2.186,1.161 - C61.449,11.959,61.37,11.662,61.238,11.388"/> -<path id="Stroke-53" class="st0" d="M60.499,10.52l2.187-1.16c0.523,0.314,0.949,1.075,0.949,1.714l-2.187,1.161 - C61.447,11.596,61.022,10.834,60.499,10.52z"/> -<path id="Stroke-55" class="st0" d="M60.499,10.52c0.523,0.314,0.948,1.076,0.949,1.715l0.005,7.346 - c0.001,0.631-0.424,0.887-0.947,0.573l-12.853-7.723c-0.529-0.317-0.949-1.081-0.949-1.714l-0.006-7.344 - c0-0.64,0.419-0.893,0.948-0.575L60.499,10.52z"/> -<path id="Stroke-57" class="st0" d="M55.144,45.849c0.348,0.198,0.055,0.436-0.655,0.531c-0.71,0.096-1.568,0.013-1.916-0.185 - c-0.348-0.198-0.055-0.436,0.655-0.532C53.938,45.569,54.795,45.652,55.144,45.849z"/> -<path id="Stroke-81" class="st0" d="M52.487,13.407c0-0.146,0.295-0.287,0.802-0.355c0.71-0.096,1.567-0.013,1.916,0.185 - l-0.061,32.612c-0.348-0.197-1.206-0.28-1.916-0.185c-0.507,0.068-0.802,0.209-0.802,0.356 - C52.445,36.236,52.47,23.191,52.487,13.407z"/> -<path id="Fill-103" class="st6" d="M55.144,45.849c0.348,0.198,0.055,0.436-0.655,0.531c-0.71,0.096-1.568,0.013-1.916-0.185 - c-0.348-0.198-0.055-0.436,0.655-0.532C53.938,45.569,54.795,45.652,55.144,45.849"/> -<path id="Fill-125" class="st7" d="M52.426,46.02l0.061-32.613c0,0.059,0.046,0.119,0.146,0.175c0.179,0.102,0.491,0.173,0.85,0.206 - L53.422,46.4c-0.358-0.032-0.671-0.104-0.85-0.205C52.473,46.138,52.426,46.079,52.426,46.02"/> -<path id="Fill-128" class="st8" d="M53.422,46.4l0.061-32.612c0.224,0.02,0.466,0.025,0.705,0.012l-0.061,32.614 - C53.889,46.425,53.647,46.421,53.422,46.4"/> -<path id="Fill-131" class="st9" d="M54.127,46.414l0.061-32.613c0.122-0.006,0.244-0.017,0.361-0.033 - c0.099-0.013,0.192-0.03,0.274-0.048l-0.06,32.612c-0.082,0.019-0.175,0.035-0.275,0.049C54.371,46.396,54.249,46.407,54.127,46.414 - "/> -<path id="Fill-134" class="st8" d="M54.763,46.332l0.061-32.612c0.231-0.052,0.393-0.122,0.472-0.2l-0.06,32.614 - C55.157,46.21,54.994,46.28,54.763,46.332"/> -<path id="Fill-137" class="st7" d="M55.236,46.133l0.061-32.613c0.036-0.034,0.054-0.072,0.054-0.109l-0.06,32.614 - C55.291,46.061,55.272,46.098,55.236,46.133"/> -<path id="Fill-143" class="st10" d="M46.996,2.714l2.188-1.161c0.097-0.053,0.216-0.067,0.348-0.04l-2.187,1.161 - C47.214,2.647,47.095,2.661,46.996,2.714"/> -<path id="Fill-146" class="st11" d="M47.345,2.674l2.187-1.161c0.094,0.019,0.196,0.06,0.301,0.124l-2.186,1.161 - C47.541,2.735,47.44,2.694,47.345,2.674"/> -<path id="Fill-150" class="st12" d="M61.454,19.581l2.188-1.161c0,0.329-0.116,0.556-0.3,0.654l-2.187,1.16 - C61.34,20.137,61.454,19.909,61.454,19.581"/> -<polygon id="Fill-153" class="st2" points="47.647,2.798 49.834,1.637 62.686,9.36 60.5,10.52 "/> -<polygon id="Fill-154" class="st1" points="61.449,12.235 63.636,11.074 63.641,18.42 61.454,19.581 "/> -<path id="Fill-155" class="st11" d="M60.499,10.52l2.187-1.16c0.013,0.008,0.027,0.016,0.04,0.025l-2.187,1.16 - C60.525,10.537,60.512,10.529,60.499,10.52"/> -<path id="Fill-158" class="st10" d="M60.539,10.546l2.187-1.16c0.121,0.077,0.234,0.178,0.338,0.295l-2.187,1.161 - C60.772,10.725,60.659,10.624,60.539,10.546"/> -<path id="Fill-161" class="st13" d="M60.877,10.841l2.187-1.161c0.064,0.072,0.126,0.151,0.181,0.234l-2.186,1.16 - C61.002,10.991,60.941,10.913,60.877,10.841"/> -<path id="Fill-164" class="st14" d="M61.059,11.075l2.187-1.16c0.067,0.098,0.126,0.204,0.179,0.312l-2.187,1.161 - C61.186,11.279,61.125,11.175,61.059,11.075"/> -<path id="Fill-167" class="st1" d="M61.238,11.388l2.188-1.161c0.13,0.274,0.209,0.572,0.209,0.847l-2.186,1.161 - C61.449,11.959,61.37,11.662,61.238,11.388"/> -<path id="Fill-171" class="st3" d="M60.499,10.52c0.523,0.314,0.948,1.076,0.949,1.715l0.005,7.346 - c0.001,0.631-0.424,0.887-0.947,0.573l-12.853-7.723c-0.529-0.317-0.949-1.081-0.949-1.714l-0.006-7.344 - c0-0.64,0.419-0.893,0.948-0.575L60.499,10.52z"/> -<path id="Fill-173" class="st15" d="M59.119,10.595c0.413,0.249,0.751,0.85,0.752,1.354l0.003,5.81c0,0.501-0.336,0.703-0.751,0.455 - l-10.169-6.11c-0.413-0.25-0.748-0.857-0.75-1.355L48.202,4.94c-0.001-0.505,0.334-0.702,0.749-0.455L59.119,10.595z"/> -<path id="Stroke-176" class="st0" d="M60.368,48.691l-12.562-7.439c0.005-0.003,0.011-0.006,0.017-0.009l12.562,7.439 - C60.379,48.684,60.373,48.687,60.368,48.691"/> -<path id="Stroke-179" class="st0" d="M60.384,48.682l-12.562-7.439c0.248-0.126,0.476-0.128,0.645-0.028l12.562,7.439 - C60.86,48.553,60.631,48.555,60.384,48.682"/> -<path id="Stroke-183" class="st0" d="M48.467,41.215l12.562,7.438c-0.173-0.102-0.409-0.098-0.662,0.038l-12.561-7.44 - C48.059,41.116,48.294,41.112,48.467,41.215z"/> -<path id="Stroke-185" class="st0" d="M45.019,66.832l-12.562-7.438c-0.162-0.097-0.269-0.288-0.285-0.552l12.562,7.438 - C44.749,66.545,44.857,66.735,45.019,66.832"/> -<path id="Stroke-188" class="st0" d="M45.019,66.832l-12.562-7.438c-0.162-0.097-0.269-0.288-0.285-0.552l12.562,7.438 - C44.749,66.545,44.857,66.735,45.019,66.832z"/> -<polygon id="Stroke-190" class="st0" points="44.734,66.28 32.172,58.842 31.715,50.823 44.276,58.261 "/> -<polygon id="Stroke-192" class="st0" points="45.103,56.807 32.541,49.368 47.806,41.251 60.368,48.691 "/> -<path id="Stroke-195" class="st0" d="M44.276,58.261l-12.561-7.438c-0.002-0.027-0.002-0.053-0.002-0.08l12.562,7.439 - C44.274,58.208,44.275,58.235,44.276,58.261"/> -<path id="Stroke-198" class="st0" d="M44.275,58.182l-12.562-7.438c0.007-0.529,0.367-1.13,0.829-1.376l12.561,7.439 - C44.641,57.052,44.281,57.655,44.275,58.182"/> -<path id="Stroke-202" class="st0" d="M44.276,58.261l-12.561-7.438c-0.031-0.546,0.341-1.198,0.827-1.456l12.561,7.44 - C44.618,57.065,44.246,57.716,44.276,58.261z"/> -<path id="Stroke-204" class="st0" d="M60.368,48.691c0.491-0.262,0.914-0.033,0.945,0.512l0.457,8.018 - c0.032,0.546-0.34,1.199-0.833,1.459l-15.263,8.116c-0.486,0.258-0.909,0.029-0.94-0.516l-0.458-8.019 - c-0.03-0.545,0.342-1.196,0.827-1.454L60.368,48.691z"/> -<path id="Fill-207" class="st16" d="M60.368,48.692l-12.562-7.439c0.005-0.003,0.011-0.006,0.017-0.009l12.562,7.439 - C60.379,48.685,60.373,48.688,60.368,48.692"/> -<path id="Fill-210" class="st10" d="M60.384,48.683l-12.562-7.439c0.248-0.126,0.476-0.128,0.645-0.028l12.562,7.439 - C60.86,48.554,60.631,48.556,60.384,48.683"/> -<path id="Fill-214" class="st10" d="M45.019,66.833l-12.562-7.438c-0.162-0.097-0.269-0.288-0.285-0.552l12.562,7.438 - C44.749,66.546,44.857,66.736,45.019,66.833"/> -<polygon id="Fill-217" class="st3" points="44.734,66.281 32.172,58.843 31.715,50.824 44.276,58.262 "/> -<polygon id="Fill-219" class="st2" points="45.103,56.808 32.541,49.369 47.806,41.252 60.368,48.692 "/> -<path id="Fill-222" class="st10" d="M44.276,58.262l-12.561-7.438c-0.002-0.027-0.002-0.053-0.002-0.08l12.562,7.439 - C44.274,58.209,44.275,58.236,44.276,58.262"/> -<path id="Fill-225" class="st17" d="M44.275,58.183l-12.562-7.438c0.007-0.529,0.367-1.13,0.829-1.376l12.561,7.439 - C44.641,57.053,44.281,57.656,44.275,58.183"/> -<path id="Fill-229" class="st1" d="M60.368,48.692c0.491-0.262,0.914-0.033,0.945,0.512l0.457,8.018 - c0.032,0.546-0.34,1.199-0.833,1.459l-15.263,8.116c-0.486,0.258-0.909,0.029-0.94-0.516l-0.458-8.019 - c-0.03-0.545,0.342-1.196,0.827-1.454L60.368,48.692z"/> -<polygon id="Fill-231" class="st18" points="36.413,48.334 37.717,47.642 48.487,54.114 47.184,54.806 "/> -<polygon id="Fill-233" class="st19" points="48.175,50.647 48.93,50.52 48.112,53.965 47.357,54.092 "/> -<polygon id="Fill-235" class="st20" points="38.538,44.809 39.293,44.682 48.931,50.52 48.175,50.647 "/> -<polygon id="Fill-237" class="st15" points="48.175,50.647 47.357,54.092 37.719,48.254 38.537,44.809 "/> -<polygon id="Stroke-239" class="st21" points="93.767,46.707 100.415,43.179 100.437,77.269 93.789,80.797 "/> -<polygon id="Stroke-241" class="st21" points="59.98,26.406 66.629,22.878 100.416,43.178 93.767,46.707 "/> -<polygon id="Stroke-243" class="st21" points="93.767,46.707 93.789,80.797 60.004,60.498 59.98,26.406 "/> -<polygon id="Fill-245" class="st22" points="81.901,69.909 83.972,68.809 83.975,77.737 81.904,78.837 "/> -<polygon id="Fill-249" class="st22" points="81.901,69.909 81.904,78.837 68.719,70.913 68.714,61.986 "/> -<polygon id="Fill-251" class="st1" points="93.767,46.707 100.415,43.179 100.437,77.269 93.789,80.797 "/> -<polygon id="Fill-253" class="st2" points="59.98,26.406 66.629,22.878 100.416,43.178 93.767,46.707 "/> -<polygon id="Fill-255" class="st3" points="93.767,46.707 93.789,80.797 60.004,60.498 59.98,26.406 "/> -<polygon id="Fill-257" class="st15" points="90.677,73.692 62.878,56.987 62.878,32.347 90.677,49.051 "/> -<polygon id="Stroke-259" class="st5" points="90.677,73.692 62.878,56.987 62.878,32.347 90.677,49.051 "/> -<polyline id="Stroke-261" class="st4" points="60.416,26.724 93.605,46.666 93.605,80.247 "/> -<path id="Fill-263" class="st22" d="M92.149,77.109c0,0.592-0.478,0.785-1.065,0.431c-0.583-0.35-1.061-1.118-1.061-1.709 - c0-0.586,0.478-0.77,1.061-0.419C91.671,75.764,92.149,76.52,92.149,77.109"/> -<polyline id="Stroke-265" class="st4" points="16.849,68.164 60.705,94.518 60.708,96.444 "/> -<polygon id="Fill-268" class="st1" points="56.002,109.913 98.284,87.473 98.29,95.985 56.008,118.425 "/> -<polygon id="Fill-271" class="st23" points="0.439,76.53 42.721,54.091 98.285,87.472 56.002,109.913 "/> -<polygon id="Fill-274" class="st3" points="56.002,109.913 56.008,118.425 0.444,85.043 0.439,76.53 "/> -<polygon id="Fill-277" class="st22" points="2.447,76.562 43.083,54.997 96.481,87.079 55.846,108.645 "/> -<polygon id="Fill-280" class="st23" points="44.71,102.397 59.288,94.659 60.293,95.262 45.714,103.001 "/> -<polygon id="Fill-283" class="st23" points="33.492,96.056 48.07,88.318 49.075,88.921 34.496,96.66 "/> -<polygon id="Fill-286" class="st23" points="23.059,89.457 37.637,81.719 38.642,82.322 24.063,90.061 "/> -<polygon id="Fill-289" class="st23" points="11.492,82.556 26.07,74.818 27.075,75.421 12.496,83.16 "/> -<polygon id="Fill-292" class="st24" points="50.354,104.311 64.933,96.572 70.711,100.044 56.132,107.783 "/> -<polygon id="Fill-295" class="st24" points="39.521,97.881 54.1,90.142 59.878,93.614 45.299,101.353 "/> -<polygon id="Fill-298" class="st24" points="28.758,91.355 43.337,83.616 49.115,87.088 34.536,94.827 "/> -<polygon id="Fill-301" class="st24" points="17.954,84.925 32.533,77.186 38.311,80.658 23.732,88.397 "/> -<polyline id="Stroke-305" class="st4" points="1.423,76.512 55.852,109.217 55.856,117.813 "/> -<polygon id="Fill-307" class="st3" points="55.573,109.487 55.579,118.146 0.89,85.29 0.885,76.63 "/> -<path id="Fill-309" class="st24" d="M10.381,77.448c0,0.553-0.896,1-2,1s-2-0.447-2-1s0.896-1,2-1S10.381,76.895,10.381,77.448"/> -<path id="Fill-311" class="st24" d="M13.548,79.781c0,0.553-0.896,1-2,1s-2-0.447-2-1s0.896-1,2-1S13.548,79.228,13.548,79.781"/> -<path id="Fill-313" class="st24" d="M13.715,77.948c0,0.553-0.896,1-2,1s-2-0.447-2-1s0.896-1,2-1S13.715,77.395,13.715,77.948"/> -<path id="Stroke-315" class="st4" d="M44.643,57.112l0.483,9.208"/> -<polygon id="Stroke-317" class="st0" points="60.577,94.929 75.156,87.19 75.158,89.834 60.58,97.573 "/> -<polygon id="Stroke-319" class="st0" points="16.137,68.226 30.716,60.488 75.157,87.19 60.577,94.929 "/> -<polygon id="Stroke-321" class="st0" points="60.577,94.929 60.58,97.573 16.139,70.87 16.138,68.226 "/> -<polygon id="Fill-323" class="st1" points="60.577,94.929 75.156,87.19 75.158,89.834 60.58,97.573 "/> -<polygon id="Fill-325" class="st2" points="16.137,68.226 30.716,60.488 75.157,87.19 60.577,94.929 "/> -<polygon id="Fill-327" class="st3" points="60.577,94.929 60.58,97.573 16.139,70.87 16.138,68.226 "/> -<polygon id="Fill-329" class="st25" points="25.112,67.628 26.675,66.798 26.675,67.101 25.112,67.931 "/> -<polygon id="Fill-331" class="st15" points="23.765,66.818 25.327,65.988 26.675,66.797 25.112,67.628 "/> -<polygon id="Fill-333" class="st22" points="25.112,67.628 25.112,67.931 23.765,67.121 23.765,66.818 "/> -<polygon id="Fill-335" class="st25" points="27.107,68.826 28.669,67.996 28.669,68.3 27.107,69.129 "/> -<polygon id="Fill-337" class="st15" points="25.759,68.016 27.322,67.186 28.669,67.995 27.107,68.826 "/> -<polygon id="Fill-339" class="st22" points="27.107,68.826 27.107,69.129 25.759,68.319 25.759,68.016 "/> -<polygon id="Fill-341" class="st25" points="29.201,70.084 30.763,69.255 30.764,69.559 29.201,70.388 "/> -<polygon id="Fill-343" class="st15" points="27.853,69.274 29.416,68.445 30.763,69.254 29.201,70.084 "/> -<polygon id="Fill-345" class="st22" points="29.201,70.084 29.201,70.388 27.853,69.577 27.853,69.274 "/> -<polygon id="Fill-347" class="st25" points="31.203,71.288 32.764,70.457 32.764,70.76 31.203,71.589 "/> -<polygon id="Fill-349" class="st15" points="29.855,70.477 31.418,69.648 32.764,70.456 31.203,71.288 "/> -<polygon id="Fill-351" class="st22" points="31.203,71.288 31.203,71.589 29.854,70.781 29.854,70.477 "/> -<polygon id="Fill-353" class="st25" points="33.269,72.529 34.832,71.699 34.832,72.002 33.269,72.832 "/> -<polygon id="Fill-355" class="st15" points="31.921,71.718 33.484,70.889 34.832,71.698 33.269,72.529 "/> -<polygon id="Fill-357" class="st22" points="33.269,72.529 33.269,72.832 31.921,72.022 31.921,71.718 "/> -<polygon id="Fill-359" class="st25" points="35.271,73.731 36.834,72.902 36.834,73.205 35.271,74.035 "/> -<polygon id="Fill-361" class="st15" points="33.916,72.918 35.478,72.088 36.834,72.902 35.27,73.731 "/> -<polygon id="Fill-363" class="st22" points="35.271,73.731 35.271,74.035 33.917,73.22 33.917,72.918 "/> -<polygon id="Fill-365" class="st25" points="37.365,74.99 38.927,74.16 38.928,74.463 37.365,75.292 "/> -<polygon id="Fill-367" class="st15" points="36.016,74.179 37.58,73.35 38.927,74.159 37.365,74.99 "/> -<polygon id="Fill-369" class="st22" points="37.365,74.99 37.365,75.292 36.017,74.483 36.016,74.179 "/> -<polygon id="Fill-371" class="st25" points="39.359,76.187 40.922,75.358 40.922,75.662 39.359,76.491 "/> -<polygon id="Fill-373" class="st15" points="38.012,75.379 39.574,74.549 40.922,75.358 39.359,76.188 "/> -<polygon id="Fill-375" class="st22" points="39.359,76.187 39.359,76.491 38.012,75.68 38.012,75.378 "/> -<polygon id="Fill-377" class="st25" points="41.322,77.367 42.884,76.537 42.884,76.841 41.322,77.67 "/> -<polygon id="Fill-379" class="st15" points="39.974,76.558 41.536,75.727 42.884,76.537 41.322,77.367 "/> -<polygon id="Fill-381" class="st22" points="41.322,77.367 41.322,77.67 39.974,76.86 39.974,76.558 "/> -<polygon id="Fill-383" class="st25" points="43.316,78.566 44.879,77.736 44.879,78.038 43.316,78.869 "/> -<polygon id="Fill-385" class="st15" points="41.968,77.755 43.531,76.926 44.879,77.735 43.316,78.566 "/> -<polygon id="Fill-387" class="st22" points="43.316,78.566 43.316,78.869 41.968,78.059 41.968,77.755 "/> -<polygon id="Fill-389" class="st25" points="45.41,79.823 46.973,78.993 46.973,79.297 45.41,80.126 "/> -<polygon id="Fill-391" class="st15" points="44.062,79.014 45.625,78.185 46.973,78.993 45.41,79.823 "/> -<polygon id="Fill-393" class="st22" points="45.41,79.823 45.41,80.126 44.062,79.317 44.062,79.014 "/> -<polygon id="Fill-395" class="st25" points="47.411,81.026 48.974,80.197 48.974,80.5 47.411,81.329 "/> -<polygon id="Fill-397" class="st15" points="46.064,80.215 47.627,79.386 48.975,80.196 47.412,81.026 "/> -<polygon id="Fill-399" class="st22" points="47.411,81.026 47.411,81.329 46.063,80.519 46.063,80.215 "/> -<polygon id="Fill-401" class="st25" points="49.478,82.268 51.041,81.439 51.041,81.741 49.478,82.572 "/> -<polygon id="Fill-403" class="st15" points="48.13,81.459 49.693,80.629 51.041,81.439 49.478,82.269 "/> -<polygon id="Fill-405" class="st22" points="49.478,82.268 49.478,82.572 48.13,81.761 48.13,81.458 "/> -<polygon id="Fill-407" class="st25" points="51.434,83.443 52.996,82.614 52.997,82.916 51.434,83.747 "/> -<polygon id="Fill-409" class="st15" points="50.085,82.633 51.649,81.803 52.995,82.613 51.434,83.443 "/> -<polygon id="Fill-411" class="st22" points="51.434,83.443 51.434,83.747 50.086,82.936 50.085,82.633 "/> -<polygon id="Fill-413" class="st25" points="27.256,66.421 28.819,65.591 28.819,65.894 27.256,66.724 "/> -<polygon id="Fill-415" class="st15" points="25.909,65.612 27.472,64.782 28.82,65.591 27.257,66.422 "/> -<polygon id="Fill-417" class="st22" points="27.256,66.421 27.256,66.724 25.908,65.914 25.908,65.611 "/> -<polygon id="Fill-419" class="st25" points="29.25,67.62 30.813,66.79 30.813,67.094 29.25,67.923 "/> -<polygon id="Fill-421" class="st15" points="27.904,66.81 29.466,65.98 30.814,66.789 29.251,67.62 "/> -<polygon id="Fill-423" class="st22" points="29.25,67.62 29.25,67.923 27.903,67.113 27.903,66.81 "/> -<polygon id="Fill-425" class="st25" points="31.345,68.878 32.907,68.049 32.907,68.352 31.345,69.182 "/> -<polygon id="Fill-427" class="st15" points="29.998,68.068 31.559,67.239 32.907,68.048 31.346,68.878 "/> -<polygon id="Fill-429" class="st22" points="31.345,68.878 31.345,69.182 29.997,68.371 29.997,68.068 "/> -<polygon id="Fill-431" class="st25" points="33.346,70.082 34.908,69.251 34.909,69.554 33.346,70.383 "/> -<polygon id="Fill-433" class="st15" points="31.999,69.271 33.561,68.442 34.908,69.25 33.346,70.082 "/> -<polygon id="Fill-435" class="st22" points="33.346,70.082 33.346,70.383 31.999,69.575 31.999,69.271 "/> -<polygon id="Fill-437" class="st25" points="35.414,71.323 36.976,70.493 36.976,70.796 35.414,71.626 "/> -<polygon id="Fill-439" class="st15" points="34.066,70.512 35.629,69.683 36.976,70.492 35.414,71.323 "/> -<polygon id="Fill-441" class="st22" points="35.414,71.323 35.414,71.626 34.066,70.816 34.066,70.512 "/> -<polygon id="Fill-443" class="st25" points="37.415,72.525 38.977,71.696 38.977,71.999 37.415,72.829 "/> -<polygon id="Fill-445" class="st15" points="36.06,71.712 37.623,70.882 38.978,71.696 37.415,72.525 "/> -<polygon id="Fill-447" class="st22" points="37.415,72.525 37.415,72.829 36.06,72.014 36.06,71.712 "/> -<polygon id="Fill-449" class="st25" points="39.509,73.784 41.071,72.954 41.071,73.257 39.509,74.086 "/> -<polygon id="Fill-451" class="st15" points="38.161,72.973 39.725,72.144 41.071,72.953 39.51,73.784 "/> -<polygon id="Fill-453" class="st22" points="39.509,73.784 39.509,74.086 38.161,73.277 38.16,72.973 "/> -<polygon id="Fill-455" class="st25" points="41.503,74.981 43.066,74.152 43.066,74.456 41.503,75.285 "/> -<polygon id="Fill-457" class="st15" points="40.156,74.172 41.718,73.342 43.067,74.151 41.504,74.981 "/> -<polygon id="Fill-459" class="st22" points="41.503,74.981 41.503,75.285 40.155,74.474 40.155,74.172 "/> -<polygon id="Fill-461" class="st25" points="43.465,76.161 45.028,75.331 45.028,75.635 43.465,76.464 "/> -<polygon id="Fill-463" class="st15" points="42.118,75.352 43.681,74.521 45.029,75.331 43.466,76.161 "/> -<polygon id="Fill-465" class="st22" points="43.465,76.161 43.465,76.464 42.117,75.654 42.117,75.352 "/> -<polygon id="Fill-467" class="st25" points="45.46,77.36 47.022,76.53 47.022,76.832 45.46,77.663 "/> -<polygon id="Fill-469" class="st15" points="44.113,76.549 45.675,75.72 47.023,76.529 45.461,77.36 "/> -<polygon id="Fill-471" class="st22" points="45.46,77.36 45.46,77.663 44.112,76.853 44.112,76.549 "/> -<polygon id="Fill-473" class="st25" points="47.554,78.617 49.116,77.787 49.116,78.091 47.554,78.92 "/> -<polygon id="Fill-475" class="st15" points="46.207,77.808 47.77,76.979 49.117,77.787 47.555,78.617 "/> -<polygon id="Fill-477" class="st22" points="47.554,78.617 47.554,78.92 46.206,78.11 46.206,77.808 "/> -<polygon id="Fill-479" class="st25" points="49.556,79.82 51.118,78.991 51.118,79.294 49.556,80.123 "/> -<polygon id="Fill-481" class="st15" points="48.208,79.009 49.77,78.18 51.118,78.99 49.556,79.82 "/> -<polygon id="Fill-483" class="st22" points="49.556,79.82 49.556,80.123 48.208,79.313 48.208,79.009 "/> -<polygon id="Fill-485" class="st25" points="51.623,81.062 53.186,80.233 53.186,80.535 51.623,81.366 "/> -<polygon id="Fill-487" class="st15" points="50.275,80.253 51.838,79.423 53.186,80.233 51.623,81.063 "/> -<polygon id="Fill-489" class="st22" points="51.623,81.062 51.623,81.366 50.275,80.555 50.275,80.252 "/> -<polygon id="Fill-491" class="st25" points="53.578,82.237 55.14,81.407 55.14,81.71 53.578,82.54 "/> -<polygon id="Fill-493" class="st15" points="52.23,81.427 53.793,80.597 55.14,81.406 53.579,82.237 "/> -<polygon id="Fill-495" class="st22" points="53.578,82.237 53.578,82.54 52.23,81.73 52.229,81.427 "/> -<polygon id="Fill-497" class="st25" points="29.535,65.214 31.098,64.385 31.098,64.688 29.535,65.518 "/> -<polygon id="Fill-499" class="st15" points="28.187,64.406 29.75,63.576 31.098,64.385 29.535,65.215 "/> -<polygon id="Fill-501" class="st22" points="29.535,65.214 29.535,65.518 28.187,64.708 28.187,64.405 "/> -<polygon id="Fill-503" class="st25" points="31.529,66.414 33.092,65.584 33.092,65.888 31.529,66.717 "/> -<polygon id="Fill-505" class="st15" points="30.181,65.604 31.744,64.774 33.092,65.583 31.529,66.414 "/> -<polygon id="Fill-507" class="st22" points="31.529,66.414 31.529,66.717 30.181,65.907 30.181,65.604 "/> -<polygon id="Fill-509" class="st25" points="33.623,67.671 35.185,66.842 35.186,67.145 33.623,67.975 "/> -<polygon id="Fill-511" class="st15" points="32.276,66.862 33.838,66.033 35.185,66.842 33.623,67.672 "/> -<polygon id="Fill-513" class="st22" points="33.623,67.671 33.623,67.975 32.276,67.164 32.276,66.861 "/> -<polygon id="Fill-515" class="st25" points="35.624,68.876 37.186,68.045 37.187,68.348 35.624,69.177 "/> -<polygon id="Fill-517" class="st15" points="34.277,68.065 35.84,67.236 37.187,68.044 35.625,68.876 "/> -<polygon id="Fill-519" class="st22" points="35.624,68.876 35.624,69.177 34.276,68.369 34.276,68.065 "/> -<polygon id="Fill-521" class="st25" points="37.692,70.117 39.254,69.287 39.254,69.59 37.692,70.42 "/> -<polygon id="Fill-523" class="st15" points="36.344,69.306 37.906,68.477 39.254,69.286 37.692,70.117 "/> -<polygon id="Fill-525" class="st22" points="37.692,70.117 37.692,70.42 36.344,69.61 36.344,69.306 "/> -<polygon id="Fill-527" class="st25" points="39.693,71.319 41.256,70.49 41.256,70.793 39.693,71.623 "/> -<polygon id="Fill-529" class="st15" points="38.338,70.505 39.901,69.675 41.256,70.489 39.692,71.318 "/> -<polygon id="Fill-531" class="st22" points="39.693,71.319 39.693,71.623 38.339,70.808 38.339,70.506 "/> -<polygon id="Fill-533" class="st25" points="41.788,72.577 43.349,71.748 43.349,72.051 41.788,72.88 "/> -<polygon id="Fill-535" class="st15" points="40.439,71.767 42.003,70.938 43.349,71.747 41.788,72.577 "/> -<polygon id="Fill-537" class="st22" points="41.788,72.577 41.788,72.88 40.439,72.071 40.438,71.767 "/> -<polygon id="Fill-539" class="st25" points="43.782,73.775 45.345,72.946 45.345,73.25 43.782,74.079 "/> -<polygon id="Fill-541" class="st15" points="42.434,72.966 43.996,72.136 45.345,72.945 43.782,73.775 "/> -<polygon id="Fill-543" class="st22" points="43.782,73.775 43.782,74.079 42.434,73.268 42.434,72.966 "/> -<polygon id="Fill-545" class="st25" points="45.744,74.955 47.307,74.125 47.307,74.429 45.744,75.258 "/> -<polygon id="Fill-547" class="st15" points="44.396,74.145 45.959,73.315 47.307,74.124 45.744,74.955 "/> -<polygon id="Fill-549" class="st22" points="45.744,74.955 45.744,75.258 44.396,74.448 44.396,74.145 "/> -<polygon id="Fill-551" class="st25" points="47.738,76.154 49.301,75.324 49.301,75.626 47.738,76.457 "/> -<polygon id="Fill-553" class="st15" points="46.391,75.343 47.953,74.514 49.301,75.323 47.738,76.154 "/> -<polygon id="Fill-555" class="st22" points="47.738,76.154 47.738,76.457 46.391,75.647 46.391,75.343 "/> -<polygon id="Fill-557" class="st25" points="49.832,77.411 51.394,76.581 51.394,76.885 49.832,77.714 "/> -<polygon id="Fill-559" class="st15" points="48.485,76.602 50.048,75.772 51.395,76.581 49.833,77.411 "/> -<polygon id="Fill-561" class="st22" points="49.832,77.411 49.832,77.714 48.484,76.904 48.484,76.602 "/> -<polygon id="Fill-563" class="st25" points="51.833,78.614 53.396,77.785 53.396,78.088 51.833,78.917 "/> -<polygon id="Fill-565" class="st15" points="50.487,77.803 52.049,76.974 53.397,77.784 51.834,78.614 "/> -<polygon id="Fill-567" class="st22" points="51.833,78.614 51.833,78.917 50.486,78.107 50.486,77.803 "/> -<polygon id="Fill-569" class="st25" points="53.901,79.856 55.463,79.027 55.463,79.329 53.901,80.16 "/> -<polygon id="Fill-571" class="st15" points="52.553,79.046 54.116,78.216 55.463,79.026 53.901,79.856 "/> -<polygon id="Fill-573" class="st22" points="53.901,79.856 53.901,80.16 52.553,79.349 52.553,79.046 "/> -<polygon id="Fill-575" class="st25" points="55.857,81.031 57.419,80.201 57.419,80.504 55.857,81.334 "/> -<polygon id="Fill-577" class="st15" points="54.508,80.221 56.071,79.391 57.418,80.2 55.857,81.031 "/> -<polygon id="Fill-579" class="st22" points="55.857,81.031 55.857,81.334 54.509,80.524 54.508,80.221 "/> -<polygon id="Fill-581" class="st25" points="23.621,69.425 25.183,68.595 25.183,68.89 23.621,69.72 "/> -<polygon id="Fill-583" class="st15" points="22.272,68.616 23.834,67.787 25.183,68.595 23.621,69.426 "/> -<polygon id="Fill-585" class="st22" points="23.621,69.425 23.621,69.72 22.273,68.909 22.271,68.615 "/> -<polygon id="Fill-587" class="st25" points="25.516,70.565 27.079,69.735 27.079,70.029 25.516,70.859 "/> -<polygon id="Fill-589" class="st15" points="24.168,69.754 25.731,68.925 27.079,69.734 25.516,70.565 "/> -<polygon id="Fill-591" class="st22" points="25.516,70.565 25.516,70.859 24.168,70.049 24.168,69.754 "/> -<polygon id="Fill-593" class="st25" points="27.511,71.762 29.073,70.933 29.073,71.228 27.511,72.058 "/> -<polygon id="Fill-595" class="st15" points="26.163,70.954 27.726,70.123 29.073,70.933 27.512,71.763 "/> -<polygon id="Fill-597" class="st22" points="27.511,71.762 27.511,72.058 26.163,71.247 26.163,70.953 "/> -<polygon id="Fill-599" class="st25" points="44.191,81.754 45.754,80.924 45.754,81.219 44.191,82.049 "/> -<polygon id="Fill-601" class="st15" points="42.842,80.945 44.405,80.116 45.754,80.924 44.191,81.755 "/> -<polygon id="Fill-603" class="st22" points="44.191,81.754 44.191,82.049 42.843,81.238 42.842,80.944 "/> -<polygon id="Fill-605" class="st25" points="46.087,82.894 47.649,82.064 47.649,82.358 46.087,83.188 "/> -<polygon id="Fill-607" class="st15" points="44.74,82.084 46.303,81.255 47.65,82.064 46.088,82.895 "/> -<polygon id="Fill-609" class="st22" points="46.087,82.894 46.087,83.188 44.739,82.378 44.739,82.083 "/> -<polygon id="Fill-611" class="st25" points="48.082,84.091 49.645,83.262 49.645,83.557 48.082,84.387 "/> -<polygon id="Fill-613" class="st15" points="46.734,83.283 48.297,82.452 49.645,83.262 48.082,84.092 "/> -<polygon id="Fill-615" class="st22" points="48.082,84.091 48.082,84.387 46.734,83.576 46.734,83.282 "/> -<polygon id="Fill-617" class="st25" points="42.062,80.517 43.624,79.688 43.624,79.983 42.062,80.813 "/> -<polygon id="Fill-619" class="st15" points="28.238,72.211 29.8,71.382 43.625,79.689 42.062,80.518 "/> -<polygon id="Fill-621" class="st22" points="42.062,80.517 42.062,80.813 28.238,72.506 28.238,72.21 "/> -<polygon id="Fill-623" class="st25" points="59.039,88.094 60.602,87.265 60.602,87.568 59.039,88.397 "/> -<polygon id="Fill-625" class="st15" points="57.691,87.284 59.254,86.455 60.602,87.265 59.039,88.095 "/> -<polygon id="Fill-627" class="st22" points="59.039,88.094 59.039,88.397 57.691,87.587 57.691,87.283 "/> -<polygon id="Fill-629" class="st25" points="61.105,89.337 62.668,88.508 62.668,88.81 61.105,89.641 "/> -<polygon id="Fill-631" class="st15" points="59.757,88.527 61.32,87.697 62.668,88.507 61.105,89.337 "/> -<polygon id="Fill-633" class="st22" points="61.105,89.337 61.105,89.641 59.757,88.83 59.757,88.527 "/> -<polygon id="Fill-635" class="st25" points="63.061,90.511 64.623,89.682 64.624,89.984 63.061,90.815 "/> -<polygon id="Fill-637" class="st15" points="61.712,89.702 63.276,88.872 64.622,89.682 63.061,90.512 "/> -<polygon id="Fill-639" class="st22" points="63.061,90.511 63.061,90.815 61.713,90.004 61.712,89.701 "/> -<polygon id="Fill-641" class="st25" points="61.183,86.888 62.745,86.059 62.745,86.362 61.183,87.191 "/> -<polygon id="Fill-643" class="st15" points="59.835,86.078 61.397,85.249 62.745,86.059 61.183,86.889 "/> -<polygon id="Fill-645" class="st22" points="61.183,86.888 61.183,87.191 59.835,86.381 59.835,86.077 "/> -<polygon id="Fill-647" class="st25" points="63.249,88.13 64.812,87.301 64.812,87.603 63.249,88.434 "/> -<polygon id="Fill-649" class="st15" points="61.902,87.321 63.465,86.491 64.813,87.301 63.25,88.131 "/> -<polygon id="Fill-651" class="st22" points="63.249,88.13 63.249,88.434 61.901,87.623 61.901,87.32 "/> -<polygon id="Fill-653" class="st25" points="65.205,89.305 66.767,88.475 66.767,88.778 65.205,89.608 "/> -<polygon id="Fill-655" class="st15" points="63.857,88.496 65.42,87.666 66.767,88.475 65.206,89.306 "/> -<polygon id="Fill-657" class="st22" points="65.205,89.305 65.205,89.608 63.858,88.798 63.856,88.495 "/> -<polygon id="Fill-659" class="st25" points="63.46,85.682 65.023,84.853 65.023,85.156 63.46,85.985 "/> -<polygon id="Fill-661" class="st15" points="62.114,84.872 63.676,84.043 65.024,84.853 63.461,85.683 "/> -<polygon id="Fill-663" class="st22" points="63.46,85.682 63.46,85.985 62.113,85.175 62.113,84.871 "/> -<polygon id="Fill-665" class="st25" points="65.528,86.924 67.09,86.095 67.09,86.397 65.528,87.228 "/> -<polygon id="Fill-667" class="st15" points="64.18,86.115 65.743,85.285 67.09,86.095 65.528,86.925 "/> -<polygon id="Fill-669" class="st22" points="65.528,86.924 65.528,87.228 64.18,86.417 64.18,86.114 "/> -<polygon id="Fill-671" class="st25" points="67.484,88.099 69.046,87.269 69.046,87.572 67.484,88.402 "/> -<polygon id="Fill-673" class="st15" points="66.135,87.29 67.698,86.46 69.045,87.269 67.484,88.1 "/> -<polygon id="Fill-675" class="st22" points="67.484,88.099 67.484,88.402 66.136,87.592 66.135,87.289 "/> -<polygon id="Fill-677" class="st25" points="54.228,85.142 55.791,84.313 55.791,84.615 54.228,85.446 "/> -<polygon id="Fill-679" class="st15" points="52.88,84.333 54.443,83.503 55.791,84.313 54.228,85.143 "/> -<polygon id="Fill-681" class="st22" points="54.228,85.142 54.228,85.446 52.88,84.635 52.88,84.332 "/> -<polygon id="Fill-683" class="st25" points="56.184,86.317 57.746,85.488 57.747,85.79 56.184,86.621 "/> -<polygon id="Fill-685" class="st15" points="54.835,85.507 56.399,84.677 57.745,85.487 56.184,86.317 "/> -<polygon id="Fill-687" class="st22" points="56.184,86.317 56.184,86.621 54.836,85.81 54.835,85.507 "/> -<polygon id="Fill-689" class="st25" points="56.373,83.936 57.936,83.107 57.936,83.409 56.373,84.24 "/> -<polygon id="Fill-691" class="st15" points="55.025,83.127 56.588,82.297 57.936,83.107 56.373,83.937 "/> -<polygon id="Fill-693" class="st22" points="56.373,83.936 56.373,84.24 55.025,83.429 55.025,83.126 "/> -<polygon id="Fill-695" class="st25" points="58.328,85.111 59.89,84.281 59.89,84.584 58.328,85.414 "/> -<polygon id="Fill-697" class="st15" points="56.98,84.301 58.543,83.471 59.89,84.28 58.329,85.111 "/> -<polygon id="Fill-699" class="st22" points="58.328,85.111 58.328,85.414 56.98,84.604 56.979,84.301 "/> -<polygon id="Fill-701" class="st25" points="58.651,82.73 60.213,81.901 60.213,82.203 58.651,83.034 "/> -<polygon id="Fill-703" class="st15" points="57.303,81.921 58.866,81.091 60.213,81.901 58.651,82.731 "/> -<polygon id="Fill-705" class="st22" points="58.651,82.73 58.651,83.034 57.303,82.223 57.303,81.92 "/> -<polygon id="Fill-707" class="st25" points="60.607,83.905 62.169,83.075 62.169,83.378 60.607,84.208 "/> -<polygon id="Fill-709" class="st15" points="59.258,83.095 60.821,82.265 62.168,83.074 60.607,83.905 "/> -<polygon id="Fill-711" class="st22" points="60.607,83.905 60.607,84.208 59.259,83.398 59.258,83.095 "/> -<polygon id="Fill-713" class="st25" points="51.993,86.459 53.555,85.63 53.556,85.934 51.993,86.763 "/> -<polygon id="Fill-715" class="st15" points="50.645,85.649 52.208,84.82 53.555,85.629 51.993,86.459 "/> -<polygon id="Fill-717" class="st22" points="51.993,86.459 51.993,86.763 50.645,85.952 50.645,85.649 "/> -<polyline id="Stroke-719" class="st4" points="16.516,69.031 60.372,95.385 60.375,97.311 "/> -<path id="Stroke-723" class="st26" d="M0.798,76.056l5.508-2.929"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 113.141 119.688"><style><![CDATA[.b{fill:#fefefe}.c{fill:#626366}.d{fill:#231f20}.e{stroke:#626366}.f{stroke-width:3}.g{stroke-linecap:round}.h{fill:none}.i{stroke-linejoin:round}.j{fill:#898b8e}.k{fill:#b3b5b7}.l{stroke:#e1e2e3}.m{fill:#bbbdbf}.n{fill:#939ba0}]]></style><g class="e f h i"><path d="M55.976 108.797l41.454-22 .006 9.39-41.454 22z"/><path d="M1.5 76.07l41.454-22 54.476 32.73-41.454 22z"/><path d="M55.976 108.797l.006 9.4L1.506 85.46l-.006-9.4zm9.004-3.83l46.653-24.764.01 12.092L65 117.06z"/><path d="M4.39 68.562l46.653-24.765 60.588 36.406-46.653 24.763z"/><path d="M64.98 104.966l.01 12.093L4.4 80.654l-.01-12.092z"/></g><path d="M65.034 105.018l46.653-24.764.01 12.092-46.653 24.765z" class="j"/><path d="M4.39 68.562l46.653-24.765 60.588 36.406-46.653 24.763z" class="m"/><path d="M64.98 104.966l.01 12.093L4.4 80.654l-.01-12.092z" class="k"/><g class="h i"><g class="g"><path d="M4.63 68.9L64.727 105l.004 11.518" class="l"/><g class="e"><path d="M6.673 73.213l55.5 33.348-.066 9.366"/><g class="f"><path d="M46.996 2.714l2.188-1.16c.097-.053.216-.067.348-.04l-2.187 1.16a.51.51 0 0 0-.349.04"/><path d="M47.345 2.674l2.187-1.16c.094.02.196.06.3.124l-2.186 1.16a1 1 0 0 0-.302-.124"/></g></g></g><path d="M46.995 2.714l2.188-1.16c.168-.1.396-.068.65.084l-2.187 1.16c-.253-.153-.48-.174-.65-.084z" class="e f"/><path d="M61.454 19.58l2.188-1.16c0 .33-.116.556-.3.654l-2.187 1.16c.185-.097.3-.325.3-.653" class="e f g"/><path d="M63.34 19.074l-2.187 1.16c.185-.098.3-.325.3-.653l2.188-1.16c0 .33-.115.555-.3.654zM47.647 2.798l2.187-1.16L62.686 9.36 60.5 10.52z" class="e f"/><path d="M61.45 12.235l2.187-1.16.005 7.346-2.187 1.16z" class="e f"/><g class="g e f"><path d="M60.5 10.52l2.187-1.16.04.025-2.187 1.16-.04-.025"/><path d="M60.54 10.546l2.187-1.16a1.63 1.63 0 0 1 .338.295l-2.187 1.16a1.72 1.72 0 0 0-.338-.296"/><path d="M60.877 10.84l2.187-1.16a2.11 2.11 0 0 1 .181.234l-2.186 1.16a2.5 2.5 0 0 0-.182-.233m.183.234l2.187-1.16c.067.098.126.204.18.312l-2.187 1.16a2.61 2.61 0 0 0-.179-.313"/><path d="M61.238 11.388l2.188-1.16c.13.274.21.572.21.847l-2.186 1.16c0-.276-.08-.573-.21-.847"/></g><path d="M60.5 10.52l2.187-1.16a2.2 2.2 0 0 1 .949 1.714l-2.187 1.16c-.001-.64-.426-1.4-.95-1.715z" class="e f"/><use xlink:href="#B" class="e f"/><path d="M55.144 45.85c.348.198.055.436-.655.53s-1.568.013-1.916-.185-.055-.436.655-.532 1.567-.01 1.916.186z" class="e f"/><path d="M52.487 13.407c0-.146.295-.287.802-.355.7-.096 1.567-.013 1.916.185l-.06 32.612c-.348-.197-1.206-.28-1.916-.185-.507.068-.802.21-.802.356l.06-32.613z" class="e f"/></g><path d="M55.144 45.85c.348.198.055.436-.655.53s-1.568.013-1.916-.185-.055-.436.655-.532 1.567-.01 1.916.186" fill="#9fa2a4"/><path d="M52.426 46.02l.06-32.613c0 .06.046.12.146.175.18.102.49.173.85.206l-.06 32.612c-.358-.032-.67-.104-.85-.205-.1-.057-.146-.116-.146-.175" fill="#9d9fa2"/><path d="M53.422 46.4l.06-32.612a4.99 4.99 0 0 0 .705.012l-.06 32.614c-.238.01-.48.007-.705-.014" fill="#a8aaac"/><path d="M54.127 46.414l.06-32.613.36-.033.274-.048-.06 32.612c-.082.02-.175.035-.275.05l-.36.033" fill="#b2b4b7"/><path d="M54.763 46.332l.06-32.612c.23-.052.393-.122.472-.2l-.06 32.614c-.08.076-.242.146-.473.198" fill="#a8aaac"/><path d="M55.236 46.133l.06-32.613c.036-.034.054-.072.054-.11l-.06 32.614c0 .036-.02.073-.055.108" fill="#9d9fa2"/><path d="M46.996 2.714l2.188-1.16c.097-.053.216-.067.348-.04l-2.187 1.16a.51.51 0 0 0-.349.04" class="n"/><path d="M47.345 2.674l2.187-1.16c.094.02.196.06.3.124l-2.186 1.16a1 1 0 0 0-.302-.124" fill="#a4acb1"/><path d="M61.454 19.58l2.188-1.16c0 .33-.116.556-.3.654l-2.187 1.16c.185-.097.3-.325.3-.653" fill="#8c9499"/><path d="M47.647 2.798l2.187-1.16L62.686 9.36 60.5 10.52z" class="m"/><path d="M61.45 12.235l2.187-1.16.005 7.346-2.187 1.16z" class="j"/><path d="M60.5 10.52l2.187-1.16.04.025-2.187 1.16-.04-.025" fill="#a4acb1"/><path d="M60.54 10.546l2.187-1.16a1.63 1.63 0 0 1 .338.295l-2.187 1.16a1.72 1.72 0 0 0-.338-.296" class="n"/><path d="M60.877 10.84l2.187-1.16a2.11 2.11 0 0 1 .181.234l-2.186 1.16c-.057-.083-.118-.16-.182-.233" fill="#90989e"/><path d="M61.06 11.075l2.187-1.16c.067.098.126.204.18.312l-2.187 1.16a2.61 2.61 0 0 0-.179-.313" fill="#8e969c"/><path d="M61.238 11.388l2.188-1.16c.13.274.21.572.21.847l-2.186 1.16c0-.276-.08-.573-.21-.847" class="j"/><use xlink:href="#B" class="k"/><path d="M59.12 10.595c.413.25.75.85.752 1.354l.003 5.8c0 .5-.336.703-.75.455l-10.17-6.1a1.76 1.76 0 0 1-.75-1.355l-.002-5.81c-.001-.505.334-.702.75-.455l10.168 6.1z" class="b"/><g class="e f h i"><g class="g"><path d="M60.368 48.69l-12.562-7.44 12.58 7.43"/><use xlink:href="#C"/></g><path d="M48.467 41.215l12.562 7.438c-.173-.102-.41-.098-.662.038l-12.56-7.44c.253-.135.488-.14.66-.036z"/><use xlink:href="#D" class="g"/><path d="M45.02 66.832l-12.562-7.438c-.162-.097-.27-.288-.285-.552l12.562 7.438c.015.265.123.455.285.552z"/><path d="M44.734 66.28l-12.562-7.438-.457-8.02 12.56 7.438zm.37-9.473l-12.562-7.44 15.265-8.117 12.562 7.44z"/><g class="g"><path d="M44.276 58.26l-12.56-7.438-.002-.08 12.562 7.44a1.04 1.04 0 0 0 .001.079"/><use xlink:href="#E"/></g><path d="M44.276 58.26l-12.56-7.438c-.03-.546.34-1.198.827-1.456l12.56 7.44c-.485.258-.857.91-.827 1.454z"/><use xlink:href="#F"/></g><path d="M60.368 48.692l-12.562-7.44 12.58 7.43" fill="#b8bdc1"/><g class="n"><use xlink:href="#C" y="0.001"/><use xlink:href="#D" y="0.001"/></g><path d="M44.734 66.28l-12.562-7.438-.457-8.02 12.56 7.438z" class="k"/><path d="M45.103 56.808L32.54 49.37l15.265-8.117 12.562 7.44z" class="m"/><path d="M44.276 58.262l-12.56-7.438-.002-.08 12.562 7.44a1.04 1.04 0 0 0 .001.079" class="n"/><use xlink:href="#E" y="0.001" fill="#e1e2e3"/><use xlink:href="#F" y="0.002" class="j"/><path d="M36.413 48.334l1.304-.692 10.77 6.472-1.303.692z" fill="#626466"/><path d="M48.175 50.647l.755-.127-.818 3.445-.755.127z" fill="#adafb2"/><path d="M38.538 44.81l.755-.127 9.638 5.838-.756.127z" fill="#dddedf"/><path d="M48.175 50.647l-.818 3.445-9.638-5.838.818-3.445z" class="b"/><g class="e f h i"><path d="M93.767 46.707l6.648-3.528.022 34.1-6.648 3.528z"/><path d="M59.98 26.406l6.65-3.528 33.787 20.3-6.65 3.53z"/><path d="M93.767 46.707l.022 34.1-33.785-20.3-.024-34.092z"/></g><g class="c"><path d="M81.9 69.91l2.07-1.1.003 8.928-2.07 1.1z"/><path d="M81.9 69.91l.003 8.928-13.185-7.924-.005-8.927z"/></g><path d="M93.767 46.707l6.648-3.528.022 34.1-6.648 3.528z" class="j"/><path d="M59.98 26.406l6.65-3.528 33.787 20.3-6.65 3.53z" class="m"/><path d="M93.767 46.707l.022 34.1-33.785-20.3-.024-34.092z" class="k"/><path d="M90.677 73.692l-27.8-16.705v-24.64l27.8 16.704z" class="b"/><g class="h i"><path d="M90.677 73.692l-27.8-16.705v-24.64l27.8 16.704z" class="e"/><path d="M60.416 26.724l33.19 19.942v33.58" class="g l"/></g><path d="M92.15 77.11c0 .592-.478.785-1.065.43s-1.06-1.118-1.06-1.71.478-.77 1.06-.42 1.065 1.108 1.065 1.697" class="c"/><path d="M16.85 68.164l43.856 26.354.003 1.926" class="g h i l"/><path d="M56.002 109.913l42.282-22.44.006 8.512-42.282 22.44z" class="j"/><path d="M.44 76.53L42.72 54.09l55.564 33.38-42.283 22.44z" fill="#a9abae"/><path d="M56.002 109.913l.006 8.512L.444 85.043.44 76.53z" class="k"/><path d="M2.447 76.562l40.636-21.565L96.48 87.08l-40.635 21.566z" class="c"/><path d="M44.7 102.397l14.578-7.738 1.005.603-14.58 7.74zm-11.208-6.34l14.578-7.738 1.005.603-14.58 7.74zm-10.432-6.6l14.578-7.738 1.005.603-14.58 7.74zm-11.568-6.9l14.578-7.738 1.005.603-14.58 7.74z" fill="#a9abae"/><path d="M50.354 104.3l14.58-7.74 5.778 3.472-14.58 7.74zM39.52 97.88l14.58-7.74 5.778 3.472-14.58 7.74zm-10.762-6.525l14.58-7.74 5.778 3.472-14.58 7.74zm-10.804-6.43l14.58-7.74 5.778 3.472-14.58 7.74z" fill="#d2d4d5"/><path d="M1.423 76.512l54.43 32.705.004 8.596" class="g h i l"/><path d="M55.573 109.487l.006 8.66L.9 85.3.885 76.63z" class="k"/><g fill="#d2d4d5"><use xlink:href="#G"/><use xlink:href="#G" x="3.168" y="2.332"/><use xlink:href="#G" x="3.335" y="0.5"/></g><g class="h i"><path d="M44.643 57.112l.483 9.208" class="g l"/><g class="e f"><path d="M60.577 94.93l14.58-7.74.002 2.644-14.578 7.74z"/><path d="M16.137 68.226l14.58-7.738L75.157 87.2l-14.58 7.74z"/><path d="M60.577 94.93l.003 2.644L16.14 70.87l-.001-2.644z"/></g></g><path d="M60.577 94.93l14.58-7.74.002 2.644-14.578 7.74z" class="j"/><path d="M16.137 68.226l14.58-7.738L75.157 87.2l-14.58 7.74z" class="m"/><path d="M60.577 94.93l.003 2.644L16.14 70.87l-.001-2.644z" class="k"/><path d="M25.112 67.628l1.563-.83v.303l-1.563.83z" class="d"/><path d="M23.765 66.818l1.562-.83 1.348.81-1.563.83z" class="b"/><path d="M25.112 67.628v.303l-1.347-.8v-.303z" class="c"/><path d="M27.107 68.826l1.562-.83v.304l-1.562.83z" class="d"/><path d="M25.76 68.016l1.563-.83 1.347.81-1.562.83z" class="b"/><path d="M27.107 68.826v.303l-1.348-.8v-.303z" class="c"/><path d="M29.2 70.084l1.562-.83.001.304-1.563.83z" class="d"/><path d="M27.853 69.274l1.563-.83 1.347.81-1.562.83z" class="b"/><path d="M29.2 70.084v.304l-1.348-.81v-.303z" class="c"/><path d="M31.203 71.288l1.56-.83v.303l-1.56.83z" class="d"/><path d="M29.855 70.477l1.563-.83 1.346.808-1.56.832z" class="b"/><path d="M31.203 71.288v.3l-1.35-.808v-.304z" class="c"/><path d="M33.27 72.53l1.563-.83v.303l-1.563.83z" class="d"/><path d="M31.92 71.718l1.563-.83 1.348.81-1.563.83z" class="b"/><path d="M33.27 72.53v.303l-1.348-.8v-.304z" class="c"/><path d="M35.27 73.73l1.563-.83v.303l-1.563.83z" class="d"/><path d="M33.916 72.918l1.562-.83 1.356.814-1.564.83z" class="b"/><path d="M35.27 73.73v.304l-1.354-.815v-.302z" class="c"/><path d="M37.365 75l1.562-.83.001.303-1.563.83z" class="d"/><path d="M36.016 74.18l1.564-.83 1.347.81-1.562.83z" class="b"/><path d="M37.365 75v.302l-1.348-.81-.001-.304z" class="c"/><path d="M39.36 76.187l1.563-.83v.304l-1.563.83z" class="d"/><path d="M38.012 75.38l1.562-.83 1.348.81-1.563.83z" class="b"/><path d="M39.36 76.187v.304l-1.347-.81v-.302z" class="c"/><path d="M41.322 77.367l1.562-.83v.304l-1.562.83z" class="d"/><path d="M39.974 76.558l1.562-.83 1.348.8-1.562.83z" class="b"/><path d="M41.322 77.367v.303l-1.348-.8v-.302z" class="c"/><path d="M43.316 78.566l1.563-.83v.302l-1.563.83z" class="d"/><path d="M41.968 77.755l1.563-.83 1.348.81-1.563.83z" class="b"/><path d="M43.316 78.566v.303l-1.348-.8v-.304z" class="c"/><path d="M45.4 79.823l1.563-.83v.304l-1.563.83z" class="d"/><path d="M44.062 79.014l1.563-.83 1.348.808-1.563.83z" class="b"/><path d="M45.4 79.823v.303l-1.348-.81v-.303z" class="c"/><path d="M47.41 81.026l1.563-.83v.303l-1.563.83z" class="d"/><use xlink:href="#H" class="b"/><path d="M47.41 81.026v.303l-1.348-.8v-.304z" class="c"/><path d="M49.478 82.268l1.563-.83v.302l-1.563.83z" class="d"/><use xlink:href="#H" x="2.066" y="1.245" class="b"/><path d="M49.478 82.268v.304l-1.348-.81v-.303z" class="c"/><path d="M51.434 83.443l1.562-.83.001.302-1.563.83z" class="d"/><path d="M50.085 82.633l1.564-.83 1.346.8-1.56.83z" class="b"/><path d="M51.434 83.443v.304l-1.348-.81-.001-.303z" class="c"/><path d="M27.256 66.42l1.563-.83v.303l-1.563.83z" class="d"/><path d="M25.91 65.612l1.563-.83 1.348.81-1.563.83z" class="b"/><path d="M27.256 66.42v.303l-1.348-.8v-.303z" class="c"/><path d="M29.25 67.62l1.563-.83v.304l-1.563.83z" class="d"/><path d="M27.904 66.8l1.562-.83 1.348.81-1.563.83z" class="b"/><path d="M29.25 67.62v.303l-1.347-.8V66.8z" class="c"/><use xlink:href="#I" class="d"/><path d="M29.998 68.068l1.56-.83 1.348.81-1.56.83z" class="b"/><path d="M31.345 68.878v.304l-1.348-.81v-.303z" class="c"/><path d="M33.346 70.082l1.562-.83.001.303-1.563.83z" class="d"/><path d="M32 69.27l1.562-.83 1.347.808-1.562.832z" class="b"/><path d="M33.346 70.082v.3L32 69.575v-.304z" class="c"/><use xlink:href="#I" x="4.069" y="2.445" class="d"/><path d="M34.066 70.512l1.563-.83 1.347.81-1.562.83z" class="b"/><path d="M35.414 71.323v.303l-1.348-.8v-.304z" class="c"/><path d="M37.415 72.525l1.562-.83V72l-1.562.83z" class="d"/><path d="M36.06 71.712l1.563-.83 1.355.814-1.563.83z" class="b"/><path d="M37.415 72.525v.304l-1.355-.815v-.302z" class="c"/><use xlink:href="#I" x="8.165" y="4.906" class="d"/><path d="M38.16 72.973l1.564-.83 1.346.81-1.56.83z" class="b"/><path d="M39.51 73.784v.302l-1.348-.81v-.304z" class="c"/><path d="M41.503 74.98l1.563-.83v.304l-1.563.83z" class="d"/><path d="M40.156 74.172l1.562-.83 1.35.81-1.563.83z" class="b"/><path d="M41.503 74.98v.304l-1.348-.81v-.302z" class="c"/><path d="M43.465 76.16l1.563-.83v.304l-1.563.83z" class="d"/><use xlink:href="#H" x="-3.946" y="-4.863" class="b"/><path d="M43.465 76.16v.303l-1.348-.8v-.302z" class="c"/><path d="M45.46 77.36l1.562-.83v.302l-1.562.83z" class="d"/><path d="M44.113 76.55l1.562-.83 1.348.81-1.562.83z" class="b"/><path d="M45.46 77.36v.303l-1.348-.8v-.304z" class="c"/><path d="M47.554 78.617l1.562-.83v.304l-1.562.83z" class="d"/><path d="M46.207 77.808l1.563-.83 1.347.808-1.562.83z" class="b"/><path d="M47.554 78.617v.303l-1.348-.8v-.302z" class="c"/><use xlink:href="#I" x="18.211" y="10.942" class="d"/><path d="M48.208 79.01l1.562-.83 1.348.8-1.562.83z" class="b"/><path d="M49.556 79.82v.303l-1.348-.8v-.304z" class="c"/><path d="M51.623 81.062l1.563-.83v.302l-1.563.83z" class="d"/><use xlink:href="#H" x="4.211" y="0.038" class="b"/><path d="M51.623 81.062v.304l-1.348-.81v-.303z" class="c"/><use xlink:href="#I" x="22.233" y="13.359" class="d"/><path d="M52.23 81.427l1.563-.83 1.347.81-1.56.83z" class="b"/><path d="M53.578 82.237v.303l-1.348-.8v-.303z" class="c"/><path d="M29.535 65.214l1.563-.83v.303l-1.563.83z" class="d"/><path d="M28.187 64.406l1.563-.83 1.348.81-1.563.83z" class="b"/><path d="M29.535 65.214v.304l-1.348-.8v-.303z" class="c"/><path d="M31.53 66.414l1.563-.83v.304l-1.563.83z" class="d"/><path d="M30.18 65.604l1.563-.83 1.348.81-1.563.83z" class="b"/><path d="M31.53 66.414v.303l-1.348-.8v-.303z" class="c"/><path d="M33.623 67.67l1.562-.83.001.303-1.563.83z" class="d"/><path d="M32.276 66.862l1.562-.83 1.347.81-1.562.83z" class="b"/><path d="M33.623 67.67v.304l-1.347-.81v-.303z" class="c"/><path d="M35.624 68.876l1.562-.83.001.303-1.563.83z" class="d"/><path d="M34.277 68.065l1.563-.83 1.347.808-1.562.832z" class="b"/><path d="M35.624 68.876v.3l-1.348-.808v-.304z" class="c"/><use xlink:href="#I" x="6.347" y="1.239" class="d"/><path d="M36.344 69.306l1.562-.83 1.348.81-1.562.83z" class="b"/><path d="M37.692 70.117v.303l-1.348-.8v-.304z" class="c"/><path d="M39.693 71.32l1.563-.83v.303l-1.563.83z" class="d"/><path d="M38.338 70.505l1.563-.83 1.355.814-1.564.83z" class="b"/><path d="M39.693 71.32v.304l-1.354-.815v-.302z" class="c"/><path d="M41.788 72.577l1.56-.83v.303l-1.56.83z" class="d"/><path d="M40.44 71.767l1.564-.83 1.346.81-1.56.83z" class="b"/><path d="M41.788 72.577v.303l-1.35-.81-.001-.304z" class="c"/><path d="M43.782 73.775l1.563-.83v.304l-1.563.83z" class="d"/><path d="M42.434 72.966l1.562-.83 1.35.81-1.563.83z" class="b"/><path d="M43.782 73.775v.304l-1.348-.81v-.302z" class="c"/><path d="M45.744 74.955l1.563-.83v.304l-1.563.83z" class="d"/><path d="M44.396 74.145l1.563-.83 1.348.81-1.563.83z" class="b"/><path d="M45.744 74.955v.303l-1.348-.8v-.303z" class="c"/><path d="M47.738 76.154l1.563-.83v.302l-1.563.83z" class="d"/><path d="M46.39 75.343l1.562-.83 1.348.81-1.563.83z" class="b"/><path d="M47.738 76.154v.303l-1.347-.8v-.304z" class="c"/><path d="M49.832 77.41l1.562-.83v.304l-1.562.83z" class="d"/><path d="M48.485 76.602l1.563-.83 1.347.81-1.562.83z" class="b"/><path d="M49.832 77.41v.303l-1.348-.8v-.302z" class="c"/><path d="M51.833 78.614l1.563-.83v.303l-1.563.83z" class="d"/><path d="M50.487 77.803l1.562-.83 1.348.8-1.563.83z" class="b"/><path d="M51.833 78.614v.303l-1.347-.8v-.304z" class="c"/><path d="M53.9 79.856l1.562-.83v.302l-1.562.83z" class="d"/><path d="M52.553 79.046l1.563-.83 1.347.8-1.562.83z" class="b"/><path d="M53.9 79.856v.304l-1.348-.81v-.303z" class="c"/><use xlink:href="#I" x="24.512" y="12.152" class="d"/><path d="M54.508 80.22l1.563-.83 1.347.81-1.56.83z" class="b"/><path d="M55.857 81.03v.303l-1.348-.8-.001-.303z" class="c"/><path d="M23.62 69.425l1.562-.83v.295l-1.562.83z" class="d"/><path d="M22.272 68.616l1.562-.83 1.35.808-1.562.83z" class="b"/><path d="M23.62 69.425v.295l-1.348-.81-.002-.294z" class="c"/><path d="M25.516 70.565l1.563-.83v.294l-1.563.83z" class="d"/><path d="M24.168 69.754l1.563-.83 1.348.81-1.563.83z" class="b"/><path d="M25.516 70.565v.294l-1.348-.8v-.295z" class="c"/><path d="M27.51 71.762l1.562-.83v.295l-1.562.83z" class="d"/><path d="M26.163 70.954l1.563-.83 1.347.8-1.56.83z" class="b"/><path d="M27.51 71.762v.296l-1.348-.81v-.294z" class="c"/><path d="M44.19 81.754l1.563-.83v.295l-1.563.83z" class="d"/><path d="M42.842 80.945l1.563-.83 1.35.808-1.563.83z" class="b"/><path d="M44.19 81.754v.295l-1.348-.81-.001-.294z" class="c"/><path d="M46.087 82.894l1.562-.83v.294l-1.562.83z" class="d"/><path d="M44.74 82.084l1.563-.83 1.347.81-1.562.83z" class="b"/><path d="M46.087 82.894v.294l-1.348-.8v-.295z" class="c"/><path d="M48.082 84.09l1.563-.83v.295l-1.563.83z" class="d"/><use xlink:href="#H" x="0.67" y="3.068" class="b"/><path d="M48.082 84.09v.296l-1.348-.81v-.294z" class="c"/><path d="M42.062 80.517l1.562-.83v.295l-1.562.83z" class="d"/><path d="M28.238 72.21l1.562-.83 13.825 8.307-1.563.83z" class="b"/><path d="M42.062 80.517v.296l-13.824-8.307V72.2z" class="c"/><path d="M59.04 88.094l1.563-.83v.303l-1.563.83z" class="d"/><use xlink:href="#H" x="11.626" y="7.069" class="b"/><path d="M59.04 88.094v.303l-1.348-.8v-.304z" class="c"/><path d="M61.105 89.337l1.563-.83v.302l-1.563.83z" class="d"/><use xlink:href="#H" x="13.693" y="8.312" class="b"/><path d="M61.105 89.337v.304l-1.348-.81v-.303z" class="c"/><path d="M63.06 90.51l1.562-.83.001.302-1.563.83z" class="d"/><path d="M61.712 89.702l1.564-.83 1.346.8-1.56.83z" class="b"/><path d="M63.06 90.51v.304l-1.348-.81-.001-.303z" class="c"/><use xlink:href="#I" x="29.838" y="18.01" class="d"/><path d="M59.835 86.078l1.562-.83 1.348.8-1.562.83z" class="b"/><path d="M61.183 86.888v.303l-1.348-.8v-.304z" class="c"/><path d="M63.25 88.13l1.563-.83v.302l-1.563.83z" class="d"/><use xlink:href="#H" x="15.838" y="7.105" class="b"/><path d="M63.25 88.13v.304l-1.348-.81v-.303z" class="c"/><use xlink:href="#I" x="33.86" y="20.427" class="d"/><path d="M63.857 88.496l1.563-.83 1.347.81-1.56.83z" class="b"/><path d="M65.205 89.305v.303l-1.347-.8-.002-.303z" class="c"/><path d="M63.46 85.682l1.563-.83v.303l-1.563.83z" class="d"/><path d="M62.114 84.872l1.562-.83 1.348.8-1.563.83z" class="b"/><path d="M63.46 85.682v.303l-1.347-.8v-.304z" class="c"/><path d="M65.528 86.924l1.562-.83v.302l-1.562.83z" class="d"/><path d="M64.18 86.115l1.563-.83 1.347.8-1.562.83z" class="b"/><path d="M65.528 86.924v.304l-1.348-.81v-.303z" class="c"/><use xlink:href="#I" x="36.139" y="19.222" class="d"/><path d="M66.135 87.3l1.563-.83 1.347.81-1.56.83z" class="b"/><path d="M67.484 88.1v.303l-1.348-.8-.001-.303z" class="c"/><path d="M54.228 85.142l1.563-.83v.302l-1.563.83z" class="d"/><use xlink:href="#H" x="6.816" y="4.118" class="b"/><path d="M54.228 85.142v.304l-1.348-.81v-.303z" class="c"/><path d="M56.184 86.317l1.562-.83.001.302-1.563.83z" class="d"/><path d="M54.835 85.507l1.564-.83 1.346.8-1.56.83z" class="b"/><path d="M56.184 86.317v.304l-1.348-.81-.001-.303z" class="c"/><path d="M56.373 83.936l1.563-.83v.302l-1.563.83z" class="d"/><use xlink:href="#H" x="8.961" y="2.912" class="b"/><path d="M56.373 83.936v.304l-1.348-.81v-.303z" class="c"/><use xlink:href="#I" x="26.983" y="16.232" class="d"/><path d="M56.98 84.3l1.563-.83 1.347.81-1.56.83z" class="b"/><path d="M58.328 85.11v.303l-1.348-.8V84.3z" class="c"/><path d="M58.65 82.73l1.562-.83v.302l-1.562.83z" class="d"/><path d="M57.303 81.92l1.563-.83 1.347.8-1.562.83z" class="b"/><path d="M58.65 82.73v.304l-1.348-.81v-.303z" class="c"/><use xlink:href="#I" x="29.262" y="15.027" class="d"/><path d="M59.258 83.095l1.563-.83 1.347.81-1.56.83z" class="b"/><path d="M60.607 83.905v.303l-1.348-.8-.001-.303z" class="c"/><path d="M51.993 86.46l1.562-.83.001.304-1.563.83z" class="d"/><path d="M50.645 85.65l1.563-.83 1.347.81-1.562.83z" class="b"/><path d="M51.993 86.46v.304l-1.348-.81v-.303z" class="c"/><g class="g h"><path d="M16.516 69.03l43.856 26.354.003 1.926" class="i l"/><path d="M.798 76.056l5.508-2.93" class="e"/></g><defs ><path id="B" d="M60.5 10.52c.523.314.948 1.076.95 1.715l.005 7.346c.001.63-.424.887-.947.573L47.653 12.43c-.53-.317-.95-1.08-.95-1.714l-.006-7.344c0-.64.42-.893.948-.575L60.5 10.52z"/><path id="C" d="M60.384 48.682l-12.562-7.44c.248-.126.476-.128.645-.028l12.562 7.44c-.17-.1-.398-.1-.645.028"/><path id="D" d="M45.02 66.832l-12.562-7.438c-.162-.097-.27-.288-.285-.552l12.562 7.438c.015.265.123.455.285.552"/><path id="E" d="M44.275 58.182l-12.562-7.438a1.71 1.71 0 0 1 .829-1.376l12.56 7.44c-.462.245-.822.848-.828 1.375"/><path id="F" d="M60.368 48.69c.49-.262.914-.033.945.512l.457 8.018a1.69 1.69 0 0 1-.833 1.459l-15.263 8.116c-.486.258-.91.03-.94-.516l-.458-8.02c-.03-.545.342-1.196.827-1.454l15.265-8.116z"/><path id="G" d="M10.38 77.448c0 .553-.896 1-2 1s-2-.447-2-1 .896-1 2-1 2 .447 2 1"/><path id="H" d="M46.064 80.215l1.563-.83 1.348.8-1.563.83z"/><path id="I" d="M31.345 68.878l1.562-.83v.303l-1.562.83z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/security/Router_UTM.svg b/src/main/webapp/img/lib/allied_telesis/security/Router_UTM.svg index 59acf402120fd99228fc99336195460d5bc20bd8..92ef11786fa37ad002201648dd96e881660c3107 100644 --- a/src/main/webapp/img/lib/allied_telesis/security/Router_UTM.svg +++ b/src/main/webapp/img/lib/allied_telesis/security/Router_UTM.svg @@ -1,60 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" - id="Layer_1" inkscape:version="0.92.3 (2405546, 2018-03-11)" sodipodi:docname="Router_UTM2.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 92.702 65.41" - style="enable-background:new 0 0 92.702 65.41;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#626366;stroke-width:2.409;stroke-linejoin:round;} - .st1{fill:#A4A6A9;stroke:#626366;stroke-width:2.409;stroke-linejoin:round;} - .st2{fill:#BBBDBF;} - .st3{fill:#A4A6A9;} - .st4{fill:#E21B23;} - .st5{fill:#B3B5B7;} - .st6{fill:#FEFEFE;} - .st7{fill:#96989B;} - .st8{fill:none;stroke:#DFE0DF;stroke-width:0.637;stroke-linecap:round;stroke-linejoin:round;} -</style> -<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview1249" inkscape:current-layer="Layer_1" inkscape:cx="33.023101" inkscape:cy="38.681074" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-height="1017" inkscape:window-maximized="1" inkscape:window-width="1920" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="8" objecttolerance="10" pagecolor="#ffffff" showgrid="false"> - </sodipodi:namedview> -<title id="title4">icon-router-UTM</title> -<desc id="desc6">Created with Sketch.</desc> -<polygon id="Stroke-87" class="st0" points="54.344,54.008 91.467,34.175 91.497,43.141 54.373,62.973 "/> -<path id="Stroke-47" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" class="st0" d="M1.722,21.132L38.847,1.3 - c0.294-0.158,0.689-0.126,1.127,0.135L2.85,21.267C2.413,21.007,2.017,20.974,1.722,21.132z"/> -<path id="Stroke-83" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" class="st1" d="M90.98,44.278L53.856,64.11 - c0.32-0.171,0.52-0.566,0.518-1.138L91.498,43.14C91.5,43.713,91.3,44.107,90.98,44.278z"/> -<polygon id="Stroke-85" class="st0" points="89.809,31.2 52.685,51.033 2.85,21.268 39.974,1.435 "/> -<path id="Stroke-196" inkscape:connector-curvature="0" class="st0" d="M52.685,51.032l37.124-19.833 - c0.907,0.542,1.655,1.884,1.658,2.976L54.344,54.008C54.34,52.915,53.592,51.574,52.685,51.032z"/> -<path id="Stroke-198" class="st0" d="M52.685,51.032c0.907,0.542,1.655,1.883,1.659,2.976l0.029,8.964 - c0.004,1.099-0.738,1.544-1.645,1.002L2.893,34.21c-0.913-0.545-1.655-1.877-1.658-2.976l-0.03-8.965 - C1.2,21.177,1.937,20.722,2.85,21.267L52.685,51.032z"/> -<polygon id="Fill-281" class="st2" points="89.809,31.2 52.685,51.033 2.85,21.268 39.974,1.435 "/> -<polygon id="Fill-282" class="st3" points="54.344,54.008 91.467,34.175 91.497,43.141 54.373,62.973 "/> -<path id="Fill-283" inkscape:connector-curvature="0" class="st2" d="M52.685,51.032l37.124-19.833 - c0.907,0.542,1.655,1.884,1.658,2.976L54.344,54.008C54.34,52.915,53.592,51.574,52.685,51.032"/> -<path id="Fill-391" class="st4" d="M52.685,51.032c1.653,0.982,1.656,1.906,1.659,2.976l0.029,8.964 - c0.004,1.099-0.738,1.544-1.645,1.002L2.893,34.21c-0.913-0.545-1.655-1.877-1.658-2.976l-0.03-8.965 - C1.2,21.177,1.937,20.722,2.85,21.267L52.685,51.032z"/> -<path id="Fill-393" class="st5" d="M52.403,53.523c1.39,1.062,1.717,1.399,1.725,3.521l0.019,6.063 - c0.003,0.879-0.492,1.626-1.645,1.002L5.696,36.032c-0.731-0.436-1.324-1.501-1.328-2.38L4.344,26.48 - c-0.003-0.874,0.586-1.238,1.318-0.802L52.403,53.523z"/> -<polygon id="Fill-397" class="st6" points="19.293,38.238 7.827,31.39 7.82,28.693 19.285,35.54 "/> -<polygon id="Fill-399" class="st6" points="19.261,42.316 7.798,35.47 7.791,32.771 19.254,39.616 "/> -<polygon id="Fill-401" class="st6" points="27.68,47.499 21.851,44.009 21.826,37.96 27.648,41.449 "/> -<polygon id="Fill-403" class="st6" points="50.107,60.456 47.192,58.711 47.18,55.686 50.091,57.431 "/> -<polygon id="Fill-405" class="st6" points="44.276,57.474 40.079,54.961 40.06,50.606 44.252,53.118 "/> -<path id="Fill-407" class="st4" d="M47.747,17.571l-8.397,4.268c-4.903,2.492-8.882,1.994-11.659,0.345 - c-2.942-1.747-3.07-4.023,1.508-6.35l8.418-4.279l2.526,1.5l-8.505,4.323c-2.126,1.081-2.352,2.358-0.897,3.222 - c1.336,0.794,3.589,1.008,6.235-0.338l8.246-4.191L47.747,17.571z"/> -<polygon id="Fill-409" class="st4" points="56.369,25.681 52.701,23.502 40.617,29.645 38.091,28.146 50.176,22.003 46.507,19.824 - 49.22,18.446 59.082,24.302 "/> -<polygon id="Fill-411" class="st4" points="69.316,30.382 71.513,31.687 56.716,39.208 54.192,37.709 63.435,33.01 56.06,33.748 - 55.673,33.519 57.584,29.535 48.341,34.234 45.816,32.735 60.613,25.212 62.811,26.517 60.574,31.239 "/> -<path id="Stroke-83-4" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" class="st3" d="M90.98,44.278L53.856,64.11 - c0.32-0.171,0.52-0.566,0.518-1.138L91.498,43.14C91.5,43.713,91.3,44.107,90.98,44.278z"/> -<path id="Stroke-47-5" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" class="st7" d="M1.722,21.132L38.847,1.3 - c0.294-0.158,0.689-0.126,1.127,0.135L2.85,21.267C2.413,21.007,2.017,20.974,1.722,21.132z"/> -<path id="Stroke-395" class="st8" d="M1.204,22.27c-0.212-2.125,2.858-0.413,2.858-0.413l48.867,29.187 - c-0.119-0.114,0.354,0.211,0.894,0.866c0.523,0.633,0.478,1.639,0.478,1.639l0.103,8.716c0,0,0.251,1.074-0.823,1.651"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 92.702 65.41"><style><![CDATA[.J{stroke-linejoin:round}.K{stroke:#626366}.L{stroke-width:2.409}.M{fill:#a4a6a9}]]></style><g fill="none" class="J K L"><path d="M54.344 54.008l37.123-19.833.03 8.966-37.124 19.832z"/><use xlink:href="#B"/></g><use xlink:href="#C" class="J K L M"/><g fill="none" class="J K L"><path d="M89.81 31.2L52.685 51.033 2.85 21.268 39.974 1.435z"/><path d="M52.685 51.032L89.81 31.2c.907.542 1.655 1.884 1.658 2.976L54.344 54.008c-.004-1.093-.752-2.434-1.66-2.976z"/><path d="M52.685 51.032c.907.542 1.655 1.883 1.66 2.976l.03 8.964c.004 1.1-.738 1.544-1.645 1.002L2.893 34.2c-.913-.545-1.655-1.877-1.658-2.976l-.03-8.965c-.005-1.092.732-1.547 1.645-1.002l49.835 29.765z"/></g><path d="M89.81 31.2L52.685 51.033 2.85 21.268 39.974 1.435z" fill="#bbbdbf"/><path d="M54.344 54.008l37.123-19.833.03 8.966-37.124 19.832z" class="M"/><path d="M52.685 51.032L89.81 31.2c.907.542 1.655 1.884 1.658 2.976L54.344 54.008c-.004-1.093-.752-2.434-1.66-2.976" fill="#bbbdbf"/><path d="M52.685 51.032c1.653.982 1.656 1.906 1.66 2.976l.03 8.964c.004 1.1-.738 1.544-1.645 1.002L2.893 34.2c-.913-.545-1.655-1.877-1.658-2.976l-.03-8.965c-.005-1.092.732-1.547 1.645-1.002l49.835 29.765z" fill="#e21b23"/><path d="M52.403 53.523c1.4 1.062 1.717 1.4 1.725 3.52l.02 6.063c.003.88-.492 1.626-1.645 1.002L5.696 36.032c-.73-.436-1.324-1.5-1.328-2.38l-.024-7.172c-.003-.874.586-1.238 1.318-.802l46.74 27.845z" fill="#b3b5b7"/><path d="M19.293 38.238L7.827 31.4l-.007-2.697 11.465 6.847zm-.033 4.078L7.798 35.47l-.007-2.7 11.463 6.845zm8.42 5.184L21.85 44l-.025-6.05 5.822 3.5zm22.427 12.956l-2.915-1.745-.012-3.025 2.9 1.745zm-5.83-2.982L40.08 54.96l-.02-4.355 4.192 2.512z" fill="#fefefe"/><path d="M47.747 17.57l-8.397 4.27c-4.903 2.492-8.882 1.994-11.66.345-2.942-1.747-3.07-4.023 1.508-6.35l8.418-4.28 2.526 1.5-8.505 4.323c-2.126 1.08-2.352 2.358-.897 3.222 1.336.794 3.6 1.008 6.235-.338l8.246-4.2 2.525 1.5zm8.623 8.1l-3.668-2.18-12.084 6.143-2.526-1.5L50.177 22l-3.67-2.18 2.713-1.378 9.862 5.856zm12.946 4.702l2.197 1.305-14.797 7.52-2.524-1.5 9.243-4.7-7.375.738-.387-.23 1.9-3.984-9.243 4.7-2.525-1.5 14.797-7.523 2.198 1.305-2.237 4.722z" fill="#e21b23"/><use xlink:href="#C" class="M"/><use xlink:href="#B" fill="#96989b"/><path d="M1.204 22.27c-.212-2.125 2.858-.413 2.858-.413L52.93 51.044c-.12-.114.354.21.894.866.523.633.478 1.64.478 1.64l.103 8.716s.25 1.074-.823 1.65" fill="none" stroke="#dfe0df" stroke-width=".637" stroke-linecap="round" class="J"/><defs ><path id="B" d="M1.722 21.132L38.847 1.3c.294-.158.69-.126 1.127.135L2.85 21.267c-.437-.26-.833-.293-1.128-.135z"/><path id="C" d="M90.98 44.278L53.856 64.1c.32-.17.52-.566.518-1.138L91.498 43.14c.002.573-.198.967-.518 1.138z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/security/Router_VPN.svg b/src/main/webapp/img/lib/allied_telesis/security/Router_VPN.svg index b753fefa39d66e0c1730a8819cadbc4ccf423e50..61885e52901b4e568d684e27c15257bfc9e033a5 100644 --- a/src/main/webapp/img/lib/allied_telesis/security/Router_VPN.svg +++ b/src/main/webapp/img/lib/allied_telesis/security/Router_VPN.svg @@ -1,52 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" - id="Layer_1" inkscape:version="0.92.3 (2405546, 2018-03-11)" sodipodi:docname="Router_VPN2.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 92.647 65.448" - style="enable-background:new 0 0 92.647 65.448;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#626366;stroke-width:2.409;stroke-linejoin:round;} - .st1{fill:#BBBDBF;} - .st2{fill:#A4A6A9;} - .st3{fill:#E21B23;} - .st4{fill:#B3B5B7;} - .st5{fill:#FEFEFE;} - .st6{fill:none;stroke:#DFE0DF;stroke-width:0.637;stroke-linecap:round;stroke-linejoin:round;} -</style> -<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview1246" inkscape:current-layer="Layer_1" inkscape:cx="39.909038" inkscape:cy="33.943256" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-height="1017" inkscape:window-maximized="1" inkscape:window-width="1920" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="12.215054" objecttolerance="10" pagecolor="#ffffff" showgrid="false"> - </sodipodi:namedview> -<title id="title4">icon-router-VPN</title> -<desc id="desc6">Created with Sketch.</desc> -<path id="Stroke-47" inkscape:connector-curvature="0" class="st0" d="M1.725,21.032L38.903,1.299 - c0.295-0.157,0.69-0.124,1.127,0.138L2.852,21.171C2.417,20.909,2.02,20.876,1.725,21.032z"/> -<path id="Stroke-83" inkscape:connector-curvature="0" class="st0" d="M90.92,44.414L53.744,64.148 - c0.321-0.17,0.522-0.565,0.521-1.136l37.176-19.734C91.441,43.85,91.241,44.244,90.92,44.414z"/> -<polygon id="Stroke-85" class="st0" points="2.852,21.171 40.029,1.437 89.785,31.334 52.609,51.067 "/> -<polygon id="Stroke-87" class="st0" points="91.442,43.279 54.265,63.013 54.258,54.048 91.436,34.314 "/> -<path id="Stroke-196" inkscape:connector-curvature="0" class="st0" d="M52.609,51.068l37.177-19.734 - c0.905,0.545,1.65,1.888,1.651,2.98L54.258,54.048C54.258,52.956,53.514,51.612,52.609,51.068z"/> -<path id="Stroke-198" class="st0" d="M52.609,51.068c0.906,0.544,1.65,1.888,1.65,2.98l0.007,8.965 - c0.001,1.098-0.742,1.542-1.647,0.997L2.862,34.114c-0.912-0.547-1.65-1.881-1.651-2.98l-0.007-8.965 - c0-1.092,0.737-1.545,1.648-0.997L52.609,51.068z"/> -<polygon id="Fill-281" class="st1" points="89.785,31.334 52.609,51.067 2.852,21.171 40.029,1.437 "/> -<polygon id="Fill-282" class="st2" points="91.442,43.279 54.265,63.013 54.258,54.048 91.436,34.314 "/> -<path id="Fill-391" class="st3" d="M52.609,51.068c1.65,0.987,1.65,1.911,1.65,2.98l0.007,8.965 - c0.001,1.098-0.742,1.542-1.647,0.997L2.862,34.114c-0.912-0.547-1.65-1.881-1.651-2.98l-0.007-8.965 - c0-1.092,0.737-1.545,1.648-0.997L52.609,51.068z"/> -<path id="Fill-393" class="st4" d="M52.321,53.557c1.386,1.065,1.712,1.403,1.713,3.525l0.005,6.064 - c0.001,0.879-0.497,1.623-1.649,0.997L5.66,35.942c-0.729-0.438-1.32-1.505-1.321-2.384l-0.005-7.171 - c0-0.874,0.59-1.237,1.318-0.799L52.321,53.557z"/> -<polygon id="Fill-397" class="st5" points="27.819,44.72 16.372,37.842 16.372,37.859 7.764,32.688 7.764,35.387 19.208,42.263 - 19.208,42.244 27.819,47.418 "/> -<polygon id="Fill-399" class="st5" points="50.006,60.484 47.097,58.731 47.091,55.707 49.998,57.459 "/> -<polygon id="Fill-401" class="st5" points="44.182,57.487 39.993,54.963 39.986,50.608 44.169,53.131 "/> -<polygon id="Fill-403" class="st5" points="33.361,50.67 30.451,48.917 30.448,45.893 33.353,47.645 "/> -<polygon id="Fill-405" class="st5" points="36.938,52.999 34.028,51.246 34.023,48.222 36.93,49.974 "/> -<path id="Stroke-47-2" inkscape:connector-curvature="0" class="st1" d="M1.725,21.032L38.903,1.299 - c0.295-0.157,0.69-0.124,1.127,0.138L2.852,21.171C2.417,20.909,2.02,20.876,1.725,21.032z"/> -<path id="Stroke-196-7" inkscape:connector-curvature="0" class="st2" d="M52.608,51.068l37.177-19.734 - c0.905,0.545,1.65,1.888,1.651,2.98L54.258,54.048C54.258,52.956,53.514,51.612,52.608,51.068z"/> -<path id="Stroke-83-1" inkscape:connector-curvature="0" class="st2" d="M90.92,44.414L53.745,64.148 - c0.321-0.17,0.522-0.565,0.521-1.136l37.176-19.734C91.441,43.85,91.241,44.244,90.92,44.414z"/> -<path id="Stroke-395" class="st6" d="M1.205,22.169c-0.207-2.126,2.86-0.405,2.86-0.405L52.853,51.08 - c-0.117-0.115,0.354,0.212,0.893,0.868c0.521,0.635,0.474,1.641,0.474,1.641l0.08,8.716c0,0,0.247,1.075-0.828,1.648"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 92.647 65.448"><g fill="none" stroke="#626366" stroke-width="2.409" stroke-linejoin="round"><use xlink:href="#B"/><path d="M90.92 44.414L53.744 64.148c.32-.17.522-.565.52-1.136L91.44 43.278c0 .572-.2.966-.52 1.136zM2.852 21.17L40.03 1.437l49.756 29.897L52.6 51.067z"/><path d="M91.442 43.28L54.265 63.013l-.007-8.965 37.178-19.734z"/><path d="M52.61 51.068l37.177-19.734c.905.545 1.65 1.888 1.65 2.98l-37.18 19.734c0-1.092-.744-2.436-1.65-2.98z"/><path d="M52.61 51.068c.906.544 1.65 1.888 1.65 2.98l.007 8.965c.001 1.098-.742 1.542-1.647.997L2.862 34.114c-.912-.547-1.65-1.88-1.65-2.98l-.007-8.965c0-1.092.737-1.545 1.648-.997L52.61 51.068z"/></g><path d="M89.785 31.334L52.61 51.067 2.852 21.17 40.03 1.437z" fill="#bbbdbf"/><path d="M91.442 43.28L54.265 63.013l-.007-8.965 37.178-19.734z" fill="#a4a6a9"/><path d="M52.61 51.068c1.65.987 1.65 1.91 1.65 2.98l.007 8.965c.001 1.098-.742 1.542-1.647.997L2.862 34.114c-.912-.547-1.65-1.88-1.65-2.98l-.007-8.965c0-1.092.737-1.545 1.648-.997L52.61 51.068z" fill="#e21b23"/><path d="M52.32 53.557c1.386 1.065 1.712 1.403 1.713 3.525l.005 6.064c.001.88-.497 1.623-1.65.997l-46.73-28.2c-.73-.438-1.32-1.505-1.32-2.384l-.005-7.17c0-.874.6-1.237 1.318-.8l46.67 27.97z" fill="#b3b5b7"/><path d="M27.82 44.72l-11.447-6.878v.017l-8.608-5.17v2.7l11.444 6.876v-.02l8.6 5.174zm22.186 15.764l-2.9-1.753-.006-3.024 2.907 1.752zm-5.824-2.997l-4.2-2.524-.007-4.355 4.183 2.523zM33.36 50.67l-2.9-1.753-.003-3.024 2.905 1.752zM36.938 53l-2.9-1.753-.005-3.024 2.907 1.752z" fill="#fefefe"/><use xlink:href="#B" fill="#bbbdbf"/><path d="M52.608 51.068l37.177-19.734c.905.545 1.65 1.888 1.65 2.98L54.258 54.048c0-1.092-.744-2.436-1.65-2.98zm38.312-6.654L53.745 64.148c.32-.17.522-.565.52-1.136L91.44 43.278c-.001.572-.2.966-.522 1.136z" fill="#a4a6a9"/><path d="M1.205 22.17c-.207-2.126 2.86-.405 2.86-.405L52.853 51.08c-.117-.115.354.212.893.868.52.635.474 1.64.474 1.64l.08 8.716s.247 1.075-.828 1.648" fill="none" stroke="#dfe0df" stroke-width=".637" stroke-linecap="round" stroke-linejoin="round"/><defs ><path id="B" d="M1.725 21.032L38.903 1.3c.295-.157.7-.124 1.127.138L2.852 21.17c-.435-.262-.832-.295-1.127-.14z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/security/Surveillance_Camera_Ceiling.svg b/src/main/webapp/img/lib/allied_telesis/security/Surveillance_Camera_Ceiling.svg index c3d38a338e832096757f2853f752a1e09e1ac900..1c216034673f688f37945935b1b7583290d512e6 100644 --- a/src/main/webapp/img/lib/allied_telesis/security/Surveillance_Camera_Ceiling.svg +++ b/src/main/webapp/img/lib/allied_telesis/security/Surveillance_Camera_Ceiling.svg @@ -1,43 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 61.643 58.61" style="enable-background:new 0 0 61.643 58.61;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#626366;stroke-width:2.481;stroke-linejoin:round;} - .st1{fill:#898B8E;} - .st2{fill:#E5E6E7;} - .st3{fill:#58585B;} - .st4{fill:#FEFEFE;} - .st5{fill:#B3B5B7;} - .st6{fill:#808184;} - .st7{fill:none;stroke:#58585B;stroke-width:1.24;stroke-linecap:round;stroke-linejoin:round;} - .st8{fill:none;stroke:#F0F0F1;stroke-width:1.24;stroke-linecap:round;stroke-linejoin:round;} -</style> -<title>icon-surveillance-camera</title> -<desc>Created with Sketch.</desc> -<path id="Stroke-1" class="st0" d="M58.006,34.331c0,12.087-12.851,23.038-27.737,23.038S3.638,46.495,3.638,32.765 - c0-3.022,0.343-6.343,1.751-8.11c4.331-5.437,50.221-7.372,52.256,1.658C58.069,28.2,58.006,32.275,58.006,34.331z"/> -<path id="Stroke-3" class="st0" d="M60.403,30c0,0-5.621-8.109-28.967-8.293C6.77,21.512,1.24,30,1.24,30V10.372 - c0,0,7.096-8.754,29.581-9.123c20.563-0.337,29.58,9.123,29.58,9.123L60.403,30L60.403,30z"/> -<path id="Fill-5" class="st1" d="M58.006,34.331c0,12.087-12.851,23.038-27.737,23.038S3.638,46.495,3.638,32.765 - c0-3.022,0.343-6.343,1.751-8.11c4.331-5.437,50.221-7.372,52.256,1.658C58.069,28.2,58.006,32.275,58.006,34.331"/> -<path id="Fill-7" class="st2" d="M18.566,44.468c1.03,0.958-4.513,3.334-4.867,3.075c-8.737-6.386-7.865-15.071-7.204-15.976 - c1.751-2.396,6.082-3.87,6.082-3.87C12.462,34.055,16.302,42.363,18.566,44.468"/> -<path id="Fill-9" class="st2" d="M49.824,27.731c-0.511-1.311,5.715,3.036,5.8,3.466c1.557,7.885-5.654,15.435-6.727,15.758 - c-2.842,0.855-5.741-2.602-5.253-2.856C46.979,42.363,50.66,29.879,49.824,27.731"/> -<path id="Fill-11" class="st2" d="M30.736,55.263c-7.667,0-8.916-5.052-8.776-9.025c0.121-3.427,1.619-9.848,8.785-10.117 - c5.04-0.19,8.736,3.426,8.772,9.979C39.542,50.575,37.6,55.263,30.736,55.263"/> -<path id="Fill-13" class="st3" d="M37.457,46.772c0,3.155-3.012,5.713-6.728,5.713c-3.714,0-6.726-2.558-6.726-5.713 - c0-3.155,3.012-5.713,6.726-5.713C34.444,41.059,37.457,43.617,37.457,46.772"/> -<path id="Fill-15" class="st4" d="M34.416,48.087c0,2.086-1.691,3.778-3.778,3.778s-3.779-1.692-3.779-3.778 - c0-2.087,1.692-3.778,3.779-3.778S34.416,46,34.416,48.087"/> -<path id="Fill-17" class="st5" d="M60.403,30c0,0-5.621-8.109-28.967-8.293C6.77,21.512,1.24,30,1.24,30V10.372 - c0,0,7.096-8.754,29.581-9.123c20.563-0.337,29.58,9.123,29.58,9.123L60.403,30L60.403,30z"/> -<path id="Fill-19" class="st6" d="M11.804,4.221v19.785C3.543,26.462,1.24,29.997,1.24,29.997V10.374 - C1.24,10.374,4.069,6.888,11.804,4.221"/> -<path id="Fill-21" class="st6" d="M60.403,10.377v19.624c0,0-2.108-3.046-9.117-5.446V4.783 - C57.519,7.351,60.403,10.377,60.403,10.377"/> -<path id="Stroke-23" class="st7" d="M59.485,29.101c-2.253-2.115-9.617-7.25-28.142-7.397c-19.612-0.155-27.126,5.181-29.38,7.373" - /> -<path id="Stroke-25" class="st8" d="M57.327,29.101c-2.252-2.115-9.874-6.206-26.402-6.207c-15.923-0.001-25.034,4.21-27.288,6.402" - /> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 61.643 58.61"><g fill="none" stroke="#626366" stroke-width="2.481" stroke-linejoin="round"><path d="M58.006 34.33c0 12.087-12.85 23.038-27.737 23.038S3.638 46.495 3.638 32.765c0-3.022.343-6.343 1.75-8.1 4.33-5.437 50.22-7.372 52.256 1.658.424 1.887.36 5.962.36 8.018z"/><use xlink:href="#B"/></g><path d="M58.006 34.33c0 12.087-12.85 23.038-27.737 23.038S3.638 46.495 3.638 32.765c0-3.022.343-6.343 1.75-8.1 4.33-5.437 50.22-7.372 52.256 1.658.424 1.887.36 5.962.36 8.018" fill="#898b8e"/><path d="M18.566 44.468c1.03.958-4.513 3.334-4.867 3.075-8.737-6.386-7.865-15.07-7.204-15.976 1.75-2.396 6.082-3.87 6.082-3.87-.115 6.358 3.725 14.666 6 16.77M49.824 27.73c-.5-1.3 5.715 3.036 5.8 3.466 1.557 7.885-5.654 15.435-6.727 15.758-2.842.855-5.74-2.602-5.253-2.856 3.335-1.736 7.016-14.22 6.18-16.368M30.736 55.263c-7.667 0-8.916-5.052-8.776-9.025.12-3.427 1.62-9.848 8.785-10.117 5.04-.2 8.736 3.426 8.772 9.98.025 4.475-1.917 9.163-8.78 9.163" fill="#e5e6e7"/><path d="M37.457 46.772c0 3.155-3.012 5.713-6.728 5.713s-6.726-2.558-6.726-5.713 3.012-5.713 6.726-5.713 6.728 2.558 6.728 5.713" fill="#58585b"/><path d="M34.416 48.087a3.78 3.78 0 0 1-3.778 3.778 3.78 3.78 0 0 1-3.779-3.778 3.78 3.78 0 0 1 3.779-3.778 3.78 3.78 0 0 1 3.778 3.778" fill="#fefefe"/><use xlink:href="#B" fill="#b3b5b7"/><path d="M11.804 4.22v19.785c-8.26 2.456-10.564 6-10.564 6v-19.62S4.07 6.888 11.804 4.22m48.6 6.157V30s-2.108-3.046-9.117-5.446V4.783c6.233 2.568 9.117 5.594 9.117 5.594" fill="#808184"/><g fill="none" stroke-linejoin="round" stroke-width="1.24" stroke-linecap="round"><path d="M59.485 29.1c-2.253-2.115-9.617-7.25-28.142-7.397-19.612-.155-27.126 5.18-29.38 7.373" stroke="#58585b"/><path d="M57.327 29.1c-2.252-2.115-9.874-6.206-26.402-6.207-15.923-.001-25.034 4.2-27.288 6.402" stroke="#f0f0f1"/></g><defs ><path id="B" d="M60.403 30s-5.62-8.11-28.967-8.293C6.77 21.512 1.24 30 1.24 30V10.372S8.336 1.618 30.82 1.25C51.384.912 60.4 10.372 60.4 10.372L60.403 30z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/storage/Datacenter_Server_Half_Rack_ToR.svg b/src/main/webapp/img/lib/allied_telesis/storage/Datacenter_Server_Half_Rack_ToR.svg index 3f3856efb76971ed968d493fd752a826bdf292fd..66e0a3bf5b8b003e87a214591d183b59565c95d1 100644 --- a/src/main/webapp/img/lib/allied_telesis/storage/Datacenter_Server_Half_Rack_ToR.svg +++ b/src/main/webapp/img/lib/allied_telesis/storage/Datacenter_Server_Half_Rack_ToR.svg @@ -1,103 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 146.541 190.512" style="enable-background:new 0 0 146.541 190.512;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#E7EBF0;} - .st1{fill:none;stroke:#B8C6D3;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;} - .st2{fill:none;stroke:#626366;stroke-width:2.7;stroke-linecap:round;stroke-linejoin:round;} - .st3{fill:#416895;} - .st4{fill:#7D91B4;} - .st5{fill:#607BA4;} - .st6{fill:none;stroke:#DFE0DF;stroke-width:0.675;stroke-linecap:round;stroke-linejoin:round;} - .st7{fill:#FEFEFE;} - .st8{fill:#898B8E;} - .st9{fill:#BBBDBF;} - .st10{fill:#B3B5B7;} -</style> -<title>icon-datacenter-small</title> -<desc>Created with Sketch.</desc> -<g id="Page-1"> - <g id="Desktop" transform="translate(-527.000000, -566.000000)"> - <g id="icon-datacenter-small" transform="translate(528.000000, 567.000000)"> - <path id="Fill-1" class="st0" d="M0.027,36.401c0-5.571,3.368-7.072,3.368-7.072L57.972,0l81.42,46.041 - c-0.048-0.028,5.051,3.705,4.883,12.552c-0.026,1.409,0.256,94.284,0.256,94.284s0.167,4.418-0.915,5.687 - c-0.592,0.695-3.137,2.226-3.137,2.226l-52.302,26.795c0,0-3.703,2.271-7.447-0.295c-3.45-2.366-69.125-39.377-69.125-39.377 - s-11.794-3.772-11.603-23.206C0.168,107.623,0.027,56.059,0.027,36.401"/> - <path id="Stroke-3" class="st1" d="M0.027,36.401c0-5.571,3.368-7.072,3.368-7.072L57.972,0l81.42,46.041 - c-0.048-0.028,5.051,3.705,4.883,12.552c-0.026,1.409,0.256,94.284,0.256,94.284s0.167,4.418-0.915,5.687 - c-0.592,0.695-3.137,2.226-3.137,2.226l-52.302,26.795c0,0-3.703,2.271-7.447-0.295c-3.45-2.366-69.125-39.377-69.125-39.377 - s-11.794-3.772-11.603-23.206C0.168,107.623,0.027,56.059,0.027,36.401z"/> - <polygon id="Stroke-5" class="st2" points="88.779,165.32 126.831,145.121 126.838,155.998 88.786,176.195 "/> - <polygon id="Stroke-7" class="st2" points="18.236,122.933 56.288,102.734 126.831,145.12 88.779,165.32 "/> - <polygon id="Stroke-9" class="st2" points="88.779,165.32 88.786,176.195 18.243,133.808 18.236,122.933 "/> - <polygon id="Fill-11" class="st3" points="88.779,165.32 126.831,145.123 126.838,155.998 88.786,176.197 "/> - <polygon id="Fill-13" class="st4" points="18.236,122.933 56.288,102.736 126.831,145.122 88.779,165.32 "/> - <polygon id="Fill-15" class="st5" points="88.779,165.32 88.786,176.197 18.243,133.808 18.236,122.933 "/> - <polyline id="Stroke-17" class="st6" points="18.577,122.939 88.765,165.113 88.765,175.906 "/> - <polygon id="Fill-19" class="st7" points="26.809,136.773 21.371,133.505 21.371,131.937 26.809,135.205 "/> - <polygon id="Fill-21" class="st7" points="66.143,161.254 54.023,153.971 54.023,151.113 66.143,158.397 "/> - <polygon id="Fill-23" class="st7" points="52.357,152.74 40.237,145.457 40.237,142.601 52.357,149.883 "/> - <polygon id="Fill-25" class="st7" points="83.253,171.273 81.278,170.087 81.278,167.783 83.253,168.968 "/> - <polygon id="Stroke-27" class="st2" points="89.053,147.957 127.105,127.758 127.112,138.635 89.06,158.832 "/> - <polygon id="Stroke-29" class="st2" points="18.51,105.57 56.562,85.371 127.105,127.757 89.053,147.957 "/> - <polygon id="Stroke-31" class="st2" points="89.053,147.957 89.06,158.832 18.517,116.446 18.51,105.57 "/> - <polygon id="Fill-33" class="st3" points="89.053,147.957 127.105,127.76 127.112,138.635 89.06,158.834 "/> - <polygon id="Fill-35" class="st4" points="18.51,105.57 56.562,85.373 127.105,127.759 89.053,147.957 "/> - <polygon id="Fill-37" class="st5" points="89.053,147.957 89.06,158.834 18.517,116.446 18.51,105.57 "/> - <polyline id="Stroke-39" class="st6" points="18.851,105.576 89.039,147.75 89.039,158.543 "/> - <polygon id="Fill-41" class="st7" points="27.083,119.41 21.645,116.142 21.645,114.574 27.083,117.842 "/> - <polygon id="Fill-43" class="st7" points="66.417,143.89 54.297,136.607 54.297,133.75 66.417,141.033 "/> - <polygon id="Fill-45" class="st7" points="52.631,135.377 40.511,128.095 40.511,125.238 52.631,132.52 "/> - <polygon id="Fill-47" class="st7" points="83.526,153.91 81.551,152.724 81.551,150.42 83.526,151.605 "/> - <polygon id="Stroke-49" class="st2" points="89.119,130.85 127.171,110.651 127.178,121.527 89.126,141.725 "/> - <polygon id="Stroke-51" class="st2" points="18.576,88.462 56.628,68.264 127.171,110.65 89.119,130.851 "/> - <polygon id="Stroke-53" class="st2" points="89.119,130.85 89.126,141.725 18.583,99.338 18.576,88.462 "/> - <polygon id="Fill-55" class="st3" points="89.119,130.85 127.171,110.653 127.178,121.528 89.126,141.726 "/> - <polygon id="Fill-57" class="st4" points="18.576,88.464 56.628,68.265 127.171,110.652 89.119,130.851 "/> - <polygon id="Fill-59" class="st5" points="89.119,130.85 89.126,141.726 18.583,99.338 18.576,88.463 "/> - <polyline id="Stroke-61" class="st6" points="18.917,88.468 89.105,130.642 89.105,141.436 "/> - <polygon id="Fill-63" class="st7" points="27.149,102.303 21.711,99.034 21.711,97.467 27.149,100.735 "/> - <polygon id="Fill-65" class="st7" points="66.483,126.783 54.363,119.501 54.363,116.643 66.483,123.927 "/> - <polygon id="Fill-67" class="st7" points="52.697,118.269 40.577,110.987 40.577,108.131 52.697,115.413 "/> - <polygon id="Fill-69" class="st7" points="83.593,136.802 81.618,135.617 81.618,133.312 83.593,134.498 "/> - <polygon id="Stroke-71" class="st2" points="88.848,114.758 126.9,94.559 126.907,105.435 88.855,125.633 "/> - <polygon id="Stroke-73" class="st2" points="18.305,72.371 56.357,52.173 126.9,94.559 88.848,114.759 "/> - <polygon id="Stroke-75" class="st2" points="88.848,114.758 88.855,125.633 18.312,83.247 18.305,72.37 "/> - <polygon id="Fill-77" class="st3" points="88.848,114.758 126.9,94.561 126.907,105.436 88.855,125.634 "/> - <polygon id="Fill-79" class="st4" points="18.305,72.372 56.357,52.174 126.9,94.561 88.848,114.759 "/> - <polygon id="Fill-81" class="st5" points="88.848,114.758 88.855,125.634 18.312,83.247 18.305,72.371 "/> - <polyline id="Stroke-83" class="st6" points="18.645,72.377 88.833,114.551 88.833,125.345 "/> - <polygon id="Fill-85" class="st7" points="26.878,86.211 21.44,82.943 21.44,81.375 26.878,84.644 "/> - <polygon id="Fill-87" class="st7" points="66.212,110.691 54.092,103.409 54.092,100.551 66.212,107.835 "/> - <polygon id="Fill-89" class="st7" points="52.426,102.177 40.306,94.895 40.306,92.039 52.426,99.321 "/> - <polygon id="Fill-91" class="st7" points="83.321,120.711 81.346,119.526 81.346,117.221 83.321,118.407 "/> - <polygon id="Stroke-93" class="st2" points="88.754,97.032 126.806,76.833 126.813,87.709 88.761,107.907 "/> - <polygon id="Stroke-95" class="st2" points="18.211,54.644 56.263,34.446 126.806,76.832 88.754,97.032 "/> - <polygon id="Stroke-97" class="st2" points="88.754,97.032 88.761,107.907 18.218,65.52 18.211,54.644 "/> - <polygon id="Fill-99" class="st8" points="88.754,97.032 126.806,76.835 126.813,87.71 88.761,107.908 "/> - <polygon id="Fill-101" class="st9" points="18.211,54.645 56.263,34.447 126.806,76.834 88.754,97.032 "/> - <polygon id="Fill-103" class="st10" points="88.754,97.032 88.761,107.908 18.218,65.52 18.211,54.645 "/> - <polyline id="Stroke-105" class="st6" points="18.552,54.65 88.74,96.824 88.74,107.618 "/> - <polygon id="Fill-107" class="st7" points="26.784,68.485 21.346,65.216 21.346,63.649 26.784,66.917 "/> - <polygon id="Fill-109" class="st7" points="66.162,88.647 54.041,81.364 54.041,78.507 66.162,85.792 "/> - <polygon id="Fill-111" class="st7" points="66.118,92.965 53.998,85.682 53.998,82.825 66.118,90.108 "/> - <polyline id="Fill-113" class="st7" points="40.254,72.85 40.254,69.993 52.374,77.275 52.374,80.133 "/> - <polygon id="Fill-115" class="st7" points="52.332,84.451 40.212,77.169 40.212,74.313 52.332,81.595 "/> - <polygon id="Fill-117" class="st7" points="83.227,102.984 81.252,101.799 81.252,99.494 83.227,100.68 "/> - <polygon id="Stroke-119" class="st2" points="89.027,79.668 127.079,59.469 127.086,70.346 89.034,90.544 "/> - <polygon id="Stroke-121" class="st2" points="18.484,37.281 56.536,17.083 127.079,59.468 89.027,79.668 "/> - <polygon id="Stroke-123" class="st2" points="89.027,79.668 89.034,90.544 18.491,48.158 18.484,37.281 "/> - <polygon id="Fill-125" class="st8" points="89.027,79.668 127.079,59.471 127.086,70.347 89.034,90.545 "/> - <polygon id="Fill-127" class="st9" points="18.484,37.282 56.536,17.084 127.079,59.47 89.027,79.668 "/> - <polygon id="Fill-129" class="st10" points="89.027,79.668 89.034,90.545 18.491,48.158 18.484,37.282 "/> - <polyline id="Stroke-131" class="st6" points="18.825,37.287 89.013,79.461 89.013,90.255 "/> - <polygon id="Fill-133" class="st7" points="27.058,51.121 21.62,47.853 21.62,46.285 27.058,49.554 "/> - <polygon id="Fill-135" class="st7" points="66.435,71.285 54.314,64.001 54.314,61.144 66.435,68.428 "/> - <polygon id="Fill-137" class="st7" points="66.392,75.601 54.272,68.318 54.272,65.462 66.392,72.745 "/> - <polygon id="Fill-139" class="st7" points="52.647,62.77 40.527,55.488 40.527,52.629 52.647,59.912 "/> - <polygon id="Fill-141" class="st7" points="52.605,67.087 40.485,59.806 40.485,56.949 52.605,64.231 "/> - <polygon id="Fill-143" class="st7" points="83.501,85.621 81.526,84.436 81.526,82.131 83.501,83.316 "/> - </g> - </g> -</g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 146.541 190.512"><style><![CDATA[.L{fill:none}.M{stroke-linejoin:round}.N{stroke:#626366}.O{stroke-width:2.7}.P{stroke:#dfe0df}.Q{stroke-width:.675}.R{stroke-linecap:round}.S{fill:#fefefe}.T{fill:#416895}.U{fill:#7d91b4}.V{fill:#607ba4}]]></style><path d="M1.027 37.4c0-5.57 3.368-7.072 3.368-7.072L58.972 1l81.42 46.04c-.048-.028 5.05 3.705 4.883 12.552-.026 1.41.256 94.284.256 94.284s.167 4.418-.915 5.687c-.592.695-3.137 2.226-3.137 2.226l-52.302 26.795s-3.703 2.27-7.447-.295c-3.45-2.366-69.125-39.377-69.125-39.377S.81 145.14 1.002 125.707L1.027 37.4" fill="#e7ebf0"/><g class="L M"><path d="M1.027 37.4c0-5.57 3.368-7.072 3.368-7.072L58.972 1l81.42 46.04c-.048-.028 5.05 3.705 4.883 12.552-.026 1.41.256 94.284.256 94.284s.167 4.418-.915 5.687c-.592.695-3.137 2.226-3.137 2.226l-52.302 26.795s-3.703 2.27-7.447-.295c-3.45-2.366-69.125-39.377-69.125-39.377S.81 145.14 1.002 125.707L1.027 37.4z" stroke="#b8c6d3" stroke-width="2"/><g class="N O"><path d="M89.78 166.32l38.052-20.2.007 10.877-38.052 20.197z"/><path d="M19.236 123.933l38.052-20.2 70.543 42.386-38.052 20.2z"/><path d="M89.78 166.32l.007 10.875-70.543-42.387-.007-10.875z"/></g></g><path d="M89.78 166.32l38.052-20.197.007 10.875-38.052 20.2z" class="T"/><path d="M19.236 123.933l38.052-20.197 70.543 42.386L89.78 166.32z" class="U"/><path d="M89.78 166.32l.007 10.877-70.543-42.39-.007-10.875z" class="V"/><path d="M19.577 123.94l70.188 42.174v10.793" class="L M P Q R"/><path d="M27.8 137.773l-5.438-3.268v-1.568l5.438 3.268zm39.333 24.48l-12.12-7.283v-2.858l12.12 7.284zm-13.786-8.514l-12.12-7.283V143.6l12.12 7.282zm30.896 18.533l-1.975-1.186v-2.304l1.975 1.185z" class="S"/><g class="L M N O"><path d="M90.053 148.957l38.052-20.2.007 10.877-38.052 20.197z"/><path d="M19.5 106.57l38.052-20.2 70.543 42.386-38.052 20.2z"/><path d="M90.053 148.957l.007 10.875-70.543-42.386-.007-10.876z"/></g><path d="M90.053 148.957l38.052-20.197.007 10.875-38.052 20.2z" class="T"/><path d="M19.5 106.57l38.052-20.197 70.543 42.386-38.052 20.198z" class="U"/><path d="M90.053 148.957l.007 10.877-70.543-42.388-.007-10.876z" class="V"/><path d="M19.85 106.576L90.04 148.75v10.793" class="L M P Q R"/><path d="M28.083 120.4l-5.438-3.268v-1.568l5.438 3.268zm39.334 24.5l-12.12-7.283v-2.857l12.12 7.283zm-13.787-8.523l-12.12-7.282v-2.857l12.12 7.282zM84.526 154.9l-1.975-1.186V151.4l1.975 1.185z" class="S"/><g class="L M N O"><path d="M90.12 131.85l38.052-20.2.007 10.876-38.052 20.198z"/><path d="M19.576 89.462l38.052-20.198 70.543 42.386-38.052 20.2z"/><path d="M90.12 131.85l.007 10.875-70.543-42.387-.007-10.876z"/></g><path d="M90.12 131.85l38.052-20.197.007 10.875-38.052 20.198z" class="T"/><path d="M19.576 89.464l38.052-20.2 70.543 42.387-38.052 20.2z" class="U"/><path d="M90.12 131.85l.007 10.876-70.543-42.388-.007-10.875z" class="V"/><path d="M19.917 89.468l70.188 42.174v10.794" class="L M P Q R"/><path d="M28.15 103.303l-5.438-3.27v-1.567l5.438 3.268zm39.333 24.48l-12.12-7.282v-2.858l12.12 7.284zm-13.786-8.513l-12.12-7.282v-2.856l12.12 7.282zm30.896 18.532l-1.975-1.185v-2.305l1.975 1.186z" class="S"/><g class="L M N O"><path d="M89.848 115.758l38.052-20.2.007 10.876-38.052 20.198z"/><path d="M19.305 73.37l38.052-20.198L127.9 95.56l-38.052 20.2z"/><path d="M89.848 115.758l.007 10.875-70.543-42.386-.007-10.877z"/></g><path d="M89.848 115.758L127.9 95.56l.007 10.875-38.052 20.198z" class="T"/><path d="M19.305 73.372l38.052-20.198L127.9 95.56 89.848 115.76z" class="U"/><path d="M89.848 115.758l.007 10.876-70.543-42.387-.007-10.876z" class="V"/><path d="M19.645 73.377l70.188 42.174v10.794" class="L M P Q R"/><path d="M27.878 87.2l-5.438-3.268v-1.568l5.438 3.27zm39.334 24.48l-12.12-7.282v-2.858l12.12 7.284zm-13.786-8.513l-12.12-7.282V93.04l12.12 7.282zM84.32 121.7l-1.975-1.185v-2.305l1.975 1.186z" class="S"/><g class="L M N O"><path d="M89.754 98.032l38.052-20.2.007 10.876-38.052 20.198z"/><path d="M19.21 55.644l38.052-20.198 70.543 42.386-38.052 20.2z"/><path d="M89.754 98.032l.007 10.875L19.218 66.52l-.007-10.876z"/></g><path d="M89.754 98.032l38.052-20.197.007 10.875-38.052 20.198z" fill="#898b8e"/><path d="M19.21 55.645l38.052-20.198 70.543 42.387-38.052 20.198z" fill="#bbbdbf"/><path d="M89.754 98.032l.007 10.876L19.218 66.52l-.007-10.875z" fill="#b3b5b7"/><path d="M19.552 55.65L89.74 97.824v10.794" class="L M P Q R"/><path d="M27.784 69.485l-5.438-3.27V64.65l5.438 3.268zm39.378 20.162l-12.12-7.283v-2.857l12.12 7.285zm-.044 4.318l-12.12-7.283v-2.857l12.12 7.283zM41.254 73.85v-2.857l12.12 7.282v2.858m-.042 4.317l-12.12-7.282v-2.856l12.12 7.282zm30.895 18.534l-1.975-1.185v-2.305l1.975 1.186z" class="S"/><g class="L M N O"><path d="M90.027 80.668l38.052-20.2.007 10.877-38.052 20.198z"/><path d="M19.484 38.28l38.052-20.198 70.543 42.385-38.052 20.2z"/><path d="M90.027 80.668l.007 10.876L19.49 49.158l-.007-10.877z"/></g><path d="M90.027 80.668L128.08 60.47l.007 10.876-38.052 20.198z" fill="#898b8e"/><path d="M19.484 38.282l38.052-20.198L128.08 60.47 90.027 80.668z" fill="#bbbdbf"/><path d="M90.027 80.668l.007 10.877L19.49 49.158l-.007-10.876z" fill="#b3b5b7"/><path d="M19.825 38.287L90.013 80.46v10.794" class="L M P Q R"/><path d="M28.058 52.12l-5.438-3.268v-1.568l5.438 3.27zm39.377 20.165L55.314 65v-2.857l12.12 7.284zm-.043 4.315l-12.12-7.283V66.46l12.12 7.283zM53.647 63.77l-12.12-7.282v-2.86l12.12 7.283zm-.042 4.317l-12.12-7.28V57.95l12.12 7.282zM84.5 86.62l-1.975-1.185V83.13l1.975 1.185z" class="S"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/storage/Datacenter_Server_Rack.svg b/src/main/webapp/img/lib/allied_telesis/storage/Datacenter_Server_Rack.svg index d12a35c2dbe8bd038383d975b2ade41d4660ae3f..f0f4f6025e0abe1b23fdee135d5dcb5ae6582a2a 100644 --- a/src/main/webapp/img/lib/allied_telesis/storage/Datacenter_Server_Rack.svg +++ b/src/main/webapp/img/lib/allied_telesis/storage/Datacenter_Server_Rack.svg @@ -1,162 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 146.697 297.571" style="enable-background:new 0 0 146.697 297.571;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#E7EBF0;} - .st1{fill:none;stroke:#B8C6D3;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;} - .st2{fill:none;stroke:#626366;stroke-width:2.7;stroke-linecap:round;stroke-linejoin:round;} - .st3{fill:#416895;} - .st4{fill:#7D91B4;} - .st5{fill:#607BA4;} - .st6{fill:none;stroke:#DFE0DF;stroke-width:0.675;stroke-linecap:round;stroke-linejoin:round;} - .st7{fill:#FEFEFE;} -</style> -<title>icon-datacenter-rack1</title> -<desc>Created with Sketch.</desc> -<g id="Page-1"> - <g id="Desktop" transform="translate(-683.000000, -519.000000)"> - <g id="icon-datacenter-rack1" transform="translate(684.000000, 520.000000)"> - <path id="Fill-1" class="st0" d="M0.005,32.92c0.003-1.264,0.062-1.974,0.316-2.658c0.254-0.686,1.677-1.444,1.677-1.444 - L56.603,0l85.06,49.035c0,0,2.236,1.006,2.682,2.624c0.506,1.836,0.317,5.508,0.317,5.508l-0.128,202.769 - c0,0,0.168,4.418-0.914,5.687c-0.592,0.695-3.136,2.226-3.136,2.226l-52.302,26.795c0,0-3.703,2.271-7.448-0.295 - c-3.45-2.366-69.125-39.377-69.125-39.377S-0.184,251.2,0.005,231.766C0.172,214.682-0.035,52.578,0.005,32.92"/> - <path id="Stroke-3" class="st1" d="M0.005,32.92c0.003-1.264,0.062-1.974,0.316-2.658c0.254-0.686,1.677-1.444,1.677-1.444 - L56.603,0l85.06,49.035c0,0,2.236,1.006,2.682,2.624c0.506,1.836,0.317,5.508,0.317,5.508l-0.128,202.769 - c0,0,0.168,4.418-0.914,5.687c-0.592,0.695-3.136,2.226-3.136,2.226l-52.302,26.795c0,0-3.703,2.271-7.448-0.295 - c-3.45-2.366-69.125-39.377-69.125-39.377S-0.184,251.2,0.005,231.766C0.172,214.682-0.035,52.578,0.005,32.92z"/> - <polygon id="Stroke-5" class="st2" points="89.147,269.13 127.2,248.932 127.207,259.808 89.155,280.005 "/> - <polygon id="Stroke-7" class="st2" points="18.605,226.743 56.657,206.545 127.2,248.931 89.147,269.13 "/> - <polygon id="Stroke-9" class="st2" points="89.147,269.13 89.155,280.005 18.612,237.619 18.605,226.743 "/> - <polygon id="Fill-11" class="st3" points="89.147,269.13 127.2,248.934 127.207,259.809 89.155,280.007 "/> - <polygon id="Fill-13" class="st4" points="18.605,226.744 56.657,206.546 127.2,248.933 89.147,269.13 "/> - <polygon id="Fill-15" class="st5" points="89.147,269.13 89.155,280.007 18.612,237.619 18.605,226.744 "/> - <polyline id="Stroke-17" class="st6" points="18.946,226.75 89.134,268.923 89.134,279.716 "/> - <polygon id="Fill-19" class="st7" points="27.178,240.584 21.739,237.315 21.739,235.748 27.178,239.016 "/> - <polygon id="Fill-21" class="st7" points="66.512,265.064 54.392,257.781 54.392,254.924 66.512,262.208 "/> - <polygon id="Fill-23" class="st7" points="52.726,256.55 40.605,249.268 40.605,246.412 52.726,253.694 "/> - <polygon id="Fill-25" class="st7" points="83.621,275.083 81.646,273.897 81.646,271.593 83.621,272.778 "/> - <polygon id="Stroke-27" class="st2" points="88.876,253.039 126.928,232.84 126.935,243.716 88.883,263.914 "/> - <polygon id="Stroke-29" class="st2" points="18.333,210.651 56.384,190.453 126.928,232.839 88.876,253.039 "/> - <polygon id="Stroke-31" class="st2" points="88.876,253.039 88.883,263.914 18.34,221.527 18.333,210.651 "/> - <polygon id="Fill-33" class="st3" points="88.876,253.039 126.928,232.842 126.935,243.717 88.883,263.915 "/> - <polygon id="Fill-35" class="st4" points="18.333,210.652 56.384,190.454 126.928,232.841 88.876,253.039 "/> - <polygon id="Fill-37" class="st5" points="88.876,253.039 88.883,263.915 18.34,221.527 18.333,210.652 "/> - <polyline id="Stroke-39" class="st6" points="18.674,210.658 88.862,252.831 88.862,263.625 "/> - <polygon id="Fill-41" class="st7" points="26.907,224.492 21.469,221.223 21.469,219.656 26.907,222.924 "/> - <polygon id="Fill-43" class="st7" points="66.241,248.972 54.121,241.69 54.121,238.832 66.241,246.116 "/> - <polygon id="Fill-45" class="st7" points="52.454,240.458 40.334,233.176 40.334,230.32 52.454,237.602 "/> - <polygon id="Fill-47" class="st7" points="83.35,258.991 81.375,257.806 81.375,255.501 83.35,256.687 "/> - <polygon id="Stroke-49" class="st2" points="88.783,235.313 126.835,215.114 126.842,225.99 88.789,246.188 "/> - <polygon id="Stroke-51" class="st2" points="18.239,192.925 56.292,172.727 126.835,215.113 88.783,235.313 "/> - <polygon id="Stroke-53" class="st2" points="88.783,235.313 88.789,246.188 18.247,203.801 18.239,192.925 "/> - <polygon id="Fill-55" class="st3" points="88.783,235.313 126.835,215.116 126.842,225.991 88.789,246.189 "/> - <polygon id="Fill-57" class="st4" points="18.239,192.926 56.292,172.728 126.835,215.115 88.783,235.313 "/> - <polygon id="Fill-59" class="st5" points="88.783,235.313 88.789,246.189 18.247,203.801 18.239,192.926 "/> - <polyline id="Stroke-61" class="st6" points="18.58,192.932 88.768,235.105 88.768,245.899 "/> - <polygon id="Fill-63" class="st7" points="26.813,206.766 21.375,203.497 21.375,201.93 26.813,205.198 "/> - <polygon id="Fill-65" class="st7" points="66.147,231.245 54.026,223.963 54.026,221.105 66.147,228.389 "/> - <polygon id="Fill-67" class="st7" points="52.361,222.732 40.241,215.45 40.241,212.594 52.361,219.876 "/> - <polygon id="Fill-69" class="st7" points="83.255,241.265 81.281,240.08 81.281,237.775 83.255,238.961 "/> - <polygon id="Stroke-71" class="st2" points="89.055,217.949 127.108,197.75 127.114,208.626 89.063,228.824 "/> - <polygon id="Stroke-73" class="st2" points="18.513,175.562 56.565,155.364 127.108,197.75 89.055,217.95 "/> - <polygon id="Stroke-75" class="st2" points="89.055,217.949 89.063,228.824 18.52,186.437 18.513,175.561 "/> - <polygon id="Fill-77" class="st3" points="89.055,217.949 127.108,197.752 127.114,208.627 89.063,228.825 "/> - <polygon id="Fill-79" class="st4" points="18.513,175.563 56.565,155.365 127.108,197.752 89.055,217.95 "/> - <polygon id="Fill-81" class="st5" points="89.055,217.949 89.063,228.825 18.52,186.437 18.513,175.562 "/> - <polyline id="Stroke-83" class="st6" points="18.854,175.568 89.042,217.741 89.042,228.535 "/> - <polygon id="Fill-85" class="st7" points="27.086,189.402 21.647,186.133 21.647,184.566 27.086,187.834 "/> - <polygon id="Fill-87" class="st7" points="66.42,213.882 54.3,206.6 54.3,203.742 66.42,211.026 "/> - <polygon id="Fill-89" class="st7" points="52.634,205.368 40.514,198.086 40.514,195.23 52.634,202.512 "/> - <polygon id="Fill-91" class="st7" points="83.53,223.901 81.555,222.716 81.555,220.411 83.53,221.597 "/> - <polygon id="Stroke-93" class="st2" points="89.149,201.197 127.201,180.998 127.208,191.875 89.156,212.072 "/> - <polygon id="Stroke-95" class="st2" points="18.605,158.811 56.658,138.612 127.201,180.998 89.149,201.198 "/> - <polygon id="Stroke-97" class="st2" points="89.149,201.197 89.156,212.072 18.613,169.685 18.605,158.81 "/> - <polygon id="Fill-99" class="st3" points="89.149,201.197 127.201,181 127.208,191.875 89.156,212.074 "/> - <polygon id="Fill-101" class="st4" points="18.605,158.811 56.658,138.614 127.201,181 89.149,201.198 "/> - <polygon id="Fill-103" class="st5" points="89.149,201.197 89.156,212.074 18.613,169.685 18.605,158.81 "/> - <polyline id="Stroke-105" class="st6" points="18.947,158.816 89.135,200.991 89.135,211.784 "/> - <polygon id="Fill-107" class="st7" points="27.179,172.65 21.741,169.382 21.741,167.814 27.179,171.082 "/> - <polygon id="Fill-109" class="st7" points="66.513,197.131 54.393,189.848 54.393,186.99 66.513,194.274 "/> - <polygon id="Fill-111" class="st7" points="52.726,188.617 40.607,181.334 40.607,178.478 52.726,185.76 "/> - <polygon id="Fill-113" class="st7" points="83.622,207.15 81.646,205.964 81.646,203.66 83.622,204.845 "/> - <polygon id="Stroke-115" class="st2" points="88.877,185.105 126.929,164.907 126.936,175.784 88.884,195.98 "/> - <polygon id="Stroke-117" class="st2" points="18.334,142.719 56.386,122.52 126.929,164.906 88.877,185.106 "/> - <polygon id="Stroke-119" class="st2" points="88.877,185.105 88.884,195.98 18.341,153.594 18.334,142.719 "/> - <polygon id="Fill-121" class="st3" points="88.877,185.105 126.929,164.909 126.936,175.784 88.884,195.982 "/> - <polygon id="Fill-123" class="st4" points="18.334,142.719 56.386,122.522 126.929,164.908 88.877,185.106 "/> - <polygon id="Fill-125" class="st5" points="88.877,185.105 88.884,195.982 18.341,153.594 18.334,142.719 "/> - <polyline id="Stroke-127" class="st6" points="18.675,142.725 88.863,184.899 88.863,195.692 "/> - <polygon id="Fill-129" class="st7" points="26.908,156.559 21.47,153.291 21.47,151.723 26.908,154.991 "/> - <polygon id="Fill-131" class="st7" points="66.242,181.039 54.122,173.756 54.122,170.898 66.242,178.182 "/> - <polygon id="Fill-133" class="st7" points="52.455,172.525 40.334,165.242 40.334,162.386 52.455,169.668 "/> - <polygon id="Fill-135" class="st7" points="83.351,191.059 81.376,189.873 81.376,187.569 83.351,188.754 "/> - <polygon id="Stroke-137" class="st2" points="88.784,167.379 126.835,147.18 126.843,158.057 88.791,178.254 "/> - <polygon id="Stroke-139" class="st2" points="18.241,124.992 56.293,104.793 126.835,147.179 88.784,167.379 "/> - <polygon id="Stroke-141" class="st2" points="88.784,167.379 88.791,178.254 18.248,135.867 18.241,124.992 "/> - <polygon id="Fill-143" class="st3" points="88.784,167.379 126.835,147.182 126.843,158.057 88.791,178.256 "/> - <polygon id="Fill-145" class="st4" points="18.241,124.992 56.293,104.795 126.835,147.181 88.784,167.379 "/> - <polygon id="Fill-147" class="st5" points="88.784,167.379 88.791,178.256 18.248,135.867 18.241,124.992 "/> - <polyline id="Stroke-149" class="st6" points="18.581,124.998 88.769,167.172 88.769,177.965 "/> - <polygon id="Fill-151" class="st7" points="26.814,138.832 21.376,135.564 21.376,133.996 26.814,137.264 "/> - <polygon id="Fill-153" class="st7" points="66.147,163.313 54.028,156.03 54.028,153.172 66.147,160.456 "/> - <polygon id="Fill-155" class="st7" points="52.362,154.799 40.242,147.516 40.242,144.66 52.362,151.942 "/> - <polygon id="Fill-157" class="st7" points="83.257,173.332 81.282,172.146 81.282,169.842 83.257,171.027 "/> - <polygon id="Stroke-159" class="st2" points="89.057,150.016 127.109,129.817 127.116,140.694 89.064,160.891 "/> - <polygon id="Stroke-161" class="st2" points="18.514,107.629 56.566,87.43 127.109,129.816 89.057,150.016 "/> - <polygon id="Stroke-163" class="st2" points="89.057,150.016 89.064,160.891 18.521,118.505 18.514,107.629 "/> - <polygon id="Fill-165" class="st3" points="89.057,150.016 127.109,129.819 127.116,140.694 89.064,160.893 "/> - <polygon id="Fill-167" class="st4" points="18.514,107.629 56.566,87.432 127.109,129.818 89.057,150.016 "/> - <polygon id="Fill-169" class="st5" points="89.057,150.016 89.064,160.893 18.521,118.505 18.514,107.629 "/> - <polyline id="Stroke-171" class="st6" points="18.855,107.635 89.043,149.809 89.043,160.602 "/> - <polygon id="Fill-173" class="st7" points="27.087,121.469 21.649,118.201 21.649,116.633 27.087,119.901 "/> - <polygon id="Fill-175" class="st7" points="66.421,145.949 54.301,138.666 54.301,135.809 66.421,143.092 "/> - <polygon id="Fill-177" class="st7" points="52.634,137.436 40.515,130.154 40.515,127.297 52.634,134.579 "/> - <polygon id="Fill-179" class="st7" points="83.531,155.969 81.555,154.783 81.555,152.479 83.531,153.664 "/> - <polygon id="Stroke-181" class="st2" points="89.123,132.909 127.175,112.71 127.182,123.586 89.13,143.784 "/> - <polygon id="Stroke-183" class="st2" points="18.58,90.521 56.632,70.323 127.175,112.709 89.123,132.91 "/> - <polygon id="Stroke-185" class="st2" points="89.123,132.909 89.13,143.784 18.587,101.397 18.58,90.521 "/> - <polygon id="Fill-187" class="st3" points="89.123,132.909 127.175,112.712 127.182,123.587 89.13,143.785 "/> - <polygon id="Fill-189" class="st4" points="18.58,90.522 56.632,70.325 127.175,112.711 89.123,132.91 "/> - <polygon id="Fill-191" class="st5" points="89.123,132.909 89.13,143.785 18.587,101.397 18.58,90.522 "/> - <polyline id="Stroke-193" class="st6" points="18.921,90.527 89.109,132.701 89.109,143.495 "/> - <polygon id="Fill-195" class="st7" points="27.154,104.362 21.716,101.093 21.716,99.526 27.154,102.794 "/> - <polygon id="Fill-197" class="st7" points="66.488,128.842 54.368,121.56 54.368,118.702 66.488,125.986 "/> - <polygon id="Fill-199" class="st7" points="52.702,120.328 40.582,113.046 40.582,110.19 52.702,117.472 "/> - <polygon id="Fill-201" class="st7" points="83.597,138.861 81.622,137.676 81.622,135.371 83.597,136.557 "/> - <polygon id="Stroke-203" class="st2" points="88.851,116.817 126.904,96.618 126.91,107.494 88.859,127.692 "/> - <polygon id="Stroke-205" class="st2" points="18.309,74.43 56.361,54.232 126.904,96.618 88.851,116.818 "/> - <polygon id="Stroke-207" class="st2" points="88.851,116.817 88.859,127.692 18.316,85.306 18.309,74.429 "/> - <polygon id="Fill-209" class="st3" points="88.851,116.817 126.904,96.62 126.91,107.495 88.859,127.693 "/> - <polygon id="Fill-211" class="st4" points="18.309,74.431 56.361,54.233 126.904,96.62 88.851,116.818 "/> - <polygon id="Fill-213" class="st5" points="88.851,116.817 88.859,127.693 18.316,85.306 18.309,74.43 "/> - <polyline id="Stroke-215" class="st6" points="18.65,74.436 88.838,116.61 88.838,127.404 "/> - <polygon id="Fill-217" class="st7" points="26.882,88.27 21.443,85.002 21.443,83.434 26.882,86.703 "/> - <polygon id="Fill-219" class="st7" points="66.216,112.75 54.096,105.468 54.096,102.61 66.216,109.894 "/> - <polygon id="Fill-221" class="st7" points="52.43,104.236 40.31,96.954 40.31,94.098 52.43,101.38 "/> - <polygon id="Fill-223" class="st7" points="83.326,122.77 81.351,121.585 81.351,119.28 83.326,120.466 "/> - <polygon id="Stroke-225" class="st2" points="88.758,99.091 126.81,78.892 126.817,89.768 88.765,109.966 "/> - <polygon id="Stroke-227" class="st2" points="18.215,56.703 56.267,36.505 126.81,78.891 88.758,99.091 "/> - <polygon id="Stroke-229" class="st2" points="88.758,99.091 88.765,109.966 18.222,67.579 18.215,56.703 "/> - <polygon id="Fill-231" class="st3" points="88.758,99.091 126.81,78.894 126.817,89.769 88.765,109.967 "/> - <polygon id="Fill-233" class="st4" points="18.215,56.704 56.267,36.506 126.81,78.893 88.758,99.091 "/> - <polygon id="Fill-235" class="st5" points="88.758,99.091 88.765,109.967 18.222,67.579 18.215,56.704 "/> - <polyline id="Stroke-237" class="st6" points="18.555,56.709 88.744,98.883 88.744,109.677 "/> - <polygon id="Fill-239" class="st7" points="26.788,70.544 21.35,67.275 21.35,65.708 26.788,68.976 "/> - <polygon id="Fill-241" class="st7" points="66.122,95.023 54.002,87.742 54.002,84.883 66.122,92.167 "/> - <polygon id="Fill-243" class="st7" points="52.336,86.51 40.216,79.228 40.216,76.372 52.336,83.654 "/> - <polygon id="Fill-245" class="st7" points="83.232,105.043 81.257,103.858 81.257,101.553 83.232,102.739 "/> - <polygon id="Stroke-247" class="st2" points="89.032,81.727 127.084,61.528 127.091,72.405 89.039,92.603 "/> - <polygon id="Stroke-249" class="st2" points="18.489,39.34 56.541,19.142 127.084,61.527 89.032,81.727 "/> - <polygon id="Stroke-251" class="st2" points="89.032,81.727 89.039,92.603 18.496,50.217 18.489,39.34 "/> - <polygon id="Fill-253" class="st3" points="89.032,81.727 127.084,61.53 127.091,72.406 89.039,92.604 "/> - <polygon id="Fill-255" class="st4" points="18.489,39.341 56.541,19.143 127.084,61.529 89.032,81.727 "/> - <polygon id="Fill-257" class="st5" points="89.032,81.727 89.039,92.604 18.496,50.217 18.489,39.341 "/> - <polyline id="Stroke-259" class="st6" points="18.829,39.346 89.017,81.52 89.017,92.314 "/> - <polygon id="Fill-261" class="st7" points="27.062,53.18 21.624,49.912 21.624,48.344 27.062,51.613 "/> - <polygon id="Fill-263" class="st7" points="66.396,77.66 54.276,70.377 54.276,67.521 66.396,74.804 "/> - <polygon id="Fill-265" class="st7" points="52.61,69.146 40.489,61.866 40.489,59.007 52.61,66.29 "/> - <polygon id="Fill-267" class="st7" points="83.505,87.68 81.53,86.495 81.53,84.19 83.505,85.375 "/> - </g> - </g> -</g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 146.697 297.571"><style><![CDATA[.I{fill:none}.J{stroke-linejoin:round}.K{stroke:#626366}.L{stroke-width:2.7}.M{fill:#416895}.N{fill:#7d91b4}.O{fill:#607ba4}.P{stroke:#dfe0df}.Q{stroke-width:.675}.R{stroke-linecap:round}.S{fill:#fefefe}]]></style><path d="M1.005 33.92c.003-1.264.062-1.974.316-2.658s1.677-1.444 1.677-1.444L57.603 1l85.06 49.035s2.236 1.006 2.682 2.624c.506 1.836.317 5.508.317 5.508l-.128 202.77s.168 4.418-.914 5.687c-.592.695-3.136 2.226-3.136 2.226l-52.302 26.795s-3.703 2.27-7.448-.295c-3.45-2.366-69.125-39.377-69.125-39.377S.816 252.2 1.005 232.766V33.92" fill="#e7ebf0"/><g class="I J"><path d="M1.005 33.92c.003-1.264.062-1.974.316-2.658s1.677-1.444 1.677-1.444L57.603 1l85.06 49.035s2.236 1.006 2.682 2.624c.506 1.836.317 5.508.317 5.508l-.128 202.77s.168 4.418-.914 5.687c-.592.695-3.136 2.226-3.136 2.226l-52.302 26.795s-3.703 2.27-7.448-.295c-3.45-2.366-69.125-39.377-69.125-39.377S.816 252.2 1.005 232.766V33.92z" stroke="#b8c6d3" stroke-width="2"/><g class="K L"><path d="M90.147 270.13l38.053-20.198.007 10.876-38.052 20.197z"/><path d="M19.605 227.743l38.052-20.198L128.2 249.93l-38.053 20.2z"/><path d="M90.147 270.13l.008 10.875-70.543-42.386-.007-10.876z"/></g></g><path d="M90.147 270.13l38.053-20.196.007 10.875-38.052 20.198z" class="M"/><path d="M19.605 227.744l38.052-20.198 70.543 42.387-38.053 20.197z" class="N"/><path d="M90.147 270.13l.008 10.877-70.543-42.388-.007-10.875z" class="O"/><path d="M19.946 227.75l70.188 42.173v10.793" class="I J P Q R"/><path d="M28.178 241.584l-5.44-3.27v-1.567l5.44 3.268zm39.334 24.48l-12.12-7.283v-2.857l12.12 7.284zm-13.786-8.514l-12.12-7.282v-2.856l12.12 7.282zm30.894 18.533l-1.975-1.186v-2.304l1.975 1.185z" class="S"/><g class="I J K L"><path d="M89.876 254.04l38.052-20.2.007 10.876-38.052 20.198z"/><path d="M19.333 211.65l38.05-20.198 70.544 42.386-38.052 20.2z"/><path d="M89.876 254.04l.007 10.875-70.543-42.387-.007-10.876z"/></g><path d="M89.876 254.04l38.052-20.197.007 10.875-38.052 20.198z" class="M"/><path d="M19.333 211.652l38.05-20.198 70.544 42.387-38.052 20.198z" class="N"/><path d="M89.876 254.04l.007 10.876-70.543-42.388-.007-10.875z" class="O"/><path d="M19.674 211.658l70.188 42.173v10.794" class="I J P Q R"/><path d="M27.907 225.492l-5.438-3.27v-1.567l5.438 3.268zm39.333 24.48L55.12 242.7v-2.858l12.12 7.284zm-13.786-8.514l-12.12-7.282v-2.856l12.12 7.282zM84.35 260l-1.975-1.185V256.5l1.975 1.186z" class="S"/><g class="I J K L"><path d="M89.783 236.313l38.052-20.2.007 10.876-38.053 20.198z"/><path d="M19.24 193.925l38.053-20.198 70.543 42.386-38.052 20.2z"/><path d="M89.783 236.313l.006 10.875L19.247 204.8l-.008-10.876z"/></g><path d="M89.783 236.313l38.052-20.197.007 10.875L89.79 247.19z" class="M"/><path d="M19.24 193.926l38.053-20.198 70.543 42.387-38.052 20.198z" class="N"/><path d="M89.783 236.313l.006 10.876L19.247 204.8l-.008-10.875z" class="O"/><path d="M19.58 193.932l70.188 42.173V246.9" class="I J P Q R"/><path d="M27.813 207.766l-5.438-3.27v-1.567l5.438 3.268zm39.334 24.48l-12.12-7.282v-2.858l12.12 7.284zm-13.787-8.513l-12.12-7.282v-2.856l12.12 7.282zm30.895 18.533l-1.974-1.185v-2.305l1.974 1.186z" class="S"/><g class="I J K L"><path d="M90.055 218.95l38.053-20.2.006 10.876-38.05 20.198z"/><path d="M19.513 176.562l38.052-20.198 70.543 42.386-38.053 20.2z"/><path d="M90.055 218.95l.008 10.875-70.543-42.387-.007-10.876z"/></g><path d="M90.055 218.95l38.053-20.197.006 10.875-38.05 20.198z" class="M"/><path d="M19.513 176.563l38.052-20.198 70.543 42.387-38.053 20.198z" class="N"/><path d="M90.055 218.95l.008 10.876-70.543-42.388-.007-10.875z" class="O"/><path d="M19.854 176.568l70.188 42.173v10.794" class="I J P Q R"/><path d="M28.086 190.402l-5.44-3.27v-1.567l5.44 3.268zm39.334 24.48L55.3 207.6v-2.858l12.12 7.284zm-13.786-8.514l-12.12-7.282v-2.856l12.12 7.282zM84.53 224.9l-1.975-1.185V221.4l1.975 1.186z" class="S"/><g class="I J K L"><path d="M90.15 202.197l38.052-20.2.007 10.877-38.052 20.197z"/><path d="M19.605 159.81l38.053-20.2 70.543 42.386-38.052 20.2z"/><path d="M90.15 202.197l.007 10.875-70.543-42.387-.008-10.875z"/></g><path d="M90.15 202.197L128.2 182l.007 10.875-38.052 20.2z" class="M"/><path d="M19.605 159.81l38.053-20.197L128.2 182 90.15 202.198z" class="N"/><path d="M90.15 202.197l.007 10.877-70.543-42.39-.008-10.875z" class="O"/><path d="M19.947 159.816l70.188 42.175v10.793" class="I J P Q R"/><path d="M28.18 173.65l-5.438-3.268v-1.568l5.438 3.268zm39.333 24.48l-12.12-7.283V188l12.12 7.284zm-13.787-8.513l-12.12-7.283v-2.856l12.12 7.282zm30.896 18.533l-1.976-1.186v-2.304l1.976 1.185z" class="S"/><g class="I J K L"><path d="M89.877 186.105l38.052-20.198.007 10.877-38.052 20.196z"/><path d="M19.334 143.72l38.052-20.2 70.543 42.386-38.052 20.2z"/><path d="M89.877 186.105l.007 10.875-70.543-42.386-.007-10.875z"/></g><path d="M89.877 186.105l38.052-20.196.007 10.875-38.052 20.198z" class="M"/><path d="M19.334 143.72l38.052-20.197 70.543 42.386-38.052 20.198z" class="N"/><path d="M89.877 186.105l.007 10.877-70.543-42.388-.007-10.875z" class="O"/><path d="M19.675 143.725L89.863 185.9v10.793" class="I J P Q R"/><path d="M27.908 157.56l-5.438-3.268v-1.568l5.438 3.268zm39.334 24.48l-12.12-7.283V171.9l12.12 7.284zm-13.787-8.515l-12.12-7.283v-2.856l12.12 7.282zM84.35 192.06l-1.975-1.186v-2.304l1.975 1.185z" class="S"/><g class="I J K L"><path d="M89.784 168.38l38.05-20.2.008 10.877-38.052 20.197z"/><path d="M19.24 125.992l38.052-20.2 70.542 42.386-38.05 20.2z"/><path d="M89.784 168.38l.007 10.875-70.543-42.387-.007-10.875z"/></g><path d="M89.784 168.38l38.05-20.197.008 10.875-38.052 20.2z" class="M"/><path d="M19.24 125.992l38.052-20.197 70.542 42.386-38.05 20.198z" class="N"/><path d="M89.784 168.38l.007 10.877-70.543-42.39-.007-10.875z" class="O"/><path d="M19.58 125.998l70.188 42.174v10.793" class="I J P Q R"/><path d="M27.814 139.832l-5.438-3.268v-1.568l5.438 3.268zm39.333 24.48l-12.12-7.283v-2.858l12.12 7.284zM53.362 155.8l-12.12-7.283v-2.856l12.12 7.282zm30.895 18.532l-1.975-1.186v-2.304l1.975 1.185z" class="S"/><g class="I J K L"><path d="M90.057 151.016l38.052-20.2.007 10.877-38.052 20.197z"/><path d="M19.514 108.63l38.052-20.2 70.543 42.386-38.052 20.2z"/><path d="M90.057 151.016l.007 10.875-70.543-42.386-.007-10.876z"/></g><path d="M90.057 151.016l38.052-20.197.007 10.875-38.052 20.2z" class="M"/><path d="M19.514 108.63l38.052-20.197 70.543 42.386-38.052 20.198z" class="N"/><path d="M90.057 151.016l.007 10.877-70.543-42.388-.007-10.876z" class="O"/><path d="M19.855 108.635l70.188 42.174v10.793" class="I J P Q R"/><path d="M28.087 122.47l-5.437-3.27v-1.568l5.438 3.268zm39.333 24.48l-12.12-7.283V136.8l12.12 7.283zm-13.786-8.514l-12.12-7.282v-2.857l12.12 7.282zM84.53 156.97l-1.976-1.186v-2.304l1.976 1.185z" class="S"/><g class="I J K L"><path d="M90.123 133.91l38.052-20.2.007 10.876-38.052 20.198z"/><path d="M19.58 91.52l38.052-20.198 70.543 42.386-38.052 20.2z"/><path d="M90.123 133.91l.007 10.875-70.543-42.387-.007-10.876z"/></g><path d="M90.123 133.91l38.052-20.197.007 10.875-38.052 20.198z" class="M"/><path d="M19.58 91.522l38.052-20.197 70.543 42.386-38.052 20.2z" class="N"/><path d="M90.123 133.91l.007 10.876-70.543-42.388-.007-10.875z" class="O"/><path d="M19.92 91.527L90.11 133.7v10.794" class="I J P Q R"/><path d="M28.154 105.362l-5.438-3.27v-1.567l5.438 3.268zm39.334 24.48l-12.12-7.282v-2.858l12.12 7.284zm-13.786-8.514l-12.12-7.282V111.2l12.12 7.282zm30.895 18.532l-1.975-1.185v-2.305l1.975 1.186z" class="S"/><g class="I J K L"><path d="M89.85 117.817l38.053-20.2.006 10.876-38.05 20.198z"/><path d="M19.31 75.43L57.36 55.232l70.543 42.386-38.053 20.2z"/><path d="M89.85 117.817l.008 10.875-70.543-42.386-.007-10.877z"/></g><path d="M89.85 117.817l38.053-20.197.006 10.875-38.05 20.198z" class="M"/><path d="M19.31 75.43L57.36 55.233l70.543 42.387-38.053 20.198z" class="N"/><path d="M89.85 117.817l.008 10.876-70.543-42.387-.007-10.876z" class="O"/><path d="M19.65 75.436L89.838 117.6v10.794" class="I J P Q R"/><path d="M27.882 89.27l-5.44-3.268v-1.568l5.44 3.27zm39.334 24.48l-12.12-7.282V103.6l12.12 7.284zm-13.786-8.514L41.3 97.954v-2.856l12.12 7.282zm30.896 18.534l-1.975-1.185v-2.305l1.975 1.186z" class="S"/><g class="I J K L"><path d="M89.758 100.09l38.052-20.2.007 10.876-38.052 20.198z"/><path d="M19.215 57.703l38.052-20.198L127.8 79.89l-38.052 20.2z"/><path d="M89.758 100.09l.007 10.875L19.222 68.58l-.007-10.876z"/></g><path d="M89.758 100.09L127.8 79.894l.007 10.875-38.052 20.198z" class="M"/><path d="M19.215 57.704l38.052-20.198L127.8 79.893 89.758 100.09z" class="N"/><path d="M89.758 100.09l.007 10.876L19.222 68.58l-.007-10.875z" class="O"/><path d="M19.555 57.71l70.19 42.174v10.794" class="I J P Q R"/><path d="M27.788 71.544l-5.438-3.27v-1.567l5.438 3.268zm39.334 24.48l-12.12-7.28v-2.86l12.12 7.284zM53.336 87.5l-12.12-7.282v-2.856l12.12 7.282zm30.896 18.543l-1.975-1.185v-2.305l1.975 1.186z" class="S"/><g class="I J K L"><path d="M90.032 82.727l38.052-20.2.007 10.877L90.04 93.603z"/><path d="M19.49 40.34L57.54 20.142l70.543 42.385-38.052 20.2z"/><path d="M90.032 82.727l.007 10.876-70.543-42.386-.007-10.877z"/></g><path d="M90.032 82.727l38.052-20.197.007 10.876L90.04 93.604z" class="M"/><path d="M19.49 40.34L57.54 20.143l70.543 42.386-38.052 20.198z" class="N"/><path d="M90.032 82.727l.007 10.877-70.543-42.387-.007-10.876z" class="O"/><path d="M19.83 40.346L90.017 82.52v10.794" class="I J P Q R"/><path d="M28.062 54.18l-5.438-3.268v-1.568l5.438 3.27zm39.334 24.48l-12.12-7.283V68.52l12.12 7.283zM53.6 70.146l-12.12-7.28v-2.86L53.6 67.3zM84.505 88.68l-1.975-1.185V85.2l1.975 1.185z" class="S"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/storage/Datacenter_Server_Rack_EoR.svg b/src/main/webapp/img/lib/allied_telesis/storage/Datacenter_Server_Rack_EoR.svg index 0057bc1f62f17b1b7362434720d4170d69007436..62368eee87d47640727a4ac4a31a0a425bb386a0 100644 --- a/src/main/webapp/img/lib/allied_telesis/storage/Datacenter_Server_Rack_EoR.svg +++ b/src/main/webapp/img/lib/allied_telesis/storage/Datacenter_Server_Rack_EoR.svg @@ -1,186 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 142.398 288.854" style="enable-background:new 0 0 142.398 288.854;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#E7EBF0;} - .st1{fill:none;stroke:#B8C6D3;stroke-width:1.941;stroke-linecap:round;stroke-linejoin:round;} - .st2{fill:none;stroke:#626366;stroke-width:2.676;stroke-linejoin:round;} - .st3{fill:#898B8E;} - .st4{fill:#BBBDBF;} - .st5{fill:#B3B5B7;} - .st6{fill:none;stroke:#DFE0DF;stroke-width:0.655;stroke-linecap:round;stroke-linejoin:round;} - .st7{fill:#FEFEFE;} - .st8{fill:none;stroke:#626366;stroke-width:2.621;stroke-linecap:round;stroke-linejoin:round;} -</style> -<title>icon-datacenter-rack3</title> -<desc>Created with Sketch.</desc> -<path id="Fill-1" class="st0" d="M0.976,32.926c0-1.228,0.06-1.916,0.306-2.581c0.247-0.665,1.627-1.4,1.627-1.4L55.914,0.97 - l82.568,47.6c0,0,2.17,0.975,2.602,2.545c0.492,1.784,0.31,5.347,0.31,5.347l-0.125,196.828c0,0,0.163,4.29-0.888,5.52 - c-0.573,0.678-3.044,2.162-3.044,2.162l-50.77,26.012c0,0-3.595,2.204-7.228-0.288c-3.35-2.297-67.101-38.225-67.101-38.225 - s-11.449-3.66-11.262-22.524C1.136,209.365,0.934,52.008,0.976,32.926"/> -<path id="Stroke-3" class="st1" d="M0.976,32.926c0-1.228,0.06-1.916,0.306-2.581c0.247-0.665,1.627-1.4,1.627-1.4L55.914,0.97 - l82.568,47.6c0,0,2.17,0.975,2.602,2.545c0.492,1.784,0.31,5.347,0.31,5.347l-0.125,196.828c0,0,0.163,4.29-0.888,5.52 - c-0.573,0.678-3.044,2.162-3.044,2.162l-50.77,26.012c0,0-3.595,2.204-7.228-0.288c-3.35-2.297-67.101-38.225-67.101-38.225 - s-11.449-3.66-11.262-22.524C1.136,209.365,0.934,52.008,0.976,32.926z"/> -<polygon id="Stroke-5" class="st2" points="86.917,193.531 124.282,173.423 124.323,251.697 86.956,272.24 "/> -<polygon id="Stroke-7" class="st2" points="17.544,151.275 54.91,131.167 124.282,173.422 86.917,193.531 "/> -<polygon id="Stroke-9" class="st2" points="86.917,193.531 86.956,272.24 17.583,230.531 17.544,151.275 "/> -<polygon id="Fill-11" class="st3" points="86.917,193.531 124.282,173.423 124.323,251.697 86.956,272.24 "/> -<polygon id="Fill-13" class="st4" points="17.544,151.275 54.91,131.167 124.282,173.422 86.917,193.531 "/> -<polygon id="Fill-15" class="st5" points="86.917,193.531 86.956,272.24 17.583,230.531 17.544,151.275 "/> -<polyline id="Stroke-17" class="st6" points="17.544,151.148 86.956,192.773 86.956,272.24 "/> -<polygon id="Fill-19" class="st7" points="24.082,181.463 24.082,167.163 25.449,167.986 25.449,182.286 "/> -<polygon id="Fill-21" class="st7" points="20.526,179.327 20.526,165.027 21.899,165.852 21.899,180.152 "/> -<polygon id="Fill-23" class="st7" points="27.471,183.499 27.471,169.201 28.844,170.025 28.844,184.323 "/> -<polygon id="Fill-25" class="st7" points="30.689,185.43 30.689,171.133 32.059,171.956 32.059,186.256 "/> -<polygon id="Fill-27" class="st7" points="34.021,187.434 34.021,173.137 35.388,173.958 35.388,188.257 "/> -<polygon id="Fill-29" class="st7" points="41.249,191.676 41.249,177.377 42.617,178.199 42.617,192.499 "/> -<polygon id="Fill-31" class="st7" points="37.693,189.54 37.693,175.241 39.066,176.066 39.066,190.366 "/> -<polygon id="Fill-33" class="st7" points="44.638,193.714 44.638,179.413 46.011,180.239 46.011,194.536 "/> -<polygon id="Fill-35" class="st7" points="47.856,195.644 47.856,181.346 49.226,182.169 49.226,196.469 "/> -<polygon id="Fill-37" class="st7" points="51.188,197.648 51.188,183.351 52.556,184.173 52.556,198.469 "/> -<polygon id="Fill-39" class="st7" points="58.063,201.785 58.063,187.484 59.433,188.308 59.433,202.607 "/> -<polygon id="Fill-41" class="st7" points="54.511,199.648 54.511,185.349 55.881,186.174 55.881,200.474 "/> -<polygon id="Fill-43" class="st7" points="61.456,203.822 61.456,189.521 62.826,190.346 62.826,204.645 "/> -<polygon id="Fill-45" class="st7" points="64.671,205.753 64.671,191.456 66.041,192.279 66.041,206.577 "/> -<polygon id="Fill-47" class="st7" points="68.003,207.757 68.003,193.46 69.374,194.282 69.374,208.579 "/> -<polygon id="Fill-49" class="st7" points="75.112,212.277 75.112,197.977 76.482,198.799 76.482,213.1 "/> -<polygon id="Fill-51" class="st7" points="71.558,210.141 71.558,195.84 72.928,196.665 72.928,210.965 "/> -<polygon id="Fill-53" class="st7" points="78.504,214.314 78.504,200.015 79.874,200.84 79.874,215.137 "/> -<polygon id="Fill-55" class="st7" points="81.72,216.245 81.72,201.948 83.09,202.771 83.09,217.071 "/> -<polygon id="Fill-57" class="st7" points="23.953,199.922 23.953,185.622 25.321,186.443 25.321,200.743 "/> -<polygon id="Fill-59" class="st7" points="20.397,197.786 20.397,183.486 21.77,184.311 21.77,198.611 "/> -<polygon id="Fill-61" class="st7" points="27.343,201.958 27.343,187.659 28.716,188.484 28.716,202.782 "/> -<polygon id="Fill-63" class="st7" points="30.56,203.889 30.56,189.592 31.93,190.413 31.93,204.714 "/> -<polygon id="Fill-65" class="st7" points="33.892,205.893 33.892,191.596 35.26,192.418 35.26,206.715 "/> -<polygon id="Fill-67" class="st7" points="41.12,210.135 41.12,195.836 42.488,196.658 42.488,210.958 "/> -<polygon id="Fill-69" class="st7" points="37.565,207.999 37.565,193.7 38.938,194.525 38.938,208.825 "/> -<polygon id="Fill-71" class="st7" points="44.51,212.173 44.51,197.872 45.883,198.698 45.883,212.995 "/> -<polygon id="Fill-73" class="st7" points="47.728,214.103 47.728,199.805 49.098,200.628 49.098,214.928 "/> -<polygon id="Fill-75" class="st7" points="51.06,216.107 51.06,201.809 52.427,202.632 52.427,216.928 "/> -<polygon id="Fill-77" class="st7" points="57.935,220.243 57.935,205.943 59.305,206.766 59.305,221.066 "/> -<polygon id="Fill-79" class="st7" points="54.382,218.107 54.382,203.808 55.753,204.633 55.753,218.933 "/> -<polygon id="Fill-81" class="st7" points="61.327,222.281 61.327,207.98 62.697,208.805 62.697,223.103 "/> -<polygon id="Fill-83" class="st7" points="64.543,224.212 64.543,209.915 65.913,210.736 65.913,225.036 "/> -<polygon id="Fill-85" class="st7" points="67.875,226.215 67.875,211.918 69.245,212.741 69.245,227.038 "/> -<polygon id="Fill-87" class="st7" points="74.983,230.736 74.983,216.436 76.353,217.258 76.353,231.559 "/> -<polygon id="Fill-89" class="st7" points="71.43,228.6 71.43,214.299 72.8,215.124 72.8,229.424 "/> -<polygon id="Fill-91" class="st7" points="78.375,232.773 78.375,218.473 79.745,219.298 79.745,233.596 "/> -<polygon id="Fill-93" class="st7" points="81.591,234.704 81.591,220.407 82.961,221.23 82.961,235.53 "/> -<polygon id="Fill-95" class="st7" points="23.953,218.379 23.953,204.079 25.321,204.904 25.321,219.202 "/> -<polygon id="Fill-97" class="st7" points="20.397,216.245 20.397,201.946 21.77,202.768 21.77,217.068 "/> -<polygon id="Fill-99" class="st7" points="27.343,220.415 27.343,206.118 28.716,206.941 28.716,221.242 "/> -<polygon id="Fill-101" class="st7" points="30.56,222.346 30.56,208.049 31.93,208.872 31.93,223.172 "/> -<polygon id="Fill-103" class="st7" points="33.892,224.35 33.892,210.053 35.26,210.874 35.26,225.173 "/> -<polygon id="Fill-105" class="st7" points="41.12,228.592 41.12,214.293 42.488,215.118 42.488,229.415 "/> -<polygon id="Fill-107" class="st7" points="37.565,226.458 37.565,212.16 38.938,212.982 38.938,227.282 "/> -<polygon id="Fill-109" class="st7" points="44.51,230.63 44.51,216.333 45.883,217.155 45.883,231.454 "/> -<polygon id="Fill-111" class="st7" points="47.728,232.56 47.728,218.262 49.098,219.085 49.098,233.385 "/> -<polygon id="Fill-113" class="st7" points="51.06,234.564 51.06,220.267 52.427,221.089 52.427,235.385 "/> -<polygon id="Fill-115" class="st7" points="57.935,238.701 57.935,224.4 59.305,225.226 59.305,239.523 "/> -<polygon id="Fill-117" class="st7" points="54.382,236.568 54.382,222.268 55.753,223.09 55.753,237.39 "/> -<polygon id="Fill-119" class="st7" points="61.327,240.738 61.327,226.441 62.697,227.262 62.697,241.563 "/> -<polygon id="Fill-121" class="st7" points="64.543,242.669 64.543,228.372 65.913,229.195 65.913,243.493 "/> -<polygon id="Fill-123" class="st7" points="67.875,244.673 67.875,230.376 69.245,231.198 69.245,245.495 "/> -<polygon id="Fill-125" class="st7" points="74.983,249.193 74.983,234.893 76.353,235.719 76.353,250.016 "/> -<polygon id="Fill-127" class="st7" points="71.43,247.06 71.43,232.76 72.8,233.581 72.8,247.882 "/> -<polygon id="Fill-129" class="st7" points="78.375,251.23 78.375,236.933 79.745,237.756 79.745,252.055 "/> -<polygon id="Fill-131" class="st7" points="81.591,253.161 81.591,238.864 82.961,239.687 82.961,253.986 "/> -<polygon id="Fill-133" class="st7" points="82.494,259.3 19.624,221.441 19.624,219.93 82.494,257.792 "/> -<polygon id="Fill-135" class="st7" points="82.494,262.867 19.624,225.008 19.624,223.497 82.494,261.359 "/> -<polygon id="Stroke-137" class="st2" points="87.415,108.543 124.779,88.436 124.819,166.708 87.453,187.253 "/> -<polygon id="Stroke-139" class="st2" points="18.041,66.288 55.407,46.18 124.779,88.435 87.415,108.543 "/> -<polygon id="Stroke-141" class="st2" points="87.415,108.543 87.453,187.253 18.08,145.544 18.041,66.288 "/> -<polygon id="Fill-143" class="st3" points="87.415,108.543 124.779,88.436 124.819,166.708 87.453,187.253 "/> -<polygon id="Fill-145" class="st4" points="18.041,66.288 55.407,46.18 124.779,88.435 87.415,108.543 "/> -<polygon id="Fill-147" class="st5" points="87.415,108.543 87.453,187.253 18.08,145.544 18.041,66.288 "/> -<polyline id="Stroke-149" class="st6" points="18.041,66.16 87.453,107.785 87.453,187.253 "/> -<polygon id="Fill-151" class="st7" points="24.579,96.475 24.579,82.175 25.946,82.997 25.946,97.297 "/> -<polygon id="Fill-153" class="st7" points="21.023,94.34 21.023,80.04 22.395,80.865 22.395,95.165 "/> -<polygon id="Fill-155" class="st7" points="27.968,98.512 27.968,84.213 29.341,85.037 29.341,99.335 "/> -<polygon id="Fill-157" class="st7" points="31.186,100.443 31.186,86.146 32.556,86.968 32.556,101.268 "/> -<polygon id="Fill-159" class="st7" points="34.518,102.447 34.518,88.15 35.885,88.972 35.885,103.269 "/> -<polygon id="Fill-161" class="st7" points="41.746,106.689 41.746,92.389 43.114,93.211 43.114,107.511 "/> -<polygon id="Fill-163" class="st7" points="38.19,104.553 38.19,90.254 39.563,91.078 39.563,105.379 "/> -<polygon id="Fill-165" class="st7" points="45.136,108.726 45.136,94.426 46.509,95.251 46.509,109.548 "/> -<polygon id="Fill-167" class="st7" points="48.353,110.657 48.353,96.36 49.723,97.182 49.723,111.482 "/> -<polygon id="Fill-169" class="st7" points="51.685,112.661 51.685,98.363 53.053,99.186 53.053,113.483 "/> -<polygon id="Fill-171" class="st7" points="58.56,116.798 58.56,102.498 59.93,103.32 59.93,117.62 "/> -<polygon id="Fill-173" class="st7" points="55.008,114.662 55.008,100.362 56.378,101.187 56.378,115.487 "/> -<polygon id="Fill-175" class="st7" points="61.952,118.835 61.952,104.535 63.323,105.36 63.323,119.657 "/> -<polygon id="Fill-177" class="st7" points="65.168,120.765 65.168,106.468 66.538,107.29 66.538,121.59 "/> -<polygon id="Fill-179" class="st7" points="68.5,122.769 68.5,108.471 69.871,109.294 69.871,123.59 "/> -<polygon id="Fill-181" class="st7" points="75.608,127.29 75.608,112.99 76.979,113.813 76.979,128.113 "/> -<polygon id="Fill-183" class="st7" points="72.055,125.154 72.055,110.854 73.425,111.679 73.425,125.979 "/> -<polygon id="Fill-185" class="st7" points="79.001,129.327 79.001,115.027 80.371,115.852 80.371,130.15 "/> -<polygon id="Fill-187" class="st7" points="82.216,131.258 82.216,116.961 83.587,117.784 83.587,132.083 "/> -<polygon id="Fill-189" class="st7" points="24.45,114.934 24.45,100.634 25.817,101.456 25.817,115.756 "/> -<polygon id="Fill-191" class="st7" points="20.894,112.799 20.894,98.499 22.267,99.324 22.267,113.624 "/> -<polygon id="Fill-193" class="st7" points="27.84,116.971 27.84,102.672 29.212,103.496 29.212,117.793 "/> -<polygon id="Fill-195" class="st7" points="31.057,118.902 31.057,104.604 32.427,105.427 32.427,119.727 "/> -<polygon id="Fill-197" class="st7" points="34.389,120.906 34.389,106.608 35.757,107.431 35.757,121.728 "/> -<polygon id="Fill-199" class="st7" points="41.618,125.147 41.618,110.847 42.985,111.67 42.985,125.97 "/> -<polygon id="Fill-201" class="st7" points="38.062,123.011 38.062,108.712 39.434,109.536 39.434,123.837 "/> -<polygon id="Fill-203" class="st7" points="45.007,127.185 45.007,112.885 46.38,113.71 46.38,128.007 "/> -<polygon id="Fill-205" class="st7" points="48.225,129.116 48.225,114.818 49.595,115.641 49.595,129.941 "/> -<polygon id="Fill-207" class="st7" points="51.557,131.118 51.557,116.822 52.924,117.644 52.924,131.941 "/> -<polygon id="Fill-209" class="st7" points="58.432,135.256 58.432,120.956 59.802,121.779 59.802,136.079 "/> -<polygon id="Fill-211" class="st7" points="54.879,133.12 54.879,118.82 56.25,119.645 56.25,133.945 "/> -<polygon id="Fill-213" class="st7" points="61.824,137.294 61.824,122.993 63.194,123.819 63.194,138.116 "/> -<polygon id="Fill-215" class="st7" points="65.04,139.224 65.04,124.926 66.41,125.749 66.41,140.049 "/> -<polygon id="Fill-217" class="st7" points="68.372,141.227 68.372,126.93 69.742,127.753 69.742,142.049 "/> -<polygon id="Fill-219" class="st7" points="75.48,145.749 75.48,131.449 76.85,132.271 76.85,146.571 "/> -<polygon id="Fill-221" class="st7" points="71.928,143.613 71.928,129.313 73.298,130.137 73.298,144.438 "/> -<polygon id="Fill-223" class="st7" points="78.872,147.786 78.872,133.486 80.242,134.311 80.242,148.607 "/> -<polygon id="Fill-225" class="st7" points="82.088,149.717 82.088,135.42 83.458,136.242 83.458,150.542 "/> -<polygon id="Fill-227" class="st7" points="24.45,133.391 24.45,119.09 25.817,119.916 25.817,134.213 "/> -<polygon id="Fill-229" class="st7" points="20.894,131.258 20.894,116.959 22.267,117.781 22.267,132.081 "/> -<polygon id="Fill-231" class="st7" points="27.84,135.428 27.84,121.132 29.212,121.953 29.212,136.254 "/> -<polygon id="Fill-233" class="st7" points="31.057,137.359 31.057,123.062 32.427,123.884 32.427,138.184 "/> -<polygon id="Fill-235" class="st7" points="34.389,139.363 34.389,125.066 35.757,125.888 35.757,140.185 "/> -<polygon id="Fill-237" class="st7" points="41.618,143.605 41.618,129.305 42.985,130.13 42.985,144.426 "/> -<polygon id="Fill-239" class="st7" points="38.062,141.471 38.062,127.172 39.434,127.993 39.434,142.295 "/> -<polygon id="Fill-241" class="st7" points="45.007,145.642 45.007,131.344 46.38,132.167 46.38,146.467 "/> -<polygon id="Fill-243" class="st7" points="48.225,147.573 48.225,133.275 49.595,134.098 49.595,148.398 "/> -<polygon id="Fill-245" class="st7" points="51.557,149.577 51.557,135.279 52.924,136.102 52.924,150.398 "/> -<polygon id="Fill-247" class="st7" points="58.432,153.714 58.432,139.413 59.802,140.239 59.802,154.536 "/> -<polygon id="Fill-249" class="st7" points="54.879,151.579 54.879,137.28 56.25,138.103 56.25,152.402 "/> -<polygon id="Fill-251" class="st7" points="61.824,155.751 61.824,141.454 63.194,142.275 63.194,156.576 "/> -<polygon id="Fill-253" class="st7" points="65.04,157.68 65.04,143.383 66.41,144.206 66.41,158.506 "/> -<polygon id="Fill-255" class="st7" points="68.372,159.685 68.372,145.387 69.742,146.21 69.742,160.507 "/> -<polygon id="Fill-257" class="st7" points="75.48,164.206 75.48,149.906 76.85,150.73 76.85,165.029 "/> -<polygon id="Fill-259" class="st7" points="71.928,162.073 71.928,147.773 73.298,148.594 73.298,162.895 "/> -<polygon id="Fill-261" class="st7" points="78.872,166.243 78.872,151.946 80.242,152.768 80.242,167.068 "/> -<polygon id="Fill-263" class="st7" points="82.088,168.174 82.088,153.877 83.458,154.7 83.458,168.999 "/> -<polygon id="Fill-265" class="st7" points="82.991,174.313 20.121,136.452 20.121,134.941 82.991,172.805 "/> -<polygon id="Fill-267" class="st7" points="82.991,177.881 20.121,140.02 20.121,138.51 82.991,176.372 "/> -<polygon id="Fill-269" class="st7" points="31.182,218.551 27.948,216.614 27.948,214.505 31.182,216.445 "/> -<polygon id="Stroke-271" class="st8" points="86.686,93.25 123.622,73.643 123.629,84.2 86.691,103.808 "/> -<polygon id="Stroke-273" class="st8" points="18.209,52.103 55.147,32.498 123.622,73.642 86.687,93.249 "/> -<polygon id="Stroke-275" class="st8" points="86.686,93.25 86.691,103.808 18.216,62.661 18.208,52.104 "/> -<polygon id="Fill-277" class="st3" points="86.686,93.25 123.622,73.646 123.629,84.2 86.691,103.808 "/> -<polygon id="Fill-279" class="st4" points="18.209,52.104 55.147,32.498 123.622,73.645 86.687,93.25 "/> -<polygon id="Fill-281" class="st5" points="86.686,93.25 86.691,103.808 18.216,62.661 18.208,52.104 "/> -<polyline id="Stroke-283" class="st6" points="18.541,52.11 86.672,93.047 86.672,103.525 "/> -<polygon id="Fill-285" class="st7" points="81.322,99.026 79.404,97.877 79.404,95.639 81.322,96.791 "/> -<polygon id="Stroke-287" class="st8" points="86.951,76.393 123.889,56.785 123.894,67.343 86.958,86.951 "/> -<polygon id="Stroke-289" class="st8" points="18.474,35.249 55.411,15.642 123.889,56.785 86.951,76.394 "/> -<polygon id="Stroke-291" class="st8" points="86.951,76.393 86.958,86.951 18.481,45.806 18.474,35.248 "/> -<polygon id="Fill-293" class="st3" points="86.951,76.393 123.889,56.788 123.894,67.346 86.958,86.954 "/> -<polygon id="Fill-295" class="st4" points="18.474,35.25 55.411,15.642 123.889,56.788 86.951,76.394 "/> -<polygon id="Fill-297" class="st5" points="86.951,76.393 86.958,86.954 18.481,45.806 18.474,35.249 "/> -<polyline id="Stroke-299" class="st6" points="18.805,35.255 86.938,76.193 86.938,86.671 "/> -<polygon id="Fill-301" class="st7" points="81.587,82.173 79.669,81.024 79.669,78.785 81.587,79.937 "/> -<polygon id="Fill-303" class="st7" points="44.387,72.965 32.986,66.116 32.986,63.431 44.387,70.279 "/> -<polygon id="Fill-305" class="st7" points="44.344,77.024 32.944,70.175 32.944,67.492 44.344,74.34 "/> -<polygon id="Fill-307" class="st7" points="54.677,83.195 45.923,77.935 45.923,75.872 54.677,81.132 "/> -<polygon id="Fill-309" class="st7" points="31.836,65.377 20.438,58.528 20.438,55.839 31.836,62.686 "/> -<polygon id="Fill-311" class="st7" points="31.796,69.438 20.398,62.589 20.398,59.901 31.796,66.75 "/> -<polygon id="Fill-313" class="st7" points="59.311,86.009 56.078,84.073 56.078,82.023 59.311,83.959 "/> -<polygon id="Fill-315" class="st7" points="44.098,55.091 32.698,48.243 32.698,45.556 44.098,52.405 "/> -<polygon id="Fill-317" class="st7" points="44.054,59.149 32.653,52.3 32.653,49.616 44.054,56.466 "/> -<polygon id="Fill-319" class="st7" points="54.388,65.322 45.634,60.061 45.634,57.999 54.388,63.258 "/> -<polygon id="Fill-321" class="st7" points="31.548,47.503 20.15,40.653 20.15,37.963 31.548,44.813 "/> -<polygon id="Fill-323" class="st7" points="31.507,51.562 20.109,44.713 20.109,42.027 31.507,48.875 "/> -<polygon id="Fill-325" class="st7" points="59.024,68.135 55.79,66.198 55.79,64.149 59.024,66.084 "/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 142.398 288.854"><style><![CDATA[.J{fill:none}.K{stroke-linejoin:round}.L{stroke:#626366}.M{fill:#898b8e}.N{fill:#bbbdbf}.O{fill:#b3b5b7}.P{stroke:#dfe0df}.Q{stroke-width:.655}.R{stroke-linecap:round}.S{fill:#fefefe}.T{stroke-width:2.676}.U{stroke-width:2.621}]]></style><path d="M.976 32.926c0-1.228.06-1.916.306-2.58s1.627-1.4 1.627-1.4L55.914.97l82.568 47.6s2.17.975 2.602 2.545c.492 1.784.3 5.347.3 5.347L141.27 253.3s.163 4.3-.888 5.52c-.573.678-3.044 2.162-3.044 2.162l-50.77 26.012s-3.595 2.204-7.228-.288c-3.35-2.297-67.1-38.225-67.1-38.225S.79 244.81.976 225.947V32.926" fill="#e7ebf0"/><g class="J K"><path d="M.976 32.926c0-1.228.06-1.916.306-2.58s1.627-1.4 1.627-1.4L55.914.97l82.568 47.6s2.17.975 2.602 2.545c.492 1.784.3 5.347.3 5.347L141.27 253.3s.163 4.3-.888 5.52c-.573.678-3.044 2.162-3.044 2.162l-50.77 26.012s-3.595 2.204-7.228-.288c-3.35-2.297-67.1-38.225-67.1-38.225S.79 244.81.976 225.947V32.926z" stroke="#b8c6d3" stroke-width="1.941"/><g class="L T"><path d="M86.917 193.53l37.365-20.108.04 78.274-37.367 20.543z"/><path d="M17.544 151.275L54.9 131.167l69.372 42.255-37.365 20.11z"/><path d="M86.917 193.53l.04 78.71-69.373-41.71-.04-79.256z"/></g></g><path d="M86.917 193.53l37.365-20.108.04 78.274-37.367 20.543z" class="M"/><path d="M17.544 151.275L54.9 131.167l69.372 42.255-37.365 20.11z" class="N"/><path d="M86.917 193.53l.04 78.71-69.373-41.71-.04-79.256z" class="O"/><path d="M17.544 151.148l69.412 41.625v79.467" class="J K P Q R"/><path d="M24.082 181.463v-14.3l1.367.823v14.3zm-3.556-2.136v-14.3l1.373.825v14.3zm6.944 4.173v-14.3l1.373.824v14.298zm3.22 1.93v-14.297l1.37.823v14.3zm3.33 2.004v-14.297l1.367.82v14.3zm7.23 4.242v-14.3l1.368.822v14.3zm-3.557-2.136v-14.3l1.373.825v14.3zm6.945 4.174v-14.3l1.373.826v14.297zm3.218 1.93v-14.298l1.37.823v14.3zm3.332 2.004V183.35l1.368.822v14.296zm6.875 4.137v-14.3l1.37.824v14.3zm-3.553-2.137v-14.3l1.37.825v14.3zm6.946 4.174v-14.3l1.37.825v14.3zm3.214 1.93v-14.297l1.37.823v14.298zm3.333 2.004V193.46l1.37.822v14.297zm7.11 4.52v-14.3l1.37.822v14.3zm-3.554-2.137v-14.3l1.37.825v14.3zm6.946 4.174v-14.3l1.37.825v14.297zm3.216 1.93v-14.297l1.37.823v14.3zm-57.767-16.323v-14.3l1.368.82v14.3zm-3.556-2.136v-14.3l1.373.825v14.3zm6.946 4.172v-14.3l1.373.825v14.298zm3.217 1.932v-14.297l1.37.82v14.3zm3.332 2.003v-14.297l1.368.822v14.297zm7.228 4.242v-14.3l1.368.822v14.3zM37.565 208v-14.3l1.373.825v14.3zm6.935 4.173v-14.3l1.373.826v14.297zm3.228 1.93v-14.298l1.37.823v14.3zm3.332 2.004V201.8l1.367.823v14.296zm6.875 4.136v-14.3l1.37.823v14.3zm-3.553-2.136v-14.3l1.37.825v14.3zm6.945 4.173v-14.3l1.37.825v14.298zm3.216 1.932v-14.297l1.37.82v14.3zm3.332 2.003v-14.297l1.37.823v14.297zm7.108 4.52v-14.3l1.37.822v14.3zM71.43 228.6v-14.3l1.37.825v14.3zm6.945 4.173v-14.3l1.37.825v14.298zm3.215 1.93v-14.297l1.37.823v14.3zM23.953 218.38v-14.3l1.368.825v14.298zm-3.556-2.135v-14.3l1.373.822v14.3zm6.946 4.17v-14.297l1.373.823v14.3zm3.217 1.93V208.05l1.37.823v14.3zm3.332 2.004v-14.297l1.368.82v14.3zm7.228 4.242v-14.3l1.368.825v14.297zm-3.555-2.134V212.16l1.373.822v14.3zm6.935 4.172v-14.297l1.373.822v14.3zm3.228 1.93v-14.298l1.37.823v14.3zm3.332 2.004v-14.297l1.367.822v14.296zm6.875 4.136v-14.3l1.37.826v14.297zm-3.553-2.132v-14.3l1.37.822v14.3zm6.945 4.17V226.44l1.37.82v14.3zm3.216 1.932v-14.297l1.37.823v14.298zm3.332 2.003v-14.297l1.37.822v14.297zm7.108 4.52v-14.3l1.37.826v14.297zm-3.553-2.133v-14.3l1.37.82v14.3zm6.945 4.17v-14.297l1.37.823v14.3zm3.215 1.93v-14.297l1.37.823v14.3zm.904 6.14l-62.87-37.86v-1.5l62.87 37.862zm0 3.567l-62.87-37.86v-1.5l62.87 37.862z" class="S"/><g class="J K L T"><path d="M87.415 108.543l37.364-20.107.04 78.272-37.366 20.545z"/><path d="M18.04 66.288L55.407 46.18l69.372 42.255-37.364 20.108z"/><path d="M87.415 108.543l.038 78.7-69.373-41.71-.04-79.256z"/></g><path d="M87.415 108.543l37.364-20.107.04 78.272-37.366 20.545z" class="M"/><path d="M18.04 66.288L55.407 46.18l69.372 42.255-37.364 20.108z" class="N"/><path d="M87.415 108.543l.038 78.7-69.373-41.71-.04-79.256z" class="O"/><path d="M18.04 66.16l69.412 41.625v79.468" class="J K P Q R"/><path d="M24.58 96.475v-14.3l1.367.822v14.3zm-3.557-2.135v-14.3l1.372.825v14.3zm6.945 4.172v-14.3l1.373.824v14.298zm3.218 1.93V86.146l1.37.822v14.3zm3.332 2.004V88.15l1.367.822v14.297zm7.228 4.243V92.4l1.368.822v14.3zm-3.546-2.137v-14.3l1.373.824v14.3zm6.936 4.173v-14.3l1.373.825v14.297zm3.217 1.93V96.36l1.37.822v14.3zm3.332 2.003V98.363l1.368.823v14.297zm6.875 4.138v-14.3l1.37.822v14.3zm-3.552-2.136v-14.3l1.37.825v14.3zm6.944 4.173v-14.3l1.37.825v14.297zm3.216 1.93v-14.297l1.37.822v14.3zm3.332 2.005v-14.3l1.37.823V123.6zm7.108 4.53V113l1.37.823v14.3zm-3.553-2.146v-14.3l1.37.825v14.3zM79 129.327v-14.3l1.37.825v14.298zm3.216 1.93V116.96l1.37.823v14.3zM24.45 114.934v-14.3l1.367.822v14.3zm-3.556-2.134V98.5l1.373.825v14.3zm6.946 4.17v-14.3l1.372.824v14.297zm3.217 1.932v-14.298l1.37.823v14.3zm3.333 2.004v-14.298l1.368.823v14.297zm7.228 4.24v-14.3l1.367.823v14.3zM38.062 123v-14.3l1.372.824v14.3zm6.945 4.175v-14.3l1.373.825v14.297zm3.218 1.93v-14.298l1.37.823v14.3zm3.332 2.002v-14.296l1.367.822v14.297zm6.875 4.138v-14.3l1.37.823v14.3zm-3.552-2.136v-14.3l1.37.825v14.3zm6.944 4.174v-14.3l1.37.826v14.297zm3.216 1.93v-14.298l1.37.823v14.3zm3.332 2.003V126.93l1.37.823v14.296zm7.108 4.523v-14.3l1.37.822v14.3zm-3.552-2.137v-14.3l1.37.824v14.3zm6.944 4.173v-14.3l1.37.825v14.296zm3.216 1.93V135.42l1.37.822v14.3zM24.45 133.4v-14.3l1.367.826v14.297zm-3.556-2.132v-14.3l1.373.822v14.3zm6.946 4.17v-14.296l1.372.82v14.3zm3.217 1.932v-14.297l1.37.822v14.3zm3.333 2.003v-14.297l1.368.822v14.297zm7.228 4.242v-14.3l1.367.825v14.296zm-3.556-2.135v-14.3l1.372.82v14.302zm6.945 4.172v-14.298l1.373.823v14.3zm3.218 1.93v-14.298l1.37.823v14.3zm3.332 2.004V135.28l1.367.823V150.4zm6.875 4.137v-14.3l1.37.826v14.297zm-3.552-2.134v-14.3l1.37.823v14.3zm6.944 4.17v-14.297l1.37.82v14.3zm3.216 1.93v-14.297l1.37.823v14.3zm3.332 2.005v-14.298l1.37.823v14.297zm7.108 4.52v-14.3l1.37.824v14.3zm-3.552-2.133v-14.3l1.37.82v14.3zm6.944 4.17v-14.297l1.37.822v14.3zm3.216 1.93v-14.297l1.37.823V169zm.902 6.14l-62.87-37.86v-1.5L83 172.807zm0 3.567l-62.87-37.86v-1.5L83 176.382zm-51.808 40.67l-3.234-1.937v-2.1l3.234 1.94z" class="S"/><g class="J K L U"><path d="M86.686 93.25l36.936-19.607.007 10.557-36.938 19.608z"/><path d="M18.21 52.103l36.938-19.605 68.475 41.144L86.687 93.25z"/><path d="M86.686 93.25l.005 10.558L18.216 62.66l-.008-10.557z"/></g><path d="M86.686 93.25l36.936-19.604.007 10.554-36.938 19.608z" class="M"/><path d="M18.21 52.104l36.938-19.606 68.475 41.147L86.687 93.25z" class="N"/><path d="M86.686 93.25l.005 10.558L18.216 62.66l-.008-10.557z" class="O"/><path d="M18.54 52.1l68.13 40.937v10.478" class="J K P Q R"/><path d="M81.322 99.026l-1.918-1.15V95.64l1.918 1.152z" class="S"/><g class="J K L U"><path d="M86.95 76.393l36.938-19.608.005 10.558L86.958 86.95z"/><path d="M18.474 35.25L55.41 15.642l68.478 41.143-36.938 19.61z"/><path d="M86.95 76.393l.007 10.558L18.48 45.806l-.007-10.558z"/></g><path d="M86.95 76.393l36.938-19.605.005 10.558-36.936 19.608z" class="M"/><path d="M18.474 35.25L55.41 15.642l68.478 41.146L86.95 76.394z" class="N"/><path d="M86.95 76.393l.007 10.56L18.48 45.806l-.007-10.557z" class="O"/><path d="M18.805 35.255l68.133 40.938V86.67" class="J K P Q R"/><path d="M81.587 82.173l-1.918-1.15v-2.24l1.918 1.152zm-37.2-9.208l-11.4-6.85V63.43l11.4 6.848zm-.043 4.06l-11.4-6.85V67.49l11.4 6.848zm10.333 6.17l-8.754-5.26v-2.063l8.754 5.26zm-22.84-17.818l-11.398-6.85v-2.7l11.398 6.847zm-.04 4.06l-11.398-6.85V59.9l11.398 6.85zM59.3 86l-3.233-1.936v-2.05L59.3 83.96zM44.098 55.1l-11.4-6.848v-2.687l11.4 6.85zm-.044 4.06l-11.4-6.85v-2.684l11.4 6.85zm10.334 6.172l-8.754-5.26V58l8.754 5.26zm-22.84-17.82l-11.398-6.85v-2.7l11.398 6.85zm-.04 4.06l-11.398-6.85v-2.686l11.398 6.848zm27.517 16.573L55.8 66.198v-2.05l3.234 1.935z" class="S"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/storage/Datacenter_Server_Rack_Storage_Unit_Small.svg b/src/main/webapp/img/lib/allied_telesis/storage/Datacenter_Server_Rack_Storage_Unit_Small.svg index bc86b0d45655f52983f8e429c24ccc98e1515778..b3ca975bbf2ae74d19005287c8debd41007b1d9a 100644 --- a/src/main/webapp/img/lib/allied_telesis/storage/Datacenter_Server_Rack_Storage_Unit_Small.svg +++ b/src/main/webapp/img/lib/allied_telesis/storage/Datacenter_Server_Rack_Storage_Unit_Small.svg @@ -1,74 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 128.816 111.766" style="enable-background:new 0 0 128.816 111.766;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#626366;stroke-width:3.124;stroke-linejoin:round;} - .st1{fill:#416895;} - .st2{fill:#7D91B4;} - .st3{fill:#607BA4;} - .st4{fill:none;stroke:#DFE0DF;stroke-width:1.033;stroke-linecap:round;stroke-linejoin:round;} - .st5{fill:none;stroke:#DFE0DF;stroke-width:1.032;stroke-linecap:round;stroke-linejoin:round;} - .st6{fill:#DFE0DF;} - .st7{fill:none;stroke:#FEFEFE;stroke-width:0.437;stroke-linejoin:round;} -</style> -<title>icon-blueSwitch-small-generic</title> -<desc>Created with Sketch.</desc> -<polygon id="Stroke-1" class="st0" points="83.194,73.986 127.225,50.611 127.254,86.831 83.22,110.204 "/> -<polygon id="Stroke-3" class="st0" points="1.562,24.934 45.594,1.562 127.225,50.611 83.194,73.986 "/> -<polygon id="Stroke-5" class="st0" points="83.194,73.986 83.22,110.204 1.587,61.154 1.562,24.934 "/> -<polygon id="Fill-8" class="st1" points="83.194,73.986 127.225,50.611 127.254,86.831 83.22,110.204 "/> -<polygon id="Fill-9" class="st2" points="1.562,24.934 45.594,1.562 127.225,50.611 83.194,73.986 "/> -<polygon id="Fill-10" class="st3" points="83.194,73.986 83.22,110.204 1.587,61.154 1.562,24.934 "/> -<path id="Stroke-11" class="st4" d="M1.562,25.055l81.632,49.456"/> -<path id="Stroke-13" class="st5" d="M83.194,74.602v35.48"/> -<path id="Fill-15" class="st6" d="M22.118,49.625c0,0.369-0.257,0.512-0.57,0.317L6.261,40.477c-0.314-0.195-0.571-0.656-0.57-1.025 - l0.01-7.014c0.001-0.369,0.258-0.511,0.571-0.317l15.282,9.465c0.313,0.194,0.57,0.655,0.57,1.024L22.118,49.625z"/> -<path id="Stroke-17" class="st7" d="M22.118,49.625c0,0.369-0.257,0.512-0.57,0.317L6.261,40.477 - c-0.314-0.195-0.571-0.656-0.57-1.025l0.01-7.014c0.001-0.369,0.258-0.511,0.571-0.317l15.282,9.465 - c0.313,0.194,0.57,0.655,0.57,1.024L22.118,49.625z"/> -<path id="Fill-19" class="st6" d="M22.107,60.247c-0.001,0.369-0.258,0.512-0.571,0.317L6.252,51.097 - c-0.314-0.195-0.571-0.656-0.57-1.025l0.007-7.012c0.001-0.37,0.258-0.512,0.571-0.318l15.284,9.466 - c0.313,0.194,0.57,0.655,0.569,1.024L22.107,60.247z"/> -<path id="Stroke-21" class="st7" d="M22.107,60.247c-0.001,0.369-0.258,0.512-0.571,0.317L6.252,51.097 - c-0.314-0.195-0.571-0.656-0.57-1.025l0.007-7.012c0.001-0.37,0.258-0.512,0.571-0.318l15.284,9.466 - c0.313,0.194,0.57,0.655,0.569,1.024L22.107,60.247z"/> -<path id="Fill-23" class="st6" d="M22.096,70.87c0,0.369-0.257,0.512-0.57,0.317L6.242,61.719c-0.313-0.195-0.57-0.656-0.57-1.025 - l0.006-7.016c0-0.37,0.257-0.512,0.57-0.318l15.284,9.468c0.313,0.194,0.57,0.655,0.57,1.024L22.096,70.87z"/> -<path id="Stroke-25" class="st7" d="M22.096,70.87c0,0.369-0.257,0.512-0.57,0.317L6.242,61.719c-0.313-0.195-0.57-0.656-0.57-1.025 - l0.006-7.016c0-0.37,0.257-0.512,0.57-0.318l15.284,9.468c0.313,0.194,0.57,0.655,0.57,1.024L22.096,70.87z"/> -<path id="Fill-27" class="st6" d="M40.272,60.87c-0.001,0.369-0.258,0.512-0.571,0.317l-15.286-9.465 - c-0.314-0.195-0.571-0.656-0.57-1.025l0.008-7.014c0.001-0.37,0.258-0.512,0.571-0.318l15.286,9.467 - c0.313,0.194,0.57,0.655,0.569,1.024L40.272,60.87z"/> -<path id="Stroke-29" class="st7" d="M40.272,60.87c-0.001,0.369-0.258,0.512-0.571,0.317l-15.286-9.465 - c-0.314-0.195-0.571-0.656-0.57-1.025l0.008-7.014c0.001-0.37,0.258-0.512,0.571-0.318l15.286,9.467 - c0.313,0.194,0.57,0.655,0.569,1.024L40.272,60.87z"/> -<path id="Fill-31" class="st6" d="M40.262,71.49c0,0.369-0.257,0.512-0.57,0.317l-15.286-9.465c-0.314-0.195-0.571-0.656-0.57-1.025 - l0.007-7.014c0.001-0.369,0.258-0.511,0.571-0.317l15.284,9.465c0.313,0.194,0.57,0.655,0.57,1.024L40.262,71.49z"/> -<path id="Stroke-33" class="st7" d="M40.262,71.49c0,0.369-0.257,0.512-0.57,0.317l-15.286-9.465 - c-0.314-0.195-0.571-0.656-0.57-1.025l0.007-7.014c0.001-0.369,0.258-0.511,0.571-0.317l15.284,9.465 - c0.313,0.194,0.57,0.655,0.57,1.024L40.262,71.49z"/> -<path id="Fill-35" class="st6" d="M40.252,82.112c-0.001,0.369-0.258,0.512-0.571,0.317l-15.286-9.466 - c-0.314-0.195-0.571-0.656-0.57-1.025l0.007-7.014c0.001-0.37,0.258-0.512,0.571-0.318l15.287,9.465 - c0.313,0.194,0.57,0.655,0.569,1.024L40.252,82.112z"/> -<path id="Stroke-37" class="st7" d="M40.252,82.112c-0.001,0.369-0.258,0.512-0.571,0.317l-15.286-9.466 - c-0.314-0.195-0.571-0.656-0.57-1.025l0.007-7.014c0.001-0.37,0.258-0.512,0.571-0.318l15.287,9.465 - c0.313,0.194,0.57,0.655,0.569,1.024L40.252,82.112z"/> -<path id="Fill-39" class="st6" d="M58.424,72.116c0,0.369-0.257,0.512-0.57,0.317l-15.285-9.468 - c-0.314-0.195-0.571-0.656-0.571-1.025l0.006-7.014c0-0.37,0.257-0.512,0.57-0.318l15.286,9.469c0.313,0.194,0.57,0.655,0.57,1.024 - L58.424,72.116z"/> -<path id="Stroke-41" class="st7" d="M58.424,72.116c0,0.369-0.257,0.512-0.57,0.317l-15.285-9.468 - c-0.314-0.195-0.571-0.656-0.571-1.025l0.006-7.014c0-0.37,0.257-0.512,0.57-0.318l15.286,9.469c0.313,0.194,0.57,0.655,0.57,1.024 - L58.424,72.116z"/> -<path id="Fill-43" class="st6" d="M58.414,82.735c-0.001,0.369-0.258,0.512-0.571,0.317l-15.286-9.466 - c-0.314-0.195-0.57-0.656-0.57-1.025l0.009-7.014c0.001-0.37,0.258-0.512,0.571-0.318l15.285,9.467 - c0.314,0.194,0.571,0.655,0.57,1.024L58.414,82.735z"/> -<path id="Stroke-45" class="st7" d="M58.414,82.735c-0.001,0.369-0.258,0.512-0.571,0.317l-15.286-9.466 - c-0.314-0.195-0.57-0.656-0.57-1.025l0.009-7.014c0.001-0.37,0.258-0.512,0.571-0.318l15.285,9.467 - c0.314,0.194,0.571,0.655,0.57,1.024L58.414,82.735z"/> -<path id="Fill-47" class="st6" d="M58.402,93.357c-0.001,0.369-0.258,0.512-0.571,0.317L42.548,84.21 - c-0.313-0.195-0.57-0.656-0.569-1.025l0.004-7.018c0.001-0.37,0.258-0.512,0.571-0.318l15.288,9.47 - c0.314,0.194,0.571,0.655,0.57,1.024L58.402,93.357z"/> -<path id="Stroke-49" class="st7" d="M58.402,93.357c-0.001,0.369-0.258,0.512-0.571,0.317L42.548,84.21 - c-0.313-0.195-0.57-0.656-0.569-1.025l0.004-7.018c0.001-0.37,0.258-0.512,0.571-0.318l15.288,9.47 - c0.314,0.194,0.571,0.655,0.57,1.024L58.402,93.357z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 128.816 111.766"><style><![CDATA[.I{fill:none}.J{stroke-linejoin:round}.K{fill:#dfe0df}.L{stroke:#fefefe}.M{stroke-width:.437}]]></style><g stroke="#626366" stroke-width="3.124" class="I J"><path d="M83.194 73.986l44.03-23.375.03 36.22-44.034 23.373z"/><path d="M1.562 24.934L45.594 1.562l81.63 49.05-44.03 23.375z"/><path d="M83.194 73.986l.026 36.218-81.633-49.05-.025-36.22z"/></g><path d="M83.194 73.986l44.03-23.375.03 36.22-44.034 23.373z" fill="#416895"/><path d="M1.562 24.934L45.594 1.562l81.63 49.05-44.03 23.375z" fill="#7d91b4"/><path d="M83.194 73.986l.026 36.218-81.633-49.05-.025-36.22z" fill="#607ba4"/><path d="M1.562 25.055L83.194 74.5m0 .092v35.48" stroke-width="1.033" stroke="#dfe0df" stroke-linecap="round" class="I J"/><use xlink:href="#B" class="K"/><use xlink:href="#B" class="I J L M"/><use xlink:href="#C" class="K"/><use xlink:href="#C" class="I J L M"/><use xlink:href="#D" class="K"/><use xlink:href="#D" class="I J L M"/><use xlink:href="#E" class="K"/><use xlink:href="#E" class="I J L M"/><use xlink:href="#F" class="K"/><use xlink:href="#F" class="I J L M"/><use xlink:href="#G" class="K"/><use xlink:href="#G" class="I J L M"/><use xlink:href="#H" class="K"/><use xlink:href="#H" class="I J L M"/><use xlink:href="#I" class="K"/><use xlink:href="#I" class="I J L M"/><use xlink:href="#J" class="K"/><use xlink:href="#J" class="I J L M"/><defs ><path id="B" d="M22.118 49.625c0 .37-.257.512-.57.317L6.26 40.477c-.314-.195-.57-.656-.57-1.025l.01-7.014c.001-.37.258-.51.57-.317l15.282 9.465c.313.194.57.655.57 1.024l-.006 7.015z"/><path id="C" d="M22.107 60.247c-.001.37-.258.512-.57.317L6.252 51.097c-.314-.195-.57-.656-.57-1.025l.007-7.012c.001-.37.258-.512.57-.318l15.284 9.466c.313.194.57.655.57 1.024l-.006 7.015z"/><path id="D" d="M22.096 70.87c0 .37-.257.512-.57.317L6.242 61.72a1.35 1.35 0 0 1-.57-1.025l.006-7.016c0-.37.257-.512.57-.318l15.284 9.468c.313.194.57.655.57 1.024l-.006 7.018z"/><path id="E" d="M40.272 60.87c-.001.37-.258.512-.57.317l-15.286-9.465c-.314-.195-.57-.656-.57-1.025l.008-7.014c.001-.37.258-.512.57-.318L39.7 52.832c.313.194.57.655.57 1.024l-.007 7.014z"/><path id="F" d="M40.262 71.5c0 .37-.257.512-.57.317l-15.286-9.465c-.314-.195-.57-.656-.57-1.025l.007-7.014c.001-.37.258-.51.57-.317l15.284 9.465c.313.194.57.655.57 1.024l-.006 7.015z"/><path id="G" d="M40.252 82.112c-.001.37-.258.512-.57.317l-15.286-9.466c-.314-.195-.57-.656-.57-1.025l.007-7.014c.001-.37.258-.512.57-.318L39.7 74.07c.313.194.57.655.57 1.024l-.007 7.017z"/><path id="H" d="M58.424 72.116c0 .37-.257.512-.57.317L42.57 62.965a1.35 1.35 0 0 1-.571-1.025l.006-7.014c0-.37.257-.512.57-.318l15.286 9.47c.313.194.57.655.57 1.024l-.006 7.015z"/><path id="I" d="M58.414 82.735c-.001.37-.258.512-.57.317l-15.286-9.466c-.314-.195-.57-.656-.57-1.025l.01-7.014c.001-.37.258-.512.57-.318l15.285 9.467a1.34 1.34 0 0 1 .57 1.024l-.008 7.015z"/><path id="J" d="M58.402 93.357c-.001.37-.258.512-.57.317L42.548 84.2c-.313-.195-.57-.656-.57-1.025l.004-7.018c.001-.37.258-.512.57-.318l15.288 9.47a1.34 1.34 0 0 1 .57 1.024l-.01 7.014z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/storage/Datacenter_Server_Rack_ToR.svg b/src/main/webapp/img/lib/allied_telesis/storage/Datacenter_Server_Rack_ToR.svg index 281dd0fc6e563b905b8542ad078e89b5c1ef7033..416e513e1dee83895359931c9509a5297a24b367 100644 --- a/src/main/webapp/img/lib/allied_telesis/storage/Datacenter_Server_Rack_ToR.svg +++ b/src/main/webapp/img/lib/allied_telesis/storage/Datacenter_Server_Rack_ToR.svg @@ -1,163 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 146.697 297.571" style="enable-background:new 0 0 146.697 297.571;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#E7EBF0;} - .st1{fill:none;stroke:#B8C6D3;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;} - .st2{fill:none;stroke:#626366;stroke-width:2.7;stroke-linecap:round;stroke-linejoin:round;} - .st3{fill:#416895;} - .st4{fill:#7D91B4;} - .st5{fill:#607BA4;} - .st6{fill:none;stroke:#DFE0DF;stroke-width:0.675;stroke-linecap:round;stroke-linejoin:round;} - .st7{fill:#FEFEFE;} - .st8{fill:#898B8E;} - .st9{fill:#BBBDBF;} - .st10{fill:#B3B5B7;} -</style> -<title>icon-datacenter-rack2</title> -<desc>Created with Sketch.</desc> -<path id="Fill-1" class="st0" d="M1.005,33.92c0.003-1.264,0.062-1.974,0.316-2.658c0.254-0.686,1.677-1.444,1.677-1.444L57.603,1 - l85.06,49.035c0,0,2.236,1.006,2.682,2.624c0.506,1.836,0.317,5.508,0.317,5.508l-0.128,202.769c0,0,0.168,4.418-0.914,5.687 - c-0.592,0.695-3.136,2.226-3.136,2.226l-52.302,26.795c0,0-3.703,2.271-7.448-0.295c-3.45-2.366-69.125-39.377-69.125-39.377 - S0.816,252.2,1.005,232.766C1.172,215.682,0.965,53.578,1.005,33.92"/> -<path id="Stroke-3" class="st1" d="M1.005,33.92c0.003-1.264,0.062-1.974,0.316-2.658c0.254-0.686,1.677-1.444,1.677-1.444L57.603,1 - l85.06,49.035c0,0,2.236,1.006,2.682,2.624c0.506,1.836,0.317,5.508,0.317,5.508l-0.128,202.769c0,0,0.168,4.418-0.914,5.687 - c-0.592,0.695-3.136,2.226-3.136,2.226l-52.302,26.795c0,0-3.703,2.271-7.448-0.295c-3.45-2.366-69.125-39.377-69.125-39.377 - S0.816,252.2,1.005,232.766C1.172,215.682,0.965,53.578,1.005,33.92z"/> -<polygon id="Stroke-5" class="st2" points="90.147,270.13 128.2,249.932 128.207,260.808 90.155,281.005 "/> -<polygon id="Stroke-7" class="st2" points="19.605,227.743 57.657,207.545 128.2,249.931 90.147,270.13 "/> -<polygon id="Stroke-9" class="st2" points="90.147,270.13 90.155,281.005 19.612,238.619 19.605,227.743 "/> -<polygon id="Fill-11" class="st3" points="90.147,270.13 128.2,249.934 128.207,260.809 90.155,281.007 "/> -<polygon id="Fill-13" class="st4" points="19.605,227.744 57.657,207.546 128.2,249.933 90.147,270.13 "/> -<polygon id="Fill-15" class="st5" points="90.147,270.13 90.155,281.007 19.612,238.619 19.605,227.744 "/> -<polyline id="Stroke-17" class="st6" points="19.946,227.75 90.134,269.923 90.134,280.716 "/> -<polygon id="Fill-19" class="st7" points="28.178,241.584 22.739,238.315 22.739,236.748 28.178,240.016 "/> -<polygon id="Fill-21" class="st7" points="67.512,266.064 55.392,258.781 55.392,255.923 67.512,263.207 "/> -<polygon id="Fill-23" class="st7" points="53.726,257.55 41.605,250.268 41.605,247.412 53.726,254.694 "/> -<polygon id="Fill-25" class="st7" points="84.621,276.083 82.646,274.897 82.646,272.593 84.621,273.778 "/> -<polygon id="Stroke-27" class="st2" points="89.876,254.039 127.928,233.84 127.935,244.716 89.883,264.914 "/> -<polygon id="Stroke-29" class="st2" points="19.333,211.651 57.384,191.453 127.928,233.839 89.876,254.039 "/> -<polygon id="Stroke-31" class="st2" points="89.876,254.039 89.883,264.914 19.34,222.527 19.333,211.651 "/> -<polygon id="Fill-33" class="st3" points="89.876,254.039 127.928,233.842 127.935,244.717 89.883,264.915 "/> -<polygon id="Fill-35" class="st4" points="19.333,211.652 57.384,191.454 127.928,233.841 89.876,254.039 "/> -<polygon id="Fill-37" class="st5" points="89.876,254.039 89.883,264.915 19.34,222.527 19.333,211.652 "/> -<polyline id="Stroke-39" class="st6" points="19.674,211.658 89.862,253.831 89.862,264.625 "/> -<polygon id="Fill-41" class="st7" points="27.907,225.492 22.469,222.223 22.469,220.656 27.907,223.924 "/> -<polygon id="Fill-43" class="st7" points="67.241,249.972 55.121,242.69 55.121,239.832 67.241,247.116 "/> -<polygon id="Fill-45" class="st7" points="53.454,241.458 41.334,234.176 41.334,231.32 53.454,238.602 "/> -<polygon id="Fill-47" class="st7" points="84.35,259.991 82.375,258.806 82.375,256.501 84.35,257.687 "/> -<polygon id="Stroke-49" class="st2" points="89.783,236.313 127.835,216.113 127.842,226.99 89.789,247.188 "/> -<polygon id="Stroke-51" class="st2" points="19.239,193.925 57.292,173.727 127.835,216.113 89.783,236.313 "/> -<polygon id="Stroke-53" class="st2" points="89.783,236.313 89.789,247.188 19.247,204.801 19.239,193.924 "/> -<polygon id="Fill-55" class="st3" points="89.783,236.313 127.835,216.115 127.842,226.99 89.789,247.189 "/> -<polygon id="Fill-57" class="st4" points="19.239,193.926 57.292,173.728 127.835,216.115 89.783,236.313 "/> -<polygon id="Fill-59" class="st5" points="89.783,236.313 89.789,247.189 19.247,204.801 19.239,193.926 "/> -<polyline id="Stroke-61" class="st6" points="19.58,193.932 89.768,236.105 89.768,246.899 "/> -<polygon id="Fill-63" class="st7" points="27.813,207.766 22.375,204.497 22.375,202.93 27.813,206.198 "/> -<polygon id="Fill-65" class="st7" points="67.147,232.245 55.026,224.963 55.026,222.105 67.147,229.389 "/> -<polygon id="Fill-67" class="st7" points="53.361,223.732 41.241,216.449 41.241,213.594 53.361,220.876 "/> -<polygon id="Fill-69" class="st7" points="84.255,242.265 82.281,241.08 82.281,238.775 84.255,239.961 "/> -<polygon id="Stroke-71" class="st2" points="90.055,218.949 128.108,198.75 128.114,209.626 90.063,229.824 "/> -<polygon id="Stroke-73" class="st2" points="19.513,176.562 57.565,156.364 128.108,198.75 90.055,218.95 "/> -<polygon id="Stroke-75" class="st2" points="90.055,218.949 90.063,229.824 19.52,187.437 19.513,176.561 "/> -<polygon id="Fill-77" class="st3" points="90.055,218.949 128.108,198.752 128.114,209.627 90.063,229.825 "/> -<polygon id="Fill-79" class="st4" points="19.513,176.563 57.565,156.365 128.108,198.751 90.055,218.949 "/> -<polygon id="Fill-81" class="st5" points="90.055,218.949 90.063,229.825 19.52,187.437 19.513,176.562 "/> -<polyline id="Stroke-83" class="st6" points="19.854,176.568 90.042,218.741 90.042,229.535 "/> -<polygon id="Fill-85" class="st7" points="28.086,190.402 22.647,187.133 22.647,185.566 28.086,188.834 "/> -<polygon id="Fill-87" class="st7" points="67.42,214.882 55.3,207.6 55.3,204.742 67.42,212.026 "/> -<polygon id="Fill-89" class="st7" points="53.634,206.368 41.514,199.086 41.514,196.23 53.634,203.512 "/> -<polygon id="Fill-91" class="st7" points="84.53,224.901 82.555,223.716 82.555,221.411 84.53,222.597 "/> -<polygon id="Stroke-93" class="st2" points="90.149,202.197 128.201,181.998 128.208,192.875 90.156,213.072 "/> -<polygon id="Stroke-95" class="st2" points="19.605,159.811 57.658,139.612 128.201,181.998 90.149,202.198 "/> -<polygon id="Stroke-97" class="st2" points="90.149,202.197 90.156,213.072 19.613,170.685 19.605,159.81 "/> -<polygon id="Fill-99" class="st3" points="90.149,202.197 128.201,182 128.208,192.875 90.156,213.074 "/> -<polygon id="Fill-101" class="st4" points="19.605,159.811 57.658,139.614 128.201,182 90.149,202.198 "/> -<polygon id="Fill-103" class="st5" points="90.149,202.197 90.156,213.074 19.613,170.685 19.605,159.81 "/> -<polyline id="Stroke-105" class="st6" points="19.947,159.816 90.135,201.99 90.135,212.783 "/> -<polygon id="Fill-107" class="st7" points="28.179,173.65 22.741,170.382 22.741,168.814 28.179,172.082 "/> -<polygon id="Fill-109" class="st7" points="67.513,198.131 55.393,190.848 55.393,187.99 67.513,195.274 "/> -<polygon id="Fill-111" class="st7" points="53.726,189.617 41.607,182.334 41.607,179.478 53.726,186.76 "/> -<polygon id="Fill-113" class="st7" points="84.622,208.15 82.646,206.964 82.646,204.66 84.622,205.845 "/> -<polygon id="Stroke-115" class="st2" points="89.877,186.105 127.929,165.906 127.936,176.783 89.884,196.98 "/> -<polygon id="Stroke-117" class="st2" points="19.334,143.719 57.386,123.52 127.929,165.906 89.877,186.106 "/> -<polygon id="Stroke-119" class="st2" points="89.877,186.105 89.884,196.98 19.341,154.594 19.334,143.719 "/> -<polygon id="Fill-121" class="st3" points="89.877,186.105 127.929,165.908 127.936,176.783 89.884,196.982 "/> -<polygon id="Fill-123" class="st4" points="19.334,143.719 57.386,123.522 127.929,165.908 89.877,186.106 "/> -<polygon id="Fill-125" class="st5" points="89.877,186.105 89.884,196.982 19.341,154.594 19.334,143.719 "/> -<polyline id="Stroke-127" class="st6" points="19.675,143.725 89.863,185.899 89.863,196.692 "/> -<polygon id="Fill-129" class="st7" points="27.908,157.559 22.47,154.291 22.47,152.723 27.908,155.991 "/> -<polygon id="Fill-131" class="st7" points="67.242,182.039 55.122,174.756 55.122,171.898 67.242,179.182 "/> -<polygon id="Fill-133" class="st7" points="53.455,173.525 41.334,166.242 41.334,163.386 53.455,170.668 "/> -<polygon id="Fill-135" class="st7" points="84.351,192.059 82.376,190.873 82.376,188.569 84.351,189.754 "/> -<polygon id="Stroke-137" class="st2" points="89.784,168.379 127.835,148.18 127.843,159.057 89.791,179.254 "/> -<polygon id="Stroke-139" class="st2" points="19.241,125.992 57.293,105.793 127.835,148.179 89.784,168.379 "/> -<polygon id="Stroke-141" class="st2" points="89.784,168.379 89.791,179.254 19.248,136.867 19.241,125.992 "/> -<polygon id="Fill-143" class="st3" points="89.784,168.379 127.835,148.182 127.843,159.057 89.791,179.256 "/> -<polygon id="Fill-145" class="st4" points="19.241,125.992 57.293,105.795 127.835,148.181 89.784,168.379 "/> -<polygon id="Fill-147" class="st5" points="89.784,168.379 89.791,179.256 19.248,136.867 19.241,125.992 "/> -<polyline id="Stroke-149" class="st6" points="19.581,125.998 89.769,168.172 89.769,178.965 "/> -<polygon id="Fill-151" class="st7" points="27.814,139.832 22.376,136.564 22.376,134.996 27.814,138.264 "/> -<polygon id="Fill-153" class="st7" points="67.147,164.313 55.028,157.029 55.028,154.171 67.147,161.456 "/> -<polygon id="Fill-155" class="st7" points="53.362,155.799 41.242,148.516 41.242,145.66 53.362,152.942 "/> -<polygon id="Fill-157" class="st7" points="84.257,174.332 82.282,173.146 82.282,170.842 84.257,172.027 "/> -<polygon id="Stroke-159" class="st2" points="90.057,151.016 128.109,130.817 128.116,141.694 90.064,161.891 "/> -<polygon id="Stroke-161" class="st2" points="19.514,108.629 57.566,88.43 128.109,130.816 90.057,151.016 "/> -<polygon id="Stroke-163" class="st2" points="90.057,151.016 90.064,161.891 19.521,119.505 19.514,108.629 "/> -<polygon id="Fill-165" class="st3" points="90.057,151.016 128.109,130.819 128.116,141.694 90.064,161.893 "/> -<polygon id="Fill-167" class="st4" points="19.514,108.629 57.566,88.432 128.109,130.818 90.057,151.016 "/> -<polygon id="Fill-169" class="st5" points="90.057,151.016 90.064,161.893 19.521,119.505 19.514,108.629 "/> -<polyline id="Stroke-171" class="st6" points="19.855,108.635 90.043,150.809 90.043,161.602 "/> -<polygon id="Fill-173" class="st7" points="28.087,122.469 22.649,119.201 22.649,117.633 28.087,120.901 "/> -<polygon id="Fill-175" class="st7" points="67.421,146.949 55.301,139.666 55.301,136.809 67.421,144.092 "/> -<polygon id="Fill-177" class="st7" points="53.634,138.436 41.515,131.154 41.515,128.297 53.634,135.579 "/> -<polygon id="Fill-179" class="st7" points="84.531,156.969 82.555,155.783 82.555,153.479 84.531,154.664 "/> -<polygon id="Stroke-181" class="st2" points="90.123,133.909 128.175,113.71 128.182,124.586 90.13,144.784 "/> -<polygon id="Stroke-183" class="st2" points="19.58,91.521 57.632,71.324 128.175,113.71 90.123,133.91 "/> -<polygon id="Stroke-185" class="st2" points="90.123,133.909 90.13,144.784 19.587,102.397 19.58,91.521 "/> -<polygon id="Fill-187" class="st3" points="90.123,133.909 128.175,113.712 128.182,124.587 90.13,144.785 "/> -<polygon id="Fill-189" class="st4" points="19.58,91.522 57.632,71.325 128.175,113.712 90.123,133.91 "/> -<polygon id="Fill-191" class="st5" points="90.123,133.909 90.13,144.785 19.587,102.397 19.58,91.522 "/> -<polyline id="Stroke-193" class="st6" points="19.921,91.527 90.109,133.701 90.109,144.495 "/> -<polygon id="Fill-195" class="st7" points="28.154,105.362 22.716,102.093 22.716,100.526 28.154,103.794 "/> -<polygon id="Fill-197" class="st7" points="67.488,129.842 55.368,122.56 55.368,119.702 67.488,126.986 "/> -<polygon id="Fill-199" class="st7" points="53.702,121.328 41.582,114.046 41.582,111.19 53.702,118.472 "/> -<polygon id="Fill-201" class="st7" points="84.597,139.861 82.622,138.676 82.622,136.371 84.597,137.557 "/> -<polygon id="Stroke-203" class="st2" points="89.851,117.817 127.904,97.618 127.91,108.494 89.859,128.692 "/> -<polygon id="Stroke-205" class="st2" points="19.309,75.43 57.361,55.232 127.904,97.618 89.851,117.818 "/> -<polygon id="Stroke-207" class="st2" points="89.851,117.817 89.859,128.692 19.316,86.306 19.309,75.429 "/> -<polygon id="Fill-209" class="st3" points="89.851,117.817 127.904,97.62 127.91,108.495 89.859,128.693 "/> -<polygon id="Fill-211" class="st4" points="19.309,75.431 57.361,55.233 127.904,97.62 89.851,117.818 "/> -<polygon id="Fill-213" class="st5" points="89.851,117.817 89.859,128.693 19.316,86.306 19.309,75.43 "/> -<polyline id="Stroke-215" class="st6" points="19.65,75.436 89.838,117.61 89.838,128.404 "/> -<polygon id="Fill-217" class="st7" points="27.882,89.27 22.443,86.002 22.443,84.434 27.882,87.703 "/> -<polygon id="Fill-219" class="st7" points="67.216,113.75 55.096,106.468 55.096,103.61 67.216,110.894 "/> -<polygon id="Fill-221" class="st7" points="53.43,105.236 41.31,97.954 41.31,95.098 53.43,102.38 "/> -<polygon id="Fill-223" class="st7" points="84.326,123.77 82.351,122.585 82.351,120.28 84.326,121.466 "/> -<polygon id="Stroke-225" class="st2" points="89.758,100.091 127.81,79.892 127.817,90.768 89.765,110.966 "/> -<polygon id="Stroke-227" class="st2" points="19.215,57.703 57.267,37.505 127.81,79.891 89.758,100.091 "/> -<polygon id="Stroke-229" class="st2" points="89.758,100.091 89.765,110.966 19.222,68.579 19.215,57.703 "/> -<polygon id="Fill-231" class="st8" points="89.758,100.091 127.81,79.894 127.817,90.769 89.765,110.967 "/> -<polygon id="Fill-233" class="st9" points="19.215,57.704 57.267,37.506 127.81,79.893 89.758,100.091 "/> -<polygon id="Fill-235" class="st10" points="89.758,100.091 89.765,110.967 19.222,68.579 19.215,57.704 "/> -<polyline id="Stroke-237" class="st6" points="19.555,57.709 89.744,99.883 89.744,110.677 "/> -<polygon id="Fill-239" class="st7" points="27.788,71.544 22.35,68.275 22.35,66.708 27.788,69.976 "/> -<polygon id="Fill-241" class="st7" points="67.166,91.706 55.045,84.423 55.045,81.566 67.166,88.851 "/> -<polygon id="Fill-243" class="st7" points="67.122,96.023 55.002,88.742 55.002,85.883 67.122,93.168 "/> -<polyline id="Fill-245" class="st7" points="41.258,75.909 41.258,73.052 53.378,80.334 53.378,83.192 "/> -<polygon id="Fill-247" class="st7" points="53.336,87.51 41.216,80.228 41.216,77.372 53.336,84.654 "/> -<polygon id="Fill-249" class="st7" points="84.232,106.043 82.257,104.858 82.257,102.553 84.232,103.739 "/> -<polygon id="Stroke-251" class="st2" points="90.032,82.727 128.084,62.528 128.091,73.405 90.039,93.603 "/> -<polygon id="Stroke-253" class="st2" points="19.489,40.34 57.541,20.142 128.084,62.527 90.032,82.727 "/> -<polygon id="Stroke-255" class="st2" points="90.032,82.727 90.039,93.603 19.496,51.217 19.489,40.34 "/> -<polygon id="Fill-257" class="st8" points="90.032,82.727 128.084,62.53 128.091,73.406 90.039,93.604 "/> -<polygon id="Fill-259" class="st9" points="19.489,40.341 57.541,20.143 128.084,62.529 90.032,82.727 "/> -<polygon id="Fill-261" class="st10" points="90.032,82.727 90.039,93.604 19.496,51.217 19.489,40.341 "/> -<polyline id="Stroke-263" class="st6" points="19.829,40.346 90.017,82.52 90.017,93.314 "/> -<polygon id="Fill-265" class="st7" points="28.062,54.18 22.624,50.912 22.624,49.344 28.062,52.613 "/> -<polygon id="Fill-267" class="st7" points="67.44,74.344 55.318,67.06 55.318,64.203 67.44,71.487 "/> -<polygon id="Fill-269" class="st7" points="67.396,78.66 55.276,71.377 55.276,68.521 67.396,75.804 "/> -<polygon id="Fill-271" class="st7" points="53.651,65.829 41.532,58.547 41.532,55.688 53.651,62.971 "/> -<polygon id="Fill-273" class="st7" points="53.61,70.146 41.489,62.866 41.489,60.007 53.61,67.29 "/> -<polygon id="Fill-275" class="st7" points="84.505,88.68 82.53,87.495 82.53,85.19 84.505,86.375 "/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 146.697 297.571"><style><![CDATA[.L{fill:none}.M{stroke-linejoin:round}.N{stroke:#626366}.O{stroke-width:2.7}.P{stroke:#dfe0df}.Q{stroke-width:.675}.R{stroke-linecap:round}.S{fill:#fefefe}.T{fill:#416895}.U{fill:#7d91b4}.V{fill:#607ba4}]]></style><path d="M1.005 33.92c.003-1.264.062-1.974.316-2.658s1.677-1.444 1.677-1.444L57.603 1l85.06 49.035s2.236 1.006 2.682 2.624c.506 1.836.317 5.508.317 5.508l-.128 202.77s.168 4.418-.914 5.687c-.592.695-3.136 2.226-3.136 2.226l-52.302 26.795s-3.703 2.27-7.448-.295c-3.45-2.366-69.125-39.377-69.125-39.377S.816 252.2 1.005 232.766V33.92" fill="#e7ebf0"/><g class="L M"><path d="M1.005 33.92c.003-1.264.062-1.974.316-2.658s1.677-1.444 1.677-1.444L57.603 1l85.06 49.035s2.236 1.006 2.682 2.624c.506 1.836.317 5.508.317 5.508l-.128 202.77s.168 4.418-.914 5.687c-.592.695-3.136 2.226-3.136 2.226l-52.302 26.795s-3.703 2.27-7.448-.295c-3.45-2.366-69.125-39.377-69.125-39.377S.816 252.2 1.005 232.766V33.92z" stroke="#b8c6d3" stroke-width="2"/><g class="N O"><path d="M90.147 270.13l38.053-20.198.007 10.876-38.052 20.197z"/><path d="M19.605 227.743l38.052-20.198L128.2 249.93l-38.053 20.2z"/><path d="M90.147 270.13l.008 10.875-70.543-42.386-.007-10.876z"/></g></g><path d="M90.147 270.13l38.053-20.196.007 10.875-38.052 20.198z" class="T"/><path d="M19.605 227.744l38.052-20.198 70.543 42.387-38.053 20.197z" class="U"/><path d="M90.147 270.13l.008 10.877-70.543-42.388-.007-10.875z" class="V"/><path d="M19.946 227.75l70.188 42.173v10.793" class="L M P Q R"/><path d="M28.178 241.584l-5.44-3.27v-1.567l5.44 3.268zm39.334 24.48l-12.12-7.283v-2.858l12.12 7.284zm-13.786-8.514l-12.12-7.282v-2.856l12.12 7.282zm30.894 18.533l-1.975-1.186v-2.304l1.975 1.185z" class="S"/><g class="L M N O"><path d="M89.876 254.04l38.052-20.2.007 10.876-38.052 20.198z"/><path d="M19.333 211.65l38.05-20.198 70.544 42.386-38.052 20.2z"/><path d="M89.876 254.04l.007 10.875-70.543-42.387-.007-10.876z"/></g><path d="M89.876 254.04l38.052-20.197.007 10.875-38.052 20.198z" class="T"/><path d="M19.333 211.652l38.05-20.198 70.544 42.387-38.052 20.198z" class="U"/><path d="M89.876 254.04l.007 10.876-70.543-42.388-.007-10.875z" class="V"/><path d="M19.674 211.658l70.188 42.173v10.794" class="L M P Q R"/><path d="M27.907 225.492l-5.438-3.27v-1.567l5.438 3.268zm39.333 24.48L55.12 242.7v-2.858l12.12 7.284zm-13.786-8.514l-12.12-7.282v-2.856l12.12 7.282zM84.35 260l-1.975-1.185V256.5l1.975 1.186z" class="S"/><g class="L M N O"><path d="M89.783 236.313l38.052-20.2.007 10.877-38.053 20.198z"/><path d="M19.24 193.925l38.053-20.198 70.543 42.386-38.052 20.2z"/><path d="M89.783 236.313l.006 10.875L19.247 204.8l-.008-10.877z"/></g><path d="M89.783 236.313l38.052-20.198.007 10.875-38.053 20.2z" class="T"/><path d="M19.24 193.926l38.053-20.198 70.543 42.387-38.052 20.198z" class="U"/><path d="M89.783 236.313l.006 10.876L19.247 204.8l-.008-10.875z" class="V"/><path d="M19.58 193.932l70.188 42.173V246.9" class="L M P Q R"/><path d="M27.813 207.766l-5.438-3.27v-1.567l5.438 3.268zm39.334 24.48l-12.12-7.282v-2.858l12.12 7.284zm-13.787-8.513l-12.12-7.283v-2.855l12.12 7.282zm30.895 18.533l-1.974-1.185v-2.305l1.974 1.186z" class="S"/><g class="L M N O"><path d="M90.055 218.95l38.053-20.2.006 10.876-38.05 20.198z"/><path d="M19.513 176.562l38.052-20.198 70.543 42.386-38.053 20.2z"/><path d="M90.055 218.95l.008 10.875-70.543-42.387-.007-10.876z"/></g><path d="M90.055 218.95l38.053-20.197.006 10.875-38.05 20.198z" class="T"/><path d="M19.513 176.563l38.052-20.198 70.543 42.386-38.053 20.198z" class="U"/><path d="M90.055 218.95l.008 10.876-70.543-42.388-.007-10.875z" class="V"/><path d="M19.854 176.568l70.188 42.173v10.794" class="L M P Q R"/><path d="M28.086 190.402l-5.44-3.27v-1.567l5.44 3.268zm39.334 24.48L55.3 207.6v-2.858l12.12 7.284zm-13.786-8.514l-12.12-7.282v-2.856l12.12 7.282zM84.53 224.9l-1.975-1.185V221.4l1.975 1.186z" class="S"/><g class="L M N O"><path d="M90.15 202.197l38.052-20.2.007 10.877-38.052 20.197z"/><path d="M19.605 159.81l38.053-20.2 70.543 42.386-38.052 20.2z"/><path d="M90.15 202.197l.007 10.875-70.543-42.387-.008-10.875z"/></g><path d="M90.15 202.197L128.2 182l.007 10.875-38.052 20.2z" class="T"/><path d="M19.605 159.81l38.053-20.197L128.2 182 90.15 202.198z" class="U"/><path d="M90.15 202.197l.007 10.877-70.543-42.39-.008-10.875z" class="V"/><path d="M19.947 159.816L90.135 202v10.793" class="L M P Q R"/><path d="M28.18 173.65l-5.438-3.268v-1.568l5.438 3.268zm39.333 24.48l-12.12-7.283V188l12.12 7.284zm-13.787-8.513l-12.12-7.283v-2.856l12.12 7.282zm30.896 18.533l-1.976-1.186v-2.304l1.976 1.185z" class="S"/><g class="L M N O"><path d="M89.877 186.105l38.052-20.2.007 10.877-38.052 20.197z"/><path d="M19.334 143.72l38.052-20.2 70.543 42.386-38.052 20.2z"/><path d="M89.877 186.105l.007 10.875-70.543-42.386-.007-10.875z"/></g><path d="M89.877 186.105l38.052-20.197.007 10.875-38.052 20.2z" class="T"/><path d="M19.334 143.72l38.052-20.197 70.543 42.386-38.052 20.198z" class="U"/><path d="M89.877 186.105l.007 10.877-70.543-42.388-.007-10.875z" class="V"/><path d="M19.675 143.725L89.863 185.9v10.793" class="L M P Q R"/><path d="M27.908 157.56l-5.438-3.268v-1.568l5.438 3.268zm39.334 24.48l-12.12-7.283V171.9l12.12 7.284zm-13.787-8.515l-12.12-7.283v-2.856l12.12 7.282zM84.35 192.06l-1.975-1.186v-2.304l1.975 1.185z" class="S"/><g class="L M N O"><path d="M89.784 168.38l38.05-20.2.008 10.877-38.052 20.197z"/><path d="M19.24 125.992l38.052-20.2 70.542 42.386-38.05 20.2z"/><path d="M89.784 168.38l.007 10.875-70.543-42.387-.007-10.875z"/></g><path d="M89.784 168.38l38.05-20.197.008 10.875-38.052 20.2z" class="T"/><path d="M19.24 125.992l38.052-20.197 70.542 42.386-38.05 20.198z" class="U"/><path d="M89.784 168.38l.007 10.877-70.543-42.39-.007-10.875z" class="V"/><path d="M19.58 125.998l70.188 42.174v10.793" class="L M P Q R"/><path d="M27.814 139.832l-5.438-3.268v-1.568l5.438 3.268zm39.333 24.48l-12.12-7.284v-2.858l12.12 7.285zM53.362 155.8l-12.12-7.283v-2.856l12.12 7.282zm30.895 18.532l-1.975-1.186v-2.304l1.975 1.185z" class="S"/><g class="L M N O"><path d="M90.057 151.016l38.052-20.2.007 10.877-38.052 20.197z"/><path d="M19.514 108.63l38.052-20.2 70.543 42.386-38.052 20.2z"/><path d="M90.057 151.016l.007 10.875-70.543-42.386-.007-10.876z"/></g><path d="M90.057 151.016l38.052-20.197.007 10.875-38.052 20.2z" class="T"/><path d="M19.514 108.63l38.052-20.197 70.543 42.386-38.052 20.198z" class="U"/><path d="M90.057 151.016l.007 10.877-70.543-42.388-.007-10.876z" class="V"/><path d="M19.855 108.635l70.188 42.174v10.793" class="L M P Q R"/><path d="M28.087 122.47l-5.437-3.27v-1.568l5.438 3.268zm39.333 24.48l-12.12-7.283V136.8l12.12 7.283zm-13.786-8.514l-12.12-7.282v-2.857l12.12 7.282zM84.53 156.97l-1.976-1.186v-2.304l1.976 1.185z" class="S"/><g class="L M N O"><path d="M90.123 133.91l38.052-20.2.007 10.876-38.052 20.198z"/><path d="M19.58 91.52l38.052-20.197 70.543 42.386-38.052 20.2z"/><path d="M90.123 133.91l.007 10.875-70.543-42.387-.007-10.876z"/></g><path d="M90.123 133.91l38.052-20.197.007 10.875-38.052 20.198z" class="T"/><path d="M19.58 91.522l38.052-20.197 70.543 42.387L90.123 133.9z" class="U"/><path d="M90.123 133.91l.007 10.876-70.543-42.388-.007-10.875z" class="V"/><path d="M19.92 91.527L90.11 133.7v10.794" class="L M P Q R"/><path d="M28.154 105.362l-5.438-3.27v-1.567l5.438 3.268zm39.334 24.48l-12.12-7.282v-2.858l12.12 7.284zm-13.786-8.514l-12.12-7.282V111.2l12.12 7.282zm30.895 18.532l-1.975-1.185v-2.305l1.975 1.186z" class="S"/><g class="L M N O"><path d="M89.85 117.817l38.053-20.2.006 10.876-38.05 20.198z"/><path d="M19.31 75.43L57.36 55.232l70.543 42.386-38.053 20.2z"/><path d="M89.85 117.817l.008 10.875-70.543-42.386-.007-10.877z"/></g><path d="M89.85 117.817l38.053-20.197.006 10.875-38.05 20.198z" class="T"/><path d="M19.31 75.43L57.36 55.233l70.543 42.387-38.053 20.198z" class="U"/><path d="M89.85 117.817l.008 10.876-70.543-42.387-.007-10.876z" class="V"/><path d="M19.65 75.436L89.838 117.6v10.794" class="L M P Q R"/><path d="M27.882 89.27l-5.44-3.268v-1.568l5.44 3.27zm39.334 24.48l-12.12-7.282V103.6l12.12 7.284zm-13.786-8.514L41.3 97.954v-2.856l12.12 7.282zm30.896 18.534l-1.975-1.185v-2.305l1.975 1.186z" class="S"/><g class="L M N O"><path d="M89.758 100.09l38.052-20.2.007 10.876-38.052 20.198z"/><path d="M19.215 57.703l38.052-20.198L127.8 79.89l-38.052 20.2z"/><path d="M89.758 100.09l.007 10.875L19.222 68.58l-.007-10.876z"/></g><path d="M89.758 100.09L127.8 79.894l.007 10.875-38.052 20.198z" fill="#898b8e"/><path d="M19.215 57.704l38.052-20.198L127.8 79.893 89.758 100.09z" fill="#bbbdbf"/><path d="M89.758 100.09l.007 10.876L19.222 68.58l-.007-10.875z" fill="#b3b5b7"/><path d="M19.555 57.71l70.19 42.174v10.794" class="L M P Q R"/><path d="M27.788 71.544l-5.438-3.27v-1.567l5.438 3.268zm39.378 20.162l-12.12-7.283v-2.857l12.12 7.285zm-.044 4.317l-12.12-7.28v-2.86l12.12 7.285zM41.258 75.9v-2.857l12.12 7.282v2.858m-.042 4.307l-12.12-7.282v-2.856l12.12 7.282zm30.896 18.543l-1.975-1.185v-2.305l1.975 1.186z" class="S"/><g class="L M N O"><path d="M90.032 82.727l38.052-20.2.007 10.877L90.04 93.603z"/><path d="M19.49 40.34L57.54 20.142l70.543 42.385-38.052 20.2z"/><path d="M90.032 82.727l.007 10.876-70.543-42.386-.007-10.877z"/></g><path d="M90.032 82.727l38.052-20.197.007 10.876L90.04 93.604z" fill="#898b8e"/><path d="M19.49 40.34L57.54 20.143l70.543 42.386-38.052 20.198z" fill="#bbbdbf"/><path d="M90.032 82.727l.007 10.877-70.543-42.387-.007-10.876z" fill="#b3b5b7"/><path d="M19.83 40.346L90.017 82.52v10.794" class="L M P Q R"/><path d="M28.062 54.18l-5.438-3.268v-1.568l5.438 3.27zM67.44 74.344L55.318 67.06v-2.857l12.122 7.284zm-.044 4.316l-12.12-7.283V68.52l12.12 7.283zM53.65 65.83l-12.12-7.282v-2.86l12.12 7.283zm-.05 4.316l-12.12-7.28v-2.86L53.6 67.3zM84.505 88.68l-1.975-1.185V85.2l1.975 1.185z" class="S"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/storage/Datacenter_Server_Storage_Unit_Large.svg b/src/main/webapp/img/lib/allied_telesis/storage/Datacenter_Server_Storage_Unit_Large.svg index 2da38785b8c146f45d5f7cb1aa5218a747b40d75..797274988815e51769ca56206c941f7f63ce69a9 100644 --- a/src/main/webapp/img/lib/allied_telesis/storage/Datacenter_Server_Storage_Unit_Large.svg +++ b/src/main/webapp/img/lib/allied_telesis/storage/Datacenter_Server_Storage_Unit_Large.svg @@ -1,144 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 128.082 131.636" style="enable-background:new 0 0 128.082 131.636;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#626366;stroke-width:3.106;stroke-linejoin:round;} - .st1{fill:#416895;} - .st2{fill:#7D91B4;} - .st3{fill:#607BA4;} - .st4{fill:none;stroke:#DFE0DF;stroke-width:1.027;stroke-linecap:round;stroke-linejoin:round;} - .st5{fill:none;stroke:#DFE0DF;stroke-width:1.026;stroke-linecap:round;stroke-linejoin:round;} - .st6{fill:#DFE0DF;} - .st7{fill:none;stroke:#FEFEFE;stroke-width:0.434;stroke-linejoin:round;} -</style> -<title>icon-blueSwitch-large-generic</title> -<desc>Created with Sketch.</desc> -<polygon id="Stroke-1" class="st0" points="82.71,73.552 126.486,50.32 126.529,106.845 82.748,130.083 "/> -<polygon id="Stroke-3" class="st0" points="1.553,24.789 45.33,1.553 126.487,50.319 82.71,73.552 "/> -<polygon id="Stroke-5" class="st0" points="82.71,73.552 82.748,130.083 1.59,81.32 1.553,24.789 "/> -<polygon id="Fill-8" class="st1" points="82.71,73.552 126.486,50.32 126.529,106.845 82.748,130.083 "/> -<polygon id="Fill-9" class="st2" points="1.553,24.789 45.33,1.553 126.487,50.319 82.71,73.552 "/> -<polygon id="Fill-10" class="st3" points="82.71,73.552 82.748,130.083 1.59,81.32 1.553,24.789 "/> -<path id="Stroke-11" class="st4" d="M1.573,25.199l81.156,49.172"/> -<path id="Stroke-13" class="st5" d="M82.729,74.457v55.215"/> -<path id="Fill-15" class="st6" d="M21.977,48.092c0,0.367-0.256,0.509-0.568,0.315l-15.197-9.41 - c-0.312-0.193-0.567-0.651-0.566-1.018l0.01-6.973c0.001-0.367,0.256-0.509,0.568-0.315l15.192,9.408 - c0.313,0.193,0.567,0.651,0.567,1.018L21.977,48.092z"/> -<path id="Stroke-17" class="st7" d="M21.977,48.092c0,0.367-0.256,0.509-0.568,0.315l-15.197-9.41 - c-0.312-0.193-0.567-0.651-0.566-1.018l0.01-6.973c0.001-0.367,0.256-0.509,0.568-0.315l15.192,9.408 - c0.313,0.193,0.567,0.651,0.567,1.018L21.977,48.092z"/> -<path id="Fill-19" class="st6" d="M21.966,58.653c-0.001,0.367-0.256,0.509-0.568,0.315L6.204,49.555 - c-0.312-0.193-0.567-0.651-0.566-1.018l0.006-6.973c0.001-0.367,0.256-0.509,0.568-0.315l15.195,9.411 - c0.313,0.193,0.568,0.651,0.567,1.018L21.966,58.653z"/> -<path id="Stroke-21" class="st7" d="M21.966,58.653c-0.001,0.367-0.256,0.509-0.568,0.315L6.204,49.555 - c-0.312-0.193-0.567-0.651-0.566-1.018l0.006-6.973c0.001-0.367,0.256-0.509,0.568-0.315l15.195,9.411 - c0.313,0.193,0.568,0.651,0.567,1.018L21.966,58.653z"/> -<path id="Fill-23" class="st6" d="M21.956,69.215c-0.001,0.367-0.256,0.509-0.568,0.315L6.193,60.116 - c-0.312-0.193-0.566-0.651-0.566-1.018l0.006-6.976c0-0.367,0.256-0.509,0.568-0.315l15.194,9.413 - c0.313,0.193,0.568,0.651,0.567,1.018L21.956,69.215z"/> -<path id="Stroke-25" class="st7" d="M21.956,69.215c-0.001,0.367-0.256,0.509-0.568,0.315L6.193,60.116 - c-0.312-0.193-0.566-0.651-0.566-1.018l0.006-6.976c0-0.367,0.256-0.509,0.568-0.315l15.194,9.413 - c0.313,0.193,0.568,0.651,0.567,1.018L21.956,69.215z"/> -<path id="Fill-27" class="st6" d="M21.945,79.772c-0.001,0.367-0.256,0.509-0.568,0.315L6.181,70.676 - c-0.312-0.193-0.567-0.651-0.566-1.018l0.01-6.975c0.001-0.367,0.256-0.509,0.568-0.315l15.193,9.412 - c0.313,0.193,0.568,0.651,0.567,1.018L21.945,79.772z"/> -<path id="Stroke-29" class="st7" d="M21.945,79.772c-0.001,0.367-0.256,0.509-0.568,0.315L6.181,70.676 - c-0.312-0.193-0.567-0.651-0.566-1.018l0.01-6.975c0.001-0.367,0.256-0.509,0.568-0.315l15.193,9.412 - c0.313,0.193,0.568,0.651,0.567,1.018L21.945,79.772z"/> -<path id="Fill-31" class="st6" d="M21.934,90.332c0,0.367-0.255,0.509-0.567,0.315L6.173,81.235 - c-0.312-0.193-0.567-0.651-0.566-1.018l0.006-6.975c0.001-0.367,0.256-0.509,0.568-0.315l15.192,9.412 - c0.313,0.193,0.568,0.651,0.567,1.018L21.934,90.332z"/> -<path id="Stroke-33" class="st7" d="M21.934,90.332c0,0.367-0.255,0.509-0.567,0.315L6.173,81.235 - c-0.312-0.193-0.567-0.651-0.566-1.018l0.006-6.975c0.001-0.367,0.256-0.509,0.568-0.315l15.192,9.412 - c0.313,0.193,0.568,0.651,0.567,1.018L21.934,90.332z"/> -<path id="Fill-35" class="st6" d="M40.025,59.27c-0.001,0.367-0.256,0.509-0.568,0.315l-15.194-9.409 - c-0.312-0.193-0.567-0.651-0.567-1.018l0.006-6.975c0.001-0.367,0.256-0.509,0.568-0.315l15.197,9.412 - c0.313,0.193,0.567,0.651,0.567,1.018L40.025,59.27z"/> -<path id="Stroke-37" class="st7" d="M40.025,59.27c-0.001,0.367-0.256,0.509-0.568,0.315l-15.194-9.409 - c-0.312-0.193-0.567-0.651-0.567-1.018l0.006-6.975c0.001-0.367,0.256-0.509,0.568-0.315l15.197,9.412 - c0.313,0.193,0.567,0.651,0.567,1.018L40.025,59.27z"/> -<path id="Fill-39" class="st6" d="M40.016,69.83c0,0.367-0.255,0.509-0.567,0.315l-15.196-9.41 - c-0.312-0.193-0.567-0.651-0.566-1.018l0.006-6.974c0.001-0.367,0.256-0.509,0.568-0.315l15.193,9.409 - c0.313,0.193,0.568,0.651,0.568,1.018L40.016,69.83z"/> -<path id="Stroke-41" class="st7" d="M40.016,69.83c0,0.367-0.255,0.509-0.567,0.315l-15.196-9.41 - c-0.312-0.193-0.567-0.651-0.566-1.018l0.006-6.974c0.001-0.367,0.256-0.509,0.568-0.315l15.193,9.409 - c0.313,0.193,0.568,0.651,0.568,1.018L40.016,69.83z"/> -<path id="Fill-43" class="st6" d="M40.005,80.392c-0.001,0.367-0.256,0.509-0.568,0.315l-15.198-9.413 - c-0.312-0.193-0.567-0.651-0.566-1.018l0.009-6.975c0-0.367,0.256-0.509,0.568-0.315l15.195,9.411 - c0.313,0.193,0.568,0.651,0.567,1.018L40.005,80.392z"/> -<path id="Stroke-45" class="st7" d="M40.005,80.392c-0.001,0.367-0.256,0.509-0.568,0.315l-15.198-9.413 - c-0.312-0.193-0.567-0.651-0.566-1.018l0.009-6.975c0-0.367,0.256-0.509,0.568-0.315l15.195,9.411 - c0.313,0.193,0.568,0.651,0.567,1.018L40.005,80.392z"/> -<path id="Fill-47" class="st6" d="M39.993,90.951c-0.001,0.367-0.256,0.509-0.568,0.315L24.23,81.852 - c-0.312-0.193-0.567-0.651-0.566-1.018l0.006-6.973c0-0.367,0.255-0.509,0.567-0.315l15.197,9.411 - c0.313,0.193,0.568,0.651,0.567,1.018L39.993,90.951z"/> -<path id="Stroke-49" class="st7" d="M39.993,90.951c-0.001,0.367-0.256,0.509-0.568,0.315L24.23,81.852 - c-0.312-0.193-0.567-0.651-0.566-1.018l0.006-6.973c0-0.367,0.255-0.509,0.567-0.315l15.197,9.411 - c0.313,0.193,0.568,0.651,0.567,1.018L39.993,90.951z"/> -<path id="Fill-51" class="st6" d="M39.985,101.51c-0.001,0.367-0.256,0.509-0.568,0.315L24.22,92.412 - c-0.312-0.193-0.567-0.651-0.566-1.018l0.007-6.974c0.001-0.367,0.256-0.509,0.568-0.315l15.194,9.413 - c0.313,0.193,0.568,0.651,0.568,1.018L39.985,101.51z"/> -<path id="Stroke-53" class="st7" d="M39.985,101.51c-0.001,0.367-0.256,0.509-0.568,0.315L24.22,92.412 - c-0.312-0.193-0.567-0.651-0.566-1.018l0.007-6.974c0.001-0.367,0.256-0.509,0.568-0.315l15.194,9.413 - c0.313,0.193,0.568,0.651,0.568,1.018L39.985,101.51z"/> -<path id="Fill-55" class="st6" d="M58.073,70.452c0,0.367-0.255,0.509-0.567,0.315l-15.198-9.413 - c-0.312-0.193-0.567-0.651-0.566-1.018l0.006-6.975c0.001-0.367,0.256-0.509,0.568-0.315l15.196,9.414 - c0.313,0.193,0.568,0.651,0.567,1.018L58.073,70.452z"/> -<path id="Stroke-57" class="st7" d="M58.073,70.452c0,0.367-0.255,0.509-0.567,0.315l-15.198-9.413 - c-0.312-0.193-0.567-0.651-0.566-1.018l0.006-6.975c0.001-0.367,0.256-0.509,0.568-0.315l15.196,9.414 - c0.313,0.193,0.568,0.651,0.567,1.018L58.073,70.452z"/> -<path id="Fill-59" class="st6" d="M58.062,81.01c-0.001,0.367-0.256,0.509-0.568,0.315l-15.197-9.411 - c-0.312-0.193-0.566-0.651-0.566-1.018l0.009-6.975c0.001-0.367,0.256-0.509,0.568-0.315l15.197,9.411 - c0.313,0.193,0.568,0.651,0.567,1.018L58.062,81.01z"/> -<path id="Stroke-61" class="st7" d="M58.062,81.01c-0.001,0.367-0.256,0.509-0.568,0.315l-15.197-9.411 - c-0.312-0.193-0.566-0.651-0.566-1.018l0.009-6.975c0.001-0.367,0.256-0.509,0.568-0.315l15.197,9.411 - c0.313,0.193,0.568,0.651,0.567,1.018L58.062,81.01z"/> -<path id="Fill-63" class="st6" d="M58.052,91.57c-0.001,0.367-0.256,0.509-0.568,0.315l-15.196-9.41 - c-0.312-0.193-0.567-0.651-0.566-1.018l0.006-6.978c0.001-0.367,0.256-0.509,0.568-0.315l15.197,9.414 - c0.313,0.193,0.568,0.651,0.567,1.018L58.052,91.57z"/> -<path id="Stroke-65" class="st7" d="M58.052,91.57c-0.001,0.367-0.256,0.509-0.568,0.315l-15.196-9.41 - c-0.312-0.193-0.567-0.651-0.566-1.018l0.006-6.978c0.001-0.367,0.256-0.509,0.568-0.315l15.197,9.414 - c0.313,0.193,0.568,0.651,0.567,1.018L58.052,91.57z"/> -<path id="Fill-67" class="st6" d="M58.041,102.128c-0.001,0.367-0.256,0.509-0.568,0.315l-15.196-9.409 - c-0.312-0.193-0.567-0.651-0.566-1.018l0.006-6.974c0-0.367,0.255-0.509,0.567-0.315l15.195,9.408 - c0.313,0.193,0.568,0.651,0.568,1.018L58.041,102.128z"/> -<path id="Stroke-69" class="st7" d="M58.041,102.128c-0.001,0.367-0.256,0.509-0.568,0.315l-15.196-9.409 - c-0.312-0.193-0.567-0.651-0.566-1.018l0.006-6.974c0-0.367,0.255-0.509,0.567-0.315l15.195,9.408 - c0.313,0.193,0.568,0.651,0.568,1.018L58.041,102.128z"/> -<path id="Fill-71" class="st6" d="M58.032,112.686c0,0.367-0.255,0.509-0.567,0.315l-15.198-9.412 - c-0.312-0.193-0.567-0.651-0.566-1.018l0.008-6.971c0.001-0.367,0.256-0.509,0.568-0.315l15.194,9.409 - c0.313,0.193,0.568,0.651,0.567,1.018L58.032,112.686z"/> -<path id="Stroke-73" class="st7" d="M58.032,112.686c0,0.367-0.255,0.509-0.567,0.315l-15.198-9.412 - c-0.312-0.193-0.567-0.651-0.566-1.018l0.008-6.971c0.001-0.367,0.256-0.509,0.568-0.315l15.194,9.409 - c0.313,0.193,0.568,0.651,0.567,1.018L58.032,112.686z"/> -<path id="Fill-75" class="st6" d="M76.121,81.629c-0.001,0.367-0.256,0.509-0.568,0.315l-15.194-9.412 - c-0.312-0.193-0.566-0.651-0.566-1.018l0.006-6.974c0-0.367,0.256-0.509,0.568-0.315l15.194,9.412 - c0.313,0.193,0.568,0.651,0.567,1.018L76.121,81.629z"/> -<path id="Stroke-77" class="st7" d="M76.121,81.629c-0.001,0.367-0.256,0.509-0.568,0.315l-15.194-9.412 - c-0.312-0.193-0.566-0.651-0.566-1.018l0.006-6.974c0-0.367,0.256-0.509,0.568-0.315l15.194,9.412 - c0.313,0.193,0.568,0.651,0.567,1.018L76.121,81.629z"/> -<path id="Fill-79" class="st6" d="M76.113,92.187c-0.001,0.367-0.256,0.509-0.568,0.315l-15.197-9.411 - c-0.312-0.193-0.566-0.651-0.566-1.018l0.009-6.975c0.001-0.367,0.256-0.509,0.568-0.315l15.194,9.412 - c0.313,0.193,0.568,0.651,0.567,1.018L76.113,92.187z"/> -<path id="Stroke-81" class="st7" d="M76.113,92.187c-0.001,0.367-0.256,0.509-0.568,0.315l-15.197-9.411 - c-0.312-0.193-0.566-0.651-0.566-1.018l0.009-6.975c0.001-0.367,0.256-0.509,0.568-0.315l15.194,9.412 - c0.313,0.193,0.568,0.651,0.567,1.018L76.113,92.187z"/> -<path id="Fill-83" class="st6" d="M76.103,102.75c-0.001,0.367-0.256,0.509-0.568,0.315L60.34,93.652 - c-0.312-0.193-0.567-0.651-0.566-1.018l0.006-6.976c0-0.367,0.255-0.509,0.567-0.315l15.195,9.412 - c0.313,0.193,0.568,0.651,0.567,1.018L76.103,102.75z"/> -<path id="Stroke-85" class="st7" d="M76.103,102.75c-0.001,0.367-0.256,0.509-0.568,0.315L60.34,93.652 - c-0.312-0.193-0.567-0.651-0.566-1.018l0.006-6.976c0-0.367,0.255-0.509,0.567-0.315l15.195,9.412 - c0.313,0.193,0.568,0.651,0.567,1.018L76.103,102.75z"/> -<path id="Fill-87" class="st6" d="M76.092,113.307c0,0.367-0.255,0.509-0.567,0.315l-15.198-9.411 - c-0.312-0.193-0.567-0.651-0.566-1.018l0.006-6.974c0.001-0.367,0.256-0.509,0.568-0.315l15.196,9.414 - c0.313,0.193,0.568,0.651,0.567,1.018L76.092,113.307z"/> -<path id="Stroke-89" class="st7" d="M76.092,113.307c0,0.367-0.255,0.509-0.567,0.315l-15.198-9.411 - c-0.312-0.193-0.567-0.651-0.566-1.018l0.006-6.974c0.001-0.367,0.256-0.509,0.568-0.315l15.196,9.414 - c0.313,0.193,0.568,0.651,0.567,1.018L76.092,113.307z"/> -<path id="Fill-91" class="st6" d="M76.079,123.868c-0.001,0.367-0.256,0.509-0.568,0.315l-15.192-9.411 - c-0.312-0.193-0.567-0.651-0.567-1.018l0.006-6.977c0.001-0.367,0.256-0.509,0.568-0.315l15.195,9.412 - c0.313,0.193,0.567,0.651,0.567,1.018L76.079,123.868z"/> -<path id="Stroke-93" class="st7" d="M76.079,123.868c-0.001,0.367-0.256,0.509-0.568,0.315l-15.192-9.411 - c-0.312-0.193-0.567-0.651-0.567-1.018l0.006-6.977c0.001-0.367,0.256-0.509,0.568-0.315l15.195,9.412 - c0.313,0.193,0.567,0.651,0.567,1.018L76.079,123.868z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 128.082 131.636"><style><![CDATA[.I{fill:none}.J{stroke-linejoin:round}.K{fill:#dfe0df}.L{stroke:#fefefe}.M{stroke-width:.434}]]></style><g stroke="#626366" stroke-width="3.106" class="I J"><path d="M82.7 73.552l43.776-23.232.043 56.525-43.78 23.238z"/><path d="M1.553 24.79L45.33 1.553l81.157 48.766L82.7 73.552z"/><path d="M82.7 73.552l.038 56.53L1.6 81.32l-.037-56.53z"/></g><path d="M82.7 73.552l43.776-23.232.043 56.525-43.78 23.238z" fill="#416895"/><path d="M1.553 24.79L45.33 1.553l81.157 48.766L82.7 73.552z" fill="#7d91b4"/><path d="M82.7 73.552l.038 56.53L1.6 81.32l-.037-56.53z" fill="#607ba4"/><path d="M1.573 25.2L82.73 74.37m0 .087v55.215" stroke-width="1.027" stroke="#dfe0df" stroke-linecap="round" class="I J"/><use xlink:href="#B" class="K"/><use xlink:href="#B" class="I J L M"/><use xlink:href="#C" class="K"/><use xlink:href="#C" class="I J L M"/><use xlink:href="#D" class="K"/><use xlink:href="#D" class="I J L M"/><use xlink:href="#E" class="K"/><use xlink:href="#E" class="I J L M"/><use xlink:href="#F" class="K"/><use xlink:href="#F" class="I J L M"/><use xlink:href="#G" class="K"/><use xlink:href="#G" class="I J L M"/><use xlink:href="#H" class="K"/><use xlink:href="#H" class="I J L M"/><use xlink:href="#I" class="K"/><use xlink:href="#I" class="I J L M"/><use xlink:href="#J" class="K"/><use xlink:href="#J" class="I J L M"/><use xlink:href="#K" class="K"/><use xlink:href="#K" class="I J L M"/><use xlink:href="#L" class="K"/><use xlink:href="#L" class="I J L M"/><use xlink:href="#M" class="K"/><use xlink:href="#M" class="I J L M"/><use xlink:href="#N" class="K"/><use xlink:href="#N" class="I J L M"/><use xlink:href="#O" class="K"/><use xlink:href="#O" class="I J L M"/><use xlink:href="#P" class="K"/><use xlink:href="#P" class="I J L M"/><use xlink:href="#Q" class="K"/><use xlink:href="#Q" class="I J L M"/><use xlink:href="#R" class="K"/><use xlink:href="#R" class="I J L M"/><use xlink:href="#S" class="K"/><use xlink:href="#S" class="I J L M"/><use xlink:href="#T" class="K"/><use xlink:href="#T" class="I J L M"/><use xlink:href="#U" class="K"/><use xlink:href="#U" class="I J L M"/><defs ><path id="B" d="M21.977 48.092c0 .367-.256.51-.568.315l-15.197-9.4c-.312-.193-.567-.65-.566-1.018l.01-6.973c.001-.367.256-.51.568-.315L21.416 40.1c.313.193.567.65.567 1.018l-.006 6.975z"/><path id="C" d="M21.966 58.653c-.001.367-.256.51-.568.315L6.204 49.555c-.312-.193-.567-.65-.566-1.018l.006-6.973c.001-.367.256-.51.568-.315l15.195 9.41a1.33 1.33 0 0 1 .567 1.018l-.008 6.975z"/><path id="D" d="M21.956 69.215c-.001.367-.256.51-.568.315L6.193 60.116c-.312-.193-.566-.65-.566-1.018l.006-6.976c0-.367.256-.51.568-.315l15.194 9.413a1.33 1.33 0 0 1 .567 1.018l-.006 6.977z"/><path id="E" d="M21.945 79.772c-.001.367-.256.51-.568.315L6.18 70.676c-.312-.193-.567-.65-.566-1.018l.01-6.975c.001-.367.256-.51.568-.315l15.193 9.412a1.33 1.33 0 0 1 .567 1.018l-.008 6.974z"/><path id="F" d="M21.934 90.332c0 .367-.255.51-.567.315L6.173 81.235c-.312-.193-.567-.65-.566-1.018l.006-6.975c.001-.367.256-.51.568-.315l15.192 9.412a1.33 1.33 0 0 1 .567 1.018l-.006 6.975z"/><path id="G" d="M40.025 59.27c-.001.367-.256.51-.568.315l-15.194-9.41c-.312-.193-.567-.65-.567-1.018l.006-6.975c.001-.367.256-.51.568-.315l15.197 9.412c.313.193.567.65.567 1.018l-.01 6.972z"/><path id="H" d="M40.016 69.83c0 .367-.255.51-.567.315l-15.196-9.4c-.312-.193-.567-.65-.566-1.018l.006-6.974c.001-.367.256-.51.568-.315l15.193 9.41c.313.193.568.65.568 1.018l-.006 6.975z"/><path id="I" d="M40.005 80.392c-.001.367-.256.51-.568.315L24.24 71.294c-.312-.193-.567-.65-.566-1.018l.01-6.975c0-.367.256-.51.568-.315l15.195 9.41a1.33 1.33 0 0 1 .567 1.018l-.007 6.977z"/><path id="J" d="M39.993 90.95c-.001.367-.256.51-.568.315L24.23 81.852c-.312-.193-.567-.65-.566-1.018l.006-6.973c0-.367.255-.51.567-.315l15.197 9.41a1.33 1.33 0 0 1 .567 1.018l-.008 6.976z"/><path id="K" d="M39.985 101.5c-.001.367-.256.51-.568.315L24.22 92.412c-.312-.193-.567-.65-.566-1.018l.007-6.974c.001-.367.256-.51.568-.315l15.194 9.413c.313.193.568.65.568 1.018l-.006 6.974z"/><path id="L" d="M58.073 70.452c0 .367-.255.51-.567.315l-15.198-9.413c-.312-.193-.567-.65-.566-1.018l.006-6.975c.001-.367.256-.51.568-.315l15.196 9.414a1.33 1.33 0 0 1 .567 1.018l-.006 6.974z"/><path id="M" d="M58.062 81c-.001.367-.256.51-.568.315l-15.197-9.41c-.312-.193-.566-.65-.566-1.018l.01-6.975c.001-.367.256-.51.568-.315l15.197 9.41a1.33 1.33 0 0 1 .567 1.018L58.062 81z"/><path id="N" d="M58.052 91.57c-.001.367-.256.51-.568.315l-15.196-9.4c-.312-.193-.567-.65-.566-1.018l.006-6.978c.001-.367.256-.51.568-.315l15.197 9.414a1.33 1.33 0 0 1 .567 1.018l-.008 6.974z"/><path id="O" d="M58.04 102.128c-.001.367-.256.51-.568.315l-15.196-9.41c-.312-.193-.567-.65-.566-1.018l.006-6.974c0-.367.255-.51.567-.315l15.195 9.408c.313.193.568.65.568 1.018l-.006 6.975z"/><path id="P" d="M58.032 112.686c0 .367-.255.51-.567.315l-15.198-9.412c-.312-.193-.567-.65-.566-1.018l.008-6.97c.001-.367.256-.51.568-.315l15.194 9.41a1.33 1.33 0 0 1 .567 1.018l-.006 6.974z"/><path id="Q" d="M76.12 81.63c-.001.367-.256.51-.568.315L60.36 72.532c-.312-.193-.566-.65-.566-1.018l.006-6.974c0-.367.256-.51.568-.315l15.194 9.412a1.33 1.33 0 0 1 .567 1.018l-.007 6.974z"/><path id="R" d="M76.113 92.187c-.001.367-.256.51-.568.315l-15.197-9.41c-.312-.193-.566-.65-.566-1.018l.01-6.975c.001-.367.256-.51.568-.315l15.194 9.412a1.33 1.33 0 0 1 .567 1.018l-.007 6.974z"/><path id="S" d="M76.103 102.75c-.001.367-.256.51-.568.315L60.34 93.652c-.312-.193-.567-.65-.566-1.018l.006-6.976c0-.367.255-.51.567-.315l15.195 9.412a1.33 1.33 0 0 1 .567 1.018l-.006 6.977z"/><path id="T" d="M76.092 113.307c0 .367-.255.51-.567.315l-15.198-9.41c-.312-.193-.567-.65-.566-1.018l.006-6.974c.001-.367.256-.51.568-.315l15.196 9.414a1.33 1.33 0 0 1 .567 1.018l-.006 6.97z"/><path id="U" d="M76.08 123.868c-.001.367-.256.51-.568.315l-15.192-9.41c-.312-.193-.567-.65-.567-1.018l.006-6.977c.001-.367.256-.51.568-.315l15.195 9.412c.313.193.567.65.567 1.018l-.01 6.976z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/switch/Industrial_Ethernet_IE200.svg b/src/main/webapp/img/lib/allied_telesis/switch/Industrial_Ethernet_IE200.svg index 4829e796b07e3ae2473e0d90ec6ea9ab808afd7a..6186fd164781f3934f9aab9d34f876f2d4013eb4 100644 --- a/src/main/webapp/img/lib/allied_telesis/switch/Industrial_Ethernet_IE200.svg +++ b/src/main/webapp/img/lib/allied_telesis/switch/Industrial_Ethernet_IE200.svg @@ -1,198 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" - id="Layer_1" inkscape:version="0.92.3 (2405546, 2018-03-11)" sodipodi:docname="Industrial_Ethernet_IE2003.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 66.553 93.942" - style="enable-background:new 0 0 66.553 93.942;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#626366;stroke-width:2.835;stroke-linejoin:round;} - .st1{fill:#DFE0DF;} - .st2{fill:#BBBDBF;} - .st3{fill:#D7D8D9;} - .st4{fill:#A9ABAE;} - .st5{fill:#6C6E70;} - .st6{fill:#939597;} - .st7{fill:#FEFEFE;} - .st8{fill:none;stroke:#939597;stroke-width:0.525;stroke-linecap:round;stroke-linejoin:round;} - .st9{fill:none;stroke:#EFEEEE;stroke-width:0.525;stroke-linecap:round;stroke-linejoin:round;} -</style> -<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview8951" inkscape:current-layer="Layer_1" inkscape:cx="29.914382" inkscape:cy="38.439267" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-height="1017" inkscape:window-maximized="1" inkscape:window-width="1920" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="10.042553" objecttolerance="10" pagecolor="#ffffff" showgrid="false"> - </sodipodi:namedview> -<title id="title4">icon-IE200</title> -<desc id="desc6">Created with Sketch.</desc> -<path id="Stroke-1254-8-8-6-0-8" inkscape:connector-curvature="0" class="st0" d="M60.199,19.312 - c0.529,0.318,0.968,1.109,0.969,1.756l0.037,53.611c0,0.647-0.438,0.904-0.967,0.585L34.25,59.65 - c-0.536-0.322-0.974-1.106-0.974-1.752L33.238,4.286c-0.001-0.647,0.437-0.912,0.973-0.589L60.199,19.312z"/> -<path id="Stroke-1254-8-8-6-0" inkscape:connector-curvature="0" class="st0" d="M53.951,22.673 - c0.529,0.318,0.968,1.109,0.969,1.756l0.037,53.611c0,0.647-0.438,0.904-0.967,0.585L28.004,63.011 - c-0.536-0.322-0.974-1.106-0.974-1.752L26.992,7.647C26.991,7,27.429,6.735,27.965,7.058L53.951,22.673z"/> -<path id="Stroke-1254-8-8-6" inkscape:connector-curvature="0" class="st0" d="M47.716,26.264c0.529,0.318,0.968,1.109,0.969,1.756 - l0.037,53.611c0,0.647-0.438,0.904-0.967,0.585L21.769,66.601c-0.536-0.322-0.974-1.106-0.974-1.752l-0.038-53.611 - c-0.001-0.647,0.437-0.912,0.973-0.589L47.716,26.264z"/> -<path id="Stroke-1254-8-8" inkscape:connector-curvature="0" class="st0" d="M41.597,29.823c0.529,0.318,0.968,1.109,0.969,1.756 - l0.037,53.611c0,0.647-0.438,0.904-0.967,0.585L15.649,70.16c-0.536-0.322-0.974-1.106-0.974-1.752l-0.038-53.611 - c-0.001-0.647,0.437-0.912,0.973-0.589L41.597,29.823z"/> -<path id="Stroke-1254-8" inkscape:connector-curvature="0" class="st0" d="M34.627,32.875c0.529,0.318,0.968,1.109,0.969,1.756 - l0.037,53.611c0,0.647-0.438,0.904-0.967,0.585L8.68,73.214c-0.536-0.322-0.974-1.106-0.974-1.752L7.668,17.851 - c-0.001-0.647,0.437-0.912,0.973-0.589L34.627,32.875z"/> -<polygon id="Stroke-87-6" class="st0" points="56.511,22.809 60.155,20.874 60.193,74.486 56.548,76.42 "/> -<path id="Stroke-35-2" inkscape:connector-curvature="0" class="st0" d="M58.581,76.814l-3.645,1.935 - c0.188-0.1,0.305-0.331,0.305-0.666l3.645-1.935C58.886,76.483,58.768,76.715,58.581,76.814z"/> -<path id="Stroke-35-6" inkscape:connector-curvature="0" class="st0" d="M52.193,80.361l-3.645,1.935 - c0.188-0.1,0.305-0.331,0.305-0.666l3.645-1.935C52.498,80.03,52.38,80.262,52.193,80.361z"/> -<path id="Stroke-35-60" inkscape:connector-curvature="0" class="st0" d="M45.943,83.92l-3.645,1.935 - c0.188-0.1,0.305-0.331,0.305-0.666l3.645-1.935C46.248,83.589,46.13,83.821,45.943,83.92z"/> -<path id="Stroke-35-0" inkscape:connector-curvature="0" class="st0" d="M38.973,86.975l-3.645,1.935 - c0.188-0.1,0.305-0.331,0.305-0.666l3.645-1.935C39.278,86.644,39.16,86.876,38.973,86.975z"/> -<path id="Stroke-35-54" inkscape:connector-curvature="0" class="st0" d="M32.723,90.535l-3.645,1.935 - c0.188-0.1,0.305-0.331,0.305-0.666l3.645-1.935C33.028,90.202,32.91,90.435,32.723,90.535z"/> -<path id="Stroke-1343" inkscape:connector-curvature="0" class="st0" d="M5.436,25.149l1.458-0.774 - c0.175-0.092,0.408-0.073,0.665,0.082l-1.458,0.773C5.844,25.076,5.611,25.056,5.436,25.149z"/> -<path id="Stroke-208-16" inkscape:connector-curvature="0" class="st0" d="M33.805,3.378c0,0,0.147-0.062,0.307-0.011l0.159,0.052 - l0.209,0.115l3.663-1.924l-0.266-0.141l-0.162-0.044l-0.14-0.007c0.14,0.007-0.125,0.025-0.125,0.025L33.805,3.378z"/> -<path id="Stroke-208-16-6" inkscape:connector-curvature="0" class="st0" d="M27.555,6.935c0,0,0.147-0.062,0.307-0.011l0.159,0.052 - l0.209,0.115l3.663-1.924l-0.266-0.141l-0.162-0.044l-0.14-0.007C31.465,4.982,31.2,5,31.2,5L27.555,6.935z"/> -<path id="Stroke-208-16-5" inkscape:connector-curvature="0" class="st0" d="M21.167,10.483c0,0,0.147-0.062,0.307-0.011 - l0.159,0.052l0.209,0.115l3.663-1.924l-0.266-0.141L25.077,8.53l-0.14-0.007c0.14,0.007-0.125,0.025-0.125,0.025L21.167,10.483z"/> -<path id="Stroke-208-16-9" inkscape:connector-curvature="0" class="st0" d="M14.935,14.052c0,0,0.147-0.062,0.307-0.011 - l0.159,0.052l0.209,0.115l3.663-1.924l-0.266-0.141L18.844,12.1l-0.14-0.007c0.14,0.007-0.125,0.025-0.125,0.025L14.935,14.052z"/> -<path id="Stroke-208-16-2" inkscape:connector-curvature="0" class="st0" d="M7.948,17.096c0,0,0.147-0.062,0.307-0.011l0.159,0.052 - l0.209,0.115l3.663-1.924l-0.266-0.141l-0.162-0.044l-0.14-0.007c0.14,0.007-0.125,0.025-0.125,0.025L7.948,17.096z"/> -<path id="Stroke-208-16-3" inkscape:connector-curvature="0" class="st0" d="M1.716,20.666c0,0,0.147-0.062,0.307-0.011l0.159,0.052 - l0.209,0.115l3.663-1.924l-0.266-0.141l-0.162-0.044l-0.14-0.007c0.14,0.007-0.125,0.025-0.125,0.025L1.716,20.666z"/> -<path id="Stroke-35" inkscape:connector-curvature="0" class="st0" d="M64.831,73.257l-3.645,1.935 - c0.188-0.1,0.305-0.331,0.305-0.666l3.645-1.935C65.136,72.924,65.018,73.157,64.831,73.257z"/> -<polygon id="Stroke-85" class="st0" points="34.498,3.543 38.143,1.608 64.13,17.226 60.485,19.159 "/> -<polygon id="Stroke-87" class="st0" points="61.453,20.915 65.099,18.979 65.136,72.59 61.491,74.524 "/> -<path id="Stroke-206" inkscape:connector-curvature="0" class="st0" d="M60.486,19.159c0.426,0.377,0.312,0.252,0.53,0.514 - c0.27,0.322,0.429,1.07,0.429,1.07s3.621-1.832,3.645-1.935c0.046-0.206-0.198-0.727-0.391-1.017 - c-0.24-0.361-0.568-0.566-0.568-0.566L60.486,19.159z"/> -<path id="Stroke-1254" class="st0" d="M28.378,36.436c0.529,0.318,0.968,1.109,0.969,1.756l0.037,53.611 - c0,0.647-0.438,0.904-0.967,0.585L2.43,76.772c-0.536-0.322-0.974-1.106-0.974-1.752L1.418,21.41 - c-0.001-0.647,0.437-0.912,0.973-0.589L28.378,36.436z"/> -<path id="Stroke-1295" inkscape:connector-curvature="0" class="st0" d="M24.296,89.831l-1.457,0.774 - c0.189-0.1,0.308-0.334,0.308-0.67l1.458-0.774C24.605,89.498,24.485,89.73,24.296,89.831z"/> -<polygon id="Stroke-1345" class="st0" points="6.35,25.082 7.808,24.309 23.593,33.792 22.135,34.566 "/> -<polygon id="Stroke-1347" class="st0" points="23.109,36.324 24.567,35.549 24.605,89.161 23.147,89.936 "/> -<path id="Stroke-1456" inkscape:connector-curvature="0" class="st0" d="M22.135,34.567l1.458-0.774 - c0.535,0.322,0.974,1.113,0.974,1.758l-1.458,0.774C23.109,35.679,22.671,34.889,22.135,34.567z"/> -<path id="Stroke-1458" inkscape:connector-curvature="0" class="st0" d="M22.135,34.566c0.536,0.322,0.974,1.112,0.974,1.758 - l0.038,53.613c0,0.646-0.437,0.91-0.973,0.588L6.39,81.04c-0.537-0.323-0.975-1.114-0.975-1.759L5.377,25.67 - c0-0.645,0.437-0.911,0.973-0.588L22.135,34.566z"/> -<polygon id="Stroke-1460" class="st0" points="18.607,46.354 15.212,44.292 15.212,39.465 18.607,41.525 "/> -<polygon id="Stroke-1462" class="st0" points="18.607,52.48 15.212,50.422 15.212,45.591 18.607,47.653 "/> -<polygon id="Stroke-1464" class="st0" points="18.607,58.611 15.212,56.549 15.212,51.722 18.607,53.783 "/> -<polygon id="Stroke-1466" class="st0" points="18.607,64.738 15.212,62.68 15.212,57.851 18.607,59.91 "/> -<polygon id="Stroke-1468" class="st0" points="13.31,65.984 9.917,63.924 9.917,59.097 13.31,61.157 "/> -<polygon id="Stroke-1470" class="st0" points="18.607,75.65 15.212,73.589 15.212,68.761 18.607,70.821 "/> -<polygon id="Stroke-1472" class="st0" points="18.607,81.779 15.212,79.719 15.212,74.89 18.607,76.952 "/> -<polygon id="Fill-1555" class="st1" points="64.13,17.226 60.485,19.159 34.498,3.543 38.143,1.608 "/> -<polygon id="Fill-1557" class="st2" points="65.136,72.59 61.491,74.524 61.453,20.915 65.099,18.979 "/> -<path id="Fill-1672" inkscape:connector-curvature="0" class="st3" d="M60.486,19.159c0.529,0.318,0.968,1.109,0.969,1.756 - l0.037,53.611c0,0.647-0.438,0.904-0.967,0.585L34.537,59.497c-0.536-0.322-0.974-1.106-0.974-1.752L33.526,4.133 - c-0.001-0.647,0.437-0.912,0.973-0.589L60.486,19.159z"/> -<polygon id="Fill-1759" class="st1" points="57.88,20.784 54.235,22.716 28.248,7.102 31.893,5.168 "/> -<polygon id="Fill-1761" class="st2" points="58.886,76.148 55.241,78.082 55.203,24.472 58.848,22.537 "/> -<path id="Fill-1876" inkscape:connector-curvature="0" class="st3" d="M54.236,22.718c0.529,0.318,0.968,1.109,0.969,1.756 - l0.037,53.611c0,0.647-0.438,0.904-0.967,0.585L28.288,63.055c-0.536-0.322-0.974-1.106-0.974-1.752L27.276,7.691 - c-0.001-0.647,0.437-0.912,0.973-0.589L54.236,22.718z"/> -<polygon id="Fill-1963" class="st1" points="51.492,24.33 47.847,26.264 21.86,10.649 25.505,8.714 "/> -<polygon id="Fill-1965" class="st2" points="52.498,79.695 48.853,81.629 48.816,28.02 52.46,26.083 "/> -<path id="Fill-2080" inkscape:connector-curvature="0" class="st3" d="M47.847,26.264c0.529,0.318,0.968,1.109,0.969,1.756 - l0.037,53.611c0,0.647-0.438,0.904-0.967,0.585L21.899,66.6c-0.536-0.322-0.974-1.106-0.974-1.752l-0.038-53.611 - c-0.001-0.647,0.437-0.912,0.973-0.589L47.847,26.264z"/> -<polygon id="Fill-2167" class="st1" points="45.242,27.889 41.597,29.823 15.61,14.208 19.255,12.273 "/> -<polygon id="Fill-2169" class="st2" points="46.248,83.254 42.603,85.188 42.566,31.579 46.21,29.642 "/> -<path id="Fill-2284" inkscape:connector-curvature="0" class="st3" d="M41.597,29.823c0.529,0.318,0.968,1.109,0.969,1.756 - l0.037,53.611c0,0.647-0.438,0.904-0.967,0.585L15.649,70.16c-0.536-0.322-0.974-1.106-0.974-1.752l-0.038-53.611 - c-0.001-0.647,0.437-0.912,0.973-0.589L41.597,29.823z"/> -<polygon id="Fill-2371" class="st1" points="38.272,30.944 34.627,32.875 8.641,17.263 12.286,15.326 "/> -<polygon id="Fill-2373" class="st2" points="39.278,86.309 35.633,88.242 35.597,34.632 39.242,32.698 "/> -<path id="Fill-2488" inkscape:connector-curvature="0" class="st3" d="M34.627,32.877c0.529,0.318,0.968,1.109,0.969,1.756 - l0.037,53.611c0,0.647-0.438,0.904-0.967,0.585L8.68,73.214c-0.536-0.322-0.974-1.106-0.974-1.752l-0.038-53.61 - c-0.001-0.647,0.437-0.912,0.973-0.589L34.627,32.877z"/> -<polygon id="Fill-2575" class="st1" points="32.022,34.502 28.378,36.436 2.391,20.822 6.036,18.886 "/> -<polygon id="Fill-2577" class="st2" points="33.028,89.867 29.384,91.801 29.347,38.192 32.992,36.256 "/> -<path id="Fill-2692" inkscape:connector-curvature="0" class="st3" d="M28.378,36.436c0.529,0.318,0.968,1.109,0.969,1.756 - l0.037,53.611c0,0.647-0.438,0.904-0.967,0.585L2.43,76.772c-0.536-0.322-0.974-1.106-0.974-1.752L1.418,21.41 - c-0.001-0.647,0.437-0.912,0.973-0.589L28.378,36.436z"/> -<polygon id="Fill-2779" class="st4" points="7.571,24.458 23.493,34.041 22.022,34.824 6.101,25.239 "/> -<polygon id="Fill-2781" class="st5" points="24.567,35.549 24.605,89.505 23.147,90.285 23.109,36.327 "/> -<path id="Fill-2890" inkscape:connector-curvature="0" class="st6" d="M22.135,34.566c0.536,0.322,0.974,1.112,0.974,1.758 - l0.038,53.613c0,0.646-0.437,0.91-0.973,0.588L6.39,81.04c-0.537-0.323-0.975-1.114-0.975-1.759L5.377,25.67 - c0-0.645,0.437-0.911,0.973-0.588L22.135,34.566z"/> -<polygon id="Fill-2892" class="st7" points="18.607,46.354 15.212,44.292 15.212,39.465 18.607,41.525 "/> -<polygon id="Fill-2894" class="st7" points="18.607,52.48 15.212,50.422 15.212,45.591 18.607,47.653 "/> -<polygon id="Fill-2896" class="st7" points="18.607,58.611 15.212,56.549 15.212,51.722 18.607,53.783 "/> -<polygon id="Fill-2898" class="st7" points="18.607,64.738 15.212,62.68 15.212,57.851 18.607,59.91 "/> -<polygon id="Fill-2900" class="st7" points="13.31,65.984 9.917,63.924 9.917,59.097 13.31,61.157 "/> -<polygon id="Fill-2902" class="st7" points="18.607,75.65 15.212,73.589 15.212,68.761 18.607,70.821 "/> -<polygon id="Fill-2904" class="st7" points="18.607,81.779 15.212,79.719 15.212,74.89 18.607,76.952 "/> -<path id="Stroke-206-4" inkscape:connector-curvature="0" class="st3" d="M60.199,19.312c0.459,0.407,0.336,0.272,0.572,0.555 - c0.291,0.347,0.463,1.155,0.463,1.155s3.905-1.977,3.93-2.088c0.05-0.222-0.214-0.784-0.422-1.097 - c-0.259-0.39-0.612-0.611-0.612-0.611L60.199,19.312z"/> -<path id="Stroke-206-4-2" inkscape:connector-curvature="0" class="st3" d="M28.378,36.436c0.426,0.377,0.312,0.252,0.53,0.514 - c0.27,0.322,0.429,1.07,0.429,1.07s3.621-1.832,3.645-1.935c0.046-0.206-0.198-0.727-0.391-1.017 - c-0.24-0.361-0.568-0.566-0.568-0.566L28.378,36.436z"/> -<path id="Stroke-206-4-8" inkscape:connector-curvature="0" class="st3" d="M34.627,32.877c0.426,0.377,0.312,0.252,0.53,0.514 - c0.27,0.322,0.429,1.07,0.429,1.07s3.621-1.832,3.645-1.935c0.046-0.206-0.198-0.727-0.391-1.017 - c-0.24-0.361-0.568-0.566-0.568-0.566L34.627,32.877z"/> -<path id="Stroke-206-4-7" inkscape:connector-curvature="0" class="st3" d="M41.597,29.823c0.426,0.377,0.312,0.252,0.53,0.514 - c0.27,0.322,0.429,1.07,0.429,1.07s3.621-1.832,3.645-1.935c0.046-0.206-0.198-0.727-0.391-1.017 - c-0.24-0.361-0.568-0.566-0.568-0.566L41.597,29.823z"/> -<path id="Stroke-206-4-85" inkscape:connector-curvature="0" class="st3" d="M47.847,26.264c0.426,0.377,0.312,0.252,0.53,0.514 - c0.27,0.322,0.429,1.07,0.429,1.07s3.621-1.832,3.645-1.935c0.046-0.206-0.198-0.727-0.391-1.017 - c-0.24-0.361-0.568-0.566-0.568-0.566L47.847,26.264z"/> -<path id="Stroke-206-4-70" inkscape:connector-curvature="0" class="st3" d="M54.235,22.718c0.426,0.377,0.312,0.252,0.53,0.514 - c0.27,0.322,0.429,1.07,0.429,1.07s3.621-1.832,3.645-1.935c0.046-0.206-0.198-0.727-0.391-1.017 - c-0.24-0.361-0.568-0.566-0.568-0.566L54.235,22.718z"/> -<path id="Stroke-35-5" inkscape:connector-curvature="0" class="st2" d="M64.831,73.257l-3.645,1.935 - c0.188-0.1,0.305-0.331,0.305-0.666l3.645-1.935C65.136,72.924,65.018,73.157,64.831,73.257z"/> -<path id="Stroke-35-5-2" inkscape:connector-curvature="0" class="st2" d="M58.581,76.814l-3.645,1.935 - c0.188-0.1,0.305-0.331,0.305-0.666l3.645-1.935C58.886,76.483,58.768,76.715,58.581,76.814z"/> -<path id="Stroke-35-5-0" inkscape:connector-curvature="0" class="st2" d="M52.193,80.361l-3.645,1.935 - c0.188-0.1,0.305-0.331,0.305-0.666l3.645-1.935C52.498,80.03,52.38,80.262,52.193,80.361z"/> -<path id="Stroke-35-5-6" inkscape:connector-curvature="0" class="st2" d="M45.943,83.92l-3.645,1.935 - c0.188-0.1,0.305-0.331,0.305-0.666l3.645-1.935C46.248,83.589,46.13,83.821,45.943,83.92z"/> -<path id="Stroke-35-5-3" inkscape:connector-curvature="0" class="st2" d="M38.973,86.975l-3.645,1.935 - c0.188-0.1,0.305-0.331,0.305-0.666l3.645-1.935C39.278,86.644,39.16,86.876,38.973,86.975z"/> -<path id="Stroke-35-5-9" inkscape:connector-curvature="0" class="st2" d="M32.723,90.535l-3.645,1.935 - c0.188-0.1,0.305-0.331,0.305-0.666l3.645-1.935C33.028,90.202,32.91,90.435,32.723,90.535z"/> -<path id="Stroke-208-1-7-1" inkscape:connector-curvature="0" class="st2" d="M27.555,6.935c0,0,0.147-0.062,0.307-0.011 - l0.159,0.052l0.209,0.115l3.663-1.924l-0.266-0.141l-0.162-0.044l-0.14-0.007C31.465,4.982,31.2,5,31.2,5L27.555,6.935z"/> -<path id="Stroke-208-1-7-5" inkscape:connector-curvature="0" class="st2" d="M21.167,10.483c0,0,0.147-0.062,0.307-0.011 - l0.159,0.052l0.209,0.115l3.663-1.924l-0.266-0.141L25.077,8.53l-0.14-0.007c0.14,0.007-0.125,0.025-0.125,0.025L21.167,10.483z"/> -<path id="Stroke-208-1-7-6" inkscape:connector-curvature="0" class="st2" d="M14.935,14.052c0,0,0.147-0.062,0.307-0.011 - l0.159,0.052l0.209,0.115l3.663-1.924l-0.266-0.141L18.844,12.1l-0.14-0.007c0.14,0.007-0.125,0.025-0.125,0.025L14.935,14.052z"/> -<path id="Stroke-208-1-7-57" inkscape:connector-curvature="0" class="st2" d="M7.948,17.096c0,0,0.147-0.062,0.307-0.011 - l0.159,0.052l0.209,0.115l3.663-1.924l-0.266-0.141l-0.162-0.044l-0.14-0.007c0.14,0.007-0.125,0.025-0.125,0.025L7.948,17.096z"/> -<path id="Stroke-208-1-7-4" inkscape:connector-curvature="0" class="st2" d="M1.716,20.666c0,0,0.147-0.062,0.307-0.011 - l0.159,0.052l0.209,0.115l3.663-1.924l-0.266-0.141l-0.162-0.044l-0.14-0.007c0.14,0.007-0.125,0.025-0.125,0.025L1.716,20.666z"/> -<path id="Stroke-2916" class="st8" d="M1.265,21.128c0.012-0.813,1.759,0.185,1.759,0.185l25.071,15.065 - c0,0,0.299,0.273,0.803,0.799c0.504,0.525,0.558,1.648,0.558,1.648l0.081,51.05c0,0-0.062,1.603-0.356,2.102 - s-0.956,0.418-0.956,0.418"/> -<path id="Stroke-208-1-7" inkscape:connector-curvature="0" class="st2" d="M33.805,3.378c0,0,0.147-0.062,0.307-0.011l0.159,0.052 - l0.209,0.115l3.663-1.924l-0.266-0.141l-0.162-0.044l-0.14-0.007c0.14,0.007-0.125,0.025-0.125,0.025L33.805,3.378z"/> -<path id="Stroke-1343-7" inkscape:connector-curvature="0" class="st2" d="M5.436,25.149l1.458-0.774 - c0.175-0.092,0.408-0.073,0.665,0.082l-1.458,0.773C5.844,25.076,5.611,25.056,5.436,25.149z"/> -<path id="Stroke-1456-7" inkscape:connector-curvature="0" class="st2" d="M22.035,34.814l1.458-0.774 - c0.535,0.322,0.974,1.113,0.974,1.758l-1.458,0.774C23.009,35.926,22.571,35.137,22.035,34.814z"/> -<path id="Stroke-1295-2" inkscape:connector-curvature="0" class="st5" d="M24.196,90.23l-1.457,0.774 - c0.189-0.1,0.308-0.334,0.308-0.67l1.458-0.774C24.505,89.897,24.385,90.129,24.196,90.23z"/> -<path id="Stroke-2918" class="st9" d="M5.377,25.67c0.011-0.736,0.973-0.176,0.973-0.176l15.348,9.223c0,0,0.27,0.247,0.727,0.723 - c0.456,0.475,0.505,1.492,0.505,1.492l0.093,52.034c0,0,0.082,1.189-0.184,1.641c-0.267,0.451-0.98-0.271-0.98-0.271"/> -<path id="Stroke-2910" class="st8" d="M20.887,11.014c0.012-0.813,1.759,0.185,1.759,0.185l25.071,15.065 - c0,0,0.299,0.273,0.803,0.799c0.504,0.525,0.558,1.648,0.558,1.648l0.081,51.05c0,0-0.062,1.603-0.356,2.102 - s-0.956,0.418-0.956,0.418"/> -<path id="Stroke-2914" class="st8" d="M7.724,17.545c0.012-0.813,1.759,0.185,1.759,0.185l25.071,15.065 - c0,0,0.299,0.273,0.803,0.799c0.504,0.525,0.558,1.648,0.558,1.648l0.081,51.05c0,0-0.062,1.603-0.356,2.102 - s-0.956,0.418-0.956,0.418"/> -<path id="Stroke-2912" class="st8" d="M14.637,14.573c0.012-0.813,1.759,0.185,1.759,0.185l25.071,15.065 - c0,0,0.299,0.273,0.803,0.799c0.504,0.525,0.558,1.648,0.558,1.648l0.081,51.05c0,0-0.062,1.603-0.356,2.102 - s-0.956,0.418-0.956,0.418"/> -<path id="Stroke-2908" class="st8" d="M27.122,7.422c0.012-0.813,1.759,0.185,1.759,0.185l25.071,15.065 - c0,0,0.299,0.273,0.803,0.799c0.504,0.525,0.558,1.648,0.558,1.648l0.081,51.05c0,0-0.062,1.603-0.356,2.102 - s-0.956,0.418-0.956,0.418"/> -<path id="Stroke-2906" class="st8" d="M33.564,3.844c0.012-0.813,1.759,0.185,1.759,0.185l25.071,15.065 - c0,0,0.299,0.273,0.803,0.799c0.504,0.525,0.558,1.648,0.558,1.648l0.081,51.05c0,0-0.062,1.603-0.356,2.102 - s-0.956,0.418-0.956,0.418"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 66.553 93.942"><style><![CDATA[.K{fill:#bbbdbf}.L{fill:#d7d8d9}.M{fill:#dfe0df}.N{stroke-linejoin:round}.O{stroke-width:.525}.P{stroke-linecap:round}]]></style><g fill="none" stroke="#626366" stroke-width="2.835" class="N"><path d="M60.2 19.312c.53.318.968 1.11.97 1.756l.037 53.61c0 .647-.438.904-.967.585L34.25 59.65c-.536-.322-.974-1.106-.974-1.752l-.038-53.612c-.001-.647.437-.912.973-.59L60.2 19.312z"/><path d="M53.95 22.673c.53.318.968 1.11.97 1.756l.037 53.61c0 .647-.438.904-.967.585L28.004 63.01c-.536-.322-.974-1.106-.974-1.752l-.038-53.612c-.001-.647.437-.912.973-.59L53.95 22.673z"/><path d="M47.716 26.264c.53.318.968 1.11.97 1.756l.037 53.61c0 .647-.438.904-.967.585L21.77 66.6c-.536-.322-.974-1.106-.974-1.752l-.038-53.61c-.001-.647.437-.912.973-.59l25.986 15.615z"/><use xlink:href="#B"/><path d="M34.627 32.875c.53.318.968 1.1.97 1.756l.037 53.6c0 .647-.438.904-.967.585L8.68 73.214c-.536-.322-.974-1.106-.974-1.752l-.038-53.6c-.001-.647.437-.912.973-.6l25.986 15.613zM56.5 22.8l3.644-1.935.038 53.612-3.645 1.934z"/><use xlink:href="#C"/><use xlink:href="#C" x="-6.387" y="3.546"/><use xlink:href="#C" x="-12.637" y="7.106"/><use xlink:href="#D"/><use xlink:href="#E"/><use xlink:href="#F"/><use xlink:href="#G"/><use xlink:href="#H"/><use xlink:href="#H" x="-6.388" y="3.548"/><use xlink:href="#I"/><use xlink:href="#H" x="-19.607" y="10.161"/><use xlink:href="#H" x="-25.839" y="13.731"/><use xlink:href="#E" x="32.107" y="-17.278"/><path d="M34.498 3.543l3.645-1.935L64.13 17.226l-3.645 1.933zm26.955 17.372L65.1 18.98l.037 53.6-3.645 1.934z"/><use xlink:href="#J"/><use xlink:href="#K"/><path d="M24.296 89.83l-1.457.774c.2-.1.308-.334.308-.67l1.458-.774c0 .337-.12.57-.3.67zM6.35 25.082l1.458-.773 15.785 9.483-1.458.774z"/><path d="M23.11 36.324l1.458-.775.038 53.612-1.458.775z"/><path d="M22.135 34.567l1.458-.774c.535.322.974 1.113.974 1.758l-1.458.774c0-.646-.438-1.436-.974-1.758z"/><use xlink:href="#L"/><use xlink:href="#M"/><path d="M18.607 52.48l-3.395-2.058v-4.83l3.395 2.062z"/><use xlink:href="#M" y="12.256"/><path d="M18.607 64.738l-3.395-2.058v-4.83l3.395 2.06zM13.3 65.984l-3.393-2.06v-4.827l3.393 2.06zm5.307 9.666l-3.395-2.06v-4.83l3.395 2.06zm0 6.13l-3.395-2.06V74.9l3.395 2.062z"/></g><path d="M64.13 17.226l-3.645 1.933L34.498 3.543l3.645-1.935z" class="M"/><path d="M65.136 72.6l-3.645 1.934-.038-53.61L65.1 18.98z" class="K"/><path d="M60.486 19.16c.53.318.968 1.11.97 1.756l.037 53.61c0 .647-.438.904-.967.585L34.537 59.497c-.536-.322-.974-1.106-.974-1.752l-.037-53.612c-.001-.647.437-.912.973-.59L60.486 19.16z" class="L"/><path d="M57.88 20.784l-3.645 1.932L28.248 7.102l3.645-1.934z" class="M"/><path d="M58.886 76.148l-3.645 1.934-.038-53.6 3.645-1.935z" class="K"/><path d="M54.236 22.718c.53.318.968 1.11.97 1.756l.037 53.61c0 .647-.438.904-.967.585L28.288 63.055c-.536-.322-.974-1.106-.974-1.752L27.276 7.69c-.001-.647.437-.912.973-.59l25.987 15.616z" class="L"/><path d="M51.492 24.33l-3.645 1.934L21.86 10.65l3.645-1.935z" class="M"/><path d="M52.498 79.695l-3.645 1.934-.037-53.61 3.644-1.937z" class="K"/><path d="M47.847 26.264c.53.318.968 1.11.97 1.756l.037 53.61c0 .647-.438.904-.967.585L21.9 66.6c-.536-.322-.974-1.106-.974-1.752l-.038-53.61c-.001-.647.437-.912.973-.59l25.987 15.616z" class="L"/><path d="M45.242 27.89l-3.645 1.934L15.6 14.208l3.645-1.935z" class="M"/><path d="M46.248 83.254l-3.645 1.934-.037-53.61 3.644-1.937z" class="K"/><use xlink:href="#B" class="L"/><path d="M38.272 30.944l-3.645 1.93L8.64 17.263l3.645-1.937z" class="M"/><path d="M39.278 86.31l-3.645 1.933-.036-53.6 3.645-1.934z" class="K"/><path d="M34.627 32.877c.53.318.968 1.11.97 1.756l.037 53.61c0 .647-.438.904-.967.585L8.68 73.214c-.536-.322-.974-1.106-.974-1.752l-.038-53.6c-.001-.647.437-.912.973-.59l25.986 15.614z" class="L"/><path d="M32.022 34.502l-3.644 1.934L2.39 20.822l3.645-1.936z" class="M"/><path d="M33.028 89.867L29.384 91.8l-.037-53.61 3.645-1.936z" class="K"/><use xlink:href="#K" class="L"/><path d="M7.57 24.458l15.922 9.583-1.47.783L6.1 25.24z" fill="#a9abae"/><path d="M24.567 35.55l.038 53.956-1.458.78-.038-53.958z" fill="#6c6e70"/><use xlink:href="#L" fill="#939597"/><g fill="#fefefe"><use xlink:href="#M"/><path d="M18.607 52.48l-3.395-2.058v-4.83l3.395 2.062z"/><use xlink:href="#M" y="12.256"/><path d="M18.607 64.738l-3.395-2.058v-4.83l3.395 2.06zM13.3 65.984l-3.393-2.06v-4.827l3.393 2.06zm5.307 9.666l-3.395-2.06v-4.83l3.395 2.06zm0 6.13l-3.395-2.06V74.9l3.395 2.062z"/></g><g class="L"><path d="M60.2 19.312c.46.407.336.272.572.555.29.347.463 1.155.463 1.155l3.93-2.088c.05-.222-.214-.784-.422-1.097-.26-.4-.612-.61-.612-.61l-3.93 2.086z"/><use xlink:href="#J" x="-32.108" y="17.276"/><use xlink:href="#J" x="-25.859" y="13.717"/><use xlink:href="#J" x="-18.889" y="10.663"/><use xlink:href="#J" x="-12.639" y="7.104"/><use xlink:href="#J" x="-6.251" y="3.558"/></g><g class="K"><use xlink:href="#E" x="32.107" y="-17.278"/><use xlink:href="#C"/><use xlink:href="#C" x="-6.387" y="3.546"/><use xlink:href="#C" x="-12.637" y="7.106"/><use xlink:href="#D"/><use xlink:href="#E"/><use xlink:href="#H"/><use xlink:href="#H" x="-6.388" y="3.548"/><use xlink:href="#I"/><use xlink:href="#H" x="-19.607" y="10.161"/><use xlink:href="#H" x="-25.839" y="13.731"/></g><use xlink:href="#N" fill="none" stroke="#939597" class="N O P"/><g class="K"><use xlink:href="#G"/><use xlink:href="#F"/><path d="M22.035 34.814l1.458-.774c.535.322.974 1.113.974 1.758l-1.458.774c0-.646-.438-1.435-.974-1.758z"/></g><path d="M24.196 90.23l-1.457.774c.19-.1.308-.334.308-.67l1.458-.774c0 .337-.12.57-.31.67z" fill="#6c6e70"/><g fill="none" class="N O P"><path d="M5.377 25.67c.01-.736.973-.176.973-.176l15.348 9.223.727.723c.456.475.505 1.492.505 1.492l.093 52.034s.082 1.19-.184 1.64-.98-.27-.98-.27" stroke="#efeeee"/><g stroke="#939597"><use xlink:href="#N" x="19.622" y="-10.114"/><use xlink:href="#N" x="6.459" y="-3.583"/><use xlink:href="#N" x="13.372" y="-6.555"/><use xlink:href="#N" x="25.857" y="-13.706"/><use xlink:href="#N" x="32.299" y="-17.284"/></g></g><defs ><path id="B" d="M41.597 29.823c.53.318.968 1.11.97 1.756l.037 53.61c0 .647-.438.904-.967.585L15.65 70.16c-.536-.322-.974-1.106-.974-1.752l-.038-53.61c-.001-.647.437-.912.973-.59l25.987 15.615z"/><path id="C" d="M58.58 76.814l-3.645 1.935c.188-.1.305-.33.305-.666l3.645-1.935c0 .335-.118.567-.305.666z"/><path id="D" d="M38.973 86.975L35.328 88.9c.188-.1.305-.33.305-.666l3.645-1.935c0 .335-.118.567-.305.666z"/><path id="E" d="M32.723 90.535l-3.645 1.935c.188-.1.305-.33.305-.666l3.645-1.935c0 .333-.118.566-.305.666z"/><path id="F" d="M5.436 25.15l1.458-.774c.175-.092.408-.073.665.082L6.1 25.23c-.257-.154-.5-.174-.665-.08z"/><path id="G" d="M33.805 3.378s.147-.062.307-.01l.16.052.21.115L38.143 1.6l-.266-.14-.162-.044-.14-.007c.14.007-.125.025-.125.025l-3.645 1.935z"/><path id="H" d="M27.555 6.935s.147-.062.307-.01l.16.052.21.115 3.663-1.924-.266-.14-.162-.044-.14-.007c.14.007-.125.025-.125.025l-3.645 1.935z"/><path id="I" d="M14.935 14.052s.147-.062.307-.01l.16.052.21.115 3.663-1.924-.266-.14-.163-.043-.14-.007c.14.007-.125.025-.125.025l-3.644 1.934z"/><path id="J" d="M60.486 19.16c.426.377.312.252.53.514.27.322.43 1.07.43 1.07l3.645-1.935c.046-.206-.198-.727-.39-1.017-.24-.36-.568-.566-.568-.566l-3.645 1.934z"/><path id="K" d="M28.378 36.436c.53.318.968 1.11.97 1.756l.037 53.61c0 .647-.438.904-.967.585L2.43 76.772c-.536-.322-.974-1.106-.974-1.752l-.038-53.6c-.001-.647.437-.912.973-.59l25.987 15.615z"/><path id="L" d="M22.135 34.566c.536.322.974 1.112.974 1.758l.038 53.613c0 .646-.437.9-.973.588L6.4 81.04c-.537-.323-.975-1.114-.975-1.76l-.038-53.61c0-.645.437-.91.973-.588l15.785 9.484z"/><path id="M" d="M18.607 46.354l-3.395-2.062v-4.827l3.395 2.06z"/><path id="N" d="M1.265 21.128c.012-.813 1.76.185 1.76.185l25.07 15.065.803.8c.504.525.558 1.648.558 1.648l.08 51.05s-.062 1.603-.356 2.102-.956.418-.956.418"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/switch/Industrial_Ethernet_IE200_POE.svg b/src/main/webapp/img/lib/allied_telesis/switch/Industrial_Ethernet_IE200_POE.svg index c1b2566ddc6cd54242239900db9e8a346fbb374d..5c4525db82d506553be0d6e4dbc06d957fb3d5ac 100644 --- a/src/main/webapp/img/lib/allied_telesis/switch/Industrial_Ethernet_IE200_POE.svg +++ b/src/main/webapp/img/lib/allied_telesis/switch/Industrial_Ethernet_IE200_POE.svg @@ -1,234 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" - id="Layer_1" inkscape:version="0.92.3 (2405546, 2018-03-11)" sodipodi:docname="Industrial_Ethernet_IE200_POE3.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 66.553 93.887" - style="enable-background:new 0 0 66.553 93.887;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#626366;stroke-width:2.835;stroke-linejoin:round;} - .st1{fill:#DFE0DF;} - .st2{fill:#BBBDBF;} - .st3{fill:#D7D8D9;} - .st4{fill:#A9ABAE;} - .st5{fill:#6C6E70;} - .st6{fill:#231F20;} - .st7{fill:#FEFEFE;} - .st8{fill:none;stroke:#939597;stroke-width:0.525;stroke-linecap:round;stroke-linejoin:round;} - .st9{fill:#9A9C9F;} - .st10{fill:#A5A7AA;} - .st11{fill:none;stroke:#EFEEEE;stroke-width:0.525;stroke-linecap:round;stroke-linejoin:round;} -</style> -<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview999" inkscape:current-layer="Layer_1" inkscape:cx="4.1291317" inkscape:cy="52.58662" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-height="1017" inkscape:window-maximized="1" inkscape:window-width="1920" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="8" objecttolerance="10" pagecolor="#ffffff" showgrid="false"> - </sodipodi:namedview> -<title id="title4">icon-IE200-poe</title> -<desc id="desc6">Created with Sketch.</desc> -<path id="Stroke-35" inkscape:connector-curvature="0" class="st0" d="M64.831,73.201l-3.645,1.935 - c0.188-0.1,0.305-0.331,0.305-0.666l3.645-1.935C65.136,72.87,65.018,73.103,64.831,73.201z"/> -<polygon id="Stroke-85" class="st0" points="34.498,3.49 38.143,1.553 64.13,17.17 60.485,19.104 "/> -<polygon id="Stroke-87" class="st0" points="65.136,72.536 61.491,74.47 61.453,20.859 65.099,18.924 "/> -<path id="Stroke-204" class="st0" d="M60.486,19.104c0.529,0.318,0.968,1.109,0.969,1.756l0.037,53.611 - c0,0.647-0.438,0.904-0.967,0.585L34.537,59.442c-0.536-0.322-0.974-1.106-0.974-1.752L33.526,4.078 - c-0.001-0.647,0.437-0.912,0.973-0.589L60.486,19.104z"/> -<path id="Stroke-206" inkscape:connector-curvature="0" class="st0" d="M60.486,19.104c0.426,0.377,0.312,0.252,0.53,0.514 - c0.27,0.322,0.429,1.07,0.429,1.07s3.621-1.832,3.645-1.935c0.046-0.206-0.198-0.727-0.391-1.017 - c-0.24-0.361-0.568-0.566-0.568-0.566L60.486,19.104z"/> -<path id="Stroke-208" inkscape:connector-curvature="0" class="st0" d="M33.9,3.378c0,0,0.147-0.062,0.307-0.011l0.159,0.052 - l0.209,0.115l3.663-1.924L37.972,1.47L37.81,1.424l-0.14-0.007c0.14,0.007-0.125,0.025-0.125,0.025L33.9,3.378z"/> -<path id="Stroke-245" inkscape:connector-curvature="0" class="st0" d="M58.581,76.76l-3.645,1.935 - c0.188-0.1,0.305-0.331,0.305-0.666l3.645-1.935C58.886,76.429,58.768,76.661,58.581,76.76z"/> -<polygon id="Stroke-295" class="st0" points="28.248,7.047 31.893,5.111 57.88,20.729 54.235,22.661 "/> -<polygon id="Stroke-297" class="st0" points="58.886,76.094 55.241,78.028 55.203,24.417 58.848,22.482 "/> -<path id="Stroke-414" class="st0" d="M54.236,22.661c0.529,0.318,0.968,1.109,0.969,1.756l0.037,53.611 - c0,0.647-0.438,0.904-0.967,0.585L28.288,63c-0.536-0.322-0.974-1.106-0.974-1.752L27.276,7.635 - c-0.001-0.647,0.437-0.912,0.973-0.589L54.236,22.661z"/> -<path id="Stroke-416" inkscape:connector-curvature="0" class="st0" d="M54.236,22.661c0.426,0.377,0.312,0.252,0.53,0.514 - c0.27,0.322,0.429,1.07,0.429,1.07s3.621-1.832,3.645-1.935c0.046-0.206-0.198-0.727-0.391-1.017 - c-0.24-0.361-0.568-0.566-0.568-0.566L54.236,22.661z"/> -<path id="Stroke-418" inkscape:connector-curvature="0" class="st0" d="M27.65,6.938c0,0,0.147-0.062,0.307-0.011l0.159,0.052 - l0.209,0.115l3.663-1.924l-0.266-0.141L31.56,4.984l-0.14-0.007c0.14,0.007-0.125,0.025-0.125,0.025L27.65,6.938z"/> -<path id="Stroke-455" inkscape:connector-curvature="0" class="st0" d="M52.193,80.307l-3.645,1.935 - c0.188-0.1,0.305-0.331,0.305-0.666l3.645-1.935C52.498,79.976,52.38,80.207,52.193,80.307z"/> -<polygon id="Stroke-505" class="st0" points="21.86,10.594 25.505,8.658 51.492,24.274 47.847,26.208 "/> -<polygon id="Stroke-507" class="st0" points="52.498,79.641 48.853,81.575 48.816,27.965 52.46,26.028 "/> -<path id="Stroke-624" class="st0" d="M47.847,26.208c0.529,0.318,0.968,1.109,0.969,1.756l0.037,53.611 - c0,0.647-0.438,0.904-0.967,0.585L21.899,66.546c-0.536-0.322-0.974-1.106-0.974-1.752l-0.038-53.611 - c-0.001-0.647,0.437-0.912,0.973-0.589L47.847,26.208z"/> -<path id="Stroke-626" inkscape:connector-curvature="0" class="st0" d="M47.847,26.208c0.426,0.377,0.312,0.252,0.53,0.514 - c0.27,0.322,0.429,1.07,0.429,1.07s3.621-1.832,3.645-1.935c0.046-0.206-0.198-0.727-0.391-1.017 - c-0.24-0.361-0.568-0.566-0.568-0.566L47.847,26.208z"/> -<path id="Stroke-628" inkscape:connector-curvature="0" class="st0" d="M21.261,10.483c0,0,0.147-0.062,0.307-0.011l0.159,0.052 - l0.209,0.115l3.663-1.924l-0.266-0.141L25.171,8.53l-0.14-0.007c0.14,0.007-0.125,0.025-0.125,0.025L21.261,10.483z"/> -<path id="Stroke-665" inkscape:connector-curvature="0" class="st0" d="M45.943,83.866l-3.645,1.935 - c0.188-0.1,0.305-0.331,0.305-0.666l3.645-1.935C46.248,83.534,46.13,83.766,45.943,83.866z"/> -<polygon id="Stroke-715" class="st0" points="15.61,14.153 19.255,12.217 45.242,27.833 41.597,29.767 "/> -<polygon id="Stroke-717" class="st0" points="46.248,83.2 42.603,85.134 42.566,31.524 46.21,29.587 "/> -<path id="Stroke-834" class="st0" d="M41.597,29.767c0.529,0.318,0.968,1.109,0.969,1.756l0.037,53.611 - c0,0.647-0.438,0.904-0.967,0.585L15.649,70.104c-0.536-0.322-0.974-1.106-0.974-1.752l-0.038-53.611 - c-0.001-0.647,0.437-0.912,0.973-0.589L41.597,29.767z"/> -<path id="Stroke-836" inkscape:connector-curvature="0" class="st0" d="M41.597,29.767c0.426,0.377,0.312,0.252,0.53,0.514 - c0.27,0.322,0.429,1.07,0.429,1.07s3.621-1.832,3.645-1.935c0.046-0.206-0.198-0.727-0.391-1.017 - c-0.24-0.361-0.568-0.566-0.568-0.566L41.597,29.767z"/> -<path id="Stroke-838" inkscape:connector-curvature="0" class="st0" d="M15.011,14.042c0,0,0.147-0.062,0.307-0.011l0.159,0.052 - l0.209,0.115l3.663-1.924l-0.266-0.141L18.92,12.09l-0.14-0.007c0.14,0.007-0.125,0.025-0.125,0.025L15.011,14.042z"/> -<path id="Stroke-875" inkscape:connector-curvature="0" class="st0" d="M38.973,86.92l-3.645,1.935 - c0.188-0.1,0.305-0.331,0.305-0.666l3.645-1.935C39.278,86.589,39.16,86.82,38.973,86.92z"/> -<polygon id="Stroke-925" class="st0" points="8.641,17.208 12.286,15.271 38.272,30.889 34.627,32.82 "/> -<polygon id="Stroke-927" class="st0" points="39.278,86.254 35.633,88.189 35.597,34.576 39.242,32.642 "/> -<path id="Stroke-1044" class="st0" d="M34.627,32.822c0.529,0.318,0.968,1.109,0.969,1.756l0.037,53.611 - c0,0.647-0.438,0.904-0.967,0.585L8.68,73.161c-0.536-0.322-0.974-1.106-0.974-1.752L7.668,17.798 - c-0.001-0.647,0.437-0.912,0.973-0.589L34.627,32.822z"/> -<path id="Stroke-1046" inkscape:connector-curvature="0" class="st0" d="M34.627,32.822c0.426,0.377,0.312,0.252,0.53,0.514 - c0.27,0.322,0.429,1.07,0.429,1.07s3.621-1.832,3.645-1.935c0.046-0.206-0.198-0.727-0.391-1.017 - c-0.24-0.361-0.568-0.566-0.568-0.566L34.627,32.822z"/> -<path id="Stroke-1048" inkscape:connector-curvature="0" class="st0" d="M8.042,17.097c0,0,0.147-0.062,0.307-0.011l0.159,0.052 - l0.209,0.115l3.663-1.924l-0.266-0.141l-0.162-0.044l-0.14-0.007c0.14,0.007-0.125,0.025-0.125,0.025L8.042,17.097z"/> -<path id="Stroke-1085" inkscape:connector-curvature="0" class="st0" d="M32.723,90.479l-3.645,1.935 - c0.188-0.1,0.305-0.331,0.305-0.666l3.645-1.935C33.028,90.148,32.91,90.38,32.723,90.479z"/> -<polygon id="Stroke-1135" class="st0" points="2.391,20.767 6.036,18.831 32.022,34.447 28.378,36.381 "/> -<polygon id="Stroke-1137" class="st0" points="29.347,38.137 32.992,36.201 33.028,89.814 29.384,91.747 "/> -<path id="Stroke-1254" class="st0" d="M28.378,36.381c0.529,0.318,0.968,1.109,0.969,1.756l0.037,53.611 - c0,0.647-0.438,0.904-0.967,0.585L2.43,76.718c-0.536-0.322-0.974-1.106-0.974-1.752l-0.038-53.61 - c-0.001-0.647,0.437-0.912,0.973-0.589L28.378,36.381z"/> -<path id="Stroke-1256" inkscape:connector-curvature="0" class="st0" d="M28.378,36.381c0.426,0.377,0.312,0.252,0.53,0.514 - c0.27,0.322,0.429,1.07,0.429,1.07s3.621-1.832,3.645-1.935c0.046-0.206-0.198-0.727-0.391-1.017 - c-0.24-0.361-0.568-0.566-0.568-0.566L28.378,36.381z"/> -<path id="Stroke-1258" inkscape:connector-curvature="0" class="st0" d="M1.792,20.656c0,0,0.147-0.062,0.307-0.011l0.159,0.052 - l0.209,0.115l3.663-1.924l-0.266-0.141l-0.162-0.044l-0.14-0.007c0.14,0.007-0.125,0.025-0.125,0.025L1.792,20.656z"/> -<path id="Stroke-1295" inkscape:connector-curvature="0" class="st0" d="M24.296,89.777l-1.457,0.774 - c0.189-0.1,0.308-0.334,0.308-0.67l1.458-0.774C24.605,89.444,24.485,89.676,24.296,89.777z"/> -<path id="Stroke-1343" inkscape:connector-curvature="0" class="st0" d="M5.685,24.944l1.458-0.774 - c0.175-0.092,0.408-0.073,0.665,0.082L6.35,25.026C6.093,24.872,5.86,24.852,5.685,24.944z"/> -<polygon id="Stroke-1345" class="st0" points="6.35,25.026 7.808,24.253 23.593,33.736 22.135,34.51 "/> -<polygon id="Stroke-1347" class="st0" points="23.109,36.269 24.567,35.494 24.605,89.107 23.147,89.882 "/> -<path id="Stroke-1456" inkscape:connector-curvature="0" class="st0" d="M22.135,34.51l1.458-0.774 - c0.535,0.322,0.974,1.113,0.974,1.758l-1.458,0.774C23.109,35.623,22.671,34.833,22.135,34.51z"/> -<path id="Stroke-1458" class="st0" d="M22.135,34.51c0.536,0.322,0.974,1.112,0.974,1.758l0.038,53.613 - c0,0.646-0.437,0.91-0.973,0.588L6.39,80.986c-0.537-0.323-0.975-1.114-0.975-1.759L5.377,25.615c0-0.645,0.437-0.911,0.973-0.588 - L22.135,34.51z"/> -<polygon id="Stroke-1460" class="st0" points="18.607,46.299 15.212,44.236 15.212,39.41 18.607,41.47 "/> -<polygon id="Stroke-1462" class="st0" points="18.607,52.425 15.212,50.367 15.212,45.536 18.607,47.597 "/> -<polygon id="Stroke-1464" class="st0" points="18.607,58.556 15.212,56.493 15.212,51.667 18.607,53.728 "/> -<polygon id="Stroke-1466" class="st0" points="18.607,64.684 15.212,62.625 15.212,57.795 18.607,59.855 "/> -<polygon id="Stroke-1468" class="st0" points="13.31,65.93 9.917,63.868 9.917,59.042 13.31,61.102 "/> -<polygon id="Stroke-1470" class="st0" points="18.607,75.596 15.212,73.536 15.212,68.707 18.607,70.767 "/> -<polygon id="Stroke-1472" class="st0" points="18.607,81.725 15.212,79.665 15.212,74.836 18.607,76.898 "/> -<polygon id="Fill-1555" class="st1" points="34.498,3.49 38.143,1.553 64.13,17.17 60.485,19.104 "/> -<polygon id="Fill-1557" class="st2" points="65.136,72.536 61.491,74.47 61.453,20.859 65.099,18.924 "/> -<path id="Fill-1672" inkscape:connector-curvature="0" class="st3" d="M60.486,19.104c0.529,0.318,0.968,1.109,0.969,1.756 - l0.037,53.611c0,0.647-0.438,0.904-0.967,0.585L34.537,59.442c-0.536-0.322-0.974-1.106-0.974-1.752L33.526,4.078 - c-0.001-0.647,0.437-0.912,0.973-0.589L60.486,19.104z"/> -<polygon id="Fill-1759" class="st1" points="28.248,7.047 31.893,5.111 57.88,20.729 54.235,22.661 "/> -<polygon id="Fill-1761" class="st2" points="58.886,76.094 55.241,78.028 55.203,24.417 58.848,22.482 "/> -<path id="Fill-1876" inkscape:connector-curvature="0" class="st3" d="M54.236,22.661c0.529,0.318,0.968,1.109,0.969,1.756 - l0.037,53.611c0,0.647-0.438,0.904-0.967,0.585L28.288,63c-0.536-0.322-0.974-1.106-0.974-1.752L27.276,7.635 - c-0.001-0.647,0.437-0.912,0.973-0.589L54.236,22.661z"/> -<polygon id="Fill-1963" class="st1" points="21.86,10.594 25.505,8.658 51.492,24.274 47.847,26.208 "/> -<polygon id="Fill-1965" class="st2" points="52.498,79.641 48.853,81.575 48.816,27.965 52.46,26.028 "/> -<path id="Fill-2080" inkscape:connector-curvature="0" class="st3" d="M47.847,26.208c0.529,0.318,0.968,1.109,0.969,1.756 - l0.037,53.611c0,0.647-0.438,0.904-0.967,0.585L21.899,66.546c-0.536-0.322-0.974-1.106-0.974-1.752l-0.038-53.611 - c-0.001-0.647,0.437-0.912,0.973-0.589L47.847,26.208z"/> -<polygon id="Fill-2167" class="st1" points="15.61,14.153 19.255,12.217 45.242,27.833 41.597,29.767 "/> -<polygon id="Fill-2169" class="st2" points="46.248,83.2 42.603,85.134 42.566,31.524 46.21,29.587 "/> -<path id="Fill-2284" inkscape:connector-curvature="0" class="st3" d="M41.597,29.767c0.529,0.318,0.968,1.109,0.969,1.756 - l0.037,53.611c0,0.647-0.438,0.904-0.967,0.585L15.649,70.104c-0.536-0.322-0.974-1.106-0.974-1.752l-0.038-53.611 - c-0.001-0.647,0.437-0.912,0.973-0.589L41.597,29.767z"/> -<polygon id="Fill-2371" class="st1" points="8.641,17.208 12.286,15.271 38.272,30.889 34.627,32.82 "/> -<polygon id="Fill-2373" class="st2" points="39.278,86.254 35.633,88.189 35.597,34.576 39.242,32.642 "/> -<path id="Fill-2488" inkscape:connector-curvature="0" class="st3" d="M34.627,32.822c0.529,0.318,0.968,1.109,0.969,1.756 - l0.037,53.611c0,0.647-0.438,0.904-0.967,0.585L8.68,73.161c-0.536-0.322-0.974-1.106-0.974-1.752L7.668,17.798 - c-0.001-0.647,0.437-0.912,0.973-0.589L34.627,32.822z"/> -<polygon id="Fill-2575" class="st1" points="2.391,20.767 6.036,18.831 32.022,34.447 28.378,36.381 "/> -<polygon id="Fill-2577" class="st2" points="33.028,89.814 29.384,91.747 29.347,38.137 32.992,36.201 "/> -<path id="Fill-2692" inkscape:connector-curvature="0" class="st3" d="M28.378,36.381c0.529,0.318,0.968,1.109,0.969,1.756 - l0.037,53.611c0,0.647-0.438,0.904-0.967,0.585L2.43,76.718c-0.536-0.322-0.974-1.106-0.974-1.752l-0.038-53.61 - c-0.001-0.647,0.437-0.912,0.973-0.589L28.378,36.381z"/> -<polygon id="Fill-2779" class="st4" points="6.35,25.026 7.808,24.253 23.593,33.736 22.135,34.51 "/> -<polygon id="Fill-2781" class="st5" points="23.109,36.269 24.567,35.494 24.605,89.107 23.147,89.882 "/> -<path id="Fill-2890" inkscape:connector-curvature="0" class="st6" d="M22.135,34.51c0.536,0.322,0.974,1.112,0.974,1.758 - l0.038,53.613c0,0.646-0.437,0.91-0.973,0.588L6.39,80.986c-0.537-0.323-0.975-1.114-0.975-1.759L5.377,25.615 - c0-0.645,0.437-0.911,0.973-0.588L22.135,34.51z"/> -<polygon id="Fill-2892" class="st7" points="18.607,50.299 15.212,48.236 15.212,43.41 18.607,45.47 "/> -<polygon id="Fill-2894" class="st7" points="18.607,56.425 15.212,54.367 15.212,49.536 18.607,51.597 "/> -<polygon id="Fill-2896" class="st7" points="18.607,62.556 15.212,60.493 15.212,55.667 18.607,57.728 "/> -<polygon id="Fill-2898" class="st7" points="18.607,68.684 15.212,66.624 15.212,61.795 18.607,63.855 "/> -<polygon id="Fill-2900" class="st7" points="13.31,69.93 9.917,67.868 9.917,63.042 13.31,65.101 "/> -<polygon id="Fill-2902" class="st7" points="18.607,79.596 15.212,77.536 15.212,72.707 18.607,74.767 "/> -<polygon id="Fill-2904" class="st7" points="18.607,85.725 15.212,83.665 15.212,78.836 18.607,80.898 "/> -<path id="Stroke-2906" class="st8" d="M33.564,3.787c0.012-0.813,1.759,0.185,1.759,0.185l25.071,15.065 - c0,0,0.299,0.273,0.803,0.799c0.504,0.525,0.558,1.648,0.558,1.648l0.081,51.05c0,0-0.062,1.603-0.356,2.102 - s-0.956,0.418-0.956,0.418"/> -<path id="Stroke-2908" class="st8" d="M27.122,7.366c0.012-0.813,1.759,0.185,1.759,0.185l25.071,15.064 - c0,0,0.299,0.273,0.803,0.799c0.504,0.525,0.558,1.648,0.558,1.648l0.081,51.05c0,0-0.062,1.603-0.356,2.102 - s-0.956,0.418-0.956,0.418"/> -<path id="Stroke-2910" class="st8" d="M20.887,10.958c0.012-0.813,1.759,0.185,1.759,0.185l25.071,15.065 - c0,0,0.299,0.273,0.803,0.799c0.504,0.525,0.558,1.648,0.558,1.648l0.081,51.05c0,0-0.062,1.603-0.356,2.102 - s-0.956,0.418-0.956,0.418"/> -<path id="Stroke-2912" class="st8" d="M14.637,14.517c0.012-0.813,1.759,0.185,1.759,0.185l25.071,15.065 - c0,0,0.299,0.273,0.803,0.799c0.504,0.525,0.558,1.648,0.558,1.648l0.081,51.05c0,0-0.062,1.603-0.356,2.102 - s-0.956,0.418-0.956,0.418"/> -<path id="Stroke-2914" class="st8" d="M7.724,17.49c0.012-0.813,1.759,0.185,1.759,0.185l25.071,15.065c0,0,0.299,0.273,0.803,0.799 - c0.504,0.525,0.558,1.648,0.558,1.648l0.081,51.05c0,0-0.062,1.603-0.356,2.102s-0.956,0.418-0.956,0.418"/> -<polygon id="Fill-2920" class="st7" points="14.066,43.534 10.243,47.144 13.044,47.762 10.252,50.013 12.195,50.442 7.248,54.43 - 10.045,50.853 7.606,50.317 9.945,48.429 7.162,47.815 13.806,43.708 "/> -<path id="Fill-2922" class="st7" d="M9.35,33.243l0.566,0.32c0.505,0.287,0.851,0.092,0.851-0.748c0-0.803-0.248-1.403-0.886-1.764 - l-0.531-0.3V33.243z M8.074,28.81l2.234,1.266c1.294,0.731,1.735,2.211,1.735,3.44c0,1.7-0.805,2.012-2.01,1.33L9.35,34.461v3.274 - l-1.276-0.724V28.81z"/> -<path id="Fill-2924" class="st7" d="M14.143,39.527c0.496,0.282,0.656-0.26,0.656-1.798c0-1.539-0.16-2.262-0.656-2.543 - c-0.603-0.342-0.655,0.536-0.655,1.799C13.488,38.249,13.54,39.186,14.143,39.527 M14.143,34.104 - c1.472,0.798,1.878,2.165,1.878,4.314c0,2.114-0.477,2.979-1.878,2.188c-1.47-0.798-1.879-2.167-1.879-4.314 - C12.264,34.18,12.742,33.313,14.143,34.104"/> -<polygon id="Fill-2926" class="st7" points="20.248,35.701 20.248,37.055 17.989,35.778 17.989,37.707 20.115,38.91 20.115,40.265 - 17.989,39.062 17.989,41.267 20.338,42.597 20.338,43.951 16.713,41.901 16.713,33.7 "/> -<path id="Stroke-1085-1" inkscape:connector-curvature="0" class="st9" d="M32.723,90.479l-3.645,1.935 - c0.188-0.1,0.305-0.331,0.305-0.666l3.645-1.935C33.028,90.148,32.91,90.38,32.723,90.479z"/> -<path id="Stroke-875-9" inkscape:connector-curvature="0" class="st9" d="M38.973,86.92l-3.645,1.935 - c0.188-0.1,0.305-0.331,0.305-0.666l3.645-1.935C39.278,86.589,39.16,86.82,38.973,86.92z"/> -<path id="Stroke-665-4" inkscape:connector-curvature="0" class="st9" d="M45.943,83.866l-3.645,1.935 - c0.188-0.1,0.305-0.331,0.305-0.666l3.645-1.935C46.248,83.534,46.13,83.766,45.943,83.866z"/> -<path id="Stroke-455-2" inkscape:connector-curvature="0" class="st9" d="M52.193,80.307l-3.645,1.935 - c0.188-0.1,0.305-0.331,0.305-0.666l3.645-1.935C52.498,79.976,52.38,80.207,52.193,80.307z"/> -<path id="Stroke-245-6" inkscape:connector-curvature="0" class="st9" d="M58.581,76.76l-3.645,1.935 - c0.188-0.1,0.305-0.331,0.305-0.666l3.645-1.935C58.886,76.429,58.768,76.661,58.581,76.76z"/> -<path id="Stroke-35-9" inkscape:connector-curvature="0" class="st9" d="M64.831,73.201l-3.645,1.935 - c0.188-0.1,0.305-0.331,0.305-0.666l3.645-1.935C65.136,72.87,65.018,73.103,64.831,73.201z"/> -<path id="Stroke-1256-4" inkscape:connector-curvature="0" class="st9" d="M28.378,36.381c0.426,0.377,0.312,0.252,0.53,0.514 - c0.27,0.322,0.429,1.07,0.429,1.07s3.621-1.832,3.645-1.935c0.046-0.206-0.198-0.727-0.391-1.017 - c-0.24-0.361-0.568-0.566-0.568-0.566L28.378,36.381z"/> -<path id="Stroke-1046-7" inkscape:connector-curvature="0" class="st9" d="M34.627,32.822c0.426,0.377,0.312,0.252,0.53,0.514 - c0.27,0.322,0.429,1.07,0.429,1.07s3.621-1.832,3.645-1.935c0.046-0.206-0.198-0.727-0.391-1.017 - c-0.24-0.361-0.568-0.566-0.568-0.566L34.627,32.822z"/> -<path id="Stroke-836-9" inkscape:connector-curvature="0" class="st9" d="M41.597,29.767c0.426,0.377,0.312,0.252,0.53,0.514 - c0.27,0.322,0.429,1.07,0.429,1.07s3.621-1.832,3.645-1.935c0.046-0.206-0.198-0.727-0.391-1.017 - c-0.24-0.361-0.568-0.566-0.568-0.566L41.597,29.767z"/> -<path id="Stroke-626-4" inkscape:connector-curvature="0" class="st9" d="M47.847,26.208c0.426,0.377,0.312,0.252,0.53,0.514 - c0.27,0.322,0.429,1.07,0.429,1.07s3.621-1.832,3.645-1.935c0.046-0.206-0.198-0.727-0.391-1.017 - c-0.24-0.361-0.568-0.566-0.568-0.566L47.847,26.208z"/> -<path id="Stroke-416-5" inkscape:connector-curvature="0" class="st9" d="M54.236,22.661c0.426,0.377,0.312,0.252,0.53,0.514 - c0.27,0.322,0.429,1.07,0.429,1.07s3.621-1.832,3.645-1.935c0.046-0.206-0.198-0.727-0.391-1.017 - c-0.24-0.361-0.568-0.566-0.568-0.566L54.236,22.661z"/> -<path id="Stroke-206-7" inkscape:connector-curvature="0" class="st9" d="M60.486,19.104c0.426,0.377,0.312,0.252,0.53,0.514 - c0.27,0.322,0.429,1.07,0.429,1.07s3.621-1.832,3.645-1.935c0.046-0.206-0.198-0.727-0.391-1.017 - c-0.24-0.361-0.568-0.566-0.568-0.566L60.486,19.104z"/> -<path id="Stroke-1258-3" inkscape:connector-curvature="0" class="st9" d="M1.527,20.674c0,0,0.147-0.062,0.307-0.011l0.159,0.052 - l0.209,0.115l3.663-1.924l-0.266-0.141L5.437,18.72l-0.14-0.007c0.14,0.007-0.125,0.025-0.125,0.025L1.527,20.674z"/> -<path id="Stroke-1048-2" inkscape:connector-curvature="0" class="st9" d="M7.966,17.052c0,0,0.147-0.062,0.307-0.011l0.159,0.052 - l0.209,0.115l3.663-1.924l-0.266-0.141l-0.162-0.044l-0.14-0.007c0.14,0.007-0.125,0.025-0.125,0.025L7.966,17.052z"/> -<path id="Stroke-838-4" inkscape:connector-curvature="0" class="st9" d="M14.935,13.997c0,0,0.147-0.062,0.307-0.011l0.159,0.052 - l0.209,0.115l3.663-1.924l-0.266-0.141l-0.162-0.044l-0.14-0.007c0.14,0.007-0.125,0.025-0.125,0.025L14.935,13.997z"/> -<path id="Stroke-628-5" inkscape:connector-curvature="0" class="st9" d="M21.386,10.458c0,0,0.147-0.062,0.307-0.011l0.159,0.052 - l0.209,0.115l3.663-1.924L25.458,8.55l-0.162-0.044l-0.14-0.007c0.14,0.007-0.125,0.025-0.125,0.025L21.386,10.458z"/> -<path id="Stroke-418-3" inkscape:connector-curvature="0" class="st9" d="M27.573,6.891c0,0,0.147-0.062,0.307-0.011l0.159,0.052 - l0.209,0.115l3.663-1.924l-0.266-0.141l-0.162-0.044l-0.14-0.007c0.14,0.007-0.125,0.025-0.125,0.025L27.573,6.891z"/> -<path id="Stroke-208-9" inkscape:connector-curvature="0" class="st9" d="M33.9,3.378c0,0,0.147-0.062,0.307-0.011l0.159,0.052 - l0.209,0.115l3.663-1.924L37.972,1.47L37.81,1.424l-0.14-0.007c0.14,0.007-0.125,0.025-0.125,0.025L33.9,3.378z"/> -<path id="Stroke-1343-4" inkscape:connector-curvature="0" class="st10" d="M5.685,24.944l1.458-0.774 - c0.175-0.092,0.408-0.073,0.665,0.082L6.35,25.026C6.093,24.872,5.86,24.852,5.685,24.944z"/> -<path id="Stroke-1456-1" inkscape:connector-curvature="0" class="st10" d="M22.135,34.51l1.458-0.774 - c0.535,0.322,0.974,1.113,0.974,1.758l-1.458,0.774C23.109,35.623,22.671,34.833,22.135,34.51z"/> -<path id="Stroke-2916" class="st8" d="M1.265,21.073c0.012-0.813,1.759,0.185,1.759,0.185l25.071,15.065 - c0,0,0.299,0.273,0.803,0.799c0.504,0.525,0.558,1.648,0.558,1.648l0.081,51.05c0,0-0.062,1.603-0.356,2.102 - s-0.956,0.418-0.956,0.418"/> -<path id="Stroke-1295-4" inkscape:connector-curvature="0" class="st10" d="M24.296,89.777l-1.457,0.774 - c0.189-0.1,0.308-0.334,0.308-0.67l1.458-0.774C24.605,89.444,24.485,89.676,24.296,89.777z"/> -<path id="Stroke-2918" class="st11" d="M5.377,25.615c0.011-0.736,0.973-0.176,0.973-0.176l15.348,9.223c0,0,0.27,0.247,0.727,0.723 - c0.456,0.475,0.505,1.492,0.505,1.492l0.093,52.034c0,0,0.082,1.189-0.184,1.641c-0.267,0.451-0.98-0.271-0.98-0.271"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 66.553 93.887"><style><![CDATA[.M{fill:#dfe0df}.N{fill:#bbbdbf}.O{fill:#d7d8d9}.P{stroke-linejoin:round}.Q{stroke-width:.525}.R{stroke-linecap:round}]]></style><g fill="none" stroke="#626366" stroke-width="2.835" class="P"><path d="M64.83 73.2l-3.645 1.935c.188-.1.305-.33.305-.666l3.645-1.935c0 .335-.118.568-.305.666zM34.498 3.5l3.645-1.937L64.13 17.17l-3.645 1.934z"/><path d="M65.136 72.536L61.49 74.47l-.038-53.61 3.646-1.935z"/><use xlink:href="#B"/><use xlink:href="#C"/><use xlink:href="#D"/><use xlink:href="#E"/><path d="M28.248 7.047l3.645-1.936L57.88 20.73l-3.645 1.932zm30.638 69.047l-3.645 1.934-.038-53.6 3.645-1.935z"/><use xlink:href="#F"/><use xlink:href="#G"/><path d="M27.65 6.938s.147-.062.307-.01l.16.052.21.115 3.663-1.924-.266-.14-.162-.045-.14-.007c.14.007-.125.025-.125.025L27.65 6.938z"/><use xlink:href="#H"/><use xlink:href="#I"/><use xlink:href="#J"/><use xlink:href="#K"/><use xlink:href="#C" x="-12.639" y="7.104"/><path d="M21.26 10.483s.147-.062.307-.01l.16.052.21.115L25.6 8.715l-.266-.14-.162-.044-.14-.007c.14.007-.125.025-.125.025l-3.645 1.935z"/><use xlink:href="#L"/><use xlink:href="#I" x="-6.26" y="3.559"/><use xlink:href="#J" x="-6.25" y="3.56"/><use xlink:href="#M"/><use xlink:href="#C" x="-18.889" y="10.663"/><path d="M15.01 14.042s.147-.062.307-.01l.16.052.21.115 3.663-1.924-.266-.14-.163-.043-.14-.007c.14.007-.125.025-.125.025l-3.644 1.934z"/><use xlink:href="#H" x="-13.22" y="6.613"/><path d="M8.64 17.208l3.645-1.937L38.272 30.9l-3.645 1.93zm30.638 69.046l-3.645 1.935-.036-53.613 3.645-1.934z"/><use xlink:href="#N"/><use xlink:href="#C" x="-25.859" y="13.718"/><use xlink:href="#O"/><use xlink:href="#E" x="-25.857" y="13.72"/><path d="M2.4 20.767l3.645-1.936L32.02 34.447l-3.644 1.934zm26.957 17.37l3.645-1.936.036 53.613-3.644 1.933z"/><use xlink:href="#P"/><use xlink:href="#C" x="-32.108" y="17.276"/><use xlink:href="#O" x="-6.25" y="3.559"/><use xlink:href="#Q"/><use xlink:href="#R"/><path d="M6.35 25.026l1.458-.773 15.785 9.483-1.458.774zM23.1 36.27l1.458-.775.038 53.613-1.458.775z"/><use xlink:href="#S"/><use xlink:href="#T"/><path d="M18.607 46.3l-3.395-2.063V39.4l3.395 2.06zm0 6.125l-3.395-2.058v-4.83l3.395 2.06zm0 6.13l-3.395-2.063v-4.826l3.395 2.06z"/><use xlink:href="#U"/><path d="M13.3 65.93l-3.393-2.062v-4.826l3.393 2.06z"/><use xlink:href="#U" y="10.912"/><path d="M18.607 81.725l-3.395-2.06v-4.83l3.395 2.062z"/></g><path d="M34.498 3.5l3.645-1.937L64.13 17.17l-3.645 1.934z" class="M"/><path d="M65.136 72.536L61.49 74.47l-.038-53.61 3.646-1.935z" class="N"/><use xlink:href="#B" class="O"/><path d="M28.248 7.047l3.645-1.936L57.88 20.73l-3.645 1.932z" class="M"/><path d="M58.886 76.094l-3.645 1.934-.038-53.61 3.645-1.935z" class="N"/><use xlink:href="#F" class="O"/><use xlink:href="#I" class="M"/><use xlink:href="#J" class="N"/><use xlink:href="#K" class="O"/><use xlink:href="#I" x="-6.26" y="3.559" class="M"/><use xlink:href="#J" x="-6.25" y="3.56" class="N"/><use xlink:href="#M" class="O"/><path d="M8.64 17.208l3.645-1.937L38.272 30.89l-3.645 1.93z" class="M"/><path d="M39.278 86.254l-3.645 1.935-.036-53.613 3.645-1.934z" class="N"/><use xlink:href="#N" class="O"/><path d="M2.39 20.767l3.645-1.936 25.986 15.616-3.644 1.934z" class="M"/><path d="M33.028 89.814l-3.644 1.933-.037-53.6 3.645-1.936z" class="N"/><use xlink:href="#P" class="O"/><path d="M6.35 25.026l1.458-.773 15.785 9.483-1.458.774z" fill="#a9abae"/><path d="M23.11 36.27l1.458-.775.038 53.613-1.458.775z" fill="#6c6e70"/><use xlink:href="#T" fill="#231f20"/><g fill="#fefefe"><path d="M18.607 50.3l-3.395-2.063V43.4l3.395 2.06zm0 6.125l-3.395-2.058v-4.83l3.395 2.06zm0 6.13l-3.395-2.063v-4.826l3.395 2.06z"/><use xlink:href="#U" y="4"/><path d="M13.3 69.93l-3.393-2.062v-4.826L13.3 65.1z"/><use xlink:href="#U" y="14.912"/><path d="M18.607 85.725l-3.395-2.06v-4.83l3.395 2.062z"/></g><g fill="none" stroke="#939597" class="P Q R"><use xlink:href="#V"/><path d="M27.122 7.366c.012-.813 1.76.185 1.76.185l25.07 15.064.803.8c.504.525.558 1.648.558 1.648l.08 51.05s-.062 1.603-.356 2.102-.956.418-.956.418"/><use xlink:href="#V" x="-12.677" y="7.171"/><use xlink:href="#V" x="-18.927" y="10.73"/><use xlink:href="#V" x="-25.84" y="13.713"/></g><path d="M14.066 43.534l-3.823 3.6 2.8.618-2.792 2.25 1.943.43-4.947 3.988 2.797-3.577-2.44-.536 2.34-1.888-2.783-.614 6.644-4.107zM9.35 33.243l.566.32c.505.287.85.092.85-.748 0-.803-.248-1.403-.886-1.764l-.53-.3v2.492zM8.074 28.8l2.234 1.266c1.294.73 1.735 2.2 1.735 3.44 0 1.7-.805 2.012-2 1.33l-.683-.385v3.274L8.084 37v-8.2zm6.07 10.727c.496.282.656-.26.656-1.798s-.16-2.262-.656-2.543c-.603-.342-.655.536-.655 1.8s.052 2.2.655 2.542m0-5.423c1.472.798 1.878 2.165 1.878 4.314 0 2.114-.477 2.98-1.878 2.188-1.47-.798-1.88-2.167-1.88-4.314 0-2.112.478-2.98 1.88-2.188m6.105 1.595v1.354l-2.26-1.277v1.93l2.126 1.203v1.355l-2.126-1.203v2.205l2.35 1.33v1.354l-3.625-2.05v-8.2z" fill="#fefefe"/><g fill="#9a9c9f"><use xlink:href="#E" x="-25.857" y="13.72"/><use xlink:href="#H" x="-13.22" y="6.613"/><use xlink:href="#L"/><use xlink:href="#H"/><use xlink:href="#E"/><path d="M64.83 73.2l-3.645 1.935c.188-.1.305-.33.305-.666l3.645-1.935c0 .335-.118.568-.305.666z"/><use xlink:href="#C" x="-32.108" y="17.276"/><use xlink:href="#C" x="-25.859" y="13.718"/><use xlink:href="#C" x="-18.889" y="10.663"/><use xlink:href="#C" x="-12.639" y="7.104"/><use xlink:href="#G"/><use xlink:href="#C"/><path d="M1.527 20.674s.147-.062.307-.01l.16.052.21.115 3.663-1.924-.266-.14-.162-.045-.14-.007c.14.007-.125.025-.125.025l-3.645 1.936z"/><use xlink:href="#O" x="-0.076" y="-0.045"/><use xlink:href="#O" x="6.893" y="-3.1"/><path d="M21.386 10.458s.147-.062.307-.01l.16.052.2.115 3.66-1.915-.266-.14-.162-.044-.14-.007c.14.007-.125.025-.125.025l-3.645 1.934zM27.573 6.9s.147-.062.307-.01l.16.052.2.115 3.663-1.924-.266-.14-.162-.044-.14-.007c.14.007-.125.025-.125.025L27.573 6.9z"/><use xlink:href="#D"/></g><g fill="#a5a7aa"><use xlink:href="#R"/><use xlink:href="#S"/></g><use xlink:href="#V" x="-32.299" y="17.286" fill="none" stroke="#939597" class="P Q R"/><use xlink:href="#Q" fill="#a5a7aa"/><path d="M5.377 25.615c.01-.736.973-.176.973-.176l15.348 9.223.727.723c.456.475.505 1.492.505 1.492l.093 52.034s.082 1.19-.184 1.64-.98-.27-.98-.27" fill="none" stroke="#efeeee" class="P Q R"/><defs ><path id="B" d="M60.486 19.104c.53.318.968 1.11.97 1.756l.037 53.61c0 .647-.438.904-.967.585L34.537 59.442c-.536-.322-.974-1.106-.974-1.752l-.037-53.612c-.001-.647.437-.912.973-.59l25.987 15.615z"/><path id="C" d="M60.486 19.104c.426.377.312.252.53.514.27.322.43 1.07.43 1.07l3.645-1.935c.046-.206-.198-.727-.39-1.017-.24-.36-.568-.566-.568-.566l-3.645 1.934z"/><path id="D" d="M33.9 3.378s.147-.062.307-.01l.16.052.21.115L38.238 1.6l-.266-.14-.162-.046-.14-.007c.14.007-.125.025-.125.025L33.9 3.378z"/><path id="E" d="M58.58 76.76l-3.645 1.935c.188-.1.305-.33.305-.666l3.645-1.935c0 .335-.118.567-.305.666z"/><path id="F" d="M54.236 22.66c.53.318.968 1.11.97 1.756l.037 53.61c0 .647-.438.904-.967.585L28.288 63c-.536-.322-.974-1.106-.974-1.752l-.038-53.613c-.001-.647.437-.912.973-.59L54.236 22.66z"/><path id="G" d="M54.236 22.66c.426.377.312.252.53.514.27.322.43 1.07.43 1.07L58.84 22.3c.046-.206-.198-.727-.39-1.017-.24-.36-.568-.566-.568-.566l-3.645 1.934z"/><path id="H" d="M52.193 80.307l-3.645 1.935c.188-.1.305-.33.305-.666l3.645-1.935c0 .335-.118.566-.305.666z"/><path id="I" d="M21.86 10.594l3.645-1.936 25.987 15.616-3.645 1.934z"/><path id="J" d="M52.498 79.64l-3.645 1.934-.037-53.6 3.644-1.937z"/><path id="K" d="M47.847 26.208c.53.318.968 1.11.97 1.756l.037 53.61c0 .647-.438.904-.967.585L21.9 66.546c-.536-.322-.974-1.106-.974-1.752l-.038-53.61c-.001-.647.437-.912.973-.59l25.987 15.614z"/><path id="L" d="M45.943 83.866L42.298 85.8c.188-.1.305-.33.305-.666l3.645-1.935c0 .334-.118.566-.305.666z"/><path id="M" d="M41.597 29.767c.53.318.968 1.11.97 1.756l.037 53.61c0 .647-.438.904-.967.585L15.65 70.104c-.536-.322-.974-1.106-.974-1.752l-.038-53.61c-.001-.647.437-.912.973-.59l25.987 15.615z"/><path id="N" d="M34.627 32.822c.53.318.968 1.11.97 1.756l.037 53.61c0 .647-.438.904-.967.585L8.68 73.16c-.536-.322-.974-1.106-.974-1.752l-.038-53.61c-.001-.647.437-.912.973-.59l25.986 15.613z"/><path id="O" d="M8.042 17.097s.147-.062.307-.01l.16.052.21.115 3.663-1.924-.266-.14-.162-.044-.14-.007c.14.007-.125.025-.125.025l-3.645 1.935z"/><path id="P" d="M28.378 36.38c.53.318.968 1.11.97 1.756l.037 53.61c0 .647-.438.904-.967.585L2.43 76.718c-.536-.322-.974-1.106-.974-1.752l-.038-53.6c-.001-.647.437-.912.973-.59L28.378 36.38z"/><path id="Q" d="M24.296 89.777l-1.457.774c.19-.1.308-.334.308-.67l1.458-.774c0 .337-.12.57-.31.67z"/><path id="R" d="M5.685 24.944l1.458-.774c.175-.092.408-.073.665.082l-1.458.774c-.257-.154-.5-.174-.665-.082z"/><path id="S" d="M22.135 34.5l1.458-.774c.535.322.974 1.113.974 1.758l-1.458.774c0-.645-.438-1.435-.974-1.758z"/><path id="T" d="M22.135 34.5c.536.322.974 1.112.974 1.758l.038 53.613c0 .646-.437.9-.973.588L6.4 80.986c-.537-.323-.975-1.114-.975-1.76l-.038-53.612c0-.645.437-.91.973-.588L22.135 34.5z"/><path id="U" d="M18.607 64.684l-3.395-2.06v-4.83l3.395 2.06z"/><path id="V" d="M33.564 3.787c.012-.813 1.76.185 1.76.185l25.07 15.065.803.8c.504.525.558 1.648.558 1.648l.08 51.05s-.062 1.603-.356 2.102-.956.418-.956.418"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/switch/Industrial_Ethernet_IE300.svg b/src/main/webapp/img/lib/allied_telesis/switch/Industrial_Ethernet_IE300.svg index 58650df65efba8afae50c74bd54f203312d92a6c..ae4972b63c3d6801532c95c3305bca65fde72911 100644 --- a/src/main/webapp/img/lib/allied_telesis/switch/Industrial_Ethernet_IE300.svg +++ b/src/main/webapp/img/lib/allied_telesis/switch/Industrial_Ethernet_IE300.svg @@ -1,477 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 115.788 128.577" style="enable-background:new 0 0 115.788 128.577;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#626467;stroke-width:2.722;stroke-linecap:square;stroke-linejoin:round;} - .st1{fill:#404042;} - .st2{fill:#231F20;} - .st3{fill:#58585B;} - .st4{fill:#6C6E70;} - .st5{fill:#D0D2D3;} - .st6{fill:#B2B3B6;} - .st7{fill:#A4A6A9;} - .st8{fill:#A2A5A7;} - .st9{fill:#A1A3A6;} - .st10{fill:#9FA1A4;} - .st11{fill:#9EA0A2;} - .st12{fill:#9C9EA1;} - .st13{fill:#9A9C9F;} - .st14{fill:#999B9D;} - .st15{fill:#97999C;} - .st16{fill:#96989A;} - .st17{fill:#949699;} - .st18{fill:#A6A8AA;} - .st19{fill:#A7A9AC;} - .st20{fill:#A9ABAE;} - .st21{fill:#ABADAF;} - .st22{fill:#BABCBE;} - .st23{fill:#898A8C;} - .st24{fill:#ACAEB1;} - .st25{fill:#AEB0B2;} - .st26{fill:#B0B2B4;} - .st27{fill:#B1B3B6;} - .st28{fill:#B3B5B7;} - .st29{fill:#B5B7B9;} - .st30{fill:#B6B8BB;} - .st31{fill:#B8BABC;} - .st32{fill:#BBBDC0;} - .st33{fill:#C0C2C4;} - .st34{fill:#C2C4C6;} - .st35{fill:#C3C5C7;} - .st36{fill:#C5C6C8;} - .st37{fill:#C6C7C9;} - .st38{fill:#A6A8AB;} - .st39{fill:#FEFEFE;} - .st40{fill:none;stroke:#EFEEEE;stroke-width:0.336;stroke-linecap:round;stroke-linejoin:round;} - .st41{fill:#939597;} - .st42{fill:#808184;} - .st43{fill:#469049;} - .st44{fill:#BBDDB1;} - .st45{fill:#8CCB8E;} - .st46{fill:none;stroke:#DFDFDE;stroke-width:0.345;stroke-linecap:round;stroke-linejoin:round;} -</style> -<title>icon-IE300</title> -<desc>Created with Sketch.</desc> -<polygon id="Stroke-1" class="st0" points="56.617,9.061 58.95,7.822 58.995,71.181 56.661,72.419 "/> -<polygon id="Stroke-2" class="st0" points="45.863,2.6 48.197,1.361 58.95,7.823 56.617,9.061 "/> -<polygon id="Stroke-4" class="st0" points="56.617,9.061 56.661,72.418 45.908,65.958 45.863,2.6 "/> -<polygon id="Stroke-7" class="st0" points="51.646,11.673 53.98,10.434 54.024,73.792 51.691,75.03 "/> -<polygon id="Stroke-8" class="st0" points="40.893,5.211 43.227,3.972 53.98,10.434 51.646,11.672 "/> -<polygon id="Stroke-10" class="st0" points="51.646,11.673 51.691,75.03 40.937,68.569 40.893,5.212 "/> -<polygon id="Stroke-11" class="st0" points="46.677,14.607 49.011,13.369 49.055,76.726 46.721,77.965 "/> -<polygon id="Stroke-12" class="st0" points="35.924,8.146 38.257,6.907 49.011,13.369 46.677,14.607 "/> -<polygon id="Stroke-13" class="st0" points="46.677,14.607 46.721,77.965 35.968,71.504 35.924,8.146 "/> -<polygon id="Stroke-14" class="st0" points="41.707,17.219 44.04,15.981 44.085,79.338 41.751,80.577 "/> -<polygon id="Stroke-15" class="st0" points="30.953,10.758 33.287,9.519 44.04,15.981 41.707,17.219 "/> -<polygon id="Stroke-16" class="st0" points="41.707,17.219 41.751,80.577 30.998,74.116 30.953,10.758 "/> -<polygon id="Stroke-17" class="st0" points="36.736,19.574 39.07,18.335 39.114,81.693 36.781,82.932 "/> -<polygon id="Stroke-18" class="st0" points="25.983,13.112 28.317,11.874 39.07,18.335 36.736,19.573 "/> -<polygon id="Stroke-19" class="st0" points="36.736,19.574 36.781,82.932 26.028,76.47 25.983,13.113 "/> -<polygon id="Stroke-20" class="st0" points="31.766,22.185 34.1,20.946 34.144,84.304 31.811,85.543 "/> -<polygon id="Stroke-21" class="st0" points="21.013,15.724 23.346,14.485 34.1,20.946 31.766,22.185 "/> -<polygon id="Stroke-22" class="st0" points="31.766,22.185 31.811,85.543 21.057,79.081 21.013,15.724 "/> -<polygon id="Stroke-23" class="st0" points="26.797,25.12 29.13,23.881 29.175,87.239 26.841,88.477 "/> -<polygon id="Stroke-24" class="st0" points="16.044,18.659 18.377,17.42 29.13,23.882 26.797,25.12 "/> -<polygon id="Stroke-25" class="st0" points="26.797,25.12 26.841,88.477 16.088,82.016 16.044,18.659 "/> -<polygon id="Stroke-26" class="st0" points="21.827,27.731 24.16,26.492 24.205,89.85 21.871,91.088 "/> -<polygon id="Stroke-27" class="st0" points="11.073,21.27 13.407,20.031 24.16,26.493 21.827,27.731 "/> -<polygon id="Stroke-28" class="st0" points="21.827,27.731 21.871,91.088 11.118,84.627 11.073,21.27 "/> -<polygon id="Stroke-29" class="st0" points="16.856,30.236 19.19,28.998 19.234,92.355 16.901,93.594 "/> -<polygon id="Stroke-30" class="st0" points="6.103,23.775 8.437,22.536 19.19,28.998 16.856,30.236 "/> -<polygon id="Stroke-31" class="st0" points="16.856,30.236 16.901,93.594 6.148,87.133 6.103,23.775 "/> -<polygon id="Stroke-32" class="st0" points="12.114,32.475 14.448,31.237 14.492,94.595 12.159,95.834 "/> -<polygon id="Stroke-33" class="st0" points="1.361,26.014 3.695,24.776 14.448,31.237 12.114,32.475 "/> -<polygon id="Stroke-35" class="st0" points="12.114,32.475 12.159,95.834 1.405,89.372 1.361,26.014 "/> -<polygon id="Stroke-38" class="st0" points="54.035,57.205 105.373,29.955 105.42,95.757 54.081,123.007 "/> -<polygon id="Stroke-39" class="st0" points="11.626,31.724 62.965,4.473 105.373,29.955 54.035,57.206 "/> -<polygon id="Stroke-41" class="st0" points="54.035,57.205 54.081,123.007 11.672,97.526 11.626,31.724 "/> -<polygon id="Stroke-42" class="st0" points="112.049,40.444 114.382,39.206 114.427,102.563 112.094,103.802 "/> -<polygon id="Stroke-44" class="st0" points="101.297,33.983 103.63,32.744 114.383,39.206 112.05,40.444 "/> -<polygon id="Stroke-46" class="st0" points="112.049,40.444 112.094,103.802 101.34,97.341 101.296,33.983 "/> -<polygon id="Stroke-49" class="st0" points="107.08,43.056 109.413,41.817 109.458,105.175 107.124,106.413 "/> -<polygon id="Stroke-50" class="st0" points="96.326,36.595 98.66,35.356 109.413,41.818 107.08,43.056 "/> -<polygon id="Stroke-51" class="st0" points="107.08,43.056 107.124,106.413 96.371,99.952 96.326,36.595 "/> -<polygon id="Stroke-52" class="st0" points="102.109,45.991 104.443,44.752 104.487,108.11 102.154,109.349 "/> -<polygon id="Stroke-53" class="st0" points="91.356,39.53 93.69,38.291 104.443,44.752 102.109,45.991 "/> -<polygon id="Stroke-54" class="st0" points="102.109,45.991 102.154,109.349 91.401,102.888 91.356,39.53 "/> -<polygon id="Stroke-55" class="st0" points="97.139,48.602 99.473,47.363 99.517,110.721 97.183,111.96 "/> -<polygon id="Stroke-56" class="st0" points="86.386,42.141 88.719,40.902 99.473,47.363 97.139,48.602 "/> -<polygon id="Stroke-57" class="st0" points="97.139,48.602 97.183,111.96 86.43,105.499 86.386,42.141 "/> -<polygon id="Stroke-58" class="st0" points="92.17,50.957 94.503,49.718 94.548,113.076 92.214,114.314 "/> -<polygon id="Stroke-59" class="st0" points="81.416,44.495 83.75,43.257 94.503,49.718 92.17,50.956 "/> -<polygon id="Stroke-60" class="st0" points="92.17,50.957 92.214,114.314 81.461,107.853 81.416,44.496 "/> -<polygon id="Stroke-61" class="st0" points="87.199,53.568 89.533,52.329 89.577,115.687 87.244,116.926 "/> -<polygon id="Stroke-62" class="st0" points="76.446,47.107 78.78,45.869 89.533,52.33 87.199,53.568 "/> -<polygon id="Stroke-63" class="st0" points="87.199,53.568 87.244,116.926 76.491,110.464 76.446,47.107 "/> -<polygon id="Stroke-64" class="st0" points="82.229,56.503 84.563,55.265 84.607,118.622 82.274,119.861 "/> -<polygon id="Stroke-65" class="st0" points="71.476,50.042 73.81,48.803 84.563,55.265 82.229,56.503 "/> -<polygon id="Stroke-66" class="st0" points="82.229,56.503 82.274,119.861 71.52,113.4 71.476,50.042 "/> -<polygon id="Stroke-67" class="st0" points="77.259,59.114 79.592,57.876 79.638,121.233 77.304,122.472 "/> -<polygon id="Stroke-68" class="st0" points="66.507,52.653 68.84,51.414 79.593,57.876 77.26,59.114 "/> -<polygon id="Stroke-69" class="st0" points="77.259,59.114 77.304,122.472 66.55,116.011 66.507,52.653 "/> -<polygon id="Stroke-70" class="st0" points="72.29,61.619 74.623,60.38 74.668,123.738 72.334,124.977 "/> -<polygon id="Stroke-72" class="st0" points="61.536,55.158 63.87,53.919 74.623,60.38 72.29,61.619 "/> -<polygon id="Stroke-73" class="st0" points="72.29,61.619 72.334,124.977 61.581,118.516 61.536,55.158 "/> -<polygon id="Stroke-75" class="st0" points="67.547,63.859 69.881,62.62 69.926,125.978 67.592,127.216 "/> -<polygon id="Stroke-78" class="st0" points="56.794,57.397 59.128,56.158 69.881,62.62 67.547,63.858 "/> -<polygon id="Stroke-79" class="st0" points="67.547,63.859 67.592,127.216 56.839,120.755 56.794,57.398 "/> -<path id="Stroke-81" class="st0" d="M52.648,122.157l1.4-0.744c0,0.015,0,0.029-0.001,0.043l-1.399,0.743V122.157"/> -<path id="Stroke-84" class="st0" d="M52.648,122.2l1.399-0.743c0,0.028-0.001,0.056-0.003,0.083l-1.399,0.743 - C52.646,122.256,52.647,122.228,52.648,122.2"/> -<path id="Stroke-87" class="st0" d="M52.645,122.283l1.399-0.743c-0.001,0.028-0.003,0.056-0.005,0.083l-1.4,0.743 - C52.641,122.339,52.643,122.311,52.645,122.283"/> -<path id="Stroke-90" class="st0" d="M52.639,122.366l1.399-0.744c-0.002,0.029-0.004,0.056-0.008,0.083l-1.401,0.743 - C52.633,122.421,52.636,122.394,52.639,122.366"/> -<path id="Stroke-93" class="st0" d="M52.63,122.448l1.4-0.743c-0.004,0.029-0.008,0.056-0.013,0.084l-1.4,0.743 - C52.622,122.505,52.626,122.477,52.63,122.448"/> -<path id="Stroke-96" class="st0" d="M52.617,122.533l1.399-0.743c-0.004,0.028-0.01,0.056-0.016,0.083l-1.401,0.743 - C52.605,122.589,52.611,122.561,52.617,122.533"/> -<path id="Stroke-99" class="st0" d="M52.599,122.616l1.4-0.743c-0.007,0.031-0.015,0.06-0.024,0.09l-1.399,0.743 - C52.584,122.677,52.592,122.647,52.599,122.616"/> -<path id="Stroke-102" class="st0" d="M52.576,122.706l1.399-0.743c-0.008,0.032-0.019,0.063-0.03,0.093l-1.4,0.743 - C52.555,122.769,52.566,122.738,52.576,122.706"/> -<path id="Stroke-105" class="st0" d="M52.545,122.798l1.4-0.743c-0.013,0.035-0.027,0.068-0.043,0.1l-1.4,0.743 - C52.518,122.866,52.531,122.833,52.545,122.798"/> -<path id="Stroke-108" class="st0" d="M52.502,122.898l1.4-0.743c-0.02,0.042-0.042,0.081-0.065,0.118l-1.4,0.744 - C52.46,122.98,52.482,122.94,52.502,122.898"/> -<path id="Stroke-111" class="st0" d="M52.436,123.017l1.4-0.744c-0.085,0.134-0.194,0.236-0.32,0.303l-1.4,0.743 - C52.243,123.252,52.351,123.15,52.436,123.017"/> -<path id="Stroke-115" class="st0" d="M53.516,122.576l-1.4,0.743c0.328-0.174,0.532-0.578,0.532-1.162l1.4-0.744 - C54.048,121.997,53.844,122.402,53.516,122.576z"/> -<path id="Stroke-117" class="st0" d="M10.737,33.794l1.4-0.743c0.037-0.02,0.076-0.037,0.116-0.05l-1.4,0.743 - C10.813,33.757,10.774,33.774,10.737,33.794"/> -<path id="Stroke-120" class="st0" d="M10.853,33.744l1.399-0.743c0.04-0.014,0.08-0.025,0.122-0.032l-1.399,0.743 - C10.933,33.72,10.892,33.73,10.853,33.744"/> -<path id="Stroke-123" class="st0" d="M10.975,33.712l1.399-0.743c0.033-0.006,0.066-0.01,0.1-0.013l-1.4,0.743 - C11.039,33.702,11.007,33.706,10.975,33.712"/> -<path id="Stroke-126" class="st0" d="M11.074,33.699l1.4-0.743c0.029-0.002,0.058-0.003,0.088-0.003l-1.4,0.744 - C11.133,33.696,11.102,33.697,11.074,33.699"/> -<path id="Stroke-129" class="st0" d="M11.162,33.697l1.4-0.743c0.028,0,0.056,0.002,0.083,0.004l-1.399,0.743 - C11.218,33.699,11.189,33.697,11.162,33.697"/> -<path id="Stroke-132" class="st0" d="M11.246,33.701l1.399-0.743c0.026,0.002,0.051,0.005,0.077,0.009l-1.401,0.744 - C11.296,33.706,11.27,33.703,11.246,33.701"/> -<path id="Stroke-135" class="st0" d="M11.321,33.711l1.4-0.744c0.025,0.004,0.049,0.009,0.075,0.015l-1.401,0.743 - C11.37,33.719,11.345,33.715,11.321,33.711"/> -<path id="Stroke-138" class="st0" d="M11.395,33.725l1.4-0.744c0.024,0.006,0.047,0.012,0.072,0.018l-1.401,0.744 - C11.443,33.736,11.418,33.73,11.395,33.725"/> -<path id="Stroke-141" class="st0" d="M11.466,33.743l1.4-0.743c0.024,0.006,0.047,0.014,0.071,0.021l-1.401,0.743 - C11.513,33.757,11.489,33.749,11.466,33.743"/> -<path id="Stroke-144" class="st0" d="M11.537,33.764l1.4-0.743c0.024,0.008,0.046,0.016,0.07,0.025l-1.401,0.743 - C11.583,33.78,11.56,33.772,11.537,33.764"/> -<path id="Stroke-147" class="st0" d="M11.606,33.789l1.4-0.743c0.023,0.009,0.046,0.018,0.07,0.028l-1.401,0.743 - C11.652,33.807,11.629,33.798,11.606,33.789"/> -<path id="Stroke-150" class="st0" d="M11.675,33.817l1.4-0.743c0.023,0.01,0.045,0.02,0.069,0.032l-1.401,0.743 - C11.721,33.838,11.697,33.827,11.675,33.817"/> -<path id="Stroke-153" class="st0" d="M11.744,33.849l1.4-0.743c0.024,0.011,0.046,0.023,0.07,0.035l-1.401,0.743 - C11.791,33.872,11.767,33.86,11.744,33.849"/> -<path id="Stroke-156" class="st0" d="M11.813,33.884l1.4-0.743c0.024,0.013,0.047,0.025,0.071,0.039l-1.401,0.743 - C11.86,33.909,11.836,33.897,11.813,33.884"/> -<polyline id="Stroke-159" class="st0" points="11.883,33.923 13.283,33.18 13.31,33.196 11.91,33.939 11.883,33.923 "/> -<path id="Stroke-163" class="st0" d="M10.737,33.794l1.4-0.743c0.307-0.163,0.72-0.128,1.173,0.145l-1.4,0.743 - C11.457,33.667,11.044,33.631,10.737,33.794z"/> -<polygon id="Stroke-165" class="st0" points="11.91,33.939 13.31,33.196 52.323,56.637 50.923,57.38 "/> -<polygon id="Stroke-166" class="st0" points="52.605,60.416 54.004,59.673 54.048,121.414 52.648,122.157 "/> -<path id="Stroke-167" class="st0" d="M50.923,57.38l1.4-0.743c0.015,0.009,0.03,0.018,0.044,0.027l-1.4,0.743 - C50.952,57.398,50.938,57.389,50.923,57.38"/> -<path id="Stroke-170" class="st0" d="M50.966,57.408l1.4-0.743c0.024,0.014,0.047,0.03,0.071,0.046l-1.401,0.743 - C51.015,57.438,50.99,57.423,50.966,57.408"/> -<path id="Stroke-173" class="st0" d="M51.037,57.453l1.4-0.743c0.025,0.016,0.048,0.033,0.073,0.051l-1.401,0.743 - C51.085,57.486,51.061,57.47,51.037,57.453"/> -<path id="Stroke-176" class="st0" d="M51.109,57.504l1.4-0.743c0.024,0.017,0.048,0.036,0.072,0.055l-1.401,0.743 - C51.157,57.54,51.132,57.522,51.109,57.504"/> -<path id="Stroke-179" class="st0" d="M51.18,57.559l1.4-0.743c0.026,0.019,0.05,0.039,0.075,0.06l-1.401,0.743 - C51.23,57.599,51.205,57.579,51.18,57.559"/> -<path id="Stroke-182" class="st0" d="M51.255,57.619l1.4-0.743c0.025,0.021,0.05,0.042,0.074,0.064l-1.4,0.743 - C51.305,57.661,51.28,57.64,51.255,57.619"/> -<path id="Stroke-185" class="st0" d="M51.329,57.683l1.399-0.743c0.026,0.022,0.05,0.045,0.076,0.069l-1.401,0.743 - C51.379,57.728,51.353,57.705,51.329,57.683"/> -<path id="Stroke-188" class="st0" d="M51.403,57.752l1.4-0.743c0.025,0.023,0.048,0.047,0.073,0.071l-1.401,0.744 - C51.451,57.799,51.427,57.775,51.403,57.752"/> -<path id="Stroke-191" class="st0" d="M51.475,57.824l1.4-0.744c0.024,0.024,0.046,0.049,0.07,0.074l-1.401,0.743 - C51.522,57.872,51.498,57.847,51.475,57.824"/> -<path id="Stroke-194" class="st0" d="M51.545,57.897l1.4-0.743c0.022,0.024,0.044,0.048,0.066,0.073L51.61,57.97 - C51.589,57.945,51.567,57.921,51.545,57.897"/> -<path id="Stroke-197" class="st0" d="M51.61,57.97l1.4-0.743c0.022,0.024,0.042,0.048,0.063,0.073l-1.401,0.743 - C51.652,58.018,51.631,57.994,51.61,57.97"/> -<path id="Stroke-200" class="st0" d="M51.673,58.043l1.4-0.743c0.021,0.024,0.04,0.049,0.06,0.074l-1.399,0.743 - C51.713,58.092,51.694,58.067,51.673,58.043"/> -<path id="Stroke-203" class="st0" d="M51.733,58.117l1.399-0.743c0.02,0.025,0.039,0.05,0.059,0.075l-1.4,0.743 - C51.771,58.167,51.753,58.142,51.733,58.117"/> -<path id="Stroke-206" class="st0" d="M51.791,58.192l1.4-0.743c0.021,0.028,0.042,0.056,0.063,0.085l-1.401,0.743 - C51.833,58.249,51.812,58.22,51.791,58.192"/> -<path id="Stroke-209" class="st0" d="M51.853,58.277l1.4-0.743c0.022,0.03,0.043,0.061,0.064,0.092l-1.4,0.743 - C51.896,58.338,51.874,58.307,51.853,58.277"/> -<path id="Stroke-212" class="st0" d="M51.918,58.37l1.399-0.743c0.1,0.148,0.192,0.303,0.273,0.464l-1.401,0.743 - C52.108,58.674,52.018,58.518,51.918,58.37"/> -<path id="Stroke-215" class="st0" d="M52.189,58.833l1.4-0.743c0.017,0.032,0.033,0.065,0.048,0.097l-1.4,0.744 - C52.221,58.898,52.206,58.865,52.189,58.833"/> -<path id="Stroke-218" class="st0" d="M52.237,58.931l1.4-0.743c0.014,0.03,0.028,0.059,0.041,0.09l-1.399,0.743 - C52.265,58.991,52.252,58.961,52.237,58.931"/> -<path id="Stroke-221" class="st0" d="M52.279,59.021l1.399-0.743c0.012,0.025,0.023,0.051,0.035,0.077l-1.401,0.743 - C52.301,59.072,52.29,59.047,52.279,59.021"/> -<path id="Stroke-224" class="st0" d="M52.312,59.098l1.4-0.743c0.011,0.025,0.021,0.051,0.032,0.077l-1.401,0.743 - C52.333,59.149,52.323,59.123,52.312,59.098"/> -<path id="Stroke-227" class="st0" d="M52.343,59.175l1.4-0.743c0.011,0.025,0.021,0.051,0.031,0.077l-1.401,0.743 - C52.365,59.226,52.355,59.2,52.343,59.175"/> -<path id="Stroke-230" class="st0" d="M52.374,59.252l1.4-0.743c0.01,0.026,0.02,0.052,0.029,0.078l-1.401,0.743 - C52.394,59.304,52.384,59.278,52.374,59.252"/> -<path id="Stroke-233" class="st0" d="M52.402,59.33l1.4-0.743c0.01,0.027,0.019,0.054,0.028,0.08l-1.4,0.744 - C52.422,59.384,52.412,59.357,52.402,59.33"/> -<path id="Stroke-236" class="st0" d="M52.43,59.411l1.399-0.743c0.01,0.028,0.019,0.056,0.028,0.084l-1.401,0.743 - C52.448,59.467,52.439,59.439,52.43,59.411"/> -<path id="Stroke-239" class="st0" d="M52.457,59.495l1.4-0.743c0.009,0.029,0.017,0.057,0.026,0.086l-1.401,0.743 - C52.475,59.553,52.466,59.524,52.457,59.495"/> -<path id="Stroke-242" class="st0" d="M52.482,59.581l1.4-0.743l0.024,0.089l-1.401,0.743C52.499,59.641,52.49,59.611,52.482,59.581" - /> -<path id="Stroke-245" class="st0" d="M52.506,59.671l1.4-0.743c0.008,0.03,0.015,0.06,0.022,0.09l-1.401,0.743 - C52.521,59.731,52.514,59.701,52.506,59.671"/> -<path id="Stroke-248" class="st0" d="M52.527,59.761l1.4-0.743c0.007,0.03,0.014,0.06,0.02,0.091l-1.4,0.743 - C52.541,59.822,52.534,59.791,52.527,59.761"/> -<path id="Stroke-251" class="st0" d="M52.547,59.852l1.4-0.743c0.006,0.03,0.012,0.059,0.017,0.09l-1.4,0.743 - C52.559,59.912,52.553,59.882,52.547,59.852"/> -<path id="Stroke-254" class="st0" d="M52.563,59.942l1.4-0.743c0.005,0.029,0.01,0.059,0.014,0.088l-1.4,0.743 - C52.573,60.001,52.568,59.971,52.563,59.942"/> -<path id="Stroke-257" class="st0" d="M52.577,60.03l1.4-0.743c0.004,0.029,0.008,0.058,0.011,0.087l-1.4,0.743 - C52.585,60.089,52.581,60.059,52.577,60.03"/> -<path id="Stroke-260" class="st0" d="M52.588,60.118l1.4-0.743c0.003,0.029,0.006,0.057,0.008,0.086l-1.399,0.743L52.588,60.118"/> -<path id="Stroke-263" class="st0" d="M52.596,60.204l1.399-0.743c0.003,0.028,0.005,0.057,0.006,0.085l-1.4,0.743 - C52.6,60.261,52.598,60.232,52.596,60.204"/> -<path id="Stroke-266" class="st0" d="M52.601,60.289l1.4-0.743c0.002,0.028,0.003,0.056,0.003,0.084l-1.4,0.743 - C52.604,60.346,52.603,60.317,52.601,60.289"/> -<path id="Stroke-269" class="st0" d="M52.604,60.374l1.4-0.743v0.042l-1.399,0.743C52.605,60.402,52.604,60.388,52.604,60.374"/> -<path id="Stroke-273" class="st0" d="M50.923,57.38l1.4-0.743c0.927,0.557,1.682,1.913,1.682,3.035l-1.399,0.744 - C52.605,59.294,51.851,57.937,50.923,57.38z"/> -<path id="Stroke-275" class="st0" d="M50.923,57.38c0.928,0.557,1.682,1.914,1.683,3.036l0.043,61.741 - c0.001,1.122-0.756,1.58-1.691,1.018L11.921,99.72c-0.927-0.557-1.681-1.918-1.682-3.036l-0.043-61.707 - c-0.001-1.142,0.768-1.607,1.714-1.038L50.923,57.38z"/> -<polygon id="Stroke-278" class="st0" points="34.915,60.022 31.519,57.96 31.519,53.129 34.915,55.19 "/> -<polygon id="Stroke-279" class="st0" points="34.915,66.155 31.519,64.094 31.519,59.261 34.915,61.323 "/> -<polygon id="Stroke-280" class="st0" points="34.915,72.288 31.519,70.226 31.519,65.396 34.915,67.456 "/> -<polygon id="Stroke-281" class="st0" points="34.915,78.42 31.519,76.359 31.519,71.527 34.915,73.589 "/> -<polygon id="Stroke-282" class="st0" points="34.915,89.497 31.519,87.435 31.519,82.604 34.915,84.664 "/> -<polygon id="Stroke-283" class="st0" points="34.915,95.628 31.519,93.567 31.519,88.735 34.915,90.797 "/> -<polygon id="Stroke-284" class="st0" points="34.915,101.761 31.519,99.699 31.519,94.869 34.915,96.93 "/> -<polygon id="Stroke-285" class="st0" points="34.915,107.894 31.519,105.833 31.519,101.001 34.915,103.063 "/> -<polygon id="Stroke-286" class="st0" points="23.989,73.753 20.593,71.691 20.593,66.859 23.989,68.92 "/> -<path id="Stroke-287" class="st0" d="M10.311,34.633c0.128-0.975,0.742-0.88,1.469-0.526c4.946,2.411,23.924,14.325,23.924,14.325 - l15.358,9.228c0,0,0.321,0.203,0.727,0.723c0.513,0.657,0.692,2.241,0.692,2.241l0.149,54.095c0,0,0.01,7.092-0.029,7.472 - c-0.183,1.747-1.73,0.817-1.73,0.817"/> -<polygon id="Stroke-289" class="st0" points="23.782,83.321 20.386,81.259 20.386,76.428 23.782,78.488 "/> -<polygon id="Stroke-291" class="st0" points="23.782,89.453 20.386,87.392 20.386,82.56 23.782,84.622 "/> -<polygon id="Stroke-293" class="st0" points="23.782,95.586 20.386,93.524 20.386,88.694 23.782,90.755 "/> -<polygon id="Stroke-295" class="st0" points="23.782,101.719 20.386,99.658 20.386,94.826 23.782,96.888 "/> -<polygon id="Fill-297" class="st1" points="56.617,9.061 58.95,7.823 58.995,71.181 56.661,72.418 "/> -<polygon id="Fill-299" class="st2" points="45.863,2.6 48.197,1.361 58.95,7.823 56.617,9.061 "/> -<polygon id="Fill-301" class="st3" points="56.617,9.061 56.661,72.418 45.908,65.958 45.863,2.6 "/> -<polygon id="Fill-303" class="st1" points="51.646,11.673 53.98,10.434 54.024,73.792 51.691,75.03 "/> -<polygon id="Fill-305" class="st2" points="40.893,5.211 43.227,3.972 53.98,10.434 51.646,11.672 "/> -<polygon id="Fill-307" class="st3" points="51.646,11.673 51.691,75.03 40.937,68.569 40.893,5.212 "/> -<polygon id="Fill-309" class="st1" points="46.677,14.607 49.011,13.369 49.055,76.726 46.721,77.965 "/> -<polygon id="Fill-311" class="st2" points="35.924,8.146 38.257,6.907 49.011,13.369 46.677,14.607 "/> -<polygon id="Fill-313" class="st3" points="46.677,14.607 46.721,77.965 35.968,71.504 35.924,8.146 "/> -<polygon id="Fill-315" class="st1" points="41.707,17.219 44.04,15.981 44.085,79.338 41.751,80.577 "/> -<polygon id="Fill-317" class="st2" points="30.953,10.758 33.287,9.519 44.04,15.981 41.707,17.219 "/> -<polygon id="Fill-319" class="st3" points="41.707,17.219 41.751,80.577 30.998,74.116 30.953,10.758 "/> -<polygon id="Fill-321" class="st1" points="36.736,19.574 39.07,18.335 39.114,81.693 36.781,82.932 "/> -<polygon id="Fill-323" class="st2" points="25.983,13.112 28.317,11.874 39.07,18.335 36.736,19.573 "/> -<polygon id="Fill-325" class="st3" points="36.736,19.574 36.781,82.932 26.028,76.47 25.983,13.113 "/> -<polygon id="Fill-327" class="st1" points="31.766,22.185 34.1,20.946 34.144,84.304 31.811,85.543 "/> -<polygon id="Fill-329" class="st2" points="21.013,15.724 23.346,14.485 34.1,20.946 31.766,22.185 "/> -<polygon id="Fill-331" class="st3" points="31.766,22.185 31.811,85.543 21.057,79.081 21.013,15.724 "/> -<polygon id="Fill-333" class="st1" points="26.797,25.12 29.13,23.881 29.175,87.239 26.841,88.477 "/> -<polygon id="Fill-335" class="st2" points="16.044,18.659 18.377,17.42 29.13,23.882 26.797,25.12 "/> -<polygon id="Fill-337" class="st3" points="26.797,25.12 26.841,88.477 16.088,82.016 16.044,18.659 "/> -<polygon id="Fill-339" class="st1" points="21.827,27.731 24.16,26.492 24.205,89.85 21.871,91.088 "/> -<polygon id="Fill-341" class="st2" points="11.073,21.27 13.407,20.031 24.16,26.493 21.827,27.731 "/> -<polygon id="Fill-343" class="st3" points="21.827,27.731 21.871,91.088 11.118,84.627 11.073,21.27 "/> -<polygon id="Fill-345" class="st1" points="16.856,30.236 19.19,28.998 19.234,92.355 16.901,93.594 "/> -<polygon id="Fill-347" class="st2" points="6.103,23.775 8.437,22.536 19.19,28.998 16.856,30.236 "/> -<polygon id="Fill-349" class="st3" points="16.856,30.236 16.901,93.594 6.148,87.133 6.103,23.775 "/> -<polygon id="Fill-351" class="st1" points="12.114,32.476 14.448,31.237 14.492,94.595 12.159,95.834 "/> -<polygon id="Fill-353" class="st2" points="1.361,26.014 3.695,24.776 14.448,31.237 12.114,32.475 "/> -<polygon id="Fill-355" class="st3" points="12.114,32.476 12.159,95.834 1.405,89.372 1.361,26.015 "/> -<polygon id="Fill-357" class="st4" points="54.035,57.205 105.373,29.955 105.42,95.757 54.081,123.008 "/> -<polygon id="Fill-359" class="st5" points="11.626,31.724 62.965,4.473 105.373,29.955 54.035,57.206 "/> -<polygon id="Fill-361" class="st6" points="54.035,57.205 54.081,123.008 11.672,97.526 11.626,31.724 "/> -<polygon id="Fill-363" class="st1" points="112.049,40.444 114.382,39.206 114.427,102.563 112.093,103.802 "/> -<polygon id="Fill-365" class="st2" points="101.297,33.983 103.63,32.744 114.383,39.206 112.05,40.444 "/> -<polygon id="Fill-367" class="st3" points="112.049,40.444 112.093,103.802 101.34,97.341 101.297,33.983 "/> -<polygon id="Fill-369" class="st1" points="107.08,43.056 109.413,41.817 109.458,105.175 107.124,106.413 "/> -<polygon id="Fill-371" class="st2" points="96.326,36.595 98.66,35.356 109.413,41.818 107.08,43.056 "/> -<polygon id="Fill-373" class="st3" points="107.08,43.056 107.124,106.413 96.371,99.952 96.326,36.595 "/> -<polygon id="Fill-375" class="st1" points="102.109,45.991 104.443,44.752 104.487,108.11 102.154,109.349 "/> -<polygon id="Fill-377" class="st2" points="91.356,39.53 93.69,38.291 104.443,44.752 102.109,45.991 "/> -<polygon id="Fill-379" class="st3" points="102.109,45.991 102.154,109.349 91.401,102.888 91.356,39.53 "/> -<polygon id="Fill-381" class="st1" points="97.139,48.602 99.473,47.363 99.517,110.721 97.183,111.96 "/> -<polygon id="Fill-383" class="st2" points="86.386,42.141 88.719,40.902 99.473,47.363 97.139,48.602 "/> -<polygon id="Fill-385" class="st3" points="97.139,48.602 97.183,111.96 86.43,105.499 86.386,42.141 "/> -<polygon id="Fill-387" class="st1" points="92.17,50.957 94.503,49.718 94.548,113.076 92.214,114.314 "/> -<polygon id="Fill-389" class="st2" points="81.416,44.495 83.75,43.257 94.503,49.718 92.17,50.956 "/> -<polygon id="Fill-391" class="st3" points="92.17,50.957 92.214,114.314 81.461,107.853 81.416,44.496 "/> -<polygon id="Fill-393" class="st1" points="87.199,53.568 89.533,52.329 89.577,115.687 87.244,116.926 "/> -<polygon id="Fill-395" class="st2" points="76.446,47.107 78.78,45.869 89.533,52.33 87.199,53.568 "/> -<polygon id="Fill-397" class="st3" points="87.199,53.568 87.244,116.926 76.491,110.464 76.446,47.107 "/> -<polygon id="Fill-399" class="st1" points="82.229,56.503 84.563,55.265 84.607,118.622 82.274,119.861 "/> -<polygon id="Fill-401" class="st2" points="71.476,50.042 73.81,48.803 84.563,55.265 82.229,56.503 "/> -<polygon id="Fill-403" class="st3" points="82.229,56.503 82.274,119.861 71.52,113.4 71.476,50.042 "/> -<polygon id="Fill-405" class="st1" points="77.259,59.114 79.592,57.876 79.638,121.233 77.304,122.472 "/> -<polygon id="Fill-407" class="st2" points="66.507,52.653 68.84,51.414 79.593,57.876 77.26,59.114 "/> -<polygon id="Fill-409" class="st3" points="77.259,59.114 77.304,122.472 66.55,116.011 66.507,52.653 "/> -<polygon id="Fill-411" class="st1" points="72.29,61.619 74.623,60.38 74.668,123.738 72.334,124.977 "/> -<polygon id="Fill-413" class="st2" points="61.536,55.158 63.87,53.919 74.623,60.38 72.29,61.619 "/> -<polygon id="Fill-415" class="st3" points="72.29,61.619 72.334,124.977 61.581,118.516 61.536,55.158 "/> -<polygon id="Fill-417" class="st1" points="67.547,63.859 69.881,62.62 69.926,125.978 67.592,127.216 "/> -<polygon id="Fill-419" class="st2" points="56.794,57.397 59.128,56.158 69.881,62.62 67.547,63.858 "/> -<polygon id="Fill-421" class="st3" points="67.547,63.859 67.592,127.216 56.839,120.755 56.794,57.398 "/> -<path id="Fill-424" class="st7" d="M52.648,122.157l1.4-0.744c0,0.015,0,0.029-0.001,0.043l-1.399,0.743V122.157"/> -<path id="Fill-427" class="st8" d="M52.648,122.2l1.399-0.743c0,0.028-0.001,0.056-0.003,0.083l-1.399,0.743 - C52.646,122.256,52.647,122.228,52.648,122.2"/> -<path id="Fill-430" class="st9" d="M52.645,122.283l1.399-0.743c-0.001,0.028-0.003,0.056-0.005,0.083l-1.4,0.743 - C52.641,122.339,52.643,122.311,52.645,122.283"/> -<path id="Fill-433" class="st10" d="M52.639,122.366l1.399-0.744c-0.002,0.029-0.004,0.056-0.008,0.083l-1.401,0.743 - C52.633,122.421,52.636,122.394,52.639,122.366"/> -<path id="Fill-436" class="st11" d="M52.63,122.448l1.4-0.743c-0.004,0.029-0.008,0.056-0.013,0.084l-1.4,0.743 - C52.622,122.505,52.626,122.477,52.63,122.448"/> -<path id="Fill-439" class="st12" d="M52.617,122.533l1.399-0.743c-0.004,0.028-0.01,0.056-0.016,0.083l-1.401,0.743 - C52.605,122.589,52.611,122.561,52.617,122.533"/> -<path id="Fill-442" class="st13" d="M52.599,122.616l1.4-0.743c-0.007,0.031-0.015,0.06-0.024,0.09l-1.399,0.743 - C52.584,122.677,52.592,122.647,52.599,122.616"/> -<path id="Fill-445" class="st14" d="M52.576,122.706l1.399-0.743c-0.008,0.032-0.019,0.063-0.03,0.093l-1.4,0.743 - C52.555,122.769,52.566,122.738,52.576,122.706"/> -<path id="Fill-448" class="st15" d="M52.545,122.798l1.4-0.743c-0.013,0.035-0.027,0.068-0.043,0.1l-1.4,0.743 - C52.518,122.866,52.531,122.833,52.545,122.798"/> -<path id="Fill-451" class="st16" d="M52.502,122.898l1.4-0.743c-0.02,0.042-0.042,0.081-0.065,0.118l-1.4,0.744 - C52.46,122.98,52.482,122.94,52.502,122.898"/> -<path id="Fill-454" class="st17" d="M52.436,123.017l1.4-0.744c-0.085,0.134-0.194,0.236-0.32,0.303l-1.4,0.743 - C52.243,123.252,52.351,123.15,52.436,123.017"/> -<path id="Fill-458" class="st17" d="M10.737,33.794l1.4-0.743c0.037-0.02,0.076-0.037,0.116-0.05l-1.4,0.743 - C10.813,33.757,10.774,33.774,10.737,33.794"/> -<path id="Fill-461" class="st16" d="M10.853,33.744l1.399-0.743c0.04-0.014,0.08-0.025,0.122-0.032l-1.399,0.743 - C10.933,33.72,10.892,33.73,10.853,33.744"/> -<path id="Fill-464" class="st15" d="M10.975,33.712l1.399-0.743c0.033-0.006,0.066-0.01,0.1-0.013l-1.4,0.743 - C11.039,33.702,11.007,33.706,10.975,33.712"/> -<path id="Fill-467" class="st14" d="M11.074,33.699l1.4-0.743c0.029-0.002,0.058-0.003,0.088-0.003l-1.4,0.744 - C11.133,33.696,11.102,33.697,11.074,33.699"/> -<path id="Fill-470" class="st13" d="M11.162,33.697l1.4-0.743c0.028,0,0.056,0.002,0.083,0.004l-1.399,0.743 - C11.218,33.699,11.189,33.697,11.162,33.697"/> -<path id="Fill-473" class="st12" d="M11.246,33.701l1.399-0.743c0.026,0.002,0.051,0.005,0.077,0.009l-1.401,0.744 - C11.296,33.706,11.27,33.703,11.246,33.701"/> -<path id="Fill-476" class="st11" d="M11.321,33.711l1.4-0.744c0.025,0.004,0.049,0.009,0.075,0.015l-1.401,0.743 - C11.37,33.719,11.345,33.715,11.321,33.711"/> -<path id="Fill-479" class="st10" d="M11.395,33.725l1.4-0.744c0.024,0.006,0.047,0.012,0.072,0.018l-1.401,0.744 - C11.443,33.736,11.418,33.73,11.395,33.725"/> -<path id="Fill-482" class="st9" d="M11.466,33.743l1.4-0.743c0.024,0.006,0.047,0.014,0.071,0.021l-1.401,0.743 - C11.513,33.757,11.489,33.749,11.466,33.743"/> -<path id="Fill-485" class="st8" d="M11.537,33.764l1.4-0.743c0.024,0.008,0.046,0.016,0.07,0.025l-1.401,0.743 - C11.583,33.78,11.56,33.772,11.537,33.764"/> -<path id="Fill-488" class="st7" d="M11.606,33.789l1.4-0.743c0.023,0.009,0.046,0.018,0.07,0.028l-1.401,0.743 - C11.652,33.807,11.629,33.798,11.606,33.789"/> -<path id="Fill-491" class="st18" d="M11.675,33.817l1.4-0.743c0.023,0.01,0.045,0.02,0.069,0.032l-1.401,0.743 - C11.721,33.838,11.697,33.827,11.675,33.817"/> -<path id="Fill-494" class="st19" d="M11.744,33.849l1.4-0.743c0.024,0.011,0.046,0.023,0.07,0.035l-1.401,0.743 - C11.791,33.872,11.767,33.86,11.744,33.849"/> -<path id="Fill-497" class="st20" d="M11.813,33.884l1.4-0.743c0.024,0.013,0.047,0.025,0.071,0.039l-1.401,0.743 - C11.86,33.909,11.836,33.897,11.813,33.884"/> -<polygon id="Fill-500" class="st21" points="11.883,33.923 13.283,33.18 13.31,33.196 11.91,33.939 "/> -<polygon id="Fill-504" class="st22" points="11.91,33.939 13.31,33.196 52.323,56.637 50.923,57.38 "/> -<polygon id="Fill-506" class="st23" points="52.605,60.416 54.004,59.673 54.048,121.414 52.648,122.157 "/> -<path id="Fill-509" class="st21" d="M50.923,57.38l1.4-0.743c0.015,0.009,0.03,0.018,0.044,0.027l-1.4,0.743 - C50.952,57.398,50.938,57.389,50.923,57.38"/> -<path id="Fill-512" class="st24" d="M50.966,57.408l1.4-0.743c0.024,0.014,0.047,0.03,0.071,0.046l-1.401,0.743 - C51.015,57.438,50.99,57.423,50.966,57.408"/> -<path id="Fill-515" class="st25" d="M51.037,57.453l1.4-0.743c0.025,0.016,0.048,0.033,0.073,0.051l-1.401,0.743 - C51.085,57.486,51.061,57.47,51.037,57.453"/> -<path id="Fill-518" class="st26" d="M51.109,57.504l1.4-0.743c0.024,0.017,0.048,0.036,0.072,0.055l-1.401,0.743 - C51.157,57.54,51.132,57.522,51.109,57.504"/> -<path id="Fill-521" class="st27" d="M51.18,57.559l1.4-0.743c0.026,0.019,0.05,0.039,0.075,0.06l-1.401,0.743 - C51.23,57.599,51.205,57.579,51.18,57.559"/> -<path id="Fill-524" class="st28" d="M51.255,57.619l1.4-0.743c0.025,0.021,0.05,0.042,0.074,0.064l-1.4,0.743 - C51.305,57.661,51.28,57.64,51.255,57.619"/> -<path id="Fill-527" class="st29" d="M51.329,57.683l1.399-0.743c0.026,0.022,0.05,0.045,0.076,0.069l-1.401,0.743 - C51.379,57.728,51.353,57.705,51.329,57.683"/> -<path id="Fill-530" class="st30" d="M51.403,57.752l1.4-0.743c0.025,0.023,0.048,0.047,0.073,0.071l-1.401,0.744 - C51.451,57.799,51.427,57.775,51.403,57.752"/> -<path id="Fill-533" class="st31" d="M51.475,57.824l1.4-0.744c0.024,0.024,0.046,0.049,0.07,0.074l-1.401,0.743 - C51.522,57.872,51.498,57.847,51.475,57.824"/> -<path id="Fill-536" class="st22" d="M51.545,57.897l1.4-0.743c0.022,0.024,0.044,0.048,0.066,0.073L51.61,57.97 - C51.589,57.945,51.567,57.921,51.545,57.897"/> -<path id="Fill-539" class="st32" d="M51.61,57.97l1.4-0.743c0.022,0.024,0.042,0.048,0.063,0.073l-1.401,0.743 - C51.652,58.018,51.631,57.994,51.61,57.97"/> -<path id="Fill-542" class="st33" d="M51.673,58.043l1.4-0.743c0.021,0.024,0.04,0.049,0.06,0.074l-1.399,0.743 - C51.713,58.092,51.694,58.067,51.673,58.043"/> -<path id="Fill-545" class="st34" d="M51.733,58.117l1.399-0.743c0.02,0.025,0.039,0.05,0.059,0.075l-1.4,0.743 - C51.771,58.167,51.753,58.142,51.733,58.117"/> -<path id="Fill-548" class="st35" d="M51.791,58.192l1.4-0.743c0.021,0.028,0.042,0.056,0.063,0.085l-1.401,0.743 - C51.833,58.249,51.812,58.22,51.791,58.192"/> -<path id="Fill-551" class="st36" d="M51.853,58.277l1.4-0.743c0.022,0.03,0.043,0.061,0.064,0.092l-1.4,0.743 - C51.896,58.338,51.874,58.307,51.853,58.277"/> -<path id="Fill-554" class="st37" d="M51.918,58.37l1.399-0.743c0.1,0.148,0.192,0.303,0.273,0.464l-1.401,0.743 - C52.108,58.674,52.018,58.518,51.918,58.37"/> -<path id="Fill-557" class="st36" d="M52.189,58.833l1.4-0.743c0.017,0.032,0.033,0.065,0.048,0.097l-1.4,0.744 - C52.221,58.898,52.206,58.865,52.189,58.833"/> -<path id="Fill-560" class="st35" d="M52.237,58.931l1.4-0.743c0.014,0.03,0.028,0.059,0.041,0.09l-1.399,0.743 - C52.265,58.991,52.252,58.961,52.237,58.931"/> -<path id="Fill-563" class="st34" d="M52.279,59.021l1.399-0.743c0.012,0.025,0.023,0.051,0.035,0.077l-1.401,0.743 - C52.301,59.072,52.29,59.047,52.279,59.021"/> -<path id="Fill-566" class="st33" d="M52.312,59.098l1.4-0.743c0.011,0.025,0.021,0.051,0.032,0.077l-1.401,0.743 - C52.333,59.149,52.323,59.123,52.312,59.098"/> -<path id="Fill-569" class="st32" d="M52.343,59.175l1.4-0.743c0.011,0.025,0.021,0.051,0.031,0.077l-1.401,0.743 - C52.365,59.226,52.355,59.2,52.343,59.175"/> -<path id="Fill-572" class="st22" d="M52.374,59.252l1.4-0.743c0.01,0.026,0.02,0.052,0.029,0.078l-1.401,0.743 - C52.394,59.304,52.384,59.278,52.374,59.252"/> -<path id="Fill-575" class="st31" d="M52.402,59.33l1.4-0.743c0.01,0.027,0.019,0.054,0.028,0.08l-1.4,0.744 - C52.422,59.384,52.412,59.357,52.402,59.33"/> -<path id="Fill-578" class="st30" d="M52.43,59.411l1.399-0.743c0.01,0.028,0.019,0.056,0.028,0.084l-1.401,0.743 - C52.448,59.467,52.439,59.439,52.43,59.411"/> -<path id="Fill-581" class="st29" d="M52.457,59.495l1.4-0.743c0.009,0.029,0.017,0.057,0.026,0.086l-1.401,0.743 - C52.475,59.553,52.466,59.524,52.457,59.495"/> -<path id="Fill-584" class="st28" d="M52.482,59.581l1.4-0.743l0.024,0.089l-1.401,0.743C52.499,59.641,52.49,59.611,52.482,59.581" - /> -<path id="Fill-587" class="st27" d="M52.506,59.671l1.4-0.743c0.008,0.03,0.015,0.06,0.022,0.09l-1.401,0.743 - C52.521,59.731,52.514,59.701,52.506,59.671"/> -<path id="Fill-590" class="st26" d="M52.527,59.761l1.4-0.743c0.007,0.03,0.014,0.06,0.02,0.091l-1.4,0.743 - C52.541,59.822,52.534,59.791,52.527,59.761"/> -<path id="Fill-593" class="st25" d="M52.547,59.852l1.4-0.743c0.006,0.03,0.012,0.059,0.017,0.09l-1.4,0.743 - C52.559,59.912,52.553,59.882,52.547,59.852"/> -<path id="Fill-596" class="st24" d="M52.563,59.942l1.4-0.743c0.005,0.029,0.01,0.059,0.014,0.088l-1.4,0.743 - C52.573,60.001,52.568,59.971,52.563,59.942"/> -<path id="Fill-599" class="st21" d="M52.577,60.03l1.4-0.743c0.004,0.029,0.008,0.058,0.011,0.087l-1.4,0.743 - C52.585,60.089,52.581,60.059,52.577,60.03"/> -<path id="Fill-602" class="st20" d="M52.588,60.118l1.4-0.743c0.003,0.029,0.006,0.057,0.008,0.086l-1.399,0.743L52.588,60.118"/> -<path id="Fill-605" class="st19" d="M52.596,60.204l1.399-0.743c0.003,0.028,0.005,0.057,0.006,0.085l-1.4,0.743 - C52.6,60.261,52.598,60.232,52.596,60.204"/> -<path id="Fill-608" class="st18" d="M52.601,60.289l1.4-0.743c0.002,0.028,0.003,0.056,0.003,0.084l-1.4,0.743 - C52.604,60.346,52.603,60.317,52.601,60.289"/> -<path id="Fill-611" class="st7" d="M52.604,60.374l1.4-0.743v0.042l-1.399,0.743C52.605,60.402,52.604,60.388,52.604,60.374"/> -<path id="Fill-615" class="st38" d="M50.923,57.38c0.928,0.557,1.682,1.914,1.683,3.036l0.043,61.741 - c0.001,1.122-0.756,1.58-1.691,1.018L11.921,99.72c-0.927-0.557-1.681-1.918-1.682-3.036l-0.043-61.707 - c-0.001-1.142,0.768-1.607,1.714-1.038L50.923,57.38z"/> -<polygon id="Fill-617" class="st39" points="34.915,60.022 31.519,57.96 31.519,53.129 34.915,55.19 "/> -<polygon id="Fill-619" class="st39" points="34.915,66.155 31.519,64.094 31.519,59.261 34.915,61.323 "/> -<polygon id="Fill-621" class="st39" points="34.915,72.287 31.519,70.225 31.519,65.396 34.915,67.455 "/> -<polygon id="Fill-623" class="st39" points="34.915,78.42 31.519,76.359 31.519,71.527 34.915,73.589 "/> -<polygon id="Fill-625" class="st39" points="34.915,89.497 31.519,87.435 31.519,82.604 34.915,84.664 "/> -<polygon id="Fill-627" class="st39" points="34.915,95.628 31.519,93.567 31.519,88.735 34.915,90.797 "/> -<polygon id="Fill-629" class="st39" points="34.915,101.761 31.519,99.699 31.519,94.869 34.915,96.93 "/> -<polygon id="Fill-631" class="st39" points="34.915,107.894 31.519,105.833 31.519,101.001 34.915,103.063 "/> -<polygon id="Fill-633" class="st39" points="23.989,73.753 20.593,71.691 20.593,66.859 23.989,68.92 "/> -<path id="Stroke-635" class="st40" d="M10.311,34.633c0.128-0.975,0.742-0.88,1.469-0.526c4.946,2.411,23.924,14.325,23.924,14.325 - l15.358,9.228c0,0,0.321,0.203,0.727,0.723c0.513,0.657,0.692,2.241,0.692,2.241l0.149,54.095c0,0,0.01,7.092-0.029,7.472 - c-0.183,1.747-1.73,0.817-1.73,0.817"/> -<polygon id="Fill-637" class="st39" points="23.782,83.321 20.386,81.259 20.386,76.428 23.782,78.488 "/> -<polygon id="Fill-639" class="st39" points="23.782,89.453 20.386,87.392 20.386,82.56 23.782,84.622 "/> -<polygon id="Fill-641" class="st39" points="23.782,95.586 20.386,93.524 20.386,88.694 23.782,90.755 "/> -<polygon id="Fill-643" class="st39" points="23.782,101.719 20.386,99.658 20.386,94.826 23.782,96.888 "/> -<polygon id="Fill-645" class="st3" points="77.925,20.781 81.515,18.876 81.518,23.545 77.93,25.45 "/> -<polygon id="Fill-647" class="st41" points="74.053,18.454 77.641,16.549 81.514,18.876 77.925,20.781 "/> -<polygon id="Fill-649" class="st42" points="77.925,20.781 77.93,25.45 74.057,23.123 74.054,18.454 "/> -<polygon id="Fill-651" class="st3" points="72.225,23.849 75.813,21.944 75.816,26.613 72.228,28.518 "/> -<polygon id="Fill-653" class="st41" points="68.352,21.522 71.94,19.617 75.813,21.944 72.225,23.849 "/> -<polygon id="Fill-655" class="st42" points="72.225,23.849 72.228,28.518 68.355,26.191 68.352,21.522 "/> -<polygon id="Fill-657" class="st43" points="70.252,33.618 79.586,28.663 79.59,34.85 70.256,39.805 "/> -<polygon id="Fill-659" class="st44" points="65.411,30.709 74.746,25.754 79.586,28.663 70.252,33.617 "/> -<polygon id="Fill-661" class="st45" points="70.252,33.618 70.256,39.805 65.416,36.897 65.411,30.71 "/> -<polyline id="Stroke-663" class="st46" points="65.453,30.803 70.252,33.617 70.213,39.652 "/> -<polyline id="Stroke-665" class="st46" points="68.352,21.522 72.193,23.935 72.225,26.97 "/> -<polyline id="Stroke-667" class="st46" points="74.053,18.454 77.975,20.869 77.943,25.309 "/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 115.788 128.577"><style><![CDATA[.v{fill:#58585b}.w{fill:#404042}.x{fill:#231f20}.y{stroke-linecap:square}.z{stroke-linejoin:round}.AA{fill:#a4a6a9}.AB{fill:#abadaf}.AC{fill:#babcbe}.AD{stroke-linecap:round}]]></style><g fill="none" stroke="#626467" stroke-width="2.722" class="z"><path d="M56.617 9.06l2.333-1.24.045 63.36-2.334 1.238z"/><path d="M45.863 2.6l2.334-1.24L58.95 7.823 56.617 9.06z"/><path d="M56.617 9.06l.044 63.357-10.753-6.46L45.863 2.6z"/><path d="M51.646 11.673l2.334-1.24.044 63.358-2.333 1.238z"/><path d="M40.893 5.21l2.334-1.24 10.753 6.462-2.334 1.238z"/><path d="M51.646 11.673l.045 63.357-10.754-6.46-.044-63.357z"/><path d="M46.677 14.607l2.334-1.238.044 63.357-2.334 1.24z"/><path d="M35.924 8.146l2.333-1.24L49.01 13.37l-2.334 1.238z"/><path d="M46.677 14.607l.044 63.358-10.753-6.46-.044-63.358z"/><path d="M41.707 17.22l2.333-1.238.045 63.357-2.334 1.24z"/><path d="M30.953 10.758l2.334-1.24L44.04 15.98l-2.333 1.238z"/><path d="M41.707 17.22l.044 63.358-10.753-6.46-.045-63.358z"/><use xlink:href="#B"/><use xlink:href="#C"/><use xlink:href="#D"/><use xlink:href="#B" x="-4.97" y="2.611"/><path d="M21.013 15.724l2.333-1.24 10.754 6.46-2.334 1.24z"/><path d="M31.766 22.185l.045 63.358-10.754-6.462-.044-63.357z"/><use xlink:href="#E"/><use xlink:href="#F"/><path d="M26.797 25.12l.044 63.357-10.753-6.46-.044-63.357z"/><use xlink:href="#E" x="-4.97" y="2.61"/><use xlink:href="#G"/><use xlink:href="#H"/><path d="M16.856 30.236l2.334-1.238.044 63.357-2.333 1.24z"/><path d="M6.103 23.775l2.334-1.24L19.2 28.998l-2.334 1.238z"/><use xlink:href="#I"/><path d="M12.114 32.475l2.334-1.238.044 63.358-2.333 1.24z"/><use xlink:href="#C" x="-24.623" y="12.902"/><path d="M12.114 32.475l.045 63.36-10.754-6.462-.044-63.358zm41.92 24.73l51.338-27.25.047 65.802-51.34 27.25z"/><path d="M11.626 31.724l51.34-27.25 42.408 25.482-51.338 27.25z"/><path d="M54.035 57.205l.046 65.802-42.4-25.48-.046-65.802zm58.015-16.76l2.333-1.238.045 63.357-2.333 1.24z"/><use xlink:href="#F" x="85.253" y="15.323"/><path d="M112.05 40.444l.045 63.358-10.754-6.46-.044-63.358z"/><use xlink:href="#E" x="80.283" y="17.936"/><use xlink:href="#G" x="85.253" y="15.325"/><use xlink:href="#H" x="85.253" y="15.326"/><use xlink:href="#B" x="65.374" y="26.416"/><path d="M91.356 39.53l2.334-1.24 10.753 6.46-2.334 1.24z"/><use xlink:href="#I" x="85.254" y="15.754"/><path d="M97.14 48.602l2.334-1.24.044 63.358-2.334 1.24z"/><path d="M86.386 42.14l2.333-1.24 10.754 6.46-2.334 1.24z"/><path d="M97.14 48.602l.044 63.358-10.753-6.46-.044-63.358z"/><use xlink:href="#E" x="65.373" y="25.837"/><path d="M81.416 44.495l2.334-1.238 10.753 6.46-2.333 1.238z"/><use xlink:href="#H" x="70.343" y="23.227"/><use xlink:href="#B" x="50.464" y="33.994"/><use xlink:href="#C" x="50.463" y="33.995"/><use xlink:href="#D" x="50.464" y="33.994"/><path d="M82.23 56.503l2.334-1.238.044 63.357-2.333 1.24z"/><path d="M71.476 50.042l2.334-1.24 10.753 6.462-2.334 1.238z"/><path d="M82.23 56.503l.045 63.358-10.754-6.46-.044-63.358z"/><path d="M77.26 59.114l2.333-1.238.046 63.357-2.334 1.24z"/><use xlink:href="#F" x="50.463" y="33.993"/><path d="M77.26 59.114l.045 63.358-10.754-6.46-.043-63.358z"/><path d="M72.3 61.62l2.333-1.24.045 63.358-2.334 1.24z"/><path d="M61.536 55.158l2.334-1.24 10.753 6.46-2.333 1.24z"/><path d="M72.3 61.62l.044 63.358-10.753-6.46-.045-63.358z"/><path d="M67.547 63.86l2.334-1.24.045 63.358-2.334 1.238z"/><path d="M56.794 57.397l2.334-1.24L69.88 62.62l-2.334 1.238z"/><path d="M67.547 63.86l.045 63.357-10.753-6.46-.045-63.357z"/><g class="y"><path d="M52.648 122.157l1.4-.744-.001.043-1.4.743v-.042m.001.043l1.4-.743-.003.083-1.4.743.003-.083"/><path d="M52.645 122.283l1.4-.743-.005.083-1.4.743.006-.083"/><path d="M52.64 122.366l1.4-.744-.008.083-1.4.743.01-.082"/><path d="M52.63 122.448l1.4-.743-.013.084-1.4.743.013-.084m-.013.085l1.4-.743-.016.083-1.4.743.018-.083"/><path d="M52.6 122.616l1.4-.743-.024.1-1.4.743.023-.1"/><path d="M52.576 122.706l1.4-.743a.92.92 0 0 1-.03.093l-1.4.743.03-.093"/><use xlink:href="#J"/><use xlink:href="#K"/><use xlink:href="#L"/></g><path d="M53.516 122.576l-1.4.743c.328-.174.532-.578.532-1.162l1.4-.744c0 .584-.204.99-.532 1.163z"/><g class="y"><path d="M10.737 33.794l1.4-.743a.7.7 0 0 1 .116-.05l-1.4.743a.7.7 0 0 0-.116.05"/><path d="M10.853 33.744l1.4-.743a.73.73 0 0 1 .122-.032l-1.4.743a.81.81 0 0 0-.122.032"/><path d="M10.975 33.712l1.4-.743c.033-.006.066-.01.1-.013l-1.4.743-.1.013"/><path d="M11.074 33.7l1.4-.743.088-.003-1.4.744c-.03-.001-.06 0-.088.002"/><path d="M11.162 33.697l1.4-.743.083.004-1.4.743-.084-.004"/><path d="M11.246 33.7l1.4-.743.077.01-1.4.744a.67.67 0 0 0-.075-.01"/><path d="M11.32 33.71l1.4-.744.075.015-1.4.743-.074-.014"/><path d="M11.395 33.725l1.4-.744.072.018-1.4.744-.07-.018"/><path d="M11.466 33.743l1.4-.743.07.02-1.4.743-.07-.02m.07.02l1.4-.743.07.025-1.4.743-.07-.025m.07.026l1.4-.743.07.028-1.4.743-.07-.028"/><path d="M11.675 33.817l1.4-.743.07.032-1.4.743-.068-.032m.067.033l1.4-.743.07.035-1.4.743-.07-.035"/><path d="M11.813 33.884l1.4-.743.07.04-1.4.743-.07-.04"/><path d="M11.883 33.923l1.4-.743.027.016-1.4.743-.027-.016"/></g><path d="M10.737 33.794l1.4-.743c.307-.163.72-.128 1.173.145l-1.4.743c-.453-.272-.866-.308-1.173-.145z"/><path d="M11.9 33.94l1.4-.743 39.013 23.44-1.4.743zm40.705 26.476l1.4-.743.044 61.74-1.4.743z"/><g class="y"><path d="M50.923 57.38l1.4-.743.044.027-1.4.743-.044-.027m.043.028l1.4-.743.07.046-1.4.743c-.02-.016-.046-.03-.07-.046"/><path d="M51.037 57.453l1.4-.743.073.05-1.4.743-.072-.05m.072.05l1.4-.743.072.055-1.4.743-.07-.055"/><path d="M51.18 57.56l1.4-.743.075.06-1.4.743-.074-.06"/><path d="M51.255 57.62l1.4-.743.074.064-1.4.743-.074-.064"/><path d="M51.33 57.683l1.4-.743.076.07-1.4.743-.074-.07"/><path d="M51.403 57.752l1.4-.743.073.07-1.4.744-.072-.072m.07.073l1.4-.744.07.074-1.4.743-.07-.073"/><path d="M51.545 57.897l1.4-.743.066.073-1.4.743-.065-.073"/><path d="M51.6 57.97l1.4-.743.063.073-1.4.743-.062-.073m.072.073l1.4-.743.06.074-1.4.743-.06-.074"/><path d="M51.733 58.117l1.4-.743.06.075-1.4.743-.058-.075"/><path d="M51.79 58.192l1.4-.743.063.085-1.4.743-.062-.085"/><path d="M51.853 58.277l1.4-.743.064.092-1.4.743-.064-.092"/><use xlink:href="#M"/><path d="M52.19 58.833l1.4-.743.048.097-1.4.744-.048-.098"/><path d="M52.237 58.93l1.4-.743.04.1-1.4.743-.042-.1"/><path d="M52.28 59.02l1.4-.743.035.077-1.4.743-.033-.077"/><path d="M52.312 59.098l1.4-.743.032.077-1.4.743-.03-.077"/><path d="M52.343 59.175l1.4-.743.03.077-1.4.743c-.008-.026-.018-.052-.03-.077m.03.077l1.4-.743.03.078-1.4.743-.028-.078"/><path d="M52.402 59.33l1.4-.743.028.08-1.4.744-.028-.08"/><path d="M52.43 59.4l1.4-.743.028.084-1.4.743-.026-.084m.025.085l1.4-.743.026.086-1.4.743-.025-.086"/><path d="M52.482 59.58l1.4-.743.024.09-1.4.743-.023-.09"/><path d="M52.506 59.67l1.4-.743.022.1-1.4.743-.02-.1"/><path d="M52.527 59.76l1.4-.743.02.1-1.4.743-.02-.1m.02.092l1.4-.743.017.1-1.4.743-.017-.1"/><path d="M52.563 59.942l1.4-.743.014.088-1.4.743-.014-.088"/><path d="M52.577 60.03l1.4-.743.01.087-1.4.743-.01-.087m.01.088l1.4-.743.008.086-1.4.743-.01-.086"/><path d="M52.596 60.204l1.4-.743.006.085-1.4.743-.005-.085"/><path d="M52.6 60.29l1.4-.743.003.084-1.4.743-.003-.084"/><path d="M52.604 60.374l1.4-.743v.042l-1.4.743-.001-.042"/></g><path d="M50.923 57.38l1.4-.743c.927.557 1.682 1.913 1.682 3.035l-1.4.744c-.001-1.122-.755-2.48-1.683-3.036z"/><use xlink:href="#N"/><path d="M34.915 60.022L31.52 57.96v-4.83l3.396 2.06zm0 6.133l-3.396-2.06V59.26l3.396 2.062z"/><use xlink:href="#O"/><use xlink:href="#P"/><use xlink:href="#O" y="17.209"/><use xlink:href="#P" y="17.208"/><path d="M34.915 101.76L31.52 99.7v-4.83l3.396 2.06zm0 6.134l-3.396-2.06V101l3.396 2.062zM24 73.753l-3.396-2.062v-4.83L24 68.92z"/><use xlink:href="#Q" class="y"/><use xlink:href="#O" x="-11.133" y="11.032"/><path d="M23.782 89.453l-3.396-2.06V82.56l3.396 2.062z"/><use xlink:href="#O" x="-11.133" y="23.298"/><use xlink:href="#P" x="-11.133" y="23.3"/></g><path d="M56.617 9.06l2.333-1.238.045 63.358-2.334 1.237z" class="w"/><path d="M45.863 2.6l2.334-1.24L58.95 7.823 56.617 9.06z" class="x"/><path d="M56.617 9.06l.044 63.357-10.753-6.46L45.863 2.6z" class="v"/><path d="M51.646 11.673l2.334-1.24.044 63.358-2.333 1.238z" class="w"/><path d="M40.893 5.21l2.334-1.24 10.753 6.462-2.334 1.238z" class="x"/><path d="M51.646 11.673l.045 63.357-10.754-6.46-.044-63.357z" class="v"/><path d="M46.677 14.607l2.334-1.238.044 63.357-2.334 1.24z" class="w"/><path d="M35.924 8.146l2.333-1.24L49.01 13.37l-2.334 1.238z" class="x"/><path d="M46.677 14.607l.044 63.358-10.753-6.46-.044-63.358z" class="v"/><path d="M41.707 17.22l2.333-1.238.045 63.357-2.334 1.24z" class="w"/><path d="M30.953 10.758l2.334-1.24L44.04 15.98l-2.333 1.238z" class="x"/><path d="M41.707 17.22l.044 63.358-10.753-6.46-.045-63.358z" class="v"/><use xlink:href="#B" class="w"/><use xlink:href="#C" class="x"/><use xlink:href="#D" class="v"/><use xlink:href="#B" x="-4.97" y="2.611" class="w"/><path d="M21.013 15.724l2.333-1.24 10.754 6.46-2.334 1.24z" class="x"/><path d="M31.766 22.185l.045 63.358-10.754-6.462-.044-63.357z" class="v"/><use xlink:href="#E" class="w"/><use xlink:href="#F" class="x"/><path d="M26.797 25.12l.044 63.357-10.753-6.46-.044-63.357z" class="v"/><use xlink:href="#E" x="-4.97" y="2.61" class="w"/><use xlink:href="#G" class="x"/><use xlink:href="#H" class="v"/><path d="M16.856 30.236l2.334-1.238.044 63.357-2.333 1.24z" class="w"/><path d="M6.103 23.775l2.334-1.24L19.2 28.998l-2.334 1.238z" class="x"/><use xlink:href="#I" class="v"/><use xlink:href="#B" x="-24.622" y="12.902" class="w"/><use xlink:href="#C" x="-24.623" y="12.902" class="x"/><path d="M12.114 32.476l.045 63.358-10.754-6.462-.044-63.357z" class="v"/><path d="M54.035 57.205l51.338-27.25.047 65.802-51.34 27.25z" fill="#6c6e70"/><path d="M11.626 31.724l51.34-27.25 42.408 25.482-51.338 27.25z" fill="#d0d2d3"/><path d="M54.035 57.205l.046 65.803-42.41-25.482-.046-65.802z" fill="#b2b3b6"/><path d="M112.05 40.444l2.333-1.238.045 63.357-2.334 1.24z" class="w"/><use xlink:href="#F" x="85.253" y="15.323" class="x"/><path d="M112.05 40.444l.044 63.358-10.753-6.46-.043-63.358z" class="v"/><use xlink:href="#E" x="80.283" y="17.936" class="w"/><use xlink:href="#G" x="85.253" y="15.325" class="x"/><use xlink:href="#H" x="85.253" y="15.326" class="v"/><use xlink:href="#B" x="65.374" y="26.416" class="w"/><path d="M91.356 39.53l2.334-1.24 10.753 6.46-2.334 1.24z" class="x"/><use xlink:href="#I" x="85.254" y="15.754" class="v"/><path d="M97.14 48.602l2.334-1.24.044 63.358-2.334 1.24z" class="w"/><path d="M86.386 42.14l2.333-1.24 10.754 6.46-2.334 1.24z" class="x"/><path d="M97.14 48.602l.044 63.358-10.753-6.46-.044-63.358z" class="v"/><use xlink:href="#E" x="65.373" y="25.837" class="w"/><path d="M81.416 44.495l2.334-1.238 10.753 6.46-2.333 1.238z" class="x"/><use xlink:href="#H" x="70.343" y="23.227" class="v"/><use xlink:href="#B" x="50.464" y="33.994" class="w"/><use xlink:href="#C" x="50.463" y="33.995" class="x"/><use xlink:href="#D" x="50.464" y="33.994" class="v"/><path d="M82.23 56.503l2.334-1.238.044 63.357-2.333 1.24z" class="w"/><path d="M71.476 50.042l2.334-1.24 10.753 6.462-2.334 1.238z" class="x"/><path d="M82.23 56.503l.045 63.358-10.754-6.46-.044-63.358z" class="v"/><path d="M77.26 59.114l2.333-1.238.046 63.357-2.334 1.24z" class="w"/><use xlink:href="#F" x="50.463" y="33.993" class="x"/><path d="M77.26 59.114l.045 63.358-10.754-6.46-.043-63.358z" class="v"/><path d="M72.3 61.62l2.333-1.24.045 63.358-2.334 1.24z" class="w"/><path d="M61.536 55.158l2.334-1.24 10.753 6.46-2.333 1.24z" class="x"/><path d="M72.3 61.62l.044 63.358-10.753-6.46-.045-63.358z" class="v"/><path d="M67.547 63.86l2.334-1.24.045 63.358-2.334 1.238z" class="w"/><path d="M56.794 57.397l2.334-1.24L69.88 62.62l-2.334 1.238z" class="x"/><path d="M67.547 63.86l.045 63.357-10.753-6.46-.045-63.357z" class="v"/><path d="M52.648 122.157l1.4-.744-.001.043-1.4.743v-.042" class="AA"/><path d="M52.648 122.2l1.4-.743-.003.083-1.4.743.003-.083" fill="#a2a5a7"/><path d="M52.645 122.283l1.4-.743-.005.083-1.4.743.006-.083" fill="#a1a3a6"/><path d="M52.64 122.366l1.4-.744-.008.083-1.4.743.01-.082" fill="#9fa1a4"/><path d="M52.63 122.448l1.4-.743-.013.084-1.4.743.013-.084" fill="#9ea0a2"/><path d="M52.617 122.533l1.4-.743-.016.083-1.4.743.018-.083" fill="#9c9ea1"/><path d="M52.6 122.616l1.4-.743-.024.1-1.4.743.023-.1" fill="#9a9c9f"/><path d="M52.576 122.706l1.4-.743a.92.92 0 0 1-.03.093l-1.4.743.03-.093" fill="#999b9d"/><use xlink:href="#J" fill="#97999c"/><use xlink:href="#K" fill="#96989a"/><g fill="#949699"><use xlink:href="#L"/><path d="M10.737 33.794l1.4-.743a.7.7 0 0 1 .116-.05l-1.4.743a.7.7 0 0 0-.116.05"/></g><path d="M10.853 33.744l1.4-.743a.73.73 0 0 1 .122-.032l-1.4.743a.81.81 0 0 0-.122.032" fill="#96989a"/><path d="M10.975 33.712l1.4-.743c.033-.006.066-.01.1-.013l-1.4.743-.1.013" fill="#97999c"/><path d="M11.074 33.7l1.4-.743.088-.003-1.4.744c-.03-.001-.06 0-.088.002" fill="#999b9d"/><path d="M11.162 33.697l1.4-.743.083.004-1.4.743-.084-.004" fill="#9a9c9f"/><path d="M11.246 33.7l1.4-.743.077.01-1.4.744a.67.67 0 0 0-.075-.01" fill="#9c9ea1"/><path d="M11.32 33.71l1.4-.744.075.015-1.4.743-.074-.014" fill="#9ea0a2"/><path d="M11.395 33.725l1.4-.744.072.018-1.4.744-.07-.018" fill="#9fa1a4"/><path d="M11.466 33.743l1.4-.743.07.02-1.4.743-.07-.02" fill="#a1a3a6"/><path d="M11.537 33.764l1.4-.743.07.025-1.4.743-.07-.025" fill="#a2a5a7"/><path d="M11.606 33.79l1.4-.743.07.028-1.4.743-.07-.028" class="AA"/><path d="M11.675 33.817l1.4-.743.07.032-1.4.743-.068-.032" fill="#a6a8aa"/><path d="M11.744 33.85l1.4-.743.07.035-1.4.743-.07-.035" fill="#a7a9ac"/><path d="M11.813 33.884l1.4-.743.07.04-1.4.743-.07-.04" fill="#a9abae"/><path d="M11.883 33.923l1.4-.743.027.016-1.4.743z" class="AB"/><path d="M11.9 33.94l1.4-.743 39.013 23.44-1.4.743z" class="AC"/><path d="M52.605 60.416l1.4-.743.044 61.74-1.4.743z" fill="#898a8c"/><path d="M50.923 57.38l1.4-.743.044.027-1.4.743-.044-.027" class="AB"/><path d="M50.966 57.408l1.4-.743.07.046-1.4.743c-.02-.016-.046-.03-.07-.046" fill="#acaeb1"/><path d="M51.037 57.453l1.4-.743.073.05-1.4.743-.072-.05" fill="#aeb0b2"/><path d="M51.11 57.504l1.4-.743.072.055-1.4.743-.07-.055" fill="#b0b2b4"/><path d="M51.18 57.56l1.4-.743.075.06-1.4.743-.074-.06" fill="#b1b3b6"/><path d="M51.255 57.62l1.4-.743.074.064-1.4.743-.074-.064" fill="#b3b5b7"/><path d="M51.33 57.683l1.4-.743.076.07-1.4.743-.074-.07" fill="#b5b7b9"/><path d="M51.403 57.752l1.4-.743.073.07-1.4.744-.072-.072" fill="#b6b8bb"/><path d="M51.475 57.824l1.4-.744.07.074-1.4.743-.07-.073" fill="#b8babc"/><path d="M51.545 57.897l1.4-.743.066.073-1.4.743-.065-.073" class="AC"/><path d="M51.6 57.97l1.4-.743.063.073-1.4.743-.062-.073" fill="#bbbdc0"/><path d="M51.673 58.043l1.4-.743.06.074-1.4.743-.06-.074" fill="#c0c2c4"/><path d="M51.733 58.117l1.4-.743.06.075-1.4.743-.058-.075" fill="#c2c4c6"/><path d="M51.79 58.192l1.4-.743.063.085-1.4.743-.062-.085" fill="#c3c5c7"/><path d="M51.853 58.277l1.4-.743.064.092-1.4.743-.064-.092" fill="#c5c6c8"/><use xlink:href="#M" fill="#c6c7c9"/><path d="M52.19 58.833l1.4-.743.048.097-1.4.744-.048-.098" fill="#c5c6c8"/><path d="M52.237 58.93l1.4-.743.04.1-1.4.743-.042-.1" fill="#c3c5c7"/><path d="M52.28 59.02l1.4-.743.035.077-1.4.743-.033-.077" fill="#c2c4c6"/><path d="M52.312 59.098l1.4-.743.032.077-1.4.743-.03-.077" fill="#c0c2c4"/><path d="M52.343 59.175l1.4-.743.03.077-1.4.743c-.008-.026-.018-.052-.03-.077" fill="#bbbdc0"/><path d="M52.374 59.252l1.4-.743.03.078-1.4.743-.028-.078" class="AC"/><path d="M52.402 59.33l1.4-.743.028.08-1.4.744-.028-.08" fill="#b8babc"/><path d="M52.43 59.41l1.4-.743.028.084-1.4.743-.026-.084" fill="#b6b8bb"/><path d="M52.457 59.495l1.4-.743.026.086-1.4.743-.025-.086" fill="#b5b7b9"/><path d="M52.482 59.58l1.4-.743.024.09-1.4.743-.023-.09" fill="#b3b5b7"/><path d="M52.506 59.67l1.4-.743.022.1-1.4.743-.02-.1" fill="#b1b3b6"/><path d="M52.527 59.76l1.4-.743.02.09-1.4.743-.02-.09" fill="#b0b2b4"/><path d="M52.547 59.852l1.4-.743.017.1-1.4.743-.017-.1" fill="#aeb0b2"/><path d="M52.563 59.942l1.4-.743.014.088-1.4.743-.014-.088" fill="#acaeb1"/><path d="M52.577 60.03l1.4-.743.01.087-1.4.743-.01-.087" class="AB"/><path d="M52.588 60.118l1.4-.743.008.086-1.4.743-.01-.086" fill="#a9abae"/><path d="M52.596 60.204l1.4-.743.006.085-1.4.743-.005-.085" fill="#a7a9ac"/><path d="M52.6 60.29l1.4-.743.003.084-1.4.743-.003-.084" fill="#a6a8aa"/><path d="M52.604 60.374l1.4-.743v.042l-1.4.743-.001-.042" class="AA"/><use xlink:href="#N" fill="#a6a8ab"/><g fill="#fefefe"><path d="M34.915 60.022L31.52 57.96v-4.83l3.396 2.06zm0 6.133l-3.396-2.06V59.26l3.396 2.062z"/><use xlink:href="#O" y="-0.001"/><use xlink:href="#P"/><use xlink:href="#O" y="17.209"/><use xlink:href="#P" y="17.208"/><path d="M34.915 101.76L31.52 99.7v-4.83l3.396 2.06zm0 6.134l-3.396-2.06V101l3.396 2.062zM24 73.753l-3.396-2.062v-4.83L24 68.92z"/></g><use xlink:href="#Q" fill="none" stroke="#efeeee" stroke-width=".336" class="z AD"/><g fill="#fefefe"><use xlink:href="#O" x="-11.133" y="11.032"/><path d="M23.782 89.453l-3.396-2.06V82.56l3.396 2.062z"/><use xlink:href="#O" x="-11.133" y="23.298"/><use xlink:href="#P" x="-11.133" y="23.3"/></g><path d="M77.925 20.78l3.6-1.905.003 4.67-3.588 1.905z" class="v"/><path d="M74.053 18.454l3.588-1.905 3.873 2.327-3.59 1.905z" fill="#939597"/><path d="M77.925 20.78l.005 4.67-3.873-2.327-.003-4.67z" fill="#808184"/><path d="M72.225 23.85l3.588-1.905.003 4.67-3.588 1.905z" class="v"/><path d="M68.352 21.522l3.588-1.905 3.873 2.327-3.588 1.905z" fill="#939597"/><path d="M72.225 23.85l.003 4.67-3.873-2.327-.003-4.67z" fill="#808184"/><path d="M70.252 33.618l9.334-4.955.004 6.187-9.334 4.955z" fill="#469049"/><path d="M65.41 30.71l9.335-4.955 4.84 2.91-9.334 4.954z" fill="#bbddb1"/><path d="M70.252 33.618l.004 6.187-4.84-2.908-.005-6.187z" fill="#8ccb8e"/><path d="M65.453 30.803l4.8 2.814-.04 6.035m-1.86-18.13l3.84 2.413.032 3.035m1.83-8.516l3.922 2.415-.032 4.44" fill="none" stroke="#dfdfde" stroke-width=".345" class="z AD"/><defs ><path id="B" d="M36.736 19.574l2.334-1.24.044 63.358-2.333 1.24z"/><path id="C" d="M25.983 13.112l2.334-1.238 10.753 6.46-2.334 1.238z"/><path id="D" d="M36.736 19.574l.045 63.358-10.753-6.462-.045-63.357z"/><path id="E" d="M26.797 25.12l2.333-1.24.045 63.358-2.334 1.238z"/><path id="F" d="M16.044 18.66l2.333-1.24 10.753 6.462-2.333 1.238z"/><path id="G" d="M11.073 21.27l2.334-1.24 10.753 6.462-2.333 1.238z"/><path id="H" d="M21.827 27.73l.044 63.357-10.753-6.46-.045-63.357z"/><path id="I" d="M16.856 30.236l.045 63.358-10.753-6.46-.045-63.358z"/><path id="J" d="M52.545 122.798l1.4-.743c-.013.035-.027.068-.043.1l-1.4.743c.016-.032.03-.065.043-.1"/><path id="K" d="M52.502 122.898l1.4-.743a1.2 1.2 0 0 1-.065.118l-1.4.744a1.22 1.22 0 0 0 .065-.119"/><path id="L" d="M52.436 123.017l1.4-.744c-.085.134-.194.236-.32.303l-1.4.743c.127-.067.235-.17.32-.302"/><path id="M" d="M51.918 58.37l1.4-.743a4.21 4.21 0 0 1 .273.464l-1.4.743a4.29 4.29 0 0 0-.271-.464"/><path id="N" d="M50.923 57.38c.928.557 1.682 1.914 1.683 3.036l.043 61.74c.001 1.122-.756 1.58-1.69 1.018L11.92 99.72c-.927-.557-1.68-1.918-1.682-3.036l-.043-61.707c-.001-1.142.768-1.607 1.714-1.038l39.013 23.44z"/><path id="O" d="M34.915 72.288l-3.396-2.062v-4.83l3.396 2.06z"/><path id="P" d="M34.915 78.42l-3.396-2.06v-4.832l3.396 2.062z"/><path id="Q" d="M10.31 34.633c.128-.975.742-.88 1.47-.526 4.946 2.41 23.924 14.325 23.924 14.325l15.358 9.228s.32.203.727.723c.513.657.692 2.24.692 2.24l.15 54.095-.03 7.472c-.183 1.747-1.73.817-1.73.817"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/switch/Modular_Switch_SBx8106.svg b/src/main/webapp/img/lib/allied_telesis/switch/Modular_Switch_SBx8106.svg index a8959933475ea9df2ca220bb72e3cbbca8ebdcf1..f34a9ef30d4c3b492a4df0cb7a3eb265a0b8cf33 100644 --- a/src/main/webapp/img/lib/allied_telesis/switch/Modular_Switch_SBx8106.svg +++ b/src/main/webapp/img/lib/allied_telesis/switch/Modular_Switch_SBx8106.svg @@ -1,129 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 143.37 123.733" style="enable-background:new 0 0 143.37 123.733;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#FEFEFE;} - .st1{font-family:'ArialMT';} - .st2{font-size:2.3392px;} - .st3{fill:none;stroke:#FEFEFE;stroke-width:0.722;stroke-linecap:round;} - .st4{fill:none;stroke:#626366;stroke-width:2.999;stroke-linejoin:round;} - .st5{fill:#898B8E;} - .st6{fill:#BBBDBF;} - .st7{fill:#B3B5B7;} - .st8{fill:#636466;} - .st9{fill:none;stroke:#636466;stroke-width:0.25;stroke-linecap:round;stroke-linejoin:round;} - .st10{fill:none;stroke:#DFE0DF;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;} - .st11{fill:#B22216;} - .st12{fill:#231F20;} -</style> -<title>icon-SBx8106</title> -<desc>Created with Sketch.</desc> -<text transform="matrix(1 0 0 1 27.7125 23.4241)" class="st0 st1 st2">SBx8106</text> -<path id="Stroke-2" class="st3" d="M4.128,36.102v40.2"/> -<g id="Group-9" transform="translate(0.000000, 0.733000)"> - <polygon id="Stroke-3" class="st4" points="79.88,80.752 141.841,47.863 141.87,88.609 79.91,121.5 "/> - <polygon id="Stroke-5" class="st4" points="1.5,33.658 63.46,0.767 141.841,47.865 79.88,80.753 "/> - <polygon id="Stroke-7" class="st4" points="79.88,80.752 79.91,121.5 1.528,74.402 1.5,33.657 "/> -</g> -<polygon id="Fill-10" class="st5" points="79.88,81.485 141.841,48.597 141.87,89.342 79.91,122.233 "/> -<polygon id="Fill-11" class="st6" points="1.5,34.39 63.46,1.5 141.841,48.597 79.88,81.486 "/> -<polygon id="Fill-12" class="st7" points="79.88,81.485 79.91,122.233 1.528,75.135 1.5,34.389 "/> -<path id="Stroke-13" class="st3" d="M75.555,78.794v40.439"/> -<path id="Stroke-14" class="st3" d="M38.808,70.186V97.66"/> -<polygon id="Fill-15" class="st0" points="75.297,102.327 4.083,59.424 4.083,58.484 75.297,101.387 "/> -<polygon id="Fill-16" class="st0" points="75.323,112.038 4.111,69.134 4.111,68.194 75.323,111.098 "/> -<polygon id="Fill-17" class="st0" points="75.069,92.484 3.857,49.581 3.857,48.64 75.069,91.544 "/> -<polygon id="Fill-18" class="st8" points="21.59,58.596 4.983,48.562 4.983,37.561 21.662,47.523 "/> -<polygon id="Stroke-19" class="st9" points="21.59,58.596 4.983,48.562 4.983,37.561 21.662,47.523 "/> -<polygon id="Fill-20" class="st0" points="20.514,63.542 5.326,54.376 5.326,52.123 20.513,61.198 "/> -<polygon id="Fill-21" class="st0" points="37.09,73.316 21.902,64.151 21.902,61.897 37.089,70.972 "/> -<polygon id="Fill-22" class="st0" points="37.146,76.73 21.958,67.565 21.958,65.311 37.145,74.386 "/> -<polygon id="Fill-23" class="st0" points="56.424,85.103 41.236,75.938 41.236,73.684 56.423,82.759 "/> -<polygon id="Fill-24" class="st0" points="56.481,88.518 41.292,79.353 41.292,77.099 56.479,86.174 "/> -<polygon id="Fill-25" class="st0" points="73,94.879 57.813,85.714 57.813,83.46 72.999,92.535 "/> -<polygon id="Fill-26" class="st0" points="73.055,98.293 57.868,89.128 57.868,86.874 73.054,95.949 "/> -<polygon id="Fill-27" class="st0" points="20.469,73.436 5.281,64.271 5.281,62.018 20.468,71.092 "/> -<polygon id="Fill-28" class="st0" points="20.527,76.851 5.337,67.686 5.337,65.432 20.524,74.507 "/> -<polygon id="Fill-29" class="st0" points="37.044,83.212 21.858,74.047 21.858,71.793 37.043,80.868 "/> -<polygon id="Fill-30" class="st0" points="56.381,94.999 41.191,85.834 41.191,83.58 56.377,92.655 "/> -<polygon id="Fill-31" class="st0" points="56.437,98.413 41.248,89.248 41.248,86.994 56.435,96.069 "/> -<polygon id="Fill-32" class="st0" points="72.955,104.774 57.768,95.609 57.768,93.355 72.954,102.43 "/> -<polygon id="Fill-33" class="st0" points="73.01,108.188 57.823,99.023 57.823,96.769 73.009,105.844 "/> -<polygon id="Fill-34" class="st0" points="20.788,82.56 5.599,73.396 5.599,71.141 20.785,80.215 "/> -<polygon id="Fill-35" class="st0" points="20.844,85.974 5.655,76.809 5.655,74.555 20.841,83.63 "/> -<polygon id="Fill-36" class="st0" points="37.362,92.335 22.174,83.17 22.174,80.916 37.361,89.991 "/> -<polygon id="Fill-37" class="st0" points="37.418,95.749 22.231,86.584 22.231,84.33 37.417,93.405 "/> -<polygon id="Fill-38" class="st0" points="56.698,104.122 41.508,94.957 41.508,92.703 56.695,101.778 "/> -<polygon id="Fill-39" class="st0" points="56.754,107.536 41.564,98.371 41.564,96.117 56.751,105.192 "/> -<polygon id="Fill-40" class="st0" points="73.328,117.311 58.14,108.146 58.14,105.892 73.327,114.967 "/> -<polygon id="Fill-41" class="st8" points="74.556,90.535 57.949,80.501 57.949,69.5 74.628,79.463 "/> -<polygon id="Stroke-42" class="st9" points="74.556,90.535 57.949,80.501 57.949,69.5 74.628,79.463 "/> -<polygon id="Fill-43" class="st8" points="39.169,69.259 22.561,59.227 22.561,48.224 39.243,58.188 "/> -<polygon id="Stroke-44" class="st9" points="39.169,69.259 22.561,59.227 22.561,48.224 39.243,58.188 "/> -<polygon id="Fill-45" class="st8" points="56.827,79.681 40.22,69.646 40.22,58.646 56.9,68.609 "/> -<polygon id="Stroke-46" class="st9" points="56.827,79.681 40.22,69.646 40.22,58.646 56.9,68.609 "/> -<polyline id="Stroke-47" class="st10" points="2.177,34.597 80.163,81.456 80.163,121.708 "/> -<polygon id="Fill-48" class="st0" points="73.066,113.94 68.807,111.382 68.807,109.382 73.066,111.94 "/> -<polygon id="Fill-49" class="st0" points="9.547,60.5 5.286,57.943 5.286,55.943 9.547,58.501 "/> -<polygon id="Fill-50" class="st0" points="30.538,83.084 26.28,80.526 26.28,78.526 30.538,81.085 "/> -<g id="Group-83" transform="translate(35.000000, 13.733000)"> - <path id="Fill-51" class="st11" d="M15.274,5.447c-0.759-1.238-1.352-1.896-2.191-2.403c-0.882-0.533-1.783-0.686-2.302-0.398 - c-1.575,0.873,3.886,3.656,0.246,5.674C9.023,9.432,6.269,9.116,4.071,7.788c-1.721-1.038-2.1-1.817-2.548-2.707l2.248-1.246 - c0.424,1.406,0.939,2.126,2.024,2.78c0.94,0.567,1.798,0.678,2.41,0.339c1.713-0.95-3.933-3.631-0.186-5.708 - c1.805-1.001,4.472-0.773,6.757,0.607c1.1,0.663,1.852,1.402,2.531,2.466L15.274,5.447z"/> - <polygon id="Fill-53" class="st11" points="11.878,12.501 10.894,11.906 15.076,6.105 17.215,7.397 14.733,10.398 20.108,9.144 - 21.379,9.911 18.969,12.956 24.257,11.648 26.398,12.939 16.216,15.119 15.219,14.517 17.393,11.385 "/> - <path id="Fill-55" class="st11" d="M31.503,13.366c-0.673,0.373-1.745,0.364-2.381-0.021c-0.637-0.383-0.606-1.002,0.067-1.375 - c0.672-0.374,1.743-0.365,2.379,0.019C32.205,12.375,32.176,12.993,31.503,13.366z M22.058,18.486l-2.097-1.265l7.05-3.91 - l2.097,1.266L22.058,18.486z"/> - <path id="Fill-57" class="st11" d="M33.752,19.134l-2.43-1.467l-2.905,1.612c-0.688,0.381-0.756,0.854-0.105,1.247 - c0.434,0.262,0.946,0.447,1.815,0.618l-1.605,0.889c-1.059-0.266-1.731-0.53-2.381-0.922c-1.389-0.838-1.916-1.936,0.056-3.03 - l3.029-1.679l-0.954-0.576l0.428-0.237l6.095-0.146l0.26,0.156l-2.219,1.229l2.43,1.466L33.752,19.134z"/> - <path id="Fill-59" class="st11" d="M35.095,25.965c-1.16-0.328-2.021-0.671-2.73-1.099c-2.343-1.414-2.424-3.128-0.222-4.348 - c2.157-1.197,5.263-1.092,7.46,0.234c0.679,0.41,1.363,1.036,1.783,1.608l-1.652,0.916c-0.243-0.501-0.711-0.979-1.232-1.293 - c-1.258-0.759-2.864-0.808-4.102-0.121c-1.254,0.696-1.284,1.633-0.084,2.358c0.506,0.306,1.076,0.508,2.369,0.863L35.095,25.965z" - /> - <path id="Fill-61" class="st11" d="M44.008,24.775l0.029,0.018c1.418-0.083,2.463,0.123,3.289,0.621 - c1.215,0.733,1.664,1.907-0.248,2.967l-4.496,2.493l-2.096-1.266l4.022-2.229c1.055-0.585,1.109-1.119,0.459-1.511 - c-0.492-0.297-1.232-0.372-2.474-0.254l-4.496,2.493l-2.096-1.267l10.429-5.782l2.098,1.267L44.008,24.775z"/> - <path id="Fill-63" class="st12" d="M50.652,29.263l1.056,0.638c1.996,1.204,3.53,1.157,4.769,0.469 - c1.591-0.88,0.894-1.868-0.638-2.793l-1.027-0.621L50.652,29.263z M45.727,31.992l2.039,1.232c2.039,1.23,3.737,0.909,4.685,0.384 - c1.025-0.569,1.621-1.501-0.765-2.942l-1.707-1.03L45.727,31.992z M56.771,27.361c2.662,1.606,1.799,2.803,0.591,3.473 - c-1.04,0.577-2.206,0.705-3.741,0.434c1.168,1.094,1.031,2.074-0.362,2.846c-1.712,0.949-4.069,0.749-6.079-0.464l-2.891-1.746 - l10.429-5.783L56.771,27.361z"/> - <polygon id="Fill-65" class="st12" points="52.393,36.796 51.699,36.376 62.127,30.594 62.824,31.014 "/> - <path id="Fill-67" class="st12" d="M60.764,37.792c-1.614-1.063-3.798-1.478-4.991-0.816c-0.643,0.356-0.582,0.959,0.156,1.404 - c0.621,0.375,1.373,0.546,2.694,0.599L60.764,37.792z M59.622,40.486l-0.207-0.018c-1.171-0.106-1.552-0.211-1.828-0.377 - c-0.318-0.193-0.236-0.338,0.394-0.755c-1.32-0.106-2.201-0.337-2.895-0.755c-0.984-0.594-0.969-1.489-0.007-2.023 - c1.79-0.993,4.312-0.196,6.297,0.896l0.871-0.483c0.918-0.509,0.931-1.068-0.038-1.653c-0.694-0.419-1.474-0.589-2.852-0.713 - l0.749-0.416c1.315,0.193,2.122,0.432,2.831,0.86c0.81,0.489,1.672,1.417,0.234,2.214l-4.282,2.374 - c-0.274,0.153-0.308,0.22-0.192,0.291c0.159,0.095,0.9,0.171,1.537,0.219L59.622,40.486z"/> - <path id="Fill-69" class="st12" d="M70.154,40.981c-0.235-0.691-0.573-1.09-1.253-1.5c-1.504-0.908-3.736-0.909-5.373-0.002 - c-1.666,0.924-1.748,2.31-0.186,3.252c0.65,0.393,1.237,0.57,2.376,0.709L70.154,40.981z M65.204,44.528L64.51,44.11l0.536-0.296 - c-1.2-0.139-1.859-0.343-2.596-0.788c-1.852-1.117-1.723-2.847,0.296-3.966c2.049-1.136,4.952-1.137,6.846,0.006 - c0.665,0.402,0.99,0.758,1.373,1.467l3.975-2.205l0.693,0.419L65.204,44.528z"/> - <path id="Fill-71" class="st12" d="M75.665,45.883c1.1-0.895,1.064-1.678-0.051-2.35c-1.068-0.646-2.657-0.736-4.157-0.19 - L75.665,45.883z M70.773,43.622c-1.961,0.854-1.991,2.394-0.515,3.284c0.867,0.524,1.882,0.783,3.44,0.89l-0.826,0.457 - c-1.394-0.114-2.479-0.433-3.42-1.001c-1.88-1.134-1.71-2.803,0.416-3.981c2.019-1.119,4.744-1.174,6.465-0.135 - c1.389,0.838,1.853,2.305-0.44,3.576L70.773,43.622z"/> - <polygon id="Fill-73" class="st12" points="5.47,26.18 4.575,25.639 11.057,25.479 11.442,21.833 12.338,22.372 12.038,25.486 - 17.429,25.447 18.325,25.988 11.996,26.045 11.458,29.794 10.562,29.253 11.029,26.045 "/> - <path id="Fill-75" class="st12" d="M24.485,28.59c1.116-0.619,1.165-1.617,0.109-2.255c-1.041-0.628-2.767-0.625-3.899,0.002 - c-1.147,0.636-1.21,1.625-0.14,2.272C21.639,29.263,23.308,29.242,24.485,28.59 M15.521,28.986 - c-1.209,0.67-1.321,1.771-0.121,2.496c1.215,0.733,3.032,0.697,4.348-0.033c1.193-0.661,1.215-1.746,0.045-2.453 - C18.634,28.299,16.729,28.319,15.521,28.986 M19.941,25.899c1.515-0.839,3.984-0.818,5.387,0.029 - c1.447,0.873,1.379,2.283-0.136,3.123c-0.978,0.542-2.194,0.73-3.63,0.555c0.358,0.94-0.007,1.695-1.123,2.314 - c-1.683,0.933-4.212,0.911-5.773-0.031c-1.591-0.96-1.535-2.432,0.087-3.33c1.116-0.619,2.54-0.823,4.12-0.577 - C18.631,27.128,18.978,26.434,19.941,25.899"/> - <polygon id="Fill-77" class="st12" points="21.1,35.615 20.361,35.168 30.792,29.385 31.531,29.833 "/> - <path id="Fill-79" class="st12" d="M36.71,33.65c-1.417-0.855-4.326-0.397-7.033,1.103c-2.738,1.518-3.65,3.145-2.233,4.001 - c1.606,0.968,4.647,0.254,7.094-1.102C36.786,36.404,38.374,34.653,36.71,33.65 M26.768,39.195 - c-1.866-1.126-1.117-3.066,1.989-4.786c2.263-1.255,4.135-1.808,6.038-1.792c0.894,0.008,1.94,0.197,2.649,0.625 - c0.694,0.419,0.995,0.971,0.969,1.523c-0.057,1.17-1.303,2.313-3.215,3.372C31.834,40.004,28.461,40.216,26.768,39.195"/> - <path id="Fill-81" class="st12" d="M34.671,43.115c1.2,0.725,3.014,0.774,4.206,0.113c1.255-0.695,1.292-1.788,0.092-2.512 - c-0.796-0.481-1.751-0.721-3.192-0.793C33.465,40.953,33.282,42.277,34.671,43.115z M45.667,38.844 - c-3.434-0.39-6.779-0.161-8.857,0.658c1.258,0.122,2.241,0.414,2.994,0.868c1.576,0.951,1.538,2.345-0.083,3.244 - c-1.713,0.949-4.109,0.921-5.742-0.065c-1.837-1.109-1.571-2.614,0.662-3.851c2.89-1.603,6.771-1.828,11.142-1.421L45.667,38.844z" - /> -</g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 143.37 123.733"><style><![CDATA[.N{fill:none}.O{stroke-linejoin:round}.P{fill:#fefefe}.Q{fill:#636466}.R{stroke:#636466}.S{stroke-width:.25}.T{stroke-linecap:round}.U{stroke-width:.722}]]></style><text transform="translate(27.713 23.424)" font-family="ArialMT" font-size="2.339" class="P">SBx8106</text><g class="N"><path d="M4.128,36.102v40.2" stroke="#fefefe" class="T U"/><g stroke="#626366" stroke-width="2.999" class="O"><path d="M79.88 81.485l61.96-32.89.03 40.746-61.96 32.89z"/><path d="M1.5 34.39L63.46 1.5l78.38 47.098-61.96 32.888z"/><path d="M79.88 81.485l.03 40.748L1.528 75.135 1.5 34.4z"/></g></g><path d="M79.88 81.485l61.96-32.888.03 40.745-61.96 32.89z" fill="#898b8e"/><path d="M1.5 34.4L63.46 1.5l78.38 47.097-61.96 32.89z" fill="#bbbdbf"/><path d="M79.88 81.485l.03 40.748L1.528 75.135 1.5 34.39z" fill="#b3b5b7"/><path d="M75.555 78.794v40.44M38.808 70.186V97.66" stroke="#fefefe" class="N T U"/><path d="M75.297 102.327L4.083 59.424v-.94l71.214 42.903zm.026 9.71L4.1 69.134v-.94l71.212 42.904zm-.253-19.554L3.857 49.58v-.94L75.07 91.544z" class="P"/><path d="M21.6 58.596L4.983 48.562v-11l16.68 9.962z" class="Q"/><path d="M21.6 58.596L4.983 48.562v-11l16.68 9.962z" class="N O R S"/><path d="M20.514 63.542L5.326 54.376v-2.253l15.187 9.075zM37.1 73.316L21.902 64.15v-2.254L37.09 70.97zm.046 3.414l-15.188-9.165V65.3l15.187 9.075zm19.278 8.373l-15.188-9.165v-2.254l15.187 9.075zm.056 3.415l-15.2-9.165V77.1l15.187 9.075zM73 94.88l-15.187-9.165V83.46L73 92.535zm.055 3.413l-15.187-9.165v-2.254l15.186 9.075zM20.47 73.436L5.28 64.27v-2.253l15.187 9.074zm.057 3.414l-15.2-9.165V65.43l15.187 9.075zm16.517 6.362l-15.186-9.165v-2.254l15.185 9.075zM56.38 95l-15.2-9.165V83.58l15.186 9.075zm.057 3.413l-15.2-9.165v-2.254l15.187 9.075zm16.518 6.36L57.768 95.6v-2.254l15.186 9.075zm.045 3.414l-15.187-9.165V96.77L73 105.845zM20.788 82.56L5.6 73.396V71.14l15.186 9.074zm.056 3.414L5.655 76.8v-2.254L20.84 83.63zm16.518 6.36L22.174 83.17v-2.254L37.36 90zm.056 3.415L22.23 86.584V84.33l15.186 9.075zm19.28 8.372l-15.2-9.165v-2.254l15.187 9.075zm.056 3.414l-15.2-9.165v-2.254l15.187 9.075zm16.574 9.774l-15.188-9.165v-2.254l15.187 9.075z" class="P"/><path d="M74.556 90.535L57.95 80.5v-11l16.68 9.963z" class="Q"/><path d="M74.556 90.535L57.95 80.5v-11l16.68 9.963z" class="N O R S"/><path d="M39.17 69.26L22.56 59.227V48.224l16.682 9.964z" class="Q"/><path d="M39.17 69.26L22.56 59.227V48.224l16.682 9.964z" class="N O R S"/><path d="M56.827 79.68L40.22 69.646v-11L56.9 68.61z" class="Q"/><g class="N O"><path d="M56.827 79.68L40.22 69.646v-11L56.9 68.61z" class="R S"/><path d="M2.177 34.597l77.986 46.86v40.252" stroke="#dfe0df" stroke-width=".75" class="T"/></g><path d="M73.066 113.94l-4.26-2.558v-2l4.26 2.558zM9.547 60.5l-4.26-2.557v-2l4.26 2.558zm20.99 22.584l-4.258-2.558v-2l4.258 2.56z" class="P"/><path d="M50.274 19.18c-.76-1.238-1.352-1.896-2.2-2.403-.882-.533-1.783-.686-2.302-.398-1.575.873 3.886 3.656.246 5.674-2.004 1.112-4.758.796-6.956-.532-1.72-1.038-2.1-1.817-2.548-2.707l2.248-1.246c.424 1.406.94 2.126 2.024 2.78.94.567 1.798.678 2.4.34 1.713-.95-3.933-3.63-.186-5.708 1.805-1 4.472-.773 6.757.607a7.27 7.27 0 0 1 2.531 2.466l-2.033 1.128zm-3.396 7.054l-.984-.595 4.182-5.8 2.14 1.292-2.482 3 5.375-1.254 1.27.767-2.4 3.045 5.288-1.308 2.14 1.3-10.182 2.18-.997-.602 2.174-3.132zm19.625.866c-.673.373-1.745.364-2.38-.02s-.606-1.002.067-1.375 1.743-.365 2.38.02.608 1.004-.065 1.377zm-9.445 5.12l-2.097-1.265 7.05-3.9 2.097 1.266-7.05 3.9zm11.694.647l-2.43-1.467-2.905 1.612c-.688.38-.756.854-.105 1.247.434.262.946.447 1.815.618l-1.605.9c-1.06-.266-1.73-.53-2.38-.922-1.4-.838-1.916-1.936.056-3.03l3.03-1.68-.954-.576.428-.237 6.095-.146.26.156-2.22 1.23 2.43 1.466-1.514.84zm1.343 6.83c-1.16-.328-2.02-.67-2.73-1.1-2.343-1.414-2.424-3.128-.222-4.348 2.157-1.197 5.263-1.092 7.46.234a6.42 6.42 0 0 1 1.783 1.608l-1.652.916c-.243-.5-.7-.98-1.232-1.293-1.258-.76-2.864-.808-4.102-.12-1.254.696-1.284 1.633-.084 2.358.506.306 1.076.508 2.37.863l-1.6.882zm8.913-1.2l.03.018c1.418-.083 2.463.123 3.3.62 1.215.733 1.664 1.907-.248 2.967l-4.496 2.493-2.096-1.266L79.5 41.1c1.055-.585 1.1-1.12.46-1.5-.492-.297-1.232-.372-2.474-.254L73 41.84l-2.096-1.267 10.43-5.782 2.098 1.267-4.42 2.45z" fill="#b22216"/><path d="M85.652 42.996l1.056.638c1.996 1.204 3.53 1.157 4.77.47 1.6-.88.894-1.868-.638-2.793l-1.027-.62-4.16 2.307zm-4.925 2.73l2.04 1.232c2.04 1.23 3.737.9 4.685.384 1.025-.57 1.62-1.5-.765-2.942l-1.707-1.03-4.252 2.356zm11.044-4.63c2.662 1.606 1.8 2.803.6 3.473-1.04.577-2.206.705-3.74.434 1.168 1.094 1.03 2.074-.362 2.846-1.712.95-4.07.75-6.08-.464l-2.9-1.746 10.43-5.783 2.053 1.24zm-4.378 9.434l-.694-.42 10.428-5.782.697.42zm8.37.995c-1.614-1.063-3.798-1.478-5-.816-.643.356-.582.96.156 1.404.62.375 1.373.546 2.694.6l2.14-1.187zm-1.142 2.694l-.207-.018c-1.17-.106-1.552-.2-1.828-.377-.318-.193-.236-.338.394-.755-1.32-.106-2.2-.337-2.895-.755-.984-.594-.97-1.5-.007-2.023 1.8-.993 4.312-.196 6.297.896l.87-.483c.918-.5.93-1.068-.038-1.653-.694-.42-1.474-.6-2.852-.713l.75-.416c1.315.193 2.122.432 2.83.86.8.5 1.672 1.417.234 2.214L93.9 53.37c-.274.153-.308.22-.192.3.16.095.9.17 1.537.22l-.612.34zm10.532.495c-.235-.7-.573-1.1-1.253-1.5-1.504-.908-3.736-.9-5.373-.002-1.666.924-1.748 2.3-.186 3.252.65.393 1.237.57 2.376.7l4.436-2.46zm-4.95 3.547l-.694-.418.536-.296c-1.2-.14-1.86-.343-2.596-.788-1.852-1.117-1.723-2.847.296-3.966 2.05-1.136 4.952-1.137 6.846.006.665.402 1 .758 1.373 1.467l3.975-2.205.693.42-10.43 5.78zm10.46 1.355c1.1-.895 1.064-1.678-.05-2.35-1.068-.646-2.657-.736-4.157-.2l4.208 2.54zm-4.892-2.26c-1.96.854-2 2.394-.515 3.284.867.524 1.882.783 3.44.9l-.826.457c-1.394-.114-2.48-.433-3.42-1-1.88-1.134-1.7-2.803.416-3.98 2.02-1.12 4.744-1.174 6.465-.135 1.4.838 1.853 2.305-.44 3.576l-5.12-3.1zM40.47 39.913l-.895-.54 6.482-.16.385-3.646.896.54-.3 3.114 5.4-.04.896.54-6.33.057-.538 3.75-.896-.54.467-3.208zm19.015 2.4c1.116-.62 1.165-1.617.1-2.255-1.04-.628-2.767-.625-3.9.002-1.147.636-1.2 1.625-.14 2.272 1.084.654 2.753.633 3.93-.02m-8.964.396c-1.2.67-1.32 1.77-.12 2.496 1.215.733 3.032.697 4.348-.033 1.193-.66 1.215-1.746.045-2.453-1.16-.697-3.064-.677-4.272-.01m4.42-3.087c1.515-.84 3.984-.818 5.387.03 1.447.873 1.38 2.283-.136 3.123-.978.542-2.194.73-3.63.555.358.94-.007 1.695-1.123 2.314-1.683.933-4.212.9-5.773-.03-1.6-.96-1.535-2.432.087-3.33 1.116-.62 2.54-.823 4.12-.577-.242-.854.105-1.548 1.068-2.083m1.158 9.715l-.74-.447 10.43-5.783.74.448zm15.6-1.965c-1.417-.855-4.326-.397-7.033 1.103-2.738 1.518-3.65 3.145-2.233 4 1.606.968 4.647.254 7.094-1.102 2.248-1.248 3.836-3 2.172-4.002m-9.942 5.545c-1.866-1.126-1.117-3.066 2-4.786 2.263-1.255 4.135-1.808 6.038-1.792.894.008 1.94.197 2.65.625.694.42.995.97.97 1.523-.057 1.17-1.303 2.313-3.215 3.372-3.364 1.867-6.737 2.08-8.43 1.058m7.91 3.92c1.2.725 3.014.774 4.206.113 1.255-.695 1.292-1.788.092-2.512-.796-.48-1.75-.72-3.192-.793-2.312 1.03-2.495 2.354-1.106 3.192zm10.996-4.27c-3.434-.4-6.78-.16-8.857.658 1.258.122 2.24.414 2.994.868 1.576.95 1.538 2.345-.083 3.244-1.713.95-4.1.92-5.742-.065-1.837-1.1-1.57-2.614.662-3.85 2.9-1.603 6.77-1.828 11.142-1.42l-.116.567z" fill="#231f20"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/switch/Modular_Switch_SBx8112.svg b/src/main/webapp/img/lib/allied_telesis/switch/Modular_Switch_SBx8112.svg index e37cc6c0ba39dcfa583db95276f7534e1d870112..4b4aad73fa2950df685fb8bb385538410efae890 100644 --- a/src/main/webapp/img/lib/allied_telesis/switch/Modular_Switch_SBx8112.svg +++ b/src/main/webapp/img/lib/allied_telesis/switch/Modular_Switch_SBx8112.svg @@ -1,151 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 149.197 152.75" style="enable-background:new 0 0 149.197 152.75;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#FEFEFE;} - .st1{font-family:'ArialMT';} - .st2{font-size:2.3392px;} - .st3{fill:none;stroke:#636466;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;} - .st4{fill:#BBBDBF;} - .st5{fill:#B3B5B7;} - .st6{fill:#898B8E;} - .st7{fill:none;stroke:#DFE0DF;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;} - .st8{fill:none;stroke:#FEFEFE;stroke-width:0.722;stroke-linecap:round;} - .st9{fill:#636466;} - .st10{fill:none;stroke:#636466;stroke-width:0.25;stroke-linecap:round;stroke-linejoin:round;} - .st11{fill:#B22216;} - .st12{fill:#231F20;} -</style> -<title>icon-SBx8100</title> -<desc>Created with Sketch.</desc> -<g id="Group-5" transform="translate(0.000000, 0.750000)"> - <text transform="matrix(1 0 0 1 33.0898 21.8198)" class="st0 st1 st2">SBx8100</text> - <polygon id="Stroke-2" class="st3" points="1.5,36.25 69.036,0.75 147.656,46.381 80.407,82.217 "/> - <polygon id="Stroke-3" class="st3" points="80.407,82.217 80.437,150.473 1.511,103.053 1.543,36.272 "/> - <polygon id="Stroke-4" class="st3" points="80.407,82.217 147.656,46.381 147.697,115.84 80.456,150.5 "/> -</g> -<polygon id="Fill-6" class="st4" points="1.5,37 69.036,1.5 147.656,47.131 80.407,82.967 "/> -<polygon id="Fill-7" class="st5" points="80.407,82.967 80.437,151.223 1.511,103.803 1.543,37.022 "/> -<polygon id="Fill-8" class="st6" points="80.407,82.967 147.656,47.131 147.697,116.59 80.456,151.25 "/> -<polyline id="Stroke-9" class="st7" points="2.285,37.065 80.357,82.728 80.357,150.548 "/> -<path id="Stroke-10" class="st8" d="M4.451,39.255v65.554"/> -<path id="Stroke-11" class="st8" d="M75.879,81.251v66.489"/> -<path id="Stroke-12" class="st8" d="M39.132,70.433v55.734"/> -<polygon id="Fill-13" class="st0" points="75.62,130.834 4.406,87.93 4.406,86.99 75.62,129.894 "/> -<polygon id="Fill-14" class="st0" points="75.646,140.545 4.434,97.641 4.434,96.701 75.646,139.605 "/> -<polygon id="Fill-15" class="st0" points="75.645,111.417 4.431,68.513 4.431,67.573 75.645,110.477 "/> -<polygon id="Fill-16" class="st0" points="75.393,120.991 4.18,78.087 4.18,77.147 75.393,120.051 "/> -<polygon id="Fill-17" class="st0" points="75.784,101.287 4.572,58.383 4.572,57.443 75.784,100.347 "/> -<polygon id="Fill-18" class="st0" points="12.144,77.844 6.576,74.5 6.576,71.885 12.144,75.231 "/> -<polygon id="Fill-19" class="st0" points="46.398,98.401 40.832,95.057 40.832,92.442 46.398,95.788 "/> -<polygon id="Fill-20" class="st0" points="21.387,85.905 15.82,82.561 15.82,79.946 21.387,83.292 "/> -<polygon id="Fill-21" class="st0" points="56.838,107.54 51.272,104.196 51.272,101.581 56.838,104.927 "/> -<polygon id="Fill-22" class="st0" points="64.124,111.94 58.557,108.596 58.557,105.981 64.124,109.327 "/> -<polygon id="Fill-23" class="st0" points="28.505,90.372 22.938,87.028 22.938,84.413 28.505,87.759 "/> -<polygon id="Fill-24" class="st0" points="12.734,60.465 7.167,57.121 7.167,54.506 12.734,57.852 "/> -<polygon id="Fill-25" class="st0" points="19.819,64.765 14.251,61.421 14.251,58.806 19.819,62.152 "/> -<polygon id="Fill-26" class="st0" points="27.336,69.245 21.77,65.901 21.77,63.286 27.336,66.632 "/> -<polygon id="Fill-27" class="st0" points="34.622,73.646 29.055,70.302 29.055,67.687 34.622,71.033 "/> -<polygon id="Fill-28" class="st9" points="21.588,59.948 4.936,50.33 4.936,39.329 21.588,49.055 "/> -<polygon id="Stroke-29" class="st10" points="21.588,59.948 4.936,50.33 4.936,39.329 21.588,49.055 "/> -<polygon id="Fill-30" class="st9" points="75.011,91.153 58.36,81.535 58.36,70.534 75.011,80.26 "/> -<polygon id="Stroke-31" class="st10" points="75.011,91.153 58.36,81.535 58.36,70.534 75.011,80.26 "/> -<polygon id="Fill-32" class="st9" points="39.352,70.346 22.699,60.728 22.699,49.727 39.352,59.453 "/> -<polygon id="Stroke-33" class="st10" points="39.352,70.346 22.699,60.728 22.699,49.727 39.352,59.453 "/> -<polygon id="Fill-34" class="st9" points="57.285,80.687 40.634,71.069 40.634,60.068 57.285,69.794 "/> -<polygon id="Stroke-35" class="st10" points="57.285,80.687 40.634,71.069 40.634,60.068 57.285,69.794 "/> -<polygon id="Fill-36" class="st0" points="49.125,82.294 43.558,78.95 43.558,76.335 49.125,79.681 "/> -<polygon id="Fill-37" class="st0" points="56.21,86.594 50.642,83.25 50.642,80.635 56.21,83.981 "/> -<polygon id="Fill-38" class="st0" points="63.727,91.074 58.16,87.73 58.16,85.115 63.727,88.461 "/> -<polygon id="Fill-39" class="st0" points="71.013,95.475 65.446,92.131 65.446,89.516 71.013,92.862 "/> -<polygon id="Fill-40" class="st0" points="20.838,92.048 5.649,82.883 5.649,80.629 20.836,89.704 "/> -<polygon id="Fill-41" class="st0" points="20.895,95.462 5.706,86.297 5.706,84.043 20.892,93.118 "/> -<polygon id="Fill-42" class="st0" points="37.413,101.823 22.225,92.658 22.225,90.404 37.412,99.479 "/> -<polygon id="Fill-43" class="st0" points="37.469,105.237 22.281,96.072 22.281,93.818 37.468,102.893 "/> -<polygon id="Fill-44" class="st0" points="56.748,113.61 41.559,104.445 41.559,102.191 56.746,111.266 "/> -<polygon id="Fill-45" class="st0" points="56.805,117.024 41.616,107.859 41.616,105.605 56.803,114.68 "/> -<polygon id="Fill-46" class="st0" points="73.323,123.386 58.135,114.221 58.135,111.967 73.322,121.042 "/> -<polygon id="Fill-47" class="st0" points="73.379,126.8 58.191,117.635 58.191,115.381 73.378,124.456 "/> -<polygon id="Fill-48" class="st0" points="20.793,71.948 5.604,62.783 5.604,60.529 20.791,69.604 "/> -<polygon id="Fill-49" class="st0" points="20.85,75.362 5.661,66.197 5.661,63.943 20.848,73.018 "/> -<polygon id="Fill-50" class="st0" points="37.368,81.724 22.18,72.559 22.18,70.305 37.367,79.38 "/> -<polygon id="Fill-51" class="st0" points="37.424,85.138 22.236,75.973 22.236,73.719 37.423,82.794 "/> -<polygon id="Fill-52" class="st0" points="56.703,93.511 41.514,84.346 41.514,82.092 56.701,91.167 "/> -<polygon id="Fill-53" class="st0" points="56.76,96.925 41.571,87.76 41.571,85.506 56.758,94.581 "/> -<polygon id="Fill-54" class="st0" points="73.278,103.286 58.09,94.121 58.09,91.867 73.277,100.942 "/> -<polygon id="Fill-55" class="st0" points="73.334,106.7 58.146,97.535 58.146,95.281 73.333,104.356 "/> -<polygon id="Fill-56" class="st0" points="20.793,101.943 5.604,92.778 5.604,90.524 20.791,99.599 "/> -<polygon id="Fill-57" class="st0" points="20.85,105.357 5.661,96.192 5.661,93.938 20.848,103.013 "/> -<polygon id="Fill-58" class="st0" points="37.368,111.719 22.18,102.554 22.18,100.3 37.367,109.375 "/> -<polygon id="Fill-59" class="st0" points="37.424,115.133 22.236,105.968 22.236,103.714 37.423,112.789 "/> -<polygon id="Fill-60" class="st0" points="56.703,123.506 41.514,114.341 41.514,112.087 56.701,121.162 "/> -<polygon id="Fill-61" class="st0" points="56.76,126.92 41.571,117.755 41.571,115.501 56.758,124.576 "/> -<polygon id="Fill-62" class="st0" points="73.278,133.281 58.09,124.116 58.09,121.862 73.277,130.937 "/> -<polygon id="Fill-63" class="st0" points="73.334,136.695 58.146,127.53 58.146,125.276 73.333,134.351 "/> -<polygon id="Fill-64" class="st0" points="21.11,111.066 5.921,101.901 5.921,99.647 21.108,108.723 "/> -<polygon id="Fill-65" class="st0" points="21.167,114.48 5.978,105.315 5.978,103.062 21.165,112.136 "/> -<polygon id="Fill-66" class="st0" points="37.686,120.842 22.497,111.677 22.497,109.423 37.685,118.498 "/> -<polygon id="Fill-67" class="st0" points="37.741,124.256 22.553,115.091 22.553,112.837 37.74,121.912 "/> -<polygon id="Fill-68" class="st0" points="57.021,132.629 41.832,123.464 41.832,121.21 57.019,130.285 "/> -<polygon id="Fill-69" class="st0" points="57.077,136.043 41.888,126.878 41.888,124.624 57.075,133.699 "/> -<polygon id="Fill-70" class="st0" points="73.596,142.404 58.408,133.239 58.408,130.985 73.595,140.06 "/> -<polygon id="Fill-71" class="st0" points="73.651,145.818 58.463,136.653 58.463,134.399 73.65,143.474 "/> -<g id="Group-104" transform="translate(39.000000, 14.750000)"> - <path id="Fill-72" class="st11" d="M14.818,4.998c-0.759-1.238-1.352-1.896-2.191-2.403c-0.882-0.533-1.783-0.686-2.302-0.398 - C8.75,3.07,14.211,5.853,10.571,7.871C8.567,8.982,5.814,8.666,3.616,7.339c-1.721-1.038-2.1-1.817-2.548-2.707l2.248-1.246 - C3.74,4.792,4.255,5.512,5.34,6.166c0.94,0.567,1.798,0.678,2.41,0.339c1.713-0.95-3.933-3.631-0.186-5.708 - c1.805-1.001,4.472-0.773,6.757,0.607c1.1,0.663,1.852,1.402,2.531,2.466L14.818,4.998z"/> - <polygon id="Fill-74" class="st11" points="11.423,12.052 10.439,11.457 14.62,5.657 16.761,6.949 14.277,9.949 19.652,8.695 - 20.925,9.463 18.515,12.507 23.802,11.199 25.943,12.491 15.761,14.67 14.763,14.068 16.939,10.936 "/> - <path id="Fill-76" class="st11" d="M31.049,12.917c-0.673,0.373-1.745,0.364-2.381-0.021c-0.637-0.383-0.606-1.002,0.067-1.375 - c0.672-0.374,1.743-0.365,2.379,0.019C31.751,11.925,31.722,12.544,31.049,12.917z M21.603,18.036l-2.097-1.265l7.05-3.91 - l2.097,1.266L21.603,18.036z"/> - <path id="Fill-78" class="st11" d="M33.298,18.685l-2.43-1.467l-2.905,1.612c-0.688,0.381-0.756,0.854-0.105,1.247 - c0.434,0.262,0.946,0.447,1.815,0.618l-1.605,0.889c-1.059-0.266-1.731-0.53-2.381-0.922c-1.389-0.838-1.916-1.936,0.056-3.03 - l3.029-1.679l-0.954-0.576l0.428-0.237l6.095-0.146l0.26,0.156l-2.219,1.229l2.43,1.466L33.298,18.685z"/> - <path id="Fill-80" class="st11" d="M34.64,25.516c-1.16-0.328-2.021-0.671-2.73-1.099c-2.343-1.414-2.424-3.128-0.222-4.348 - c2.157-1.197,5.263-1.092,7.46,0.234c0.679,0.41,1.363,1.036,1.783,1.608l-1.652,0.916c-0.243-0.501-0.711-0.979-1.232-1.293 - c-1.258-0.759-2.864-0.808-4.102-0.121c-1.254,0.696-1.284,1.633-0.084,2.358c0.506,0.306,1.076,0.508,2.369,0.863L34.64,25.516z" - /> - <path id="Fill-82" class="st11" d="M43.554,24.326l0.029,0.018c1.418-0.083,2.463,0.123,3.289,0.621 - c1.215,0.733,1.664,1.907-0.248,2.967l-4.496,2.493l-2.096-1.266l4.022-2.229c1.055-0.585,1.109-1.119,0.459-1.511 - c-0.492-0.297-1.232-0.372-2.474-0.254l-4.496,2.493l-2.096-1.267l10.429-5.782l2.098,1.267L43.554,24.326z"/> - <path id="Fill-84" class="st12" d="M50.196,28.813l1.056,0.638c1.996,1.204,3.53,1.157,4.769,0.469 - c1.591-0.88,0.894-1.868-0.638-2.793l-1.027-0.621L50.196,28.813z M45.271,31.542l2.039,1.232c2.039,1.23,3.737,0.909,4.685,0.384 - c1.025-0.569,1.621-1.501-0.765-2.942l-1.707-1.03L45.271,31.542z M56.315,26.912c2.662,1.606,1.799,2.803,0.591,3.473 - c-1.04,0.577-2.206,0.705-3.741,0.434c1.168,1.094,1.031,2.074-0.362,2.846c-1.712,0.949-4.069,0.749-6.079-0.464l-2.891-1.746 - l10.429-5.783L56.315,26.912z"/> - <polygon id="Fill-86" class="st12" points="51.938,36.347 51.243,35.928 61.673,30.146 62.368,30.565 "/> - <path id="Fill-88" class="st12" d="M60.309,37.344c-1.614-1.063-3.798-1.478-4.991-0.816c-0.643,0.356-0.582,0.959,0.156,1.404 - c0.621,0.375,1.373,0.546,2.694,0.599L60.309,37.344z M59.167,40.037l-0.207-0.018c-1.171-0.106-1.552-0.211-1.828-0.377 - c-0.318-0.193-0.236-0.338,0.394-0.755c-1.32-0.106-2.201-0.337-2.895-0.755c-0.984-0.594-0.969-1.489-0.007-2.023 - c1.79-0.993,4.312-0.196,6.297,0.896l0.871-0.483c0.918-0.509,0.931-1.068-0.038-1.653c-0.694-0.419-1.474-0.589-2.852-0.713 - l0.749-0.416c1.315,0.193,2.122,0.432,2.831,0.86c0.81,0.489,1.672,1.417,0.234,2.214l-4.282,2.374 - c-0.274,0.153-0.308,0.22-0.192,0.291c0.159,0.095,0.9,0.171,1.537,0.219L59.167,40.037z"/> - <path id="Fill-90" class="st12" d="M69.699,40.532c-0.235-0.691-0.573-1.09-1.253-1.5c-1.504-0.908-3.736-0.909-5.373-0.002 - c-1.666,0.924-1.748,2.31-0.186,3.252c0.65,0.393,1.237,0.57,2.376,0.709L69.699,40.532z M64.749,44.079l-0.694-0.419l0.536-0.296 - c-1.2-0.139-1.859-0.343-2.596-0.788c-1.852-1.117-1.723-2.847,0.296-3.966c2.049-1.136,4.952-1.137,6.846,0.006 - c0.665,0.402,0.99,0.758,1.373,1.467l3.975-2.205l0.693,0.419L64.749,44.079z"/> - <path id="Fill-92" class="st12" d="M75.21,45.435c1.1-0.895,1.064-1.678-0.051-2.35c-1.068-0.646-2.657-0.736-4.157-0.19 - L75.21,45.435z M70.318,43.173c-1.961,0.854-1.991,2.394-0.515,3.284c0.867,0.524,1.882,0.783,3.44,0.89l-0.826,0.457 - c-1.394-0.114-2.479-0.433-3.42-1.001c-1.88-1.134-1.71-2.803,0.416-3.981c2.019-1.119,4.744-1.174,6.465-0.135 - c1.389,0.838,1.853,2.305-0.44,3.576L70.318,43.173z"/> - <polygon id="Fill-94" class="st12" points="4.819,25.612 3.923,25.071 10.405,24.911 10.79,21.264 11.686,21.805 11.386,24.919 - 16.777,24.879 17.673,25.42 11.344,25.477 10.806,29.226 9.91,28.685 10.377,25.478 "/> - <path id="Fill-96" class="st12" d="M23.832,28.021c1.116-0.619,1.166-1.617,0.109-2.254c-1.041-0.629-2.767-0.626-3.899,0.001 - c-1.147,0.637-1.21,1.626-0.14,2.272C20.987,28.695,22.655,28.674,23.832,28.021 M14.868,28.42c-1.207,0.67-1.321,1.771-0.12,2.496 - c1.215,0.732,3.032,0.696,4.348-0.034c1.192-0.661,1.215-1.745,0.044-2.452C17.981,27.732,16.077,27.75,14.868,28.42 - M19.288,25.333c1.515-0.839,3.984-0.819,5.387,0.028c1.447,0.873,1.379,2.284-0.136,3.123c-0.978,0.543-2.193,0.73-3.628,0.555 - c0.356,0.941-0.008,1.696-1.124,2.315c-1.683,0.933-4.212,0.911-5.773-0.031c-1.591-0.961-1.535-2.432,0.087-3.331 - c1.117-0.619,2.54-0.823,4.121-0.576C17.979,26.56,18.325,25.867,19.288,25.333"/> - <polygon id="Fill-98" class="st12" points="20.448,35.046 19.711,34.602 30.141,28.819 30.878,29.264 "/> - <path id="Fill-100" class="st12" d="M36.059,33.081c-1.417-0.855-4.326-0.397-7.033,1.104c-2.738,1.517-3.65,3.145-2.233,4 - c1.606,0.969,4.647,0.254,7.093-1.102C36.135,35.837,37.722,34.085,36.059,33.081 M26.117,38.627 - c-1.866-1.126-1.118-3.066,1.988-4.786c2.263-1.255,4.136-1.808,6.039-1.791c0.894,0.008,1.941,0.197,2.648,0.625 - c0.696,0.419,0.996,0.971,0.969,1.522c-0.056,1.171-1.302,2.314-3.214,3.373C31.183,39.435,27.809,39.648,26.117,38.627"/> - <path id="Fill-102" class="st12" d="M43.416,37.522c-1.417-0.855-4.326-0.397-7.033,1.103c-2.738,1.518-3.65,3.145-2.233,4.001 - c1.606,0.968,4.647,0.254,7.093-1.102C43.492,40.278,45.079,38.526,43.416,37.522 M33.474,43.069 - c-1.866-1.126-1.118-3.066,1.988-4.787c2.263-1.255,4.136-1.807,6.039-1.791c0.894,0.008,1.941,0.197,2.648,0.625 - c0.696,0.419,0.996,0.972,0.969,1.523c-0.056,1.17-1.302,2.313-3.214,3.372C38.54,43.876,35.166,44.09,33.474,43.069"/> -</g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 149.197 152.75"><style><![CDATA[.N{fill:none}.O{stroke-linejoin:round}.P{stroke:#636466}.Q{fill:#636466}.R{stroke-width:.25}.S{fill:#fefefe}]]></style><text transform="translate(33.09 22.57)" font-family="ArialMT" font-size="2.339" class="S">SBx8100</text><g stroke-width="3" class="N O P"><path d="M1.5 37L69.036 1.5l78.62 45.63-67.25 35.836z"/><path d="M80.407 82.967l.03 68.256-78.926-47.42.032-66.78z"/><path d="M80.407 82.967l67.25-35.836.04 69.46-67.24 34.66z"/></g><path d="M1.5 37L69.036 1.5l78.62 45.63-67.25 35.836z" fill="#bbbdbf"/><path d="M80.407 82.967l.03 68.256-78.926-47.42.032-66.78z" fill="#b3b5b7"/><path d="M80.407 82.967l67.25-35.836.04 69.46-67.24 34.66z" fill="#898b8e"/><g stroke-linecap="round" class="N"><path d="M2.285 37.065l78.072 45.663v67.82" stroke="#dfe0df" stroke-width=".75" class="O"/><path d="M4.45 39.255v65.554m71.43-23.56v66.5M39.132 70.433v55.734" stroke="#fefefe" stroke-width=".722"/></g><path d="M75.62 130.834L4.406 87.93V87l71.214 42.904zm.026 9.71L4.434 97.64v-.94l71.212 42.904zm-.001-29.128L4.43 68.513v-.94l71.214 42.904zM75.393 121L4.18 78.087v-.94l71.213 42.904zm.39-19.703L4.572 58.383v-.94l71.212 42.904zm-63.64-23.443L6.576 74.5v-2.615l5.568 3.346zM46.398 98.4l-5.566-3.344V92.44l5.566 3.346zm-25.01-12.495L15.82 82.56v-2.615l5.567 3.346zm35.45 21.635l-5.566-3.344v-2.615l5.566 3.346zm7.286 4.4l-5.567-3.344v-2.615l5.567 3.346zm-35.62-21.568l-5.567-3.344v-2.615l5.567 3.346zm-15.77-29.907L7.167 57.12v-2.615l5.567 3.346zm7.086 4.3l-5.57-3.345v-2.615l5.568 3.346zm7.516 4.48L21.77 65.9v-2.615l5.566 3.346zm7.286 4.4l-5.567-3.344v-2.615l5.567 3.346z" class="S"/><path d="M21.588 59.948L4.936 50.33v-11l16.652 9.726z" class="Q"/><path d="M21.588 59.948L4.936 50.33v-11l16.652 9.726z" class="N O P R"/><path d="M75.01 91.153l-16.65-9.618v-11l16.65 9.726z" class="Q"/><path d="M75.01 91.153l-16.65-9.618v-11l16.65 9.726z" class="N O P R"/><path d="M39.352 70.346L22.7 60.728v-11l16.653 9.726z" class="Q"/><path d="M39.352 70.346L22.7 60.728v-11l16.653 9.726z" class="N O P R"/><path d="M57.285 80.687l-16.65-9.618v-11l16.65 9.726z" class="Q"/><path d="M57.285 80.687l-16.65-9.618v-11l16.65 9.726z" class="N O P R"/><g class="S"><path d="M49.125 82.294l-5.567-3.344v-2.615l5.567 3.346zm7.075 4.3l-5.568-3.344v-2.615L56.2 83.98zm7.527 4.48L58.16 87.73v-2.615l5.567 3.346zm7.286 4.4l-5.567-3.344v-2.615l5.567 3.346zm-50.175-3.427L5.65 82.883V80.63l15.187 9.075zm.057 3.414l-15.2-9.165v-2.254l15.186 9.075z"/><use xlink:href="#B"/><path d="M37.47 105.237l-15.2-9.165v-2.254l15.187 9.075zm19.278 8.363l-15.2-9.165v-2.254l15.187 9.075zm.057 3.424l-15.2-9.165v-2.254l15.187 9.075z"/><use xlink:href="#B" x="35.91" y="21.563"/><use xlink:href="#B" x="35.967" y="24.977"/><path d="M20.793 71.948l-15.2-9.165V60.53L20.8 69.605zm.057 3.414l-15.2-9.165v-2.254l15.187 9.075zm16.518 6.362L22.18 72.56v-2.254l15.187 9.075zm.056 3.414l-15.188-9.165V73.72l15.187 9.075zm19.28 8.372l-15.2-9.165V82.09L56.7 91.167zm.057 3.415l-15.2-9.165v-2.254l15.187 9.075zm16.518 6.36L58.1 94.12v-2.254l15.187 9.075zm.056 3.414l-15.188-9.165V95.28l15.187 9.075zm-52.54-4.757l-15.2-9.165v-2.254L20.8 99.6zm.057 3.414l-15.2-9.165v-2.254l15.187 9.075zm16.518 6.363l-15.188-9.165V100.3l15.187 9.075z"/><use xlink:href="#B" x="0.011" y="13.31"/><path d="M56.703 123.506l-15.2-9.165v-2.254l15.187 9.075zm.057 3.414l-15.2-9.165V115.5l15.187 9.075zm16.518 6.36L58.1 124.116v-2.254l15.187 9.075z"/><use xlink:href="#B" x="35.921" y="34.872"/><path d="M21.1 111.066L5.92 101.9v-2.254l15.187 9.076zm.067 3.414l-15.2-9.165v-2.253l15.187 9.074zm16.52 6.362l-15.2-9.165v-2.254l15.188 9.075z"/><use xlink:href="#B" x="0.327" y="22.433"/><path d="M57.02 132.63l-15.2-9.165V121.2l15.187 9.075zm.057 3.413l-15.2-9.165v-2.254l15.187 9.075z"/><use xlink:href="#B" x="36.183" y="40.581"/><path d="M73.65 145.818l-15.188-9.165V134.4l15.187 9.075z"/></g><path d="M53.818 19.748c-.76-1.238-1.352-1.896-2.2-2.403-.882-.533-1.783-.686-2.302-.398-1.575.873 3.886 3.656.246 5.674-2.004 1.1-4.757.795-6.955-.532-1.72-1.038-2.1-1.817-2.548-2.707l2.248-1.246c.424 1.406.94 2.126 2.024 2.78.94.567 1.798.678 2.4.34 1.713-.95-3.933-3.63-.186-5.708 1.805-1 4.472-.773 6.757.607a7.27 7.27 0 0 1 2.531 2.466L53.81 19.75zm-3.395 7.054l-.984-.595 4.18-5.8 2.14 1.292-2.484 3 5.375-1.254 1.273.768-2.4 3.044L62.8 25.95l2.14 1.292-10.182 2.18-.998-.602 2.176-3.132zm19.627.865c-.673.373-1.745.364-2.38-.02s-.606-1.002.067-1.375 1.743-.365 2.38.02.608 1.004-.065 1.377zm-9.446 5.12l-2.097-1.265 7.05-3.9 2.097 1.266-7.05 3.9zm11.694.648l-2.43-1.467-2.905 1.612c-.688.38-.756.854-.105 1.247.434.262.946.447 1.815.618l-1.605.9c-1.06-.266-1.73-.53-2.38-.922-1.4-.838-1.916-1.936.056-3.03l3.03-1.68-.954-.576.428-.237 6.095-.146.26.156-2.22 1.23 2.43 1.466-1.514.84zm1.342 6.83c-1.16-.328-2.02-.67-2.73-1.1-2.343-1.414-2.424-3.128-.222-4.348 2.157-1.197 5.263-1.092 7.46.234a6.42 6.42 0 0 1 1.783 1.608l-1.652.916c-.243-.5-.7-.98-1.232-1.293-1.258-.76-2.864-.808-4.102-.12-1.254.696-1.284 1.633-.084 2.358.506.306 1.076.508 2.37.863l-1.6.882zm8.914-1.2l.03.018c1.418-.083 2.463.123 3.3.62 1.215.733 1.664 1.907-.248 2.967l-4.496 2.493-2.096-1.266 4.022-2.23c1.055-.585 1.1-1.12.46-1.5-.492-.297-1.232-.372-2.474-.254l-4.496 2.493-2.096-1.267 10.43-5.782 2.098 1.267-4.42 2.45z" fill="#b22216"/><path d="M89.196 43.563l1.056.638c1.996 1.204 3.53 1.157 4.77.47 1.6-.88.894-1.868-.638-2.793l-1.027-.62-4.16 2.307zm-4.925 2.73l2.04 1.232c2.04 1.23 3.737.9 4.685.384 1.025-.57 1.62-1.5-.765-2.942l-1.707-1.03-4.252 2.356zm11.044-4.63c2.662 1.606 1.8 2.803.6 3.473-1.04.577-2.206.705-3.74.434 1.168 1.094 1.03 2.074-.362 2.846-1.712.95-4.07.75-6.08-.464l-2.9-1.746 10.43-5.783 2.053 1.24zm-4.377 9.434l-.695-.42 10.43-5.782.695.42zm8.372.997c-1.614-1.063-3.798-1.478-5-.816-.643.356-.582.96.156 1.404.62.375 1.373.546 2.694.6l2.14-1.187zm-1.142 2.693l-.207-.018c-1.17-.106-1.552-.2-1.828-.377-.318-.193-.236-.338.394-.755-1.32-.106-2.2-.337-2.895-.755-.984-.594-.97-1.5-.007-2.023 1.8-.993 4.312-.196 6.297.896l.87-.483c.918-.5.93-1.068-.038-1.653-.694-.42-1.474-.6-2.852-.713l.75-.416c1.315.193 2.122.432 2.83.86.8.5 1.672 1.417.234 2.214l-4.282 2.374c-.274.153-.308.22-.192.3.16.095.9.17 1.537.22l-.612.34zm10.532.495c-.235-.7-.573-1.1-1.253-1.5-1.504-.908-3.736-.9-5.373-.002-1.666.924-1.748 2.3-.186 3.252.65.393 1.237.57 2.376.7l4.436-2.46zm-4.95 3.547l-.694-.42.536-.296c-1.2-.14-1.86-.343-2.596-.788-1.852-1.117-1.723-2.847.296-3.966 2.05-1.136 4.952-1.137 6.846.006.665.402 1 .758 1.373 1.467l3.975-2.205.693.42-10.43 5.782zm10.45 1.356c1.1-.895 1.064-1.678-.05-2.35-1.068-.646-2.657-.736-4.157-.2l4.208 2.54zm-4.892-2.262c-1.96.854-2 2.394-.515 3.284.867.524 1.882.783 3.44.9l-.826.457c-1.394-.114-2.48-.433-3.42-1-1.88-1.134-1.7-2.803.416-3.98 2.02-1.12 4.744-1.174 6.465-.135 1.4.838 1.853 2.305-.44 3.576l-5.12-3.1zM43.82 40.362l-.896-.54 6.482-.16.385-3.647.896.54-.3 3.114 5.4-.04.896.54-6.33.057-.538 3.75-.896-.54.467-3.207zm19.012 2.408c1.116-.62 1.166-1.617.1-2.254-1.04-.63-2.767-.626-3.9.001-1.147.637-1.2 1.626-.14 2.272 1.085.655 2.753.634 3.93-.02m-8.964.4c-1.207.67-1.32 1.77-.12 2.496 1.215.732 3.032.696 4.348-.034 1.192-.66 1.215-1.745.044-2.452-1.16-.698-3.063-.68-4.272-.01m4.42-3.087c1.515-.84 3.984-.82 5.387.028 1.447.873 1.38 2.284-.136 3.123-.978.543-2.193.73-3.628.555.356.94-.008 1.696-1.124 2.315-1.683.933-4.212.9-5.773-.03-1.6-.96-1.535-2.432.087-3.33 1.117-.62 2.54-.823 4.12-.576-.243-.856.103-1.55 1.066-2.083m1.16 9.712l-.737-.444 10.43-5.783.737.445zM75.06 47.83c-1.417-.855-4.326-.397-7.033 1.104-2.738 1.517-3.65 3.145-2.233 4 1.606.97 4.647.254 7.093-1.102 2.25-1.246 3.836-2.998 2.173-4.002m-9.942 5.546C63.25 52.25 64 50.3 67.105 48.6c2.263-1.255 4.136-1.808 6.04-1.8.894.008 1.94.197 2.648.625.696.42.996.97.97 1.522-.056 1.17-1.302 2.314-3.214 3.373-3.364 1.865-6.738 2.078-8.43 1.057m17.297-1.105c-1.417-.855-4.326-.397-7.033 1.103-2.738 1.518-3.65 3.145-2.233 4 1.606.968 4.647.254 7.093-1.102 2.25-1.246 3.836-2.998 2.173-4.002m-9.942 5.547c-1.866-1.126-1.118-3.066 1.988-4.787 2.263-1.255 4.136-1.807 6.04-1.8.894.008 1.94.197 2.648.625.696.42.996.972.97 1.523-.056 1.17-1.302 2.313-3.214 3.372-3.364 1.865-6.738 2.08-8.43 1.058" fill="#231f20"/><defs ><path id="B" d="M37.413 101.823l-15.188-9.165v-2.254l15.187 9.075z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/switch/Modular_Switch_SXx908GEN2.svg b/src/main/webapp/img/lib/allied_telesis/switch/Modular_Switch_SXx908GEN2.svg index 9134ba92b5623eb527f7f787e73fff698716766d..107752ef1f927fea99113fa4c4b70a4f167b368b 100644 --- a/src/main/webapp/img/lib/allied_telesis/switch/Modular_Switch_SXx908GEN2.svg +++ b/src/main/webapp/img/lib/allied_telesis/switch/Modular_Switch_SXx908GEN2.svg @@ -1,174 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 130.229 110.987" style="enable-background:new 0 0 130.229 110.987;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#626366;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;} - .st1{fill:#898B8E;} - .st2{fill:#BBBDBF;} - .st3{fill:#B3B5B7;} - .st4{fill:none;stroke:#DFE0DF;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;} - .st5{fill:#FEFEFE;} - .st6{fill:none;stroke:#FEFEFE;} - .st7{fill:#231F20;} - .st8{fill:none;stroke:#FEFEFE;stroke-width:0.722;stroke-linecap:round;} -</style> -<title>icon-SXx908GEN2</title> -<desc>Created with Sketch.</desc> -<polygon id="Stroke-1" class="st0" points="1.5,27.426 50.34,1.5 128.721,48.598 79.881,74.522 "/> -<polygon id="Stroke-3" class="st0" points="79.881,74.522 79.889,109.487 1.508,62.391 1.5,27.426 "/> -<polygon id="Stroke-5" class="st0" points="79.881,74.522 128.721,48.598 128.729,83.563 79.889,109.487 "/> -<polygon id="Fill-8" class="st1" points="79.881,74.524 128.721,48.599 128.729,83.565 79.889,109.489 "/> -<polygon id="Fill-9" class="st2" points="1.5,27.427 50.34,1.502 128.721,48.599 79.881,74.524 "/> -<polygon id="Fill-10" class="st3" points="79.881,74.524 79.889,109.489 1.508,62.393 1.5,27.427 "/> -<polyline id="Stroke-11" class="st4" points="1.894,27.33 79.881,74.189 79.881,109.184 "/> -<polygon id="Fill-12" class="st5" points="24.082,64.284 22.951,63.606 22.951,50.606 24.082,51.284 "/> -<polygon id="Stroke-13" class="st6" points="24.082,64.284 22.951,63.606 22.951,50.606 24.082,51.284 "/> -<polygon id="Fill-14" class="st5" points="7.819,64.284 6.688,63.606 6.688,50.606 7.819,51.284 "/> -<polygon id="Stroke-15" class="st6" points="7.819,64.284 6.688,63.606 6.688,50.606 7.819,51.284 "/> -<polygon id="Fill-16" class="st5" points="8.153,46.95 7.022,46.272 7.022,33.272 8.153,33.95 "/> -<polygon id="Stroke-17" class="st6" points="8.153,46.95 7.022,46.272 7.022,33.272 8.153,33.95 "/> -<polygon id="Fill-18" class="st5" points="72.979,89.647 65.416,85.271 65.364,82.107 72.927,86.483 "/> -<path id="Fill-19" class="st7" d="M45.413,17.769l1.41,0.714c-0.486,0.341-0.793,0.675-0.92,1.005 - c-0.128,0.329-0.064,0.695,0.19,1.099c0.255,0.405,0.675,0.785,1.263,1.14c0.523,0.315,1.067,0.548,1.63,0.698 - c0.564,0.151,1.087,0.205,1.57,0.164c0.481-0.04,0.891-0.154,1.23-0.341c0.344-0.191,0.549-0.415,0.617-0.67 - c0.069-0.255-0.027-0.563-0.287-0.92c-0.162-0.232-0.599-0.701-1.308-1.41c-0.709-0.707-1.148-1.235-1.315-1.583 - c-0.22-0.451-0.249-0.862-0.086-1.232c0.165-0.371,0.497-0.696,1-0.975c0.552-0.306,1.217-0.503,1.994-0.59 - c0.777-0.088,1.574-0.029,2.393,0.177c0.818,0.205,1.576,0.519,2.273,0.94c0.766,0.463,1.312,0.943,1.636,1.442 - c0.325,0.498,0.392,0.984,0.199,1.455c-0.192,0.472-0.598,0.893-1.217,1.263l-1.418-0.734c0.622-0.426,0.906-0.861,0.852-1.302 - c-0.054-0.443-0.478-0.902-1.273-1.383c-0.829-0.5-1.593-0.775-2.292-0.826c-0.701-0.05-1.277,0.05-1.73,0.301 - c-0.393,0.218-0.583,0.478-0.568,0.781c0.01,0.3,0.437,0.859,1.285,1.679c0.846,0.82,1.377,1.409,1.593,1.77 - c0.307,0.526,0.381,1.001,0.217,1.423c-0.163,0.424-0.538,0.799-1.126,1.124c-0.582,0.323-1.289,0.531-2.12,0.627 - c-0.829,0.096-1.684,0.044-2.561-0.154c-0.876-0.198-1.684-0.52-2.423-0.966c-0.937-0.565-1.577-1.119-1.922-1.661 - c-0.344-0.542-0.405-1.082-0.185-1.621C44.233,18.665,44.699,18.186,45.413,17.769"/> -<path id="Fill-21" class="st7" d="M59.312,22.882l2.238,1.351c0.606,0.366,1.084,0.605,1.432,0.717 - c0.459,0.15,0.903,0.207,1.332,0.173c0.432-0.034,0.838-0.158,1.221-0.37c0.363-0.202,0.601-0.429,0.713-0.682 - c0.111-0.252,0.064-0.499-0.138-0.74c-0.204-0.241-0.679-0.586-1.421-1.035l-2.068-1.248L59.312,22.882z M54.257,25.684l2.576,1.555 - c0.444,0.267,0.771,0.445,0.985,0.534c0.375,0.156,0.737,0.26,1.09,0.311c0.351,0.051,0.727,0.043,1.131-0.022 - c0.403-0.065,0.777-0.195,1.126-0.387c0.408-0.227,0.664-0.482,0.768-0.77c0.103-0.286,0.04-0.568-0.189-0.847 - c-0.228-0.28-0.671-0.618-1.33-1.016l-2.393-1.444L54.257,25.684z M51.596,25.573l10.945-6.068l3.883,2.344 - c0.79,0.477,1.315,0.922,1.571,1.332c0.255,0.411,0.289,0.826,0.1,1.245c-0.191,0.418-0.537,0.767-1.04,1.046 - c-0.468,0.259-1.027,0.431-1.681,0.514c-0.654,0.084-1.349,0.051-2.087-0.101c0.431,0.486,0.58,0.96,0.451,1.423 - c-0.133,0.462-0.516,0.87-1.154,1.223c-0.512,0.285-1.092,0.487-1.737,0.607c-0.645,0.121-1.238,0.157-1.777,0.107 - c-0.541-0.05-1.099-0.176-1.676-0.384c-0.576-0.207-1.192-0.508-1.852-0.906L51.596,25.573z"/> -<path id="Fill-23" class="st7" d="M59.697,30.463l6.86-0.631l1.274-3.641l1.588,0.959l-0.707,1.725 - c-0.138,0.326-0.26,0.596-0.368,0.808c0.536-0.058,1.018-0.104,1.446-0.14l3.138-0.275l1.518,0.915l-6.324,0.507l-1.407,4.008 - l-1.561-0.941l0.925-2.295l0.255-0.615l-5.098,0.545L59.697,30.463z"/> -<path id="Fill-25" class="st7" d="M79.929,34.151c0.771-0.428,1.188-0.885,1.254-1.37c0.065-0.485-0.176-0.894-0.722-1.223 - c-0.565-0.341-1.301-0.503-2.208-0.485c-0.906,0.018-1.747,0.242-2.523,0.673c-0.697,0.385-1.065,0.82-1.104,1.301 - c-0.037,0.482,0.237,0.899,0.821,1.25c0.587,0.356,1.289,0.527,2.102,0.514C78.364,34.798,79.158,34.579,79.929,34.151 - M69.896,33.688l1.34,0.671c-0.504,0.399-0.746,0.763-0.728,1.091c0.019,0.328,0.254,0.63,0.711,0.905 - c0.391,0.235,0.828,0.39,1.312,0.462c0.481,0.073,0.976,0.079,1.48,0.017c0.504-0.062,1.09-0.204,1.754-0.424 - c0.664-0.222,1.275-0.487,1.833-0.796c0.06-0.032,0.147-0.084,0.261-0.153c-0.681,0.085-1.376,0.067-2.081-0.051 - c-0.707-0.118-1.317-0.332-1.829-0.642c-0.857-0.516-1.253-1.137-1.189-1.858c0.064-0.723,0.634-1.381,1.708-1.978 - c1.11-0.615,2.314-0.924,3.609-0.926c1.295-0.001,2.41,0.28,3.341,0.841c0.673,0.407,1.097,0.884,1.271,1.434 - c0.175,0.549,0.053,1.107-0.368,1.676c-0.419,0.567-1.302,1.223-2.646,1.968c-1.398,0.776-2.655,1.307-3.771,1.593 - c-1.116,0.286-2.174,0.378-3.174,0.277c-1-0.104-1.882-0.384-2.644-0.845c-0.809-0.488-1.233-1.02-1.27-1.592 - C68.777,34.785,69.137,34.228,69.896,33.688"/> -<path id="Fill-27" class="st7" d="M81.806,37.557c-1.797,0.996-2.794,1.779-2.992,2.349c-0.196,0.57-0.004,1.031,0.58,1.382 - c0.584,0.353,1.372,0.483,2.368,0.392c0.995-0.091,2.388-0.633,4.181-1.626c1.801-0.999,2.799-1.783,2.994-2.351 - c0.194-0.569-0.005-1.032-0.598-1.39c-0.583-0.352-1.31-0.488-2.181-0.409C85.053,36.01,83.603,36.561,81.806,37.557 M80.5,36.769 - c1.294-0.718,2.46-1.219,3.501-1.505c1.041-0.285,2.024-0.396,2.948-0.334c0.925,0.063,1.764,0.32,2.517,0.775 - c0.555,0.335,0.925,0.695,1.107,1.08c0.182,0.382,0.187,0.78,0.014,1.192s-0.501,0.842-0.985,1.29s-1.269,0.974-2.354,1.575 - c-1.284,0.712-2.445,1.211-3.484,1.498c-1.038,0.287-2.02,0.4-2.948,0.339c-0.927-0.061-1.769-0.32-2.527-0.777 - c-0.998-0.603-1.403-1.285-1.215-2.049C77.302,38.937,78.444,37.909,80.5,36.769"/> -<path id="Fill-29" class="st7" d="M92.787,40.925c-0.518,0.287-0.784,0.617-0.798,0.989c-0.013,0.372,0.233,0.711,0.736,1.016 - c0.491,0.295,1.055,0.446,1.693,0.455c0.639,0.007,1.195-0.119,1.669-0.381c0.492-0.273,0.746-0.6,0.758-0.981 - c0.015-0.381-0.219-0.717-0.7-1.006c-0.484-0.293-1.05-0.445-1.699-0.455C93.798,40.55,93.245,40.671,92.787,40.925 M87.322,43.481 - c-0.384,0.212-0.668,0.469-0.854,0.772c-0.188,0.302-0.209,0.61-0.068,0.924c0.144,0.313,0.409,0.588,0.8,0.824 - c0.607,0.365,1.316,0.554,2.123,0.564c0.809,0.009,1.531-0.162,2.169-0.516c0.648-0.358,0.978-0.778,0.994-1.259 - c0.016-0.48-0.281-0.904-0.893-1.274c-0.598-0.361-1.302-0.544-2.114-0.549C88.668,42.962,87.949,43.133,87.322,43.481 - M90.764,42.342c-0.324-0.433-0.423-0.829-0.298-1.192c0.123-0.364,0.449-0.692,0.976-0.984c0.797-0.441,1.738-0.649,2.821-0.623 - c1.083,0.026,2.075,0.31,2.974,0.853c0.904,0.546,1.353,1.137,1.348,1.778c-0.004,0.64-0.404,1.181-1.2,1.622 - c-0.508,0.281-1.076,0.45-1.703,0.507c-0.627,0.057-1.301-0.015-2.017-0.21c0.416,0.505,0.546,0.992,0.391,1.463 - c-0.157,0.471-0.575,0.893-1.251,1.269c-0.936,0.519-2.035,0.766-3.298,0.741c-1.262-0.024-2.405-0.345-3.426-0.961 - c-1.021-0.617-1.525-1.291-1.512-2.024c0.014-0.732,0.499-1.363,1.455-1.892c0.711-0.395,1.478-0.623,2.3-0.683 - C89.145,41.946,89.958,42.057,90.764,42.342"/> -<path id="Fill-31" class="st7" d="M41.715,32.345l1.284-0.712l4.393,2.643l-4.063,2.251c-1.24-0.092-2.361-0.274-3.363-0.547 - c-1.002-0.274-1.879-0.637-2.631-1.092c-1.017-0.613-1.711-1.299-2.082-2.055c-0.369-0.757-0.33-1.505,0.117-2.243 - c0.448-0.738,1.208-1.406,2.283-2.002c1.066-0.591,2.271-1.014,3.616-1.272c1.344-0.258,2.635-0.272,3.874-0.043 - c1.239,0.228,2.374,0.654,3.404,1.276c0.749,0.452,1.297,0.932,1.646,1.439c0.348,0.506,0.464,0.991,0.35,1.452 - c-0.114,0.462-0.45,0.95-1.009,1.467l-1.593-0.547c0.403-0.403,0.648-0.763,0.736-1.078c0.087-0.316,0.013-0.657-0.223-1.021 - c-0.237-0.365-0.617-0.705-1.139-1.02c-0.625-0.378-1.268-0.649-1.925-0.813c-0.659-0.163-1.293-0.239-1.901-0.226 - c-0.608,0.013-1.187,0.082-1.736,0.206c-0.94,0.216-1.807,0.544-2.598,0.983c-0.975,0.541-1.632,1.089-1.972,1.645 - s-0.364,1.106-0.076,1.649c0.289,0.543,0.773,1.02,1.457,1.432c0.591,0.358,1.292,0.64,2.098,0.848 - c0.805,0.206,1.492,0.322,2.058,0.347l2.038-1.13L41.715,32.345z"/> -<polygon id="Fill-33" class="st7" points="43.544,38.421 54.49,32.353 61.973,36.869 60.681,37.585 54.567,33.895 51.216,35.753 - 56.94,39.209 55.657,39.921 49.931,36.465 46.205,38.53 52.559,42.365 51.267,43.082 "/> -<polygon id="Fill-35" class="st7" points="52.569,43.868 63.515,37.8 64.921,38.648 61.762,46.693 70.356,41.93 71.67,42.722 - 60.723,48.79 59.319,47.942 62.485,39.892 53.883,44.661 "/> -<path id="Fill-37" class="st7" d="M70.043,52.919l-1.292,0.717l-6.84-4.129c0.315-0.186,0.674-0.328,1.081-0.428 - c0.668-0.168,1.432-0.269,2.293-0.303c0.862-0.033,1.968-0.004,3.32,0.085c2.101,0.138,3.633,0.168,4.599,0.091 - c0.965-0.077,1.701-0.257,2.209-0.539c0.532-0.295,0.802-0.652,0.808-1.072s-0.281-0.806-0.86-1.154 - c-0.611-0.37-1.295-0.557-2.049-0.564c-0.756-0.006-1.481,0.179-2.171,0.558l-1.164-0.867c1.118-0.518,2.24-0.749,3.364-0.697 - c1.124,0.053,2.178,0.376,3.161,0.97c0.993,0.599,1.487,1.235,1.484,1.907c-0.004,0.672-0.436,1.247-1.297,1.725 - c-0.438,0.243-0.954,0.43-1.545,0.562c-0.593,0.133-1.32,0.209-2.181,0.232c-0.86,0.022-2.156-0.016-3.886-0.115 - c-1.438-0.084-2.387-0.125-2.845-0.122s-0.879,0.03-1.265,0.08L70.043,52.919z"/> -<path id="Fill-39" class="st5" d="M77.701,101.666c0,1.909-1.548,2.529-3.458,1.381c-1.913-1.15-3.461-3.629-3.461-5.537 - c0-1.912,1.548-2.531,3.461-1.382C76.153,97.275,77.701,99.754,77.701,101.666"/> -<path id="Fill-41" class="st5" d="M71.02,97.652c0.005,1.781,1.442,4.084,3.223,5.157c1.78,1.066,3.215,0.489,3.219-1.285 - c-0.004-1.783-1.439-4.086-3.219-5.159C72.462,95.299,71.025,95.875,71.02,97.652 M70.545,97.367c0-2.044,1.654-2.705,3.698-1.478 - c2.043,1.228,3.695,3.876,3.695,5.92c0,2.039-1.652,2.704-3.695,1.476C72.199,102.057,70.545,99.407,70.545,97.367"/> -<path id="Fill-43" class="st3" d="M76.697,104.27l-5.637-9.023c-0.177-0.286-0.177-0.573,0-0.643 - c0.177-0.071,0.465,0.102,0.643,0.386l5.637,9.023c0.177,0.285,0.177,0.571,0,0.643c-0.089,0.035-0.206,0.01-0.322-0.061 - C76.902,104.525,76.786,104.412,76.697,104.27"/> -<path id="Fill-45" class="st3" d="M71.095,100.868c-0.178-0.285-0.178-0.571,0-0.643l5.637-2.252 - c0.177-0.07,0.466,0.103,0.642,0.385c0.178,0.285,0.178,0.573,0,0.644l-5.636,2.252c-0.09,0.036-0.206,0.01-0.323-0.06 - C71.299,101.124,71.183,101.01,71.095,100.868"/> -<path id="Fill-47" class="st3" d="M75.983,100.694c0,0.978-0.793,1.292-1.771,0.704c-0.981-0.589-1.775-1.856-1.775-2.834 - c0-0.981,0.794-1.298,1.775-0.709C75.189,98.443,75.983,99.713,75.983,100.694"/> -<path id="Fill-49" class="st5" d="M68.54,95.957c0,1.908-1.547,2.528-3.457,1.38c-1.913-1.15-3.461-3.628-3.461-5.537 - c0-1.912,1.548-2.531,3.461-1.382C66.993,91.565,68.54,94.045,68.54,95.957"/> -<path id="Fill-51" class="st5" d="M61.859,91.943c0.005,1.78,1.442,4.083,3.223,5.156c1.779,1.067,3.215,0.49,3.219-1.285 - c-0.004-1.783-1.44-4.086-3.219-5.159C63.301,89.589,61.864,90.166,61.859,91.943 M61.383,91.658c0-2.045,1.655-2.706,3.699-1.478 - c2.042,1.228,3.695,3.875,3.695,5.919c0,2.04-1.653,2.704-3.695,1.477C63.038,96.347,61.383,93.698,61.383,91.658"/> -<path id="Fill-53" class="st3" d="M67.537,98.561l-5.638-9.024c-0.177-0.285-0.177-0.573,0-0.643 - c0.177-0.071,0.465,0.102,0.643,0.387l5.637,9.023c0.177,0.284,0.177,0.571,0,0.642c-0.089,0.035-0.205,0.01-0.321-0.06 - C67.741,98.816,67.625,98.702,67.537,98.561"/> -<path id="Fill-55" class="st3" d="M61.934,95.159c-0.177-0.284-0.177-0.571,0-0.642l5.638-2.253c0.177-0.07,0.466,0.104,0.641,0.386 - c0.178,0.285,0.178,0.572,0,0.643l-5.636,2.253c-0.089,0.035-0.206,0.009-0.322-0.061C62.138,95.416,62.023,95.302,61.934,95.159"/> -<path id="Fill-57" class="st3" d="M66.822,94.985c0,0.978-0.793,1.292-1.771,0.704c-0.981-0.59-1.775-1.856-1.775-2.834 - c0-0.982,0.794-1.299,1.775-0.71C66.029,92.733,66.822,94.003,66.822,94.985"/> -<path id="Fill-59" class="st5" d="M77.507,80.991c0,1.909-1.547,2.528-3.457,1.381c-1.913-1.15-3.461-3.629-3.461-5.537 - c0-1.912,1.548-2.532,3.461-1.382C75.96,76.599,77.507,79.079,77.507,80.991"/> -<path id="Fill-61" class="st5" d="M70.826,76.976c0.005,1.78,1.442,4.084,3.223,5.157c1.779,1.066,3.215,0.489,3.219-1.285 - c-0.004-1.783-1.44-4.086-3.219-5.159C72.268,74.623,70.831,75.199,70.826,76.976 M70.351,76.691c0-2.044,1.654-2.705,3.698-1.478 - c2.042,1.228,3.695,3.876,3.695,5.92c0,2.039-1.653,2.704-3.695,1.476C72.005,81.381,70.351,78.731,70.351,76.691"/> -<path id="Fill-63" class="st3" d="M76.504,83.594l-5.637-9.023c-0.178-0.286-0.178-0.573,0-0.643 - c0.176-0.071,0.464,0.102,0.643,0.386l5.636,9.023c0.178,0.285,0.178,0.571,0,0.643c-0.088,0.035-0.205,0.01-0.321-0.061 - C76.709,83.849,76.593,83.736,76.504,83.594"/> -<path id="Fill-65" class="st3" d="M70.901,80.193c-0.177-0.285-0.177-0.571,0-0.643l5.638-2.253 - c0.177-0.069,0.466,0.104,0.641,0.386c0.179,0.285,0.179,0.572,0,0.643l-5.635,2.253c-0.09,0.036-0.207,0.01-0.323-0.061 - C71.105,80.449,70.99,80.335,70.901,80.193"/> -<path id="Fill-67" class="st3" d="M75.789,80.018c0,0.978-0.793,1.292-1.771,0.704c-0.981-0.589-1.775-1.856-1.775-2.834 - c0-0.981,0.794-1.298,1.775-0.709C74.996,77.767,75.789,79.037,75.789,80.018"/> -<path id="Fill-69" class="st5" d="M68.347,75.281c0,1.908-1.548,2.528-3.458,1.38c-1.912-1.15-3.46-3.628-3.46-5.537 - c0-1.912,1.548-2.531,3.46-1.382C66.799,70.889,68.347,73.368,68.347,75.281"/> -<path id="Fill-71" class="st5" d="M61.665,71.267c0.005,1.78,1.443,4.083,3.224,5.156c1.779,1.067,3.214,0.49,3.219-1.285 - c-0.005-1.783-1.44-4.086-3.219-5.159C63.108,68.913,61.67,69.49,61.665,71.267 M61.19,70.982c0-2.045,1.655-2.706,3.699-1.479 - c2.042,1.229,3.694,3.876,3.694,5.92c0,2.04-1.652,2.704-3.694,1.477C62.845,75.671,61.19,73.021,61.19,70.982"/> -<path id="Fill-73" class="st3" d="M67.343,77.884l-5.637-9.023c-0.177-0.285-0.177-0.573,0-0.643 - c0.177-0.071,0.465,0.102,0.643,0.387l5.637,9.023c0.177,0.284,0.177,0.571,0,0.642c-0.089,0.035-0.206,0.01-0.322-0.061 - C67.548,78.14,67.432,78.026,67.343,77.884"/> -<path id="Fill-75" class="st3" d="M61.74,74.483c-0.178-0.284-0.178-0.571,0-0.642l5.637-2.253c0.177-0.07,0.467,0.104,0.642,0.386 - c0.178,0.284,0.178,0.572,0,0.643l-5.636,2.253c-0.089,0.035-0.206,0.009-0.322-0.061C61.944,74.74,61.828,74.626,61.74,74.483"/> -<path id="Fill-77" class="st3" d="M66.629,74.309c0,0.978-0.794,1.292-1.772,0.704c-0.981-0.59-1.774-1.857-1.774-2.835 - c0-0.981,0.793-1.298,1.774-0.709C65.835,72.057,66.629,73.327,66.629,74.309"/> -<polygon id="Fill-79" class="st5" points="15.867,69.571 14.736,68.893 14.736,55.893 15.867,56.571 "/> -<polygon id="Stroke-81" class="st6" points="15.867,69.571 14.736,68.893 14.736,55.893 15.867,56.571 "/> -<polygon id="Fill-83" class="st5" points="16.201,52.237 15.07,51.559 15.07,38.559 16.201,39.237 "/> -<polygon id="Stroke-85" class="st6" points="16.201,52.237 15.07,51.559 15.07,38.559 16.201,39.237 "/> -<polygon id="Fill-87" class="st5" points="40.179,72.59 39.048,71.912 39.048,58.912 40.179,59.59 "/> -<polygon id="Stroke-89" class="st6" points="40.179,72.59 39.048,71.912 39.048,58.912 40.179,59.59 "/> -<polygon id="Fill-91" class="st5" points="48.06,88.457 46.929,87.779 46.929,74.779 48.06,75.457 "/> -<polygon id="Stroke-93" class="st6" points="48.06,88.457 46.929,87.779 46.929,74.779 48.06,75.457 "/> -<polygon id="Fill-95" class="st5" points="48.394,71.123 47.263,70.445 47.263,57.445 48.394,58.123 "/> -<polygon id="Stroke-97" class="st6" points="48.394,71.123 47.263,70.445 47.263,57.445 48.394,58.123 "/> -<path id="Stroke-99" class="st8" d="M59.733,64.399v31.048"/> -<path id="Stroke-101" class="st8" d="M3.397,30.748v31.048"/> -<path id="Stroke-103" class="st8" d="M11.445,35.592V66.64"/> -<path id="Stroke-105" class="st8" d="M19.493,40.321v31.048"/> -<path id="Stroke-107" class="st8" d="M27.541,45.051v31.048"/> -<path id="Stroke-109" class="st8" d="M35.589,50.227v31.048"/> -<path id="Stroke-111" class="st8" d="M43.638,54.757v31.048"/> -<path id="Stroke-113" class="st8" d="M51.686,59.847v31.048"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 130.229 110.987"><style><![CDATA[.J{fill:#fefefe}.K{fill:none}.L{stroke:#fefefe}.M{fill:#b3b5b7}.N{stroke-linejoin:round}.O{stroke-linecap:round}]]></style><g stroke="#626366" stroke-width="3" class="K N"><path d="M1.5 27.426L50.34 1.5l78.38 47.098-48.84 25.924z"/><path d="M79.88 74.522l.008 34.965L1.508 62.39 1.5 27.426z"/><path d="M79.88 74.522l48.84-25.924.008 34.965-48.84 25.924z"/></g><path d="M79.88 74.524L128.72 48.6l.008 34.966-48.84 25.924z" fill="#898b8e"/><path d="M1.5 27.427L50.34 1.502 128.72 48.6 79.88 74.524z" fill="#bbbdbf"/><path d="M79.88 74.524l.008 34.965-78.38-47.096L1.5 27.427z" class="M"/><path d="M1.894 27.33L79.88 74.19v34.995" stroke="#dfe0df" stroke-width=".75" class="K N O"/><use xlink:href="#B" class="J"/><use xlink:href="#B" class="K L"/><use xlink:href="#B" x="-16.262" class="J"/><use xlink:href="#B" x="-16.262" class="K L"/><use xlink:href="#B" x="-15.929" y="-17.334" class="J"/><use xlink:href="#B" x="-15.929" y="-17.334" class="K L"/><path d="M72.98 89.647l-7.563-4.376-.052-3.164 7.563 4.376z" class="J"/><g fill="#231f20"><path d="M45.413 17.77l1.4.714c-.486.34-.793.675-.92 1.005s-.064.695.2 1.1.675.785 1.263 1.14a6.29 6.29 0 0 0 1.63.698c.564.15 1.087.205 1.57.164s.9-.154 1.23-.34.55-.415.617-.67-.027-.563-.287-.92c-.162-.232-.6-.7-1.308-1.4s-1.148-1.235-1.315-1.583c-.22-.45-.25-.862-.086-1.232s.497-.696 1-.975c.552-.306 1.217-.503 1.994-.6s1.574-.03 2.393.177a8.25 8.25 0 0 1 2.273.94c.766.463 1.312.943 1.636 1.442s.392.984.2 1.455-.598.893-1.217 1.263l-1.418-.734c.622-.426.906-.86.852-1.302s-.478-.902-1.273-1.383c-.83-.5-1.593-.775-2.292-.826s-1.277.05-1.73.3c-.393.218-.583.478-.568.78s.437.86 1.285 1.68 1.377 1.4 1.593 1.77c.307.526.38 1 .217 1.423s-.538.8-1.126 1.124c-.582.323-1.3.53-2.12.627s-1.684.044-2.56-.154a8.12 8.12 0 0 1-2.423-.966c-.937-.565-1.577-1.12-1.922-1.66s-.405-1.082-.185-1.62.685-1.017 1.4-1.434m13.896 5.11l2.238 1.35c.606.366 1.084.605 1.432.717a3.4 3.4 0 0 0 1.332.173 2.98 2.98 0 0 0 1.22-.37c.363-.202.6-.43.713-.682s.064-.5-.138-.74-.68-.586-1.42-1.035l-2.068-1.248-3.3 1.834zm-5.055 2.802l2.576 1.555.985.534c.375.156.737.26 1.1.3s.727.043 1.13-.022a3.46 3.46 0 0 0 1.126-.387c.408-.227.664-.482.768-.77s.04-.568-.2-.847-.67-.618-1.33-1.016l-2.393-1.444-3.764 2.086zm-2.66-.1l10.945-6.068 3.883 2.344c.8.477 1.315.922 1.57 1.332s.3.826.1 1.245-.537.767-1.04 1.046c-.468.26-1.027.43-1.68.514s-1.35.05-2.087-.1c.43.486.58.96.45 1.423s-.516.87-1.154 1.223c-.512.285-1.092.487-1.737.607s-1.238.157-1.777.107-1.1-.176-1.676-.384-1.192-.508-1.852-.906l-3.946-2.382zm8.1 4.89l6.86-.63 1.274-3.64 1.588.96-.707 1.725-.368.808 1.446-.14 3.138-.275 1.518.915-6.324.507-1.407 4.008-1.56-.94.925-2.295.255-.615-5.098.545-1.54-.93zM79.93 34.15c.77-.428 1.188-.885 1.254-1.37s-.176-.894-.722-1.223c-.565-.34-1.3-.503-2.208-.485a5.33 5.33 0 0 0-2.523.673c-.697.385-1.065.82-1.104 1.3s.237.9.82 1.25c.587.356 1.3.527 2.102.514a5.02 5.02 0 0 0 2.38-.66m-10.033-.463l1.34.67c-.504.4-.746.763-.728 1.1s.254.63.7.905c.4.235.828.4 1.312.462s.976.08 1.48.017 1.1-.204 1.754-.424 1.275-.487 1.833-.796l.26-.153c-.68.085-1.376.067-2.08-.05s-1.317-.332-1.83-.642c-.857-.516-1.253-1.137-1.2-1.858s.634-1.38 1.708-1.978c1.1-.615 2.314-.924 3.6-.926s2.4.28 3.34.84c.673.407 1.097.884 1.27 1.434s.053 1.107-.368 1.676-1.302 1.223-2.646 1.968c-1.398.776-2.655 1.307-3.77 1.593s-2.174.378-3.174.277-1.882-.384-2.644-.845c-.8-.488-1.233-1.02-1.27-1.592s.32-1.13 1.08-1.67"/><path d="M81.806 37.557c-1.797.996-2.794 1.78-2.992 2.35s-.004 1.03.58 1.382 1.372.483 2.368.392 2.388-.633 4.18-1.626c1.8-1 2.8-1.783 2.994-2.35s-.005-1.032-.598-1.4c-.583-.352-1.3-.488-2.18-.4-1.105.106-2.555.657-4.352 1.653M80.5 36.77c1.294-.718 2.46-1.22 3.5-1.505s2.024-.396 2.948-.334 1.764.32 2.517.775c.555.335.925.695 1.107 1.08s.187.78.014 1.192-.5.842-.985 1.3-1.27.974-2.354 1.575c-1.284.712-2.445 1.2-3.484 1.498s-2.02.4-2.948.34a5.52 5.52 0 0 1-2.527-.777c-.998-.603-1.403-1.285-1.215-2.05.228-.916 1.37-1.944 3.426-3.084m12.288 4.145c-.518.287-.784.617-.798 1s.233.7.736 1.016c.5.295 1.055.446 1.693.455s1.195-.12 1.67-.38c.492-.273.746-.6.758-.98s-.22-.717-.7-1.006-1.05-.445-1.7-.455-1.2.1-1.66.363m-5.465 2.556c-.384.212-.668.47-.854.772a.93.93 0 0 0-.068.924c.144.313.4.588.8.824.607.365 1.316.554 2.123.564s1.53-.162 2.17-.516c.648-.358.978-.778.994-1.26s-.28-.904-.893-1.274c-.598-.36-1.302-.544-2.114-.55s-1.53.166-2.157.514m3.442-1.14c-.324-.433-.423-.83-.298-1.192s.45-.692.976-.984c.797-.44 1.738-.65 2.82-.623s2.075.3 2.974.853c.904.546 1.353 1.137 1.348 1.778s-.404 1.18-1.2 1.622c-.508.28-1.076.45-1.703.507s-1.3-.015-2.017-.2c.416.505.546.992.4 1.463s-.575.893-1.25 1.27c-.936.52-2.035.766-3.298.74s-2.405-.345-3.426-.96-1.525-1.3-1.512-2.024.5-1.363 1.455-1.892a5.5 5.5 0 0 1 2.3-.683c.822-.06 1.634.05 2.44.336M41.715 32.345L43 31.633l4.393 2.643-4.063 2.25c-1.24-.092-2.36-.274-3.363-.547s-1.88-.637-2.63-1.092c-1.017-.613-1.7-1.3-2.082-2.055a2.21 2.21 0 0 1 .117-2.243c.448-.738 1.208-1.406 2.283-2.002 1.066-.6 2.27-1.014 3.616-1.272s2.635-.272 3.874-.043a10.04 10.04 0 0 1 3.404 1.276c.75.452 1.297.932 1.646 1.44s.464 1 .35 1.452-.45.95-1 1.467l-1.593-.547c.403-.403.648-.763.736-1.078s.013-.657-.223-1.02-.617-.705-1.14-1.02a6.98 6.98 0 0 0-1.925-.813c-.66-.163-1.293-.24-1.9-.226s-1.187.082-1.736.206a9.89 9.89 0 0 0-2.598.983c-.975.54-1.632 1.1-1.972 1.645s-.364 1.106-.076 1.65.773 1.02 1.457 1.432c.6.358 1.292.64 2.098.848s1.492.322 2.058.347l2.038-1.13-3.043-1.837zm1.83 6.075L54.5 32.353l7.483 4.516-1.292.716-6.114-3.7-3.35 1.858L56.95 39.2l-1.283.712-5.726-3.456-3.726 2.065 6.354 3.835-1.292.717zm9.026 5.448L63.515 37.8l1.406.848-3.16 8.045 8.594-4.763 1.314.792L60.723 48.8l-1.404-.848 3.166-8.05-8.602 4.77zm17.473 9.052l-1.292.717-6.84-4.13a3.98 3.98 0 0 1 1.08-.428c.668-.168 1.432-.27 2.293-.303s1.968-.004 3.32.085l4.6.1c.965-.077 1.7-.257 2.2-.54.532-.295.802-.652.808-1.072s-.28-.806-.86-1.154a3.95 3.95 0 0 0-2.05-.564c-.755-.007-1.48.18-2.17.558l-1.164-.867c1.118-.518 2.24-.75 3.364-.697a6.63 6.63 0 0 1 3.161.97c.993.6 1.487 1.235 1.484 1.907s-.436 1.247-1.297 1.725c-.438.243-.954.43-1.545.562s-1.32.2-2.18.232-2.156-.016-3.886-.115l-2.845-.122a10.4 10.4 0 0 0-1.265.08l5.076 3.063z"/></g><g class="J"><path d="M77.7 101.666c0 1.91-1.548 2.53-3.458 1.38s-3.46-3.63-3.46-5.537 1.548-2.53 3.46-1.382 3.458 3.626 3.458 5.538"/><path d="M71.02 97.652c.005 1.78 1.442 4.084 3.223 5.157 1.78 1.066 3.215.49 3.22-1.285-.004-1.783-1.44-4.086-3.22-5.16-1.78-1.066-3.218-.5-3.223 1.287m-.475-.285c0-2.044 1.654-2.705 3.698-1.478s3.695 3.876 3.695 5.92-1.652 2.704-3.695 1.476-3.698-3.878-3.698-5.918"/></g><g class="M"><path d="M76.697 104.27l-5.637-9.023c-.177-.286-.177-.573 0-.643s.465.102.643.386l5.637 9.023c.177.285.177.57 0 .643-.09.035-.206.01-.322-.06s-.232-.183-.32-.325"/><path d="M71.095 100.868c-.178-.285-.178-.57 0-.643l5.637-2.252c.177-.07.466.103.642.385s.178.573 0 .644l-5.636 2.252c-.1.036-.206.01-.323-.06a1 1 0 0 1-.32-.326"/><use xlink:href="#C"/></g><g class="J"><path d="M68.54 95.957c0 1.908-1.547 2.528-3.457 1.38s-3.46-3.628-3.46-5.537 1.548-2.53 3.46-1.382 3.457 3.627 3.457 5.54"/><path d="M61.86 91.943c.005 1.78 1.442 4.083 3.223 5.156 1.78 1.067 3.215.5 3.22-1.285-.004-1.783-1.44-4.086-3.22-5.16-1.78-1.066-3.218-.49-3.223 1.288m-.476-.285c0-2.045 1.655-2.706 3.7-1.478s3.695 3.875 3.695 5.92-1.653 2.704-3.695 1.477-3.7-3.878-3.7-5.918"/></g><g class="M"><path d="M67.537 98.56L61.9 89.537c-.177-.285-.177-.573 0-.643s.465.102.643.387l5.637 9.023c.177.284.177.57 0 .642-.09.035-.205.01-.32-.06s-.233-.184-.32-.325"/><path d="M61.934 95.16c-.177-.284-.177-.57 0-.642l5.638-2.253c.177-.07.466.104.64.386s.178.572 0 .643l-5.636 2.253c-.09.035-.206.01-.322-.06a.98.98 0 0 1-.321-.326"/><path d="M66.822 94.985c0 .978-.793 1.292-1.77.704s-1.775-1.856-1.775-2.834.794-1.3 1.775-.7 1.77 1.858 1.77 2.84"/></g><g class="J"><path d="M77.507 80.99c0 1.91-1.547 2.528-3.457 1.38s-3.46-3.63-3.46-5.537 1.548-2.532 3.46-1.382 3.457 3.626 3.457 5.538"/><path d="M70.826 76.976c.005 1.78 1.442 4.084 3.223 5.157 1.78 1.066 3.215.49 3.22-1.285-.004-1.783-1.44-4.086-3.22-5.16-1.78-1.066-3.218-.5-3.223 1.287m-.475-.285c0-2.044 1.654-2.705 3.698-1.478s3.695 3.876 3.695 5.92-1.653 2.704-3.695 1.476-3.698-3.878-3.698-5.918"/></g><g class="M"><path d="M76.504 83.594l-5.637-9.023c-.178-.286-.178-.573 0-.643s.464.102.643.386l5.636 9.023c.178.285.178.57 0 .643-.088.035-.205.01-.32-.06s-.232-.183-.32-.325"/><path d="M70.9 80.193c-.177-.285-.177-.57 0-.643l5.638-2.253c.177-.07.466.104.64.386s.18.572 0 .643l-5.635 2.253c-.1.036-.207.01-.323-.06s-.232-.183-.32-.325"/><use xlink:href="#C" x="-0.193" y="-20.676"/></g><g class="J"><path d="M68.347 75.28c0 1.908-1.548 2.528-3.458 1.38s-3.46-3.628-3.46-5.537 1.548-2.53 3.46-1.382 3.458 3.626 3.458 5.54"/><path d="M61.665 71.267c.005 1.78 1.443 4.083 3.224 5.156 1.78 1.067 3.214.5 3.22-1.285-.005-1.783-1.44-4.086-3.22-5.16-1.78-1.066-3.22-.49-3.224 1.288m-.475-.285c0-2.045 1.655-2.706 3.7-1.48s3.694 3.876 3.694 5.92-1.652 2.704-3.694 1.477-3.7-3.88-3.7-5.918"/></g><g class="M"><path d="M67.343 77.884l-5.637-9.023c-.177-.285-.177-.573 0-.643s.465.102.643.387l5.637 9.023c.177.284.177.57 0 .642-.09.035-.206.01-.322-.06s-.232-.183-.32-.325"/><path d="M61.74 74.483c-.178-.284-.178-.57 0-.642l5.637-2.253c.177-.07.467.104.642.386s.178.572 0 .643l-5.636 2.253c-.09.035-.206.01-.322-.06s-.233-.183-.32-.326"/><path d="M66.63 74.31c0 .978-.794 1.292-1.772.704s-1.774-1.857-1.774-2.835.793-1.298 1.774-.71 1.772 1.858 1.772 2.84"/></g><use xlink:href="#B" x="-8.215" y="5.286" class="J"/><use xlink:href="#B" x="-8.215" y="5.286" class="K L"/><use xlink:href="#B" x="-7.882" y="-12.047" class="J"/><use xlink:href="#B" x="-7.882" y="-12.047" class="K L"/><use xlink:href="#B" x="16.098" y="8.316" class="J"/><use xlink:href="#B" x="16.098" y="8.316" class="K L"/><use xlink:href="#B" x="23.978" y="24.173" class="J"/><use xlink:href="#B" x="23.978" y="24.173" class="K L"/><use xlink:href="#B" x="24.312" y="6.839" class="J"/><g class="K L"><use xlink:href="#B" x="24.312" y="6.839"/><path d="M59.733 64.4v31.048m-56.336-64.7v31.048m8.048-26.204V66.64m8.048-26.32v31.05m8.047-26.32V76.1m8.05-25.873v31.048m8.048-26.518v31.048m8.048-25.958v31.048" stroke-width=".722" class="O"/></g><defs ><path id="B" d="M24.082 64.284l-1.13-.678v-13l1.13.678z"/><path id="C" d="M75.983 100.694c0 .978-.793 1.292-1.77.704s-1.775-1.856-1.775-2.834.794-1.298 1.775-.71 1.77 1.858 1.77 2.84"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/switch/Switch_24_port_L2.svg b/src/main/webapp/img/lib/allied_telesis/switch/Switch_24_port_L2.svg index d71ce7322b1cc50ceb9ff5b483c26bde6300cfa5..8699cbf42ebe8f01407566b3045e20c86ec9409a 100644 --- a/src/main/webapp/img/lib/allied_telesis/switch/Switch_24_port_L2.svg +++ b/src/main/webapp/img/lib/allied_telesis/switch/Switch_24_port_L2.svg @@ -1,65 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 123.668 84.623" style="enable-background:new 0 0 123.668 84.623;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#626366;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;} - .st1{fill:#898B8E;} - .st2{fill:#BBBDBF;} - .st3{fill:#B3B5B7;} - .st4{fill:none;stroke:#DFE0DF;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;} - .st5{fill:#FEFEFE;} - .st6{fill:#010202;} -</style> -<title>icon-switch-24port-L2</title> -<desc>Created with Sketch.</desc> -<polygon id="Stroke-1" class="st0" points="79.881,71.039 122.16,48.596 122.168,60.681 79.889,83.123 "/> -<polygon id="Stroke-3" class="st0" points="1.5,23.942 43.779,1.5 122.16,48.595 79.881,71.039 "/> -<polygon id="Stroke-5" class="st0" points="79.881,71.039 79.889,83.123 1.508,36.027 1.5,23.942 "/> -<polygon id="Fill-8" class="st1" points="79.881,71.039 122.16,48.598 122.168,60.682 79.889,83.124 "/> -<polygon id="Fill-9" class="st2" points="1.5,23.943 43.779,1.501 122.16,48.597 79.881,71.039 "/> -<polygon id="Fill-10" class="st3" points="79.881,71.039 79.889,83.124 1.508,36.027 1.5,23.943 "/> -<polyline id="Stroke-11" class="st4" points="1.878,23.949 79.865,70.808 79.865,82.802 "/> -<polygon id="Fill-12" class="st5" points="11.026,39.32 4.983,35.689 4.983,33.947 11.026,37.578 "/> -<polygon id="Fill-13" class="st5" points="75.744,74.048 62.277,65.956 62.277,62.781 75.744,70.874 "/> -<polygon id="Fill-14" class="st5" points="75.693,78.845 62.23,70.755 62.23,67.579 75.693,75.669 "/> -<polygon id="Fill-15" class="st5" points="57.58,63.124 44.111,55.031 44.111,51.857 57.58,59.95 "/> -<polygon id="Fill-16" class="st5" points="57.531,67.921 44.064,59.828 44.064,56.654 57.531,64.747 "/> -<polygon id="Fill-17" class="st5" points="39.459,52.263 25.992,44.171 25.992,40.995 39.459,49.087 "/> -<polygon id="Fill-18" class="st5" points="39.412,57.06 25.945,48.969 25.945,45.795 39.412,53.886 "/> -<polygon id="Fill-19" class="st6" points="27.688,23.389 44.94,14.677 46.499,15.608 31.282,23.292 37.084,26.759 35.047,27.786 "/> -<path id="Fill-20" class="st6" d="M48.438,28.873c-0.839-0.155-1.894-0.491-3.162-1.007c-0.721-0.293-1.282-0.472-1.686-0.54 - c-0.404-0.068-0.822-0.065-1.258,0.007c-0.437,0.072-0.839,0.201-1.207,0.388c-0.566,0.285-0.89,0.61-0.974,0.974 - c-0.085,0.365,0.152,0.715,0.715,1.051c0.557,0.333,1.232,0.539,2.022,0.618c0.791,0.079,1.598,0.023,2.422-0.169 - c0.634-0.148,1.418-0.458,2.352-0.929L48.438,28.873z M43.828,31.334c-1.202,0.017-2.189-0.054-2.959-0.211s-1.44-0.406-2.007-0.745 - c-0.938-0.561-1.321-1.16-1.154-1.799c0.166-0.641,0.771-1.224,1.814-1.751c0.612-0.309,1.268-0.534,1.963-0.676 - c0.696-0.141,1.351-0.198,1.966-0.169c0.613,0.031,1.191,0.12,1.734,0.272c0.394,0.114,0.929,0.316,1.603,0.607 - c1.372,0.595,2.475,0.987,3.31,1.173c0.295-0.143,0.481-0.235,0.56-0.274c0.863-0.437,1.335-0.825,1.415-1.166 - c0.109-0.463-0.2-0.911-0.929-1.347c-0.681-0.407-1.358-0.618-2.03-0.636c-0.674-0.017-1.531,0.151-2.573,0.506l-1.132-0.987 - c1.015-0.37,1.943-0.606,2.782-0.705c0.841-0.1,1.685-0.057,2.536,0.127c0.853,0.184,1.645,0.496,2.379,0.934 - c0.728,0.436,1.194,0.852,1.398,1.251c0.205,0.4,0.224,0.759,0.058,1.079s-0.497,0.653-0.991,0.996 - c-0.314,0.211-0.941,0.555-1.882,1.031l-2.824,1.425c-1.97,0.996-3.185,1.643-3.645,1.943c-0.46,0.3-0.839,0.625-1.136,0.975 - l-1.509-0.902C42.865,31.975,43.282,31.657,43.828,31.334z"/> -<path id="Fill-22" class="st6" d="M40.991,36.645l1.827-1.101c0.192,0.253,0.404,0.45,0.641,0.59 - c0.32,0.193,0.657,0.307,1.006,0.343c0.35,0.035,0.727,0.019,1.132-0.05c0.304-0.053,0.977-0.23,2.019-0.533 - c0.146-0.043,0.36-0.104,0.647-0.185l9.284-8.257l1.558,0.931l-5.462,4.716c-0.687,0.601-1.446,1.212-2.276,1.832 - c1.14-0.391,2.286-0.753,3.443-1.083l9.108-2.59l1.446,0.866l-15.956,4.478c-1.721,0.485-2.936,0.801-3.647,0.947 - c-0.956,0.2-1.762,0.282-2.419,0.247c-0.659-0.034-1.217-0.188-1.678-0.463C41.387,37.166,41.161,36.937,40.991,36.645"/> -<path id="Fill-24" class="st6" d="M62.637,36.06l4.766,2.847c0.986-0.57,1.593-1.076,1.819-1.522 - c0.354-0.686,0.166-1.249-0.568-1.687c-0.664-0.398-1.548-0.567-2.653-0.509C64.898,35.248,63.777,35.539,62.637,36.06 - M63.961,40.626l1.225,1.031c-1.515,0.505-2.944,0.745-4.287,0.72c-1.344-0.024-2.512-0.333-3.502-0.924 - c-1.248-0.746-1.674-1.622-1.28-2.626c0.394-1.006,1.608-2.022,3.64-3.048c2.103-1.062,4.105-1.665,6.004-1.81 - c1.9-0.144,3.44,0.135,4.618,0.84c1.141,0.681,1.504,1.525,1.09,2.531c-0.415,1.007-1.653,2.032-3.717,3.074 - c-0.125,0.063-0.317,0.156-0.573,0.28l-6.363-3.803c-1.32,0.726-2.105,1.416-2.359,2.068c-0.253,0.654-0.022,1.193,0.69,1.619 - c0.53,0.317,1.185,0.484,1.969,0.503C61.9,41.098,62.848,40.947,63.961,40.626"/> -<path id="Fill-26" class="st6" d="M63.231,44.628l12.498-6.312l1.301,0.778l-1.895,0.957c1.219-0.249,2.11-0.361,2.674-0.335 - c0.564,0.025,1.014,0.139,1.352,0.34c0.488,0.291,0.756,0.702,0.804,1.232l-2.464,0.695c-0.047-0.365-0.248-0.654-0.602-0.866 - c-0.315-0.188-0.738-0.287-1.27-0.298c-0.529-0.009-1.095,0.08-1.697,0.264c-0.913,0.285-1.816,0.653-2.711,1.105l-6.543,3.304 - L63.231,44.628z"/> -<path id="Fill-28" class="st6" d="M82.531,53.916l-2.035,1.028l-7.785-4.652c0.498-0.264,1.046-0.478,1.639-0.642 - c0.975-0.274,2.058-0.47,3.247-0.59c1.19-0.12,2.692-0.182,4.504-0.188c2.819-0.013,4.902-0.11,6.25-0.295 - c1.348-0.184,2.422-0.479,3.223-0.884c0.839-0.423,1.343-0.903,1.51-1.439c0.166-0.536-0.08-1.001-0.739-1.395 - c-0.697-0.416-1.559-0.594-2.589-0.535c-1.03,0.06-2.089,0.361-3.176,0.904l-1.264-1c1.727-0.76,3.347-1.157,4.863-1.189 - c1.515-0.033,2.832,0.285,3.952,0.954c1.129,0.675,1.565,1.442,1.306,2.299c-0.259,0.856-1.067,1.628-2.425,2.313 - c-0.69,0.349-1.465,0.634-2.325,0.856c-0.858,0.222-1.881,0.385-3.066,0.49c-1.185,0.105-2.94,0.172-5.266,0.2 - c-1.934,0.021-3.216,0.053-3.842,0.099c-0.628,0.045-1.212,0.116-1.758,0.215L82.531,53.916z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 123.668 84.623"><g fill="none" stroke="#626366" stroke-width="3" stroke-linejoin="round"><path d="M79.88 71.04l42.28-22.443.008 12.085-42.28 22.442z"/><path d="M1.5 23.942L43.78 1.5l78.38 47.095L79.88 71.04z"/><path d="M79.88 71.04l.008 12.084-78.38-47.096L1.5 23.942z"/></g><path d="M79.88 71.04l42.28-22.44.008 12.084-42.28 22.442z" fill="#898b8e"/><path d="M1.5 23.943L43.78 1.5l78.38 47.096L79.88 71.04z" fill="#bbbdbf"/><path d="M79.88 71.04l.008 12.085-78.38-47.097L1.5 23.943z" fill="#b3b5b7"/><path d="M1.878 23.95l77.987 46.86v11.994" fill="none" stroke="#dfe0df" stroke-width=".75" stroke-linecap="round" stroke-linejoin="round"/><path d="M11.026 39.32L4.983 35.7v-1.742l6.043 3.63zm64.718 34.728l-13.467-8.092V62.78l13.467 8.093zm-.05 4.797l-13.463-8.1V67.58l13.463 8.1zM57.58 63.124L44.1 55.03v-3.174l13.47 8.093zm-.05 4.796l-13.467-8.093v-3.174l13.467 8.093zM39.46 52.263L25.992 44.17v-3.176l13.467 8.092zm-.048 4.797l-13.467-8.1v-3.174l13.467 8.1z" fill="#fefefe"/><path d="M27.688 23.4l17.252-8.712 1.56.93-15.217 7.684 5.802 3.467-2.037 1.027zm20.75 5.483c-.84-.155-1.894-.5-3.162-1.007-.72-.293-1.282-.472-1.686-.54s-.822-.065-1.258.007-.84.2-1.207.388c-.566.285-.9.6-.974.974s.152.715.715 1.05c.557.333 1.232.54 2.022.618a7.38 7.38 0 0 0 2.422-.169c.634-.148 1.418-.458 2.352-.93l.776-.393zm-4.6 2.46c-1.202.017-2.2-.054-2.96-.2s-1.44-.406-2.007-.745c-.938-.56-1.32-1.16-1.154-1.8s.77-1.224 1.814-1.75c.612-.3 1.268-.534 1.963-.676a8.01 8.01 0 0 1 1.966-.169c.613.03 1.2.12 1.734.272.394.114.93.316 1.603.607 1.372.595 2.475.987 3.3 1.173l.56-.274c.863-.437 1.335-.825 1.415-1.166.1-.463-.2-.9-.93-1.347-.68-.407-1.358-.618-2.03-.636s-1.53.15-2.573.506l-1.132-.987c1.015-.37 1.943-.606 2.782-.705s1.685-.057 2.536.127a7.83 7.83 0 0 1 2.379.934c.728.436 1.194.852 1.398 1.25s.224.76.058 1.08-.497.653-1 .996c-.314.2-.94.555-1.882 1.03l-2.824 1.425-3.645 1.943a5.2 5.2 0 0 0-1.136.975l-1.5-.902a6.25 6.25 0 0 1 1.253-.95zM41 36.645l1.827-1.1c.192.253.404.45.64.6.32.193.657.307 1.006.343a4.23 4.23 0 0 0 1.132-.05c.304-.053.977-.23 2.02-.533l.647-.185 9.284-8.257 1.558.93-5.462 4.716-2.276 1.832 3.443-1.083 9.108-2.6 1.446.866-15.956 4.478-3.647.947c-.956.2-1.762.282-2.42.247s-1.217-.188-1.678-.463c-.277-.167-.503-.396-.673-.688m21.648-.585l4.766 2.847c.986-.57 1.593-1.076 1.82-1.522.354-.686.166-1.25-.568-1.687C68 35.3 67.106 35.13 66 35.2s-2.224.35-3.364.87m1.324 4.566l1.225 1.03c-1.515.505-2.944.745-4.287.72s-2.512-.333-3.502-.924c-1.248-.746-1.674-1.622-1.28-2.626s1.608-2.022 3.64-3.048c2.103-1.062 4.105-1.665 6.004-1.8s3.44.135 4.618.84c1.14.68 1.504 1.525 1.1 2.53s-1.653 2.032-3.717 3.074l-.573.28-6.363-3.803c-1.32.726-2.105 1.416-2.36 2.068s-.022 1.193.7 1.62c.53.317 1.185.484 1.97.503s1.732-.134 2.845-.455m-.75 3.993l12.498-6.312 1.3.778-1.895.957c1.22-.25 2.1-.36 2.674-.335s1.014.14 1.352.34c.488.3.756.702.804 1.232l-2.464.695c-.047-.365-.248-.654-.602-.866-.315-.188-.738-.287-1.27-.298s-1.095.08-1.697.264c-.913.285-1.816.653-2.7 1.105l-6.543 3.304-1.447-.864zm19.3 9.288l-2.035 1.028-7.785-4.652a8.09 8.09 0 0 1 1.64-.642c.975-.274 2.058-.47 3.247-.6s2.692-.182 4.504-.188l6.25-.295c1.348-.184 2.422-.48 3.223-.884.84-.423 1.343-.903 1.5-1.44s-.08-1-.74-1.395c-.697-.416-1.56-.594-2.6-.535s-2.1.36-3.176.904l-1.264-1c1.727-.76 3.347-1.157 4.863-1.2s2.832.285 3.952.954c1.13.675 1.565 1.442 1.306 2.3S94.358 47.91 93 48.594a11.52 11.52 0 0 1-2.325.856c-.858.222-1.88.385-3.066.5s-2.94.172-5.266.2l-3.842.1-1.758.215 5.776 3.45z" fill="#010202"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/switch/Switch_24_port_L2_POE.svg b/src/main/webapp/img/lib/allied_telesis/switch/Switch_24_port_L2_POE.svg index 35b5de0b603a80b63790afac7617568dcbcfc8be..d6186b51dc18d176a4298dffb9190a0fdf239ca3 100644 --- a/src/main/webapp/img/lib/allied_telesis/switch/Switch_24_port_L2_POE.svg +++ b/src/main/webapp/img/lib/allied_telesis/switch/Switch_24_port_L2_POE.svg @@ -1,54 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 123.668 84.623" style="enable-background:new 0 0 123.668 84.623;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#626366;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;} - .st1{fill:#898B8E;} - .st2{fill:#231F20;} - .st3{fill:#B3B5B7;} - .st4{fill:none;stroke:#DFE0DF;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;} - .st5{fill:#FEFEFE;} -</style> -<title>icon-switch-24port-poeL2</title> -<desc>Created with Sketch.</desc> -<polygon id="Stroke-1" class="st0" points="79.881,71.039 122.16,48.596 122.168,60.682 79.889,83.123 "/> -<polygon id="Stroke-3" class="st0" points="1.5,23.943 43.779,1.5 122.16,48.595 79.881,71.039 "/> -<polygon id="Stroke-5" class="st0" points="79.881,71.039 79.889,83.123 1.508,36.027 1.5,23.943 "/> -<polygon id="Fill-8" class="st1" points="79.881,71.039 122.16,48.598 122.168,60.682 79.889,83.125 "/> -<polygon id="Fill-9" class="st2" points="1.5,23.943 43.779,1.502 122.16,48.597 79.881,71.039 "/> -<polygon id="Fill-10" class="st3" points="79.881,71.039 79.889,83.125 1.508,36.027 1.5,23.943 "/> -<polyline id="Stroke-11" class="st4" points="1.879,23.949 79.865,70.808 79.865,82.803 "/> -<polygon id="Fill-12" class="st5" points="11.026,39.32 4.983,35.689 4.983,33.947 11.026,37.578 "/> -<polygon id="Fill-13" class="st5" points="75.744,74.048 62.277,65.956 62.277,62.782 75.744,70.874 "/> -<polygon id="Fill-14" class="st5" points="75.693,78.845 62.23,70.755 62.23,67.579 75.693,75.669 "/> -<polygon id="Fill-15" class="st5" points="57.58,63.125 44.111,55.031 44.111,51.857 57.58,59.951 "/> -<polygon id="Fill-16" class="st5" points="57.531,67.921 44.064,59.83 44.064,56.655 57.531,64.747 "/> -<polygon id="Fill-17" class="st5" points="39.459,52.263 25.992,44.171 25.992,40.995 39.459,49.087 "/> -<polygon id="Fill-18" class="st5" points="39.412,57.06 25.945,48.97 25.945,45.796 39.412,53.886 "/> -<polygon id="Fill-19" class="st5" points="19.195,26.61 37.058,26.757 31.649,18.654 43.785,19.7 40.031,14.084 61.542,15.936 - 46.272,18.125 50.984,25.182 40.813,24.304 46.191,32.356 20.243,26.797 "/> -<polygon id="Fill-20" class="st5" points="38.957,38.552 50.561,32.692 51.607,33.319 41.374,38.487 45.276,40.819 43.907,41.51 "/> -<path id="Fill-21" class="st5" d="M51.335,40.695l2.686,1.605l2.387-2.116c0.724-0.644,1.337-1.161,1.844-1.552 - c-0.846,0.315-1.727,0.604-2.644,0.864L51.335,40.695z M44.285,41.736l14.645-4.042l1.129,0.674l-8.36,7.798l-1.194-0.714 - l2.59-2.327l-3.314-1.979l-4.383,1.255L44.285,41.736z"/> -<path id="Fill-23" class="st5" d="M53.946,47.509l4.915-2.482l3.635-5.202l1.275,0.762l-1.936,2.699 - c-0.367,0.503-0.752,0.994-1.159,1.473c0.845-0.165,1.817-0.337,2.916-0.519l4.945-0.806l1.221,0.73l-9.848,1.489l-4.915,2.482 - L53.946,47.509z"/> -<polygon id="Fill-25" class="st5" points="59.117,50.599 70.721,44.739 76.449,48.162 75.08,48.853 70.4,46.057 66.846,47.852 - 71.228,50.471 69.867,51.159 65.484,48.54 61.535,50.535 66.398,53.44 65.029,54.132 "/> -<path id="Fill-27" class="st5" d="M74.024,52.359l2.254,1.347c0.479,0.286,0.927,0.473,1.342,0.561 - c0.414,0.088,0.852,0.094,1.312,0.016c0.459-0.076,0.876-0.21,1.25-0.399c0.549-0.277,0.865-0.587,0.947-0.927 - c0.081-0.342-0.17-0.687-0.758-1.039l-2.508-1.498L74.024,52.359z M66.494,55.006l11.602-5.859l3.514,2.098 - c0.705,0.422,1.138,0.795,1.297,1.121c0.159,0.324,0.085,0.685-0.223,1.083s-0.781,0.759-1.42,1.081 - c-0.822,0.415-1.698,0.658-2.627,0.725c-0.928,0.067-1.85-0.087-2.762-0.464c0.082,0.264,0.1,0.487,0.054,0.67 - c-0.106,0.39-0.33,0.824-0.675,1.299l-1.779,2.418l-1.318-0.788l1.365-1.845c0.391-0.535,0.672-0.955,0.843-1.26 - c0.171-0.304,0.252-0.542,0.243-0.71c-0.01-0.168-0.065-0.315-0.17-0.441c-0.081-0.09-0.258-0.215-0.527-0.377l-1.217-0.727 - l-5.152,2.602L66.494,55.006z"/> -<path id="Fill-29" class="st5" d="M83.631,63.737l-1.369,0.691L77.027,61.3c0.334-0.178,0.702-0.322,1.102-0.432 - c0.655-0.185,1.383-0.317,2.183-0.397c0.8-0.081,1.81-0.123,3.03-0.127c1.894-0.007,3.297-0.074,4.203-0.198 - c0.907-0.124,1.629-0.323,2.167-0.595c0.565-0.285,0.903-0.607,1.016-0.968c0.112-0.36-0.053-0.673-0.496-0.938 - c-0.468-0.279-1.049-0.399-1.742-0.36c-0.693,0.04-1.405,0.243-2.136,0.608l-0.849-0.673c1.159-0.511,2.251-0.777,3.27-0.799 - c1.018-0.022,1.905,0.191,2.657,0.642c0.761,0.454,1.053,0.97,0.88,1.546c-0.174,0.576-0.719,1.095-1.632,1.556 - c-0.464,0.235-0.985,0.426-1.564,0.575c-0.578,0.149-1.266,0.259-2.061,0.33c-0.797,0.071-1.979,0.116-3.543,0.136 - c-1.301,0.013-2.162,0.035-2.584,0.065c-0.422,0.03-0.817,0.078-1.182,0.144L83.631,63.737z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 123.668 84.623"><g fill="none" stroke="#626366" stroke-width="3" stroke-linejoin="round"><path d="M79.88 71.04l42.28-22.443.008 12.086-42.28 22.44z"/><path d="M1.5 23.943L43.78 1.5l78.38 47.095L79.88 71.04z"/><path d="M79.88 71.04l.008 12.084-78.38-47.096L1.5 23.943z"/></g><path d="M79.88 71.04l42.28-22.44.008 12.084-42.28 22.443z" fill="#898b8e"/><path d="M1.5 23.943l42.28-22.44 78.38 47.095L79.88 71.04z" fill="#231f20"/><path d="M79.88 71.04l.008 12.086-78.38-47.098L1.5 23.943z" fill="#b3b5b7"/><path d="M1.88 23.95l77.986 46.86v11.995" fill="none" stroke="#dfe0df" stroke-width=".75" stroke-linecap="round" stroke-linejoin="round"/><path d="M11.026 39.32L4.983 35.7v-1.742l6.043 3.63zm64.718 34.728l-13.467-8.092v-3.174l13.467 8.092zm-.05 4.797l-13.463-8.1V67.58l13.463 8.1zM57.58 63.125L44.1 55.03v-3.174l13.47 8.094zm-.05 4.795l-13.467-8.1v-3.175l13.467 8.092zM39.46 52.263L25.992 44.17v-3.176l13.467 8.092zm-.048 4.797l-13.467-8.1v-3.174l13.467 8.1zM19.195 26.6l17.863.147-5.4-8.103L43.785 19.7l-3.754-5.616 21.5 1.852-15.27 2.2 4.712 7.057-10.17-.878 5.378 8.052-25.948-5.56zm19.762 11.952l11.604-5.86 1.046.627-10.233 5.168 3.902 2.332-1.37.7zm12.378 2.143L54.02 42.3l2.387-2.116 1.844-1.552-2.644.864-4.273 1.2zm-7.05 1.04l14.645-4.042 1.13.674-8.36 7.798-1.194-.714 2.6-2.327-3.314-1.98L45.41 42.4l-1.113-.665zm9.66 5.775l4.915-2.482 3.635-5.202 1.275.762-1.936 2.7-1.16 1.473 2.916-.52 4.945-.806 1.22.73-9.848 1.5-4.915 2.482-1.05-.626zm5.17 3.1l11.604-5.86 5.728 3.423-1.37.7-4.68-2.796-3.554 1.795 4.382 2.62-1.36.688-4.383-2.62-3.95 1.995 4.863 2.905-1.37.692zm14.907 1.76l2.254 1.347c.48.286.927.473 1.342.56s.852.094 1.312.016a4.32 4.32 0 0 0 1.25-.399c.55-.277.865-.587.947-.927s-.17-.687-.758-1.04l-2.508-1.498-3.84 1.94zm-7.53 2.647l11.602-5.86 3.514 2.098c.705.422 1.138.795 1.297 1.12s.085.685-.223 1.083-.78.76-1.42 1.08a6.87 6.87 0 0 1-2.627.725c-.928.067-1.85-.087-2.762-.464.082.264.1.487.054.67-.106.4-.33.824-.675 1.3l-1.78 2.418-1.318-.788 1.365-1.845.843-1.26c.17-.304.252-.542.243-.7a.75.75 0 0 0-.17-.44c-.08-.1-.258-.215-.527-.377l-1.217-.727-5.152 2.602-1.048-.626zm17.136 8.73l-1.37.7-5.235-3.128c.334-.178.702-.322 1.102-.432.655-.185 1.383-.317 2.183-.397s1.8-.123 3.03-.127l4.203-.198c.907-.124 1.63-.323 2.167-.595.565-.285.903-.607 1.016-.968s-.053-.673-.496-.938c-.468-.28-1.05-.4-1.742-.36s-1.405.243-2.136.608l-.85-.673c1.16-.5 2.25-.777 3.27-.8s1.905.2 2.657.642c.76.454 1.053.97.88 1.546s-.72 1.095-1.632 1.556a7.7 7.7 0 0 1-1.564.575c-.578.15-1.266.26-2.06.33l-3.543.136-2.584.065c-.422.03-.817.078-1.182.144l3.885 2.322z" fill="#fefefe"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/switch/Switch_24_port_L3.svg b/src/main/webapp/img/lib/allied_telesis/switch/Switch_24_port_L3.svg index 288860f8a3b7cdc76b830f13c7e9221adfe6fb2c..b4e58043107eb347f87cdaf6047f5e79a55a80e1 100644 --- a/src/main/webapp/img/lib/allied_telesis/switch/Switch_24_port_L3.svg +++ b/src/main/webapp/img/lib/allied_telesis/switch/Switch_24_port_L3.svg @@ -1,68 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 123.668 84.623" style="enable-background:new 0 0 123.668 84.623;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#626366;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;} - .st1{fill:#898B8E;} - .st2{fill:#BBBDBF;} - .st3{fill:#B3B5B7;} - .st4{fill:none;stroke:#DFE0DF;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;} - .st5{fill:#FEFEFE;} - .st6{fill:#010202;} -</style> -<title>icon-switch-24port-L3</title> -<desc>Created with Sketch.</desc> -<polygon id="Stroke-1" class="st0" points="79.881,71.039 122.16,48.596 122.168,60.681 79.889,83.123 "/> -<polygon id="Stroke-3" class="st0" points="1.5,23.942 43.779,1.5 122.16,48.595 79.881,71.039 "/> -<polygon id="Stroke-5" class="st0" points="79.881,71.039 79.889,83.123 1.508,36.027 1.5,23.942 "/> -<polygon id="Fill-8" class="st1" points="79.881,71.039 122.16,48.598 122.168,60.682 79.889,83.124 "/> -<polygon id="Fill-9" class="st2" points="1.5,23.943 43.779,1.501 122.16,48.597 79.881,71.039 "/> -<polygon id="Fill-10" class="st3" points="79.881,71.039 79.889,83.124 1.508,36.027 1.5,23.943 "/> -<polyline id="Stroke-11" class="st4" points="1.878,23.949 79.865,70.808 79.865,82.802 "/> -<polygon id="Fill-12" class="st5" points="11.026,39.32 4.983,35.689 4.983,33.947 11.026,37.578 "/> -<polygon id="Fill-13" class="st5" points="75.744,74.048 62.277,65.956 62.277,62.781 75.744,70.874 "/> -<polygon id="Fill-14" class="st5" points="75.693,78.845 62.23,70.755 62.23,67.579 75.693,75.669 "/> -<polygon id="Fill-15" class="st5" points="57.58,63.124 44.111,55.031 44.111,51.857 57.58,59.95 "/> -<polygon id="Fill-16" class="st5" points="57.531,67.921 44.064,59.828 44.064,56.654 57.531,64.747 "/> -<polygon id="Fill-17" class="st5" points="39.459,52.263 25.992,44.171 25.992,40.995 39.459,49.087 "/> -<polygon id="Fill-18" class="st5" points="39.412,57.06 25.945,48.969 25.945,45.795 39.412,53.886 "/> -<polygon id="Fill-19" class="st6" points="27.688,23.389 44.94,14.677 46.499,15.608 31.282,23.292 37.084,26.759 35.047,27.786 "/> -<path id="Fill-20" class="st6" d="M48.438,28.873c-0.839-0.155-1.894-0.491-3.162-1.007c-0.721-0.293-1.282-0.472-1.686-0.54 - c-0.404-0.068-0.822-0.065-1.258,0.007c-0.437,0.072-0.839,0.201-1.207,0.388c-0.566,0.285-0.89,0.61-0.974,0.974 - c-0.085,0.365,0.152,0.715,0.715,1.051c0.557,0.333,1.232,0.539,2.022,0.618c0.791,0.079,1.598,0.023,2.422-0.169 - c0.634-0.148,1.418-0.458,2.352-0.929L48.438,28.873z M43.828,31.334c-1.202,0.017-2.189-0.054-2.959-0.211s-1.44-0.406-2.007-0.745 - c-0.938-0.561-1.321-1.16-1.154-1.799c0.166-0.641,0.771-1.224,1.814-1.751c0.612-0.309,1.268-0.534,1.963-0.676 - c0.696-0.141,1.351-0.198,1.966-0.169c0.613,0.031,1.191,0.12,1.734,0.272c0.394,0.114,0.929,0.316,1.603,0.607 - c1.372,0.595,2.475,0.987,3.31,1.173c0.295-0.143,0.481-0.235,0.56-0.274c0.863-0.437,1.335-0.825,1.415-1.166 - c0.109-0.463-0.2-0.911-0.929-1.347c-0.681-0.407-1.358-0.618-2.03-0.636c-0.674-0.017-1.531,0.151-2.573,0.506l-1.132-0.987 - c1.015-0.37,1.943-0.606,2.782-0.705c0.841-0.1,1.685-0.057,2.536,0.127c0.853,0.184,1.645,0.496,2.379,0.934 - c0.728,0.436,1.194,0.852,1.398,1.251c0.205,0.4,0.224,0.759,0.058,1.079s-0.497,0.653-0.991,0.996 - c-0.314,0.211-0.941,0.555-1.882,1.031l-2.824,1.425c-1.97,0.996-3.185,1.643-3.645,1.943c-0.46,0.3-0.839,0.625-1.136,0.975 - l-1.509-0.902C42.865,31.975,43.282,31.657,43.828,31.334z"/> -<path id="Fill-22" class="st6" d="M40.991,36.645l1.827-1.101c0.192,0.253,0.404,0.45,0.641,0.59 - c0.32,0.193,0.657,0.307,1.006,0.343c0.35,0.035,0.727,0.019,1.132-0.05c0.304-0.053,0.977-0.23,2.019-0.533 - c0.146-0.043,0.36-0.104,0.647-0.185l9.284-8.257l1.558,0.931l-5.462,4.716c-0.687,0.601-1.446,1.212-2.276,1.832 - c1.14-0.391,2.286-0.753,3.443-1.083l9.108-2.59l1.446,0.866l-15.956,4.478c-1.721,0.485-2.936,0.801-3.647,0.947 - c-0.956,0.2-1.762,0.282-2.419,0.247c-0.659-0.034-1.217-0.188-1.678-0.463C41.387,37.166,41.161,36.937,40.991,36.645"/> -<path id="Fill-24" class="st6" d="M62.637,36.06l4.766,2.847c0.986-0.57,1.593-1.076,1.819-1.522 - c0.354-0.686,0.166-1.249-0.568-1.687c-0.664-0.398-1.548-0.567-2.653-0.509C64.898,35.248,63.777,35.539,62.637,36.06 - M63.961,40.626l1.225,1.031c-1.515,0.505-2.944,0.745-4.287,0.72c-1.344-0.024-2.512-0.333-3.502-0.924 - c-1.248-0.746-1.674-1.622-1.28-2.626c0.394-1.006,1.608-2.022,3.64-3.048c2.103-1.062,4.105-1.665,6.004-1.81 - c1.9-0.144,3.44,0.135,4.618,0.84c1.141,0.681,1.504,1.525,1.09,2.531c-0.415,1.007-1.653,2.032-3.717,3.074 - c-0.125,0.063-0.317,0.156-0.573,0.28l-6.363-3.803c-1.32,0.726-2.105,1.416-2.359,2.068c-0.253,0.654-0.022,1.193,0.69,1.619 - c0.53,0.317,1.185,0.484,1.969,0.503C61.9,41.098,62.848,40.947,63.961,40.626"/> -<path id="Fill-26" class="st6" d="M63.231,44.628l12.498-6.312l1.301,0.778l-1.895,0.957c1.219-0.249,2.11-0.361,2.674-0.335 - c0.564,0.025,1.014,0.139,1.352,0.34c0.488,0.291,0.756,0.702,0.804,1.232l-2.464,0.695c-0.047-0.365-0.248-0.654-0.602-0.866 - c-0.315-0.188-0.738-0.287-1.27-0.298c-0.529-0.009-1.095,0.08-1.697,0.264c-0.913,0.285-1.816,0.653-2.711,1.105l-6.543,3.304 - L63.231,44.628z"/> -<path id="Fill-28" class="st6" d="M77.458,48.107l1.728,0.722c-1.035,0.705-1.617,1.31-1.748,1.816 - c-0.129,0.506,0.092,0.931,0.666,1.273c0.679,0.406,1.599,0.576,2.758,0.507s2.248-0.361,3.268-0.876 - c0.973-0.491,1.559-1.025,1.757-1.604c0.197-0.577-0.039-1.067-0.707-1.467c-0.274-0.163-0.694-0.327-1.256-0.491l2.019-0.843 - c0.08,0.066,0.151,0.116,0.209,0.151c0.616,0.369,1.407,0.581,2.369,0.637c0.963,0.057,1.937-0.162,2.917-0.657 - c0.777-0.393,1.241-0.825,1.392-1.297c0.15-0.472-0.059-0.877-0.625-1.217c-0.562-0.336-1.291-0.485-2.184-0.448 - c-0.892,0.038-1.91,0.286-3.052,0.745l-1.07-1.054c1.597-0.611,3.099-0.927,4.506-0.947c1.407-0.019,2.577,0.249,3.509,0.805 - c0.643,0.385,1.032,0.841,1.169,1.367c0.138,0.528,0,1.054-0.412,1.577c-0.411,0.525-1.009,0.985-1.793,1.38 - c-0.745,0.377-1.562,0.638-2.446,0.783c-0.886,0.147-1.777,0.151-2.672,0.013c0.459,0.534,0.513,1.104,0.157,1.71 - c-0.355,0.604-1.091,1.188-2.205,1.751c-1.506,0.761-3.158,1.181-4.955,1.262s-3.269-0.221-4.416-0.907 - c-1.033-0.617-1.441-1.358-1.221-2.221C75.34,49.713,76.118,48.89,77.458,48.107"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 123.668 84.623"><g fill="none" stroke="#626366" stroke-width="3" stroke-linejoin="round"><path d="M79.88 71.04l42.28-22.443.008 12.085-42.28 22.442z"/><path d="M1.5 23.942L43.78 1.5l78.38 47.095L79.88 71.04z"/><path d="M79.88 71.04l.008 12.084-78.38-47.096L1.5 23.942z"/></g><path d="M79.88 71.04l42.28-22.44.008 12.084-42.28 22.442z" fill="#898b8e"/><path d="M1.5 23.943L43.78 1.5l78.38 47.096L79.88 71.04z" fill="#bbbdbf"/><path d="M79.88 71.04l.008 12.085-78.38-47.097L1.5 23.943z" fill="#b3b5b7"/><path d="M1.878 23.95l77.987 46.86v11.994" fill="none" stroke="#dfe0df" stroke-width=".75" stroke-linecap="round" stroke-linejoin="round"/><path d="M11.026 39.32L4.983 35.7v-1.742l6.043 3.63zm64.718 34.728l-13.467-8.092V62.78l13.467 8.093zm-.05 4.797l-13.463-8.1V67.58l13.463 8.1zM57.58 63.124L44.1 55.03v-3.174l13.47 8.093zm-.05 4.796l-13.467-8.093v-3.174l13.467 8.093zM39.46 52.263L25.992 44.17v-3.176l13.467 8.092zm-.048 4.797l-13.467-8.1v-3.174l13.467 8.1z" fill="#fefefe"/><path d="M27.688 23.4l17.252-8.712 1.56.93-15.217 7.684 5.802 3.467-2.037 1.027zm20.75 5.483c-.84-.155-1.894-.5-3.162-1.007-.72-.293-1.282-.472-1.686-.54s-.822-.065-1.258.007-.84.2-1.207.388c-.566.285-.9.6-.974.974s.152.715.715 1.05c.557.333 1.232.54 2.022.618a7.38 7.38 0 0 0 2.422-.169c.634-.148 1.418-.458 2.352-.93l.776-.393zm-4.6 2.46c-1.202.017-2.2-.054-2.96-.2s-1.44-.406-2.007-.745c-.938-.56-1.32-1.16-1.154-1.8s.77-1.224 1.814-1.75c.612-.3 1.268-.534 1.963-.676a8.01 8.01 0 0 1 1.966-.169c.613.03 1.2.12 1.734.272.394.114.93.316 1.603.607 1.372.595 2.475.987 3.3 1.173l.56-.274c.863-.437 1.335-.825 1.415-1.166.1-.463-.2-.9-.93-1.347-.68-.407-1.358-.618-2.03-.636s-1.53.15-2.573.506l-1.132-.987c1.015-.37 1.943-.606 2.782-.705s1.685-.057 2.536.127a7.83 7.83 0 0 1 2.379.934c.728.436 1.194.852 1.398 1.25s.224.76.058 1.08-.497.653-1 .996c-.314.2-.94.555-1.882 1.03l-2.824 1.425-3.645 1.943a5.2 5.2 0 0 0-1.136.975l-1.5-.902a6.25 6.25 0 0 1 1.253-.95zM41 36.645l1.827-1.1c.192.253.404.45.64.6.32.193.657.307 1.006.343a4.23 4.23 0 0 0 1.132-.05c.304-.053.977-.23 2.02-.533l.647-.185 9.284-8.257 1.558.93-5.462 4.716-2.276 1.832 3.443-1.083 9.108-2.6 1.446.866-15.956 4.478-3.647.947c-.956.2-1.762.282-2.42.247s-1.217-.188-1.678-.463c-.277-.167-.503-.396-.673-.688m21.648-.585l4.766 2.847c.986-.57 1.593-1.076 1.82-1.522.354-.686.166-1.25-.568-1.687C68 35.3 67.106 35.13 66 35.2s-2.224.35-3.364.87m1.324 4.566l1.225 1.03c-1.515.505-2.944.745-4.287.72s-2.512-.333-3.502-.924c-1.248-.746-1.674-1.622-1.28-2.626s1.608-2.022 3.64-3.048c2.103-1.062 4.105-1.665 6.004-1.8s3.44.135 4.618.84c1.14.68 1.504 1.525 1.1 2.53s-1.653 2.032-3.717 3.074l-.573.28-6.363-3.803c-1.32.726-2.105 1.416-2.36 2.068s-.022 1.193.7 1.62c.53.317 1.185.484 1.97.503s1.732-.134 2.845-.455m-.75 3.993l12.498-6.312 1.3.778-1.895.957c1.22-.25 2.1-.36 2.674-.335s1.014.14 1.352.34c.488.3.756.702.804 1.232l-2.464.695c-.047-.365-.248-.654-.602-.866-.315-.188-.738-.287-1.27-.298s-1.095.08-1.697.264c-.913.285-1.816.653-2.7 1.105l-6.543 3.304-1.447-.864zm14.228 3.48l1.728.722c-1.035.705-1.617 1.3-1.748 1.816s.092.93.666 1.273c.68.406 1.6.576 2.758.507a8.26 8.26 0 0 0 3.268-.876c.973-.5 1.56-1.025 1.757-1.604s-.04-1.067-.707-1.467c-.274-.163-.694-.327-1.256-.5l2.02-.843c.08.066.15.116.2.15.616.37 1.407.58 2.37.637s1.937-.162 2.917-.657c.777-.393 1.24-.825 1.392-1.297s-.06-.877-.625-1.217-1.3-.485-2.184-.448-1.9.286-3.052.745l-1.07-1.054c1.597-.6 3.1-.927 4.506-.947s2.577.25 3.5.805c.643.385 1.032.84 1.17 1.367s0 1.054-.412 1.577-1 .985-1.793 1.38c-.745.377-1.562.638-2.446.783a8.49 8.49 0 0 1-2.672.013 1.35 1.35 0 0 1 .157 1.71c-.355.604-1.1 1.188-2.205 1.75-1.506.76-3.158 1.18-4.955 1.262s-3.27-.22-4.416-.907c-1.033-.617-1.44-1.358-1.22-2.22s.998-1.687 2.338-2.47" fill="#010202"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/switch/Switch_24_port_L3_Alternative.svg b/src/main/webapp/img/lib/allied_telesis/switch/Switch_24_port_L3_Alternative.svg index ebfd8bf828877e986fbc54a46117e73a7a3e93db..fa4d86983a150261bb4d3e0576f80297ae7bb02f 100644 --- a/src/main/webapp/img/lib/allied_telesis/switch/Switch_24_port_L3_Alternative.svg +++ b/src/main/webapp/img/lib/allied_telesis/switch/Switch_24_port_L3_Alternative.svg @@ -1,68 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 130.229 87.987" style="enable-background:new 0 0 130.229 87.987;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#626366;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;} - .st1{fill:#898B8E;} - .st2{fill:#BBBDBF;} - .st3{fill:#B3B5B7;} - .st4{fill:none;stroke:#DFE0DF;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;} - .st5{fill:#FEFEFE;} - .st6{fill:#010202;} -</style> -<title>icon-switch-x510-24-L3</title> -<desc>Created with Sketch.</desc> -<polygon id="Stroke-1" class="st0" points="1.5,27.425 50.34,1.5 128.721,48.597 79.881,74.523 "/> -<polygon id="Stroke-3" class="st0" points="79.881,74.522 79.889,86.487 1.508,39.39 1.5,27.424 "/> -<polygon id="Stroke-5" class="st0" points="79.881,74.522 128.721,48.596 128.729,60.561 79.889,86.487 "/> -<polygon id="Fill-8" class="st1" points="79.881,74.525 128.721,48.597 128.729,60.564 79.889,86.49 "/> -<polygon id="Fill-9" class="st2" points="1.5,27.426 50.34,1.502 128.721,48.597 79.881,74.525 "/> -<polygon id="Fill-10" class="st3" points="79.881,74.525 79.889,86.49 1.508,39.393 1.5,27.426 "/> -<polyline id="Stroke-11" class="st4" points="1.894,27.33 79.881,74.19 79.881,86.183 "/> -<polygon id="Fill-12" class="st5" points="52.919,63.634 37.596,54.427 37.596,51.253 52.919,60.46 "/> -<polygon id="Fill-13" class="st5" points="52.862,68.427 37.543,59.224 37.543,56.048 52.862,65.253 "/> -<polygon id="Fill-14" class="st5" points="70.157,73.993 54.833,64.784 54.833,61.61 70.157,70.819 "/> -<polygon id="Fill-15" class="st5" points="70.101,78.786 54.781,69.581 54.781,66.405 70.101,75.612 "/> -<polygon id="Fill-16" class="st5" points="74.388,76.753 72.376,75.544 72.376,72.913 74.388,74.124 "/> -<polygon id="Fill-17" class="st5" points="74.38,80.747 72.366,79.536 72.366,76.909 74.38,78.118 "/> -<polygon id="Fill-18" class="st5" points="77.446,82.62 75.432,81.411 75.432,78.782 77.446,79.991 "/> -<polygon id="Fill-19" class="st6" points="34.281,24.897 51.533,16.185 53.092,17.116 37.875,24.8 43.677,28.267 41.64,29.294 "/> -<path id="Fill-20" class="st6" d="M55.031,30.38c-0.839-0.155-1.894-0.491-3.162-1.007c-0.721-0.293-1.282-0.472-1.686-0.54 - c-0.404-0.068-0.822-0.065-1.258,0.007c-0.437,0.072-0.839,0.201-1.207,0.388c-0.566,0.285-0.89,0.61-0.974,0.974 - c-0.085,0.365,0.152,0.715,0.715,1.051c0.557,0.333,1.232,0.539,2.022,0.618c0.791,0.079,1.598,0.023,2.422-0.169 - c0.634-0.148,1.418-0.458,2.352-0.929L55.031,30.38z M50.421,32.841c-1.202,0.017-2.189-0.054-2.959-0.211 - c-0.77-0.157-1.44-0.406-2.007-0.745c-0.938-0.561-1.321-1.16-1.154-1.799c0.166-0.641,0.771-1.224,1.814-1.751 - c0.612-0.309,1.268-0.534,1.963-0.676c0.696-0.141,1.351-0.198,1.966-0.169c0.613,0.031,1.191,0.12,1.734,0.272 - c0.394,0.114,0.929,0.316,1.603,0.607c1.372,0.595,2.475,0.987,3.31,1.173c0.295-0.143,0.481-0.235,0.56-0.274 - c0.863-0.437,1.335-0.825,1.415-1.166c0.109-0.463-0.2-0.911-0.929-1.347c-0.681-0.407-1.358-0.618-2.03-0.636 - c-0.674-0.017-1.531,0.151-2.573,0.506l-1.132-0.987c1.015-0.37,1.943-0.606,2.782-0.705c0.841-0.1,1.685-0.057,2.536,0.127 - c0.853,0.184,1.645,0.496,2.379,0.934c0.728,0.436,1.194,0.852,1.398,1.251c0.205,0.4,0.224,0.759,0.058,1.079 - c-0.166,0.32-0.497,0.653-0.991,0.996c-0.314,0.211-0.941,0.555-1.882,1.031l-2.824,1.425c-1.97,0.996-3.185,1.643-3.645,1.943 - c-0.46,0.3-0.839,0.625-1.136,0.975l-1.509-0.902C49.458,33.482,49.875,33.164,50.421,32.841z"/> -<path id="Fill-22" class="st6" d="M47.585,38.152l1.827-1.101c0.192,0.253,0.404,0.45,0.641,0.59 - c0.32,0.193,0.657,0.307,1.006,0.343c0.35,0.035,0.727,0.019,1.132-0.05c0.304-0.053,0.977-0.23,2.019-0.533 - c0.146-0.043,0.36-0.104,0.647-0.185l9.284-8.257l1.558,0.931l-5.462,4.716c-0.687,0.601-1.446,1.212-2.276,1.832 - c1.14-0.391,2.286-0.753,3.443-1.083l9.108-2.59l1.446,0.866l-15.956,4.478c-1.721,0.485-2.936,0.801-3.647,0.947 - c-0.956,0.2-1.762,0.282-2.419,0.247c-0.659-0.034-1.217-0.188-1.678-0.463C47.981,38.673,47.755,38.444,47.585,38.152"/> -<path id="Fill-24" class="st6" d="M69.231,37.567l4.766,2.847c0.986-0.57,1.593-1.076,1.819-1.522 - c0.354-0.686,0.166-1.249-0.568-1.687c-0.664-0.398-1.548-0.567-2.653-0.509C71.492,36.755,70.371,37.046,69.231,37.567 - M70.555,42.133l1.225,1.031c-1.515,0.505-2.944,0.745-4.287,0.72c-1.344-0.024-2.512-0.333-3.502-0.924 - c-1.248-0.746-1.674-1.622-1.28-2.626c0.394-1.006,1.608-2.022,3.64-3.048c2.103-1.062,4.105-1.665,6.004-1.81 - c1.9-0.144,3.44,0.135,4.618,0.84c1.141,0.681,1.504,1.525,1.09,2.531c-0.415,1.007-1.653,2.032-3.717,3.074 - c-0.125,0.063-0.317,0.156-0.573,0.28l-6.363-3.803c-1.32,0.726-2.105,1.416-2.359,2.068c-0.253,0.654-0.022,1.193,0.69,1.619 - c0.53,0.317,1.185,0.484,1.969,0.503C68.494,42.605,69.442,42.454,70.555,42.133"/> -<path id="Fill-26" class="st6" d="M69.824,46.135l12.498-6.312l1.301,0.778l-1.895,0.957c1.219-0.249,2.11-0.361,2.674-0.335 - c0.564,0.025,1.014,0.139,1.352,0.34c0.488,0.291,0.756,0.702,0.804,1.232l-2.464,0.695c-0.047-0.365-0.248-0.654-0.602-0.866 - c-0.315-0.188-0.738-0.287-1.27-0.298c-0.529-0.009-1.095,0.08-1.697,0.264c-0.913,0.285-1.816,0.653-2.711,1.105l-6.543,3.304 - L69.824,46.135z"/> -<path id="Fill-28" class="st6" d="M84.052,49.614l1.728,0.722c-1.035,0.705-1.617,1.31-1.748,1.816 - c-0.129,0.506,0.092,0.931,0.666,1.273c0.679,0.406,1.599,0.576,2.758,0.507c1.159-0.069,2.248-0.361,3.268-0.876 - c0.973-0.491,1.559-1.025,1.757-1.604c0.197-0.577-0.039-1.067-0.707-1.467c-0.274-0.163-0.694-0.327-1.256-0.491l2.019-0.843 - c0.08,0.066,0.151,0.116,0.209,0.151c0.616,0.369,1.407,0.581,2.369,0.637c0.963,0.057,1.937-0.162,2.917-0.657 - c0.777-0.393,1.241-0.825,1.392-1.297c0.15-0.472-0.059-0.877-0.625-1.217c-0.562-0.336-1.291-0.485-2.184-0.448 - c-0.892,0.038-1.91,0.286-3.052,0.745l-1.07-1.054c1.597-0.611,3.099-0.927,4.506-0.947c1.407-0.019,2.577,0.249,3.509,0.805 - c0.643,0.385,1.032,0.841,1.169,1.367c0.138,0.528,0,1.054-0.412,1.577c-0.411,0.525-1.009,0.985-1.793,1.38 - c-0.745,0.377-1.562,0.638-2.446,0.783c-0.886,0.147-1.777,0.151-2.672,0.013c0.459,0.534,0.513,1.104,0.157,1.71 - c-0.355,0.604-1.091,1.188-2.205,1.751c-1.506,0.761-3.158,1.181-4.955,1.262c-1.797,0.081-3.269-0.221-4.416-0.907 - c-1.033-0.617-1.441-1.358-1.221-2.221C81.934,51.22,82.712,50.397,84.052,49.614"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 130.229 87.987"><g fill="none" stroke="#626366" stroke-width="3" stroke-linejoin="round"><path d="M1.5 27.425L50.34 1.5l78.38 47.097-48.84 25.926z"/><path d="M79.88 74.522l.008 11.965L1.508 39.4 1.5 27.424z"/><path d="M79.88 74.522l48.84-25.926.008 11.965-48.84 25.926z"/></g><path d="M79.88 74.525l48.84-25.928.008 11.967L79.89 86.5z" fill="#898b8e"/><path d="M1.5 27.426L50.34 1.502l78.38 47.095-48.84 25.928z" fill="#bbbdbf"/><path d="M79.88 74.525L79.89 86.5 1.508 39.393 1.5 27.426z" fill="#b3b5b7"/><path d="M1.894 27.33L79.88 74.2v11.993" fill="none" stroke="#dfe0df" stroke-width=".75" stroke-linecap="round" stroke-linejoin="round"/><path d="M52.92 63.634l-15.323-9.207v-3.174L52.92 60.46zm-.058 4.793l-15.32-9.203v-3.176l15.32 9.205zm17.295 5.566l-15.324-9.2V61.6l15.324 9.2zm-.057 4.793L54.78 69.58v-3.176L70.1 75.61zm4.288-2.033l-2.012-1.2v-2.63l2.012 1.2zm-.008 3.994l-2.014-1.2V76.9l2.014 1.2zm3.066 1.873l-2.014-1.2v-2.63l2.014 1.2z" fill="#fefefe"/><path d="M34.28 24.897l17.252-8.712 1.56.93L37.875 24.8l5.802 3.467-2.037 1.027zm20.75 5.483c-.84-.155-1.894-.5-3.162-1.007-.72-.293-1.282-.472-1.686-.54s-.822-.065-1.258.007-.84.2-1.207.388c-.566.285-.9.6-.974.974s.152.715.715 1.05c.557.333 1.232.54 2.022.618a7.38 7.38 0 0 0 2.422-.169c.634-.148 1.418-.458 2.352-.93l.776-.393zm-4.6 2.46c-1.202.017-2.2-.054-2.96-.2s-1.44-.406-2.007-.745c-.938-.56-1.32-1.16-1.154-1.8s.77-1.224 1.814-1.75c.612-.3 1.268-.534 1.963-.676a8.01 8.01 0 0 1 1.966-.169c.613.03 1.2.12 1.734.272.394.114.93.316 1.603.607 1.372.595 2.475.987 3.3 1.173l.56-.274c.863-.437 1.335-.825 1.415-1.166.1-.463-.2-.9-.93-1.347-.68-.407-1.358-.618-2.03-.636s-1.53.15-2.573.506L52 25.638c1.015-.37 1.943-.606 2.782-.705s1.685-.057 2.536.127a7.83 7.83 0 0 1 2.379.934c.728.436 1.194.852 1.398 1.25s.224.76.058 1.08-.497.653-1 .996c-.314.2-.94.555-1.882 1.03l-2.824 1.425-3.645 1.943a5.2 5.2 0 0 0-1.136.975l-1.5-.902a6.25 6.25 0 0 1 1.253-.95zm-2.845 5.312l1.827-1.1c.192.253.404.45.64.6.32.193.657.307 1.006.343a4.23 4.23 0 0 0 1.132-.05c.304-.053.977-.23 2.02-.533l.647-.185 9.284-8.257 1.558.93-5.462 4.716-2.276 1.832 3.443-1.083 9.108-2.6 1.446.866-15.956 4.478-3.647.947c-.956.2-1.762.282-2.42.247s-1.217-.188-1.678-.463c-.277-.167-.503-.396-.673-.688m21.646-.585l4.766 2.847c.986-.57 1.593-1.076 1.82-1.522.354-.686.166-1.25-.568-1.687-.664-.398-1.548-.567-2.653-.5s-2.224.35-3.364.87m1.324 4.566l1.225 1.03c-1.515.505-2.944.745-4.287.72s-2.512-.333-3.502-.924c-1.248-.746-1.674-1.622-1.28-2.626s1.608-2.022 3.64-3.048c2.103-1.062 4.105-1.665 6.004-1.8s3.44.135 4.618.84c1.14.68 1.504 1.525 1.1 2.53S76.4 40.88 74.346 41.92l-.573.28-6.363-3.803c-1.32.726-2.105 1.416-2.36 2.068s-.022 1.193.7 1.62c.53.317 1.185.484 1.97.503s1.732-.134 2.845-.455m-.74 4.002l12.498-6.312 1.3.778-1.895.957c1.22-.25 2.1-.36 2.674-.335s1.014.14 1.352.34c.488.3.756.702.804 1.232l-2.464.695c-.047-.365-.248-.654-.602-.866-.315-.188-.738-.287-1.27-.298s-1.095.08-1.697.264c-.913.285-1.816.653-2.7 1.105L71.27 47l-1.447-.864zm14.228 3.48l1.728.722c-1.035.705-1.617 1.3-1.748 1.816s.092.93.666 1.273c.68.406 1.6.576 2.758.507a8.26 8.26 0 0 0 3.268-.876c.973-.5 1.56-1.025 1.757-1.604s-.04-1.067-.707-1.467c-.274-.163-.694-.327-1.256-.5l2.02-.843c.08.066.15.116.2.15.616.37 1.407.58 2.37.637s1.937-.162 2.917-.657c.777-.393 1.24-.825 1.392-1.297s-.06-.877-.625-1.217-1.3-.485-2.184-.448-1.9.286-3.052.745l-1.07-1.054c1.597-.6 3.1-.927 4.506-.947s2.577.25 3.5.805c.643.385 1.032.84 1.17 1.367s0 1.054-.412 1.577-1 .985-1.793 1.38c-.745.377-1.562.638-2.446.783a8.49 8.49 0 0 1-2.672.013 1.35 1.35 0 0 1 .157 1.71c-.355.604-1.1 1.188-2.205 1.75-1.506.76-3.158 1.18-4.955 1.262s-3.27-.22-4.416-.907c-1.033-.617-1.44-1.358-1.22-2.22s.998-1.687 2.338-2.47" fill="#010202"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/switch/Switch_24_port_L3_POE.svg b/src/main/webapp/img/lib/allied_telesis/switch/Switch_24_port_L3_POE.svg index a7d99feb037ee81a1fdc05fef1c0384374ff36f4..3e28c4d62f6096f4908712e39f5588c28e5ee4d5 100644 --- a/src/main/webapp/img/lib/allied_telesis/switch/Switch_24_port_L3_POE.svg +++ b/src/main/webapp/img/lib/allied_telesis/switch/Switch_24_port_L3_POE.svg @@ -1,57 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 123.668 84.623" style="enable-background:new 0 0 123.668 84.623;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#626366;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;} - .st1{fill:#898B8E;} - .st2{fill:#231F20;} - .st3{fill:#B3B5B7;} - .st4{fill:none;stroke:#DFE0DF;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;} - .st5{fill:#FEFEFE;} -</style> -<title>icon-switch-24port-poeL3</title> -<desc>Created with Sketch.</desc> -<polygon id="Stroke-1" class="st0" points="79.881,71.039 122.16,48.596 122.168,60.682 79.889,83.123 "/> -<polygon id="Stroke-3" class="st0" points="1.5,23.943 43.779,1.5 122.16,48.595 79.881,71.039 "/> -<polygon id="Stroke-5" class="st0" points="79.881,71.039 79.889,83.123 1.508,36.027 1.5,23.943 "/> -<polygon id="Fill-8" class="st1" points="79.881,71.039 122.16,48.598 122.168,60.682 79.889,83.125 "/> -<polygon id="Fill-9" class="st2" points="1.5,23.943 43.779,1.502 122.16,48.597 79.881,71.039 "/> -<polygon id="Fill-10" class="st3" points="79.881,71.039 79.889,83.125 1.508,36.027 1.5,23.943 "/> -<polyline id="Stroke-11" class="st4" points="1.879,23.949 79.865,70.808 79.865,82.803 "/> -<polygon id="Fill-12" class="st5" points="11.026,39.32 4.983,35.689 4.983,33.947 11.026,37.578 "/> -<polygon id="Fill-13" class="st5" points="75.744,74.048 62.277,65.956 62.277,62.782 75.744,70.874 "/> -<polygon id="Fill-14" class="st5" points="75.693,78.845 62.23,70.755 62.23,67.579 75.693,75.669 "/> -<polygon id="Fill-15" class="st5" points="57.58,63.125 44.111,55.031 44.111,51.857 57.58,59.951 "/> -<polygon id="Fill-16" class="st5" points="57.531,67.921 44.064,59.83 44.064,56.655 57.531,64.747 "/> -<polygon id="Fill-17" class="st5" points="39.459,52.263 25.992,44.171 25.992,40.995 39.459,49.087 "/> -<polygon id="Fill-18" class="st5" points="39.412,57.06 25.945,48.97 25.945,45.796 39.412,53.886 "/> -<polygon id="Fill-19" class="st5" points="19.195,26.61 37.058,26.757 31.649,18.654 43.785,19.7 40.031,14.084 61.542,15.936 - 46.272,18.125 50.984,25.182 40.813,24.304 46.191,32.356 20.243,26.797 "/> -<polygon id="Fill-20" class="st5" points="38.957,38.552 50.561,32.692 51.607,33.319 41.374,38.487 45.276,40.819 43.907,41.51 "/> -<path id="Fill-21" class="st5" d="M51.335,40.695l2.686,1.605l2.387-2.116c0.724-0.644,1.337-1.161,1.844-1.552 - c-0.846,0.315-1.727,0.604-2.644,0.864L51.335,40.695z M44.285,41.736l14.645-4.042l1.129,0.674l-8.36,7.798l-1.194-0.714 - l2.59-2.327l-3.314-1.979l-4.383,1.255L44.285,41.736z"/> -<path id="Fill-23" class="st5" d="M53.946,47.509l4.915-2.482l3.635-5.202l1.275,0.762l-1.936,2.699 - c-0.367,0.503-0.752,0.994-1.159,1.473c0.845-0.165,1.817-0.337,2.916-0.519l4.945-0.806l1.221,0.73l-9.848,1.489l-4.915,2.482 - L53.946,47.509z"/> -<polygon id="Fill-25" class="st5" points="59.117,50.599 70.721,44.739 76.449,48.162 75.08,48.853 70.4,46.057 66.846,47.852 - 71.228,50.471 69.867,51.159 65.484,48.54 61.535,50.535 66.398,53.44 65.029,54.132 "/> -<path id="Fill-27" class="st5" d="M74.024,52.359l2.254,1.347c0.479,0.286,0.927,0.473,1.342,0.561 - c0.414,0.088,0.852,0.094,1.312,0.016c0.459-0.076,0.876-0.21,1.25-0.399c0.549-0.277,0.865-0.587,0.947-0.927 - c0.081-0.342-0.17-0.687-0.758-1.039l-2.508-1.498L74.024,52.359z M66.494,55.006l11.602-5.859l3.514,2.098 - c0.705,0.422,1.138,0.795,1.297,1.121c0.159,0.324,0.085,0.685-0.223,1.083s-0.781,0.759-1.42,1.081 - c-0.822,0.415-1.698,0.658-2.627,0.725c-0.928,0.067-1.85-0.087-2.762-0.464c0.082,0.264,0.1,0.487,0.054,0.67 - c-0.106,0.39-0.33,0.824-0.675,1.299l-1.779,2.418l-1.318-0.788l1.365-1.845c0.391-0.535,0.672-0.955,0.843-1.26 - c0.171-0.304,0.252-0.542,0.243-0.71c-0.01-0.168-0.065-0.315-0.17-0.441c-0.081-0.09-0.258-0.215-0.527-0.377l-1.217-0.727 - l-5.152,2.602L66.494,55.006z"/> -<path id="Fill-29" class="st5" d="M80.218,59.83l1.164,0.486c-0.696,0.473-1.088,0.881-1.176,1.222 - c-0.088,0.34,0.062,0.625,0.447,0.855c0.457,0.273,1.075,0.387,1.855,0.341c0.779-0.046,1.512-0.242,2.198-0.589 - c0.654-0.33,1.048-0.69,1.181-1.079s-0.025-0.717-0.477-0.987c-0.183-0.11-0.464-0.22-0.843-0.33l1.359-0.567 - c0.054,0.044,0.101,0.078,0.141,0.102c0.414,0.248,0.944,0.39,1.592,0.429c0.648,0.037,1.302-0.11,1.962-0.443 - c0.523-0.264,0.834-0.555,0.936-0.872c0.101-0.318-0.038-0.59-0.42-0.818c-0.378-0.226-0.867-0.327-1.468-0.301 - c-0.6,0.025-1.285,0.192-2.054,0.501l-0.72-0.71c1.074-0.411,2.086-0.623,3.032-0.636c0.945-0.014,1.732,0.167,2.359,0.541 - c0.433,0.259,0.696,0.565,0.787,0.92c0.093,0.354,0,0.708-0.277,1.06c-0.277,0.352-0.679,0.662-1.207,0.928 - c-0.501,0.253-1.05,0.429-1.644,0.527c-0.595,0.099-1.195,0.101-1.798,0.008c0.31,0.36,0.345,0.744,0.106,1.15 - c-0.239,0.407-0.733,0.8-1.482,1.179c-1.013,0.511-2.125,0.793-3.333,0.848c-1.209,0.054-2.199-0.149-2.97-0.61 - c-0.695-0.415-0.97-0.913-0.822-1.494C78.793,60.91,79.319,60.357,80.218,59.83"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 123.668 84.623"><g fill="none" stroke="#626366" stroke-width="3" stroke-linejoin="round"><path d="M79.88 71.04l42.28-22.443.008 12.086-42.28 22.44z"/><path d="M1.5 23.943L43.78 1.5l78.38 47.095L79.88 71.04z"/><path d="M79.88 71.04l.008 12.084-78.38-47.096L1.5 23.943z"/></g><path d="M79.88 71.04l42.28-22.44.008 12.084-42.28 22.443z" fill="#898b8e"/><path d="M1.5 23.943l42.28-22.44 78.38 47.095L79.88 71.04z" fill="#231f20"/><path d="M79.88 71.04l.008 12.086-78.38-47.098L1.5 23.943z" fill="#b3b5b7"/><path d="M1.88 23.95l77.986 46.86v11.995" fill="none" stroke="#dfe0df" stroke-width=".75" stroke-linecap="round" stroke-linejoin="round"/><path d="M11.026 39.32L4.983 35.7v-1.742l6.043 3.63zm64.718 34.728l-13.467-8.092v-3.174l13.467 8.092zm-.05 4.797l-13.463-8.1V67.58l13.463 8.1zM57.58 63.125L44.1 55.03v-3.174l13.47 8.094zm-.05 4.795l-13.467-8.1v-3.175l13.467 8.092zM39.46 52.263L25.992 44.17v-3.176l13.467 8.092zm-.048 4.797l-13.467-8.1v-3.174l13.467 8.1zM19.195 26.6l17.863.147-5.4-8.103L43.785 19.7l-3.754-5.616 21.5 1.852-15.27 2.2 4.712 7.057-10.17-.878 5.378 8.052-25.948-5.56zm19.762 11.952l11.604-5.86 1.046.627-10.233 5.168 3.902 2.332-1.37.7zm12.378 2.143L54.02 42.3l2.387-2.116 1.844-1.552-2.644.864-4.273 1.2zm-7.05 1.04l14.645-4.042 1.13.674-8.36 7.798-1.194-.714 2.6-2.327-3.314-1.98L45.41 42.4l-1.113-.665zm9.66 5.775l4.915-2.482 3.635-5.202 1.275.762-1.936 2.7-1.16 1.473 2.916-.52 4.945-.806 1.22.73-9.848 1.5-4.915 2.482-1.05-.626zm5.17 3.1l11.604-5.86 5.728 3.423-1.37.7-4.68-2.796-3.554 1.795 4.382 2.62-1.36.688-4.383-2.62-3.95 1.995 4.863 2.905-1.37.692zm14.907 1.76l2.254 1.347c.48.286.927.473 1.342.56s.852.094 1.312.016a4.32 4.32 0 0 0 1.25-.399c.55-.277.865-.587.947-.927s-.17-.687-.758-1.04l-2.508-1.498-3.84 1.94zm-7.53 2.647l11.602-5.86 3.514 2.098c.705.422 1.138.795 1.297 1.12s.085.685-.223 1.083-.78.76-1.42 1.08a6.87 6.87 0 0 1-2.627.725c-.928.067-1.85-.087-2.762-.464.082.264.1.487.054.67-.106.4-.33.824-.675 1.3l-1.78 2.418-1.318-.788 1.365-1.845.843-1.26c.17-.304.252-.542.243-.7a.75.75 0 0 0-.17-.44c-.08-.1-.258-.215-.527-.377l-1.217-.727-5.152 2.602-1.048-.626zm13.724 4.823l1.164.486c-.696.473-1.088.88-1.176 1.222s.062.625.447.855c.457.273 1.075.387 1.855.34a5.54 5.54 0 0 0 2.198-.589c.654-.33 1.048-.7 1.18-1.08s-.025-.717-.477-.987c-.183-.1-.464-.22-.843-.33l1.36-.567a1.25 1.25 0 0 0 .141.102c.414.248.944.4 1.592.43s1.302-.1 1.962-.443c.523-.264.834-.555.936-.872s-.038-.6-.42-.818-.867-.327-1.468-.3-1.285.192-2.054.5l-.72-.7c1.074-.4 2.086-.623 3.032-.636s1.732.167 2.36.54c.433.26.696.565.787.92s0 .708-.277 1.06-.68.662-1.207.928c-.5.253-1.05.43-1.644.527s-1.195.1-1.798.008a.92.92 0 0 1 .106 1.15c-.24.406-.733.8-1.482 1.18-1.013.5-2.125.793-3.333.848s-2.2-.15-2.97-.6c-.695-.415-.97-.913-.822-1.494s.673-1.134 1.572-1.66" fill="#fefefe"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/switch/Switch_48_port_L2.svg b/src/main/webapp/img/lib/allied_telesis/switch/Switch_48_port_L2.svg index 9c970fa4c6c5eef34103c97f09329fda20c6352c..4bd90073cf680087f76eafd324596fd6bcf29322 100644 --- a/src/main/webapp/img/lib/allied_telesis/switch/Switch_48_port_L2.svg +++ b/src/main/webapp/img/lib/allied_telesis/switch/Switch_48_port_L2.svg @@ -1,65 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 130.229 87.986" style="enable-background:new 0 0 130.229 87.986;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#626366;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;} - .st1{fill:#898B8E;} - .st2{fill:#BBBDBF;} - .st3{fill:#B3B5B7;} - .st4{fill:none;stroke:#DFE0DF;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;} - .st5{fill:#FEFEFE;} - .st6{fill:#010202;} -</style> -<title>icon-switch-48port-L2</title> -<desc>Created with Sketch.</desc> -<polygon id="Stroke-1" class="st0" points="1.5,27.425 50.34,1.5 128.721,48.597 79.881,74.522 "/> -<polygon id="Stroke-3" class="st0" points="79.881,74.521 79.889,86.486 1.508,39.39 1.5,27.424 "/> -<polygon id="Stroke-5" class="st0" points="79.881,74.521 128.721,48.596 128.729,60.561 79.889,86.486 "/> -<polygon id="Fill-8" class="st1" points="79.881,74.523 128.721,48.599 128.729,60.564 79.889,86.488 "/> -<polygon id="Fill-9" class="st2" points="1.5,27.427 50.34,1.501 128.721,48.599 79.881,74.523 "/> -<polygon id="Fill-10" class="st3" points="79.881,74.523 79.889,86.488 1.508,39.392 1.5,27.427 "/> -<polyline id="Stroke-11" class="st4" points="1.893,27.329 79.881,74.189 79.881,86.183 "/> -<polygon id="Fill-12" class="st5" points="71.541,74.896 52.48,63.444 52.48,60.27 71.541,71.722 "/> -<polygon id="Fill-13" class="st5" points="71.471,79.681 52.414,68.232 52.414,65.057 71.471,76.507 "/> -<polygon id="Fill-14" class="st5" points="28.858,49.239 9.799,37.788 9.799,34.612 28.858,46.064 "/> -<polygon id="Fill-15" class="st5" points="28.787,54.024 9.732,42.575 9.732,39.4 28.787,50.849 "/> -<polygon id="Fill-16" class="st5" points="50.227,62.077 31.168,50.626 31.168,47.452 50.227,58.903 "/> -<polygon id="Fill-17" class="st5" points="50.156,66.862 31.099,55.411 31.099,52.237 50.156,63.687 "/> -<polygon id="Fill-18" class="st6" points="29.845,24.176 47.097,15.464 48.656,16.395 33.439,24.079 39.241,27.546 37.204,28.573 - "/> -<path id="Fill-19" class="st6" d="M50.595,29.659c-0.839-0.155-1.894-0.491-3.162-1.007c-0.721-0.293-1.282-0.472-1.686-0.54 - c-0.404-0.068-0.822-0.065-1.258,0.007c-0.437,0.072-0.839,0.201-1.207,0.388c-0.566,0.285-0.89,0.61-0.974,0.974 - c-0.085,0.365,0.152,0.715,0.715,1.051c0.557,0.333,1.232,0.539,2.022,0.618c0.791,0.079,1.598,0.023,2.422-0.169 - c0.634-0.148,1.418-0.458,2.352-0.929L50.595,29.659z M45.985,32.12c-1.202,0.017-2.189-0.054-2.959-0.211s-1.44-0.406-2.007-0.745 - c-0.938-0.561-1.321-1.16-1.154-1.799c0.166-0.641,0.771-1.224,1.814-1.751c0.612-0.309,1.268-0.534,1.963-0.676 - c0.696-0.141,1.351-0.198,1.966-0.169c0.613,0.031,1.191,0.12,1.734,0.272c0.394,0.114,0.929,0.316,1.603,0.607 - c1.372,0.595,2.475,0.987,3.31,1.173c0.295-0.143,0.481-0.235,0.56-0.274c0.863-0.437,1.335-0.825,1.415-1.166 - c0.109-0.463-0.2-0.911-0.929-1.347c-0.681-0.407-1.358-0.618-2.03-0.636c-0.674-0.017-1.531,0.151-2.573,0.506l-1.132-0.987 - c1.015-0.37,1.943-0.606,2.782-0.705c0.841-0.1,1.685-0.057,2.536,0.127c0.853,0.184,1.645,0.496,2.379,0.934 - c0.728,0.436,1.194,0.852,1.398,1.251c0.205,0.4,0.224,0.759,0.058,1.079c-0.166,0.32-0.497,0.653-0.991,0.996 - c-0.314,0.211-0.941,0.555-1.882,1.031l-2.824,1.425c-1.97,0.996-3.185,1.643-3.645,1.943c-0.46,0.3-0.839,0.625-1.136,0.975 - l-1.509-0.902C45.022,32.761,45.439,32.443,45.985,32.12z"/> -<path id="Fill-21" class="st6" d="M43.149,37.432l1.827-1.101c0.192,0.253,0.404,0.45,0.641,0.59 - c0.32,0.193,0.657,0.307,1.006,0.343c0.35,0.035,0.727,0.019,1.132-0.05c0.304-0.053,0.977-0.23,2.019-0.533 - c0.146-0.043,0.36-0.104,0.647-0.185l9.284-8.257l1.558,0.931l-5.462,4.716c-0.687,0.601-1.446,1.212-2.276,1.832 - c1.14-0.391,2.286-0.753,3.443-1.083l9.108-2.59l1.446,0.866l-15.956,4.478c-1.721,0.485-2.936,0.801-3.647,0.947 - c-0.956,0.2-1.762,0.282-2.419,0.247c-0.659-0.034-1.217-0.188-1.678-0.463C43.545,37.953,43.319,37.724,43.149,37.432"/> -<path id="Fill-23" class="st6" d="M64.794,36.847l4.766,2.847c0.986-0.57,1.593-1.076,1.819-1.522 - c0.354-0.686,0.166-1.249-0.568-1.687c-0.664-0.398-1.548-0.567-2.653-0.509C67.055,36.035,65.934,36.326,64.794,36.847 - M66.118,41.413l1.225,1.031c-1.515,0.505-2.944,0.745-4.287,0.72c-1.344-0.024-2.512-0.333-3.502-0.924 - c-1.248-0.746-1.674-1.622-1.28-2.626c0.394-1.006,1.608-2.022,3.64-3.048c2.103-1.062,4.105-1.665,6.004-1.81 - c1.9-0.144,3.44,0.135,4.618,0.84c1.141,0.681,1.504,1.525,1.09,2.531c-0.415,1.007-1.653,2.032-3.717,3.074 - c-0.125,0.063-0.317,0.156-0.573,0.28l-6.363-3.803c-1.32,0.726-2.105,1.416-2.359,2.068c-0.253,0.654-0.022,1.193,0.69,1.619 - c0.53,0.317,1.185,0.484,1.969,0.503C64.057,41.885,65.005,41.734,66.118,41.413"/> -<path id="Fill-25" class="st6" d="M65.388,45.414l12.498-6.312l1.301,0.778l-1.895,0.957c1.219-0.249,2.11-0.361,2.674-0.335 - c0.564,0.025,1.014,0.139,1.352,0.34c0.488,0.291,0.756,0.702,0.804,1.232l-2.464,0.695c-0.047-0.365-0.248-0.654-0.602-0.866 - c-0.315-0.188-0.738-0.287-1.27-0.298c-0.529-0.009-1.095,0.08-1.697,0.264c-0.913,0.285-1.816,0.653-2.711,1.105l-6.543,3.304 - L65.388,45.414z"/> -<path id="Fill-27" class="st6" d="M84.689,54.702l-2.035,1.028l-7.785-4.652c0.498-0.264,1.046-0.478,1.639-0.642 - c0.975-0.274,2.058-0.47,3.247-0.59c1.19-0.12,2.692-0.182,4.504-0.188c2.819-0.013,4.902-0.11,6.25-0.295 - c1.348-0.184,2.422-0.479,3.223-0.884c0.839-0.423,1.343-0.903,1.51-1.439c0.166-0.536-0.08-1.001-0.739-1.395 - c-0.697-0.416-1.559-0.594-2.589-0.535c-1.03,0.06-2.089,0.361-3.176,0.904l-1.264-1c1.727-0.76,3.347-1.157,4.863-1.189 - c1.515-0.033,2.832,0.285,3.952,0.954c1.129,0.675,1.565,1.442,1.306,2.299c-0.259,0.856-1.067,1.628-2.425,2.313 - c-0.69,0.349-1.465,0.634-2.325,0.856c-0.858,0.222-1.881,0.385-3.066,0.49s-2.94,0.172-5.266,0.2 - c-1.934,0.021-3.216,0.053-3.842,0.099c-0.628,0.045-1.212,0.116-1.758,0.215L84.689,54.702z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 130.229 87.986"><g fill="none" stroke="#626366" stroke-width="3" stroke-linejoin="round"><path d="M1.5 27.425L50.34 1.5l78.38 47.097-48.84 25.925z"/><path d="M79.88 74.52l.008 11.965L1.508 39.4 1.5 27.424z"/><path d="M79.88 74.52l48.84-25.925.008 11.965-48.84 25.925z"/></g><path d="M79.88 74.523L128.72 48.6l.008 11.965-48.84 25.924z" fill="#898b8e"/><path d="M1.5 27.427L50.34 1.5 128.72 48.6 79.88 74.523z" fill="#bbbdbf"/><path d="M79.88 74.523l.008 11.965-78.38-47.096L1.5 27.427z" fill="#b3b5b7"/><path d="M1.893 27.33L79.88 74.19v11.994" fill="none" stroke="#dfe0df" stroke-width=".75" stroke-linecap="round" stroke-linejoin="round"/><path d="M71.54 74.896L52.48 63.444V60.27l19.06 11.452zm-.07 4.784L52.413 68.23v-3.175l19.057 11.45zM28.858 49.24L9.8 37.788v-3.176l19.06 11.452zm-.07 4.784L9.732 42.575V39.4l19.055 11.45zm21.44 8.053l-19.06-11.45v-3.174l19.06 11.45zm-.07 4.785L31.1 55.4v-3.174l19.057 11.45z" fill="#fefefe"/><path d="M29.845 24.176l17.252-8.712 1.56.93L33.44 24.08l5.802 3.467-2.037 1.027zm20.75 5.484c-.84-.155-1.894-.5-3.162-1.007-.72-.293-1.282-.472-1.686-.54s-.822-.065-1.258.007-.84.2-1.207.388c-.566.285-.9.6-.974.974s.152.715.715 1.05c.557.333 1.232.54 2.022.618a7.38 7.38 0 0 0 2.422-.169c.634-.148 1.418-.458 2.352-.93l.776-.393zm-4.6 2.46c-1.202.017-2.2-.054-2.96-.2s-1.44-.406-2.007-.745c-.938-.56-1.32-1.16-1.154-1.8s.77-1.224 1.814-1.75c.612-.3 1.268-.534 1.963-.676a8.01 8.01 0 0 1 1.966-.169c.613.03 1.2.12 1.734.272.394.114.93.316 1.603.607 1.372.595 2.475.987 3.3 1.173l.56-.274c.863-.437 1.335-.825 1.415-1.166.1-.463-.2-.9-.93-1.347-.68-.407-1.358-.618-2.03-.636s-1.53.15-2.573.506l-1.132-.987c1.015-.37 1.943-.606 2.782-.705s1.685-.057 2.536.127a7.83 7.83 0 0 1 2.379.934c.728.436 1.194.852 1.398 1.25s.224.76.058 1.08-.497.653-1 .996c-.314.2-.94.555-1.882 1.03l-2.824 1.425-3.645 1.943a5.2 5.2 0 0 0-1.136.975l-1.5-.902a6.25 6.25 0 0 1 1.253-.95zm-2.845 5.312l1.827-1.1c.192.253.404.45.64.6.32.193.657.307 1.006.343a4.23 4.23 0 0 0 1.132-.05c.304-.053.977-.23 2.02-.533l.647-.185 9.284-8.257 1.558.93-5.462 4.716-2.276 1.832 3.443-1.083 9.108-2.6 1.446.866-15.956 4.478-3.647.947c-.956.2-1.762.282-2.42.247s-1.217-.188-1.678-.463c-.277-.167-.503-.396-.673-.688m21.645-.585l4.766 2.847c.986-.57 1.593-1.076 1.82-1.522.354-.686.166-1.25-.568-1.687-.664-.398-1.548-.567-2.653-.5s-2.224.35-3.364.87m1.324 4.566l1.225 1.03c-1.515.505-2.944.745-4.287.72s-2.512-.333-3.502-.924c-1.248-.746-1.674-1.622-1.28-2.626s1.608-2.022 3.64-3.048c2.103-1.062 4.105-1.665 6.004-1.8s3.44.135 4.618.84c1.14.68 1.504 1.525 1.1 2.53S71.973 40.16 69.9 41.2l-.573.28-6.363-3.803c-1.32.726-2.105 1.416-2.36 2.068s-.022 1.193.7 1.62c.53.317 1.185.484 1.97.503s1.732-.134 2.845-.455m-.74 4l12.498-6.312 1.3.778-1.895.957c1.22-.25 2.1-.36 2.674-.335s1.014.14 1.352.34c.488.3.756.702.804 1.232l-2.464.695c-.047-.365-.248-.654-.602-.866-.315-.188-.738-.287-1.27-.298s-1.095.08-1.697.264c-.913.285-1.816.653-2.7 1.105l-6.543 3.304-1.447-.864zM84.7 54.702l-2.035 1.028-7.785-4.652a8.09 8.09 0 0 1 1.64-.642c.975-.274 2.058-.47 3.247-.6s2.692-.182 4.504-.188l6.25-.295c1.348-.184 2.422-.48 3.223-.884.84-.423 1.343-.903 1.5-1.44s-.08-1-.74-1.395c-.697-.416-1.56-.594-2.6-.535s-2.1.36-3.176.904l-1.264-1c1.727-.76 3.347-1.157 4.863-1.2s2.832.285 3.952.954c1.13.675 1.565 1.442 1.306 2.3s-1.067 1.628-2.425 2.313a11.52 11.52 0 0 1-2.325.856c-.858.222-1.88.385-3.066.5s-2.94.172-5.266.2l-3.842.1-1.758.215 5.776 3.45z" fill="#010202"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/switch/Switch_48_port_L2_POE.svg b/src/main/webapp/img/lib/allied_telesis/switch/Switch_48_port_L2_POE.svg index 217ccfade60dc5c333bbce25d1218aaf827786ed..6cc58dc2ecddb5e5facf1e06770eee1697c727bd 100644 --- a/src/main/webapp/img/lib/allied_telesis/switch/Switch_48_port_L2_POE.svg +++ b/src/main/webapp/img/lib/allied_telesis/switch/Switch_48_port_L2_POE.svg @@ -1,61 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 130.229 87.986" style="enable-background:new 0 0 130.229 87.986;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#626366;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;} - .st1{fill:#898B8E;} - .st2{fill:#231F20;} - .st3{fill:#B3B5B7;} - .st4{fill:none;stroke:#DFE0DF;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;} - .st5{fill:#FEFEFE;} -</style> -<title>icon-switch-48port-poeL2</title> -<desc>Created with Sketch.</desc> -<g> - <polygon id="Stroke-1" class="st0" points="1.5,27.426 50.34,1.5 128.721,48.597 79.881,74.521 "/> - <polygon id="Stroke-3" class="st0" points="79.881,74.521 79.889,86.486 1.508,39.39 1.5,27.427 "/> - <polygon id="Stroke-5" class="st0" points="79.881,74.521 128.721,48.597 128.729,60.562 79.889,86.486 "/> - <polygon id="Fill-8" class="st1" points="79.881,74.523 128.721,48.597 128.729,60.564 79.889,86.488 "/> - <polygon id="Fill-9" class="st2" points="1.5,27.426 50.34,1.502 128.721,48.597 79.881,74.523 "/> - <polygon id="Fill-10" class="st3" points="79.881,74.523 79.889,86.488 1.508,39.392 1.5,27.426 "/> - <polyline id="Stroke-11" class="st4" points="1.893,27.33 79.881,74.189 79.881,86.181 "/> - <polygon id="Fill-12" class="st5" points="52.918,63.634 37.596,54.427 37.596,51.253 52.918,60.46 "/> - <polygon id="Fill-13" class="st5" points="52.861,68.427 37.543,59.224 37.543,56.049 52.861,65.254 "/> - <polygon id="Fill-14" class="st5" points="70.156,73.992 54.834,64.785 54.834,61.611 70.156,70.818 "/> - <polygon id="Fill-15" class="st5" points="70.1,78.785 54.782,69.582 54.782,66.406 70.1,75.611 "/> - <polygon id="Fill-16" class="st5" points="18.444,42.91 3.122,33.703 3.122,30.53 18.444,39.734 "/> - <polygon id="Fill-17" class="st5" points="18.387,47.701 3.069,38.498 3.069,35.322 18.387,44.527 "/> - <polygon id="Fill-18" class="st5" points="35.682,53.265 20.36,44.06 20.36,40.886 35.682,50.091 "/> - <polygon id="Fill-19" class="st5" points="35.625,58.058 20.305,48.853 20.305,45.679 35.625,54.884 "/> - <polygon id="Fill-20" class="st5" points="74.387,76.752 72.375,75.543 72.375,72.912 74.387,74.123 "/> - <polygon id="Fill-21" class="st5" points="74.379,80.746 72.365,79.537 72.365,76.908 74.379,78.117 "/> - <polygon id="Fill-22" class="st5" points="77.445,82.621 75.431,81.41 75.431,78.783 77.445,79.992 "/> - <polygon id="Fill-23" class="st5" points="20.192,26.952 38.055,27.099 32.645,18.996 44.783,20.042 41.028,14.426 62.539,16.278 - 47.269,18.467 51.981,25.524 41.809,24.646 47.188,32.698 21.239,27.139 "/> - <polygon id="Fill-24" class="st5" points="38.953,40.894 50.557,35.034 51.603,35.661 41.37,40.829 45.272,43.161 43.903,43.852 - "/> - <path id="Fill-25" class="st5" d="M51.331,43.038l2.686,1.605l2.387-2.116c0.724-0.644,1.337-1.161,1.844-1.552 - c-0.846,0.315-1.727,0.604-2.644,0.864L51.331,43.038z M44.281,44.079l14.645-4.042l1.129,0.674l-8.36,7.798l-1.194-0.714 - l2.59-2.327l-3.314-1.979l-4.383,1.255L44.281,44.079z"/> - <path id="Fill-27" class="st5" d="M53.943,49.851l4.915-2.482l3.635-5.202l1.275,0.762l-1.936,2.699 - c-0.367,0.503-0.752,0.994-1.159,1.473c0.845-0.165,1.817-0.337,2.916-0.519l4.945-0.806l1.221,0.73l-9.849,1.489l-4.915,2.482 - L53.943,49.851z"/> - <polygon id="Fill-29" class="st5" points="59.114,52.941 70.718,47.081 76.445,50.504 75.076,51.195 70.396,48.399 66.843,50.194 - 71.225,52.813 69.864,53.501 65.481,50.882 61.531,52.877 66.395,55.782 65.025,56.474 "/> - <path id="Fill-31" class="st5" d="M74.02,54.701l2.254,1.347c0.479,0.286,0.927,0.473,1.342,0.561 - c0.414,0.088,0.852,0.094,1.312,0.016c0.459-0.076,0.876-0.21,1.25-0.399c0.549-0.277,0.865-0.587,0.947-0.927 - c0.081-0.342-0.17-0.687-0.758-1.039l-2.508-1.498L74.02,54.701z M66.49,57.348l11.602-5.859l3.514,2.098 - c0.705,0.422,1.138,0.795,1.297,1.121c0.159,0.324,0.085,0.685-0.223,1.083c-0.308,0.398-0.781,0.759-1.42,1.081 - c-0.822,0.415-1.698,0.658-2.627,0.725c-0.928,0.067-1.85-0.087-2.762-0.464c0.082,0.264,0.1,0.487,0.054,0.67 - c-0.106,0.39-0.33,0.824-0.675,1.299l-1.779,2.418l-1.318-0.788l1.365-1.845c0.391-0.535,0.672-0.955,0.843-1.26 - c0.171-0.304,0.252-0.542,0.243-0.71c-0.01-0.168-0.065-0.315-0.17-0.441c-0.081-0.09-0.258-0.215-0.527-0.377l-1.217-0.727 - l-5.152,2.602L66.49,57.348z"/> - <path id="Fill-33" class="st5" d="M83.627,66.079l-1.369,0.691l-5.235-3.128c0.334-0.178,0.702-0.322,1.102-0.432 - c0.655-0.185,1.383-0.317,2.183-0.397c0.8-0.081,1.81-0.123,3.03-0.127c1.894-0.007,3.297-0.074,4.203-0.198 - c0.907-0.124,1.629-0.323,2.167-0.595c0.565-0.285,0.903-0.607,1.016-0.968c0.112-0.36-0.053-0.673-0.496-0.938 - c-0.468-0.279-1.049-0.399-1.742-0.36c-0.693,0.04-1.405,0.243-2.136,0.608l-0.849-0.673c1.159-0.511,2.251-0.777,3.27-0.799 - c1.018-0.022,1.905,0.191,2.657,0.642c0.761,0.454,1.053,0.97,0.88,1.546c-0.174,0.576-0.719,1.095-1.632,1.556 - c-0.464,0.235-0.985,0.426-1.564,0.575c-0.578,0.149-1.266,0.259-2.061,0.33c-0.797,0.071-1.979,0.116-3.543,0.136 - c-1.301,0.013-2.162,0.035-2.584,0.065c-0.422,0.03-0.817,0.078-1.182,0.144L83.627,66.079z"/> -</g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 130.229 87.986"><g fill="none" stroke="#626366" stroke-width="3" stroke-linejoin="round"><path d="M1.5 27.426L50.34 1.5l78.38 47.097L79.88 74.52z"/><path d="M79.88 74.52l.008 11.965L1.508 39.4 1.5 27.427z"/><path d="M79.88 74.52l48.84-25.924.008 11.965-48.84 25.924z"/></g><path d="M79.88 74.523l48.84-25.926.008 11.967-48.84 25.924z" fill="#898b8e"/><path d="M1.5 27.426L50.34 1.502l78.38 47.095-48.84 25.926z" fill="#231f20"/><path d="M79.88 74.523l.008 11.965-78.38-47.096L1.5 27.426z" fill="#b3b5b7"/><path d="M1.893 27.33L79.88 74.19V86.18" fill="none" stroke="#dfe0df" stroke-width=".75" stroke-linecap="round" stroke-linejoin="round"/><path d="M52.918 63.634l-15.322-9.207v-3.174l15.322 9.207zm-.058 4.793l-15.318-9.203V56.05l15.318 9.205zm17.296 5.565l-15.322-9.207V61.6l15.322 9.207zm-.056 4.793l-15.318-9.203v-3.176L70.1 75.6zM18.444 42.9L3.122 33.703V30.53l15.322 9.204zm-.057 4.8L3.07 38.498v-3.176l15.318 9.205zm17.295 5.565L20.36 44.06v-3.174l15.322 9.205zm-.057 4.793l-15.32-9.205V45.68l15.32 9.205zm38.762 18.694l-2.012-1.2v-2.63l2.012 1.2zm-.007 3.994l-2.014-1.2v-2.63l2.014 1.2zm3.065 1.874L75.43 81.4v-2.627l2.014 1.2zM20.192 26.952l17.863.147-5.4-8.103 12.138 1.046-3.755-5.616 21.5 1.852-15.27 2.2L52 25.525l-10.172-.878 5.38 8.052-25.95-5.56zm18.76 13.942l11.604-5.86 1.046.627-10.233 5.17 3.902 2.332-1.37.7zm12.377 2.144l2.686 1.605 2.387-2.116 1.844-1.552-2.644.864-4.273 1.2zm-7.05 1.04l14.645-4.042 1.13.674-8.36 7.798-1.194-.714 2.6-2.327-3.314-1.98-4.383 1.255-1.113-.665zm9.663 5.772l4.915-2.482 3.635-5.202 1.275.762-1.936 2.7-1.16 1.473 2.916-.52 4.945-.806 1.22.73-9.85 1.5-4.915 2.482-1.048-.626zm5.17 3.1l11.604-5.86 5.727 3.423-1.37.7-4.68-2.796-3.553 1.795 4.382 2.62-1.36.688-4.383-2.62-3.95 1.995 4.864 2.905-1.37.692zM74.02 54.7l2.254 1.347c.48.286.927.473 1.342.56s.852.094 1.312.016a4.32 4.32 0 0 0 1.25-.399c.55-.277.865-.587.947-.927s-.17-.687-.758-1.04L77.86 52.76l-3.84 1.94zm-7.53 2.647l11.602-5.86 3.514 2.098c.705.422 1.138.795 1.297 1.12s.085.685-.223 1.083-.78.76-1.42 1.08a6.87 6.87 0 0 1-2.627.725c-.928.067-1.85-.087-2.762-.464.082.264.1.487.054.67-.106.4-.33.824-.675 1.3l-1.78 2.418-1.318-.788 1.365-1.845.843-1.26c.17-.304.252-.542.243-.7a.75.75 0 0 0-.17-.44c-.08-.1-.258-.215-.527-.377l-1.217-.727-5.152 2.602-1.048-.626zm17.137 8.733l-1.37.7-5.235-3.128c.334-.178.702-.322 1.102-.432.655-.185 1.383-.317 2.183-.397s1.8-.123 3.03-.127l4.203-.198c.907-.124 1.63-.323 2.167-.595.565-.285.903-.607 1.016-.968s-.053-.673-.496-.938c-.468-.28-1.05-.4-1.742-.36s-1.405.243-2.136.608l-.85-.673c1.16-.5 2.25-.777 3.27-.8s1.905.2 2.657.642c.76.454 1.053.97.88 1.546s-.72 1.095-1.632 1.556a7.7 7.7 0 0 1-1.564.575c-.578.15-1.266.26-2.06.33l-3.543.136-2.584.065c-.422.03-.817.078-1.182.144l3.885 2.322z" fill="#fefefe"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/switch/Switch_48_port_L3.svg b/src/main/webapp/img/lib/allied_telesis/switch/Switch_48_port_L3.svg index 2c012ac49380ea748199ea046c5b27d1a52d97c2..537a30f18bf5986407eecacc89470e4e28c2b492 100644 --- a/src/main/webapp/img/lib/allied_telesis/switch/Switch_48_port_L3.svg +++ b/src/main/webapp/img/lib/allied_telesis/switch/Switch_48_port_L3.svg @@ -1,70 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 130.229 87.986" style="enable-background:new 0 0 130.229 87.986;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#626366;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;} - .st1{fill:#898B8E;} - .st2{fill:#BBBDBF;} - .st3{fill:#B3B5B7;} - .st4{fill:none;stroke:#DFE0DF;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;} - .st5{fill:#FEFEFE;} - .st6{fill:#010202;} -</style> -<title>icon-switch-48port-L3</title> -<desc>Created with Sketch.</desc> -<g> - <polygon id="Stroke-1" class="st0" points="1.5,27.425 50.34,1.5 128.721,48.597 79.881,74.522 "/> - <polygon id="Stroke-3" class="st0" points="79.881,74.521 79.889,86.486 1.508,39.39 1.5,27.424 "/> - <polygon id="Stroke-5" class="st0" points="79.881,74.521 128.721,48.596 128.729,60.561 79.889,86.486 "/> - <polygon id="Fill-8" class="st1" points="79.881,74.523 128.721,48.599 128.729,60.564 79.889,86.488 "/> - <polygon id="Fill-9" class="st2" points="1.5,27.427 50.34,1.501 128.721,48.599 79.881,74.523 "/> - <polygon id="Fill-10" class="st3" points="79.881,74.523 79.889,86.488 1.508,39.392 1.5,27.427 "/> - <polyline id="Stroke-11" class="st4" points="1.893,27.329 79.881,74.189 79.881,86.183 "/> - <polygon id="Fill-12" class="st5" points="71.541,74.896 52.48,63.444 52.48,60.27 71.541,71.722 "/> - <polygon id="Fill-13" class="st5" points="71.471,79.681 52.414,68.232 52.414,65.057 71.471,76.507 "/> - <polygon id="Fill-14" class="st5" points="28.858,49.239 9.799,37.788 9.799,34.612 28.858,46.064 "/> - <polygon id="Fill-15" class="st5" points="28.787,54.024 9.732,42.575 9.732,39.4 28.787,50.849 "/> - <polygon id="Fill-16" class="st5" points="50.227,62.077 31.168,50.626 31.168,47.452 50.227,58.903 "/> - <polygon id="Fill-17" class="st5" points="50.156,66.862 31.099,55.411 31.099,52.237 50.156,63.687 "/> - <polygon id="Fill-18" class="st6" points="29.845,24.176 47.097,15.464 48.656,16.395 33.439,24.079 39.241,27.546 37.204,28.573 - "/> - <path id="Fill-19" class="st6" d="M50.595,29.659c-0.839-0.155-1.894-0.491-3.162-1.007c-0.721-0.293-1.282-0.472-1.686-0.54 - c-0.404-0.068-0.822-0.065-1.258,0.007c-0.437,0.072-0.839,0.201-1.207,0.388c-0.566,0.285-0.89,0.61-0.974,0.974 - c-0.085,0.365,0.152,0.715,0.715,1.051c0.557,0.333,1.232,0.539,2.022,0.618c0.791,0.079,1.598,0.023,2.422-0.169 - c0.634-0.148,1.418-0.458,2.352-0.929L50.595,29.659z M45.985,32.12c-1.202,0.017-2.189-0.054-2.959-0.211s-1.44-0.406-2.007-0.745 - c-0.938-0.561-1.321-1.16-1.154-1.799c0.166-0.641,0.771-1.224,1.814-1.751c0.612-0.309,1.268-0.534,1.963-0.676 - c0.696-0.141,1.351-0.198,1.966-0.169c0.613,0.031,1.191,0.12,1.734,0.272c0.394,0.114,0.929,0.316,1.603,0.607 - c1.372,0.595,2.475,0.987,3.31,1.173c0.295-0.143,0.481-0.235,0.56-0.274c0.863-0.437,1.335-0.825,1.415-1.166 - c0.109-0.463-0.2-0.911-0.929-1.347c-0.681-0.407-1.358-0.618-2.03-0.636c-0.674-0.017-1.531,0.151-2.573,0.506l-1.132-0.987 - c1.015-0.37,1.943-0.606,2.782-0.705c0.841-0.1,1.685-0.057,2.536,0.127c0.853,0.184,1.645,0.496,2.379,0.934 - c0.728,0.436,1.194,0.852,1.398,1.251c0.205,0.4,0.224,0.759,0.058,1.079c-0.166,0.32-0.497,0.653-0.991,0.996 - c-0.314,0.211-0.941,0.555-1.882,1.031l-2.824,1.425c-1.97,0.996-3.185,1.643-3.645,1.943c-0.46,0.3-0.839,0.625-1.136,0.975 - l-1.509-0.902C45.022,32.761,45.439,32.443,45.985,32.12z"/> - <path id="Fill-21" class="st6" d="M43.149,37.432l1.827-1.101c0.192,0.253,0.404,0.45,0.641,0.59 - c0.32,0.193,0.657,0.307,1.006,0.343c0.35,0.035,0.727,0.019,1.132-0.05c0.304-0.053,0.977-0.23,2.019-0.533 - c0.146-0.043,0.36-0.104,0.647-0.185l9.284-8.257l1.558,0.931l-5.462,4.716c-0.687,0.601-1.446,1.212-2.276,1.832 - c1.14-0.391,2.286-0.753,3.443-1.083l9.108-2.59l1.446,0.866l-15.956,4.478c-1.721,0.485-2.936,0.801-3.647,0.947 - c-0.956,0.2-1.762,0.282-2.419,0.247c-0.659-0.034-1.217-0.188-1.678-0.463C43.545,37.953,43.319,37.724,43.149,37.432"/> - <path id="Fill-23" class="st6" d="M64.794,36.847l4.766,2.847c0.986-0.57,1.593-1.076,1.819-1.522 - c0.354-0.686,0.166-1.249-0.568-1.687c-0.664-0.398-1.548-0.567-2.653-0.509C67.055,36.035,65.934,36.326,64.794,36.847 - M66.118,41.413l1.225,1.031c-1.515,0.505-2.944,0.745-4.287,0.72c-1.344-0.024-2.512-0.333-3.502-0.924 - c-1.248-0.746-1.674-1.622-1.28-2.626c0.394-1.006,1.608-2.022,3.64-3.048c2.103-1.062,4.105-1.665,6.004-1.81 - c1.9-0.144,3.44,0.135,4.618,0.84c1.141,0.681,1.504,1.525,1.09,2.531c-0.415,1.007-1.653,2.032-3.717,3.074 - c-0.125,0.063-0.317,0.156-0.573,0.28l-6.363-3.803c-1.32,0.726-2.105,1.416-2.359,2.068c-0.253,0.654-0.022,1.193,0.69,1.619 - c0.53,0.317,1.185,0.484,1.969,0.503C64.057,41.885,65.005,41.734,66.118,41.413"/> - <path id="Fill-25" class="st6" d="M65.388,45.414l12.498-6.312l1.301,0.778l-1.895,0.957c1.219-0.249,2.11-0.361,2.674-0.335 - c0.564,0.025,1.014,0.139,1.352,0.34c0.488,0.291,0.756,0.702,0.804,1.232l-2.464,0.695c-0.047-0.365-0.248-0.654-0.602-0.866 - c-0.315-0.188-0.738-0.287-1.27-0.298c-0.529-0.009-1.095,0.08-1.697,0.264c-0.913,0.285-1.816,0.653-2.711,1.105l-6.543,3.304 - L65.388,45.414z"/> - <path id="Fill-27" class="st6" d="M79.615,48.894l1.728,0.722c-1.035,0.705-1.617,1.31-1.748,1.816 - c-0.129,0.506,0.092,0.931,0.666,1.273c0.679,0.406,1.599,0.576,2.758,0.507c1.159-0.069,2.248-0.361,3.268-0.876 - c0.973-0.491,1.559-1.025,1.757-1.604c0.197-0.577-0.039-1.067-0.707-1.467c-0.274-0.163-0.694-0.327-1.256-0.491l2.019-0.843 - c0.08,0.066,0.151,0.116,0.209,0.151c0.616,0.369,1.407,0.581,2.369,0.637c0.963,0.057,1.937-0.162,2.917-0.657 - c0.777-0.393,1.241-0.825,1.392-1.297c0.15-0.472-0.059-0.877-0.625-1.217c-0.562-0.336-1.291-0.485-2.184-0.448 - c-0.892,0.038-1.91,0.286-3.052,0.745l-1.07-1.054c1.597-0.611,3.099-0.927,4.506-0.947c1.407-0.019,2.577,0.249,3.509,0.805 - c0.643,0.385,1.032,0.841,1.169,1.367c0.138,0.528,0,1.054-0.412,1.577c-0.411,0.525-1.009,0.985-1.793,1.38 - c-0.745,0.377-1.562,0.638-2.446,0.783c-0.886,0.147-1.777,0.151-2.672,0.013c0.459,0.534,0.513,1.104,0.157,1.71 - c-0.355,0.604-1.091,1.188-2.205,1.751c-1.506,0.761-3.158,1.181-4.955,1.262c-1.797,0.081-3.269-0.221-4.416-0.907 - c-1.033-0.617-1.441-1.358-1.221-2.221C77.497,50.5,78.275,49.677,79.615,48.894"/> -</g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 130.229 87.986"><g fill="none" stroke="#626366" stroke-width="3" stroke-linejoin="round"><path d="M1.5 27.425L50.34 1.5l78.38 47.097-48.84 25.925z"/><path d="M79.88 74.52l.008 11.965L1.508 39.4 1.5 27.424z"/><path d="M79.88 74.52l48.84-25.925.008 11.965-48.84 25.925z"/></g><path d="M79.88 74.523L128.72 48.6l.008 11.965-48.84 25.924z" fill="#898b8e"/><path d="M1.5 27.427L50.34 1.5 128.72 48.6 79.88 74.523z" fill="#bbbdbf"/><path d="M79.88 74.523l.008 11.965-78.38-47.096L1.5 27.427z" fill="#b3b5b7"/><path d="M1.893 27.33L79.88 74.19v11.994" fill="none" stroke="#dfe0df" stroke-width=".75" stroke-linecap="round" stroke-linejoin="round"/><path d="M71.54 74.896L52.48 63.444V60.27l19.06 11.452zm-.07 4.784L52.413 68.23v-3.175l19.057 11.45zM28.858 49.24L9.8 37.788v-3.176l19.06 11.452zm-.07 4.784L9.732 42.575V39.4l19.055 11.45zm21.44 8.053l-19.06-11.45v-3.174l19.06 11.45zm-.07 4.785L31.1 55.4v-3.174l19.057 11.45z" fill="#fefefe"/><path d="M29.845 24.176l17.252-8.712 1.56.93L33.44 24.08l5.802 3.467-2.037 1.027zm20.75 5.484c-.84-.155-1.894-.5-3.162-1.007-.72-.293-1.282-.472-1.686-.54s-.822-.065-1.258.007-.84.2-1.207.388c-.566.285-.9.6-.974.974s.152.715.715 1.05c.557.333 1.232.54 2.022.618a7.38 7.38 0 0 0 2.422-.169c.634-.148 1.418-.458 2.352-.93l.776-.393zm-4.6 2.46c-1.202.017-2.2-.054-2.96-.2s-1.44-.406-2.007-.745c-.938-.56-1.32-1.16-1.154-1.8s.77-1.224 1.814-1.75c.612-.3 1.268-.534 1.963-.676a8.01 8.01 0 0 1 1.966-.169c.613.03 1.2.12 1.734.272.394.114.93.316 1.603.607 1.372.595 2.475.987 3.3 1.173l.56-.274c.863-.437 1.335-.825 1.415-1.166.1-.463-.2-.9-.93-1.347-.68-.407-1.358-.618-2.03-.636s-1.53.15-2.573.506l-1.132-.987c1.015-.37 1.943-.606 2.782-.705s1.685-.057 2.536.127a7.83 7.83 0 0 1 2.379.934c.728.436 1.194.852 1.398 1.25s.224.76.058 1.08-.497.653-1 .996c-.314.2-.94.555-1.882 1.03l-2.824 1.425-3.645 1.943a5.2 5.2 0 0 0-1.136.975l-1.5-.902a6.25 6.25 0 0 1 1.253-.95zm-2.845 5.312l1.827-1.1c.192.253.404.45.64.6.32.193.657.307 1.006.343a4.23 4.23 0 0 0 1.132-.05c.304-.053.977-.23 2.02-.533l.647-.185 9.284-8.257 1.558.93-5.462 4.716-2.276 1.832 3.443-1.083 9.108-2.6 1.446.866-15.956 4.478-3.647.947c-.956.2-1.762.282-2.42.247s-1.217-.188-1.678-.463c-.277-.167-.503-.396-.673-.688m21.645-.585l4.766 2.847c.986-.57 1.593-1.076 1.82-1.522.354-.686.166-1.25-.568-1.687-.664-.398-1.548-.567-2.653-.5s-2.224.35-3.364.87m1.324 4.566l1.225 1.03c-1.515.505-2.944.745-4.287.72s-2.512-.333-3.502-.924c-1.248-.746-1.674-1.622-1.28-2.626s1.608-2.022 3.64-3.048c2.103-1.062 4.105-1.665 6.004-1.8s3.44.135 4.618.84c1.14.68 1.504 1.525 1.1 2.53S71.973 40.16 69.9 41.2l-.573.28-6.363-3.803c-1.32.726-2.105 1.416-2.36 2.068s-.022 1.193.7 1.62c.53.317 1.185.484 1.97.503s1.732-.134 2.845-.455m-.74 4l12.498-6.312 1.3.778-1.895.957c1.22-.25 2.1-.36 2.674-.335s1.014.14 1.352.34c.488.3.756.702.804 1.232l-2.464.695c-.047-.365-.248-.654-.602-.866-.315-.188-.738-.287-1.27-.298s-1.095.08-1.697.264c-.913.285-1.816.653-2.7 1.105l-6.543 3.304-1.447-.864zm14.227 3.48l1.728.722c-1.035.705-1.617 1.3-1.748 1.816s.092.93.666 1.273c.68.406 1.6.576 2.758.507a8.26 8.26 0 0 0 3.268-.876c.973-.5 1.56-1.025 1.757-1.604s-.04-1.067-.707-1.467c-.274-.163-.694-.327-1.256-.5l2.02-.843c.08.066.15.116.2.15.616.37 1.407.58 2.37.637s1.937-.162 2.917-.657c.777-.393 1.24-.825 1.392-1.297s-.06-.877-.625-1.217-1.3-.485-2.184-.448-1.9.286-3.052.745l-1.07-1.054c1.597-.6 3.1-.927 4.506-.947s2.577.25 3.5.805c.643.385 1.032.84 1.17 1.367s0 1.054-.412 1.577-1 .985-1.793 1.38c-.745.377-1.562.638-2.446.783a8.49 8.49 0 0 1-2.672.013 1.35 1.35 0 0 1 .157 1.71c-.355.604-1.1 1.188-2.205 1.75-1.506.76-3.158 1.18-4.955 1.262s-3.27-.22-4.416-.907c-1.033-.617-1.44-1.358-1.22-2.22s.998-1.687 2.338-2.47" fill="#010202"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/switch/Switch_48_port_L3_POE.svg b/src/main/webapp/img/lib/allied_telesis/switch/Switch_48_port_L3_POE.svg index 19e2efed8db94fee4e6126776c4870ef01d62f74..95d72300567fadce393de1318b537143dcd45542 100644 --- a/src/main/webapp/img/lib/allied_telesis/switch/Switch_48_port_L3_POE.svg +++ b/src/main/webapp/img/lib/allied_telesis/switch/Switch_48_port_L3_POE.svg @@ -1,61 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 130.229 87.986" style="enable-background:new 0 0 130.229 87.986;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#626366;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;} - .st1{fill:#898B8E;} - .st2{fill:#231F20;} - .st3{fill:#B3B5B7;} - .st4{fill:none;stroke:#DFE0DF;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;} - .st5{fill:#FEFEFE;} -</style> -<title>icon-switch-48port-poeL3</title> -<desc>Created with Sketch.</desc> -<polygon id="Stroke-1" class="st0" points="1.5,27.426 50.34,1.5 128.721,48.597 79.881,74.521 "/> -<polygon id="Stroke-3" class="st0" points="79.881,74.521 79.889,86.486 1.508,39.39 1.5,27.427 "/> -<polygon id="Stroke-5" class="st0" points="79.881,74.521 128.721,48.597 128.729,60.562 79.889,86.486 "/> -<polygon id="Fill-8" class="st1" points="79.881,74.523 128.721,48.597 128.729,60.564 79.889,86.488 "/> -<polygon id="Fill-9" class="st2" points="1.5,27.426 50.34,1.502 128.721,48.597 79.881,74.523 "/> -<polygon id="Fill-10" class="st3" points="79.881,74.523 79.889,86.488 1.508,39.392 1.5,27.426 "/> -<polyline id="Stroke-11" class="st4" points="1.893,27.33 79.881,74.189 79.881,86.181 "/> -<polygon id="Fill-12" class="st5" points="52.918,63.634 37.596,54.427 37.596,51.253 52.918,60.46 "/> -<polygon id="Fill-13" class="st5" points="52.861,68.427 37.543,59.224 37.543,56.049 52.861,65.254 "/> -<polygon id="Fill-14" class="st5" points="70.156,73.992 54.834,64.785 54.834,61.611 70.156,70.818 "/> -<polygon id="Fill-15" class="st5" points="70.1,78.785 54.782,69.582 54.782,66.406 70.1,75.611 "/> -<polygon id="Fill-16" class="st5" points="18.444,42.91 3.122,33.703 3.122,30.53 18.444,39.734 "/> -<polygon id="Fill-17" class="st5" points="18.387,47.701 3.069,38.498 3.069,35.322 18.387,44.527 "/> -<polygon id="Fill-18" class="st5" points="35.682,53.265 20.36,44.06 20.36,40.886 35.682,50.091 "/> -<polygon id="Fill-19" class="st5" points="35.625,58.058 20.305,48.853 20.305,45.679 35.625,54.884 "/> -<polygon id="Fill-20" class="st5" points="74.387,76.752 72.375,75.543 72.375,72.912 74.387,74.123 "/> -<polygon id="Fill-21" class="st5" points="74.379,80.746 72.365,79.537 72.365,76.908 74.379,78.117 "/> -<polygon id="Fill-22" class="st5" points="77.445,82.621 75.431,81.41 75.431,78.783 77.445,79.992 "/> -<polygon id="Fill-23" class="st5" points="20.192,26.952 38.055,27.099 32.645,18.996 44.783,20.042 41.028,14.426 62.539,16.278 - 47.269,18.467 51.981,25.524 41.809,24.646 47.188,32.698 21.239,27.139 "/> -<polygon id="Fill-24" class="st5" points="38.953,40.894 50.557,35.034 51.603,35.661 41.37,40.829 45.272,43.161 43.903,43.852 "/> -<path id="Fill-25" class="st5" d="M51.331,43.038l2.686,1.605l2.387-2.116c0.724-0.644,1.337-1.161,1.844-1.552 - c-0.846,0.315-1.727,0.604-2.644,0.864L51.331,43.038z M44.281,44.079l14.645-4.042l1.129,0.674l-8.36,7.798l-1.194-0.714 - l2.59-2.327l-3.314-1.979l-4.383,1.255L44.281,44.079z"/> -<path id="Fill-27" class="st5" d="M53.943,49.851l4.915-2.482l3.635-5.202l1.275,0.762l-1.936,2.699 - c-0.367,0.503-0.752,0.994-1.159,1.473c0.845-0.165,1.817-0.337,2.916-0.519l4.945-0.806l1.221,0.73l-9.849,1.489l-4.915,2.482 - L53.943,49.851z"/> -<polygon id="Fill-29" class="st5" points="59.113,52.941 70.717,47.081 76.445,50.504 75.076,51.195 70.396,48.399 66.842,50.194 - 71.224,52.813 69.863,53.501 65.48,50.882 61.531,52.877 66.394,55.782 65.025,56.474 "/> -<path id="Fill-31" class="st5" d="M74.02,54.701l2.254,1.347c0.479,0.286,0.927,0.473,1.342,0.561 - c0.414,0.088,0.852,0.094,1.312,0.016c0.459-0.076,0.876-0.21,1.25-0.399c0.549-0.277,0.865-0.587,0.947-0.927 - c0.081-0.342-0.17-0.687-0.758-1.039l-2.508-1.498L74.02,54.701z M66.49,57.348l11.602-5.859l3.514,2.098 - c0.705,0.422,1.138,0.795,1.297,1.121c0.159,0.324,0.085,0.685-0.223,1.083c-0.308,0.398-0.781,0.759-1.42,1.081 - c-0.822,0.415-1.698,0.658-2.627,0.725c-0.928,0.067-1.85-0.087-2.762-0.464c0.082,0.264,0.1,0.487,0.054,0.67 - c-0.106,0.39-0.33,0.824-0.675,1.299l-1.779,2.418l-1.318-0.788l1.365-1.845c0.391-0.535,0.672-0.955,0.843-1.26 - c0.171-0.304,0.252-0.542,0.243-0.71c-0.01-0.168-0.065-0.315-0.17-0.441c-0.081-0.09-0.258-0.215-0.527-0.377l-1.217-0.727 - l-5.152,2.602L66.49,57.348z"/> -<path id="Fill-33" class="st5" d="M80.214,62.172l1.164,0.486c-0.696,0.473-1.088,0.881-1.176,1.222 - c-0.088,0.34,0.062,0.625,0.447,0.855c0.457,0.273,1.075,0.387,1.855,0.341c0.779-0.046,1.512-0.242,2.198-0.589 - c0.654-0.33,1.048-0.69,1.181-1.079s-0.025-0.717-0.477-0.987c-0.183-0.11-0.464-0.22-0.843-0.33l1.359-0.567 - c0.054,0.044,0.101,0.078,0.141,0.102c0.414,0.248,0.944,0.39,1.592,0.429c0.648,0.037,1.302-0.11,1.962-0.443 - c0.523-0.264,0.834-0.555,0.936-0.872c0.101-0.318-0.038-0.59-0.42-0.818c-0.378-0.226-0.867-0.327-1.468-0.301 - c-0.6,0.025-1.285,0.192-2.054,0.501l-0.72-0.71c1.074-0.411,2.086-0.623,3.032-0.636c0.945-0.014,1.732,0.167,2.359,0.541 - c0.433,0.259,0.696,0.565,0.787,0.92c0.093,0.354,0,0.708-0.277,1.06c-0.277,0.352-0.679,0.662-1.207,0.928 - c-0.501,0.253-1.05,0.429-1.644,0.527c-0.595,0.099-1.195,0.101-1.798,0.008c0.31,0.36,0.345,0.744,0.106,1.15 - c-0.239,0.407-0.733,0.8-1.482,1.179c-1.013,0.511-2.125,0.793-3.333,0.848c-1.209,0.054-2.199-0.149-2.97-0.61 - c-0.695-0.415-0.97-0.913-0.822-1.494C78.789,63.252,79.315,62.699,80.214,62.172"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 130.229 87.986"><g fill="none" stroke="#626366" stroke-width="3" stroke-linejoin="round"><path d="M1.5 27.426L50.34 1.5l78.38 47.097L79.88 74.52z"/><path d="M79.88 74.52l.008 11.965L1.508 39.4 1.5 27.427z"/><path d="M79.88 74.52l48.84-25.924.008 11.965-48.84 25.924z"/></g><path d="M79.88 74.523l48.84-25.926.008 11.967-48.84 25.924z" fill="#898b8e"/><path d="M1.5 27.426L50.34 1.502l78.38 47.095-48.84 25.926z" fill="#231f20"/><path d="M79.88 74.523l.008 11.965-78.38-47.096L1.5 27.426z" fill="#b3b5b7"/><path d="M1.893 27.33L79.88 74.19V86.18" fill="none" stroke="#dfe0df" stroke-width=".75" stroke-linecap="round" stroke-linejoin="round"/><path d="M52.918 63.634l-15.322-9.207v-3.174l15.322 9.207zm-.058 4.793l-15.318-9.203V56.05l15.318 9.205zm17.296 5.565l-15.322-9.207V61.6l15.322 9.207zm-.056 4.793l-15.318-9.203v-3.176L70.1 75.6zM18.444 42.9L3.122 33.703V30.53l15.322 9.204zm-.057 4.8L3.07 38.498v-3.176l15.318 9.205zm17.295 5.565L20.36 44.06v-3.174l15.322 9.205zm-.057 4.793l-15.32-9.205V45.68l15.32 9.205zm38.762 18.694l-2.012-1.2v-2.63l2.012 1.2zm-.007 3.994l-2.014-1.2v-2.63l2.014 1.2zm3.065 1.874L75.43 81.4v-2.627l2.014 1.2zM20.192 26.952l17.863.147-5.4-8.103 12.138 1.046-3.755-5.616 21.5 1.852-15.27 2.2L52 25.525l-10.172-.878 5.38 8.052-25.95-5.56zm18.76 13.942l11.604-5.86 1.046.627-10.233 5.17 3.902 2.332-1.37.7zm12.377 2.144l2.686 1.605 2.387-2.116 1.844-1.552-2.644.864-4.273 1.2zm-7.05 1.04l14.645-4.042 1.13.674-8.36 7.798-1.194-.714 2.6-2.327-3.314-1.98-4.383 1.255-1.113-.665zm9.663 5.772l4.915-2.482 3.635-5.202 1.275.762-1.936 2.7-1.16 1.473 2.916-.52 4.945-.806 1.22.73-9.85 1.5-4.915 2.482-1.048-.626zm5.17 3.1l11.604-5.86 5.728 3.423-1.37.7-4.68-2.796-3.554 1.795 4.382 2.62-1.36.688-4.383-2.62-3.95 1.995 4.863 2.905-1.37.692zM74.02 54.7l2.254 1.347c.48.286.927.473 1.342.56s.852.094 1.312.016a4.32 4.32 0 0 0 1.25-.399c.55-.277.865-.587.947-.927s-.17-.687-.758-1.04L77.86 52.76l-3.84 1.94zm-7.53 2.647l11.602-5.86 3.514 2.098c.705.422 1.138.795 1.297 1.12s.085.685-.223 1.083-.78.76-1.42 1.08a6.87 6.87 0 0 1-2.627.725c-.928.067-1.85-.087-2.762-.464.082.264.1.487.054.67-.106.4-.33.824-.675 1.3l-1.78 2.418-1.318-.788 1.365-1.845.843-1.26c.17-.304.252-.542.243-.7a.75.75 0 0 0-.17-.44c-.08-.1-.258-.215-.527-.377l-1.217-.727-5.152 2.602-1.048-.626zm13.724 4.825l1.164.486c-.696.473-1.088.88-1.176 1.222s.062.625.447.855c.457.273 1.075.387 1.855.34a5.54 5.54 0 0 0 2.198-.589c.654-.33 1.048-.7 1.18-1.08s-.025-.717-.477-.987c-.183-.1-.464-.22-.843-.33l1.36-.567a1.25 1.25 0 0 0 .141.102c.414.248.944.4 1.592.43s1.302-.1 1.962-.443c.523-.264.834-.555.936-.872s-.038-.6-.42-.818-.867-.327-1.468-.3-1.285.192-2.054.5l-.72-.7c1.074-.4 2.086-.623 3.032-.636s1.732.167 2.36.54c.433.26.696.565.787.92s0 .708-.277 1.06-.68.662-1.207.928c-.5.253-1.05.43-1.644.527s-1.195.1-1.798.008a.92.92 0 0 1 .106 1.15c-.24.406-.733.8-1.482 1.18-1.013.5-2.125.793-3.333.848s-2.2-.15-2.97-.6c-.695-.415-.97-.913-.822-1.494s.673-1.134 1.572-1.66" fill="#fefefe"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/switch/Switch_52_port_L3.svg b/src/main/webapp/img/lib/allied_telesis/switch/Switch_52_port_L3.svg index 2d40fa1a29d3ab7945259867e111b120c04ae363..77d387072bcb1fd1f7563166ff860ef90c7b26e2 100644 --- a/src/main/webapp/img/lib/allied_telesis/switch/Switch_52_port_L3.svg +++ b/src/main/webapp/img/lib/allied_telesis/switch/Switch_52_port_L3.svg @@ -1,73 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 130.229 87.986" style="enable-background:new 0 0 130.229 87.986;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#626366;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;} - .st1{fill:#898B8E;} - .st2{fill:#BBBDBF;} - .st3{fill:#B3B5B7;} - .st4{fill:#FEFEFE;} - .st5{fill:none;stroke:#DFE0DF;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;} - .st6{fill:#010202;} -</style> -<title>icon-switch-52port-L3</title> -<desc>Created with Sketch.</desc> -<polygon id="Stroke-1" class="st0" points="1.5,27.426 50.34,1.5 128.721,48.598 79.881,74.522 "/> -<polygon id="Stroke-3" class="st0" points="79.881,74.521 79.889,86.486 1.508,39.39 1.5,27.425 "/> -<polygon id="Stroke-5" class="st0" points="79.881,74.521 128.721,48.597 128.729,60.562 79.889,86.486 "/> -<polygon id="Fill-8" class="st1" points="79.881,74.524 128.721,48.599 128.729,60.565 79.889,86.489 "/> -<polygon id="Fill-9" class="st2" points="1.5,27.427 50.34,1.502 128.721,48.599 79.881,74.524 "/> -<polygon id="Fill-10" class="st3" points="79.881,74.524 79.889,86.489 1.508,39.393 1.5,27.427 "/> -<polygon id="Fill-11" class="st4" points="31.507,50.685 18.038,42.592 18.038,39.418 31.507,47.511 "/> -<polygon id="Fill-12" class="st4" points="31.458,55.482 17.991,47.39 17.991,44.216 31.458,52.308 "/> -<polygon id="Fill-13" class="st4" points="69.677,73.208 59.335,66.994 59.335,65.957 69.677,72.172 "/> -<polygon id="Fill-14" class="st4" points="16.682,41.716 3.215,33.624 3.215,30.448 16.682,38.54 "/> -<polygon id="Fill-15" class="st4" points="16.635,46.515 3.168,38.423 3.168,35.249 16.635,43.341 "/> -<polygon id="Fill-16" class="st4" points="55.649,65.146 48.159,60.646 48.159,57.481 55.649,61.981 "/> -<polygon id="Fill-17" class="st4" points="55.649,70.021 48.159,65.521 48.159,62.356 55.649,66.856 "/> -<polygon id="Fill-18" class="st4" points="46.682,59.716 33.215,51.624 33.215,48.448 46.682,56.54 "/> -<polygon id="Fill-19" class="st4" points="46.635,64.515 33.168,56.423 33.168,53.249 46.635,61.341 "/> -<polyline id="Stroke-20" class="st5" points="1.893,27.33 79.881,74.189 79.881,86.184 "/> -<polygon id="Fill-21" class="st4" points="77.867,78.823 72.619,75.672 72.619,72.252 77.867,75.398 "/> -<polygon id="Fill-22" class="st4" points="61.342,73.217 57.525,70.925 57.525,68.505 61.342,70.793 "/> -<polygon id="Fill-23" class="st4" points="67.122,76.676 63.305,74.384 63.305,71.964 67.122,74.252 "/> -<polygon id="Fill-24" class="st6" points="31.226,24.313 48.478,15.601 50.037,16.532 34.82,24.216 40.622,27.683 38.585,28.71 "/> -<path id="Fill-25" class="st6" d="M51.976,29.796c-0.839-0.155-1.894-0.491-3.162-1.007c-0.721-0.293-1.282-0.472-1.686-0.54 - c-0.404-0.068-0.822-0.065-1.258,0.007c-0.437,0.072-0.839,0.201-1.207,0.388c-0.566,0.285-0.89,0.61-0.974,0.974 - c-0.085,0.365,0.152,0.715,0.715,1.051c0.557,0.333,1.232,0.539,2.022,0.618c0.791,0.079,1.598,0.023,2.422-0.169 - c0.634-0.148,1.418-0.458,2.352-0.929L51.976,29.796z M47.366,32.257c-1.202,0.017-2.189-0.054-2.959-0.211 - c-0.77-0.157-1.44-0.406-2.007-0.745c-0.938-0.561-1.321-1.16-1.154-1.799c0.166-0.641,0.771-1.224,1.814-1.751 - c0.612-0.309,1.268-0.534,1.963-0.676c0.696-0.141,1.351-0.198,1.966-0.169c0.613,0.031,1.191,0.12,1.734,0.272 - c0.394,0.114,0.929,0.316,1.603,0.607c1.372,0.595,2.475,0.987,3.31,1.173c0.295-0.143,0.481-0.235,0.56-0.274 - c0.863-0.437,1.335-0.825,1.415-1.166c0.109-0.463-0.2-0.911-0.929-1.347c-0.681-0.407-1.358-0.618-2.03-0.636 - c-0.674-0.017-1.531,0.151-2.573,0.506l-1.132-0.987c1.015-0.37,1.943-0.606,2.782-0.705c0.841-0.1,1.685-0.057,2.536,0.127 - c0.853,0.184,1.645,0.496,2.379,0.934c0.728,0.436,1.194,0.852,1.398,1.251c0.205,0.4,0.224,0.759,0.058,1.079 - c-0.166,0.32-0.497,0.653-0.991,0.996c-0.314,0.211-0.941,0.555-1.882,1.031l-2.824,1.425c-1.97,0.996-3.185,1.643-3.645,1.943 - c-0.46,0.3-0.839,0.625-1.136,0.975l-1.509-0.902C46.403,32.898,46.82,32.58,47.366,32.257z"/> -<path id="Fill-27" class="st6" d="M44.53,37.568l1.827-1.101c0.192,0.253,0.404,0.45,0.641,0.59c0.32,0.193,0.657,0.307,1.006,0.343 - c0.35,0.035,0.727,0.019,1.132-0.05c0.304-0.053,0.977-0.23,2.019-0.533c0.146-0.043,0.36-0.104,0.647-0.185l9.284-8.257 - l1.558,0.931l-5.462,4.716c-0.687,0.601-1.446,1.212-2.276,1.832c1.14-0.391,2.286-0.753,3.443-1.083l9.108-2.59l1.446,0.866 - l-15.956,4.478c-1.721,0.485-2.937,0.801-3.647,0.947c-0.956,0.2-1.762,0.282-2.419,0.247c-0.659-0.034-1.217-0.188-1.678-0.463 - C44.925,38.089,44.7,37.86,44.53,37.568"/> -<path id="Fill-29" class="st6" d="M66.175,36.983l4.766,2.847c0.986-0.57,1.593-1.076,1.819-1.522 - c0.354-0.686,0.166-1.249-0.568-1.687c-0.664-0.398-1.548-0.567-2.653-0.509C68.436,36.171,67.315,36.462,66.175,36.983 - M67.499,41.549l1.225,1.031c-1.515,0.505-2.944,0.745-4.287,0.72c-1.344-0.024-2.512-0.333-3.502-0.924 - c-1.248-0.746-1.674-1.622-1.28-2.626c0.394-1.006,1.608-2.022,3.64-3.048c2.103-1.062,4.105-1.665,6.004-1.81 - c1.9-0.144,3.44,0.135,4.618,0.84c1.141,0.681,1.504,1.525,1.09,2.531c-0.415,1.007-1.653,2.032-3.717,3.074 - c-0.125,0.063-0.317,0.156-0.573,0.28l-6.363-3.803c-1.32,0.726-2.105,1.416-2.359,2.068c-0.253,0.654-0.022,1.193,0.69,1.619 - c0.53,0.317,1.185,0.484,1.969,0.503C65.438,42.021,66.386,41.87,67.499,41.549"/> -<path id="Fill-31" class="st6" d="M66.769,45.551l12.498-6.312l1.301,0.778l-1.895,0.957c1.219-0.249,2.11-0.361,2.674-0.335 - c0.564,0.025,1.014,0.139,1.352,0.34c0.488,0.291,0.756,0.702,0.804,1.232l-2.464,0.695c-0.047-0.365-0.248-0.654-0.602-0.866 - c-0.315-0.188-0.738-0.287-1.27-0.298c-0.529-0.009-1.095,0.08-1.697,0.264c-0.913,0.285-1.816,0.653-2.711,1.105l-6.543,3.304 - L66.769,45.551z"/> -<path id="Fill-33" class="st6" d="M80.996,49.03l1.728,0.722c-1.035,0.705-1.617,1.31-1.748,1.816 - c-0.129,0.506,0.092,0.931,0.666,1.273c0.679,0.406,1.599,0.576,2.758,0.507c1.159-0.069,2.248-0.361,3.268-0.876 - c0.973-0.491,1.559-1.025,1.757-1.604c0.197-0.577-0.039-1.067-0.707-1.467c-0.274-0.163-0.694-0.327-1.256-0.491l2.019-0.843 - c0.08,0.066,0.151,0.116,0.209,0.151c0.616,0.369,1.407,0.581,2.369,0.637c0.963,0.057,1.937-0.162,2.917-0.657 - c0.777-0.393,1.241-0.825,1.392-1.297c0.15-0.472-0.059-0.877-0.625-1.217c-0.562-0.336-1.291-0.485-2.184-0.448 - c-0.892,0.038-1.91,0.286-3.052,0.745l-1.07-1.054c1.597-0.611,3.099-0.927,4.506-0.947c1.407-0.019,2.577,0.249,3.509,0.805 - c0.643,0.385,1.032,0.841,1.169,1.367c0.138,0.528,0,1.054-0.412,1.577c-0.411,0.525-1.009,0.985-1.793,1.38 - c-0.745,0.377-1.562,0.638-2.446,0.783c-0.886,0.147-1.777,0.151-2.672,0.013c0.459,0.534,0.513,1.104,0.157,1.71 - c-0.355,0.604-1.091,1.188-2.205,1.751c-1.506,0.761-3.158,1.181-4.955,1.262c-1.797,0.081-3.269-0.221-4.416-0.907 - c-1.033-0.617-1.441-1.358-1.221-2.221C78.878,50.636,79.656,49.813,80.996,49.03"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 130.229 87.986"><g fill="none" stroke="#626366" stroke-width="3" stroke-linejoin="round"><path d="M1.5 27.426L50.34 1.5l78.38 47.098-48.84 25.924z"/><path d="M79.88 74.52l.008 11.965L1.508 39.4 1.5 27.425z"/><path d="M79.88 74.52l48.84-25.924.008 11.965-48.84 25.924z"/></g><path d="M79.88 74.524L128.72 48.6l.008 11.966L79.89 86.49z" fill="#898b8e"/><path d="M1.5 27.427L50.34 1.502 128.72 48.6 79.88 74.524z" fill="#bbbdbf"/><path d="M79.88 74.524l.008 11.965-78.38-47.096L1.5 27.427z" fill="#b3b5b7"/><path d="M31.507 50.685l-13.47-8.093v-3.174l13.47 8.093zm-.05 4.797L18 47.4v-3.174l13.467 8.092zm38.22 17.726l-10.342-6.214v-1.037l10.342 6.215zM16.682 41.716L3.215 33.624v-3.176l13.467 8.092zm-.047 4.8L3.168 38.423V35.25l13.467 8.092zm39.015 18.63l-7.5-4.5V57.48l7.5 4.5zm0 4.874l-7.5-4.5v-3.165l7.5 4.5zm-8.968-10.304l-13.467-8.092v-3.176l13.467 8.092zm-.047 4.8l-13.467-8.092V53.25l13.467 8.092z" fill="#fefefe"/><path d="M1.893 27.33L79.88 74.19v11.995" fill="none" stroke="#dfe0df" stroke-width=".75" stroke-linecap="round" stroke-linejoin="round"/><path d="M77.867 78.823l-5.248-3.15v-3.42l5.248 3.146zm-16.525-5.606l-3.817-2.292v-2.42l3.817 2.288zm5.78 3.46l-3.817-2.292v-2.42l3.817 2.288z" fill="#fefefe"/><path d="M31.226 24.313L48.478 15.6l1.56.93-15.217 7.684 5.802 3.467-2.037 1.027zm20.75 5.483c-.84-.155-1.894-.5-3.162-1.007-.72-.293-1.282-.472-1.686-.54s-.822-.065-1.258.007-.84.2-1.207.388c-.566.285-.9.6-.974.974s.152.715.715 1.05c.557.333 1.232.54 2.022.618a7.38 7.38 0 0 0 2.422-.169c.634-.148 1.418-.458 2.352-.93l.776-.393zm-4.6 2.46c-1.202.017-2.2-.054-2.96-.2s-1.44-.406-2.007-.745c-.938-.56-1.32-1.16-1.154-1.8s.77-1.224 1.814-1.75c.612-.3 1.268-.534 1.963-.676a8.01 8.01 0 0 1 1.966-.169c.613.03 1.2.12 1.734.272.394.114.93.316 1.603.607 1.372.595 2.475.987 3.3 1.173l.56-.274c.863-.437 1.335-.825 1.415-1.166.1-.463-.2-.9-.93-1.347-.68-.407-1.358-.618-2.03-.636s-1.53.15-2.573.506l-1.132-.987c1.015-.37 1.943-.606 2.782-.705s1.685-.057 2.536.127a7.83 7.83 0 0 1 2.379.934c.728.436 1.194.852 1.398 1.25s.224.76.058 1.08-.497.653-1 .996c-.314.2-.94.555-1.882 1.03l-2.824 1.425-3.645 1.943a5.2 5.2 0 0 0-1.136.975l-1.5-.902a6.25 6.25 0 0 1 1.253-.95zm-2.846 5.312l1.827-1.1c.192.253.404.45.64.6.32.193.657.307 1.006.343a4.23 4.23 0 0 0 1.132-.05c.304-.053.977-.23 2.02-.533l.647-.185 9.284-8.257 1.558.93-5.462 4.716-2.276 1.832 3.443-1.083 9.108-2.6 1.446.866-15.956 4.478-3.647.947c-.956.2-1.762.282-2.42.247s-1.217-.188-1.678-.463c-.278-.167-.503-.396-.673-.688m21.646-.585l4.766 2.847c.986-.57 1.593-1.076 1.82-1.522.354-.686.166-1.25-.568-1.687-.664-.398-1.548-.567-2.653-.5s-2.224.35-3.364.87m1.324 4.57l1.225 1.03c-1.515.505-2.944.745-4.287.72s-2.512-.333-3.502-.924c-1.248-.746-1.674-1.622-1.28-2.626s1.608-2.022 3.64-3.048c2.103-1.062 4.105-1.665 6.004-1.8s3.44.135 4.618.84c1.14.68 1.504 1.525 1.1 2.53s-1.653 2.032-3.717 3.074l-.573.28-6.363-3.803c-1.32.726-2.105 1.416-2.36 2.068s-.022 1.193.7 1.62c.53.317 1.185.484 1.97.503s1.732-.134 2.845-.455m-.75 3.99l12.498-6.312 1.3.778-1.895.957c1.22-.25 2.1-.36 2.674-.335s1.014.14 1.352.34c.488.3.756.702.804 1.232l-2.464.695c-.047-.365-.248-.654-.602-.866-.315-.188-.738-.287-1.27-.298s-1.095.08-1.697.264c-.913.285-1.816.653-2.7 1.105l-6.543 3.304-1.447-.864zm14.226 3.48l1.728.722c-1.035.705-1.617 1.3-1.748 1.816s.092.93.666 1.273c.68.406 1.6.576 2.758.507a8.26 8.26 0 0 0 3.268-.876c.973-.5 1.56-1.025 1.757-1.604s-.04-1.067-.707-1.467c-.274-.163-.694-.327-1.256-.5l2.02-.843c.08.066.15.116.2.15.616.37 1.407.58 2.37.637s1.937-.162 2.917-.657c.777-.393 1.24-.825 1.392-1.297s-.06-.877-.625-1.217-1.3-.485-2.184-.448-1.9.286-3.052.745l-1.07-1.054c1.597-.6 3.1-.927 4.506-.947s2.577.25 3.5.805c.643.385 1.032.84 1.17 1.367s0 1.054-.412 1.577-1 .985-1.793 1.38c-.745.377-1.562.638-2.446.783a8.49 8.49 0 0 1-2.672.013 1.35 1.35 0 0 1 .157 1.71c-.355.604-1.1 1.188-2.205 1.75-1.506.76-3.158 1.18-4.955 1.262s-3.27-.22-4.416-.907c-1.033-.617-1.44-1.358-1.22-2.22s.998-1.687 2.338-2.47" fill="#010202"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/wireless/Access_Point_Indoor.svg b/src/main/webapp/img/lib/allied_telesis/wireless/Access_Point_Indoor.svg index 33301f37caaa53e1aed08c60fe93c68c8fcb5c89..aeb238668ddc448aeef1931466b9bcac460baff4 100644 --- a/src/main/webapp/img/lib/allied_telesis/wireless/Access_Point_Indoor.svg +++ b/src/main/webapp/img/lib/allied_telesis/wireless/Access_Point_Indoor.svg @@ -1,138 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 61.115 91.401" style="enable-background:new 0 0 61.115 91.401;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#646567;} - .st1{fill:none;stroke:#646567;stroke-width:0.262;} - .st2{fill:none;stroke:#616365;stroke-width:3.139;stroke-linecap:round;stroke-linejoin:round;} - .st3{fill:#8D8F92;} - .st4{fill:#58585B;} - .st5{fill:#6E7072;} - .st6{fill:#6C6E70;} - .st7{fill:#B1B3B5;} - .st8{fill:#E7E8E9;} - .st9{fill:#FEFEFE;} -</style> -<title>icon-wireless-4600</title> -<desc>Created with Sketch.</desc> -<path id="Fill-1" class="st0" d="M6.958,67.815c-3.139-1.438-6.779-6.371-6.753-10.272c0.026-3.925-0.157-45.975-0.026-47.936 - c0.131-1.962,0.5-3.117,2.069-4.293c1.569-1.177,7.806-4.266,8.85-4.688c1.099-0.445,2.464-1.176,5.995,0.917 - c3.531,2.092,37.046,22.419,38.521,23.262c4.559,2.605,5.176,6.289,5.311,8.966c0.133,2.677,0.032,45.679-0.219,48.69 - c-0.116,1.388-0.517,2.638-2.235,3.752c-1.956,1.269-5.279,2.771-7.413,3.907c-3.958,2.104-5.326,0.733-5.914,0.45 - C42.141,89.119,6.958,67.815,6.958,67.815"/> -<path id="Stroke-3" class="st1" d="M6.958,67.815c-3.139-1.438-6.779-6.371-6.753-10.272c0.026-3.925-0.157-45.975-0.026-47.936 - c0.131-1.962,0.5-3.117,2.069-4.293c1.569-1.177,7.806-4.266,8.85-4.688c1.099-0.445,2.464-1.176,5.995,0.917 - c3.531,2.092,37.046,22.419,38.521,23.262c4.559,2.605,5.176,6.289,5.311,8.966c0.133,2.677,0.032,45.679-0.219,48.69 - c-0.116,1.388-0.517,2.638-2.235,3.752c-1.956,1.269-5.279,2.771-7.413,3.907c-3.958,2.104-5.326,0.733-5.914,0.45 - C42.141,89.119,6.958,67.815,6.958,67.815z"/> -<path id="Stroke-16" class="st2" d="M2.771,6.835c12.71-6.746,9.414-4.938,9.414-4.938c0.833-0.393,2.017-0.134,3.487,0.593 - L6.557,7.463C5.766,7.145,3.85,6.262,2.771,6.835z"/> -<path id="Stroke-25" class="st2" d="M57.773,84.727c-12.711,6.747,3.453-2.073-9.256,4.674c0.883-0.471,1.435-1.56,1.433-3.139 - l9.258-4.673C59.208,83.168,58.656,84.257,57.773,84.727z"/> -<polygon id="Stroke-27" class="st2" points="6.296,7.463 15.733,2.581 54.648,26.428 45.362,30.937 "/> -<polygon id="Stroke-29" class="st2" points="49.917,39.157 59.27,33.73 59.257,81.161 49.95,86.262 "/> -<path id="Stroke-63" class="st2" d="M45.362,30.937l9.933-4.416c2.513,1.51,3.97,4.179,3.974,7.209l-9.352,5.427 - C49.915,36.126,47.878,32.447,45.362,30.937z"/> -<path id="Stroke-65" class="st2" d="M45.362,30.937c2.516,1.51,4.553,5.189,4.555,8.22l0.033,47.105 - c0.004,3.03-2.031,4.262-4.547,2.752L6.337,65.541c-2.52-1.515-4.559-5.194-4.561-8.225L1.743,10.211 - C1.741,7.18,3.776,5.949,6.296,7.463L45.362,30.937z"/> -<path id="Fill-67" class="st3" d="M2.964,6.672c1.6-0.869,1.137-0.897,9.023-4.71c0.83-0.4,2.215-0.199,3.424,0.527L6.346,7.036 - C5.138,6.309,3.778,6.241,2.964,6.672"/> -<path id="Fill-80" class="st4" d="M58.007,84.124c-12.712,6.747-9.44,4.849-9.44,4.849c0.837-0.543,1.434-1.559,1.432-3.139 - l9.258-5.067C59.257,82.345,58.89,83.654,58.007,84.124"/> -<polygon id="Fill-89" class="st5" points="6.345,7.036 15.27,2.395 54.185,25.873 45.411,30.51 "/> -<polygon id="Fill-91" class="st6" points="50.072,38.576 59.269,33.729 59.273,81.674 50.143,85.871 "/> -<path id="Fill-93" class="st3" d="M45.412,30.509l8.773-4.636c2.514,1.51,5.081,4.826,5.084,7.856l-9.303,5 - C49.964,35.698,47.927,32.019,45.412,30.509"/> -<path id="Fill-127" class="st7" d="M45.412,30.509c2.515,1.51,4.552,5.189,4.554,8.22l0.033,47.105 - c0.004,3.03-2.031,4.262-4.547,2.753L6.386,65.113c-2.52-1.514-4.559-5.194-4.561-8.225L1.793,9.783 - C1.791,6.752,3.826,5.521,6.346,7.035L45.412,30.509z"/> -<path id="Fill-160" class="st8" d="M49.941,85.939l-0.034-47.104c-0.009-2.795-1.884-6.183-4.199-7.582L6.641,7.78 - C4.32,6.394,2.452,7.532,2.448,10.317l0.033,47.105c0.008,2.794,1.88,6.18,4.201,7.573l39.067,23.473 - C48.061,89.858,49.935,88.724,49.941,85.939z M45.708,30.391c2.713,1.631,4.912,5.601,4.916,8.873l0.033,47.107 - c0.002,3.262-2.195,4.59-4.908,2.968L6.682,65.866c-2.714-1.639-4.914-5.61-4.916-8.873L1.733,9.887 - c-0.002-3.271,2.194-4.6,4.908-2.969L45.708,30.391z"/> -<path id="Fill-162" class="st9" d="M45.718,31.31c2.315,1.399,4.191,4.787,4.199,7.581l0.035,47.105 - c-0.005,2.785-1.88,3.919-4.193,2.529L6.693,65.052c-2.322-1.394-4.193-4.78-4.202-7.573L2.459,10.374 - C2.463,7.588,4.33,6.45,6.652,7.836L45.718,31.31z"/> -<path id="Fill-164" class="st4" d="M14.253,57.237c0,0.865-0.576,1.232-1.286,0.819c-0.711-0.415-1.287-1.452-1.287-2.318 - c0-0.865,0.576-1.232,1.287-0.817C13.677,55.334,14.253,56.37,14.253,57.237"/> -<path id="Fill-166" class="st4" d="M18.685,59.817c0,0.866-0.576,1.231-1.287,0.818c-0.711-0.413-1.286-1.45-1.286-2.317 - c0-0.865,0.575-1.232,1.286-0.818C18.109,57.913,18.685,58.951,18.685,59.817"/> -<path id="Fill-168" class="st4" d="M23.116,62.397c0,0.864-0.575,1.232-1.286,0.819c-0.711-0.415-1.287-1.452-1.287-2.318 - c0-0.865,0.576-1.232,1.287-0.817C22.541,60.494,23.116,61.53,23.116,62.397"/> -<path id="Fill-170" class="st4" d="M27.549,64.977c0,0.866-0.576,1.231-1.287,0.818c-0.711-0.414-1.286-1.451-1.286-2.317 - c0-0.865,0.575-1.232,1.286-0.819C26.973,63.073,27.549,64.111,27.549,64.977"/> -<path id="Fill-172" class="st4" d="M31.98,67.556c0,0.864-0.577,1.232-1.287,0.819c-0.71-0.414-1.287-1.451-1.287-2.318 - c0-0.865,0.577-1.232,1.287-0.817C31.403,65.653,31.98,66.689,31.98,67.556"/> -<polygon id="Fill-174" class="st6" points="11.868,25.499 12.912,30.377 11.406,29.508 11.2,28.388 10.202,28.814 7.566,27.291 "/> -<polygon id="Fill-176" class="st6" points="12.139,25.649 12.556,27.637 12.926,27.852 12.664,28.125 13.177,30.537 14.721,28.886 - 15.029,29.066 16.097,27.934 "/> -<path id="Fill-178" class="st6" d="M13.781,30.88l1.726-1.86c-0.086,0.558,0.108,1.237,0.48,1.875 - c0.378,0.648,0.888,1.134,1.317,1.091l-0.549,0.608L13.781,30.88z"/> -<path id="Fill-180" class="st6" d="M16.208,28.333l1.332,0.768c-0.186-0.298-0.418-0.545-0.667-0.688 - C16.622,28.269,16.395,28.25,16.208,28.333"/> -<path id="Fill-182" class="st6" d="M16.883,31.504c0.261,0.15,0.501,0.165,0.689,0.069l-1.38-0.798 - C16.383,31.092,16.623,31.354,16.883,31.504"/> -<path id="Fill-184" class="st6" d="M15.945,30.268l1.872,1.081c0.048-0.074,0.088-0.163,0.117-0.262l-2.11-1.218 - C15.854,30.003,15.896,30.138,15.945,30.268"/> -<path id="Fill-186" class="st6" d="M15.757,29.311c0,0.052,0.002,0.104,0.006,0.158l2.232,1.287C17.998,30.707,18,30.657,18,30.605 - c-0.002-0.06-0.004-0.121-0.009-0.183l-2.227-1.284C15.759,29.194,15.757,29.252,15.757,29.311"/> -<path id="Fill-188" class="st6" d="M15.827,28.808l2.099,1.211c-0.034-0.136-0.077-0.272-0.128-0.403l-1.846-1.068 - C15.901,28.621,15.858,28.71,15.827,28.808"/> -<path id="Fill-190" class="st4" d="M20.029,32.798l-0.328-0.191l-0.129-0.074l0.534-1.497l0.009,0.005l0.566,2.133L20.029,32.798z - M21.596,35.27c-0.039-0.082-0.064-0.152-0.108-0.297L20.1,30.067l-0.009-0.006l-1.295,3.467c-0.018,0.044-0.043,0.07-0.077,0.079 - l0.485,0.281c-0.013-0.031-0.035-0.073-0.034-0.114c-0.001-0.018,0.015-0.062,0.038-0.122l0.274-0.766l0.242,0.141l0.307,0.177 - l0.785,0.454l0.281,1.085c0.022,0.084,0.04,0.147,0.039,0.166c0.001,0.042-0.02,0.058-0.033,0.075L21.596,35.27z"/> -<path id="Fill-192" class="st4" d="M21.64,35.294c0.067-0.006,0.078-0.145,0.077-0.378l-0.012-3.558 - c-0.001-0.113-0.006-0.218-0.072-0.31l0.372,0.216l0.014,4.006c0.002,0.125,0.033,0.227,0.08,0.289L21.64,35.294z"/> -<path id="Fill-194" class="st4" d="M22.384,35.724c0.069-0.007,0.079-0.146,0.077-0.378l-0.013-3.559c0-0.113-0.004-0.219-0.07-0.31 - l0.373,0.216l0.014,4.007c0,0.125,0.032,0.226,0.078,0.289L22.384,35.724z"/> -<path id="Fill-196" class="st4" d="M23.13,36.154c0.069-0.006,0.078-0.145,0.077-0.379l-0.008-2.232c0-0.114-0.005-0.219-0.07-0.309 - l0.373,0.214l0.009,2.682c0.001,0.126,0.031,0.227,0.079,0.29L23.13,36.154z"/> -<path id="Fill-198" class="st4" d="M23.544,32.745c0,0.15-0.091,0.217-0.194,0.156c-0.105-0.06-0.196-0.232-0.198-0.38 - c-0.001-0.149,0.091-0.217,0.195-0.158C23.45,32.424,23.544,32.596,23.544,32.745"/> -<path id="Fill-200" class="st4" d="M37.835,44.641c0.067-0.008,0.076-0.146,0.075-0.379l-0.008-2.233 - c-0.001-0.114-0.005-0.218-0.07-0.309l0.373,0.214l0.009,2.683c0.001,0.124,0.031,0.224,0.079,0.287L37.835,44.641z"/> -<path id="Fill-202" class="st4" d="M38.247,41.231c0,0.15-0.091,0.215-0.194,0.157c-0.105-0.06-0.197-0.232-0.197-0.38 - c-0.002-0.152,0.089-0.218,0.194-0.158C38.153,40.909,38.245,41.082,38.247,41.231"/> -<path id="Fill-204" class="st4" d="M28.196,38.323l-0.304-0.511l-0.005-1.044c-0.225-0.441-0.378-0.695-0.798-0.94 - c-0.486-0.28-0.818,0.059-0.816,0.698c0.002,0.621,0.4,1.363,0.858,1.627c0.389,0.226,0.601,0.014,0.761-0.013l-0.001-0.504 - l0.304,0.482c0.001,0.143,0.001,0.352,0.049,0.434c-0.091-0.028-0.173-0.004-0.251,0.023c-0.308,0.06-0.483,0.203-0.864-0.018 - c-0.66-0.38-1.164-1.363-1.168-2.253c-0.003-0.901,0.553-1.212,1.186-0.847c0.304,0.174,0.556,0.411,0.723,0.852l0.015-0.002 - l-0.004-1.457c0-0.066-0.018-0.148-0.079-0.242l0.381,0.219L28.196,38.323z"/> -<path id="Fill-206" class="st4" d="M30.575,40.244c0,0.083,0.021,0.167,0.054,0.238l-0.434-0.251 - c0.028-0.035,0.052-0.095,0.052-0.178l-0.013-3.638l-0.49-0.282c-0.093-0.053-0.149-0.06-0.199,0.005l-0.003-0.527l1.709,0.987 - l0.001,0.525c-0.053-0.126-0.11-0.182-0.199-0.234l-0.49-0.282L30.575,40.244z"/> -<path id="Fill-208" class="st4" d="M33.28,42.025c0.069-0.006,0.077-0.146,0.077-0.378l-0.013-3.559 - c0-0.113-0.006-0.216-0.071-0.307l0.373,0.214l0.014,4.006c0,0.125,0.032,0.226,0.08,0.289L33.28,42.025z"/> -<path id="Fill-210" class="st4" d="M37.324,41.944c-0.104-0.179-0.243-0.348-0.387-0.431c-0.186-0.108-0.342-0.108-0.341,0.179 - c0.003,0.669,0.935,0.872,0.939,1.971c0.001,0.519-0.298,0.728-0.67,0.514c-0.161-0.093-0.278-0.191-0.364-0.271 - c-0.088-0.073-0.149-0.144-0.197-0.171c-0.025-0.016-0.064-0.003-0.082,0.022l-0.003-0.001l-0.002-0.717 - c0.141,0.298,0.342,0.556,0.555,0.678c0.226,0.131,0.451,0.171,0.449-0.187c-0.001-0.836-0.933-0.972-0.937-2.019 - c-0.001-0.484,0.263-0.629,0.609-0.428c0.121,0.068,0.259,0.209,0.334,0.251c0.031,0.018,0.075,0.031,0.096,0.006L37.324,41.944z"/> -<path id="Fill-212" class="st4" d="M39.716,43.325c-0.104-0.18-0.243-0.349-0.387-0.431c-0.185-0.107-0.342-0.108-0.34,0.178 - c0.002,0.669,0.933,0.872,0.936,1.971c0.002,0.519-0.296,0.728-0.669,0.514c-0.159-0.093-0.277-0.189-0.364-0.27 - c-0.087-0.074-0.148-0.146-0.194-0.172c-0.028-0.017-0.065-0.001-0.084,0.023l-0.002-0.002l-0.003-0.716 - c0.143,0.298,0.343,0.555,0.555,0.678c0.226,0.13,0.451,0.17,0.45-0.188c-0.003-0.835-0.933-0.974-0.937-2.019 - c-0.002-0.483,0.262-0.628,0.608-0.429c0.121,0.071,0.26,0.21,0.334,0.252c0.031,0.018,0.074,0.031,0.096,0.007L39.716,43.325z"/> -<path id="Fill-214" class="st4" d="M24.406,34.554c-0.34,0.198-0.421,0.674-0.259,1.299l1.333-0.774 - C25.139,34.549,24.737,34.361,24.406,34.554 M25.948,35.336l-1.613,0.939c0.34,0.614,0.808,0.865,1.173,0.654 - c0.099-0.058,0.193-0.123,0.263-0.221l0.001,0.595c-0.025,0.016-0.049,0.032-0.074,0.046c-0.499,0.291-1.23-0.112-1.661-1.065 - c-0.434-0.96-0.338-1.853,0.177-2.148c0.538-0.314,1.271,0.291,1.614,1.044C25.865,35.261,25.909,35.296,25.948,35.336"/> -<path id="Fill-216" class="st4" d="M31.529,38.663c-0.342,0.199-0.423,0.674-0.261,1.299l1.334-0.775 - C32.262,38.66,31.858,38.472,31.529,38.663 M33.071,39.447l-1.615,0.938c0.341,0.614,0.81,0.864,1.174,0.653 - c0.099-0.059,0.191-0.124,0.261-0.22l0.003,0.595c-0.024,0.018-0.048,0.032-0.073,0.045c-0.5,0.29-1.23-0.113-1.661-1.064 - c-0.436-0.96-0.339-1.852,0.174-2.149c0.54-0.313,1.273,0.292,1.616,1.046C32.986,39.371,33.032,39.407,33.071,39.447"/> -<path id="Fill-218" class="st4" d="M34.603,40.438c-0.341,0.199-0.421,0.674-0.26,1.301l1.332-0.777 - C35.335,40.435,34.933,40.247,34.603,40.438 M36.144,41.222L34.53,42.16c0.342,0.613,0.81,0.864,1.175,0.653 - c0.099-0.059,0.192-0.123,0.261-0.22l0.003,0.595c-0.025,0.015-0.051,0.03-0.074,0.045c-0.499,0.29-1.23-0.112-1.661-1.065 - c-0.435-0.959-0.338-1.851,0.175-2.148c0.538-0.313,1.272,0.292,1.616,1.046C36.06,41.146,36.105,41.182,36.144,41.222"/> -<polygon id="Fill-220" class="st6" points="39.784,41.617 39.69,41.563 39.69,41.516 39.918,41.647 39.919,41.695 39.824,41.64 - 39.826,42.018 39.785,41.995 "/> -<path id="Fill-222" class="st6" d="M40.213,42.056c-0.002-0.061-0.005-0.133-0.004-0.187h-0.001 - c-0.012,0.043-0.024,0.09-0.039,0.139l-0.055,0.174l-0.03-0.016l-0.05-0.231c-0.014-0.069-0.027-0.131-0.036-0.186h-0.001 - c-0.001,0.051-0.003,0.12-0.005,0.183l-0.008,0.177l-0.038-0.02l0.02-0.413l0.052,0.03l0.052,0.234 - c0.014,0.061,0.023,0.114,0.032,0.161l0.001,0.002c0.007-0.039,0.019-0.08,0.032-0.125l0.054-0.172l0.051,0.028l0.021,0.435 - l-0.038-0.021L40.213,42.056z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 61.115 91.401"><path d="M6.958 67.815C3.82 66.377.18 61.444.205 57.543L.18 9.607C.3 7.645.68 6.5 2.248 5.314s7.806-4.266 8.85-4.688c1.1-.445 2.464-1.176 5.995.917l38.52 23.262c4.56 2.605 5.176 6.29 5.31 8.966s.032 45.68-.22 48.7c-.116 1.388-.517 2.638-2.235 3.752-1.956 1.27-5.28 2.77-7.413 3.907-3.958 2.104-5.326.733-5.914.45C42.14 89.12 6.958 67.815 6.958 67.815" fill="#646567"/><g fill="none"><path d="M6.958 67.815C3.82 66.377.18 61.444.205 57.543L.18 9.607C.3 7.645.68 6.5 2.248 5.314s7.806-4.266 8.85-4.688c1.1-.445 2.464-1.176 5.995.917l38.52 23.262c4.56 2.605 5.176 6.29 5.31 8.966s.032 45.68-.22 48.7c-.116 1.388-.517 2.638-2.235 3.752-1.956 1.27-5.28 2.77-7.413 3.907-3.958 2.104-5.326.733-5.914.45C42.14 89.12 6.958 67.815 6.958 67.815z" stroke="#646567" stroke-width=".262"/><g stroke="#616365" stroke-width="3.139" stroke-linejoin="round"><path d="M2.77 6.835l9.414-4.938c.833-.393 2.017-.134 3.487.593L6.557 7.463c-.8-.318-2.707-1.2-3.786-.628zm55.003 77.892c-12.7 6.747 3.453-2.073-9.256 4.674.883-.47 1.435-1.56 1.433-3.14l9.258-4.673c0 1.58-.552 2.668-1.435 3.138z"/><path d="M6.296 7.463l9.437-4.882 38.915 23.847-9.286 4.5zm43.62 31.694l9.353-5.427-.013 47.43-9.307 5.1z"/><path d="M45.362 30.937l9.933-4.416c2.513 1.5 3.97 4.18 3.974 7.21l-9.352 5.427c-.002-3.03-2.04-6.7-4.555-8.22z"/><path d="M45.362 30.937c2.516 1.5 4.553 5.19 4.555 8.22l.033 47.105c.004 3.03-2.03 4.262-4.547 2.752L6.337 65.54c-2.52-1.515-4.56-5.194-4.56-8.225L1.743 10.21C1.74 7.18 3.776 5.95 6.296 7.463l39.066 23.474z"/></g></g><path d="M2.964 6.672c1.6-.87 1.137-.897 9.023-4.7.83-.4 2.215-.2 3.424.527L6.346 7.036c-1.208-.727-2.568-.795-3.382-.364" fill="#8d8f92"/><path d="M58.007 84.124l-9.44 4.85c.837-.543 1.434-1.56 1.432-3.14l9.258-5.067c0 1.578-.367 2.887-1.25 3.357" fill="#58585b"/><path d="M6.345 7.036l8.925-4.64 38.915 23.478L45.41 30.5z" fill="#6e7072"/><path d="M50.072 38.576l9.197-4.847.004 47.945-9.13 4.197z" fill="#6c6e70"/><path d="M45.412 30.51l8.773-4.636c2.514 1.5 5.08 4.826 5.084 7.856l-9.303 5c-.002-3.03-2.04-6.7-4.554-8.22" fill="#8d8f92"/><path d="M45.412 30.51c2.515 1.5 4.552 5.19 4.554 8.22L50 85.834c.004 3.03-2.03 4.262-4.547 2.753L6.386 65.113c-2.52-1.514-4.56-5.194-4.56-8.225L1.793 9.783C1.79 6.752 3.826 5.52 6.346 7.035L45.412 30.51z" fill="#b1b3b5"/><path d="M49.94 85.94l-.034-47.104c-.01-2.795-1.884-6.183-4.2-7.582L6.64 7.78c-2.32-1.386-4.19-.248-4.193 2.537l.033 47.105c.008 2.794 1.88 6.18 4.2 7.573L45.75 88.468c2.312 1.4 4.186.256 4.192-2.53zM45.708 30.39c2.713 1.63 4.912 5.6 4.916 8.873l.033 47.107c.002 3.262-2.195 4.6-4.908 2.968L6.682 65.866c-2.714-1.64-4.914-5.6-4.916-8.873L1.733 9.887c-.002-3.27 2.194-4.6 4.908-2.97L45.708 30.39z" fill="#e7e8e9"/><path d="M45.718 31.3c2.315 1.4 4.19 4.787 4.2 7.58l.035 47.105c-.005 2.785-1.88 3.92-4.193 2.53L6.693 65.052C4.37 63.658 2.5 60.272 2.49 57.48L2.46 10.374c.004-2.786 1.87-3.924 4.193-2.538L45.718 31.3z" fill="#fefefe"/><path d="M14.253 57.237c0 .865-.576 1.232-1.286.82s-1.287-1.452-1.287-2.318.576-1.232 1.287-.817 1.286 1.45 1.286 2.316m4.432 2.58c0 .866-.576 1.23-1.287.818s-1.286-1.45-1.286-2.317.575-1.232 1.286-.818 1.287 1.45 1.287 2.317m4.43 2.58c0 .864-.575 1.232-1.286.82s-1.287-1.452-1.287-2.318.576-1.232 1.287-.817 1.286 1.45 1.286 2.316m4.434 2.58c0 .866-.576 1.23-1.287.818s-1.286-1.45-1.286-2.317.575-1.232 1.286-.82 1.287 1.452 1.287 2.318m4.43 2.58c0 .864-.577 1.232-1.287.82s-1.287-1.45-1.287-2.318.577-1.232 1.287-.817 1.287 1.45 1.287 2.316" fill="#58585b"/><g fill="#6c6e70"><path d="M11.868 25.5l1.044 4.878-1.506-.87-.206-1.12-.998.426-2.636-1.523zm.272.15l.417 1.988.37.215-.262.273.513 2.412 1.544-1.65.308.18 1.068-1.132z"/><path d="M13.78 30.88l1.726-1.86c-.086.558.108 1.237.48 1.875.378.648.888 1.134 1.317 1.1l-.55.608-2.974-1.714zm2.428-2.547l1.332.768c-.186-.298-.418-.545-.667-.688s-.478-.163-.665-.08"/><path d="M16.883 31.504c.26.15.5.165.7.07l-1.38-.798c.2.317.43.58.7.73m-.938-1.238l1.872 1.08a1 1 0 0 0 .117-.262l-2.1-1.218a3 3 0 0 0 .121.399m-.198-.957l.006.158 2.232 1.287.005-.15v-.183l-2.227-1.284-.007.173m.07-.503l2.1 1.2c-.034-.136-.077-.272-.128-.403l-1.846-1.068c-.05.073-.094.162-.125.26"/></g><g fill="#58585b"><path d="M20.03 32.798l-.328-.19-.13-.074.534-1.497.01.005.566 2.133-.652-.376zm1.567 2.472a1.94 1.94 0 0 1-.108-.297L20.1 30.067l-.01-.006-1.295 3.467c-.018.044-.043.07-.077.08l.485.28c-.013-.03-.035-.073-.034-.114-.001-.018.015-.062.038-.122l.274-.766.242.14.307.177.785.454.28 1.085.04.166c.001.042-.02.058-.033.075l.493.286z"/><path d="M21.64 35.294c.067-.006.078-.145.077-.378l-.012-3.558c-.001-.113-.006-.218-.072-.3l.372.216.014 4.006c.002.125.033.227.08.3l-.46-.265zm.744.43c.07-.007.08-.146.077-.378l-.013-3.56c0-.113-.004-.22-.07-.3l.373.216.014 4.007c0 .125.032.226.078.3l-.46-.265zm.746.43c.07-.006.078-.145.077-.38l-.008-2.232c0-.114-.005-.22-.07-.3l.373.214.01 2.682c.001.126.03.227.08.3l-.46-.266zm.414-3.41c0 .15-.1.217-.194.156s-.196-.232-.198-.38.1-.217.195-.158.197.233.197.382m14.29 11.895c.067-.008.076-.146.075-.38l-.008-2.233c-.001-.114-.005-.218-.07-.3l.373.214.01 2.683c.001.124.03.224.08.287l-.458-.263zm.412-3.4c0 .15-.1.215-.194.157s-.197-.232-.197-.38.1-.218.194-.158a.49.49 0 0 1 .197.38m-10.05-2.906l-.304-.5-.005-1.044c-.225-.44-.378-.695-.798-.94-.486-.28-.818.06-.816.698.002.62.4 1.363.858 1.627.4.226.6.014.76-.013l-.001-.504.304.482c.001.143.001.352.05.434-.1-.028-.173-.004-.25.023-.308.06-.483.203-.864-.018-.66-.38-1.164-1.363-1.168-2.253-.003-.9.553-1.212 1.186-.847a1.54 1.54 0 0 1 .723.852l.015-.002-.004-1.457a.44.44 0 0 0-.079-.242l.38.22.013 3.496zm2.38 1.92a.56.56 0 0 0 .054.238l-.434-.25c.028-.035.052-.095.052-.178l-.013-3.638-.5-.282c-.093-.053-.15-.06-.2.005l-.003-.527 1.7.987.001.525a.39.39 0 0 0-.2-.234l-.5-.282.012 3.637z"/><path d="M33.28 42.025c.07-.006.077-.146.077-.378l-.013-3.56c0-.113-.006-.216-.07-.307l.373.214L33.66 42c0 .125.032.226.08.3l-.46-.265zm4.044-.08c-.104-.18-.243-.348-.387-.43-.186-.108-.342-.108-.34.18.003.67.935.872.94 1.97.001.52-.298.728-.67.514a1.98 1.98 0 0 1-.364-.271c-.088-.073-.15-.144-.197-.17-.025-.016-.064-.003-.082.022l-.003-.001v-.717c.14.298.342.556.555.678.226.13.45.17.45-.187-.001-.836-.933-.972-.937-2.02-.001-.484.263-.63.6-.428.12.068.26.2.334.25.03.018.075.03.096.006l.001.604zm2.392 1.38c-.104-.18-.243-.35-.387-.43-.185-.107-.342-.108-.34.178.002.67.933.872.936 1.97.002.52-.296.728-.67.514a2.04 2.04 0 0 1-.364-.27c-.087-.074-.148-.146-.194-.172-.028-.017-.065-.001-.084.023l-.002-.002-.003-.716c.143.298.343.555.555.678.226.13.45.17.45-.188-.003-.835-.933-.974-.937-2.02-.002-.483.262-.628.608-.43.12.07.26.2.334.252.03.018.074.03.096.007l.001.604zm-15.3-8.77c-.34.198-.42.674-.26 1.3l1.333-.774c-.34-.53-.743-.718-1.074-.525m1.542.782l-1.613.94c.34.614.808.865 1.173.654.1-.058.193-.123.263-.22v.595l-.074.046c-.5.3-1.23-.112-1.66-1.065-.434-.96-.338-1.853.177-2.148.538-.314 1.27.3 1.614 1.044.037.08.08.116.12.156m5.582 3.324c-.342.2-.423.674-.26 1.3l1.334-.775c-.34-.527-.744-.715-1.073-.524m1.542.784l-1.615.938c.34.614.8.864 1.174.653.1-.06.2-.124.26-.22l.003.595c-.024.018-.048.032-.073.045-.5.3-1.23-.113-1.66-1.064-.436-.96-.34-1.852.174-2.15.54-.313 1.273.292 1.616 1.046.036.08.082.116.12.156m1.53.99c-.34.2-.42.674-.26 1.3l1.332-.777c-.34-.527-.742-.715-1.072-.524m1.54.784l-1.614.938c.342.613.8.864 1.175.653a.8.8 0 0 0 .26-.22l.003.595-.074.045c-.5.3-1.23-.112-1.66-1.065-.435-.96-.338-1.85.175-2.148.538-.313 1.272.292 1.616 1.046.035.08.08.116.12.156"/></g><path d="M39.784 41.617l-.094-.054v-.047l.228.13.001.048-.095-.055.002.378-.04-.023zm.43.44l-.004-.187h-.001l-.04.14-.055.174-.03-.016-.05-.23-.036-.186-.006.183-.008.177-.038-.02.02-.413.052.03.052.234.032.16.001.002c.007-.04.02-.08.032-.125l.054-.172.05.028.02.435-.038-.02-.01-.192z" fill="#6c6e70"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/wireless/Access_Point_Outdoor.svg b/src/main/webapp/img/lib/allied_telesis/wireless/Access_Point_Outdoor.svg index d076a088ac4b8a3de28dea507c87d093da0aa136..2b03c5ea3883435024f1d2f12ff25ffd0864734a 100644 --- a/src/main/webapp/img/lib/allied_telesis/wireless/Access_Point_Outdoor.svg +++ b/src/main/webapp/img/lib/allied_telesis/wireless/Access_Point_Outdoor.svg @@ -1,174 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 43.123 166.111" style="enable-background:new 0 0 43.123 166.111;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#626366;stroke-width:2.209;stroke-linecap:round;stroke-linejoin:round;} - .st1{fill:url(#Fill-3_1_);} - .st2{fill:none;stroke:#DFE0DF;stroke-width:0.552;stroke-linecap:round;stroke-linejoin:round;} - .st3{fill:url(#Fill-11_1_);} - .st4{fill:none;stroke:#636466;stroke-width:0.552;stroke-linecap:round;stroke-linejoin:round;} - .st5{fill:#646567;} - .st6{fill:none;stroke:#646567;stroke-width:0.185;} - .st7{fill:none;stroke:#616365;stroke-width:2.215;stroke-linecap:round;stroke-linejoin:round;} - .st8{fill:#8D8F92;} - .st9{fill:#58585B;} - .st10{fill:#96989B;} - .st11{fill:#6C6E70;} - .st12{fill:#6E7072;} - .st13{fill:#B1B3B5;} - .st14{fill:#E7E8E9;} - .st15{fill:#FEFEFE;} - .st16{fill:#D7D8D9;} - .st17{fill:none;stroke:#626366;stroke-width:0.552;stroke-linecap:round;stroke-linejoin:round;} -</style> -<title>icon-wireless-TQ4400e</title> -<desc>Created with Sketch.</desc> -<path id="Stroke-1" class="st0" d="M10.853,151.9c0,0.888-0.721,1.605-1.604,1.605c-0.886,0-1.606-0.717-1.606-1.605V96.154 - c0-0.887,0.72-1.603,1.606-1.603c0.883,0,1.604,0.716,1.604,1.603V151.9z"/> -<linearGradient id="Fill-3_1_" gradientUnits="userSpaceOnUse" x1="-389.0108" y1="11.5671" x2="-389.0108" y2="10.5671" gradientTransform="matrix(3.207 0 0 58.955 1256.9122 -528.4302)"> - <stop offset="0" style="stop-color:#E6E7E7"/> - <stop offset="1" style="stop-color:#939598"/> -</linearGradient> -<path id="Fill-3" class="st1" d="M7.751,96.154V151.9c0,0.887,0.72,1.606,1.605,1.606c0.886,0,1.602-0.719,1.602-1.606V96.154 - c0-0.887-0.716-1.603-1.602-1.603C8.471,94.551,7.751,95.267,7.751,96.154"/> -<path id="Stroke-6" class="st2" d="M9.685,102.686v-5.689"/> -<path id="Stroke-8" class="st0" d="M32.26,162.401c0,0.887-0.718,1.605-1.603,1.605c-0.886,0-1.605-0.718-1.605-1.605v-55.747 - c0-0.887,0.719-1.603,1.605-1.603c0.885,0,1.603,0.716,1.603,1.603V162.401z"/> -<linearGradient id="Fill-11_1_" gradientUnits="userSpaceOnUse" x1="-389.0108" y1="11.5669" x2="-389.0108" y2="10.5669" gradientTransform="matrix(3.207 0 0 58.956 1278.3201 -517.9314)"> - <stop offset="0" style="stop-color:#E6E7E7"/> - <stop offset="1" style="stop-color:#939598"/> -</linearGradient> -<path id="Fill-11" class="st3" d="M29.159,106.654v55.747c0,0.887,0.721,1.606,1.606,1.606c0.886,0,1.601-0.719,1.601-1.606v-55.747 - c0-0.887-0.715-1.603-1.601-1.603C29.88,105.051,29.159,105.767,29.159,106.654"/> -<path id="Stroke-14" class="st2" d="M31.094,113.186v-5.689"/> -<path id="Stroke-16" class="st4" d="M9.623,150.016v-5.689"/> -<path id="Stroke-18" class="st4" d="M30.728,160.694v-5.689"/> -<path id="Fill-20" class="st5" d="M4.91,101.369c-2.215-1.015-4.784-4.496-4.766-7.248c0.019-2.77-0.111-32.44-0.018-33.824 - c0.092-1.385,0.353-2.199,1.46-3.03c1.107-0.83,5.508-3.009,6.245-3.307c0.775-0.314,1.738-0.83,4.229,0.647 - c2.493,1.476,26.14,15.819,27.181,16.414c3.217,1.838,3.652,4.438,3.748,6.327c0.093,1.888,0.023,32.23-0.154,34.355 - c-0.083,0.979-0.365,1.862-1.578,2.648c-1.38,0.895-3.724,1.955-5.231,2.756c-2.793,1.486-3.757,0.518-4.173,0.318 - C29.734,116.401,4.91,101.369,4.91,101.369"/> -<path id="Stroke-22" class="st6" d="M4.91,101.369c-2.215-1.015-4.784-4.496-4.766-7.248c0.019-2.77-0.111-32.44-0.018-33.824 - c0.092-1.385,0.353-2.199,1.46-3.03c1.107-0.83,5.508-3.009,6.245-3.307c0.775-0.314,1.738-0.83,4.229,0.647 - c2.493,1.476,26.14,15.819,27.181,16.414c3.217,1.838,3.652,4.438,3.748,6.327c0.093,1.888,0.023,32.23-0.154,34.355 - c-0.083,0.979-0.365,1.862-1.578,2.648c-1.38,0.895-3.724,1.955-5.231,2.756c-2.793,1.486-3.757,0.518-4.173,0.318 - C29.734,116.401,4.91,101.369,4.91,101.369z"/> -<path id="Stroke-35" class="st7" d="M1.955,58.342c8.969-4.76,6.643-3.484,6.643-3.484c0.588-0.277,1.422-0.095,2.461,0.418 - l-6.432,3.509C4.069,58.56,2.717,57.937,1.955,58.342z"/> -<path id="Stroke-37" class="st7" d="M35.245,114.386l6.532-3.297c0,0.154-0.007,0.302-0.021,0.442l-6.532,3.297 - C35.237,114.689,35.246,114.54,35.245,114.386"/> -<path id="Stroke-40" class="st7" d="M35.224,114.828l6.532-3.297c-0.091,0.876-0.454,1.486-0.99,1.772l-6.531,3.297 - C34.771,116.314,35.134,115.704,35.224,114.828"/> -<path id="Stroke-44" class="st7" d="M40.766,113.303c-8.97,4.761,2.437-1.463-6.531,3.297c0.623-0.331,1.011-1.1,1.01-2.214 - l6.533-3.297C41.778,112.203,41.389,112.971,40.766,113.303z"/> -<polygon id="Stroke-46" class="st7" points="4.443,58.785 11.101,55.34 38.56,72.167 32.008,75.348 "/> -<polygon id="Stroke-48" class="st7" points="35.222,81.148 41.822,77.319 41.813,110.787 35.245,114.386 "/> -<path id="Stroke-82" class="st7" d="M32.008,75.348l7.009-3.116c1.773,1.066,2.802,2.949,2.804,5.087l-6.599,3.829 - C35.221,79.01,33.783,76.413,32.008,75.348z"/> -<path id="Stroke-84" class="st7" d="M32.008,75.348c1.775,1.065,3.213,3.662,3.214,5.8l0.023,33.238 - c0.003,2.138-1.433,3.007-3.208,1.942L4.472,99.765c-1.778-1.069-3.217-3.666-3.219-5.804L1.231,60.724 - c-0.002-2.139,1.434-3.007,3.212-1.939L32.008,75.348z"/> -<path id="Fill-86" class="st8" d="M2.091,58.227c1.129-0.613,0.803-0.633,6.367-3.323c0.585-0.283,1.563-0.141,2.416,0.372 - l-6.396,3.208C3.625,57.971,2.666,57.923,2.091,58.227"/> -<path id="Fill-99" class="st9" d="M40.93,112.878c-8.969,4.761-6.661,3.421-6.661,3.421c0.592-0.383,1.013-1.1,1.011-2.214 - l6.533-3.576C41.813,111.622,41.553,112.546,40.93,112.878"/> -<path id="Fill-101" class="st10" d="M35.28,114.084l6.533-3.297c0,0.154-0.008,0.302-0.021,0.443l-6.533,3.297 - C35.273,114.387,35.282,114.238,35.28,114.084"/> -<path id="Fill-104" class="st11" d="M35.28,114.275l6.555-3.74c-0.091,0.877-0.192,1.945-0.545,2.141l-6.814,3.282 - C34.828,115.762,35.191,115.152,35.28,114.275"/> -<polygon id="Fill-108" class="st12" points="4.478,58.484 10.776,55.21 38.234,71.776 32.043,75.047 "/> -<polygon id="Fill-110" class="st11" points="35.331,80.739 41.821,77.319 41.824,111.149 35.382,114.111 "/> -<path id="Fill-112" class="st8" d="M32.043,75.047l6.19-3.271c1.774,1.065,3.585,3.405,3.588,5.543l-6.564,3.528 - C35.255,78.709,33.817,76.112,32.043,75.047"/> -<path id="Fill-146" class="st13" d="M32.043,75.047c1.774,1.065,3.212,3.662,3.214,5.8l0.022,33.238 - c0.003,2.138-1.432,3.007-3.208,1.942L4.506,99.464c-1.777-1.069-3.217-3.666-3.218-5.804L1.265,60.423 - c-0.001-2.139,1.434-3.008,3.213-1.939L32.043,75.047z"/> -<path id="Fill-179" class="st14" d="M35.239,114.158l-0.024-33.237c-0.006-1.972-1.33-4.363-2.963-5.349L4.686,59.008 - c-1.637-0.978-2.956-0.175-2.959,1.791l0.024,33.237c0.006,1.972,1.326,4.36,2.964,5.344l27.565,16.563 - C33.913,116.924,35.235,116.123,35.239,114.158z M32.252,74.963c1.915,1.151,3.466,3.952,3.468,6.261l0.024,33.238 - c0.001,2.303-1.549,3.24-3.464,2.095L4.715,99.994c-1.914-1.156-3.467-3.958-3.469-6.26L1.223,60.495 - c-0.002-2.308,1.548-3.246,3.463-2.095L32.252,74.963z"/> -<path id="Fill-181" class="st15" d="M32.259,75.612c1.634,0.987,2.957,3.377,2.963,5.349l0.024,33.237 - c-0.004,1.965-1.326,2.766-2.958,1.785L4.723,99.42c-1.639-0.983-2.959-3.372-2.965-5.343L1.736,60.839 - c0.002-1.966,1.32-2.769,2.958-1.79L32.259,75.612z"/> -<path id="Stroke-183" class="st0" d="M13.834,57.454c0,0.888-0.721,1.605-1.604,1.605c-0.886,0-1.606-0.717-1.606-1.605V1.707 - c0-0.887,0.72-1.603,1.606-1.603c0.883,0,1.604,0.716,1.604,1.603V57.454z"/> -<path id="Fill-185" class="st16" d="M13.941,57.454c0,0.888-0.717,1.605-1.603,1.605c-0.885,0-1.605-0.717-1.605-1.605V1.707 - c0-0.887,0.72-1.603,1.605-1.603c0.886,0,1.603,0.716,1.603,1.603C13.941,1.707,13.941,57.454,13.941,57.454z"/> -<path id="Stroke-187" class="st17" d="M12.666,8.24V2.551"/> -<path id="Stroke-189" class="st0" d="M33.741,68.454c0,0.887-0.718,1.605-1.603,1.605c-0.886,0-1.605-0.718-1.605-1.605V12.708 - c0-0.887,0.719-1.603,1.605-1.603c0.885,0,1.603,0.716,1.603,1.603V68.454z"/> -<path id="Fill-191" class="st16" d="M33.848,68.454c0,0.887-0.715,1.605-1.602,1.605c-0.884,0-1.605-0.718-1.605-1.605V12.708 - c0-0.887,0.721-1.603,1.605-1.603c0.887,0,1.602,0.716,1.602,1.603V68.454z"/> -<path id="Stroke-193" class="st17" d="M32.575,19.24v-5.689"/> -<polygon id="Fill-195" class="st11" points="9.033,76.823 9.768,80.265 8.706,79.652 8.561,78.861 7.857,79.162 5.997,78.088 "/> -<polygon id="Fill-197" class="st11" points="9.224,76.929 9.519,78.332 9.78,78.483 9.595,78.676 9.957,80.378 11.046,79.213 - 11.263,79.34 12.017,78.541 "/> -<path id="Fill-199" class="st11" d="M10.383,80.619l1.217-1.312c-0.061,0.394,0.077,0.873,0.339,1.323 - c0.266,0.457,0.627,0.8,0.93,0.77l-0.388,0.428L10.383,80.619z"/> -<path id="Fill-201" class="st11" d="M12.095,78.823l0.939,0.542c-0.131-0.21-0.293-0.385-0.47-0.486S12.226,78.764,12.095,78.823"/> -<path id="Fill-203" class="st11" d="M12.572,81.06c0.184,0.105,0.353,0.116,0.486,0.049l-0.974-0.563 - C12.218,80.769,12.388,80.954,12.572,81.06"/> -<path id="Fill-205" class="st11" d="M11.909,80.187l1.32,0.763c0.034-0.053,0.063-0.115,0.083-0.185l-1.488-0.86 - C11.846,80,11.875,80.095,11.909,80.187"/> -<path id="Fill-207" class="st11" d="M11.777,79.513c0,0.037,0.001,0.074,0.004,0.111l1.575,0.909 - c0.003-0.035,0.003-0.07,0.003-0.107c0-0.042-0.002-0.085-0.006-0.129l-1.571-0.906C11.778,79.43,11.777,79.471,11.777,79.513"/> -<path id="Fill-209" class="st11" d="M11.826,79.158l1.48,0.854c-0.023-0.095-0.053-0.191-0.089-0.284l-1.303-0.753 - C11.878,79.027,11.847,79.089,11.826,79.158"/> -<path id="Fill-211" class="st9" d="M14.791,81.973l-0.231-0.135l-0.091-0.052l0.377-1.056l0.006,0.003l0.399,1.505L14.791,81.973z - M15.896,83.717c-0.027-0.058-0.044-0.107-0.076-0.209l-0.979-3.462l-0.006-0.005l-0.914,2.447c-0.013,0.031-0.03,0.05-0.055,0.056 - l0.343,0.198c-0.009-0.022-0.025-0.051-0.024-0.081c-0.001-0.012,0.01-0.043,0.027-0.085l0.193-0.541l0.171,0.1l0.216,0.125 - l0.555,0.319l0.198,0.766c0.015,0.06,0.028,0.104,0.027,0.118c0.001,0.029-0.014,0.04-0.023,0.052L15.896,83.717z"/> -<path id="Fill-213" class="st9" d="M15.928,83.734c0.048-0.004,0.056-0.103,0.055-0.267l-0.008-2.51 - c-0.001-0.08-0.005-0.154-0.051-0.219l0.262,0.152l0.01,2.827c0.001,0.088,0.023,0.16,0.056,0.204L15.928,83.734z"/> -<path id="Fill-215" class="st9" d="M16.453,84.038c0.049-0.005,0.056-0.103,0.055-0.267l-0.009-2.511c0-0.08-0.004-0.155-0.05-0.219 - l0.263,0.152l0.01,2.828c0,0.088,0.022,0.159,0.055,0.204L16.453,84.038z"/> -<path id="Fill-217" class="st9" d="M16.979,84.341c0.049-0.004,0.056-0.103,0.055-0.268l-0.006-1.575c0-0.08-0.003-0.154-0.05-0.218 - l0.264,0.152l0.006,1.892c0.001,0.089,0.022,0.16,0.056,0.204L16.979,84.341z"/> -<path id="Fill-219" class="st9" d="M17.271,81.936c0,0.105-0.063,0.153-0.137,0.11s-0.137-0.164-0.138-0.269 - c-0.001-0.104,0.063-0.153,0.136-0.111C17.206,81.709,17.271,81.831,17.271,81.936"/> -<path id="Fill-221" class="st9" d="M27.355,90.329c0.048-0.006,0.055-0.104,0.054-0.268l-0.006-1.576 - c-0.001-0.08-0.004-0.153-0.05-0.218l0.264,0.152l0.006,1.893c0.001,0.087,0.022,0.158,0.056,0.203L27.355,90.329z"/> -<path id="Fill-223" class="st9" d="M27.646,87.923c0,0.106-0.064,0.152-0.137,0.111c-0.074-0.042-0.139-0.163-0.139-0.268 - c0-0.107,0.063-0.154,0.137-0.112C27.58,87.696,27.645,87.819,27.646,87.923"/> -<path id="Fill-225" class="st9" d="M20.554,85.871l-0.215-0.361l-0.003-0.736c-0.159-0.312-0.266-0.491-0.563-0.664 - c-0.343-0.197-0.576,0.042-0.576,0.493c0.002,0.438,0.282,0.962,0.605,1.148c0.275,0.159,0.425,0.01,0.537-0.009v-0.356l0.214,0.34 - c0.001,0.102,0.001,0.249,0.035,0.307c-0.064-0.02-0.122-0.004-0.178,0.016c-0.216,0.042-0.339,0.143-0.609-0.012 - c-0.466-0.269-0.822-0.963-0.824-1.59c-0.002-0.637,0.39-0.856,0.837-0.598c0.215,0.123,0.392,0.29,0.51,0.601l0.011-0.002 - l-0.004-1.028c0-0.046-0.011-0.104-0.054-0.171l0.268,0.155L20.554,85.871z"/> -<path id="Fill-227" class="st9" d="M22.233,87.226c0,0.059,0.016,0.118,0.037,0.168l-0.306-0.177 - c0.021-0.025,0.037-0.067,0.037-0.126l-0.009-2.566l-0.346-0.199c-0.064-0.038-0.104-0.043-0.141,0.003l-0.001-0.372l1.206,0.697 - l0.001,0.37c-0.038-0.089-0.078-0.129-0.141-0.165l-0.346-0.199L22.233,87.226z"/> -<path id="Fill-229" class="st9" d="M24.141,88.484c0.049-0.004,0.055-0.104,0.055-0.267l-0.009-2.511c0-0.08-0.005-0.153-0.05-0.217 - L24.4,85.64l0.01,2.827c0,0.088,0.022,0.159,0.056,0.204L24.141,88.484z"/> -<path id="Fill-231" class="st9" d="M26.994,88.426c-0.073-0.126-0.172-0.245-0.272-0.304c-0.132-0.075-0.242-0.075-0.241,0.126 - c0.002,0.472,0.659,0.615,0.661,1.391c0.001,0.367-0.21,0.514-0.471,0.363c-0.114-0.066-0.197-0.135-0.257-0.191 - c-0.063-0.052-0.106-0.102-0.139-0.121c-0.018-0.011-0.046-0.002-0.058,0.016l-0.002-0.001l-0.002-0.506 - c0.1,0.21,0.242,0.392,0.391,0.478c0.16,0.093,0.319,0.121,0.318-0.131c-0.001-0.591-0.658-0.687-0.661-1.425 - c-0.001-0.341,0.184-0.445,0.429-0.302c0.085,0.048,0.183,0.148,0.236,0.177c0.021,0.012,0.052,0.022,0.067,0.004L26.994,88.426z"/> -<path id="Fill-233" class="st9" d="M28.682,89.401c-0.073-0.127-0.171-0.246-0.272-0.304c-0.131-0.075-0.242-0.076-0.241,0.125 - c0.002,0.472,0.659,0.616,0.661,1.391c0.001,0.367-0.209,0.514-0.472,0.363c-0.113-0.066-0.196-0.134-0.257-0.19 - c-0.062-0.053-0.105-0.104-0.137-0.122c-0.019-0.012-0.047-0.001-0.058,0.017l-0.003-0.002l-0.002-0.505 - c0.101,0.21,0.243,0.391,0.392,0.478c0.16,0.092,0.319,0.12,0.318-0.132c-0.003-0.59-0.659-0.688-0.662-1.425 - c-0.001-0.341,0.185-0.444,0.429-0.303c0.086,0.05,0.184,0.149,0.236,0.178c0.021,0.012,0.051,0.022,0.068,0.005 - C28.682,88.975,28.682,89.401,28.682,89.401z"/> -<path id="Fill-235" class="st9" d="M17.88,83.212c-0.24,0.14-0.297,0.476-0.184,0.917l0.942-0.546 - C18.398,83.209,18.112,83.076,17.88,83.212 M18.967,83.764l-1.138,0.663c0.24,0.433,0.572,0.61,0.828,0.461 - c0.071-0.041,0.136-0.087,0.186-0.156l0.001,0.419c-0.018,0.012-0.035,0.023-0.053,0.033c-0.351,0.206-0.868-0.079-1.172-0.751 - c-0.305-0.678-0.238-1.307,0.124-1.516c0.38-0.222,0.898,0.205,1.14,0.737C18.908,83.711,18.94,83.736,18.967,83.764"/> -<path id="Fill-237" class="st9" d="M22.905,86.112c-0.24,0.14-0.299,0.476-0.184,0.917l0.941-0.547 - C23.423,86.109,23.137,85.977,22.905,86.112 M23.993,86.665l-1.139,0.661c0.239,0.434,0.572,0.611,0.827,0.462 - c0.071-0.042,0.136-0.088,0.186-0.155l0.002,0.419c-0.018,0.013-0.034,0.022-0.052,0.032c-0.353,0.205-0.868-0.08-1.172-0.75 - c-0.307-0.678-0.239-1.307,0.122-1.517c0.381-0.221,0.899,0.206,1.141,0.738C23.933,86.612,23.966,86.636,23.993,86.665"/> -<path id="Fill-239" class="st9" d="M25.074,87.364c-0.24,0.141-0.297,0.476-0.183,0.917l0.94-0.547 - C25.591,87.361,25.307,87.229,25.074,87.364 M26.162,87.917l-1.14,0.662c0.241,0.432,0.573,0.61,0.829,0.461 - c0.071-0.042,0.136-0.087,0.186-0.155l0.001,0.419c-0.018,0.011-0.035,0.021-0.052,0.032c-0.352,0.205-0.868-0.079-1.172-0.751 - c-0.307-0.677-0.238-1.306,0.123-1.516c0.38-0.221,0.899,0.206,1.14,0.738C26.102,87.864,26.135,87.888,26.162,87.917"/> -<polygon id="Fill-241" class="st11" points="28.731,88.196 28.665,88.157 28.665,88.125 28.825,88.217 28.826,88.251 28.759,88.212 - 28.76,88.479 28.732,88.463 "/> -<path id="Fill-243" class="st11" d="M29.032,88.505c-0.001-0.042-0.003-0.094-0.002-0.131h-0.001 - c-0.009,0.03-0.018,0.063-0.028,0.097l-0.038,0.123l-0.022-0.011l-0.035-0.163c-0.01-0.049-0.019-0.093-0.025-0.132 - c-0.001,0.036-0.002,0.086-0.004,0.13l-0.006,0.125l-0.026-0.015l0.013-0.292l0.036,0.022l0.037,0.165 - c0.01,0.043,0.017,0.081,0.023,0.114l0.001,0.001c0.006-0.028,0.014-0.056,0.022-0.088l0.038-0.122l0.037,0.021l0.014,0.306 - L29.04,88.64L29.032,88.505z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 43.123 166.111"><style><![CDATA[.S{fill:none}.T{stroke-linejoin:round}.U{stroke:#626366}.V{stroke-linecap:round}.W{stroke-width:2.209}.X{stroke-width:.552}.Y{fill:#6c6e70}]]></style><path d="M10.853 151.9c0 .888-.72 1.605-1.604 1.605s-1.606-.717-1.606-1.605V96.154c0-.887.72-1.603 1.606-1.603s1.604.716 1.604 1.603V151.9z" class="S T U W"/><linearGradient id="A" gradientUnits="userSpaceOnUse" x1="9.355" y1="153.508" x2="9.355" y2="94.553"><stop offset="0" stop-color="#e6e7e7"/><stop offset="1" stop-color="#939598"/></linearGradient><path d="M7.75 96.154V151.9c0 .887.72 1.606 1.605 1.606s1.602-.72 1.602-1.606V96.154a1.6 1.6 0 0 0-1.602-1.603c-.885 0-1.605.716-1.605 1.603" fill="url(#A)"/><g class="S T"><path d="M9.685 102.686v-5.69" stroke="#dfe0df" class="V X"/><path d="M32.26 162.4c0 .887-.718 1.605-1.603 1.605s-1.605-.718-1.605-1.605v-55.747c0-.887.72-1.603 1.605-1.603a1.6 1.6 0 0 1 1.603 1.603V162.4z" class="U W"/></g><linearGradient id="B" gradientUnits="userSpaceOnUse" x1="30.762" y1="164.007" x2="30.762" y2="105.051"><stop offset="0" stop-color="#e6e7e7"/><stop offset="1" stop-color="#939598"/></linearGradient><path d="M29.16 106.654V162.4a1.61 1.61 0 0 0 1.606 1.606c.886 0 1.6-.72 1.6-1.606v-55.747a1.6 1.6 0 0 0-1.601-1.603c-.885 0-1.606.716-1.606 1.603" fill="url(#B)"/><g class="S T V X"><path d="M31.094 113.186v-5.69" stroke="#dfe0df"/><path d="M9.623 150.016v-5.7m21.105 16.368v-5.7" stroke="#636466"/></g><path d="M4.9 101.37C2.695 100.354.126 96.873.144 94.12L.126 60.297c.092-1.385.353-2.2 1.46-3.03s5.508-3.01 6.245-3.307c.775-.314 1.738-.83 4.23.647L39.24 71.02c3.217 1.838 3.652 4.438 3.748 6.327s.023 32.23-.154 34.355c-.083.98-.365 1.862-1.578 2.648-1.38.895-3.724 1.955-5.23 2.756-2.793 1.486-3.757.518-4.173.318C29.734 116.4 4.9 101.37 4.9 101.37" fill="#646567"/><g class="S"><path d="M4.9 101.37C2.695 100.354.126 96.873.144 94.12L.126 60.297c.092-1.385.353-2.2 1.46-3.03s5.508-3.01 6.245-3.307c.775-.314 1.738-.83 4.23.647L39.24 71.02c3.217 1.838 3.652 4.438 3.748 6.327s.023 32.23-.154 34.355c-.083.98-.365 1.862-1.578 2.648-1.38.895-3.724 1.955-5.23 2.756-2.793 1.486-3.757.518-4.173.318C29.734 116.4 4.9 101.37 4.9 101.37z" stroke="#646567" stroke-width=".185"/><g stroke="#616365" stroke-width="2.215" class="T"><path d="M1.955 58.342l6.643-3.484c.588-.277 1.422-.095 2.46.418l-6.432 3.51c-.558-.225-1.9-.848-2.672-.443z"/><g class="V"><path d="M35.245 114.386l6.532-3.297-.02.442-6.532 3.297.02-.442"/><path d="M35.224 114.828l6.532-3.297c-.09.876-.454 1.486-1 1.772l-6.53 3.297c.536-.286.9-.896.99-1.772"/></g><path d="M40.766 113.303c-8.97 4.76 2.437-1.463-6.53 3.297.623-.33 1-1.1 1-2.214l6.533-3.297c0 1.114-.4 1.882-1.012 2.214zM4.443 58.785L11.1 55.34l27.46 16.827-6.552 3.18z"/><path d="M35.222 81.148l6.6-3.83-.01 33.468-6.568 3.6z"/><path d="M32.008 75.348l7.01-3.116c1.773 1.066 2.802 2.95 2.804 5.087l-6.6 3.83c-.001-2.138-1.44-4.735-3.214-5.8z"/><path d="M32.008 75.348c1.775 1.065 3.213 3.662 3.214 5.8l.023 33.238c.003 2.138-1.433 3.007-3.208 1.942L4.472 99.765c-1.778-1.07-3.217-3.666-3.22-5.804L1.23 60.724c-.002-2.14 1.434-3.007 3.212-1.94l27.565 16.563z"/></g></g><path d="M2.09 58.227c1.13-.613.803-.633 6.367-3.323.585-.283 1.563-.14 2.416.372l-6.396 3.208c-.853-.513-1.812-.56-2.387-.257" fill="#8d8f92"/><path d="M40.93 112.878l-6.66 3.42c.592-.383 1.013-1.1 1.01-2.214l6.533-3.576c0 1.113-.26 2.037-.883 2.37" fill="#58585b"/><path d="M35.28 114.084l6.533-3.297-.02.443-6.533 3.297a3.94 3.94 0 0 0 .021-.443" fill="#96989b"/><path d="M35.28 114.275l6.555-3.74c-.09.877-.192 1.945-.545 2.14l-6.814 3.282c.352-.196.715-.806.804-1.683" class="Y"/><path d="M4.478 58.484l6.298-3.274 27.458 16.566-6.19 3.27z" fill="#6e7072"/><path d="M35.33 80.74l6.5-3.42.003 33.83-6.442 2.962z" class="Y"/><path d="M32.043 75.047l6.2-3.27c1.774 1.065 3.585 3.405 3.588 5.543l-6.564 3.528c-.002-2.138-1.44-4.735-3.214-5.8" fill="#8d8f92"/><path d="M32.043 75.047c1.774 1.065 3.212 3.662 3.214 5.8l.022 33.238c.003 2.138-1.432 3.007-3.208 1.942L4.506 99.464c-1.777-1.07-3.217-3.666-3.218-5.804l-.023-33.237c-.001-2.14 1.434-3.008 3.213-1.94l27.565 16.563z" fill="#b1b3b5"/><path d="M35.24 114.158l-.024-33.237c-.006-1.972-1.33-4.363-2.963-5.35L4.686 59.008c-1.637-.978-2.956-.175-2.96 1.79l.024 33.237c.006 1.972 1.326 4.36 2.964 5.344l27.565 16.563c1.633.98 2.955.18 2.96-1.785zm-2.987-39.195c1.915 1.15 3.466 3.952 3.468 6.26l.024 33.238c.001 2.303-1.55 3.24-3.464 2.095L4.715 99.994c-1.914-1.156-3.467-3.958-3.47-6.26l-.023-33.24C1.22 58.187 2.77 57.25 4.686 58.4l27.566 16.563z" fill="#e7e8e9"/><path d="M32.26 75.612c1.634.987 2.957 3.377 2.963 5.35l.024 33.237c-.004 1.965-1.326 2.766-2.958 1.785L4.723 99.42c-1.64-.983-2.96-3.372-2.965-5.343L1.736 60.84c.002-1.966 1.32-2.77 2.958-1.8L32.26 75.612z" fill="#fefefe"/><path d="M13.834 57.454c0 .888-.72 1.605-1.604 1.605s-1.606-.717-1.606-1.605V1.707c0-.887.72-1.603 1.606-1.603s1.604.716 1.604 1.603v55.747z" class="S T U W"/><path d="M13.94 57.454c0 .888-.717 1.605-1.603 1.605s-1.605-.717-1.605-1.605V1.707c0-.887.72-1.603 1.605-1.603a1.6 1.6 0 0 1 1.603 1.603v55.747z" fill="#d7d8d9"/><g class="S T U"><path d="M12.666 8.24V2.55" class="V X"/><path d="M33.74 68.454c0 .887-.718 1.605-1.603 1.605s-1.605-.718-1.605-1.605V12.708c0-.887.72-1.603 1.605-1.603a1.6 1.6 0 0 1 1.603 1.603v55.746z" class="W"/></g><path d="M33.848 68.454a1.6 1.6 0 0 1-1.602 1.605c-.884 0-1.605-.718-1.605-1.605V12.708c0-.887.72-1.603 1.605-1.603a1.6 1.6 0 0 1 1.602 1.603v55.746z" fill="#d7d8d9"/><path d="M32.575 19.24v-5.69" class="S T U V X"/><g class="Y"><path d="M9.033 76.823l.735 3.442-1.062-.613-.145-.8-.704.3-1.86-1.074zm.19.107l.295 1.403.26.15-.185.193.362 1.702 1.1-1.165.217.127.754-.8z"/><path d="M10.383 80.62l1.217-1.312c-.06.394.077.873.34 1.323.266.457.627.8.93.77l-.388.428-2.098-1.2zm1.712-1.797l.94.542c-.13-.2-.293-.385-.47-.486s-.338-.115-.47-.056"/><path d="M12.572 81.06c.184.105.353.116.486.05l-.974-.563c.134.223.304.408.488.514m-.662-.874l1.32.763c.034-.053.063-.115.083-.185l-1.488-.86c.022.095.05.2.085.282m-.133-.674l.004.1 1.575.9c.003-.035.003-.07.003-.107l-.006-.13-1.57-.906a1.22 1.22 0 0 0-.005.122m.048-.354l1.48.854a2.17 2.17 0 0 0-.09-.284l-1.303-.753a.66.66 0 0 0-.088.183"/></g><g fill="#58585b"><path d="M14.79 81.973l-.23-.135-.09-.052.377-1.056.006.003.4 1.505-.46-.265zm1.105 1.744c-.027-.058-.044-.107-.076-.21l-.98-3.462-.006-.005-.914 2.447c-.013.03-.03.05-.055.056l.343.198c-.01-.022-.025-.05-.024-.08-.001-.012.01-.043.027-.085l.193-.54.17.1.216.125.555.32.198.766.027.118c.001.03-.014.04-.023.052l.347.202z"/><path d="M15.928 83.734c.048-.004.056-.103.055-.267l-.008-2.5c-.001-.08-.005-.154-.05-.22l.262.152.01 2.827c.001.088.023.16.056.204l-.324-.187z"/><path d="M16.453 84.038c.05-.005.056-.103.055-.267l-.01-2.5c0-.08-.004-.155-.05-.22l.263.152.01 2.828c0 .088.022.16.055.204l-.324-.187zm.527.302c.05-.004.056-.103.055-.268l-.006-1.575c0-.08-.003-.154-.05-.218l.264.152.006 1.892c.001.1.022.16.056.204l-.325-.187z"/><path d="M17.27 81.936c0 .105-.063.153-.137.1a.36.36 0 0 1-.138-.27c-.001-.106.063-.153.136-.1s.14.165.14.27m10.084 8.404c.048-.006.055-.104.054-.268l-.006-1.576c-.001-.08-.004-.153-.05-.218l.264.152.006 1.893c.001.087.022.158.056.203l-.324-.186z"/><path d="M27.646 87.923c0 .106-.064.152-.137.1s-.14-.163-.14-.268.063-.154.137-.112.138.165.14.27m-7.092-2.053l-.215-.36-.003-.736c-.16-.312-.266-.5-.563-.664-.343-.197-.576.042-.576.493.002.438.282.962.605 1.148.275.16.425.01.537-.01v-.356l.214.34c.001.102.001.25.035.307a.27.27 0 0 0-.178.016c-.216.042-.34.143-.6-.012-.466-.27-.822-.963-.824-1.6s.4-.856.837-.598a1.09 1.09 0 0 1 .51.601l.01-.002-.004-1.028a.31.31 0 0 0-.054-.171l.268.155.01 2.467z"/><path d="M22.233 87.226a.44.44 0 0 0 .037.168l-.306-.177c.02-.025.037-.067.037-.126l-.01-2.566-.346-.2c-.064-.038-.104-.043-.14.003l-.001-.372 1.206.697.001.37c-.038-.1-.078-.13-.14-.165l-.346-.2.01 2.566zm1.907 1.258c.05-.004.055-.104.055-.267l-.01-2.5c0-.08-.005-.153-.05-.217l.263.15v2.827a.34.34 0 0 0 .056.204l-.325-.187zm2.854-.058c-.073-.126-.172-.245-.272-.304-.132-.075-.242-.075-.24.126.002.472.66.615.66 1.4.001.367-.2.514-.47.363a1.4 1.4 0 0 1-.257-.191l-.14-.12c-.018-.01-.046-.002-.058.016l-.002-.001-.002-.506c.1.2.242.392.4.478.16.093.32.12.318-.13-.001-.6-.658-.687-.66-1.425-.001-.34.184-.445.43-.302.085.048.183.148.236.177.02.012.052.022.067.004l.001.426zm1.688.974c-.073-.127-.17-.246-.272-.304-.13-.075-.242-.076-.24.125.002.472.66.616.66 1.4.001.367-.2.514-.472.363-.113-.066-.196-.134-.257-.2s-.105-.104-.137-.122c-.02-.012-.047-.001-.058.017h-.003l-.002-.505c.1.2.243.4.392.478.16.092.32.12.318-.132-.003-.6-.66-.688-.662-1.425-.001-.34.185-.444.43-.303.086.05.184.15.236.178.02.012.05.022.068.005v.426z"/><path d="M17.88 83.212c-.24.14-.297.476-.184.917l.942-.546c-.24-.374-.526-.507-.758-.37m1.087.552l-1.138.663c.24.433.572.6.828.46a.57.57 0 0 0 .186-.156l.001.42-.053.033c-.35.206-.868-.08-1.172-.75-.305-.678-.238-1.307.124-1.516.38-.222.898.205 1.14.737.025.057.057.082.084.1m3.938 2.356c-.24.14-.3.476-.184.917l.94-.547c-.24-.373-.525-.505-.757-.37m1.088.553l-1.14.66c.24.434.572.6.827.462.07-.042.136-.088.186-.155l.002.42c-.018.013-.034.022-.052.032-.353.205-.868-.08-1.172-.75-.307-.678-.24-1.307.122-1.517.38-.22.9.206 1.14.738.025.057.058.08.085.1m1.084.71c-.24.14-.297.476-.183.917l.94-.547c-.24-.373-.524-.505-.757-.37m1.088.553l-1.14.662c.24.432.573.6.83.46a.59.59 0 0 0 .186-.155l.001.42-.052.032c-.352.205-.868-.08-1.172-.75s-.238-1.306.123-1.516c.38-.22.9.206 1.14.738.025.057.058.08.085.1"/></g><path d="M28.73 88.196l-.066-.04v-.032l.16.092.001.034-.067-.04v.267l-.028-.016zm.302.31l-.002-.13h-.001l-.03.095-.038.123-.022-.01-.035-.163-.025-.132-.004.13-.006.125-.026-.015.013-.292.036.022.037.165.023.114.023-.087.038-.122.037.02.014.306-.026-.015-.008-.135z" class="Y"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/allied_telesis/wireless/Laptop_Wireless.svg b/src/main/webapp/img/lib/allied_telesis/wireless/Laptop_Wireless.svg index 865a294b07b69089218603ca79fb032155163303..71041d49dc61929d9f300ba340aae6b9ee0f65de 100644 --- a/src/main/webapp/img/lib/allied_telesis/wireless/Laptop_Wireless.svg +++ b/src/main/webapp/img/lib/allied_telesis/wireless/Laptop_Wireless.svg @@ -1,276 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" - id="Layer_1" inkscape:version="0.92.3 (2405546, 2018-03-11)" sodipodi:docname="Laptop_Wireless2.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 96.172 79.399" - style="enable-background:new 0 0 96.172 79.399;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:none;stroke:#626366;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;} - .st1{fill:#898B8E;} - .st2{fill:#BBBDBF;} - .st3{fill:#B3B5B7;} - .st4{fill:none;stroke:#E1E2E3;stroke-linecap:round;stroke-linejoin:round;} - .st5{fill:#FEFEFE;} - .st6{fill:none;stroke:#626366;} - .st7{fill:#C4CACE;} - .st8{fill:none;stroke:#636466;} - .st9{fill:none;stroke:#626366;stroke-linecap:round;stroke-linejoin:round;} - .st10{fill:#231F20;} - .st11{fill:#626366;} - .st12{fill:none;stroke:#636466;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;} - .st13{fill:#636466;} - .st14{fill:#F5F6F6;} - .st15{fill:none;stroke:#626366;stroke-width:1.854;stroke-linecap:round;stroke-linejoin:round;} - .st16{fill:none;stroke:#626366;stroke-width:1.246;stroke-linecap:round;stroke-linejoin:round;} - .st17{fill:#727378;} - .st18{fill:#A1A4A6;} -</style> -<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview1287" inkscape:current-layer="Layer_1" inkscape:cx="70.189334" inkscape:cy="34.731773" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-height="1017" inkscape:window-maximized="1" inkscape:window-width="1920" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="10.6" objecttolerance="10" pagecolor="#ffffff" showgrid="false"> - </sodipodi:namedview> -<title id="title1056">icon-laptop-wireless</title> -<desc id="desc1058">Created with Sketch.</desc> -<polygon id="Stroke-1" class="st0" points="30.79,65.566 56.303,52.023 56.306,55.893 30.792,69.436 "/> -<polygon id="Stroke-2" class="st0" points="1.5,47.967 27.014,34.425 56.303,52.024 30.79,65.567 "/> -<polygon id="Stroke-4" class="st0" points="30.79,65.566 30.792,69.436 1.503,51.838 1.5,47.966 "/> -<polyline id="Stroke-6" class="st0" points="1.5,47.967 30.79,65.567 30.792,69.436 "/> -<polygon id="Stroke-9" class="st0" points="64.491,20.5 68.011,19.907 59.817,52.412 56.299,53.005 "/> -<polygon id="Stroke-10" class="st0" points="35.34,2.092 38.859,1.5 68.011,19.907 64.491,20.5 "/> -<polygon id="Stroke-12" class="st0" points="64.491,20.5 56.299,53.005 27.146,34.598 35.34,2.092 "/> -<polygon id="Fill-15" class="st1" points="30.79,65.566 56.303,52.023 56.306,55.893 30.792,69.436 "/> -<polygon id="Fill-16" class="st2" points="1.5,47.967 27.014,34.425 56.303,52.024 30.79,65.567 "/> -<polygon id="Fill-17" class="st3" points="30.79,65.566 30.792,69.436 1.503,51.838 1.5,47.966 "/> -<polyline id="Stroke-18" class="st4" points="1.896,48.204 30.79,65.566 30.792,69.031 "/> -<polygon id="Fill-20" class="st1" points="64.491,20.5 68.011,19.907 59.817,52.412 56.299,53.005 "/> -<polygon id="Fill-21" class="st1" points="35.34,2.092 38.859,1.5 68.011,19.907 64.491,20.5 "/> -<polygon id="Fill-22" class="st3" points="64.491,20.5 56.299,53.005 27.146,34.598 35.34,2.092 "/> -<polygon id="Fill-23" class="st5" points="59.719,22.054 53.72,45.855 32.374,32.375 38.373,8.575 "/> -<polygon id="Stroke-24" class="st6" points="59.719,22.054 53.72,45.855 32.374,32.375 38.373,8.575 "/> -<path id="Fill-25" class="st7" d="M57.416,22.751c-0.777-0.455-15.551-9.099-16.942-7.598c-1.06,1.11-4.52,10.715-4.703,11.221 - l3.76-14.799L57.416,22.751z"/> -<polygon id="Fill-27" class="st5" points="16.049,53.3 20.314,51.035 26.888,54.986 22.622,57.25 "/> -<polygon id="Stroke-28" class="st8" points="16.049,53.3 20.314,51.035 26.888,54.986 22.622,57.25 "/> -<path id="Stroke-29" class="st9" d="M56.467,53.247L26.731,34.27"/> -<polygon id="Fill-30" class="st10" points="16.342,43.444 17.799,42.671 17.799,42.953 16.342,43.726 "/> -<polygon id="Fill-31" class="st5" points="15.084,42.689 16.543,41.917 17.799,42.671 16.342,43.444 "/> -<polygon id="Fill-32" class="st11" points="16.342,43.444 16.342,43.726 15.084,42.971 15.084,42.689 "/> -<polygon id="Fill-33" class="st10" points="18.201,44.563 19.66,43.79 19.66,44.072 18.201,44.845 "/> -<polygon id="Fill-34" class="st5" points="16.945,43.807 18.402,43.034 19.66,43.789 18.201,44.563 "/> -<polygon id="Fill-35" class="st11" points="18.201,44.563 18.201,44.845 16.945,44.09 16.945,43.807 "/> -<polygon id="Fill-36" class="st10" points="20.154,45.736 21.611,44.962 21.613,45.244 20.154,46.018 "/> -<polygon id="Fill-37" class="st5" points="18.898,44.98 20.355,44.208 21.611,44.961 20.154,45.736 "/> -<polygon id="Fill-38" class="st11" points="20.154,45.736 20.154,46.018 18.898,45.263 18.898,44.98 "/> -<polygon id="Fill-39" class="st10" points="22.021,46.857 23.478,46.084 23.48,46.367 22.021,47.14 "/> -<polygon id="Fill-40" class="st5" points="20.766,46.103 22.223,45.329 23.479,46.084 22.022,46.858 "/> -<polygon id="Fill-41" class="st11" points="22.021,46.857 22.021,47.14 20.765,46.384 20.765,46.103 "/> -<polygon id="Fill-42" class="st10" points="23.949,48.016 25.408,47.243 25.408,47.526 23.949,48.299 "/> -<polygon id="Fill-43" class="st5" points="22.693,47.262 24.15,46.488 25.408,47.242 23.949,48.016 "/> -<polygon id="Fill-44" class="st11" points="23.949,48.016 23.949,48.299 22.693,47.543 22.693,47.262 "/> -<polygon id="Fill-45" class="st10" points="25.816,49.139 27.275,48.365 27.275,48.647 25.816,49.42 "/> -<polygon id="Fill-46" class="st5" points="24.553,48.379 26.012,47.606 27.276,48.364 25.817,49.139 "/> -<polygon id="Fill-47" class="st11" points="25.816,49.139 25.816,49.42 24.552,48.662 24.552,48.379 "/> -<polygon id="Fill-48" class="st10" points="27.77,50.312 29.226,49.538 29.229,49.821 27.77,50.594 "/> -<polygon id="Fill-49" class="st5" points="26.512,49.557 27.971,48.783 29.227,49.537 27.77,50.312 "/> -<polygon id="Fill-50" class="st11" points="27.77,50.312 27.77,50.594 26.514,49.839 26.511,49.557 "/> -<polygon id="Fill-51" class="st10" points="29.631,51.43 31.088,50.656 31.088,50.938 29.631,51.712 "/> -<polygon id="Fill-52" class="st5" points="28.373,50.674 29.83,49.901 31.088,50.655 29.631,51.43 "/> -<polygon id="Fill-53" class="st11" points="29.631,51.43 29.631,51.712 28.373,50.957 28.373,50.674 "/> -<polygon id="Fill-54" class="st10" points="31.461,52.529 32.918,51.756 32.918,52.037 31.461,52.811 "/> -<polygon id="Fill-55" class="st5" points="30.203,51.773 31.662,51 32.918,51.756 31.461,52.529 "/> -<polygon id="Fill-56" class="st11" points="31.461,52.529 31.461,52.811 30.203,52.056 30.203,51.773 "/> -<polygon id="Fill-57" class="st10" points="33.32,53.647 34.779,52.874 34.779,53.157 33.32,53.93 "/> -<polygon id="Fill-58" class="st5" points="32.064,52.893 33.521,52.119 34.779,52.873 33.32,53.647 "/> -<polygon id="Fill-59" class="st11" points="33.32,53.647 33.32,53.93 32.064,53.174 32.064,52.893 "/> -<polygon id="Fill-60" class="st10" points="35.273,54.82 36.732,54.047 36.732,54.329 35.273,55.103 "/> -<polygon id="Fill-61" class="st5" points="34.018,54.065 35.474,53.292 36.732,54.047 35.273,54.82 "/> -<polygon id="Fill-62" class="st11" points="35.273,54.82 35.273,55.103 34.017,54.347 34.017,54.065 "/> -<polygon id="Fill-63" class="st10" points="37.141,55.943 38.6,55.168 38.6,55.451 37.141,56.224 "/> -<polygon id="Fill-64" class="st5" points="35.885,55.188 37.342,54.414 38.6,55.168 37.141,55.943 "/> -<polygon id="Fill-65" class="st11" points="37.141,55.943 37.141,56.224 35.885,55.47 35.885,55.188 "/> -<polygon id="Fill-66" class="st10" points="39.068,57.101 40.527,56.328 40.527,56.61 39.068,57.383 "/> -<polygon id="Fill-67" class="st5" points="37.813,56.346 39.27,55.573 40.528,56.327 39.069,57.101 "/> -<polygon id="Fill-68" class="st11" points="39.068,57.101 39.068,57.383 37.812,56.628 37.812,56.346 "/> -<polygon id="Fill-69" class="st10" points="40.893,58.197 42.349,57.423 42.352,57.705 40.893,58.478 "/> -<polygon id="Fill-70" class="st5" points="39.635,57.442 41.094,56.668 42.35,57.423 40.893,58.197 "/> -<polygon id="Fill-71" class="st11" points="40.893,58.197 40.893,58.478 39.637,57.723 39.634,57.441 "/> -<polygon id="Fill-72" class="st10" points="18.342,42.319 19.799,41.546 19.799,41.828 18.342,42.601 "/> -<polygon id="Fill-73" class="st5" points="17.084,41.564 18.543,40.792 19.799,41.546 18.342,42.319 "/> -<polygon id="Fill-74" class="st11" points="18.342,42.319 18.342,42.601 17.084,41.846 17.084,41.564 "/> -<polygon id="Fill-75" class="st10" points="20.201,43.438 21.66,42.665 21.66,42.947 20.201,43.72 "/> -<polygon id="Fill-76" class="st5" points="18.945,42.682 20.402,41.909 21.66,42.664 20.201,43.438 "/> -<polygon id="Fill-77" class="st11" points="20.201,43.438 20.201,43.72 18.945,42.965 18.945,42.682 "/> -<polygon id="Fill-78" class="st10" points="22.154,44.611 23.611,43.837 23.613,44.119 22.154,44.893 "/> -<polygon id="Fill-79" class="st5" points="20.898,43.855 22.355,43.083 23.611,43.836 22.154,44.611 "/> -<polygon id="Fill-80" class="st11" points="22.154,44.611 22.154,44.893 20.898,44.138 20.898,43.855 "/> -<polygon id="Fill-81" class="st10" points="24.021,45.732 25.478,44.959 25.48,45.242 24.021,46.015 "/> -<polygon id="Fill-82" class="st5" points="22.766,44.978 24.223,44.204 25.479,44.959 24.022,45.733 "/> -<polygon id="Fill-83" class="st11" points="24.021,45.732 24.021,46.015 22.765,45.259 22.765,44.978 "/> -<polygon id="Fill-84" class="st10" points="25.949,46.891 27.408,46.118 27.408,46.401 25.949,47.174 "/> -<polygon id="Fill-85" class="st5" points="24.693,46.137 26.15,45.363 27.408,46.117 25.949,46.891 "/> -<polygon id="Fill-86" class="st11" points="25.949,46.891 25.949,47.174 24.693,46.418 24.693,46.137 "/> -<polygon id="Fill-87" class="st10" points="27.816,48.014 29.275,47.24 29.275,47.522 27.816,48.295 "/> -<polygon id="Fill-88" class="st5" points="26.553,47.254 28.012,46.481 29.276,47.239 27.817,48.014 "/> -<polygon id="Fill-89" class="st11" points="27.816,48.014 27.816,48.295 26.552,47.537 26.552,47.254 "/> -<polygon id="Fill-90" class="st10" points="29.77,49.187 31.226,48.413 31.229,48.696 29.77,49.469 "/> -<polygon id="Fill-91" class="st5" points="28.512,48.432 29.971,47.658 31.227,48.412 29.77,49.187 "/> -<polygon id="Fill-92" class="st11" points="29.77,49.187 29.77,49.469 28.514,48.714 28.511,48.432 "/> -<polygon id="Fill-93" class="st10" points="31.631,50.305 33.088,49.531 33.088,49.813 31.631,50.587 "/> -<polygon id="Fill-94" class="st5" points="30.373,49.549 31.83,48.776 33.088,49.53 31.631,50.305 "/> -<polygon id="Fill-95" class="st11" points="31.631,50.305 31.631,50.587 30.373,49.832 30.373,49.549 "/> -<polygon id="Fill-96" class="st10" points="33.461,51.404 34.918,50.631 34.918,50.912 33.461,51.686 "/> -<polygon id="Fill-97" class="st5" points="32.203,50.648 33.662,49.875 34.918,50.631 33.461,51.404 "/> -<polygon id="Fill-98" class="st11" points="33.461,51.404 33.461,51.686 32.203,50.931 32.203,50.648 "/> -<polygon id="Fill-99" class="st10" points="35.32,52.522 36.779,51.749 36.779,52.032 35.32,52.805 "/> -<polygon id="Fill-100" class="st5" points="34.064,51.768 35.521,50.994 36.779,51.748 35.32,52.522 "/> -<polygon id="Fill-101" class="st11" points="35.32,52.522 35.32,52.805 34.064,52.049 34.064,51.768 "/> -<polygon id="Fill-102" class="st10" points="37.273,53.695 38.732,52.922 38.732,53.204 37.273,53.978 "/> -<polygon id="Fill-103" class="st5" points="36.018,52.94 37.474,52.167 38.732,52.922 37.273,53.695 "/> -<polygon id="Fill-104" class="st11" points="37.273,53.695 37.273,53.978 36.017,53.222 36.017,52.94 "/> -<polygon id="Fill-105" class="st10" points="39.141,54.818 40.6,54.043 40.6,54.326 39.141,55.099 "/> -<polygon id="Fill-106" class="st5" points="37.885,54.063 39.342,53.289 40.6,54.043 39.141,54.818 "/> -<polygon id="Fill-107" class="st11" points="39.141,54.818 39.141,55.099 37.885,54.345 37.885,54.063 "/> -<polygon id="Fill-108" class="st10" points="41.068,55.976 42.527,55.203 42.527,55.485 41.068,56.258 "/> -<polygon id="Fill-109" class="st5" points="39.813,55.221 41.27,54.448 42.528,55.202 41.069,55.976 "/> -<polygon id="Fill-110" class="st11" points="41.068,55.976 41.068,56.258 39.812,55.503 39.812,55.221 "/> -<polygon id="Fill-111" class="st10" points="42.893,57.072 44.349,56.298 44.352,56.58 42.893,57.353 "/> -<polygon id="Fill-112" class="st5" points="41.635,56.317 43.094,55.543 44.35,56.298 42.893,57.072 "/> -<polygon id="Fill-113" class="st11" points="42.893,57.072 42.893,57.353 41.637,56.598 41.634,56.316 "/> -<polygon id="Fill-114" class="st10" points="20.467,41.194 21.924,40.421 21.924,40.703 20.467,41.476 "/> -<polygon id="Fill-115" class="st5" points="19.209,40.439 20.668,39.667 21.924,40.421 20.467,41.194 "/> -<polygon id="Fill-116" class="st11" points="20.467,41.194 20.467,41.476 19.209,40.721 19.209,40.439 "/> -<polygon id="Fill-117" class="st10" points="22.326,42.313 23.785,41.54 23.785,41.822 22.326,42.595 "/> -<polygon id="Fill-118" class="st5" points="21.07,41.557 22.527,40.784 23.785,41.539 22.326,42.313 "/> -<polygon id="Fill-119" class="st11" points="22.326,42.313 22.326,42.595 21.07,41.84 21.07,41.557 "/> -<polygon id="Fill-120" class="st10" points="24.279,43.486 25.736,42.712 25.738,42.994 24.279,43.768 "/> -<polygon id="Fill-121" class="st5" points="23.023,42.73 24.48,41.958 25.736,42.711 24.279,43.486 "/> -<polygon id="Fill-122" class="st11" points="24.279,43.486 24.279,43.768 23.023,43.013 23.023,42.73 "/> -<polygon id="Fill-123" class="st10" points="26.146,44.607 27.603,43.834 27.605,44.117 26.146,44.89 "/> -<polygon id="Fill-124" class="st5" points="24.891,43.853 26.348,43.079 27.604,43.834 26.147,44.608 "/> -<polygon id="Fill-125" class="st11" points="26.146,44.607 26.146,44.89 24.89,44.134 24.89,43.853 "/> -<polygon id="Fill-126" class="st10" points="28.074,45.766 29.533,44.993 29.533,45.276 28.074,46.049 "/> -<polygon id="Fill-127" class="st5" points="26.818,45.012 28.275,44.238 29.533,44.992 28.074,45.766 "/> -<polygon id="Fill-128" class="st11" points="28.074,45.766 28.074,46.049 26.818,45.293 26.818,45.012 "/> -<polygon id="Fill-129" class="st10" points="29.941,46.889 31.4,46.115 31.4,46.397 29.941,47.17 "/> -<polygon id="Fill-130" class="st5" points="28.678,46.129 30.137,45.356 31.401,46.114 29.942,46.889 "/> -<polygon id="Fill-131" class="st11" points="29.941,46.889 29.941,47.17 28.677,46.412 28.677,46.129 "/> -<polygon id="Fill-132" class="st10" points="31.895,48.062 33.352,47.288 33.354,47.571 31.895,48.344 "/> -<polygon id="Fill-133" class="st5" points="30.637,47.307 32.096,46.533 33.352,47.287 31.895,48.062 "/> -<polygon id="Fill-134" class="st11" points="31.895,48.062 31.895,48.344 30.639,47.589 30.636,47.307 "/> -<polygon id="Fill-135" class="st10" points="33.756,49.18 35.213,48.406 35.213,48.688 33.756,49.462 "/> -<polygon id="Fill-136" class="st5" points="32.498,48.424 33.955,47.651 35.213,48.405 33.756,49.18 "/> -<polygon id="Fill-137" class="st11" points="33.756,49.18 33.756,49.462 32.498,48.707 32.498,48.424 "/> -<polygon id="Fill-138" class="st10" points="35.586,50.279 37.043,49.506 37.043,49.787 35.586,50.561 "/> -<polygon id="Fill-139" class="st5" points="34.328,49.523 35.787,48.75 37.043,49.506 35.586,50.279 "/> -<polygon id="Fill-140" class="st11" points="35.586,50.279 35.586,50.561 34.328,49.806 34.328,49.523 "/> -<polygon id="Fill-141" class="st10" points="37.445,51.397 38.904,50.624 38.904,50.907 37.445,51.68 "/> -<polygon id="Fill-142" class="st5" points="36.189,50.643 37.646,49.869 38.904,50.623 37.445,51.397 "/> -<polygon id="Fill-143" class="st11" points="37.445,51.397 37.445,51.68 36.189,50.924 36.189,50.643 "/> -<polygon id="Fill-144" class="st10" points="39.398,52.57 40.857,51.797 40.857,52.079 39.398,52.853 "/> -<polygon id="Fill-145" class="st5" points="38.143,51.815 39.599,51.042 40.857,51.797 39.398,52.57 "/> -<polygon id="Fill-146" class="st11" points="39.398,52.57 39.398,52.853 38.142,52.097 38.142,51.815 "/> -<polygon id="Fill-147" class="st10" points="41.266,53.693 42.725,52.918 42.725,53.201 41.266,53.974 "/> -<polygon id="Fill-148" class="st5" points="40.01,52.938 41.467,52.164 42.725,52.918 41.266,53.693 "/> -<polygon id="Fill-149" class="st11" points="41.266,53.693 41.266,53.974 40.01,53.22 40.01,52.938 "/> -<polygon id="Fill-150" class="st10" points="43.193,54.851 44.652,54.078 44.652,54.36 43.193,55.133 "/> -<polygon id="Fill-151" class="st5" points="41.938,54.096 43.395,53.323 44.653,54.077 43.194,54.851 "/> -<polygon id="Fill-152" class="st11" points="43.193,54.851 43.193,55.133 41.937,54.378 41.937,54.096 "/> -<polygon id="Fill-153" class="st10" points="45.018,55.947 46.474,55.173 46.477,55.455 45.018,56.228 "/> -<polygon id="Fill-154" class="st5" points="43.76,55.192 45.219,54.418 46.475,55.173 45.018,55.947 "/> -<polygon id="Fill-155" class="st11" points="45.018,55.947 45.018,56.228 43.762,55.473 43.759,55.191 "/> -<polygon id="Fill-156" class="st10" points="14.949,45.121 16.408,44.348 16.408,44.623 14.949,45.396 "/> -<polygon id="Fill-157" class="st5" points="13.691,44.366 15.15,43.592 16.408,44.347 14.949,45.121 "/> -<polygon id="Fill-158" class="st11" points="14.949,45.121 14.949,45.396 13.693,44.641 13.691,44.366 "/> -<polygon id="Fill-159" class="st10" points="16.719,46.184 18.176,45.411 18.176,45.686 16.719,46.459 "/> -<polygon id="Fill-160" class="st5" points="15.461,45.429 16.92,44.656 18.176,45.41 16.719,46.184 "/> -<polygon id="Fill-161" class="st11" points="16.719,46.184 16.719,46.459 15.461,45.704 15.461,45.429 "/> -<polygon id="Fill-162" class="st10" points="18.578,47.302 20.037,46.529 20.037,46.803 18.578,47.576 "/> -<polygon id="Fill-163" class="st5" points="17.322,46.547 18.779,45.774 20.037,46.528 18.578,47.302 "/> -<polygon id="Fill-164" class="st11" points="18.578,47.302 18.578,47.576 17.322,46.823 17.322,46.547 "/> -<polygon id="Fill-165" class="st10" points="34.137,56.621 35.596,55.848 35.596,56.123 34.137,56.896 "/> -<polygon id="Fill-166" class="st5" points="32.879,55.866 34.338,55.092 35.596,55.847 34.137,56.621 "/> -<polygon id="Fill-167" class="st11" points="34.137,56.621 34.137,56.896 32.881,56.141 32.879,55.866 "/> -<polygon id="Fill-168" class="st10" points="35.906,57.684 37.363,56.911 37.363,57.186 35.906,57.959 "/> -<polygon id="Fill-169" class="st5" points="34.648,56.929 36.107,56.156 37.363,56.91 35.906,57.684 "/> -<polygon id="Fill-170" class="st11" points="35.906,57.684 35.906,57.959 34.648,57.204 34.648,56.929 "/> -<polygon id="Fill-171" class="st10" points="37.766,58.802 39.225,58.029 39.225,58.303 37.766,59.076 "/> -<polygon id="Fill-172" class="st5" points="36.51,58.047 37.967,57.274 39.225,58.028 37.766,58.802 "/> -<polygon id="Fill-173" class="st11" points="37.766,58.802 37.766,59.076 36.51,58.323 36.51,58.047 "/> -<polygon id="Fill-174" class="st10" points="32.15,55.469 33.609,54.695 33.609,54.969 32.15,55.743 "/> -<polygon id="Fill-175" class="st5" points="19.256,47.721 20.715,46.947 33.61,54.695 32.151,55.469 "/> -<polygon id="Fill-176" class="st11" points="32.15,55.469 32.15,55.743 19.255,47.995 19.255,47.721 "/> -<polygon id="Fill-177" class="st10" points="22.678,39.936 24.135,39.163 24.135,39.445 22.678,40.218 "/> -<polygon id="Fill-178" class="st5" points="21.42,39.181 22.879,38.408 24.135,39.162 22.678,39.936 "/> -<polygon id="Fill-179" class="st11" points="22.678,39.936 22.678,40.218 21.42,39.463 21.42,39.181 "/> -<polygon id="Fill-180" class="st10" points="24.537,41.054 25.996,40.281 25.996,40.563 24.537,41.336 "/> -<polygon id="Fill-181" class="st5" points="23.281,40.298 24.738,39.525 25.996,40.28 24.537,41.054 "/> -<polygon id="Fill-182" class="st11" points="24.537,41.054 24.537,41.336 23.281,40.581 23.281,40.298 "/> -<polygon id="Fill-183" class="st10" points="26.49,42.228 27.947,41.454 27.949,41.736 26.49,42.51 "/> -<polygon id="Fill-184" class="st5" points="25.234,41.472 26.691,40.699 27.947,41.453 26.49,42.228 "/> -<polygon id="Fill-185" class="st11" points="26.49,42.228 26.49,42.51 25.234,41.755 25.234,41.472 "/> -<polygon id="Fill-186" class="st10" points="28.357,43.349 29.814,42.576 29.816,42.858 28.357,43.632 "/> -<polygon id="Fill-187" class="st5" points="27.101,42.594 28.559,41.82 29.815,42.575 28.358,43.349 "/> -<polygon id="Fill-188" class="st11" points="28.357,43.349 28.357,43.632 27.101,42.876 27.101,42.594 "/> -<polygon id="Fill-189" class="st10" points="30.285,44.507 31.744,43.734 31.744,44.017 30.285,44.79 "/> -<polygon id="Fill-190" class="st5" points="29.029,43.753 30.486,42.979 31.744,43.733 30.285,44.507 "/> -<polygon id="Fill-191" class="st11" points="30.285,44.507 30.285,44.79 29.029,44.034 29.029,43.753 "/> -<polygon id="Fill-192" class="st10" points="32.152,45.63 33.611,44.856 33.611,45.138 32.152,45.911 "/> -<polygon id="Fill-193" class="st5" points="30.889,44.87 32.348,44.097 33.612,44.855 32.153,45.63 "/> -<polygon id="Fill-194" class="st11" points="32.152,45.63 32.152,45.911 30.888,45.153 30.888,44.87 "/> -<polygon id="Fill-195" class="st10" points="34.105,46.803 35.562,46.029 35.564,46.312 34.105,47.085 "/> -<polygon id="Fill-196" class="st5" points="32.848,46.048 34.307,45.274 35.563,46.028 34.106,46.803 "/> -<polygon id="Fill-197" class="st11" points="34.105,46.803 34.105,47.085 32.849,46.33 32.847,46.048 "/> -<polygon id="Fill-198" class="st10" points="35.967,47.921 37.424,47.147 37.424,47.429 35.967,48.203 "/> -<polygon id="Fill-199" class="st5" points="34.709,47.165 36.166,46.392 37.424,47.146 35.967,47.921 "/> -<polygon id="Fill-200" class="st11" points="35.967,47.921 35.967,48.203 34.709,47.448 34.709,47.165 "/> -<polygon id="Fill-201" class="st10" points="37.797,49.021 39.254,48.248 39.254,48.529 37.797,49.303 "/> -<polygon id="Fill-202" class="st5" points="36.539,48.265 37.998,47.492 39.254,48.247 37.797,49.021 "/> -<polygon id="Fill-203" class="st11" points="37.797,49.021 37.797,49.303 36.539,48.548 36.539,48.265 "/> -<polygon id="Fill-204" class="st10" points="39.656,50.138 41.115,49.365 41.115,49.648 39.656,50.421 "/> -<polygon id="Fill-205" class="st5" points="38.4,49.384 39.857,48.61 41.115,49.364 39.656,50.138 "/> -<polygon id="Fill-206" class="st11" points="39.656,50.138 39.656,50.421 38.4,49.665 38.4,49.384 "/> -<polygon id="Fill-207" class="st10" points="41.609,51.312 43.068,50.539 43.068,50.821 41.609,51.595 "/> -<polygon id="Fill-208" class="st5" points="40.354,50.557 41.811,49.783 43.069,50.538 41.61,51.312 "/> -<polygon id="Fill-209" class="st11" points="41.609,51.312 41.609,51.595 40.353,50.839 40.353,50.557 "/> -<polygon id="Fill-210" class="st10" points="43.477,52.434 44.936,51.66 44.936,51.943 43.477,52.716 "/> -<polygon id="Fill-211" class="st5" points="42.221,51.679 43.678,50.905 44.936,51.659 43.477,52.434 "/> -<polygon id="Fill-212" class="st11" points="43.477,52.434 43.477,52.716 42.221,51.961 42.221,51.679 "/> -<polygon id="Fill-213" class="st10" points="45.404,53.592 46.863,52.819 46.863,53.101 45.404,53.874 "/> -<polygon id="Fill-214" class="st5" points="44.148,52.837 45.605,52.064 46.863,52.818 45.404,53.592 "/> -<polygon id="Fill-215" class="st11" points="45.404,53.592 45.404,53.874 44.148,53.119 44.148,52.837 "/> -<polygon id="Fill-216" class="st10" points="47.229,54.689 48.686,53.915 48.688,54.197 47.229,54.97 "/> -<polygon id="Fill-217" class="st5" points="45.971,53.933 47.43,53.16 48.686,53.914 47.229,54.689 "/> -<polygon id="Fill-218" class="st11" points="47.229,54.689 47.229,54.97 45.972,54.215 45.971,53.933 "/> -<path id="Stroke-262" inkscape:connector-curvature="0" class="st12" d="M57.016,40.939c5.625-2.985,11.248-5.971,16.871-8.956 - c0.423-0.224,0.992-0.174,1.619,0.202l-16.871,8.956C58.008,40.765,57.44,40.716,57.016,40.939z"/> -<path id="Stroke-276" inkscape:connector-curvature="0" class="st12" d="M94.426,69.308l-16.871,8.956 - c0.459-0.245,0.744-0.81,0.747-1.628l16.87-8.954C95.172,68.498,94.885,69.065,94.426,69.308z"/> -<polygon id="Stroke-281" class="st12" points="58.635,41.141 75.506,32.185 92.792,42.571 75.919,51.528 "/> -<polygon id="Stroke-282" class="st12" points="78.285,55.794 95.158,46.84 95.172,67.682 78.302,76.636 "/> -<path id="Stroke-317" class="st12" d="M75.919,51.528c1.308,0.784,2.363,2.689,2.366,4.267l0.017,20.841 - c-0.003,1.571-1.057,2.213-2.363,1.428L58.654,67.677c-1.306-0.785-2.365-2.696-2.368-4.266l-0.013-20.843 - c-0.001-1.575,1.056-2.211,2.362-1.427L75.919,51.528z"/> -<path id="Stroke-351" inkscape:connector-curvature="0" class="st12" d="M75.919,51.528l16.873-8.957 - c1.306,0.785,2.36,2.692,2.366,4.269l-16.873,8.955C78.282,54.217,77.227,52.312,75.919,51.528z"/> -<polygon id="Fill-439" class="st3" points="58.354,41.162 75.225,32.206 92.511,42.592 75.638,51.549 "/> -<polygon id="Fill-440" class="st1" points="78.005,55.815 94.878,46.86 94.892,67.702 78.022,76.657 "/> -<path id="Fill-472" class="st13" d="M77.323,76.237l-0.017-20.842c0-1.111-0.744-2.455-1.667-3.008L58.354,42 - c-0.921-0.553-1.664-0.102-1.664,1.008l0.016,20.841c0,1.107,0.745,2.452,1.667,3.009l17.285,10.386 - C76.579,77.796,77.323,77.344,77.323,76.237z M75.638,51.548c1.308,0.784,2.364,2.689,2.367,4.267l0.016,20.841 - c-0.003,1.571-1.056,2.213-2.363,1.428L58.374,67.697c-1.307-0.785-2.365-2.696-2.368-4.266l-0.014-20.843 - c-0.001-1.575,1.057-2.211,2.362-1.427L75.638,51.548z"/> -<path id="Fill-474" inkscape:connector-curvature="0" class="st14" d="M75.64,52.387c0.923,0.553,1.667,1.897,1.667,3.008 - l0.017,20.842c0,1.107-0.745,1.559-1.665,1.007L58.373,66.858c-0.921-0.557-1.667-1.902-1.667-3.009l-0.015-20.841 - c0-1.11,0.743-1.56,1.664-1.008L75.64,52.387z"/> -<path id="Fill-508" class="st11" d="M68.91,60.398c0,1.479-1.061,2.04-2.368,1.255c-1.307-0.787-2.368-2.623-2.368-4.102 - c0-1.48,1.061-2.042,2.368-1.255C67.849,57.083,68.91,58.92,68.91,60.398"/> -<path id="Stroke-510" class="st15" d="M66.538,60.118v9.665"/> -<path id="Fill-512" class="st5" d="M67.923,59.142c0,0.347-0.249,0.479-0.558,0.294c-0.305-0.183-0.553-0.614-0.553-0.961 - s0.248-0.479,0.553-0.295C67.674,58.366,67.923,58.795,67.923,59.142"/> -<path id="Stroke-514" class="st16" d="M72.418,62.674c-0.418-3.54-2.914-7.571-5.938-9.39c-2.992-1.797-5.465-0.807-5.922,2.154"/> -<path id="Stroke-516" class="st16" d="M75.046,61.858c-0.072-0.28-0.152-0.562-0.24-0.844c-1.351-4.399-4.492-8.802-8.156-11.006 - c-3.871-2.325-7.154-1.498-8.367,1.681"/> -<path id="Stroke-262-9" inkscape:connector-curvature="0" class="st2" d="M56.735,40.96c5.625-2.985,11.248-5.971,16.871-8.956 - c0.423-0.224,0.992-0.174,1.619,0.202l-16.871,8.956C57.727,40.786,57.159,40.737,56.735,40.96z"/> -<path id="Stroke-276-0" inkscape:connector-curvature="0" class="st17" d="M94.146,69.328l-16.871,8.956 - c0.459-0.245,0.744-0.81,0.747-1.628l16.87-8.954C94.892,68.518,94.605,69.085,94.146,69.328z"/> -<path id="Stroke-351-2" inkscape:connector-curvature="0" class="st18" d="M75.638,51.549l16.873-8.957 - c1.306,0.785,2.36,2.692,2.366,4.269l-16.873,8.955C78.001,54.238,76.946,52.333,75.638,51.549z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 96.172 79.399"><style><![CDATA[.T{fill:#fefefe}.U{fill:#626366}.V{fill:#231f20}.W{fill:none}.X{stroke-linejoin:round}.Y{stroke:#626366}.Z{stroke-linecap:round}.a{fill:#898b8e}.b{fill:#b3b5b7}]]></style><g stroke-width="3" class="W X Y"><path d="M30.8 65.566l25.513-13.543.003 3.87-25.514 13.543z"/><path d="M1.5 47.967l25.514-13.542 29.29 17.6L30.8 65.567z"/><path d="M30.8 65.566l.002 3.87-29.29-17.598-.003-3.872z"/><path d="M1.5 47.967l29.3 17.6.002 3.87" class="Z"/><path d="M64.49 20.5l3.52-.593-8.194 32.505-3.518.593z"/><path d="M35.34 2.092l3.52-.592L68.01 19.907l-3.52.593z"/><path d="M64.49 20.5L56.3 53.005 27.146 34.598 35.34 2.092z"/></g><path d="M30.8 65.566l25.513-13.543.003 3.87-25.514 13.543z" class="a"/><path d="M1.5 47.967l25.514-13.542 29.29 17.6L30.8 65.567z" fill="#bbbdbf"/><path d="M30.8 65.566l.002 3.87-29.29-17.598-.003-3.872z" class="b"/><path d="M1.896 48.204L30.8 65.566l.002 3.465" stroke="#e1e2e3" class="W X Z"/><g class="a"><path d="M64.49 20.5l3.52-.593-8.194 32.505-3.518.593z"/><path d="M35.34 2.092l3.52-.592L68.01 19.907l-3.52.593z"/></g><path d="M64.49 20.5L56.3 53.005 27.146 34.598 35.34 2.092z" class="b"/><path d="M59.72 22.054l-6 23.8-21.346-13.48 6-23.8z" class="T"/><path d="M59.72 22.054l-6 23.8-21.346-13.48 6-23.8z" class="W Y"/><path d="M57.416 22.75c-.777-.455-15.55-9.1-16.942-7.598-1.06 1.1-4.52 10.715-4.703 11.22l3.76-14.8L57.416 22.75z" fill="#c4cace"/><path d="M16.05 53.3l4.265-2.265 6.574 3.95-4.266 2.264z" class="T"/><g class="W"><path d="M16.05 53.3l4.265-2.265 6.574 3.95-4.266 2.264z" stroke="#636466"/><path d="M56.467 53.247L26.73 34.27" class="X Y Z"/></g><path d="M16.342 43.444l1.457-.773v.282l-1.457.773z" class="V"/><path d="M15.084 42.69l1.46-.772 1.256.754-1.457.773z" class="T"/><path d="M16.342 43.444v.282l-1.258-.755v-.282z" class="U"/><path d="M18.2 44.563l1.46-.773v.282l-1.46.773z" class="V"/><path d="M16.945 43.807l1.457-.773 1.258.755-1.46.774z" class="T"/><path d="M18.2 44.563v.282l-1.256-.755v-.283z" class="U"/><path d="M20.154 45.736l1.457-.774.002.282-1.46.774z" class="V"/><path d="M18.898 44.98l1.457-.772 1.256.753-1.457.775z" class="T"/><path d="M20.154 45.736v.282l-1.256-.755v-.283z" class="U"/><path d="M22.02 46.857l1.457-.773.002.283-1.46.773z" class="V"/><path d="M20.766 46.103l1.457-.774 1.256.755-1.457.774z" class="T"/><path d="M22.02 46.857v.283l-1.256-.756v-.28z" class="U"/><path d="M23.95 48.016l1.46-.773v.283l-1.46.773z" class="V"/><use xlink:href="#B" class="T"/><path d="M23.95 48.016v.283l-1.256-.756v-.28z" class="U"/><path d="M25.816 49.14l1.46-.774v.282l-1.46.773z" class="V"/><path d="M24.553 48.38l1.46-.773 1.264.758-1.46.775z" class="T"/><path d="M25.816 49.14v.28l-1.264-.758v-.283z" class="U"/><path d="M27.77 50.312l1.456-.774.003.283-1.46.773z" class="V"/><path d="M26.512 49.557l1.46-.774 1.256.754-1.457.775z" class="T"/><path d="M27.77 50.312v.282l-1.256-.755-.003-.282z" class="U"/><path d="M29.63 51.43l1.457-.774v.282l-1.457.774z" class="V"/><path d="M28.373 50.674l1.457-.773 1.258.754-1.457.775z" class="T"/><path d="M29.63 51.43v.282l-1.258-.755v-.283z" class="U"/><path d="M31.46 52.53l1.457-.773v.28l-1.457.774z" class="V"/><path d="M30.203 51.773l1.46-.773 1.256.756-1.457.773z" class="T"/><path d="M31.46 52.53v.282l-1.258-.755v-.283z" class="U"/><path d="M33.32 53.647l1.46-.773v.283l-1.46.773z" class="V"/><use xlink:href="#B" x="9.371" y="5.631" class="T"/><path d="M33.32 53.647v.283l-1.256-.756v-.28z" class="U"/><path d="M35.273 54.82l1.46-.773v.282l-1.46.774z" class="V"/><path d="M34.018 54.065l1.456-.773 1.258.755-1.46.773z" class="T"/><path d="M35.273 54.82v.283l-1.256-.756v-.282z" class="U"/><path d="M37.14 55.943l1.46-.775v.283l-1.46.773z" class="V"/><path d="M35.885 55.188l1.457-.774 1.258.754-1.46.775z" class="T"/><path d="M37.14 55.943v.28l-1.256-.754v-.282z" class="U"/><path d="M39.068 57.1l1.46-.773v.282l-1.46.773z" class="V"/><path d="M37.813 56.346l1.457-.773 1.258.754-1.46.774z" class="T"/><path d="M39.068 57.1v.282l-1.256-.755v-.282z" class="U"/><path d="M40.893 58.197l1.456-.774.003.282-1.46.773z" class="V"/><path d="M39.635 57.442l1.46-.774 1.256.755-1.457.774z" class="T"/><path d="M40.893 58.197v.28l-1.256-.755-.003-.282z" class="U"/><path d="M18.342 42.32l1.457-.773v.282l-1.457.773z" class="V"/><path d="M17.084 41.564l1.46-.772 1.256.754-1.457.773z" class="T"/><path d="M18.342 42.32v.282l-1.258-.755v-.282z" class="U"/><path d="M20.2 43.438l1.46-.773v.282l-1.46.773z" class="V"/><path d="M18.945 42.682l1.457-.773 1.258.755-1.46.774z" class="T"/><path d="M20.2 43.438v.282l-1.256-.755v-.283z" class="U"/><path d="M22.154 44.61l1.457-.774.002.282-1.46.774z" class="V"/><path d="M20.898 43.855l1.457-.772 1.256.753-1.457.775z" class="T"/><path d="M22.154 44.61v.282l-1.256-.755v-.283z" class="U"/><path d="M24.02 45.732l1.457-.773.002.283-1.46.773z" class="V"/><path d="M22.766 44.978l1.457-.774 1.256.755-1.457.774z" class="T"/><path d="M24.02 45.732v.283l-1.256-.756v-.28z" class="U"/><path d="M25.95 46.89l1.46-.773v.283l-1.46.773z" class="V"/><use xlink:href="#B" x="2" y="-1.125" class="T"/><path d="M25.95 46.89v.283l-1.256-.756v-.28z" class="U"/><path d="M27.816 48.014l1.46-.774v.282l-1.46.773z" class="V"/><path d="M26.553 47.254l1.46-.773 1.264.758-1.46.775z" class="T"/><path d="M27.816 48.014v.28l-1.264-.758v-.283z" class="U"/><path d="M29.77 49.187l1.456-.774.003.283-1.46.773z" class="V"/><path d="M28.512 48.432l1.46-.774 1.256.754-1.457.775z" class="T"/><path d="M29.77 49.187v.282l-1.256-.755-.003-.282z" class="U"/><path d="M31.63 50.305l1.457-.774v.282l-1.457.774z" class="V"/><path d="M30.373 49.55l1.457-.773 1.258.754-1.457.775z" class="T"/><path d="M31.63 50.305v.282l-1.258-.755v-.283z" class="U"/><path d="M33.46 51.404l1.457-.773v.28l-1.457.774z" class="V"/><path d="M32.203 50.648l1.46-.773 1.256.756-1.457.773z" class="T"/><path d="M33.46 51.404v.282l-1.258-.755v-.283z" class="U"/><path d="M35.32 52.522l1.46-.773v.283l-1.46.773z" class="V"/><use xlink:href="#B" x="11.371" y="4.506" class="T"/><path d="M35.32 52.522v.283l-1.256-.756v-.28z" class="U"/><path d="M37.273 53.695l1.46-.773v.282l-1.46.774z" class="V"/><path d="M36.018 52.94l1.456-.773 1.258.755-1.46.773z" class="T"/><path d="M37.273 53.695v.283l-1.256-.756v-.282z" class="U"/><path d="M39.14 54.818l1.46-.775v.283l-1.46.773z" class="V"/><path d="M37.885 54.063l1.457-.774 1.258.754-1.46.775z" class="T"/><path d="M39.14 54.818v.28l-1.256-.754v-.282z" class="U"/><path d="M41.068 55.976l1.46-.773v.282l-1.46.773z" class="V"/><path d="M39.813 55.22l1.457-.773 1.258.754-1.46.774z" class="T"/><path d="M41.068 55.976v.282l-1.256-.755v-.282z" class="U"/><path d="M42.893 57.072l1.456-.774.003.282-1.46.773z" class="V"/><path d="M41.635 56.317l1.46-.774 1.256.755-1.457.774z" class="T"/><path d="M42.893 57.072v.28l-1.256-.755-.003-.282z" class="U"/><path d="M20.467 41.194l1.457-.773v.282l-1.457.773z" class="V"/><path d="M19.21 40.44l1.46-.772 1.256.754-1.457.773z" class="T"/><path d="M20.467 41.194v.282l-1.258-.755v-.282z" class="U"/><path d="M22.326 42.313l1.46-.773v.282l-1.46.773z" class="V"/><path d="M21.07 41.557l1.457-.773 1.258.755-1.46.774z" class="T"/><path d="M22.326 42.313v.282l-1.256-.755v-.283z" class="U"/><path d="M24.28 43.486l1.457-.774.002.282-1.46.774z" class="V"/><path d="M23.023 42.73l1.457-.772 1.256.753-1.457.775z" class="T"/><path d="M24.28 43.486v.282l-1.256-.755v-.283z" class="U"/><path d="M26.146 44.607l1.457-.773.002.283-1.46.773z" class="V"/><path d="M24.89 43.853l1.457-.774 1.256.755-1.457.774z" class="T"/><path d="M26.146 44.607v.283l-1.256-.756v-.28z" class="U"/><path d="M28.074 45.766l1.46-.773v.283l-1.46.773z" class="V"/><use xlink:href="#B" x="4.125" y="-2.25" class="T"/><path d="M28.074 45.766v.283l-1.256-.756v-.28z" class="U"/><path d="M29.94 46.89l1.46-.774v.282l-1.46.773z" class="V"/><path d="M28.678 46.13l1.46-.773 1.264.758-1.46.775z" class="T"/><path d="M29.94 46.89v.28l-1.264-.758v-.283z" class="U"/><path d="M31.895 48.062l1.457-.774.002.283-1.46.773z" class="V"/><path d="M30.637 47.307l1.46-.774 1.256.754-1.457.775z" class="T"/><path d="M31.895 48.062v.282l-1.256-.755-.003-.282z" class="U"/><path d="M33.756 49.18l1.457-.774v.282l-1.457.774z" class="V"/><path d="M32.498 48.424l1.457-.773 1.258.754-1.457.775z" class="T"/><path d="M33.756 49.18v.282l-1.258-.755v-.283z" class="U"/><path d="M35.586 50.28l1.457-.773v.28l-1.457.774z" class="V"/><path d="M34.328 49.523l1.46-.773 1.256.756-1.457.773z" class="T"/><path d="M35.586 50.28v.282l-1.258-.755v-.283z" class="U"/><path d="M37.445 51.397l1.46-.773v.283l-1.46.773z" class="V"/><use xlink:href="#B" x="13.497" y="3.381" class="T"/><path d="M37.445 51.397v.283l-1.256-.756v-.28z" class="U"/><path d="M39.398 52.57l1.46-.773v.282l-1.46.774z" class="V"/><path d="M38.143 51.815l1.456-.773 1.258.755-1.46.773z" class="T"/><path d="M39.398 52.57v.283l-1.256-.756v-.282z" class="U"/><path d="M41.266 53.693l1.46-.775v.283l-1.46.773z" class="V"/><path d="M40 52.938l1.457-.774 1.258.754-1.46.775z" class="T"/><path d="M41.266 53.693v.28L40 53.22v-.282z" class="U"/><path d="M43.193 54.85l1.46-.773v.282l-1.46.773z" class="V"/><path d="M41.938 54.096l1.457-.773 1.258.754-1.46.774z" class="T"/><path d="M43.193 54.85v.282l-1.256-.755v-.282z" class="U"/><path d="M45.018 55.947l1.456-.774.003.282-1.46.773z" class="V"/><path d="M43.76 55.192l1.46-.774 1.256.755-1.457.774z" class="T"/><path d="M45.018 55.947v.28l-1.256-.755-.003-.282z" class="U"/><path d="M14.95 45.12l1.46-.773v.275l-1.46.773z" class="V"/><path d="M13.69 44.366l1.46-.774 1.258.755-1.46.774z" class="T"/><path d="M14.95 45.12v.275l-1.256-.755-.002-.275z" class="U"/><path d="M16.72 46.184l1.457-.773v.275l-1.457.773z" class="V"/><path d="M15.46 45.43l1.46-.773 1.256.754-1.457.774z" class="T"/><path d="M16.72 46.184v.275l-1.258-.755v-.275z" class="U"/><path d="M18.578 47.302l1.46-.773v.274l-1.46.773z" class="V"/><path d="M17.322 46.547l1.457-.773 1.258.754-1.46.774z" class="T"/><path d="M18.578 47.302v.274l-1.256-.753v-.276z" class="U"/><path d="M34.137 56.62l1.46-.773v.275l-1.46.773z" class="V"/><path d="M32.88 55.866l1.46-.774 1.258.755-1.46.774z" class="T"/><path d="M34.137 56.62v.275l-1.256-.755v-.275z" class="U"/><path d="M35.906 57.684l1.457-.773v.275l-1.457.773z" class="V"/><path d="M34.648 56.93l1.46-.773 1.256.754-1.457.774z" class="T"/><path d="M35.906 57.684v.275l-1.258-.755v-.275z" class="U"/><path d="M37.766 58.802l1.46-.773v.274l-1.46.773z" class="V"/><path d="M36.5 58.047l1.457-.773 1.258.754-1.46.774z" class="T"/><path d="M37.766 58.802v.274l-1.256-.753v-.276z" class="U"/><path d="M32.15 55.47l1.46-.774v.274l-1.46.774z" class="V"/><path d="M19.256 47.72l1.46-.774L33.6 54.695l-1.46.774z" class="T"/><path d="M32.15 55.47v.274l-12.895-7.748v-.274z" class="U"/><path d="M22.678 39.936l1.457-.773v.282l-1.457.773z" class="V"/><path d="M21.42 39.18l1.46-.773 1.256.754-1.457.774z" class="T"/><path d="M22.678 39.936v.282l-1.258-.755v-.282z" class="U"/><path d="M24.537 41.054l1.46-.773v.282l-1.46.773z" class="V"/><path d="M23.28 40.298l1.457-.773 1.258.755-1.46.774z" class="T"/><path d="M24.537 41.054v.282l-1.256-.755v-.283z" class="U"/><path d="M26.5 42.228l1.457-.774.002.282-1.46.774z" class="V"/><path d="M25.234 41.472l1.457-.773 1.256.754-1.457.775z" class="T"/><path d="M26.5 42.228v.282l-1.256-.755v-.283z" class="U"/><path d="M28.357 43.35l1.457-.773.002.282-1.46.774z" class="V"/><path d="M27.1 42.594l1.458-.774 1.256.755-1.457.774z" class="T"/><path d="M28.357 43.35v.283l-1.256-.756v-.282z" class="U"/><path d="M30.285 44.507l1.46-.773v.283l-1.46.773z" class="V"/><use xlink:href="#B" x="6.337" y="-3.509" class="T"/><path d="M30.285 44.507v.283l-1.256-.756v-.28z" class="U"/><path d="M32.152 45.63l1.46-.774v.282l-1.46.773z" class="V"/><path d="M30.89 44.87l1.46-.773 1.264.758-1.46.775z" class="T"/><path d="M32.152 45.63v.28l-1.264-.758v-.283z" class="U"/><path d="M34.105 46.803l1.457-.774.002.283-1.46.773z" class="V"/><path d="M32.848 46.048l1.46-.774 1.256.754-1.457.775z" class="T"/><path d="M34.105 46.803v.282l-1.256-.755-.002-.282z" class="U"/><path d="M35.967 47.92l1.457-.774v.282l-1.457.774z" class="V"/><path d="M34.71 47.165l1.457-.773 1.258.754-1.457.775z" class="T"/><path d="M35.967 47.92v.282l-1.258-.755v-.283z" class="U"/><path d="M37.797 49.02l1.457-.773v.28l-1.457.774z" class="V"/><path d="M36.54 48.265l1.46-.773 1.256.755-1.457.774z" class="T"/><path d="M37.797 49.02v.282l-1.258-.755v-.283z" class="U"/><path d="M39.656 50.138l1.46-.773v.283l-1.46.773z" class="V"/><use xlink:href="#B" x="15.707" y="2.122" class="T"/><path d="M39.656 50.138v.283l-1.256-.756v-.28z" class="U"/><path d="M41.61 51.312l1.46-.773v.282l-1.46.774z" class="V"/><path d="M40.354 50.557l1.457-.774 1.258.755-1.46.774z" class="T"/><path d="M41.61 51.312v.283l-1.256-.756v-.282z" class="U"/><path d="M43.477 52.434l1.46-.774v.283l-1.46.773z" class="V"/><path d="M42.22 51.68l1.457-.774 1.258.754-1.46.775z" class="T"/><path d="M43.477 52.434v.282l-1.256-.755v-.282z" class="U"/><path d="M45.404 53.592l1.46-.773v.282l-1.46.773z" class="V"/><path d="M44.148 52.837l1.457-.773 1.258.754-1.46.774z" class="T"/><path d="M45.404 53.592v.282l-1.256-.755v-.282z" class="U"/><path d="M47.23 54.69l1.457-.774.002.282-1.46.773z" class="V"/><path d="M45.97 53.933l1.46-.773 1.256.754-1.457.775z" class="T"/><path d="M47.23 54.69v.28l-1.257-.755-.001-.282z" class="U"/><g stroke="#636466" stroke-width="2" class="W X"><path d="M57.016 40.94l16.87-8.956c.423-.224.992-.174 1.62.202l-16.87 8.956c-.627-.376-1.195-.425-1.62-.202zm37.4 28.368l-16.87 8.956c.46-.245.744-.8.747-1.628l16.87-8.954c0 .816-.287 1.383-.746 1.626z"/><path d="M58.635 41.14l16.87-8.956L92.792 42.57 75.92 51.528zm19.65 14.654l16.873-8.954.014 20.842-16.87 8.954z"/><path d="M75.92 51.528c1.308.784 2.363 2.69 2.366 4.267l.017 20.84c-.003 1.57-1.057 2.213-2.363 1.428L58.654 67.677c-1.306-.785-2.365-2.696-2.368-4.266l-.013-20.843c-.001-1.575 1.056-2.21 2.362-1.427L75.92 51.528z"/><use xlink:href="#C"/></g><path d="M58.354 41.162l16.87-8.956L92.51 42.592 75.638 51.55z" class="b"/><path d="M78.005 55.815l16.873-8.955.014 20.842-16.87 8.955z" class="a"/><path d="M77.323 76.237l-.017-20.842c0-1.11-.744-2.455-1.667-3.008L58.354 42c-.92-.553-1.664-.102-1.664 1.008l.016 20.84c0 1.107.745 2.452 1.667 3.01l17.285 10.386c.92.552 1.665.1 1.665-1.007zm-1.685-24.69c1.308.784 2.364 2.69 2.367 4.267l.016 20.84c-.003 1.57-1.056 2.213-2.363 1.428L58.374 67.697c-1.307-.785-2.365-2.696-2.368-4.266l-.014-20.843c-.001-1.575 1.057-2.21 2.362-1.427l17.284 10.387z" fill="#636466"/><path d="M75.64 52.387c.923.553 1.667 1.897 1.667 3.008l.017 20.842c0 1.107-.745 1.56-1.665 1.007L58.373 66.858c-.92-.557-1.667-1.902-1.667-3.01l-.015-20.84c0-1.1.743-1.56 1.664-1.008L75.64 52.387z" fill="#f5f6f6"/><path d="M68.9 60.398c0 1.48-1.06 2.04-2.368 1.255s-2.368-2.623-2.368-4.102 1.06-2.042 2.368-1.255S68.9 58.92 68.9 60.398" class="U"/><path d="M66.538,60.118v9.665" stroke-width="1.854" class="W X Y Z"/><path d="M67.923 59.142c0 .347-.25.48-.558.294a1.25 1.25 0 0 1-.553-.961c0-.347.248-.48.553-.295s.558.615.558.962" class="T"/><path d="M72.418 62.674c-.418-3.54-2.914-7.57-5.938-9.4-2.992-1.797-5.465-.807-5.922 2.154m14.488 6.43l-.24-.844c-1.35-4.4-4.492-8.802-8.156-11.006-3.87-2.325-7.154-1.498-8.367 1.68" stroke-width="1.246" class="W X Y Z"/><path d="M56.735 40.96l16.87-8.956c.423-.224.992-.174 1.62.202l-16.87 8.956c-.627-.376-1.195-.425-1.62-.202z" fill="#bbbdbf"/><path d="M94.146 69.328l-16.87 8.956c.46-.245.744-.8.747-1.628l16.87-8.954c0 .816-.287 1.383-.746 1.626z" fill="#727378"/><use xlink:href="#C" x="-0.282" y="0.022" fill="#a1a4a6"/><defs ><path id="B" d="M22.693 47.262l1.457-.774 1.258.754-1.46.774z"/><path id="C" d="M75.92 51.528l16.873-8.957c1.306.785 2.36 2.692 2.366 4.27l-16.873 8.955c-.003-1.578-1.058-3.483-2.366-4.267z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/atlassian/Atlassian_Logo.svg b/src/main/webapp/img/lib/atlassian/Atlassian_Logo.svg index 59c70ec882f505fb0ce338f3e1c935e57c3b604c..7f60188c4abf2125fadc675dbc51edd2add1a9f5 100644 --- a/src/main/webapp/img/lib/atlassian/Atlassian_Logo.svg +++ b/src/main/webapp/img/lib/atlassian/Atlassian_Logo.svg @@ -1,19 +1 @@ -<?xml version="1.0" standalone="no"?> -<svg contentScriptType="text/ecmascript" width="65.5" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" - zoomAndPan="magnify" contentStyleType="text/css" height="65.5" viewBox="0 -0.1 65.5 65.4" preserveAspectRatio="none meet" - xmlns="http://www.w3.org/2000/svg" version="1.0"> - <defs> - <style>.cls-1{fill:url(#linear-gradient);}.cls-2{fill:#2684ff;}.cls-3{fill:#0052cc;}</style> - <linearGradient x1="28.121" gradientUnits="userSpaceOnUse" x2="11.239" y1="35.051" y2="64.292" id="linear-gradient"> - <stop stop-color="#0052cc" offset="0"/> - <stop stop-color="#2684ff" offset="0.923"/> - </linearGradient> - </defs> - <title>Atlassian-horizontal-blue-rgb</title> - <path class="cls-1" d="M 19.463167 30.115 a 1.856 1.856 0.0 0 0 -3.157 0.343 L 0.30916667 62.442 a 1.912 1.912 0.0 0 - 0 1.71 2.767 H 24.294167 a 1.843 1.843 0.0 0 0 1.71 -1.057 C 30.809168 54.223 27.897167 39.126 19.463167 30.115 - z"/> - <path class="cls-2" d="M 31.196167 1.024 a 42.188 42.188 0.0 0 0 -2.463 41.65 L 39.472164 64.152 a 1.912 1.912 0.0 0 - 0 1.71 1.057 H 63.453167 a 1.912 1.912 0.0 0 0 1.71 -2.767 S 35.201164 2.511 34.448166 1.012 A 1.806 1.806 0.0 0 - 0 31.196167 1.024 z"/> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" contentScriptType="text/ecmascript" width="65.5" baseProfile="full" zoomAndPan="magnify" contentStyleType="text/css" height="65.5" viewBox="0 -0.1 65.5 65.4" preserveAspectRatio="none meet"><defs><linearGradient x1="28.121" gradientUnits="userSpaceOnUse" x2="11.239" y1="35.051" y2="64.292" id="A"><stop stop-color="#0052cc" offset="0"/><stop stop-color="#2684ff" offset=".923"/></linearGradient></defs><path d="M19.463 30.115a1.856 1.856 0 0 0-3.157.343L.31 62.442a1.912 1.912 0 0 0 1.71 2.767h22.275a1.843 1.843 0 0 0 1.71-1.057c4.805-9.93 1.893-25.026-6.54-34.037z" fill="url(#A)"/><path d="M31.196 1.024a42.188 42.188 0 0 0-2.463 41.65l10.74 21.478a1.912 1.912 0 0 0 1.71 1.057h22.27a1.912 1.912 0 0 0 1.71-2.767L34.448 1.012a1.806 1.806 0 0 0-3.252.012z" fill="#2684ff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/atlassian/Bamboo_Logo.svg b/src/main/webapp/img/lib/atlassian/Bamboo_Logo.svg index 40f9814a9d290aefef1cdcd412b05b907e3b05fd..803e8f192c7dc6b23ba8b72e578fde1852d3b7cd 100644 --- a/src/main/webapp/img/lib/atlassian/Bamboo_Logo.svg +++ b/src/main/webapp/img/lib/atlassian/Bamboo_Logo.svg @@ -1,20 +1 @@ -<?xml version="1.0" standalone="no"?> -<svg contentScriptType="text/ecmascript" width="63.7" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" - zoomAndPan="magnify" contentStyleType="text/css" height="73.6" viewBox="0 0 63.7 73.6" preserveAspectRatio="none meet" - xmlns="http://www.w3.org/2000/svg" version="1.0"> - <defs> - <style>.cls-1{fill:#253858;}.cls-2{fill:#2684ff;}.cls-3{fill:url(#linear-gradient);}.cls-4{fill:url(#linear-gradient-2);}</style> - <linearGradient x1="16.06" y1="10.61" x2="16.06" gradientUnits="userSpaceOnUse" y2="53.94" id="linear-gradient"> - <stop offset="0" stop-color="#0052cc"/> - <stop offset="1" stop-color="#2684ff"/> - </linearGradient> - <linearGradient x1="15.91" y1="10.61" x2="15.91" xlink:href="#linear-gradient" - y2="53.94" id="linear-gradient-2"/> - </defs> - <title>Bamboo-blue</title> - <path class="cls-2" d= - "M61.56,41.81H46.27a2,2,0,0,0-2,1.7A12.57,12.57,0,0,1,31.81,54.34l4.14,18.91A31.81,31.81,0,0,0,63.56,43.95,2,2,0,0,0,61.56,41.81Z"/> - <path class="cls-2" d="M35.1,41.33l22-18.91a2,2,0,0,0,0-3L35.1.48A2,2,0,0,0,31.81,2V39.81A2,2,0,0,0,35.1,41.33Z"/> - <path class="cls-3" d="M.3,45.94A31.81,31.81,0,0,0,31.81,73.55V54.34A12.56,12.56,0,0,1,19.25,41.81Z"/> - <path class="cls-4" d="M0,41.51v.3H19.25A12.56,12.56,0,0,1,31.81,29.28L27.68,10.37A31.79,31.79,0,0,0,0,41.51"/> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" contentScriptType="text/ecmascript" width="63.7" baseProfile="full" zoomAndPan="magnify" contentStyleType="text/css" height="73.6" preserveAspectRatio="none meet"><defs><linearGradient x1="16.06" y1="10.61" x2="16.06" gradientUnits="userSpaceOnUse" y2="53.94" id="A"><stop offset="0" stop-color="#0052cc"/><stop offset="1" stop-color="#2684ff"/></linearGradient><linearGradient x1="15.91" x2="15.91" xlink:href="#A" id="B"/></defs><path d="M61.56 41.8h-15.3a2 2 0 0 0-2 1.7A12.57 12.57 0 0 1 31.8 54.33l4.14 18.9a31.81 31.81 0 0 0 27.61-29.3 2 2 0 0 0-2-2.14zm-26.46-.47l22-18.9a2 2 0 0 0 0-3L35.1.48A2 2 0 0 0 31.81 2v37.8a2 2 0 0 0 3.29 1.52z" fill="#2684ff"/><path d="M.3,45.94A31.81,31.81,0,0,0,31.81,73.55V54.34A12.56,12.56,0,0,1,19.25,41.81Z" fill="url(#A)"/><path d="M0 41.5v.3h19.25a12.56 12.56 0 0 1 12.56-12.53l-4.13-18.9A31.79 31.79 0 0 0 0 41.51" fill="url(#B)"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/atlassian/Bitbucket_Logo.svg b/src/main/webapp/img/lib/atlassian/Bitbucket_Logo.svg index ffbd05b04dbef81a70101eca3403ef1f53649cf0..8a000e863e532083f2d2deaf66bea72bc1ad4ca2 100644 --- a/src/main/webapp/img/lib/atlassian/Bitbucket_Logo.svg +++ b/src/main/webapp/img/lib/atlassian/Bitbucket_Logo.svg @@ -1,17 +1 @@ -<?xml version="1.0" standalone="no"?> -<svg contentScriptType="text/ecmascript" width="62.5" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" - zoomAndPan="magnify" contentStyleType="text/css" height="50.4" viewBox="0 6.1 62.5 56.5" preserveAspectRatio="none meet" - xmlns="http://www.w3.org/2000/svg" version="1.0"> - <defs> - <style>.cls-1{fill:#253858;}.cls-2{fill:none;}.cls-3{fill:#2684ff;}.cls-4{fill:url(#New_Gradient_Swatch_1);}</style> - <linearGradient x1="64.01" y1="30.27" x2="32.99" gradientUnits="userSpaceOnUse" y2="54.48" id="New_Gradient_Swatch_1"> - <stop offset="0.18" stop-color="#0052cc"/> - <stop offset="1" stop-color="#2684ff"/> - </linearGradient> - </defs> - <title>Bitbucket-blue</title> - <polygon class="cls-2" points="24.7 43.51 37.75 43.51 40.9 25.12 21.23 25.12 24.7 43.51"/> - <path class="cls-3" d= - "M2,6.26A2,2,0,0,0,0,8.58L8.49,60.12a2.72,2.72,0,0,0,2.66,2.27H51.88a2,2,0,0,0,2-1.68L62.37,8.59a2,2,0,0,0-2-2.32ZM37.75,43.51h-13L21.23,25.12H40.9Z"/> - <path class="cls-4" d="M59.67,25.12H40.9L37.75,43.51h-13L9.4,61.73a2.71,2.71,0,0,0,1.75.66H51.89a2,2,0,0,0,2-1.68Z"/> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" contentScriptType="text/ecmascript" width="62.5" baseProfile="full" zoomAndPan="magnify" contentStyleType="text/css" height="50.4" viewBox="0 6.1 62.5 56.5" preserveAspectRatio="none meet"><defs><linearGradient x1="64.01" y1="30.27" x2="32.99" gradientUnits="userSpaceOnUse" y2="54.48" id="A"><stop offset=".18" stop-color="#0052cc"/><stop offset="1" stop-color="#2684ff"/></linearGradient></defs><path d="M2 6.26a2 2 0 0 0-2 2.32l8.5 51.54a2.72 2.72 0 0 0 2.66 2.27h40.73a2 2 0 0 0 2-1.68l8.5-52.12a2 2 0 0 0-2-2.32zM37.75 43.5h-13l-3.52-18.4H40.9z" fill="#2684ff"/><path d="M59.67 25.12H40.9l-3.15 18.4h-13L9.4 61.73a2.71 2.71 0 0 0 1.75.66H51.9a2 2 0 0 0 2-1.68z" fill="url(#A)"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/atlassian/Clover_Logo.svg b/src/main/webapp/img/lib/atlassian/Clover_Logo.svg index 1213482f0ecf4e4010127a76cc897869cd898b4b..d3acc18bef7c59c277f8dfa1d8a2cff59b7c71db 100644 --- a/src/main/webapp/img/lib/atlassian/Clover_Logo.svg +++ b/src/main/webapp/img/lib/atlassian/Clover_Logo.svg @@ -1,17 +1 @@ -<?xml version="1.0" standalone="no"?> -<svg contentScriptType="text/ecmascript" width="71.3" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" - zoomAndPan="magnify" contentStyleType="text/css" height="70.8" viewBox="-0.2 0 71.1 70.8" preserveAspectRatio="none meet" - xmlns="http://www.w3.org/2000/svg" version="1.0"> - <defs> - <style>.cls-1{fill:#253858;}.cls-2{fill:#2684ff;}.cls-3{fill:url(#linear-gradient);}</style> - <linearGradient x1="28.56" y1="70.6" x2="53.19" gradientUnits="userSpaceOnUse" y2="31.22" id="linear-gradient"> - <stop offset="0" stop-color="#0049b0"/> - <stop offset="1" stop-color="#2684ff"/> - </linearGradient> - </defs> - <title>Clover-icon-blue-white</title> - <path class="cls-2" d= - "M52.48,17.69h.59a17.69,17.69,0,0,0-35.38,0,17.69,17.69,0,1,0,0,35.38h0a17.69,17.69,0,0,0,35.38,0A17.69,17.69,0,0,0,70.76,35C70.58,25.31,62.22,17.69,52.48,17.69Zm.6,20.6H46.9a8.6,8.6,0,0,0-8.6,8.6v6.18H32.48V46.89a8.6,8.6,0,0,0-8.6-8.6H17.7V32.47h6.18a8.6,8.6,0,0,0,8.6-8.6V17.69H38.3v6.18a8.6,8.6,0,0,0,8.6,8.6h6.18Z"/> - <path class="cls-3" d= - "M52.48,17.69H38.3v6.18a8.6,8.6,0,0,0,8.6,8.6h6.18v5.82H46.9a8.6,8.6,0,0,0-8.6,8.6v6.18H17.69a17.69,17.69,0,0,0,35.38,0A17.69,17.69,0,0,0,70.76,35C70.58,25.31,62.22,17.69,52.48,17.69Z"/> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" contentScriptType="text/ecmascript" width="71.3" baseProfile="full" zoomAndPan="magnify" contentStyleType="text/css" height="70.8" viewBox="-0.2 0 71.1 70.8" preserveAspectRatio="none meet"><defs><linearGradient x1="28.56" y1="70.6" x2="53.19" gradientUnits="userSpaceOnUse" y2="31.22" id="A"><stop offset="0" stop-color="#0049b0"/><stop offset="1" stop-color="#2684ff"/></linearGradient></defs><path d="M52.48 17.7h.6a17.69 17.69 0 0 0-35.38 0 17.69 17.69 0 1 0 0 35.38 17.69 17.69 0 0 0 35.38 0A17.69 17.69 0 0 0 70.76 35c-.18-9.7-8.54-17.3-18.28-17.3zm.6 20.6H46.9a8.6 8.6 0 0 0-8.6 8.6v6.18h-5.82V46.9a8.6 8.6 0 0 0-8.6-8.6H17.7v-5.82h6.18a8.6 8.6 0 0 0 8.6-8.6V17.7h5.82v6.18a8.6 8.6 0 0 0 8.6 8.6h6.18z" fill="#2684ff"/><path d="M52.48 17.7H38.3v6.18a8.6 8.6 0 0 0 8.6 8.6h6.18v5.82H46.9a8.6 8.6 0 0 0-8.6 8.6v6.18H17.7a17.69 17.69 0 0 0 35.38 0A17.69 17.69 0 0 0 70.76 35c-.18-9.7-8.54-17.3-18.28-17.3z" fill="url(#A)"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/atlassian/Confluence_Logo.svg b/src/main/webapp/img/lib/atlassian/Confluence_Logo.svg index dfeb2aab2790ba40a9eb8105a56c29a4aee4a0e7..20a01975f32505903d3b84f811713991938133f1 100644 --- a/src/main/webapp/img/lib/atlassian/Confluence_Logo.svg +++ b/src/main/webapp/img/lib/atlassian/Confluence_Logo.svg @@ -1,20 +1 @@ -<?xml version="1.0" standalone="no"?> -<svg contentScriptType="text/ecmascript" width="63.4" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" - zoomAndPan="magnify" contentStyleType="text/css" height="57.4" viewBox="-0.2 3.3 63.2 60.7" preserveAspectRatio="none meet" - xmlns="http://www.w3.org/2000/svg" version="1.0"> - <defs> - <style>.cls-1{fill:#253858;}.cls-2{fill:url(#linear-gradient);}.cls-3{fill:url(#linear-gradient-2);}</style> - <linearGradient x1="59.68" y1="67.65" x2="20.35" gradientUnits="userSpaceOnUse" y2="45.05" id="linear-gradient"> - <stop offset="0.18" stop-color="#0052cc"/> - <stop offset="1" stop-color="#2684ff"/> - </linearGradient> - <linearGradient gradientTransform="translate(282.83 -1616.71) rotate(180)" x1="279.76" y1="-1616.34" x2="240.42" - xlink:href="#linear-gradient" - y2="-1638.95" id="linear-gradient-2"/> - </defs> - <title>Confluence-blue</title> - <path class="cls-2" d= - "M2.23,49.53c-.65,1.06-1.38,2.29-2,3.27a2,2,0,0,0,.67,2.72l13,8a2,2,0,0,0,2.77-.68c.52-.87,1.19-2,1.92-3.21,5.15-8.5,10.33-7.46,19.67-3l12.89,6.13a2,2,0,0,0,2.69-1l6.19-14a2,2,0,0,0-1-2.62c-2.72-1.28-8.13-3.83-13-6.18C28.51,30.45,13.62,31,2.23,49.53Z"/> - <path class="cls-3" d= - "M60.52,17.76c.65-1.06,1.38-2.29,2-3.27a2,2,0,0,0-.67-2.72l-13-8A2,2,0,0,0,46,4.43c-.52.87-1.19,2-1.92,3.21-5.15,8.5-10.33,7.46-19.67,3L11.56,4.54a2,2,0,0,0-2.69,1l-6.19,14a2,2,0,0,0,1,2.62c2.72,1.28,8.13,3.83,13,6.18C34.24,36.84,49.13,36.27,60.52,17.76Z"/> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" contentScriptType="text/ecmascript" width="63.4" baseProfile="full" zoomAndPan="magnify" contentStyleType="text/css" height="57.4" viewBox="-0.2 3.3 63.2 60.7" preserveAspectRatio="none meet"><defs><linearGradient x1="59.68" y1="67.65" x2="20.35" gradientUnits="userSpaceOnUse" y2="45.05" id="A"><stop offset=".18" stop-color="#0052cc"/><stop offset="1" stop-color="#2684ff"/></linearGradient><linearGradient x1="3.07" y1="-.37" x2="42.41" xlink:href="#A" y2="22.24" id="B"/></defs><path d="M2.23 49.53l-2 3.27a2 2 0 0 0 .67 2.72l13 8a2 2 0 0 0 2.77-.68l1.92-3.2c5.15-8.5 10.33-7.46 19.67-3l12.9 6.13a2 2 0 0 0 2.69-1l6.2-14a2 2 0 0 0-1-2.62l-13-6.18C28.5 30.45 13.62 31 2.23 49.53z" fill="url(#A)"/><path d="M60.52 17.76l2-3.27a2 2 0 0 0-.67-2.72l-13-8a2 2 0 0 0-2.85.66l-1.92 3.2c-5.15 8.5-10.33 7.46-19.67 3l-12.85-6.1a2 2 0 0 0-2.69 1l-6.2 14a2 2 0 0 0 1 2.62l13 6.18c17.56 8.5 32.45 7.93 43.84-10.58z" fill="url(#B)"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/atlassian/Crowd_Logo.svg b/src/main/webapp/img/lib/atlassian/Crowd_Logo.svg index c5f9b2170c9fb41e36d34fc0cbdd00d2df20e997..80267fd5f3226bcad94970dbd93675168a04f8fc 100644 --- a/src/main/webapp/img/lib/atlassian/Crowd_Logo.svg +++ b/src/main/webapp/img/lib/atlassian/Crowd_Logo.svg @@ -1,17 +1 @@ -<?xml version="1.0" standalone="no"?> -<svg contentScriptType="text/ecmascript" width="66.1" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" - zoomAndPan="magnify" contentStyleType="text/css" height="64.5" viewBox="0 0.8 66.1 65.3" preserveAspectRatio="none meet" - xmlns="http://www.w3.org/2000/svg" version="1.0"> - <defs> - <style>.cls-1{fill:#253858;}.cls-2{fill:#2684ff;}.cls-3{fill:url(#linear-gradient);}</style> - <linearGradient x1="49.708" y1="23.487" x2="55.422" gradientUnits="userSpaceOnUse" y2="61.623" id="linear-gradient"> - <stop offset="0" stop-color="#2684ff"/> - <stop offset="1" stop-color="#0052cc"/> - </linearGradient> - </defs> - <title>Crowd-blue</title> - <path class="cls-2" d= - "M64.63,12.611,33,.97,1.37,12.611A2.092,2.092,0,0,0,0,14.651L.662,32.589C1.148,47.421,8.6,58.453,20.288,65.656a2.1,2.1,0,0,0,3.041-.963l6.815-16.075a1.038,1.038,0,0,0-.656-1.4,12.186,12.186,0,1,1,7.026,0,1.038,1.038,0,0,0-.656,1.4l6.815,16.075a2.1,2.1,0,0,0,3.041.963c11.688-7.2,19.14-18.235,19.625-33.066L66,14.651A2.092,2.092,0,0,0,64.63,12.611Z"/> - <path class="cls-3" d= - "M33,23.374a12.179,12.179,0,0,1,3.513,23.843,1.038,1.038,0,0,0-.656,1.4l6.815,16.075a2.1,2.1,0,0,0,3.041.963c11.688-7.2,19.14-18.235,19.625-33.066L66,14.651a2.092,2.092,0,0,0-1.368-2.04L33,.97Z"/> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" contentScriptType="text/ecmascript" width="66.1" baseProfile="full" zoomAndPan="magnify" contentStyleType="text/css" height="64.5" viewBox="0 0.8 66.1 65.3" preserveAspectRatio="none meet"><defs><linearGradient x1="49.708" y1="23.487" x2="55.422" gradientUnits="userSpaceOnUse" y2="61.623" id="A"><stop offset="0" stop-color="#2684ff"/><stop offset="1" stop-color="#0052cc"/></linearGradient></defs><path d="M64.63 12.61L33 .97 1.37 12.61A2.092 2.092 0 0 0 0 14.651L.662 32.59C1.148 47.42 8.6 58.453 20.288 65.656a2.1 2.1 0 0 0 3.041-.963l6.815-16.075a1.038 1.038 0 0 0-.656-1.4 12.186 12.186 0 1 1 7.026 0 1.038 1.038 0 0 0-.656 1.4l6.815 16.075a2.1 2.1 0 0 0 3.041.963c11.688-7.2 19.14-18.235 19.625-33.066L66 14.65a2.092 2.092 0 0 0-1.37-2.04z" fill="#2684ff"/><path d="M33 23.374a12.179 12.179 0 0 1 3.513 23.843 1.038 1.038 0 0 0-.656 1.4l6.815 16.075a2.1 2.1 0 0 0 3.041.963c11.688-7.2 19.14-18.235 19.625-33.066L66 14.65a2.092 2.092 0 0 0-1.368-2.04L33 .97z" fill="url(#A)"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/atlassian/Crucible_Logo.svg b/src/main/webapp/img/lib/atlassian/Crucible_Logo.svg index 53a7e1c50d5c40c72b33fd0f12ef16c345124f99..b40200524c44c0caa977e5b4aa1745b3e5bf04d8 100644 --- a/src/main/webapp/img/lib/atlassian/Crucible_Logo.svg +++ b/src/main/webapp/img/lib/atlassian/Crucible_Logo.svg @@ -1,17 +1 @@ -<?xml version="1.0" standalone="no"?> -<svg contentScriptType="text/ecmascript" width="61.3" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" - zoomAndPan="magnify" contentStyleType="text/css" viewBox="-0.1 1.9 61.2 63.2" height="61.3" preserveAspectRatio="none meet" - xmlns="http://www.w3.org/2000/svg" version="1.0"> - <defs> - <style>.cls-1{fill:#253858;}.cls-2{fill:#2684ff;}.cls-3{fill:url(#New_Gradient_Swatch_1);}</style> - <linearGradient x1="30.47" gradientUnits="userSpaceOnUse" x2="30.47" y1="24.34" y2="2.49" id="New_Gradient_Swatch_1"> - <stop stop-color="#0052cc" offset="0.18"/> - <stop stop-color="#2684ff" offset="1"/> - </linearGradient> - </defs> - <title>Crucible-blue</title> - <path class="cls-2" d= - "M30.47,2.09C13.64,2.09,0,7.84,0,14.92A6.48,6.48,0,0,0,.11,16L5.48,44.18a25.44,25.44,0,0,0,50,0L60.83,16a6.48,6.48,0,0,0,.11-1.07C60.94,7.84,47.3,2.09,30.47,2.09Zm0,46.67c-8.8,0-8.07-20.45-17.93-23.47-.82-.25-1.6-.52-2.36-.81a59.2,59.2,0,0,1,20.29-3.26,59.2,59.2,0,0,1,20.29,3.26c-.76.28-1.54.56-2.36.81-9.86,3-9.12,23.47-17.93,23.47"/> - <path class="cls-3" d= - "M10.18,24.49a59.19,59.19,0,0,1,20.29-3.26,59.19,59.19,0,0,1,20.29,3.26c6.24-2.35,10.18-5.76,10.18-9.57,0-7.08-13.64-12.83-30.47-12.83S0,7.84,0,14.92C0,18.72,3.93,22.14,10.18,24.49Z"/> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" contentScriptType="text/ecmascript" width="61.3" baseProfile="full" zoomAndPan="magnify" contentStyleType="text/css" viewBox="-0.1 1.9 61.2 63.2" height="61.3" preserveAspectRatio="none meet"><defs><linearGradient x1="30.47" gradientUnits="userSpaceOnUse" x2="30.47" y1="24.34" y2="2.49" id="A"><stop stop-color="#0052cc" offset=".18"/><stop stop-color="#2684ff" offset="1"/></linearGradient></defs><path d="M30.47 2.1C13.64 2.1 0 7.84 0 14.92A6.48 6.48 0 0 0 .11 16l5.37 28.18a25.44 25.44 0 0 0 50 0L60.83 16a6.48 6.48 0 0 0 .11-1.07c0-7.1-13.64-12.84-30.47-12.84zm0 46.67c-8.8 0-8.07-20.45-17.93-23.47-.82-.25-1.6-.52-2.36-.8a59.2 59.2 0 0 1 20.29-3.26 59.2 59.2 0 0 1 20.29 3.26c-.76.28-1.54.56-2.36.8-9.86 3-9.12 23.47-17.93 23.47" fill="#2684ff"/><path d="M10.18 24.5a59.19 59.19 0 0 1 20.29-3.26 59.19 59.19 0 0 1 20.29 3.26c6.24-2.35 10.18-5.76 10.18-9.57C60.94 7.84 47.3 2.1 30.47 2.1S0 7.84 0 14.92c0 3.8 3.93 7.22 10.18 9.57z" fill="url(#A)"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/atlassian/Fisheye_Logo.svg b/src/main/webapp/img/lib/atlassian/Fisheye_Logo.svg index df589bf333b367bc2cc0dc2f4c1b0749f161f849..e9a45fa835e96f2ea0b20b6e8d5c7719e053de57 100644 --- a/src/main/webapp/img/lib/atlassian/Fisheye_Logo.svg +++ b/src/main/webapp/img/lib/atlassian/Fisheye_Logo.svg @@ -1,17 +1 @@ -<?xml version="1.0" standalone="no"?> -<svg contentScriptType="text/ecmascript" width="70.9" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" - zoomAndPan="magnify" contentStyleType="text/css" height="59.2" viewBox="-0.1 2.6 70.8 61.8" preserveAspectRatio="none meet" - xmlns="http://www.w3.org/2000/svg" version="1.0"> - <defs> - <style>.cls-1{fill:#253858;}.cls-2{fill:#2684ff;}.cls-3{fill:url(#New_Gradient_Swatch_1);}</style> - <linearGradient x1="0.07" y1="33.68" x2="45.5" gradientUnits="userSpaceOnUse" y2="47.33" id="New_Gradient_Swatch_1"> - <stop offset="0.18" stop-color="#0052cc"/> - <stop offset="1" stop-color="#2684ff"/> - </linearGradient> - </defs> - <title>Fisheye-blue</title> - <path class="cls-2" d= - "M33.12,2.71c-11.19,0-20,8-20,18,0,7.64,5.24,13.2,11.44,13.2A10.76,10.76,0,0,0,35.63,23.15a7.24,7.24,0,0,0-.29-2.06A39.06,39.06,0,0,1,48.5,32.31C45.05,38.46,39.65,45,31.62,45h0A12.68,12.68,0,0,1,19.24,34.17a2,2,0,0,0-2-1.72H2a2,2,0,0,0-2,2.16A31.39,31.39,0,0,0,31.5,64.22h0c19,0,30.26-13.66,38.85-31.31a2,2,0,0,0,0-1.77C67.88,26.2,54.2,2.71,33.12,2.71Z"/> - <path class="cls-3" d= - "M70.52,32.31h-22C45.05,38.46,39.65,45,31.62,45h0A12.68,12.68,0,0,1,19.24,34.17a2,2,0,0,0-2-1.72H2a2,2,0,0,0-2,2.16A31.39,31.39,0,0,0,31.5,64.22h0c19,0,30.26-13.66,38.85-31.31A2,2,0,0,0,70.52,32.31Z"/> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" contentScriptType="text/ecmascript" width="70.9" baseProfile="full" zoomAndPan="magnify" contentStyleType="text/css" height="59.2" viewBox="-0.1 2.6 70.8 61.8" preserveAspectRatio="none meet"><defs><linearGradient x1=".07" y1="33.68" x2="45.5" gradientUnits="userSpaceOnUse" y2="47.33" id="A"><stop offset=".18" stop-color="#0052cc"/><stop offset="1" stop-color="#2684ff"/></linearGradient></defs><path d="M33.12 2.7c-11.2 0-20 8-20 18 0 7.64 5.24 13.2 11.44 13.2a10.76 10.76 0 0 0 11.07-10.76 7.24 7.24 0 0 0-.29-2.06A39.06 39.06 0 0 1 48.5 32.31C45.05 38.46 39.65 45 31.62 45a12.68 12.68 0 0 1-12.38-10.83 2 2 0 0 0-2-1.72H2a2 2 0 0 0-2 2.16 31.39 31.39 0 0 0 31.5 29.61c19 0 30.26-13.66 38.85-31.3a2 2 0 0 0 0-1.77C67.88 26.2 54.2 2.7 33.12 2.7z" fill="#2684ff"/><path d="M70.52 32.3h-22C45.05 38.46 39.65 45 31.62 45a12.68 12.68 0 0 1-12.38-10.83 2 2 0 0 0-2-1.72H2a2 2 0 0 0-2 2.16 31.39 31.39 0 0 0 31.5 29.61c19 0 30.26-13.66 38.85-31.3a2 2 0 0 0 .17-.6z" fill="url(#A)"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/atlassian/Hipchat_Logo.svg b/src/main/webapp/img/lib/atlassian/Hipchat_Logo.svg index b864fb24559015314198e527c9d3312537d00d8d..f35e9cde8fd00778885e53569d39d30a5e0e118e 100644 --- a/src/main/webapp/img/lib/atlassian/Hipchat_Logo.svg +++ b/src/main/webapp/img/lib/atlassian/Hipchat_Logo.svg @@ -1,15 +1 @@ -<?xml version="1.0" standalone="no"?> -<svg contentScriptType="text/ecmascript" width="65.8" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" - zoomAndPan="magnify" contentStyleType="text/css" height="58.8" viewBox="-0.1 2.7 65.7 61.5" preserveAspectRatio="none meet" - xmlns="http://www.w3.org/2000/svg" version="1.0"> - <defs> - <style>.cls-1{fill:#253858;}.cls-2{fill:url(#New_Gradient_Swatch_1);}</style> - <linearGradient x1="32.77" y1="68.57" x2="32.77" gradientUnits="userSpaceOnUse" y2="26.58" id="New_Gradient_Swatch_1"> - <stop offset="0.18" stop-color="#0052cc"/> - <stop offset="1" stop-color="#2684ff"/> - </linearGradient> - </defs> - <title>Hipchat-blue</title> - <path class="cls-2" d= - "M53.9,52.74s.28-.19.74-.55c6.7-5.18,10.91-12.7,10.91-21.07,0-15.61-14.67-28.27-32.77-28.27S0,15.51,0,31.12,14.67,59.41,32.77,59.41a37.93,37.93,0,0,0,6.89-.63l.71-.13c4.61,3,11.31,5.44,17.17,5.44,1.83,0,2.68-1.49,1.52-3C57.29,58.9,54.85,55.42,53.9,52.74Zm-4-12.36c-1.95,2.92-8,7.89-17.08,7.89H32.7c-9.09,0-15.14-5-17.08-7.89a3.05,3.05,0,0,1-.74-1.57,1.33,1.33,0,0,1,1.28-1.44,1.63,1.63,0,0,1,.89.3,25,25,0,0,0,15.72,5.61h0A24,24,0,0,0,48.5,37.66a1.28,1.28,0,0,1,.86-.33,1.31,1.31,0,0,1,1.31,1.3A3.57,3.57,0,0,1,49.93,40.38Z"/> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" contentScriptType="text/ecmascript" width="65.8" baseProfile="full" zoomAndPan="magnify" contentStyleType="text/css" height="58.8" viewBox="-0.1 2.7 65.7 61.5" preserveAspectRatio="none meet"><defs><linearGradient x1="32.77" y1="68.57" x2="32.77" gradientUnits="userSpaceOnUse" y2="26.58" id="A"><stop offset=".18" stop-color="#0052cc"/><stop offset="1" stop-color="#2684ff"/></linearGradient></defs><path d="M53.9 52.74l.74-.55c6.7-5.18 10.9-12.7 10.9-21.07 0-15.6-14.67-28.27-32.77-28.27S0 15.5 0 31.12s14.67 28.3 32.77 28.3a37.93 37.93 0 0 0 6.89-.63l.7-.13c4.6 3 11.3 5.44 17.17 5.44 1.83 0 2.68-1.5 1.52-3-1.77-2.2-4.2-5.67-5.16-8.35zm-4-12.36c-1.95 2.92-8 7.9-17.08 7.9h-.12c-9.1 0-15.14-5-17.08-7.9a3.05 3.05 0 0 1-.74-1.57 1.33 1.33 0 0 1 1.28-1.44 1.63 1.63 0 0 1 .89.3 25 25 0 0 0 15.72 5.61 24 24 0 0 0 15.73-5.62 1.28 1.28 0 0 1 .86-.33 1.31 1.31 0 0 1 1.31 1.3 3.57 3.57 0 0 1-.74 1.75z" fill="url(#A)"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/atlassian/Jira_Core_Logo.svg b/src/main/webapp/img/lib/atlassian/Jira_Core_Logo.svg index a3c2dcf3bdce1ac7fffd009ad425da7847433b0e..dbbed3c27ff96a64912f7a0eca9819824dbe04f0 100644 --- a/src/main/webapp/img/lib/atlassian/Jira_Core_Logo.svg +++ b/src/main/webapp/img/lib/atlassian/Jira_Core_Logo.svg @@ -1,15 +1 @@ -<?xml version="1.0" standalone="no"?> -<svg contentScriptType="text/ecmascript" width="55.3" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" - zoomAndPan="magnify" contentStyleType="text/css" height="66.4" viewBox="-0.1 -0.1 55.2 66.3" preserveAspectRatio="none meet" - xmlns="http://www.w3.org/2000/svg" version="1.0"> - <defs> - <style>.cls-1{fill:#253858;}.cls-2{fill:url(#linear-gradient);}.cls-3{fill:#2684ff;}</style> - <linearGradient x1="37.13" y1="31.71" x2="52.42" gradientUnits="userSpaceOnUse" y2="46.24" id="linear-gradient"> - <stop offset="0.17" stop-color="#0052cc"/> - <stop offset="1" stop-color="#2684ff"/> - </linearGradient> - </defs> - <title>Jira Core-blue</title> - <path class="cls-2" d="M33.43,44.48A21.52,21.52,0,0,0,54.95,66h0V23.12L33.43,37.86Z"/> - <path class="cls-3" d="M54.95,23.12V3.21a3.2,3.2,0,0,0-5-2.64L0,34.67a21.52,21.52,0,0,0,29.89,5.69Z"/> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" contentScriptType="text/ecmascript" width="55.3" baseProfile="full" zoomAndPan="magnify" contentStyleType="text/css" height="66.4" viewBox="-0.1 -0.1 55.2 66.3" preserveAspectRatio="none meet"><defs><linearGradient x1="37.13" y1="31.71" x2="52.42" gradientUnits="userSpaceOnUse" y2="46.24" id="A"><stop offset=".17" stop-color="#0052cc"/><stop offset="1" stop-color="#2684ff"/></linearGradient></defs><path d="M33.43 44.48A21.52 21.52 0 0 0 54.95 66V23.12L33.43 37.86z" fill="url(#A)"/><path d="M54.95 23.12V3.2a3.2 3.2 0 0 0-5-2.64L0 34.67a21.52 21.52 0 0 0 29.89 5.69z" fill="#2684ff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/atlassian/Jira_Logo.svg b/src/main/webapp/img/lib/atlassian/Jira_Logo.svg index ba7366d340f7a59550f18bfb8d1dcb82ddb6a72e..332d60cf336c6c3d8dea4f31e918ff725c5d9449 100644 --- a/src/main/webapp/img/lib/atlassian/Jira_Logo.svg +++ b/src/main/webapp/img/lib/atlassian/Jira_Logo.svg @@ -1,21 +1 @@ -<?xml version="1.0" standalone="no"?> -<svg contentScriptType="text/ecmascript" width="72.2" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" - zoomAndPan="magnify" contentStyleType="text/css" height="72.4" viewBox="-0.1 -0.2 72.1 72.2" preserveAspectRatio="none meet" - xmlns="http://www.w3.org/2000/svg" version="1.0"> - <defs> - <style>.cls-1{fill:#253858;}.cls-2{fill:#2684ff;}.cls-3{fill:url(#New_Gradient_Swatch_1);}.cls-4{fill:url(#New_Gradient_Swatch_1-2);}</style> - <linearGradient x1="53.96" y1="17.29" x2="39.25" gradientUnits="userSpaceOnUse" y2="32.46" id="New_Gradient_Swatch_1"> - <stop offset="0.18" stop-color="#0052cc"/> - <stop offset="1" stop-color="#2684ff"/> - </linearGradient> - <linearGradient x1="37.83" y1="34.62" x2="20.82" xlink:href="#New_Gradient_Swatch_1" - y2="51.16" id="New_Gradient_Swatch_1-2"/> - </defs> - <title>Jira-blue</title> - <path class="cls-2" d= - "M68.81,0H34.23A15.61,15.61,0,0,0,49.84,15.61h6.37v6.15A15.61,15.61,0,0,0,71.81,37.36V3A3,3,0,0,0,68.81,0Z"/> - <path class="cls-3" d= - "M51.7,17.23H17.12A15.61,15.61,0,0,0,32.72,32.83h6.37V39A15.61,15.61,0,0,0,54.7,54.59V20.23A3,3,0,0,0,51.7,17.23Z"/> - <path class="cls-4" d= - "M34.58,34.45H0A15.61,15.61,0,0,0,15.61,50.06H22v6.15A15.61,15.61,0,0,0,37.58,71.81V37.45A3,3,0,0,0,34.58,34.45Z"/> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" contentScriptType="text/ecmascript" width="72.2" baseProfile="full" zoomAndPan="magnify" contentStyleType="text/css" height="72.4" viewBox="-0.1 -0.2 72.1 72.2" preserveAspectRatio="none meet"><defs><linearGradient x1="53.96" y1="17.29" x2="39.25" gradientUnits="userSpaceOnUse" y2="32.46" id="A"><stop offset=".18" stop-color="#0052cc"/><stop offset="1" stop-color="#2684ff"/></linearGradient><linearGradient x1="37.83" y1="34.62" x2="20.82" xlink:href="#A" y2="51.16" id="B"/></defs><path d="M68.8 0H34.23a15.61 15.61 0 0 0 15.61 15.61h6.37v6.15a15.61 15.61 0 0 0 15.6 15.6V3a3 3 0 0 0-3-3z" fill="#2684ff"/><path d="M51.7 17.23H17.12a15.61 15.61 0 0 0 15.6 15.6h6.37V39A15.61 15.61 0 0 0 54.7 54.59V20.23a3 3 0 0 0-3-3z" fill="url(#A)"/><path d="M34.58 34.45H0a15.61 15.61 0 0 0 15.61 15.61H22v6.15a15.61 15.61 0 0 0 15.58 15.6V37.45a3 3 0 0 0-3-3z" fill="url(#B)"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/atlassian/Jira_Service_Desk_Logo.svg b/src/main/webapp/img/lib/atlassian/Jira_Service_Desk_Logo.svg index 2a26f025d57ecd5ddf877cfc58b86117a0afd703..60e95883a9221244c52e4c68138c7219fc57cfd9 100644 --- a/src/main/webapp/img/lib/atlassian/Jira_Service_Desk_Logo.svg +++ b/src/main/webapp/img/lib/atlassian/Jira_Service_Desk_Logo.svg @@ -1,16 +1 @@ -<?xml version="1.0" standalone="no"?> -<svg contentScriptType="text/ecmascript" width="59.4" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" - zoomAndPan="magnify" contentStyleType="text/css" height="76.1" viewBox="-0.1 -0.1 59.3 76" preserveAspectRatio="none meet" - xmlns="http://www.w3.org/2000/svg" version="1.0"> - <defs> - <style>.cls-1{fill:#253858;}.cls-2{fill:url(#linear-gradient);}.cls-3{fill:#2684ff;}</style> - <linearGradient gradientTransform="translate(-1.77 -1.54) rotate(0.35)" x1="36.5" y1="34.28" x2="45.33" - gradientUnits="userSpaceOnUse" y2="60.42" id="linear-gradient"> - <stop offset="0" stop-color="#0052cc"/> - <stop offset="1" stop-color="#2684ff"/> - </linearGradient> - </defs> - <title>Jira Service Desk-blue</title> - <path class="cls-2" d="M35.34,29.92,55.95,30a3.21,3.21,0,0,1,2.55,5.14L28.08,75.76a21.61,21.61,0,0,1-4.38-30.25Z"/> - <path class="cls-3" d="M23.69,45.51,3.2,45.38A3.21,3.21,0,0,1,.65,40.24L30.77,0a21.61,21.61,0,0,1,4.38,30.25Z"/> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" contentScriptType="text/ecmascript" width="59.4" baseProfile="full" zoomAndPan="magnify" contentStyleType="text/css" height="76.1" viewBox="-0.1 -0.1 59.3 76" preserveAspectRatio="none meet"><defs><linearGradient x1="34.52" y1="32.962" x2="43.19" gradientUnits="userSpaceOnUse" y2="59.156" id="A"><stop offset="0" stop-color="#0052cc"/><stop offset="1" stop-color="#2684ff"/></linearGradient></defs><path d="M35.34 29.92l20.6.08a3.21 3.21 0 0 1 2.55 5.14L28.08 75.76a21.61 21.61 0 0 1-4.38-30.25z" fill="url(#A)"/><path d="M23.7 45.5l-20.5-.13a3.21 3.21 0 0 1-2.55-5.14L30.77 0a21.61 21.61 0 0 1 4.38 30.25z" fill="#2684ff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/atlassian/Jira_Software_Logo.svg b/src/main/webapp/img/lib/atlassian/Jira_Software_Logo.svg index 383e03862b7f531fdf3f1dac998babf2b760b2c0..72440d7e5f0b95635cc412f877e5f6ac703da6dd 100644 --- a/src/main/webapp/img/lib/atlassian/Jira_Software_Logo.svg +++ b/src/main/webapp/img/lib/atlassian/Jira_Software_Logo.svg @@ -1,19 +1 @@ -<?xml version="1.0" standalone="no"?> -<svg contentScriptType="text/ecmascript" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" zoomAndPan="magnify" - contentStyleType="text/css" viewBox="-0.1 -0.1 73.5 76" preserveAspectRatio="none meet" xmlns="http://www.w3.org/2000/svg" - version="1.0"> - <defs> - <style>.cls-1{fill:#253858;}.cls-2{fill:#2684ff;}.cls-3{fill:url(#linear-gradient);}.cls-4{fill:url(#linear-gradient-2);}</style> - <linearGradient x1="34.64" y1="15.35" x2="19" gradientUnits="userSpaceOnUse" y2="30.99" id="linear-gradient"> - <stop offset="0.18" stop-color="#0052cc"/> - <stop offset="1" stop-color="#2684ff"/> - </linearGradient> - <linearGradient x1="38.78" y1="60.28" x2="54.39" xlink:href="#linear-gradient" - y2="44.67" id="linear-gradient-2"/> - </defs> - <title>Jira Software-blue</title> - <path class="cls-2" d= - "M72.4,35.76,39.8,3.16,36.64,0h0L12.1,24.54h0L.88,35.76A3,3,0,0,0,.88,40L23.3,62.42,36.64,75.76,61.18,51.22l.38-.38L72.4,40A3,3,0,0,0,72.4,35.76ZM36.64,49.08l-11.2-11.2,11.2-11.2,11.2,11.2Z"/> - <path class="cls-3" d="M36.64,26.68A18.86,18.86,0,0,1,36.56.09L12.05,24.59,25.39,37.93,36.64,26.68Z"/> - <path class="cls-4" d="M47.87,37.85,36.64,49.08a18.86,18.86,0,0,1,0,26.68h0L61.21,51.19Z"/> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" contentScriptType="text/ecmascript" baseProfile="full" zoomAndPan="magnify" contentStyleType="text/css" viewBox="-0.1 -0.1 73.5 76" preserveAspectRatio="none meet"><defs><linearGradient x1="34.64" y1="15.35" x2="19" gradientUnits="userSpaceOnUse" y2="30.99" id="A"><stop offset=".18" stop-color="#0052cc"/><stop offset="1" stop-color="#2684ff"/></linearGradient><linearGradient x1="38.78" y1="60.28" x2="54.39" xlink:href="#A" y2="44.67" id="B"/></defs><path d="M72.4 35.76L36.64 0 .88 35.76a3 3 0 0 0 0 4.24l35.76 35.76L72.4 40a3 3 0 0 0 0-4.24zM36.64 49.08l-11.2-11.2 11.2-11.2 11.2 11.2z" fill="#2684ff"/><path d="M36.64 26.68A18.86 18.86 0 0 1 36.56.09l-24.5 24.5L25.4 37.93l11.25-11.25z" fill="url(#A)"/><path d="M47.87 37.85L36.64 49.08a18.86 18.86 0 0 1 0 26.68L61.2 51.2z" fill="url(#B)"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/atlassian/Sourcetree_Logo.svg b/src/main/webapp/img/lib/atlassian/Sourcetree_Logo.svg index a25a3be9c386b88a03bbf622d12aae6354e5bd9f..d471d4f055a56e844b7d1479e8e607664307d60d 100644 --- a/src/main/webapp/img/lib/atlassian/Sourcetree_Logo.svg +++ b/src/main/webapp/img/lib/atlassian/Sourcetree_Logo.svg @@ -1,22 +1 @@ -<?xml version="1.0" standalone="no"?> -<svg contentScriptType="text/ecmascript" width="57.4" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" - zoomAndPan="magnify" contentStyleType="text/css" viewBox="-0.2 -0.2 57.2 72.1" height="71.3" preserveAspectRatio="none meet" - xmlns="http://www.w3.org/2000/svg" version="1.0"> - <defs> - <style>.cls-1{fill:#253858;}.cls-2{fill:url(#linear-gradient);}.cls-3{fill:#2684ff;}.cls-4{fill:url(#New_Gradient_Swatch_1);}</style> - <linearGradient x1="28.44" gradientUnits="userSpaceOnUse" x2="28.44" y1="0.12" y2="0.12" id="linear-gradient"> - <stop stop-color="#0052cc" offset="0"/> - <stop stop-color="#2684ff" offset="1"/> - </linearGradient> - <linearGradient x1="42.66" gradientUnits="userSpaceOnUse" x2="42.66" y1="50.35" y2="20.14" id="New_Gradient_Swatch_1"> - <stop stop-color="#0052cc" offset="0.18"/> - <stop stop-color="#2684ff" offset="1"/> - </linearGradient> - </defs> - <title>Sourcetree-blue</title> - <polygon class="cls-2" points="28.44 0.12 28.44 0.12 28.44 0.12 28.44 0.12"/> - <path class="cls-3" d= - "M56.88,28.44A28.44,28.44,0,0,0,28.44,0h0a28.43,28.43,0,0,0-8.79,55.48V69.73a2,2,0,0,0,2,2h13.5a2,2,0,0,0,2-2V55.49A28.45,28.45,0,0,0,56.88,28.44ZM28.44,38.05h0a9.61,9.61,0,1,1,0-19.23h0a9.61,9.61,0,0,1,0,19.23Z"/> - <path class="cls-4" d= - "M28.44,0V18.83h0a9.61,9.61,0,0,1,0,19.23h0a8.79,8.79,0,0,1,8.79,8.79v8.65A28.44,28.44,0,0,0,28.44,0Z"/> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" contentScriptType="text/ecmascript" width="57.4" baseProfile="full" zoomAndPan="magnify" contentStyleType="text/css" viewBox="-0.2 -0.2 57.2 72.1" height="71.3" preserveAspectRatio="none meet"><defs><linearGradient x1="28.44" gradientUnits="userSpaceOnUse" x2="28.44" y1=".12" y2=".12" id="A"><stop stop-color="#0052cc" offset="0"/><stop stop-color="#2684ff" offset="1"/></linearGradient><linearGradient x1="42.66" gradientUnits="userSpaceOnUse" x2="42.66" y1="50.35" y2="20.14" id="B"><stop stop-color="#0052cc" offset=".18"/><stop stop-color="#2684ff" offset="1"/></linearGradient></defs><path d="M28.44.12z" fill="url(#A)"/><path d="M56.88 28.44A28.44 28.44 0 0 0 28.44 0a28.43 28.43 0 0 0-8.79 55.48v14.25a2 2 0 0 0 2 2h13.5a2 2 0 0 0 2-2V55.5a28.45 28.45 0 0 0 19.73-27.05zm-28.44 9.6a9.61 9.61 0 1 1 0-19.23 9.61 9.61 0 0 1 0 19.23z" fill="#2684ff"/><path d="M28.44 0v18.83a9.61 9.61 0 0 1 0 19.23 8.79 8.79 0 0 1 8.79 8.79v8.65A28.44 28.44 0 0 0 28.44 0z" fill="url(#B)"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/atlassian/Statuspage_Logo.svg b/src/main/webapp/img/lib/atlassian/Statuspage_Logo.svg index 3009682bd29fb320c140accaeb6ce204dd370d71..f25cf0f1686e970d10945c356440efdc81782c4d 100644 --- a/src/main/webapp/img/lib/atlassian/Statuspage_Logo.svg +++ b/src/main/webapp/img/lib/atlassian/Statuspage_Logo.svg @@ -1,16 +1 @@ -<?xml version="1.0" standalone="no"?> -<svg contentScriptType="text/ecmascript" width="75" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" - zoomAndPan="magnify" contentStyleType="text/css" height="51.6" viewBox="-0.1 3.6 74.9 55.2" preserveAspectRatio="none meet" - xmlns="http://www.w3.org/2000/svg" version="1.0"> - <defs> - <style>.cls-1{fill:#253858;}.cls-2{fill:url(#linear-gradient);}.cls-3{fill:#2684ff;}</style> - <linearGradient x1="37.31" y1="52.67" x2="37.31" gradientUnits="userSpaceOnUse" y2="21.72" id="linear-gradient"> - <stop offset="0" stop-color="#2684ff"/> - <stop offset="0.82" stop-color="#0052cc"/> - </linearGradient> - </defs> - <title>Statuspage-blue</title> - <circle r="17.47" class="cls-2" cx="37.31" cy="41.21"/> - <path class="cls-3" d= - "M.47,21,9.85,32.11a2,2,0,0,0,2.84.21c15.19-13.62,34-13.62,49.23,0a2,2,0,0,0,2.84-.21L74.15,21a2,2,0,0,0-.23-2.81C51.87-1.1,22.74-1.1.7,18.19A2,2,0,0,0,.47,21Z"/> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" contentScriptType="text/ecmascript" width="75" baseProfile="full" zoomAndPan="magnify" contentStyleType="text/css" height="51.6" viewBox="-0.1 3.6 74.9 55.2" preserveAspectRatio="none meet"><defs><linearGradient x1="37.31" y1="52.67" x2="37.31" gradientUnits="userSpaceOnUse" y2="21.72" id="A"><stop offset="0" stop-color="#2684ff"/><stop offset=".82" stop-color="#0052cc"/></linearGradient></defs><circle r="17.47" cx="37.31" cy="41.21" fill="url(#A)"/><path d="M.47 21l9.38 11.1a2 2 0 0 0 2.84.21c15.2-13.62 34-13.62 49.23 0a2 2 0 0 0 2.84-.21l9.4-11.1a2 2 0 0 0-.23-2.81C51.87-1.1 22.74-1.1.7 18.2A2 2 0 0 0 .47 21z" fill="#2684ff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/atlassian/Stride_Logo.svg b/src/main/webapp/img/lib/atlassian/Stride_Logo.svg index ea6c97886e2d22e33c17f1b48b57e3fd808b921f..ac2883075c5a7532a887e5d52c393160def8410b 100644 --- a/src/main/webapp/img/lib/atlassian/Stride_Logo.svg +++ b/src/main/webapp/img/lib/atlassian/Stride_Logo.svg @@ -1,16 +1 @@ -<?xml version="1.0" standalone="no"?> -<svg contentScriptType="text/ecmascript" width="68.5" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" - zoomAndPan="magnify" contentStyleType="text/css" height="47.9" viewBox="-0.1 7.3 68.4 55.2" preserveAspectRatio="none meet" - xmlns="http://www.w3.org/2000/svg" version="1.0"> - <defs> - <style>.cls-1{fill:#253858;}.cls-2{fill:url(#New_Gradient_Swatch_1);}.cls-3{fill:#2684ff;}</style> - <linearGradient x1="31.3" gradientUnits="userSpaceOnUse" x2="1.32" y1="24.34" y2="46.28" id="New_Gradient_Swatch_1"> - <stop stop-color="#0052cc" offset="0.18"/> - <stop stop-color="#2684ff" offset="1"/> - </linearGradient> - </defs> - <title>Stride-blue</title> - <path class="cls-2" d= - "M19.16,7.39v11c0,15.26-7.63,21.14-17.35,22.06a2,2,0,0,0-1.8,2c0,4.1,0,13.79,0,18a2,2,0,0,0,2.11,2c24.34-1.24,39-19,39-41.05h.07v-14Z"/> - <path class="cls-3" d="M68,59.5,42.23,7.39H19.16L46.38,60.75a3,3,0,0,0,2.67,1.64H66.23A2,2,0,0,0,68,59.5Z"/> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" contentScriptType="text/ecmascript" width="68.5" baseProfile="full" zoomAndPan="magnify" contentStyleType="text/css" height="47.9" viewBox="-0.1 7.3 68.4 55.2" preserveAspectRatio="none meet"><defs><linearGradient x1="31.3" gradientUnits="userSpaceOnUse" x2="1.32" y1="24.34" y2="46.28" id="A"><stop stop-color="#0052cc" offset=".18"/><stop stop-color="#2684ff" offset="1"/></linearGradient></defs><path d="M19.16 7.4v11c0 15.26-7.63 21.14-17.35 22.06a2 2 0 0 0-1.8 2v18a2 2 0 0 0 2.11 2c24.34-1.24 39-19 39-41.05h.07v-14z" fill="url(#A)"/><path d="M68 59.5L42.23 7.4H19.16l27.22 53.36a3 3 0 0 0 2.67 1.64h17.18A2 2 0 0 0 68 59.5z" fill="#2684ff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/atlassian/Trello_Logo.svg b/src/main/webapp/img/lib/atlassian/Trello_Logo.svg index 7aa4a3fe71612c2ffeb49695d6831c641b799ef5..db48f3af8aaaa9cfc467227d3dad21cc1264b728 100644 --- a/src/main/webapp/img/lib/atlassian/Trello_Logo.svg +++ b/src/main/webapp/img/lib/atlassian/Trello_Logo.svg @@ -1,19 +1 @@ -<?xml version="1.0" standalone="no"?> -<svg contentScriptType="text/ecmascript" width="102" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" - zoomAndPan="magnify" contentStyleType="text/css" height="102" viewBox="0 0 102 101.99" preserveAspectRatio="none meet" - xmlns="http://www.w3.org/2000/svg" version="1.0"> - <defs> - <style>.cls-1{fill:url(#linear-gradient);}</style> - <linearGradient x1="51" y1="101.99" x2="51" gradientUnits="userSpaceOnUse" id="linear-gradient"> - <stop offset="0" stop-color="#0b7abf"/> - <stop offset="1" stop-color="#368dcc"/> - </linearGradient> - </defs> - <title>mark-trello-blue-Blue</title> - <g id="Layer_2" data-name="Layer 2"> - <g id="Layer_1-2" data-name="Layer 1"> - <path class="cls-1" d= - "M89.25,0H12.75A12.75,12.75,0,0,0,0,12.75v76.5A12.75,12.75,0,0,0,12.75,102h76.5A12.75,12.75,0,0,0,102,89.25V12.75A12.75,12.75,0,0,0,89.25,0ZM44.37,77.26a6.12,6.12,0,0,1-6.12,6.12H19.38a6.12,6.12,0,0,1-6.12-6.12V19.38a6.12,6.12,0,0,1,6.12-6.12H38.25a6.12,6.12,0,0,1,6.12,6.12Zm44.37-25.5a6.12,6.12,0,0,1-6.12,6.12H63.75a6.12,6.12,0,0,1-6.12-6.12V19.38a6.12,6.12,0,0,1,6.12-6.12H82.62a6.12,6.12,0,0,1,6.12,6.12Z"/> - </g> - </g> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" contentScriptType="text/ecmascript" width="102" baseProfile="full" zoomAndPan="magnify" contentStyleType="text/css" height="102" viewBox="0 0 102 101.99" preserveAspectRatio="none meet"><defs><linearGradient x1="51" y1="101.99" x2="51" gradientUnits="userSpaceOnUse" id="A"><stop offset="0" stop-color="#0b7abf"/><stop offset="1" stop-color="#368dcc"/></linearGradient></defs><path d="M89.25,0H12.75A12.75,12.75,0,0,0,0,12.75v76.5A12.75,12.75,0,0,0,12.75,102h76.5A12.75,12.75,0,0,0,102,89.25V12.75A12.75,12.75,0,0,0,89.25,0ZM44.37,77.26a6.12,6.12,0,0,1-6.12,6.12H19.38a6.12,6.12,0,0,1-6.12-6.12V19.38a6.12,6.12,0,0,1,6.12-6.12H38.25a6.12,6.12,0,0,1,6.12,6.12Zm44.37-25.5a6.12,6.12,0,0,1-6.12,6.12H63.75a6.12,6.12,0,0,1-6.12-6.12V19.38a6.12,6.12,0,0,1,6.12-6.12H82.62a6.12,6.12,0,0,1,6.12,6.12Z" fill="url(#A)"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/cumulus/chassis_bare_metal_empty.svg b/src/main/webapp/img/lib/cumulus/chassis_bare_metal_empty.svg index a05a72b18df6d9a6773efae8ee56017a42644669..0633dfeacdedd48ebb41908c4cbe0024100c38c4 100644 --- a/src/main/webapp/img/lib/cumulus/chassis_bare_metal_empty.svg +++ b/src/main/webapp/img/lib/cumulus/chassis_bare_metal_empty.svg @@ -1 +1 @@ -<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 53 36"><defs><style>.cls-1{fill:#fff;}.cls-2{fill:#cbd4e0;}.cls-3{fill:#8c9aa6;}</style></defs><title>cumulus-networks-chassis-bare-metal-empty</title><g id="Layer_2" data-name="Layer 2"><g id="Text"><rect class="cls-1" x="3" y="1" width="47" height="7" rx="1" ry="1"/><path class="cls-2" d="M49,2V7H4V2H49m0-2H4A2,2,0,0,0,2,2V7A2,2,0,0,0,4,9H49a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z"/><path class="cls-3" d="M49,1a1,1,0,0,1,1,1V7a1,1,0,0,1-1,1H4A1,1,0,0,1,3,7V2A1,1,0,0,1,4,1H49m0-1H4A2,2,0,0,0,2,2V7A2,2,0,0,0,4,9H49a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z"/><rect class="cls-3" x="37" y="4" width="1" height="1"/><rect class="cls-3" x="39" y="4" width="1" height="1"/><rect class="cls-3" x="41" y="4" width="1" height="1"/><rect class="cls-3" x="43" y="4" width="1" height="1"/><rect class="cls-3" x="45" y="4" width="1" height="1"/><rect class="cls-3" x="25" y="4" width="1" height="1"/><rect class="cls-3" x="27" y="4" width="1" height="1"/><rect class="cls-3" x="29" y="4" width="1" height="1"/><rect class="cls-3" x="31" y="4" width="1" height="1"/><rect class="cls-3" x="33" y="4" width="1" height="1"/><rect class="cls-3" x="35" y="4" width="1" height="1"/><rect class="cls-3" x="13" y="4" width="1" height="1"/><rect class="cls-3" x="15" y="4" width="1" height="1"/><rect class="cls-3" x="17" y="4" width="1" height="1"/><rect class="cls-3" x="19" y="4" width="1" height="1"/><rect class="cls-3" x="21" y="4" width="1" height="1"/><rect class="cls-3" x="23" y="4" width="1" height="1"/><rect class="cls-3" x="7" y="4" width="1" height="1"/><rect class="cls-3" x="9" y="4" width="1" height="1"/><rect class="cls-3" x="11" y="4" width="1" height="1"/><rect class="cls-1" x="3" y="9" width="47" height="7" rx="1" ry="1"/><path class="cls-2" d="M49,10v5H4V10H49m0-2H4a2,2,0,0,0-2,2v5a2,2,0,0,0,2,2H49a2,2,0,0,0,2-2V10a2,2,0,0,0-2-2Z"/><path class="cls-3" d="M49,9a1,1,0,0,1,1,1v5a1,1,0,0,1-1,1H4a1,1,0,0,1-1-1V10A1,1,0,0,1,4,9H49m0-1H4a2,2,0,0,0-2,2v5a2,2,0,0,0,2,2H49a2,2,0,0,0,2-2V10a2,2,0,0,0-2-2Z"/><rect class="cls-3" x="37" y="12" width="1" height="1"/><rect class="cls-3" x="39" y="12" width="1" height="1"/><rect class="cls-3" x="41" y="12" width="1" height="1"/><rect class="cls-3" x="43" y="12" width="1" height="1"/><rect class="cls-3" x="45" y="12" width="1" height="1"/><rect class="cls-3" x="25" y="12" width="1" height="1"/><rect class="cls-3" x="27" y="12" width="1" height="1"/><rect class="cls-3" x="29" y="12" width="1" height="1"/><rect class="cls-3" x="31" y="12" width="1" height="1"/><rect class="cls-3" x="33" y="12" width="1" height="1"/><rect class="cls-3" x="35" y="12" width="1" height="1"/><rect class="cls-3" x="13" y="12" width="1" height="1"/><rect class="cls-3" x="15" y="12" width="1" height="1"/><rect class="cls-3" x="17" y="12" width="1" height="1"/><rect class="cls-3" x="19" y="12" width="1" height="1"/><rect class="cls-3" x="21" y="12" width="1" height="1"/><rect class="cls-3" x="23" y="12" width="1" height="1"/><rect class="cls-3" x="7" y="12" width="1" height="1"/><rect class="cls-3" x="9" y="12" width="1" height="1"/><rect class="cls-3" x="11" y="12" width="1" height="1"/><rect class="cls-1" x="3" y="17" width="47" height="7" rx="1" ry="1"/><path class="cls-2" d="M49,18v5H4V18H49m0-2H4a2,2,0,0,0-2,2v5a2,2,0,0,0,2,2H49a2,2,0,0,0,2-2V18a2,2,0,0,0-2-2Z"/><path class="cls-3" d="M49,17a1,1,0,0,1,1,1v5a1,1,0,0,1-1,1H4a1,1,0,0,1-1-1V18a1,1,0,0,1,1-1H49m0-1H4a2,2,0,0,0-2,2v5a2,2,0,0,0,2,2H49a2,2,0,0,0,2-2V18a2,2,0,0,0-2-2Z"/><rect class="cls-3" x="37" y="20" width="1" height="1"/><rect class="cls-3" x="39" y="20" width="1" height="1"/><rect class="cls-3" x="41" y="20" width="1" height="1"/><rect class="cls-3" x="43" y="20" width="1" height="1"/><rect class="cls-3" x="45" y="20" width="1" height="1"/><rect class="cls-3" x="25" y="20" width="1" height="1"/><rect class="cls-3" x="27" y="20" width="1" height="1"/><rect class="cls-3" x="29" y="20" width="1" height="1"/><rect class="cls-3" x="31" y="20" width="1" height="1"/><rect class="cls-3" x="33" y="20" width="1" height="1"/><rect class="cls-3" x="35" y="20" width="1" height="1"/><rect class="cls-3" x="13" y="20" width="1" height="1"/><rect class="cls-3" x="15" y="20" width="1" height="1"/><rect class="cls-3" x="17" y="20" width="1" height="1"/><rect class="cls-3" x="19" y="20" width="1" height="1"/><rect class="cls-3" x="21" y="20" width="1" height="1"/><rect class="cls-3" x="23" y="20" width="1" height="1"/><rect class="cls-3" x="7" y="20" width="1" height="1"/><rect class="cls-3" x="9" y="20" width="1" height="1"/><rect class="cls-3" x="11" y="20" width="1" height="1"/><rect class="cls-1" x="7" y="25" width="39" height="10" rx="1" ry="1"/><path class="cls-2" d="M45,26v8H8V26H45m0-2H8a2,2,0,0,0-2,2v8a2,2,0,0,0,2,2H45a2,2,0,0,0,2-2V26a2,2,0,0,0-2-2Z"/><path class="cls-3" d="M45,25a1,1,0,0,1,1,1v8a1,1,0,0,1-1,1H8a1,1,0,0,1-1-1V26a1,1,0,0,1,1-1H45m0-1H8a2,2,0,0,0-2,2v8a2,2,0,0,0,2,2H45a2,2,0,0,0,2-2V26a2,2,0,0,0-2-2Z"/><rect class="cls-3" x="11" y="28" width="1" height="4"/><rect class="cls-3" x="14" y="28" width="1" height="4"/><rect class="cls-3" x="17" y="28" width="1" height="4"/><rect class="cls-3" x="20" y="28" width="1" height="4"/><rect class="cls-3" x="23" y="28" width="1" height="4"/><rect class="cls-3" x="26" y="28" width="1" height="4"/><rect class="cls-3" x="29" y="28" width="1" height="4"/><rect class="cls-3" x="32" y="28" width="1" height="4"/><rect class="cls-3" x="35" y="28" width="1" height="4"/><rect class="cls-3" x="38" y="28" width="1" height="4"/><rect class="cls-3" x="41" y="28" width="1" height="4"/><rect class="cls-1" x="1" y="1" width="4" height="29" rx="1" ry="1"/><path class="cls-2" d="M4,2V29H2V2H4M4,0H2A2,2,0,0,0,0,2V29a2,2,0,0,0,2,2H4a2,2,0,0,0,2-2V2A2,2,0,0,0,4,0Z"/><path class="cls-3" d="M4,1A1,1,0,0,1,5,2V29a1,1,0,0,1-1,1H2a1,1,0,0,1-1-1V2A1,1,0,0,1,2,1H4M4,0H2A2,2,0,0,0,0,2V29a2,2,0,0,0,2,2H4a2,2,0,0,0,2-2V2A2,2,0,0,0,4,0Z"/><rect class="cls-1" x="48" y="1" width="4" height="29" rx="1" ry="1"/><path class="cls-2" d="M51,2V29H49V2h2m0-2H49a2,2,0,0,0-2,2V29a2,2,0,0,0,2,2h2a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z"/><path class="cls-3" d="M51,1a1,1,0,0,1,1,1V29a1,1,0,0,1-1,1H49a1,1,0,0,1-1-1V2a1,1,0,0,1,1-1h2m0-1H49a2,2,0,0,0-2,2V29a2,2,0,0,0,2,2h2a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z"/></g></g></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 53 36"><rect x="3" y="1" width="47" height="7" rx="1" fill="#fff"/><path d="M49,2V7H4V2H49m0-2H4A2,2,0,0,0,2,2V7A2,2,0,0,0,4,9H49a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z" fill="#cbd4e0"/><path d="M49 1a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h45m0-1H4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h45a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zM37 4h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zM25 4h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zM13 4h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zM7 4h1v1H7zm2 0h1v1H9zm2 0h1v1h-1z" fill="#8c9aa6"/><rect x="3" y="9" width="47" height="7" rx="1" fill="#fff"/><path d="M49,10v5H4V10H49m0-2H4a2,2,0,0,0-2,2v5a2,2,0,0,0,2,2H49a2,2,0,0,0,2-2V10a2,2,0,0,0-2-2Z" fill="#cbd4e0"/><path d="M49 9a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-5a1 1 0 0 1 1-1h45m0-1H4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h45a2 2 0 0 0 2-2v-5a2 2 0 0 0-2-2zm-12 4h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm-20 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm-22 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zM7 12h1v1H7zm2 0h1v1H9zm2 0h1v1h-1z" fill="#8c9aa6"/><rect x="3" y="17" width="47" height="7" rx="1" fill="#fff"/><path d="M49,18v5H4V18H49m0-2H4a2,2,0,0,0-2,2v5a2,2,0,0,0,2,2H49a2,2,0,0,0,2-2V18a2,2,0,0,0-2-2Z" fill="#cbd4e0"/><path d="M49 17a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-5a1 1 0 0 1 1-1h45m0-1H4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h45a2 2 0 0 0 2-2v-5a2 2 0 0 0-2-2zm-12 4h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm-20 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm-22 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zM7 20h1v1H7zm2 0h1v1H9zm2 0h1v1h-1z" fill="#8c9aa6"/><rect x="7" y="25" width="39" height="10" rx="1" fill="#fff"/><path d="M45,26v8H8V26H45m0-2H8a2,2,0,0,0-2,2v8a2,2,0,0,0,2,2H45a2,2,0,0,0,2-2V26a2,2,0,0,0-2-2Z" fill="#cbd4e0"/><path d="M45 25a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1v-8a1 1 0 0 1 1-1h37m0-1H8a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h37a2 2 0 0 0 2-2v-8a2 2 0 0 0-2-2zm-34 4h1v4h-1zm3 0h1v4h-1zm3 0h1v4h-1zm3 0h1v4h-1zm3 0h1v4h-1zm3 0h1v4h-1zm3 0h1v4h-1zm3 0h1v4h-1zm3 0h1v4h-1zm3 0h1v4h-1zm3 0h1v4h-1z" fill="#8c9aa6"/><rect x="1" y="1" width="4" height="29" rx="1" fill="#fff"/><path d="M4,2V29H2V2H4M4,0H2A2,2,0,0,0,0,2V29a2,2,0,0,0,2,2H4a2,2,0,0,0,2-2V2A2,2,0,0,0,4,0Z" fill="#cbd4e0"/><path d="M4,1A1,1,0,0,1,5,2V29a1,1,0,0,1-1,1H2a1,1,0,0,1-1-1V2A1,1,0,0,1,2,1H4M4,0H2A2,2,0,0,0,0,2V29a2,2,0,0,0,2,2H4a2,2,0,0,0,2-2V2A2,2,0,0,0,4,0Z" fill="#8c9aa6"/><rect x="48" y="1" width="4" height="29" rx="1" fill="#fff"/><path d="M51,2V29H49V2h2m0-2H49a2,2,0,0,0-2,2V29a2,2,0,0,0,2,2h2a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z" fill="#cbd4e0"/><path d="M51,1a1,1,0,0,1,1,1V29a1,1,0,0,1-1,1H49a1,1,0,0,1-1-1V2a1,1,0,0,1,1-1h2m0-1H49a2,2,0,0,0-2,2V29a2,2,0,0,0,2,2h2a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z" fill="#8c9aa6"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/cumulus/chassis_cumulus_linux.svg b/src/main/webapp/img/lib/cumulus/chassis_cumulus_linux.svg index 7349eb69c3b6ca4fa2f81cabec29c5d533d0f0a0..0f5cc9a1d24bb8fd643491c06aa85969151f738a 100644 --- a/src/main/webapp/img/lib/cumulus/chassis_cumulus_linux.svg +++ b/src/main/webapp/img/lib/cumulus/chassis_cumulus_linux.svg @@ -1 +1 @@ -<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 53 36"><defs><style>.cls-1{fill:#fff;}.cls-2{fill:url(#New_Gradient_Swatch_6);}.cls-3{fill:#8c9aa6;}.cls-4{fill:url(#New_Gradient_Swatch_6-2);}.cls-5{fill:url(#New_Gradient_Swatch_6-3);}.cls-6{fill:url(#New_Gradient_Swatch_6-4);}.cls-7{fill:url(#New_Gradient_Swatch_6-5);}.cls-8{fill:url(#New_Gradient_Swatch_6-6);}</style><linearGradient id="New_Gradient_Swatch_6" x1="34.21" y1="17.85" x2="18.79" y2="-8.85" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#00ad69"/><stop offset="1" stop-color="#7ccc6c"/></linearGradient><linearGradient id="New_Gradient_Swatch_6-2" x1="34.21" y1="25.85" x2="18.79" y2="-0.85" xlink:href="#New_Gradient_Swatch_6"/><linearGradient id="New_Gradient_Swatch_6-3" x1="34.21" y1="33.85" x2="18.79" y2="7.15" xlink:href="#New_Gradient_Swatch_6"/><linearGradient id="New_Gradient_Swatch_6-4" x1="6" y1="30" x2="47" y2="30" xlink:href="#New_Gradient_Swatch_6"/><linearGradient id="New_Gradient_Swatch_6-5" x1="10.09" y1="27.79" x2="-4.09" y2="3.21" xlink:href="#New_Gradient_Swatch_6"/><linearGradient id="New_Gradient_Swatch_6-6" x1="57.09" y1="27.79" x2="42.91" y2="3.21" xlink:href="#New_Gradient_Swatch_6"/></defs><title>cumulus-networks-chassis-cumulus-linux</title><g id="Layer_2" data-name="Layer 2"><g id="Text"><rect class="cls-1" x="2" width="49" height="9" rx="2" ry="2"/><path class="cls-2" d="M49,2V7H4V2H49m0-2H4A2,2,0,0,0,2,2V7A2,2,0,0,0,4,9H49a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z"/><path class="cls-3" d="M49,1a1,1,0,0,1,1,1V7a1,1,0,0,1-1,1H4A1,1,0,0,1,3,7V2A1,1,0,0,1,4,1H49m0-1H4A2,2,0,0,0,2,2V7A2,2,0,0,0,4,9H49a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z"/><rect class="cls-3" x="37" y="4" width="1" height="1"/><rect class="cls-3" x="39" y="4" width="1" height="1"/><rect class="cls-3" x="41" y="4" width="1" height="1"/><rect class="cls-3" x="43" y="4" width="1" height="1"/><rect class="cls-3" x="45" y="4" width="1" height="1"/><rect class="cls-3" x="25" y="4" width="1" height="1"/><rect class="cls-3" x="27" y="4" width="1" height="1"/><rect class="cls-3" x="29" y="4" width="1" height="1"/><rect class="cls-3" x="31" y="4" width="1" height="1"/><rect class="cls-3" x="33" y="4" width="1" height="1"/><rect class="cls-3" x="35" y="4" width="1" height="1"/><rect class="cls-3" x="13" y="4" width="1" height="1"/><rect class="cls-3" x="15" y="4" width="1" height="1"/><rect class="cls-3" x="17" y="4" width="1" height="1"/><rect class="cls-3" x="19" y="4" width="1" height="1"/><rect class="cls-3" x="21" y="4" width="1" height="1"/><rect class="cls-3" x="23" y="4" width="1" height="1"/><rect class="cls-3" x="7" y="4" width="1" height="1"/><rect class="cls-3" x="9" y="4" width="1" height="1"/><rect class="cls-3" x="11" y="4" width="1" height="1"/><rect class="cls-1" x="2" y="8" width="49" height="9" rx="2" ry="2"/><path class="cls-4" d="M49,10v5H4V10H49m0-2H4a2,2,0,0,0-2,2v5a2,2,0,0,0,2,2H49a2,2,0,0,0,2-2V10a2,2,0,0,0-2-2Z"/><path class="cls-3" d="M49,9a1,1,0,0,1,1,1v5a1,1,0,0,1-1,1H4a1,1,0,0,1-1-1V10A1,1,0,0,1,4,9H49m0-1H4a2,2,0,0,0-2,2v5a2,2,0,0,0,2,2H49a2,2,0,0,0,2-2V10a2,2,0,0,0-2-2Z"/><rect class="cls-3" x="37" y="12" width="1" height="1"/><rect class="cls-3" x="39" y="12" width="1" height="1"/><rect class="cls-3" x="41" y="12" width="1" height="1"/><rect class="cls-3" x="43" y="12" width="1" height="1"/><rect class="cls-3" x="45" y="12" width="1" height="1"/><rect class="cls-3" x="25" y="12" width="1" height="1"/><rect class="cls-3" x="27" y="12" width="1" height="1"/><rect class="cls-3" x="29" y="12" width="1" height="1"/><rect class="cls-3" x="31" y="12" width="1" height="1"/><rect class="cls-3" x="33" y="12" width="1" height="1"/><rect class="cls-3" x="35" y="12" width="1" height="1"/><rect class="cls-3" x="13" y="12" width="1" height="1"/><rect class="cls-3" x="15" y="12" width="1" height="1"/><rect class="cls-3" x="17" y="12" width="1" height="1"/><rect class="cls-3" x="19" y="12" width="1" height="1"/><rect class="cls-3" x="21" y="12" width="1" height="1"/><rect class="cls-3" x="23" y="12" width="1" height="1"/><rect class="cls-3" x="7" y="12" width="1" height="1"/><rect class="cls-3" x="9" y="12" width="1" height="1"/><rect class="cls-3" x="11" y="12" width="1" height="1"/><rect class="cls-1" x="2" y="16" width="49" height="9" rx="2" ry="2"/><path class="cls-5" d="M49,18v5H4V18H49m0-2H4a2,2,0,0,0-2,2v5a2,2,0,0,0,2,2H49a2,2,0,0,0,2-2V18a2,2,0,0,0-2-2Z"/><path class="cls-3" d="M49,17a1,1,0,0,1,1,1v5a1,1,0,0,1-1,1H4a1,1,0,0,1-1-1V18a1,1,0,0,1,1-1H49m0-1H4a2,2,0,0,0-2,2v5a2,2,0,0,0,2,2H49a2,2,0,0,0,2-2V18a2,2,0,0,0-2-2Z"/><rect class="cls-3" x="37" y="20" width="1" height="1"/><rect class="cls-3" x="39" y="20" width="1" height="1"/><rect class="cls-3" x="41" y="20" width="1" height="1"/><rect class="cls-3" x="43" y="20" width="1" height="1"/><rect class="cls-3" x="45" y="20" width="1" height="1"/><rect class="cls-3" x="25" y="20" width="1" height="1"/><rect class="cls-3" x="27" y="20" width="1" height="1"/><rect class="cls-3" x="29" y="20" width="1" height="1"/><rect class="cls-3" x="31" y="20" width="1" height="1"/><rect class="cls-3" x="33" y="20" width="1" height="1"/><rect class="cls-3" x="35" y="20" width="1" height="1"/><rect class="cls-3" x="13" y="20" width="1" height="1"/><rect class="cls-3" x="15" y="20" width="1" height="1"/><rect class="cls-3" x="17" y="20" width="1" height="1"/><rect class="cls-3" x="19" y="20" width="1" height="1"/><rect class="cls-3" x="21" y="20" width="1" height="1"/><rect class="cls-3" x="23" y="20" width="1" height="1"/><rect class="cls-3" x="7" y="20" width="1" height="1"/><rect class="cls-3" x="9" y="20" width="1" height="1"/><rect class="cls-3" x="11" y="20" width="1" height="1"/><rect class="cls-1" x="6" y="24" width="41" height="12" rx="2" ry="2"/><path class="cls-6" d="M45,26v8H8V26H45m0-2H8a2,2,0,0,0-2,2v8a2,2,0,0,0,2,2H45a2,2,0,0,0,2-2V26a2,2,0,0,0-2-2Z"/><path class="cls-3" d="M45,25a1,1,0,0,1,1,1v8a1,1,0,0,1-1,1H8a1,1,0,0,1-1-1V26a1,1,0,0,1,1-1H45m0-1H8a2,2,0,0,0-2,2v8a2,2,0,0,0,2,2H45a2,2,0,0,0,2-2V26a2,2,0,0,0-2-2Z"/><rect class="cls-3" x="11" y="28" width="1" height="4"/><rect class="cls-3" x="14" y="28" width="1" height="4"/><rect class="cls-3" x="17" y="28" width="1" height="4"/><rect class="cls-3" x="20" y="28" width="1" height="4"/><rect class="cls-3" x="23" y="28" width="1" height="4"/><rect class="cls-3" x="26" y="28" width="1" height="4"/><rect class="cls-3" x="29" y="28" width="1" height="4"/><rect class="cls-3" x="32" y="28" width="1" height="4"/><rect class="cls-3" x="35" y="28" width="1" height="4"/><rect class="cls-3" x="38" y="28" width="1" height="4"/><rect class="cls-3" x="41" y="28" width="1" height="4"/><rect class="cls-1" width="6" height="31" rx="2" ry="2"/><path class="cls-7" d="M4,2V29H2V2H4M4,0H2A2,2,0,0,0,0,2V29a2,2,0,0,0,2,2H4a2,2,0,0,0,2-2V2A2,2,0,0,0,4,0Z"/><path class="cls-3" d="M4,1A1,1,0,0,1,5,2V29a1,1,0,0,1-1,1H2a1,1,0,0,1-1-1V2A1,1,0,0,1,2,1H4M4,0H2A2,2,0,0,0,0,2V29a2,2,0,0,0,2,2H4a2,2,0,0,0,2-2V2A2,2,0,0,0,4,0Z"/><rect class="cls-1" x="47" width="6" height="31" rx="2" ry="2"/><path class="cls-8" d="M51,2V29H49V2h2m0-2H49a2,2,0,0,0-2,2V29a2,2,0,0,0,2,2h2a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z"/><path class="cls-3" d="M51,1a1,1,0,0,1,1,1V29a1,1,0,0,1-1,1H49a1,1,0,0,1-1-1V2a1,1,0,0,1,1-1h2m0-1H49a2,2,0,0,0-2,2V29a2,2,0,0,0,2,2h2a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z"/></g></g></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 53 36"><defs><linearGradient id="A" x1="34.21" y1="17.85" x2="18.79" y2="-8.85" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#00ad69"/><stop offset="1" stop-color="#7ccc6c"/></linearGradient><linearGradient id="B" y1="25.85" y2="-.85" xlink:href="#A"/><linearGradient id="C" y1="33.85" y2="7.15" xlink:href="#A"/><linearGradient id="D" x1="6" y1="30" x2="47" y2="30" xlink:href="#A"/><linearGradient id="E" x1="10.09" y1="27.79" x2="-4.09" y2="3.21" xlink:href="#A"/><linearGradient id="F" x1="57.09" y1="27.79" x2="42.91" y2="3.21" xlink:href="#A"/></defs><rect x="2" width="49" height="9" rx="2" fill="#fff"/><path d="M49,2V7H4V2H49m0-2H4A2,2,0,0,0,2,2V7A2,2,0,0,0,4,9H49a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z" fill="url(#A)"/><path d="M49 1a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h45m0-1H4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h45a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zM37 4h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zM25 4h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zM13 4h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zM7 4h1v1H7zm2 0h1v1H9zm2 0h1v1h-1z" fill="#8c9aa6"/><rect x="2" y="8" width="49" height="9" rx="2" fill="#fff"/><path d="M49,10v5H4V10H49m0-2H4a2,2,0,0,0-2,2v5a2,2,0,0,0,2,2H49a2,2,0,0,0,2-2V10a2,2,0,0,0-2-2Z" fill="url(#B)"/><path d="M49 9a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-5a1 1 0 0 1 1-1h45m0-1H4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h45a2 2 0 0 0 2-2v-5a2 2 0 0 0-2-2zm-12 4h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm-20 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm-22 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zM7 12h1v1H7zm2 0h1v1H9zm2 0h1v1h-1z" fill="#8c9aa6"/><rect x="2" y="16" width="49" height="9" rx="2" fill="#fff"/><path d="M49,18v5H4V18H49m0-2H4a2,2,0,0,0-2,2v5a2,2,0,0,0,2,2H49a2,2,0,0,0,2-2V18a2,2,0,0,0-2-2Z" fill="url(#C)"/><path d="M49 17a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-5a1 1 0 0 1 1-1h45m0-1H4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h45a2 2 0 0 0 2-2v-5a2 2 0 0 0-2-2zm-12 4h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm-20 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm-22 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zM7 20h1v1H7zm2 0h1v1H9zm2 0h1v1h-1z" fill="#8c9aa6"/><rect x="6" y="24" width="41" height="12" rx="2" fill="#fff"/><path d="M45,26v8H8V26H45m0-2H8a2,2,0,0,0-2,2v8a2,2,0,0,0,2,2H45a2,2,0,0,0,2-2V26a2,2,0,0,0-2-2Z" fill="url(#D)"/><path d="M45 25a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1v-8a1 1 0 0 1 1-1h37m0-1H8a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h37a2 2 0 0 0 2-2v-8a2 2 0 0 0-2-2zm-34 4h1v4h-1zm3 0h1v4h-1zm3 0h1v4h-1zm3 0h1v4h-1zm3 0h1v4h-1zm3 0h1v4h-1zm3 0h1v4h-1zm3 0h1v4h-1zm3 0h1v4h-1zm3 0h1v4h-1zm3 0h1v4h-1z" fill="#8c9aa6"/><rect width="6" height="31" rx="2" fill="#fff"/><path d="M4,2V29H2V2H4M4,0H2A2,2,0,0,0,0,2V29a2,2,0,0,0,2,2H4a2,2,0,0,0,2-2V2A2,2,0,0,0,4,0Z" fill="url(#E)"/><path d="M4,1A1,1,0,0,1,5,2V29a1,1,0,0,1-1,1H2a1,1,0,0,1-1-1V2A1,1,0,0,1,2,1H4M4,0H2A2,2,0,0,0,0,2V29a2,2,0,0,0,2,2H4a2,2,0,0,0,2-2V2A2,2,0,0,0,4,0Z" fill="#8c9aa6"/><rect x="47" width="6" height="31" rx="2" fill="#fff"/><path d="M51,2V29H49V2h2m0-2H49a2,2,0,0,0-2,2V29a2,2,0,0,0,2,2h2a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z" fill="url(#F)"/><path d="M51,1a1,1,0,0,1,1,1V29a1,1,0,0,1-1,1H49a1,1,0,0,1-1-1V2a1,1,0,0,1,1-1h2m0-1H49a2,2,0,0,0-2,2V29a2,2,0,0,0,2,2h2a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z" fill="#8c9aa6"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/cumulus/container.svg b/src/main/webapp/img/lib/cumulus/container.svg index b8fe4a73aea185847a9eeb0c7be7ccca4b0bb12e..4969e62518952970f9d2ec1a00e9608eb0704703 100644 --- a/src/main/webapp/img/lib/cumulus/container.svg +++ b/src/main/webapp/img/lib/cumulus/container.svg @@ -1,113 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="119.72757mm" - height="105.29688mm" - viewBox="0 0 119.72757 105.29687" - version="1.1" - id="svg1091" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="container.svg"> - <defs - id="defs1085" /> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.35" - inkscape:cx="-350.48734" - inkscape:cy="32.728749" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata1088"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-46.442132,-96.384766)"> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#8c9aa6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 78.404297,96.384766 a 1.750175,1.750175 0 0 0 -1.498047,0.84375 L 46.695312,147.20508 a 1.750175,1.750175 0 0 0 -0.01562,1.78711 l 30.21289,51.82031 a 1.750175,1.750175 0 0 0 1.511719,0.86914 h 54.740229 a 1.750175,1.750175 0 0 0 1.49805,-0.8457 l 31.27539,-51.82032 a 1.750175,1.750175 0 0 0 -0.0156,-1.83398 L 134.62695,97.205078 a 1.750175,1.750175 0 0 0 -1.48242,-0.820312 z" - id="path1181" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#d0d5de;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 81.494141,99.884766 h 48.464839 l -12.4375,19.593754 H 93.232422 Z" - id="path1179" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#f4f6f8;fill-opacity:0.99497483;fill-rule:nonzero;stroke:none;stroke-width:3.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 133.13281,101.41602 28.12696,44.94531 H 109.33789 L 95.330078,122.97852 h 23.154302 a 1.750175,1.750175 0 0 0 1.47656,-0.8125 z" - id="path1177" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#b5bdc9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 78.398438,101.52734 11.769531,19.64649 -17.044922,25.1875 H 51.294922 Z" - id="path1175" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 92.152344,124.48633 106.31445,148.12695 91.050781,174.54297 76.109375,148.19141 Z" - id="path1173" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#b5bdc9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 51.238281,149.86133 H 73.03125 l 15.988281,28.19726 -10.623047,18.38477 z" - id="path1171" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#f4f6f8;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 109.35547,149.86133 h 51.96289 l -28.25,46.81055 -13.13086,-19.60938 a 1.750175,1.750175 0 0 0 -1.45312,-0.77539 H 94.087891 Z" - id="path1169" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#d0d5de;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 92.064453,179.78711 h 25.486327 l 12.31641,18.39453 H 81.4375 Z" - id="path1125" - inkscape:connector-curvature="0" /> - <path - id="path1177-1" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#bbc4cc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 129.95898,99.884766 -12.4375,19.593754 H 93.23242 l 2.097654,3.5 h 23.154306 c 0.59877,-4.2e-4 1.15576,-0.30692 1.47656,-0.8125 l 13.17187,-20.75 -0.96852,-1.513136 z" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccc" /> - <path - id="path1177-1-3" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#bbc4cc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 129.86719,198.18164 117.55078,179.78711 H 91.990241 l 2.09765,-3.5 h 24.425789 c 0.59877,4.2e-4 1.15576,0.30692 1.47656,0.8125 l 13.07812,19.57227 -0.99586,1.49165 z" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccc" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="452.515" height="397.973" viewBox="0 0 119.728 105.297"><style><![CDATA[.B{dominant-baseline:auto}]]></style><path d="M31.962 0a1.75 1.75 0 0 0-1.498.844L.253 50.82a1.75 1.75 0 0 0-.016 1.787l30.213 51.82a1.75 1.75 0 0 0 1.512.869h54.74a1.75 1.75 0 0 0 1.498-.846l31.275-51.82a1.75 1.75 0 0 0-.016-1.834L88.185.82A1.75 1.75 0 0 0 86.703 0z" fill="#8c9aa6" class="B"/><path d="M35.052 3.5h48.465L71.08 23.094H46.8z" fill="#d0d5de" class="B"/><path d="M86.69 5.03l28.127 44.945H62.896L48.888 26.594h23.154a1.75 1.75 0 0 0 1.477-.812z" fill="#f4f6f8" fill-opacity=".995" class="B"/><path d="M31.956 5.142l11.77 19.646L26.68 49.976H4.853z" fill="#b5bdc9" class="B"/><path d="M45.7 28.1l14.162 23.64L44.61 78.158l-14.94-26.352z" fill="#fff" class="B"/><path d="M4.796 53.476H26.59l15.988 28.197-10.623 18.385z" fill="#b5bdc9" class="B"/><path d="M62.913 53.476h51.963l-28.25 46.81-13.13-19.61a1.75 1.75 0 0 0-1.453-.775H47.646z" fill="#f4f6f8" class="B"/><path d="M45.622 83.402H71.11l12.316 18.395h-48.43z" fill="#d0d5de" class="B"/><path d="M83.517 3.5L71.08 23.094H46.8l2.098 3.5h23.154a1.75 1.75 0 0 0 1.477-.812L86.7 5.03l-.97-1.513zm-.092 98.297L71.1 83.402H45.55l2.098-3.5h24.426a1.75 1.75 0 0 1 1.477.813l13.078 19.572-.996 1.492z" fill="#bbc4cc" class="B"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/cumulus/cumulus_linux_icon.svg b/src/main/webapp/img/lib/cumulus/cumulus_linux_icon.svg index d40d74c7ffcf0490d50af2574ac4311e48197f9b..748a919a748e6c8fbb123c79f9ada0e82c733115 100644 --- a/src/main/webapp/img/lib/cumulus/cumulus_linux_icon.svg +++ b/src/main/webapp/img/lib/cumulus/cumulus_linux_icon.svg @@ -1 +1 @@ -<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 48 48"><defs><style>.cls-1{fill:none;}.cls-2{fill:url(#linear-gradient);}.cls-3{clip-path:url(#clip-path);}.cls-4{fill:#fff;}</style><linearGradient id="linear-gradient" x1="3.43" y1="36.85" x2="43.49" y2="11.82" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#7ccc6c"/><stop offset="1" stop-color="#009271"/></linearGradient><clipPath id="clip-path"><rect class="cls-1" x="9.76" y="11.52" width="25" height="25"/></clipPath></defs><title>Asset 51</title><g id="Layer_2" data-name="Layer 2"><g id="Text"><circle class="cls-2" cx="24" cy="24" r="24"/><g id="Rocket_Turtle_White" data-name="Rocket Turtle – White"><g class="cls-3"><g class="cls-3"><path class="cls-4" d="M26.66,29.7l-1.36.14c-.29,0-.43.29-.5.58l-.22,1h0c-.07.36.29.36.57.43l1.44-.43c.57,0,.71-1,.71-1.29a.54.54,0,0,0-.64-.43"/><polygon class="cls-4" points="9.76 36.52 20.71 26.47 19.5 25.46 9.76 36.52"/><path class="cls-4" d="M33.25,20.5l-1.07.15a.58.58,0,0,0-.65.5l-.07,1.44a.13.13,0,0,0,0,.06.51.51,0,0,0,.51.51l.79.21a.57.57,0,0,0,.64-.5L33.75,21v0a.49.49,0,0,0-.5-.48"/><path class="cls-4" d="M34.76,15.9a4.37,4.37,0,1,0-7,3.53,1.46,1.46,0,0,0-.5.28l-.86-.79h0a.54.54,0,0,0-.78,0L20.14,23.8l-.07.08a.45.45,0,0,0,.07.64l1.29,1.23c.21.21.64.14.93-.22s1.15-1.44,2.15-2.51a26,26,0,0,1,2.43-2.38c.15-.07.22-.14.08.08a27,27,0,0,0-2.94,4.17c-.36.71-1.93,3.73-1.22,4.31h0c.08.07.22.15.57.07a6.88,6.88,0,0,0,1.79-.43A9.87,9.87,0,0,0,27.94,27c.94-.87,2.65-2.73,2.94-4.46a3.65,3.65,0,0,0-.54-2.3,4.45,4.45,0,0,0,4.42-4.38M27,15.9v-.11a3.25,3.25,0,0,1,3.3-3.19,3.31,3.31,0,0,1,0,6.61,3,3,0,0,1-.59-.07v-.58a3.11,3.11,0,0,0,1.65-1.08c.79-.79.79-2.51-.36-2.87-.93-.29-2,.65-2.29,1.44a2.69,2.69,0,0,0,.15,2.51v.29a3.34,3.34,0,0,1-1.86-3"/></g></g></g></g></g></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><defs><linearGradient id="A" x1="3.43" y1="36.85" x2="43.49" y2="11.82" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#7ccc6c"/><stop offset="1" stop-color="#009271"/></linearGradient><clipPath id="B"><path d="M9.76 11.52h25v25h-25z" fill="none"/></clipPath></defs><circle cx="24" cy="24" r="24" fill="url(#A)"/><g clip-path="url(#B)"><g clip-path="url(#B)" fill="#fff"><path d="M26.66 29.7l-1.36.14c-.3 0-.43.3-.5.58l-.22 1c-.07.36.3.36.57.43l1.44-.43c.57 0 .7-1 .7-1.3a.54.54 0 0 0-.64-.43m-16.9 6.83L20.7 26.47l-1.2-1-9.74 11.06z"/><path d="M33.25 20.5l-1.07.15a.58.58 0 0 0-.65.5l-.07 1.44a.13.13 0 0 0 0 .06.51.51 0 0 0 .51.51l.8.2a.57.57 0 0 0 .64-.5l.35-1.87a.49.49 0 0 0-.5-.48m1.5-4.6a4.37 4.37 0 1 0-7 3.53 1.46 1.46 0 0 0-.5.28l-.86-.8a.54.54 0 0 0-.78 0l-5.48 4.88-.07.08a.45.45 0 0 0 .07.64l1.3 1.23c.2.2.64.14.93-.22l2.15-2.5a26 26 0 0 1 2.43-2.38c.15-.07.22-.14.08.08a27 27 0 0 0-2.94 4.17c-.36.7-1.93 3.73-1.22 4.3.08.07.22.15.57.07a6.88 6.88 0 0 0 1.79-.43A9.87 9.87 0 0 0 27.94 27c.94-.87 2.65-2.73 2.94-4.46a3.65 3.65 0 0 0-.54-2.3 4.45 4.45 0 0 0 4.42-4.38M27 15.9v-.1a3.25 3.25 0 0 1 3.3-3.19 3.31 3.31 0 0 1 0 6.61 3 3 0 0 1-.59-.07v-.58a3.11 3.11 0 0 0 1.65-1.08c.8-.8.8-2.5-.36-2.87-.93-.3-2 .65-2.3 1.44a2.69 2.69 0 0 0 .15 2.51v.3a3.34 3.34 0 0 1-1.86-3"/></g></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/cumulus/cumulus_netq_icon.svg b/src/main/webapp/img/lib/cumulus/cumulus_netq_icon.svg index 6564f7bd3f86024d77a70d05cad53a8ea67ba4fd..ccc9bd91fb1506ecac396593590356bbe1e1c378 100644 --- a/src/main/webapp/img/lib/cumulus/cumulus_netq_icon.svg +++ b/src/main/webapp/img/lib/cumulus/cumulus_netq_icon.svg @@ -1 +1 @@ -<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 48 48"><defs><style>.cls-1{fill:none;}.cls-2{fill:url(#linear-gradient);}.cls-3{clip-path:url(#clip-path);}.cls-4{fill:#fff;}</style><linearGradient id="linear-gradient" x1="1.82" y1="34.28" x2="45.38" y2="14.09" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#d83490"/><stop offset="1" stop-color="#770398"/></linearGradient><clipPath id="clip-path"><rect class="cls-1" x="9.76" y="11.52" width="25" height="25"/></clipPath></defs><title>cumulus-networks-cumulus-netq-icon</title><g id="Layer_2" data-name="Layer 2"><g id="Text"><circle class="cls-2" cx="24" cy="24" r="24"/><g id="Rocket_Turtle_White" data-name="Rocket Turtle – White"><g class="cls-3"><g class="cls-3"><path class="cls-4" d="M26.66,29.7l-1.36.14c-.29,0-.43.29-.5.58l-.22,1h0c-.07.36.29.36.57.43l1.44-.43c.57,0,.71-1,.71-1.29a.54.54,0,0,0-.64-.43"/><polygon class="cls-4" points="9.76 36.52 20.71 26.47 19.5 25.46 9.76 36.52"/><path class="cls-4" d="M33.25,20.5l-1.07.15a.58.58,0,0,0-.65.5l-.07,1.44a.13.13,0,0,0,0,.06.51.51,0,0,0,.51.51l.79.21a.57.57,0,0,0,.64-.5L33.75,21v0a.49.49,0,0,0-.5-.48"/><path class="cls-4" d="M34.76,15.9a4.37,4.37,0,1,0-7,3.53,1.46,1.46,0,0,0-.5.28l-.86-.79h0a.54.54,0,0,0-.78,0L20.14,23.8l-.07.08a.45.45,0,0,0,.07.64l1.29,1.23c.21.21.64.14.93-.22s1.15-1.44,2.15-2.51a26,26,0,0,1,2.43-2.38c.15-.07.22-.14.08.08a27,27,0,0,0-2.94,4.17c-.36.71-1.93,3.73-1.22,4.31h0c.08.07.22.15.57.07a6.88,6.88,0,0,0,1.79-.43A9.87,9.87,0,0,0,27.94,27c.94-.87,2.65-2.73,2.94-4.46a3.65,3.65,0,0,0-.54-2.3,4.45,4.45,0,0,0,4.42-4.38M27,15.9v-.11a3.25,3.25,0,0,1,3.3-3.19,3.31,3.31,0,0,1,0,6.61,3,3,0,0,1-.59-.07v-.58a3.11,3.11,0,0,0,1.65-1.08c.79-.79.79-2.51-.36-2.87-.93-.29-2,.65-2.29,1.44a2.69,2.69,0,0,0,.15,2.51v.29a3.34,3.34,0,0,1-1.86-3"/></g></g></g></g></g></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><defs><linearGradient id="A" x1="1.82" y1="34.28" x2="45.38" y2="14.09" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#d83490"/><stop offset="1" stop-color="#770398"/></linearGradient><clipPath id="B"><path d="M9.76 11.52h25v25h-25z" fill="none"/></clipPath></defs><circle cx="24" cy="24" r="24" fill="url(#A)"/><g clip-path="url(#B)"><g clip-path="url(#B)" fill="#fff"><path d="M26.66 29.7l-1.36.14c-.3 0-.43.3-.5.58l-.22 1c-.07.36.3.36.57.43l1.44-.43c.57 0 .7-1 .7-1.3a.54.54 0 0 0-.64-.43m-16.9 6.83L20.7 26.47l-1.2-1-9.74 11.06z"/><path d="M33.25 20.5l-1.07.15a.58.58 0 0 0-.65.5l-.07 1.44a.13.13 0 0 0 0 .06.51.51 0 0 0 .51.51l.8.2a.57.57 0 0 0 .64-.5l.35-1.87a.49.49 0 0 0-.5-.48m1.5-4.6a4.37 4.37 0 1 0-7 3.53 1.46 1.46 0 0 0-.5.28l-.86-.8a.54.54 0 0 0-.78 0l-5.48 4.88-.07.08a.45.45 0 0 0 .07.64l1.3 1.23c.2.2.64.14.93-.22l2.15-2.5a26 26 0 0 1 2.43-2.38c.15-.07.22-.14.08.08a27 27 0 0 0-2.94 4.17c-.36.7-1.93 3.73-1.22 4.3.08.07.22.15.57.07a6.88 6.88 0 0 0 1.79-.43A9.87 9.87 0 0 0 27.94 27c.94-.87 2.65-2.73 2.94-4.46a3.65 3.65 0 0 0-.54-2.3 4.45 4.45 0 0 0 4.42-4.38M27 15.9v-.1a3.25 3.25 0 0 1 3.3-3.19 3.31 3.31 0 0 1 0 6.61 3 3 0 0 1-.59-.07v-.58a3.11 3.11 0 0 0 1.65-1.08c.8-.8.8-2.5-.36-2.87-.93-.3-2 .65-2.3 1.44a2.69 2.69 0 0 0 .15 2.51v.3a3.34 3.34 0 0 1-1.86-3"/></g></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/cumulus/ddos_server.svg b/src/main/webapp/img/lib/cumulus/ddos_server.svg index 4c53663a707a95eb496c76717181ae7c29b598fb..d7163823a4192b4f53fdda30e19a1279121c658a 100644 --- a/src/main/webapp/img/lib/cumulus/ddos_server.svg +++ b/src/main/webapp/img/lib/cumulus/ddos_server.svg @@ -1,96 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - viewBox="0 0 48 10" - version="1.1" - id="svg1030" - sodipodi:docname="ddos_server.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"> - <metadata - id="metadata1034"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title>cumulus-networks-netq-server</dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview1032" - showgrid="false" - inkscape:zoom="7.5885418" - inkscape:cx="58.616442" - inkscape:cy="26.108283" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="svg1030" /> - <defs - id="defs1014"> - <style - id="style1012">.cls-1{fill:#fff;}.cls-2{fill:#8c9aa6;}.cls-3{fill:#83389b;}.cls-4{fill:none;stroke:#8c9aa6;stroke-linejoin:round;}</style> - </defs> - <title - id="title1016">cumulus-networks-netq-server</title> - <rect - class="cls-1" - x="0.5" - y="0.5" - width="47" - height="9" - rx="1.5" - ry="1.5" - id="rect1018" - style="fill:#ffffff" /> - <path - class="cls-2" - d="m 46,1 a 1,1 0 0 1 1,1 V 8 A 1,1 0 0 1 46,9 H 2 A 1,1 0 0 1 1,8 V 2 A 1,1 0 0 1 2,1 H 46 M 46,0 H 2 A 2,2 0 0 0 0,2 v 6 a 2,2 0 0 0 2,2 H 46 A 2,2 0 0 0 48,8 V 2 A 2,2 0 0 0 46,0 Z" - id="path1020" - inkscape:connector-curvature="0" - style="fill:#8c9aa6" /> - <rect - class="cls-2" - x="32" - y="4" - width="10" - height="2" - id="rect1022" - style="fill:#8c9aa6" /> - <rect - style="opacity:1;vector-effect:none;fill:#364149;fill-opacity:1;stroke:none;stroke-width:12.77050972;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="rect1270" - width="25.795469" - height="6.6218257" - x="1.5483871" - y="1.6321208" /> - <text - xml:space="preserve" - style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none" - x="7.1322832" - y="6.7528844" - id="text1274"><tspan - sodipodi:role="line" - id="tspan1272" - x="7.1322832" - y="6.7528844" - style="font-size:5.33333349px;line-height:1.25;fill:#ffffff">DDos</tspan></text> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 10"><rect x=".5" y=".5" width="47" height="9" rx="1.5" fill="#fff"/><path d="M46 1a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h44m0-1H2a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h44a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zM32 4h10v2H32z" fill="#8c9aa6"/><path d="M1.548 1.632h25.795v6.622H1.548z" fill="#364149" paint-order="normal"/><text xml:space="preserve" x="7.132" y="6.753" font-size="40" font-family="sans-serif" letter-spacing="0" word-spacing="0" fill="#fff"><tspan x="7.132" y="6.753" font-size="5.333">DDos</tspan></text></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/cumulus/internet.svg b/src/main/webapp/img/lib/cumulus/internet.svg index cf2abd0b99d91a5754cc82aa1bc7193850723da5..a11df4f8f1d40d822a741775aa2ccabc8b4f4ce6 100644 --- a/src/main/webapp/img/lib/cumulus/internet.svg +++ b/src/main/webapp/img/lib/cumulus/internet.svg @@ -1,67 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="362.33026mm" - height="128.97183mm" - viewBox="0 0 362.33026 128.97183" - version="1.1" - id="svg1070" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="internet.svg"> - <defs - id="defs1064" /> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.49497475" - inkscape:cx="853.93521" - inkscape:cy="555.38504" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata1067"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(71.724447,-84.910605)"> - <path - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#cbd4e0;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m -27.393776,169.46742 c -7.345095,2.79475 -13.304715,2.37517 -20.502427,0.55156 -11.502812,-3.74962 -19.130773,-11.28725 -19.826385,-20.22925 0.129173,-10.79902 10.606765,-18.34427 21.20859,-21.6095 6.895075,-1.81173 12.556572,-0.77033 19.276785,1.09005 5.039801,-16.52852 20.7477989,-26.96136 42.734237,-29.883053 14.993191,-1.133914 29.305856,3.916923 39.466087,12.805333 11.841747,-13.14097 28.167017,-26.060408 64.299839,-22.789275 18.773,0.869987 34.61564,10.495513 44.74154,22.950585 11.88653,-9.60549 28.74222,-16.973808 52.48137,-10.48409 15.35011,6.22819 24.42689,11.22422 30.0491,27.21428 17.64764,-6.03365 39.43849,5.16411 40.0655,18.80432 0.4354,18.50395 -25.12087,27.37155 -39.971,21.54464 -6.74034,18.08673 -19.06957,25.049 -39.40402,29.67113 -14.16079,2.00078 -30.75403,-1.94248 -43.37277,-12.5677 -13.15748,15.86652 -31.68058,24.55224 -59.17619,23.21589 C 81.411282,208.8169 67.545336,200.55796 55.230381,186.65386 42.389303,196.7878 29.031461,201.03467 10.894492,198.70128 -3.8638177,196.3493 -21.215981,188.57593 -27.393776,169.46742 Z" - id="path1083" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccccccccccccc" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="1369.436" height="487.453" viewBox="0 0 362.33 128.972"><path d="M44.33 84.556c-7.345 2.795-13.305 2.375-20.502.552C12.325 81.358 4.697 73.82 4 64.88c.13-10.8 10.607-18.344 21.21-21.61 6.895-1.812 12.557-.77 19.277 1.1 5.04-16.53 20.748-26.96 42.734-29.883 14.993-1.134 29.306 3.917 39.466 12.805 11.842-13.14 28.167-26.06 64.3-22.79 18.773.87 34.616 10.496 44.742 22.95 11.887-9.605 28.742-16.974 52.48-10.484 15.35 6.228 24.427 11.224 30.05 27.214 17.648-6.034 39.438 5.164 40.065 18.804.435 18.504-25.12 27.372-39.97 21.545-6.74 18.087-19.07 25.05-39.404 29.67-14.16 2-30.754-1.942-43.373-12.568-13.157 15.867-31.68 24.552-59.176 23.216-23.265-.935-37.13-9.194-49.446-23.098-12.84 10.134-26.2 14.38-44.336 12.047-14.758-2.352-32.1-10.125-38.288-29.234z" fill="#fff" stroke="#cbd4e0" stroke-width="8"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/cumulus/limed_spruce.svg b/src/main/webapp/img/lib/cumulus/limed_spruce.svg index 19e9789feedd591d8037b5f0d8c204bdd85b81d4..0b444e21d82186d99c53586fd82d34246c9eed34 100644 --- a/src/main/webapp/img/lib/cumulus/limed_spruce.svg +++ b/src/main/webapp/img/lib/cumulus/limed_spruce.svg @@ -1 +1 @@ -<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 34.8"><defs><style>.cls-1{fill:#36424a;}.cls-2{fill:none;}</style></defs><title>cumulus-networks-logo-limed-spruce</title><g id="Layer_2" data-name="Layer 2"><g id="Layer_1-2" data-name="Layer 1"><path id="Union_116" data-name="Union 116" class="cls-1" d="M90.8,15.7V5.91h3V15.5c0,3.2,1.6,4.79,4.3,4.79s4.29-1.5,4.29-4.7V5.9h3v9.6c0,5-2.9,7.6-7.29,7.6S90.8,20.6,90.8,15.7Zm-33,0V5.91h3V15.5c0,3.2,1.6,4.79,4.3,4.79s4.3-1.5,4.3-4.7V5.9h3v9.6c0,5-2.9,7.6-7.3,7.6s-7.3-2.5-7.3-7.4Zm-39.69,0V5.91h3V15.5c0,3.2,1.6,4.79,4.3,4.79s4.3-1.5,4.3-4.7V5.9h3v9.6c0,5-2.9,7.6-7.3,7.6s-7.31-2.5-7.31-7.4ZM0,14.4A8.6,8.6,0,0,1,8.4,5.6h.3a9,9,0,0,1,6.7,2.7l-1.9,2.1a6.33,6.33,0,0,0-4.7-2,6,6,0,0,0-5.6,6.4,5.94,5.94,0,0,0,5.5,5.6,6.41,6.41,0,0,0,4.8-2.2l1.9,1.9a8.57,8.57,0,0,1-6.9,3A8.5,8.5,0,0,1,0,14.61H0Zm108.19,6,1.7-2.2a8,8,0,0,0,5.3,2.2c1.8,0,3-.8,3-2.2,0-1.2-.7-1.8-3.8-2.6-3.6-.8-5.6-1.9-5.6-5,0-2.9,2.5-4.9,5.7-4.9a9.07,9.07,0,0,1,6.1,2.1L119,10.1a7,7,0,0,0-4.6-1.7c-1.7,0-2.8.9-2.8,2,0,1.3.8,1.8,4,2.7,3.6.8,5.4,2.2,5.4,4.9,0,3.2-2.5,5-6,5A9.69,9.69,0,0,1,108.19,20.4ZM36.9,22.9V5.9h3.3l5.1,8,5.1-8h3.2V22.8h-3V10.7l-5.3,8h-.1l-5.3-7.9V22.9Zm39.79-.11V5.9h3V20.1h8.9v2.7Z"/><g id="Group_2475" data-name="Group 2475"><ellipse id="Ellipse_672" data-name="Ellipse 672" class="cls-2" cx="143.8" cy="6.1" rx="6.2" ry="6.1"/></g><path class="cls-1" d="M138.69,25.3l-1.9.2c-.4,0-.6.4-.7.8l-.3,1.4h0c-.1.5.4.5.8.6l2-.6c.8,0,1-1.4,1-1.8A.78.78,0,0,0,138.69,25.3Z"/><polygon class="cls-1" points="115.09 34.8 130.39 20.8 128.69 19.4 115.09 34.8"/><path class="cls-1" d="M147.89,12.5l-1.5.2a.82.82,0,0,0-.9.7l-.1,2v.09a.7.7,0,0,0,.7.71l1.1.3a.8.8,0,0,0,.9-.7l.5-2.6v0A.68.68,0,0,0,147.89,12.5Z"/><path class="cls-1" d="M150,6.1A6.1,6.1,0,1,0,140.29,11a2.2,2.2,0,0,0-.7.39l-1.2-1.1h0a.78.78,0,0,0-1.1,0l-7.7,6.8-.1.1a.65.65,0,0,0,.1.9l1.8,1.7c.3.3.9.2,1.3-.3.2-.3,1.6-2,3-3.5a35.32,35.32,0,0,1,3.4-3.3c.2-.1.31-.2.1.1a39.71,39.71,0,0,0-4.1,5.8c-.5,1-2.7,5.2-1.7,6h0c.1.1.3.2.8.1a10.36,10.36,0,0,0,2.5-.6,14.06,14.06,0,0,0,3.8-2.5c1.3-1.2,3.7-3.8,4.1-6.2a5.13,5.13,0,0,0-.76-3.2A6.21,6.21,0,0,0,150,6.1Zm-10.8,0V6a4.52,4.52,0,0,1,4.6-4.45,4.6,4.6,0,0,1,0,9.2,4.27,4.27,0,0,1-.81-.09V9.8a4.44,4.44,0,0,0,2.3-1.5c1.1-1.1,1.1-3.5-.5-4-1.3-.4-2.8.9-3.2,2-.5,1.4-.4,2.9.2,3.5v.4A4.63,4.63,0,0,1,139.2,6.1Z"/></g></g></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 34.8" fill="#36424a"><path d="M90.8 15.7V5.9h3v9.6c0 3.2 1.6 4.8 4.3 4.8s4.3-1.5 4.3-4.7V5.9h3v9.6c0 5-2.9 7.6-7.3 7.6s-7.3-2.5-7.3-7.4zm-33 0V5.9h3v9.6c0 3.2 1.6 4.8 4.3 4.8s4.3-1.5 4.3-4.7V5.9h3v9.6c0 5-2.9 7.6-7.3 7.6s-7.3-2.5-7.3-7.4zm-39.7 0V5.9h3v9.6c0 3.2 1.6 4.8 4.3 4.8s4.3-1.5 4.3-4.7V5.9h3v9.6c0 5-2.9 7.6-7.3 7.6s-7.3-2.5-7.3-7.4zM0 14.4a8.6 8.6 0 0 1 8.4-8.8h.3a9 9 0 0 1 6.7 2.7l-1.9 2.1a6.33 6.33 0 0 0-4.7-2 6 6 0 0 0-5.6 6.4 5.94 5.94 0 0 0 5.5 5.6 6.41 6.41 0 0 0 4.8-2.2l1.9 1.9a8.57 8.57 0 0 1-6.9 3A8.5 8.5 0 0 1 0 14.61zm108.2 6l1.7-2.2a8 8 0 0 0 5.3 2.2c1.8 0 3-.8 3-2.2 0-1.2-.7-1.8-3.8-2.6-3.6-.8-5.6-1.9-5.6-5 0-2.9 2.5-4.9 5.7-4.9a9.07 9.07 0 0 1 6.1 2.1l-1.6 2.3a7 7 0 0 0-4.6-1.7c-1.7 0-2.8.9-2.8 2 0 1.3.8 1.8 4 2.7 3.6.8 5.4 2.2 5.4 4.9 0 3.2-2.5 5-6 5a9.69 9.69 0 0 1-6.81-2.6zm-71.3 2.5v-17h3.3l5.1 8 5.1-8h3.2v16.9h-3V10.7l-5.3 8h-.1l-5.3-7.9v12.1zm39.8-.1V5.9h3v14.2h8.9v2.7zm62 2.5l-1.9.2c-.4 0-.6.4-.7.8l-.3 1.4c-.1.5.4.5.8.6l2-.6c.8 0 1-1.4 1-1.8a.78.78 0 0 0-.9-.6zm-23.6 9.5l15.3-14-1.7-1.4-13.6 15.4zm32.8-22.3l-1.5.2a.82.82 0 0 0-.9.7l-.1 2v.1a.7.7 0 0 0 .7.71l1.1.3a.8.8 0 0 0 .9-.7l.5-2.6a.68.68 0 0 0-.7-.7zm2.1-6.4a6.1 6.1 0 1 0-9.71 4.9 2.2 2.2 0 0 0-.7.39l-1.2-1.1a.78.78 0 0 0-1.1 0l-7.7 6.8-.1.1a.65.65 0 0 0 .1.9l1.8 1.7c.3.3.9.2 1.3-.3.2-.3 1.6-2 3-3.5a35.32 35.32 0 0 1 3.4-3.3c.2-.1.3-.2.1.1a39.71 39.71 0 0 0-4.1 5.8c-.5 1-2.7 5.2-1.7 6 .1.1.3.2.8.1a10.36 10.36 0 0 0 2.5-.6 14.06 14.06 0 0 0 3.8-2.5c1.3-1.2 3.7-3.8 4.1-6.2a5.13 5.13 0 0 0-.76-3.2A6.21 6.21 0 0 0 150 6.1zm-10.8 0V6a4.52 4.52 0 0 1 4.6-4.45 4.6 4.6 0 0 1 0 9.2 4.27 4.27 0 0 1-.81-.09V9.8a4.44 4.44 0 0 0 2.3-1.5c1.1-1.1 1.1-3.5-.5-4-1.3-.4-2.8.9-3.2 2-.5 1.4-.4 2.9.2 3.5v.4a4.63 4.63 0 0 1-2.59-4.1z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/cumulus/netq_agent.svg b/src/main/webapp/img/lib/cumulus/netq_agent.svg index 45bf4cc0acfa56f7bc8ca07da8e1e95524b26ce8..65db1356b5fd9f4fa4138f6baae09573bbb3104a 100644 --- a/src/main/webapp/img/lib/cumulus/netq_agent.svg +++ b/src/main/webapp/img/lib/cumulus/netq_agent.svg @@ -1 +1 @@ -<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 9"><defs><style>.cls-1{fill:#83389b;}.cls-2{fill:none;stroke:#8c9aa6;stroke-linejoin:round;}</style></defs><title>cumulus-networks-netq-agent</title><g id="Layer_2" data-name="Layer 2"><g id="Text"><circle class="cls-1" cx="4.5" cy="4.5" r="1.5"/><circle class="cls-2" cx="4.5" cy="4.5" r="4"/></g></g></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 9"><circle cx="4.5" cy="4.5" r="1.5" fill="#83389b"/><circle cx="4.5" cy="4.5" r="4" fill="none" stroke="#8c9aa6" stroke-linejoin="round"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/cumulus/netq_chassis.svg b/src/main/webapp/img/lib/cumulus/netq_chassis.svg index e1f1cb490122d8ff0a091c422c7a3850093320c3..6c906a1d1dbec08439093a6d2409e4c31bc1660c 100644 --- a/src/main/webapp/img/lib/cumulus/netq_chassis.svg +++ b/src/main/webapp/img/lib/cumulus/netq_chassis.svg @@ -1 +1 @@ -<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 53 36"><defs><style>.cls-1{fill:#fff;}.cls-2{fill:#83389b;}.cls-3{fill:#8c9aa6;}</style></defs><title>cumulus-networks-netq-chassis</title><g id="Layer_2" data-name="Layer 2"><g id="Text"><rect class="cls-1" x="3" y="1" width="47" height="7" rx="1" ry="1"/><path class="cls-2" d="M49,2V7H4V2H49m0-2H4A2,2,0,0,0,2,2V7A2,2,0,0,0,4,9H49a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z"/><path class="cls-3" d="M49,1a1,1,0,0,1,1,1V7a1,1,0,0,1-1,1H4A1,1,0,0,1,3,7V2A1,1,0,0,1,4,1H49m0-1H4A2,2,0,0,0,2,2V7A2,2,0,0,0,4,9H49a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z"/><rect class="cls-3" x="37" y="4" width="1" height="1"/><rect class="cls-3" x="39" y="4" width="1" height="1"/><rect class="cls-3" x="41" y="4" width="1" height="1"/><rect class="cls-3" x="43" y="4" width="1" height="1"/><rect class="cls-3" x="45" y="4" width="1" height="1"/><rect class="cls-3" x="25" y="4" width="1" height="1"/><rect class="cls-3" x="27" y="4" width="1" height="1"/><rect class="cls-3" x="29" y="4" width="1" height="1"/><rect class="cls-3" x="31" y="4" width="1" height="1"/><rect class="cls-3" x="33" y="4" width="1" height="1"/><rect class="cls-3" x="35" y="4" width="1" height="1"/><rect class="cls-3" x="13" y="4" width="1" height="1"/><rect class="cls-3" x="15" y="4" width="1" height="1"/><rect class="cls-3" x="17" y="4" width="1" height="1"/><rect class="cls-3" x="19" y="4" width="1" height="1"/><rect class="cls-3" x="21" y="4" width="1" height="1"/><rect class="cls-3" x="23" y="4" width="1" height="1"/><rect class="cls-3" x="7" y="4" width="1" height="1"/><rect class="cls-3" x="9" y="4" width="1" height="1"/><rect class="cls-3" x="11" y="4" width="1" height="1"/><rect class="cls-1" x="3" y="9" width="47" height="7" rx="1" ry="1"/><path class="cls-2" d="M49,10v5H4V10H49m0-2H4a2,2,0,0,0-2,2v5a2,2,0,0,0,2,2H49a2,2,0,0,0,2-2V10a2,2,0,0,0-2-2Z"/><path class="cls-3" d="M49,9a1,1,0,0,1,1,1v5a1,1,0,0,1-1,1H4a1,1,0,0,1-1-1V10A1,1,0,0,1,4,9H49m0-1H4a2,2,0,0,0-2,2v5a2,2,0,0,0,2,2H49a2,2,0,0,0,2-2V10a2,2,0,0,0-2-2Z"/><rect class="cls-3" x="37" y="12" width="1" height="1"/><rect class="cls-3" x="39" y="12" width="1" height="1"/><rect class="cls-3" x="41" y="12" width="1" height="1"/><rect class="cls-3" x="43" y="12" width="1" height="1"/><rect class="cls-3" x="45" y="12" width="1" height="1"/><rect class="cls-3" x="25" y="12" width="1" height="1"/><rect class="cls-3" x="27" y="12" width="1" height="1"/><rect class="cls-3" x="29" y="12" width="1" height="1"/><rect class="cls-3" x="31" y="12" width="1" height="1"/><rect class="cls-3" x="33" y="12" width="1" height="1"/><rect class="cls-3" x="35" y="12" width="1" height="1"/><rect class="cls-3" x="13" y="12" width="1" height="1"/><rect class="cls-3" x="15" y="12" width="1" height="1"/><rect class="cls-3" x="17" y="12" width="1" height="1"/><rect class="cls-3" x="19" y="12" width="1" height="1"/><rect class="cls-3" x="21" y="12" width="1" height="1"/><rect class="cls-3" x="23" y="12" width="1" height="1"/><rect class="cls-3" x="7" y="12" width="1" height="1"/><rect class="cls-3" x="9" y="12" width="1" height="1"/><rect class="cls-3" x="11" y="12" width="1" height="1"/><rect class="cls-1" x="3" y="17" width="47" height="7" rx="1" ry="1"/><path class="cls-2" d="M49,18v5H4V18H49m0-2H4a2,2,0,0,0-2,2v5a2,2,0,0,0,2,2H49a2,2,0,0,0,2-2V18a2,2,0,0,0-2-2Z"/><path class="cls-3" d="M49,17a1,1,0,0,1,1,1v5a1,1,0,0,1-1,1H4a1,1,0,0,1-1-1V18a1,1,0,0,1,1-1H49m0-1H4a2,2,0,0,0-2,2v5a2,2,0,0,0,2,2H49a2,2,0,0,0,2-2V18a2,2,0,0,0-2-2Z"/><rect class="cls-3" x="37" y="20" width="1" height="1"/><rect class="cls-3" x="39" y="20" width="1" height="1"/><rect class="cls-3" x="41" y="20" width="1" height="1"/><rect class="cls-3" x="43" y="20" width="1" height="1"/><rect class="cls-3" x="45" y="20" width="1" height="1"/><rect class="cls-3" x="25" y="20" width="1" height="1"/><rect class="cls-3" x="27" y="20" width="1" height="1"/><rect class="cls-3" x="29" y="20" width="1" height="1"/><rect class="cls-3" x="31" y="20" width="1" height="1"/><rect class="cls-3" x="33" y="20" width="1" height="1"/><rect class="cls-3" x="35" y="20" width="1" height="1"/><rect class="cls-3" x="13" y="20" width="1" height="1"/><rect class="cls-3" x="15" y="20" width="1" height="1"/><rect class="cls-3" x="17" y="20" width="1" height="1"/><rect class="cls-3" x="19" y="20" width="1" height="1"/><rect class="cls-3" x="21" y="20" width="1" height="1"/><rect class="cls-3" x="23" y="20" width="1" height="1"/><rect class="cls-3" x="7" y="20" width="1" height="1"/><rect class="cls-3" x="9" y="20" width="1" height="1"/><rect class="cls-3" x="11" y="20" width="1" height="1"/><rect class="cls-1" x="7" y="25" width="39" height="10" rx="1" ry="1"/><path class="cls-2" d="M45,26v8H8V26H45m0-2H8a2,2,0,0,0-2,2v8a2,2,0,0,0,2,2H45a2,2,0,0,0,2-2V26a2,2,0,0,0-2-2Z"/><path class="cls-3" d="M45,25a1,1,0,0,1,1,1v8a1,1,0,0,1-1,1H8a1,1,0,0,1-1-1V26a1,1,0,0,1,1-1H45m0-1H8a2,2,0,0,0-2,2v8a2,2,0,0,0,2,2H45a2,2,0,0,0,2-2V26a2,2,0,0,0-2-2Z"/><rect class="cls-3" x="11" y="28" width="1" height="4"/><rect class="cls-3" x="14" y="28" width="1" height="4"/><rect class="cls-3" x="17" y="28" width="1" height="4"/><rect class="cls-3" x="20" y="28" width="1" height="4"/><rect class="cls-3" x="23" y="28" width="1" height="4"/><rect class="cls-3" x="26" y="28" width="1" height="4"/><rect class="cls-3" x="29" y="28" width="1" height="4"/><rect class="cls-3" x="32" y="28" width="1" height="4"/><rect class="cls-3" x="35" y="28" width="1" height="4"/><rect class="cls-3" x="38" y="28" width="1" height="4"/><rect class="cls-3" x="41" y="28" width="1" height="4"/><rect class="cls-1" x="1" y="1" width="4" height="29" rx="1" ry="1"/><path class="cls-2" d="M4,2V29H2V2H4M4,0H2A2,2,0,0,0,0,2V29a2,2,0,0,0,2,2H4a2,2,0,0,0,2-2V2A2,2,0,0,0,4,0Z"/><path class="cls-3" d="M4,1A1,1,0,0,1,5,2V29a1,1,0,0,1-1,1H2a1,1,0,0,1-1-1V2A1,1,0,0,1,2,1H4M4,0H2A2,2,0,0,0,0,2V29a2,2,0,0,0,2,2H4a2,2,0,0,0,2-2V2A2,2,0,0,0,4,0Z"/><rect class="cls-1" x="48" y="1" width="4" height="29" rx="1" ry="1"/><path class="cls-2" d="M51,2V29H49V2h2m0-2H49a2,2,0,0,0-2,2V29a2,2,0,0,0,2,2h2a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z"/><path class="cls-3" d="M51,1a1,1,0,0,1,1,1V29a1,1,0,0,1-1,1H49a1,1,0,0,1-1-1V2a1,1,0,0,1,1-1h2m0-1H49a2,2,0,0,0-2,2V29a2,2,0,0,0,2,2h2a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z"/></g></g></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 53 36"><rect x="3" y="1" width="47" height="7" rx="1" fill="#fff"/><path d="M49,2V7H4V2H49m0-2H4A2,2,0,0,0,2,2V7A2,2,0,0,0,4,9H49a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z" fill="#83389b"/><path d="M49 1a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h45m0-1H4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h45a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zM37 4h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zM25 4h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zM13 4h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zM7 4h1v1H7zm2 0h1v1H9zm2 0h1v1h-1z" fill="#8c9aa6"/><rect x="3" y="9" width="47" height="7" rx="1" fill="#fff"/><path d="M49,10v5H4V10H49m0-2H4a2,2,0,0,0-2,2v5a2,2,0,0,0,2,2H49a2,2,0,0,0,2-2V10a2,2,0,0,0-2-2Z" fill="#83389b"/><path d="M49 9a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-5a1 1 0 0 1 1-1h45m0-1H4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h45a2 2 0 0 0 2-2v-5a2 2 0 0 0-2-2zm-12 4h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm-20 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm-22 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zM7 12h1v1H7zm2 0h1v1H9zm2 0h1v1h-1z" fill="#8c9aa6"/><rect x="3" y="17" width="47" height="7" rx="1" fill="#fff"/><path d="M49,18v5H4V18H49m0-2H4a2,2,0,0,0-2,2v5a2,2,0,0,0,2,2H49a2,2,0,0,0,2-2V18a2,2,0,0,0-2-2Z" fill="#83389b"/><path d="M49 17a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-5a1 1 0 0 1 1-1h45m0-1H4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h45a2 2 0 0 0 2-2v-5a2 2 0 0 0-2-2zm-12 4h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm-20 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm-22 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zm2 0h1v1h-1zM7 20h1v1H7zm2 0h1v1H9zm2 0h1v1h-1z" fill="#8c9aa6"/><rect x="7" y="25" width="39" height="10" rx="1" fill="#fff"/><path d="M45,26v8H8V26H45m0-2H8a2,2,0,0,0-2,2v8a2,2,0,0,0,2,2H45a2,2,0,0,0,2-2V26a2,2,0,0,0-2-2Z" fill="#83389b"/><path d="M45 25a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1v-8a1 1 0 0 1 1-1h37m0-1H8a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h37a2 2 0 0 0 2-2v-8a2 2 0 0 0-2-2zm-34 4h1v4h-1zm3 0h1v4h-1zm3 0h1v4h-1zm3 0h1v4h-1zm3 0h1v4h-1zm3 0h1v4h-1zm3 0h1v4h-1zm3 0h1v4h-1zm3 0h1v4h-1zm3 0h1v4h-1zm3 0h1v4h-1z" fill="#8c9aa6"/><rect x="1" y="1" width="4" height="29" rx="1" fill="#fff"/><path d="M4,2V29H2V2H4M4,0H2A2,2,0,0,0,0,2V29a2,2,0,0,0,2,2H4a2,2,0,0,0,2-2V2A2,2,0,0,0,4,0Z" fill="#83389b"/><path d="M4,1A1,1,0,0,1,5,2V29a1,1,0,0,1-1,1H2a1,1,0,0,1-1-1V2A1,1,0,0,1,2,1H4M4,0H2A2,2,0,0,0,0,2V29a2,2,0,0,0,2,2H4a2,2,0,0,0,2-2V2A2,2,0,0,0,4,0Z" fill="#8c9aa6"/><rect x="48" y="1" width="4" height="29" rx="1" fill="#fff"/><path d="M51,2V29H49V2h2m0-2H49a2,2,0,0,0-2,2V29a2,2,0,0,0,2,2h2a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z" fill="#83389b"/><path d="M51,1a1,1,0,0,1,1,1V29a1,1,0,0,1-1,1H49a1,1,0,0,1-1-1V2a1,1,0,0,1,1-1h2m0-1H49a2,2,0,0,0-2,2V29a2,2,0,0,0,2,2h2a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z" fill="#8c9aa6"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/cumulus/netq_server.svg b/src/main/webapp/img/lib/cumulus/netq_server.svg index c3ebc85cb05ed01bcd33514dc24e7ead414081e3..647b2887c11f0417466dd537ad8832b5daee1ab6 100644 --- a/src/main/webapp/img/lib/cumulus/netq_server.svg +++ b/src/main/webapp/img/lib/cumulus/netq_server.svg @@ -1 +1 @@ -<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 10"><defs><style>.cls-1{fill:#fff;}.cls-2{fill:#8c9aa6;}.cls-3{fill:#83389b;}.cls-4{fill:none;stroke:#8c9aa6;stroke-linejoin:round;}</style></defs><title>cumulus-networks-netq-server</title><g id="Layer_2" data-name="Layer 2"><g id="Text"><rect class="cls-1" x="0.5" y="0.5" width="47" height="9" rx="1.5" ry="1.5"/><path class="cls-2" d="M46,1a1,1,0,0,1,1,1V8a1,1,0,0,1-1,1H2A1,1,0,0,1,1,8V2A1,1,0,0,1,2,1H46m0-1H2A2,2,0,0,0,0,2V8a2,2,0,0,0,2,2H46a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z"/><rect class="cls-2" x="32" y="4" width="10" height="2"/><circle class="cls-3" cx="8.5" cy="4.5" r="1.5"/><circle class="cls-4" cx="8.5" cy="4.5" r="4"/></g></g></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 10"><rect x=".5" y=".5" width="47" height="9" rx="1.5" fill="#fff"/><path d="M46 1a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h44m0-1H2a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h44a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zM32 4h10v2H32z" fill="#8c9aa6"/><circle cx="8.5" cy="4.5" r="1.5" fill="#83389b"/><circle cx="8.5" cy="4.5" r="4" fill="none" stroke="#8c9aa6" stroke-linejoin="round"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/cumulus/netq_telemetry_server.svg b/src/main/webapp/img/lib/cumulus/netq_telemetry_server.svg index 4fcd19fdc79b69e1578555295ae6a2e218f847d8..bde00440330a3bb19f450a234e1805683773096a 100644 --- a/src/main/webapp/img/lib/cumulus/netq_telemetry_server.svg +++ b/src/main/webapp/img/lib/cumulus/netq_telemetry_server.svg @@ -1 +1 @@ -<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 12"><defs><style>.cls-1{fill:#fff;}.cls-2{fill:#83389b;}.cls-3{fill:#8c9aa6;}</style></defs><title>cumulus-networks-netq-telemetry-server</title><g id="Layer_2" data-name="Layer 2"><g id="Text"><rect class="cls-1" x="1.5" y="1.5" width="45" height="9" rx="0.5" ry="0.5"/><path class="cls-2" d="M45,3V9H3V3H45m1-3H2A2,2,0,0,0,0,2v8a2,2,0,0,0,2,2H46a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z"/><path class="cls-3" d="M46,1a1,1,0,0,1,1,1v8a1,1,0,0,1-1,1H2a1,1,0,0,1-1-1V2A1,1,0,0,1,2,1H46m0-1H2A2,2,0,0,0,0,2v8a2,2,0,0,0,2,2H46a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z"/><rect class="cls-3" x="32" y="5" width="10" height="2"/></g></g></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 12"><rect x="1.5" y="1.5" width="45" height="9" rx=".5" fill="#fff"/><path d="M45,3V9H3V3H45m1-3H2A2,2,0,0,0,0,2v8a2,2,0,0,0,2,2H46a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z" fill="#83389b"/><path d="M46 1a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h44m0-1H2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h44a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zM32 5h10v2H32z" fill="#8c9aa6"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/cumulus/rack_bare_metal.svg b/src/main/webapp/img/lib/cumulus/rack_bare_metal.svg index 50d83d7491a8768af10701a294fad91f11767f98..d7e22baa4d48c21ccf0332ea89e9d288cfee79ce 100644 --- a/src/main/webapp/img/lib/cumulus/rack_bare_metal.svg +++ b/src/main/webapp/img/lib/cumulus/rack_bare_metal.svg @@ -1,236 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - viewBox="0 0 48 57" - version="1.1" - id="svg931" - sodipodi:docname="rack_bare_metal.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"> - <metadata - id="metadata935"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title>cumulus-networks-rack-cumulus-linux</dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview933" - showgrid="false" - inkscape:zoom="5.3777332" - inkscape:cx="-41.263739" - inkscape:cy="42.3294" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="svg931" /> - <defs - id="defs883"> - <style - id="style876">.cls-1{fill:#fff;}.cls-2{fill:#8c9aa6;}.cls-3{fill:url(#New_Gradient_Swatch_6);}</style> - <linearGradient - id="New_Gradient_Swatch_6" - x1="32.23" - y1="20.26" - x2="15.77" - y2="-8.26" - gradientUnits="userSpaceOnUse"> - <stop - offset="0" - stop-color="#00ad69" - id="stop878" /> - <stop - offset="1" - stop-color="#7ccc6c" - id="stop880" /> - </linearGradient> - </defs> - <title - id="title885">cumulus-networks-rack-cumulus-linux</title> - <rect - class="cls-1" - x="0.5" - y="11.5" - width="47" - height="9" - rx="1.5" - ry="1.5" - id="rect887" - style="fill:#ffffff" /> - <path - class="cls-2" - d="m 46,12 a 1,1 0 0 1 1,1 v 6 a 1,1 0 0 1 -1,1 H 2 A 1,1 0 0 1 1,19 v -6 a 1,1 0 0 1 1,-1 h 44 m 0,-1 H 2 a 2,2 0 0 0 -2,2 v 6 a 2,2 0 0 0 2,2 h 44 a 2,2 0 0 0 2,-2 v -6 a 2,2 0 0 0 -2,-2 z" - id="path889" - inkscape:connector-curvature="0" - style="fill:#8c9aa6" /> - <rect - class="cls-2" - x="32" - y="15" - width="10" - height="2" - id="rect891" - style="fill:#8c9aa6" /> - <rect - class="cls-1" - x="0.5" - y="20.5" - width="47" - height="9" - rx="1.5" - ry="1.5" - id="rect893" - style="fill:#ffffff" /> - <path - class="cls-2" - d="m 46,21 a 1,1 0 0 1 1,1 v 6 a 1,1 0 0 1 -1,1 H 2 A 1,1 0 0 1 1,28 v -6 a 1,1 0 0 1 1,-1 h 44 m 0,-1 H 2 a 2,2 0 0 0 -2,2 v 6 a 2,2 0 0 0 2,2 h 44 a 2,2 0 0 0 2,-2 v -6 a 2,2 0 0 0 -2,-2 z" - id="path895" - inkscape:connector-curvature="0" - style="fill:#8c9aa6" /> - <rect - class="cls-2" - x="32" - y="24" - width="10" - height="2" - id="rect897" - style="fill:#8c9aa6" /> - <rect - class="cls-1" - x="0.5" - y="29.5" - width="47" - height="9" - rx="1.5" - ry="1.5" - id="rect899" - style="fill:#ffffff" /> - <path - class="cls-2" - d="m 46,30 a 1,1 0 0 1 1,1 v 6 a 1,1 0 0 1 -1,1 H 2 A 1,1 0 0 1 1,37 v -6 a 1,1 0 0 1 1,-1 h 44 m 0,-1 H 2 a 2,2 0 0 0 -2,2 v 6 a 2,2 0 0 0 2,2 h 44 a 2,2 0 0 0 2,-2 v -6 a 2,2 0 0 0 -2,-2 z" - id="path901" - inkscape:connector-curvature="0" - style="fill:#8c9aa6" /> - <rect - class="cls-2" - x="32" - y="33" - width="10" - height="2" - id="rect903" - style="fill:#8c9aa6" /> - <rect - class="cls-1" - x="0.5" - y="38.5" - width="47" - height="9" - rx="1.5" - ry="1.5" - id="rect905" - style="fill:#ffffff" /> - <path - class="cls-2" - d="m 46,39 a 1,1 0 0 1 1,1 v 6 a 1,1 0 0 1 -1,1 H 2 A 1,1 0 0 1 1,46 v -6 a 1,1 0 0 1 1,-1 h 44 m 0,-1 H 2 a 2,2 0 0 0 -2,2 v 6 a 2,2 0 0 0 2,2 h 44 a 2,2 0 0 0 2,-2 v -6 a 2,2 0 0 0 -2,-2 z" - id="path907" - inkscape:connector-curvature="0" - style="fill:#8c9aa6" /> - <rect - class="cls-2" - x="32" - y="42" - width="10" - height="2" - id="rect909" - style="fill:#8c9aa6" /> - <rect - class="cls-1" - x="0.5" - y="47.5" - width="47" - height="9" - rx="1.5" - ry="1.5" - id="rect911" - style="fill:#ffffff" /> - <path - class="cls-2" - d="m 46,48 a 1,1 0 0 1 1,1 v 6 a 1,1 0 0 1 -1,1 H 2 A 1,1 0 0 1 1,55 v -6 a 1,1 0 0 1 1,-1 h 44 m 0,-1 H 2 a 2,2 0 0 0 -2,2 v 6 a 2,2 0 0 0 2,2 h 44 a 2,2 0 0 0 2,-2 v -6 a 2,2 0 0 0 -2,-2 z" - id="path913" - inkscape:connector-curvature="0" - style="fill:#8c9aa6" /> - <rect - class="cls-2" - x="32" - y="51" - width="10" - height="2" - id="rect915" - style="fill:#8c9aa6" /> - <rect - class="cls-1" - width="48" - height="12" - rx="2" - ry="2" - id="rect917" - x="0" - y="0" - style="fill:#ffffff" /> - <path - class="cls-3" - d="M 45,3 V 9 H 3 V 3 H 45 M 46,0 H 2 A 2,2 0 0 0 0,2 v 8 a 2,2 0 0 0 2,2 h 44 a 2,2 0 0 0 2,-2 V 2 A 2,2 0 0 0 46,0 Z" - id="path919" - style="fill:#cbd4e0;fill-opacity:1" - inkscape:connector-curvature="0" /> - <path - class="cls-2" - d="m 46,1 a 1,1 0 0 1 1,1 v 8 a 1,1 0 0 1 -1,1 H 2 A 1,1 0 0 1 1,10 V 2 A 1,1 0 0 1 2,1 H 46 M 46,0 H 2 A 2,2 0 0 0 0,2 v 8 a 2,2 0 0 0 2,2 h 44 a 2,2 0 0 0 2,-2 V 2 A 2,2 0 0 0 46,0 Z" - id="path921" - inkscape:connector-curvature="0" - style="fill:#8c9aa6" /> - <rect - class="cls-2" - x="40" - y="5" - width="2" - height="2" - id="rect923" - style="fill:#8c9aa6" /> - <rect - class="cls-2" - x="35" - y="5" - width="2" - height="2" - id="rect925" - style="fill:#8c9aa6" /> - <rect - class="cls-2" - x="30" - y="5" - width="2" - height="2" - id="rect927" - style="fill:#8c9aa6" /> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 48 57"><rect x=".5" y="11.5" width="47" height="9" rx="1.5" fill="#fff"/><g fill="#8c9aa6"><use xlink:href="#B"/><path d="M32 15h10v2H32z"/></g><rect x=".5" y="20.5" width="47" height="9" rx="1.5" fill="#fff"/><g fill="#8c9aa6"><use xlink:href="#B" y="9"/><path d="M32 24h10v2H32z"/></g><rect x=".5" y="29.5" width="47" height="9" rx="1.5" fill="#fff"/><g fill="#8c9aa6"><use xlink:href="#B" y="18"/><path d="M32 33h10v2H32z"/></g><rect x=".5" y="38.5" width="47" height="9" rx="1.5" fill="#fff"/><g fill="#8c9aa6"><use xlink:href="#B" y="27"/><path d="M32 42h10v2H32z"/></g><rect x=".5" y="47.5" width="47" height="9" rx="1.5" fill="#fff"/><g fill="#8c9aa6"><use xlink:href="#B" y="36"/><path d="M32 51h10v2H32z"/></g><rect width="48" height="12" rx="2" fill="#fff"/><path d="M45 3v6H3V3h42m1-3H2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h44a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z" fill="#cbd4e0"/><path d="M46 1a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h44m0-1H2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h44a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm-6 5h2v2h-2zm-5 0h2v2h-2zm-5 0h2v2h-2z" fill="#8c9aa6"/><defs ><path id="B" d="M46 12a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1v-6a1 1 0 0 1 1-1h44m0-1H2a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h44a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/cumulus/rack_cumulus_linux.svg b/src/main/webapp/img/lib/cumulus/rack_cumulus_linux.svg index 0bdb801cd37b28f4f286295223a1b5ddf53d5908..b3fc90957eb3812a82f77fd65e779c777e50fde5 100644 --- a/src/main/webapp/img/lib/cumulus/rack_cumulus_linux.svg +++ b/src/main/webapp/img/lib/cumulus/rack_cumulus_linux.svg @@ -1 +1 @@ -<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 48 57"><defs><style>.cls-1{fill:#fff;}.cls-2{fill:#8c9aa6;}.cls-3{fill:url(#New_Gradient_Swatch_6);}</style><linearGradient id="New_Gradient_Swatch_6" x1="32.23" y1="20.26" x2="15.77" y2="-8.26" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#00ad69"/><stop offset="1" stop-color="#7ccc6c"/></linearGradient></defs><title>cumulus-networks-rack-cumulus-linux</title><g id="Layer_2" data-name="Layer 2"><g id="Text"><rect class="cls-1" x="0.5" y="11.5" width="47" height="9" rx="1.5" ry="1.5"/><path class="cls-2" d="M46,12a1,1,0,0,1,1,1v6a1,1,0,0,1-1,1H2a1,1,0,0,1-1-1V13a1,1,0,0,1,1-1H46m0-1H2a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2H46a2,2,0,0,0,2-2V13a2,2,0,0,0-2-2Z"/><rect class="cls-2" x="32" y="15" width="10" height="2"/><rect class="cls-1" x="0.5" y="20.5" width="47" height="9" rx="1.5" ry="1.5"/><path class="cls-2" d="M46,21a1,1,0,0,1,1,1v6a1,1,0,0,1-1,1H2a1,1,0,0,1-1-1V22a1,1,0,0,1,1-1H46m0-1H2a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2H46a2,2,0,0,0,2-2V22a2,2,0,0,0-2-2Z"/><rect class="cls-2" x="32" y="24" width="10" height="2"/><rect class="cls-1" x="0.5" y="29.5" width="47" height="9" rx="1.5" ry="1.5"/><path class="cls-2" d="M46,30a1,1,0,0,1,1,1v6a1,1,0,0,1-1,1H2a1,1,0,0,1-1-1V31a1,1,0,0,1,1-1H46m0-1H2a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2H46a2,2,0,0,0,2-2V31a2,2,0,0,0-2-2Z"/><rect class="cls-2" x="32" y="33" width="10" height="2"/><rect class="cls-1" x="0.5" y="38.5" width="47" height="9" rx="1.5" ry="1.5"/><path class="cls-2" d="M46,39a1,1,0,0,1,1,1v6a1,1,0,0,1-1,1H2a1,1,0,0,1-1-1V40a1,1,0,0,1,1-1H46m0-1H2a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2H46a2,2,0,0,0,2-2V40a2,2,0,0,0-2-2Z"/><rect class="cls-2" x="32" y="42" width="10" height="2"/><rect class="cls-1" x="0.5" y="47.5" width="47" height="9" rx="1.5" ry="1.5"/><path class="cls-2" d="M46,48a1,1,0,0,1,1,1v6a1,1,0,0,1-1,1H2a1,1,0,0,1-1-1V49a1,1,0,0,1,1-1H46m0-1H2a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2H46a2,2,0,0,0,2-2V49a2,2,0,0,0-2-2Z"/><rect class="cls-2" x="32" y="51" width="10" height="2"/><rect class="cls-1" width="48" height="12" rx="2" ry="2"/><path class="cls-3" d="M45,3V9H3V3H45m1-3H2A2,2,0,0,0,0,2v8a2,2,0,0,0,2,2H46a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z"/><path class="cls-2" d="M46,1a1,1,0,0,1,1,1v8a1,1,0,0,1-1,1H2a1,1,0,0,1-1-1V2A1,1,0,0,1,2,1H46m0-1H2A2,2,0,0,0,0,2v8a2,2,0,0,0,2,2H46a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z"/><rect class="cls-2" x="40" y="5" width="2" height="2"/><rect class="cls-2" x="35" y="5" width="2" height="2"/><rect class="cls-2" x="30" y="5" width="2" height="2"/></g></g></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 57"><defs><linearGradient id="A" x1="32.23" y1="20.26" x2="15.77" y2="-8.26" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#00ad69"/><stop offset="1" stop-color="#7ccc6c"/></linearGradient></defs><rect x=".5" y="11.5" width="47" height="9" rx="1.5" fill="#fff"/><path d="M46 12a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1v-6a1 1 0 0 1 1-1h44m0-1H2a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h44a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2zm-14 4h10v2H32z" fill="#8c9aa6"/><rect x=".5" y="20.5" width="47" height="9" rx="1.5" fill="#fff"/><path d="M46 21a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1v-6a1 1 0 0 1 1-1h44m0-1H2a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h44a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2zm-14 4h10v2H32z" fill="#8c9aa6"/><rect x=".5" y="29.5" width="47" height="9" rx="1.5" fill="#fff"/><path d="M46 30a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1v-6a1 1 0 0 1 1-1h44m0-1H2a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h44a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2zm-14 4h10v2H32z" fill="#8c9aa6"/><rect x=".5" y="38.5" width="47" height="9" rx="1.5" fill="#fff"/><path d="M46 39a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1v-6a1 1 0 0 1 1-1h44m0-1H2a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h44a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2zm-14 4h10v2H32z" fill="#8c9aa6"/><rect x=".5" y="47.5" width="47" height="9" rx="1.5" fill="#fff"/><path d="M46 48a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1v-6a1 1 0 0 1 1-1h44m0-1H2a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h44a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2zm-14 4h10v2H32z" fill="#8c9aa6"/><rect width="48" height="12" rx="2" fill="#fff"/><path d="M45,3V9H3V3H45m1-3H2A2,2,0,0,0,0,2v8a2,2,0,0,0,2,2H46a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z" fill="url(#A)"/><path d="M46 1a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h44m0-1H2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h44a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm-6 5h2v2h-2zm-5 0h2v2h-2zm-5 0h2v2h-2z" fill="#8c9aa6"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/cumulus/rack_out_of_band.svg b/src/main/webapp/img/lib/cumulus/rack_out_of_band.svg index d9c7270c2e2c92d2a89342ee1b7f62134cce3b87..84caf5734ccafc8a5c0a7e80e6000394b9d203d4 100644 --- a/src/main/webapp/img/lib/cumulus/rack_out_of_band.svg +++ b/src/main/webapp/img/lib/cumulus/rack_out_of_band.svg @@ -1 +1 @@ -<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 48 57"><defs><style>.cls-1{fill:#fff;}.cls-2{fill:#8c9aa6;}.cls-3{fill:url(#New_Gradient_Swatch_2);}</style><linearGradient id="New_Gradient_Swatch_2" x1="32.23" y1="20.26" x2="15.77" y2="-8.26" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#78cdd1"/><stop offset="1" stop-color="#1effbd"/></linearGradient></defs><title>cumulus-networks-rack-out-of-band</title><g id="Layer_2" data-name="Layer 2"><g id="Text"><rect class="cls-1" x="0.5" y="11.5" width="47" height="9" rx="1.5" ry="1.5"/><path class="cls-2" d="M46,12a1,1,0,0,1,1,1v6a1,1,0,0,1-1,1H2a1,1,0,0,1-1-1V13a1,1,0,0,1,1-1H46m0-1H2a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2H46a2,2,0,0,0,2-2V13a2,2,0,0,0-2-2Z"/><rect class="cls-2" x="32" y="15" width="10" height="2"/><rect class="cls-1" x="0.5" y="20.5" width="47" height="9" rx="1.5" ry="1.5"/><path class="cls-2" d="M46,21a1,1,0,0,1,1,1v6a1,1,0,0,1-1,1H2a1,1,0,0,1-1-1V22a1,1,0,0,1,1-1H46m0-1H2a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2H46a2,2,0,0,0,2-2V22a2,2,0,0,0-2-2Z"/><rect class="cls-2" x="32" y="24" width="10" height="2"/><rect class="cls-1" x="0.5" y="29.5" width="47" height="9" rx="1.5" ry="1.5"/><path class="cls-2" d="M46,30a1,1,0,0,1,1,1v6a1,1,0,0,1-1,1H2a1,1,0,0,1-1-1V31a1,1,0,0,1,1-1H46m0-1H2a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2H46a2,2,0,0,0,2-2V31a2,2,0,0,0-2-2Z"/><rect class="cls-2" x="32" y="33" width="10" height="2"/><rect class="cls-1" x="0.5" y="38.5" width="47" height="9" rx="1.5" ry="1.5"/><path class="cls-2" d="M46,39a1,1,0,0,1,1,1v6a1,1,0,0,1-1,1H2a1,1,0,0,1-1-1V40a1,1,0,0,1,1-1H46m0-1H2a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2H46a2,2,0,0,0,2-2V40a2,2,0,0,0-2-2Z"/><rect class="cls-2" x="32" y="42" width="10" height="2"/><rect class="cls-1" x="0.5" y="47.5" width="47" height="9" rx="1.5" ry="1.5"/><path class="cls-2" d="M46,48a1,1,0,0,1,1,1v6a1,1,0,0,1-1,1H2a1,1,0,0,1-1-1V49a1,1,0,0,1,1-1H46m0-1H2a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2H46a2,2,0,0,0,2-2V49a2,2,0,0,0-2-2Z"/><rect class="cls-2" x="32" y="51" width="10" height="2"/><rect class="cls-1" width="48" height="12" rx="2" ry="2"/><path class="cls-3" d="M45,3V9H3V3H45m1-3H2A2,2,0,0,0,0,2v8a2,2,0,0,0,2,2H46a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z"/><path class="cls-2" d="M46,1a1,1,0,0,1,1,1v8a1,1,0,0,1-1,1H2a1,1,0,0,1-1-1V2A1,1,0,0,1,2,1H46m0-1H2A2,2,0,0,0,0,2v8a2,2,0,0,0,2,2H46a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z"/><rect class="cls-2" x="40" y="5" width="2" height="2"/><rect class="cls-2" x="35" y="5" width="2" height="2"/><rect class="cls-2" x="30" y="5" width="2" height="2"/></g></g></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 57"><defs><linearGradient id="A" x1="32.23" y1="20.26" x2="15.77" y2="-8.26" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#78cdd1"/><stop offset="1" stop-color="#1effbd"/></linearGradient></defs><rect x=".5" y="11.5" width="47" height="9" rx="1.5" fill="#fff"/><path d="M46 12a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1v-6a1 1 0 0 1 1-1h44m0-1H2a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h44a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2zm-14 4h10v2H32z" fill="#8c9aa6"/><rect x=".5" y="20.5" width="47" height="9" rx="1.5" fill="#fff"/><path d="M46 21a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1v-6a1 1 0 0 1 1-1h44m0-1H2a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h44a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2zm-14 4h10v2H32z" fill="#8c9aa6"/><rect x=".5" y="29.5" width="47" height="9" rx="1.5" fill="#fff"/><path d="M46 30a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1v-6a1 1 0 0 1 1-1h44m0-1H2a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h44a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2zm-14 4h10v2H32z" fill="#8c9aa6"/><rect x=".5" y="38.5" width="47" height="9" rx="1.5" fill="#fff"/><path d="M46 39a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1v-6a1 1 0 0 1 1-1h44m0-1H2a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h44a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2zm-14 4h10v2H32z" fill="#8c9aa6"/><rect x=".5" y="47.5" width="47" height="9" rx="1.5" fill="#fff"/><path d="M46 48a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1v-6a1 1 0 0 1 1-1h44m0-1H2a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h44a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2zm-14 4h10v2H32z" fill="#8c9aa6"/><rect width="48" height="12" rx="2" fill="#fff"/><path d="M45,3V9H3V3H45m1-3H2A2,2,0,0,0,0,2v8a2,2,0,0,0,2,2H46a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z" fill="url(#A)"/><path d="M46 1a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h44m0-1H2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h44a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm-6 5h2v2h-2zm-5 0h2v2h-2zm-5 0h2v2h-2z" fill="#8c9aa6"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/cumulus/rack_voyager.svg b/src/main/webapp/img/lib/cumulus/rack_voyager.svg index 574fe41ef08fd25b1a997ce01f6c89302e321cb6..dc6fabb4868916e0c75d9dd571998d2fc065fc8e 100644 --- a/src/main/webapp/img/lib/cumulus/rack_voyager.svg +++ b/src/main/webapp/img/lib/cumulus/rack_voyager.svg @@ -1 +1 @@ -<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 48 57"><defs><style>.cls-1{fill:#fff;}.cls-2{fill:#8c9aa6;}.cls-3{fill:url(#linear-gradient);}</style><linearGradient id="linear-gradient" x1="32.23" y1="20.26" x2="15.77" y2="-8.26" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#7ccc6c"/><stop offset="0.21" stop-color="#1eb7bd"/><stop offset="0.43" stop-color="#83389b"/><stop offset="0.64" stop-color="#f1446f"/><stop offset="0.83" stop-color="#ffa12d"/><stop offset="1" stop-color="#ffc82e"/></linearGradient></defs><title>cumulus-networks-rack-voyager</title><g id="Layer_2" data-name="Layer 2"><g id="Text"><rect class="cls-1" x="0.5" y="11.5" width="47" height="9" rx="1.5" ry="1.5"/><path class="cls-2" d="M46,12a1,1,0,0,1,1,1v6a1,1,0,0,1-1,1H2a1,1,0,0,1-1-1V13a1,1,0,0,1,1-1H46m0-1H2a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2H46a2,2,0,0,0,2-2V13a2,2,0,0,0-2-2Z"/><rect class="cls-2" x="32" y="15" width="10" height="2"/><rect class="cls-1" x="0.5" y="20.5" width="47" height="9" rx="1.5" ry="1.5"/><path class="cls-2" d="M46,21a1,1,0,0,1,1,1v6a1,1,0,0,1-1,1H2a1,1,0,0,1-1-1V22a1,1,0,0,1,1-1H46m0-1H2a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2H46a2,2,0,0,0,2-2V22a2,2,0,0,0-2-2Z"/><rect class="cls-2" x="32" y="24" width="10" height="2"/><rect class="cls-1" x="0.5" y="29.5" width="47" height="9" rx="1.5" ry="1.5"/><path class="cls-2" d="M46,30a1,1,0,0,1,1,1v6a1,1,0,0,1-1,1H2a1,1,0,0,1-1-1V31a1,1,0,0,1,1-1H46m0-1H2a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2H46a2,2,0,0,0,2-2V31a2,2,0,0,0-2-2Z"/><rect class="cls-2" x="32" y="33" width="10" height="2"/><rect class="cls-1" x="0.5" y="38.5" width="47" height="9" rx="1.5" ry="1.5"/><path class="cls-2" d="M46,39a1,1,0,0,1,1,1v6a1,1,0,0,1-1,1H2a1,1,0,0,1-1-1V40a1,1,0,0,1,1-1H46m0-1H2a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2H46a2,2,0,0,0,2-2V40a2,2,0,0,0-2-2Z"/><rect class="cls-2" x="32" y="42" width="10" height="2"/><rect class="cls-1" x="0.5" y="47.5" width="47" height="9" rx="1.5" ry="1.5"/><path class="cls-2" d="M46,48a1,1,0,0,1,1,1v6a1,1,0,0,1-1,1H2a1,1,0,0,1-1-1V49a1,1,0,0,1,1-1H46m0-1H2a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2H46a2,2,0,0,0,2-2V49a2,2,0,0,0-2-2Z"/><rect class="cls-2" x="32" y="51" width="10" height="2"/><rect class="cls-1" width="48" height="12" rx="2" ry="2"/><path class="cls-3" d="M45,3V9H3V3H45m1-3H2A2,2,0,0,0,0,2v8a2,2,0,0,0,2,2H46a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z"/><path class="cls-2" d="M46,1a1,1,0,0,1,1,1v8a1,1,0,0,1-1,1H2a1,1,0,0,1-1-1V2A1,1,0,0,1,2,1H46m0-1H2A2,2,0,0,0,0,2v8a2,2,0,0,0,2,2H46a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z"/><rect class="cls-2" x="40" y="5" width="2" height="2"/><rect class="cls-2" x="35" y="5" width="2" height="2"/><rect class="cls-2" x="30" y="5" width="2" height="2"/></g></g></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 57"><defs><linearGradient id="A" x1="32.23" y1="20.26" x2="15.77" y2="-8.26" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#7ccc6c"/><stop offset=".21" stop-color="#1eb7bd"/><stop offset=".43" stop-color="#83389b"/><stop offset=".64" stop-color="#f1446f"/><stop offset=".83" stop-color="#ffa12d"/><stop offset="1" stop-color="#ffc82e"/></linearGradient></defs><rect x=".5" y="11.5" width="47" height="9" rx="1.5" fill="#fff"/><path d="M46 12a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1v-6a1 1 0 0 1 1-1h44m0-1H2a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h44a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2zm-14 4h10v2H32z" fill="#8c9aa6"/><rect x=".5" y="20.5" width="47" height="9" rx="1.5" fill="#fff"/><path d="M46 21a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1v-6a1 1 0 0 1 1-1h44m0-1H2a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h44a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2zm-14 4h10v2H32z" fill="#8c9aa6"/><rect x=".5" y="29.5" width="47" height="9" rx="1.5" fill="#fff"/><path d="M46 30a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1v-6a1 1 0 0 1 1-1h44m0-1H2a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h44a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2zm-14 4h10v2H32z" fill="#8c9aa6"/><rect x=".5" y="38.5" width="47" height="9" rx="1.5" fill="#fff"/><path d="M46 39a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1v-6a1 1 0 0 1 1-1h44m0-1H2a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h44a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2zm-14 4h10v2H32z" fill="#8c9aa6"/><rect x=".5" y="47.5" width="47" height="9" rx="1.5" fill="#fff"/><path d="M46 48a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1v-6a1 1 0 0 1 1-1h44m0-1H2a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h44a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2zm-14 4h10v2H32z" fill="#8c9aa6"/><rect width="48" height="12" rx="2" fill="#fff"/><path d="M45,3V9H3V3H45m1-3H2A2,2,0,0,0,0,2v8a2,2,0,0,0,2,2H46a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z" fill="url(#A)"/><path d="M46 1a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h44m0-1H2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h44a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm-6 5h2v2h-2zm-5 0h2v2h-2zm-5 0h2v2h-2z" fill="#8c9aa6"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/cumulus/server_bare_metal.svg b/src/main/webapp/img/lib/cumulus/server_bare_metal.svg index a291e812f2ac38dbe7249d7270a8b21fce56f72d..365746c9b8a209b9b08a80e1217c4eee69332c54 100644 --- a/src/main/webapp/img/lib/cumulus/server_bare_metal.svg +++ b/src/main/webapp/img/lib/cumulus/server_bare_metal.svg @@ -1,78 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - viewBox="0 0 48 10" - version="1.1" - id="svg1030" - sodipodi:docname="server_bare_metal.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"> - <metadata - id="metadata1034"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title>cumulus-networks-netq-server</dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview1032" - showgrid="false" - inkscape:zoom="30.354167" - inkscape:cx="24" - inkscape:cy="5" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="svg1030" /> - <defs - id="defs1014"> - <style - id="style1012">.cls-1{fill:#fff;}.cls-2{fill:#8c9aa6;}.cls-3{fill:#83389b;}.cls-4{fill:none;stroke:#8c9aa6;stroke-linejoin:round;}</style> - </defs> - <title - id="title1016">cumulus-networks-netq-server</title> - <rect - class="cls-1" - x="0.5" - y="0.5" - width="47" - height="9" - rx="1.5" - ry="1.5" - id="rect1018" - style="fill:#ffffff" /> - <path - class="cls-2" - d="m 46,1 a 1,1 0 0 1 1,1 V 8 A 1,1 0 0 1 46,9 H 2 A 1,1 0 0 1 1,8 V 2 A 1,1 0 0 1 2,1 H 46 M 46,0 H 2 A 2,2 0 0 0 0,2 v 6 a 2,2 0 0 0 2,2 H 46 A 2,2 0 0 0 48,8 V 2 A 2,2 0 0 0 46,0 Z" - id="path1020" - inkscape:connector-curvature="0" - style="fill:#8c9aa6" /> - <rect - class="cls-2" - x="32" - y="4" - width="10" - height="2" - id="rect1022" - style="fill:#8c9aa6" /> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 10"><rect x=".5" y=".5" width="47" height="9" rx="1.5" fill="#fff"/><path d="M46 1a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h44m0-1H2a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h44a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zM32 4h10v2H32z" fill="#8c9aa6"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/cumulus/switch.svg b/src/main/webapp/img/lib/cumulus/switch.svg index 23c81f8a971733246816eed5890300fd8ec62605..2a5a245f515c694c28f3a8c9fc56dc1a5f056ce6 100644 --- a/src/main/webapp/img/lib/cumulus/switch.svg +++ b/src/main/webapp/img/lib/cumulus/switch.svg @@ -1,112 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - viewBox="0 0 48 10" - version="1.1" - id="svg1030" - sodipodi:docname="switch.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"> - <metadata - id="metadata1034"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title>cumulus-networks-netq-server</dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview1032" - showgrid="false" - inkscape:zoom="21.463637" - inkscape:cx="25.025795" - inkscape:cy="5.3443967" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="svg1030" /> - <defs - id="defs1014"> - <style - id="style1012">.cls-1{fill:#fff;}.cls-2{fill:#8c9aa6;}.cls-3{fill:#83389b;}.cls-4{fill:none;stroke:#8c9aa6;stroke-linejoin:round;}</style> - </defs> - <title - id="title1016">cumulus-networks-netq-server</title> - <rect - class="cls-1" - x="0.5" - y="0.5" - width="47" - height="9" - rx="1.5" - ry="1.5" - id="rect1018" - style="fill:#ffffff" /> - <path - class="cls-2" - d="m 46,1 a 1,1 0 0 1 1,1 V 8 A 1,1 0 0 1 46,9 H 2 A 1,1 0 0 1 1,8 V 2 A 1,1 0 0 1 2,1 H 46 M 46,0 H 2 A 2,2 0 0 0 0,2 v 6 a 2,2 0 0 0 2,2 H 46 A 2,2 0 0 0 48,8 V 2 A 2,2 0 0 0 46,0 Z" - id="path1020" - inkscape:connector-curvature="0" - style="fill:#8c9aa6" /> - <rect - class="cls-2" - x="32" - y="3.9491742" - width="2.2892845" - height="2" - id="rect1022" - style="fill:#8c9aa6;stroke-width:0.47846469" /> - <rect - style="opacity:1;vector-effect:none;fill:#364149;fill-opacity:1;stroke:none;stroke-width:12.77050972;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="rect1270" - width="25.795469" - height="6.6218257" - x="1.5483871" - y="1.6321208" /> - <text - xml:space="preserve" - style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none" - x="5.3618469" - y="6.9392462" - id="text1274"><tspan - sodipodi:role="line" - id="tspan1272" - x="5.3618469" - y="6.9392462" - style="font-size:5.33333349px;line-height:1.25;fill:#ffffff">Switch</tspan></text> - <rect - class="cls-2" - x="36.381721" - y="3.9491742" - width="2.2892845" - height="2" - id="rect1022-7" - style="fill:#8c9aa6;stroke-width:0.47846469" /> - <rect - class="cls-2" - x="40.763443" - y="3.9491742" - width="2.2892845" - height="2" - id="rect1022-4" - style="fill:#8c9aa6;stroke-width:0.47846469" /> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 10"><rect x=".5" y=".5" width="47" height="9" rx="1.5" fill="#fff"/><path d="M46 1a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h44m0-1H2a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h44a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zM32 3.95h2.3v2H32z" fill="#8c9aa6"/><path d="M1.548 1.632h25.795v6.622H1.548z" fill="#364149" paint-order="normal"/><text xml:space="preserve" x="5.362" y="6.939" font-size="40" font-family="sans-serif" letter-spacing="0" word-spacing="0" fill="#fff"><tspan x="5.362" y="6.939" font-size="5.333">Switch</tspan></text><path d="M36.382 3.95h2.3v2h-2.3zm4.38 0h2.3v2h-2.3z" fill="#8c9aa6"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/cumulus/switch_bare_metal_empty.svg b/src/main/webapp/img/lib/cumulus/switch_bare_metal_empty.svg index 9f84c795365ad35a0da0aa9d26f1306eb0f07830..b38287b92c22f82363f52ab010eee023b24e2e3d 100644 --- a/src/main/webapp/img/lib/cumulus/switch_bare_metal_empty.svg +++ b/src/main/webapp/img/lib/cumulus/switch_bare_metal_empty.svg @@ -1 +1 @@ -<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 12"><defs><style>.cls-1{fill:#fff;}.cls-2{fill:#cbd4e0;}.cls-3{fill:#8c9aa6;}</style></defs><title>cumulus-networks-switch-bare-metal-empty</title><g id="Layer_2" data-name="Layer 2"><g id="Text"><rect class="cls-1" x="1.5" y="1.5" width="45" height="9" rx="0.5" ry="0.5"/><path class="cls-2" d="M45,3V9H3V3H45m1-3H2A2,2,0,0,0,0,2v8a2,2,0,0,0,2,2H46a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z"/><path class="cls-3" d="M46,1a1,1,0,0,1,1,1v8a1,1,0,0,1-1,1H2a1,1,0,0,1-1-1V2A1,1,0,0,1,2,1H46m0-1H2A2,2,0,0,0,0,2v8a2,2,0,0,0,2,2H46a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z"/><rect class="cls-3" x="40" y="5" width="2" height="2"/><rect class="cls-3" x="35" y="5" width="2" height="2"/><rect class="cls-3" x="30" y="5" width="2" height="2"/></g></g></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 12"><rect x="1.5" y="1.5" width="45" height="9" rx=".5" fill="#fff"/><path d="M45,3V9H3V3H45m1-3H2A2,2,0,0,0,0,2v8a2,2,0,0,0,2,2H46a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z" fill="#cbd4e0"/><path d="M46 1a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h44m0-1H2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h44a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm-6 5h2v2h-2zm-5 0h2v2h-2zm-5 0h2v2h-2z" fill="#8c9aa6"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/cumulus/switch_cumulus_linux.svg b/src/main/webapp/img/lib/cumulus/switch_cumulus_linux.svg index 347ff5f182304190c9e4538aab09a8a8ddf896c1..67c30826998561a1972597daf3c9d44a38e32f78 100644 --- a/src/main/webapp/img/lib/cumulus/switch_cumulus_linux.svg +++ b/src/main/webapp/img/lib/cumulus/switch_cumulus_linux.svg @@ -1 +1 @@ -<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 48 12"><defs><style>.cls-1{fill:#fff;}.cls-2{fill:url(#New_Gradient_Swatch_6);}.cls-3{fill:#8c9aa6;}</style><linearGradient id="New_Gradient_Swatch_6" x1="32.23" y1="20.26" x2="15.77" y2="-8.26" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#00ad69"/><stop offset="1" stop-color="#7ccc6c"/></linearGradient></defs><title>cumulus-networks-switch-cumulus-linux</title><g id="Layer_2" data-name="Layer 2"><g id="Text"><rect class="cls-1" width="48" height="12" rx="2" ry="2"/><path class="cls-2" d="M45,3V9H3V3H45m1-3H2A2,2,0,0,0,0,2v8a2,2,0,0,0,2,2H46a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z"/><path class="cls-3" d="M46,1a1,1,0,0,1,1,1v8a1,1,0,0,1-1,1H2a1,1,0,0,1-1-1V2A1,1,0,0,1,2,1H46m0-1H2A2,2,0,0,0,0,2v8a2,2,0,0,0,2,2H46a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z"/><rect class="cls-3" x="40" y="5" width="2" height="2"/><rect class="cls-3" x="35" y="5" width="2" height="2"/><rect class="cls-3" x="30" y="5" width="2" height="2"/></g></g></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 12"><defs><linearGradient id="A" x1="32.23" y1="20.26" x2="15.77" y2="-8.26" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#00ad69"/><stop offset="1" stop-color="#7ccc6c"/></linearGradient></defs><rect width="48" height="12" rx="2" fill="#fff"/><path d="M45,3V9H3V3H45m1-3H2A2,2,0,0,0,0,2v8a2,2,0,0,0,2,2H46a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z" fill="url(#A)"/><path d="M46 1a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h44m0-1H2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h44a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm-6 5h2v2h-2zm-5 0h2v2h-2zm-5 0h2v2h-2z" fill="#8c9aa6"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/cumulus/switch_out_of_band.svg b/src/main/webapp/img/lib/cumulus/switch_out_of_band.svg index c817d08aa12dc25daa42d97decbc262271ac8029..d5814785c453c881eb0cb122fd0f2f26bdf68182 100644 --- a/src/main/webapp/img/lib/cumulus/switch_out_of_band.svg +++ b/src/main/webapp/img/lib/cumulus/switch_out_of_band.svg @@ -1 +1 @@ -<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 48 12"><defs><style>.cls-1{fill:#fff;}.cls-2{fill:url(#New_Gradient_Swatch_2);}.cls-3{fill:#8c9aa6;}</style><linearGradient id="New_Gradient_Swatch_2" x1="32.23" y1="20.26" x2="15.77" y2="-8.26" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#78cdd1"/><stop offset="1" stop-color="#1effbd"/></linearGradient></defs><title>cumulus-networks-switch-out-of-band</title><g id="Layer_2" data-name="Layer 2"><g id="Text"><rect class="cls-1" width="48" height="12" rx="2" ry="2"/><path class="cls-2" d="M45,3V9H3V3H45m1-3H2A2,2,0,0,0,0,2v8a2,2,0,0,0,2,2H46a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z"/><path class="cls-3" d="M46,1a1,1,0,0,1,1,1v8a1,1,0,0,1-1,1H2a1,1,0,0,1-1-1V2A1,1,0,0,1,2,1H46m0-1H2A2,2,0,0,0,0,2v8a2,2,0,0,0,2,2H46a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z"/><rect class="cls-3" x="40" y="5" width="2" height="2"/><rect class="cls-3" x="35" y="5" width="2" height="2"/><rect class="cls-3" x="30" y="5" width="2" height="2"/></g></g></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 12"><defs><linearGradient id="A" x1="32.23" y1="20.26" x2="15.77" y2="-8.26" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#78cdd1"/><stop offset="1" stop-color="#1effbd"/></linearGradient></defs><rect width="48" height="12" rx="2" fill="#fff"/><path d="M45,3V9H3V3H45m1-3H2A2,2,0,0,0,0,2v8a2,2,0,0,0,2,2H46a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z" fill="url(#A)"/><path d="M46 1a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h44m0-1H2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h44a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm-6 5h2v2h-2zm-5 0h2v2h-2zm-5 0h2v2h-2z" fill="#8c9aa6"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/cumulus/switch_voyager.svg b/src/main/webapp/img/lib/cumulus/switch_voyager.svg index f8119d847eb57a259e32f5345c801e3affd74955..67c52a0102e77aa56d316afc9b8349ee04359938 100644 --- a/src/main/webapp/img/lib/cumulus/switch_voyager.svg +++ b/src/main/webapp/img/lib/cumulus/switch_voyager.svg @@ -1 +1 @@ -<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 48 12"><defs><style>.cls-1{fill:#fff;}.cls-2{fill:url(#linear-gradient);}.cls-3{fill:#8c9aa6;}</style><linearGradient id="linear-gradient" x1="32.23" y1="20.26" x2="15.77" y2="-8.26" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#7ccc6c"/><stop offset="0.21" stop-color="#1eb7bd"/><stop offset="0.43" stop-color="#83389b"/><stop offset="0.64" stop-color="#f1446f"/><stop offset="0.83" stop-color="#ffa12d"/><stop offset="1" stop-color="#ffc82e"/></linearGradient></defs><title>cumulus-networks-switch-voyager</title><g id="Layer_2" data-name="Layer 2"><g id="Text"><rect class="cls-1" width="48" height="12" rx="2" ry="2"/><path class="cls-2" d="M45,3V9H3V3H45m1-3H2A2,2,0,0,0,0,2v8a2,2,0,0,0,2,2H46a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z"/><path class="cls-3" d="M46,1a1,1,0,0,1,1,1v8a1,1,0,0,1-1,1H2a1,1,0,0,1-1-1V2A1,1,0,0,1,2,1H46m0-1H2A2,2,0,0,0,0,2v8a2,2,0,0,0,2,2H46a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z"/><rect class="cls-3" x="40" y="5" width="2" height="2"/><rect class="cls-3" x="35" y="5" width="2" height="2"/><rect class="cls-3" x="30" y="5" width="2" height="2"/></g></g></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 12"><defs><linearGradient id="A" x1="32.23" y1="20.26" x2="15.77" y2="-8.26" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#7ccc6c"/><stop offset=".21" stop-color="#1eb7bd"/><stop offset=".43" stop-color="#83389b"/><stop offset=".64" stop-color="#f1446f"/><stop offset=".83" stop-color="#ffa12d"/><stop offset="1" stop-color="#ffc82e"/></linearGradient></defs><rect width="48" height="12" rx="2" fill="#fff"/><path d="M45,3V9H3V3H45m1-3H2A2,2,0,0,0,0,2v8a2,2,0,0,0,2,2H46a2,2,0,0,0,2-2V2a2,2,0,0,0-2-2Z" fill="url(#A)"/><path d="M46 1a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h44m0-1H2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h44a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm-6 5h2v2h-2zm-5 0h2v2h-2zm-5 0h2v2h-2z" fill="#8c9aa6"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/analytics/analytics.svg b/src/main/webapp/img/lib/ibm/analytics/analytics.svg index 9c9f93a92a0dddeb20380585dc83867672aa575d..87efb877c5970c7f3f2d803ad5a6c061e125f34f 100644 --- a/src/main/webapp/img/lib/ibm/analytics/analytics.svg +++ b/src/main/webapp/img/lib/ibm/analytics/analytics.svg @@ -1,34 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.8 59.8" style="enable-background:new 0 0 59.8 59.8;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#734198;} - .st1{fill:#FFFFFF;} - .st2{fill:none;stroke:#FFFFFF;stroke-miterlimit:10;} - .st3{fill:#FFFFFF;stroke:#FFFFFF;stroke-miterlimit:10;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle class="st0" cx="29.9" cy="29.9" r="29.9"/> -<path class="st1" d="M50.4,26.4c-1.4,0-2.5,1.1-2.5,2.5c0,0.8,0.4,1.6,1.1,2.1l0,0l-4.8,10.6c-0.2-0.1-0.5-0.1-0.7-0.1 - c-0.5,0-1,0.2-1.5,0.5l0,0l-1-5.2c1.3-0.5,1.9-1.9,1.4-3.2c-0.4-1-1.3-1.6-2.4-1.6c-0.8,0-1.5-0.1-2,0.9l0,0l-2.4-0.7 - c-0.1-1.3-1.1-2.3-2.4-2.3c-0.2,0-0.1,0.1-0.2,0.2L31.3,24l0,0c0-0.5,0-0.8,0-1.1c0-1.4-1.2-2.5-2.6-2.6c-1.4,0-2.6,1-2.6,2.4 - c0,0,0,0,0,0l0,0l-10.1,8.6c-0.9-1-2.5-1.1-3.5-0.2c-1,0.9-1.1,2.5-0.2,3.5c0.9,1,2.5,1.1,3.5,0.2c0.5-0.5,0.8-1.1,0.8-1.8 - c0-0.2,0-0.5-0.1-0.7l9.9-8.4l0,0c0.4,0.8,1.2,1.3,2.1,1.3c0.5,0,1.1-0.2,1.5-0.5V25l1.8,5.9l0,0c-0.6,0-1,0.9-1,1.7 - c0,1.3,1.1,2.4,2.4,2.4c0,0,0,0,0.1,0c1.1,0,2.1-0.7,2.6-1.7l2.4,0.5l0,0v0.6c-0.1,1.2,0.8,2.4,2,2.5c0.1,0,0.1,0,0.2,0 - c0.1,0,0.2,0,0.3,0c-0.2,0-0.4,0-0.6,0H40l1.2,6.2c-0.5,1.3,0.2,2.7,1.4,3.2s2.7-0.2,3.2-1.4c0.4-1,0.1-2.1-0.7-2.8l0,0l4.9-10.8 - l0,0c0.1,0,0.2,0,0.3,0c1.4,0,2.5-1.1,2.5-2.5C52.9,27.4,51.8,26.3,50.4,26.4L50.4,26.4z M14.1,34.4c-0.8,0-1.4-0.6-1.4-1.4 - c0-0.8,0.6-1.4,1.4-1.4s1.4,0.6,1.4,1.4c0,0,0,0,0,0C15.5,33.8,14.8,34.4,14.1,34.4L14.1,34.4z M16.3,31.8L16.3,31.8z M26.1,23.4 - L26.1,23.4L26.1,23.4z M28.5,24.1c-0.8,0-1.4-0.6-1.4-1.4c0-0.8,0.6-1.4,1.4-1.4c0.8,0,1.4,0.6,1.4,1.4c0,0,0,0,0,0 - C29.9,23.5,29.3,24.1,28.5,24.1C28.5,24.1,28.5,24.1,28.5,24.1L28.5,24.1z M30.4,24.3L30.4,24.3L30.4,24.3z M32.3,30.1L32.3,30.1z - M33.3,33.7c-0.8,0-1.4-0.6-1.4-1.4c0-0.8,0.6-1.4,1.4-1.4c0.8,0,1.4,0.6,1.4,1.4c0,0,0,0,0,0C34.6,33.1,34,33.7,33.3,33.7 - L33.3,33.7z M35.7,32.8c0-0.2,0-0.3,0-0.5C35.8,32.5,35.8,32.6,35.7,32.8z M38,33.2L38,33.2z M38.8,34.4c0-0.8,0.6-1.4,1.4-1.4 - c0.8,0,1.4,0.6,1.4,1.4c0,0.8-0.6,1.4-1.4,1.4C39.4,35.8,38.7,35.2,38.8,34.4C38.7,34.4,38.7,34.4,38.8,34.4L38.8,34.4z M41.6,42.4 - L41.6,42.4L41.6,42.4z M43.6,45.4c-0.8,0-1.4-0.6-1.4-1.4c0-0.8,0.6-1.4,1.4-1.4c0.8,0,1.4,0.6,1.4,1.4C45,44.7,44.3,45.4,43.6,45.4 - L43.6,45.4z M44.8,41.8L44.8,41.8z M49.5,31.2L49.5,31.2z M50.4,30.3c-0.8,0-1.4-0.6-1.4-1.4c0-0.8,0.6-1.4,1.4-1.4 - c0.8,0,1.4,0.6,1.4,1.4c0,0,0,0,0,0C51.8,29.7,51.2,30.3,50.4,30.3L50.4,30.3z"/> -<line class="st2" x1="23.1" y1="18" x2="25.8" y2="20.3"/> -<line class="st2" x1="25.9" y1="16.1" x2="27.2" y2="19.4"/> -<path class="st3" d="M29.3,15.6L29,19.2"/> -<line class="st2" x1="32.5" y1="16.8" x2="30.5" y2="19.8"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.8 59.8"><circle cx="29.9" cy="29.9" r="29.9" fill="#734198"/><path d="M50.4 26.4c-1.4 0-2.5 1.1-2.5 2.5A2.61 2.61 0 0 0 49 31l-4.8 10.6c-.2-.1-.5-.1-.7-.1-.5 0-1 .2-1.5.5l-1-5.2c1.3-.5 1.9-1.9 1.4-3.2-.4-1-1.3-1.6-2.4-1.6-.8 0-1.5-.1-2 .9l-2.4-.7c-.1-1.3-1.1-2.3-2.4-2.3-.2 0-.1.1-.2.2L31.3 24v-1.1c0-1.4-1.2-2.5-2.6-2.6-1.4 0-2.6 1-2.6 2.4L16 31.3c-.9-1-2.5-1.1-3.5-.2s-1.1 2.5-.2 3.5 2.5 1.1 3.5.2c.5-.5.8-1.1.8-1.8 0-.2 0-.5-.1-.7l9.9-8.4a2.33 2.33 0 0 0 2.1 1.3c.5 0 1.1-.2 1.5-.5v.3l1.8 5.9c-.6 0-1 .9-1 1.7 0 1.3 1.1 2.4 2.4 2.4h.1c1.1 0 2.1-.7 2.6-1.7l2.4.5v.6c-.1 1.2.8 2.4 2 2.5h.5-.8l1.2 6.2c-.5 1.3.2 2.7 1.4 3.2s2.7-.2 3.2-1.4c.4-1 .1-2.1-.7-2.8L50 31.3h.3c1.4 0 2.5-1.1 2.5-2.5.1-1.4-1-2.5-2.4-2.4zm-36.3 8c-.8 0-1.4-.6-1.4-1.4s.6-1.4 1.4-1.4 1.4.6 1.4 1.4-.7 1.4-1.4 1.4zm2.2-2.6zm9.8-8.4zm2.4.7c-.8 0-1.4-.6-1.4-1.4s.6-1.4 1.4-1.4 1.4.6 1.4 1.4-.6 1.4-1.4 1.4zm1.9.2zm1.9 5.8zm1 3.6c-.8 0-1.4-.6-1.4-1.4s.6-1.4 1.4-1.4 1.4.6 1.4 1.4c-.1.8-.7 1.4-1.4 1.4zm2.4-.9v-.5a.45.45 0 0 1 0 .5zm2.3.4zm.8 1.2c0-.8.6-1.4 1.4-1.4s1.4.6 1.4 1.4-.6 1.4-1.4 1.4-1.5-.6-1.4-1.4c-.1 0-.1 0 0 0zm2.8 8zm2 3c-.8 0-1.4-.6-1.4-1.4s.6-1.4 1.4-1.4 1.4.6 1.4 1.4c0 .7-.7 1.4-1.4 1.4zm1.2-3.6zm4.7-10.6zm.9-.9c-.8 0-1.4-.6-1.4-1.4s.6-1.4 1.4-1.4 1.4.6 1.4 1.4-.6 1.4-1.4 1.4z" fill="#fff"/><path d="M23.1 18l2.7 2.3m.1-4.2l1.3 3.3" fill="none" stroke="#fff" stroke-miterlimit="10"/><path d="M29.3,15.6L29,19.2" fill="#fff" stroke="#fff" stroke-miterlimit="10"/><path d="M32.5 16.8l-2 3" fill="none" stroke="#fff" stroke-miterlimit="10"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/analytics/data_integration.svg b/src/main/webapp/img/lib/ibm/analytics/data_integration.svg index 4ebd85bc5012de021fd2b6a38584d32a154a286d..15955e1476c0182eaf5965e85e023e10353f76b8 100644 --- a/src/main/webapp/img/lib/ibm/analytics/data_integration.svg +++ b/src/main/webapp/img/lib/ibm/analytics/data_integration.svg @@ -1,23 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.9 59.8" style="enable-background:new 0 0 59.9 59.8;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#734198;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<ellipse class="st0" cx="30" cy="29.9" rx="30" ry="29.9"/> -<ellipse class="st1" cx="29.7" cy="11.6" rx="6.9" ry="2.9"/> -<path class="st1" d="M36.9,12.6c-0.4,1.5-3.4,2.8-7.2,2.8s-6.8-1.2-7.2-2.8l0,0v11.5l0,0c0,1.7,3.2,3,7.2,3s7.2-1.4,7.2-3L36.9,12.6 - L36.9,12.6z"/> -<ellipse class="st1" cx="18.7" cy="30.9" rx="6.9" ry="2.9"/> -<path class="st1" d="M25.9,31.9c-0.4,1.5-3.5,2.8-7.2,2.8s-6.8-1.2-7.2-2.8l0,0v11.5l0,0c0,1.7,3.2,3,7.2,3s7.2-1.4,7.2-3L25.9,31.9 - L25.9,31.9z"/> -<ellipse class="st1" cx="41.2" cy="30.9" rx="6.9" ry="2.9"/> -<path class="st1" d="M48.4,31.9c-0.4,1.5-3.4,2.8-7.2,2.8s-6.8-1.2-7.2-2.8l0,0v11.5l0,0c0,1.7,3.2,3,7.2,3c4,0,7.2-1.4,7.2-3 - L48.4,31.9L48.4,31.9z"/> -<rect x="26.8" y="37.4" class="st1" width="6.3" height="3.5"/> -<path class="st1" d="M21.8,23.9l-3.3,3.3H19c1.3,0,2.5,0.1,3.7,0.5l0.9-0.9c-1.2-0.5-1.9-1.3-1.9-2l0,0L21.8,23.9z"/> -<path class="st1" d="M40.7,27.1h0.4l-3.5-3.4v1c0,0.8-0.6,1.4-1.7,2l0.9,0.9C38.1,27.3,39.4,27.1,40.7,27.1z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.9 59.8"><ellipse cx="30" cy="29.9" rx="30" ry="29.9" fill="#734198"/><g fill="#fff"><ellipse cx="29.7" cy="11.6" rx="6.9" ry="2.9"/><path d="M36.9 12.6c-.4 1.5-3.4 2.8-7.2 2.8s-6.8-1.2-7.2-2.8v11.5c0 1.7 3.2 3 7.2 3s7.2-1.4 7.2-3V12.6z"/><ellipse cx="18.7" cy="30.9" rx="6.9" ry="2.9"/><path d="M25.9 31.9c-.4 1.5-3.5 2.8-7.2 2.8s-6.8-1.2-7.2-2.8v11.5c0 1.7 3.2 3 7.2 3s7.2-1.4 7.2-3V31.9z"/><ellipse cx="41.2" cy="30.9" rx="6.9" ry="2.9"/><path d="M48.4 31.9c-.4 1.5-3.4 2.8-7.2 2.8s-6.8-1.2-7.2-2.8v11.5c0 1.7 3.2 3 7.2 3s7.2-1.4 7.2-3V31.9zm-21.6 5.5h6.3v3.5h-6.3zm-5-13.5l-3.3 3.3h.5c1.3 0 2.5.1 3.7.5l.9-.9c-1.2-.5-1.9-1.3-1.9-2l.1-.9zm18.9 3.2h.4l-3.5-3.4v1c0 .8-.6 1.4-1.7 2l.9.9c1.3-.3 2.6-.5 3.9-.5z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/analytics/data_repositories.svg b/src/main/webapp/img/lib/ibm/analytics/data_repositories.svg index bbb1688523cb9bb2bdbc3c5d0a5b5afa729aeb25..8c4b4b40abe319f8bb5b1757b42b5c5db533a6da 100644 --- a/src/main/webapp/img/lib/ibm/analytics/data_repositories.svg +++ b/src/main/webapp/img/lib/ibm/analytics/data_repositories.svg @@ -1,28 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 60.1 59.9" style="enable-background:new 0 0 60.1 59.9;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#734198;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<ellipse class="st0" cx="30" cy="30" rx="30" ry="30"/> -<path class="st1" d="M46.9,24.5c-1.3,0-2.3,1-2.3,2.3c0,0.8,0.4,1.5,1,1.9l0,0l-4.5,9.8c-0.3-0.1-0.6-0.1-0.8-0.1 - c-0.5,0-1.1,0.2-1.6,0.4l0,0L38,34.1c0.9-0.3,1.5-1.2,1.6-2.2c0-1.4-1-2.5-2.4-2.7c-0.7,0-1.3-0.5-1.8,0.5l0,0l-2.2-0.2 - c-0.1-1.2-1.1-2-2.3-1.9c-0.2,0-0.2,0.1-0.4,0.1L28.8,22l0,0c0-0.5,0.1-0.6,0.1-0.9c0-1.3-1.1-2.4-2.4-2.4c-1.3,0-2.3,1.1-2.3,2.4 - l0,0l0,0l-9.4,8c-0.9-0.9-2.3-1-3.3-0.1c-0.9,0.9-1,2.3-0.1,3.3c0.9,0.9,2.3,1,3.3,0.1c0.5-0.4,0.7-1.1,0.7-1.7 - c0-0.2-0.2-0.4-0.3-0.6l9-7.8l0,0c0.5,0.8,1.3,1.2,2.2,1.2c0.5,0,1-0.2,1.5-0.5v-0.2l1.7,5l0,0c-0.6,0-0.9,1.3-0.9,2 - c0,1.3,1,2.4,2.3,2.4c1,0,1.8-0.5,2.2-1.4l2.1,0.5l0,0v0.5c-0.1,1.2,0.9,2.3,2.1,2.3c0,0,0.1,0,0.1,0c0.1,0,0.3,0,0.4,0 - c-0.2,0-0.3,0-0.5,0h-0.2l1.2,5.8c-0.1,0.3-0.2,0.5-0.2,0.8c0,1.3,1,2.3,2.3,2.3c1.2,0,2.2-1,2.1-2.2c0,0,0-0.1,0-0.1 - c-0.1-0.7-0.4-1.3-1-1.7l0,0l4.7-10l0,0h0.4c1.3,0,2.4-1,2.4-2.3C49.1,25.5,48.1,24.5,46.9,24.5z M13.1,31.9c-0.7,0-1.3-0.6-1.3-1.3 - s0.6-1.3,1.3-1.3c0.7,0,1.3,0.6,1.3,1.3S13.8,31.9,13.1,31.9L13.1,31.9z M15.1,29.5L15.1,29.5z M24.3,21.7L24.3,21.7L24.3,21.7z - M26.5,22.4c-0.7,0-1.3-0.6-1.3-1.3s0.6-1.3,1.3-1.3c0.7,0,1.3,0.6,1.3,1.3c0,0,0,0,0,0C27.8,21.8,27.2,22.4,26.5,22.4L26.5,22.4z - M28.3,22.5L28.3,22.5L28.3,22.5z M30,27.9L30,27.9z M31,31.3c-0.7,0-1.3-0.6-1.3-1.3c0-0.7,0.6-1.3,1.3-1.3c0.7,0,1.3,0.6,1.3,1.3 - C32.3,30.7,31.7,31.3,31,31.3C31,31.3,31,31.3,31,31.3L31,31.3z M33.3,30.4c0-0.1,0-0.3,0-0.4C33.3,30.2,33.3,30.3,33.3,30.4 - L33.3,30.4z M35.4,30.8L35.4,30.8z M36.1,31.9c0-0.7,0.6-1.3,1.3-1.3c0.7,0,1.3,0.6,1.3,1.3c0,0.7-0.6,1.3-1.3,1.3 - C36.7,33.2,36.1,32.7,36.1,31.9C36.1,31.9,36.1,31.9,36.1,31.9L36.1,31.9z M38.8,39.4L38.8,39.4L38.8,39.4z M40.6,42.1 - c-0.7,0-1.3-0.6-1.3-1.3c0-0.7,0.6-1.3,1.3-1.3c0.7,0,1.3,0.6,1.3,1.3C41.9,41.5,41.3,42.1,40.6,42.1C40.6,42.1,40.6,42.1,40.6,42.1 - L40.6,42.1z M41.7,38.8L41.7,38.8z M46.1,29L46.1,29z M47,28.1c-0.7,0-1.3-0.6-1.3-1.3c0-0.7,0.6-1.3,1.3-1.3c0.7,0,1.3,0.6,1.3,1.3 - C48.3,27.5,47.7,28.1,47,28.1C47,28.1,46.9,28.1,47,28.1L47,28.1z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60.1 59.9"><circle cx="30" cy="30" r="30" fill="#734198"/><path d="M46.9 24.5a2.26 2.26 0 0 0-2.3 2.3c0 .8.4 1.5 1 1.9l-4.5 9.8c-.3-.1-.6-.1-.8-.1-.5 0-1.1.2-1.6.4l-.7-4.7c.9-.3 1.5-1.2 1.6-2.2 0-1.4-1-2.5-2.4-2.7-.7 0-1.3-.5-1.8.5l-2.2-.2c-.1-1.2-1.1-2-2.3-1.9-.2 0-.2.1-.4.1L28.8 22c0-.5.1-.6.1-.9 0-1.3-1.1-2.4-2.4-2.4s-2.3 1.1-2.3 2.4l-9.4 8c-.9-.9-2.3-1-3.3-.1-.9.9-1 2.3-.1 3.3.9.9 2.3 1 3.3.1.5-.4.7-1.1.7-1.7 0-.2-.2-.4-.3-.6l9-7.8c.5.8 1.3 1.2 2.2 1.2.5 0 1-.2 1.5-.5v-.2l1.7 5c-.6 0-.9 1.3-.9 2 0 1.3 1 2.4 2.3 2.4 1 0 1.8-.5 2.2-1.4l2.1.5v.5c-.1 1.2.9 2.3 2.1 2.3h-.2l1.2 5.8c-.1.3-.2.5-.2.8a2.26 2.26 0 0 0 2.3 2.3c1.2 0 2.2-1 2.1-2.2v-.1c-.1-.7-.4-1.3-1-1.7l4.7-10h.4c1.3 0 2.4-1 2.4-2.3.1-1.2-.9-2.2-2.1-2.2zm-33.8 7.4c-.7 0-1.3-.6-1.3-1.3s.6-1.3 1.3-1.3 1.3.6 1.3 1.3-.6 1.3-1.3 1.3zm2-2.4zm9.2-7.8zm2.2.7c-.7 0-1.3-.6-1.3-1.3s.6-1.3 1.3-1.3 1.3.6 1.3 1.3-.6 1.3-1.3 1.3zm1.8.1zm1.7 5.4zm1 3.4c-.7 0-1.3-.6-1.3-1.3s.6-1.3 1.3-1.3 1.3.6 1.3 1.3-.6 1.3-1.3 1.3zm2.3-.9V30v.4zm2.1.4zm.7 1.1c0-.7.6-1.3 1.3-1.3s1.3.6 1.3 1.3-.6 1.3-1.3 1.3-1.3-.5-1.3-1.3zm2.7 7.5zm1.8 2.7c-.7 0-1.3-.6-1.3-1.3s.6-1.3 1.3-1.3 1.3.6 1.3 1.3-.6 1.3-1.3 1.3zm1.1-3.3zm4.4-9.8zm.9-.9c-.7 0-1.3-.6-1.3-1.3s.6-1.3 1.3-1.3 1.3.6 1.3 1.3-.6 1.3-1.3 1.3c0 0-.1 0 0 0z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/analytics/device_analytics.svg b/src/main/webapp/img/lib/ibm/analytics/device_analytics.svg index 4c9716530b770a6c8fdff3d338a6c46ab33106a8..bc71e384e4fd9473385a36530cdfde105072eaa2 100644 --- a/src/main/webapp/img/lib/ibm/analytics/device_analytics.svg +++ b/src/main/webapp/img/lib/ibm/analytics/device_analytics.svg @@ -1,21 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 61 60.8" style="enable-background:new 0 0 61 60.8;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#744298;} - .st1{fill:#FFFFFF;} - .st2{fill:none;stroke:#FFFFFF;stroke-miterlimit:10;} -</style> -<title>INDIVIDUAL ICONS</title> -<ellipse class="st0" cx="30.5" cy="30.4" rx="30.5" ry="30.4"/> -<path class="st1" d="M38,52.5H22.9c-2.8,0-5.1-2.3-5.1-5.1v-34c0-2.8,2.3-5.1,5.1-5.1H38c2.8,0,5.1,2.3,5.1,5.1v34 - C43.2,50.2,40.9,52.5,38,52.5C38.1,52.5,38,52.5,38,52.5z M23,9.6c-2.1,0-3.8,1.7-3.8,3.8v34c0,2.1,1.7,3.8,3.8,3.8h15 - c2.1,0,3.8-1.7,3.8-3.8v-34c0-2.1-1.7-3.8-3.8-3.8L23,9.6L23,9.6z"/> -<ellipse class="st1" cx="30.5" cy="48" rx="1.8" ry="1.9"/> -<rect x="28" y="10.9" class="st1" width="5" height="0.9"/> -<rect x="21.1" y="13.8" class="st2" width="18.8" height="31.6"/> -<line class="st2" x1="27.3" y1="22.3" x2="27.3" y2="36.9"/> -<line class="st2" x1="30.6" y1="25.5" x2="30.6" y2="36.9"/> -<line class="st2" x1="33.8" y1="28.9" x2="33.8" y2="36.9"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 61 60.8"><ellipse cx="30.5" cy="30.4" rx="30.5" ry="30.4" fill="#744298"/><g fill="#fff"><path d="M38 52.5H22.9c-2.8 0-5.1-2.3-5.1-5.1v-34c0-2.8 2.3-5.1 5.1-5.1H38c2.8 0 5.1 2.3 5.1 5.1v34c.1 2.8-2.2 5.1-5.1 5.1zM23 9.6a3.8 3.8 0 0 0-3.8 3.8v34a3.8 3.8 0 0 0 3.8 3.8h15a3.8 3.8 0 0 0 3.8-3.8v-34A3.8 3.8 0 0 0 38 9.6H23z"/><ellipse cx="30.5" cy="48" rx="1.8" ry="1.9"/><path d="M28 10.9h5v.9h-5z"/></g><g fill="none" stroke="#fff" stroke-miterlimit="10"><path d="M21.1 13.8h18.8v31.6H21.1z"/><path d="M27.3 22.3v14.6m3.3-11.4v11.4m3.2-8v8"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/analytics/streaming_computing.svg b/src/main/webapp/img/lib/ibm/analytics/streaming_computing.svg index b7f7d941886ce1e1d3f08f92b41a3a5d9f6dd2dc..a0e52ebe090d3c47f58af0d2620455c42fe96761 100644 --- a/src/main/webapp/img/lib/ibm/analytics/streaming_computing.svg +++ b/src/main/webapp/img/lib/ibm/analytics/streaming_computing.svg @@ -1,32 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.9 59.8" style="enable-background:new 0 0 59.9 59.8;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#734198;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<ellipse class="st0" cx="30" cy="29.9" rx="30" ry="29.9"/> -<path class="st1" d="M43.4,24.5c-1.1,0-1.9,0.8-1.9,1.9c0,0.7,0.3,1.3,0.9,1.6l0,0l-3.7,8.2c-0.2,0-0.3-0.1-0.5-0.1 - c-0.4,0-0.8,0.1-1.1,0.3l0,0l-0.8-4c0.7-0.3,1.2-1,1.2-1.8c0-1.1-0.9-1.9-2-1.9c-0.6,0-1.1,0.2-1.5,0.6l0,0L32,28.9 - c-0.1-1-0.9-1.7-1.9-1.8c-0.1,0-0.2,0.1-0.4,0.1l-1.5-4.8l0,0c0.1-0.3,0.1-0.5,0.2-0.8c0-1.1-0.9-2-1.9-2c-1.1,0-1.9,0.8-1.9,1.9 - c0,0,0,0,0,0l0,0l-7.8,6.6c-0.7-0.8-1.9-0.9-2.7-0.2c-0.8,0.7-0.9,1.9-0.2,2.7c0.7,0.8,1.9,0.9,2.7,0.2c0.4-0.3,0.6-0.8,0.6-1.3 - c0-0.2,0-0.3,0-0.5l7.6-6.5l0,0c0.3,0.6,0.9,1,1.6,1c0.4,0,0.8-0.1,1.1-0.4l0,0l1.4,4.3l0,0c-0.5,0.3-0.8,0.9-0.8,1.5 - c0,1.1,0.9,1.9,1.9,1.9c0.8,0,1.5-0.5,1.7-1.2l1.6,0.4c0,0.2,0,0.3,0,0.5c0.1,1,0.8,1.8,1.8,1.9l1,4.8c-0.1,0.2-0.1,0.5-0.1,0.7 - c0,1.1,0.8,1.9,1.9,1.9c1.1,0,1.9-0.8,1.9-1.9c0-0.6-0.2-1.1-0.6-1.5l0,0l3.8-8.3h0.3c1.1,0.1,2-0.7,2.1-1.8s-0.7-2-1.8-2.1 - C43.6,24.5,43.5,24.5,43.4,24.5L43.4,24.5z M15.3,30.7c-0.6,0-1.1-0.5-1.1-1.1c0-0.6,0.5-1.1,1.1-1.1c0.6,0,1.1,0.5,1.1,1.1l0,0 - C16.4,30.2,15.9,30.7,15.3,30.7z M26.4,22.8c-0.6,0-1.1-0.5-1.1-1.1s0.5-1.1,1.1-1.1c0.6,0,1.1,0.5,1.1,1.1l0,0 - C27.5,22.3,27,22.8,26.4,22.8z M30.1,30.2c-0.6,0-1.1-0.5-1.1-1.1c0-0.6,0.5-1.1,1.1-1.1c0.6,0,1,0.5,1.1,1 - C31.2,29.7,30.7,30.1,30.1,30.2C30.1,30.1,30.1,30.1,30.1,30.2L30.1,30.2z M32,29.5c0-0.1,0-0.2,0-0.4C32,29.2,32,29.3,32,29.5 - L32,29.5z M34.4,30.7c0-0.6,0.5-1.1,1.1-1.1c0.6,0,1.1,0.5,1.1,1.1c0,0.6-0.5,1.1-1.1,1.1l0,0C34.8,31.8,34.4,31.3,34.4,30.7 - C34.4,30.7,34.4,30.7,34.4,30.7L34.4,30.7z M35.4,32.6L35.4,32.6c0.1,0,0.3,0,0.4,0C35.7,32.6,35.6,32.6,35.4,32.6L35.4,32.6z - M38.1,39.2c-0.6,0-1.1-0.5-1.1-1.1s0.5-1.1,1.1-1.1s1.1,0.5,1.1,1.1l0,0C39.1,38.7,38.7,39.1,38.1,39.2L38.1,39.2z M43.4,27.6 - c-0.6,0-1.1-0.5-1.1-1.1s0.5-1.1,1.1-1.1c0.6,0,1.1,0.5,1.1,1.1l0,0C44.4,27.1,44,27.5,43.4,27.6L43.4,27.6z"/> -<polygon class="st1" points="8.3,16 8.6,17.6 14.2,16.7 14.6,22.3 16.2,22.2 15.7,14.8 "/> -<path class="st1" d="M29.9,51.8c-1.7,0-3.4-0.2-5.1-0.6c-11.6-2.8-18.8-14.4-16-26c0.9-3.7,2.7-7.1,5.4-9.9l1.4,1.3 - c-7.5,8-7,20.4,0.9,27.9c6.5,6.1,16.2,7.1,23.7,2.5l1,1.6C37.7,50.7,33.8,51.8,29.9,51.8z"/> -<polygon class="st1" points="52.2,43.1 51.8,41.5 46.3,42.9 45.4,37.2 43.8,37.5 44.9,44.8 "/> -<path class="st1" d="M46.3,44.1l-1.4-1.2c7-8.3,6-20.8-2.3-27.8c-6.5-5.5-15.8-6.2-23-1.8l-1-1.6C28.7,5.5,42,8.7,48.2,18.9 - C53.1,26.8,52.3,37,46.3,44.1z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.9 59.8"><ellipse cx="30" cy="29.9" rx="30" ry="29.9" fill="#734198"/><g fill="#fff"><path d="M43.4 24.5c-1.1 0-1.9.8-1.9 1.9 0 .7.3 1.3.9 1.6l-3.7 8.2c-.2 0-.3-.1-.5-.1-.4 0-.8.1-1.1.3l-.8-4c.7-.3 1.2-1 1.2-1.8 0-1.1-.9-1.9-2-1.9-.6 0-1.1.2-1.5.6l-2-.4c-.1-1-.9-1.7-1.9-1.8-.1 0-.2.1-.4.1l-1.5-4.8c.1-.3.1-.5.2-.8 0-1.1-.9-2-1.9-2-1.1 0-1.9.8-1.9 1.9l-7.8 6.6c-.7-.8-1.9-.9-2.7-.2s-.9 1.9-.2 2.7 1.9.9 2.7.2c.4-.3.6-.8.6-1.3V29l7.6-6.5a1.78 1.78 0 0 0 1.6 1c.4 0 .8-.1 1.1-.4l1.4 4.3c-.5.3-.8.9-.8 1.5 0 1.1.9 1.9 1.9 1.9.8 0 1.5-.5 1.7-1.2l1.6.4v.5c.1 1 .8 1.8 1.8 1.9l1 4.8c-.1.2-.1.5-.1.7 0 1.1.8 1.9 1.9 1.9s1.9-.8 1.9-1.9c0-.6-.2-1.1-.6-1.5l3.8-8.3h.3c1.1.1 2-.7 2.1-1.8s-.7-2-1.8-2.1c0 .3-.1.3-.2.3zm-28.1 6.2a1.11 1.11 0 0 1-1.1-1.1 1.11 1.11 0 0 1 1.1-1.1 1.11 1.11 0 0 1 1.1 1.1 1.11 1.11 0 0 1-1.1 1.1zm11.1-7.9a1.11 1.11 0 0 1-1.1-1.1 1.11 1.11 0 0 1 1.1-1.1 1.11 1.11 0 0 1 1.1 1.1 1.11 1.11 0 0 1-1.1 1.1zm3.7 7.4a1.11 1.11 0 0 1-1.1-1.1 1.11 1.11 0 0 1 1.1-1.1c.6 0 1 .5 1.1 1 0 .7-.5 1.1-1.1 1.2 0-.1 0-.1 0 0zm1.9-.7v-.4.4zm2.4 1.2a1.11 1.11 0 0 1 1.1-1.1 1.11 1.11 0 0 1 1.1 1.1 1.11 1.11 0 0 1-1.1 1.1c-.7 0-1.1-.5-1.1-1.1zm1 1.9zm2.7 6.6a1.11 1.11 0 0 1-1.1-1.1 1.11 1.11 0 0 1 1.1-1.1 1.11 1.11 0 0 1 1.1 1.1 1.27 1.27 0 0 1-1.1 1.1zm5.3-11.6a1.11 1.11 0 0 1-1.1-1.1 1.11 1.11 0 0 1 1.1-1.1 1.11 1.11 0 0 1 1.1 1.1 1.27 1.27 0 0 1-1.1 1.1zM8.3 16l.3 1.6 5.6-.9.4 5.6 1.6-.1-.5-7.4z"/><path d="M29.9 51.8a22.2 22.2 0 0 1-5.1-.6c-11.6-2.8-18.8-14.4-16-26 .9-3.7 2.7-7.1 5.4-9.9l1.4 1.3c-7.5 8-7 20.4.9 27.9 6.5 6.1 16.2 7.1 23.7 2.5l1 1.6c-3.5 2.1-7.4 3.2-11.3 3.2zm22.3-8.7l-.4-1.6-5.5 1.4-.9-5.7-1.6.3 1.1 7.3z"/><path d="M46.3 44.1l-1.4-1.2c7-8.3 6-20.8-2.3-27.8-6.5-5.5-15.8-6.2-23-1.8l-1-1.6c10.1-6.2 23.4-3 29.6 7.2 4.9 7.9 4.1 18.1-1.9 25.2z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/applications/actionable_insight.svg b/src/main/webapp/img/lib/ibm/applications/actionable_insight.svg index 683babe65d56963e951e9304b189231c0da71cc5..131a084f52157d904abd4070d07619c6fa9bb31d 100644 --- a/src/main/webapp/img/lib/ibm/applications/actionable_insight.svg +++ b/src/main/webapp/img/lib/ibm/applications/actionable_insight.svg @@ -1,41 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 60.3 60.2" style="enable-background:new 0 0 60.3 60.2;" xml:space="preserve"> -<style type="text/css"> - .st0{opacity:0;} - .st1{opacity:0.38;fill:#FFFFFF;enable-background:new ;} - .st2{fill:#ECC01B;} - .st3{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<g class="st0"> - <ellipse class="st1" cx="26.7" cy="21.2" rx="8" ry="7.9"/> - <ellipse class="st1" cx="26.7" cy="21.2" rx="5.5" ry="5.5"/> -</g> -<ellipse class="st2" cx="30.2" cy="30.1" rx="30.2" ry="30.1"/> -<rect x="18.7" y="20.3" class="st3" width="2.5" height="1.4"/> -<rect x="32.1" y="20.5" class="st3" width="2.4" height="1.4"/> -<rect x="26" y="13.3" class="st3" width="1.4" height="2.5"/> -<polygon class="st3" points="31.2,18 30.2,17 31.9,15.3 32.9,16.3 "/> -<polygon class="st3" points="22.3,17.9 20.5,16.1 21.5,15.1 23.3,16.8 "/> -<path class="st3" d="M47.2,24.6c-1.3,0-2.3,1-2.3,2.3c0,0.8,0.4,1.5,1,1.9l0,0l-4.5,9.9c-0.3-0.1-0.5-0.1-0.8-0.1 - c-0.5,0-1.1,0.1-1.5,0.4l0,0l-0.8-4.9c0.9-0.3,1.5-1.2,1.5-2.2c0-1.3-1.1-2.4-2.4-2.5c-0.6,0.1-1.3,0.3-1.8,0.6l0,0l-2.3-0.4 - c-0.1-1.2-1.1-2-2.3-2c-0.1,0-0.3,0-0.4,0l-1.8-5.9l0,0c0.1-0.2,0.2-0.5,0.2-0.8c0-1.3-1-2.3-2.3-2.3c0,0,0,0,0,0 - c-1.3,0-2.3,1.1-2.3,2.4c0,0,0,0,0,0.1l-9.4,8c-0.9-0.9-2.3-1-3.3-0.1c-0.9,0.9-1,2.3-0.1,3.3s2.3,1,3.3,0.1 - c0.5-0.4,0.8-1.1,0.8-1.7c0-0.2-0.1-0.4-0.2-0.6l9.1-7.8l0,0c0.4,0.8,1.2,1.2,2.1,1.2c0.5,0,1-0.2,1.4-0.5V23l1.7,5.2l0,0 - c-0.6,0-0.9,1.2-0.9,1.9c0,1.3,1,2.4,2.3,2.4c0.9,0,1.7-0.6,1.9-1.5l1.7,0.5l0,0v0.6c0.1,1.3,1.3,2.4,2.6,2.3c0.2,0,0.4,0,0.6,0 - c-0.1,0-0.3,0-0.4,0h-0.1l1.2,5.7c-0.1,0.3-0.2,0.6-0.2,0.8c0,1.3,1.1,2.3,2.3,2.3c1.2,0,2.2-1,2.2-2.2c0,0,0-0.1,0-0.1 - c0.1-0.7-0.3-1.4-0.9-1.7l0,0l4.7-10l0,0h0.4c1.3,0,2.4-1,2.4-2.3C49.5,25.7,48.5,24.6,47.2,24.6C47.2,24.6,47.2,24.6,47.2,24.6z - M13.2,32.1c-0.7,0-1.3-0.6-1.2-1.3c0-0.7,0.6-1.3,1.3-1.2c0.7,0,1.2,0.6,1.2,1.3C14.5,31.5,13.9,32.1,13.2,32.1 - C13.2,32.1,13.2,32.1,13.2,32.1L13.2,32.1z M15.2,29.7L15.2,29.7z M24.4,21.8L24.4,21.8L24.4,21.8z M26.6,22.5 - c-0.7,0-1.3-0.6-1.2-1.3c0-0.7,0.6-1.3,1.3-1.2c0.7,0,1.2,0.6,1.2,1.3C28,21.9,27.4,22.5,26.6,22.5C26.7,22.5,26.6,22.5,26.6,22.5 - L26.6,22.5z M28.4,22.7L28.4,22.7L28.4,22.7z M30.1,28L30.1,28z M31.1,31.5c-0.7,0-1.3-0.6-1.3-1.3s0.6-1.3,1.3-1.3 - c0.7,0,1.3,0.6,1.3,1.3C32.4,30.9,31.8,31.5,31.1,31.5L31.1,31.5z M33.4,30.6c0-0.1,0.1-0.3,0.1-0.4C33.5,30.3,33.5,30.5,33.4,30.6 - L33.4,30.6z M35.5,31L35.5,31z M36.3,32.1c0-0.7,0.6-1.3,1.3-1.3c0.7,0,1.3,0.6,1.3,1.3s-0.6,1.3-1.3,1.3c0,0,0,0-0.1,0 - C36.8,33.3,36.3,32.8,36.3,32.1z M39,39.6L39,39.6L39,39.6z M40.8,42.3c-0.7,0-1.3-0.6-1.3-1.3s0.6-1.3,1.3-1.3 - c0.7,0,1.3,0.6,1.3,1.3C42.1,41.7,41.5,42.3,40.8,42.3C40.8,42.3,40.8,42.3,40.8,42.3L40.8,42.3z M41.9,39L41.9,39z M46.3,29.2 - L46.3,29.2z M47.2,28.3c-0.7,0-1.3-0.6-1.2-1.3c0-0.7,0.6-1.3,1.3-1.2c0.7,0,1.2,0.6,1.2,1.2C48.5,27.7,47.9,28.3,47.2,28.3 - C47.2,28.3,47.2,28.3,47.2,28.3L47.2,28.3z"/> -<ellipse class="st3" cx="26.7" cy="21.2" rx="1.8" ry="1.8"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60.3 60.2"><g opacity="0" fill="#fff"><ellipse cx="26.7" cy="21.2" rx="8" ry="7.9" opacity=".38" enable-background="new"/><circle cx="26.7" cy="21.2" r="5.5" opacity=".38" enable-background="new"/></g><ellipse cx="30.2" cy="30.1" rx="30.2" ry="30.1" fill="#ecc01b"/><g fill="#fff"><path d="M18.7 20.3h2.5v1.4h-2.5zm13.4.2h2.4v1.4h-2.4zM26 13.3h1.4v2.5H26zm5.2 4.7l-1-1 1.7-1.7 1 1zm-8.9-.1l-1.8-1.8 1-1 1.8 1.7zm24.9 6.7a2.26 2.26 0 0 0-2.3 2.3c0 .8.4 1.5 1 1.9l-4.5 9.9c-.3-.1-.5-.1-.8-.1-.5 0-1.1.1-1.5.4l-.8-4.9c.9-.3 1.5-1.2 1.5-2.2 0-1.3-1.1-2.4-2.4-2.5-.6.1-1.3.3-1.8.6l-2.3-.4c-.1-1.2-1.1-2-2.3-2h-.4l-1.8-5.9c.1-.2.2-.5.2-.8a2.26 2.26 0 0 0-2.3-2.3c-1.3 0-2.3 1.1-2.3 2.4v.1l-9.4 8c-.9-.9-2.3-1-3.3-.1-.9.9-1 2.3-.1 3.3s2.3 1 3.3.1c.5-.4.8-1.1.8-1.7 0-.2-.1-.4-.2-.6l9.1-7.8c.4.8 1.2 1.2 2.1 1.2.5 0 1-.2 1.4-.5l1.7 5.2c-.6 0-.9 1.2-.9 1.9 0 1.3 1 2.4 2.3 2.4.9 0 1.7-.6 1.9-1.5l1.7.5v.6c.1 1.3 1.3 2.4 2.6 2.3h.1l1.2 5.7c-.1.3-.2.6-.2.8 0 1.3 1.1 2.3 2.3 2.3A2.22 2.22 0 0 0 43 41v-.1c.1-.7-.3-1.4-.9-1.7l4.7-10h.4c1.3 0 2.4-1 2.4-2.3-.1-1.2-1.1-2.3-2.4-2.3zm-34 7.5c-.7 0-1.3-.6-1.2-1.3 0-.7.6-1.3 1.3-1.2.7 0 1.2.6 1.2 1.3 0 .6-.6 1.2-1.3 1.2zm2-2.4zm9.2-7.9zm2.2.7c-.7 0-1.3-.6-1.2-1.3 0-.7.6-1.3 1.3-1.2.7 0 1.2.6 1.2 1.3.1.6-.5 1.2-1.3 1.2zm1.8.2zm1.7 5.3zm1 3.5c-.7 0-1.3-.6-1.3-1.3s.6-1.3 1.3-1.3 1.3.6 1.3 1.3-.6 1.3-1.3 1.3zm2.3-.9c0-.1.1-.3.1-.4 0 .1 0 .3-.1.4zm2.1.4zm.8 1.1c0-.7.6-1.3 1.3-1.3s1.3.6 1.3 1.3-.6 1.3-1.3 1.3h-.1c-.7-.1-1.2-.6-1.2-1.3zm2.7 7.5zm1.8 2.7c-.7 0-1.3-.6-1.3-1.3s.6-1.3 1.3-1.3 1.3.6 1.3 1.3-.6 1.3-1.3 1.3zm1.1-3.3zm4.4-9.8zm.9-.9c-.7 0-1.3-.6-1.2-1.3 0-.7.6-1.3 1.3-1.2.7 0 1.2.6 1.2 1.2 0 .7-.6 1.3-1.3 1.3z"/><circle cx="26.7" cy="21.2" r="1.8"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/applications/annotate.svg b/src/main/webapp/img/lib/ibm/applications/annotate.svg index d8c6d686f914667e9af92d5cb39ef6b946a9ba78..67d8cde47a4e20c60c46dba135a93a26cc1b8c74 100644 --- a/src/main/webapp/img/lib/ibm/applications/annotate.svg +++ b/src/main/webapp/img/lib/ibm/applications/annotate.svg @@ -1,13 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 60.3 60.2" style="enable-background:new 0 0 60.3 60.2;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#ECC01B;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<ellipse class="st0" cx="30.1" cy="30.1" rx="30.1" ry="30.1"/> -<path class="st1" d="M39.9,30.4L38.4,32l3.6,3.6h-6.1V22.4l-8.8-8.8H13.9v32.9h21.9v-8.8H42l-3.6,3.6l1.5,1.5l6.3-6.3L39.9,30.4z - M33.7,44.3H16.1V15.8H26v7.7h7.7v12.1H26v2.2h7.7V44.3z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60.3 60.2"><circle cx="30.1" cy="30.1" r="30.1" fill="#ecc01b"/><path d="M39.9 30.4L38.4 32l3.6 3.6h-6.1V22.4l-8.8-8.8H13.9v32.9h21.9v-8.8H42l-3.6 3.6 1.5 1.5 6.3-6.3-6.3-6.1zm-6.2 13.9H16.1V15.8H26v7.7h7.7v12.1H26v2.2h7.7v6.5z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/applications/api_developer_portal.svg b/src/main/webapp/img/lib/ibm/applications/api_developer_portal.svg index 0c69d741324433edb5edcc500a97ef36610b425d..163130142fffa13c7b9eb29935230503038ae484 100644 --- a/src/main/webapp/img/lib/ibm/applications/api_developer_portal.svg +++ b/src/main/webapp/img/lib/ibm/applications/api_developer_portal.svg @@ -1,26 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.2 59.2" style="enable-background:new 0 0 59.2 59.2;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#E8BD1F;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle class="st0" cx="29.6" cy="29.6" r="29.6"/> -<path class="st1" d="M20.1,46.6v-2.1h5.5v-3.8h8c0,0.2,0,0.4,0,0.7c0,0.8,0,1.7,0,2.5c0,0.5,0,0.5,0.5,0.5h4.4h0.3v2.2L20.1,46.6z" - /> -<path class="st1" d="M29.5,12.6h8.8c2.3,0,4.5,0,6.8-0.1c1-0.1,2,0.3,2.7,0.9c0.7,0.6,1.1,1.4,1.1,2.3c0,1.1,0,2.2,0,3.2 - c0,5,0,10,0,15c0,1.5-0.5,3-1.5,4.3c-0.4,0.6-1,0.9-1.6,1.1c-0.2,0-0.4,0-0.5,0c-10.4,0-20.8,0-31.3,0c-0.4,0-0.7-0.1-1-0.3 - c-1.6-0.8-2.7-2.5-2.6-4.3c0-2.7,0-5.3-0.1-8s-0.1-5.4-0.1-8.1c0-0.9,0-1.9,0-2.8c0-1.5,1.1-2.8,2.6-3.1c0.5-0.1,0.9-0.1,1.4-0.1 - h7.7L29.5,12.6L29.5,12.6z M29.5,14.3L29.5,14.3l-1.3,0.1l-12,0.1c-0.9,0-1.8,0-2.7,0c-0.8,0-1.5,0.6-1.5,1.4c0,0.2-0.1,0.4-0.1,0.6 - c0,0.9,0,1.8,0,2.6c0,3.1,0.1,6.1,0.1,9.2c0,2.2,0,4.5,0.1,6.7c0,0.6,0.2,1.3,0.6,1.8c0.3,0.5,0.9,0.9,1.5,0.9h30.9 - c0.4,0,0.7-0.1,0.9-0.4c0.7-0.8,1.1-1.8,1.2-2.9c0-5,0-10,0-15c0-1.1,0-2.2,0-3.2c0.1-0.8-0.5-1.6-1.3-1.7c0,0-0.1,0-0.1,0 - c-0.5-0.1-1-0.1-1.5-0.1c-2,0-4,0-6,0L29.5,14.3z"/> -<path class="st1" d="M23.6,30.8h-6.8c-0.9,0-1.7,0.7-1.7,1.7v1.7l10.2,0v-1.7C25.3,31.5,24.5,30.8,23.6,30.8z"/> -<path class="st1" d="M20.1,29c-2.4,0-4.3-2-4.3-4.3s2-4.3,4.3-4.3c2.4,0,4.3,1.9,4.3,4.3C24.5,27.1,22.5,29,20.1,29z M20.1,20.9 - c-2.1,0-3.8,1.7-3.8,3.8s1.7,3.8,3.8,3.8c2.1,0,3.8-1.7,3.8-3.8C23.9,22.6,22.2,20.9,20.1,20.9z"/> -<path class="st1" d="M41.2,30.8h-6.8c-0.9,0-1.7,0.7-1.7,1.7v1.7l10.2,0v-1.7C42.8,31.5,42.1,30.8,41.2,30.8z"/> -<path class="st1" d="M37.7,29c-2.4,0-4.3-2-4.3-4.3s2-4.3,4.3-4.3c2.4,0,4.3,1.9,4.3,4.3C42.1,27.1,40.1,29,37.7,29z M37.7,20.9 - c-2.1,0-3.8,1.7-3.8,3.8s1.7,3.8,3.8,3.8c2.1,0,3.8-1.7,3.8-3.8C41.5,22.6,39.8,20.9,37.7,20.9z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 59.2 59.2"><circle cx="29.6" cy="29.6" r="29.6" fill="#e8bd1f"/><g fill="#fff"><path d="M20.1 46.6v-2.1h5.5v-3.8h8v3.2c0 .5 0 .5.5.5h4.7v2.2H20.1zm9.4-34h8.8l6.8-.1c1-.1 2 .3 2.7.9s1.1 1.4 1.1 2.3v18.2c0 1.5-.5 3-1.5 4.3-.4.6-1 .9-1.6 1.1H14a1.69 1.69 0 0 1-1-.3c-1.6-.8-2.7-2.5-2.6-4.3l-.2-16.1v-2.8c0-1.5 1.1-2.8 2.6-3.1.5-.1.9-.1 1.4-.1h15.3zm0 1.7l-1.3.1-12 .1h-2.7c-.8 0-1.5.6-1.5 1.4 0 .2-.1.4-.1.6v2.6l.1 9.2.1 6.7c0 .6.2 1.3.6 1.8.3.5.9.9 1.5.9h30.9c.4 0 .7-.1.9-.4.7-.8 1.1-1.8 1.2-2.9V16.2c.1-.8-.5-1.6-1.3-1.7h-.1c-.5-.1-1-.1-1.5-.1h-6l-8.8-.1zm-5.9 16.5h-6.8c-.9 0-1.7.7-1.7 1.7v1.7h10.2v-1.7c0-1-.8-1.7-1.7-1.7z"/><use xlink:href="#B"/><path d="M41.2 30.8h-6.8c-.9 0-1.7.7-1.7 1.7v1.7h10.2v-1.7c-.1-1-.8-1.7-1.7-1.7z"/><use xlink:href="#B" x="17.6"/></g><defs ><path id="B" d="M20.1 29c-2.4 0-4.3-2-4.3-4.3s2-4.3 4.3-4.3c2.4 0 4.3 1.9 4.3 4.3.1 2.4-1.9 4.3-4.3 4.3zm0-8.1a3.8 3.8 0 1 0 0 7.6 3.8 3.8 0 1 0 0-7.6z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/applications/api_polyglot_runtimes.svg b/src/main/webapp/img/lib/ibm/applications/api_polyglot_runtimes.svg index e43091b894fbd26299e0ade3fc4ae8e65386a3c8..7080e19422f18f23b53178ec7aa017e2612feffc 100644 --- a/src/main/webapp/img/lib/ibm/applications/api_polyglot_runtimes.svg +++ b/src/main/webapp/img/lib/ibm/applications/api_polyglot_runtimes.svg @@ -1,49 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.2 59.2" style="enable-background:new 0 0 59.2 59.2;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#ECC01B;} - .st1{fill:#FFFFFF;} - .st2{fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-linejoin:round;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle class="st0" cx="29.6" cy="29.6" r="29.6"/> -<path class="st1" d="M24.9,31.3c0.1-0.3,0.2-0.7,0.3-1l2.5-1l-0.6-3.4l-2.5-0.1c-0.4-0.7-0.8-1.3-1.4-1.9l0.3-2.5l-3.1-1.3l-1.3,2.1 - c-0.8,0-1.5,0.2-2.2,0.5l-2-1.6l-2.6,2.2l1.2,2.5c-0.2,0.3-0.3,0.7-0.4,1c-0.1,0.3-0.2,0.7-0.3,1l-2.5,1l0.6,3.4l2.5,0.1 - c0.4,0.7,0.8,1.3,1.4,1.8l-0.3,2.5l3.1,1.2l1.3-2.1c0.8,0,1.5-0.2,2.2-0.5l2,1.7l2.6-2.2l-1.3-2.5C24.6,32,24.8,31.6,24.9,31.3z - M25,34.6l-1.9,1.6l-1.6-1.4l-0.2-0.2L21,34.7c-0.6,0.3-1.3,0.4-2,0.4h-0.3l-0.2,0.3l-1.1,1.8l-2.3-0.9l0.3-2V34l-0.2-0.2 - c-0.5-0.5-1-1.1-1.3-1.7l-0.1-0.3h-0.3l-2.1-0.1L11,29.2l2.1-0.9l0.3-0.1l0.1-0.3c0.1-0.3,0.1-0.6,0.3-0.9c0.1-0.3,0.2-0.6,0.4-0.9 - l0.1-0.3l-0.1-0.3l-1-2l1.9-1.6l1.6,1.4l0.2,0.2l0.3-0.1c0.6-0.3,1.3-0.4,2-0.4h0.3l0.2-0.3l1.1-1.7l2.3,0.9l-0.3,2v0.3l0.2,0.2 - c0.5,0.5,1,1.1,1.3,1.7l0.2,0.3h0.3l2.1,0.1l0.4,2.5L25,29.7l-0.3,0.1l-0.1,0.3c-0.1,0.3-0.1,0.6-0.3,0.9c-0.1,0.3-0.2,0.6-0.4,0.9 - l-0.2,0.3l0.1,0.3L25,34.6z"/> -<path class="st1" d="M20.3,25.7c-1.7-0.6-3.6,0.3-4.2,2c0,0,0,0.1,0,0.1c-0.7,1.8,0.2,3.7,1.9,4.5c1.7,0.6,3.6-0.3,4.2-2.1 - c0,0,0-0.1,0-0.1C22.7,28.4,21.9,26.5,20.3,25.7z M18.6,30.2c-0.6-0.2-0.9-0.9-0.6-1.5c0.2-0.6,0.8-0.9,1.4-0.7c0,0,0,0,0.1,0 - c0.6,0.2,0.9,0.9,0.6,1.5C19.9,30,19.3,30.4,18.6,30.2C18.7,30.2,18.7,30.2,18.6,30.2z"/> -<path class="st1" d="M39.1,20.1c0.1-0.3,0.2-0.6,0.2-0.8l2-0.9l-0.5-2.8l-2.1-0.1c-0.3-0.6-0.7-1.1-1.2-1.5l0.3-2.1l-2.5-1l-1.1,1.8 - c-0.6,0-1.3,0.1-1.8,0.4l-1.6-1.4l-2.1,1.8l1,2.1c-0.1,0.3-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.2,0.9l-2,0.9l0.5,2.8l2.1,0.1 - c0.3,0.6,0.7,1.1,1.2,1.5l-0.3,2.1l2.5,1l1.1-1.8c0.6,0,1.3-0.1,1.8-0.4l1.6,1.4l2.1-1.8l-1-2C39,20.6,39.1,20.4,39.1,20.1z - M39.3,22.8l-1.5,1.3L36.4,23l-0.2-0.2l-0.2,0.1c-0.5,0.2-1.1,0.3-1.7,0.3H34l-0.1,0.2L33,24.9l-1.9-0.7l0.2-1.7v-0.3l-0.2-0.2 - c-0.4-0.4-0.8-0.9-1.1-1.4L30,20.4h-0.2l-1.7,0l-0.4-2l1.7-0.7l0.2-0.1l0-0.3c0-0.3,0.1-0.5,0.2-0.8c0.1-0.2,0.2-0.5,0.3-0.7 - l0.1-0.2l0-0.2l-0.8-1.7l1.5-1.3l1.3,1.1l0.2,0.2l0.2-0.1c0.5-0.2,1.1-0.3,1.7-0.3h0.2l0.1-0.2l0.9-1.4l1.9,0.7l-0.2,1.6v0.3 - l0.2,0.2c0.4,0.4,0.8,0.9,1.1,1.4l0.1,0.2h0.3l1.7,0l0.4,2l-1.7,0.7L39,18.9l0,0.3c0,0.3-0.1,0.5-0.2,0.8c-0.1,0.2-0.2,0.5-0.3,0.7 - l-0.1,0.2l0.1,0.2L39.3,22.8z"/> -<path class="st1" d="M35.3,15.5c-1.4-0.5-3,0.2-3.5,1.6c0,0,0,0,0,0.1c-0.6,1.5,0.1,3.1,1.6,3.7c1.4,0.5,3-0.2,3.5-1.6 - c0,0,0,0,0-0.1C37.4,17.7,36.7,16.1,35.3,15.5z M34,19.1c-0.5-0.2-0.7-0.8-0.5-1.2c0.1-0.5,0.7-0.7,1.1-0.6c0,0,0,0,0,0 - c0.5,0.2,0.7,0.8,0.5,1.2C35,19,34.5,19.3,34,19.1C34,19.1,34,19.1,34,19.1L34,19.1z"/> -<path class="st1" d="M45.1,39.6c0.2-0.5,0.3-0.9,0.4-1.4l3.3-1.4L48,32.3l-3.3-0.1c-0.5-0.9-1.1-1.8-1.9-2.5l0.4-3.3l-4.1-1.6 - l-1.8,2.8c-1,0-2,0.2-3,0.6L31.8,26L28.3,29l1.7,3.3c-0.2,0.4-0.4,0.8-0.6,1.3c-0.2,0.4-0.3,0.9-0.4,1.4l-3.3,1.4l0.8,4.5l3.3,0.1 - c0.5,0.9,1.1,1.8,1.9,2.5l-0.4,3.3l4.1,1.6l1.8-2.8c1,0,2-0.2,3-0.6l2.6,2.2l3.4-2.9l-1.7-3.3C44.7,40.5,44.9,40,45.1,39.6z - M45.3,43.9L42.8,46l-2.2-1.8L40.3,44l-0.4,0.2c-0.9,0.4-1.8,0.5-2.7,0.5h-0.4L36.5,45l-1.4,2.3l-3-1.2l0.4-2.7l0-0.4l-0.3-0.3 - c-0.7-0.6-1.3-1.4-1.7-2.3l-0.2-0.3h-0.4l-2.8-0.1l-0.6-3.3l2.7-1.1l0.4-0.2l0.1-0.4c0.1-0.4,0.2-0.8,0.3-1.2 - c0.1-0.4,0.3-0.8,0.5-1.2l0.2-0.4l-0.2-0.4l-1.4-2.7l2.5-2.1l2.2,1.8l0.3,0.3l0.4-0.2c0.9-0.4,1.8-0.5,2.7-0.5h0.4l0.2-0.4l1.4-2.3 - l3,1.2L42,29.7l0,0.4l0.3,0.3c0.7,0.6,1.3,1.4,1.7,2.3l0.2,0.4h0.4l2.8,0.1l0.6,3.3l-2.7,1.1l-0.4,0.2l-0.1,0.4 - c-0.1,0.4-0.2,0.8-0.3,1.2c-0.1,0.4-0.3,0.8-0.5,1.2l-0.2,0.4l0.2,0.4L45.3,43.9z"/> -<path class="st1" d="M38.8,32.2c-2.3-0.8-4.8,0.4-5.6,2.7c0,0.1,0,0.1-0.1,0.2c-0.9,2.4,0.2,5,2.5,6c2.3,0.8,4.8-0.4,5.6-2.7 - c0-0.1,0-0.1,0.1-0.2C42.3,35.8,41.1,33.2,38.8,32.2z M36.8,38c-0.8-0.3-1.1-1.2-0.8-2c0.2-0.8,1.1-1.2,1.8-1c0,0,0,0,0.1,0 - c0.8,0.3,1.1,1.2,0.8,2C38.4,37.8,37.6,38.3,36.8,38C36.8,38,36.8,38,36.8,38z"/> -<path class="st2" d="M10,45.5c2.8,3,6.2,5.5,10,7.2c13,5.5,27.9-0.6,33.4-13.5c0.1-0.3,0.3-0.7,0.4-1c3.3-9,1.4-19-4.8-26.2 - C42.6,4.9,33,1.9,23.7,4.1c-8.8,2.3-15.8,9-18.5,17.7c-0.4,1.1-0.6,2.2-0.8,3.4"/> -<path class="st1" d="M11.1,51.6c0.2,0,0.3-0.2,0.3-0.5l-1.3-5.6l5.6,1.2c0.2,0.1,0.4,0,0.5-0.2s0-0.4-0.2-0.5c0,0-0.1,0-0.1,0 - l-6.2-1.3c-0.2,0-0.4,0.1-0.4,0.3c0,0.1,0,0.1,0,0.2l1.4,6.2C10.7,51.5,10.9,51.7,11.1,51.6L11.1,51.6z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.2 59.2"><circle cx="29.6" cy="29.6" r="29.6" fill="#ecc01b"/><path d="M24.9 31.3l.3-1 2.5-1-.6-3.4-2.5-.1c-.4-.7-.8-1.3-1.4-1.9l.3-2.5-3.1-1.3-1.3 2.1c-.8 0-1.5.2-2.2.5l-2-1.6-2.6 2.2 1.2 2.5c-.2.3-.3.7-.4 1l-.3 1-2.5 1 .6 3.4 2.5.1c.4.7.8 1.3 1.4 1.8l-.3 2.5 3.1 1.2 1.3-2.1c.8 0 1.5-.2 2.2-.5l2 1.7 2.6-2.2-1.3-2.5c.2-.2.4-.6.5-.9zm.1 3.3l-1.9 1.6-1.6-1.4-.2-.2-.3.1c-.6.3-1.3.4-2 .4h-.3l-.2.3-1.1 1.8-2.3-.9.3-2V34l-.2-.2c-.5-.5-1-1.1-1.3-1.7l-.1-.3h-.3l-2.1-.1-.4-2.5 2.1-.9.3-.1.1-.3c.1-.3.1-.6.3-.9.1-.3.2-.6.4-.9l.1-.3-.1-.3-1-2 1.9-1.6 1.6 1.4.2.2.3-.1c.6-.3 1.3-.4 2-.4h.3l.2-.3 1.1-1.7 2.3.9-.3 2v.3l.2.2c.5.5 1 1.1 1.3 1.7l.2.3h.3l2.1.1.4 2.5-2.3.7-.3.1-.1.3c-.1.3-.1.6-.3.9-.1.3-.2.6-.4.9l-.2.3.1.3 1.2 2.1zm-4.7-8.9a3.31 3.31 0 0 0-4.2 2v.1c-.7 1.8.2 3.7 1.9 4.5 1.7.6 3.6-.3 4.2-2.1v-.1c.5-1.7-.3-3.6-1.9-4.4zm-1.7 4.5c-.6-.2-.9-.9-.6-1.5a1.08 1.08 0 0 1 1.4-.7h.1c.6.2.9.9.6 1.5-.2.5-.8.9-1.5.7zm20.5-10.1c.1-.3.2-.6.2-.8l2-.9-.5-2.8-2.1-.1c-.3-.6-.7-1.1-1.2-1.5l.3-2.1-2.5-1-1.1 1.8c-.6 0-1.3.1-1.8.4l-1.6-1.4-2.1 1.8 1 2.1c-.1.3-.3.5-.3.8-.1.3-.1.6-.2.9l-2 .9.5 2.8 2.1.1c.3.6.7 1.1 1.2 1.5l-.3 2.1 2.5 1 1.1-1.8c.6 0 1.3-.1 1.8-.4l1.6 1.4 2.1-1.8-1-2c.2-.5.3-.7.3-1zm.2 2.7l-1.5 1.3-1.4-1.1-.2-.2-.2.1c-.5.2-1.1.3-1.7.3H34l-.1.2-.9 1.5-1.9-.7.2-1.7v-.3l-.2-.2a7.55 7.55 0 0 1-1.1-1.4v-.2h-1.9l-.4-2 1.7-.7.2-.1v-.3c0-.3.1-.5.2-.8.1-.2.2-.5.3-.7l.1-.2v-.2l-.8-1.7 1.5-1.3 1.3 1.1.2.2.2-.1c.5-.2 1.1-.3 1.7-.3h.2l.1-.2.9-1.4 1.9.7-.2 1.6v.3l.2.2a7.55 7.55 0 0 1 1.1 1.4l.1.2h2l.4 2-1.7.7-.3.1v.3c0 .3-.1.5-.2.8-.1.2-.2.5-.3.7l-.1.2.1.2.8 1.7zm-4-7.3c-1.4-.5-3 .2-3.5 1.6v.1c-.6 1.5.1 3.1 1.6 3.7 1.4.5 3-.2 3.5-1.6v-.1c.5-1.5-.2-3.1-1.6-3.7zM34 19.1c-.5-.2-.7-.8-.5-1.2.1-.5.7-.7 1.1-.6.5.2.7.8.5 1.2a.8.8 0 0 1-1.1.6zm11.1 20.5c.2-.5.3-.9.4-1.4l3.3-1.4-.8-4.5-3.3-.1c-.5-.9-1.1-1.8-1.9-2.5l.4-3.3-4.1-1.6-1.8 2.8c-1 0-2 .2-3 .6L31.8 26l-3.5 3 1.7 3.3-.6 1.3c-.2.4-.3.9-.4 1.4l-3.3 1.4.8 4.5 3.3.1c.5.9 1.1 1.8 1.9 2.5l-.4 3.3 4.1 1.6 1.8-2.8c1 0 2-.2 3-.6l2.6 2.2 3.4-2.9-1.7-3.3.6-1.4zm.2 4.3L42.8 46l-2.2-1.8-.3-.2-.4.2c-.9.4-1.8.5-2.7.5h-.4l-.3.3-1.4 2.3-3-1.2.4-2.7V43l-.3-.3c-.7-.6-1.3-1.4-1.7-2.3l-.2-.3h-.4l-2.8-.1-.6-3.3 2.7-1.1.4-.2.4-1.6c.1-.4.3-.8.5-1.2l.2-.4-.2-.4-1.4-2.7 2.5-2.1 2.2 1.8.3.3.4-.2c.9-.4 1.8-.5 2.7-.5h.4l.2-.4 1.4-2.3 3 1.2-.2 2.8v.4l.3.3c.7.6 1.3 1.4 1.7 2.3l.2.4h.4l2.8.1.6 3.3-2.7 1.1-.4.2-.4 1.6c-.1.4-.3.8-.5 1.2l-.2.4.2.4 1.3 2.5zm-6.5-11.7c-2.3-.8-4.8.4-5.6 2.7 0 .1 0 .1-.1.2-.9 2.4.2 5 2.5 6 2.3.8 4.8-.4 5.6-2.7 0-.1 0-.1.1-.2 1-2.4-.2-5-2.5-6zm-2 5.8c-.8-.3-1.1-1.2-.8-2 .2-.8 1.1-1.2 1.8-1h.1c.8.3 1.1 1.2.8 2s-1.1 1.3-1.9 1z" fill="#fff"/><path d="M10 45.5c2.8 3 6.2 5.5 10 7.2 13 5.5 27.9-.6 33.4-13.5.1-.3.3-.7.4-1 3.3-9 1.4-19-4.8-26.2a25.86 25.86 0 0 0-25.3-7.9c-8.8 2.3-15.8 9-18.5 17.7-.4 1.1-.6 2.2-.8 3.4" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round"/><path d="M11.1 51.6c.2 0 .3-.2.3-.5l-1.3-5.6 5.6 1.2c.2.1.4 0 .5-.2s0-.4-.2-.5h-.1l-6.2-1.3c-.2 0-.4.1-.4.3v.2l1.4 6.2c0 .1.2.3.4.2z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/applications/app_server.svg b/src/main/webapp/img/lib/ibm/applications/app_server.svg index ea7650d4810be4976d22c2462c58c44d108e11c2..f34fc6ba4335affc97dacd65241d1433cf4d66f5 100644 --- a/src/main/webapp/img/lib/ibm/applications/app_server.svg +++ b/src/main/webapp/img/lib/ibm/applications/app_server.svg @@ -1,18 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 65 64.9" style="enable-background:new 0 0 65 64.9;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#EABE1B;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS 3</title> -<ellipse transform="matrix(1 -3.316120e-03 3.316120e-03 1 -0.1074 0.108)" class="st0" cx="32.5" cy="32.5" rx="32.5" ry="32.5"/> -<path class="st1" d="M47.8,56.6H18.6V56c0-14.7,0-29.5,0-44.3c0-1.7,1.4-3.1,3.1-3.1c0,0,0,0,0,0c7.6,0,15.3,0,22.9,0 - c1.7,0,3.1,1.4,3.1,3.1c0,0,0,0,0,0c0,14.7,0,29.5,0,44.3L47.8,56.6z M46.1,54.9c0-0.2,0-0.3,0-0.5c0-14.3,0-28.6,0-43 - c0-0.8-0.3-1.1-1.2-1.1H21.6c-0.7,0-1.2,0.5-1.2,1.2c0,14.4,0,28.9,0,43.3L46.1,54.9L46.1,54.9z"/> -<path class="st1" d="M44.3,27.5H22.1v-5.1h22.3V27.5z M23.8,25.8h18.9V24H23.8V25.8z"/> -<path class="st1" d="M22.1,34.3v-5.1h22.3v5.1H22.1z M24.6,32.6h18v-1.7h-18L24.6,32.6z"/> -<path class="st1" d="M22.1,42v-5.1h22.3V42H22.1z M24.6,40.3h18v-1.7h-18L24.6,40.3z"/> -<path class="st1" d="M44.3,14.6v5.1H22.1v-5.1H44.3z M24.6,18h18v-1.7h-18L24.6,18z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 65 64.9"><circle transform="matrix(1 -.003316 .003316 1 -.1074 .108)" cx="32.5" cy="32.5" r="32.5" fill="#eabe1b"/><path d="M47.8 56.6H18.6V11.7a3.12 3.12 0 0 1 3.1-3.1h22.9a3.12 3.12 0 0 1 3.1 3.1V56l.1.6zm-1.7-1.7V11.4c0-.8-.3-1.1-1.2-1.1H21.6c-.7 0-1.2.5-1.2 1.2v43.3l25.7.1zm-1.8-27.4H22.1v-5.1h22.3v5.1zm-20.5-1.7h18.9V24H23.8v1.8zm-1.7 8.5v-5.1h22.3v5.1H22.1zm2.5-1.7h18v-1.7h-18v1.7zM22.1 42v-5.1h22.3V42H22.1zm2.5-1.7h18v-1.7h-18v1.7zm19.7-25.7v5.1H22.1v-5.1h22.2zM24.6 18h18v-1.7h-18V18z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/applications/application_logic.svg b/src/main/webapp/img/lib/ibm/applications/application_logic.svg index 925b6345dd9492e657393783023a0e5750d05b73..07f0682f767153758a6bdf3b07ea772586e1d62a 100644 --- a/src/main/webapp/img/lib/ibm/applications/application_logic.svg +++ b/src/main/webapp/img/lib/ibm/applications/application_logic.svg @@ -1,30 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 60.2 60.2" style="enable-background:new 0 0 60.2 60.2;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#ECC01B;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle class="st0" cx="30.1" cy="30.1" r="30.1"/> -<path class="st1" d="M23.6,29.6c0-0.4,0-0.8-0.1-1.1l2.3-2l-1.9-3.2l-2.7,0.9c-0.7-0.6-1.4-1-2.2-1.3l-0.6-2.6h-3.8l-0.6,2.6 - c-0.8,0.3-1.5,0.8-2.2,1.3L9,23.3l-1.9,3.2l2.3,2c-0.1,0.7-0.1,1.5,0,2.3l-2.3,2L9,35.9l2.7-0.9c0.7,0.6,1.4,1,2.2,1.3l0.6,2.6h3.8 - l0.6-2.6c0.8-0.3,1.6-0.7,2.2-1.3l2.7,0.9l1.9-3.2l-2.3-2C23.5,30.4,23.6,30,23.6,29.6z M25,32.9l-1.4,2.3l-2.3-0.7L21,34.3 - l-0.3,0.2c-0.6,0.5-1.3,0.9-2,1.2l-0.3,0.1l-0.1,0.3l-0.6,2.2H15l-0.5-2.2l-0.1-0.3l-0.3-0.1c-0.7-0.3-1.4-0.7-2-1.2l-0.3-0.2 - l-0.3,0.1l-2.3,0.8l-1.4-2.3l1.9-1.7L10,31l0-0.3c-0.1-0.7-0.1-1.4,0-2.1l0-0.3L9.8,28l-1.9-1.6l1.4-2.3l2.3,0.7l0.3,0.1l0.3-0.2 - c0.6-0.5,1.3-0.9,2-1.2l0.3-0.1l0.1-0.3l0.5-2.1h2.7l0.5,2.1l0.1,0.3l0.3,0.1c0.7,0.3,1.4,0.7,2,1.2l0.3,0.2l0.3-0.1l2.3-0.7 - l1.4,2.3L23,28l-0.3,0.2l0,0.3c0.1,0.7,0.1,1.4,0,2.1l0,0.3l0.3,0.2L25,32.9z"/> -<path class="st1" d="M16.4,25.9c-2.1,0-3.8,1.7-3.8,3.8s1.7,3.8,3.8,3.8s3.7-1.7,3.8-3.8S18.5,25.9,16.4,25.9L16.4,25.9z M16.4,30.9 - c-0.7,0-1.3-0.6-1.3-1.3c0-0.7,0.6-1.3,1.3-1.3s1.3,0.6,1.3,1.3C17.7,30.3,17.1,30.9,16.4,30.9z"/> -<path class="st1" d="M48.5,35.1c0.3-0.4,0.5-0.8,0.7-1.3l3.8-0.6l0.1-4.8l-3.5-0.9c-0.3-1.1-0.8-2.1-1.5-3l1.2-3.3l-4-2.6l-2.5,2.5 - c-1.1-0.2-2.2-0.3-3.3-0.1l-2.3-2.8l-4.3,2l1.1,3.7c-0.7,0.7-1.2,1.5-1.6,2.4l-3.8,0.6l-0.1,4.8l3.5,0.9c0.3,1.1,0.8,2.1,1.5,3 - l-1.2,3.3l4,2.6l2.5-2.4c1.1,0.2,2.2,0.3,3.3,0.1l2.3,2.8l4.3-2.1l-1.1-3.8C47.9,35.8,48.2,35.5,48.5,35.1z M47.8,39.5l-3.1,1.5 - l-1.9-2.4l-0.3-0.3L42,38.4c-1,0.1-2,0.1-3-0.1l-0.5-0.1l-0.3,0.3l-2,2l-3-1.9l1-2.7l0.2-0.4L34,35.2c-0.6-0.8-1.1-1.7-1.4-2.7 - L32.5,32l-0.4-0.1l-2.9-0.8l0.1-3.5l3.2-0.5l0.4-0.1l0.2-0.4c0.3-0.8,0.8-1.6,1.4-2.2l0.3-0.3l-0.1-0.4l-0.9-3.1l3.1-1.5l1.9,2.4 - l0.3,0.4l0.5-0.1c1-0.1,2-0.1,3,0.1L43,22l0.3-0.3l2-2l3,1.9l-1,2.7l-0.2,0.4l0.3,0.4c0.6,0.8,1.1,1.7,1.4,2.7l0.1,0.4l0.4,0.1 - l2.9,0.8l-0.1,3.5L49,33L48.5,33l-0.2,0.4c-0.3,0.8-0.8,1.6-1.4,2.2L46.6,36l0.1,0.4L47.8,39.5z"/> -<path class="st1" d="M43.3,26.1c-2.2-1.5-5.2-0.8-6.7,1.4c-1.5,2.2-0.8,5.2,1.4,6.7c2.2,1.5,5.2,0.8,6.7-1.4c0,0,0,0,0,0 - C46.2,30.5,45.6,27.5,43.3,26.1z M39.9,31.4c-0.7-0.5-1-1.5-0.5-2.2c0.5-0.7,1.5-1,2.2-0.5c0.7,0.5,1,1.5,0.5,2.2c0,0,0,0,0,0 - C41.6,31.7,40.6,31.9,39.9,31.4z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60.2 60.2"><circle cx="30.1" cy="30.1" r="30.1" fill="#ecc01b"/><path d="M23.6 29.6c0-.4 0-.8-.1-1.1l2.3-2-1.9-3.2-2.7.9c-.7-.6-1.4-1-2.2-1.3l-.6-2.6h-3.8l-.6 2.6c-.8.3-1.5.8-2.2 1.3L9 23.3l-1.9 3.2 2.3 2c-.1.7-.1 1.5 0 2.3l-2.3 2L9 35.9l2.7-.9c.7.6 1.4 1 2.2 1.3l.6 2.6h3.8l.6-2.6c.8-.3 1.6-.7 2.2-1.3l2.7.9 1.9-3.2-2.3-2c.1-.3.2-.7.2-1.1zm1.4 3.3l-1.4 2.3-2.3-.7-.3-.2-.3.2c-.6.5-1.3.9-2 1.2l-.3.1-.1.3-.6 2.2H15l-.5-2.2-.1-.3-.3-.1c-.7-.3-1.4-.7-2-1.2l-.3-.2-.3.1-2.3.8-1.4-2.3 1.9-1.7.3-.2v-.3c-.1-.7-.1-1.4 0-2.1v-.3l-.2-.3-1.9-1.6 1.4-2.3 2.3.7.3.1.3-.2c.6-.5 1.3-.9 2-1.2l.3-.1.1-.3.5-2.1h2.7l.5 2.1.1.3.3.1c.7.3 1.4.7 2 1.2l.3.2.3-.1 2.3-.7 1.4 2.3-2 1.6-.3.2v.3c.1.7.1 1.4 0 2.1v.3l.3.2 2 1.8zm-8.6-7a3.8 3.8 0 1 0 0 7.6c2.1 0 3.7-1.7 3.8-3.8s-1.7-3.8-3.8-3.8zm0 5c-.7 0-1.3-.6-1.3-1.3s.6-1.3 1.3-1.3 1.3.6 1.3 1.3-.6 1.3-1.3 1.3zm32.1 4.2c.3-.4.5-.8.7-1.3l3.8-.6.1-4.8-3.5-.9a8.47 8.47 0 0 0-1.5-3l1.2-3.3-4-2.6-2.5 2.5c-1.1-.2-2.2-.3-3.3-.1l-2.3-2.8-4.3 2 1.1 3.7c-.7.7-1.2 1.5-1.6 2.4l-3.8.6-.1 4.8 3.5.9a8.47 8.47 0 0 0 1.5 3l-1.2 3.3 4 2.6 2.5-2.4c1.1.2 2.2.3 3.3.1l2.3 2.8 4.3-2.1-1.1-3.8c.3-.3.6-.6.9-1zm-.7 4.4L44.7 41l-1.9-2.4-.3-.3-.5.1c-1 .1-2 .1-3-.1l-.5-.1-2.3 2.3-3-1.9 1-2.7.2-.4-.4-.3c-.6-.8-1.1-1.7-1.4-2.7l-.1-.5-.4-.1-2.9-.8.1-3.5 3.2-.5.4-.1.2-.4c.3-.8.8-1.6 1.4-2.2l.3-.3-.1-.4-.9-3.1 3.1-1.5 1.9 2.4.3.4.5-.1c1-.1 2-.1 3 .1l.4.1 2.3-2.3 3 1.9-1 2.7-.2.4.3.4c.6.8 1.1 1.7 1.4 2.7l.1.4.4.1 2.9.8-.1 3.5-3.1.4h-.5l-.2.4c-.3.8-.8 1.6-1.4 2.2l-.3.4.1.4 1.1 3.1zm-4.5-13.4c-2.2-1.5-5.2-.8-6.7 1.4s-.8 5.2 1.4 6.7 5.2.8 6.7-1.4c1.5-2.3.9-5.3-1.4-6.7zm-3.4 5.3c-.7-.5-1-1.5-.5-2.2s1.5-1 2.2-.5 1 1.5.5 2.2c-.5.8-1.5 1-2.2.5z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/applications/automation_tools.svg b/src/main/webapp/img/lib/ibm/applications/automation_tools.svg index 6e8f76a1804b294dfa06db34c3cf250e84cfa61b..9d41de710d08a9e577bcc6f65a8960cbe070e6c4 100644 --- a/src/main/webapp/img/lib/ibm/applications/automation_tools.svg +++ b/src/main/webapp/img/lib/ibm/applications/automation_tools.svg @@ -1,25 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 65 64.9" style="enable-background:new 0 0 65 64.9;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#EABE1B;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS 3</title> -<ellipse transform="matrix(1 -3.316120e-03 3.316120e-03 1 -0.1074 0.108)" class="st0" cx="32.5" cy="32.5" rx="32.5" ry="32.5"/> -<path class="st1" d="M27.7,14.2c0.2,0.3,0.5,0.6,0.5,0.9c0,1.5,1,1.8,2.3,1.9c1,0.2,2.1,0.4,3.1,0.8c0.8,0.2,1.5,0.2,2-0.7 - s1.2-1,2-0.3s1.5,1.1,2.3,1.6c0.6,0.2,0.9,0.9,0.6,1.5c-0.1,0.2-0.2,0.3-0.3,0.4c-0.7,0.8-0.5,1.4,0,2.1c0.7,1,1.4,2.1,2,3.2 - c0.4,0.7,0.8,1.2,1.7,0.9c1.2-0.3,1.7,0.3,1.8,1.4c0.1,0.8,0.2,1.6,0.4,2.4c0.2,0.9-0.1,1.3-1.1,1.4c-5,0.4-8.8,3.6-9.8,8.3 - c-0.2,1.6-0.2,3.1,0,4.7c0,0.6,0.1,1-0.5,1.2c-0.7,0.2-1,0.9-0.8,1.6c0,0,0,0.1,0,0.1c0.3,1.1-0.3,1.7-1.3,1.8 - c-0.8,0.1-1.6,0.2-2.4,0.4c-1,0.3-1.7-0.1-1.8-1.2s-0.6-1.3-1.5-1.5c-1.2-0.2-2.5-0.5-3.7-0.8c-0.9-0.3-1.5-0.3-2,0.7 - s-1.1,0.9-1.9,0.4s-1.6-1.1-2.4-1.7s-1-1.2-0.3-1.8c0.8-0.9,0.5-1.5-0.1-2.3c-0.7-1-1.4-2-1.9-3.1c-0.4-0.7-0.9-1.1-1.7-0.9 - c-1.1,0.3-1.7-0.2-1.8-1.3c-0.1-0.8-0.2-1.6-0.4-2.4c-0.3-1,0.1-1.7,1.2-1.8s1.3-0.7,1.4-1.6c0.2-1.2,0.5-2.4,0.8-3.6 - c0.3-0.9,0.3-1.5-0.6-2.1c-0.6-0.2-0.9-0.9-0.6-1.5c0.1-0.2,0.2-0.3,0.3-0.4c0.6-0.8,1.1-1.6,1.7-2.4c0.3-0.6,1-0.8,1.5-0.5 - c0.1,0.1,0.3,0.2,0.4,0.3c0.8,0.7,1.4,0.5,2.1-0.1c1-0.7,2-1.4,3.1-1.9c0.8-0.4,1.3-0.9,1-1.9s0.2-1.5,1.2-1.7s1.8-0.4,2.7-0.5 - L27.7,14.2z M36.3,32c0-4.4-3.7-8-8.1-7.9c-4.4,0-8,3.7-7.9,8.1c0,4.4,3.6,7.9,8,7.9c4.4,0,8-3.5,8-7.8C36.3,32.2,36.3,32.1,36.3,32 - z"/> -<path class="st1" d="M44.4,51.1c-0.4-0.1-0.7-0.3-1.1-0.4c-4.6-1.3-7.2-6.1-5.9-10.7s6.1-7.2,10.7-5.9c2.8,0.8,4.9,2.9,5.8,5.7 - l0.4,1.3v2.7c-0.5,2.8-2.4,5.2-4.9,6.5c-0.8,0.3-1.6,0.6-2.3,0.9L44.4,51.1z M42.9,47l7.8-4.5L42.9,38L42.9,47z"/> -<path class="st1" d="M47.1,51.1c0.8-0.3,1.6-0.5,2.3-0.9c2.6-1.3,4.4-3.6,4.9-6.5v7.3L47.1,51.1z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 65 64.9"><circle transform="matrix(1 -.003316 .003316 1 -.1074 .108)" cx="32.5" cy="32.5" r="32.5" fill="#eabe1b"/><g fill="#fff"><path d="M27.7 14.2c.2.3.5.6.5.9 0 1.5 1 1.8 2.3 1.9 1 .2 2.1.4 3.1.8.8.2 1.5.2 2-.7s1.2-1 2-.3 1.5 1.1 2.3 1.6c.6.2.9.9.6 1.5-.1.2-.2.3-.3.4-.7.8-.5 1.4 0 2.1a34.47 34.47 0 0 1 2 3.2c.4.7.8 1.2 1.7.9 1.2-.3 1.7.3 1.8 1.4l.4 2.4c.2.9-.1 1.3-1.1 1.4-5 .4-8.8 3.6-9.8 8.3-.2 1.6-.2 3.1 0 4.7 0 .6.1 1-.5 1.2-.7.2-1 .9-.8 1.6v.1c.3 1.1-.3 1.7-1.3 1.8-.8.1-1.6.2-2.4.4-1 .3-1.7-.1-1.8-1.2s-.6-1.3-1.5-1.5c-1.2-.2-2.5-.5-3.7-.8-.9-.3-1.5-.3-2 .7s-1.1.9-1.9.4-1.6-1.1-2.4-1.7-1-1.2-.3-1.8c.8-.9.5-1.5-.1-2.3-.7-1-1.4-2-1.9-3.1-.4-.7-.9-1.1-1.7-.9-1.1.3-1.7-.2-1.8-1.3-.1-.8-.2-1.6-.4-2.4-.3-1 .1-1.7 1.2-1.8s1.3-.7 1.4-1.6c.2-1.2.5-2.4.8-3.6.3-.9.3-1.5-.6-2.1-.6-.2-.9-.9-.6-1.5.1-.2.2-.3.3-.4.6-.8 1.1-1.6 1.7-2.4.3-.6 1-.8 1.5-.5.1.1.3.2.4.3.8.7 1.4.5 2.1-.1 1-.7 2-1.4 3.1-1.9.8-.4 1.3-.9 1-1.9s.2-1.5 1.2-1.7 1.8-.4 2.7-.5h.8zM36.3 32c0-4.4-3.7-8-8.1-7.9-4.4 0-8 3.7-7.9 8.1 0 4.4 3.6 7.9 8 7.9s8-3.5 8-7.8V32zm8.1 19.1c-.4-.1-.7-.3-1.1-.4-4.6-1.3-7.2-6.1-5.9-10.7s6.1-7.2 10.7-5.9c2.8.8 4.9 2.9 5.8 5.7l.4 1.3v2.7c-.5 2.8-2.4 5.2-4.9 6.5l-2.3.9-2.7-.1zM42.9 47l7.8-4.5-7.8-4.5v9z"/><path d="M47.1 51.1c.8-.3 1.6-.5 2.3-.9 2.6-1.3 4.4-3.6 4.9-6.5V51l-7.2.1z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/applications/enterprise_applications.svg b/src/main/webapp/img/lib/ibm/applications/enterprise_applications.svg index dd89b82b7739690ba2f8782bbd808438a2eb7eba..78a26565441fd5c59e0d1574aadba88c4aef3b2e 100644 --- a/src/main/webapp/img/lib/ibm/applications/enterprise_applications.svg +++ b/src/main/webapp/img/lib/ibm/applications/enterprise_applications.svg @@ -1,16 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.6 59.6" style="enable-background:new 0 0 59.6 59.6;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#EABE1D;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle class="st0" cx="29.8" cy="29.8" r="29.8"/> -<path class="st1" d="M34.8,19.1h-2.6c0,1.8-0.4,3.7-1.1,5.4l-8.1-3.9c0.8-2.7-0.7-5.6-3.5-6.4c-1.4-0.4-2.8-0.2-4,0.5l-1.9-1.9 - l-1.8,1.8l1.9,1.9c-1.4,2.4-0.6,5.6,1.8,7c1.2,0.7,2.7,0.9,4,0.5l11.1,22.9l1.2-0.6l-6.1-12.5c3.1-1.6,5.6-4.1,7.2-7.2l12.6,6.1 - l0.6-1.2l-12.5-6.1C34.4,23.5,34.8,21.3,34.8,19.1z M17.2,18.2c0.5-0.5,1.3-0.5,1.8,0c0.5,0.5,0.5,1.3,0,1.8c-0.5,0.5-1.3,0.5-1.8,0 - c0,0,0,0,0,0C16.8,19.5,16.8,18.7,17.2,18.2z M24.7,31.5l-3.9-8.1c0.8-0.4,1.4-1.1,1.8-1.8l8.1,3.9C29.3,28.1,27.2,30.2,24.7,31.5 - L24.7,31.5z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.6 59.6"><circle cx="29.8" cy="29.8" r="29.8" fill="#eabe1d"/><path d="M34.8 19.1h-2.6c0 1.8-.4 3.7-1.1 5.4L23 20.6c.8-2.7-.7-5.6-3.5-6.4a5.06 5.06 0 0 0-4 .5l-1.9-1.9-1.8 1.8 1.9 1.9c-1.4 2.4-.6 5.6 1.8 7 1.2.7 2.7.9 4 .5l11.1 22.9 1.2-.6-6.1-12.5a16.69 16.69 0 0 0 7.2-7.2l12.6 6.1.6-1.2-12.5-6.1c.8-1.9 1.2-4.1 1.2-6.3zm-17.6-.9c.5-.5 1.3-.5 1.8 0s.5 1.3 0 1.8-1.3.5-1.8 0c-.4-.5-.4-1.3 0-1.8zm7.5 13.3l-3.9-8.1c.8-.4 1.4-1.1 1.8-1.8l8.1 3.9c-1.4 2.6-3.5 4.7-6 6z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/applications/index.svg b/src/main/webapp/img/lib/ibm/applications/index.svg index a4bafd6a5ea6ebe0d3e3e1477fb6c48ff8145ab6..f38e407068ae2e2a3e51dadf994be8f70f773beb 100644 --- a/src/main/webapp/img/lib/ibm/applications/index.svg +++ b/src/main/webapp/img/lib/ibm/applications/index.svg @@ -1,13 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.3 59.2" style="enable-background:new 0 0 59.3 59.2;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#ECC01B;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<ellipse class="st0" cx="29.6" cy="29.6" rx="29.6" ry="29.6"/> -<path class="st1" d="M47.7,19.2v-7.7h-7.7v2.8H28.3v14.6h-9v-2.8h-7.8v7.7h7.7V31h9v13.9h11.9v2.8h7.7V40h-7.7v2.8h-9.7V31h9.7v2.8 - h7.7v-7.6h-7.7v2.8h-9.7V16.4h9.7v2.8H47.7z M17.1,31.7h-3.5v-3.5h3.5L17.1,31.7L17.1,31.7z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.3 59.2"><circle cx="29.6" cy="29.6" r="29.6" fill="#ecc01b"/><path d="M47.7 19.2v-7.7H40v2.8H28.3v14.6h-9v-2.8h-7.8v7.7h7.7V31h9v13.9h11.9v2.8h7.7V40h-7.7v2.8h-9.7V31h9.7v2.8h7.7v-7.6h-7.7V29h-9.7V16.4h9.7v2.8h7.6zM17.1 31.7h-3.5v-3.5h3.5v3.5z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/applications/iot_application.svg b/src/main/webapp/img/lib/ibm/applications/iot_application.svg index 4029af8b22464b19b9e9e4ef5b9a5e514e35fde3..e2b50667ef53d872f4c9280acb079c91ed1b551a 100644 --- a/src/main/webapp/img/lib/ibm/applications/iot_application.svg +++ b/src/main/webapp/img/lib/ibm/applications/iot_application.svg @@ -1,21 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.2 59.2" style="enable-background:new 0 0 59.2 59.2;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#E8BD1F;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle class="st0" cx="29.6" cy="29.6" r="29.6"/> -<path class="st1" d="M44,33.4h-5.4V31h5.3c0.4,0,0.7-0.3,0.8-0.7c0,0,0,0,0,0v-1c0-0.4-0.3-0.7-0.7-0.8c0,0,0,0,0,0h-5.3v-2.6h5.3 - c0.4,0,0.7-0.3,0.8-0.7c0,0,0,0,0,0v-1c0-0.4-0.3-0.7-0.7-0.8c0,0,0,0,0,0h-5.3v-3.1h-2.7v-5.6c0-0.4-0.3-0.7-0.7-0.8c0,0,0,0,0,0 - h-0.9c-0.4,0-0.7,0.3-0.8,0.7c0,0,0,0,0,0v5.6h-2.7v-5.5c0-0.4-0.3-0.7-0.7-0.8c0,0,0,0,0,0h-1c-0.4,0-0.7,0.3-0.8,0.7c0,0,0,0,0,0 - v5.5h-2.6v-5.5c0-0.4-0.3-0.7-0.7-0.8c0,0,0,0,0,0h-1c-0.4,0-0.7,0.3-0.8,0.7c0,0,0,0,0,0v5.5h-2.9v3h-5.2c-0.4,0-0.7,0.3-0.8,0.7 - c0,0,0,0,0,0v1c0,0.4,0.3,0.7,0.7,0.8c0,0,0,0,0,0h5.2v2.8h-5.3c-0.4,0-0.7,0.3-0.8,0.7c0,0,0,0,0,0v0.9c0,0.4,0.3,0.7,0.7,0.8 - c0,0,0,0,0,0h5.3v2.6h-5.3c-0.4,0-0.7,0.3-0.8,0.7c0,0,0,0,0,0v1c0,0.4,0.3,0.7,0.7,0.8c0,0,0,0,0,0h5.3V39h2.9v5.6l0.6,0.7H25 - c0.4,0,0.7-0.3,0.8-0.7c0,0,0,0,0,0V39h2.5v5.5c0,0.4,0.3,0.7,0.7,0.8c0,0,0,0,0,0h1c0.4,0,0.7-0.3,0.8-0.7c0,0,0,0,0,0V39h2.7v5.5 - c0,0.4,0.3,0.7,0.7,0.7c0,0,0,0,0.1,0h1c0.4,0,0.7-0.3,0.8-0.7c0,0,0,0,0,0V39h2.8v-3.1h5.4c0.4,0,0.7-0.3,0.8-0.7c0,0,0,0,0,0v-1 - C44.9,33.6,44.5,33.3,44,33.4C44,33.4,44,33.4,44,33.4z M29.5,33.5c-2,0-3.7-1.6-3.7-3.7s1.6-3.7,3.7-3.7s3.7,1.6,3.7,3.7l0,0 - C33.1,31.8,31.5,33.4,29.5,33.5C29.5,33.5,29.5,33.5,29.5,33.5L29.5,33.5z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.2 59.2"><circle cx="29.6" cy="29.6" r="29.6" fill="#e8bd1f"/><path d="M44 33.4h-5.4V31h5.3c.4 0 .7-.3.8-.7v-1c0-.4-.3-.7-.7-.8h-5.3v-2.6H44c.4 0 .7-.3.8-.7v-1c0-.4-.3-.7-.7-.8h-5.3v-3.1h-2.7v-5.6c0-.4-.3-.7-.7-.8h-.9c-.4 0-.7.3-.8.7v5.6H31v-5.5c0-.4-.3-.7-.7-.8h-1c-.4 0-.7.3-.8.7v5.5h-2.6v-5.5c0-.4-.3-.7-.7-.8h-1c-.4 0-.7.3-.8.7V20h-2.9v3h-5.2c-.4 0-.7.3-.8.7v1c0 .4.3.7.7.8h5.2v2.8h-5.3c-.4 0-.7.3-.8.7v.9c0 .4.3.7.7.8h5.3v2.6H15c-.4 0-.7.3-.8.7v1c0 .4.3.7.7.8h5.3V39h2.9v5.6l.6.7H25c.4 0 .7-.3.8-.7V39h2.5v5.5c0 .4.3.7.7.8h1c.4 0 .7-.3.8-.7V39h2.7v5.5a.68.68 0 0 0 .7.7h1.1c.4 0 .7-.3.8-.7V39h2.8v-3.1h5.4c.4 0 .7-.3.8-.7v-1c-.2-.6-.6-.9-1.1-.8zm-14.5.1c-2 0-3.7-1.6-3.7-3.7s1.6-3.7 3.7-3.7 3.7 1.6 3.7 3.7a3.9 3.9 0 0 1-3.7 3.7z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/applications/microservice.svg b/src/main/webapp/img/lib/ibm/applications/microservice.svg index 140c94129c16e22f5b7a6d7bfaae052ef0baa9a1..0a821f501cb97a99e15a6ef6b6e3662bac1307cb 100644 --- a/src/main/webapp/img/lib/ibm/applications/microservice.svg +++ b/src/main/webapp/img/lib/ibm/applications/microservice.svg @@ -1,34 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 83.8 60.8" style="enable-background:new 0 0 83.8 60.8;" xml:space="preserve"> -<style type="text/css"> - .st0{opacity:0.3;} - .st1{fill:#EFCC2E;} - .st2{fill:#FFFFFF;} - .st3{opacity:0.2;} - .st4{opacity:0.8;} -</style> -<title>INDIVIDUAL ICONS 3</title> -<g class="st0"> - <circle class="st1" cx="43.2" cy="30.4" r="30.4"/> - <path class="st2" d="M52,22.7h-2.6c0,1.9-0.4,3.7-1.1,5.5l-8.3-4c0.8-2.8-0.7-5.7-3.5-6.5c-1.4-0.4-2.9-0.2-4.2,0.5l-2-2L28.6,18 - l2,2c-1.5,2.5-0.7,5.7,1.8,7.1c1.3,0.8,2.8,0.9,4.2,0.5l11.2,23.4l1.2-0.6l-6.2-12.8c3.1-1.6,5.7-4.2,7.3-7.3l12.8,6.2l0.6-1.2 - l-12.8-6.2C51.6,27.2,52,25,52,22.7z M34.2,21.8c0.5-0.5,1.3-0.5,1.8,0c0.5,0.5,0.5,1.3,0,1.8c-0.5,0.5-1.3,0.5-1.8,0 - C33.7,23.1,33.7,22.3,34.2,21.8z M41.7,35.4l-4-8.2c0.8-0.4,1.4-1.1,1.8-1.8l8.2,4C46.4,31.9,44.3,34,41.7,35.4z"/> -</g> -<g class="st3"> - <circle class="st1" cx="53.4" cy="30.4" r="30.4"/> - <path class="st2" d="M62.2,22.7h-2.6c0,1.9-0.4,3.7-1.1,5.5l-8.3-4c0.8-2.8-0.7-5.7-3.5-6.5c-1.4-0.4-2.9-0.2-4.2,0.5l-2-2L38.7,18 - l2,2c-1.5,2.5-0.7,5.7,1.8,7.1c1.3,0.8,2.8,0.9,4.2,0.5L58,51.1l1.2-0.6L53,37.7c3.1-1.6,5.7-4.2,7.3-7.3l12.8,6.2l0.6-1.2 - l-12.8-6.2C61.7,27.2,62.2,25,62.2,22.7z M44.3,21.8c0.5-0.5,1.3-0.5,1.8,0c0.5,0.5,0.5,1.3,0,1.8c-0.5,0.5-1.3,0.5-1.8,0 - C43.8,23.1,43.8,22.3,44.3,21.8z M51.9,35.4l-4-8.2c0.8-0.4,1.4-1.1,1.8-1.8l8.2,4C56.6,31.9,54.5,34,51.9,35.4L51.9,35.4z"/> -</g> -<g class="st4"> - <circle class="st1" cx="30.4" cy="30.4" r="30.4"/> -</g> -<path class="st2" d="M39.2,22.7h-2.6c0,1.9-0.4,3.7-1.1,5.5l-8.3-4c0.8-2.8-0.7-5.7-3.5-6.5c-1.4-0.4-2.9-0.2-4.2,0.5l-2-2L15.7,18 - l2,2c-1.5,2.5-0.7,5.7,1.8,7.1c1.3,0.8,2.8,0.9,4.2,0.5L35,51.1l1.2-0.6L30,37.7c3.1-1.6,5.7-4.2,7.3-7.3l12.8,6.2l0.6-1.2 - l-12.8-6.2C38.7,27.2,39.2,25,39.2,22.7z M21.4,21.8c0.5-0.5,1.3-0.5,1.8,0c0.5,0.5,0.5,1.3,0,1.8c-0.5,0.5-1.3,0.5-1.8,0 - C20.8,23.1,20.8,22.3,21.4,21.8z M28.9,35.4l-4-8.2c0.8-0.4,1.4-1.1,1.8-1.8l8.2,4C33.6,31.9,31.4,34,28.9,35.4L28.9,35.4z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 83.8 60.8"><g opacity=".3"><circle cx="43.2" cy="30.4" r="30.4" fill="#efcc2e"/><path d="M52 22.7h-2.6c0 1.9-.4 3.7-1.1 5.5l-8.3-4c.8-2.8-.7-5.7-3.5-6.5-1.4-.4-2.9-.2-4.2.5l-2-2-1.7 1.8 2 2c-1.5 2.5-.7 5.7 1.8 7.1 1.3.8 2.8.9 4.2.5L47.8 51l1.2-.6-6.2-12.8c3.1-1.6 5.7-4.2 7.3-7.3l12.8 6.2.6-1.2-12.8-6.2c.9-1.9 1.3-4.1 1.3-6.4zm-17.8-.9c.5-.5 1.3-.5 1.8 0s.5 1.3 0 1.8-1.3.5-1.8 0-.5-1.3 0-1.8zm7.5 13.6l-4-8.2c.8-.4 1.4-1.1 1.8-1.8l8.2 4c-1.3 2.5-3.4 4.6-6 6z" fill="#fff"/></g><g opacity=".2"><circle cx="53.4" cy="30.4" r="30.4" fill="#efcc2e"/><path d="M62.2 22.7h-2.6c0 1.9-.4 3.7-1.1 5.5l-8.3-4c.8-2.8-.7-5.7-3.5-6.5-1.4-.4-2.9-.2-4.2.5l-2-2-1.8 1.8 2 2c-1.5 2.5-.7 5.7 1.8 7.1 1.3.8 2.8.9 4.2.5L58 51.1l1.2-.6L53 37.7c3.1-1.6 5.7-4.2 7.3-7.3l12.8 6.2.6-1.2-12.8-6.2c.8-2 1.3-4.2 1.3-6.5zm-17.9-.9c.5-.5 1.3-.5 1.8 0s.5 1.3 0 1.8-1.3.5-1.8 0-.5-1.3 0-1.8zm7.6 13.6l-4-8.2c.8-.4 1.4-1.1 1.8-1.8l8.2 4c-1.3 2.5-3.4 4.6-6 6z" fill="#fff"/></g><circle cx="30.4" cy="30.4" r="30.4" fill="#efcc2e" opacity=".8"/><path d="M39.2 22.7h-2.6c0 1.9-.4 3.7-1.1 5.5l-8.3-4c.8-2.8-.7-5.7-3.5-6.5-1.4-.4-2.9-.2-4.2.5l-2-2-1.8 1.8 2 2c-1.5 2.5-.7 5.7 1.8 7.1 1.3.8 2.8.9 4.2.5L35 51.1l1.2-.6L30 37.7c3.1-1.6 5.7-4.2 7.3-7.3l12.8 6.2.6-1.2-12.8-6.2c.8-2 1.3-4.2 1.3-6.5zm-17.8-.9c.5-.5 1.3-.5 1.8 0s.5 1.3 0 1.8-1.3.5-1.8 0c-.6-.5-.6-1.3 0-1.8zm7.5 13.6l-4-8.2c.8-.4 1.4-1.1 1.8-1.8l8.2 4c-1.3 2.5-3.5 4.6-6 6z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/applications/mobile_app.svg b/src/main/webapp/img/lib/ibm/applications/mobile_app.svg index 3d7062390bba0862152c279215c7ef0d9a85b01f..6fd915fa5d6cde115feb75ced2363894ef808446 100644 --- a/src/main/webapp/img/lib/ibm/applications/mobile_app.svg +++ b/src/main/webapp/img/lib/ibm/applications/mobile_app.svg @@ -1,16 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 60.1 60.1" style="enable-background:new 0 0 60.1 60.1;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#E8BD1F;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle class="st0" cx="30" cy="30" r="30"/> -<path class="st1" d="M38.8,22.5h-2.6c0,1.9-0.4,3.7-1.1,5.4l-8.2-4c0.8-2.7-0.8-5.6-3.5-6.4c-1.4-0.4-2.8-0.2-4.1,0.5l-1.9-1.9 - l-1.8,1.8l1.9,1.9c-1.4,2.5-0.6,5.6,1.8,7.1c1.2,0.7,2.7,0.9,4.1,0.5l11.2,23.1l1.1-0.6l-6.1-12.7c3.1-1.6,5.6-4.1,7.2-7.2l12.7,6.1 - l0.6-1.1l-12.7-6.2C38.3,26.9,38.8,24.7,38.8,22.5z M21.1,21.6c0.5-0.5,1.3-0.5,1.8,0c0.5,0.5,0.5,1.3,0,1.8s-1.3,0.5-1.8,0 - c0,0,0,0,0,0C20.6,22.9,20.6,22.1,21.1,21.6L21.1,21.6z M28.5,35l-3.9-8.1c0.7-0.4,1.4-1.1,1.8-1.8l8.1,3.9 - C33.2,31.6,31.1,33.7,28.5,35L28.5,35z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60.1 60.1"><circle cx="30" cy="30" r="30" fill="#e8bd1f"/><path d="M38.8 22.5h-2.6c0 1.9-.4 3.7-1.1 5.4l-8.2-4c.8-2.7-.8-5.6-3.5-6.4-1.4-.4-2.8-.2-4.1.5l-1.9-1.9-1.8 1.8 1.9 1.9c-1.4 2.5-.6 5.6 1.8 7.1 1.2.7 2.7.9 4.1.5l11.2 23.1 1.1-.6-6.1-12.7a16.69 16.69 0 0 0 7.2-7.2l12.7 6.1.6-1.1-12.7-6.2c.9-1.9 1.4-4.1 1.4-6.3zm-17.7-.9c.5-.5 1.3-.5 1.8 0s.5 1.3 0 1.8-1.3.5-1.8 0-.5-1.3 0-1.8zM28.5 35l-3.9-8.1c.7-.4 1.4-1.1 1.8-1.8l8.1 3.9a13.4 13.4 0 0 1-6 6z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/applications/ontology.svg b/src/main/webapp/img/lib/ibm/applications/ontology.svg index 4ecc8655fc1c0d63756c4dc71a2ab1d6aaeb888d..1d0a66d68ec6e055e6a5313ab0114aa32238cdc1 100644 --- a/src/main/webapp/img/lib/ibm/applications/ontology.svg +++ b/src/main/webapp/img/lib/ibm/applications/ontology.svg @@ -1,25 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 60.3 60.2" style="enable-background:new 0 0 60.3 60.2;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#ECC01B;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<ellipse class="st0" cx="30.1" cy="30.1" rx="30.1" ry="30.1"/> -<path class="st1" d="M52.5,28.6h-3c-0.7-9.5-8.3-17.1-17.9-17.8v-3h-3v3c-9.5,0.7-17.1,8.3-17.8,17.8h-3v3h3 - c0.7,9.5,8.3,17.1,17.8,17.8v3h3v-3c9.5-0.7,17.1-8.3,17.8-17.8h3V28.6z M46.5,28.6H42c-0.7-5.4-5-9.7-10.4-10.3v-4.5 - C39.5,14.5,45.8,20.7,46.5,28.6z M40.5,31.6c-0.7,4.6-4.3,8.2-8.8,8.8v-5.9h-3v5.8c-4.6-0.7-8.2-4.3-8.8-8.8h5.8v-3h-5.9 - c0.7-4.6,4.3-8.2,8.8-8.8v5.8h3v-5.8c4.6,0.7,8.2,4.3,8.8,8.8h-5.9v3H40.5z M28.6,13.8v4.5c-5.4,0.7-9.7,4.9-10.3,10.3h-4.5 - C14.5,20.7,20.8,14.5,28.6,13.8z M13.8,31.6h4.5c0.7,5.4,4.9,9.6,10.3,10.3v4.5C20.8,45.7,14.5,39.5,13.8,31.6z M31.6,46.4v-4.5 - C37,41.2,41.3,37,42,31.6h4.5C45.8,39.5,39.5,45.7,31.6,46.4z"/> -<rect x="31.6" y="17.8" class="st0" width="9" height="9.4"/> -<rect x="33" y="31.6" class="st0" width="9" height="9.4"/> -<rect x="39" y="23.1" class="st0" width="3.1" height="5.5"/> -<rect x="31.6" y="38.3" class="st0" width="3.1" height="5.5"/> -<rect x="20.1" y="17.5" class="st0" width="8.6" height="7.3"/> -<rect x="17.8" y="31.6" class="st0" width="8.6" height="7.3"/> -<rect x="17.8" y="22.4" class="st0" width="5" height="6.2"/> -<rect x="22.1" y="38" class="st0" width="6.6" height="6.2"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60.3 60.2"><circle cx="30.1" cy="30.1" r="30.1" fill="#ecc01b"/><path d="M52.5 28.6h-3c-.7-9.5-8.3-17.1-17.9-17.8v-3h-3v3a19.31 19.31 0 0 0-17.8 17.8h-3v3h3a19.31 19.31 0 0 0 17.8 17.8v3h3v-3a19.31 19.31 0 0 0 17.8-17.8h3v-3zm-6 0H42c-.7-5.4-5-9.7-10.4-10.3v-4.5c7.9.7 14.2 6.9 14.9 14.8zm-6 3c-.7 4.6-4.3 8.2-8.8 8.8v-5.9h-3v5.8c-4.6-.7-8.2-4.3-8.8-8.8h5.8v-3h-5.9c.7-4.6 4.3-8.2 8.8-8.8v5.8h3v-5.8c4.6.7 8.2 4.3 8.8 8.8h-5.9v3h6zM28.6 13.8v4.5c-5.4.7-9.7 4.9-10.3 10.3h-4.5c.7-7.9 7-14.1 14.8-14.8zM13.8 31.6h4.5c.7 5.4 4.9 9.6 10.3 10.3v4.5c-7.8-.7-14.1-6.9-14.8-14.8zm17.8 14.8v-4.5C37 41.2 41.3 37 42 31.6h4.5c-.7 7.9-7 14.1-14.9 14.8z" fill="#fff"/><g fill="#ecc01b"><path d="M31.6 17.8h9v9.4h-9zM33 31.6h9V41h-9z"/><path d="M39 23.1h3.1v5.5H39zm-7.4 15.2h3.1v5.5h-3.1zM20.1 17.5h8.6v7.3h-8.6zm-2.3 14.1h8.6v7.3h-8.6z"/><path d="M17.8 22.4h5v6.2h-5zM22.1 38h6.6v6.2h-6.6z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/applications/open_source_tools.svg b/src/main/webapp/img/lib/ibm/applications/open_source_tools.svg index e52e59ecf82823530cc010cef11807c3c4757896..f8d2f88b1352aba58b53f2deae8e3e1f8c8478d5 100644 --- a/src/main/webapp/img/lib/ibm/applications/open_source_tools.svg +++ b/src/main/webapp/img/lib/ibm/applications/open_source_tools.svg @@ -1,14 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 65 64.9" style="enable-background:new 0 0 65 64.9;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#EABE1B;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS 3</title> -<ellipse class="st0" cx="32.5" cy="32.5" rx="32.5" ry="32.5"/> -<path class="st1" d="M30.9,9h3.7l2.2,0.4c9.3,1.9,15.9,7.2,19,16.2s1.1,17.5-5.3,24.7c-2.7,3.1-6.3,5.3-10.2,6.5l-5.8-15.5 - c5-2.7,6.8-5.6,6-9.4c-0.8-3.5-3.7-6.1-7.3-6.3c-3.5-0.2-6.8,2-7.8,5.3c-0.4,1.6-0.4,3.4,0,5c0.7,2.9,3,4.4,5.8,5.3l-5.8,15.5 - c-11-3.3-18.4-15-16.8-26.3C10.3,20.1,17,12.4,26.9,9.9C28.2,9.5,29.6,9.3,30.9,9z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 65 64.9"><circle cx="32.5" cy="32.5" r="32.5" fill="#eabe1b"/><path d="M30.9 9h3.7l2.2.4c9.3 1.9 15.9 7.2 19 16.2s1.1 17.5-5.3 24.7c-2.7 3.1-6.3 5.3-10.2 6.5l-5.8-15.5c5-2.7 6.8-5.6 6-9.4-.8-3.5-3.7-6.1-7.3-6.3-3.5-.2-6.8 2-7.8 5.3a10.57 10.57 0 0 0 0 5c.7 2.9 3 4.4 5.8 5.3l-5.8 15.5c-11-3.3-18.4-15-16.8-26.3 1.7-10.3 8.4-18 18.3-20.5 1.3-.4 2.7-.6 4-.9z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/applications/runtime_services.svg b/src/main/webapp/img/lib/ibm/applications/runtime_services.svg index f0b9a916f243c92d51422a797c6e87f3ef6142e2..5ed3687cda7527735a2ac9e9bb5516f1d22f3811 100644 --- a/src/main/webapp/img/lib/ibm/applications/runtime_services.svg +++ b/src/main/webapp/img/lib/ibm/applications/runtime_services.svg @@ -1,39 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 58.2 58.2" style="enable-background:new 0 0 58.2 58.2;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#EABE1D;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<ellipse transform="matrix(0.7071 -0.7071 0.7071 0.7071 -12.0495 29.09)" class="st0" cx="29.1" cy="29.1" rx="29.1" ry="29.1"/> -<path class="st1" d="M22.4,28.3c0-0.4,0-0.7-0.1-1.1l2.3-2L22.7,22L20,22.9c-0.7-0.6-1.4-1-2.2-1.3l-0.6-2.6h-3.7l-0.6,2.6 - c-0.8,0.3-1.6,0.7-2.2,1.3L7.9,22l-1.9,3.2l2.3,2c-0.1,0.7-0.1,1.5,0,2.2l-2.3,2l1.9,3.2l2.7-0.9c0.7,0.6,1.4,1,2.2,1.3l0.6,2.6h3.7 - l0.6-2.6c0.8-0.3,1.6-0.7,2.2-1.3l2.7,0.9l1.9-3.2l-2.3-2C22.4,29,22.4,28.6,22.4,28.3z M23.8,31.5l-1.4,2.3l-2.2-0.7L19.8,33 - l-0.3,0.2c-0.6,0.5-1.3,0.9-2,1.2l-0.3,0.1l-0.1,0.3L16.7,37h-2.8l-0.5-2.1l-0.1-0.3L13,34.4c-0.7-0.3-1.4-0.7-2-1.2L10.7,33 - l-0.3,0.1l-2.2,0.7l-1.4-2.3l1.9-1.6l0.3-0.2l-0.1-0.3c-0.1-0.7-0.1-1.3,0-2L8.9,27l-0.3-0.2L6.7,25l1.4-2.3l2.2,0.7l0.3,0.1 - l0.3-0.2c0.6-0.5,1.3-0.9,2-1.2l0.3-0.1l0.1-0.3l0.5-2.1h2.7l0.5,2.1l0.1,0.3l0.3,0.2c0.7,0.3,1.4,0.7,2,1.2l0.3,0.2l0.3-0.1 - l2.2-0.7l1.4,2.3l-1.8,1.6l-0.3,0.2l0,0.3c0.1,0.7,0.1,1.3,0,2l0,0.3l0.3,0.2L23.8,31.5z"/> -<path class="st1" d="M15.3,24.5c-2.1,0-3.7,1.7-3.7,3.7s1.7,3.7,3.7,3.7s3.7-1.7,3.7-3.7l0,0C19,26.2,17.3,24.5,15.3,24.5z - M15.3,29.5c-0.7,0-1.2-0.5-1.2-1.2s0.5-1.2,1.2-1.2c0.7,0,1.2,0.5,1.2,1.2C16.5,29,15.9,29.5,15.3,29.5L15.3,29.5z"/> -<path class="st1" d="M40.1,17.5c0-0.4,0-0.7-0.1-1.1l2.3-2l-1.9-3.2l-2.7,0.9c-0.7-0.6-1.4-1-2.2-1.3l-0.6-2.6H31l-0.6,2.6 - c-0.8,0.3-1.6,0.7-2.2,1.3l-2.7-0.9l-1.9,3.2l2.3,2c-0.1,0.7-0.1,1.5,0,2.2l-2.3,2l1.9,3.2l2.7-0.9c0.7,0.6,1.4,1,2.2,1.3l0.6,2.6 - h3.7l0.6-2.6c0.8-0.3,1.6-0.7,2.2-1.3l2.7,0.9l1.9-3.2l-2.3-2C40,18.2,40.1,17.9,40.1,17.5z M41.4,20.8L40,23.1l-2.2-0.7l-0.3-0.1 - l-0.3,0.2c-0.6,0.5-1.3,0.9-2,1.2l-0.3,0.1l-0.1,0.3l-0.5,2.1h-2.8L31,24l-0.1-0.3l-0.3-0.1c-0.7-0.3-1.4-0.7-2-1.2l-0.2-0.2 - L28,22.3L25.8,23l-1.4-2.3l1.9-1.6l0.2-0.2v-0.3c-0.1-0.7-0.1-1.3,0-2v-0.4L26.2,16l-1.9-1.7l1.4-2.3l2.2,0.7l0.3,0.1l0.3-0.2 - c0.6-0.5,1.3-0.9,2-1.2l0.3-0.1l0.1-0.3l0.5-2.1h2.7l0.5,2.1l0.1,0.3l0.3,0.1c0.7,0.3,1.4,0.7,2,1.2l0.3,0.2l0.3-0.1L40,12l1.4,2.3 - l-1.9,1.6l-0.3,0.2l0,0.3c0.1,0.7,0.1,1.3,0,2l0,0.3l0.3,0.2L41.4,20.8z"/> -<path class="st1" d="M32.9,13.8c-2.1,0-3.7,1.7-3.7,3.7s1.7,3.7,3.7,3.7c2.1,0,3.7-1.7,3.7-3.7l0,0C36.6,15.5,35,13.8,32.9,13.8z - M32.9,18.8c-0.7,0-1.2-0.6-1.2-1.2s0.6-1.2,1.2-1.2c0.7,0,1.2,0.6,1.2,1.2C34.1,18.2,33.6,18.8,32.9,18.8L32.9,18.8z"/> -<path class="st1" d="M42.7,42.7c0.2-0.4,0.4-0.9,0.5-1.3l3.7-1l-0.4-4.7l-3.6-0.5c-0.4-1-1-2-1.8-2.8l0.8-3.4l-4.3-2.1l-2.2,2.7 - c-1.1-0.1-2.2,0-3.3,0.3l-2.7-2.6l-4,2.6l1.5,3.6c-0.6,0.8-1,1.7-1.3,2.6l-3.7,1l0.4,4.7l3.6,0.5c0.4,1,1,2,1.8,2.8L27,48.3l4.3,2.1 - l2.2-2.7c1.1,0.1,2.2,0,3.3-0.3l2.7,2.6l4-2.6L42,43.9C42.3,43.5,42.5,43.1,42.7,42.7z M42.5,47.2L39.6,49l-2.2-2.1l-0.3-0.3 - l-0.4,0.1c-1,0.3-2,0.3-3,0.2h-0.4l-0.3,0.3l-1.8,2.2L28,47.9l0.6-2.7l0.1-0.4l-0.3-0.3c-0.7-0.7-1.3-1.6-1.7-2.6l-0.2-0.4l-0.5-0.1 - l-3-0.4l-0.3-3.4l3.1-0.8l0.4-0.1l0.1-0.4c0.2-0.8,0.6-1.6,1.2-2.4l0.3-0.4l-0.2-0.4l-1.2-3l2.9-1.9l2.2,2.1l0.3,0.3l0.4-0.1 - c1-0.3,2-0.3,3-0.2h0.4l0.3-0.3l1.8-2.2l3.2,1.6L40.3,32l-0.1,0.4l0.3,0.3c0.7,0.8,1.3,1.6,1.7,2.6l0.2,0.4l0.5,0.1l3,0.4l0.3,3.4 - L43,40.6l-0.4,0.1l-0.1,0.4c-0.2,0.8-0.6,1.6-1.2,2.4l-0.3,0.4l0.2,0.4L42.5,47.2z"/> -<path class="st1" d="M36.6,34.3c-2.4-1.2-5.2-0.2-6.4,2.2c-1.2,2.4-0.2,5.2,2.2,6.4c2.4,1.2,5.2,0.2,6.4-2.2 - C40,38.4,39,35.5,36.6,34.3C36.6,34.3,36.6,34.3,36.6,34.3z M33.8,40.1c-0.8-0.4-1.1-1.3-0.7-2.1c0.4-0.8,1.3-1.1,2.1-0.7 - c0.8,0.4,1.1,1.3,0.7,2.1C35.5,40.1,34.6,40.5,33.8,40.1C33.8,40.1,33.8,40.1,33.8,40.1z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 58.2 58.2"><circle transform="matrix(.7071 -.7071 .7071 .7071 -12.0495 29.09)" cx="29.1" cy="29.1" r="29.1" fill="#eabe1d"/><path d="M22.4 28.3c0-.4 0-.7-.1-1.1l2.3-2-1.9-3.2-2.7.9c-.7-.6-1.4-1-2.2-1.3l-.6-2.6h-3.7l-.6 2.6c-.8.3-1.6.7-2.2 1.3L7.9 22 6 25.2l2.3 2c-.1.7-.1 1.5 0 2.2l-2.3 2 1.9 3.2 2.7-.9c.7.6 1.4 1 2.2 1.3l.6 2.6h3.7l.6-2.6c.8-.3 1.6-.7 2.2-1.3l2.7.9 1.9-3.2-2.3-2c.2-.4.2-.8.2-1.1zm1.4 3.2l-1.4 2.3-2.2-.7-.4-.1-.3.2c-.6.5-1.3.9-2 1.2l-.3.1-.1.3-.4 2.2h-2.8l-.5-2.1-.1-.3-.3-.2c-.7-.3-1.4-.7-2-1.2l-.3-.2-.3.1-2.2.7-1.4-2.3 1.9-1.6.3-.2-.1-.3c-.1-.7-.1-1.3 0-2V27l-.3-.2L6.7 25l1.4-2.3 2.2.7.3.1.3-.2c.6-.5 1.3-.9 2-1.2l.3-.1.1-.3.5-2.1h2.7l.5 2.1.1.3.3.2c.7.3 1.4.7 2 1.2l.3.2.3-.1 2.2-.7 1.4 2.3-1.8 1.6-.3.2v.3c.1.7.1 1.3 0 2v.3l.3.2 2 1.8zm-8.5-7c-2.1 0-3.7 1.7-3.7 3.7a3.76 3.76 0 0 0 3.7 3.7 3.76 3.76 0 0 0 3.7-3.7 3.76 3.76 0 0 0-3.7-3.7zm0 5c-.7 0-1.2-.5-1.2-1.2s.5-1.2 1.2-1.2 1.2.5 1.2 1.2-.6 1.2-1.2 1.2zm24.8-12c0-.4 0-.7-.1-1.1l2.3-2-1.9-3.2-2.7.9c-.7-.6-1.4-1-2.2-1.3l-.6-2.6H31l-.6 2.6c-.8.3-1.6.7-2.2 1.3l-2.7-.9-1.9 3.2 2.3 2c-.1.7-.1 1.5 0 2.2l-2.3 2 1.9 3.2 2.7-.9c.7.6 1.4 1 2.2 1.3l.6 2.6h3.7l.6-2.6c.8-.3 1.6-.7 2.2-1.3l2.7.9 1.9-3.2-2.3-2c.2-.4.3-.7.3-1.1zm1.3 3.3L40 23.1l-2.2-.7-.3-.1-.3.2c-.6.5-1.3.9-2 1.2l-.3.1-.1.3-.5 2.1h-2.8L31 24l-.1-.3-.3-.1c-.7-.3-1.4-.7-2-1.2l-.2-.2-.4.1-2.2.7-1.4-2.3 1.9-1.6.2-.2v-.3c-.1-.7-.1-1.3 0-2v-.4l-.3-.2-1.9-1.7 1.4-2.3 2.2.7.3.1.3-.2c.6-.5 1.3-.9 2-1.2l.3-.1.1-.3.5-2.1h2.7l.5 2.1.1.3.3.1c.7.3 1.4.7 2 1.2l.3.2.3-.1L40 12l1.4 2.3-1.9 1.6-.3.2v.3c.1.7.1 1.3 0 2v.3l.3.2 1.9 1.9zm-8.5-7c-2.1 0-3.7 1.7-3.7 3.7a3.76 3.76 0 0 0 3.7 3.7c2.1 0 3.7-1.7 3.7-3.7s-1.6-3.7-3.7-3.7zm0 5c-.7 0-1.2-.6-1.2-1.2s.6-1.2 1.2-1.2c.7 0 1.2.6 1.2 1.2s-.5 1.2-1.2 1.2zm9.8 23.9c.2-.4.4-.9.5-1.3l3.7-1-.4-4.7-3.6-.5c-.4-1-1-2-1.8-2.8l.8-3.4-4.3-2.1-2.2 2.7c-1.1-.1-2.2 0-3.3.3l-2.7-2.6-4 2.6 1.5 3.6c-.6.8-1 1.7-1.3 2.6l-3.7 1 .4 4.7 3.6.5c.4 1 1 2 1.8 2.8l-.7 3.2 4.3 2.1 2.2-2.7a9.26 9.26 0 0 0 3.3-.3l2.7 2.6 4-2.6-1.5-3.5c.3-.4.5-.8.7-1.2zm-.2 4.5L39.6 49l-2.2-2.1-.3-.3-.4.1c-1 .3-2 .3-3 .2h-.4l-.3.3-1.8 2.2-3.2-1.5.6-2.7.1-.4-.3-.3a7.82 7.82 0 0 1-1.7-2.6l-.2-.4-.5-.1-3-.4-.3-3.4 3.1-.8.4-.1.1-.4c.2-.8.6-1.6 1.2-2.4l.3-.4-.2-.4-1.2-3 2.9-1.9 2.2 2.1.3.3.4-.1c1-.3 2-.3 3-.2h.4l.3-.3 1.8-2.2 3.2 1.6-.6 2.6-.1.4.3.3c.7.8 1.3 1.6 1.7 2.6l.2.4.5.1 3 .4.3 3.4-3.2 1-.4.1-.1.4c-.2.8-.6 1.6-1.2 2.4l-.3.4.2.4 1.3 2.9zm-5.9-12.9c-2.4-1.2-5.2-.2-6.4 2.2s-.2 5.2 2.2 6.4 5.2.2 6.4-2.2c1.2-2.3.2-5.2-2.2-6.4zm-2.8 5.8c-.8-.4-1.1-1.3-.7-2.1s1.3-1.1 2.1-.7 1.1 1.3.7 2.1c-.4.7-1.3 1.1-2.1.7z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/applications/saas_applications.svg b/src/main/webapp/img/lib/ibm/applications/saas_applications.svg index 427b21248f1ddb057117c46d0272fae04da973d0..2c5d84dfffb56a568d21b3c5544adde29661a230 100644 --- a/src/main/webapp/img/lib/ibm/applications/saas_applications.svg +++ b/src/main/webapp/img/lib/ibm/applications/saas_applications.svg @@ -1,16 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 60.4 60.2" style="enable-background:new 0 0 60.4 60.2;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#ECC01B;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<ellipse id="data_capitecbank_saasapp" class="st0" cx="30.2" cy="30.1" rx="30.2" ry="30.1"/> -<path class="st1" d="M42.5,21.3c-0.6-5.7-5.6-9.8-11.3-9.2c-4.6,0.5-8.4,4-9.1,8.6c-0.4-0.1-0.9-0.1-1.4-0.1c-5,0-9.1,4.1-9.1,9.1 - c0,5,4.1,9.1,9.1,9.1h6.7v-2.5h-6.7c-3.7,0-6.7-3-6.7-6.6s3-6.7,6.6-6.7c0,0,0,0,0,0c0.3,0,0.7,0,1,0.1l2.4,0.3l0.4-2.4 - c0.7-4.3,4.7-7.2,9.1-6.6c3.5,0.6,6.2,3.4,6.6,7l0.1,1.5l1.3,0.6c3.4,1.4,5,5.4,3.6,8.8c-1,2.5-3.5,4.1-6.1,4.1h-4.4V39H39 - c5,0,9.1-4,9.1-9c0,0,0-0.1,0-0.1C48.1,26.2,45.9,22.8,42.5,21.3z"/> -<polyline class="st1" points="27.3,31.3 33.9,31.3 33.9,43 37.2,43 30.8,54.4 24.6,42.9 27.7,42.9 27.7,31.3 "/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60.4 60.2"><ellipse cx="30.2" cy="30.1" rx="30.2" ry="30.1" fill="#ecc01b"/><path d="M42.5 21.3c-.6-5.7-5.6-9.8-11.3-9.2-4.6.5-8.4 4-9.1 8.6-.4-.1-.9-.1-1.4-.1-5 0-9.1 4.1-9.1 9.1s4.1 9.1 9.1 9.1h6.7v-2.5h-6.7c-3.7 0-6.7-3-6.7-6.6s3-6.7 6.6-6.7c.3 0 .7 0 1 .1l2.4.3.4-2.4c.7-4.3 4.7-7.2 9.1-6.6a7.96 7.96 0 0 1 6.6 7l.1 1.5 1.3.6c3.4 1.4 5 5.4 3.6 8.8-1 2.5-3.5 4.1-6.1 4.1h-4.4V39H39c5 0 9.1-4 9.1-9v-.1a9.43 9.43 0 0 0-5.6-8.6zm-15.2 10h6.6V43h3.3l-6.4 11.4-6.2-11.5h3.1V31.3" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/applications/service_broker.svg b/src/main/webapp/img/lib/ibm/applications/service_broker.svg index 7be631c083a94dcd6c67216fc754ffa696b67fc1..629ab4497d590f60f3da3e037f1544fa8dce37fb 100644 --- a/src/main/webapp/img/lib/ibm/applications/service_broker.svg +++ b/src/main/webapp/img/lib/ibm/applications/service_broker.svg @@ -1,36 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 64.5 64.2" style="enable-background:new 0 0 64.5 64.2;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#E9BC1D;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS 3</title> -<ellipse class="st0" cx="32.3" cy="32.1" rx="32.3" ry="32.1"/> -<path class="st1" d="M33.1,48.7l-0.8-0.1c-1-0.2-1.9-0.5-2.8-0.9L21,43.4c-0.4-0.2-0.8-0.4-1.2-0.6c-0.5-0.2-1.1-0.2-1.6,0.1 - c-0.7,0.4-1.4,0.9-2.1,1.3l-1.1,0.7c-0.4,0.4-1.1,0.3-1.4-0.1c-0.1-0.1-0.1-0.2-0.2-0.3c-0.7-1.4-1.3-2.8-1.9-4.2 - c-1.1-2.4-2.2-4.7-3.3-7.1c-0.3-0.5-0.1-1.2,0.4-1.4c0,0,0.1,0,0.1-0.1l1.2-0.5c1.8-0.8,3.6-1.6,5.5-2.4c0.9-0.4,1.9-0.8,2.9-1 - c1.2-0.3,2.5-0.4,3.8-0.3c0.7,0,1.3,0.1,2,0.3c1,0.2,1.9,0.7,2.6,1.4c0.7,0.7,1.4,1.4,2,2.1l0.6,0.7c0.4,0.5,1,0.9,1.7,1 - c1.4,0.4,2.9,0.6,4.4,0.8c0.7,0.1,1.5,0.1,2.2,0.1c0.8,0,1.6,0.2,2.3,0.5c1.2,0.6,1.7,2.1,1.1,3.3c-0.2,0.3-0.4,0.6-0.6,0.8 - c-0.5,0.4-1.2,0.6-1.8,0.7c-0.4,0-0.8,0.1-1.2,0.1c-1.7,0-3.3,0-5,0c-1.3,0-2.7-0.1-4-0.4c-1-0.2-2-0.4-2.9-0.6 - c-0.6-0.1-1.1,0.2-1.3,0.8s0.2,1.1,0.8,1.3c1,0.2,2.1,0.5,3.1,0.7c1.6,0.3,3.3,0.4,5,0.4c1.5,0,2.9,0,4.4,0c1.1,0,2.1-0.2,3.1-0.6 - c1.2-0.5,2.1-1.5,2.5-2.7c0-0.1,0.1-0.2,0.2-0.2c3.3-2.1,6.5-4.3,9.8-6.4c0.7-0.5,1.5-0.7,2.3-0.7c1,0,1.8,0.9,1.9,1.9 - c0,0.9-0.3,1.7-0.9,2.4c-0.6,0.8-1.4,1.4-2.3,1.9c-4.4,2.9-8.9,5.8-13.3,8.7c-1.3,0.8-2.6,1.6-3.9,2.4C36,48.3,35,48.6,34,48.7h-0.1 - L33.1,48.7z"/> -<path class="st1" d="M32.2,13.2h0.3c0.3,0,0.6,0.2,0.6,0.5c0,0,0,0,0,0c0.1,0.5,0.2,1.1,0.3,1.6c0,0,0,0.1,0.1,0.1l0.7,0.3 - c0,0,0.1,0,0.1,0l1.3-0.9c0.2-0.2,0.6-0.2,0.8,0.1l1.2,1.2c0.2,0.2,0.3,0.6,0.1,0.8l-1,1.3c0,0,0,0.1,0,0.1c0.1,0.2,0.2,0.5,0.3,0.7 - c0,0,0.1,0.1,0.1,0.1l1.6,0.3c0.3,0,0.5,0.3,0.5,0.6c0,0.6,0,1.2,0,1.7c0,0.3-0.2,0.6-0.6,0.6l-1.6,0.3c-0.1,0-0.1,0-0.1,0.1 - c-0.1,0.2-0.2,0.5-0.3,0.7c0,0,0,0.1,0,0.1l1,1.3c0.2,0.2,0.2,0.6-0.1,0.8c0,0,0,0,0,0l-1.2,1.2c-0.2,0.2-0.6,0.3-0.8,0.1l-1.3-1 - c0,0-0.1,0-0.2,0l-0.7,0.3c-0.1,0-0.1,0.1-0.1,0.1c-0.1,0.5-0.2,1.1-0.3,1.6c0,0.3-0.3,0.5-0.6,0.5h-1.7c-0.3,0-0.6-0.2-0.6-0.5 - l-0.3-1.6c0-0.1,0-0.1-0.1-0.1l-0.7-0.3c0,0-0.1,0-0.2,0l-1.3,0.9C27.4,27,27,27,26.8,26.8c0,0,0,0,0,0l-1.2-1.2 - c-0.3-0.2-0.3-0.6-0.1-0.8c0,0,0,0,0,0l0.9-1.3c0-0.1,0-0.1,0-0.2c-0.1-0.2-0.2-0.5-0.3-0.7c0,0-0.1-0.1-0.1-0.1l-1.6-0.3 - c-0.3,0-0.6-0.3-0.5-0.6c0-0.6,0-1.1,0-1.7c0-0.3,0.2-0.6,0.5-0.6l1.6-0.3c0,0,0.1,0,0.1-0.1l0.3-0.7c0,0,0-0.1,0-0.1l-0.9-1.3 - c-0.2-0.2-0.2-0.6,0.1-0.8l1.2-1.2c0.2-0.2,0.6-0.3,0.8-0.1l1.3,0.9c0,0,0.1,0,0.2,0l0.7-0.3c0,0,0.1,0,0.1-0.1 - c0.1-0.5,0.2-1,0.3-1.5c0-0.3,0.2-0.5,0.5-0.6L32.2,13.2z M33.9,20.9c0-1.3-1-2.4-2.3-2.4c-1.3,0-2.4,1-2.4,2.3c0,1.3,1,2.4,2.3,2.4 - c0,0,0,0,0,0C32.9,23.2,33.9,22.2,33.9,20.9C33.9,20.9,33.9,20.9,33.9,20.9z"/> -<path class="st1" d="M41.5,32.9l1.2-0.8c1.5-0.9,2.9-1.8,4.4-2.7c1-0.6,2.2-0.8,3.2-0.4c0.4,0.1,0.8,0.4,1.1,0.7l-8.3,5.5 - C42.9,34.3,42.3,33.5,41.5,32.9z"/> -<path class="st1" d="M34.4,31.4l1.2-0.7c1.2-0.7,2.4-1.5,3.6-2.2c1.2-0.8,2.6-1.1,4-1.1c0.7,0,1.4,0.2,2,0.6l0.1,0.1l-5.4,3.3 - l-0.6,0.4c0,0-0.1,0-0.1,0c-0.7-0.1-1.3-0.2-2-0.2c-0.8,0-1.7-0.1-2.5-0.2L34.4,31.4z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64.5 64.2"><ellipse cx="32.3" cy="32.1" rx="32.3" ry="32.1" fill="#e9bc1d"/><path d="M33.1 48.7l-.8-.1c-1-.2-1.9-.5-2.8-.9L21 43.4l-1.2-.6c-.5-.2-1.1-.2-1.6.1l-2.1 1.3-1.1.7a.97.97 0 0 1-1.4-.1c-.1-.1-.1-.2-.2-.3l-1.9-4.2-3.3-7.1c-.3-.5-.1-1.2.4-1.4 0 0 .1 0 .1-.1l1.2-.5 5.5-2.4c.9-.4 1.9-.8 2.9-1 1.2-.3 2.5-.4 3.8-.3.7 0 1.3.1 2 .3a5.1 5.1 0 0 1 2.6 1.4l2 2.1.6.7c.4.5 1 .9 1.7 1 1.4.4 2.9.6 4.4.8.7.1 1.5.1 2.2.1.8 0 1.6.2 2.3.5 1.2.6 1.7 2.1 1.1 3.3-.2.3-.4.6-.6.8-.5.4-1.2.6-1.8.7-.4 0-.8.1-1.2.1h-5c-1.3 0-2.7-.1-4-.4l-2.9-.6a1.11 1.11 0 0 0-1.3.8c-.2.6.2 1.1.8 1.3l3.1.7c1.6.3 3.3.4 5 .4h4.4a8.15 8.15 0 0 0 3.1-.6c1.2-.5 2.1-1.5 2.5-2.7 0-.1.1-.2.2-.2l9.8-6.4c.7-.5 1.5-.7 2.3-.7 1 0 1.8.9 1.9 1.9 0 .9-.3 1.7-.9 2.4-.6.8-1.4 1.4-2.3 1.9l-13.3 8.7-3.9 2.4c-.9.1-1.9.4-2.9.5h-.9zm-.9-35.5h.3c.3 0 .6.2.6.5l.3 1.6s0 .1.1.1l.7.3h.1l1.3-.9a.53.53 0 0 1 .8.1l1.2 1.2c.2.2.3.6.1.8l-1 1.3v.1c.1.2.2.5.3.7l.1.1 1.6.3c.3 0 .5.3.5.6v1.7c0 .3-.2.6-.6.6l-1.6.3c-.1 0-.1 0-.1.1-.1.2-.2.5-.3.7v.1l1 1.3a.53.53 0 0 1-.1.8l-1.2 1.2c-.2.2-.6.3-.8.1l-1.3-1H34l-.7.3c-.1 0-.1.1-.1.1l-.3 1.6c0 .3-.3.5-.6.5h-1.7c-.3 0-.6-.2-.6-.5l-.3-1.6c0-.1 0-.1-.1-.1l-.7-.3h-.2l-1.3.9c0 .2-.4.2-.6 0l-1.2-1.2a.53.53 0 0 1-.1-.8l.9-1.3v-.2c-.1-.2-.2-.5-.3-.7l-.1-.1-1.6-.3c-.3 0-.6-.3-.5-.6v-1.7c0-.3.2-.6.5-.6L26 19s.1 0 .1-.1l.3-.7v-.1l-.9-1.3a.53.53 0 0 1 .1-.8l1.2-1.2c.2-.2.6-.3.8-.1l1.3.9h.2l.7-.3s.1 0 .1-.1l.3-1.5c0-.3.2-.5.5-.6l1.5.1zm1.7 7.7c0-1.3-1-2.4-2.3-2.4s-2.4 1-2.4 2.3 1 2.4 2.3 2.4c1.4 0 2.4-1 2.4-2.3zm7.6 12l1.2-.8 4.4-2.7c1-.6 2.2-.8 3.2-.4.4.1.8.4 1.1.7l-8.3 5.5c-.2-.9-.8-1.7-1.6-2.3zm-7.1-1.5l1.2-.7 3.6-2.2c1.2-.8 2.6-1.1 4-1.1.7 0 1.4.2 2 .6l.1.1-5.4 3.3-.6.4h-.1c-.7-.1-1.3-.2-2-.2-.8 0-1.7-.1-2.5-.2h-.3z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/applications/speech_to_text.svg b/src/main/webapp/img/lib/ibm/applications/speech_to_text.svg index d202520218c66b48839f6b15f3576a8232c91b4b..5c578871eee8a9cb1bac9b6b58401d505bbf3767 100644 --- a/src/main/webapp/img/lib/ibm/applications/speech_to_text.svg +++ b/src/main/webapp/img/lib/ibm/applications/speech_to_text.svg @@ -1,23 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 60.3 60.2" style="enable-background:new 0 0 60.3 60.2;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#ECC01B;} - .st1{fill:#ECC01B;stroke:#FFFFFF;stroke-miterlimit:10;} - .st2{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<ellipse class="st0" cx="30.1" cy="30.1" rx="30.1" ry="30.1"/> -<path class="st1" d="M28.3,35.2c0,2.3-0.8,4.5-2.2,6.3c-1.1,1.5-4.9,6.7-8,9.4v-5.3h-0.3c-5.8,0-10.4-4.7-10.4-10.5 - c0-5.8,4.7-10.4,10.5-10.4C23.6,24.7,28.3,29.4,28.3,35.2z"/> -<circle class="st2" cx="22.7" cy="34.9" r="1.2"/> -<circle class="st2" cx="17.8" cy="34.9" r="1.2"/> -<circle class="st2" cx="13" cy="34.9" r="1.2"/> -<path class="st2" d="M20,15.1l-1.4-1.2l2.5-3.1l-3-2.6l1.2-1.5l4.6,3.8L20,15.1z"/> -<path class="st2" d="M8.4,25.1c-0.2-1.7-0.1-3.4,0.3-5c1-4.1,3.8-7.5,7.5-9.3c1.4-0.7,3-1.1,4.5-1.3l0.3,2.3 - c-6.5,0.7-11.1,6.6-10.4,13.1c0,0,0,0,0,0L8.4,25.1L8.4,25.1z"/> -<path class="st2" d="M51.4,38H26V6.9h18.9l6.6,6.5L51.4,38z"/> -<path class="st0" d="M30.1,15.6H48v3H30.1V15.6z M30.1,22.2H43v3H30.1V22.2z M30.1,28.5h16v3h-16V28.5z"/> -<path class="st0" d="M51.4,13.5h-6.6V6.9L51.4,13.5z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60.3 60.2"><g fill="#ecc01b"><circle cx="30.1" cy="30.1" r="30.1"/><path d="M28.3 35.2c0 2.3-.8 4.5-2.2 6.3-1.1 1.5-4.9 6.7-8 9.4v-5.3h-.3c-5.8 0-10.4-4.7-10.4-10.5s4.7-10.4 10.5-10.4c5.7 0 10.4 4.7 10.4 10.5z" stroke="#fff" stroke-miterlimit="10"/></g><g fill="#fff"><circle cx="22.7" cy="34.9" r="1.2"/><circle cx="17.8" cy="34.9" r="1.2"/><circle cx="13" cy="34.9" r="1.2"/><path d="M20 15.1l-1.4-1.2 2.5-3.1-3-2.6 1.2-1.5 4.6 3.8-3.9 4.6z"/><path d="M8.4 25.1c-.2-1.7-.1-3.4.3-5 1-4.1 3.8-7.5 7.5-9.3 1.4-.7 3-1.1 4.5-1.3l.3 2.3c-6.5.7-11.1 6.6-10.4 13.1l-2.2.2zm43 12.9H26V6.9h18.9l6.6 6.5-.1 24.6z"/></g><path d="M30.1 15.6H48v3H30.1v-3zm0 6.6H43v3H30.1v-3zm0 6.3h16v3h-16v-3zm21.3-15h-6.6V6.9l6.6 6.6z" fill="#ecc01b"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/applications/visual_recognition.svg b/src/main/webapp/img/lib/ibm/applications/visual_recognition.svg index 32050329df5dd35e1dfc8b9e0d63a4c891fce490..edb5326a4c00e46b0ea81521fa575cd23fb5cd80 100644 --- a/src/main/webapp/img/lib/ibm/applications/visual_recognition.svg +++ b/src/main/webapp/img/lib/ibm/applications/visual_recognition.svg @@ -1,16 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 60.3 60.2" style="enable-background:new 0 0 60.3 60.2;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#ECC01B;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<ellipse class="st0" cx="30.1" cy="30.1" rx="30.1" ry="30.1"/> -<path class="st1" d="M42.2,19.6c-2.7,0-5.4,1.1-7.3,3h-2.1c-0.8-1.4-2.7-1.9-4.1-1.1c-0.4,0.3-0.8,0.6-1.1,1.1h-2.1 - c-4.1-4.1-10.8-4-14.9,0.2s-4,10.8,0.2,14.9s10.8,4,14.9-0.2c1.9-2,3-4.6,3-7.4h3c0,5.8,4.7,10.5,10.5,10.5s10.5-4.7,10.5-10.5 - C52.7,24.3,48,19.6,42.2,19.6z M18.2,37.6c-4.1,0-7.5-3.4-7.5-7.5s3.4-7.5,7.5-7.5s7.5,3.4,7.5,7.5v0C25.7,34.2,22.3,37.6,18.2,37.6 - C18.1,37.6,18.1,37.6,18.2,37.6L18.2,37.6z M42.2,37.6c-4.1,0-7.5-3.4-7.5-7.5s3.4-7.5,7.5-7.5s7.5,3.4,7.5,7.5v0 - C49.7,34.2,46.3,37.6,42.2,37.6C42.2,37.6,42.2,37.6,42.2,37.6L42.2,37.6z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60.3 60.2"><circle cx="30.1" cy="30.1" r="30.1" fill="#ecc01b"/><path d="M42.2 19.6c-2.7 0-5.4 1.1-7.3 3h-2.1c-.8-1.4-2.7-1.9-4.1-1.1-.4.3-.8.6-1.1 1.1h-2.1c-4.1-4.1-10.8-4-14.9.2s-4 10.8.2 14.9 10.8 4 14.9-.2c1.9-2 3-4.6 3-7.4h3a10.5 10.5 0 1 0 21 0 10.5 10.5 0 0 0-10.5-10.5zm-24 18c-4.1 0-7.5-3.4-7.5-7.5s3.4-7.5 7.5-7.5 7.5 3.4 7.5 7.5-3.4 7.5-7.5 7.5c-.1 0-.1 0 0 0zm24 0c-4.1 0-7.5-3.4-7.5-7.5s3.4-7.5 7.5-7.5 7.5 3.4 7.5 7.5-3.4 7.5-7.5 7.5z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/applications/visualization.svg b/src/main/webapp/img/lib/ibm/applications/visualization.svg index 270a19653b5dad2b6db843ffdc581989a3d18e99..63472d4f60bd00eddf131887b42745fcc0c31ad5 100644 --- a/src/main/webapp/img/lib/ibm/applications/visualization.svg +++ b/src/main/webapp/img/lib/ibm/applications/visualization.svg @@ -1,15 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 60.2 60.2" style="enable-background:new 0 0 60.2 60.2;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#ECC01B;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle class="st0" cx="30.1" cy="30.1" r="30.1"/> -<path class="st1" d="M30.1,22.9c-4,0-7.2,3.2-7.2,7.2s3.2,7.2,7.2,7.2s7.2-3.2,7.2-7.2l0,0C37.3,26.2,34.1,22.9,30.1,22.9z - M30.1,32.5c-1.3,0-2.4-1.1-2.4-2.4c0-1.3,1.1-2.4,2.4-2.4c1.3,0,2.4,1.1,2.4,2.4C32.5,31.4,31.5,32.5,30.1,32.5L30.1,32.5z"/> -<path class="st1" d="M30.1,19.3c-8.1,0-14.2,4.3-18,10.8c3.8,6.4,9.9,10.8,18,10.8s14.2-4.3,18-10.8C44.3,23.7,38.2,19.3,30.1,19.3z - M30.1,39.7c-6.9,0-12.7-3.4-16.6-9.6c3.9-6.2,9.7-9.6,16.6-9.6s12.7,3.4,16.6,9.6C42.8,36.3,37,39.7,30.1,39.7z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60.2 60.2"><circle cx="30.1" cy="30.1" r="30.1" fill="#ecc01b"/><path d="M30.1 22.9a7.17 7.17 0 0 0-7.2 7.2 7.17 7.17 0 0 0 7.2 7.2 7.17 7.17 0 0 0 7.2-7.2c0-3.9-3.2-7.2-7.2-7.2zm0 9.6c-1.3 0-2.4-1.1-2.4-2.4s1.1-2.4 2.4-2.4 2.4 1.1 2.4 2.4-1 2.4-2.4 2.4zm0-13.2c-8.1 0-14.2 4.3-18 10.8 3.8 6.4 9.9 10.8 18 10.8s14.2-4.3 18-10.8c-3.8-6.4-9.9-10.8-18-10.8zm0 20.4c-6.9 0-12.7-3.4-16.6-9.6 3.9-6.2 9.7-9.6 16.6-9.6s12.7 3.4 16.6 9.6c-3.9 6.2-9.7 9.6-16.6 9.6z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/blockchain/blockchain.svg b/src/main/webapp/img/lib/ibm/blockchain/blockchain.svg index f9106542afd73001c3a39becb4562ca09be15ccf..c8d140796a5612f0d78567ed456cb3234481eb2c 100644 --- a/src/main/webapp/img/lib/ibm/blockchain/blockchain.svg +++ b/src/main/webapp/img/lib/ibm/blockchain/blockchain.svg @@ -1,22 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.7 59.7" style="enable-background:new 0 0 59.7 59.7;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#A8226E;} - .st1{fill:#FFFFFF;} - .st2{fill:#2D3F4A;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle class="st0" cx="29.8" cy="29.8" r="29.8"/> -<path class="st1" d="M22.8,41.9v-8.2l-7.5-4l-7.5,4v8.3l7.5,4L22.8,41.9z M11.3,39.8v-4.1l4-2.1l4,2.1v4l-4,2.1L11.3,39.8L11.3,39.8 - z"/> -<path class="st1" d="M51.9,26v-8.3l-7.5-4l-7.5,4V26l7.5,4L51.9,26z M40.4,19.9l4-2.1l4,2.1v4.1l-4,2.1l-4-2.1V19.9z"/> -<polygon class="st1" points="40.4,24 40.4,35.6 29.8,41.4 19.3,35.6 19.3,24 29.8,18.3 "/> -<polygon class="st2" points="29.4,29.2 21,25.4 21,34.6 29.4,39.2 "/> -<polygon class="st2" points="29.8,28.5 38,24.7 29.8,20.2 21.6,24.7 "/> -<polygon class="st2" points="38.6,34.6 38.6,25.4 30.3,29.2 30.3,39.1 38.6,34.6 "/> -<polygon class="st0" points="21,25.4 29.4,29.2 29.4,39.2 21,34.6 "/> -<polygon class="st0" points="30.3,29.2 38.6,25.4 38.6,34.6 30.3,39.2 "/> -<polygon class="st0" points="21.6,24.7 29.8,20.3 38,24.7 29.8,28.5 "/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.7 59.7"><circle cx="29.8" cy="29.8" r="29.8" fill="#a8226e"/><g fill="#fff"><path d="M22.8 41.9v-8.2l-7.5-4-7.5 4V42l7.5 4 7.5-4.1zm-11.5-2.1v-4.1l4-2.1 4 2.1v4l-4 2.1-4-2zM51.9 26v-8.3l-7.5-4-7.5 4V26l7.5 4 7.5-4zm-11.5-6.1l4-2.1 4 2.1V24l-4 2.1-4-2.1v-4.1z"/><path d="M40.4 24v11.6l-10.6 5.8-10.5-5.8V24l10.5-5.7z"/></g><path d="M29.4 29.2L21 25.4v9.2l8.4 4.6zm.4-.7l8.2-3.8-8.2-4.5-8.2 4.5zm8.8 6.1v-9.2l-8.3 3.8v9.9l8.3-4.5z" fill="#2d3f4a"/><path d="M21 25.4l8.4 3.8v10L21 34.6zm9.3 3.8l8.3-3.8v9.2l-8.3 4.6zm-8.7-4.5l8.2-4.4 8.2 4.4-8.2 3.8z" fill="#a8226e"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/blockchain/blockchain_developer.svg b/src/main/webapp/img/lib/ibm/blockchain/blockchain_developer.svg index 4e6c54fa129765c1c4a93bf2fd2ccb8fd6b17f92..c8c1c7e21f92cff1c6f000b7a63d37f6465952d2 100644 --- a/src/main/webapp/img/lib/ibm/blockchain/blockchain_developer.svg +++ b/src/main/webapp/img/lib/ibm/blockchain/blockchain_developer.svg @@ -1,15 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 64 65.5" style="enable-background:new 0 0 64 65.5;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#C5972C;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS 3</title> -<ellipse class="st0" cx="32" cy="32.8" rx="32" ry="32.8"/> -<path class="st1" d="M42,39.8l-19.9-0.2c-2.8,0-5,2.2-5,5v5.1l29.8,0.2v-5.1C47,42.1,44.7,39.8,42,39.8z"/> -<path class="st1" d="M32,34.5c-7.1,0.2-13.1-5.5-13.2-12.7S24.3,8.8,31.5,8.6c7.1-0.2,13.1,5.5,13.2,12.7c0,0.1,0,0.2,0,0.3 - C44.7,28.7,39.1,34.4,32,34.5z M32,10.3c-6.3-0.1-11.4,4.8-11.6,11.1s4.8,11.4,11.1,11.6s11.4-4.8,11.6-11.1c0-0.1,0-0.1,0-0.2 - C43.2,15.4,38.2,10.3,32,10.3C32,10.3,32,10.3,32,10.3L32,10.3z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 65.5"><ellipse cx="32" cy="32.8" rx="32" ry="32.8" fill="#c5972c"/><path d="M42 39.8l-19.9-.2a4.95 4.95 0 0 0-5 5v5.1l29.8.2v-5.1c.1-2.7-2.2-5-4.9-5zm-10-5.3c-7.1.2-13.1-5.5-13.2-12.7s5.5-13 12.7-13.2c7.1-.2 13.1 5.5 13.2 12.7v.3c0 7.1-5.6 12.8-12.7 12.9zm0-24.2c-6.3-.1-11.4 4.8-11.6 11.1S25.2 32.8 31.5 33s11.4-4.8 11.6-11.1v-.2c.1-6.3-4.9-11.4-11.1-11.4z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/blockchain/certificate_authority.svg b/src/main/webapp/img/lib/ibm/blockchain/certificate_authority.svg index 417c54bbe88c50066ab4dde80648f8ac0367ef71..4654d839f2742fe295d80d391aeb5d6435684e79 100644 --- a/src/main/webapp/img/lib/ibm/blockchain/certificate_authority.svg +++ b/src/main/webapp/img/lib/ibm/blockchain/certificate_authority.svg @@ -1,15 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 64.3 64" style="enable-background:new 0 0 64.3 64;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#E42433;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS 3</title> -<ellipse class="st0" cx="32.1" cy="32" rx="32.1" ry="32"/> -<ellipse class="st0" cx="32.1" cy="32" rx="26.4" ry="26.3"/> -<path class="st1" d="M41.3,24.4c0-5-4.1-9.1-9.1-9.1c-5,0-9.1,4.1-9.1,9.1v4.1c-1.9,2.2-3,5.1-3,8c0,6.7,5.4,12.2,12.2,12.2 - c6.7,0,12.2-5.4,12.2-12.2c0-2.9-1.1-5.8-3-8L41.3,24.4z M26,24.4c0.2-3.3,3.1-5.9,6.5-5.6c3,0.2,5.4,2.6,5.6,5.6V26 - c-3.8-2.2-8.4-2.2-12.2,0L26,24.4z M29.8,43.2l-5.7-5.6l2.2-2.1l3.5,3.5l8-8l2.2,2.1L29.8,43.2z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64.3 64"><g fill="#e42433"><ellipse cx="32.1" cy="32" rx="32.1" ry="32"/><ellipse cx="32.1" cy="32" rx="26.4" ry="26.3"/></g><path d="M41.3 24.4c0-5-4.1-9.1-9.1-9.1s-9.1 4.1-9.1 9.1v4.1c-1.9 2.2-3 5.1-3 8 0 6.7 5.4 12.2 12.2 12.2 6.7 0 12.2-5.4 12.2-12.2 0-2.9-1.1-5.8-3-8l-.2-4.1zm-15.3 0a6 6 0 0 1 6.5-5.6c3 .2 5.4 2.6 5.6 5.6V26a12.1 12.1 0 0 0-12.2 0l.1-1.6zm3.8 18.8l-5.7-5.6 2.2-2.1 3.5 3.5 8-8 2.2 2.1-10.2 10.1z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/blockchain/client_application.svg b/src/main/webapp/img/lib/ibm/blockchain/client_application.svg index 7fc88a84636284ea61f1ef6d8d38ca714cac0828..3f19b09c30638ca65122a44dcdb3c2a4fff07c04 100644 --- a/src/main/webapp/img/lib/ibm/blockchain/client_application.svg +++ b/src/main/webapp/img/lib/ibm/blockchain/client_application.svg @@ -1,91 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 71.7 66.4" style="enable-background:new 0 0 71.7 66.4;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#E8BD1F;} - .st1{fill:#FFFFFF;} - .st2{fill:#FCD5C3;} - .st3{fill:#F16922;} - .st4{fill:#F27236;} - .st5{fill:#F26F2F;} - .st6{fill:#FEFDFD;} - .st7{fill:#F26D2E;} - .st8{fill:#F37438;} - .st9{fill:#F16522;} - .st10{fill:#F16322;} - .st11{fill:#F26C2C;} - .st12{fill:#F16422;} - .st13{fill:#FBD0BD;} - .st14{fill:#FBD2BF;} - .st15{fill:#FBD1BE;} - .st16{fill:#F37338;} - .st17{fill:#FCD9CA;} - .st18{fill:#F26F30;} - .st19{fill:#F16222;} - .st20{fill:#F16923;} - .st21{fill:#F3753B;} - .st22{fill:#F27235;} -</style> -<title>INDIVIDUAL ICONS 3</title> -<circle class="st0" cx="32.5" cy="33.9" r="32.5"/> -<path class="st1" d="M40.6,22.2h-2.8c0,2-0.4,4-1.2,5.8l-8.8-4.2c0.9-3-0.8-6.1-3.8-6.9c-1.5-0.4-3.1-0.2-4.4,0.5l-2.1-2.1l-2,2 - l2.1,2.1c-1.6,2.7-0.7,6.1,2,7.6c1.3,0.8,2.9,1,4.4,0.5l12.1,25l1.3-0.6l-6.6-13.7c3.3-1.7,6.1-4.5,7.8-7.8l13.7,6.6l0.6-1.3 - l-13.7-6.6C40.1,27,40.6,24.6,40.6,22.2z M21.5,21.2c0.6-0.5,1.4-0.5,2,0c0.5,0.6,0.5,1.4,0,2c-0.5,0.5-1.4,0.5-1.9,0 - C20.9,22.6,20.9,21.7,21.5,21.2C21.5,21.2,21.5,21.2,21.5,21.2L21.5,21.2z M29.6,35.8L25.3,27c0.8-0.5,1.5-1.1,1.9-1.9l8.8,4.3 - C34.6,32,32.4,34.3,29.6,35.8z"/> -<path class="st2" d="M40.6,14.6c-0.2-0.2-0.6-0.1-0.7-0.5c0.2-0.1,0.4-0.2,0.6-0.1c1.1,0.2,2.2,0.2,3.3,0.2h21.4 - c1.8,0.1,3.6,0,5.4-0.2c0.3,0.1,0.3,0.2,0.1,0.4s-0.4,0.1-0.6,0.2H40.6z"/> -<path class="st3" d="M71.5,13.2c-0.1,0.4-0.5,0.6-0.8,0.9c-0.9,0.2-1.8,0.3-2.7,0.3H42.5c-0.9,0-1.8,0-2.6-0.3 - c-0.1-0.2-0.4-0.3-0.5-0.6S39.1,13,39,12.8l0,0c-0.1-0.4-0.1-0.8-0.1-1.3c0-2.9,0-5.8,0-8.6c0-0.4,0-0.8,0.2-1.2l0,0 - c0.3-0.5,0.7-1,1.2-1.3c0,0,0.1,0,0.1,0c0.4-0.1,0.9-0.1,1.3-0.1H69c0.5,0,0.9,0,1.3,0.1c0.3,0,0.5,0.2,0.7,0.3 - c0.2,0.3,0.6,0.6,0.6,1c0,0.1,0,0.3,0,0.4c0,3.3,0,6.6,0,9.9c0,0.3,0,0.5,0,0.8C71.6,12.9,71.6,13.1,71.5,13.2z"/> -<path class="st4" d="M70.3,0.3H52H40.3C40.6,0.1,41,0,41.4,0h27.7C69.6,0,70,0.1,70.3,0.3z"/> -<path class="st5" d="M39,1.6c0,3.7,0,7.4,0,11.1c-0.2-0.3-0.3-0.7-0.3-1.1c0-2.9,0-5.9,0-8.8C38.7,2.4,38.8,2,39,1.6z"/> -<path class="st5" d="M40.2,0.3L39,1.6C39.1,1,39.6,0.5,40.2,0.3z"/> -<path class="st5" d="M39,12.8c0.3,0.1,0.5,0.4,0.5,0.8C39.2,13.4,39,13.1,39,12.8z"/> -<path class="st6" d="M56.1,3.3c3.3,1,3.2,5.8,1.3,7.3c-0.3,0.2-0.5,0.4-0.8,0.5c-0.7,0.4-1.5,0.6-2.3,0.6c-0.8,0.1-1.7,0-2.5,0 - c-0.4,0.1-0.8-0.2-0.8-0.6c0-0.1,0-0.1,0-0.2c0-2.4,0-4.8,0-7.2c0-0.4,0.2-0.8,0.6-0.8C53.1,2.7,54.7,2.8,56.1,3.3z"/> -<path class="st6" d="M63.4,8.6c-0.4-0.4-0.5,0.1-0.8,0.3c-0.2,0.6-0.2,1.3-0.1,1.9c0,0.9-0.1,1-1.1,1s-1.1-0.1-1.1-1 - c0-2.3,0-4.6,0-6.8c0-0.4,0-0.9,0.4-0.9c0.5-0.2,1.1-0.1,1.5,0.1c0.2,0.1,0.2,0.4,0.2,0.6c0,0.6,0,1.1,0,1.7c0,0.2-0.1,0.4,0.2,0.5 - s0.3-0.1,0.4-0.2s0.2-0.3,0.4-0.4c0.5-0.4,0.9-0.8,1.3-1.3c0.5-0.8,1.4-1.2,2.3-1c0.2,0,0.5-0.1,0.6,0.1s-0.1,0.4-0.3,0.6 - c-0.8,0.9-1.6,1.7-2.4,2.6c-0.6,0.4-0.3,0.8,0,1.2c0.3,0.3,0.6,0.6,0.7,1c0.4,0.6,0.8,1.1,1.2,1.7c0.2,0.1,0.3,0.3,0.3,0.4 - c0,0.1,0.1,0.2,0.2,0.3c0.3,0.4,0.2,0.5-0.3,0.5c-0.9,0.2-1.9-0.3-2.3-1.1l-0.7-0.8C63.8,9.2,63.6,8.9,63.4,8.6z"/> -<path class="st6" d="M47.1,8.4C46.4,8.2,45.7,8,45,7.8c-1.2-0.2-2-1.3-1.8-2.5c0-1.2,0.9-2.1,2-2.3c1.3-0.3,2.6,0,3.8,0.7 - c0.5,0.3,0.3,0.6,0,0.9s-0.3,1-1,0.6c-0.6-0.4-1.2-0.6-1.9-0.5c-0.4,0-0.8,0.2-0.9,0.6c-0.1,0.5,0.2,0.8,0.6,0.9 - c0.6,0.2,1.3,0.4,1.9,0.6c1,0.2,1.7,1,1.9,2c0.1,0,0.1,0,0.1,0.1c0,0.1,0,0-0.1,0v0.7c0,0.5-0.2,1.1-0.6,1.5 - c-1.4,1.1-3.3,1.2-4.8,0.2l-0.4-0.3c-0.9-0.6-0.9-0.6-0.3-1.4c0.4-0.5,0.7-0.6,1.1-0.1c0.6,0.5,1.3,0.7,2,0.7c0.4,0,0.8-0.1,0.9-0.6 - C47.6,9,47.5,8.6,47.1,8.4z"/> -<path class="st7" d="M56.1,3.3C54.7,3,53.2,2.9,51.7,3c-0.5,0-0.6,0.2-0.6,0.6c0,2.4,0,4.9,0,7.3c0,0.3,0,0.6,0.5,0.6 - c1.7,0,3.4,0.2,5-0.5c-0.6,0.5-1.4,0.8-2.3,0.7c-0.9,0.1-1.9,0-2.8,0c-0.2,0-0.5-0.1-0.6-0.3c-0.1-0.4-0.1-0.8-0.1-1.2 - c0-2.2,0-4.3,0-6.5c0-0.2,0-0.5,0.1-0.7c0.2-0.3,0.6-0.5,1-0.5c1.3-0.1,2.6,0,3.9,0.3C56,3,56.1,3.1,56.1,3.3z"/> -<path class="st8" d="M63.4,5.3c-0.3,0.5-0.6,0.9-1.1,1.2c0-1-0.1-1.8,0-2.7S61.9,3,61.3,3s-0.9,0.1-0.9,0.8c0,2.3,0,4.7,0,7 - c0,0.6,0.2,0.8,0.8,0.7s1.1,0.2,1.1-0.7c0-0.4,0-0.9,0-1.3c0-0.3,0-0.6,0.3-0.7c0,0.6,0,1.3,0,1.9c0,0.4-0.1,0.7-0.3,1 - c-0.6,0.1-1.2,0.1-1.8,0l-0.3-0.1C60.1,11.4,60,11.2,60,11c0-2.4,0-4.9,0-7.3c0-0.2,0-0.5,0.2-0.6c0.6-0.2,1.3-0.2,1.9-0.1 - c0.4,0,0.5,0.4,0.5,0.8c0,0.7,0,1.4,0,2.1C63,5.7,63.1,5.3,63.4,5.3z"/> -<path class="st9" d="M60.2,3c0,2.9,0,5.7,0,8.6c-0.4,0-0.3-0.4-0.3-0.6c0-2.4,0-4.9,0-7.3C59.9,3.4,59.9,3.1,60.2,3z"/> -<path class="st10" d="M71.5,1.8c0.2,0.2,0.2,0.4,0.2,0.6c0,3.2,0,6.5,0,9.7c0,0.2,0.1,0.5-0.2,0.6C71.5,9.1,71.5,5.4,71.5,1.8z"/> -<path class="st11" d="M44.1,11.1c0.9,0.4,1.8,0.6,2.8,0.5c0.7-0.1,1.4-0.3,2-0.8c0-0.1,0.1-0.1,0.2,0c0,0,0,0,0,0 - C47.8,12.3,45,12.1,44.1,11.1z"/> -<path class="st12" d="M50.9,3.1c0,2.8,0,5.6,0,8.4c-0.1-0.1-0.2-0.2-0.2-0.4c0-2.6,0-5.3,0-7.9c0,0,0-0.1,0-0.1 - C50.7,3.2,50.8,3.1,50.9,3.1z"/> -<path class="st13" d="M47.1,8.4c0.3,0,0.6,0.3,0.6,0.6c0,0,0,0.1,0,0.1c0,0.4-0.3,0.8-0.7,0.9c-0.9,0.2-1.9,0-2.5-0.7 - c0.5,0.3,1.1,0.5,1.7,0.6c0.4,0,0.9,0,1.1-0.4S47.4,8.8,47.1,8.4z"/> -<path class="st14" d="M64.9,10.4c0.2,0,0.3,0.2,0.4,0.3c0.4,0.6,1.2,0.9,1.9,0.7c0.6-0.2-0.2-0.5,0-0.8c0.1,0.2,0.3,0.3,0.4,0.5 - c0.1,0.2,0.2,0.4-0.1,0.5C66.5,12,65.3,11.5,64.9,10.4C64.9,10.4,64.9,10.4,64.9,10.4z"/> -<path class="st15" d="M66.9,10.2c-0.5-0.4-1-1-1.2-1.7C66.2,9,66.6,9.6,66.9,10.2z"/> -<path class="st16" d="M49.1,10.8h-0.2c0.3-0.4,0.5-0.9,0.6-1.4C49.6,9.9,49.4,10.5,49.1,10.8z"/> -<path class="st17" d="M64.9,7.5c-0.7-0.6-0.7-0.7,0-1.2C64.5,6.7,64.8,7.1,64.9,7.5z"/> -<path class="st18" d="M60.5,11.8h1.8C61.7,12,61.1,12,60.5,11.8z"/> -<path class="st18" d="M63.4,8.6c0.3,0.3,0.6,0.6,0.8,1C63.7,9.4,63.4,9,63.4,8.6z"/> -<path class="st19" d="M49.5,8.8c0,0,0-0.1,0-0.1c0-0.2,0-0.4,0.2-0.6C49.9,8.3,49.8,8.6,49.5,8.8z"/> -<path class="st19" d="M59,6.4c-0.1-0.2-0.1-0.4,0-0.5C59.1,6,59,6.1,59,6.4z"/> -<path class="st20" d="M55.5,4.9c0.3,0.1,0.6,0.3,0.8,0.6c0.5,0.9,0.6,2,0.3,3c-0.2,0.3-0.3,0.8-0.8,0.9c-0.3,0.1-0.7,0.2-1.1,0.2 - c-0.6-0.1-1.1,0.1-1.7-0.1c-0.1-1.4,0-2.9-0.1-4.3c0-0.4,0.2-0.5,0.6-0.5C54.3,4.7,54.9,4.8,55.5,4.9z"/> -<path class="st21" d="M55.5,4.9h-1.9c-0.3,0-0.5,0-0.5,0.4c0,1.4,0,2.8,0,4.2c0,2.1,0.1,0.1,0.1,0.1c0.1,0,0.1,0,0.2,0 - c0.3,0.1,0.6,0.1,0.9,0c0.1,0,0.3,0,0.4,0.1c0.3-0.1,0.7-0.2,1.1-0.1c-0.8,0.4-1.7,0.6-2.5,0.4c-0.3,0-0.3-0.3-0.3-0.5 - c0-1.4,0-2.8,0-4.1c0-0.4,0.2-0.6,0.6-0.6C54.2,4.6,54.9,4.7,55.5,4.9z"/> -<path class="st22" d="M56.6,8.5c0.1-1,0-2-0.3-3C57,6.4,57.1,7.6,56.6,8.5z"/> -<path class="st10" d="M53.4,9.6h-0.1c0.5-0.2,1-0.2,1.5,0h-0.4C54,9.7,53.7,9.7,53.4,9.6z"/> -<path class="st20" d="M53.4,9.6h0.9C54.1,9.8,53.7,9.8,53.4,9.6z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 71.7 66.4"><circle cx="32.5" cy="33.9" r="32.5" fill="#e8bd1f"/><path d="M40.6 22.2h-2.8c0 2-.4 4-1.2 5.8l-8.8-4.2c.9-3-.8-6.1-3.8-6.9-1.5-.4-3.1-.2-4.4.5l-2.1-2.1-2 2 2.1 2.1c-1.6 2.7-.7 6.1 2 7.6a5.22 5.22 0 0 0 4.4.5l12.1 25 1.3-.6-6.6-13.7a18.35 18.35 0 0 0 7.8-7.8L52.3 37l.6-1.3-13.7-6.6c.9-2.1 1.4-4.5 1.4-6.9zm-19.1-1a1.52 1.52 0 0 1 2 0 1.52 1.52 0 0 1 0 2c-.5.5-1.4.5-1.9 0-.7-.6-.7-1.5-.1-2zm8.1 14.6L25.3 27c.8-.5 1.5-1.1 1.9-1.9l8.8 4.3c-1.4 2.6-3.6 4.9-6.4 6.4z" fill="#fff"/><path d="M40.6 14.6c-.2-.2-.6-.1-.7-.5.2-.1.4-.2.6-.1 1.1.2 2.2.2 3.3.2h21.4c1.8.1 3.6 0 5.4-.2.3.1.3.2.1.4s-.4.1-.6.2H40.6z" fill="#fcd5c3"/><path d="M71.5 13.2c-.1.4-.5.6-.8.9-.9.2-1.8.3-2.7.3H42.5c-.9 0-1.8 0-2.6-.3-.1-.2-.4-.3-.5-.6s-.3-.5-.4-.7c-.1-.4-.1-.8-.1-1.3V2.9c0-.4 0-.8.2-1.2.3-.5.7-1 1.2-1.3h.1c.4-.1.9-.1 1.3-.1H69c.5 0 .9 0 1.3.1.3 0 .5.2.7.3.2.3.6.6.6 1v11.1c0 .1 0 .3-.1.4z" fill="#f16922"/><path d="M70.3.3h-30c.3-.2.7-.3 1.1-.3h27.7c.5 0 .9.1 1.2.3z" fill="#f27236"/><g fill="#f26f2f"><path d="M39 1.6v11.1c-.2-.3-.3-.7-.3-1.1V2.8c0-.4.1-.8.3-1.2z"/><path d="M40.2.3L39 1.6c.1-.6.6-1.1 1.2-1.3zM39 12.8c.3.1.5.4.5.8-.3-.2-.5-.5-.5-.8z"/></g><path d="M56.1 3.3c3.3 1 3.2 5.8 1.3 7.3-.3.2-.5.4-.8.5-.7.4-1.5.6-2.3.6-.8.1-1.7 0-2.5 0-.4.1-.8-.2-.8-.6V3.7c0-.4.2-.8.6-.8 1.5-.2 3.1-.1 4.5.4zm7.3 5.3c-.4-.4-.5.1-.8.3-.2.6-.2 1.3-.1 1.9 0 .9-.1 1-1.1 1s-1.1-.1-1.1-1V4c0-.4 0-.9.4-.9.5-.2 1.1-.1 1.5.1.2.1.2.4.2.6v1.7c0 .2-.1.4.2.5s.3-.1.4-.2.2-.3.4-.4c.5-.4.9-.8 1.3-1.3.5-.8 1.4-1.2 2.3-1 .2 0 .5-.1.6.1s-.1.4-.3.6l-2.4 2.6c-.6.4-.3.8 0 1.2.3.3.6.6.7 1l1.2 1.7c.2.1.3.3.3.4s.1.2.2.3c.3.4.2.5-.3.5-.9.2-1.9-.3-2.3-1.1l-.7-.8c-.2-.4-.4-.7-.6-1zm-16.3-.2L45 7.8a2.16 2.16 0 0 1-1.8-2.5c0-1.2.9-2.1 2-2.3 1.3-.3 2.6 0 3.8.7.5.3.3.6 0 .9s-.3 1-1 .6c-.6-.4-1.2-.6-1.9-.5-.4 0-.8.2-.9.6-.1.5.2.8.6.9l1.9.6c1 .2 1.7 1 1.9 2 .1 0 .1 0 .1.1s0 0-.1 0v.7c0 .5-.2 1.1-.6 1.5-1.4 1.1-3.3 1.2-4.8.2l-.4-.3c-.9-.6-.9-.6-.3-1.4.4-.5.7-.6 1.1-.1.6.5 1.3.7 2 .7.4 0 .8-.1.9-.6.1-.6 0-1-.4-1.2z" fill="#fefdfd"/><path d="M56.1 3.3c-1.4-.3-2.9-.4-4.4-.3-.5 0-.6.2-.6.6v7.3c0 .3 0 .6.5.6 1.7 0 3.4.2 5-.5-.6.5-1.4.8-2.3.7-.9.1-1.9 0-2.8 0-.2 0-.5-.1-.6-.3-.1-.4-.1-.8-.1-1.2V3.7c0-.2 0-.5.1-.7.2-.3.6-.5 1-.5 1.3-.1 2.6 0 3.9.3.2.2.3.3.3.5z" fill="#f26d2e"/><path d="M63.4 5.3c-.3.5-.6.9-1.1 1.2 0-1-.1-1.8 0-2.7s-.4-.8-1-.8-.9.1-.9.8v7c0 .6.2.8.8.7s1.1.2 1.1-.7V9.5c0-.3 0-.6.3-.7v1.9a1.69 1.69 0 0 1-.3 1c-.6.1-1.2.1-1.8 0l-.3-.1c-.1-.2-.2-.4-.2-.6V3.7c0-.2 0-.5.2-.6.6-.2 1.3-.2 1.9-.1.4 0 .5.4.5.8v2.1c.4-.2.5-.6.8-.6z" fill="#f37438"/><path d="M60.2 3v8.6c-.4 0-.3-.4-.3-.6V3.7c0-.3 0-.6.3-.7z" fill="#f16522"/><path d="M71.5 1.8c.2.2.2.4.2.6v9.7c0 .2.1.5-.2.6V1.8z" fill="#f16322"/><path d="M44.1 11.1c.9.4 1.8.6 2.8.5.7-.1 1.4-.3 2-.8 0-.1.1-.1.2 0-1.3 1.5-4.1 1.3-5 .3z" fill="#f26c2c"/><path d="M50.9 3.1v8.4c-.1-.1-.2-.2-.2-.4v-8c0 .1.1 0 .2 0z" fill="#f16422"/><path d="M47.1 8.4a.65.65 0 0 1 .6.6v.1c0 .4-.3.8-.7.9-.9.2-1.9 0-2.5-.7.5.3 1.1.5 1.7.6.4 0 .9 0 1.1-.4s.1-.7-.2-1.1z" fill="#fbd0bd"/><path d="M64.9 10.4c.2 0 .3.2.4.3a1.76 1.76 0 0 0 1.9.7c.6-.2-.2-.5 0-.8.1.2.3.3.4.5s.2.4-.1.5c-1 .4-2.2-.1-2.6-1.2z" fill="#fbd2bf"/><path d="M66.9 10.2c-.5-.4-1-1-1.2-1.7a6.57 6.57 0 0 1 1.2 1.7z" fill="#fbd1be"/><path d="M49.1 10.8h-.2c.3-.4.5-.9.6-1.4a1.69 1.69 0 0 1-.4 1.4z" fill="#f37338"/><path d="M64.9 7.5c-.7-.6-.7-.7 0-1.2-.4.4-.1.8 0 1.2z" fill="#fcd9ca"/><path d="M60.5 11.8h1.8c-.6.2-1.2.2-1.8 0zm2.9-3.2c.3.3.6.6.8 1-.5-.2-.8-.6-.8-1z" fill="#f26f30"/><path d="M49.5 8.8v-.1c0-.2 0-.4.2-.6.2.2.1.5-.2.7zM59 6.4c-.1-.2-.1-.4 0-.5.1.1 0 .2 0 .5z" fill="#f16222"/><path d="M55.5 4.9c.3.1.6.3.8.6.5.9.6 2 .3 3-.2.3-.3.8-.8.9-.3.1-.7.2-1.1.2-.6-.1-1.1.1-1.7-.1l-.1-4.3c0-.4.2-.5.6-.5.8 0 1.4.1 2 .2z" fill="#f16923"/><path d="M55.5 4.9h-1.9c-.3 0-.5 0-.5.4v4.2c0 2.1.1.1.1.1h.2c.3.1.6.1.9 0 .1 0 .3 0 .4.1.3-.1.7-.2 1.1-.1-.8.4-1.7.6-2.5.4-.3 0-.3-.3-.3-.5V5.4c0-.4.2-.6.6-.6.6-.2 1.3-.1 1.9.1z" fill="#f3753b"/><path d="M56.6 8.5c.1-1 0-2-.3-3 .7.9.8 2.1.3 3z" fill="#f27235"/><path d="M53.4 9.6h-.1a1.95 1.95 0 0 1 1.5 0h-.4c-.4.1-.7.1-1 0z" fill="#f16322"/><path d="M53.4 9.6h.9c-.2.2-.6.2-.9 0z" fill="#f16923"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/blockchain/communication.svg b/src/main/webapp/img/lib/ibm/blockchain/communication.svg index 01a369ce9bd79b89c92e3951ac548af207cc107b..c30b6027ef05131b310f06feb13a47d297e2ffc6 100644 --- a/src/main/webapp/img/lib/ibm/blockchain/communication.svg +++ b/src/main/webapp/img/lib/ibm/blockchain/communication.svg @@ -1,78 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - viewBox="0 0 54.799999 54.799999" - enable-background="new 0 0 60.2 61" - xml:space="preserve" - sodipodi:docname="Communication.svg" - width="54.799999" - height="54.799999" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata2002"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs2000" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview1998" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="10.942767" - inkscape:cx="29.259616" - inkscape:cy="27.539827" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<g - id="g1995" - transform="translate(-2.8999996,-2.3999996)"> - <circle - cx="30.299999" - cy="29.799999" - r="27.4" - id="circle1985" - style="fill:#90c740" /> - <g - id="g1993"> - <path - d="m 31.1,17.7 c -1.1,-1.1 -2.2,-2.2 -3.3,-3.5 -0.3,-0.3 -0.3,-0.5 0,-0.8 1.1,-1.1 2.2,-2.2 3.5,-3.5 -0.2,1.4 0.3,1.7 1.7,2 6.9,1.6 11.8,7.2 12.4,14.5 0.6,6.9 -3.3,13.4 -9.9,16.1 -1.7,0.8 -3.5,1.3 -5.4,1.3 -6.1,0 -12.3,0 -18.4,0 0,-0.2 0,-0.2 0,-0.3 0.5,-0.8 1.7,-1.1 1.6,-2 -0.2,-0.8 -1.1,-1.3 -1.9,-2 1.4,0 2.7,0 3.9,0 4.6,0 9.3,0 13.9,0 5.8,0 10.5,-3.8 11.6,-9.6 C 42,24.6 39,19.3 34,16.9 c -0.5,-0.2 -0.9,-0.3 -1.3,-0.5 -1.1,-0.5 -1.6,-0.2 -1.3,1.1 -0.1,0 -0.3,0.2 -0.3,0.2 z" - id="path1987" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="m 27.2,11.7 c -0.3,0.9 -1.7,1.3 -1.4,2.2 0.3,0.8 1.1,1.3 1.9,2 -4.9,1.3 -8.3,3.9 -9.4,9 -1.1,4.9 0.5,9 4.6,12.4 -2,0 -3.9,0 -5.8,0 -0.5,0 -0.6,-0.5 -0.9,-0.8 -3.5,-5.2 -3.5,-12.4 0,-17.6 2.5,-4 6.1,-6.4 11,-7.2 z" - id="path1989" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="m 47.5,37.8 c 0.9,1.1 2,2 3,3.1 0.3,0.3 0.6,0.5 0.2,0.9 -1.1,1.1 -2.2,2.2 -3.5,3.5 0.2,-1.6 -0.6,-1.6 -1.7,-1.6 -2.5,0 -5,0 -7.7,0 0.5,-0.8 1.4,-0.9 2,-1.6 0.5,-0.5 1.1,-0.8 1.6,-1.3 1.1,-1.4 2.5,-1.9 4.3,-1.7 1.1,0.2 1.7,-0.2 1.4,-1.4 0.2,0.1 0.4,0.1 0.4,0.1 z" - id="path1991" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - </g> -</g> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="54.8" height="54.8"><circle cx="27.4" cy="27.4" r="27.4" fill="#90c740"/><path d="M28.2 15.3l-3.3-3.5c-.3-.3-.3-.5 0-.8l3.5-3.5c-.2 1.4.3 1.7 1.7 2C37 11.1 41.9 16.7 42.5 24c.6 6.9-3.3 13.4-9.9 16.1-1.7.8-3.5 1.3-5.4 1.3H8.8v-.3c.5-.8 1.7-1.1 1.6-2-.2-.8-1.1-1.3-1.9-2h17.8c5.8 0 10.5-3.8 11.6-9.6 1.2-5.3-1.8-10.6-6.8-13-.5-.2-.9-.3-1.3-.5-1.1-.5-1.6-.2-1.3 1.1-.1 0-.3.2-.3.2zm-3.9-6c-.3.9-1.7 1.3-1.4 2.2.3.8 1.1 1.3 1.9 2-4.9 1.3-8.3 3.9-9.4 9-1.1 4.9.5 9 4.6 12.4h-5.8c-.5 0-.6-.5-.9-.8-3.5-5.2-3.5-12.4 0-17.6 2.5-4 6.1-6.4 11-7.2zm20.3 26.1c.9 1.1 2 2 3 3.1.3.3.6.5.2.9l-3.5 3.5c.2-1.6-.6-1.6-1.7-1.6h-7.7c.5-.8 1.4-.9 2-1.6.5-.5 1.1-.8 1.6-1.3 1.1-1.4 2.5-1.9 4.3-1.7 1.1.2 1.7-.2 1.4-1.4.2.1.4.1.4.1z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/blockchain/consensus.svg b/src/main/webapp/img/lib/ibm/blockchain/consensus.svg index cbebf611b0c74a191de9f143f4a1836e9f41a2ec..f5dcca72e6fbb598c977fd845022d211244b5cc7 100644 --- a/src/main/webapp/img/lib/ibm/blockchain/consensus.svg +++ b/src/main/webapp/img/lib/ibm/blockchain/consensus.svg @@ -1,119 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - viewBox="0 0 54.599999 54.599999" - enable-background="new 0 0 60.8 62.3" - xml:space="preserve" - sodipodi:docname="Consensus.svg" - width="54.599998" - height="54.599998" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata2627"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs2625" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview2623" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="10.714427" - inkscape:cx="30.971756" - inkscape:cy="25.491974" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<g - id="g2620" - transform="translate(-3.1000004,-3.4000015)"> - <circle - cx="30.4" - cy="30.700001" - r="27.299999" - id="circle2588" - style="fill:#90c740" /> - <g - id="g2618"> - <polyline - stroke-miterlimit="10" - points="22.9,29.5 29,35 38.7,26.4 " - id="polyline2590" - style="fill:none;stroke:#ffffff;stroke-width:1.3053;stroke-miterlimit:10" /> - <g - id="g2608"> - <g - id="g2598"> - <g - id="g2596"> - <path - d="m 26.8,49.2 h -8.6 c -1.3,0 -2.2,0.9 -2.2,2.2 v 2.2 l 12.9,0.2 V 51.6 C 29,50.2 28,49.2 26.8,49.2 Z" - id="path2592" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="m 22.4,47 c -3,0 -5.5,-2.5 -5.5,-5.5 0,-3 2.5,-5.5 5.5,-5.5 3,0 5.5,2.5 5.5,5.5 0,3 -2.4,5.5 -5.5,5.5 z m 0,-10.3 c -2.7,0 -4.9,2.2 -4.9,4.9 0,2.7 2.2,4.9 4.9,4.9 2.7,0 4.9,-2.2 4.9,-4.9 -0.1,-2.7 -2.2,-4.9 -4.9,-4.9 z" - id="path2594" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - </g> - </g> - <g - id="g2606"> - <g - id="g2604"> - <path - d="m 43.4,49.2 h -8.6 c -1.3,0 -2.2,0.9 -2.2,2.2 v 2.2 l 12.9,0.2 v -2.2 c 0.1,-1.4 -0.8,-2.4 -2.1,-2.4 z" - id="path2600" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="m 39,47 c -3,0 -5.5,-2.5 -5.5,-5.5 0,-3 2.5,-5.5 5.5,-5.5 3,0 5.5,2.5 5.5,5.5 0,3 -2.4,5.5 -5.5,5.5 z m 0,-10.3 c -2.7,0 -4.9,2.2 -4.9,4.9 0,2.7 2.2,4.9 4.9,4.9 2.7,0 4.9,-2.2 4.9,-4.9 0,-2.7 -2.2,-4.9 -4.9,-4.9 z" - id="path2602" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - </g> - </g> - </g> - <g - id="g2616"> - <g - id="g2614"> - <path - d="m 35.1,19.9 h -8.6 c -1.3,0 -2.2,0.9 -2.2,2.2 v 2.2 l 12.9,0.2 v -2.2 c 0.1,-1.4 -0.9,-2.4 -2.1,-2.4 z" - id="path2610" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="m 30.7,17.7 c -3,0 -5.5,-2.5 -5.5,-5.5 0,-3 2.5,-5.5 5.5,-5.5 3,0 5.5,2.5 5.5,5.5 0,3 -2.4,5.5 -5.5,5.5 z m 0,-10.3 c -2.7,0 -4.9,2.2 -4.9,4.9 0,2.7 2.2,4.9 4.9,4.9 2.7,0 4.9,-2.2 4.9,-4.9 0,-2.7 -2.2,-4.9 -4.9,-4.9 z" - id="path2612" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - </g> - </g> - </g> -</g> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="54.6" height="54.6"><circle cx="27.3" cy="27.3" r="27.3" fill="#90c740"/><path stroke-miterlimit="10" d="M19.8 26.1l6.1 5.5 9.7-8.6" fill="none" stroke="#fff" stroke-width="1.305"/><path d="M23.7 45.8h-8.6c-1.3 0-2.2.9-2.2 2.2v2.2l12.9.2v-2.2c.1-1.4-.9-2.4-2.1-2.4zm-4.4-2.2c-3 0-5.5-2.5-5.5-5.5s2.5-5.5 5.5-5.5 5.5 2.5 5.5 5.5-2.4 5.5-5.5 5.5zm0-10.3a4.91 4.91 0 0 0-4.9 4.9 4.91 4.91 0 0 0 4.9 4.9 4.91 4.91 0 0 0 4.9-4.9c-.1-2.7-2.2-4.9-4.9-4.9zm21 12.5h-8.6c-1.3 0-2.2.9-2.2 2.2v2.2l12.9.2v-2.2c.1-1.4-.8-2.4-2.1-2.4zm-4.4-2.2c-3 0-5.5-2.5-5.5-5.5s2.5-5.5 5.5-5.5 5.5 2.5 5.5 5.5-2.4 5.5-5.5 5.5zm0-10.3a4.91 4.91 0 0 0-4.9 4.9 4.91 4.91 0 0 0 4.9 4.9 4.91 4.91 0 0 0 4.9-4.9 4.91 4.91 0 0 0-4.9-4.9zM32 16.5h-8.6c-1.3 0-2.2.9-2.2 2.2v2.2l12.9.2v-2.2c.1-1.4-.9-2.4-2.1-2.4zm-4.4-2.2c-3 0-5.5-2.5-5.5-5.5s2.5-5.5 5.5-5.5 5.5 2.5 5.5 5.5-2.4 5.5-5.5 5.5zm0-10.3a4.91 4.91 0 0 0-4.9 4.9 4.91 4.91 0 0 0 4.9 4.9 4.91 4.91 0 0 0 4.9-4.9A4.91 4.91 0 0 0 27.6 4z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/blockchain/e_cert.svg b/src/main/webapp/img/lib/ibm/blockchain/e_cert.svg index 23277a72567161525047f880a40ff5a6e7bf59bb..4cc127dbf5939d83ef4e014b2512826ced8def26 100644 --- a/src/main/webapp/img/lib/ibm/blockchain/e_cert.svg +++ b/src/main/webapp/img/lib/ibm/blockchain/e_cert.svg @@ -1,38 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 65.8 65.5" style="enable-background:new 0 0 65.8 65.5;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#E42433;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS 3</title> -<ellipse class="st0" cx="32.9" cy="32.8" rx="32.9" ry="32.8"/> -<path class="st1" d="M43.6,10.6c0.7,0.2,1.4,0.6,1.9,1.1c0.5,0.6,0.7,1.3,0.7,2c0,6,0,12,0,18c0,9,0,0.1,0,0c-0.3-0.5-0.7-1-1.1-1.5 - c-0.2-0.2-0.5-0.4-0.8-0.5c-0.3-0.1-0.4-0.3-0.4-0.5c0-2.5,0-5,0-7.6s0-5.1,0-7.6c0-0.9-0.3-1.1-1.1-1.1H20.1 - c-0.9,0-1.2,0.3-1.2,1.2c0,10,0,20,0,30.1c0,0.9,0.3,1.2,1.2,1.2h6.1c0.4,0,0.7,0.1,1,0.3c0.3,0.2,0.7,0.4,1,0.5 - c-0.5,0.5-1,1-1.4,1.4c-0.1,0.1-0.2,0.1-0.3,0.1c-2.3,0-4.5,0-6.8,0c-1.5,0-2.8-1.1-3-2.6c0-0.1,0-0.2-0.1-0.2V13.5 - c0.2-0.5,0.4-1.1,0.7-1.6c0.5-0.7,1.2-1.1,2-1.3L43.6,10.6z"/> -<path class="st1" d="M43,49.1c-0.5-0.1-1.2-0.2-1.8-0.3c-0.5-0.1-0.9,0.1-1.3,0.4c-0.4,0.4-0.8,0.8-1.2,1.3 - c-0.4,0.6-1.2,0.6-1.8,0.2c-0.1-0.1-0.2-0.1-0.2-0.2c-0.4-0.4-0.8-0.8-1.2-1.3c-0.3-0.4-0.8-0.5-1.3-0.4c-0.5,0.1-1.1,0.2-1.6,0.3 - c-0.7,0.2-1.4-0.2-1.7-0.9c0-0.1-0.1-0.3-0.1-0.4c-0.1-0.5-0.2-1.1-0.3-1.6c-0.1-0.4-0.3-0.8-0.7-1l-1.5-0.8c-0.7-0.2-1.1-1-0.8-1.6 - c0-0.1,0.1-0.2,0.2-0.4c0.2-0.5,0.5-1,0.7-1.4c0.3-0.5,0.3-1,0-1.5c-0.3-0.5-0.5-0.9-0.7-1.4c-0.4-0.6-0.3-1.4,0.3-1.8 - c0.1-0.1,0.2-0.1,0.4-0.2l1.4-0.7c0.5-0.2,0.8-0.6,0.8-1.1c0.1-0.6,0.2-1.2,0.3-1.8c0.1-0.7,0.7-1.2,1.4-1.1c0,0,0.1,0,0.1,0 - l1.7,0.3c0.5,0.1,1-0.1,1.4-0.4c0.4-0.4,0.8-0.8,1.2-1.2c0.4-0.5,1.2-0.6,1.8-0.2c0.1,0.1,0.1,0.1,0.2,0.2c0.4,0.4,0.8,0.8,1.2,1.2 - c0.3,0.4,0.9,0.6,1.4,0.4l1.7-0.3c0.7-0.2,1.4,0.3,1.5,1c0,0,0,0.1,0,0.1c0.1,0.6,0.2,1.2,0.3,1.8c0,0.5,0.4,0.9,0.8,1.1l1.6,0.8 - c0.6,0.3,1,1,0.7,1.6c0,0.1-0.1,0.1-0.1,0.2c-0.3,0.5-0.5,1-0.8,1.5c-0.3,0.4-0.3,1,0,1.4c0.3,0.5,0.5,1,0.8,1.5 - c0.4,0.6,0.2,1.4-0.4,1.7c-0.1,0-0.1,0.1-0.2,0.1c-0.5,0.3-1,0.5-1.6,0.8c-0.5,0.2-0.8,0.6-0.8,1.1c-0.1,0.6-0.2,1.2-0.3,1.8 - C44.4,48.7,43.8,49.2,43,49.1C43,49.1,43,49.1,43,49.1z M37.7,47.6c4.2,0,7.6-3.4,7.6-7.6c0-4.2-3.4-7.6-7.6-7.6s-7.6,3.4-7.6,7.6 - c0,0,0,0,0,0C30.1,44.2,33.5,47.6,37.7,47.6z"/> -<path class="st1" d="M31.4,18.1h8.1c0.2,0,0.5,0,0.7,0.1c0.5,0.2,0.7,0.7,0.7,1.2c-0.1,0.5-0.6,0.9-1.2,0.9H23.1 - c-0.6,0-1.1-0.5-1.1-1.1c0,0,0,0,0,0c0-0.6,0.5-1.1,1-1.1c0,0,0,0,0.1,0C23.1,18.1,31.4,18.1,31.4,18.1z"/> -<path class="st1" d="M31.4,25.8h-8.1c-0.6,0.1-1.2-0.2-1.3-0.8s0.2-1.2,0.8-1.3c0.1,0,0.2,0,0.3,0h16.4c0.2,0,0.4,0,0.6,0.1 - c0.6,0.2,0.9,0.8,0.7,1.3c-0.1,0.5-0.6,0.8-1.1,0.8L31.4,25.8z"/> -<path class="st1" d="M45.5,46.9l1.9,1.8c0.5,0.5,1.1,1,1.6,1.6c0.2,0.2,0.3,0.5,0.3,0.8c0,0.3-0.3,0.5-0.7,0.5 - c-0.6,0.1-1.2,0.2-1.8,0.3c-0.2,0-0.4,0.2-0.4,0.4c-0.1,0.6-0.2,1.2-0.3,1.8s-0.7,0.9-1.2,0.4c-1.5-1.5-3-3-4.5-4.5c0,0,0,0,0-0.1 - c0.2-0.4,0.6-0.5,1-0.4c0.5,0.1,1.1,0.2,1.6,0.3c1.1,0.2,2.2-0.6,2.4-1.7c0,0,0,0,0,0C45.4,47.8,45.4,47.4,45.5,46.9z"/> -<path class="st1" d="M29.9,47c0.1,0.4,0.1,0.8,0.2,1.1c0.2,1.1,1.2,1.9,2.4,1.7c0,0,0,0,0,0c0.5-0.1,1-0.2,1.6-0.3 - c0.4-0.1,0.8,0,1,0.4c-0.1,0.1-0.2,0.2-0.2,0.3l-4.2,4.2c-0.2,0.3-0.5,0.5-0.9,0.3s-0.5-0.4-0.5-0.8c-0.1-0.6-0.2-1.1-0.3-1.7 - c0-0.2-0.2-0.3-0.3-0.3c-0.6-0.1-1.3-0.2-1.9-0.3c-0.4,0-0.6-0.4-0.6-0.7c0-0.2,0.1-0.3,0.2-0.4C27.5,49.3,28.7,48.2,29.9,47 - C29.8,47,29.8,47,29.9,47z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 65.8 65.5"><ellipse cx="32.9" cy="32.8" rx="32.9" ry="32.8" fill="#e42433"/><g fill="#fff"><path d="M43.6 10.6c.7.2 1.4.6 1.9 1.1.5.6.7 1.3.7 2v18c0 9 0 .1 0 0-.3-.5-.7-1-1.1-1.5-.2-.2-.5-.4-.8-.5s-.4-.3-.4-.5V14c0-.9-.3-1.1-1.1-1.1H20.1c-.9 0-1.2.3-1.2 1.2v30.1c0 .9.3 1.2 1.2 1.2h6.1a1.69 1.69 0 0 1 1 .3 4.67 4.67 0 0 0 1 .5l-1.4 1.4c-.1.1-.2.1-.3.1h-6.8c-1.5 0-2.8-1.1-3-2.6 0-.1 0-.2-.1-.2V13.5c.2-.5.4-1.1.7-1.6.5-.7 1.2-1.1 2-1.3h24.3z"/><path d="M43 49.1l-1.8-.3c-.5-.1-.9.1-1.3.4l-1.2 1.3c-.4.6-1.2.6-1.8.2-.1-.1-.2-.1-.2-.2l-1.2-1.3c-.3-.4-.8-.5-1.3-.4l-1.6.3c-.7.2-1.4-.2-1.7-.9 0-.1-.1-.3-.1-.4l-.3-1.6c-.1-.4-.3-.8-.7-1l-1.5-.8c-.7-.2-1.1-1-.8-1.6 0-.1.1-.2.2-.4.2-.5.5-1 .7-1.4a1.36 1.36 0 0 0 0-1.5c-.3-.5-.5-.9-.7-1.4-.4-.6-.3-1.4.3-1.8.1-.1.2-.1.4-.2l1.4-.7c.5-.2.8-.6.8-1.1l.3-1.8c.1-.7.7-1.2 1.4-1.1h.1l1.7.3c.5.1 1-.1 1.4-.4l1.2-1.2c.4-.5 1.2-.6 1.8-.2l1.4 1.4c.3.4.9.6 1.4.4l1.7-.3c.7-.2 1.4.3 1.5 1v.1l.3 1.8c0 .5.4.9.8 1.1l1.6.8c.6.3 1 1 .7 1.6 0 .1-.1.1-.1.2-.3.5-.5 1-.8 1.5-.3.4-.3 1 0 1.4.3.5.5 1 .8 1.5.4.6.2 1.4-.4 1.7-.1 0-.1.1-.2.1-.5.3-1 .5-1.6.8-.5.2-.8.6-.8 1.1l-.3 1.8c-.1.8-.7 1.3-1.5 1.2zm-5.3-1.5a7.6 7.6 0 1 0 0-15.2 7.6 7.6 0 1 0 0 15.2zm-6.3-29.5h8.1c.2 0 .5 0 .7.1.5.2.7.7.7 1.2-.1.5-.6.9-1.2.9H23.1a1.11 1.11 0 0 1-1.1-1.1c0-.6.5-1.1 1-1.1h8.4zm0 7.7h-8.1c-.6.1-1.2-.2-1.3-.8s.2-1.2.8-1.3h16.7c.2 0 .4 0 .6.1.6.2.9.8.7 1.3-.1.5-.6.8-1.1.8l-8.3-.1zm14.1 21.1l1.9 1.8 1.6 1.6c.2.2.3.5.3.8s-.3.5-.7.5l-1.8.3c-.2 0-.4.2-.4.4l-.3 1.8c-.1.6-.7.9-1.2.4L40.4 50v-.1c.2-.4.6-.5 1-.4l1.6.3c1.1.2 2.2-.6 2.4-1.7 0-.3 0-.7.1-1.2zm-15.6.1c.1.4.1.8.2 1.1.2 1.1 1.2 1.9 2.4 1.7l1.6-.3c.4-.1.8 0 1 .4-.1.1-.2.2-.2.3l-4.2 4.2c-.2.3-.5.5-.9.3s-.5-.4-.5-.8l-.3-1.7c0-.2-.2-.3-.3-.3l-1.9-.3c-.4 0-.6-.4-.6-.7 0-.2.1-.3.2-.4l3.5-3.5c-.1 0-.1 0 0 0z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/blockchain/event.svg b/src/main/webapp/img/lib/ibm/blockchain/event.svg index c20dbb17d6322dd4aef1e6e5ade495919a57d096..89e55b106f272cbdb5b13f2bec2eb7e94f44fe25 100644 --- a/src/main/webapp/img/lib/ibm/blockchain/event.svg +++ b/src/main/webapp/img/lib/ibm/blockchain/event.svg @@ -1,160 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - viewBox="0 0 55.000001 55.000001" - enable-background="new 0 0 60.8 62.3" - xml:space="preserve" - sodipodi:docname="event.svg" - width="55" - height="55" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata10627"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs10625" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview10623" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="13.916533" - inkscape:cx="26.9" - inkscape:cy="27.450001" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<g - id="g10620" - transform="translate(-3.5,-3.6000004)"> - <circle - cx="31" - cy="31.1" - r="27.5" - id="circle10590" - style="fill:#90c740" /> - <g - id="g10618"> - <path - d="M 13.5,17.1 V 21.7 45 H 48.4 V 21.7 17.1 Z M 46.1,42.8 H 15.9 V 24.1 h 30.2 z" - id="path10592" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <g - id="g10616"> - - <rect - x="15.9" - y="24.1" - stroke-miterlimit="10" - width="30.200001" - height="18.700001" - id="rect10594" - style="fill:none;stroke:#ffffff;stroke-width:0.1375;stroke-miterlimit:10" /> - <line - stroke-miterlimit="10" - x1="15.9" - y1="39.599998" - x2="46.099998" - y2="39.599998" - id="line10596" - style="fill:none;stroke:#ffffff;stroke-width:0.1375;stroke-miterlimit:10" /> - <line - stroke-miterlimit="10" - x1="15.9" - y1="36.599998" - x2="46.099998" - y2="36.599998" - id="line10598" - style="fill:none;stroke:#ffffff;stroke-width:0.1375;stroke-miterlimit:10" /> - <line - stroke-miterlimit="10" - x1="15.9" - y1="33.400002" - x2="46.099998" - y2="33.400002" - id="line10600" - style="fill:none;stroke:#ffffff;stroke-width:0.1375;stroke-miterlimit:10" /> - <line - stroke-miterlimit="10" - x1="15.9" - y1="30.4" - x2="46.099998" - y2="30.4" - id="line10602" - style="fill:none;stroke:#ffffff;stroke-width:0.1375;stroke-miterlimit:10" /> - <line - stroke-miterlimit="10" - x1="15.9" - y1="27.299999" - x2="46.099998" - y2="27.299999" - id="line10604" - style="fill:none;stroke:#ffffff;stroke-width:0.1375;stroke-miterlimit:10" /> - <line - stroke-miterlimit="10" - x1="41" - y1="24.1" - x2="41" - y2="42.799999" - id="line10606" - style="fill:none;stroke:#ffffff;stroke-width:0.1375;stroke-miterlimit:10" /> - <line - stroke-miterlimit="10" - x1="35.900002" - y1="24.1" - x2="35.900002" - y2="42.799999" - id="line10608" - style="fill:none;stroke:#ffffff;stroke-width:0.1375;stroke-miterlimit:10" /> - <line - stroke-miterlimit="10" - x1="31" - y1="24.1" - x2="31" - y2="42.799999" - id="line10610" - style="fill:none;stroke:#ffffff;stroke-width:0.1375;stroke-miterlimit:10" /> - <line - stroke-miterlimit="10" - x1="26" - y1="24.1" - x2="26" - y2="42.799999" - id="line10612" - style="fill:none;stroke:#ffffff;stroke-width:0.1375;stroke-miterlimit:10" /> - <line - stroke-miterlimit="10" - x1="20.9" - y1="24.1" - x2="20.9" - y2="42.799999" - id="line10614" - style="fill:none;stroke:#ffffff;stroke-width:0.1375;stroke-miterlimit:10" /> - </g> - </g> -</g> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="55" height="55"><circle cx="27.5" cy="27.5" r="27.5" fill="#90c740"/><path d="M10 13.5v27.9h34.9V13.5zm32.6 25.7H12.4V20.5h30.2z" fill="#fff"/><g stroke-miterlimit="10" fill="none" stroke="#fff" stroke-width=".138"><path d="M12.4 20.5h30.2v18.7H12.4z"/><path d="M12.4 36h30.2m-30.2-3h30.2m-30.2-3.2h30.2m-30.2-3h30.2m-30.2-3.1h30.2"/><path d="M37.5 20.5v18.7m-5.1-18.7v18.7m-4.9-18.7v18.7m-5-18.7v18.7m-5.1-18.7v18.7"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/blockchain/event_listener.svg b/src/main/webapp/img/lib/ibm/blockchain/event_listener.svg index c78174b241ed0c2db599b58adaf0170e9876fdea..3612a12722f756f1afd4add319314f6e1a954642 100644 --- a/src/main/webapp/img/lib/ibm/blockchain/event_listener.svg +++ b/src/main/webapp/img/lib/ibm/blockchain/event_listener.svg @@ -1,81 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - viewBox="0 0 55.000001 55.000001" - enable-background="new 0 0 60.8 62.3" - xml:space="preserve" - sodipodi:docname="Event Listner.svg" - width="55" - height="55" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata3373"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs3371" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview3369" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="3.788122" - inkscape:cx="28.5" - inkscape:cy="27.050001" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<g - id="g3366" - transform="translate(-1.8999996,-3.2000008)"> - <g - id="blockchain-event-listener_2_"> - <circle - cx="29.4" - cy="30.700001" - id="ellipse3355" - r="27.5" - style="fill:#90c740" /> - </g> - <g - id="g3364"> - <path - d="m 47.8,41.7 c -0.1,0.5 -0.2,0.9 -0.3,1.4 -0.5,1.9 -1.5,3.4 -3.1,4.5 -0.4,0.3 -0.8,0.5 -1.2,0.8 0,-4.9 0,-9.7 0,-14.6 0.7,0.3 1.3,0.8 1.9,1.3 1.1,-4.5 -0.1,-10.9 -5,-15.3 -5.3,-4.7 -12.5,-5.2 -18,-2.5 -6.9,3.4 -10.2,10.9 -8.7,17.8 0.6,-0.4 1.3,-0.9 2,-1.3 0,4.9 0,9.8 0,14.7 -0.4,-0.2 -0.7,-0.4 -1,-0.6 -1.5,-1.1 -2.6,-2.5 -3.2,-4.2 -0.6,-1.7 -0.6,-3.4 0.1,-5.1 0.2,-0.4 0.4,-0.8 0.5,-1.3 0,-0.1 0.1,-0.3 0,-0.4 -0.2,-0.9 -0.5,-1.7 -0.7,-2.6 -0.4,-2.1 -0.5,-4.1 -0.2,-6.2 0.4,-3 1.5,-5.7 3.3,-8.1 1.8,-2.5 4,-4.4 6.7,-5.8 2.2,-1.1 4.6,-1.8 7,-1.9 0.1,0 0.2,0 0.3,-0.1 0.7,0 1.3,0 2,0 0.1,0 0.2,0 0.3,0.1 1.4,0.1 2.7,0.3 4,0.7 2.6,0.8 4.9,2.1 7,3.9 1.5,1.3 2.8,2.9 3.8,4.7 1.1,2 1.9,4.2 2.2,6.4 0.1,0.6 0.1,1.1 0.2,1.7 0,0.7 0,1.3 0,2 0,0.1 0,0.1 0,0.2 -0.1,1.7 -0.5,3.4 -1,5 0,0.1 0,0.2 0,0.3 0.5,0.9 0.8,1.8 0.9,2.8 0,0.2 0.1,0.3 0.1,0.5 0.1,0.3 0.1,0.8 0.1,1.2 z" - id="path3358" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="m 20,33 c 0,5.4 0,10.8 0,16.2 -0.7,0 -1.4,-0.1 -2.1,-0.1 -0.1,0 -0.1,-0.1 -0.1,-0.2 0,-0.1 0,-0.1 0,-0.2 0,-5.1 0,-10.2 0,-15.3 0,-0.3 0.1,-0.4 0.4,-0.4 0.6,0 1.2,0 1.8,0 z" - id="path3360" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="m 38.6,49.1 c 0,-5.4 0,-10.7 0,-16.2 0.7,0 1.4,0.1 2.1,0.1 0.1,0 0.1,0.1 0.2,0.2 0,0.1 0,0.1 0,0.2 0,5.1 0,10.2 0,15.3 0,0.3 -0.1,0.4 -0.4,0.4 -0.6,0 -1.2,0 -1.9,0 z" - id="path3362" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - </g> -</g> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="55" height="55"><circle cx="27.5" cy="27.5" r="27.5" fill="#90c740"/><path d="M45.9 38.5l-.3 1.4c-.5 1.9-1.5 3.4-3.1 4.5-.4.3-.8.5-1.2.8V30.6c.7.3 1.3.8 1.9 1.3 1.1-4.5-.1-10.9-5-15.3a16.33 16.33 0 0 0-18-2.5C13.3 17.5 10 25 11.5 31.9c.6-.4 1.3-.9 2-1.3v14.7c-.4-.2-.7-.4-1-.6-1.5-1.1-2.6-2.5-3.2-4.2s-.6-3.4.1-5.1c.2-.4.4-.8.5-1.3 0-.1.1-.3 0-.4-.2-.9-.5-1.7-.7-2.6-.4-2.1-.5-4.1-.2-6.2.4-3 1.5-5.7 3.3-8.1A18.69 18.69 0 0 1 19 11c2.2-1.1 4.6-1.8 7-1.9.1 0 .2 0 .3-.1h2c.1 0 .2 0 .3.1 1.4.1 2.7.3 4 .7 2.6.8 4.9 2.1 7 3.9 1.5 1.3 2.8 2.9 3.8 4.7 1.1 2 1.9 4.2 2.2 6.4.1.6.1 1.1.2 1.7v2.2c-.1 1.7-.5 3.4-1 5v.3c.5.9.8 1.8.9 2.8 0 .2.1.3.1.5.1.3.1.8.1 1.2zm-27.8-8.7V46c-.7 0-1.4-.1-2.1-.1-.1 0-.1-.1-.1-.2V30.2c0-.3.1-.4.4-.4h1.8zm18.6 16.1V29.7l2.1.1c.1 0 .1.1.2.2v15.5c0 .3-.1.4-.4.4h-1.9z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/blockchain/existing_enterprise_systems.svg b/src/main/webapp/img/lib/ibm/blockchain/existing_enterprise_systems.svg index 4353ade805af9764fad85a7611a6275ce22e1b47..27fe2f2fdecb832b7b5f3c2fed2da2639ffb6c98 100644 --- a/src/main/webapp/img/lib/ibm/blockchain/existing_enterprise_systems.svg +++ b/src/main/webapp/img/lib/ibm/blockchain/existing_enterprise_systems.svg @@ -1,34 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 65 65" style="enable-background:new 0 0 65 65;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#8CC340;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS 3</title> -<ellipse transform="matrix(0.7071 -0.7071 0.7071 0.7071 -13.4619 32.5)" class="st0" cx="32.5" cy="32.5" rx="32.5" ry="32.5"/> -<path class="st1" d="M32.2,7.5h0.6c0.2,0.1,0.5,0.2,0.7,0.3l1.8,1l6.7,3.8c0.6,0.3,0.9,0.9,0.9,1.5c0,0.6,0,1.2,0,1.8 - c0,0.1,0.1,0.3,0.2,0.3c2.8,1.6,5.6,3.2,8.4,4.8c0.6,0.3,1,0.9,1,1.6c0,3.3,0,6.6,0,9.8c0,0.1,0.1,0.2,0.2,0.3 - c0.5,0.3,0.9,0.5,1.4,0.8c0.6,0.3,1,0.9,0.9,1.6c0,3.2,0,6.5,0,9.7c0,0.7-0.3,1.3-0.9,1.6l-8.6,4.9c-0.5,0.3-1.1,0.3-1.6,0 - c-0.5-0.3-1.1-0.6-1.6-0.9c-0.1-0.1-0.3-0.1-0.4,0l-5.3,3l-3.4,2h-1.2l-0.3-0.2l-8.3-4.8c-0.1-0.1-0.2-0.1-0.3,0l-1.6,0.9 - c-0.5,0.3-1.1,0.3-1.6,0l-8.7-5c-0.5-0.3-0.8-0.8-0.8-1.4c0-3.3,0-6.7,0-10c0-0.5,0.3-1,0.8-1.3c0.5-0.3,1-0.6,1.5-0.8 - c0.1-0.1,0.2-0.2,0.2-0.4c0-3.3,0-6.6,0-9.8c0-0.1,0-0.3,0-0.4c0.1-0.5,0.4-1,0.9-1.2l8.5-4.8c0.2-0.1,0.2-0.2,0.2-0.4 - c0-0.6,0-1.1,0-1.7c0-0.7,0.4-1.4,1-1.6c2-1.1,4-2.3,6-3.4C30.1,8.6,31.2,8.1,32.2,7.5z M15.7,31l0.2-0.1l3.7-2.1 - c0.5-0.3,1.2-0.3,1.7,0l8.6,4.9c0.6,0.3,0.9,0.9,0.9,1.5c0,3.3,0,6.5,0,9.8c0,0.6-0.3,1.2-0.9,1.5l-3.5,2l-0.2,0.1l0.1,0.1l6.1,3.5 - c0.1,0.1,0.2,0.1,0.3,0l6-3.4l0.2-0.1l-0.2-0.1c-1.2-0.7-2.3-1.3-3.5-2c-0.6-0.3-0.9-0.9-0.9-1.6c0-3.2,0-6.5,0-9.7 - c0-0.7,0.3-1.3,0.9-1.6c2.8-1.6,5.6-3.2,8.5-4.8c0.6-0.4,1.3-0.4,1.9,0c1.2,0.7,2.4,1.4,3.6,2.1l0.2,0.1v-0.2c0-2.4,0-4.7,0-7.1 - c0-0.1-0.1-0.3-0.2-0.3L43,19.9l-0.2-0.1c0,0.1,0,0.2,0,0.2c0,1.3,0,2.6,0,3.9c0,0.6-0.3,1.2-0.9,1.5l-8.5,4.9 - c-0.5,0.3-1.2,0.3-1.8,0l-8.5-4.9c-0.6-0.3-0.9-0.9-0.9-1.5c0-1.3,0-2.6,0-4v-0.2h-0.1l-6.2,3.5c-0.1,0.1-0.2,0.2-0.1,0.3 - c0,2.4,0,4.8,0,7.2V31z M25.3,16.7v0.2c0,2,0,4,0,6.1c0,0.1,0.1,0.3,0.2,0.3l5.3,3l0.2,0.1c0-0.1,0-0.1,0-0.1c0-2.1,0-4.1,0-6.2 - c0-0.1-0.1-0.2-0.2-0.3l-4.4-2.5L25.3,16.7z M37.3,37.8V38c0,2,0,4,0,6.1c0,0.1,0.1,0.3,0.2,0.3l5.3,3l0.2,0.1c0-0.1,0-0.1,0-0.1 - c0-2.1,0-4.1,0-6.2c0-0.1-0.1-0.2-0.2-0.3l-4.4-2.5L37.3,37.8z M13.3,37.8C13.3,37.8,13.3,37.9,13.3,37.8c0,2.2,0,4.3,0,6.4 - c0,0.1,0.1,0.2,0.1,0.2l5.4,3.1l0.2,0.1v-0.2c0-2,0-4,0-6c0-0.1-0.1-0.3-0.2-0.3l-5.3-3L13.3,37.8z M34.1,26.4l0.2-0.1l5.3-3 - c0.1-0.1,0.2-0.2,0.2-0.3c0-2,0-4,0-6.1c0-0.1,0-0.1,0-0.2l-0.2,0.1l-5.3,3c-0.1,0.1-0.2,0.2-0.2,0.3c0,2,0,4,0,6.1L34.1,26.4z - M27.7,37.8l-0.2,0.1l-5.3,3c-0.1,0.1-0.2,0.2-0.2,0.3c0,2,0,4,0,6.1c0,0.1,0,0.1,0,0.2l0.2-0.1l5.4-3.1c0.1-0.1,0.2-0.2,0.2-0.3 - c0-2,0-4,0-6.1V37.8z M46.1,47.5l0.2-0.1l5.3-3c0.1-0.1,0.2-0.2,0.2-0.3c0-2,0-4,0-6.1c0-0.1,0-0.1,0-0.2l-0.2,0.1l-5.3,3 - c-0.1,0.1-0.2,0.2-0.2,0.3c0,2,0,4,0,6.1L46.1,47.5z M14.9,35.1L14.9,35.1l5.5,3.2c0.1,0,0.2,0,0.3,0l5.3-3l0.2-0.1L26.1,35 - l-5.4-3.1c-0.1-0.1-0.2-0.1-0.3,0l-4.7,2.7L14.9,35.1z M26.9,14L26.9,14l5.5,3.2c0.1,0.1,0.2,0.1,0.3,0l5.3-3l0.2-0.1L38,14 - l-5.4-3.1c-0.1-0.1-0.2-0.1-0.3,0L28.7,13L26.9,14z M50.2,35.1L50.2,35.1l-5.5-3.2c-0.1-0.1-0.2-0.1-0.3,0L39,35l-0.1,0.1l0.1,0.1 - l5.4,3.1c0.1,0.1,0.2,0.1,0.3,0l3.8-2.2L50.2,35.1z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 65 65"><circle transform="matrix(.7071 -.7071 .7071 .7071 -13.4619 32.5)" cx="32.5" cy="32.5" r="32.5" fill="#8cc340"/><path d="M32.2 7.5h.6c.2.1.5.2.7.3l1.8 1 6.7 3.8c.6.3.9.9.9 1.5v1.8c0 .1.1.3.2.3l8.4 4.8a1.78 1.78 0 0 1 1 1.6v9.8c0 .1.1.2.2.3l1.4.8c.6.3 1 .9.9 1.6v9.7c0 .7-.3 1.3-.9 1.6l-8.6 4.9c-.5.3-1.1.3-1.6 0l-1.6-.9c-.1-.1-.3-.1-.4 0l-5.3 3-3.4 2H32l-.3-.2-8.3-4.8c-.1-.1-.2-.1-.3 0l-1.6.9c-.5.3-1.1.3-1.6 0l-8.7-5c-.5-.3-.8-.8-.8-1.4v-10c0-.5.3-1 .8-1.3s1-.6 1.5-.8c.1-.1.2-.2.2-.4V22.2c.1-.5.4-1 .9-1.2l8.5-4.8c.2-.1.2-.2.2-.4v-1.7c0-.7.4-1.4 1-1.6l6-3.4c.6-.5 1.7-1 2.7-1.6zM15.7 31l.2-.1 3.7-2.1a1.72 1.72 0 0 1 1.7 0l8.6 4.9c.6.3.9.9.9 1.5V45c0 .6-.3 1.2-.9 1.5l-3.5 2-.2.1.1.1 6.1 3.5c.1.1.2.1.3 0l6-3.4.2-.1-.2-.1-3.5-2c-.6-.3-.9-.9-.9-1.6v-9.7c0-.7.3-1.3.9-1.6l8.5-4.8a1.65 1.65 0 0 1 1.9 0l3.6 2.1.2.1v-7.3c0-.1-.1-.3-.2-.3L43 19.9l-.2-.1v4.1c0 .6-.3 1.2-.9 1.5l-8.5 4.9c-.5.3-1.2.3-1.8 0l-8.5-4.9c-.6-.3-.9-.9-.9-1.5v-4.2h-.1l-6.2 3.5c-.1.1-.2.2-.1.3V31zm9.6-14.3V23c0 .1.1.3.2.3l5.3 3 .2.1v-6.3c0-.1-.1-.2-.2-.3l-4.4-2.5-1.1-.6zm12 21.1v6.3c0 .1.1.3.2.3l5.3 3 .2.1v-6.3c0-.1-.1-.2-.2-.3l-4.4-2.5-1.1-.6zm-24 0s0 .1 0 0v6.4c0 .1.1.2.1.2l5.4 3.1.2.1v-6.2c0-.1-.1-.3-.2-.3l-5.3-3-.2-.3zm20.8-11.4l.2-.1 5.3-3c.1-.1.2-.2.2-.3v-6.3l-.2.1-5.3 3c-.1.1-.2.2-.2.3v6.3zm-6.4 11.4l-.2.1-5.3 3c-.1.1-.2.2-.2.3v6.3l.2-.1 5.4-3.1c.1-.1.2-.2.2-.3v-6.2zm18.4 9.7l.2-.1 5.3-3c.1-.1.2-.2.2-.3v-6.3l-.2.1-5.3 3c-.1.1-.2.2-.2.3v6.3zM14.9 35.1l5.5 3.2h.3l5.3-3 .2-.1-.1-.2-5.4-3.1c-.1-.1-.2-.1-.3 0l-4.7 2.7-.8.5zm12-21.1l5.5 3.2c.1.1.2.1.3 0l5.3-3 .2-.1-.2-.1-5.4-3.1c-.1-.1-.2-.1-.3 0L28.7 13l-1.8 1zm23.3 21.1l-5.5-3.2c-.1-.1-.2-.1-.3 0L39 35l-.1.1.1.1 5.4 3.1c.1.1.2.1.3 0l3.8-2.2 1.7-1z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/blockchain/hyperledger_fabric.svg b/src/main/webapp/img/lib/ibm/blockchain/hyperledger_fabric.svg index 41d31ed55002f33b639f9eef4c0700bde45a5997..5e6603fa35e28c2d4228fedb1d68b1547f2db91e 100644 --- a/src/main/webapp/img/lib/ibm/blockchain/hyperledger_fabric.svg +++ b/src/main/webapp/img/lib/ibm/blockchain/hyperledger_fabric.svg @@ -1,116 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 66.1 65.9" style="enable-background:new 0 0 66.1 65.9;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#FFFFFF;stroke:#787778;stroke-width:2;stroke-miterlimit:10;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS 3</title> -<ellipse class="st0" cx="33" cy="33" rx="32" ry="32"/> -<path class="st1" d="M12,12h42.2v42.3H12V12z M44,48.6c0.1-0.2,0.1-0.3,0.2-0.5c2.4-5.1,4.7-10.3,7.1-15.4c0.1-0.3,0.4-0.4,0.6-0.4 - c1,0.1,1.9-0.6,1.9-1.6c0-0.5-0.1-0.9-0.4-1.3c-0.4-0.6-1.2-0.9-1.9-0.6c-0.2,0.1-0.5,0-0.6-0.2L40.7,14.2L31.9,15 - c-2.8,0.3-5.7,0.5-8.5,0.8c-0.4,0-0.6,0-0.7-0.4c-0.3-0.7-1-1.1-1.8-1c-0.8,0.1-1.4,0.7-1.6,1.5c-0.1,0.7,0.2,1.5,0.8,1.9l-7.5,16.3 - L23,48.9l-0.2,0.3c-0.4,0.6-0.4,1.4,0,2c0.5,0.8,1.7,1,2.5,0.5c0.4-0.3,0.7-0.7,0.7-1.1c0.1-0.4,0.3-0.4,0.6-0.4l5.1-0.5L44,48.6z" - /> -<path d="M44,48.6l-12.1,1.2l-5.1,0.5c-0.3,0-0.6,0-0.6,0.4c-0.2,1-1.1,1.6-2.1,1.4c-0.5-0.1-0.9-0.4-1.1-0.7c-0.4-0.6-0.4-1.4,0-2 - l0.2-0.3L12.7,34.2l7.5-16.3c-0.6-0.4-1-1.2-0.8-1.9c0.1-0.8,0.8-1.4,1.6-1.5c0.8-0.1,1.5,0.3,1.8,1c0.2,0.4,0.3,0.4,0.7,0.4 - c2.8-0.3,5.7-0.5,8.5-0.8l8.8-0.8l10.1,14.3c0.1,0.2,0.4,0.3,0.6,0.2c0.9-0.3,1.9,0.2,2.2,1.2c0.1,0.4,0.1,0.9-0.1,1.3 - c-0.3,0.7-1,1.1-1.8,1c-0.3-0.1-0.6,0.1-0.6,0.4c-2.3,5.1-4.7,10.3-7.1,15.4C44.1,48.2,44,48.4,44,48.6z M39,34.1l0-0.2 - c-0.4-1.9-0.7-3.8-1.1-5.6c-0.1-0.2-0.2-0.4-0.4-0.5c-2-0.7-3.9-1.4-5.9-2.1c-0.2-0.1-0.4,0-0.6,0.1c-1.4,1.2-2.9,2.5-4.3,3.7 - c-0.1,0.2-0.2,0.4-0.2,0.6c0.4,2,0.8,4,1.2,6c0.1,0.2,0.2,0.4,0.4,0.5c1.8,0.7,3.7,1.3,5.5,1.9c0.2,0.1,0.4,0,0.6-0.1 - c1.6-1.3,3.1-2.6,4.6-4C38.9,34.3,39,34.2,39,34.1z M20.9,27.2h-0.1l-7.6,7l8.7,4.9c-0.1-0.4-0.1-0.7-0.2-1 - c-0.1-0.6-0.2-1.2-0.3-1.8c0-0.1-0.2-0.2-0.3-0.2c-0.9-0.1-1.6-0.8-1.7-1.7c0-0.8,0.5-1.6,1.3-1.9c0.2-0.1,0.3-0.3,0.3-0.5 - c0-0.7,0-1.3,0-1.9C20.9,29.1,20.9,28.1,20.9,27.2z M34,44.8l9.6,3.4L43.9,38l-2,1.8c0.5,1.2,0.4,2-0.4,2.5c-0.8,0.6-2,0.5-2.6-0.3 - c0,0,0,0,0,0L34,44.8z M13.8,34.8L13.8,34.8l0,0.3c3.1,4.4,6.2,8.8,9.3,13.2c0.1,0.1,0.2,0.2,0.4,0.3c0.1-0.2,0.1-0.3,0.1-0.5 - c-0.5-2.5-1-5-1.4-7.5c0-0.8-0.5-1.5-1.3-1.8c-0.4-0.2-0.7-0.4-1-0.6L13.8,34.8z M42.7,48.3c-0.1-0.1-0.1-0.1-0.1-0.1l-8.8-3.1 - c-0.2-0.1-0.3-0.1-0.5,0c-2.4,1.3-4.7,2.7-7.1,4.1c-0.1,0.1-0.1,0.3-0.2,0.4c0.1,0.1,0.3,0.2,0.4,0.2c0.4,0,0.8-0.1,1.2-0.1 - l12.2-1.1L42.7,48.3z M32.3,19.2v0.1c0.7,0.2,1.5,0.5,2.2,0.6c0.2,0,0.4-0.1,0.5-0.2c0.5-0.7,1.4-0.9,2.2-0.5c0.8,0.4,1.2,1.2,1,2.1 - c-0.1,0.2,0,0.5,0.2,0.6c1.3,0.8,2.6,1.6,3.8,2.4c0.1,0.1,0.2,0.1,0.4,0.2l-2.2-9.7L32.3,19.2z M13.5,33.2c0.1,0,0.2-0.1,0.3-0.2 - c2.3-2.1,4.6-4.2,6.8-6.3c0.2-0.2,0.3-0.5,0.3-0.7c0-2.5,0-5,0-7.5c0-0.1,0-0.2,0-0.3c0-0.1-0.1-0.2-0.2-0.3c0,0-0.2,0.1-0.3,0.2 - c-0.1,0.1-0.1,0.2-0.1,0.3l-6.5,14.2C13.7,32.8,13.6,33,13.5,33.2z M44,47.2L44,47.2c0.1-0.1,0.2-0.2,0.2-0.3 - c2.2-4.8,4.4-9.7,6.7-14.5c0-0.2,0-0.3,0-0.5c-0.2,0-0.3,0.1-0.5,0.2c-1.7,1.5-3.3,3-5,4.4c-0.9,0.6-1.3,1.7-1.3,2.7 - C44.2,41.9,44.1,44.5,44,47.2L44,47.2z M41.2,15.5c0,0.1,0,0.2,0,0.3c0.7,2.9,1.3,5.8,2,8.6c0.1,0.2,0.2,0.4,0.5,0.6 - c2.2,1.4,4.4,2.7,6.6,4.1c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0,0.3,0,0.3,0c0-0.1,0-0.2,0-0.3c0-0.1-0.1-0.2-0.2-0.3l-9-12.7 - C41.4,15.8,41.3,15.7,41.2,15.5z M39.6,14.7c-0.1,0-0.3,0-0.4,0l-3.7,0.3L25.9,16c-0.9,0.1-1.8,0.2-2.7,0.3c-0.1,0-0.2,0.1-0.3,0.2 - c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0,0.2,0.1,0.3,0.1c2.6,0.8,5.2,1.5,7.8,2.3c0.3,0.1,0.6,0,0.9-0.1c2.3-1.3,4.7-2.6,7-3.8 - C39.2,15,39.3,14.8,39.6,14.7z M28.5,42.8c0-0.1,0-0.2,0-0.3c-0.4-1.9-0.7-3.8-1.1-5.7c-0.1-0.2-0.2-0.4-0.4-0.5 - c-1.3-0.5-2.6-0.9-3.9-1.3c-0.7-0.2-0.7,0.8-1.3,0.9c-0.1,0-0.1,0.2-0.1,0.3s0,0.1,0,0.1c0.2,0.9,0.3,1.8,0.5,2.7 - c0.1,0.2,0.2,0.4,0.4,0.5c0.7,0.4,1.5,0.8,2.2,1.3L28.5,42.8z M29.2,43.1c1.4,0.5,2.8,1,4.2,1.5c0.2,0,0.4,0,0.5-0.2 - c1.3-0.8,2.6-1.5,3.9-2.2c0.6-0.3,1-0.6,0.8-1.4c-0.1-0.3-0.1-0.4-0.4-0.5c-1.2-0.4-2.5-0.9-3.7-1.3c-0.2,0-0.5,0-0.7,0.2 - c-1.3,1.1-2.5,2.2-3.8,3.2L29.2,43.1z M24.8,23.4c-1.1,1-2.2,2-3.2,2.9c-0.2,0.2-0.3,0.5-0.3,0.8c0,1.3,0,2.7,0,4 - c0,0.7-0.1,1.3,0.8,1.5l0,0c0.2,0.2,0.4,0.2,0.6,0c1-0.9,2-1.8,3-2.7c0.1-0.1,0.2-0.3,0.2-0.5C25.6,27.5,25.2,25.5,24.8,23.4 - L24.8,23.4z M38,22c-0.2,0.2-0.5,0.3-0.7,0.5C37,22.6,37,22.7,37,23c0.3,1.4,0.5,2.8,0.8,4.2c0.1,0.2,0.2,0.4,0.4,0.5 - c1,0.4,2,0.7,3,1.1l2.5,0.9c0-0.1,0-0.1,0-0.2c-0.3-1.4-0.6-2.8-1-4.2c0-0.1-0.1-0.2-0.2-0.3L38,22z M34.7,20.4 - c-0.8-0.2-1.7-0.5-2.5-0.7c-0.3-0.1-0.6,0-0.8,0.1c-1.8,1-3.6,2-5.4,3c-0.1,0.1-0.3,0.2-0.5,0.3c0.2,0.1,0.4,0.2,0.5,0.2 - c1.4,0.5,2.8,1,4.2,1.5c0.7,0.4,1.6,0.2,2.1-0.4c0.9-0.9,1.9-1.6,2.7-2.4L34.7,20.4z M44,30.4c-1.5,1.3-2.9,2.5-4.3,3.7 - c-0.3,0.2-0.4,0.6-0.3,0.9c0.2,1.1,0.4,2.2,0.6,3.3c0.1,0.5,0.2,0.9,0.8,0.8c0.2,0,0.3,0.1,0.5,0.2c0.3,0.2,0.4,0.1,0.6-0.1 - c0.5-0.5,1.1-1,1.7-1.5c0.2-0.2,0.3-0.4,0.3-0.6c0.1-1.8,0.1-3.5,0.1-5.3C44,31.4,44,31,44,30.4L44,30.4z M22.4,39.8 - c0,0.1,0,0.2,0,0.3c0.5,2.6,1,5.3,1.5,7.9c0.1,0.7,0.6,0.4,1,0.6s0.4-0.1,0.5-0.3l2.9-4.6c0.1-0.1,0.1-0.2,0.2-0.4L22.4,39.8z - M31.2,19.4c-0.1,0-0.1-0.1-0.2-0.1L23.1,17c-0.5-0.2-0.5,0.4-0.8,0.6c-0.1,0-0.1,0.4,0,0.5c0.8,1.5,1.7,3,2.5,4.5 - c0.1,0.1,0.1,0.2,0.2,0.3L31.2,19.4z M44.3,37c0.1-0.1,0.3-0.2,0.4-0.3c1.8-1.6,3.6-3.2,5.4-4.8c0.5-0.4,0.2-0.7,0.1-1 - c-0.1-0.2-0.3-0.3-0.5-0.3c-1.2-0.1-2.4-0.2-3.6-0.2l-1.8-0.1L44.3,37z M27.7,36.5l1.2,6.2l4.8-4.1L27.7,36.5z M37.7,27.5 - c-0.2-1.6-0.6-3.1-0.9-4.6c0-0.1-0.1-0.2-0.2-0.2c-0.5-0.1-1-0.3-1.5-0.4l-3.5,3.1L37.7,27.5z M26.4,29.5l4.7-4l-5.9-2.1L26.4,29.5z - M39.2,34l4.7-4L38,27.9L39.2,34z M26.1,30c-1.2,1-2.3,2-3.4,2.9c-0.1,0.1-0.1,0.2,0,0.3c0.1,0.5,0.2,1,0.4,1.5l4.3,1.5L26.1,30z - M38.6,40.2L40,39l-0.8-4.4l-4.8,4.1L38.6,40.2z M21.3,26l0.1,0.1c1-1,2.1-1.9,3.1-2.9c0.1-0.1,0-0.4,0-0.5 - c-0.8-1.4-1.6-2.9-2.4-4.3c-0.1-0.2-0.2-0.5-0.5-0.4c-0.2,0.1-0.3,0.4-0.3,0.6c0,2,0,4,0,6C21.3,25,21.3,25.5,21.3,26z M33.1,44.8 - c-1.3-0.5-2.6-0.9-3.8-1.3c-0.3-0.1-0.5,0-0.7,0.3c-1,1.5-2,3.1-2.9,4.6c-0.1,0.2-0.1,0.4-0.1,0.6c0.2,0,0.4-0.1,0.6-0.1 - c2-1.1,4-2.3,6-3.4L33.1,44.8z M43.3,25.3c0.3,1.4,0.6,2.6,0.9,3.9c0,0.4,0.3,0.6,0.7,0.6c0,0,0,0,0,0c1.6,0.1,3.2,0.2,4.8,0.3 - c0.2,0,0.4-0.2,0.5-0.2c-0.1-0.2-0.2-0.4-0.3-0.5c-2-1.3-4.1-2.6-6.2-3.8L43.3,25.3z"/> -<path class="st1" d="M39,34.1c-0.1,0.1-0.1,0.2-0.2,0.3c-1.5,1.3-3.1,2.7-4.6,4c-0.2,0.1-0.4,0.1-0.6,0.1c-1.9-0.6-3.7-1.3-5.5-1.9 - c-0.2-0.1-0.3-0.3-0.4-0.5c-0.4-2-0.8-4-1.2-6c0-0.2,0-0.4,0.2-0.6c1.4-1.3,2.9-2.5,4.3-3.7c0.2-0.1,0.4-0.2,0.6-0.1 - c2,0.7,3.9,1.4,5.9,2.1c0.2,0.1,0.4,0.2,0.4,0.5c0.4,1.9,0.7,3.7,1.1,5.6L39,34.1z"/> -<path class="st1" d="M20.9,27.2c0,0.9,0,1.9,0,2.8c0,0.7,0,1.3,0,1.9c0,0.2-0.1,0.4-0.3,0.5c-0.8,0.3-1.3,1-1.3,1.9 - c0.1,0.9,0.8,1.6,1.7,1.7c0.1,0,0.3,0.1,0.3,0.2c0.1,0.6,0.2,1.2,0.3,1.8c0,0.3,0.1,0.6,0.2,1l-8.7-4.9l7.6-7L20.9,27.2z"/> -<path class="st1" d="M34,44.8l4.8-2.8c0.6,0.8,1.8,1,2.6,0.4c0,0,0,0,0,0c0.8-0.5,0.9-1.4,0.4-2.5l2-1.8l-0.2,10.1L34,44.8z"/> -<path class="st1" d="M13.8,34.8l6.1,3.5c0.3,0.2,0.7,0.4,1,0.6c0.7,0.3,1.2,0.9,1.3,1.7c0.4,2.5,0.9,5,1.4,7.5c0,0.2,0,0.3-0.1,0.5 - c-0.1-0.1-0.3-0.2-0.4-0.3c-3.1-4.4-6.2-8.8-9.3-13.2L13.8,34.8L13.8,34.8z"/> -<path class="st1" d="M42.7,48.3l-2.9,0.3l-12.2,1.1c-0.4,0-0.8,0.1-1.2,0.1c-0.1,0-0.3-0.1-0.4-0.2c0.1-0.1,0.1-0.3,0.2-0.4 - c2.4-1.4,4.7-2.7,7.1-4.1c0.2-0.1,0.3-0.1,0.5,0l8.8,3.1C42.6,48.2,42.6,48.2,42.7,48.3z"/> -<path class="st1" d="M32.3,19.2l8.2-4.5l2.2,9.7c-0.1,0-0.3-0.1-0.4-0.2c-1.3-0.8-2.5-1.6-3.8-2.4c-0.2-0.1-0.3-0.4-0.2-0.6 - c0,0,0,0,0,0c0.2-0.9-0.2-1.7-1-2.1c-0.8-0.4-1.7-0.1-2.2,0.5c-0.1,0.2-0.3,0.2-0.5,0.2C33.8,19.8,33,19.5,32.3,19.2L32.3,19.2z"/> -<path class="st1" d="M13.5,33.2c0.1-0.3,0.2-0.4,0.2-0.5l6.5-14.2c0-0.1,0.1-0.2,0.1-0.3c0.1-0.1,0.2-0.2,0.3-0.2 - c0.1,0.1,0.2,0.2,0.2,0.3c0,0.1,0,0.2,0,0.3c0,2.5,0,5,0,7.5c0,0.3-0.1,0.5-0.3,0.7c-2.3,2.1-4.6,4.2-6.8,6.3 - C13.7,33.1,13.6,33.2,13.5,33.2z"/> -<path class="st1" d="M44,47.2c0-2.6,0.2-5.3,0.1-7.9c-0.1-1.1,0.4-2.1,1.3-2.7c1.7-1.4,3.4-3,5-4.4c0.1-0.1,0.3-0.2,0.5-0.2 - c0,0.2,0,0.3,0,0.5c-2.2,4.8-4.4,9.7-6.7,14.5c0,0.1-0.1,0.2-0.1,0.3L44,47.2z"/> -<path class="st1" d="M41.2,15.5c0.2,0.2,0.3,0.4,0.4,0.5l9,12.7c0.1,0.1,0.1,0.2,0.2,0.3c0,0.1,0,0.2,0,0.3c0,0-0.2,0-0.3,0 - c-0.1,0-0.2-0.1-0.3-0.2c-2.2-1.4-4.4-2.7-6.5-4.1c-0.2-0.1-0.4-0.3-0.5-0.6c-0.7-2.9-1.3-5.8-2-8.6C41.1,15.7,41.1,15.6,41.2,15.5z - "/> -<path class="st1" d="M39.6,14.7c-0.2,0.1-0.3,0.2-0.5,0.3c-2.3,1.3-4.7,2.6-7,3.8c-0.3,0.1-0.6,0.2-0.9,0.1 - c-2.6-0.7-5.2-1.5-7.8-2.3c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.2-0.1-0.3-0.2c0.1-0.1,0.2-0.2,0.3-0.2c0.9-0.1,1.8-0.2,2.7-0.3l9.6-0.9 - l3.7-0.3C39.3,14.7,39.4,14.7,39.6,14.7z"/> -<path class="st1" d="M28.5,42.8l-3.7-2.1c-0.7-0.4-1.5-0.8-2.2-1.3c-0.2-0.1-0.3-0.3-0.4-0.5c-0.2-0.9-0.3-1.8-0.5-2.7 - c0,0,0-0.1,0-0.1s0.1-0.3,0.1-0.3c0.6-0.1,0.6-1.1,1.3-0.9c1.3,0.4,2.6,0.9,3.9,1.3c0.2,0.1,0.3,0.3,0.4,0.5 - c0.4,1.9,0.8,3.8,1.1,5.7C28.5,42.6,28.5,42.7,28.5,42.8z"/> -<path class="st1" d="M29.2,43.1l0.8-0.7c1.3-1.1,2.5-2.2,3.8-3.2c0.2-0.2,0.4-0.2,0.7-0.2c1.3,0.4,2.5,0.9,3.7,1.3 - c0.3,0.1,0.3,0.3,0.4,0.5c0.2,0.8-0.2,1.1-0.8,1.4c-1.3,0.7-2.6,1.5-3.9,2.2c-0.2,0.1-0.3,0.2-0.5,0.2C32,44.1,30.7,43.6,29.2,43.1z - "/> -<path class="st1" d="M24.8,23.4c0.4,2.1,0.8,4.1,1.2,6c0,0.2-0.1,0.4-0.2,0.5c-1,0.9-2,1.8-3,2.7c-0.2,0.2-0.4,0.2-0.6,0l0,0 - c-0.9-0.2-0.8-0.8-0.8-1.5c0-1.3,0-2.7,0-4c0-0.3,0.1-0.6,0.3-0.8C22.7,25.4,23.7,24.5,24.8,23.4z"/> -<path class="st1" d="M38,22l4.6,2.9c0.1,0.1,0.2,0.2,0.2,0.3c0.3,1.4,0.7,2.8,1,4.2c0,0.1,0,0.1,0,0.2l-2.5-0.9c-1-0.4-2-0.7-3-1.1 - c-0.2-0.1-0.4-0.3-0.4-0.5c-0.3-1.4-0.5-2.8-0.8-4.2c0-0.3,0-0.4,0.3-0.5C37.6,22.3,37.8,22.1,38,22z"/> -<path class="st1" d="M34.7,20.4l0.4,1.6c-0.9,0.8-1.9,1.5-2.7,2.4c-0.5,0.6-1.4,0.8-2.1,0.4c-1.4-0.6-2.8-1-4.2-1.5 - c-0.2-0.1-0.3-0.1-0.5-0.2c0.2-0.1,0.3-0.2,0.5-0.3c1.8-1,3.6-2,5.4-3c0.3-0.1,0.5-0.2,0.8-0.1C33,19.8,33.9,20.2,34.7,20.4z"/> -<path class="st1" d="M44,30.4c0,0.5,0,1,0,1.4c0,1.8-0.1,3.5-0.1,5.3c0,0.2-0.1,0.5-0.3,0.6c-0.5,0.5-1.1,1-1.7,1.5 - c-0.2,0.2-0.4,0.3-0.6,0.1c-0.1-0.1-0.3-0.2-0.5-0.2c-0.6,0.1-0.7-0.3-0.8-0.8c-0.2-1.1-0.4-2.2-0.6-3.3c-0.1-0.4,0-0.7,0.3-0.9 - C41.1,32.9,42.5,31.7,44,30.4z"/> -<path class="st1" d="M22.4,39.8l6.1,3.4c-0.1,0.2-0.1,0.3-0.2,0.4l-2.9,4.6c-0.1,0.2-0.2,0.5-0.5,0.3s-0.8,0.1-1-0.6 - c-0.5-2.6-1-5.3-1.5-7.9C22.4,39.9,22.4,39.8,22.4,39.8z"/> -<path class="st1" d="M31.2,19.4l-6.1,3.4c-0.1-0.1-0.1-0.2-0.2-0.3c-0.8-1.5-1.7-3-2.5-4.5c-0.1-0.1-0.1-0.4,0-0.5 - c0.3-0.2,0.2-0.7,0.8-0.6l7.8,2.3C31,19.3,31.1,19.4,31.2,19.4z"/> -<path class="st1" d="M44.4,37v-6.8l1.8,0.1c1.2,0.1,2.4,0.1,3.6,0.2c0.2,0,0.4,0.1,0.5,0.3c0.1,0.3,0.4,0.6-0.1,1 - c-1.8,1.6-3.6,3.2-5.4,4.8C44.6,36.8,44.5,36.9,44.4,37z"/> -<path class="st1" d="M27.8,36.6l6,2.1l-4.8,4.1L27.8,36.6z"/> -<path class="st1" d="M37.8,27.5l-6.2-2.2l3.5-3.1c0.6,0.2,1,0.3,1.5,0.4c0.1,0,0.2,0.1,0.2,0.2C37.2,24.3,37.5,25.8,37.8,27.5z"/> -<path class="st1" d="M26.4,29.5l-1.2-6.2l5.9,2.1L26.4,29.5z"/> -<path class="st1" d="M39.2,34.1L38,28l5.8,2.1L39.2,34.1z"/> -<path class="st1" d="M26.1,30l1.2,6.3L23,34.7c-0.2-0.6-0.3-1.1-0.4-1.5c0-0.1,0-0.2,0-0.3C23.8,31.9,24.9,31,26.1,30z"/> -<path class="st1" d="M38.6,40.2l-4.2-1.5l4.8-4.1L40,39L38.6,40.2z"/> -<path class="st1" d="M21.3,26c0-0.5,0-0.9,0-1.4c0-2,0-4,0-6c0-0.2,0.1-0.4,0.3-0.6c0.3-0.2,0.4,0.2,0.5,0.4 - c0.8,1.4,1.6,2.9,2.4,4.3c0.1,0.1,0.1,0.4,0,0.5C23.5,24.2,22.4,25.1,21.3,26L21.3,26z"/> -<path class="st1" d="M33.1,44.8l-1,0.6c-2,1.2-4,2.3-6,3.4C26,48.9,25.8,49,25.6,49c0-0.2,0-0.4,0.1-0.6c1-1.5,2-3.1,2.9-4.6 - c0.2-0.3,0.3-0.4,0.7-0.3C30.5,44,31.8,44.4,33.1,44.8z"/> -<path class="st1" d="M43.3,25.3l0.5,0.3c2,1.3,4.1,2.5,6.1,3.8c0.2,0.1,0.2,0.3,0.3,0.5c-0.2,0.1-0.4,0.2-0.5,0.2 - c-1.6-0.1-3.2-0.2-4.8-0.3c-0.4,0-0.7-0.2-0.7-0.6c0,0,0,0,0,0C44,28,43.7,26.7,43.3,25.3z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 66.1 65.9"><g fill="#fff"><circle cx="33" cy="33" r="32" stroke="#787778" stroke-width="2"/><path d="M12 12h42.2v42.3H12V12zm32 36.6c.1-.2.1-.3.2-.5l7.1-15.4c.1-.3.4-.4.6-.4 1 .1 1.9-.6 1.9-1.6 0-.5-.1-.9-.4-1.3-.4-.6-1.2-.9-1.9-.6-.2.1-.5 0-.6-.2L40.7 14.2l-8.8.8-8.5.8c-.4 0-.6 0-.7-.4-.3-.7-1-1.1-1.8-1s-1.4.7-1.6 1.5c-.1.7.2 1.5.8 1.9l-7.5 16.3L23 48.9l-.2.3c-.4.6-.4 1.4 0 2 .5.8 1.7 1 2.5.5.4-.3.7-.7.7-1.1.1-.4.3-.4.6-.4l5.1-.5L44 48.6z"/></g><path d="M44 48.6l-17.2 1.7c-.3 0-.6 0-.6.4a1.74 1.74 0 0 1-2.1 1.4c-.5-.1-.9-.4-1.1-.7-.4-.6-.4-1.4 0-2l.2-.3-10.5-14.9 7.5-16.3c-.6-.4-1-1.2-.8-1.9.1-.8.8-1.4 1.6-1.5s1.5.3 1.8 1c.2.4.3.4.7.4l8.5-.8 8.8-.8 10.1 14.3c.1.2.4.3.6.2.9-.3 1.9.2 2.2 1.2.1.4.1.9-.1 1.3-.3.7-1 1.1-1.8 1-.3-.1-.6.1-.6.4l-7.1 15.4c0 .1-.1.3-.1.5zm-5-14.5v-.2l-1.1-5.6c-.1-.2-.2-.4-.4-.5l-5.9-2.1c-.2-.1-.4 0-.6.1l-4.3 3.7c-.1.2-.2.4-.2.6l1.2 6c.1.2.2.4.4.5l5.5 1.9c.2.1.4 0 .6-.1l4.6-4c.1-.1.2-.2.2-.3zm-18.1-6.9h-.1l-7.6 7 8.7 4.9c-.1-.4-.1-.7-.2-1l-.3-1.8c0-.1-.2-.2-.3-.2-.9-.1-1.6-.8-1.7-1.7 0-.8.5-1.6 1.3-1.9a.55.55 0 0 0 .3-.5v-1.9c-.1-1-.1-2-.1-2.9zM34 44.8l9.6 3.4.3-10.2-2 1.8c.5 1.2.4 2-.4 2.5-.8.6-2 .5-2.6-.3L34 44.8zm-20.2-10v.3l9.3 13.2a1.38 1.38 0 0 0 .4.3c.1-.2.1-.3.1-.5l-1.4-7.5c0-.8-.5-1.5-1.3-1.8-.4-.2-.7-.4-1-.6l-6.1-3.4zm28.9 13.5l-.1-.1-8.8-3.1a.45.45 0 0 0-.5 0l-7.1 4.1c-.1.1-.1.3-.2.4a.76.76 0 0 0 .4.2c.4 0 .8-.1 1.2-.1l12.2-1.1 2.9-.3zM32.3 19.2v.1c.7.2 1.5.5 2.2.6.2 0 .4-.1.5-.2.5-.7 1.4-.9 2.2-.5a1.82 1.82 0 0 1 1 2.1c-.1.2 0 .5.2.6l3.8 2.4c.1.1.2.1.4.2l-2.2-9.7-8.1 4.4zm-18.8 14c.1 0 .2-.1.3-.2l6.8-6.3a1.08 1.08 0 0 0 .3-.7v-7.8c0-.1-.1-.2-.2-.3 0 0-.2.1-.3.2s-.1.2-.1.3l-6.5 14.2-.3.6zm30.5 14c.1-.1.2-.2.2-.3l6.7-14.5v-.5c-.2 0-.3.1-.5.2l-5 4.4c-.9.6-1.3 1.7-1.3 2.7l-.1 8zm-2.8-31.7v.3l2 8.6c.1.2.2.4.5.6l6.6 4.1c.1.1.2.1.3.2h.3V29c0-.1-.1-.2-.2-.3l-9-12.7c-.3-.2-.4-.3-.5-.5zm-1.6-.8h-.4l-3.7.3-9.6 1-2.7.3c-.1 0-.2.1-.3.2.1.1.2.1.3.2.1 0 .2.1.3.1l7.8 2.3c.3.1.6 0 .9-.1a240.63 240.63 0 0 1 7-3.8c0-.2.1-.4.4-.5zM28.5 42.8v-.3l-1.1-5.7c-.1-.2-.2-.4-.4-.5L23.1 35c-.7-.2-.7.8-1.3.9-.1 0-.1.2-.1.3v.1l.5 2.7c.1.2.2.4.4.5l2.2 1.3 3.7 2zm.7.3l4.2 1.5c.2 0 .4 0 .5-.2l3.9-2.2c.6-.3 1-.6.8-1.4-.1-.3-.1-.4-.4-.5L34.5 39c-.2 0-.5 0-.7.2L30 42.4l-.8.7zm-4.4-19.7l-3.2 2.9c-.2.2-.3.5-.3.8v4c0 .7-.1 1.3.8 1.5a.37.37 0 0 0 .6 0l3-2.7c.1-.1.2-.3.2-.5l-1.1-6zM38 22c-.2.2-.5.3-.7.5-.3.1-.3.2-.3.5l.8 4.2c.1.2.2.4.4.5l3 1.1 2.5.9v-.2l-1-4.2c0-.1-.1-.2-.2-.3L38 22zm-3.3-1.6l-2.5-.7c-.3-.1-.6 0-.8.1l-5.4 3c-.1.1-.3.2-.5.3.2.1.4.2.5.2l4.2 1.5c.7.4 1.6.2 2.1-.4.9-.9 1.9-1.6 2.7-2.4l-.3-1.6zm9.3 10l-4.3 3.7c-.3.2-.4.6-.3.9l.6 3.3c.1.5.2.9.8.8.2 0 .3.1.5.2.3.2.4.1.6-.1.5-.5 1.1-1 1.7-1.5.2-.2.3-.4.3-.6l.1-5.3v-1.4zm-21.6 9.4v.3l1.5 7.9c.1.7.6.4 1 .6s.4-.1.5-.3l2.9-4.6c.1-.1.1-.2.2-.4l-6.1-3.5zm8.8-20.4c-.1 0-.1-.1-.2-.1L23.1 17c-.5-.2-.5.4-.8.6-.1 0-.1.4 0 .5l2.5 4.5c.1.1.1.2.2.3l6.2-3.5zM44.3 37c.1-.1.3-.2.4-.3l5.4-4.8c.5-.4.2-.7.1-1a.55.55 0 0 0-.5-.3l-5.4-.3V37zm-16.6-.5l1.2 6.2 4.8-4.1-6-2.1zm10-9c-.2-1.6-.6-3.1-.9-4.6 0-.1-.1-.2-.2-.2-.5-.1-1-.3-1.5-.4l-3.5 3.1 6.1 2.1zm-11.3 2l4.7-4-5.9-2.1 1.2 6.1zM39.2 34l4.7-4-5.9-2.1 1.2 6.1zm-13.1-4l-3.4 2.9c-.1.1-.1.2 0 .3.1.5.2 1 .4 1.5l4.3 1.5-1.3-6.2zm12.5 10.2L40 39l-.8-4.4-4.8 4.1 4.2 1.5zM21.3 26l.1.1 3.1-2.9c.1-.1 0-.4 0-.5l-2.4-4.3c-.1-.2-.2-.5-.5-.4-.2.1-.3.4-.3.6V26zm11.8 18.8l-3.8-1.3c-.3-.1-.5 0-.7.3a116.53 116.53 0 0 0-2.9 4.6c-.1.2-.1.4-.1.6.2 0 .4-.1.6-.1l6-3.4.9-.7zm10.2-19.5l.9 3.9c0 .4.3.6.7.6l4.8.3c.2 0 .4-.2.5-.2-.1-.2-.2-.4-.3-.5l-6.2-3.8-.4-.3z"/><g fill="#fff"><path d="M39 34.1c-.1.1-.1.2-.2.3l-4.6 4c-.2.1-.4.1-.6.1l-5.5-1.9c-.2-.1-.3-.3-.4-.5l-1.2-6c0-.2 0-.4.2-.6l4.3-3.7c.2-.1.4-.2.6-.1l5.9 2.1c.2.1.4.2.4.5l1.1 5.6v.2zm-18.1-6.9v4.7a.55.55 0 0 1-.3.5c-.8.3-1.3 1-1.3 1.9.1.9.8 1.6 1.7 1.7.1 0 .3.1.3.2l.3 1.8c0 .3.1.6.2 1l-8.7-4.9 7.6-7 .2.1zM34 44.8l4.8-2.8c.6.8 1.8 1 2.6.4.8-.5.9-1.4.4-2.5l2-1.8-.2 10.1-9.6-3.4zm-20.2-10l6.1 3.5 1 .6c.7.3 1.2.9 1.3 1.7l1.4 7.5c0 .2 0 .3-.1.5-.1-.1-.3-.2-.4-.3l-9.3-13.2v-.3z"/><path d="M42.7 48.3l-2.9.3-12.2 1.1c-.4 0-.8.1-1.2.1a.76.76 0 0 1-.4-.2c.1-.1.1-.3.2-.4l7.1-4.1a.45.45 0 0 1 .5 0l8.8 3.1.1.1zM32.3 19.2l8.2-4.5 2.2 9.7a.76.76 0 0 1-.4-.2l-3.8-2.4c-.2-.1-.3-.4-.2-.6a1.82 1.82 0 0 0-1-2.1c-.8-.4-1.7-.1-2.2.5-.1.2-.3.2-.5.2-.8 0-1.6-.3-2.3-.6zm-18.8 14c.1-.3.2-.4.2-.5l6.5-14.2c0-.1.1-.2.1-.3.1-.1.2-.2.3-.2.1.1.2.2.2.3v7.8c0 .3-.1.5-.3.7l-6.8 6.3s-.1.1-.2.1zm30.5 14l.1-7.9c-.1-1.1.4-2.1 1.3-2.7l5-4.4c.1-.1.3-.2.5-.2v.5L44.2 47c0 .1-.1.2-.1.3l-.1-.1zm-2.8-31.7c.2.2.3.4.4.5l9 12.7c.1.1.1.2.2.3v.3h-.3c-.1 0-.2-.1-.3-.2L43.7 25c-.2-.1-.4-.3-.5-.6l-2-8.6c-.1-.1-.1-.2 0-.3zm-1.6-.8c-.2.1-.3.2-.5.3l-7 3.8c-.3.1-.6.2-.9.1l-7.8-2.3c-.1 0-.2 0-.3-.1s-.2-.1-.3-.2c.1-.1.2-.2.3-.2l2.7-.3 9.6-.9 3.7-.3a.9.9 0 0 0 .5.1zM28.5 42.8l-3.7-2.1-2.2-1.3c-.2-.1-.3-.3-.4-.5l-.5-2.7v-.1l.1-.3c.6-.1.6-1.1 1.3-.9l3.9 1.3c.2.1.3.3.4.5l1.1 5.7v.4zm.7.3l.8-.7 3.8-3.2c.2-.2.4-.2.7-.2l3.7 1.3c.3.1.3.3.4.5.2.8-.2 1.1-.8 1.4l-3.9 2.2c-.2.1-.3.2-.5.2l-4.2-1.5z"/><path d="M24.8 23.4l1.2 6c0 .2-.1.4-.2.5l-3 2.7a.37.37 0 0 1-.6 0c-.9-.2-.8-.8-.8-1.5v-4c0-.3.1-.6.3-.8l3.1-2.9zM38 22l4.6 2.9c.1.1.2.2.2.3l1 4.2v.2l-2.5-.9-3-1.1c-.2-.1-.4-.3-.4-.5l-.8-4.2c0-.3 0-.4.3-.5.2-.1.4-.3.6-.4zm-3.3-1.6l.4 1.6c-.9.8-1.9 1.5-2.7 2.4-.5.6-1.4.8-2.1.4-1.4-.6-2.8-1-4.2-1.5-.2-.1-.3-.1-.5-.2.2-.1.3-.2.5-.3l5.4-3c.3-.1.5-.2.8-.1.7.1 1.6.5 2.4.7zm9.3 10v1.4l-.1 5.3c0 .2-.1.5-.3.6-.5.5-1.1 1-1.7 1.5-.2.2-.4.3-.6.1-.1-.1-.3-.2-.5-.2-.6.1-.7-.3-.8-.8l-.6-3.3c-.1-.4 0-.7.3-.9l4.3-3.7zm-21.6 9.4l6.1 3.4c-.1.2-.1.3-.2.4l-2.9 4.6c-.1.2-.2.5-.5.3s-.8.1-1-.6L22.4 40v-.2zm8.8-20.4l-6.1 3.4c-.1-.1-.1-.2-.2-.3L22.4 18c-.1-.1-.1-.4 0-.5.3-.2.2-.7.8-.6l7.8 2.3c0 .1.1.2.2.2zM44.4 37v-6.8l5.4.3a.55.55 0 0 1 .5.3c.1.3.4.6-.1 1l-5.4 4.8-.4.4zm-16.6-.4l6 2.1-4.8 4.1-1.2-6.2z"/><path d="M37.8 27.5l-6.2-2.2 3.5-3.1a11.31 11.31 0 0 0 1.5.4c.1 0 .2.1.2.2.4 1.5.7 3 1 4.7zm-11.4 2l-1.2-6.2 5.9 2.1-4.7 4.1zm12.8 4.6L38 28l5.8 2.1-4.6 4zM26.1 30l1.2 6.3-4.3-1.6c-.2-.6-.3-1.1-.4-1.5v-.3l3.5-2.9zm12.5 10.2l-4.2-1.5 4.8-4.1.8 4.4-1.4 1.2zM21.3 26v-7.4c0-.2.1-.4.3-.6.3-.2.4.2.5.4l2.4 4.3c.1.1.1.4 0 .5-1 1-2.1 1.9-3.2 2.8zm11.8 18.8l-1 .6-6 3.4c-.1.1-.3.2-.5.2 0-.2 0-.4.1-.6l2.9-4.6c.2-.3.3-.4.7-.3 1.2.5 2.5.9 3.8 1.3zm10.2-19.5l.5.3 6.1 3.8c.2.1.2.3.3.5-.2.1-.4.2-.5.2l-4.8-.3c-.4 0-.7-.2-.7-.6-.2-1.2-.5-2.5-.9-3.9z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/blockchain/identity_access_manager.svg b/src/main/webapp/img/lib/ibm/blockchain/identity_access_manager.svg index f7bf1c08b52e81af9256d15098ffb2caf49e2521..1f8ca48dddf6880ee62940ac855da773d5ee266c 100644 --- a/src/main/webapp/img/lib/ibm/blockchain/identity_access_manager.svg +++ b/src/main/webapp/img/lib/ibm/blockchain/identity_access_manager.svg @@ -1,129 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - viewBox="0 0 55.000001 55.000001" - enable-background="new 0 0 60.8 62.3" - xml:space="preserve" - sodipodi:docname="Identity & Access Manager.svg" - width="55" - height="55" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata4111"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs4109" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview4107" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="10.714427" - inkscape:cx="7.0186389" - inkscape:cy="24.773843" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<g - id="blockchain-identity-access-management_2_" - transform="translate(-4,-3.2000008)"> - <circle - cx="31.5" - cy="30.700001" - r="27.5" - id="circle4079" - style="clip-rule:evenodd;fill:#d91f2f;fill-rule:evenodd" /> - <g - id="g4103"> - <path - stroke-miterlimit="10" - d="m 19.2,25 c -0.1,-0.9 -0.1,-2.3 0.4,-4 0.5,-1.9 1.4,-3.1 1.9,-3.8 0.5,-0.7 1.6,-2.2 3.7,-3.4 1.7,-0.9 3.2,-1.2 3.9,-1.4 1.5,-0.3 2.7,-0.2 3.4,-0.2 1.8,0.2 3.2,0.7 3.5,0.8 0.4,0.2 2,0.8 3.6,2.2 1.3,1.2 2,2.3 2.2,2.6 0.9,1.4 1.2,2.7 1.3,2.9 0.2,0.8 0.3,1.4 0.3,1.9 0.2,2.9 0.2,7.8 0.2,8.6" - id="path4081" - inkscape:connector-curvature="0" - style="fill:none;stroke:#ffffff;stroke-width:1.3197;stroke-miterlimit:10" /> - <path - stroke-miterlimit="10" - d="m 18.8,27.7 c 0.3,0 0.9,0.1 1.6,-0.3 0.7,-0.3 1.1,-0.9 1.2,-1.1 0.1,-0.1 0.3,-0.5 0.6,-1.8 0.2,-1.1 0.1,-1.4 0.3,-2.2 0,-0.2 0.2,-1.2 0.6,-2.1 0.9,-1.8 2.4,-2.9 3.2,-3.4 0.6,-0.4 1.3,-0.9 2.5,-1.2 0.4,-0.1 2.5,-0.7 5,-0.1 0.4,0.1 1.5,0.4 2.8,1.2 1.1,0.7 1.8,1.5 2.3,2.1 0.6,0.7 1.1,1.3 1.5,2.3 0.2,0.6 0.3,1 0.3,1.4 0.2,1.4 0.2,4.9 0.2,7.8 0,0.3 -0.2,1 0.2,1.6 0.3,0.6 0.7,0.9 1.1,1.1 0.7,0.5 1.5,0.7 2,0.8" - id="path4083" - inkscape:connector-curvature="0" - style="fill:none;stroke:#ffffff;stroke-width:1.3197;stroke-miterlimit:10" /> - <path - stroke-miterlimit="10" - d="m 18.8,30.7 c 0.4,0 1,0.1 1.8,-0.1 1,-0.2 1.7,-0.7 2.1,-0.9 0.5,-0.3 1.2,-0.8 1.8,-1.7 0.4,-0.6 0.5,-1.5 0.7,-3.2 0.2,-1.7 0.2,-2 0.5,-2.7 0.1,-0.2 0.4,-1 1.2,-1.8 0.6,-0.7 1.3,-1.1 1.6,-1.2 0.8,-0.5 1.6,-0.6 1.8,-0.7 1,-0.2 1.8,-0.1 2.2,0 0.5,0.1 1.1,0.2 1.8,0.5 0.7,0.3 1.1,0.7 1.5,1.1 0.4,0.4 0.9,0.8 1.3,1.6 0.4,0.8 0.6,1.5 0.6,1.8 0.1,0.5 0.1,0.9 0.1,1.1 -0.1,2.5 0.2,5 0.1,7.5 0,0.2 0,0.7 0.2,1.2 0.2,0.6 0.9,1.3 1.5,1.8 0.6,0.6 1.3,0.9 1.5,1 0.5,0.3 1.6,0.6 3.1,0.7" - id="path4085" - inkscape:connector-curvature="0" - style="fill:none;stroke:#ffffff;stroke-width:1.3197;stroke-miterlimit:10" /> - <path - stroke-miterlimit="10" - d="m 18.8,33.7 c 0.4,0.1 0.9,0.2 1.6,0.1 0.9,-0.1 1.6,-0.4 2.2,-0.8 0.3,-0.1 0.9,-0.5 1.6,-1 0.4,-0.3 1.4,-1.1 2.3,-2.4 0.6,-0.8 0.8,-1.2 1.1,-1.9 0.1,-0.1 0.2,-0.7 0.3,-1.9 0.1,-0.7 0.2,-1.2 0.4,-1.8 0.2,-0.8 0.3,-1 0.4,-1.2 0.3,-0.4 0.6,-0.6 1,-0.9 0.5,-0.3 0.9,-0.6 1.5,-0.7 0.5,-0.1 0.9,0.1 1.1,0.1 0.1,0 0.6,0.2 1,0.6 0.1,0.1 0.6,0.5 0.9,1.1 0.3,0.7 0.3,1.3 0.1,2.5 -0.2,1.6 -0.3,2.4 -0.6,3.4 -0.2,0.5 -0.7,2.2 -1.9,3.9 -2.1,3 -4.8,4.4 -5.8,4.9 -2.9,1.5 -5.6,1.8 -7.2,1.9" - id="path4087" - inkscape:connector-curvature="0" - style="fill:none;stroke:#ffffff;stroke-width:1.3197;stroke-miterlimit:10" /> - <path - stroke-miterlimit="10" - d="m 19.3,36.7 c 0.7,0 1.8,0 3,-0.4 2.6,-0.7 4.3,-2.2 4.9,-2.8 1.2,-1.1 1.9,-2.2 2.4,-2.9 0.5,-0.7 0.9,-1.4 1.3,-2.3 0.3,-0.8 0.8,-2.3 0.6,-4.4" - id="path4089" - inkscape:connector-curvature="0" - style="fill:none;stroke:#ffffff;stroke-width:1.3197;stroke-miterlimit:10" /> - <path - stroke-miterlimit="10" - d="m 32,36.5 c 0.5,0 1,0 1.5,0" - id="path4091" - inkscape:connector-curvature="0" - style="fill:none;stroke:#ffffff;stroke-width:1.3197;stroke-miterlimit:10" /> - <path - stroke-miterlimit="10" - d="m 35,33.6 c 0.1,0.4 0.3,0.9 0.6,1.5 0.5,0.9 1,1.4 1.6,1.9 1,0.9 1.9,1.5 2.3,1.7 0.5,0.3 1.1,0.6 2,0.9 1.1,0.3 2.1,0.3 2.8,0.2" - id="path4093" - inkscape:connector-curvature="0" - style="fill:none;stroke:#ffffff;stroke-width:1.3197;stroke-miterlimit:10" /> - <path - stroke-miterlimit="10" - d="m 42.1,43 c -0.5,-0.1 -1.1,-0.4 -1.9,-0.7 -0.9,-0.3 -1.4,-0.5 -2,-0.9 -1,-0.6 -1.3,-0.7 -2.1,-1.1 -0.7,-0.4 -1.7,-0.7 -2.4,-0.9 -0.9,-0.2 -1.4,-0.3 -2.8,0 -0.5,0.1 -0.9,0.3 -1.9,0.7 -1.9,0.9 -2,1.2 -3.2,1.6 -1.2,0.5 -2.3,0.7 -3,0.8 -0.9,0.1 -1.6,0.2 -2.2,0.2" - id="path4095" - inkscape:connector-curvature="0" - style="fill:none;stroke:#ffffff;stroke-width:1.3197;stroke-miterlimit:10" /> - <path - stroke-miterlimit="10" - d="m 23.1,45.6 c 0.8,0 1.4,-0.1 1.8,-0.2 0.7,-0.2 1.3,-0.5 1.7,-0.7 0.6,-0.3 0.6,-0.4 1.5,-0.8 0.6,-0.3 1,-0.5 1.4,-0.7 0.7,-0.3 1.1,-0.5 1.6,-0.6 0.4,-0.1 0.6,0 1.2,0 0.5,0 0.9,0.1 1.4,0.2 0.4,0.1 0.8,0.3 1.5,0.7 0.5,0.3 0.6,0.3 1.1,0.6 0.2,0.1 0.9,0.5 1.5,0.8 0.5,0.2 1.4,0.5 2.5,0.7" - id="path4097" - inkscape:connector-curvature="0" - style="fill:none;stroke:#ffffff;stroke-width:1.3197;stroke-miterlimit:10" /> - <path - stroke-miterlimit="10" - d="m 26.3,48.1 c 0.7,-0.2 1.3,-0.4 1.7,-0.6 0.5,-0.2 1.1,-0.5 1.8,-1 0.7,-0.4 0.7,-0.6 1.1,-0.7 0.7,-0.3 1.3,-0.2 1.6,-0.1 0.7,0.1 1.1,0.3 1.4,0.4 0.3,0.2 0.6,0.3 1.2,0.7 0.6,0.4 0.8,0.5 1.2,0.8 0.4,0.2 0.7,0.3 0.9,0.4" - id="path4099" - inkscape:connector-curvature="0" - style="fill:none;stroke:#ffffff;stroke-width:1.3197;stroke-miterlimit:10" /> - <path - stroke-miterlimit="10" - d="m 31.5,49.1 c 0.6,0 1.1,0 1.7,0" - id="path4101" - inkscape:connector-curvature="0" - style="fill:none;stroke:#ffffff;stroke-width:1.3197;stroke-miterlimit:10" /> - </g> -</g> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="55" height="55"><circle cx="27.5" cy="27.5" r="27.5" fill="#d91f2f" fill-rule="evenodd"/><path d="M15.2 21.8c-.1-.9-.1-2.3.4-4 .5-1.9 1.4-3.1 1.9-3.8s1.6-2.2 3.7-3.4c1.7-.9 3.2-1.2 3.9-1.4 1.5-.3 2.7-.2 3.4-.2 1.8.2 3.2.7 3.5.8.4.2 2 .8 3.6 2.2 1.3 1.2 2 2.3 2.2 2.6.9 1.4 1.2 2.7 1.3 2.9.2.8.3 1.4.3 1.9l.2 8.6m-24.8-3.5c.3 0 .9.1 1.6-.3.7-.3 1.1-.9 1.2-1.1.1-.1.3-.5.6-1.8.2-1.1.1-1.4.3-2.2 0-.2.2-1.2.6-2.1.9-1.8 2.4-2.9 3.2-3.4.6-.4 1.3-.9 2.5-1.2.4-.1 2.5-.7 5-.1.4.1 1.5.4 2.8 1.2 1.1.7 1.8 1.5 2.3 2.1.6.7 1.1 1.3 1.5 2.3.2.6.3 1 .3 1.4.2 1.4.2 4.9.2 7.8 0 .3-.2 1 .2 1.6.3.6.7.9 1.1 1.1.7.5 1.5.7 2 .8m-25.4-3.1c.4 0 1 .1 1.8-.1 1-.2 1.7-.7 2.1-.9a5.51 5.51 0 0 0 1.8-1.7c.4-.6.5-1.5.7-3.2s.2-2 .5-2.7c.1-.2.4-1 1.2-1.8.6-.7 1.3-1.1 1.6-1.2.8-.5 1.6-.6 1.8-.7 1-.2 1.8-.1 2.2 0 .5.1 1.1.2 1.8.5s1.1.7 1.5 1.1.9.8 1.3 1.6.6 1.5.6 1.8c.1.5.1.9.1 1.1-.1 2.5.2 5 .1 7.5 0 .2 0 .7.2 1.2.2.6.9 1.3 1.5 1.8.6.6 1.3.9 1.5 1 .5.3 1.6.6 3.1.7m-25.4-3c.4.1.9.2 1.6.1.9-.1 1.6-.4 2.2-.8.3-.1.9-.5 1.6-1 .4-.3 1.4-1.1 2.3-2.4.6-.8.8-1.2 1.1-1.9.1-.1.2-.7.3-1.9.1-.7.2-1.2.4-1.8.2-.8.3-1 .4-1.2.3-.4.6-.6 1-.9.5-.3.9-.6 1.5-.7.5-.1.9.1 1.1.1.1 0 .6.2 1 .6.1.1.6.5.9 1.1.3.7.3 1.3.1 2.5-.2 1.6-.3 2.4-.6 3.4-.2.5-.7 2.2-1.9 3.9-2.1 3-4.8 4.4-5.8 4.9-2.9 1.5-5.6 1.8-7.2 1.9m.5-2.9c.7 0 1.8 0 3-.4 2.6-.7 4.3-2.2 4.9-2.8 1.2-1.1 1.9-2.2 2.4-2.9s.9-1.4 1.3-2.3c.3-.8.8-2.3.6-4.4m.5 12.6h1.5m1.5-2.9c.1.4.3.9.6 1.5.5.9 1 1.4 1.6 1.9 1 .9 1.9 1.5 2.3 1.7.5.3 1.1.6 2 .9 1.1.3 2.1.3 2.8.2m-2.2 3.2c-.5-.1-1.1-.4-1.9-.7-.9-.3-1.4-.5-2-.9-1-.6-1.3-.7-2.1-1.1-.7-.4-1.7-.7-2.4-.9-.9-.2-1.4-.3-2.8 0-.5.1-.9.3-1.9.7-1.9.9-2 1.2-3.2 1.6-1.2.5-2.3.7-3 .8l-2.2.2m2.5 2.9c.8 0 1.4-.1 1.8-.2.7-.2 1.3-.5 1.7-.7.6-.3.6-.4 1.5-.8l1.4-.7c.7-.3 1.1-.5 1.6-.6.4-.1.6 0 1.2 0 .5 0 .9.1 1.4.2.4.1.8.3 1.5.7l1.1.6 1.5.8c.5.2 1.4.5 2.5.7m-14 2.5c.7-.2 1.3-.4 1.7-.6.5-.2 1.1-.5 1.8-1 .7-.4.7-.6 1.1-.7.7-.3 1.3-.2 1.6-.1.7.1 1.1.3 1.4.4.3.2.6.3 1.2.7l1.2.8.9.4m-5.7 1.1h1.7" stroke-miterlimit="10" fill="none" stroke="#fff" stroke-width="1.32"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/blockchain/key_management.svg b/src/main/webapp/img/lib/ibm/blockchain/key_management.svg index 8d8fe56aa45bb4c01886e150f5b2b5fb1b406266..905a88c9e7e97bfadb49b50473762c8492d0fe31 100644 --- a/src/main/webapp/img/lib/ibm/blockchain/key_management.svg +++ b/src/main/webapp/img/lib/ibm/blockchain/key_management.svg @@ -1,220 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - viewBox="0 0 22.599999 22.600001" - enable-background="new 0 0 1028.3 703.3" - xml:space="preserve" - sodipodi:docname="key_management.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - width="22.6" - height="22.6"><metadata - id="metadata2176"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs2174" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview2172" - showgrid="false" - inkscape:zoom="13.378847" - inkscape:cx="31.497311" - inkscape:cy="7.9674474" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -<circle - cx="11.3" - cy="11.3" - r="11.3" - id="circle1936" - style="clip-rule:evenodd;fill:#d91f2f;fill-rule:evenodd" /><g - id="g1944" - transform="translate(-879.79998,-220.09998)"> - <path - d="m 895.9,225.1 c -1.6,-1.5 -3.9,-1.6 -5.2,-0.2 -1.2,1.4 -1.1,3.7 0.6,5.2 1.7,1.5 3.9,1.6 5.2,0.2 1.2,-1.4 0.9,-3.7 -0.6,-5.2 z m -1.1,3.9 c -0.5,0.4 -1.5,0.2 -2.2,-0.5 -0.7,-0.8 -0.8,-1.8 -0.3,-2.2 0.5,-0.4 1.5,-0.2 2.2,0.5 0.6,0.7 0.8,1.7 0.3,2.2 z" - id="path1938" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - - <line - stroke-miterlimit="10" - x1="891.20001" - y1="229.2" - x2="885" - y2="235.2" - id="line1940" - style="fill:none;stroke:#ffffff;stroke-width:1.87440002;stroke-linecap:square;stroke-miterlimit:10" /> - <polygon - points="885.1,236.8 886.9,238.7 887.5,238 886.7,237.1 887.5,236.5 888.3,237.3 889,236.6 887.3,234.8 " - id="polygon1942" - style="fill:#ffffff" /> -</g><path - id="SVGID_x5F_4_x5F__8_" - d="m 15.20002,18.40002 c -4.2,1.8 -9,-0.2 -10.9,-4.5 -1.9,-4.3 0,-9.2 4.2,-11 4.2,-1.8 9,0.2 10.9,4.5 1.8,4.3 0,9.2 -4.2,11 z" - inkscape:connector-curvature="0" - style="fill:none" /><text - id="text1951"><textPath - xlink:href="#SVGID_x5F_4_x5F__8_" - startOffset="67.122298%" - id="textPath1949"> <tspan - style="font-size:3px;font-family:MyriadPro-Bold;fill:#ffffff" - font-size="3px" - id="tspan1947">KEY MGMT</tspan></textPath></text> - - - - - - - - - - - - - - - -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="22.6" height="22.6"><circle cx="11.3" cy="11.3" r="11.3" fill="#d91f2f" fill-rule="evenodd"/><path d="M16.1 5c-1.6-1.5-3.9-1.6-5.2-.2-1.2 1.4-1.1 3.7.6 5.2s3.9 1.6 5.2.2c1.2-1.4.9-3.7-.6-5.2zM15 8.9c-.5.4-1.5.2-2.2-.5-.7-.8-.8-1.8-.3-2.2s1.5-.2 2.2.5c.6.7.8 1.7.3 2.2z" fill="#fff"/><path stroke-miterlimit="10" d="M11.4 9.1l-6.2 6" fill="none" stroke="#fff" stroke-width="1.874" stroke-linecap="square"/><path d="M5.3 16.7l1.8 1.9.6-.7-.8-.9.8-.6.8.8.7-.7-1.7-1.8z" fill="#fff"/><path id="A" d="M15.2 18.4c-4.2 1.8-9-.2-10.9-4.5s0-9.2 4.2-11 9 .2 10.9 4.5c1.8 4.3 0 9.2-4.2 11z" fill="none"/><text><textPath xlink:href="#A" startOffset="67.122298%"><tspan font-size="3" font-family="MyriadPro-Bold" fill="#fff">KEY MGMT</tspan></textPath></text></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/blockchain/ledger.svg b/src/main/webapp/img/lib/ibm/blockchain/ledger.svg index f4fcf395ca2fa2f09505e71bf6f4dc415729cdfc..e5d1ca3b64513b40a15cd85d544bd86346e55ddd 100644 --- a/src/main/webapp/img/lib/ibm/blockchain/ledger.svg +++ b/src/main/webapp/img/lib/ibm/blockchain/ledger.svg @@ -1,101 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - viewBox="0 0 55.000001 55.000001" - enable-background="new 0 0 60.8 62.3" - xml:space="preserve" - sodipodi:docname="ledger.svg" - width="55" - height="55" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata10834"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs10832" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview10830" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="13.916533" - inkscape:cx="27.5" - inkscape:cy="28.050001" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<g - id="g10827" - transform="translate(-2.8999996,-4.2000008)"> - <circle - cx="30.4" - cy="31.700001" - r="27.5" - id="circle10805" - style="fill:#335e80" /> - <g - id="g10825"> - <path - d="M 23,43 V 34.8 L 15.6,30.9 8.2,34.8 V 43 l 7.4,3.9 z M 11.4,41 v -4.1 l 3.9,-2.1 3.9,2.1 V 41 l -3.8,2 z" - id="path10807" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="M 51.8,27.3 V 19.1 L 44.4,15.2 37,19.1 v 8.2 l 7.4,3.9 z m -11.3,-6.2 3.9,-2.1 3.9,2.1 v 4.1 l -3.9,2.1 -3.9,-2.1 z" - id="path10809" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <polygon - points="29.9,42.6 19.3,36.9 19.3,25.4 29.9,19.5 40.5,25.4 40.5,36.9 " - id="polygon10811" - style="fill:#ffffff" /> - <polygon - points="21.2,35.8 29.4,40.4 29.4,30.4 21.2,26.6 " - id="polygon10813" - style="fill:#2d3f4a" /> - <polygon - points="29.9,21.6 21.7,26 29.9,29.8 38.1,26 " - id="polygon10815" - style="fill:#2d3f4a" /> - <polygon - points="30.4,30.4 30.4,40.4 38.7,35.8 38.7,26.6 " - id="polygon10817" - style="fill:#2d3f4a" /> - <polygon - points="29.4,40.4 21.2,35.8 21.2,26.6 29.4,30.4 " - id="polygon10819" - style="fill:#335e80" /> - <polygon - points="38.7,35.8 30.4,40.4 30.4,30.4 38.7,26.6 " - id="polygon10821" - style="fill:#335e80" /> - <polygon - points="38.1,26 29.9,29.8 21.7,26 29.9,21.6 " - id="polygon10823" - style="fill:#335e80" /> - </g> -</g> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="55" height="55"><circle cx="27.5" cy="27.5" r="27.5" fill="#335e80"/><g fill="#fff"><path d="M20.1 38.8v-8.2l-7.4-3.9-7.4 3.9v8.2l7.4 3.9zm-11.6-2v-4.1l3.9-2.1 3.9 2.1v4.1l-3.8 2zm40.4-13.7v-8.2L41.5 11l-7.4 3.9v8.2l7.4 3.9zm-11.3-6.2l3.9-2.1 3.9 2.1V21l-3.9 2.1-3.9-2.1z"/><path d="M27 38.4l-10.6-5.7V21.2L27 15.3l10.6 5.9v11.5z"/></g><path d="M18.3 31.6l8.2 4.6v-10l-8.2-3.8zM27 17.4l-8.2 4.4 8.2 3.8 8.2-3.8zm.5 8.8v10l8.3-4.6v-9.2z" fill="#2d3f4a"/><path d="M26.5 36.2l-8.2-4.6v-9.2l8.2 3.8zm9.3-4.6l-8.3 4.6v-10l8.3-3.8zm-.6-9.8L27 25.6l-8.2-3.8 8.2-4.4z" fill="#335e80"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/blockchain/membership.svg b/src/main/webapp/img/lib/ibm/blockchain/membership.svg index f8631d9af9ec02669ad328b84700ebcd05546989..31f1636df04277b73cea48b1e4be49d05541b02e 100644 --- a/src/main/webapp/img/lib/ibm/blockchain/membership.svg +++ b/src/main/webapp/img/lib/ibm/blockchain/membership.svg @@ -1,88 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - viewBox="0 0 54.400002 54.400002" - enable-background="new 0 0 60.8 62.3" - xml:space="preserve" - sodipodi:docname="Membership.svg" - width="54.400002" - height="54.400002" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata4726"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs4724"> - - - - - - - - - - - - - - </defs><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview4722" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="10.714427" - inkscape:cx="40.881345" - inkscape:cy="11.191358" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<circle - style="fill:#d91f2f" - id="circle4701" - r="27.200001" - cy="27.200001" - cx="27.200001" /><path - d="m 31.900001,32 -16.1,-0.2 c -2.2,0 -4.1,1.7 -4.1,3.9 v 4.1 l 24.1,0.2 v -4.1 c 0.2,-2 -1.7,-3.9 -3.9,-3.9 z" - id="path4703" - inkscape:connector-curvature="0" - style="fill:#ffffff" /><path - d="m 23.900001,27.8 c -5.6,0 -10.2,-4.5 -10.2,-10.2 0,-5.7 4.5,-10.1999996 10.2,-10.1999996 5.7,0 10.2,4.4999996 10.2,10.1999996 0,5.7 -4.6,10.2 -10.2,10.2 z m 0,-19.0999996 c -5,0 -8.9,4.0999996 -8.9,8.8999996 0,4.8 4.1,8.9 8.9,8.9 5,0 8.9,-4.1 8.9,-8.9 0,-4.8 -4,-8.8999996 -8.9,-8.8999996 z" - id="path4705" - inkscape:connector-curvature="0" - style="fill:#ffffff" /><circle - cx="40" - cy="36.800003" - r="9.1000004" - id="circle4711" - style="fill:#e12834" /><path - style="fill:#ffffff" - inkscape:connector-curvature="0" - id="path4713" - d="m 43.17,30.1 c 0,-2.7 -2.269999,-5 -4.969999,-5 -2.7,0 -5,2.3 -5,5 v 2.2 c -1.1,1.1 -1.7,2.7 -1.7,4.4 0,3.6 3,6.6 6.6,6.6 3.6,0 6.6,-3 6.6,-6.6 0,-1.7 -0.430001,-3.1 -1.530001,-4.4 z m -8.169999,0 c 0,-1.7 1.6,-3.3 3.3,-3.3 1.7,0 3.3,1.6 3.3,3.3 v 1 c -0.9,-0.6 -2,-0.9 -3.3,-0.9 -1.3,0 -2.3,0.3 -3.3,0.9 z m 2.1,10.3 -3.1,-3.1 1.1,-1.1 1.9,1.9 4.4,-4.4 1.1,1.1 z" - sodipodi:nodetypes="csscsssccssscscsccccccc" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="54.4" height="54.4"><circle r="27.2" cy="27.2" cx="27.2" fill="#d91f2f"/><path d="M31.9 32l-16.1-.2c-2.2 0-4.1 1.7-4.1 3.9v4.1l24.1.2v-4.1c.2-2-1.7-3.9-3.9-3.9zm-8-4.2a10.18 10.18 0 0 1-10.2-10.2c0-5.7 4.5-10.2 10.2-10.2s10.2 4.5 10.2 10.2a10.18 10.18 0 0 1-10.2 10.2zm0-19.1c-5 0-8.9 4.1-8.9 8.9s4.1 8.9 8.9 8.9c5 0 8.9-4.1 8.9-8.9s-4-8.9-8.9-8.9z" fill="#fff"/><circle cx="40" cy="36.8" r="9.1" fill="#e12834"/><path d="M43.17 30.1c0-2.7-2.27-5-4.97-5s-5 2.3-5 5v2.2c-1.1 1.1-1.7 2.7-1.7 4.4 0 3.6 3 6.6 6.6 6.6s6.6-3 6.6-6.6c0-1.7-.43-3.1-1.53-4.4zm-8.17 0c0-1.7 1.6-3.3 3.3-3.3s3.3 1.6 3.3 3.3v1c-.9-.6-2-.9-3.3-.9s-2.3.3-3.3.9zm2.1 10.3L34 37.3l1.1-1.1 1.9 1.9 4.4-4.4 1.1 1.1z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/blockchain/membership_services_provider_api.svg b/src/main/webapp/img/lib/ibm/blockchain/membership_services_provider_api.svg index a82c58043ab16efddfc80ff46b5e16add21e4e5d..f5da064e1fd873e54b1835bb605183786d2fbc04 100644 --- a/src/main/webapp/img/lib/ibm/blockchain/membership_services_provider_api.svg +++ b/src/main/webapp/img/lib/ibm/blockchain/membership_services_provider_api.svg @@ -1,39 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 65.8 65.5" style="enable-background:new 0 0 65.8 65.5;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#325C80;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS 3</title> -<ellipse class="st0" cx="32.9" cy="32.7" rx="32.9" ry="32.7"/> -<path class="st1" d="M33.9,48.2c0.4-0.4,0.8-0.7,1.2-1c2-1.2,1.2-4.1-0.9-4.9c-0.4-0.1-0.6-0.3-0.7-0.7c-0.1-1.5-1.4-2.6-2.9-2.4 - c0,0-0.1,0-0.1,0c-0.4,0-0.5,0-0.6-0.4c-0.3-1.6-1.7-2.7-3.3-2.4c-0.4,0.1-0.8,0.2-1.2,0.5c-0.6,0.4-0.7,0.2-1-0.3 - c-0.3-0.7-0.9-1.3-1.6-1.7c-0.8-0.5-1.9-0.4-2.7,0.3c-0.5,0.5-1.1,0.9-1.7,1.4c-0.1,0.2-0.4,0.3-0.6,0.1c0,0-0.1-0.1-0.1-0.1 - c-0.5-0.4-0.9-0.8-1.4-1.3c-0.3-0.3-0.3-0.5,0-0.8c2.7-3.5,5.3-7,7.9-10.5c0.2-0.2,0.3-0.4,0.6-0.4c2.3,0,4.5,0.1,6.8,0.4 - c0.2,0,0.5,0.1,0.8,0.2c-1.6,1.5-3.5,2.7-5.7,3.2c-0.8,0.2-1.6,0.4-2.4,0.8c-1,0.4-1.5,1.6-1.1,2.6c0.1,0.3,0.3,0.5,0.5,0.7 - c1.3,1.7,3.5,2.5,5.6,1.9c1.4-0.3,2.7-0.9,3.9-1.8c0.8-0.5,1.7-0.8,2.6-0.8H42c0.2,0,0.4,0,0.5,0.1c2,1.2,3.8,2.8,5.2,4.7 - c0.4,0.6,0.7,1.2,0.8,1.9c0.2,0.8-0.3,1.6-1,1.8c-0.3,0.1-0.7,0.1-1-0.1l-0.3-0.1c-0.1,0.2-0.1,0.5,0,0.7c0.2,1.8-0.7,2.9-2.4,2.9 - c-0.8,0-1.1,0.2-1.2,0.9c-0.1,0.6-0.3,1.1-0.7,1.5c-0.6,1-1.8,1.3-2.8,0.8c0,0,0,0,0,0c-0.4-0.2-0.5-0.2-0.5,0.3c0,1.1-0.9,2-2,2 - C35.6,48.6,34.7,48.5,33.9,48.2z"/> -<path class="st1" d="M52.7,32.7c-0.1,0.1-0.2,0.3-0.3,0.4c-0.8,0.9-1.7,1.8-2.5,2.8c-0.3,0.4-0.5,0.3-0.8-0.1 - c-1.4-2.5-3.7-4.1-6-5.7c-0.2-0.1-0.5-0.2-0.7-0.2c-2.3,0-4.7,0-7,0c-1.1,0-2.1,0.3-3,0.9c-1.4,1.1-3.1,1.7-4.9,1.7 - c-1.2-0.1-2.4-0.7-3.1-1.7c-0.4-0.6-0.3-1,0.3-1.3c0.6-0.3,1.3-0.5,1.9-0.7c2-0.5,3.9-1.5,5.5-2.8c2.4-1.9,5.4-2.8,8.5-2.4 - c1.4,0.2,2.9,0.1,4.3-0.4c0.4-0.2,0.6,0,0.8,0.3c2.2,2.9,4.4,5.9,6.6,8.8C52.4,32.3,52.6,32.5,52.7,32.7z"/> -<path class="st1" d="M13.5,35.5c-0.3,0-0.6-0.1-0.8-0.3C11.1,34,9.5,32.8,8,31.6c-0.5-0.2-0.7-0.8-0.5-1.3c0.1-0.1,0.1-0.2,0.2-0.3 - c3.1-4.1,6.1-8.2,9.2-12.4c0.2-0.5,0.8-0.7,1.3-0.5c0.1,0.1,0.2,0.1,0.3,0.2c1.6,1.2,3.2,2.4,4.8,3.6c0.7,0.5,0.7,1,0.2,1.6 - c-3,4.1-6.1,8.2-9.2,12.3C14.2,35.2,13.9,35.4,13.5,35.5z"/> -<path class="st1" d="M61.7,28.9c0,0.4-0.2,0.8-0.6,1c-1.6,1.1-3.1,2.3-4.7,3.4c-0.7,0.5-1.2,0.5-1.8-0.2c-3.1-4.1-6.1-8.2-9.1-12.3 - c-0.4-0.4-0.4-1-0.1-1.4c0.1-0.1,0.2-0.2,0.3-0.2c1.6-1.2,3.2-2.4,4.8-3.6c0.4-0.4,1-0.4,1.4,0c0.1,0.1,0.2,0.2,0.2,0.3 - c3.1,4.1,6.2,8.2,9.2,12.3C61.5,28.4,61.6,28.7,61.7,28.9z"/> -<path class="st1" d="M28.6,39.4c0,0.4-0.2,0.8-0.5,1c-1.5,1.3-3,2.5-4.5,3.9c-0.7,0.7-1.8,0.7-2.4,0c-0.7-0.7-0.7-1.8,0-2.4 - c0.1-0.1,0.2-0.2,0.3-0.2c1.4-1.2,2.9-2.4,4.4-3.7c0.5-0.5,1.3-0.6,1.9-0.2C28.3,38.1,28.7,38.7,28.6,39.4z"/> -<path class="st1" d="M32.3,42.2c-0.1,0.4-0.3,0.8-0.6,1c-1.3,1.1-2.5,2.2-3.8,3.3c-0.9,0.8-1.8,0.7-2.4,0S25,44.7,25.9,44 - c1.3-1.1,2.5-2.2,3.8-3.2c0.5-0.4,1.1-0.5,1.7-0.2C32,40.9,32.4,41.5,32.3,42.2z"/> -<path class="st1" d="M23.6,37.9c0,0.2-0.1,0.5-0.3,0.6c-0.9,0.7-1.8,1.5-2.6,2.2c-0.3,0.3-0.8,0.3-1.1,0.1c-0.5-0.3-0.9-0.7-1.1-1.2 - c-0.4-0.5-0.2-1.3,0.3-1.6c0,0,0,0,0,0c0.7-0.5,1.4-1.1,2-1.7c0.4-0.5,1.1-0.5,1.6-0.1c0,0,0,0,0.1,0.1 - C23.1,36.6,23.5,37.2,23.6,37.9z"/> -<path class="st1" d="M35,45.2c0,0.3-0.2,0.7-0.4,0.8l-2.7,2.3c-0.4,0.4-1,0.4-1.4,0.1c-0.6-0.3-0.9-0.8-1-1.5c0-0.3,0.2-0.4,0.3-0.5 - c1.1-0.9,2.2-1.8,3.2-2.8c0.1-0.1,0.3-0.2,0.5-0.2C34.3,43.6,34.9,44.3,35,45.2z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 65.8 65.5"><ellipse cx="32.9" cy="32.7" rx="32.9" ry="32.7" fill="#325c80"/><path d="M33.9 48.2c.4-.4.8-.7 1.2-1 2-1.2 1.2-4.1-.9-4.9-.4-.1-.6-.3-.7-.7-.1-1.5-1.4-2.6-2.9-2.4h-.1c-.4 0-.5 0-.6-.4-.3-1.6-1.7-2.7-3.3-2.4-.4.1-.8.2-1.2.5-.6.4-.7.2-1-.3-.3-.7-.9-1.3-1.6-1.7-.8-.5-1.9-.4-2.7.3-.5.5-1.1.9-1.7 1.4-.1.2-.4.3-.6.1l-.1-.1c-.5-.4-.9-.8-1.4-1.3-.3-.3-.3-.5 0-.8L24.2 24c.2-.2.3-.4.6-.4 2.3 0 4.5.1 6.8.4.2 0 .5.1.8.2-1.6 1.5-3.5 2.7-5.7 3.2-.8.2-1.6.4-2.4.8-1 .4-1.5 1.6-1.1 2.6.1.3.3.5.5.7 1.3 1.7 3.5 2.5 5.6 1.9a9.9 9.9 0 0 0 3.9-1.8c.8-.5 1.7-.8 2.6-.8H42c.2 0 .4 0 .5.1 2 1.2 3.8 2.8 5.2 4.7.4.6.7 1.2.8 1.9.2.8-.3 1.6-1 1.8-.3.1-.7.1-1-.1l-.3-.1c-.1.2-.1.5 0 .7.2 1.8-.7 2.9-2.4 2.9-.8 0-1.1.2-1.2.9-.1.6-.3 1.1-.7 1.5-.6 1-1.8 1.3-2.8.8-.4-.2-.5-.2-.5.3 0 1.1-.9 2-2 2-1 .4-1.9.3-2.7 0zm18.8-15.5c-.1.1-.2.3-.3.4l-2.5 2.8c-.3.4-.5.3-.8-.1-1.4-2.5-3.7-4.1-6-5.7-.2-.1-.5-.2-.7-.2h-7a5.29 5.29 0 0 0-3 .9 7.88 7.88 0 0 1-4.9 1.7c-1.2-.1-2.4-.7-3.1-1.7-.4-.6-.3-1 .3-1.3s1.3-.5 1.9-.7c2-.5 3.9-1.5 5.5-2.8 2.4-1.9 5.4-2.8 8.5-2.4 1.4.2 2.9.1 4.3-.4.4-.2.6 0 .8.3l6.6 8.8c.1 0 .3.2.4.4zm-39.2 2.8c-.3 0-.6-.1-.8-.3L8 31.6c-.5-.2-.7-.8-.5-1.3.1-.1.1-.2.2-.3l9.2-12.4c.2-.5.8-.7 1.3-.5.1.1.2.1.3.2l4.8 3.6c.7.5.7 1 .2 1.6l-9.2 12.3c-.1.4-.4.6-.8.7zm48.2-6.6a1.1 1.1 0 0 1-.6 1l-4.7 3.4c-.7.5-1.2.5-1.8-.2l-9.1-12.3a1.07 1.07 0 0 1-.1-1.4c.1-.1.2-.2.3-.2l4.8-3.6c.4-.4 1-.4 1.4 0 .1.1.2.2.2.3l9.2 12.3c.2.2.3.5.4.7zM28.6 39.4c0 .4-.2.8-.5 1l-4.5 3.9c-.7.7-1.8.7-2.4 0-.7-.7-.7-1.8 0-2.4.1-.1.2-.2.3-.2l4.4-3.7c.5-.5 1.3-.6 1.9-.2.5.3.9.9.8 1.6zm3.7 2.8c-.1.4-.3.8-.6 1l-3.8 3.3c-.9.8-1.8.7-2.4 0s-.5-1.8.4-2.5l3.8-3.2c.5-.4 1.1-.5 1.7-.2s1 .9.9 1.6zm-8.7-4.3c0 .2-.1.5-.3.6l-2.6 2.2c-.3.3-.8.3-1.1.1-.5-.3-.9-.7-1.1-1.2-.4-.5-.2-1.3.3-1.6a16.32 16.32 0 0 0 2-1.7c.4-.5 1.1-.5 1.6-.1l.1.1c.6.3 1 .9 1.1 1.6zM35 45.2c0 .3-.2.7-.4.8l-2.7 2.3a1.07 1.07 0 0 1-1.4.1c-.6-.3-.9-.8-1-1.5 0-.3.2-.4.3-.5l3.2-2.8c.1-.1.3-.2.5-.2.8.2 1.4.9 1.5 1.8z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/blockchain/message_bus.svg b/src/main/webapp/img/lib/ibm/blockchain/message_bus.svg index 25b9591d146e6aaa5fa0f8aced9c07fcd304a27a..c24f1ac088cb342c8969d89105a83b78e52d1f02 100644 --- a/src/main/webapp/img/lib/ibm/blockchain/message_bus.svg +++ b/src/main/webapp/img/lib/ibm/blockchain/message_bus.svg @@ -1,91 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - viewBox="0 0 55.000001 55.000001" - enable-background="new 0 0 60.8 62.3" - xml:space="preserve" - sodipodi:docname="Message Bus.svg" - width="55" - height="55" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata5424"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs5422" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview5420" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="5.3572136" - inkscape:cx="32.313438" - inkscape:cy="25.526304" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<g - id="g5417" - transform="translate(-3.1000004,-3.2999992)"> - <g - id="g5403"> - <circle - cx="30.6" - cy="30.799999" - r="27.5" - id="circle5401" - style="fill:#90c740" /> - </g> - <g - id="g5415"> - <path - d="m 9.9,27.1 c 2.4,1.5 4.7,3 7.3,4.6 -2.6,1.6 -4.9,3.1 -7.3,4.6 0,-3 0,-6.1 0,-9.2 z" - id="path5405" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="m 27.7,16.2 c 2,0 3.9,0 5.9,0 0,10.1 0,20.1 0,30.2 -1.9,0 -3.9,0 -5.9,0 0,-10.1 0,-20.1 0,-30.2 z" - id="path5407" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="m 19.4,16.2 c 2,0 3.9,0 5.8,0 0,10.1 0,20.1 0,30.1 -1.9,0 -3.8,0 -5.8,0 0,-10 0,-20 0,-30.1 z" - id="path5409" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="m 36.1,46.4 c 0,-10.1 0,-20.1 0,-30.1 1.9,0 3.9,0 5.9,0 0,10 0,20.1 0,30.1 -2,0 -3.9,0 -5.9,0 z" - id="path5411" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="m 44.4,36.3 c 0,-3.1 0,-6 0,-9.2 2.4,1.6 4.7,3 7.1,4.6 -2.4,1.6 -4.6,3.1 -7.1,4.6 z" - id="path5413" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - </g> -</g> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="55" height="55"><circle cx="27.5" cy="27.5" r="27.5" fill="#90c740"/><path d="M6.8 23.8l7.3 4.6L6.8 33v-9.2zm17.8-10.9h5.9v30.2h-5.9V12.9zm-8.3 0h5.8V43h-5.8V12.9zM33 43.1V13h5.9v30.1H33zM41.3 33v-9.2l7.1 4.6-7.1 4.6z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/blockchain/node.svg b/src/main/webapp/img/lib/ibm/blockchain/node.svg index b5a2389f8f2a2bc5e9fed2b5514da01cb84288e1..a80ea75827c59cea9ab82ddfbe7b82bc1e332018 100644 --- a/src/main/webapp/img/lib/ibm/blockchain/node.svg +++ b/src/main/webapp/img/lib/ibm/blockchain/node.svg @@ -1,137 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - viewBox="0 0 55.000001 55.000001" - enable-background="new 0 0 60.8 62.3" - xml:space="preserve" - sodipodi:docname="Node.svg" - width="55" - height="55" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata6074"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs6072" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview6070" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="10.714427" - inkscape:cx="17.644835" - inkscape:cy="22.874386" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<g - id="g6067" - transform="translate(-3,-4.2000008)"> - <circle - cx="30.5" - cy="31.700001" - r="27.5" - id="circle6029" - style="clip-rule:evenodd;fill:#a9236e;fill-rule:evenodd" /> - <g - id="g6065"> - <g - id="g6043"> - <path - d="m 35,11.7 c 0.3,0.1 0.6,0.2 0.8,0.5 0.2,0.2 0.3,0.5 0.3,0.8 0,2.5 0,5.1 0,7.6 v 0 C 36,20.4 35.8,20.2 35.6,20 c -0.1,-0.1 -0.2,-0.2 -0.3,-0.2 -0.1,0 -0.2,-0.1 -0.2,-0.2 0,-1.1 0,-2.1 0,-3.2 0,-1.1 0,-2.1 0,-3.2 0,-0.4 -0.1,-0.5 -0.5,-0.5 -3.2,0 -6.4,0 -9.6,0 -0.4,0 -0.5,0.1 -0.5,0.5 0,4.3 0,8.5 0,12.8 0,0.4 0.1,0.5 0.5,0.5 0.9,0 1.7,0 2.6,0 0.2,0 0.3,0 0.4,0.1 0.1,0.1 0.3,0.1 0.4,0.2 -0.2,0.2 -0.4,0.4 -0.6,0.6 h -0.1 c -1,0 -1.9,0 -2.9,0 -0.6,0 -1.2,-0.5 -1.3,-1.1 v -0.1 c 0,-4.4 0,-8.9 0,-13.3 0.1,-0.2 0.2,-0.5 0.3,-0.7 0.2,-0.3 0.5,-0.4 0.9,-0.5 3.5,0 6.9,0 10.3,0 z" - id="path6031" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="m 34.8,28 c -0.2,0 -0.5,-0.1 -0.8,-0.1 -0.2,0 -0.4,0 -0.5,0.2 -0.2,0.2 -0.3,0.4 -0.5,0.5 -0.3,0.3 -0.6,0.3 -0.8,0 C 32,28.4 31.8,28.2 31.7,28.1 31.6,28 31.4,27.9 31.2,27.9 31,27.9 30.7,28 30.5,28 c -0.4,0.1 -0.7,-0.1 -0.7,-0.5 0,-0.2 -0.1,-0.5 -0.1,-0.7 0,-0.2 -0.1,-0.3 -0.3,-0.4 -0.2,-0.1 -0.4,-0.2 -0.7,-0.3 -0.4,-0.2 -0.5,-0.5 -0.3,-0.8 0.1,-0.2 0.2,-0.4 0.3,-0.6 0.1,-0.2 0.1,-0.4 0,-0.6 -0.1,-0.2 -0.2,-0.4 -0.3,-0.6 -0.2,-0.4 -0.1,-0.7 0.3,-0.9 0.2,-0.1 0.4,-0.2 0.6,-0.3 0.2,-0.1 0.3,-0.3 0.3,-0.5 0,-0.2 0.1,-0.5 0.1,-0.7 0.1,-0.3 0.3,-0.5 0.7,-0.5 0.2,0 0.5,0.1 0.7,0.1 0.2,0 0.4,0 0.6,-0.2 0.2,-0.2 0.3,-0.4 0.5,-0.5 0.3,-0.3 0.6,-0.3 0.8,0 0.2,0.2 0.3,0.3 0.5,0.5 0.2,0.2 0.4,0.2 0.6,0.2 0.2,0 0.5,-0.1 0.7,-0.1 0.3,-0.1 0.6,0.1 0.7,0.5 0,0.2 0.1,0.5 0.1,0.7 0,0.2 0.1,0.4 0.3,0.5 0.2,0.1 0.4,0.2 0.7,0.3 0.3,0.2 0.4,0.4 0.3,0.8 -0.1,0.2 -0.2,0.4 -0.3,0.6 -0.1,0.2 -0.1,0.4 0,0.6 0.1,0.2 0.2,0.4 0.3,0.6 0.2,0.3 0.1,0.6 -0.3,0.8 -0.2,0.1 -0.4,0.2 -0.7,0.3 -0.2,0.1 -0.3,0.3 -0.3,0.5 0,0.2 -0.1,0.5 -0.1,0.7 -0.1,0.3 -0.4,0.5 -0.7,0.5 z m -2.3,-0.6 c 1.8,0 3.2,-1.4 3.2,-3.2 0,-1.8 -1.4,-3.2 -3.2,-3.2 -1.8,0 -3.2,1.4 -3.2,3.2 0,1.7 1.4,3.2 3.2,3.2 z" - id="path6033" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="m 29.8,14.9 c 1.1,0 2.3,0 3.4,0 0.1,0 0.2,0 0.3,0 0.2,0.1 0.3,0.3 0.3,0.5 0,0.2 -0.2,0.4 -0.5,0.4 -2.2,0 -4.4,0 -6.6,0 -0.1,0 -0.2,0 -0.3,0 -0.3,0 -0.5,-0.2 -0.5,-0.5 0,-0.3 0.2,-0.5 0.5,-0.5 1.1,0 2.3,0.1 3.4,0.1 z" - id="path6035" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="m 29.9,18.1 c -1.2,0 -2.3,0 -3.5,0 -0.3,0 -0.5,-0.2 -0.5,-0.4 0,-0.2 0.2,-0.4 0.4,-0.5 h 0.1 c 2.3,0 4.5,0 6.8,0 0.1,0 0.2,0 0.3,0 0.2,0.1 0.3,0.3 0.3,0.5 0,0.2 -0.2,0.4 -0.5,0.4 -1.1,0 -2.3,0 -3.4,0 z" - id="path6037" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="m 35.8,27.1 c 0.3,0.3 0.5,0.5 0.8,0.8 0.2,0.2 0.5,0.4 0.7,0.7 0.1,0.1 0.1,0.2 0.1,0.3 0,0.1 -0.1,0.2 -0.3,0.2 -0.3,0 -0.5,0.1 -0.8,0.1 -0.1,0 -0.1,0.1 -0.2,0.2 0,0.3 -0.1,0.5 -0.1,0.8 -0.1,0.3 -0.3,0.4 -0.5,0.2 -0.6,-0.6 -1.3,-1.3 -1.9,-1.9 v 0 c 0.1,-0.2 0.2,-0.2 0.4,-0.2 0.2,0 0.5,0.1 0.7,0.1 0.5,0.1 0.9,-0.2 1,-0.7 0.1,-0.2 0.1,-0.4 0.1,-0.6 z" - id="path6039" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="m 29.2,27.1 c 0,0.2 0,0.3 0.1,0.5 0.1,0.5 0.5,0.8 1,0.7 0.2,0 0.4,-0.1 0.7,-0.1 0.2,0 0.3,0 0.4,0.2 l -0.1,0.1 c -0.6,0.6 -1.2,1.2 -1.8,1.8 -0.1,0.1 -0.2,0.2 -0.4,0.1 -0.2,-0.1 -0.2,-0.2 -0.2,-0.3 0,-0.2 -0.1,-0.5 -0.1,-0.7 0,-0.1 -0.1,-0.1 -0.1,-0.1 -0.3,0 -0.5,-0.1 -0.8,-0.1 -0.3,-0.1 -0.3,-0.3 -0.2,-0.5 0.5,-0.6 1,-1.1 1.5,-1.6 z" - id="path6041" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - </g> - <g - id="g6063"> - <path - d="m 26,49.5 v -5.3 l -4.7,-2.5 -4.7,2.5 v 5.2 l 4.7,2.5 z m -7.2,-1.4 v -2.6 l 2.5,-1.3 2.5,1.3 v 2.6 l -2.5,1.3 z" - id="path6045" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="M 44.4,39.5 V 34.2 L 39.7,31.7 35,34.2 v 5.2 l 4.7,2.5 z m -7.2,-3.9 2.5,-1.3 2.5,1.3 v 2.6 l -2.5,1.3 -2.5,-1.3 z" - id="path6047" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <polygon - points="30.5,49.2 23.8,45.5 23.8,38.2 30.5,34.6 37.2,38.2 37.2,45.5 " - id="polygon6049" - style="fill:#ffffff" /> - <polygon - points="24.9,44.9 30.2,47.7 30.2,41.5 24.9,39.1 " - id="polygon6051" - style="fill:#2d3f4a" /> - <polygon - points="30.5,35.8 25.3,38.6 30.5,41 35.7,38.6 " - id="polygon6053" - style="fill:#2d3f4a" /> - <polygon - points="30.8,41.5 30.8,47.7 36,44.8 36,44.9 36,39.1 " - id="polygon6055" - style="fill:#2d3f4a" /> - <polygon - points="30.2,47.7 24.9,44.9 24.9,39.1 30.2,41.5 " - id="polygon6057" - style="fill:#a9236e" /> - <polygon - points="36,44.9 30.8,47.7 30.8,41.5 36,39.1 " - id="polygon6059" - style="fill:#a9236e" /> - <polygon - points="35.7,38.6 30.5,41 25.3,38.6 30.5,35.8 " - id="polygon6061" - style="fill:#a9236e" /> - </g> - </g> -</g> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="55" height="55"><circle cx="27.5" cy="27.5" r="27.5" fill="#a9236e" fill-rule="evenodd"/><g fill="#fff"><path d="M32 7.5c.3.1.6.2.8.5.2.2.3.5.3.8v7.6c-.1-.2-.3-.4-.5-.6-.1-.1-.2-.2-.3-.2s-.2-.1-.2-.2V9c0-.4-.1-.5-.5-.5H22c-.4 0-.5.1-.5.5v12.8c0 .4.1.5.5.5h2.6c.2 0 .3 0 .4.1s.3.1.4.2l-.6.6h-3c-.6 0-1.2-.5-1.3-1.1V8.7c.1-.2.2-.5.3-.7.2-.3.5-.4.9-.5H32zm-.2 16.3c-.2 0-.5-.1-.8-.1-.2 0-.4 0-.5.2-.2.2-.3.4-.5.5-.3.3-.6.3-.8 0l-.5-.5c-.1-.1-.3-.2-.5-.2s-.5.1-.7.1c-.4.1-.7-.1-.7-.5 0-.2-.1-.5-.1-.7s-.1-.3-.3-.4-.4-.2-.7-.3c-.4-.2-.5-.5-.3-.8l.3-.6c.1-.2.1-.4 0-.6l-.3-.6c-.2-.4-.1-.7.3-.9l.6-.3a.55.55 0 0 0 .3-.5c0-.2.1-.5.1-.7.1-.3.3-.5.7-.5.2 0 .5.1.7.1s.4 0 .6-.2.3-.4.5-.5c.3-.3.6-.3.8 0l.5.5c.2.2.4.2.6.2s.5-.1.7-.1c.3-.1.6.1.7.5 0 .2.1.5.1.7a.55.55 0 0 0 .3.5c.2.1.4.2.7.3.3.2.4.4.3.8l-.3.6c-.1.2-.1.4 0 .6l.3.6c.2.3.1.6-.3.8-.2.1-.4.2-.7.3a.55.55 0 0 0-.3.5c0 .2-.1.5-.1.7-.1.3-.4.5-.7.5zm-2.3-.6c1.8 0 3.2-1.4 3.2-3.2s-1.4-3.2-3.2-3.2-3.2 1.4-3.2 3.2c0 1.7 1.4 3.2 3.2 3.2zm-2.7-12.5h3.7a.55.55 0 0 1 .3.5c0 .2-.2.4-.5.4h-6.9a.47.47 0 0 1-.5-.5.47.47 0 0 1 .5-.5l3.4.1zm.1 3.2h-3.5c-.3 0-.5-.2-.5-.4s.2-.4.4-.5h7.2a.55.55 0 0 1 .3.5c0 .2-.2.4-.5.4h-3.4z"/><path d="M32.8 22.9l.8.8c.2.2.5.4.7.7.1.1.1.2.1.3s-.1.2-.3.2c-.3 0-.5.1-.8.1-.1 0-.1.1-.2.2 0 .3-.1.5-.1.8-.1.3-.3.4-.5.2l-1.9-1.9c.1-.2.2-.2.4-.2s.5.1.7.1c.5.1.9-.2 1-.7.1-.2.1-.4.1-.6zm-6.6 0a.9.9 0 0 0 .1.5c.1.5.5.8 1 .7.2 0 .4-.1.7-.1.2 0 .3 0 .4.2l-1.9 1.9c-.1.1-.2.2-.4.1s-.2-.2-.2-.3c0-.2-.1-.5-.1-.7 0-.1-.1-.1-.1-.1-.3 0-.5-.1-.8-.1-.3-.1-.3-.3-.2-.5.5-.6 1-1.1 1.5-1.6zM23 45.3V40l-4.7-2.5-4.7 2.5v5.2l4.7 2.5zm-7.2-1.4v-2.6l2.5-1.3 2.5 1.3v2.6l-2.5 1.3zm25.6-8.6V30l-4.7-2.5L32 30v5.2l4.7 2.5zm-7.2-3.9l2.5-1.3 2.5 1.3V34l-2.5 1.3-2.5-1.3z"/><path d="M27.5 45l-6.7-3.7V34l6.7-3.6 6.7 3.6v7.3z"/></g><path d="M21.9 40.7l5.3 2.8v-6.2l-5.3-2.4zm5.6-9.1l-5.2 2.8 5.2 2.4 5.2-2.4zm.3 5.7v6.2l5.2-2.9v.1-5.8z" fill="#2d3f4a"/><path d="M27.2 43.5l-5.3-2.8v-5.8l5.3 2.4zm5.8-2.8l-5.2 2.8v-6.2l5.2-2.4zm-.3-6.3l-5.2 2.4-5.2-2.4 5.2-2.8z" fill="#a9236e"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/blockchain/services.svg b/src/main/webapp/img/lib/ibm/blockchain/services.svg index 9b61eaee3331e4122e94554eb000a19602a9779a..d9c407a80d61fd34efd0aedc1bb7881a0c84abb7 100644 --- a/src/main/webapp/img/lib/ibm/blockchain/services.svg +++ b/src/main/webapp/img/lib/ibm/blockchain/services.svg @@ -1,34 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 65 65" style="enable-background:new 0 0 65 65;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#9BCA52;} - .st1{fill:none;stroke:#FFFFFF;stroke-width:0.75;stroke-miterlimit:10;} - .st2{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS 3</title> -<ellipse transform="matrix(0.7071 -0.7071 0.7071 0.7071 -13.4619 32.5)" class="st0" cx="32.5" cy="32.5" rx="32.5" ry="32.5"/> -<path class="st1" d="M25.7,44.2c0-0.6,0-1.2,0-1.8s0.5-0.9,1-0.5l5.5,3.7c0.5,0.3,0.5,0.7,0,1l-5.5,3.7c-0.5,0.3-0.9,0.1-1-0.5 - s0-1.2,0-1.8h-0.5h-7.3c-1,0.1-2-0.6-2.1-1.6c0-0.2,0-0.3,0-0.5c0-3.6,0-7.2,0-10.7c0-0.8,0.3-1,1-1h1.6c0.7,0,1,0.3,1,1 - c0,2.9,0,5.7,0,8.6c0,0.2,0,0.4,0,0.6L25.7,44.2z"/> -<path class="st2" d="M51.2,49.8c0.2-0.4,0.3-0.8,0.5-1.2l3.2-0.9l-0.4-4.1l-3.1-0.4c-0.4-0.9-0.9-1.7-1.6-2.4l0.7-2.9l-3.7-1.8 - L45,38.5c-0.9-0.1-1.9,0-2.8,0.2l-2.3-2.2l-3.5,2.2l1.3,3.1c-0.5,0.7-0.9,1.4-1.1,2.2l-3.2,0.9l0.4,4.1l3.1,0.5 - c0.4,0.9,0.9,1.7,1.6,2.4l-0.7,2.9l3.7,1.7l1.9-2.3c0.9,0.1,1.9,0,2.8-0.2l2.3,2.2l3.5-2.2l-1.3-3C50.8,50.5,51.1,50.2,51.2,49.8z - M51,53.7l-2.5,1.6l-1.8-1.8l-0.3-0.3L46,53.3c-0.8,0.2-1.7,0.3-2.6,0.2l-0.4,0l-0.2,0.3l-1.5,1.9l-2.7-1.3l0.5-2.4l0.1-0.4L39,51.3 - c-0.6-0.6-1.1-1.4-1.4-2.2l-0.2-0.4l-0.4,0l-2.6-0.4l-0.3-3l2.7-0.7l0.4-0.1l0.1-0.4c0.2-0.7,0.6-1.4,1-2l0.2-0.3l-0.2-0.3L37.3,39 - l2.5-1.5l1.9,1.8l0.3,0.3l0.4-0.1c0.8-0.2,1.7-0.3,2.6-0.2h0.4l0.2-0.3l1.5-1.9l2.7,1.3l-0.5,2.4l-0.1,0.4l0.3,0.3 - c0.6,0.6,1.1,1.4,1.4,2.2l0.2,0.4l0.4,0l2.6,0.4l0.3,3L51.5,48l-0.4,0.1L51,48.4c-0.2,0.7-0.6,1.4-1,2l-0.2,0.3l0.2,0.3L51,53.7z"/> -<path class="st2" d="M46,42.6c-2-1-4.5-0.2-5.5,1.9S40.4,49,42.4,50c2,1,4.5,0.2,5.5-1.9C48.9,46.1,48.1,43.7,46,42.6 - C46,42.7,46,42.7,46,42.6z M43.6,47.6c-0.7-0.3-1-1.2-0.6-1.8c0.3-0.7,1.2-1,1.8-0.6c0.7,0.3,1,1.1,0.6,1.8 - C45.1,47.6,44.3,47.9,43.6,47.6C43.6,47.6,43.6,47.6,43.6,47.6L43.6,47.6z"/> -<path class="st2" d="M23.9,24.2c0-0.3,0-0.7-0.1-1l2-1.7l-1.7-2.7l-2.3,0.8c-0.6-0.5-1.2-0.8-2-1.1l-0.5-2.3h-3.2l-0.5,2.3 - c-0.7,0.3-1.3,0.6-1.9,1.1l-2.3-0.8l-1.7,2.7l2,1.7c-0.1,0.6-0.1,1.3,0,1.9l-2,1.7l1.7,2.7l2.3-0.8c0.6,0.5,1.2,0.9,1.9,1.1l0.5,2.3 - h3.2l0.5-2.3c0.7-0.3,1.3-0.6,1.9-1.1l2.3,0.8l1.7-2.7l-2-1.7C23.9,24.9,23.9,24.5,23.9,24.2z M25.1,27l-1.2,2L22,28.3l-0.3-0.1 - l-0.2,0.2c-0.5,0.4-1.1,0.8-1.7,1l-0.3,0.1l-0.1,0.3L19,31.7h-2.4l-0.4-1.8l-0.1-0.3l-0.3-0.1c-0.6-0.2-1.2-0.6-1.7-1l-0.2-0.2 - l-0.3,0.1L11.7,29l-1.2-2l1.6-1.4l0.2-0.2v-0.3c-0.1-0.6-0.1-1.2,0-1.8V23l-0.2-0.2l-1.6-1.4l1.2-2l1.9,0.6l0.3,0.1l0.2-0.2 - c0.5-0.4,1.1-0.8,1.7-1l0.3-0.1l0.1-0.3l0.4-1.8H19l0.4,1.8l0.1,0.3l0.3,0.1c0.6,0.2,1.2,0.6,1.7,1l0.2,0.2L22,20l1.9-0.6l1.2,2 - l-1.6,1.4L23.3,23v0.3c0.1,0.6,0.1,1.2,0,1.8v0.3l0.2,0.2L25.1,27z"/> -<path class="st2" d="M17.8,21c-1.8,0-3.2,1.4-3.2,3.2c0,1.8,1.4,3.2,3.2,3.2S21,26,21,24.2S19.6,21,17.8,21L17.8,21z M17.8,25.2 - c-0.6,0-1.1-0.5-1.1-1.1s0.5-1.1,1.1-1.1c0.6,0,1.1,0.5,1.1,1.1l0,0C18.9,24.8,18.4,25.2,17.8,25.2z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 65 65"><circle transform="matrix(.7071 -.7071 .7071 .7071 -13.4619 32.5)" cx="32.5" cy="32.5" r="32.5" fill="#9bca52"/><path d="M25.7 44.2v-1.8c0-.6.5-.9 1-.5l5.5 3.7c.5.3.5.7 0 1l-5.5 3.7c-.5.3-.9.1-1-.5s0-1.2 0-1.8h-7.8c-1 .1-2-.6-2.1-1.6V35.2c0-.8.3-1 1-1h1.6c.7 0 1 .3 1 1v9.2l6.3-.2z" fill="none" stroke="#fff" stroke-width=".75" stroke-miterlimit="10"/><path d="M51.2 49.8c.2-.4.3-.8.5-1.2l3.2-.9-.4-4.1-3.1-.4c-.4-.9-.9-1.7-1.6-2.4l.7-2.9-3.7-1.8-1.8 2.4c-.9-.1-1.9 0-2.8.2l-2.3-2.2-3.5 2.2 1.3 3.1c-.5.7-.9 1.4-1.1 2.2l-3.2.9.4 4.1 3.1.5c.4.9.9 1.7 1.6 2.4l-.7 2.9 3.7 1.7 1.9-2.3c.9.1 1.9 0 2.8-.2l2.3 2.2L52 54l-1.3-3c.1-.5.4-.8.5-1.2zm-.2 3.9l-2.5 1.6-2.1-2.1-.4.1c-.8.2-1.7.3-2.6.2H43l-.2.3-1.5 1.9-2.7-1.3.5-2.4.1-.4-.2-.3c-.6-.6-1.1-1.4-1.4-2.2l-.2-.4H37l-2.6-.4-.3-3 2.7-.7.4-.1.1-.4c.2-.7.6-1.4 1-2l.2-.3-.2-.3-1-2.5 2.5-1.5 1.9 1.8.3.3.4-.1c.8-.2 1.7-.3 2.6-.2h.4l.2-.3 1.5-1.9 2.7 1.3-.5 2.4-.1.4.3.3c.6.6 1.1 1.4 1.4 2.2l.2.4h.4l2.6.4.3 3-2.9.5-.4.1-.1.3c-.2.7-.6 1.4-1 2l-.2.3.2.3 1 2.7zm-5-11.1c-2-1-4.5-.2-5.5 1.9s-.1 4.5 1.9 5.5 4.5.2 5.5-1.9c1-2 .2-4.4-1.9-5.5 0 .1 0 .1 0 0zm-2.4 5c-.7-.3-1-1.2-.6-1.8.3-.7 1.2-1 1.8-.6.7.3 1 1.1.6 1.8-.3.6-1.1.9-1.8.6zM23.9 24.2c0-.3 0-.7-.1-1l2-1.7-1.7-2.7-2.3.8c-.6-.5-1.2-.8-2-1.1l-.5-2.3h-3.2l-.5 2.3c-.7.3-1.3.6-1.9 1.1l-2.3-.8-1.7 2.7 2 1.7c-.1.6-.1 1.3 0 1.9l-2 1.7 1.7 2.7 2.3-.8c.6.5 1.2.9 1.9 1.1l.5 2.3h3.2l.5-2.3c.7-.3 1.3-.6 1.9-1.1l2.3.8 1.7-2.7-2-1.7c.2-.2.2-.6.2-.9zm1.2 2.8l-1.2 2-1.9-.7-.3-.1-.2.2c-.5.4-1.1.8-1.7 1l-.3.1-.1.3-.4 1.9h-2.4l-.4-1.8-.1-.3-.3-.1c-.6-.2-1.2-.6-1.7-1l-.2-.2-.3.1-1.9.6-1.2-2 1.6-1.4.2-.2v-.3c-.1-.6-.1-1.2 0-1.8V23l-.2-.2-1.6-1.4 1.2-2 1.9.6.3.1.2-.2c.5-.4 1.1-.8 1.7-1l.3-.1.1-.3.4-1.8H19l.4 1.8.1.3.3.1c.6.2 1.2.6 1.7 1l.2.2.3-.1 1.9-.6 1.2 2-1.6 1.4-.2.2v.3c.1.6.1 1.2 0 1.8v.3l.2.2 1.6 1.4zm-7.3-6c-1.8 0-3.2 1.4-3.2 3.2s1.4 3.2 3.2 3.2S21 26 21 24.2 19.6 21 17.8 21zm0 4.2a1.11 1.11 0 0 1-1.1-1.1 1.11 1.11 0 0 1 1.1-1.1 1.11 1.11 0 0 1 1.1 1.1c0 .7-.5 1.1-1.1 1.1z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/blockchain/smart_contract.svg b/src/main/webapp/img/lib/ibm/blockchain/smart_contract.svg index de4282888835c57938024cfe6431864b9555fd4f..b912689713fab6d2d250f2ec120ded39687c6c5a 100644 --- a/src/main/webapp/img/lib/ibm/blockchain/smart_contract.svg +++ b/src/main/webapp/img/lib/ibm/blockchain/smart_contract.svg @@ -1,93 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - viewBox="0 0 55.000001 55.000001" - enable-background="new 0 0 60.8 62.3" - xml:space="preserve" - sodipodi:docname="Smart Contract.svg" - width="55" - height="55" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata6761"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs6759" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview6757" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="7.5762441" - inkscape:cx="33.298506" - inkscape:cy="25.772606" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<g - id="g6754" - transform="translate(-4.7000008,-2.8999996)"> - <circle - cx="32.200001" - cy="30.4" - r="27.5" - id="circle6738" - style="fill:#eec11b" /> - <g - id="g6752"> - <path - d="m 43.9,10.5 c 0.6,0.2 1.3,0.5 1.7,0.9 0.5,0.5 0.6,1.1 0.6,1.7 0,5.2 0,10.6 0,15.8 v 0 c -0.3,-0.5 -0.6,-0.8 -0.9,-1.3 -0.2,-0.2 -0.5,-0.3 -0.8,-0.5 -0.3,-0.2 -0.3,-0.2 -0.3,-0.5 0,-2.2 0,-4.4 0,-6.6 0,-2.2 0,-4.4 0,-6.6 0,-0.8 -0.3,-0.9 -0.9,-0.9 -6.6,0 -13.3,0 -20.1,0 -0.8,0 -1.1,0.3 -1.1,0.9 0,8.8 0,17.7 0,26.5 0,0.8 0.3,0.9 0.9,0.9 1.7,0 3.6,0 5.4,0 0.3,0 0.6,0 0.9,0.3 0.3,0.2 0.6,0.3 0.9,0.5 -0.5,0.5 -0.8,0.8 -1.3,1.3 0,0 -0.2,0 -0.3,0 -2.1,0 -4,0 -6,0 -1.4,0 -2.4,-0.9 -2.7,-2.4 v -0.2 c 0,-9.2 0,-18.5 0,-27.7 0.2,-0.5 0.3,-0.9 0.6,-1.4 0.3,-0.6 1.1,-0.9 1.7,-1.1 7.3,0.4 14.6,0.4 21.7,0.4 z" - id="path6740" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="m 43.4,44.5 c -0.5,0 -1.1,-0.2 -1.6,-0.3 -0.5,-0.2 -0.8,0 -1.1,0.3 -0.3,0.3 -0.8,0.8 -1.1,1.1 -0.6,0.6 -1.1,0.6 -1.7,0 -0.3,-0.3 -0.8,-0.8 -1.1,-1.1 -0.3,-0.3 -0.6,-0.5 -1.1,-0.3 -0.5,0.2 -0.9,0.2 -1.4,0.3 -0.9,0.2 -1.4,-0.2 -1.6,-1.1 0,-0.5 -0.2,-0.9 -0.2,-1.4 0,-0.5 -0.3,-0.8 -0.6,-0.9 -0.5,-0.2 -0.9,-0.5 -1.4,-0.6 -0.8,-0.5 -0.9,-0.9 -0.6,-1.7 0.2,-0.5 0.5,-0.8 0.6,-1.3 0.3,-0.5 0.2,-0.8 0,-1.3 -0.2,-0.5 -0.5,-0.8 -0.6,-1.3 -0.5,-0.8 -0.3,-1.4 0.6,-1.7 0.5,-0.2 0.8,-0.5 1.3,-0.6 0.5,-0.2 0.6,-0.5 0.8,-0.9 0,-0.5 0.2,-1.1 0.2,-1.6 0.2,-0.6 0.6,-1.1 1.4,-0.9 0.5,0.2 0.9,0.2 1.4,0.3 0.5,0 0.9,0 1.3,-0.3 0.3,-0.3 0.6,-0.8 1.1,-1.1 0.5,-0.5 1.1,-0.5 1.7,0 0.3,0.3 0.8,0.8 1.1,1.1 0.3,0.3 0.8,0.5 1.3,0.3 0.5,-0.2 0.9,-0.2 1.4,-0.3 0.6,-0.2 1.3,0.3 1.4,0.9 0.2,0.5 0.2,0.9 0.2,1.6 0,0.5 0.3,0.8 0.8,0.9 0.5,0.2 0.9,0.5 1.4,0.6 0.6,0.3 0.8,0.9 0.5,1.6 -0.2,0.5 -0.5,0.9 -0.6,1.4 -0.2,0.5 -0.2,0.8 0,1.3 0.3,0.5 0.5,0.9 0.6,1.4 0.3,0.6 0.2,1.3 -0.5,1.6 -0.5,0.3 -0.9,0.5 -1.4,0.6 -0.5,0.2 -0.6,0.5 -0.6,0.9 0,0.5 -0.2,1.1 -0.2,1.6 -0.6,0.4 -1.1,0.9 -1.7,0.9 z m -4.7,-1.4 c 3.6,0 6.8,-3 6.8,-6.6 0,-3.6 -3,-6.8 -6.6,-6.8 -3.8,0 -6.8,3 -6.8,6.6 -0.2,3.8 2.8,6.8 6.6,6.8 z" - id="path6742" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="m 33.1,17 c 2.4,0 4.7,0 7.1,0 0.2,0 0.5,0 0.6,0.2 0.5,0.2 0.6,0.6 0.6,1.1 -0.2,0.5 -0.5,0.8 -1.1,0.8 -4.6,0 -9.2,0 -13.9,0 -0.2,0 -0.5,0 -0.6,0 -0.6,0 -0.9,-0.5 -0.9,-0.9 0,-0.5 0.5,-0.9 0.9,-0.9 C 28.2,17 30.6,17 33.1,17 Z" - id="path6744" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="m 33.1,23.8 c -2.4,0 -4.7,0 -7.3,0 -0.6,0 -1.1,-0.3 -1.1,-0.9 0,-0.5 0.3,-0.9 0.9,-0.9 0.2,0 0.2,0 0.3,0 4.7,0 9.5,0 14.2,0 0.2,0 0.3,0 0.5,0 0.5,0.2 0.8,0.6 0.6,1.1 0,0.5 -0.5,0.8 -0.9,0.8 -2.3,-0.1 -4.8,-0.1 -7.2,-0.1 z" - id="path6746" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="m 45.6,42.6 c 0.6,0.6 1.1,1.1 1.6,1.6 0.5,0.5 0.9,0.9 1.4,1.4 0.2,0.2 0.3,0.5 0.2,0.6 0,0.3 -0.3,0.5 -0.6,0.5 -0.5,0.2 -1.1,0.2 -1.6,0.3 -0.2,0 -0.3,0.2 -0.3,0.3 0,0.5 -0.2,1.1 -0.3,1.6 -0.2,0.6 -0.6,0.8 -1.1,0.3 -1.3,-1.3 -2.7,-2.7 -4,-4 v 0 c 0.2,-0.3 0.5,-0.5 0.8,-0.3 0.5,0.2 0.9,0.2 1.4,0.2 0.9,0.2 1.9,-0.5 2.1,-1.6 0.2,-0.1 0.2,-0.6 0.4,-0.9 z" - id="path6748" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="m 31.7,42.6 c 0,0.3 0.2,0.6 0.2,0.9 0.2,1.1 1.1,1.7 2.2,1.6 0.5,0 0.9,-0.2 1.4,-0.2 0.3,0 0.6,0 0.9,0.3 l -0.2,0.2 c -1.3,1.3 -2.5,2.5 -3.6,3.6 -0.2,0.2 -0.5,0.5 -0.8,0.3 C 31.5,49.1 31.3,49 31.3,48.7 31.1,48.2 31.1,47.8 31,47.3 31,47.1 30.8,47 30.7,47 30.1,46.8 29.6,46.8 29,46.7 c -0.5,-0.2 -0.8,-0.6 -0.3,-0.9 0.9,-1.1 1.9,-2.1 3,-3.2 z" - id="path6750" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - </g> -</g> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="55" height="55"><circle cx="27.5" cy="27.5" r="27.5" fill="#eec11b"/><g fill="#fff"><path d="M39.2 7.6c.6.2 1.3.5 1.7.9.5.5.6 1.1.6 1.7V26c-.3-.5-.6-.8-.9-1.3-.2-.2-.5-.3-.8-.5s-.3-.2-.3-.5V10.5c0-.8-.3-.9-.9-.9H18.5c-.8 0-1.1.3-1.1.9V37c0 .8.3.9.9.9h5.4c.3 0 .6 0 .9.3.3.2.6.3.9.5L24.2 40h-6.3c-1.4 0-2.4-.9-2.7-2.4V9.7c.2-.5.3-.9.6-1.4.3-.6 1.1-.9 1.7-1.1 7.3.4 14.6.4 21.7.4zm-.5 34c-.5 0-1.1-.2-1.6-.3-.5-.2-.8 0-1.1.3l-1.1 1.1c-.6.6-1.1.6-1.7 0l-1.1-1.1c-.3-.3-.6-.5-1.1-.3s-.9.2-1.4.3c-.9.2-1.4-.2-1.6-1.1 0-.5-.2-.9-.2-1.4s-.3-.8-.6-.9c-.5-.2-.9-.5-1.4-.6-.8-.5-.9-.9-.6-1.7.2-.5.5-.8.6-1.3.3-.5.2-.8 0-1.3s-.5-.8-.6-1.3c-.5-.8-.3-1.4.6-1.7.5-.2.8-.5 1.3-.6.5-.2.6-.5.8-.9 0-.5.2-1.1.2-1.6.2-.6.6-1.1 1.4-.9.5.2.9.2 1.4.3.5 0 .9 0 1.3-.3.3-.3.6-.8 1.1-1.1.5-.5 1.1-.5 1.7 0l1.1 1.1c.3.3.8.5 1.3.3s.9-.2 1.4-.3c.6-.2 1.3.3 1.4.9.2.5.2.9.2 1.6 0 .5.3.8.8.9.5.2.9.5 1.4.6.6.3.8.9.5 1.6-.2.5-.5.9-.6 1.4a1.48 1.48 0 0 0 0 1.3c.3.5.5.9.6 1.4.3.6.2 1.3-.5 1.6-.5.3-.9.5-1.4.6-.5.2-.6.5-.6.9 0 .5-.2 1.1-.2 1.6-.6.4-1.1.9-1.7.9zM34 40.2c3.6 0 6.8-3 6.8-6.6s-3-6.8-6.6-6.8c-3.8 0-6.8 3-6.8 6.6-.2 3.8 2.8 6.8 6.6 6.8zm-5.6-26.1h7.1c.2 0 .5 0 .6.2.5.2.6.6.6 1.1-.2.5-.5.8-1.1.8H21.1c-.6 0-.9-.5-.9-.9 0-.5.5-.9.9-.9 2.4-.3 4.8-.3 7.3-.3zm0 6.8h-7.3c-.6 0-1.1-.3-1.1-.9 0-.5.3-.9.9-.9h15c.5.2.8.6.6 1.1 0 .5-.5.8-.9.8l-7.2-.1z"/><path d="M40.9 39.7l3 3c.2.2.3.5.2.6 0 .3-.3.5-.6.5-.5.2-1.1.2-1.6.3-.2 0-.3.2-.3.3 0 .5-.2 1.1-.3 1.6-.2.6-.6.8-1.1.3l-4-4c.2-.3.5-.5.8-.3.5.2.9.2 1.4.2.9.2 1.9-.5 2.1-1.6.2-.1.2-.6.4-.9zm-13.9 0c0 .3.2.6.2.9.2 1.1 1.1 1.7 2.2 1.6.5 0 .9-.2 1.4-.2.3 0 .6 0 .9.3l-3.8 3.8c-.2.2-.5.5-.8.3s-.5-.3-.5-.6c-.2-.5-.2-.9-.3-1.4 0-.2-.2-.3-.3-.3-.6-.2-1.1-.2-1.7-.3-.5-.2-.8-.6-.3-.9.9-1.1 1.9-2.1 3-3.2z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/blockchain/transaction_manager.svg b/src/main/webapp/img/lib/ibm/blockchain/transaction_manager.svg index 57caacddf80c2602f670ed812246b90bc84d4fab..c17272fb94fc48221acf2940002fe4ab3b26f9ef 100644 --- a/src/main/webapp/img/lib/ibm/blockchain/transaction_manager.svg +++ b/src/main/webapp/img/lib/ibm/blockchain/transaction_manager.svg @@ -1,86 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - viewBox="0 0 55.000001 55.000001" - enable-background="new 0 0 60.8 62.3" - xml:space="preserve" - sodipodi:docname="Transaction Manager.svg" - width="55" - height="55" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata7884"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs7882" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview7880" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="10.714427" - inkscape:cx="24.1623" - inkscape:cy="24.175399" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<g - id="g7877" - transform="translate(-2.8999996,-3.7999992)"> - <g - id="blockchain-transaction-manager_2_"> - <circle - cx="30.4" - cy="31.299999" - id="ellipse7864" - r="27.5" - style="fill:#05b09d" /> - </g> - <g - id="g7875"> - <path - d="m 10.7,26.3 c 0.9,0 1.9,0 2.8,0 0.3,0 0.4,-0.1 0.5,-0.4 0.9,-2.8 2.4,-5.2 4.6,-7.2 2.4,-2.3 5.3,-3.8 8.6,-4.4 3.2,-0.6 6.4,-0.3 9.5,0.8 0.3,0.1 0.4,0.2 0.4,0.5 0,1.1 0,2.1 0,3.2 -4.7,-2.3 -9.3,-2.2 -13.8,0.4 -3,1.8 -5,4.7 -5.8,7 1,0 2,0 3.2,0 -1.7,2.2 -3.3,4.4 -4.9,6.6 -0.2,-0.3 -0.4,-0.5 -0.6,-0.8 -1.4,-1.9 -2.8,-3.7 -4.2,-5.6 -0.2,0 -0.3,0 -0.3,-0.1 z" - id="path7867" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="m 10.7,47 c 0.1,-0.3 0.1,-0.6 0.3,-0.9 0.7,-1.9 2.1,-3 4.2,-3.4 -1,-0.3 -1.8,-0.7 -2.3,-1.6 -0.5,-0.9 -0.6,-1.8 -0.3,-2.8 0.4,-1.3 1.8,-2.2 3.3,-2.2 1.5,0.1 2.7,1.1 3,2.6 0.2,0.9 0,1.8 -0.5,2.6 -0.5,0.8 -1.3,1.2 -2.2,1.4 2.8,0.5 4.6,2.7 4.4,4.9 -0.1,0 -0.1,0 -0.2,0 -3.1,0 -6.2,0 -9.3,0 -0.1,0 -0.2,0 -0.3,0 -0.1,-0.2 -0.1,-0.4 -0.1,-0.6 z" - id="path7869" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="m 50.2,37.8 c -1.2,0 -2.2,0 -3.3,0 -0.4,0 -0.6,0.1 -0.7,0.5 -2.3,5 -6.1,8.2 -11.4,9.7 -3.6,1 -7.1,0.7 -10.6,-0.6 -0.1,0 -0.3,-0.2 -0.3,-0.3 0,-1.1 0,-2.3 0,-3.5 4.3,2.1 8.6,2.2 12.8,0.1 2.6,-1.3 4.6,-3.3 6,-5.9 -0.8,0 -1.6,0 -2.4,0 1.7,-2.2 3.3,-4.4 5,-6.6 1.6,2.2 3.2,4.3 4.9,6.6 z" - id="path7871" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="m 44.8,21.3 c -2.1,-0.5 -2.9,-2.1 -2.8,-3.5 0.1,-1.9 1.6,-3.1 3.2,-3.1 1.6,0 3,1.2 3.3,2.7 0.3,1.7 -0.6,3.4 -2.7,3.9 2.7,0.6 4.2,2.2 4.4,4.9 -3.3,0 -6.6,0 -9.9,0 0,-1.3 0.4,-2.4 1.3,-3.3 0.8,-0.9 1.8,-1.4 3.2,-1.6 z" - id="path7873" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - </g> -</g> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="55" height="55"><circle cx="27.5" cy="27.5" r="27.5" fill="#05b09d"/><path d="M7.8 22.5h2.8c.3 0 .4-.1.5-.4.9-2.8 2.4-5.2 4.6-7.2 2.4-2.3 5.3-3.8 8.6-4.4 3.2-.6 6.4-.3 9.5.8.3.1.4.2.4.5V15c-4.7-2.3-9.3-2.2-13.8.4-3 1.8-5 4.7-5.8 7h3.2c-1.7 2.2-3.3 4.4-4.9 6.6-.2-.3-.4-.5-.6-.8l-4.2-5.6c-.2 0-.3 0-.3-.1zm0 20.7c.1-.3.1-.6.3-.9.7-1.9 2.1-3 4.2-3.4-1-.3-1.8-.7-2.3-1.6s-.6-1.8-.3-2.8c.4-1.3 1.8-2.2 3.3-2.2 1.5.1 2.7 1.1 3 2.6.2.9 0 1.8-.5 2.6s-1.3 1.2-2.2 1.4c2.8.5 4.6 2.7 4.4 4.9H7.9c-.1-.2-.1-.4-.1-.6zM47.3 34H44c-.4 0-.6.1-.7.5-2.3 5-6.1 8.2-11.4 9.7-3.6 1-7.1.7-10.6-.6-.1 0-.3-.2-.3-.3v-3.5c4.3 2.1 8.6 2.2 12.8.1 2.6-1.3 4.6-3.3 6-5.9h-2.4l5-6.6 4.9 6.6zm-5.4-16.5c-2.1-.5-2.9-2.1-2.8-3.5.1-1.9 1.6-3.1 3.2-3.1a3.43 3.43 0 0 1 3.3 2.7c.3 1.7-.6 3.4-2.7 3.9 2.7.6 4.2 2.2 4.4 4.9h-9.9c0-1.3.4-2.4 1.3-3.3.8-.9 1.8-1.4 3.2-1.6z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/blockchain/wallet.svg b/src/main/webapp/img/lib/ibm/blockchain/wallet.svg index b4683df1cd115cd8077f77a5070e4b4dbb790bc6..782a322a7bf018ea234a65ea2c3118acc1afa9e3 100644 --- a/src/main/webapp/img/lib/ibm/blockchain/wallet.svg +++ b/src/main/webapp/img/lib/ibm/blockchain/wallet.svg @@ -1,89 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - viewBox="0 0 55.000001 55.000001" - enable-background="new 0 0 60.8 62.3" - xml:space="preserve" - sodipodi:docname="Wallet.svg" - width="55" - height="55" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata8471"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs8469" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview8467" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="10.714427" - inkscape:cx="28.839005" - inkscape:cy="20.839816" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<g - id="g8464" - transform="translate(-2.8999996,-3)"> - - <circle - id="blockchain-wallet-external_2_" - cx="30.4" - cy="30.5" - r="27.5" - style="clip-rule:evenodd;fill:#d91f2f;fill-rule:evenodd" /> - <g - id="g8462"> - <path - d="m 49.1,34.5 c 0,1.4 0,2.8 0,4.1 0,2.7 -2.2,4.9 -4.9,4.9 -6.2,0 -12.4,0 -18.6,0 -0.3,0 -0.5,0.1 -0.7,0.4 -2,2.8 -4.6,4.2 -8.1,3.9 C 13.2,47.5 10,44.5 9.2,41 c -0.8,-4.2 1.5,-8.3 5.5,-9.8 0.4,-0.1 0.5,-0.3 0.5,-0.7 0,-3.2 0,-6.4 0,-9.6 0,-2 1,-3.5 2.8,-4.5 0.5,-0.3 0.9,-0.5 1.2,-0.9 0.2,-0.3 0.6,-0.5 1,-0.6 2.2,-0.3 4.4,-0.5 6.6,-0.8 2.1,-0.2 4.2,-0.5 6.3,-0.7 2.1,-0.2 4.3,-0.5 6.4,-0.7 1,-0.1 2,-0.2 3,-0.3 1.2,-0.2 2,0.4 2.2,1.6 0.1,0.5 0.1,0.9 0.1,1.4 0,0.4 0.1,0.6 0.6,0.7 2,0.6 3.3,2 3.7,4.1 0.1,0.5 0,0.9 0,1.4 0,1.1 0,2.3 0,3.4 0.1,0 0.3,0 0.4,0 1.3,0 2.1,0.9 2.2,2.2 0,1.7 0,3.3 0,5 0,1.5 -0.8,2.3 -2.3,2.4 -0.1,-0.1 -0.1,-0.1 -0.3,-0.1 z m -26.8,-9 c 0,0.1 0,0.3 0,0.4 0,1.8 0,3.7 0,5.5 0,0.4 0.1,0.7 0.5,1 2.2,1.7 3.5,4 3.5,6.9 0,0.9 -0.2,1.8 -0.2,2.7 0.1,0 0.3,0 0.4,0 2.1,0 4.1,0 6.2,0 3.8,0 7.7,0 11.5,0 1.9,0 3.2,-1.3 3.2,-3.2 0,-1.2 0,-2.5 0,-3.7 0,-0.1 0,-0.3 0,-0.5 -0.2,0 -0.4,0 -0.6,0 -1.9,0 -3.8,0 -5.8,0 -3,0 -5.2,-2.8 -4.9,-5.4 0.3,-2.3 2.3,-4.1 4.6,-4.1 2.1,0 4.1,0 6.2,0 0.2,0 0.3,0 0.5,0 0,-1.6 0,-3 0,-4.5 -0.1,-1.2 -0.6,-2.2 -1.8,-2.6 -0.5,-0.2 -1,-0.2 -1.5,-0.2 -8,0 -15.9,0 -23.9,0 -2,0 -3.2,1.2 -3.2,3.2 0,3.1 0,6.2 0,9.3 0,0.2 0,0.3 0,0.4 1.2,0.2 2.4,0.3 3.5,0.5 0,-1.8 0,-3.7 0,-5.6 0.7,-0.1 1.2,-0.1 1.8,-0.1 z m -4.6,20.7 c 3.9,0 6.9,-2.9 6.9,-6.9 0,-4.5 -3.8,-6.9 -6.8,-6.9 -3.8,0 -6.9,2.8 -6.9,6.8 -0.1,3.9 2.9,7 6.8,7 z M 49.9,26.7 c -0.1,0 -0.2,0 -0.3,0 -2.9,0 -5.8,0 -8.7,0 -0.2,0 -0.4,0 -0.6,0.1 -1.7,0.3 -2.7,1.6 -2.5,3.4 0.2,1.7 1.5,2.6 3,2.6 2.9,0 5.7,0 8.6,0 0.1,0 0.3,0 0.4,0 0.1,-2.1 0.1,-4.1 0.1,-6.1 z M 43,14 c -5.1,0.6 -10.2,1.1 -15.3,1.7 v 0 c 5.1,0 10.3,0 15.5,0 C 43.1,15.1 43.1,14.6 43,14 Z" - id="path8452" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="m 17.7,44.4 c -0.7,0 -1.4,0 -2.1,0 -1.2,0 -2.2,-1 -2.2,-2.2 0,-1 0,-1.9 0,-2.9 0,-0.9 0.4,-1.5 1.1,-2 0.2,-0.1 0.3,-0.2 0.3,-0.5 0.2,-2.2 2.6,-3.4 4.4,-2.2 0.8,0.5 1.1,1.3 1.2,2.2 0,0.2 0.1,0.3 0.3,0.4 0.8,0.5 1.2,1.1 1.2,2.1 0,0.9 0,1.9 0,2.8 0,1.2 -0.9,2.2 -2.2,2.2 -0.6,0.1 -1.3,0.1 -2,0.1 z m 0,-5.5 c -0.7,0 -1.4,0 -2.2,0 -0.3,0 -0.4,0.1 -0.4,0.4 0,1 0,2 0,3 0,0.3 0.1,0.4 0.4,0.4 1.4,0 2.9,0 4.3,0 0.3,0 0.4,-0.1 0.4,-0.4 0,-1 0,-2 0,-3 0,-0.3 -0.1,-0.4 -0.4,-0.4 -0.7,0 -1.4,0 -2.1,0 z m 1,-1.8 c 0,-0.8 -0.4,-1.2 -1.2,-1.1 -0.6,0 -0.9,0.5 -0.8,1.1 0.7,0 1.3,0 2,0 z" - id="path8454" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="m 43.1,29.7 c 0,1.1 -1,2.1 -2.1,2.1 -1,0 -2.1,-1 -2.1,-2.1 0,-1.1 1,-2.1 2.1,-2.1 1,0 2.1,1 2.1,2.1 z m -1.7,0.1 c 0,-0.1 0,-0.2 0,-0.2 -0.2,-0.1 -0.3,-0.2 -0.5,-0.2 -0.3,-0.1 -0.4,0.1 -0.4,0.4 0,0.3 0.1,0.4 0.4,0.4 0.2,-0.2 0.4,-0.3 0.5,-0.4 z" - id="path8456" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="m 16.9,41.8 c -0.1,-0.3 -0.2,-0.6 -0.3,-0.9 -0.1,-0.5 0.1,-0.8 0.4,-1.1 0.3,-0.3 0.7,-0.4 1.1,-0.2 0.7,0.4 0.9,0.9 0.5,1.6 -0.1,0.2 -0.1,0.4 -0.2,0.6 -0.4,0 -1,0 -1.5,0 z m 1.5,-1.2 c -0.3,-0.2 -0.5,-0.5 -0.7,-0.5 -0.2,0 -0.5,0.3 -0.5,0.5 0,0.1 0.3,0.5 0.5,0.5 0.2,0 0.4,-0.3 0.7,-0.5 z" - id="path8458" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="m 19.8,24.5 c 0.1,2.2 0.2,4.3 0.4,6.5 0.3,0 0.8,0.1 1.3,0.4 0.6,0.3 0.9,0.7 1.1,0.9 0.5,-2.6 1,-5.2 1.4,-7.7 h -4.2 z" - id="path8460" - inkscape:connector-curvature="0" - style="fill:#d91f2f" /> - </g> -</g> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="55" height="55"><circle cx="27.5" cy="27.5" r="27.5" fill="#d91f2f" fill-rule="evenodd"/><path d="M46.2 31.5v4.1a4.91 4.91 0 0 1-4.9 4.9H22.7c-.3 0-.5.1-.7.4-2 2.8-4.6 4.2-8.1 3.9-3.6-.3-6.8-3.3-7.6-6.8-.8-4.2 1.5-8.3 5.5-9.8.4-.1.5-.3.5-.7v-9.6c0-2 1-3.5 2.8-4.5.5-.3.9-.5 1.2-.9.2-.3.6-.5 1-.6 2.2-.3 4.4-.5 6.6-.8 2.1-.2 4.2-.5 6.3-.7l6.4-.7 3-.3c1.2-.2 2 .4 2.2 1.6.1.5.1.9.1 1.4 0 .4.1.6.6.7 2 .6 3.3 2 3.7 4.1.1.5 0 .9 0 1.4V22h.4c1.3 0 2.1.9 2.2 2.2v5c0 1.5-.8 2.3-2.3 2.4-.1-.1-.1-.1-.3-.1zm-26.8-9v5.9c0 .4.1.7.5 1 2.2 1.7 3.5 4 3.5 6.9 0 .9-.2 1.8-.2 2.7h18.1c1.9 0 3.2-1.3 3.2-3.2v-4.2h-6.4c-3 0-5.2-2.8-4.9-5.4.3-2.3 2.3-4.1 4.6-4.1h6.7v-4.5c-.1-1.2-.6-2.2-1.8-2.6-.5-.2-1-.2-1.5-.2H17.3c-2 0-3.2 1.2-3.2 3.2v9.7c1.2.2 2.4.3 3.5.5v-5.6c.7-.1 1.2-.1 1.8-.1zm-4.6 20.7c3.9 0 6.9-2.9 6.9-6.9 0-4.5-3.8-6.9-6.8-6.9-3.8 0-6.9 2.8-6.9 6.8-.1 3.9 2.9 7 6.8 7zM47 23.7h-9c-.2 0-.4 0-.6.1-1.7.3-2.7 1.6-2.5 3.4.2 1.7 1.5 2.6 3 2.6h9c.1-2.1.1-4.1.1-6.1zM40.1 11l-15.3 1.7h15.5c-.1-.6-.1-1.1-.2-1.7zM14.8 41.4h-2.1a2.22 2.22 0 0 1-2.2-2.2v-2.9c0-.9.4-1.5 1.1-2 .2-.1.3-.2.3-.5.2-2.2 2.6-3.4 4.4-2.2.8.5 1.1 1.3 1.2 2.2 0 .2.1.3.3.4.8.5 1.2 1.1 1.2 2.1v2.8c0 1.2-.9 2.2-2.2 2.2-.6.1-1.3.1-2 .1zm0-5.5h-2.2c-.3 0-.4.1-.4.4v3c0 .3.1.4.4.4h4.3c.3 0 .4-.1.4-.4v-3c0-.3-.1-.4-.4-.4h-2.1zm1-1.8c0-.8-.4-1.2-1.2-1.1-.6 0-.9.5-.8 1.1h2zm24.4-7.4c0 1.1-1 2.1-2.1 2.1-1 0-2.1-1-2.1-2.1s1-2.1 2.1-2.1c1 0 2.1 1 2.1 2.1zm-1.7.1v-.2c-.2-.1-.3-.2-.5-.2-.3-.1-.4.1-.4.4s.1.4.4.4c.2-.2.4-.3.5-.4zM14 38.8l-.3-.9c-.1-.5.1-.8.4-1.1s.7-.4 1.1-.2c.7.4.9.9.5 1.6-.1.2-.1.4-.2.6H14zm1.5-1.2c-.3-.2-.5-.5-.7-.5s-.5.3-.5.5c0 .1.3.5.5.5s.4-.3.7-.5z" fill="#fff"/><path d="M16.9 21.5l.4 6.5c.3 0 .8.1 1.3.4.6.3.9.7 1.1.9l1.4-7.7h-4.2z" fill="#d91f2f"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/data/caches.svg b/src/main/webapp/img/lib/ibm/data/caches.svg index 9b93fbffe21f5426e15517b7d9322aaa3d442cfc..58a1c2991996aeb4c8d025e342d1a3b85eb013d3 100644 --- a/src/main/webapp/img/lib/ibm/data/caches.svg +++ b/src/main/webapp/img/lib/ibm/data/caches.svg @@ -1,33 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.9 59.9" style="enable-background:new 0 0 59.9 59.9;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#325C80;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle class="st0" cx="29.9" cy="29.9" r="29.9"/> -<rect x="10.8" y="13.8" class="st1" width="8.4" height="6.7"/> -<rect x="12.1" y="15" class="st1" width="5.9" height="4.4"/> -<rect x="30.8" y="13.8" class="st1" width="8.4" height="6.7"/> -<rect x="32.1" y="15" class="st1" width="5.9" height="4.4"/> -<rect x="40.5" y="13.8" class="st1" width="8.4" height="6.7"/> -<rect x="41.8" y="15" class="st1" width="5.9" height="4.4"/> -<rect x="40.5" y="22.5" class="st1" width="8.4" height="6.7"/> -<rect x="41.8" y="23.7" class="st1" width="5.9" height="4.4"/> -<rect x="30.6" y="30.9" class="st1" width="8.4" height="6.7"/> -<rect x="31.8" y="32" class="st1" width="5.9" height="4.4"/> -<rect x="20.8" y="22.5" class="st1" width="8.4" height="6.7"/> -<rect x="22.1" y="23.7" class="st1" width="5.9" height="4.4"/> -<rect x="10.9" y="30.9" class="st1" width="8.4" height="6.7"/> -<rect x="12.2" y="32" class="st1" width="5.9" height="4.4"/> -<rect x="20.7" y="30.6" class="st1" width="8.4" height="6.7"/> -<rect x="22" y="31.8" class="st1" width="5.9" height="4.4"/> -<rect x="10.8" y="39" class="st1" width="8.4" height="6.7"/> -<rect x="12.1" y="40.2" class="st1" width="5.9" height="4.4"/> -<rect x="20.7" y="39.4" class="st1" width="8.4" height="6.7"/> -<rect x="21.9" y="40.5" class="st1" width="5.9" height="4.4"/> -<rect x="40.7" y="39.2" class="st1" width="8.4" height="6.7"/> -<rect x="41.9" y="40.3" class="st1" width="5.9" height="4.4"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.9 59.9"><circle cx="29.9" cy="29.9" r="29.9" fill="#325c80"/><g fill="#fff"><path d="M10.8 13.8h8.4v6.7h-8.4z"/><path d="M12.1 15H18v4.4h-5.9zm18.7-1.2h8.4v6.7h-8.4z"/><path d="M32.1 15H38v4.4h-5.9zm8.4-1.2h8.4v6.7h-8.4z"/><path d="M41.8 15h5.9v4.4h-5.9zm-1.3 7.5h8.4v6.7h-8.4z"/><path d="M41.8 23.7h5.9v4.4h-5.9zm-11.2 7.2H39v6.7h-8.4z"/><path d="M31.8 32h5.9v4.4h-5.9zm-11-9.5h8.4v6.7h-8.4z"/><path d="M22.1 23.7H28v4.4h-5.9zm-11.2 7.2h8.4v6.7h-8.4z"/><path d="M12.2 32h5.9v4.4h-5.9zm8.5-1.4h8.4v6.7h-8.4z"/><path d="M22 31.8h5.9v4.4H22zM10.8 39h8.4v6.7h-8.4z"/><path d="M12.1 40.2H18v4.4h-5.9zm8.6-.8h8.4v6.7h-8.4z"/><path d="M21.9 40.5h5.9v4.4h-5.9zm18.8-1.3h8.4v6.7h-8.4z"/><path d="M41.9 40.3h5.9v4.4h-5.9z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/data/cloud.svg b/src/main/webapp/img/lib/ibm/data/cloud.svg index da183c2bb5f92aea7933378b928956d6184b84ba..b29ba42c2d6ca5d57629e32856c6d314ca0e8b1b 100644 --- a/src/main/webapp/img/lib/ibm/data/cloud.svg +++ b/src/main/webapp/img/lib/ibm/data/cloud.svg @@ -1,38 +1 @@ -<?xml version="1.0" standalone="no"?> -<svg contentScriptType="text/ecmascript" zoomAndPan="magnify" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svg="http://www.w3.org/2000/svg" baseProfile="full" - contentStyleType="text/css" id="svg2" sodipodi:docname="cloud.svg" version="1.1" width="84.5093mm" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" - preserveAspectRatio="xMidYMid meet" inkscape:version="0.91 r13725" viewBox="0 0 299.4424 299.63588" height="84.563904mm" - xmlns="http://www.w3.org/2000/svg"> - <metadata id="metadata4160"> - <rdf:RDF> - <cc:Work rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> - <dc:title/> - </cc:Work> - </rdf:RDF> - </metadata> - <defs id="defs4158"/> - <sodipodi:namedview fit-margin-left="0" objecttolerance="10" bordercolor="#666666" inkscape:window-height="1018" - inkscape:zoom="0.35477743" gridtolerance="10" id="namedview4156" inkscape:current-layer="svg2" fit-margin-top="0" - inkscape:window-y="-8" inkscape:cy="320.94562" inkscape:window-x="-8" inkscape:cx="-736.87547" - fit-margin-bottom="0" showgrid="false" fit-margin-right="0" guidetolerance="10" inkscape:pageopacity="0" - inkscape:pageshadow="2" inkscape:window-width="1920" inkscape:window-maximized="1" borderopacity="1" pagecolor="#ffffff"/> - <path fill="#325c80" d="M 150.38549,299.63588 C 64.714,299.63588 0,228.69174 0,150.45007 0,60.68903 74.63158,0 - 149.23083,0 238.43725,0 299.44241,73.66153 299.44241,148.63703 299.44241,240.27503 224.1838,299.63588 - 150.38549,299.63588 Z" id="path4152" inkscape:connector-curvature="0"/> - <path d="M 200.45602,206.55699 C 218.03164,206.11714 233.44933,195.17201 239.45379,175.15087 244.28232,159.64735 - 238.50953,145.7238 227.23075,134.32514 223.44781,130.92838 218.30401,127.64503 209.79086,124.64246 - 209.35035,115.33228 207.96035,109.10966 204.8753,102.06652 196.29179,83.43817 175.30774,73.69022 - 161.63217,74.15514 149.60509,75.32986 129.57713,80.11902 118.65173,100.6628 115.60656,106.59441 - 113.47354,112.68576 112.17964,126.00397 105.15847,124.97873 98.11922,123.89919 91.48259,124.02755 - 78.11096,124.46339 52.64331,137.46023 53.35005,166.77078 54.89185,186.40902 72.68571,205.36887 - 94.40939,206.55699 Z M 89.818,218.33688 C 71.7926,218.33688 41.95184,200.5554 41.95184,166.90175 - 41.95184,138.81762 54.44285,124.3586 75.12225,115.46661 85.97008,111.28071 87.90104,110.49704 - 101.86096,111.99515 107.68985,83.61372 129.14456,64.90603 160.10985,62.55136 177.27031,61.8292 - 194.46074,69.56693 205.44362,81.14463 216.26639,93.747 219.71961,105.62546 220.83068,115.50263 - 241.0718,127.27013 253.70371,140.73363 252.72037,167.75824 252.72037,187.48901 237.45507,214.21741 - 208.43372,218.33688 Z" id="path4154" inkscape:connector-curvature="0" style="fill:#ffffff"/> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" contentScriptType="text/ecmascript" zoomAndPan="magnify" baseProfile="full" contentStyleType="text/css" width="319.404" preserveAspectRatio="xMidYMid meet" viewBox="0 0 299.442 299.636" height="319.612"><path fill="#325c80" d="M150.385 299.636C64.714 299.636 0 228.692 0 150.45 0 60.69 74.632 0 149.23 0c89.206 0 150.212 73.662 150.212 148.637 0 91.638-75.26 151-149.057 151z"/><path d="M200.456 206.557c17.576-.44 32.993-11.385 38.998-31.406 4.83-15.504-.944-29.427-12.223-40.826-3.783-3.397-8.927-6.68-17.44-9.683-.44-9.3-1.83-15.533-4.916-22.576-8.584-18.628-29.568-28.376-43.243-27.91-12.027 1.175-32.055 5.964-42.98 26.508-3.045 5.932-5.178 12.023-6.472 25.34-7.02-1.025-14.06-2.105-20.697-1.976-13.372.436-38.84 13.433-38.133 42.743 1.542 19.638 19.336 38.598 41.06 39.786zm-110.638 11.78c-18.025 0-47.866-17.78-47.866-51.435 0-28.084 12.49-42.543 33.17-51.435 10.848-4.186 12.78-4.97 26.74-3.47 5.83-28.38 27.284-47.09 58.25-49.444 17.16-.722 34.35 7.016 45.334 18.593 10.823 12.602 14.276 24.48 15.387 34.358 20.24 11.767 32.873 25.23 31.9 52.256 0 19.73-15.265 46.46-44.287 50.58z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/data/conversation_trained_deployed.svg b/src/main/webapp/img/lib/ibm/data/conversation_trained_deployed.svg index 611661310a30be532bd58018208071b0ae3a1a70..735ffe88a1e308e7676a6a84b2580f054087cedf 100644 --- a/src/main/webapp/img/lib/ibm/data/conversation_trained_deployed.svg +++ b/src/main/webapp/img/lib/ibm/data/conversation_trained_deployed.svg @@ -1,25 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 60.2 60.2" style="enable-background:new 0 0 60.2 60.2;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#325C80;} - .st1{fill:none;stroke:#FFFFFF;stroke-miterlimit:10;} - .st2{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle class="st0" cx="30.1" cy="30.1" r="30.1"/> -<path class="st1" d="M47,36.8L37,47.3v-6.6h-1.5c-3.1,0-6.2-0.9-8.8-2.6c0-0.1,0-0.2,0-0.3c0-4-2.7-7.6-6.7-8.5 - c-0.5-1.5-0.7-3.1-0.7-4.7c0-8.9,7.2-16.2,16.2-16.2s16.2,7.2,16.2,16.2C51.7,29.1,50,33.5,47,36.8z"/> -<circle class="st2" cx="27.6" cy="18.3" r="1.8"/> -<circle class="st2" cx="31.9" cy="18.3" r="1.8"/> -<circle class="st2" cx="36.5" cy="18.3" r="1.8"/> -<circle class="st2" cx="41.1" cy="18.3" r="1.8"/> -<path class="st1" d="M11,45.2l5.2,5.6v-3.5H17c1.9-0.6,3.7-1.4,5.5-2.4c0.2-0.2,0.4-0.3,0.6-0.5c0.5-0.5,0.9-1.1,1.3-1.7 - c0.3-0.6,0.6-1.2,0.8-1.8c0.1-0.3,0.2-0.6,0.2-0.9c0.1-0.4,0.1-0.8,0.1-1.3c0-2.3-0.9-4.5-2.5-6.1c-3.2-3.3-8.5-3.4-11.8-0.2 - c-0.1,0.1-0.1,0.1-0.2,0.2c-1.6,1.6-2.5,3.8-2.5,6.1C8.5,41.1,9.4,43.4,11,45.2z"/> -<ellipse class="st2" cx="21.2" cy="35.3" rx="0.9" ry="1"/> -<ellipse class="st2" cx="18.9" cy="35.3" rx="0.9" ry="1"/> -<ellipse class="st2" cx="16.5" cy="35.3" rx="0.9" ry="1"/> -<ellipse class="st2" cx="14.1" cy="35.3" rx="0.9" ry="1"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60.2 60.2"><circle cx="30.1" cy="30.1" r="30.1" fill="#325c80"/><path d="M47 36.8L37 47.3v-6.6h-1.5c-3.1 0-6.2-.9-8.8-2.6v-.3c0-4-2.7-7.6-6.7-8.5-.5-1.5-.7-3.1-.7-4.7A16.2 16.2 0 0 1 35.5 8.4a16.13 16.13 0 0 1 16.2 16.2c0 4.5-1.7 8.9-4.7 12.2z" fill="none" stroke="#fff" stroke-miterlimit="10"/><g fill="#fff"><circle cx="27.6" cy="18.3" r="1.8"/><circle cx="31.9" cy="18.3" r="1.8"/><circle cx="36.5" cy="18.3" r="1.8"/><circle cx="41.1" cy="18.3" r="1.8"/></g><path d="M11 45.2l5.2 5.6v-3.5h.8c1.9-.6 3.7-1.4 5.5-2.4.2-.2.4-.3.6-.5.5-.5.9-1.1 1.3-1.7l.8-1.8c.1-.3.2-.6.2-.9.1-.4.1-.8.1-1.3 0-2.3-.9-4.5-2.5-6.1-3.2-3.3-8.5-3.4-11.8-.2l-.2.2c-1.6 1.6-2.5 3.8-2.5 6.1 0 2.4.9 4.7 2.5 6.5z" fill="none" stroke="#fff" stroke-miterlimit="10"/><g fill="#fff"><ellipse cx="21.2" cy="35.3" rx=".9" ry="1"/><ellipse cx="18.9" cy="35.3" rx=".9" ry="1"/><ellipse cx="16.5" cy="35.3" rx=".9" ry="1"/><ellipse cx="14.1" cy="35.3" rx=".9" ry="1"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/data/data_services.svg b/src/main/webapp/img/lib/ibm/data/data_services.svg index ede3ca0245fd31867a2bc370024a7be39368dfba..7db7ab8f60301d02cf0e870b67e39dbc4f53bb48 100644 --- a/src/main/webapp/img/lib/ibm/data/data_services.svg +++ b/src/main/webapp/img/lib/ibm/data/data_services.svg @@ -1,14 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 58.9 58.9" style="enable-background:new 0 0 58.9 58.9;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#335D80;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle class="st0" cx="29.4" cy="29.4" r="29.4"/> -<ellipse class="st1" cx="29.4" cy="16.9" rx="13.8" ry="5.8"/> -<path class="st1" d="M43.7,18.9c-0.7,3.1-6.8,5.5-14.3,5.5S15.8,22,15.1,18.9h-0.1v22.9l0,0c0,3.4,6.4,6.1,14.4,6.1 - s14.4-2.7,14.4-6.1L43.7,18.9L43.7,18.9z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 58.9 58.9"><circle cx="29.4" cy="29.4" r="29.4" fill="#335d80"/><g fill="#fff"><ellipse cx="29.4" cy="16.9" rx="13.8" ry="5.8"/><path d="M43.7 18.9c-.7 3.1-6.8 5.5-14.3 5.5S15.8 22 15.1 18.9H15v22.9c0 3.4 6.4 6.1 14.4 6.1s14.4-2.7 14.4-6.1l-.1-22.9z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/data/data_sources.svg b/src/main/webapp/img/lib/ibm/data/data_sources.svg index 9afe1ba36d57c99d3952d0ee34ef150301874553..3cafa57ec1b190f508bc6194269aa8d6552a8f61 100644 --- a/src/main/webapp/img/lib/ibm/data/data_sources.svg +++ b/src/main/webapp/img/lib/ibm/data/data_sources.svg @@ -1,24 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 60 59.9" style="enable-background:new 0 0 60 59.9;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#325C80;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<ellipse class="st0" cx="30" cy="29.9" rx="30" ry="29.9"/> -<ellipse class="st1" cx="30" cy="27.4" rx="9.3" ry="3.9"/> -<path class="st1" d="M39.7,28.8c-0.5,2.1-4.6,3.7-9.7,3.7s-9.2-1.6-9.7-3.7l0,0v15.4l0,0c0,2.3,4.4,4.1,9.7,4.1s9.7-1.8,9.7-4.1 - V28.8H39.7z"/> -<polygon class="st1" points="19.6,15.7 18,15.8 18.3,21.2 12.9,21 12.9,22.5 19.9,22.7 "/> -<polygon class="st1" points="18.5,22.4 12.1,16.3 13.2,15.1 19.6,21.3 "/> -<polygon class="st1" points="47.8,22.9 47.7,21.4 42.3,21.7 42.5,16.2 40.9,16.2 40.7,23.3 "/> -<polygon class="st1" points="42.3,22.8 41.2,21.7 47.6,15.6 48.7,16.7 "/> -<polygon class="st1" points="34.9,13 33.8,12 30.2,16 26.5,12 25.3,13.1 30.2,18.2 "/> -<rect x="29.3" y="7.9" class="st1" width="1.6" height="9"/> -<polygon class="st1" points="49.1,38.2 50.1,37.1 46.1,33.5 50.1,29.8 49,28.7 43.8,33.5 "/> -<rect x="45.3" y="32.7" class="st1" width="8.1" height="1.6"/> -<polygon class="st1" points="10.8,28.7 9.7,29.8 13.8,33.4 9.8,37.1 10.8,38.2 16,33.4 "/> -<rect x="6.6" y="32.7" class="st1" width="7.9" height="1.6"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 59.9"><ellipse cx="30" cy="29.9" rx="30" ry="29.9" fill="#325c80"/><g fill="#fff"><ellipse cx="30" cy="27.4" rx="9.3" ry="3.9"/><path d="M39.7 28.8c-.5 2.1-4.6 3.7-9.7 3.7s-9.2-1.6-9.7-3.7v15.4c0 2.3 4.4 4.1 9.7 4.1s9.7-1.8 9.7-4.1V28.8zM19.6 15.7l-1.6.1.3 5.4-5.4-.2v1.5l7 .2z"/><path d="M18.5 22.4l-6.4-6.1 1.1-1.2 6.4 6.2zm29.3.5l-.1-1.5-5.4.3.2-5.5h-1.6l-.2 7.1z"/><path d="M42.3 22.8l-1.1-1.1 6.4-6.1 1.1 1.1zM34.9 13l-1.1-1-3.6 4-3.7-4-1.2 1.1 4.9 5.1z"/><path d="M29.3 7.9h1.6v9h-1.6zm19.8 30.3l1-1.1-4-3.6 4-3.7-1.1-1.1-5.2 4.8z"/><path d="M45.3 32.7h8.1v1.6h-8.1zm-34.5-4l-1.1 1.1 4.1 3.6-4 3.7 1 1.1 5.2-4.8z"/><path d="M6.6 32.7h7.9v1.6H6.6z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/data/device_identity_service.svg b/src/main/webapp/img/lib/ibm/data/device_identity_service.svg index 474683f10f736e19ccff6577acd8c0ff664a7ed3..3e680d354820aabe1fc2d3dcfd43adca19539dcc 100644 --- a/src/main/webapp/img/lib/ibm/data/device_identity_service.svg +++ b/src/main/webapp/img/lib/ibm/data/device_identity_service.svg @@ -1,24 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.3 59.3" style="enable-background:new 0 0 59.3 59.3;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#325C80;} - .st1{fill:none;} - .st2{fill:#FFFFFF;} - .st3{fill:none;stroke:#FFFFFF;stroke-width:0.47;stroke-miterlimit:10;} - .st4{fill:none;stroke:#FFFFFF;stroke-width:0.19;stroke-miterlimit:10;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle class="st0" cx="29.7" cy="29.7" r="29.7"/> -<path class="st1" d="M41.4,33.1v-0.9c0-1.9-1.6-3.5-3.5-3.5c-1.9,0-3.5,1.6-3.5,3.5v0.9C36.6,31.9,39.3,31.9,41.4,33.1z"/> -<polygon class="st1" points="36.7,40.5 34.7,38.5 33.4,39.7 36.7,43 42.5,37.1 41.2,35.9 "/> -<ellipse class="st2" cx="24.3" cy="19.8" rx="9.2" ry="3.9"/> -<path class="st2" d="M32.7,34.5v-2.4c0-1.2,0.5-2.4,1.3-3.3v-7.7l0,0c-0.5,2.1-4.6,3.7-9.6,3.7s-9.1-1.6-9.5-3.6l0,0v15.2l0,0 - c0,2.2,4.3,4.1,9.6,4.1c2.3,0,4.5-0.3,6.6-1.1c0-0.1,0-0.2,0-0.3C31,37.4,31.6,35.8,32.7,34.5z"/> -<path class="st3" d="M30.8,39.4c0.1,3.8,3.3,6.8,7.2,6.7c3.8-0.1,6.8-3.3,6.7-7.2c-0.1-1.6-0.7-3.2-1.7-4.4v-2.4 - c0-2.9-2.4-5.2-5.2-5.2c-1.5,0-3,0.7-4,1.9 M34.2,32.2c0-1.9,1.6-3.5,3.5-3.5c1.9,0,3.5,1.6,3.5,3.5v0.9c-2.1-1.2-4.8-1.2-7,0V32.2z - M36.4,43l-3.2-3.2l1.2-1.2l2,2l4.6-4.6l1.2,1.2L36.4,43z"/> -<path class="st4" d="M34,28.9c-0.8,0.9-1.2,2.1-1.3,3.3v2.4c-1.1,1.3-1.7,2.9-1.7,4.6c0,0.1,0,0.2,0,0.3"/> -<polygon class="st2" points="34.4,38.5 36.4,40.5 41,35.9 42.2,37.1 36.4,43 33.2,39.7 "/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.3 59.3"><circle cx="29.7" cy="29.7" r="29.7" fill="#325c80"/><g fill="#fff"><ellipse cx="24.3" cy="19.8" rx="9.2" ry="3.9"/><path d="M32.7 34.5v-2.4c0-1.2.5-2.4 1.3-3.3v-7.7c-.5 2.1-4.6 3.7-9.6 3.7s-9.1-1.6-9.5-3.6v15.2c0 2.2 4.3 4.1 9.6 4.1 2.3 0 4.5-.3 6.6-1.1v-.3c-.1-1.7.5-3.3 1.6-4.6z"/></g><g fill="none" stroke="#fff" stroke-miterlimit="10"><path d="M30.8 39.4c.1 3.8 3.3 6.8 7.2 6.7 3.8-.1 6.8-3.3 6.7-7.2-.1-1.6-.7-3.2-1.7-4.4v-2.4c0-2.9-2.4-5.2-5.2-5.2-1.5 0-3 .7-4 1.9m.4 3.4c0-1.9 1.6-3.5 3.5-3.5s3.5 1.6 3.5 3.5v.9c-2.1-1.2-4.8-1.2-7 0v-.9zM36.4 43l-3.2-3.2 1.2-1.2 2 2L41 36l1.2 1.2-5.8 5.8z" stroke-width=".47"/><path d="M34 28.9c-.8.9-1.2 2.1-1.3 3.3v2.4c-1.1 1.3-1.7 2.9-1.7 4.6v.3" stroke-width=".19"/></g><path d="M34.4 38.5l2 2 4.6-4.6 1.2 1.2-5.8 5.9-3.2-3.3z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/data/device_registry.svg b/src/main/webapp/img/lib/ibm/data/device_registry.svg index ba23951bee8cd84047c908a44b028c7f6dbfd2d3..567b0ac41d9a02619c0a872b0bb40fba78bb617f 100644 --- a/src/main/webapp/img/lib/ibm/data/device_registry.svg +++ b/src/main/webapp/img/lib/ibm/data/device_registry.svg @@ -1,23 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.2 59.2" style="enable-background:new 0 0 59.2 59.2;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#345D80;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle class="st0" cx="29.6" cy="29.6" r="29.6"/> -<ellipse class="st1" cx="29.3" cy="11.4" rx="6.9" ry="2.9"/> -<path class="st1" d="M36.4,12.5C36,14,33,15.2,29.3,15.2s-6.8-1.2-7.1-2.7l0,0v11.4l0,0c0,1.7,3.2,3,7.2,3s7.2-1.4,7.2-3L36.4,12.5 - L36.4,12.5z"/> -<ellipse class="st1" cx="18.5" cy="30.6" rx="6.9" ry="2.9"/> -<path class="st1" d="M25.6,31.6c-0.4,1.5-3.4,2.7-7.1,2.7s-6.8-1.2-7.1-2.7l0,0V43l0,0c0,1.7,3.2,3,7.1,3s7.1-1.3,7.1-3L25.6,31.6 - L25.6,31.6z"/> -<ellipse class="st1" cx="40.7" cy="30.6" rx="6.9" ry="2.9"/> -<path class="st1" d="M47.8,31.6c-0.4,1.5-3.4,2.7-7.1,2.7s-6.8-1.2-7.1-2.7l0,0V43l0,0c0,1.7,3.2,3,7.2,3s7.2-1.3,7.2-3L47.8,31.6 - L47.8,31.6z"/> -<rect x="26.5" y="37" class="st1" width="6.2" height="3.5"/> -<path class="st1" d="M21.5,23.7l-3.3,3.2h0.5c1.2,0,2.5,0.1,3.7,0.5l0.9-0.9c-1.1-0.5-1.9-1.3-1.9-2l0,0L21.5,23.7z"/> -<path class="st1" d="M40.2,26.9h0.4l-3.4-3.4v1c0,0.7-0.6,1.4-1.7,1.9l0.9,0.9C37.6,27,38.9,26.8,40.2,26.9z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.2 59.2"><circle cx="29.6" cy="29.6" r="29.6" fill="#345d80"/><g fill="#fff"><ellipse cx="29.3" cy="11.4" rx="6.9" ry="2.9"/><path d="M36.4 12.5c-.4 1.5-3.4 2.7-7.1 2.7s-6.8-1.2-7.1-2.7v11.4c0 1.7 3.2 3 7.2 3s7.2-1.4 7.2-3l-.2-11.4z"/><ellipse cx="18.5" cy="30.6" rx="6.9" ry="2.9"/><path d="M25.6 31.6c-.4 1.5-3.4 2.7-7.1 2.7s-6.8-1.2-7.1-2.7V43c0 1.7 3.2 3 7.1 3s7.1-1.3 7.1-3V31.6z"/><ellipse cx="40.7" cy="30.6" rx="6.9" ry="2.9"/><path d="M47.8 31.6c-.4 1.5-3.4 2.7-7.1 2.7s-6.8-1.2-7.1-2.7V43c0 1.7 3.2 3 7.2 3s7.2-1.3 7.2-3l-.2-11.4zM26.5 37h6.2v3.5h-6.2zm-5-13.3l-3.3 3.2h.5c1.2 0 2.5.1 3.7.5l.9-.9c-1.1-.5-1.9-1.3-1.9-2l.1-.8zm18.7 3.2h.4l-3.4-3.4v1c0 .7-.6 1.4-1.7 1.9l.9.9c1.2-.3 2.5-.5 3.8-.4z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/data/enterprise_data.svg b/src/main/webapp/img/lib/ibm/data/enterprise_data.svg index 28030776c8c3d07e9fdbddc4d25333cace0def05..1e1c35180096b997d2906924da66672c98b30bdf 100644 --- a/src/main/webapp/img/lib/ibm/data/enterprise_data.svg +++ b/src/main/webapp/img/lib/ibm/data/enterprise_data.svg @@ -1,22 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 60 59.9" style="enable-background:new 0 0 60 59.9;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#325C80;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<ellipse class="st0" cx="30" cy="29.9" rx="30" ry="29.9"/> -<path class="st1" d="M47.5,37.1l-0.7-0.3c-2.4-0.8-4.8-1.2-7.3-1.2c-2.5,0-5.1,0.4-7.5,1.2L31.4,37V16.2l0.3-0.1 - c2.5-0.8,5.1-1.2,7.8-1.2c2.6,0,5.2,0.4,7.7,1.3l0.3,0.1V37.1z M32.4,16.9v18.9c2.3-0.7,4.7-1,7.2-1c2.4,0,4.7,0.3,7,1V16.9 - c-2.3-0.7-4.6-1.1-7-1.1C37.1,15.8,34.7,16.1,32.4,16.9z"/> -<polygon class="st1" points="49,38.8 31,38.8 31,37.8 48.1,37.8 48.1,17.7 49,17.7 "/> -<path class="st1" d="M14.7,27.3v-9.7h-0.9v9.9C14.1,27.5,14.4,27.4,14.7,27.3z"/> -<path class="st1" d="M31.2,16.1c-2.5-0.8-5.1-1.2-7.8-1.2c-2.6,0-5.2,0.4-7.7,1.3l-0.3,0.1v11.1c0.3-0.1,0.6-0.1,0.9-0.1V16.9 - c2.3-0.7,4.6-1.1,7-1.1c2.4,0,4.9,0.4,7.2,1.1v18.9c-1.4-0.4-2.8-0.7-4.2-0.9v1c1.5,0.2,3,0.5,4.5,1l0.6,0.2V16.2L31.2,16.1z"/> -<rect x="26.4" y="37.8" class="st1" width="5" height="0.9"/> -<ellipse class="st1" cx="18.1" cy="30.9" rx="6.9" ry="2.9"/> -<path class="st1" d="M25.3,31.9c-0.4,1.5-3.5,2.8-7.2,2.8s-6.9-1.2-7.2-2.8l0,0v11.5l0,0c0,1.7,3.2,3.1,7.3,3.1s7.3-1.4,7.3-3.1 - L25.3,31.9L25.3,31.9z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 59.9"><ellipse cx="30" cy="29.9" rx="30" ry="29.9" fill="#325c80"/><g fill="#fff"><path d="M47.5 37.1l-.7-.3c-2.4-.8-4.8-1.2-7.3-1.2s-5.1.4-7.5 1.2l-.6.2V16.2l.3-.1c2.5-.8 5.1-1.2 7.8-1.2 2.6 0 5.2.4 7.7 1.3l.3.1v20.8zM32.4 16.9v18.9c2.3-.7 4.7-1 7.2-1 2.4 0 4.7.3 7 1V16.9c-2.3-.7-4.6-1.1-7-1.1-2.5 0-4.9.3-7.2 1.1zM49 38.8H31v-1h17.1V17.7h.9z"/><path d="M14.7 27.3v-9.7h-.9v9.9c.3 0 .6-.1.9-.2zm16.5-11.2c-2.5-.8-5.1-1.2-7.8-1.2-2.6 0-5.2.4-7.7 1.3l-.3.1v11.1c.3-.1.6-.1.9-.1V16.9c2.3-.7 4.6-1.1 7-1.1s4.9.4 7.2 1.1v18.9c-1.4-.4-2.8-.7-4.2-.9v1c1.5.2 3 .5 4.5 1l.6.2V16.2l-.2-.1zm-4.8 21.7h5v.9h-5z"/><ellipse cx="18.1" cy="30.9" rx="6.9" ry="2.9"/><path d="M25.3 31.9c-.4 1.5-3.5 2.8-7.2 2.8s-6.9-1.2-7.2-2.8v11.5c0 1.7 3.2 3.1 7.3 3.1s7.3-1.4 7.3-3.1l-.2-11.5z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/data/enterprise_user_directory.svg b/src/main/webapp/img/lib/ibm/data/enterprise_user_directory.svg index 5d7be6aee921d480486ab8d51029ceb9720816bb..6a03ae001d28f33f5f11c7aa58799ff95cdd90b5 100644 --- a/src/main/webapp/img/lib/ibm/data/enterprise_user_directory.svg +++ b/src/main/webapp/img/lib/ibm/data/enterprise_user_directory.svg @@ -1,17 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.2 59.2" style="enable-background:new 0 0 59.2 59.2;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#335D80;} - .st1{fill:#FFFFFF;} - .st2{fill:none;stroke:#FFFFFF;stroke-width:0.51;stroke-miterlimit:10;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle class="st0" cx="29.6" cy="29.6" r="29.6"/> -<path class="st1" d="M26.3,20.1v-3.6l-14.2-0.1V20v3.6l-0.1,19l35.6,0.3l0.1-19v-3.6L26.3,20.1z M46.3,41.6l-33.2-0.2l0.2-17.8 - l33.2,0.2L46.3,41.6z"/> -<path class="st1" d="M33.1,35.8h-5.7c-0.8,0-1.4,0.6-1.4,1.4c0,0,0,0,0,0v1.4l8.5,0.1v-1.5C34.5,36.5,33.8,35.8,33.1,35.8 - C33.1,35.8,33.1,35.8,33.1,35.8z"/> -<circle class="st2" cx="30.2" cy="30.8" r="3.4"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.2 59.2"><circle cx="29.6" cy="29.6" r="29.6" fill="#335d80"/><path d="M26.3 20.1v-3.6l-14.2-.1v7.2l-.1 19 35.6.3.1-22.6-21.4-.2zm20 21.5l-33.2-.2.2-17.8 33.2.2-.2 17.8zm-13.2-5.8h-5.7c-.8 0-1.4.6-1.4 1.4v1.4l8.5.1v-1.5c0-.7-.7-1.4-1.4-1.4z" fill="#fff"/><circle cx="30.2" cy="30.8" r="3.4" fill="none" stroke="#fff" stroke-width=".51"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/data/file_repository.svg b/src/main/webapp/img/lib/ibm/data/file_repository.svg index f57aa4074a084abed443cb236dd1f6507ec3db69..86d9e27ed3fc1fc402fc568fbbbcf1f7b05d1476 100644 --- a/src/main/webapp/img/lib/ibm/data/file_repository.svg +++ b/src/main/webapp/img/lib/ibm/data/file_repository.svg @@ -1,30 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 60.6 60.6" style="enable-background:new 0 0 60.6 60.6;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#325C80;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle class="st0" cx="30.3" cy="30.3" r="30.3"/> -<rect x="9.8" y="13" class="st1" width="41" height="34.7"/> -<rect x="11" y="14.1" class="st0" width="11.9" height="9.3"/> -<rect x="14.2" y="18.3" class="st1" width="5.4" height="1"/> -<rect x="23.7" y="14.1" class="st0" width="12.8" height="9.3"/> -<rect x="27.2" y="18.3" class="st1" width="5.9" height="1"/> -<rect x="38" y="14.1" class="st0" width="11.9" height="9.3"/> -<rect x="41.2" y="18.3" class="st1" width="5.4" height="1"/> -<rect x="38" y="24.5" class="st0" width="11.3" height="11.3"/> -<rect x="41.1" y="29.5" class="st1" width="5.2" height="1.2"/> -<rect x="10.7" y="24.5" class="st0" width="11.9" height="11.3"/> -<rect x="14" y="29.5" class="st1" width="5.4" height="1.2"/> -<rect x="23.7" y="24.5" class="st0" width="12.9" height="11.6"/> -<rect x="27.2" y="29.6" class="st1" width="5.9" height="1.3"/> -<rect x="11" y="37.2" class="st0" width="11.9" height="9.3"/> -<rect x="14.2" y="41.3" class="st1" width="5.4" height="1"/> -<rect x="23.7" y="37.2" class="st0" width="12.9" height="9.3"/> -<rect x="27.2" y="41.3" class="st1" width="5.9" height="1"/> -<rect x="38" y="37.2" class="st0" width="11.3" height="9.3"/> -<rect x="41.1" y="41.3" class="st1" width="5.2" height="1"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60.6 60.6"><style><![CDATA[.C{fill:#325c80}.D{fill:#fff}]]></style><circle cx="30.3" cy="30.3" r="30.3" class="C"/><path d="M9.8 13h41v34.7h-41z" class="D"/><path d="M11 14.1h11.9v9.3H11z" class="C"/><path d="M14.2 18.3h5.4v1h-5.4z" class="D"/><path d="M23.7 14.1h12.8v9.3H23.7z" class="C"/><path d="M27.2 18.3h5.9v1h-5.9z" class="D"/><path d="M38 14.1h11.9v9.3H38z" class="C"/><path d="M41.2 18.3h5.4v1h-5.4z" class="D"/><path d="M38 24.5h11.3v11.3H38z" class="C"/><path d="M41.1 29.5h5.2v1.2h-5.2z" class="D"/><path d="M10.7 24.5h11.9v11.3H10.7z" class="C"/><path d="M14 29.5h5.4v1.2H14z" class="D"/><path d="M23.7 24.5h12.9v11.6H23.7z" class="C"/><path d="M27.2 29.6h5.9v1.3h-5.9z" class="D"/><path d="M11 37.2h11.9v9.3H11z" class="C"/><path d="M14.2 41.3h5.4v1h-5.4z" class="D"/><path d="M23.7 37.2h12.9v9.3H23.7z" class="C"/><path d="M27.2 41.3h5.9v1h-5.9z" class="D"/><path d="M38 37.2h11.3v9.3H38z" class="C"/><path d="M41.1 41.3h5.2v1h-5.2z" class="D"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/data/ground_truth.svg b/src/main/webapp/img/lib/ibm/data/ground_truth.svg index 8834c36270b2eaf9f8bf09c0925e3e778b1e460d..b3efc1a8155f367d40c895c8ea4ad335c760479b 100644 --- a/src/main/webapp/img/lib/ibm/data/ground_truth.svg +++ b/src/main/webapp/img/lib/ibm/data/ground_truth.svg @@ -1,19 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.9 59" style="enable-background:new 0 0 59.9 59;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#325C80;} - .st1{fill:none;stroke:#FFFFFF;stroke-width:3;stroke-miterlimit:10;} - .st2{fill:#FFFFFF;stroke:#FFFFFF;stroke-width:2;stroke-miterlimit:10;} -</style> -<title>INDIVIDUAL ICONS</title> -<ellipse class="st0" cx="29.9" cy="29.5" rx="29.9" ry="29.5"/> -<ellipse class="st1" cx="30.1" cy="29.5" rx="14.4" ry="14.2"/> -<ellipse class="st2" cx="30.1" cy="29.5" rx="4.2" ry="4.1"/> -<ellipse class="st1" cx="29.9" cy="29.5" rx="22.2" ry="21.9"/> -<path class="st0" d="M43.2,36.1l8.9,2.5l-5.5,4.7l-1.3,2.3l-2,1l-4.8,5.9L36.4,43l-2.1-9.4L43.2,36.1z"/> -<polygon class="st0" points="51.9,48.4 48.5,51.7 42.5,45.6 45.9,42.3 "/> -<path class="st2" d="M44,43.7l-1.3,0.1L39.4,48l-1.5-6l-1.5-6.1l6.1,1.8l6.1,1.8l-4.4,3L44,43.7z"/> -<line class="st1" x1="44" y1="43.7" x2="49.6" y2="49.5"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.9 59"><ellipse cx="29.9" cy="29.5" rx="29.9" ry="29.5" fill="#325c80"/><g stroke="#fff"><ellipse cx="30.1" cy="29.5" rx="14.4" ry="14.2" fill="none" stroke-width="3"/><ellipse cx="30.1" cy="29.5" rx="4.2" ry="4.1" fill="#fff" stroke-width="2"/><ellipse cx="29.9" cy="29.5" rx="22.2" ry="21.9" fill="none" stroke-width="3"/></g><g fill="#325c80"><path d="M43.2 36.1l8.9 2.5-5.5 4.7-1.3 2.3-2 1-4.8 5.9-2.1-9.5-2.1-9.4 8.9 2.5z"/><path d="M51.9 48.4l-3.4 3.3-6-6.1 3.4-3.3z"/></g><g stroke="#fff" stroke-miterlimit="10"><path d="M44 43.7l-1.3.1-3.3 4.2-1.5-6-1.5-6.1 12.2 3.6-4.4 3-.2 1.2z" fill="#fff" stroke-width="2"/><path d="M44 43.7l5.6 5.8" fill="none" stroke-width="3"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/data/model.svg b/src/main/webapp/img/lib/ibm/data/model.svg index 1e55a7eff6001f0ed1ea9686f3c22e7de714f5cc..a46d240a399c5c12198bef3488287ff33457bb88 100644 --- a/src/main/webapp/img/lib/ibm/data/model.svg +++ b/src/main/webapp/img/lib/ibm/data/model.svg @@ -1,19 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 58.7 58.7" style="enable-background:new 0 0 58.7 58.7;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#325C80;} - .st1{fill:#FFFFFF;} - .st2{fill:none;stroke:#FFFFFF;stroke-width:1.94;stroke-miterlimit:10;} - .st3{fill:#FFFFFF;stroke:#FFFFFF;stroke-width:1.94;stroke-miterlimit:10;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle class="st0" cx="29.4" cy="29.4" r="29.4"/> -<path class="st1" d="M29.2,26.6l-7.9-4.3l8.1-4l7.6,4L29.2,26.6z"/> -<path class="st1" d="M37.7,31.9l-8.2,4.6v-8.9l7.9-4.5L37.7,31.9z"/> -<path class="st1" d="M28.8,36.5L21.1,32V23l7.8,4.4L28.8,36.5z"/> -<rect x="8.9" y="14" class="st2" width="41" height="26.9"/> -<rect x="25" y="41.8" class="st3" width="8.6" height="1.7"/> -<line class="st2" x1="18.4" y1="44.7" x2="40.3" y2="44.7"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 58.7 58.7"><circle cx="29.4" cy="29.4" r="29.4" fill="#325c80"/><path d="M29.2 26.6l-7.9-4.3 8.1-4 7.6 4-7.8 4.3zm8.5 5.3l-8.2 4.6v-8.9l7.9-4.5.3 8.8zm-8.9 4.6L21.1 32v-9l7.8 4.4-.1 9.1z" fill="#fff"/><g stroke="#fff" stroke-width="1.94" stroke-miterlimit="10"><path d="M8.9 14h41v26.9h-41z" fill="none"/><path d="M25 41.8h8.6v1.7H25z" fill="#fff"/><path d="M18.4 44.7h21.9" fill="none"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/data/tms_data_interface.svg b/src/main/webapp/img/lib/ibm/data/tms_data_interface.svg index c0d6bd6ce159677699472cd516bdb12ca24f4b06..e9f379cf4f37569ee63fda60620739a5fd5e5fb1 100644 --- a/src/main/webapp/img/lib/ibm/data/tms_data_interface.svg +++ b/src/main/webapp/img/lib/ibm/data/tms_data_interface.svg @@ -1,24 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.9 59.9" style="enable-background:new 0 0 59.9 59.9;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#325C80;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle class="st0" cx="29.9" cy="29.9" r="29.9"/> -<path class="st1" d="M48.1,39.1c0.1-0.3,0.1-0.6,0.1-0.9l2-1.1l-0.8-2.8l-2.1,0.1c-0.4-0.6-0.8-1-1.3-1.4l0.1-2.1l-2.6-0.7l-0.9,1.9 - c-0.6,0.1-1.3,0.3-1.8,0.6L39,31.5l-2,2l1.2,2C38.1,35.7,38,36,38,36.3c-0.1,0.3-0.1,0.6-0.1,0.9l-2,1.1l0.8,2.8l2.1-0.2 - c0.4,0.6,0.8,1,1.3,1.4L40,44.5l2.6,0.7l0.9-1.9c0.6-0.1,1.3-0.3,1.8-0.6l1.8,1.2l2-2l-1.2-2C48,39.7,48.1,39.4,48.1,39.1z - M48.5,41.9l-1.4,1.5l-1.5-1l-0.2-0.2l-0.2,0.1c-0.5,0.3-1.1,0.5-1.7,0.6h-0.3l-0.1,0.2l-0.8,1.5l-1.9-0.5l0-1.7v-0.3L40.3,42 - c-0.5-0.4-0.9-0.8-1.2-1.3L39,40.4h-0.3L37,40.5l-0.6-2l1.6-0.9l0.2-0.1v-0.3c0-0.3,0.1-0.5,0.1-0.8c0.1-0.3,0.1-0.5,0.3-0.8 - l0.1-0.3l-0.1-0.2l-1-1.6l1.4-1.5l1.5,1l0.2,0.2l0.2-0.1c0.5-0.3,1.1-0.4,1.7-0.5h0.3l0.1-0.2l0.7-1.6l1.9,0.5l0,1.7v0.3l0.2,0.2 - c0.5,0.3,0.9,0.8,1.2,1.3l0.1,0.2h0.3l1.7-0.2l0.6,2l-1.6,1L47.8,38v0.3c0,0.3-0.1,0.5-0.1,0.8c-0.1,0.3-0.1,0.5-0.3,0.8l-0.1,0.3 - l0.1,0.2L48.5,41.9z"/> -<path class="st1" d="M43.8,34.9c-1.5-0.4-3,0.5-3.3,2c0,0,0,0.1,0,0.1c-0.4,1.5,0.4,3.1,1.9,3.6c1.5,0.4,3-0.5,3.3-2 - c0,0,0-0.1,0-0.1C46.1,36.9,45.2,35.3,43.8,34.9z M42.8,38.7c-0.5-0.2-0.8-0.7-0.7-1.2c0.1-0.5,0.6-0.8,1.1-0.7c0,0,0,0,0,0 - c0.5,0.2,0.8,0.7,0.7,1.2C43.8,38.4,43.4,38.8,42.8,38.7C42.8,38.7,42.8,38.7,42.8,38.7L42.8,38.7z"/> -<polygon class="st1" points="24.9,18.5 24.9,14.7 9.6,14.7 9.6,18.5 9.6,22.3 9.6,42.8 37.5,42.8 37.5,41.5 10.9,41.5 10.9,22.3 - 46.6,22.3 46.6,33.6 47.9,33.6 47.9,22.3 47.9,18.5 "/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.9 59.9"><circle cx="29.9" cy="29.9" r="29.9" fill="#325c80"/><g fill="#fff"><path d="M48.1 39.1c.1-.3.1-.6.1-.9l2-1.1-.8-2.8-2.1.1c-.4-.6-.8-1-1.3-1.4l.1-2.1-2.6-.7-.9 1.9c-.6.1-1.3.3-1.8.6L39 31.5l-2 2 1.2 2c-.1.2-.2.5-.2.8-.1.3-.1.6-.1.9l-2 1.1.8 2.8 2.1-.2c.4.6.8 1 1.3 1.4l-.1 2.2 2.6.7.9-1.9c.6-.1 1.3-.3 1.8-.6l1.8 1.2 2-2-1.2-2c.1-.2.2-.5.2-.8zm.4 2.8l-1.4 1.5-1.5-1-.2-.2-.2.1c-.5.3-1.1.5-1.7.6h-.3l-.1.2-.8 1.5-1.9-.5v-2l-.1-.1c-.5-.4-.9-.8-1.2-1.3l-.1-.3h-.3l-1.7.1-.6-2 1.6-.9.2-.1v-.3c0-.3.1-.5.1-.8.1-.3.1-.5.3-.8l.1-.3-.1-.2-1-1.6L39 32l1.5 1 .2.2.2-.1c.5-.3 1.1-.4 1.7-.5h.3l.1-.2.7-1.6 1.9.5v2l.2.2c.5.3.9.8 1.2 1.3l.1.2h.3l1.7-.2.6 2-1.6 1-.3.2v.3c0 .3-.1.5-.1.8-.1.3-.1.5-.3.8l-.1.3.1.2 1.1 1.5zm-4.7-7c-1.5-.4-3 .5-3.3 2v.1c-.4 1.5.4 3.1 1.9 3.6 1.5.4 3-.5 3.3-2v-.1c.4-1.6-.5-3.2-1.9-3.6zm-1 3.8c-.5-.2-.8-.7-.7-1.2s.6-.8 1.1-.7c.5.2.8.7.7 1.2-.1.4-.5.8-1.1.7z"/><path d="M24.9 18.5v-3.8H9.6v28.1h27.9v-1.3H10.9V22.3h35.7v11.3h1.3V18.5z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/devops/artifact_management.svg b/src/main/webapp/img/lib/ibm/devops/artifact_management.svg index 5587b1be68f4917d7c9e4f38ee47c959bef2e617..3d010dc0acd6f4ae1b59de5bfda42b6db1d34d11 100644 --- a/src/main/webapp/img/lib/ibm/devops/artifact_management.svg +++ b/src/main/webapp/img/lib/ibm/devops/artifact_management.svg @@ -1,47 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.5 59.5" style="enable-background:new 0 0 59.5 59.5;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#F3783A;} - .st1{fill:none;stroke:#FFFFFF;stroke-width:6;stroke-miterlimit:10;} - .st2{fill:none;stroke:#F3783B;stroke-width:2;stroke-miterlimit:10;} - .st3{fill:#FFFFFF;stroke:#FFFFFF;stroke-miterlimit:10;} - .st4{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<g id="Layer_2"> - <circle id="devops_artifact_management" class="st0" cx="29.7" cy="29.7" r="29.7"/> -</g> -<ellipse class="st0" cx="35.1" cy="48.8" rx="3" ry="1.7"/> -<ellipse class="st1" cx="29.2" cy="29.4" rx="18.1" ry="18"/> -<line class="st2" x1="51.5" y1="17.4" x2="46.3" y2="25"/> -<line class="st2" x1="47.3" y1="24.5" x2="35" y2="22.9"/> -<line class="st2" x1="4" y1="33.8" x2="11.9" y2="29.3"/> -<line class="st2" x1="10.9" y1="29.2" x2="21.1" y2="36.2"/> -<ellipse class="st0" cx="39.6" cy="45.7" rx="5.3" ry="5.3"/> -<ellipse class="st0" cx="29.1" cy="47.5" rx="7.2" ry="7"/> -<path class="st3" d="M34,47.5c0-0.6-0.1-1.1-0.3-1.7l1.2-1.5l-1.5-1.9l-1.8,0.9c-0.2-0.1-0.4-0.2-0.7-0.3c-0.2-0.1-0.4-0.2-0.7-0.2 - L29.6,41l-2.3,0.5l-0.1,1.8c-0.5,0.2-0.9,0.6-1.3,1.1l-1.8-0.2l-0.9,2.2l1.5,1c0,0.5,0.1,1.1,0.3,1.6l-1.2,1.4l1.5,1.8l1.7-0.8 - c0.2,0.1,0.4,0.2,0.7,0.3c0.2,0.1,0.4,0.2,0.7,0.2l0.7,1.8l2.3-0.4l0.1-1.8c0.5-0.3,0.9-0.6,1.3-1.1l1.8,0.2l0.9-2.2L34,47.5z - M34.4,50.3l-1.5-0.2h-0.2l-0.1,0.2c-0.3,0.4-0.7,0.7-1.2,1l-0.2,0.1v0.2L31.2,53l-1.8,0.3l-0.6-1.5l-0.1-0.2h-0.2 - c-0.2-0.1-0.5-0.1-0.7-0.2l-0.6-0.3l-0.2-0.1l-0.2,0.1l-1.5,0.8l-1.1-1.4l1-1.2l0.1-0.2L25.3,49c-0.2-0.5-0.3-1-0.3-1.5v-0.2 - l-0.2-0.1l-1.2-0.8l0.6-1.7l1.5,0.2h0.2l0.1-0.2c0.3-0.4,0.7-0.7,1.2-1l0.2-0.1v-0.2l0.1-1.5l1.8-0.3l0.6,1.5l0.1,0.2h0.2 - c0.2,0.1,0.5,0.1,0.7,0.2l0.6,0.3l0.2,0.1l0.2-0.1l1.5-0.8l1.1,1.4l-1,1.2l-0.1,0.2l0.1,0.2c0.2,0.5,0.3,1,0.3,1.5v0.2l0.2,0.1 - l1.2,0.8L34.4,50.3z"/> -<path class="st4" d="M27.2,46.6c-0.5,1.2,0.2,2.6,1.4,3.1c0,0,0,0,0,0c1.2,0.5,2.6-0.1,3.1-1.3c0,0,0,0,0-0.1 - c0.5-1.2-0.2-2.6-1.4-3.1c0,0,0,0,0,0c-1.2-0.5-2.6,0-3.1,1.2C27.2,46.5,27.2,46.5,27.2,46.6z M30.2,47.8c-0.2,0.4-0.6,0.7-1.1,0.5 - c-0.4-0.2-0.7-0.6-0.5-1.1l0,0c0.1-0.5,0.6-0.6,1.1-0.5C30.1,46.9,30.3,47.3,30.2,47.8L30.2,47.8z"/> -<path class="st3" d="M42.7,44c-0.2-0.3-0.5-0.6-0.8-0.8L42,42l-1.5-0.5l-0.7,1.1c-0.2,0-0.3,0-0.5,0.1c-0.2,0-0.3,0.1-0.5,0.1 - L37.8,42l-1.2,1.1l0.6,1.1c-0.2,0.3-0.3,0.7-0.4,1.1l-1.1,0.5l0.3,1.6h1.2c0.2,0.3,0.5,0.6,0.8,0.8l-0.1,1.2l1.5,0.5l0.7-1.1 - c0.2,0,0.3,0,0.5-0.1c0.2,0,0.3-0.1,0.5-0.1l1.1,0.8l1.2-1.1l-0.6-1.1c0.2-0.3,0.3-0.7,0.4-1.1l1.1-0.5L43.8,44L42.7,44z M43.9,45.5 - L43,45.8l-0.1,0.1V46c-0.1,0.3-0.2,0.7-0.3,1l-0.1,0.1l0.1,0.1l0.5,0.9l-0.9,0.8l-0.9-0.7l-0.1-0.1l-0.1,0.1 - c-0.1,0.1-0.3,0.1-0.4,0.1c-0.2,0-0.3,0-0.5,0.1h-0.2L40,48.5l-0.6,0.9L38.3,49l0.1-1v-0.2l-0.1-0.1c-0.3-0.2-0.5-0.5-0.7-0.8 - l-0.1-0.1h-1l-0.2-1.2l0.9-0.4l0.1-0.1V45c0.1-0.3,0.2-0.7,0.3-1l0.1-0.1l-0.1-0.1L37.1,43l0.9-0.8l0.9,0.7l0.1,0.1l0.1-0.1 - c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.3,0,0.5-0.1h0.2l0.1-0.1l0.6-0.9l1.1,0.4l-0.1,1v0.2l0.1,0.1c0.3,0.2,0.5,0.5,0.7,0.8l0.1,0.1h1.1 - L43.9,45.5z"/> -<path class="st4" d="M38.4,45.9c0.2,0.9,1.1,1.4,1.9,1.3c0.8-0.1,1.4-0.9,1.3-1.8c0,0,0,0,0-0.1c-0.2-0.9-1.1-1.4-1.9-1.3 - C38.8,44.2,38.3,45,38.4,45.9C38.4,45.9,38.4,45.9,38.4,45.9z M40.6,45.5c0.1,0.2,0,0.5-0.3,0.6c0,0-0.1,0-0.1,0 - c-0.3,0.1-0.6-0.1-0.7-0.4c0,0,0,0,0,0c-0.1-0.2,0-0.5,0.3-0.6c0,0,0.1,0,0.1,0C40.2,45,40.5,45.2,40.6,45.5 - C40.6,45.5,40.6,45.5,40.6,45.5z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.5 59.5"><g fill="#f3783a"><circle cx="29.7" cy="29.7" r="29.7"/><ellipse cx="35.1" cy="48.8" rx="3" ry="1.7"/></g><g fill="none"><ellipse cx="29.2" cy="29.4" rx="18.1" ry="18" stroke="#fff" stroke-width="6"/><g stroke="#f3783b" stroke-width="2" stroke-miterlimit="10"><path d="M51.5 17.4L46.3 25"/><path d="M47.3 24.5L35 22.9M4 33.8l7.9-4.5"/><path d="M10.9 29.2l10.2 7"/></g></g><g fill="#f3783a"><circle cx="39.6" cy="45.7" r="5.3"/><ellipse cx="29.1" cy="47.5" rx="7.2" ry="7"/></g><g fill="#fff"><path d="M34 47.5c0-.6-.1-1.1-.3-1.7l1.2-1.5-1.5-1.9-1.8.9c-.2-.1-.4-.2-.7-.3-.2-.1-.4-.2-.7-.2l-.6-1.8-2.3.5-.1 1.8c-.5.2-.9.6-1.3 1.1l-1.8-.2-.9 2.2 1.5 1A4.53 4.53 0 0 0 25 49l-1.2 1.4 1.5 1.8 1.7-.8c.2.1.4.2.7.3.2.1.4.2.7.2l.7 1.8 2.3-.4.1-1.8c.5-.3.9-.6 1.3-1.1l1.8.2.9-2.2-1.5-.9zm.4 2.8l-1.5-.2h-.2l-.1.2c-.3.4-.7.7-1.2 1l-.2.1V53l-1.8.3-.6-1.5-.1-.2h-.2c-.2-.1-.5-.1-.7-.2L27 51l-.2.1-1.5.8-1.1-1.4 1-1.2.1-.2V49c-.2-.5-.3-1-.3-1.5v-.2l-.2-.1-1.2-.8.6-1.7 1.5.2h.2l.1-.2c.3-.4.7-.7 1.2-1l.2-.1v-.2l.1-1.5 1.8-.3.6 1.5.1.2h.2c.2.1.5.1.7.2l.8.4.2-.1 1.5-.8 1.1 1.4-1 1.2-.1.2.1.2c.2.5.3 1 .3 1.5v.2l.2.1 1.2.8-.8 1.7z" stroke="#fff" stroke-miterlimit="10"/><path d="M27.2 46.6c-.5 1.2.2 2.6 1.4 3.1s2.6-.1 3.1-1.3v-.1c.5-1.2-.2-2.6-1.4-3.1s-2.6 0-3.1 1.2v.2zm3 1.2c-.2.4-.6.7-1.1.5-.4-.2-.7-.6-.5-1.1.1-.5.6-.6 1.1-.5.4.2.6.6.5 1.1z"/><path d="M42.7 44c-.2-.3-.5-.6-.8-.8L42 42l-1.5-.5-.7 1.1c-.2 0-.3 0-.5.1-.2 0-.3.1-.5.1l-1-.8-1.2 1.1.6 1.1c-.2.3-.3.7-.4 1.1l-1.1.5.3 1.6h1.2c.2.3.5.6.8.8l-.1 1.2 1.5.5.7-1.1c.2 0 .3 0 .5-.1.2 0 .3-.1.5-.1l1.1.8 1.2-1.1-.6-1.1c.2-.3.3-.7.4-1.1l1.1-.5-.5-1.6h-1.1zm1.2 1.5l-.9.3-.1.1v.1l-.3 1-.1.1.1.1.5.9-.9.8-.9-.7-.1-.1-.1.1c-.1.1-.3.1-.4.1-.2 0-.3 0-.5.1H40v.1l-.6.9-1.1-.4.1-1v-.2l-.1-.1c-.3-.2-.5-.5-.7-.8l-.1-.1h-1l-.2-1.2.9-.4.1-.1V45l.3-1 .1-.1-.1-.1-.5-.8.9-.8.9.7.1.1.1-.1c.1-.1.3-.1.4-.1.2 0 .3 0 .5-.1h.2l.1-.1.6-.9 1.1.4-.1 1v.2l.1.1c.3.2.5.5.7.8l.1.1h1.1v1.2z" stroke="#fff" stroke-miterlimit="10"/><path d="M38.4 45.9c.2.9 1.1 1.4 1.9 1.3s1.4-.9 1.3-1.8v-.1c-.2-.9-1.1-1.4-1.9-1.3-.9.2-1.4 1-1.3 1.9zm2.2-.4c.1.2 0 .5-.3.6h-.1c-.3.1-.6-.1-.7-.4-.1-.2 0-.5.3-.6h.1c.3-.1.6.1.7.4z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/devops/build_test.svg b/src/main/webapp/img/lib/ibm/devops/build_test.svg index b36dc978565204a287b36d1e4c31ec626caef888..016138ea8153087af945d09cef38a2f9a3a5691c 100644 --- a/src/main/webapp/img/lib/ibm/devops/build_test.svg +++ b/src/main/webapp/img/lib/ibm/devops/build_test.svg @@ -1,26 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.5 59.5" style="enable-background:new 0 0 59.5 59.5;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#F3783A;} - .st1{fill:#FFFFFF;} - .st2{fill:none;stroke:#FFFFFF;stroke-width:2;stroke-miterlimit:10;} - .st3{fill:none;} -</style> -<title>INDIVIDUAL ICONS</title> -<g id="Layer_2"> - <circle id="devops_build_test_ci" class="st0" cx="29.7" cy="29.7" r="29.7"/> -</g> -<circle class="st1" cx="30" cy="51.6" r="3.2"/> -<circle class="st1" cx="29.6" cy="7.8" r="3.2"/> -<circle class="st1" cx="30" cy="37.1" r="3.2"/> -<circle class="st1" cx="30" cy="22.4" r="3.2"/> -<circle class="st1" cx="48.4" cy="22.4" r="6.2"/> -<circle class="st1" cx="11.1" cy="37.1" r="6.2"/> -<line class="st2" x1="31.3" y1="9.3" x2="44.7" y2="19.1"/> -<line class="st2" x1="14.5" y1="34.9" x2="28.8" y2="22.8"/> -<line class="st3" x1="14.8" y1="35.3" x2="14.5" y2="34.9"/> -<line class="st2" x1="14" y1="39.5" x2="29.2" y2="51.6"/> -<line class="st2" x1="30.9" y1="36.1" x2="46.9" y2="24.1"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.5 59.5"><circle cx="29.7" cy="29.7" r="29.7" fill="#f3783a"/><g fill="#fff"><circle cx="30" cy="51.6" r="3.2"/><circle cx="29.6" cy="7.8" r="3.2"/><circle cx="30" cy="37.1" r="3.2"/><circle cx="30" cy="22.4" r="3.2"/><circle cx="48.4" cy="22.4" r="6.2"/><circle cx="11.1" cy="37.1" r="6.2"/></g><path d="M31.3 9.3l13.4 9.8M14.5 34.9l14.3-12.1M14 39.5l15.2 12.1m1.7-15.5l16-12" fill="none" stroke="#fff" stroke-width="2" stroke-miterlimit="10"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/devops/code_editor.svg b/src/main/webapp/img/lib/ibm/devops/code_editor.svg index 5cd1d15f8545e2c5ecd2962bee6db55a998d613f..db4d30e76ff5dd5e3cfc3463e8b8f70212501c46 100644 --- a/src/main/webapp/img/lib/ibm/devops/code_editor.svg +++ b/src/main/webapp/img/lib/ibm/devops/code_editor.svg @@ -1,16 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 60.5 60.5" style="enable-background:new 0 0 60.5 60.5;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#F3783A;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<g id="Layer_2"> - <circle id="devops_code_editor" class="st0" cx="30.2" cy="30.2" r="30.2"/> -</g> -<rect x="39.1" y="14.5" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -1.3402 34.8332)" class="st1" width="4.5" height="9"/> -<path class="st1" d="M18.5,35.6l6.4,6.4l16-16l-6.4-6.4L18.5,35.6z M24.8,40.5l-4.9-4.8l14.5-14.5l4.8,4.8L24.8,40.5z"/> -<polygon class="st1" points="14.2,46.3 19.6,44.1 16.4,40.9 "/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60.5 60.5"><circle cx="30.2" cy="30.2" r="30.2" fill="#f3783a"/><path d="M36.56 17.44l3.182-3.182 6.364 6.364-3.182 3.182zM18.5 35.6l6.4 6.4 16-16-6.4-6.4-16 16zm6.3 4.9l-4.9-4.8 14.5-14.5 4.8 4.8-14.4 14.5zm-10.6 5.8l5.4-2.2-3.2-3.2z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/devops/collaborative_development.svg b/src/main/webapp/img/lib/ibm/devops/collaborative_development.svg index b57bedafe3099004d57e2904d2c7294aa779244d..57ad6e1e412f616a8cc053d1df7317d83db11096 100644 --- a/src/main/webapp/img/lib/ibm/devops/collaborative_development.svg +++ b/src/main/webapp/img/lib/ibm/devops/collaborative_development.svg @@ -1,69 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - viewBox="0 0 60.2 60.2" - style="enable-background:new 0 0 60.2 60.2;" - xml:space="preserve" - sodipodi:docname="collaborative_development.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata3438"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs - id="defs3436" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview3434" - showgrid="false" - inkscape:zoom="11.088186" - inkscape:cx="13.854599" - inkscape:cy="31.18792" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<style - type="text/css" - id="style3416"> - .st0{fill:#F37738;} - .st1{fill:#FFFFFF;} -</style> -<title - id="title3418">INDIVIDUAL ICONS</title> -<g - id="Layer_2"> - <circle - class="st0" - cx="30.1" - cy="30.1" - r="30.1" - id="circle3420" /> -</g> - - - - -<path - id="path3431" - d="M 45.3,39.6 H 35.2 c -1.4,0 -2.5,1.1 -2.5,2.5 0,0 0,0 0,0 V 46 h 15.2 v -3.8 c -0.1,-1.4 -1.2,-2.5 -2.6,-2.6 0,0 0,0 0,0 z M 25,39.6 H 14.9 c -1.4,0 -2.5,1.1 -2.6,2.5 0,0 0,0 0,0.1 V 46 h 15.2 v -3.8 c 0.1,-1.4 -1,-2.5 -2.5,-2.6 0.1,0 0.1,0 0,0 z M 36.4,16.8 c 0,-3.5 -2.9,-6.3 -6.4,-6.3 -3.5,0 -6.3,2.9 -6.3,6.4 0,3.5 2.8,6.3 6.3,6.3 3.6,0 6.4,-2.8 6.4,-6.4 0,0.1 0,0.1 0,0 z m -6.3,5.1 c -2.8,0 -5.1,-2.3 -5.1,-5.1 0,-2.8 2.3,-5.1 5.1,-5.1 2.8,0 5.1,2.3 5.1,5.1 0,2.8 -2.3,5.1 -5.1,5.1 z m 3.8,8.9 c 0,3.5 2.8,6.3 6.3,6.3 3.5,0 6.3,-2.8 6.3,-6.3 0,-3.5 -2.8,-6.3 -6.3,-6.3 -3.5,0 -6.3,2.8 -6.3,6.3 0,0 0,0 0,0 z m 6.3,-5.1 c 2.8,0 5.1,2.3 5.1,5.1 0,2.8 -2.3,5.1 -5.1,5.1 -2.8,0 -5.1,-2.3 -5.1,-5.1 0.1,-2.8 2.3,-5.1 5.1,-5.1 z M 19.9,37.1 c 3.5,0 6.3,-2.8 6.3,-6.3 0,-3.5 -2.8,-6.3 -6.3,-6.3 -3.5,0 -6.3,2.8 -6.3,6.3 0,3.5 2.8,6.3 6.3,6.3 0,0 0,0 0,0 z m 0,-11.4 c 2.8,0 5.1,2.2 5.1,5 0,2.8 -2.2,5.1 -5,5.1 -2.8,0 -5.1,-2.2 -5.1,-5 0,0 0,0 0,0 0,-2.8 2.3,-5.1 5,-5.1 z" - style="fill:#ffffff" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60.2 60.2"><circle cx="30.1" cy="30.1" r="30.1" fill="#f37738"/><path d="M45.3 39.6H35.2c-1.4 0-2.5 1.1-2.5 2.5V46h15.2v-3.8c-.1-1.4-1.2-2.5-2.6-2.6zm-20.3 0H14.9c-1.4 0-2.5 1.1-2.6 2.5V46h15.2v-3.8c.1-1.4-1-2.5-2.5-2.6zm11.4-22.8c0-3.5-2.9-6.3-6.4-6.3s-6.3 2.9-6.3 6.4 2.8 6.3 6.3 6.3c3.6 0 6.4-2.8 6.4-6.4 0 .1 0 .1 0 0zm-6.3 5.1c-2.8 0-5.1-2.3-5.1-5.1s2.3-5.1 5.1-5.1 5.1 2.3 5.1 5.1-2.3 5.1-5.1 5.1zm3.8 8.9c0 3.5 2.8 6.3 6.3 6.3s6.3-2.8 6.3-6.3-2.8-6.3-6.3-6.3-6.3 2.8-6.3 6.3zm6.3-5.1c2.8 0 5.1 2.3 5.1 5.1s-2.3 5.1-5.1 5.1-5.1-2.3-5.1-5.1c.1-2.8 2.3-5.1 5.1-5.1zM19.9 37.1c3.5 0 6.3-2.8 6.3-6.3s-2.8-6.3-6.3-6.3-6.3 2.8-6.3 6.3 2.8 6.3 6.3 6.3zm0-11.4c2.8 0 5.1 2.2 5.1 5s-2.2 5.1-5 5.1-5.1-2.2-5.1-5 2.3-5.1 5-5.1z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/devops/configuration_management.svg b/src/main/webapp/img/lib/ibm/devops/configuration_management.svg index 2ad01074c053dbca84607a1528359c1e5e0f32ff..c7b8536db6432787c3ea8e4ffdccf4d301eb4e7c 100644 --- a/src/main/webapp/img/lib/ibm/devops/configuration_management.svg +++ b/src/main/webapp/img/lib/ibm/devops/configuration_management.svg @@ -1,23 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 60.2 60.2" style="enable-background:new 0 0 60.2 60.2;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#F37738;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<g id="Layer_2"> - <ellipse class="st0" cx="30.1" cy="30.1" rx="30.1" ry="30.1"/> -</g> -<path class="st1" d="M16.5,32L12,27.5l1.4-1.4h1.7v-1.7l7.1-7.1h9L19.6,28.9h-1.7v1.7L16.5,32z M13.1,27.5l3.3,3.3l0.6-0.6v-2.2h2.2 - l10-10h-6.7l-6.6,6.7V27h-2.2L13.1,27.5z"/> -<path class="st1" d="M38.8,32.2L38.8,32.2c3.7,1.3,7.7-0.7,9-4.4c0.4-1.1,0.5-2.4,0.3-3.5l-0.3-1.5l-1.1,1.1L44,26.6 - c-1.1,1.1-2.8,1.1-3.9,0s-1.1-2.8,0-3.9l2.7-2.7l1.1-1.1l-1.5-0.3c-3.8-0.7-7.5,1.9-8.2,5.7c-0.1,0.4-0.1,0.8-0.1,1.3 - c0,0.8,0.1,1.6,0.4,2.3l0,0l0,0l-3.4,3.4l-5.6-5.6l-0.6-0.6l-0.6,0.6l-2.5,2.5l-0.6,0.6l0.6,0.6l5.6,5.6l-4.9,4.9 - c-1.2,1.2-1.2,3.1,0,4.3c1.2,1.2,3.1,1.2,4.3,0l4.9-4.9l5.4,5.4l0.6,0.6l0.6-0.6l2.5-2.5l0.6-0.6L40.8,41l-5.4-5.4L38.8,32.2 - L38.8,32.2z M22.4,28.8l2.5-2.5l5.6,5.6L28,34.4L22.4,28.8z M40.2,41.6l-2.5,2.5l-5.4-5.4l0.3-0.3l2.2-2.2L40.2,41.6z M38.2,31.6 - l-5.1,5.1l-1.4,1.4l-5.5,5.5c-0.9,0.9-2.3,0.9-3.2,0s-0.9-2.3,0-3.2l4.9-4.9l0.6-0.6l2.5-2.5l0.6-0.6l3.4-3.4l0.4-0.4l-0.2-0.5 - c-1.1-3.3,0.6-6.8,3.9-8c1-0.3,2.1-0.4,3.1-0.2l-2.7,2.8c-1.4,1.4-1.4,3.6,0,5.1c1.4,1.4,3.6,1.4,5,0l0,0l2.7-2.7 - c0.6,3.4-1.6,6.6-5,7.3c-1.1,0.2-2.2,0.1-3.2-0.3l-0.5-0.3L38.2,31.6z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60.2 60.2"><circle cx="30.1" cy="30.1" r="30.1" fill="#f37738"/><path d="M16.5 32L12 27.5l1.4-1.4h1.7v-1.7l7.1-7.1h9L19.6 28.9h-1.7v1.7L16.5 32zm-3.4-4.5l3.3 3.3.6-.6V28h2.2l10-10h-6.7l-6.6 6.7V27h-2.2l-.6.5zm25.7 4.7c3.7 1.3 7.7-.7 9-4.4.4-1.1.5-2.4.3-3.5l-.3-1.5-3.8 3.8c-1.1 1.1-2.8 1.1-3.9 0s-1.1-2.8 0-3.9l3.8-3.8-1.5-.3c-3.8-.7-7.5 1.9-8.2 5.7-.1.4-.1.8-.1 1.3 0 .8.1 1.6.4 2.3l-3.4 3.4-6.2-6.2-3.7 3.7 6.2 6.2-4.9 4.9c-1.2 1.2-1.2 3.1 0 4.3s3.1 1.2 4.3 0l4.9-4.9 6 6 3.7-3.7-6-6 3.4-3.4zm-16.4-3.4l2.5-2.5 5.6 5.6-2.5 2.5-5.6-5.6zm17.8 12.8l-2.5 2.5-5.4-5.4 2.5-2.5 5.4 5.4zm-2-10l-12 12a2.23 2.23 0 0 1-3.2 0 2.23 2.23 0 0 1 0-3.2L35.4 28l-.2-.5c-1.1-3.3.6-6.8 3.9-8 1-.3 2.1-.4 3.1-.2l-2.7 2.8c-1.4 1.4-1.4 3.6 0 5.1a3.5 3.5 0 0 0 5 0l2.7-2.7c.6 3.4-1.6 6.6-5 7.3-1.1.2-2.2.1-3.2-.3l-.5-.3-.3.4z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/devops/continuous_deploy.svg b/src/main/webapp/img/lib/ibm/devops/continuous_deploy.svg index 81f409152ff9eb20dd728cf028ac2f52036b000c..6ebc78972480bb2c28ba3cc4fc109adc2a010331 100644 --- a/src/main/webapp/img/lib/ibm/devops/continuous_deploy.svg +++ b/src/main/webapp/img/lib/ibm/devops/continuous_deploy.svg @@ -1,20 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 60.2 60.2" style="enable-background:new 0 0 60.2 60.2;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#F37738;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<g id="Layer_2"> - <circle class="st0" cx="30.1" cy="30.1" r="30.1"/> -</g> -<rect x="14.2" y="41.4" transform="matrix(0.6124 -0.7906 0.7906 0.6124 -26.8342 29.0278)" class="st1" width="4" height="0.9"/> -<rect x="14.5" y="44" transform="matrix(0.7057 -0.7085 0.7085 0.7057 -26.4337 25.2276)" class="st1" width="5.2" height="0.9"/> -<rect x="17.7" y="44.9" transform="matrix(0.7915 -0.6112 0.6112 0.7915 -23.6102 21.5171)" class="st1" width="4.1" height="0.9"/> -<path class="st1" d="M46.4,15.3c0,0-7.3-6.2-18.8,10.4l-1.3,1.8l0,0C19.7,27.2,15.9,34,15.9,34l5.1,1.4l-1.2,1.7v0.1l0,0 - c0,0-0.4,0.6,1.6,2.9l0.1,0.1c0.1,0.1,0.2,0.1,0.3,0.2c1.9,1.6,2.6,1.6,2.8,1.6l0.2-0.1l1.8-1.2L28,46c0,0,6.8-3.8,6.4-10.4 - c0-0.1,0-0.2,0-0.3l1.7-1.2C52.6,22.6,46.4,15.3,46.4,15.3z M37,28.1c-1.8,0-3.2-1.4-3.3-3.2c0-1.8,1.4-3.2,3.2-3.3 - c1.8,0,3.2,1.4,3.3,3.2c0,0,0,0,0,0C40.2,26.6,38.8,28.1,37,28.1z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60.2 60.2"><circle cx="30.1" cy="30.1" r="30.1" fill="#f37738"/><path d="M14.593 43.155l2.45-3.162.712.55-2.45 3.162zm.38 2.85l3.67-3.684.638.635-3.67 3.684zm2.87.232l3.245-2.506.55.712-3.245 2.506zM46.4 15.3s-7.3-6.2-18.8 10.4l-1.3 1.8c-6.6-.3-10.4 6.5-10.4 6.5l5.1 1.4-1.2 1.7v.1s-.4.6 1.6 2.9l.1.1c.1.1.2.1.3.2 1.9 1.6 2.6 1.6 2.8 1.6l.2-.1 1.8-1.2L28 46s6.8-3.8 6.4-10.4v-.3l1.7-1.2c16.5-11.5 10.3-18.8 10.3-18.8zM37 28.1c-1.8 0-3.2-1.4-3.3-3.2 0-1.8 1.4-3.2 3.2-3.3 1.8 0 3.2 1.4 3.3 3.2 0 1.8-1.4 3.3-3.2 3.3z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/devops/continuous_testing.svg b/src/main/webapp/img/lib/ibm/devops/continuous_testing.svg index 5227bb1fa7749007a6bf49ec45c7aafef6b6b93f..295d1acea029d6acc4d4e05b6479dc0ef4af6d2f 100644 --- a/src/main/webapp/img/lib/ibm/devops/continuous_testing.svg +++ b/src/main/webapp/img/lib/ibm/devops/continuous_testing.svg @@ -1,20 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 60.2 60.2" style="enable-background:new 0 0 60.2 60.2;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#F37738;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<g id="Layer_2"> - <circle class="st0" cx="30.1" cy="30.1" r="30.1"/> - <polygon class="st1" points="23.1,30.7 37.8,30.7 42,43.1 18.8,43.1 "/> - <rect x="27.4" y="28.2" class="st1" width="7.1" height="1.4"/> - <rect x="30.2" y="25.7" class="st1" width="4.3" height="1.4"/> - <rect x="27.4" y="23.4" class="st1" width="7.1" height="1.4"/> - <rect x="30.2" y="21" class="st1" width="4.3" height="1.4"/> - <path class="st1" d="M46.3,46.1H14.5l9.3-25.9v-7.6h13.8v7.6L46.3,46.1z M16.5,44.7h27.9l-8.3-24.3v-6.5H25.2v6.5L16.5,44.7z"/> - <rect x="22.6" y="12.5" class="st1" width="16" height="1.4"/> -</g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60.2 60.2"><circle cx="30.1" cy="30.1" r="30.1" fill="#f37738"/><g fill="#fff"><path d="M23.1 30.7h14.7L42 43.1H18.8zm4.3-2.5h7.1v1.4h-7.1zm2.8-2.5h4.3v1.4h-4.3zm-2.8-2.3h7.1v1.4h-7.1zm2.8-2.4h4.3v1.4h-4.3zm16.1 25.1H14.5l9.3-25.9v-7.6h13.8v7.6l8.7 25.9zm-29.8-1.4h27.9l-8.3-24.3v-6.5H25.2v6.5l-8.7 24.3z"/><path d="M22.6 12.5h16v1.4h-16z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/devops/devops.svg b/src/main/webapp/img/lib/ibm/devops/devops.svg index 343d2171de1f88135824fb4b5d75c84270043f1d..59baaa9ab6ca6f2fb6d5d7aefb9f134bdc36d67f 100644 --- a/src/main/webapp/img/lib/ibm/devops/devops.svg +++ b/src/main/webapp/img/lib/ibm/devops/devops.svg @@ -1,31 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.5 59.4" style="enable-background:new 0 0 59.5 59.4;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#F37738;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<g id="Layer_2"> - <ellipse class="st0" cx="29.7" cy="29.7" rx="29.7" ry="29.7"/> -</g> -<g id="Docs"> - <g id="Imported-Layers"> - <path id="Fill-1" class="st1" d="M48.3,48.8H39c-0.3,0-0.5-0.2-0.5-0.5V29.7c0-0.3,0.2-0.5,0.5-0.5h9.3c0.3,0,0.5,0.2,0.5,0.5 - v18.6C48.9,48.6,48.6,48.8,48.3,48.8z M39.5,47.8h8.3V30.2h-8.3L39.5,47.8z"/> - <path id="Fill-2" class="st1" d="M27.3,20.9c-0.3,0-0.5-0.2-0.5-0.5l0,0v-9.3c0-0.3,0.2-0.5,0.5-0.5c0.1,0,0.2,0,0.2,0.1l8.1,4.7 - c0.2,0.1,0.3,0.5,0.2,0.7c0,0.1-0.1,0.1-0.2,0.2l-8.1,4.6C27.4,20.9,27.3,20.9,27.3,20.9L27.3,20.9z M27.8,12v7.5l6.5-3.8L27.8,12 - z"/> - <path id="Fill-3" class="st1" d="M15.8,35.4c-0.3,0-0.5-0.2-0.5-0.5V15.8c0-0.3,0.2-0.5,0.5-0.5l0,0h11.5c0.3,0.1,0.5,0.3,0.4,0.6 - c0,0.2-0.2,0.4-0.4,0.4h-11v18.6C16.3,35.1,16,35.4,15.8,35.4"/> - <path id="Fill-4" class="st1" d="M15.8,48.8c-2.8,0-5.2-2.3-5.2-5.2c0-2.8,2.3-5.2,5.2-5.2s5.2,2.3,5.2,5.2l0,0 - C20.9,46.5,18.6,48.8,15.8,48.8z M15.8,39.5c-2.3,0-4.1,1.9-4.1,4.1c0,2.3,1.9,4.1,4.1,4.1c2.3,0,4.1-1.8,4.1-4.1 - C19.9,41.4,18.1,39.5,15.8,39.5z"/> - <path id="Fill-5" class="st1" d="M34.9,44.2H20.4c-0.3,0.1-0.5-0.1-0.6-0.4c-0.1-0.3,0.1-0.5,0.4-0.6c0.1,0,0.1,0,0.2,0h14.4 - c0.3-0.1,0.5,0.1,0.6,0.4c0.1,0.3-0.1,0.5-0.4,0.6C35,44.2,34.9,44.2,34.9,44.2z M43.7,30.2c-0.3,0-0.5-0.2-0.5-0.5V16.3h-3.6 - c-0.3,0.1-0.5-0.1-0.6-0.4s0.1-0.5,0.4-0.6c0.1,0,0.1,0,0.2,0h4.2c0.3,0,0.5,0.2,0.5,0.5v14C44.2,30.1,44,30.3,43.7,30.2 - L43.7,30.2z"/> - </g> -</g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.5 59.4"><circle cx="29.7" cy="29.7" r="29.7" fill="#f37738"/><g fill="#fff"><path d="M48.3 48.8H39a.47.47 0 0 1-.5-.5V29.7a.47.47 0 0 1 .5-.5h9.3a.47.47 0 0 1 .5.5v18.6c.1.3-.2.5-.5.5zm-8.8-1h8.3V30.2h-8.3v17.6zM27.3 20.9a.47.47 0 0 1-.5-.5v-9.3a.47.47 0 0 1 .5-.5c.1 0 .2 0 .2.1l8.1 4.7c.2.1.3.5.2.7 0 .1-.1.1-.2.2l-8.1 4.6h-.2zm.5-8.9v7.5l6.5-3.8-6.5-3.7z"/><path d="M15.8 35.4a.47.47 0 0 1-.5-.5V15.8a.47.47 0 0 1 .5-.5h11.5c.3.1.5.3.4.6 0 .2-.2.4-.4.4h-11v18.6c0 .2-.3.5-.5.5m0 13.4c-2.8 0-5.2-2.3-5.2-5.2 0-2.8 2.3-5.2 5.2-5.2s5.2 2.3 5.2 5.2c-.1 2.9-2.4 5.2-5.2 5.2zm0-9.3c-2.3 0-4.1 1.9-4.1 4.1 0 2.3 1.9 4.1 4.1 4.1 2.3 0 4.1-1.8 4.1-4.1 0-2.2-1.8-4.1-4.1-4.1z"/><path d="M34.9 44.2H20.4c-.3.1-.5-.1-.6-.4s.1-.5.4-.6h14.6c.3-.1.5.1.6.4s-.1.5-.4.6h-.1zm8.8-14a.47.47 0 0 1-.5-.5V16.3h-3.6c-.3.1-.5-.1-.6-.4s.1-.5.4-.6h4.4a.47.47 0 0 1 .5.5v14c-.1.3-.3.5-.6.4z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/devops/provision.svg b/src/main/webapp/img/lib/ibm/devops/provision.svg index 170eb928afb6317a6af3a80e6a7315f0b86ee651..4cd9db2c766fffb6838975fa578b6ba9d76d9fbc 100644 --- a/src/main/webapp/img/lib/ibm/devops/provision.svg +++ b/src/main/webapp/img/lib/ibm/devops/provision.svg @@ -1,23 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 65 65" style="enable-background:new 0 0 65 65;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#F37738;} - .st1{fill:#FFFFFF;} -</style> -<title>IBM Cloud Private Ref Arch</title> -<circle class="st0" cx="32.5" cy="32.5" r="32.5"/> -<path class="st1" d="M17.6,45.4c-2.8,0-5.1-2.3-5.1-5.1c0-2.8,2.3-5.1,5.1-5.1s5.1,2.3,5.1,5.1S20.4,45.4,17.6,45.4 - C17.6,45.4,17.6,45.4,17.6,45.4z M17.6,36.2c-2.3,0-4.1,1.8-4.1,4.1c0,2.3,1.8,4.1,4.1,4.1s4.1-1.8,4.1-4.1 - C21.7,38,19.9,36.2,17.6,36.2C17.6,36.2,17.6,36.2,17.6,36.2L17.6,36.2z"/> -<path class="st1" d="M32.2,45.4c-2.8,0-5.1-2.3-5.1-5.1s2.3-5.1,5.1-5.1s5.1,2.3,5.1,5.1S35,45.4,32.2,45.4L32.2,45.4z M32.2,36.2 - c-2.3,0-4.1,1.8-4.1,4.1s1.8,4.1,4.1,4.1c2.3,0,4.1-1.8,4.1-4.1C36.2,38,34.4,36.2,32.2,36.2C32.2,36.2,32.2,36.2,32.2,36.2 - L32.2,36.2z"/> -<circle class="st1" cx="32.2" cy="19" r="4.6"/> -<path class="st1" d="M46.7,45.4c-2.8,0-5.1-2.3-5.1-5.1s2.3-5.1,5.1-5.1s5.1,2.3,5.1,5.1S49.5,45.4,46.7,45.4L46.7,45.4z M46.7,36.2 - c-2.3,0-4.1,1.8-4.1,4.1s1.8,4.1,4.1,4.1c2.3,0,4.1-1.8,4.1-4.1C50.8,38,49,36.2,46.7,36.2C46.7,36.2,46.7,36.2,46.7,36.2L46.7,36.2 - z"/> -<rect x="31.7" y="23.6" class="st1" width="1" height="10.2"/> -<path class="st1" d="M47.2,33.8h-1v-4.2H18.1v4.2h-1v-4.7c0-0.3,0.2-0.5,0.5-0.5l0,0h29.1c0.3,0,0.5,0.2,0.5,0.5l0,0L47.2,33.8z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 65 65"><circle cx="32.5" cy="32.5" r="32.5" fill="#f37738"/><g fill="#fff"><use xlink:href="#B"/><path d="M32.2 45.4c-2.8 0-5.1-2.3-5.1-5.1s2.3-5.1 5.1-5.1 5.1 2.3 5.1 5.1-2.3 5.1-5.1 5.1zm0-9.2c-2.3 0-4.1 1.8-4.1 4.1s1.8 4.1 4.1 4.1 4.1-1.8 4.1-4.1c-.1-2.3-1.9-4.1-4.1-4.1z"/><circle cx="32.2" cy="19" r="4.6"/><use xlink:href="#B" x="29.1"/><path d="M31.7 23.6h1v10.2h-1z"/><path d="M47.2 33.8h-1v-4.2H18.1v4.2h-1v-4.7a.47.47 0 0 1 .5-.5h29.1a.47.47 0 0 1 .5.5v4.7z"/></g><defs ><path id="B" d="M17.6 45.4c-2.8 0-5.1-2.3-5.1-5.1s2.3-5.1 5.1-5.1 5.1 2.3 5.1 5.1-2.3 5.1-5.1 5.1zm0-9.2c-2.3 0-4.1 1.8-4.1 4.1s1.8 4.1 4.1 4.1 4.1-1.8 4.1-4.1-1.8-4.1-4.1-4.1z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/devops/release_management.svg b/src/main/webapp/img/lib/ibm/devops/release_management.svg index 79af728734e1a231820e7b55b0daec5dc0f587eb..f9d15f9f50e8c2f7c454e520dbffe64de4b581e1 100644 --- a/src/main/webapp/img/lib/ibm/devops/release_management.svg +++ b/src/main/webapp/img/lib/ibm/devops/release_management.svg @@ -1,16 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 60.5 60.5" style="enable-background:new 0 0 60.5 60.5;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#F3783A;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<g id="Layer_2"> - <circle id="devops_build_test_ci" class="st0" cx="30.2" cy="30.2" r="30.2"/> -</g> -<path class="st1" d="M39,45.5h6.4v-6.4h-2.3v-10H30.8v-7.6h2.3v-6.4h-6.4v6.4h2.3v7.6H17.4v10H15v6.4h6.4v-6.4h-2.3v-8.3h10V39h-2.3 - v6.4h6.4v-6.4h-2.3v-8.3h10.6V39H39V45.5z M43.7,40.8v2.9h-2.9v-3L43.7,40.8z M19.8,40.8v2.9h-2.9v-3L19.8,40.8z M31.5,40.8v2.9 - h-2.9v-3L31.5,40.8z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60.5 60.5"><circle cx="30.2" cy="30.2" r="30.2" fill="#f3783a"/><path d="M39 45.5h6.4v-6.4h-2.3v-10H30.8v-7.6h2.3v-6.4h-6.4v6.4H29v7.6H17.4v10H15v6.4h6.4v-6.4h-2.3v-8.3h10V39h-2.3v6.4h6.4V39h-2.3v-8.3h10.6V39H39v6.5zm4.7-4.7v2.9h-2.9v-3l2.9.1zm-23.9 0v2.9h-2.9v-3l2.9.1zm11.7 0v2.9h-2.9v-3l2.9.1z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/infrastructure/channels.svg b/src/main/webapp/img/lib/ibm/infrastructure/channels.svg index 7a4a30f23fe371fea91e7ac35b99c9ddfba804ac..318b17b40cbf31cc3b7f0d999882e64fdb305bd1 100644 --- a/src/main/webapp/img/lib/ibm/infrastructure/channels.svg +++ b/src/main/webapp/img/lib/ibm/infrastructure/channels.svg @@ -1,28 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 60 59.7" style="enable-background:new 0 0 60 59.7;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#89C540;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<ellipse class="st0" cx="30" cy="29.9" rx="30" ry="29.9"/> -<path class="st1" d="M18.1,30.8c0-0.1,0-0.2,0-0.3h-6.8c0.1,2.1,0.5,4.2,1.2,6.2H19C18.4,34.7,18.1,32.8,18.1,30.8L18.1,30.8z - M18.1,29.3c0.1-2.2,0.6-4.4,1.3-6.5h-6.8c-0.8,2.1-1.2,4.3-1.3,6.5H18.1L18.1,29.3z M19.8,21.6c0.5-1.4,1.2-2.8,1.9-4.2 - c0.3-0.6,0.7-1.2,1-1.8h-5.6l-0.4,0.4c-1.6,1.6-2.8,3.5-3.8,5.5H19.8z M22.7,18c-0.6,1.2-1.2,2.4-1.7,3.6h8.4v-5.9h-5.3 - C23.6,16.4,23.1,17.2,22.7,18L22.7,18z M20.6,22.8c-0.8,2.1-1.2,4.3-1.4,6.5h10.2v-6.5H20.6z M19.2,30.4c0,0.1,0,0.2,0,0.3l0,0 - c0,2,0.3,4,0.9,5.9h9.3v-6.2H19.2z M23.5,14.5c1-1.4,2.1-2.7,3.4-3.9c-3.1,0.5-6,1.9-8.5,3.9H23.5z M29.4,10.5 - c-1.3,0.4-3,1.9-4.5,4.1h4.5L29.4,10.5L29.4,10.5z M30,9.2L30,9.2c5.3,0,10.3,2.2,14,6.1c7.8,8.2,7.8,21,0,29.2 - c-3.5,3.7-8.3,5.8-13.4,6h-0.2c-0.1,0-0.3,0.1-0.4,0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.4,0-0.7-0.1c-4.9-0.3-9.5-2.4-12.9-6 - c-7.8-8.2-7.8-21,0-29.2C19.6,11.4,24.7,9.2,30,9.2z M33.7,10.7c1.3,1.1,2.4,2.3,3.3,3.8h4.6C39.3,12.6,36.6,11.4,33.7,10.7 - L33.7,10.7z M37.7,15.7l0.2,0.3c1,1.8,1.8,3.7,2.5,5.6H47c-0.9-2-2.2-3.9-3.7-5.5l-0.4-0.4H37.7L37.7,15.7z M36.8,16.5 - c-0.2-0.3-0.3-0.6-0.5-0.9h-5.8v5.9h8.5C38.5,19.8,37.7,18.1,36.8,16.5L36.8,16.5z M35.6,14.5c-1.5-2.1-3.2-3.7-5-4.1v4.1H35.6z - M40.7,22.8c0.7,2.1,1.1,4.3,1.2,6.5h6.8c-0.1-2.2-0.5-4.4-1.3-6.5H40.7L40.7,22.8z M40.8,29.3c-0.2-2.2-0.6-4.4-1.3-6.5h-8.9v6.5 - H40.8L40.8,29.3z M42,30.4c0,2.1-0.4,4.2-1.1,6.2h6.7c0.7-2,1.1-4.1,1.2-6.2H42z M40.5,37.8c-0.8,2.1-1.8,4.1-3,5.9h5.7l0.1-0.1 - c1.6-1.7,2.9-3.7,3.9-5.8H40.5L40.5,37.8z M36.8,44.9c-1,1.5-2.2,2.9-3.5,4.2c3.2-0.6,6.2-2,8.7-4.2H36.8z M30.6,49.3 - c1.4-0.3,3.3-2,5-4.4h-5V49.3z M36.3,43.7c1.2-1.9,2.2-3.9,3-6h-8.8v5.9L36.3,43.7z M39.8,36.6c0.7-2,1.1-4.1,1.1-6.2H30.6v6.2H39.8 - z M26.2,48.9c-1.3-1.2-2.5-2.6-3.4-4.1h-4.7C20.4,46.9,23.2,48.3,26.2,48.9z M22.1,43.7c-1.1-1.9-2-3.9-2.7-5.9h-6.5 - c0.9,2.2,2.2,4.1,3.9,5.8l0.1,0.1L22.1,43.7z M20.5,37.8c0.7,2.1,1.6,4.1,2.8,5.9h6.1v-5.9L20.5,37.8L20.5,37.8z M24,44.9 - c1.6,2.4,3.4,4,4.9,4.4h0.5v-4.4H24z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 59.7"><ellipse cx="30" cy="29.9" rx="30" ry="29.9" fill="#89c540"/><path d="M18.1 30.8v-.3h-6.8c.1 2.1.5 4.2 1.2 6.2H19c-.6-2-.9-3.9-.9-5.9zm0-1.5c.1-2.2.6-4.4 1.3-6.5h-6.8c-.8 2.1-1.2 4.3-1.3 6.5h6.8zm1.7-7.7c.5-1.4 1.2-2.8 1.9-4.2l1-1.8h-5.6l-.4.4c-1.6 1.6-2.8 3.5-3.8 5.5h6.9zm2.9-3.6L21 21.6h8.4v-5.9h-5.3a17.61 17.61 0 0 0-1.4 2.3zm-2.1 4.8c-.8 2.1-1.2 4.3-1.4 6.5h10.2v-6.5h-8.8zm-1.4 7.6v.3c0 2 .3 4 .9 5.9h9.3v-6.2H19.2zm4.3-15.9c1-1.4 2.1-2.7 3.4-3.9-3.1.5-6 1.9-8.5 3.9h5.1zm5.9-4c-1.3.4-3 1.9-4.5 4.1h4.5v-4.1zm.6-1.3c5.3 0 10.3 2.2 14 6.1 7.8 8.2 7.8 21 0 29.2-3.5 3.7-8.3 5.8-13.4 6h-.2c-.1 0-.3.1-.4.1h-.5c-.2 0-.4 0-.7-.1-4.9-.3-9.5-2.4-12.9-6-7.8-8.2-7.8-21 0-29.2 3.7-3.9 8.8-6.1 14.1-6.1zm3.7 1.5c1.3 1.1 2.4 2.3 3.3 3.8h4.6c-2.3-1.9-5-3.1-7.9-3.8zm4 5l.2.3c1 1.8 1.8 3.7 2.5 5.6H47c-.9-2-2.2-3.9-3.7-5.5l-.4-.4h-5.2zm-.9.8c-.2-.3-.3-.6-.5-.9h-5.8v5.9H39c-.5-1.7-1.3-3.4-2.2-5zm-1.2-2c-1.5-2.1-3.2-3.7-5-4.1v4.1h5zm5.1 8.3a24.06 24.06 0 0 1 1.2 6.5h6.8c-.1-2.2-.5-4.4-1.3-6.5h-6.7zm.1 6.5c-.2-2.2-.6-4.4-1.3-6.5h-8.9v6.5h10.2zm1.2 1.1c0 2.1-.4 4.2-1.1 6.2h6.7c.7-2 1.1-4.1 1.2-6.2H42zm-1.5 7.4c-.8 2.1-1.8 4.1-3 5.9h5.7l.1-.1c1.6-1.7 2.9-3.7 3.9-5.8h-6.7zm-3.7 7.1c-1 1.5-2.2 2.9-3.5 4.2 3.2-.6 6.2-2 8.7-4.2h-5.2zm-6.2 4.4c1.4-.3 3.3-2 5-4.4h-5v4.4zm5.7-5.6c1.2-1.9 2.2-3.9 3-6h-8.8v5.9l5.8.1zm3.5-7.1c.7-2 1.1-4.1 1.1-6.2H30.6v6.2h9.2zM26.2 48.9c-1.3-1.2-2.5-2.6-3.4-4.1h-4.7c2.3 2.1 5.1 3.5 8.1 4.1zm-4.1-5.2c-1.1-1.9-2-3.9-2.7-5.9h-6.5c.9 2.2 2.2 4.1 3.9 5.8l.1.1h5.2zm-1.6-5.9c.7 2.1 1.6 4.1 2.8 5.9h6.1v-5.9h-8.9zm3.5 7.1c1.6 2.4 3.4 4 4.9 4.4h.5v-4.4H24z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/infrastructure/cloud_messaging.svg b/src/main/webapp/img/lib/ibm/infrastructure/cloud_messaging.svg index 0ea734acbf500ba0ea1f7196d25d5579d47af0fc..05c278e5f81d00e158ce34d2463f42d62453930e 100644 --- a/src/main/webapp/img/lib/ibm/infrastructure/cloud_messaging.svg +++ b/src/main/webapp/img/lib/ibm/infrastructure/cloud_messaging.svg @@ -1,26 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.8 59.5" style="enable-background:new 0 0 59.8 59.5;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#8DC541;} - .st1{fill:none;stroke:#FFFFFF;stroke-width:1.18;stroke-miterlimit:10;} - .st2{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<ellipse class="st0" cx="29.9" cy="29.8" rx="29.9" ry="29.8"/> -<path class="st1" d="M46.5,36.5L36.7,47v-6.6h-1.5c-3.1,0-6.2-0.9-8.8-2.6c0-0.1,0-0.2,0-0.3c0-2.3-0.9-4.6-2.5-6.2 - c-1.1-1.1-2.5-1.9-4-2.3c-0.5-1.5-0.7-3.1-0.7-4.7c0-4.3,1.7-8.4,4.7-11.4c6.1-6.2,16.2-6.3,22.4-0.1c0,0,0.1,0.1,0.1,0.1 - c3,3,4.7,7.1,4.7,11.4C51.2,28.9,49.6,33.2,46.5,36.5z"/> -<ellipse class="st2" cx="27.4" cy="18.1" rx="1.8" ry="1.8"/> -<ellipse class="st2" cx="31.6" cy="18.1" rx="1.8" ry="1.8"/> -<ellipse class="st2" cx="36.1" cy="18.1" rx="1.8" ry="1.8"/> -<ellipse class="st2" cx="40.7" cy="18.1" rx="1.8" ry="1.8"/> -<path class="st1" d="M11,44.8l5.1,5.6v-3.5h0.8c1.9-0.6,3.7-1.4,5.4-2.4c0.2-0.2,0.4-0.3,0.6-0.5c0.5-0.5,0.9-1.1,1.3-1.7 - c0.3-0.6,0.6-1.1,0.8-1.7c0.1-0.3,0.2-0.6,0.2-0.9c0.1-0.4,0.1-0.8,0.1-1.3c0-2.3-0.9-4.4-2.5-6c-3.1-3.3-8.3-3.4-11.6-0.2 - c-0.1,0.1-0.1,0.1-0.2,0.2c-1.6,1.6-2.5,3.8-2.4,6C8.5,40.8,9.4,43,11,44.8z"/> -<ellipse class="st2" cx="21" cy="35" rx="0.9" ry="0.9"/> -<ellipse class="st2" cx="18.8" cy="35" rx="0.9" ry="0.9"/> -<ellipse class="st2" cx="16.4" cy="35" rx="0.9" ry="0.9"/> -<ellipse class="st2" cx="14.1" cy="35" rx="0.9" ry="0.9"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.8 59.5"><ellipse cx="29.9" cy="29.8" rx="29.9" ry="29.8" fill="#8dc541"/><path d="M46.5 36.5L36.7 47v-6.6h-1.5c-3.1 0-6.2-.9-8.8-2.6v-.3c0-2.3-.9-4.6-2.5-6.2-1.1-1.1-2.5-1.9-4-2.3-.5-1.5-.7-3.1-.7-4.7 0-4.3 1.7-8.4 4.7-11.4 6.1-6.2 16.2-6.3 22.4-.1l.1.1c3 3 4.7 7.1 4.7 11.4.1 4.6-1.5 8.9-4.6 12.2z" fill="none" stroke="#fff" stroke-width="1.18" stroke-miterlimit="10"/><g fill="#fff"><circle cx="27.4" cy="18.1" r="1.8"/><circle cx="31.6" cy="18.1" r="1.8"/><circle cx="36.1" cy="18.1" r="1.8"/><circle cx="40.7" cy="18.1" r="1.8"/></g><path d="M11 44.8l5.1 5.6v-3.5h.8a26.14 26.14 0 0 0 5.4-2.4c.2-.2.4-.3.6-.5.5-.5.9-1.1 1.3-1.7.3-.6.6-1.1.8-1.7.1-.3.2-.6.2-.9.1-.4.1-.8.1-1.3 0-2.3-.9-4.4-2.5-6-3.1-3.3-8.3-3.4-11.6-.2l-.2.2c-1.6 1.6-2.5 3.8-2.4 6-.1 2.4.8 4.6 2.4 6.4z" fill="none" stroke="#fff" stroke-width="1.18" stroke-miterlimit="10"/><g fill="#fff"><circle cx="21" cy="35" r=".9"/><circle cx="18.8" cy="35" r=".9"/><circle cx="16.4" cy="35" r=".9"/><circle cx="14.1" cy="35" r=".9"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/infrastructure/dashboard.svg b/src/main/webapp/img/lib/ibm/infrastructure/dashboard.svg index daf438ffabf079d8826f4a642b366ad22dbc8408..7022c575632efba30dc920b6ffc91b47ac87ed00 100644 --- a/src/main/webapp/img/lib/ibm/infrastructure/dashboard.svg +++ b/src/main/webapp/img/lib/ibm/infrastructure/dashboard.svg @@ -1,15 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 65 64.7" style="enable-background:new 0 0 65 64.7;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#7DBD31;} - .st1{fill:#FFFFFF;} -</style> -<title>IBM Cloud Private Ref Arch</title> -<ellipse class="st0" cx="32.5" cy="32.4" rx="32.5" ry="32.4"/> -<path class="st1" d="M27.2,40.6c-2.9-2.9-2.9-7.6,0-10.6s7.6-2.9,10.6,0c2.9,2.9,2.9,7.6,0,10.6c0,0,0,0,0,0l2.1,2.1 - C44,38.7,44,32,39.9,28s-10.7-4.1-14.8,0s-4.1,10.7,0,14.8c0,0,0,0,0,0L27.2,40.6z"/> -<polygon class="st1" points="31,45.8 34,45.8 32.5,32.4 "/> -<path class="st1" d="M10.1,14.4v35.9h44.8V14.4H10.1z M53.4,48.8H11.6V21.9h41.8V48.8z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 65 64.7"><ellipse cx="32.5" cy="32.4" rx="32.5" ry="32.4" fill="#7dbd31"/><path d="M27.2 40.6c-2.9-2.9-2.9-7.6 0-10.6s7.6-2.9 10.6 0c2.9 2.9 2.9 7.6 0 10.6l2.1 2.1c4.1-4 4.1-10.7 0-14.7s-10.7-4.1-14.8 0a10.44 10.44 0 0 0 0 14.8l2.1-2.2zm3.8 5.2h3l-1.5-13.4zM10.1 14.4v35.9h44.8V14.4H10.1zm43.3 34.4H11.6V21.9h41.8v26.9z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/infrastructure/diagnostics.svg b/src/main/webapp/img/lib/ibm/infrastructure/diagnostics.svg index edfb108ad5aea2e6386ccebf4d02caf0efdb7e0f..baa3412b82327bfb0fd9fad26b394e9b857cfd68 100644 --- a/src/main/webapp/img/lib/ibm/infrastructure/diagnostics.svg +++ b/src/main/webapp/img/lib/ibm/infrastructure/diagnostics.svg @@ -1,14 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.8 59.5" style="enable-background:new 0 0 59.8 59.5;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#89C540;} - .st1{fill:none;stroke:#FFFFFF;stroke-width:0.21;stroke-miterlimit:10;} - .st2{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<ellipse class="st0" cx="29.9" cy="29.8" rx="29.9" ry="29.8"/> -<path class="st1" d="M16,26.9h7.1l1.9-1.6l1.3,4l3.1-9.5l1.8,15.4l3-9.6l1.5,1.6h8"/> -<path class="st2" d="M14.8,14.7v30.1h30.1V14.7H14.8z M17.1,17h25.5v20.8H17.1V17z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.8 59.5"><ellipse cx="29.9" cy="29.8" rx="29.9" ry="29.8" fill="#89c540"/><path d="M16,26.9h7.1l1.9-1.6l1.3,4l3.1-9.5l1.8,15.4l3-9.6l1.5,1.6h8" fill="none" stroke="#fff" stroke-width=".21" stroke-miterlimit="10"/><path d="M14.8 14.7v30.1h30.1V14.7H14.8zm2.3 2.3h25.5v20.8H17.1V17z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/infrastructure/edge_services.svg b/src/main/webapp/img/lib/ibm/infrastructure/edge_services.svg index 1b60669f4378d9f2a51b256d84c43307d78c1390..fce78e7ce8e17cbf52502ff96458d1ac4437848f 100644 --- a/src/main/webapp/img/lib/ibm/infrastructure/edge_services.svg +++ b/src/main/webapp/img/lib/ibm/infrastructure/edge_services.svg @@ -1,29 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.5 59.5" style="enable-background:new 0 0 59.5 59.5;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#8CC441;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle class="st0" cx="29.8" cy="29.8" r="29.8"/> -<path class="st1" d="M29.8,12.4c-9.6,0-17.3,7.8-17.3,17.4s7.8,17.3,17.4,17.3c9.6,0,17.3-7.8,17.3-17.3 - C47.1,20.2,39.3,12.4,29.8,12.4z M45.6,29.8c0,1.3-0.2,2.7-0.5,4c-1.9-3.4-4.5-6.3-7.5-8.7c0.2-0.3,0.3-0.6,0.3-0.9 - c0-0.7-0.4-1.3-1-1.5c0.4-2.1,1-4.1,1.8-6C43,19.6,45.6,24.5,45.6,29.8z M37.8,36.3c-0.1-0.7-0.6-1.3-1.3-1.5 - c-0.5-3-0.6-6.1-0.2-9.2c0.1,0,0.3,0,0.4-0.1c3.3,2.5,6,5.8,8,9.4c-0.3,0.9-0.8,1.9-1.3,2.7C41.6,36.9,39.7,36.4,37.8,36.3z - M13.9,29.8c0-0.2,0-0.5,0-0.7c0.5,0.1,1.3,0.2,2.4,0.4c0,0.2,0.1,0.3,0.2,0.5c-0.7,0.8-1.5,1.5-2.4,2.1 - C14,31.3,13.9,30.5,13.9,29.8z M17,20.4c1.7-0.2,3.3-0.3,5-0.1c0.1,0.2,0.3,0.4,0.5,0.6c-1,2.4-2.4,4.7-4,6.8 - c-0.2-0.1-0.4-0.1-0.6-0.1c-0.6,0-1.2,0.4-1.4,0.9c-1.1-0.2-1.9-0.4-2.4-0.4C14.3,25.2,15.4,22.6,17,20.4z M19.3,28.3 - c1.7-2.2,3.1-4.7,4.2-7.2c0.4,0,0.8-0.2,1.1-0.6c0.7,0.1,1.5,0.3,2.3,0.4c2.7,0.6,5.3,1.7,7.7,3.2c0,0.5,0.3,0.9,0.7,1.2 - c-0.4,3.2-0.3,6.4,0.2,9.6c-0.5,0.3-0.9,0.8-0.9,1.4c-0.6,0.1-1.2,0.2-1.8,0.3c-0.3-0.3-0.7-0.5-1.2-0.6h-0.3 - c-2.1-2.4-4.8-4.3-7.7-5.5c-1.3-0.6-2.7-1.1-4.1-1.5V29C19.5,28.8,19.4,28.5,19.3,28.3z M33.2,37.7c0.6-0.1,1.1-0.2,1.7-0.3 - c0.3,0.4,0.7,0.6,1.2,0.6c0.5,1.8,1.1,3.5,1.9,5.1c-0.9,0.6-2,1.1-3,1.5c-0.3-2.1-1-4.2-2.1-6c0.1-0.2,0.2-0.5,0.2-0.8V37.7z - M37.8,16.1c-0.9,2.1-1.5,4.2-2,6.4c-0.4,0.1-0.7,0.3-0.9,0.6c-3-1.8-6.4-3-9.9-3.6v0c0-0.4-0.2-0.8-0.5-1.1 - c0.4-1.2,0.8-2.5,1.1-3.9C29.7,13.3,34.1,13.9,37.8,16.1z M24.5,14.8c-0.3,1.1-0.6,2.1-0.9,3.1h-0.2c-0.8,0-1.5,0.6-1.6,1.4 - c-1.3-0.1-2.6-0.1-3.9,0C19.7,17.3,21.9,15.7,24.5,14.8z M14.3,33.2c1.1-0.8,2.1-1.6,3-2.6c0.2,0.1,0.4,0.1,0.6,0.1 - c0.5,0,0.9-0.2,1.2-0.6c3.6,1.1,8.1,3,11.3,6.6C30.2,37,30,37.3,30,37.7c-0.7,0.3-1.4,0.6-2,0.9c-2.4,1.2-4.7,2.8-6.6,4.6 - C17.8,40.9,15.3,37.3,14.3,33.2z M22.3,43.7c2.4-2.1,5.1-3.8,8-5c0.3,0.5,0.8,0.8,1.4,0.8c0.2,0,0.4,0,0.6-0.1 - c1,1.7,1.6,3.7,1.9,5.7c-1.4,0.4-2.9,0.6-4.4,0.6C27.1,45.6,24.6,44.9,22.3,43.7L22.3,43.7z M39,42.6c-0.8-1.6-1.4-3.2-1.8-4.8 - c0.2-0.1,0.3-0.3,0.4-0.4c1.8,0.1,3.6,0.5,5.3,1.3C41.8,40.2,40.5,41.5,39,42.6L39,42.6z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.5 59.5"><circle cx="29.8" cy="29.8" r="29.8" fill="#8cc441"/><path d="M29.8 12.4c-9.6 0-17.3 7.8-17.3 17.4s7.8 17.3 17.4 17.3a17.31 17.31 0 0 0 17.3-17.3c-.1-9.6-7.9-17.4-17.4-17.4zm15.8 17.4c0 1.3-.2 2.7-.5 4-1.9-3.4-4.5-6.3-7.5-8.7.2-.3.3-.6.3-.9 0-.7-.4-1.3-1-1.5.4-2.1 1-4.1 1.8-6 4.3 2.9 6.9 7.8 6.9 13.1zm-7.8 6.5a1.83 1.83 0 0 0-1.3-1.5c-.5-3-.6-6.1-.2-9.2.1 0 .3 0 .4-.1 3.3 2.5 6 5.8 8 9.4-.3.9-.8 1.9-1.3 2.7-1.8-.7-3.7-1.2-5.6-1.3zm-23.9-6.5v-.7c.5.1 1.3.2 2.4.4 0 .2.1.3.2.5-.7.8-1.5 1.5-2.4 2.1-.1-.8-.2-1.6-.2-2.3zm3.1-9.4c1.7-.2 3.3-.3 5-.1.1.2.3.4.5.6-1 2.4-2.4 4.7-4 6.8-.2-.1-.4-.1-.6-.1-.6 0-1.2.4-1.4.9-1.1-.2-1.9-.4-2.4-.4.2-2.9 1.3-5.5 2.9-7.7zm2.3 7.9c1.7-2.2 3.1-4.7 4.2-7.2.4 0 .8-.2 1.1-.6.7.1 1.5.3 2.3.4 2.7.6 5.3 1.7 7.7 3.2 0 .5.3.9.7 1.2-.4 3.2-.3 6.4.2 9.6-.5.3-.9.8-.9 1.4l-1.8.3c-.3-.3-.7-.5-1.2-.6h-.3c-2.1-2.4-4.8-4.3-7.7-5.5-1.3-.6-2.7-1.1-4.1-1.5 0-.2-.1-.5-.2-.7zm13.9 9.4l1.7-.3c.3.4.7.6 1.2.6.5 1.8 1.1 3.5 1.9 5.1-.9.6-2 1.1-3 1.5-.3-2.1-1-4.2-2.1-6 .1-.2.2-.5.2-.8v-.1zm4.6-21.6c-.9 2.1-1.5 4.2-2 6.4-.4.1-.7.3-.9.6-3-1.8-6.4-3-9.9-3.6 0-.4-.2-.8-.5-1.1.4-1.2.8-2.5 1.1-3.9 4.1-1.2 8.5-.6 12.2 1.6zm-13.3-1.3c-.3 1.1-.6 2.1-.9 3.1h-.2c-.8 0-1.5.6-1.6 1.4-1.3-.1-2.6-.1-3.9 0 1.8-2 4-3.6 6.6-4.5zM14.3 33.2c1.1-.8 2.1-1.6 3-2.6.2.1.4.1.6.1.5 0 .9-.2 1.2-.6 3.6 1.1 8.1 3 11.3 6.6-.2.3-.4.6-.4 1-.7.3-1.4.6-2 .9a27.87 27.87 0 0 0-6.6 4.6c-3.6-2.3-6.1-5.9-7.1-10zm8 10.5c2.4-2.1 5.1-3.8 8-5 .3.5.8.8 1.4.8.2 0 .4 0 .6-.1 1 1.7 1.6 3.7 1.9 5.7-1.4.4-2.9.6-4.4.6-2.7-.1-5.2-.8-7.5-2zM39 42.6c-.8-1.6-1.4-3.2-1.8-4.8.2-.1.3-.3.4-.4 1.8.1 3.6.5 5.3 1.3a18.03 18.03 0 0 1-3.9 3.9z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/infrastructure/enterprise_messaging.svg b/src/main/webapp/img/lib/ibm/infrastructure/enterprise_messaging.svg index 777e8a9251477ad0eb8ad5eb9d14a43545235a62..c207b85765baaa0bd80c903656e892a535ee46da 100644 --- a/src/main/webapp/img/lib/ibm/infrastructure/enterprise_messaging.svg +++ b/src/main/webapp/img/lib/ibm/infrastructure/enterprise_messaging.svg @@ -1,31 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.8 59.5" style="enable-background:new 0 0 59.8 59.5;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#8DC541;} - .st1{fill:none;stroke:#FFFFFF;stroke-width:0.75;stroke-miterlimit:10;} - .st2{fill:#FFFFFF;stroke:#FFFFFF;stroke-width:0.75;stroke-miterlimit:10;} -</style> -<title>INDIVIDUAL ICONS</title> -<ellipse class="st0" cx="29.9" cy="29.8" rx="29.9" ry="29.8"/> -<path class="st1" d="M44.4,52.1c-0.9-0.8-1.8-1.5-2.7-2.4c-1.6-1.5-3.1-3-4.7-4.4c-0.3-0.2-0.6-0.3-0.9-0.4c-3.6-0.6-6.9-2.4-9.5-5 - c-2-2-3.1-4.6-3.3-7.4c-0.3-3.8,1.4-7.5,4.4-9.9c2.8-2.3,6.2-3.7,9.8-4.1c4.9-0.6,9.8,0.7,13.7,3.6c2.7,1.9,4.5,4.8,5,8.1 - c0.1,0.5,0.1,0.9,0.2,1.3V32c-0.1,0.4-0.1,0.8-0.2,1.3c-0.4,2.6-1.6,5.1-3.5,6.9c-2,2-4.6,3.5-7.3,4.3c-0.4,0.1-0.5,0.3-0.4,0.6 - c0.2,1.8,0.5,3.7,0.7,5.6c0.1,0.5-0.2,1.1-0.7,1.3c-0.1,0-0.2,0.1-0.3,0.2L44.4,52.1z"/> -<path class="st1" d="M33.8,31.1c1.2,0,2.1-1,2.1-2.1c0-1.2-1-2.1-2.1-2.1c-1.2,0-2.1,0.9-2.1,2.1c-0.1,1.1,0.8,2,1.9,2.1 - C33.7,31.1,33.7,31.1,33.8,31.1z"/> -<path class="st1" d="M39.9,31.1c1.2,0,2.1-0.9,2.1-2.1s-0.9-2.1-2.1-2.1c-1.2,0-2.1,0.9-2.1,2.1c-0.1,1.1,0.8,2.1,1.9,2.1 - C39.8,31.1,39.9,31.1,39.9,31.1z"/> -<path class="st1" d="M48.2,29c0-1.2-0.9-2.1-2.1-2.1C45,26.9,44,27.8,44,29c0,1.1,0.9,2.1,2,2.1c1.1,0.1,2.1-0.7,2.1-1.8 - C48.2,29.2,48.2,29.1,48.2,29z"/> -<path class="st2" d="M15,24.9c1.2,0,2.1-0.9,2.1-2.1s-0.9-2.1-2.1-2.1s-2.1,0.9-2.1,2.1S13.9,24.9,15,24.9z"/> -<path class="st2" d="M23.3,22.9c0-1.2-0.9-2.1-2.1-2.1s-2.1,0.9-2.1,2.1c0,1.1,0.9,2.1,2,2.1c1.1,0.1,2.1-0.7,2.1-1.8 - C23.3,23,23.3,22.9,23.3,22.9z"/> -<path class="st2" d="M21.6,9.9c1,0.1,1.9,0.2,2.9,0.4c3.9,0.7,7.4,2.7,9.9,5.7c0.2,0.2,0.3,0.4,0.5,0.7c-0.8,0.3-1.6,0.5-2.4,0.7 - c-0.1,0-0.2-0.1-0.2-0.1c-2.6-2.9-6.2-4.6-10.1-4.9C18.2,12,14.2,13,11,15.2c-2.3,1.4-3.9,3.7-4.5,6.3C5.8,24.6,6.8,27.8,9,30 - c2,2.1,4.6,3.6,7.5,4.1c1,0.2,1.3,0.6,1.2,1.7c-0.1,1.1-0.3,2.1-0.4,3.1c0,0.1,0,0.2,0,0.4l4.1-3.9c0.3,0.8,0.6,1.5,0.9,2.2 - c0,0.1,0,0.3-0.1,0.4c-1.9,1.8-3.7,3.6-5.6,5.4c-0.4,0.4-0.9,0.4-1.4,0.2c-0.5-0.2-0.7-0.7-0.6-1.2c0.2-1.8,0.4-3.6,0.7-5.3 - c0.1-0.7,0.1-0.7-0.6-0.9c-3.6-1-6.8-3.3-8.9-6.4c-1-1.5-1.6-3.2-1.8-5c0-0.1-0.1-0.3-0.1-0.4c0-0.5,0-1.1,0-1.6 - c0-0.1,0.1-0.2,0.1-0.3c0.2-2,0.9-3.9,2.1-5.6c2.5-3.4,6.2-5.7,10.4-6.4c0.9-0.2,1.9-0.3,2.9-0.4L21.6,9.9z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.8 59.5"><ellipse cx="29.9" cy="29.8" rx="29.9" ry="29.8" fill="#8dc541"/><g fill="none" stroke="#fff" stroke-width=".75" stroke-miterlimit="10"><path d="M44.4 52.1l-2.7-2.4-4.7-4.4c-.3-.2-.6-.3-.9-.4-3.6-.6-6.9-2.4-9.5-5-2-2-3.1-4.6-3.3-7.4-.3-3.8 1.4-7.5 4.4-9.9 2.8-2.3 6.2-3.7 9.8-4.1 4.9-.6 9.8.7 13.7 3.6a12.07 12.07 0 0 1 5 8.1c.1.5.1.9.2 1.3v.5c-.1.4-.1.8-.2 1.3-.4 2.6-1.6 5.1-3.5 6.9-2 2-4.6 3.5-7.3 4.3-.4.1-.5.3-.4.6l.7 5.6c.1.5-.2 1.1-.7 1.3-.1 0-.2.1-.3.2l-.3-.1z"/><path d="M33.8 31.1c1.2 0 2.1-1 2.1-2.1 0-1.2-1-2.1-2.1-2.1-1.2 0-2.1.9-2.1 2.1-.1 1.1.8 2 1.9 2.1h.2zm6.1 0c1.2 0 2.1-.9 2.1-2.1s-.9-2.1-2.1-2.1-2.1.9-2.1 2.1a1.95 1.95 0 0 0 1.9 2.1h.2zm8.3-2.1c0-1.2-.9-2.1-2.1-2.1-1.1 0-2.1.9-2.1 2.1 0 1.1.9 2.1 2 2.1 1.1.1 2.1-.7 2.1-1.8.1-.1.1-.2.1-.3z"/></g><path d="M15 24.9c1.2 0 2.1-.9 2.1-2.1s-.9-2.1-2.1-2.1-2.1.9-2.1 2.1 1 2.1 2.1 2.1zm8.3-2c0-1.2-.9-2.1-2.1-2.1s-2.1.9-2.1 2.1c0 1.1.9 2.1 2 2.1 1.1.1 2.1-.7 2.1-1.8.1-.2.1-.3.1-.3zm-1.7-13l2.9.4c3.9.7 7.4 2.7 9.9 5.7.2.2.3.4.5.7-.8.3-1.6.5-2.4.7-.1 0-.2-.1-.2-.1-2.6-2.9-6.2-4.6-10.1-4.9-4-.4-8 .6-11.2 2.8-2.3 1.4-3.9 3.7-4.5 6.3-.7 3.1.3 6.3 2.5 8.5 2 2.1 4.6 3.6 7.5 4.1 1 .2 1.3.6 1.2 1.7s-.3 2.1-.4 3.1v.4l4.1-3.9c.3.8.6 1.5.9 2.2 0 .1 0 .3-.1.4l-5.6 5.4c-.4.4-.9.4-1.4.2s-.7-.7-.6-1.2c.2-1.8.4-3.6.7-5.3.1-.7.1-.7-.6-.9-3.6-1-6.8-3.3-8.9-6.4-1-1.5-1.6-3.2-1.8-5 0-.1-.1-.3-.1-.4v-1.6c0-.1.1-.2.1-.3a11.64 11.64 0 0 1 2.1-5.6c2.5-3.4 6.2-5.7 10.4-6.4.9-.2 1.9-.3 2.9-.4l2.2-.2z" stroke="#fff" stroke-width=".75" stroke-miterlimit="10" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/infrastructure/event_feed.svg b/src/main/webapp/img/lib/ibm/infrastructure/event_feed.svg index 26ad597a64536c324d6fe74e982faa45a4e65b21..91f425dbc4c66dd237220e7158040f97c3cbb0ed 100644 --- a/src/main/webapp/img/lib/ibm/infrastructure/event_feed.svg +++ b/src/main/webapp/img/lib/ibm/infrastructure/event_feed.svg @@ -1,24 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.8 59.5" style="enable-background:new 0 0 59.8 59.5;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#89C540;} - .st1{fill:#FFFFFF;} - .st2{fill:none;stroke:#FFFFFF;stroke-width:0.26;stroke-miterlimit:10;} -</style> -<title>INDIVIDUAL ICONS</title> -<ellipse class="st0" cx="29.9" cy="29.8" rx="29.9" ry="29.8"/> -<path class="st1" d="M9.3,13.3v32.9h41.2V13.3H9.3z M47.7,43.5H12v-22h35.7V43.5z"/> -<rect x="12.1" y="21.5" class="st2" width="35.7" height="22"/> -<line class="st2" x1="12.1" y1="39.8" x2="47.7" y2="39.8"/> -<line class="st2" x1="12.1" y1="36.2" x2="47.7" y2="36.2"/> -<line class="st2" x1="12.1" y1="32.5" x2="47.7" y2="32.5"/> -<line class="st2" x1="12.1" y1="28.8" x2="47.7" y2="28.8"/> -<line class="st2" x1="12.1" y1="25.2" x2="47.7" y2="25.2"/> -<line class="st2" x1="41.8" y1="21.5" x2="41.8" y2="43.5"/> -<line class="st2" x1="35.8" y1="21.5" x2="35.8" y2="43.5"/> -<line class="st2" x1="29.9" y1="21.5" x2="29.9" y2="43.5"/> -<line class="st2" x1="23.9" y1="21.5" x2="23.9" y2="43.5"/> -<line class="st2" x1="18" y1="21.5" x2="18" y2="43.5"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.8 59.5"><ellipse cx="29.9" cy="29.8" rx="29.9" ry="29.8" fill="#89c540"/><path d="M9.3 13.3v32.9h41.2V13.3H9.3zm38.4 30.2H12v-22h35.7v22z" fill="#fff"/><g fill="none" stroke="#fff" stroke-width=".26" stroke-miterlimit="10"><path d="M12.1 21.5h35.7v22H12.1z"/><path d="M12.1 39.8h35.6m-35.6-3.6h35.6m-35.6-3.7h35.6m-35.6-3.7h35.6m-35.6-3.6h35.6"/><path d="M41.8 21.5v22m-6-22v22m-5.9-22v22m-6-22v22m-5.9-22v22"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/infrastructure/infrastructure_services.svg b/src/main/webapp/img/lib/ibm/infrastructure/infrastructure_services.svg index fdad986dc57e71e5d599a85f056c7d3bb54a6643..be4c1aeb37661a53fc83b397cb3c4d9521db2e0e 100644 --- a/src/main/webapp/img/lib/ibm/infrastructure/infrastructure_services.svg +++ b/src/main/webapp/img/lib/ibm/infrastructure/infrastructure_services.svg @@ -1,16 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 65 65" style="enable-background:new 0 0 65 65;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#8CC340;} - .st1{fill:#FFFFFF;} - .st2{fill:none;stroke:#FFFFFF;stroke-width:2.5;stroke-miterlimit:10;} -</style> -<title>INDIVIDUAL ICONS 3</title> -<ellipse transform="matrix(0.7071 -0.7071 0.7071 0.7071 -13.4619 32.5)" class="st0" cx="32.5" cy="32.5" rx="32.5" ry="32.5"/> -<path class="st1" d="M30.8,45.1V29.5H11.2v15.6h7.9v1.8h-3v0.7h9.9v-0.7h-3v-1.8H30.8z M12.7,31.1h16.5v12H12.7V31.1z"/> -<path class="st1" d="M53.3,45.1V29.5H33.7v15.6h7.8v1.8h-3v0.7h9.9v-0.7h-3v-1.8H53.3z M35.2,31.1h16.6v12H35.2L35.2,31.1z"/> -<path class="st1" d="M42.3,25.6V10H22.7v15.6h7.9v1.8h-3v0.7h9.9v-0.7h-3v-1.8H42.3z M24.2,11.6h16.6v12H24.2V11.6z"/> -<ellipse class="st2" cx="32.5" cy="32.5" rx="26.7" ry="27.1"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 65 65"><circle transform="matrix(.7071 -.7071 .7071 .7071 -13.4619 32.5)" cx="32.5" cy="32.5" r="32.5" fill="#8cc340"/><path d="M30.8 45.1V29.5H11.2v15.6h7.9v1.8h-3v.7H26v-.7h-3v-1.8h7.8zm-18.1-14h16.5v12H12.7v-12zm40.6 14V29.5H33.7v15.6h7.8v1.8h-3v.7h9.9v-.7h-3v-1.8h7.9zm-18.1-14h16.6v12H35.2v-12zm7.1-5.5V10H22.7v15.6h7.9v1.8h-3v.7h9.9v-.7h-3v-1.8h7.8zm-18.1-14h16.6v12H24.2v-12z" fill="#fff"/><ellipse cx="32.5" cy="32.5" rx="26.7" ry="27.1" fill="none" stroke="#fff" stroke-width="2.5"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/infrastructure/interservice_communication.svg b/src/main/webapp/img/lib/ibm/infrastructure/interservice_communication.svg index ee5ef2ee4e3d6f2d351040a66fb54c96e66afc19..ce92f1ea302afc5ffe98fda3f46307d4b8fbff0c 100644 --- a/src/main/webapp/img/lib/ibm/infrastructure/interservice_communication.svg +++ b/src/main/webapp/img/lib/ibm/infrastructure/interservice_communication.svg @@ -1,20 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 58.5 58.5" style="enable-background:new 0 0 58.5 58.5;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#8DC63F;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<g id="Layer_2"> - <ellipse class="st0" cx="29.3" cy="29.3" rx="29.3" ry="29.3"/> -</g> -<path class="st1" d="M42.2,16.1c-5.3-5.3-13.8-5.3-19.1,0c-3.4,3.4-4.8,8.4-3.5,13h-0.4c-3.7,0-6.8,3-6.8,6.8c0,1.9,0.7,3.7,2,5.1 - l4.8,5.1v-3.4c3.2,0,5.9-2.2,6.6-5.3c2.1,1.3,4.5,1.9,6.9,1.9V46l9.6-10.2c2.6-2.7,4-6.4,4-10.1C46.2,22.1,44.7,18.6,42.2,16.1z - M41.3,35l-7.6,8.1v-5h-1.1c-2.4,0-4.8-0.7-6.8-2c0-0.1,0-0.2,0-0.2c0-3.1-2.1-5.8-5.1-6.6c-0.3-1.2-0.5-2.4-0.5-3.6 - c0-6.8,5.6-12.4,12.4-12.4c6.8,0,12.4,5.6,12.4,12.4C45,29.2,43.7,32.5,41.3,35z"/> -<circle class="st1" cx="32.6" cy="25.7" r="1.7"/> -<circle class="st1" cx="38.2" cy="25.7" r="1.7"/> -<circle class="st1" cx="27" cy="25.7" r="1.7"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 58.5 58.5"><circle cx="29.3" cy="29.3" r="29.3" fill="#8dc63f"/><g fill="#fff"><path d="M42.2 16.1a13.46 13.46 0 0 0-19.1 0c-3.4 3.4-4.8 8.4-3.5 13h-.4a6.81 6.81 0 0 0-6.8 6.8c0 1.9.7 3.7 2 5.1l4.8 5.1v-3.4c3.2 0 5.9-2.2 6.6-5.3 2.1 1.3 4.5 1.9 6.9 1.9V46l9.6-10.2c2.6-2.7 4-6.4 4-10.1-.1-3.6-1.6-7.1-4.1-9.6zM41.3 35l-7.6 8.1v-5h-1.1a12.57 12.57 0 0 1-6.8-2v-.2c0-3.1-2.1-5.8-5.1-6.6-.3-1.2-.5-2.4-.5-3.6 0-6.8 5.6-12.4 12.4-12.4S45 18.9 45 25.7c0 3.5-1.3 6.8-3.7 9.3z"/><circle cx="32.6" cy="25.7" r="1.7"/><circle cx="38.2" cy="25.7" r="1.7"/><circle cx="27" cy="25.7" r="1.7"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/infrastructure/load_balancing_routing.svg b/src/main/webapp/img/lib/ibm/infrastructure/load_balancing_routing.svg index ce459c3ce462eea28e7f2706883adc05807a6ea6..6a71c75668dd041ddeda2057d9809db1c3dceb53 100644 --- a/src/main/webapp/img/lib/ibm/infrastructure/load_balancing_routing.svg +++ b/src/main/webapp/img/lib/ibm/infrastructure/load_balancing_routing.svg @@ -1,16 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 60.5 60.5" style="enable-background:new 0 0 60.5 60.5;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#8DC63F;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle class="st0" cx="30.3" cy="30.3" r="30.3"/> -<path class="st1" d="M37.3,17.9l-0.1,1.4l5.6,0.4l-9.7,7.9c-0.5-0.8-1.3-1.5-2.3-1.8l0.2-13.9l3.8,4.2l1-0.9L30.4,9l-5.7,6l1,1 - l3.9-4.1l-0.2,13.8c-1.1,0.1-2.1,0.6-2.7,1.5l-9-7.8l5.6-0.3v-1.4L15,18l0.9,8.2l1.4-0.2l-0.6-5.6l9.3,8c-0.6,1.8,0.2,3.7,1.8,4.6 - v11.3c-1.8,1.2-2.4,3.6-1.2,5.4c1.2,1.8,3.6,2.4,5.4,1.2c1.8-1.2,2.4-3.6,1.2-5.4c-0.3-0.5-0.7-0.9-1.2-1.2V32.9 - c1.4-0.9,2.1-2.5,1.8-4.1l9.9-7.9l-0.7,5.6l1.4,0.2l1.2-8.2L37.3,17.9z M29.8,49.9c-1.3,0-2.3-1-2.3-2.3s1-2.3,2.3-2.3 - c1.3,0,2.3,1,2.3,2.3C32,48.9,31.1,49.8,29.8,49.9L29.8,49.9z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60.5 60.5"><circle cx="30.3" cy="30.3" r="30.3" fill="#8dc63f"/><path d="M37.3 17.9l-.1 1.4 5.6.4-9.7 7.9c-.5-.8-1.3-1.5-2.3-1.8l.2-13.9 3.8 4.2 1-.9L30.4 9l-5.7 6 1 1 3.9-4.1-.2 13.8c-1.1.1-2.1.6-2.7 1.5l-9-7.8 5.6-.3v-1.4L15 18l.9 8.2 1.4-.2-.6-5.6 9.3 8c-.6 1.8.2 3.7 1.8 4.6v11.3c-1.8 1.2-2.4 3.6-1.2 5.4s3.6 2.4 5.4 1.2 2.4-3.6 1.2-5.4c-.3-.5-.7-.9-1.2-1.2V32.9c1.4-.9 2.1-2.5 1.8-4.1l9.9-7.9-.7 5.6 1.4.2 1.2-8.2-8.3-.6zm-7.5 32a2.26 2.26 0 0 1-2.3-2.3 2.26 2.26 0 0 1 2.3-2.3 2.26 2.26 0 0 1 2.3 2.3c-.1 1.3-1 2.2-2.3 2.3z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/infrastructure/microservices_mesh.svg b/src/main/webapp/img/lib/ibm/infrastructure/microservices_mesh.svg index 4f222c9bad6c34b24e37837f4ffe83ed5c021e10..c43b9ccb148c48d176365fbe51cbbe455dc27305 100644 --- a/src/main/webapp/img/lib/ibm/infrastructure/microservices_mesh.svg +++ b/src/main/webapp/img/lib/ibm/infrastructure/microservices_mesh.svg @@ -1,28 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 64.5 64.5" style="enable-background:new 0 0 64.5 64.5;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#7DBD31;} - .st1{fill:#FFFFFF;} -</style> -<title>IBM Cloud Private Ref Arch</title> -<circle class="st0" cx="32.3" cy="32.3" r="32.3"/> -<path class="st1" d="M9.7,40.1v-1.6c0.4-0.5,0.7-1.2,1.2-1.4c0.9-0.5,1.6-1.3,2-2.2c0.3-0.5,0.6-1,1-1.5c2.5-3.2,5.7-5.8,9.3-7.7 - c0.6-0.3,1-0.8,1.2-1.5c0.2-1.4,1.6-2.3,3-2.1c0.1,0,0.2,0.1,0.4,0.1c0.3,0.1,0.7,0.1,0.9,0c3.3-2.7,7.1-3.9,11.2-4.8 - c0.3-0.1,0.6-0.3,0.8-0.5c0.6-0.7,1.3-1.4,1.9-2.1h1.3c1.2,0.4,2,1.6,2,2.9c0,0.3,0.2,0.6,0.4,0.9c3.5,5.9,5.8,12.4,6.7,19.2 - c0.3,2.2,0,4.7,2,6.4v1.6c-0.2,0.3-0.4,0.5-0.6,0.8c-1.2,1.6-3.8,1.5-4.3-0.3c-0.5-1.4-1.3-1.3-2.3-1.4c-0.8,0-1.5-0.1-2.3-0.1 - c-4.4-0.3-8.7,0.4-12.8,2c-0.4,0.2-0.8,0.5-1.2,0.8c-0.7,0.7-1.2,1.4-1.9,2.1h-1.3c-1.8-0.9-2.1-1.6-1.9-3.5c0-0.3,0-0.6-0.2-0.8 - c-1.9-2.2-4.1-4-7-4.7c-1.9-0.4-3.8-1-5.5,0.8C12.5,42.6,10.9,41.9,9.7,40.1z M31.1,33.6c1,3.5,0.9,7.2-0.4,10.7 - c-0.2,0.4,0,0.8,0.4,0.9c0.2,0.1,0.4,0.1,0.6,0c3.6-1.5,7.4-2.2,11.2-2.1c2.1,0,4.3,0.2,6.4,0.3c0.8,0,1.5-0.2,1-1 - c-1-2.1-2.2-4.2-3.4-6.2c0-0.2-0.5-0.2-0.9-0.2c-0.8-0.1-1.9,0.1-2.3-0.4c-0.8-0.8-1.9-1.2-3-1.2C37.7,34.1,34.5,33.9,31.1,33.6 - L31.1,33.6z M29.7,24.6c6.1-0.8,11,1.4,14.7,6.3c0.5-3.4,0.2-6.9-0.8-10.3c-0.1-0.2-0.3-0.4-0.5-0.5c-0.7-0.4-1.4-0.8-2.1-1.1 - C40.7,19,40.5,19,40.3,19c-3.7,0.8-7.3,1.8-10.3,4.2C29.5,23.6,29.1,24,29.7,24.6L29.7,24.6z M14.8,38.6c3.9-0.4,7.7,0.9,10.5,3.6 - c0.7,0.6,1.3,1.3,2,1.9c0.5,0.4,1.3,0.4,1.7-0.1c0.1-0.1,0.1-0.1,0.1-0.2c1.2-3.2,1.3-6.6,0.3-9.9C24.3,34,18.4,35.9,14.8,38.6 - L14.8,38.6z M31.3,26.3c-0.6,0-1.3,0-1.9,0c-0.7,0.1-1,0.4-0.6,1.1c0.6,1.4,1.2,2.8,1.8,4.1c0.2,0.3,0.4,0.5,0.8,0.6 - c3.6,0.3,7.3,0.5,10.9,0.7c0.8,0,0.9-0.3,0.6-0.9c-0.1-0.3-0.3-0.5-0.5-0.7C39.4,27.7,35.6,26.5,31.3,26.3z M24.7,26.7 - c-4.5,2.5-8.6,5.4-10.9,10.3c4.6-2.8,9.8-4.5,15.2-4.8c-0.7-1.6-1.3-2.9-2-4.3c-0.2-0.2-0.4-0.4-0.6-0.5 - C25.9,27.2,25.4,27,24.7,26.7L24.7,26.7z M45.7,21.2c0.2,2.8,0.3,5.9,0.5,9c0,0.3,0.4,0.6,0.6,0.9c0.4,0.7,1.2,1.5,1.1,2.2 - c-0.1,0.8,0.3,1.7,0.8,2.3c0.3,0.4,0.6,0.8,0.9,1.3c0.3,0.5,0.6,1,0.9,1.5s0.5,0.9,0.7,1.4C50.7,33.2,48.9,26.9,45.7,21.2L45.7,21.2 - z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64.5 64.5"><circle cx="32.3" cy="32.3" r="32.3" fill="#7dbd31"/><path d="M9.7 40.1v-1.6c.4-.5.7-1.2 1.2-1.4a4.73 4.73 0 0 0 2-2.2l1-1.5c2.5-3.2 5.7-5.8 9.3-7.7.6-.3 1-.8 1.2-1.5.2-1.4 1.6-2.3 3-2.1.1 0 .2.1.4.1.3.1.7.1.9 0 3.3-2.7 7.1-3.9 11.2-4.8.3-.1.6-.3.8-.5.6-.7 1.3-1.4 1.9-2.1h1.3c1.2.4 2 1.6 2 2.9 0 .3.2.6.4.9 3.5 5.9 5.8 12.4 6.7 19.2.3 2.2 0 4.7 2 6.4v1.6c-.2.3-.4.5-.6.8-1.2 1.6-3.8 1.5-4.3-.3-.5-1.4-1.3-1.3-2.3-1.4-.8 0-1.5-.1-2.3-.1-4.4-.3-8.7.4-12.8 2-.4.2-.8.5-1.2.8-.7.7-1.2 1.4-1.9 2.1h-1.3c-1.8-.9-2.1-1.6-1.9-3.5 0-.3 0-.6-.2-.8-1.9-2.2-4.1-4-7-4.7-1.9-.4-3.8-1-5.5.8-1.2 1.1-2.8.4-4-1.4zm21.4-6.5c1 3.5.9 7.2-.4 10.7-.2.4 0 .8.4.9.2.1.4.1.6 0 3.6-1.5 7.4-2.2 11.2-2.1 2.1 0 4.3.2 6.4.3.8 0 1.5-.2 1-1-1-2.1-2.2-4.2-3.4-6.2 0-.2-.5-.2-.9-.2-.8-.1-1.9.1-2.3-.4-.8-.8-1.9-1.2-3-1.2-3-.3-6.2-.5-9.6-.8zm-1.4-9c6.1-.8 11 1.4 14.7 6.3.5-3.4.2-6.9-.8-10.3-.1-.2-.3-.4-.5-.5-.7-.4-1.4-.8-2.1-1.1h-.7c-3.7.8-7.3 1.8-10.3 4.2-.5.4-.9.8-.3 1.4zm-14.9 14c3.9-.4 7.7.9 10.5 3.6.7.6 1.3 1.3 2 1.9.5.4 1.3.4 1.7-.1.1-.1.1-.1.1-.2 1.2-3.2 1.3-6.6.3-9.9-5.1.1-11 2-14.6 4.7zm16.5-12.3h-1.9c-.7.1-1 .4-.6 1.1l1.8 4.1c.2.3.4.5.8.6 3.6.3 7.3.5 10.9.7.8 0 .9-.3.6-.9-.1-.3-.3-.5-.5-.7-3-3.5-6.8-4.7-11.1-4.9zm-6.6.4c-4.5 2.5-8.6 5.4-10.9 10.3 4.6-2.8 9.8-4.5 15.2-4.8-.7-1.6-1.3-2.9-2-4.3-.2-.2-.4-.4-.6-.5l-1.7-.7zm21-5.5c.2 2.8.3 5.9.5 9 0 .3.4.6.6.9.4.7 1.2 1.5 1.1 2.2-.1.8.3 1.7.8 2.3.3.4.6.8.9 1.3l.9 1.5c.3.5.5.9.7 1.4-.5-6.6-2.3-12.9-5.5-18.6z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/infrastructure/mobile_backend.svg b/src/main/webapp/img/lib/ibm/infrastructure/mobile_backend.svg index 691de697aed571febdb84379994f2640ec277067..2171d9348a4b95d63ecea7f23d28fd5ec2c329cf 100644 --- a/src/main/webapp/img/lib/ibm/infrastructure/mobile_backend.svg +++ b/src/main/webapp/img/lib/ibm/infrastructure/mobile_backend.svg @@ -1,26 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 60.5 60.5" style="enable-background:new 0 0 60.5 60.5;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#8CC441;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle class="st0" cx="30.3" cy="30.3" r="30.3"/> -<path class="st1" d="M47.6,44.5H12.9V16h34.7V44.5z M14.2,43.2h32.1v-26H14.2V43.2z"/> -<rect x="13.6" y="24.9" class="st1" width="33.4" height="1.3"/> -<rect x="13.6" y="34.4" class="st1" width="33.4" height="1.3"/> -<circle class="st1" cx="43.3" cy="20.9" r="1.5"/> -<circle class="st1" cx="39.6" cy="20.9" r="1.5"/> -<circle class="st1" cx="35.6" cy="20.9" r="1.5"/> -<circle class="st1" cx="43.5" cy="30.3" r="1.5"/> -<circle class="st1" cx="39.7" cy="30.3" r="1.5"/> -<circle class="st1" cx="35.7" cy="30.3" r="1.5"/> -<circle class="st1" cx="43.5" cy="39.5" r="1.5"/> -<circle class="st1" cx="39.8" cy="39.5" r="1.5"/> -<circle class="st1" cx="35.8" cy="39.5" r="1.5"/> -<rect x="16.5" y="19.9" class="st1" width="2" height="2"/> -<rect x="16.5" y="29.3" class="st1" width="2" height="2"/> -<rect x="16.5" y="38.5" class="st1" width="2" height="2"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60.5 60.5"><circle cx="30.3" cy="30.3" r="30.3" fill="#8cc441"/><g fill="#fff"><path d="M47.6 44.5H12.9V16h34.7v28.5zm-33.4-1.3h32.1v-26H14.2v26z"/><path d="M13.6 24.9H47v1.3H13.6zm0 9.5H47v1.3H13.6z"/><circle cx="43.3" cy="20.9" r="1.5"/><circle cx="39.6" cy="20.9" r="1.5"/><circle cx="35.6" cy="20.9" r="1.5"/><circle cx="43.5" cy="30.3" r="1.5"/><circle cx="39.7" cy="30.3" r="1.5"/><circle cx="35.7" cy="30.3" r="1.5"/><circle cx="43.5" cy="39.5" r="1.5"/><circle cx="39.8" cy="39.5" r="1.5"/><circle cx="35.8" cy="39.5" r="1.5"/><path d="M16.5 19.9h2v2h-2zm0 9.4h2v2h-2zm0 9.2h2v2h-2z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/infrastructure/mobile_provider_network.svg b/src/main/webapp/img/lib/ibm/infrastructure/mobile_provider_network.svg index 9e2e226b2b1d99c110710cb8ca08c2b564e17254..601becaff3c471b4e86bb3c446866fe98e311834 100644 --- a/src/main/webapp/img/lib/ibm/infrastructure/mobile_provider_network.svg +++ b/src/main/webapp/img/lib/ibm/infrastructure/mobile_provider_network.svg @@ -1,20 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 60.5 60.5" style="enable-background:new 0 0 60.5 60.5;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#8CC441;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle class="st0" cx="30.3" cy="30.3" r="30.3"/> -<circle class="st1" cx="29.8" cy="21.5" r="2.5"/> -<rect x="29.1" y="23.4" class="st1" width="1.3" height="23.9"/> -<path class="st1" d="M15,47.7l14.7-26.3l14.7,26.3l-14.7-8.4L15,47.7z M31,38.5l10,5.7l-4.8-8.6L31,38.5z M23.3,35.6l-4.9,8.6 - l10-5.7L23.3,35.6z M23.9,34.4l5.8,3.3l5.8-3.3L29.8,24L23.9,34.4z"/> -<path class="st1" d="M23.4,27.8c-3.2-3.6-3.2-9.1,0-12.7l0.9,0.9c-0.2,0.2-4.6,5,0,11L23.4,27.8z"/> -<path class="st1" d="M19.7,31.3c-8.7-10.5,0-19.6,0-19.7l0.9,0.9c-0.3,0.4-7.9,8.4,0,18L19.7,31.3z M20.7,12.5l-0.5-0.5L20.7,12.5 - L20.7,12.5z"/> -<path class="st1" d="M36.6,28l-1-0.8c4.7-6,0.2-10.8,0-11l0.9-0.9C39.7,18.9,39.8,24.4,36.6,28z"/> -<path class="st1" d="M40.3,31.5l-1-0.8c8-9.6,0.4-17.6,0-18l0.9-0.9C40.3,11.9,49,21,40.3,31.5z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60.5 60.5"><circle cx="30.3" cy="30.3" r="30.3" fill="#8cc441"/><g fill="#fff"><circle cx="29.8" cy="21.5" r="2.5"/><path d="M29.1 23.4h1.3v23.9h-1.3z"/><path d="M15 47.7l14.7-26.3 14.7 26.3-14.7-8.4L15 47.7zm16-9.2l10 5.7-4.8-8.6-5.2 2.9zm-7.7-2.9l-4.9 8.6 10-5.7-5.1-2.9zm.6-1.2l5.8 3.3 5.8-3.3L29.8 24l-5.9 10.4zm-.5-6.6c-3.2-3.6-3.2-9.1 0-12.7l.9.9c-.2.2-4.6 5 0 11l-.9.8zm-3.7 3.5c-8.7-10.5 0-19.6 0-19.7l.9.9c-.3.4-7.9 8.4 0 18l-.9.8zm1-18.8l-.5-.5.5.5zM36.6 28l-1-.8c4.7-6 .2-10.8 0-11l.9-.9c3.2 3.6 3.3 9.1.1 12.7zm3.7 3.5l-1-.8c8-9.6.4-17.6 0-18l.9-.9c.1.1 8.8 9.2.1 19.7z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/infrastructure/monitoring.svg b/src/main/webapp/img/lib/ibm/infrastructure/monitoring.svg index 544d57ee3c2020849aebb449c8a350a787c4711d..21215ee9b9397cd5a72eb47266d5fccaab331a4c 100644 --- a/src/main/webapp/img/lib/ibm/infrastructure/monitoring.svg +++ b/src/main/webapp/img/lib/ibm/infrastructure/monitoring.svg @@ -1,17 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 64.5 64.2" style="enable-background:new 0 0 64.5 64.2;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#7DBD31;} - .st1{fill:#FFFFFF;} -</style> -<title>IBM Cloud Private Ref Arch</title> -<ellipse class="st0" cx="32.3" cy="32.1" rx="32.3" ry="32.1"/> -<path class="st1" d="M10,14.3v35.5h44.4V14.3H10z M53,48.4H11.5V21.8H53V48.4z"/> -<path class="st1" d="M32.3,44c6.6,0,11.7-3.6,14.8-8.9c-3.1-5.3-8.2-8.9-14.8-8.9s-11.7,3.6-14.8,8.9C20.6,40.4,25.6,44,32.3,44z - M32.3,27.7c5.4,0,10.3,2.8,13.1,7.4c-4.3,7.2-13.7,9.6-20.9,5.2c-2.1-1.3-3.9-3.1-5.2-5.2C21.9,30.5,26.9,27.7,32.3,27.7z"/> -<path class="st1" d="M32.3,40.3c2.9,0,5.2-2.3,5.1-5.2c0-2.9-2.3-5.2-5.2-5.1c-2.8,0-5.1,2.3-5.1,5.2C27,37.9,29.3,40.3,32.3,40.3 - C32.2,40.3,32.2,40.3,32.3,40.3z M32.3,33.3c1,0,1.7,0.8,1.7,1.7s-0.8,1.7-1.7,1.7s-1.7-0.8-1.7-1.7l0,0 - C30.5,34.1,31.3,33.4,32.3,33.3C32.2,33.3,32.2,33.3,32.3,33.3z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64.5 64.2"><ellipse cx="32.3" cy="32.1" rx="32.3" ry="32.1" fill="#7dbd31"/><path d="M10 14.3v35.5h44.4V14.3H10zm43 34.1H11.5V21.8H53v26.6zM32.3 44c6.6 0 11.7-3.6 14.8-8.9-3.1-5.3-8.2-8.9-14.8-8.9s-11.7 3.6-14.8 8.9c3.1 5.3 8.1 8.9 14.8 8.9zm0-16.3c5.4 0 10.3 2.8 13.1 7.4-4.3 7.2-13.7 9.6-20.9 5.2-2.1-1.3-3.9-3.1-5.2-5.2 2.6-4.6 7.6-7.4 13-7.4zm0 12.6c2.9 0 5.2-2.3 5.1-5.2 0-2.9-2.3-5.2-5.2-5.1-2.8 0-5.1 2.3-5.1 5.2-.1 2.7 2.2 5.1 5.2 5.1-.1 0-.1 0 0 0zm0-7c1 0 1.7.8 1.7 1.7s-.8 1.7-1.7 1.7-1.7-.8-1.7-1.7c-.1-.9.7-1.6 1.7-1.7-.1 0-.1 0 0 0z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/infrastructure/monitoring_logging.svg b/src/main/webapp/img/lib/ibm/infrastructure/monitoring_logging.svg index 0a2bdf65b4cde02ad72b5cb33caf11cd0f79bf9f..f8e5bc032a67fb3bc964f9e6e6e823c2b6356ef2 100644 --- a/src/main/webapp/img/lib/ibm/infrastructure/monitoring_logging.svg +++ b/src/main/webapp/img/lib/ibm/infrastructure/monitoring_logging.svg @@ -1,22 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 58.8 58.7" style="enable-background:new 0 0 58.8 58.7;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#8DC63F;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<g id="Layer_2"> - <ellipse class="st0" cx="29.4" cy="29.4" rx="29.4" ry="29.4"/> -</g> -<polygon class="st1" points="13.2,41.3 13.2,17 12,17 12,41.3 12,42.4 13.2,42.4 46.7,42.4 46.7,41.3 "/> -<rect x="15.5" y="29.7" class="st1" width="8.1" height="9.3"/> -<path class="st1" d="M34,20.5h-8.1v18.5H34V20.5z M32.8,37.8h-5.8V21.6h5.8V37.8z"/> -<rect x="36.3" y="26.2" class="st1" width="8.1" height="1.2"/> -<rect x="36.3" y="28.5" class="st1" width="8.1" height="1.2"/> -<rect x="36.3" y="30.9" class="st1" width="8.1" height="1.2"/> -<rect x="36.3" y="33.2" class="st1" width="8.1" height="1.2"/> -<rect x="36.3" y="35.5" class="st1" width="8.1" height="1.2"/> -<rect x="36.3" y="37.8" class="st1" width="8.1" height="1.2"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 58.8 58.7"><circle cx="29.4" cy="29.4" r="29.4" fill="#8dc63f"/><path d="M13.2 41.3V17H12v25.4h34.7v-1.1zm2.3-11.6h8.1V39h-8.1zM34 20.5h-8.1V39H34V20.5zm-1.2 17.3H27V21.6h5.8v16.2zm3.5-11.6h8.1v1.2h-8.1zm0 2.3h8.1v1.2h-8.1zm0 2.4h8.1v1.2h-8.1zm0 2.3h8.1v1.2h-8.1zm0 2.3h8.1v1.2h-8.1zm0 2.3h8.1V39h-8.1z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/infrastructure/peer_services.svg b/src/main/webapp/img/lib/ibm/infrastructure/peer_services.svg index 3330abbe2e4a35f400ec2e8e8f9a0886bc1822fd..ed824be71d827c0c8ca6a2844a49457cda6a6fe8 100644 --- a/src/main/webapp/img/lib/ibm/infrastructure/peer_services.svg +++ b/src/main/webapp/img/lib/ibm/infrastructure/peer_services.svg @@ -1,33 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.6 59.5" style="enable-background:new 0 0 59.6 59.5;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#8DC63F;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<ellipse class="st0" cx="29.8" cy="29.8" rx="29.8" ry="29.8"/> -<path class="st1" d="M29.8,33.8c-1,1.1-2.1,2.1-3,3.1c-0.1,0.1-0.1,0.5,0,0.7c1.5,5,0.1,9.4-4.2,12.3c-2.8,1.9-6.5,2.2-9.6,0.8 - c-5.3-2.2-7.8-8.3-5.5-13.6c0.6-1.4,1.4-2.6,2.5-3.6c1.9-1.8,4.5-2.8,7.1-2.7c1.8,0,3.7,0.5,5.2,1.4c1.1,0.9,2.2,1.9,3.2,3 - c0.2,0.2,0.3,0.4,0.4,0.6c1-1,2.1-1.9,3.1-2.9c0.1-0.2,0.2-0.5,0.2-0.7c0-1.2,0-2.3,0-3.4c-1.4-0.4-2.7-0.8-4-1.4 - c-2.8-1.3-4.9-3.8-5.5-6.8c-1.3-5.6,2.1-11.1,7.6-12.5s11.1,2.1,12.5,7.6S37.7,27,32.1,28.3c-0.4,0.1-0.9,0.2-1.3,0.2 - c-0.3,0.1-0.5,0.3-0.5,0.5c-0.1,1.1-0.1,2.2,0,3.3c0.1,0.3,0.2,0.6,0.5,0.8c0.8,1,1.7,1.9,2.6,2.8c1-1.1,1.9-2,2.8-2.8 - c1.9-1.7,4.5-2.5,7.1-2.3c4.5,0.2,8.4,3.4,9.5,7.8c1.2,5.6-2.4,11.1-8,12.3s-11.1-2.4-12.3-8c0-0.2-0.1-0.4-0.1-0.5 - c-0.2-1.6,0-3.3,0.6-4.8c0.2-0.3,0.1-0.8-0.2-1C31.7,35.8,30.8,34.8,29.8,33.8z M35.9,25.1c2.9-2.4,3.9-6.4,2.7-9.9 - c-1.3-3.8-5-6.4-9.1-6.2c-4,0.2-7.4,2.9-8.5,6.8c-0.9,3.3,0.3,7.6,2.5,9.1c0.3-1.1,0.4-2.5,1.1-3.4s1.9-1.4,2.9-2 - c-1.6-1.9-1.7-3.9-0.3-5.3c1.4-1.5,3.7-1.5,5.2-0.1c0.6,0.6,1,1.3,1.1,2.1c0.2,1.4-0.4,2.7-1.5,3.6C35,20.2,36.2,22,35.9,25.1 - L35.9,25.1z M14.9,42.6c-1.9-2.2-2-4.2-0.4-5.7c1.4-1.3,3.5-1.4,5-0.1c1.7,1.4,1.6,3.3-0.2,5.9c3,0.4,4.2,2.3,3.9,5.3 - c2.8-2.2,3.9-6.6,2.5-10.1c-1.7-4.8-7.1-7.3-11.9-5.5c-3.1,1.1-5.4,3.8-5.9,7.1c-0.6,3,0.8,7.3,3,8.5C10.5,44.9,11.8,43,14.9,42.6 - L14.9,42.6z M40.5,42.8c-1.8-2.2-2-4.2-0.5-5.7c1.3-1.4,3.5-1.5,5-0.3c1.7,1.4,1.7,3.3-0.1,5.9c1.2,0.3,2.5,0.6,3.1,1.8 - c0.4,1.1,0.8,2.2,1,3.4c2.5-1.9,3.6-6.2,2.3-9.7c-1.7-4.8-7-7.3-11.8-5.6c-2.9,1-5,3.4-5.8,6.3c-0.9,3.4,0.4,7.6,2.8,9.1 - C36.2,45.1,37.4,43.2,40.5,42.8L40.5,42.8z M47.7,47.6c0-2.2-0.6-3.2-2.5-3.6c-1.8-0.4-3.6-0.4-5.3,0.1c-1.2,0.2-2.2,1.2-2.2,2.4 - c-0.1,0.6-0.1,1.2,0,1.8c0,0.4,0.3,0.8,0.6,1c2.4,1.4,5.3,1.6,7.9,0.5C47.6,49.3,47.6,49.2,47.7,47.6L47.7,47.6z M17,43.5 - c-0.9,0.1-1.8,0.2-2.6,0.3c-1.5,0.1-2.6,1.5-2.4,3c0,0,0,0.1,0,0.1c-0.1,0.5-0.1,0.9,0,1.4c0.1,0.4,0.3,0.7,0.6,0.9 - c2.1,1.2,4.7,1.5,7.1,0.8c2.3-0.7,2.6-1.1,2.3-3.6c0-1.2-0.9-2.3-2.1-2.5C18.9,43.7,17.9,43.6,17,43.5z M29.8,20.7v0.1 - c-0.5,0-1,0-1.4,0c-2.6,0.1-3.6,1.1-3.6,3.7c0,0.3,0,0.6,0,0.8c0,0.4,0.2,0.8,0.6,1c2.1,1.1,4.6,1.4,6.9,0.7c2.4-0.7,2.6-1,2.4-3.5 - c0-1.3-1-2.5-2.3-2.6C31.6,20.8,30.7,20.8,29.8,20.7z M16.9,37c-1.4,0-2.5,1.1-2.5,2.5c0,1.4,1.1,2.6,2.6,2.6c1.4,0,2.5-1.1,2.5-2.6 - C19.5,38.1,18.4,37,16.9,37C17,37,17,37,16.9,37z M42.6,37.1c-1.4,0-2.6,1.1-2.6,2.5c0,0,0,0,0,0.1c0.1,1.4,1.3,2.5,2.7,2.4 - C44,42,45,41,45.1,39.7C45.1,38.3,44,37.1,42.6,37.1z M32.3,16.6c0-1.4-1.1-2.5-2.6-2.5c-1.4,0-2.5,1.1-2.5,2.5s1.1,2.5,2.5,2.5 - C31.2,19.2,32.3,18,32.3,16.6z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.6 59.5"><circle cx="29.8" cy="29.8" r="29.8" fill="#8dc63f"/><path d="M29.8 33.8l-3 3.1c-.1.1-.1.5 0 .7 1.5 5 .1 9.4-4.2 12.3-2.8 1.9-6.5 2.2-9.6.8a10.28 10.28 0 0 1-5.5-13.6c.6-1.4 1.4-2.6 2.5-3.6 1.9-1.8 4.5-2.8 7.1-2.7 1.8 0 3.7.5 5.2 1.4 1.1.9 2.2 1.9 3.2 3 .2.2.3.4.4.6 1-1 2.1-1.9 3.1-2.9.1-.2.2-.5.2-.7v-3.4c-1.4-.4-2.7-.8-4-1.4-2.8-1.3-4.9-3.8-5.5-6.8-1.3-5.6 2.1-11.1 7.6-12.5s11.1 2.1 12.5 7.6-2.1 11.3-7.7 12.6c-.4.1-.9.2-1.3.2-.3.1-.5.3-.5.5-.1 1.1-.1 2.2 0 3.3.1.3.2.6.5.8.8 1 1.7 1.9 2.6 2.8 1-1.1 1.9-2 2.8-2.8 1.9-1.7 4.5-2.5 7.1-2.3 4.5.2 8.4 3.4 9.5 7.8 1.2 5.6-2.4 11.1-8 12.3s-11.1-2.4-12.3-8c0-.2-.1-.4-.1-.5-.2-1.6 0-3.3.6-4.8a.78.78 0 0 0-.2-1c-1.1-.8-2-1.8-3-2.8zm6.1-8.7c2.9-2.4 3.9-6.4 2.7-9.9-1.3-3.8-5-6.4-9.1-6.2-4 .2-7.4 2.9-8.5 6.8-.9 3.3.3 7.6 2.5 9.1.3-1.1.4-2.5 1.1-3.4s1.9-1.4 2.9-2c-1.6-1.9-1.7-3.9-.3-5.3 1.4-1.5 3.7-1.5 5.2-.1.6.6 1 1.3 1.1 2.1.2 1.4-.4 2.7-1.5 3.6 3 .4 4.2 2.2 3.9 5.3zm-21 17.5c-1.9-2.2-2-4.2-.4-5.7 1.4-1.3 3.5-1.4 5-.1 1.7 1.4 1.6 3.3-.2 5.9 3 .4 4.2 2.3 3.9 5.3 2.8-2.2 3.9-6.6 2.5-10.1-1.7-4.8-7.1-7.3-11.9-5.5-3.1 1.1-5.4 3.8-5.9 7.1-.6 3 .8 7.3 3 8.5-.4-3.1.9-5 4-5.4zm25.6.2c-1.8-2.2-2-4.2-.5-5.7 1.3-1.4 3.5-1.5 5-.3 1.7 1.4 1.7 3.3-.1 5.9 1.2.3 2.5.6 3.1 1.8.4 1.1.8 2.2 1 3.4 2.5-1.9 3.6-6.2 2.3-9.7-1.7-4.8-7-7.3-11.8-5.6-2.9 1-5 3.4-5.8 6.3-.9 3.4.4 7.6 2.8 9.1-.3-2.9.9-4.8 4-5.2zm7.2 4.8c0-2.2-.6-3.2-2.5-3.6-1.8-.4-3.6-.4-5.3.1-1.2.2-2.2 1.2-2.2 2.4-.1.6-.1 1.2 0 1.8 0 .4.3.8.6 1a8.8 8.8 0 0 0 7.9.5c1.4-.5 1.4-.6 1.5-2.2zM17 43.5l-2.6.3c-1.5.1-2.6 1.5-2.4 3v.1c-.1.5-.1.9 0 1.4.1.4.3.7.6.9 2.1 1.2 4.7 1.5 7.1.8 2.3-.7 2.6-1.1 2.3-3.6a2.57 2.57 0 0 0-2.1-2.5c-1-.2-2-.3-2.9-.4zm12.8-22.8v.1h-1.4c-2.6.1-3.6 1.1-3.6 3.7v.8a1.1 1.1 0 0 0 .6 1c2.1 1.1 4.6 1.4 6.9.7 2.4-.7 2.6-1 2.4-3.5 0-1.3-1-2.5-2.3-2.6-.8-.1-1.7-.1-2.6-.2zM16.9 37c-1.4 0-2.5 1.1-2.5 2.5s1.1 2.6 2.6 2.6c1.4 0 2.5-1.1 2.5-2.6 0-1.4-1.1-2.5-2.6-2.5zm25.7.1c-1.4 0-2.6 1.1-2.6 2.5v.1c.1 1.4 1.3 2.5 2.7 2.4a2.58 2.58 0 0 0 2.4-2.4c0-1.4-1.1-2.6-2.5-2.6zM32.3 16.6c0-1.4-1.1-2.5-2.6-2.5-1.4 0-2.5 1.1-2.5 2.5s1.1 2.5 2.5 2.5c1.5.1 2.6-1.1 2.6-2.5z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/infrastructure/service_discovery_configuration.svg b/src/main/webapp/img/lib/ibm/infrastructure/service_discovery_configuration.svg index 07f34138832a32532d12c29961045b10fa296e1c..e2330fd35b0509c415a9c39737e831fb8cdd3c89 100644 --- a/src/main/webapp/img/lib/ibm/infrastructure/service_discovery_configuration.svg +++ b/src/main/webapp/img/lib/ibm/infrastructure/service_discovery_configuration.svg @@ -1,16 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.5 59.5" style="enable-background:new 0 0 59.5 59.5;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#8CC441;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle class="st0" cx="29.8" cy="29.8" r="29.8"/> -<path class="st1" d="M25.1,12.3c-7.1,0-12.8,5.7-12.8,12.8s5.7,12.8,12.8,12.8s12.8-5.7,12.8-12.8c0,0,0,0,0,0 - C37.9,18.1,32.2,12.3,25.1,12.3z M25.1,36.7c-6.4,0-11.6-5.2-11.6-11.6c0-6.4,5.2-11.6,11.6-11.6c6.4,0,11.6,5.2,11.6,11.6 - C36.7,31.5,31.5,36.7,25.1,36.7z"/> -<rect x="38.9" y="35.6" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -17.1364 41.3757)" class="st1" width="4.9" height="11.5"/> -<circle class="st1" cx="35.6" cy="35.6" r="1.2"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.5 59.5"><circle cx="29.8" cy="29.8" r="29.8" fill="#8cc441"/><g fill="#fff"><path d="M25.1 12.3a12.76 12.76 0 0 0-12.8 12.8 12.76 12.76 0 0 0 12.8 12.8 12.76 12.76 0 0 0 12.8-12.8c0-7-5.7-12.8-12.8-12.8zm0 24.4a11.61 11.61 0 0 1-11.6-11.6 11.61 11.61 0 0 1 11.6-11.6 11.61 11.61 0 0 1 11.6 11.6 11.61 11.61 0 0 1-11.6 11.6zm10.443 2.342l3.465-3.465 8.132 8.132-3.465 3.465z"/><circle cx="35.6" cy="35.6" r="1.2"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/infrastructure/transformation_connectivity.svg b/src/main/webapp/img/lib/ibm/infrastructure/transformation_connectivity.svg index 058887f529d6e4a3af3aa57ec014f34b82d1146f..b5b4b5f3341401d8d99a6157da2bc721634085b6 100644 --- a/src/main/webapp/img/lib/ibm/infrastructure/transformation_connectivity.svg +++ b/src/main/webapp/img/lib/ibm/infrastructure/transformation_connectivity.svg @@ -1,20 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.5 59.5" style="enable-background:new 0 0 59.5 59.5;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#8CC441;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle class="st0" cx="29.8" cy="29.8" r="29.8"/> -<path class="st1" d="M19.4,42.7C13.1,42.7,8,37.6,8,31.3C8,25.1,13.1,20,19.4,20c4.4,0,8.5,2.6,10.3,6.7l-1.2,0.5 - c-2.3-5-8.2-7.2-13.3-4.9S8,30.5,10.3,35.5c1.6,3.5,5.1,5.8,9,5.8h0.2v1.3h-0.1C19.4,42.7,19.4,42.7,19.4,42.7z"/> -<polygon class="st1" points="31,22.4 30,22.1 28.8,26.7 24.4,25.2 24.1,26.1 29.5,27.9 "/> -<rect x="19.4" y="41.4" class="st1" width="16.5" height="1.3"/> -<path class="st1" d="M40.8,21.7C40.4,15.6,35.1,11,29,11.4c-5.1,0.4-9.3,4.2-10.1,9.3l-1.3-0.3c1.1-6.7,7.4-11.3,14.1-10.2 - c5.6,0.9,9.9,5.5,10.4,11.2L40.8,21.7z"/> -<path class="st1" d="M40.5,43.8c-5.5,0-10.2-3.9-11.2-9.3l1.3-0.2c1,5.5,6.3,9.1,11.7,8.1s9.1-6.3,8.1-11.7 - c-0.9-4.7-4.9-8.1-9.7-8.3V21c6.3,0.2,11.2,5.5,10.9,11.8C51.5,38.9,46.5,43.7,40.5,43.8L40.5,43.8z"/> -<polygon class="st1" points="27.1,38.3 28,38.8 30.2,34.7 34.2,37.2 34.7,36.4 29.9,33.3 "/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.5 59.5"><circle cx="29.8" cy="29.8" r="29.8" fill="#8cc441"/><g fill="#fff"><path d="M19.4 42.7C13.1 42.7 8 37.6 8 31.3 8 25.1 13.1 20 19.4 20c4.4 0 8.5 2.6 10.3 6.7l-1.2.5c-2.3-5-8.2-7.2-13.3-4.9S8 30.5 10.3 35.5c1.6 3.5 5.1 5.8 9 5.8h.2v1.3h-.1v.1z"/><path d="M31 22.4l-1-.3-1.2 4.6-4.4-1.5-.3.9 5.4 1.8zm-11.6 19h16.5v1.3H19.4zm21.4-19.7C40.4 15.6 35.1 11 29 11.4c-5.1.4-9.3 4.2-10.1 9.3l-1.3-.3c1.1-6.7 7.4-11.3 14.1-10.2 5.6.9 9.9 5.5 10.4 11.2l-1.3.3z"/><path d="M40.5 43.8c-5.5 0-10.2-3.9-11.2-9.3l1.3-.2c1 5.5 6.3 9.1 11.7 8.1s9.1-6.3 8.1-11.7c-.9-4.7-4.9-8.1-9.7-8.3V21a11.26 11.26 0 0 1 10.9 11.8c-.1 6.1-5.1 10.9-11.1 11z"/><path d="M27.1 38.3l.9.5 2.2-4.1 4 2.5.5-.8-4.8-3.1z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/management/alert_notification.svg b/src/main/webapp/img/lib/ibm/management/alert_notification.svg index 186e0cf6695a808bd7548e8728bf7eb5f7db0733..7eb97edfba8a239e1c18e29aa31f2257cf0795b9 100644 --- a/src/main/webapp/img/lib/ibm/management/alert_notification.svg +++ b/src/main/webapp/img/lib/ibm/management/alert_notification.svg @@ -1,14 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.3 59.3" style="enable-background:new 0 0 59.3 59.3;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#01AF9C;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle id="devops_alert_notification" class="st0" cx="29.6" cy="29.6" r="29.6"/> -<path class="st1" d="M29.6,13.5L11,45.8h37.3L29.6,13.5z M29.6,15.9l16.5,28.6h-33L29.6,15.9z"/> -<polygon class="st1" points="28.3,27.2 28.3,29.6 29,35.8 30.3,35.8 30.8,29.6 30.8,27.2 "/> -<circle class="st1" cx="29.6" cy="38.3" r="1.3"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.3 59.3"><circle cx="29.6" cy="29.6" r="29.6" fill="#01af9c"/><g fill="#fff"><path d="M29.6 13.5L11 45.8h37.3L29.6 13.5zm0 2.4l16.5 28.6h-33l16.5-28.6zm-1.3 11.3v2.4l.7 6.2h1.3l.5-6.2v-2.4z"/><circle cx="29.6" cy="38.3" r="1.3"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/management/api_management.svg b/src/main/webapp/img/lib/ibm/management/api_management.svg index 828bbd021f7cefe6e0d4c442ee503eb5dc055c9d..4a65181864492816cb574b7db08c01d43d0ea215 100644 --- a/src/main/webapp/img/lib/ibm/management/api_management.svg +++ b/src/main/webapp/img/lib/ibm/management/api_management.svg @@ -1,29 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 60.3 60.3" style="enable-background:new 0 0 60.3 60.3;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#00B09C;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle class="st0" cx="30.1" cy="30.1" r="30.1"/> -<rect x="19.6" y="45.3" class="st1" width="21.9" height="1.3"/> -<path class="st1" d="M41.4,25.3c-0.5-6.2-5.9-10.8-12.1-10.3c-5.1,0.4-9.3,4.3-10.2,9.4l-1.3-0.2c1.1-6.8,7.5-11.4,14.3-10.3 - c5.7,0.9,10,5.6,10.5,11.3L41.4,25.3z"/> -<path class="st1" d="M19.6,46.6c-6.3,0-11.5-5.2-11.5-11.5s5.2-11.5,11.5-11.5c2.8,0,5.5,1,7.6,2.9l-0.8,1 - c-4.2-3.7-10.6-3.4-14.4,0.8S8.7,39,12.9,42.7c1.9,1.7,4.3,2.6,6.8,2.6h0.2v1.3h-0.1C19.7,46.6,19.7,46.6,19.6,46.6z"/> -<path class="st1" d="M41.2,46.6L41.2,46.6l-0.1-1.3h0.1c5.3-0.1,9.6-4.5,9.5-9.9c-0.1-5.1-4.2-9.3-9.3-9.5v-1.3 - c6,0.6,10.4,6,9.8,12.1C50.6,42,46.4,46.2,41.2,46.6L41.2,46.6z"/> -<circle class="st1" cx="17.8" cy="31.8" r="3.9"/> -<circle class="st1" cx="41.6" cy="36.4" r="6.6"/> -<circle class="st1" cx="33.5" cy="25.3" r="4.1"/> -<circle class="st1" cx="29.4" cy="38.9" r="4.1"/> -<circle class="st1" cx="26.3" cy="20.7" r="2.1"/> -<circle class="st1" cx="19.6" cy="40.1" r="2.1"/> -<circle class="st1" cx="26.3" cy="30.9" r="2.1"/> -<polygon class="st1" points="19.3,40.6 17.4,31.9 18.2,31.7 20,39.6 29.3,38.4 40.8,36.1 33.2,25.6 26.1,21 26.5,20.3 33.8,24.9 - 42.3,36.6 29.5,39.3 "/> -<polygon class="st1" points="29.8,38.1 29,37.8 32.6,26.5 26.6,31.3 26,30.6 34.3,24 "/> -<rect x="23" y="28" transform="matrix(0.5369 -0.8437 0.8437 0.5369 -18.7629 35.9983)" class="st1" width="0.8" height="14.1"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60.3 60.3"><circle cx="30.1" cy="30.1" r="30.1" fill="#00b09c"/><g fill="#fff"><path d="M19.6 45.3h21.9v1.3H19.6zm21.8-20A11.22 11.22 0 0 0 29.3 15c-5.1.4-9.3 4.3-10.2 9.4l-1.3-.2c1.1-6.8 7.5-11.4 14.3-10.3 5.7.9 10 5.6 10.5 11.3l-1.2.1z"/><path d="M19.6 46.6c-6.3 0-11.5-5.2-11.5-11.5s5.2-11.5 11.5-11.5c2.8 0 5.5 1 7.6 2.9l-.8 1c-4.2-3.7-10.6-3.4-14.4.8s-3.3 10.7.9 14.4a10.14 10.14 0 0 0 6.8 2.6h.2v1.3h-.3zm21.6 0l-.1-1.3h.1c5.3-.1 9.6-4.5 9.5-9.9-.1-5.1-4.2-9.3-9.3-9.5v-1.3c6 .6 10.4 6 9.8 12.1-.6 5.3-4.8 9.5-10 9.9z"/><circle cx="17.8" cy="31.8" r="3.9"/><circle cx="41.6" cy="36.4" r="6.6"/><circle cx="33.5" cy="25.3" r="4.1"/><circle cx="29.4" cy="38.9" r="4.1"/><circle cx="26.3" cy="20.7" r="2.1"/><circle cx="19.6" cy="40.1" r="2.1"/><circle cx="26.3" cy="30.9" r="2.1"/><path d="M19.3 40.6l-1.9-8.7.8-.2 1.8 7.9 9.3-1.2 11.5-2.3-7.6-10.5-7.1-4.6.4-.7 7.3 4.6 8.5 11.7-12.8 2.7z"/><path d="M29.8 38.1l-.8-.3 3.6-11.3-6 4.8-.6-.7 8.3-6.6zm-12.6-6.474l.43-.675 11.896 7.57-.43.675z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/management/cloud_management.svg b/src/main/webapp/img/lib/ibm/management/cloud_management.svg index f4ad71bd79479603f69d7d02da53472ce7896e69..2edd802e270aca91a8f17151bcfa7f63b361bec8 100644 --- a/src/main/webapp/img/lib/ibm/management/cloud_management.svg +++ b/src/main/webapp/img/lib/ibm/management/cloud_management.svg @@ -1,24 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 64 64" style="enable-background:new 0 0 64 64;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#14A38A;} - .st1{fill:#FFFFFF;stroke:#FFFFFF;stroke-width:0.22;stroke-miterlimit:10;} - .st2{fill:#FFFFFF;} -</style> -<title>IBM Cloud Private Ref Arch</title> -<ellipse class="st0" cx="32" cy="32" rx="32" ry="32"/> -<path class="st1" d="M48,26.8c-0.9-7.1-7.4-12.2-14.5-11.3c-5.6,0.7-10.1,5-11.2,10.5c-6.2-1-12.1,3.3-13.1,9.5s3.3,12.1,9.5,13.1 - c0.6,0.1,1.2,0.1,1.9,0.1h22.9c6.3,0,11.4-5.1,11.5-11.4C54.9,32.8,52.2,28.6,48,26.8L48,26.8z M43.5,45.7H20.6 - c-4.6,0.2-8.5-3.5-8.7-8.1C11.7,33,15.4,29.1,20,29c0.2,0,0.4,0,0.6,0c0.4,0,0.8,0,1.3,0.1l3,0.5l0.5-3c0.9-5.4,6-9,11.4-8.1 - c4.4,0.7,7.8,4.3,8.2,8.7l0.2,1.8l1.7,0.7c4.3,1.8,6.2,6.7,4.4,11C49.9,43.7,46.9,45.7,43.5,45.7L43.5,45.7z"/> -<path class="st2" d="M27.9,37.6c2.2,0,4-1.8,4-4s-1.8-4-4-4s-4,1.8-4,4S25.7,37.6,27.9,37.6z M27.9,30.4c1.8,0,3.2,1.4,3.2,3.2 - c0,1.8-1.4,3.2-3.2,3.2s-3.2-1.4-3.2-3.2l0,0C24.8,31.9,26.2,30.4,27.9,30.4L27.9,30.4z"/> -<path class="st2" d="M36.7,33.6c0,2.2,1.8,4,4,4s4-1.8,4-4s-1.8-4-4-4S36.7,31.4,36.7,33.6z M40.7,30.4c1.8,0,3.2,1.4,3.2,3.2 - s-1.4,3.2-3.2,3.2s-3.2-1.4-3.2-3.2v0C37.5,31.9,39,30.5,40.7,30.4L40.7,30.4z"/> -<path class="st2" d="M38.3,24.8c0-2.2-1.8-4-4-4s-4,1.8-4,4s1.8,4,4,4S38.3,27,38.3,24.8z M34.3,28c-1.8,0-3.2-1.4-3.2-3.2 - s1.4-3.2,3.2-3.2c1.8,0,3.2,1.4,3.2,3.2c0,0,0,0,0,0C37.5,26.6,36.1,28,34.3,28L34.3,28z"/> -<path class="st2" d="M31.1,39.2h-6.4c-0.9,0-1.6,0.7-1.6,1.6v2.4h9.6v-2.4C32.7,39.9,32,39.2,31.1,39.2z"/> -<path class="st2" d="M43.9,39.2h-6.4c-0.9,0-1.6,0.7-1.6,1.6v2.4h9.6v-2.4C45.5,39.9,44.8,39.2,43.9,39.2z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><circle cx="32" cy="32" r="32" fill="#14a38a"/><g fill="#fff"><path d="M48 26.8c-.9-7.1-7.4-12.2-14.5-11.3-5.6.7-10.1 5-11.2 10.5-6.2-1-12.1 3.3-13.1 9.5s3.3 12.1 9.5 13.1c.6.1 1.2.1 1.9.1h22.9c6.3 0 11.4-5.1 11.5-11.4-.1-4.5-2.8-8.7-7-10.5zm-4.5 18.9H20.6c-4.6.2-8.5-3.5-8.7-8.1s3.5-8.5 8.1-8.6h.6c.4 0 .8 0 1.3.1l3 .5.5-3c.9-5.4 6-9 11.4-8.1 4.4.7 7.8 4.3 8.2 8.7l.2 1.8 1.7.7c4.3 1.8 6.2 6.7 4.4 11-1.4 3-4.4 5-7.8 5z" stroke="#fff" stroke-width=".22" stroke-miterlimit="10"/><path d="M27.9 37.6c2.2 0 4-1.8 4-4s-1.8-4-4-4-4 1.8-4 4 1.8 4 4 4zm0-7.2c1.8 0 3.2 1.4 3.2 3.2s-1.4 3.2-3.2 3.2-3.2-1.4-3.2-3.2c.1-1.7 1.5-3.2 3.2-3.2zm8.8 3.2c0 2.2 1.8 4 4 4s4-1.8 4-4-1.8-4-4-4-4 1.8-4 4zm4-3.2c1.8 0 3.2 1.4 3.2 3.2s-1.4 3.2-3.2 3.2-3.2-1.4-3.2-3.2c0-1.7 1.5-3.1 3.2-3.2zm-2.4-5.6c0-2.2-1.8-4-4-4s-4 1.8-4 4 1.8 4 4 4 4-1.8 4-4zm-4 3.2c-1.8 0-3.2-1.4-3.2-3.2s1.4-3.2 3.2-3.2 3.2 1.4 3.2 3.2-1.4 3.2-3.2 3.2zm-3.2 11.2h-6.4a1.58 1.58 0 0 0-1.6 1.6v2.4h9.6v-2.4a1.58 1.58 0 0 0-1.6-1.6zm12.8 0h-6.4a1.58 1.58 0 0 0-1.6 1.6v2.4h9.6v-2.4a1.58 1.58 0 0 0-1.6-1.6z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/management/cluster_management.svg b/src/main/webapp/img/lib/ibm/management/cluster_management.svg index 333f7107042d99c1377a702329ea69292688facd..43d2e2fb2dc3db0e22ce24d52285c3571b97b1e0 100644 --- a/src/main/webapp/img/lib/ibm/management/cluster_management.svg +++ b/src/main/webapp/img/lib/ibm/management/cluster_management.svg @@ -1,20 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 65 65" style="enable-background:new 0 0 65 65;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#00AE9A;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS 3</title> -<circle class="st0" cx="32.5" cy="32.5" r="32.5"/> -<path class="st1" d="M47.8,32.5c0-0.8-0.1-1.6-0.2-2.4l4.8-4.2l-4.1-6.8L42.5,21c-1.4-1.2-3-2.2-4.7-2.8l-1.3-5.6h-8l-1.3,5.6 - c-1.7,0.6-3.3,1.6-4.7,2.8l-5.8-1.9l-4.1,6.8l4.9,4.2c-0.3,1.6-0.3,3.2,0,4.8l-4.9,4.3l4.1,6.8l5.8-1.9c1.4,1.2,3,2.2,4.7,2.8 - l1.3,5.6h8l1.3-5.6c1.7-0.6,3.3-1.6,4.7-2.8l5.8,1.9l4.1-6.8l-4.9-4.2C47.7,34.1,47.8,33.3,47.8,32.5z M49,39.7l-1.9,3.1l-3.8-1.2 - L41.9,41l-1.1,1c-1.2,1-2.5,1.8-3.9,2.3l-1.3,0.5l-0.3,1.4l-0.8,3.5h-3.7l-0.8-3.5l-0.3-1.4l-1.3-0.5c-1.4-0.5-2.8-1.3-3.9-2.3 - l-1.1-1l-1.4,0.5l-3.8,1.2L16,39.7l3.2-2.8l1.1-1l-0.2-1.5c-0.2-1.3-0.2-2.7,0-4l0.2-1.5l-1.1-1L16,25.4l1.9-3.1l3.8,1.2l1.4,0.5 - l1.1-1c1.2-1,2.5-1.8,3.9-2.3l1.3-0.5l0.3-1.4l0.8-3.5h3.7l0.8,3.5l0.3,1.4l1.3,0.5c1.4,0.5,2.8,1.3,3.9,2.3l1.1,1l1.4-0.5l3.8-1.2 - l1.9,3.1l-3.2,2.7l-1.1,1l0.2,1.5c0.2,1.3,0.2,2.7,0,4L44.7,36l1.1,1L49,39.7z"/> -<path class="st1" d="M32.5,24.5c-4.4,0-8,3.6-8,8s3.6,8,8,8s8-3.6,8-8S36.9,24.5,32.5,24.5z M32.5,35.2c-1.5,0-2.6-1.2-2.6-2.7 - s1.2-2.6,2.7-2.6s2.6,1.2,2.6,2.6C35.2,34,34,35.2,32.5,35.2C32.5,35.2,32.5,35.2,32.5,35.2L32.5,35.2z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 65 65"><circle cx="32.5" cy="32.5" r="32.5" fill="#00ae9a"/><path d="M47.8 32.5c0-.8-.1-1.6-.2-2.4l4.8-4.2-4.1-6.8-5.8 1.9c-1.4-1.2-3-2.2-4.7-2.8l-1.3-5.6h-8l-1.3 5.6c-1.7.6-3.3 1.6-4.7 2.8l-5.8-1.9-4.1 6.8 4.9 4.2a12.91 12.91 0 0 0 0 4.8l-4.9 4.3 4.1 6.8 5.8-1.9c1.4 1.2 3 2.2 4.7 2.8l1.3 5.6h8l1.3-5.6c1.7-.6 3.3-1.6 4.7-2.8l5.8 1.9 4.1-6.8-4.9-4.2c.2-.9.3-1.7.3-2.5zm1.2 7.2l-1.9 3.1-3.8-1.2-1.4-.6-1.1 1c-1.2 1-2.5 1.8-3.9 2.3l-1.3.5-.3 1.4-.8 3.5h-3.7l-.8-3.5-.3-1.4-1.3-.5c-1.4-.5-2.8-1.3-3.9-2.3l-1.1-1-1.4.5-3.8 1.2-2.2-3 3.2-2.8 1.1-1-.2-1.5a13.41 13.41 0 0 1 0-4l.2-1.5-1.1-1-3.2-2.5 1.9-3.1 3.8 1.2 1.4.5 1.1-1c1.2-1 2.5-1.8 3.9-2.3l1.3-.5.3-1.4.8-3.5h3.7l.8 3.5.3 1.4 1.3.5c1.4.5 2.8 1.3 3.9 2.3l1.1 1 1.4-.5 3.8-1.2 1.9 3.1-3.2 2.7-1.1 1 .2 1.5a13.41 13.41 0 0 1 0 4l.1 1.4 1.1 1 3.2 2.7zM32.5 24.5c-4.4 0-8 3.6-8 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zm0 10.7c-1.5 0-2.6-1.2-2.6-2.7s1.2-2.6 2.7-2.6 2.6 1.2 2.6 2.6a2.69 2.69 0 0 1-2.7 2.7z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/management/content_management.svg b/src/main/webapp/img/lib/ibm/management/content_management.svg index 0ce5b19ef1b6a40543c5a27c0690f195b4dc6627..59a889cc63931e3df2aa0abcf393d75e0ffd8e39 100644 --- a/src/main/webapp/img/lib/ibm/management/content_management.svg +++ b/src/main/webapp/img/lib/ibm/management/content_management.svg @@ -1,15 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.8 59.8" style="enable-background:new 0 0 59.8 59.8;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#00B09C;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle class="st0" cx="29.9" cy="29.9" r="29.9"/> -<path class="st1" d="M36.2,13.6c-2.3,0-4.6,0.9-6.3,2.5c-1.7-1.6-3.9-2.5-6.3-2.5h-10v30.1h10c2.3,0,4.6,0.9,6.3,2.5 - c1.7-1.6,3.9-2.5,6.3-2.5h10V13.6H36.2z M29.9,44.6c-1.8-1.3-4-2.1-6.3-2.1h-8.8V14.8h8.8c2,0,3.9,0.8,5.4,2.1l0.9,0.9V44.6z - M42.4,34.9h-8.8v-1.3h8.8L42.4,34.9z M42.4,31.1h-8.8v-1.3h8.8L42.4,31.1z M42.4,27.4h-8.8v-1.3h8.8L42.4,27.4z M42.4,23.6h-8.8 - v-1.3h8.8L42.4,23.6z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.8 59.8"><circle cx="29.9" cy="29.9" r="29.9" fill="#00b09c"/><path d="M36.2 13.6c-2.3 0-4.6.9-6.3 2.5a9.1 9.1 0 0 0-6.3-2.5h-10v30.1h10c2.3 0 4.6.9 6.3 2.5a9.1 9.1 0 0 1 6.3-2.5h10V13.6h-10zm-6.3 31c-1.8-1.3-4-2.1-6.3-2.1h-8.8V14.8h8.8c2 0 3.9.8 5.4 2.1l.9.9v26.8zm12.5-9.7h-8.8v-1.3h8.8v1.3zm0-3.8h-8.8v-1.3h8.8v1.3zm0-3.7h-8.8v-1.3h8.8v1.3zm0-3.8h-8.8v-1.3h8.8v1.3z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/management/data_services.svg b/src/main/webapp/img/lib/ibm/management/data_services.svg index fbde4561e3492b823b13f21d8f0a17d49172a44b..007a040f2027efd416c415f3312787a63f5d8745 100644 --- a/src/main/webapp/img/lib/ibm/management/data_services.svg +++ b/src/main/webapp/img/lib/ibm/management/data_services.svg @@ -1,42 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.3 59.3" style="enable-background:new 0 0 59.3 59.3;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#00AF9D;} - .st1{fill:#FFFFFF;} - .st2{fill:#00B09C;stroke:#05B09C;stroke-width:6;stroke-miterlimit:10;} - .st3{fill:#FFFFFF;stroke:#FFFFFF;stroke-miterlimit:10;} -</style> -<title>INDIVIDUAL ICONS</title> -<ellipse transform="matrix(0.7071 -0.7071 0.7071 0.7071 -12.2773 29.64)" class="st0" cx="29.6" cy="29.6" rx="29.6" ry="29.6"/> -<rect x="18.9" y="39.8" class="st1" width="22.4" height="1.3"/> -<path class="st1" d="M41.1,19.4c-0.4-6.3-5.9-11-12.2-10.6c-5.3,0.4-9.7,4.4-10.5,9.7l-1.3-0.2c1-6.2,6.3-10.8,12.6-10.8 - c6.6,0,12.2,5.1,12.7,11.8L41.1,19.4z"/> -<path class="st1" d="M18.9,41.2C12.4,41.3,7,36.3,6.8,29.8c-0.2-6.5,4.9-11.9,11.4-12.1c0.2,0,0.5,0,0.7,0c2.9,0,5.6,1.1,7.8,2.9 - l-0.9,1c-1.9-1.7-4.4-2.6-6.9-2.6c-5.7,0-10.4,4.7-10.4,10.4c0,5.7,4.7,10.4,10.4,10.4h0.2v1.3l0,0C19,41.2,19,41.2,18.9,41.2z"/> -<path class="st1" d="M40.9,41.2L40.9,41.2v-1.3l0,0c5.5-0.1,9.8-4.6,9.7-10.1c-0.1-5.2-4.3-9.5-9.5-9.7v-1.3 - c6.2,0.1,11.2,5.2,11.1,11.4S47,41.2,40.9,41.2L40.9,41.2z"/> -<path class="st2" d="M43.9,38.9c0-0.8-0.2-1.7-0.5-2.4l1.7-2.1l-2.2-2.8l-2.6,1.3c-0.6-0.4-1.3-0.6-2-0.8l-1-2.7l-3.5,0.6l-0.1,2.7 - c-0.7,0.4-1.4,0.9-1.9,1.5L29.2,34l-1.3,3.3l2.2,1.5c0,0.8,0.2,1.7,0.5,2.4l-1.7,2.1l2.2,2.8l2.6-1.3c0.6,0.4,1.3,0.6,2,0.8l1,2.7 - l3.5-0.6l0.1-2.7c0.7-0.4,1.4-0.9,1.9-1.5l2.6,0.4l1.3-3.3L43.9,38.9z M44.4,43l-2.1-0.3H42L41.8,43c-0.5,0.6-1.1,1-1.8,1.4 - l-0.3,0.2v0.3l-0.1,2.3L37,47.6l-0.8-2.3L36,45l-0.3-0.1c-0.7-0.1-1.3-0.4-1.9-0.7L33.6,44l-0.3,0.2l-2.1,1.1l-1.6-2l1.4-1.8 - l0.2-0.3L31,41c-0.3-0.7-0.4-1.5-0.4-2.2v-0.3l-0.2-0.1l-1.8-1.2l0.9-2.5l2.1,0.3h0.3l0.2-0.2c0.5-0.6,1.1-1,1.8-1.4l0.3-0.2v-0.3 - l0.1-2.3l2.6-0.5l0.9,2.2l0.1,0.3l0.3,0.1c0.7,0.1,1.3,0.4,1.9,0.7l0.3,0.2l0.3-0.2l2.1-1.1l1.6,2L43,36.1l-0.2,0.3l0.1,0.3 - c0.3,0.7,0.4,1.5,0.4,2.2v0.4l0.3,0.2l1.8,1.2L44.4,43z"/> -<path class="st2" d="M33.5,37.6c-0.7,1.9,0.2,4,2,4.7c1.9,0.7,4-0.2,4.7-2c0.7-1.9-0.2-4-2-4.7c0,0,0,0-0.1,0 - C36.3,34.8,34.3,35.7,33.5,37.6z M38.1,39.3c-0.2,0.6-0.9,1-1.5,0.7c-0.6-0.2-1-0.9-0.7-1.5c0.2-0.6,0.9-1,1.5-0.7c0,0,0,0,0,0 - C38,38,38.3,38.7,38.1,39.3z"/> -<path class="st3" d="M43,38.9c0-0.7-0.1-1.4-0.4-2.1l1.5-1.8l-2-2.5l-2.3,1.2c-0.6-0.3-1.2-0.5-1.8-0.7l-0.9-2.4L34,31.2L34,33.6 - c-0.6,0.3-1.2,0.8-1.7,1.3L30,34.6l-1,2.9l1.9,1.3c0,0.7,0.1,1.4,0.4,2.1l-1.5,1.8l2,2.5L34,44c0.6,0.3,1.2,0.5,1.8,0.7l0.9,2.4 - l3.1-0.6l0.1-2.4c0.6-0.3,1.2-0.8,1.7-1.3l2.3,0.3l1.1-2.9L43,38.9z M43.5,42.5l-1.8-0.2h-0.3l-0.2,0.2c-0.4,0.5-1,0.9-1.5,1.2 - l-0.3,0.1v0.3l-0.1,2L37,46.5l-0.8-2l-0.1-0.3l-0.3-0.1c-0.6-0.1-1.1-0.3-1.6-0.6L34,43.4l-0.3,0.1l-1.9,1l-1.4-1.8l1.2-1.5l0.2-0.2 - l-0.1-0.3c-0.2-0.6-0.4-1.3-0.4-1.9v-0.3l-0.2-0.2l-1.6-1l0.8-2.1l1.9,0.3h0.3l0.2-0.2c0.4-0.5,1-0.9,1.5-1.2l0.3-0.1v-0.2l0.1-2 - l2.3-0.4l0.8,2l0.1,0.3l0.3,0.1c0.6,0.1,1.1,0.3,1.6,0.6l0.3,0.1l0.3-0.1l1.9-1l1.4,1.8l-1.2,1.5L42,36.7l0.1,0.3 - c0.2,0.6,0.4,1.3,0.4,1.9v0.3l0.2,0.2l1.6,1L43.5,42.5z"/> -<path class="st1" d="M34,37.7c-0.7,1.6,0.1,3.5,1.8,4.1s3.5-0.1,4.1-1.8c0.7-1.6-0.1-3.5-1.8-4.1c0,0,0,0-0.1,0 - C36.4,35.3,34.6,36.1,34,37.7z M38,39.2c-0.2,0.6-0.8,0.8-1.4,0.6s-0.8-0.8-0.6-1.4s0.8-0.8,1.4-0.6c0,0,0,0,0,0 - c0.5,0.2,0.8,0.7,0.7,1.2C38,39.1,38,39.2,38,39.2z"/> -<circle class="st1" cx="28.6" cy="31.2" r="2.2"/> -<circle class="st1" cx="34.8" cy="25.8" r="2.9"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.3 59.3"><circle transform="matrix(.7071 -.7071 .7071 .7071 -12.2773 29.64)" cx="29.6" cy="29.6" r="29.6" fill="#00af9d"/><g fill="#fff"><path d="M18.9 39.8h22.4v1.3H18.9zm22.2-20.4c-.4-6.3-5.9-11-12.2-10.6-5.3.4-9.7 4.4-10.5 9.7l-1.3-.2c1-6.2 6.3-10.8 12.6-10.8a12.76 12.76 0 0 1 12.7 11.8l-1.3.1z"/><path d="M18.9 41.2c-6.5.1-11.9-4.9-12.1-11.4s4.9-11.9 11.4-12.1h.7c2.9 0 5.6 1.1 7.8 2.9l-.9 1c-1.9-1.7-4.4-2.6-6.9-2.6-5.7 0-10.4 4.7-10.4 10.4s4.7 10.4 10.4 10.4h.2v1.3c-.1.1-.1.1-.2.1zm22 0v-1.3c5.5-.1 9.8-4.6 9.7-10.1-.1-5.2-4.3-9.5-9.5-9.7v-1.3c6.2.1 11.2 5.2 11.1 11.4s-5.2 11-11.3 11z"/></g><path d="M43.9 38.9c0-.8-.2-1.7-.5-2.4l1.7-2.1-2.2-2.8-2.6 1.3c-.6-.4-1.3-.6-2-.8l-1-2.7-3.5.6-.1 2.7c-.7.4-1.4.9-1.9 1.5l-2.6-.2-1.3 3.3 2.2 1.5c0 .8.2 1.7.5 2.4l-1.7 2.1 2.2 2.8 2.6-1.3c.6.4 1.3.6 2 .8l1 2.7 3.5-.6.1-2.7c.7-.4 1.4-.9 1.9-1.5l2.6.4 1.3-3.3-2.2-1.7zm.5 4.1l-2.1-.3H42l-.2.3c-.5.6-1.1 1-1.8 1.4l-.3.2v.3l-.1 2.3-2.6.4-.8-2.3-.2-.3-.3-.1c-.7-.1-1.3-.4-1.9-.7l-.2-.2-.3.2-2.1 1.1-1.6-2 1.4-1.8.2-.3-.2-.2c-.3-.7-.4-1.5-.4-2.2v-.3l-.2-.1-1.8-1.2.9-2.5 2.1.3h.3l.2-.2c.5-.6 1.1-1 1.8-1.4l.3-.2v-.3l.1-2.3 2.6-.5.9 2.2.1.3.3.1c.7.1 1.3.4 1.9.7l.3.2.3-.2 2.1-1.1 1.6 2-1.4 1.8-.2.3.1.3c.3.7.4 1.5.4 2.2v.4l2.1 1.4-1 2.3zm-10.9-5.4c-.7 1.9.2 4 2 4.7 1.9.7 4-.2 4.7-2 .7-1.9-.2-4-2-4.7h-.1c-1.8-.8-3.8.1-4.6 2zm4.6 1.7c-.2.6-.9 1-1.5.7-.6-.2-1-.9-.7-1.5.2-.6.9-1 1.5-.7.6.2.9.9.7 1.5z" fill="#00b09c" stroke="#05b09c" stroke-width="6" stroke-miterlimit="10"/><g fill="#fff"><path d="M43 38.9c0-.7-.1-1.4-.4-2.1l1.5-1.8-2-2.5-2.3 1.2c-.6-.3-1.2-.5-1.8-.7l-.9-2.4-3.1.6v2.4c-.6.3-1.2.8-1.7 1.3l-2.3-.3-1 2.9 1.9 1.3c0 .7.1 1.4.4 2.1l-1.5 1.8 2 2.5L34 44c.6.3 1.2.5 1.8.7l.9 2.4 3.1-.6.1-2.4c.6-.3 1.2-.8 1.7-1.3l2.3.3 1.1-2.9-2-1.3zm.5 3.6l-1.8-.2h-.3l-.2.2c-.4.5-1 .9-1.5 1.2l-.3.1v.3l-.1 2-2.3.4-.8-2-.1-.3-.3-.1c-.6-.1-1.1-.3-1.6-.6l-.2-.1-.3.1-1.9 1-1.4-1.8 1.2-1.5.2-.2-.1-.3c-.2-.6-.4-1.3-.4-1.9v-.3l-.2-.2-1.6-1 .8-2.1 1.9.3h.3l.2-.2c.4-.5 1-.9 1.5-1.2l.3-.1v-.2l.1-2 2.3-.4.8 2 .1.3.3.1c.6.1 1.1.3 1.6.6l.3.1.3-.1 1.9-1 1.4 1.8-1.2 1.5H42l.1.3c.2.6.4 1.3.4 1.9v.3l.2.2 1.6 1-.8 2.1z" stroke="#fff" stroke-miterlimit="10"/><path d="M34 37.7a3.06 3.06 0 0 0 1.8 4.1c1.7.6 3.5-.1 4.1-1.8a3.06 3.06 0 0 0-1.8-4.1H38c-1.6-.6-3.4.2-4 1.8zm4 1.5c-.2.6-.8.8-1.4.6s-.8-.8-.6-1.4.8-.8 1.4-.6c.5.2.8.7.7 1.2-.1.1-.1.2-.1.2z"/><circle cx="28.6" cy="31.2" r="2.2"/><circle cx="34.8" cy="25.8" r="2.9"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/management/device_management.svg b/src/main/webapp/img/lib/ibm/management/device_management.svg index 3488120d525bb8931b722b1b5ab11b49033667e4..005e7c2ca4462bf750edc99e9d6c366bd026db4c 100644 --- a/src/main/webapp/img/lib/ibm/management/device_management.svg +++ b/src/main/webapp/img/lib/ibm/management/device_management.svg @@ -1,28 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 60.3 60.3" style="enable-background:new 0 0 60.3 60.3;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#00B19D;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle class="st0" cx="30.1" cy="30.1" r="30.1"/> -<path class="st1" d="M48,24.9c0.1-0.3,0.3-0.6,0.3-0.9l2.5-0.7l-0.3-3.2l-2.5-0.4c-0.3-0.7-0.7-1.3-1.2-1.9l0.5-2.3l-2.9-1.4 - L43,15.9c-0.8-0.1-1.5,0-2.2,0.2L39,14.4l-2.7,1.7l1,2.4c-0.4,0.5-0.7,1.1-0.9,1.8L33.9,21l0.3,3.2l2.5,0.4c0.3,0.7,0.7,1.3,1.2,1.9 - l-0.5,2.3l2.9,1.4l1.5-1.9c0.8,0.1,1.5,0,2.2-0.2l1.8,1.7l2.7-1.7l-1-2.4C47.7,25.4,47.8,25.1,48,24.9z M47.8,27.9l-2,1.3l-1.5-1.4 - l-0.2-0.2l-0.3,0.1c-0.7,0.2-1.3,0.2-2,0.2h-0.3L41.3,28l-1.2,1.5l-2.2-1l0.4-1.9l0.1-0.3l-0.2-0.2c-0.5-0.5-0.9-1.1-1.1-1.8L37,24 - h-0.3l-2-0.3l-0.2-2.3l2.1-0.6l0.3-0.1l0.1-0.3c0.2-0.6,0.4-1.1,0.8-1.6l0.2-0.2l-0.2-0.3l-0.8-2l2-1.3l1.5,1.4l0.2,0.2l0.3-0.1 - c0.7-0.2,1.3-0.2,2-0.2h0.3l0.2-0.2l1.2-1.5l2.2,1l-0.4,1.9V18l0.2,0.2c0.5,0.5,0.9,1.1,1.1,1.7l0.1,0.3h0.3l2,0.3l0.3,2.4l-2.1,0.6 - l-0.3,0.1l-0.1,0.3c-0.2,0.6-0.4,1.1-0.8,1.6l-0.2,0.2l0.1,0.3L47.8,27.9z"/> -<path class="st1" d="M43.8,19.2c-1.6-0.8-3.6-0.1-4.3,1.5c-0.8,1.6-0.1,3.6,1.5,4.3c1.6,0.8,3.5,0.1,4.3-1.5 - C46.1,21.9,45.4,20,43.8,19.2C43.8,19.2,43.8,19.2,43.8,19.2z M41.9,23.1c-0.5-0.3-0.8-0.9-0.5-1.4c0.3-0.5,0.9-0.8,1.4-0.5 - c0.5,0.3,0.8,0.9,0.5,1.4C43.1,23.1,42.4,23.4,41.9,23.1C41.9,23.1,41.9,23.1,41.9,23.1z"/> -<ellipse class="st1" cx="30" cy="47.3" rx="1.8" ry="1.8"/> -<rect x="27.6" y="11" class="st1" width="4.8" height="0.9"/> -<path class="st1" d="M36.7,28.7l0.6-2.3c-0.5-0.5-0.9-1.2-1.2-1.9l-2.5-0.4L33.3,21l2.5-0.7c0.2-0.6,0.5-1.2,0.9-1.8l-1-2.4l2.7-1.7 - l0.8,0.7v-1.6H20.9v30.4h18.3v-14L36.7,28.7z"/> -<path class="st1" d="M41.1,29.8v16.9c0,2-1.7,3.7-3.7,3.7l0,0H22.7c-2,0-3.7-1.7-3.7-3.7l0,0V13.5c0-2,1.7-3.7,3.7-3.7l0,0h14.7 - c2,0,3.7,1.7,3.7,3.7l0,0v1.9h1.3v-1.9c0-2.8-2.2-5-5-5H22.7c-2.8,0-5,2.2-5,5v33.3c0,2.8,2.2,5,5,5h14.6c2.8,0,5-2.2,5-5V29.8H41.1 - z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60.3 60.3"><circle cx="30.1" cy="30.1" r="30.1" fill="#00b19d"/><g fill="#fff"><path d="M48 24.9c.1-.3.3-.6.3-.9l2.5-.7-.3-3.2-2.5-.4c-.3-.7-.7-1.3-1.2-1.9l.5-2.3-2.9-1.4-1.4 1.8c-.8-.1-1.5 0-2.2.2L39 14.4l-2.7 1.7 1 2.4c-.4.5-.7 1.1-.9 1.8l-2.5.7.3 3.2 2.5.4c.3.7.7 1.3 1.2 1.9l-.5 2.3 2.9 1.4 1.5-1.9c.8.1 1.5 0 2.2-.2l1.8 1.7 2.7-1.7-1-2.4c.2-.3.3-.6.5-.8zm-.2 3l-2 1.3-1.5-1.4-.2-.2-.3.1c-.7.2-1.3.2-2 .2h-.3l-.2.1-1.2 1.5-2.2-1 .4-1.9.1-.3-.2-.2c-.5-.5-.9-1.1-1.1-1.8L37 24h-.3l-2-.3-.2-2.3 2.1-.6.3-.1.1-.3c.2-.6.4-1.1.8-1.6l.2-.2-.2-.3-.8-2 2-1.3 1.5 1.4.2.2.3-.1c.7-.2 1.3-.2 2-.2h.3l.2-.2 1.2-1.5 2.2 1-.4 1.9v.5l.2.2c.5.5.9 1.1 1.1 1.7l.1.3h.3l2 .3.3 2.4-2.1.6-.3.1-.1.3c-.2.6-.4 1.1-.8 1.6l-.2.2.1.3.7 1.9zm-4-8.7c-1.6-.8-3.6-.1-4.3 1.5-.8 1.6-.1 3.6 1.5 4.3 1.6.8 3.5.1 4.3-1.5s.1-3.5-1.5-4.3zm-1.9 3.9c-.5-.3-.8-.9-.5-1.4s.9-.8 1.4-.5.8.9.5 1.4c-.2.5-.9.8-1.4.5z"/><circle cx="30" cy="47.3" r="1.8"/><path d="M27.6 11h4.8v.9h-4.8zm9.1 17.7l.6-2.3c-.5-.5-.9-1.2-1.2-1.9l-2.5-.4-.3-3.1 2.5-.7c.2-.6.5-1.2.9-1.8l-1-2.4 2.7-1.7.8.7v-1.6H20.9v30.4h18.3v-14l-2.5-1.2zm4.4 1.1v16.9a3.76 3.76 0 0 1-3.7 3.7H22.7a3.76 3.76 0 0 1-3.7-3.7V13.5a3.76 3.76 0 0 1 3.7-3.7h14.7a3.76 3.76 0 0 1 3.7 3.7v1.9h1.3v-1.9a4.95 4.95 0 0 0-5-5H22.7a4.95 4.95 0 0 0-5 5v33.3a4.95 4.95 0 0 0 5 5h14.6a4.95 4.95 0 0 0 5-5v-17h-1.2z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/management/information_governance.svg b/src/main/webapp/img/lib/ibm/management/information_governance.svg index abba2dc7f70b6eeb08bd51d91d4b81a5633a5d5b..ac836a19a69936af9526516253e145a5e832644f 100644 --- a/src/main/webapp/img/lib/ibm/management/information_governance.svg +++ b/src/main/webapp/img/lib/ibm/management/information_governance.svg @@ -1,20 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.4 59.3" style="enable-background:new 0 0 59.4 59.3;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#00B19D;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<ellipse class="st0" cx="29.7" cy="29.6" rx="29.7" ry="29.6"/> -<rect x="11.9" y="38" class="st1" width="36.1" height="2.2"/> -<rect x="13.1" y="19" class="st1" width="33.5" height="2.2"/> -<rect x="9.5" y="41.5" class="st1" width="40.8" height="2.2"/> -<polygon class="st1" points="29.9,10.5 10.7,16.9 10.7,18.1 49.1,18.1 49.1,16.9 "/> -<rect x="13.1" y="22.3" class="st1" width="4.2" height="14.8"/> -<rect x="42.5" y="22.3" class="st1" width="4.2" height="14.8"/> -<rect x="27.8" y="22.3" class="st1" width="4.2" height="14.8"/> -<rect x="20.5" y="22.3" class="st1" width="4.2" height="14.8"/> -<rect x="35.3" y="22.3" class="st1" width="4.2" height="14.8"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.4 59.3"><ellipse cx="29.7" cy="29.6" rx="29.7" ry="29.6" fill="#00b19d"/><path d="M11.9 38H48v2.2H11.9zm1.2-19h33.5v2.2H13.1zM9.5 41.5h40.8v2.2H9.5zm20.4-31l-19.2 6.4v1.2h38.4v-1.2zM13.1 22.3h4.2v14.8h-4.2zm29.4 0h4.2v14.8h-4.2zm-14.7 0H32v14.8h-4.2zm-7.3 0h4.2v14.8h-4.2zm14.8 0h4.2v14.8h-4.2z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/management/it_service_management.svg b/src/main/webapp/img/lib/ibm/management/it_service_management.svg index 3c31356ceea0611969f2cb8c6a282fac4b8afcaf..d6999e148c5cc1189b64bf5ee6edbc6888eddadc 100644 --- a/src/main/webapp/img/lib/ibm/management/it_service_management.svg +++ b/src/main/webapp/img/lib/ibm/management/it_service_management.svg @@ -1,29 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.3 59.3" style="enable-background:new 0 0 59.3 59.3;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#01AF9C;} - .st1{fill:#FFFFFF;} - .st2{fill:#FFFFFF;stroke:#FFFFFF;stroke-miterlimit:10;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle id="devops_it_service_management" class="st0" cx="29.6" cy="29.6" r="29.6"/> -<path class="st1" d="M25.1,9.7c-8,0-14.4,6.5-14.4,14.5s6.5,14.4,14.4,14.4c8,0,14.4-6.5,14.4-14.4C39.6,16.2,33.1,9.7,25.1,9.7 - C25.1,9.7,25.1,9.7,25.1,9.7z M25.1,37.4c-7.4,0-13.4-6-13.4-13.4s6-13.4,13.4-13.4s13.4,6,13.4,13.4c0,0,0,0,0,0 - C38.4,31.4,32.5,37.4,25.1,37.4L25.1,37.4z"/> -<polygon class="st1" points="31.9,16.5 25.4,22.9 21.8,19.2 20.3,20.7 24,24.5 22.7,25.8 23.4,26.5 24.8,25.2 26.4,26.8 27.9,25.4 - 26.2,23.7 32.7,17.2 "/> -<path class="st0" d="M41.3,39.5H26.8c-0.3,0-0.5-0.2-0.5-0.5c0,0,0,0,0-0.1V27.5c0-0.3,0.2-0.5,0.5-0.5c0,0,0,0,0.1,0h14.4 - c0.3,0,0.5,0.2,0.5,0.5c0,0,0,0,0,0.1v11.6C41.7,39.3,41.5,39.5,41.3,39.5z"/> -<path class="st2" d="M45.5,38.6c0-0.9-0.2-1.8-0.5-2.7l1.9-2.4l-2.5-3.1l-2.9,1.5c-0.3-0.2-0.7-0.4-1.1-0.5L39.2,31L38,28l-4,0.8 - l-0.1,3c-0.8,0.4-1.6,1-2.2,1.7l-2.9-0.4l-1.4,3.7l2.5,1.6c0,0.9,0.2,1.8,0.5,2.7l-1.9,2.4l2.5,3.1l2.9-1.5c0.3,0.2,0.7,0.4,1.1,0.5 - l1.2,0.3l1.2,3l4-0.8l0.1-3c0.8-0.4,1.6-1,2.2-1.7l2.9,0.4l1.4-3.7L45.5,38.6z M46,43.2l-2.4-0.3h-0.3l-0.2,0.3 - c-0.5,0.6-1.2,1.2-1.9,1.5l-0.3,0.2v0.3l-0.1,2.5l-2.9,0.5l-1-2.5l-0.1-0.3l-0.3-0.1c-0.4-0.1-0.8-0.2-1.1-0.3s-0.7-0.3-1-0.4 - L34,44.4l-0.3,0.2l-2.4,1.3l-1.8-2.3l1.6-1.9l0.2-0.3l-0.1-0.3c-0.3-0.8-0.5-1.6-0.4-2.5v-0.3l-0.3-0.2l-1.9-1.3l1.1-2.7l2.4,0.3 - h0.3l0.2-0.3c0.5-0.6,1.2-1.2,1.9-1.5l0.3-0.2V32l0.2-2.5l2.9-0.5l1,2.5l0.1,0.3l0.3,0.1c0.4,0.1,0.8,0.2,1.1,0.3s0.7,0.3,1,0.4 - l0.3,0.2l0.3-0.2l2.4-1.3l1.8,2.3l-1.6,1.9l-0.2,0.3l0.1,0.3c0.3,0.8,0.5,1.6,0.4,2.5V39l0.3,0.2l1.9,1.3L46,43.2z"/> -<path class="st1" d="M33.9,37.1c-0.7,2.1,0.3,4.4,2.4,5.2c2.1,0.8,4.4-0.2,5.2-2.3c0.7-2.1-0.3-4.4-2.4-5.2 - C37.1,34,34.8,35,33.9,37.1C34,37,34,37,33.9,37.1z M39,39c-0.3,0.7-1.1,1-1.7,0.7c-0.7-0.3-1-1.1-0.7-1.7l0,0 - c0.3-0.7,1.1-1,1.7-0.7C39,37.5,39.3,38.3,39,39L39,39z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.3 59.3"><circle cx="29.6" cy="29.6" r="29.6" fill="#01af9c"/><path d="M25.1 9.7c-8 0-14.4 6.5-14.4 14.5s6.5 14.4 14.4 14.4c8 0 14.4-6.5 14.4-14.4.1-8-6.4-14.5-14.4-14.5zm0 27.7c-7.4 0-13.4-6-13.4-13.4s6-13.4 13.4-13.4 13.4 6 13.4 13.4c-.1 7.4-6 13.4-13.4 13.4zm6.8-20.9l-6.5 6.4-3.6-3.7-1.5 1.5 3.7 3.8-1.3 1.3.7.7 1.4-1.3 1.6 1.6 1.5-1.4-1.7-1.7 6.5-6.5z" fill="#fff"/><path d="M41.3 39.5H26.8a.47.47 0 0 1-.5-.5V27.5a.47.47 0 0 1 .5-.5h14.5a.47.47 0 0 1 .5.5v11.7c-.1.1-.3.3-.5.3z" fill="#01af9c"/><g fill="#fff"><path d="M45.5 38.6c0-.9-.2-1.8-.5-2.7l1.9-2.4-2.5-3.1-2.9 1.5c-.3-.2-.7-.4-1.1-.5l-1.2-.4-1.2-3-4 .8-.1 3c-.8.4-1.6 1-2.2 1.7l-2.9-.4-1.4 3.7 2.5 1.6c0 .9.2 1.8.5 2.7l-1.9 2.4 2.5 3.1 2.9-1.5c.3.2.7.4 1.1.5l1.2.3 1.2 3 4-.8.1-3c.8-.4 1.6-1 2.2-1.7l2.9.4 1.4-3.7-2.5-1.5zm.5 4.6l-2.4-.3h-.3l-.2.3c-.5.6-1.2 1.2-1.9 1.5l-.3.2v.3l-.1 2.5-2.9.5-1-2.5-.1-.3-.3-.1-1.1-.3c-.3-.1-.7-.3-1-.4l-.4-.2-.3.2-2.4 1.3-1.8-2.3 1.6-1.9.2-.3-.1-.3c-.3-.8-.5-1.6-.4-2.5v-.3l-.3-.2-1.9-1.3 1.1-2.7 2.4.3h.3l.2-.3c.5-.6 1.2-1.2 1.9-1.5l.3-.2V32l.2-2.5 2.9-.5 1 2.5.1.3.3.1 1.1.3c.3.1.7.3 1 .4l.3.2.3-.2 2.4-1.3 1.8 2.3-1.6 1.9-.2.3.1.3c.3.8.5 1.6.4 2.5v.4l.3.2 1.9 1.3-1.1 2.7z" stroke="#fff" stroke-miterlimit="10"/><path d="M33.9 37.1c-.7 2.1.3 4.4 2.4 5.2s4.4-.2 5.2-2.3c.7-2.1-.3-4.4-2.4-5.2-2-.8-4.3.2-5.2 2.3.1-.1.1-.1 0 0zM39 39c-.3.7-1.1 1-1.7.7-.7-.3-1-1.1-.7-1.7.3-.7 1.1-1 1.7-.7.7.2 1 1 .7 1.7z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/management/management.svg b/src/main/webapp/img/lib/ibm/management/management.svg index df42f97ca0ebe103ecc396be4e8937ff91e78987..79823134f2e26d7509eecaa560bdae3a8d51c359 100644 --- a/src/main/webapp/img/lib/ibm/management/management.svg +++ b/src/main/webapp/img/lib/ibm/management/management.svg @@ -1,20 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.3 59.3" style="enable-background:new 0 0 59.3 59.3;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#00B09C;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle class="st0" cx="29.6" cy="29.6" r="29.6"/> -<path class="st1" d="M43.5,29.6c0-0.7-0.1-1.5-0.2-2.2l4.4-3.9L44,17.4l-5.3,1.7c-1.3-1.1-2.7-2-4.3-2.6l-1.2-5.1H26l-1.2,5.1 - c-1.6,0.6-3,1.4-4.3,2.5l-5.3-1.7l-3.8,6.2l4.4,3.9c-0.3,1.4-0.3,2.9,0,4.4l-4.4,3.9l3.8,6.2l5.3-1.7c1.3,1.1,2.7,2,4.3,2.5l1.2,5.1 - h7.3l1.2-5.1c1.6-0.6,3-1.4,4.3-2.5l5.3,1.7l3.8-6.2l-4.4-3.9C43.5,31.1,43.5,30.4,43.5,29.6z M44.7,36.2L43,39l-3.5-1.1l-1.3-0.4 - l-1,0.9c-1.1,0.9-2.3,1.6-3.6,2.1l-1.2,0.5l-0.3,1.3l-0.7,3.2H28l-0.7-3.2L27,40.9l-1.2-0.5c-1.3-0.5-2.6-1.2-3.6-2.1l-1-0.9 - l-1.3,0.4L16.3,39l-1.7-2.8l2.9-2.5l1-0.9l-0.2-1.3c-0.2-1.2-0.2-2.4,0-3.6l0.2-1.3l-1-0.9l-2.9-2.5l1.7-2.8l3.5,1.1l1.3,0.4l1-0.9 - c1.1-0.9,2.3-1.6,3.6-2.1l1.2-0.5l0.3-1.3l0.7-3.2h3.4l0.7,3.2l0.3,1.3l1.2,0.5c1.3,0.5,2.5,1.2,3.6,2.1l1,0.9l1.3-0.4l3.5-1.1 - l1.7,2.8l-2.9,2.5l-1,0.9l0.2,1.3c0.2,1.2,0.2,2.4,0,3.6l-0.2,1.3l1,0.9L44.7,36.2z"/> -<path class="st1" d="M29.6,22.4c-4,0-7.3,3.3-7.3,7.3s3.3,7.3,7.3,7.3s7.3-3.3,7.3-7.3S33.6,22.4,29.6,22.4L29.6,22.4z M29.6,32.1 - c-1.3,0-2.4-1.1-2.4-2.4s1.1-2.4,2.4-2.4s2.4,1.1,2.4,2.4v0C32.1,31,31,32.1,29.6,32.1z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.3 59.3"><circle cx="29.6" cy="29.6" r="29.6" fill="#00b09c"/><path d="M43.5 29.6c0-.7-.1-1.5-.2-2.2l4.4-3.9-3.7-6.1-5.3 1.7c-1.3-1.1-2.7-2-4.3-2.6l-1.2-5.1H26l-1.2 5.1c-1.6.6-3 1.4-4.3 2.5l-5.3-1.7-3.8 6.2 4.4 3.9c-.3 1.4-.3 2.9 0 4.4l-4.4 3.9 3.8 6.2 5.3-1.7c1.3 1.1 2.7 2 4.3 2.5l1.2 5.1h7.3l1.2-5.1c1.6-.6 3-1.4 4.3-2.5l5.3 1.7 3.8-6.2-4.4-3.9v-2.2zm1.2 6.6L43 39l-3.5-1.1-1.3-.4-1 .9c-1.1.9-2.3 1.6-3.6 2.1l-1.2.5-.3 1.3-.7 3.2H28l-.7-3.2-.3-1.4-1.2-.5c-1.3-.5-2.6-1.2-3.6-2.1l-1-.9-1.3.4-3.6 1.2-1.7-2.8 2.9-2.5 1-.9-.2-1.3c-.2-1.2-.2-2.4 0-3.6l.2-1.3-1-.9-2.9-2.5 1.7-2.8 3.5 1.1 1.3.4 1-.9c1.1-.9 2.3-1.6 3.6-2.1l1.2-.5.3-1.3.7-3.2h3.4l.7 3.2.3 1.3 1.2.5c1.3.5 2.5 1.2 3.6 2.1l1 .9 1.3-.4 3.5-1.1 1.7 2.8-2.9 2.5-1 .9.2 1.3c.2 1.2.2 2.4 0 3.6l-.2 1.3 1 .9 3 2.5zM29.6 22.4c-4 0-7.3 3.3-7.3 7.3s3.3 7.3 7.3 7.3 7.3-3.3 7.3-7.3-3.3-7.3-7.3-7.3zm0 9.7c-1.3 0-2.4-1.1-2.4-2.4s1.1-2.4 2.4-2.4 2.4 1.1 2.4 2.4c.1 1.3-1 2.4-2.4 2.4z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/management/monitoring_metrics.svg b/src/main/webapp/img/lib/ibm/management/monitoring_metrics.svg index cacd9e825351b4639c0293c2056bdc23aaee3669..a162373aec3633dfb9862ee594cb0d07d9b881c8 100644 --- a/src/main/webapp/img/lib/ibm/management/monitoring_metrics.svg +++ b/src/main/webapp/img/lib/ibm/management/monitoring_metrics.svg @@ -1,20 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.9 59.9" style="enable-background:new 0 0 59.9 59.9;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#01AF9C;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle id="devops_monitoring_metrics" class="st0" cx="29.9" cy="29.9" r="29.9"/> -<polygon class="st1" points="13.4,41.7 13.4,16.9 12.2,16.9 12.2,41.7 12.2,42.9 13.4,42.9 47.7,42.9 47.7,41.7 "/> -<rect x="15.7" y="29.9" class="st1" width="8.3" height="9.5"/> -<path class="st1" d="M34.6,20.5h-8.3v18.9h8.3V20.5z M33.4,38.1h-5.9V21.6h5.9L33.4,38.1z"/> -<rect x="37" y="26.4" class="st1" width="8.3" height="1.2"/> -<rect x="37" y="28.7" class="st1" width="8.3" height="1.2"/> -<rect x="37" y="31" class="st1" width="8.3" height="1.2"/> -<rect x="37" y="33.4" class="st1" width="8.3" height="1.2"/> -<rect x="37" y="35.8" class="st1" width="8.3" height="1.2"/> -<rect x="37" y="38.1" class="st1" width="8.3" height="1.2"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.9 59.9"><circle cx="29.9" cy="29.9" r="29.9" fill="#01af9c"/><path d="M13.4 41.7V16.9h-1.2v26h35.5v-1.2zm2.3-11.8H24v9.5h-8.3zm18.9-9.4h-8.3v18.9h8.3V20.5zm-1.2 17.6h-5.9V21.6h5.9v16.5zM37 26.4h8.3v1.2H37zm0 2.3h8.3v1.2H37zm0 2.3h8.3v1.2H37zm0 2.4h8.3v1.2H37zm0 2.4h8.3V37H37zm0 2.3h8.3v1.2H37z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/management/process_management.svg b/src/main/webapp/img/lib/ibm/management/process_management.svg index 058ab75ca5406ef54f23342d7b60002800abbff3..35e5d69d0140cf1172df494ff8dd7b09fef457b2 100644 --- a/src/main/webapp/img/lib/ibm/management/process_management.svg +++ b/src/main/webapp/img/lib/ibm/management/process_management.svg @@ -1,18 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 60.3 60.3" style="enable-background:new 0 0 60.3 60.3;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#00B19D;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle class="st0" cx="30.1" cy="30.1" r="30.1"/> -<path class="st1" d="M38,33.1c-2.5,0-4.6,1.9-4.9,4.4h-5.9c-0.1-1-0.5-1.9-1.1-2.6l8.8-8.8c2.1,1.7,5.2,1.4,6.9-0.7 - c1.7-2.1,1.4-5.2-0.7-6.9c-2.1-1.7-5.2-1.4-6.9,0.7c-0.6,0.7-1,1.7-1.1,2.6h-6c-0.3-2.7-2.7-4.7-5.4-4.4s-4.7,2.7-4.4,5.4 - s2.7,4.7,5.4,4.4c2.3-0.2,4.2-2.1,4.4-4.4h6c0.1,1,0.5,1.9,1,2.6l-8.8,8.8c-2.1-1.7-5.2-1.4-6.9,0.7c-1.7,2.1-1.4,5.2,0.7,6.9 - c2.1,1.7,5.2,1.4,6.9-0.7c0.6-0.7,1-1.7,1.1-2.6h6c0.3,2.7,2.7,4.7,5.4,4.4c2.7-0.3,4.7-2.7,4.4-5.4C42.7,35,40.5,33.1,38,33.1 - L38,33.1z M22.3,26.2c-2.2,0-3.9-1.7-3.9-3.9c0-2.2,1.7-3.9,3.9-3.9c2.2,0,3.9,1.7,3.9,3.9c0,0,0,0,0,0 - C26.2,24.4,24.4,26.2,22.3,26.2z M34.1,22.3c0-2.2,1.8-3.9,3.9-3.9s3.9,1.8,3.9,3.9s-1.8,3.9-3.9,3.9S34.1,24.5,34.1,22.3L34.1,22.3 - z M22.3,41.9c-2.2,0-3.9-1.7-3.9-3.9c0-2.2,1.7-3.9,3.9-3.9c2.2,0,3.9,1.7,3.9,3.9c0,0,0,0,0,0C26.2,40.2,24.4,41.9,22.3,41.9z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60.3 60.3"><circle cx="30.1" cy="30.1" r="30.1" fill="#00b19d"/><path d="M38 33.1c-2.5 0-4.6 1.9-4.9 4.4h-5.9c-.1-1-.5-1.9-1.1-2.6l8.8-8.8c2.1 1.7 5.2 1.4 6.9-.7s1.4-5.2-.7-6.9-5.2-1.4-6.9.7c-.6.7-1 1.7-1.1 2.6h-6c-.3-2.7-2.7-4.7-5.4-4.4s-4.7 2.7-4.4 5.4 2.7 4.7 5.4 4.4c2.3-.2 4.2-2.1 4.4-4.4h6c.1 1 .5 1.9 1 2.6l-8.8 8.8c-2.1-1.7-5.2-1.4-6.9.7s-1.4 5.2.7 6.9 5.2 1.4 6.9-.7c.6-.7 1-1.7 1.1-2.6h6c.3 2.7 2.7 4.7 5.4 4.4s4.7-2.7 4.4-5.4c-.2-2.5-2.4-4.4-4.9-4.4zm-15.7-6.9a3.84 3.84 0 0 1-3.9-3.9 3.84 3.84 0 0 1 3.9-3.9 3.84 3.84 0 0 1 3.9 3.9c0 2.1-1.8 3.9-3.9 3.9zm11.8-3.9c0-2.2 1.8-3.9 3.9-3.9s3.9 1.8 3.9 3.9-1.8 3.9-3.9 3.9-3.9-1.7-3.9-3.9zM22.3 41.9a3.84 3.84 0 0 1-3.9-3.9 3.84 3.84 0 0 1 3.9-3.9 3.84 3.84 0 0 1 3.9 3.9c0 2.2-1.8 3.9-3.9 3.9z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/management/provider_cloud_portal_service.svg b/src/main/webapp/img/lib/ibm/management/provider_cloud_portal_service.svg index 8859ce5c7780e1fd107df1a574c69cc9db425aea..847b5c547fcd80701e027d71a4e6359075969892 100644 --- a/src/main/webapp/img/lib/ibm/management/provider_cloud_portal_service.svg +++ b/src/main/webapp/img/lib/ibm/management/provider_cloud_portal_service.svg @@ -1,27 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.3 59.3" style="enable-background:new 0 0 59.3 59.3;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#00B09C;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle class="st0" cx="29.6" cy="29.6" r="29.6"/> -<path class="st1" d="M20.2,48.6v-2.1h5.5v-3.8h8c0,0.2,0,0.4,0,0.7c0,0.8,0,1.6,0,2.5c0,0.5,0,0.5,0.5,0.5h4.4h0.3v2.2L20.2,48.6z" - /> -<path class="st1" d="M29.6,14.6h8.9c2.3,0,4.5,0,6.8-0.1c1-0.1,2,0.3,2.7,0.9c0.7,0.6,1.1,1.4,1.1,2.4c0,1.1,0,2.2,0,3.3 - c0,5,0,10,0,15c0,1.6-0.5,3.1-1.5,4.3c-0.4,0.6-1,0.9-1.6,1.1c-0.2,0-0.4,0-0.5,0c-10.4,0-20.9,0-31.3,0c-0.4,0-0.7-0.1-1-0.3 - c-1.6-0.8-2.7-2.5-2.6-4.3c0-2.7,0-5.3-0.1-8s-0.1-5.4-0.1-8.1c0-0.9,0-1.9,0-2.8c0-1.5,1.1-2.8,2.6-3.1c0.5-0.1,0.9-0.1,1.4-0.1 - h7.7L29.6,14.6L29.6,14.6z M29.5,16.3L29.5,16.3h-1.3l-12,0.1c-0.9,0-1.8,0-2.7,0c-0.8,0-1.5,0.6-1.5,1.4c0,0.2-0.1,0.4-0.1,0.6 - c0,0.9,0,1.8,0,2.6c0,3.1,0.1,6.1,0.1,9.2c0,2.2,0,4.5,0.1,6.7c0,0.6,0.2,1.3,0.6,1.8c0.3,0.5,0.9,0.9,1.5,0.9h30.9 - c0.4,0,0.7-0.1,0.9-0.4c0.7-0.8,1.1-1.8,1.1-2.8c0-5,0-10,0-15c0-1.1,0-2.2,0-3.3c0.1-0.9-0.5-1.6-1.4-1.7c0,0,0,0-0.1,0 - c-0.5-0.1-1-0.1-1.5-0.1c-2,0-4,0-6,0L29.5,16.3z"/> -<path class="st1" d="M23.7,37.1c-3.5,0-6.4-2.8-6.4-6.3c0-3.5,2.8-6.4,6.3-6.4c2.5,0,4.8,1.4,5.9,3.8l-0.7,0.3 - c-1.3-2.8-4.7-4-7.5-2.7c-2.8,1.3-4,4.7-2.7,7.5c0.9,2,2.9,3.2,5.1,3.2h0.1L23.7,37.1L23.7,37.1L23.7,37.1z"/> -<rect x="23.7" y="36.4" class="st1" width="9.2" height="0.7"/> -<path class="st1" d="M35.7,25.3c-0.2-3.2-2.9-5.7-6.2-5.8c-3.1,0-5.6,2.2-6.1,5.3l-0.7-0.1c0.5-3.4,3.4-5.9,6.8-5.9 - c3.6,0,6.6,2.8,6.9,6.5H35.7z"/> -<path class="st1" d="M35.5,37.8c-3.1,0-5.7-2.2-6.2-5.3l0.7-0.1c0.6,3,3.5,5,6.6,4.4c3-0.6,5-3.5,4.4-6.6c-0.5-2.6-2.7-4.5-5.4-4.5 - V25c3.5,0,6.4,2.9,6.3,6.5S39,37.8,35.5,37.8L35.5,37.8z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.3 59.3"><circle cx="29.6" cy="29.6" r="29.6" fill="#00b09c"/><g fill="#fff"><path d="M20.2 48.6v-2.1h5.5v-3.8h8v3.2c0 .5 0 .5.5.5h4.7v2.2H20.2zm9.4-34h8.9l6.8-.1c1-.1 2 .3 2.7.9a3.04 3.04 0 0 1 1.1 2.4v18.3c0 1.6-.5 3.1-1.5 4.3-.4.6-1 .9-1.6 1.1H14.2a1.69 1.69 0 0 1-1-.3c-1.6-.8-2.7-2.5-2.6-4.3l-.2-16.1V18c0-1.5 1.1-2.8 2.6-3.1.5-.1.9-.1 1.4-.1h7.7l7.5-.2zm-.1 1.7h-1.3l-12 .1h-2.7c-.8 0-1.5.6-1.5 1.4 0 .2-.1.4-.1.6V21l.1 9.2.1 6.7c0 .6.2 1.3.6 1.8.3.5.9.9 1.5.9h30.9c.4 0 .7-.1.9-.4.7-.8 1.1-1.8 1.1-2.8V18.1c.1-.9-.5-1.6-1.4-1.7h-.1c-.5-.1-1-.1-1.5-.1H29.5zm-5.8 20.8c-3.5 0-6.4-2.8-6.4-6.3s2.8-6.4 6.3-6.4a6.43 6.43 0 0 1 5.9 3.8l-.7.3c-1.3-2.8-4.7-4-7.5-2.7s-4 4.7-2.7 7.5c.9 2 2.9 3.2 5.1 3.2h.1l-.1.6z"/><path d="M23.7 36.4h9.2v.7h-9.2zm12-11.1c-.2-3.2-2.9-5.7-6.2-5.8-3.1 0-5.6 2.2-6.1 5.3l-.7-.1c.5-3.4 3.4-5.9 6.8-5.9 3.6 0 6.6 2.8 6.9 6.5h-.7z"/><path d="M35.5 37.8c-3.1 0-5.7-2.2-6.2-5.3l.7-.1c.6 3 3.5 5 6.6 4.4 3-.6 5-3.5 4.4-6.6-.5-2.6-2.7-4.5-5.4-4.5V25a6.32 6.32 0 0 1 6.3 6.5c-.1 3.6-2.9 6.3-6.4 6.3z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/management/push_notifications.svg b/src/main/webapp/img/lib/ibm/management/push_notifications.svg index b78f757552930171c82b1ac8943582cbfdf36cd9..70cdb30fa1f28e2b50fa387d689dafff0e337568 100644 --- a/src/main/webapp/img/lib/ibm/management/push_notifications.svg +++ b/src/main/webapp/img/lib/ibm/management/push_notifications.svg @@ -1,17 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.3 59.3" style="enable-background:new 0 0 59.3 59.3;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#00B09C;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle class="st0" cx="29.6" cy="29.6" r="29.6"/> -<path class="st1" d="M30.6,14.5c-3.3,0-6.6,1.1-9.2,3.2c-3.2,2.5-5.3,6.1-5.7,10.1c-0.5,4,0.6,8.1,3.2,11.2 - c2.5,3.2,6.2,5.2,10.2,5.5c3.6,0.4,7.3-0.6,10.2-2.7c0.3-0.2,0.5-0.3,0.8,0c0.5,0.6,1.1,1.1,1.7,1.7c0.2,0.2,0.2,0.3,0,0.5 - c-7.9,6.2-19.4,4.7-25.5-3.2c-0.5-0.7-1-1.4-1.4-2.1c-3.8-6.6-3-15,1.9-20.8c2.8-3.4,6.8-5.7,11.2-6.2c3.7-0.6,7.5,0.1,10.9,1.8 - c1,0.5,2,1.1,2.9,1.9c0.3,0.3,0.5,0.3,0.9,0c0.6-0.6,1.2-1.2,1.8-1.8c0.2-0.2,0.4-0.3,0.4,0.1c0.6,2.9,1.2,5.7,1.8,8.6 - c0.1,0.5-0.2,0.4-0.4,0.3l-7.1-1.7c-0.4-0.1-0.9-0.2-1.3-0.3s-0.4-0.2-0.2-0.5c0.6-0.6,1.3-1.3,1.9-1.9c0.3-0.3,0.3-0.4,0-0.7 - C37,15.5,33.8,14.5,30.6,14.5z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.3 59.3"><circle cx="29.6" cy="29.6" r="29.6" fill="#00b09c"/><path d="M30.6 14.5c-3.3 0-6.6 1.1-9.2 3.2-3.2 2.5-5.3 6.1-5.7 10.1-.5 4 .6 8.1 3.2 11.2 2.5 3.2 6.2 5.2 10.2 5.5 3.6.4 7.3-.6 10.2-2.7.3-.2.5-.3.8 0 .5.6 1.1 1.1 1.7 1.7.2.2.2.3 0 .5-7.9 6.2-19.4 4.7-25.5-3.2-.5-.7-1-1.4-1.4-2.1-3.8-6.6-3-15 1.9-20.8 2.8-3.4 6.8-5.7 11.2-6.2 3.7-.6 7.5.1 10.9 1.8 1 .5 2 1.1 2.9 1.9.3.3.5.3.9 0l1.8-1.8c.2-.2.4-.3.4.1l1.8 8.6c.1.5-.2.4-.4.3l-7.1-1.7c-.4-.1-.9-.2-1.3-.3s-.4-.2-.2-.5l1.9-1.9c.3-.3.3-.4 0-.7-2.6-2-5.8-3-9-3z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/management/service_management_tools.svg b/src/main/webapp/img/lib/ibm/management/service_management_tools.svg index 4e10d1e507b57aa34199d6e201b8cd8af0d27341..3853a7482a9e3ada9f49065788d73b90d3f3a249 100644 --- a/src/main/webapp/img/lib/ibm/management/service_management_tools.svg +++ b/src/main/webapp/img/lib/ibm/management/service_management_tools.svg @@ -1,22 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 60.3 60.3" style="enable-background:new 0 0 60.3 60.3;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#0CB29D;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle class="st0" cx="30.1" cy="30.1" r="30.1"/> -<path class="st1" d="M14.7,31.4l-4.9-4.9l1.5-1.5h1.9v-1.9l7.7-7.7h9.9L18.1,28h-1.9v1.9L14.7,31.4z M11,26.5l3.6,3.6l0.6-0.6v-2.4 - h2.4l10.8-10.8h-7.3l-7.2,7.2v2.4h-2.4L11,26.5z"/> -<path class="st1" d="M39.1,31.5L39.1,31.5c4.1,1.4,8.6-0.9,9.9-5c0.3-0.8,0.4-1.5,0.4-2.3c0-0.5,0-0.9-0.1-1.4l-0.4-1.5l-1.2,1.2 - l-3,3c-0.5,0.6-1.3,0.9-2.1,0.9c-0.8,0-1.6-0.3-2.1-0.9c-0.6-0.5-0.9-1.3-0.9-2.1c0-0.8,0.3-1.6,0.9-2.1l3-3l1.2-1.2L43,16.8 - c-0.5-0.1-0.9-0.1-1.4-0.1c-4.3,0-7.7,3.5-7.7,7.7c0,0.9,0.1,1.7,0.4,2.5l0,0l-3.7,3.7l-6.1-6.1l-0.6-0.6l-0.6,0.6l-2.8,2.8 - l-0.6,0.6l0.6,0.6l6.1,6.1L21.2,40c-1.3,1.3-1.3,3.4,0,4.7c0.6,0.6,1.4,1,2.3,1c0.9,0,1.7-0.3,2.3-1l5.3-5.3l5.9,5.9l0.6,0.6 - l0.6-0.6l2.8-2.8l0.6-0.6l-0.5-0.7l-5.9-5.9L39.1,31.5L39.1,31.5z M21.1,27.9l2.8-2.8l6.1,6.2l-2.8,2.8L21.1,27.9z M40.6,41.9 - l-2.7,2.7L32,38.7l0.4-0.4l2.4-2.4L40.6,41.9z M38.4,31l-5.5,5.5l-1.5,1.5l-6,6c-0.5,0.5-1.1,0.7-1.7,0.7c-0.6,0-1.2-0.3-1.7-0.7 - c-0.9-1-0.9-2.5,0-3.4l5.3-5.3l0.6-0.6l2.8-2.8l0.6-0.6l3.7-3.7l0.4-0.4l-0.2-0.6c-0.3-0.7-0.4-1.5-0.4-2.2c0-3.8,3-6.8,6.8-6.8 - c0.4,0,0.8,0,1.2,0.1l-3,3c-1.5,1.5-1.5,4,0,5.5c1.5,1.5,3.9,1.5,5.4,0l3-3c0.1,0.4,0.1,0.8,0.1,1.2c0,3.8-3,6.8-6.8,6.9 - c0,0,0,0,0,0c-0.8,0-1.5-0.1-2.2-0.4l-0.4-0.3L38.4,31z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60.3 60.3"><circle cx="30.1" cy="30.1" r="30.1" fill="#0cb29d"/><path d="M14.7 31.4l-4.9-4.9 1.5-1.5h1.9v-1.9l7.7-7.7h9.9L18.1 28h-1.9v1.9l-1.5 1.5zM11 26.5l3.6 3.6.6-.6v-2.4h2.4l10.8-10.8h-7.3l-7.2 7.2v2.4h-2.4l-.5.6zm28.1 5c4.1 1.4 8.6-.9 9.9-5 .3-.8.4-1.5.4-2.3 0-.5 0-.9-.1-1.4l-.4-1.5-4.2 4.2c-.5.6-1.3.9-2.1.9s-1.6-.3-2.1-.9c-.6-.5-.9-1.3-.9-2.1s.3-1.6.9-2.1l4.2-4.2-1.7-.3c-.5-.1-.9-.1-1.4-.1-4.3 0-7.7 3.5-7.7 7.7 0 .9.1 1.7.4 2.5l-3.7 3.7-6.7-6.7-4 4 6.7 6.7-5.4 5.4a3.32 3.32 0 0 0 0 4.7c.6.6 1.4 1 2.3 1s1.7-.3 2.3-1l5.3-5.3 6.5 6.5 4-4-.5-.7-5.9-5.9 3.9-3.8zm-18-3.6l2.8-2.8 6.1 6.2-2.8 2.8-6.1-6.2zm19.5 14l-2.7 2.7-5.9-5.9 2.8-2.8 5.8 6zM38.4 31l-13 13a2.34 2.34 0 0 1-1.7.7c-.6 0-1.2-.3-1.7-.7-.9-1-.9-2.5 0-3.4l13.4-13.4-.2-.6c-.3-.7-.4-1.5-.4-2.2a6.74 6.74 0 0 1 6.8-6.8c.4 0 .8 0 1.2.1l-3 3c-1.5 1.5-1.5 4 0 5.5a3.8 3.8 0 0 0 5.4 0l3-3c.1.4.1.8.1 1.2 0 3.8-3 6.8-6.8 6.9-.8 0-1.5-.1-2.2-.4l-.4-.3-.5.4z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/miscellaneous/bluemix.svg b/src/main/webapp/img/lib/ibm/miscellaneous/bluemix.svg index d7d1352412a4b59b85eaf03b2ce78feb273c25a6..176e09a847a207284437ad86421bad9e98eb9af2 100644 --- a/src/main/webapp/img/lib/ibm/miscellaneous/bluemix.svg +++ b/src/main/webapp/img/lib/ibm/miscellaneous/bluemix.svg @@ -1,20 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 64.5 65" style="enable-background:new 0 0 64.5 65;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#5F707B;} - .st1{fill:#2EC3B5;} - .st2{fill:#37C3E2;} - .st3{fill:none;stroke:#FFFFFF;stroke-width:0.5;stroke-miterlimit:10;} -</style> -<title>INDIVIDUAL ICONS 3</title> -<polygon class="st0" points="8.6,47 0,30.7 9.8,15.1 28.1,15.8 36.7,32.1 26.9,47.7 "/> -<polygon class="st1" points="36.8,32.2 27.9,15.9 37.3,0 55.6,0.3 64.5,16.6 55.1,32.5 "/> -<path class="st2" d="M35.4,64.2l-8.5-16.5l9.8-15.7L55,32.5l8.5,16.8L53.7,65L35.4,64.2z"/> -<line class="st3" x1="27.6" y1="16.2" x2="36.7" y2="31.9"/> -<line class="st3" x1="36.7" y1="31.9" x2="54.3" y2="31.6"/> -<ellipse transform="matrix(2.164036e-02 -0.9998 0.9998 2.164036e-02 4.5065 67.4099)" class="st3" cx="36.7" cy="31.4" rx="18.7" ry="18.7"/> -<polygon class="st3" points="41,23.6 54.3,31.6 40.7,39.2 27.1,46.8 27.3,31.2 27.6,15.6 "/> -<line class="st3" x1="36.7" y1="31.9" x2="27.1" y2="46.8"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64.5 65"><path d="M8.6 47L0 30.7l9.8-15.6 18.3.7 8.6 16.3-9.8 15.6z" fill="#5f707b"/><path d="M36.8 32.2l-8.9-16.3L37.3 0l18.3.3 8.9 16.3-9.4 15.9z" fill="#2ec3b5"/><path d="M35.4 64.2l-8.5-16.5L36.7 32l18.3.5 8.5 16.8L53.7 65l-18.3-.8z" fill="#37c3e2"/><g fill="none" stroke="#fff" stroke-width=".5"><path d="M27.6 16.2l9.1 15.7m0 0l17.6-.3" stroke-miterlimit="10"/><circle transform="matrix(.02164 -.9998 .9998 .02164 4.5065 67.4099)" cx="36.7" cy="31.4" r="18.7"/><g stroke-miterlimit="10"><path d="M41 23.6l13.3 8-27.2 15.2.2-15.6.3-15.6z"/><path d="M36.7 31.9l-9.6 14.9"/></g></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/miscellaneous/cloudant.svg b/src/main/webapp/img/lib/ibm/miscellaneous/cloudant.svg index 826dc419875905dab58e923f2ce75b3b3046e56f..3f660ab792f9d8a0002e53584fb3a5afc4274cf5 100644 --- a/src/main/webapp/img/lib/ibm/miscellaneous/cloudant.svg +++ b/src/main/webapp/img/lib/ibm/miscellaneous/cloudant.svg @@ -1,17 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 62 59.5" style="enable-background:new 0 0 62 59.5;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#73C6E6;} - .st1{fill:#243771;} - .st2{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS 2</title> -<ellipse class="st0" cx="31" cy="29.8" rx="31" ry="29.8"/> -<path class="st1" d="M49.6,25.8v11.2l0,0c0,3.5-5.4,6.5-12.3,6.7c-3.3,0.2-6.7-0.5-9.7-2c-1.5,0.4-3,0.7-4.5,0.7 - c-6.3,0.4-11.6-2-11.8-5.3l0,0l0,0V25.9L49.6,25.8z"/> -<path class="st2" d="M45.1,21.2c0.8-0.7,1.2-1.8,1.2-2.9c-0.2-3.2-5.5-5.5-11.9-5.2s-11.3,3.1-11.3,6.2c-0.2,0-0.4,0-0.6,0 - c-6.3,0.4-11.3,3.4-11.1,6.7s5.5,5.7,11.8,5.3c1.5-0.1,3-0.3,4.5-0.7c3,1.5,6.3,2.2,9.7,2c6.9-0.2,12.4-3.2,12.3-6.7 - C49.6,24,47.8,22.3,45.1,21.2z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 62 59.5"><ellipse cx="31" cy="29.8" rx="31" ry="29.8" fill="#73c6e6"/><path d="M49.6 25.8V37c0 3.5-5.4 6.5-12.3 6.7-3.3.2-6.7-.5-9.7-2-1.5.4-3 .7-4.5.7-6.3.4-11.6-2-11.8-5.3V25.9l38.3-.1z" fill="#243771"/><path d="M45.1 21.2c.8-.7 1.2-1.8 1.2-2.9-.2-3.2-5.5-5.5-11.9-5.2s-11.3 3.1-11.3 6.2h-.6c-6.3.4-11.3 3.4-11.1 6.7s5.5 5.7 11.8 5.3c1.5-.1 3-.3 4.5-.7 3 1.5 6.3 2.2 9.7 2 6.9-.2 12.4-3.2 12.3-6.7-.1-1.9-1.9-3.6-4.6-4.7z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/miscellaneous/cognitive_services.svg b/src/main/webapp/img/lib/ibm/miscellaneous/cognitive_services.svg index f63f2bd6cf71bd6a215a186bb8902443a852445c..2988521c54b5f73e750e99ef344ce05722d06ce6 100644 --- a/src/main/webapp/img/lib/ibm/miscellaneous/cognitive_services.svg +++ b/src/main/webapp/img/lib/ibm/miscellaneous/cognitive_services.svg @@ -1,579 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 62.6 61.7" style="enable-background:new 0 0 62.6 61.7;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#C1E8FA;} - .st1{fill:#18AEE4;} - .st2{fill:#9DCB3C;} - .st3{fill:#39B44B;} - .st4{fill:#6CCDF4;} - .st5{fill:#D5DE26;} - .st6{fill:#1F92D0;} - .st7{fill:#2CA9E1;} - .st8{fill:#39C5F3;} - .st9{fill:#BFD631;} - .st10{fill:#2EA149;} - .st11{fill:#0083C1;} - .st12{fill:#A9C239;} - .st13{fill:#8CB940;} - .st14{fill:#DCE691;} - .st15{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS 2</title> -<path class="st0" d="M34.7,46.5c-0.1-0.1-0.3-0.2-0.4-0.2c-0.1,0-0.2-0.1-0.2-0.1c0-0.1,0-0.1,0.1-0.2c0.3,0.1,0.5,0.2,0.8,0.4 - C34.9,46.4,34.8,46.4,34.7,46.5z"/> -<path class="st0" d="M27.1,42c0.1-0.1,0.1-0.1,0.2-0.2l1.9,1.2c0.4,0.3,0.8,0.5,1.3,0.7c0.1,0,0.1,0,0.2,0c0.2-0.2,0.5-0.2,0.7-0.1 - c0.2,0.1,0.4,0.4,0.3,0.6c0,0.1,0.1,0.3,0.2,0.3l1.8,1l0.1,0.1c0.1,0.1,0,0.1,0,0.2s-0.1,0-0.2,0l-2-1.2c-0.1-0.1-0.1-0.1-0.2,0 - c-0.2,0.1-0.5,0.1-0.7,0c-0.2-0.1-0.3-0.3-0.3-0.6c0-0.1,0-0.2-0.2-0.3C29.1,43.3,28.1,42.7,27.1,42z"/> -<path class="st0" d="M20,37.8c0-0.1,0.1-0.2,0.1-0.2l1.8,1.2c0.4,0.2,0.8,0.5,1.2,0.7c0,0,0.1,0,0.2,0c0.2-0.2,0.5-0.2,0.7-0.1 - c0.2,0.1,0.4,0.3,0.3,0.6c0,0.1,0.1,0.3,0.2,0.3l1.7,1l0.1,0.1c0.1,0.1,0,0.1,0,0.2s-0.1,0-0.1,0l-1.9-1.1c-0.1,0-0.1,0-0.2,0 - c-0.2,0.1-0.4,0.1-0.6,0c-0.2-0.1-0.3-0.3-0.3-0.5c0-0.1,0-0.2-0.1-0.3C21.9,39.1,21,38.5,20,37.8z"/> -<path class="st1" d="M35.3,60.2c-0.2,0.7-0.7,1.3-1.4,1.6h-0.6c-0.6-0.2-1.1-0.6-1.5-1.2l-0.5-0.7l0,0c-0.5-0.8-1-1.7-1.3-2.6 - c0-0.1,0-0.2-0.1-0.2c0-0.1,0-0.2-0.1-0.3c-0.1-0.2-0.1-0.4-0.3-0.6c-0.1-0.3-0.2-0.7-0.3-1c0-0.1,0-0.2-0.1-0.3l-0.5-1.3 - c0-0.1,0-0.1,0-0.2c0-0.1,0-0.1-0.1-0.2c0-0.2-0.1-0.4-0.1-0.5l-0.1-0.4c-0.1-0.3-0.1-0.6-0.3-0.9c0-0.2-0.1-0.4-0.2-0.6 - c-0.1-0.4-0.2-0.8-0.3-1.3c0,0,0,0,0-0.1c-0.4-1.7-0.8-3.5-1.1-5.2c0-0.1,0-0.2,0-0.3c-0.1-0.3-0.1-0.7-0.2-1c0,0,0-0.1,0-0.1 - c-0.2-1.1-0.3-2.1-0.5-3.2c0-0.2-0.1-0.2-0.3-0.3c-1.2-0.4-1.8-1.7-1.5-2.8c0.2-0.6,0.6-1,1.1-1.3c0,0,0.1,0,0.1-0.1l-0.1-0.9v-0.2 - L25,31.8c0-0.2,0-0.4,0-0.7s0-0.6-0.1-0.9s0-0.6,0-1c0,0,0-0.1,0-0.1V29l0,0l0,0c0-1.1,0-2.3,0-3.4h-0.1c-0.5,0.5-1.1,1-1.6,1.5 - l-1,1.1c0-0.1-0.1-0.2,0-0.3c0.4-0.4,0.7-0.8,1.1-1.2s1-1,1.5-1.5c0,0,0.1-0.1,0.1-0.2c0-0.3,0-0.6,0-1v-0.1l0.1-2c0,0,0-0.1,0-0.1 - l0.1-1.4l0.1-0.9l0.1-0.4c0.1-0.7,0.3-1.3,0.5-2l0.3-0.8c0.2-0.4,0.4-0.8,0.6-1.1c0.2-0.2,0.4-0.4,0.7-0.6c0.4-0.2,0.9-0.1,1.3,0.1 - c0.4,0.2,0.7,0.5,0.9,0.9L29,15.8c-0.2-0.3-0.7-0.4-1-0.1c-0.1,0.1-0.2,0.2-0.3,0.3c-0.2,0.2-0.3,0.5-0.4,0.7c0,0,0,0.1-0.1,0.1 - c-0.3,1-0.5,2-0.6,3V20v0.3c-0.1,0.4-0.1,0.8-0.1,1.2c0,0.2,0,0.3,0,0.5c-0.1,0.7-0.1,1.3-0.1,1.9c0,0.2,0,0.2,0.2,0.2h0.1 - c-0.3,0.2-0.4,0.5-0.4,0.8c0,0.1,0,0.2,0,0.2c0,1.3,0,2.5,0,3.8c0,0.4,0,0.8,0,1.3c0,0.1,0,0.2,0,0.3c0,0.4,0,0.8,0.1,1.2 - c0,0.3,0,0.6,0,0.9c0,0.8,0.1,1.6,0.2,2.4c0,0.1,0,0.2,0.2,0.2c0.4,0.1,0.8,0.3,1.1,0.6c0.8,0.9,0.8,2.4-0.2,3.2 - c-0.2,0.1-0.4,0.3-0.6,0.4c-0.1,0-0.2,0.2-0.1,0.3c0.2,1.1,0.3,2.2,0.5,3.3c0.1,0.5,0.1,0.9,0.3,1.4c0,0,0,0.1,0,0.2 - c0.2,1.1,0.4,2.2,0.6,3.3c0.1,0.5,0.2,1,0.3,1.4c0,0,0,0.1,0,0.1l0.3,1.2c0,0.1,0,0.2,0.1,0.2c0.1,0.4,0.2,0.7,0.3,1.1l0.1,0.4 - c0,0.1,0.1,0.2,0.1,0.3c0.1,0.5,0.3,0.9,0.4,1.4c0.2,0.6,0.4,1.2,0.6,1.8c0.1,0.3,0.2,0.7,0.4,1c0.2,0.5,0.4,1,0.6,1.4 - c0.3,0.7,0.6,1.3,1,1.9c0.1,0.2,0.3,0.4,0.5,0.6c0,0,0.1,0.1,0.1,0.1c0.2,0.2,0.5,0.3,0.8,0.2c0.2-0.1,0.4-0.3,0.5-0.5L35.3,60.2z" - /> -<path class="st1" d="M31.6,0c0.3,0.1,0.5,0.2,0.7,0.4c0.2,0.2,0.4,0.6,0.3,0.9c0,2.7,0,5.3,0,7.9c0,0.7-0.5,1.3-1.3,1.3 - c-0.6,0-1.2-0.4-1.3-1.1c0-0.1,0-0.2,0-0.3c0-2.7,0-5.3,0-7.9c0-0.6,0.4-1.1,1-1.3c0,0,0.1,0,0.1,0L31.6,0z"/> -<path class="st1" d="M0,16.4c0.1-0.3,0.2-0.6,0.5-0.8c0.4-0.3,1-0.4,1.5-0.1l3.8,2.4l2.9,1.8c0.6,0.4,0.8,1.2,0.5,1.8 - C9,21.7,8.7,21.9,8.4,22c-0.4,0.1-0.8,0.1-1.1-0.2l-6-3.8C1.2,18,1,18,0.9,17.9c-0.4-0.2-0.8-0.6-0.9-1L0,16.4z"/> -<path class="st1" d="M62.6,16.9C62.6,16.9,62.6,17,62.6,16.9c-0.1,0.4-0.3,0.7-0.6,0.8L56.7,21l-1.4,0.9c-0.6,0.4-1.4,0.2-1.8-0.4 - c-0.4-0.6-0.2-1.4,0.4-1.8c2.2-1.4,4.5-2.8,6.7-4.1c0.6-0.4,1.4-0.3,1.8,0.3c0.1,0.1,0.1,0.3,0.2,0.4l0,0L62.6,16.9z"/> -<path class="st2" d="M53.3,33.3c0.6,0.2,1.1,0.5,1.6,0.9c0.5,0.4,0.6,1.1,0.3,1.7c-0.2,0.3-0.5,0.7-0.8,0.9L54.2,37 - c-0.2,0.1-0.4,0.2-0.5,0.4L52.6,38c-0.8,0.4-1.6,0.8-2.4,1.1c-0.1,0-0.1,0.1,0,0.1c0.4,1,0.8,2.1,1.1,3.2c0.2,0.8,0.3,1.6,0.4,2.4 - c-0.3-0.1-0.7-0.1-1-0.1l-0.1-0.1l-0.1-0.4c0-0.2-0.1-0.3-0.1-0.5c-0.2-0.9-0.5-1.8-0.9-2.7l-0.2-0.3c-0.1-0.3-0.2-0.6-0.4-0.8 - c0-0.1-0.1-0.1-0.2-0.1c-0.8,0.3-1.7,0.6-2.6,0.9l-2,0.6c-0.1,0-0.2,0-0.3,0.1l-0.8,0.2l-1.5,0.4l-0.8,0.2l0,0l0,0 - c-0.1,0-0.2,0-0.4,0.1l0,0l0,0c0,0-0.1,0-0.1,0c-1.2,0.3-2.5,0.5-3.7,0.8L36.3,43c-0.3,0-0.5,0.1-0.8,0.2c-0.2,0-0.5,0-0.7,0.1 - l-0.9,0.2h-0.1c-1,0.2-2,0.3-3,0.4l-2,0.3c0.1-0.2,0.2-0.5,0.1-0.8c0-0.2-0.1-0.4-0.1-0.6h0.1l1.9-0.2c1.3-0.2,2.5-0.4,3.8-0.6 - l1-0.2l0.6-0.1c0.1,0,0.1,0,0.2,0c1.3-0.2,2.7-0.5,4-0.8c0.5-0.1,1-0.2,1.5-0.4c0.1,0,0.2,0,0.3-0.1c0.2,0,0.3-0.1,0.5-0.1 - c0.3-0.1,0.5-0.1,0.8-0.2h0.1c0.8-0.2,1.5-0.4,2.3-0.6c0.2,0,0.4-0.1,0.5-0.2c0.3-0.1,0.5-0.1,0.8-0.2c0.4-0.1,0.9-0.3,1.3-0.4 - c0.2-0.1,0.3-0.1,0.5-0.2c0.3-0.1,0.5-0.2,0.7-0.3c0.1,0,0.1,0,0.2,0c0.4-0.2,0.9-0.3,1.3-0.5c0.6-0.3,1.2-0.6,1.8-0.9 - c0.2-0.1,0.3-0.2,0.5-0.3c0.2-0.1,0.4-0.2,0.5-0.4c0.2-0.2,0.4-0.4,0.6-0.7c0.1-0.3,0.1-0.6-0.1-0.8c-0.2-0.3-0.5-0.5-0.9-0.7 - L53.3,33.3z"/> -<path class="st2" d="M9.5,43.8c-0.5-0.2-1-0.4-1.4-0.6c-0.3-0.2-0.5-0.4-0.7-0.6c-0.3-0.4-0.4-1-0.1-1.4c0.2-0.5,0.6-0.9,1-1.2 - c0.2-0.1,0.3-0.3,0.5-0.4C8.9,39.7,8.9,39.8,9,40c-0.4,0.3-0.6,0.6-0.9,1c-0.2,0.3-0.1,0.6,0.1,0.8c0.3,0.3,0.6,0.5,1,0.6 - c0.2,0.1,0.4,0.2,0.7,0.2c0.3,0.1,0.5,0.1,0.8,0.2c0.5,0.1,1,0.2,1.5,0.2c0.4,0.1,0.7,0.1,1.1,0.1h0.2c0.3,0,0.7,0.1,1,0 - c0.3,0,0.5,0.1,0.8,0.1c0.4,0,0.8,0.1,1.2,0c0.3,0,0.6,0,0.9,0L17,42.6c0-0.1,0.1-0.2,0.2-0.3l0.6,0.8c0.1,0.1,0.1,0.1,0.2,0.1h2.7 - c0.1,0,0.2,0,0.2-0.1c0.4-1.1,1.7-1.7,2.8-1.3c0.5,0.2,1,0.6,1.2,1.1c0,0.1,0.1,0.1,0.2,0.1h0.4v0.3c0,0.4,0.1,0.7,0.2,1 - c-0.2,0-0.3,0-0.5,0c-0.1,0-0.2,0.1-0.2,0.2c-0.1,0.3-0.3,0.6-0.5,0.8c-0.1,0.2-0.3,0.3-0.5,0.4l-0.2,0.1c-0.2,0.1-0.5,0.1-0.7,0.2 - c-0.9,0-1.7-0.5-2.1-1.3c0-0.1,0-0.1-0.1-0.1h-1h-0.8c0,0,0,0,0,0.1l1.1,1.1c0,0.1,0.1,0,0.2,0c0.3-0.1,0.7,0,0.8,0.3 - c0.1,0.2,0.1,0.3,0,0.5c-0.1,0.1-0.1,0.1,0,0.2c0,0,0,0,0,0c0.5,0.5,1,0.9,1.5,1.3c0.1,0.1,0.3,0.3,0.5,0.3c0,0.1,0.1,0.1,0.2,0.1 - c0,0.1,0.1,0.1,0.1,0.1l0.6,0.5c-0.2,0-0.4-0.1-0.5-0.1c0-0.1-0.1-0.1-0.2-0.2s-0.1-0.1-0.1,0c-0.1,0-0.1,0-0.2-0.1 - c0.1-0.2,0-0.3-0.1-0.4c-0.6-0.5-1.2-1-1.8-1.6c-0.1-0.1-0.1-0.1-0.3-0.1c-0.2,0.1-0.5,0-0.6-0.1c-0.2-0.2-0.2-0.4-0.1-0.7 - c0-0.1,0-0.1,0-0.2c-0.4-0.4-0.8-0.8-1.2-1.3c-0.1-0.1-0.1-0.1-0.2-0.1h-1.4c-0.4,0-0.9,0-1.3,0s-0.7,0-1-0.1c-0.1,0-0.2,0-0.3,0 - l-1.3-0.1l-1-0.1c-0.3-0.1-0.5-0.1-0.8-0.1l-0.4-0.1L10.2,44L9.5,43.8z"/> -<path class="st3" d="M31.4,59.9l0.5,0.7c-0.9,0.1-1.8,0-2.7-0.2c-1.1-0.2-2.2-0.5-3.2-0.9h-0.1L24.8,59l-1-0.5l-1-0.6l-0.7-0.5 - l-0.3-0.2c0,0,0-0.1-0.1-0.1c-0.1-0.1-0.2-0.2-0.3-0.3v0c-0.7-0.5-1.3-1.1-1.9-1.7l0,0l0,0L19,54.5c-0.1-0.1-0.1-0.2-0.2-0.2 - c0,0,0,0,0-0.1L18,53.3l-0.8-1.1l-0.5-0.8c0,0-0.1-0.1-0.1-0.1c-0.2,0-0.3,0-0.5,0c-0.8-0.2-1.2-1-1-1.7c0-0.1,0.1-0.3,0.2-0.4 - c0-0.1,0.1-0.1,0-0.2c-0.2-0.5-0.4-0.9-0.6-1.4s-0.4-1.1-0.6-1.6v-0.1l0,0l0,0c0-0.1,0-0.2,0-0.3s0-0.2,0.1-0.1c0.2,0,0.4,0,0.5,0 - l0.4-0.1l0.2,0.7c0.1,0.3,0.2,0.6,0.3,0.9c0,0.1,0,0.1,0,0.2c0.2,0.4,0.3,0.8,0.5,1.1c0.1,0.2,0.1,0.4,0.4,0.3c0,0,0.1,0,0.1,0 - c0.8,0.1,1.3,0.8,1.2,1.6c0,0.2-0.1,0.4-0.2,0.5c-0.1,0.1-0.1,0.3,0,0.4c0.2,0.3,0.5,0.7,0.7,1c0.2,0.3,0.5,0.7,0.8,1l0.1,0.1 - c0.1,0.2,0.3,0.4,0.5,0.5c0.4,0.5,0.9,1,1.4,1.5c0.2,0.2,0.5,0.4,0.7,0.6l0.3,0.2c0.1,0.1,0.3,0.3,0.5,0.4l0.3,0.2 - c0.5,0.4,1,0.7,1.6,1c0.4,0.2,0.7,0.4,1.1,0.6c0.3,0.2,0.7,0.3,1.1,0.5h0.1C28.1,59.4,29.7,59.8,31.4,59.9z"/> -<path class="st1" d="M14.2,3.9c0.5,0,0.9,0.3,1.1,0.7c0.7,1.4,1.3,2.7,2,4.1l1.5,3c0.4,0.6,0.2,1.4-0.4,1.8 - c-0.6,0.4-1.4,0.2-1.8-0.4c0-0.1-0.1-0.1-0.1-0.2l-2.2-4.6L13,5.8c-0.3-0.7,0-1.4,0.6-1.7C13.8,3.9,14,3.9,14.2,3.9z"/> -<path class="st1" d="M49.3,5.2c0,0.3-0.1,0.6-0.3,0.9l-2.2,4.5l-1.1,2.3c-0.2,0.4-0.6,0.7-1,0.8c-0.7,0.1-1.3-0.4-1.4-1.1 - c0-0.3,0-0.6,0.2-0.9l2.8-5.9c0.2-0.4,0.4-0.8,0.6-1.2c0.4-0.6,1.2-0.8,1.8-0.4c0.3,0.2,0.5,0.4,0.6,0.7C49.3,5,49.3,5.1,49.3,5.2z" - /> -<path class="st4" d="M22.1,28c-0.1,0.1,0,0.2,0,0.3s0.1,0.3,0.3,0.3l0.4,0.1c0.5,0.2,1,0.4,1.5,0.6c-0.1,0.1-0.1,0.2-0.2,0.3 - c-0.2,0.3-0.3,0.6-0.4,1l-1.9-0.7c-0.1-0.1-0.2-0.1-0.2,0c-0.2,0.2-0.5,0.4-0.9,0.5c-0.1,0-0.3,0-0.4,0.1s-0.1,0-0.2,0h-0.1 - c-0.7-0.1-1.2-0.7-1.3-1.4c0-0.1-0.1-0.2-0.2-0.2c-0.9-0.3-1.8-0.5-2.8-0.8c-0.1,0-0.2-0.1-0.3,0c0-0.1,0-0.1-0.1-0.1 - c-0.3-0.1-0.6-0.1-1-0.2l-0.2-0.1l-0.6-0.1l-0.5-0.1c-0.4,0-0.7-0.1-1.1-0.1c-0.2,0-0.4,0-0.6,0c-0.2,0-0.4,0.1-0.6,0.2 - c-0.3,0.1-0.5,0.5-0.4,0.8c0.1,0.3,0.2,0.7,0.4,1l-0.3,0.4c-0.4-0.5-0.6-1-0.8-1.6c-0.2-0.7,0.2-1.5,0.9-1.7c0,0,0,0,0,0 - c0.4-0.1,0.8-0.2,1.2-0.2h0.7c0.6,0,1.1,0.1,1.7,0.1l1,0.1l1.1,0.2c0.2,0.1,0.5,0.1,0.7,0.1c0,0,0.1,0,0.1,0 - c0.7,0.2,1.4,0.4,2.1,0.6c0.1,0,0.2,0,0.3-0.1c0.3-0.3,0.8-0.5,1.2-0.4C21.3,27,21.8,27.3,22.1,28C22.1,27.9,22.1,28,22.1,28z"/> -<path class="st5" d="M44.2,19c0.6,0,1.2,0.1,1.7,0.3c1.7,0.5,2.9,1.9,3.2,3.6c0.1,0.3,0.1,0.6,0.1,1v0.9l-0.5-0.5 - c0-0.2,0-0.4-0.1-0.6c0-0.1,0-0.2,0-0.2c-0.2-1-0.6-2-1.4-2.7c-0.4-0.4-1-0.7-1.6-0.9c-0.4-0.1-0.9-0.2-1.4-0.2 - c-0.8,0-1.5,0.1-2.3,0.3l-0.3,0.1c-0.6,0.2-1.2,0.4-1.7,0.6l-0.2,0.1c-1.1,0.4-2.1,0.9-3.1,1.5c-0.5,0.3-1.1,0.6-1.6,1 - c-0.4,0.2-0.8,0.5-1.2,0.8c-0.1,0-0.2,0.1-0.3,0.2c-0.1,0-0.2,0.1-0.3,0.2c-0.1,0-0.1,0.1-0.2,0.1c-0.2,0.1-0.4,0.3-0.6,0.5l0,0l0,0 - c-0.2,0-0.3,0.2-0.4,0.3c-0.1,0.1,0,0,0,0l0,0c-0.1,0-0.1,0-0.1,0.1c-0.8,0.6-1.5,1.2-2.2,1.8l-1.4,1.3c-0.2-0.3-0.5-0.6-0.8-0.8v0 - c0.9-0.8,1.8-1.6,2.7-2.4l1.5-1.1c0.1,0,0.2-0.1,0.3-0.2c0.3-0.2,0.6-0.4,0.8-0.6h0.1l1-0.7c0,0,0.1,0,0.1-0.1c0,0,0.1,0,0.1,0 - c0,0,0,0,0,0l0,0c0.1,0,0.1,0,0.2-0.1c0.8-0.5,1.5-0.9,2.3-1.3c0.5-0.3,1-0.5,1.5-0.7c0.7-0.3,1.5-0.6,2.3-0.8c0.1,0,0.2,0,0.3-0.1 - l1.1-0.3c0,0,0.1,0,0.1,0l0.9-0.1C43.2,19,43.7,19,44.2,19z"/> -<path class="st3" d="M12.4,26.1h-0.7c0.3-1.1,0.8-2.1,1.5-3c0.3-0.4,0.6-0.7,0.9-1c0.8-0.8,1.8-1.4,2.8-1.8c0.9-0.4,1.9-0.7,2.9-0.9 - h0.3c0.2,0,0.4-0.1,0.5-0.2c0.8-0.6,1.6-1.2,2.5-1.6c0.1,0,0.1-0.1,0.1-0.2c0.1-0.4,0.5-0.7,0.9-0.5c0,0,0.1,0,0.1,0 - c0.1,0,0.2,0,0.2,0c0.5-0.2,1-0.4,1.6-0.6l-0.3,0.8c-0.3,0.1-0.7,0.3-1,0.4c-0.1,0-0.1,0.1-0.1,0.2c-0.1,0.4-0.4,0.7-0.9,0.7 - c-0.1,0-0.2,0-0.3-0.1c0,0-0.1,0-0.1,0c-0.5,0.3-1,0.6-1.5,1c-0.4,0.3-0.9,0.7-1.3,1l-0.1,0c-0.9,0.8-1.7,1.7-2.4,2.7 - c-0.4,0.6-0.8,1.2-1.2,1.8l0,0l0,0c-0.2,0.2-0.3,0.5-0.4,0.7c-0.1,0-0.2-0.1-0.2-0.1c-0.2-0.1-0.5-0.2-0.7-0.2 - c0.7-1.3,1.5-2.6,2.5-3.7c0.3-0.4,0.7-0.7,1-1.1l0,0l0,0l0,0c-0.2,0-0.4,0-0.6,0.1c-1.7,0.4-3.2,1.2-4.4,2.5 - C13.2,24,12.7,25,12.4,26.1z"/> -<path class="st6" d="M48.7,24.2l0.5,0.5l0.4,0.4c0.8,0.9,1.4,1.9,2,3l0.2,0.3l0.6,1.1c0.2,0.5,0.3,0.9,0.5,1.4 - c0.3,0.8,0.4,1.6,0.6,2.5l0.1,0.5c0,0.1,0,0.1,0,0.2c0,0.4,0.1,0.8,0,1.2l-0.7-1.1c0-0.2,0-0.4-0.1-0.6l-0.1-0.4c0,0,0-0.1,0-0.2 - c-0.1-0.6-0.2-1.1-0.4-1.7c-0.2-0.7-0.5-1.4-0.8-2c-0.3-0.6-0.6-1.1-0.9-1.7c-0.4-0.6-0.9-1.2-1.4-1.7c-0.3-0.4-0.7-0.8-1.1-1.1 - c-0.4-0.4-0.8-0.7-1.3-1c-0.2-0.2-0.5-0.4-0.8-0.5c-0.7-0.5-1.4-0.9-2.2-1.2c-0.1-0.1-0.2-0.1-0.3-0.1l0,0c0.2-0.3,0.2-0.7,0.2-1 - c0,0,0-0.1,0-0.1h0.1c0.9,0.4,1.8,0.9,2.6,1.5c0.2,0.2,0.5,0.4,0.7,0.5l0,0v0c0.4,0.3,0.9,0.7,1.3,1.1c0,0,0.1,0,0.1,0 - C48.5,24,48.6,24.1,48.7,24.2z"/> -<path class="st4" d="M52.9,47.9c-0.3-0.6-0.6-1.2-1-1.7l-0.2-0.3l-1.1-1.2l-0.1-0.1c-0.1-0.1-0.1-0.1-0.2-0.2l-1.2-1.1 - c-0.1,0-0.1-0.1-0.1-0.1c-0.3-0.2-0.5-0.4-0.7-0.6l-1.3-1h-0.1c-0.1,0.3-0.4,0.7-0.6,0.9c0,0-0.1,0.1-0.2,0.1l1,0.8l1.5,1.2l0,0h0h0 - c0,0,0,0,0.1,0l1.1,0.9c0.1,0,0.1,0.1,0.1,0.2c0.2,0.2,0.4,0.4,0.5,0.5c0.1,0,0.1,0.1,0.2,0.2c0.3,0.3,0.6,0.7,0.9,1.1 - c0.3,0.4,0.5,0.8,0.5,1.3c0,0.2-0.1,0.4-0.3,0.5c-0.2,0.2-0.4,0.3-0.7,0.3L51,50.2c0.5,0,1-0.2,1.5-0.4c0.3-0.2,0.5-0.5,0.6-0.8 - C53.1,48.6,53.1,48.2,52.9,47.9z"/> -<path class="st2" d="M51.2,49.7L51,50.2c-0.2,0.6-0.4,1.1-0.7,1.6c-1.2,2.1-3.2,3.6-5.6,4.2c-0.8,0.2-1.6,0.3-2.4,0.4 - c-0.2,0-0.5,0-0.7,0.1c-0.3,0-0.5,0-0.8,0c-1.1,0-2.1-0.1-3.2-0.3l-1.3-0.3c-0.1,0-0.1-0.1-0.2-0.1c-0.2-0.1-0.4-0.1-0.7-0.2 - c-0.1-0.1-0.2-0.1-0.4-0.1L33.5,55c0.1,0,0.2-0.2,0.3-0.1C34,55,34.3,55,34.6,55c0.4,0.1,0.8,0.3,1.3,0.3c0.2,0.1,0.4,0.1,0.6,0.1 - l0,0c1.2,0.3,2.4,0.4,3.6,0.5c0.8,0,1.5,0,2.3-0.1l0,0l0,0c0.2,0,0.4,0,0.6-0.1l0,0l0,0c0.1,0,0.1,0,0.2,0c1.1-0.2,2.1-0.5,3.1-1 - c1.8-0.9,3.2-2.5,3.9-4.5c0.1-0.1,0.1-0.3,0.1-0.4v-0.1c0.1-0.5,0.2-1.1,0.3-1.6c0.1,0,0.3,0,0.4,0c0.1,0,0.3,0,0.4-0.1 - C51.3,48.6,51.3,49.1,51.2,49.7z"/> -<path class="st5" d="M18.8,57.8c-0.5,0.1-1,0.1-1.5,0c-0.8-0.1-1.6-0.3-2.2-0.7c-0.9-0.6-1.5-1.4-1.9-2.5c-0.2-0.7-0.4-1.4-0.4-2.1 - c0-0.1,0-0.2,0-0.2v-0.8l0.1-1l0.1-0.8c0.1-0.2,0.1-0.5,0.1-0.7l0.3-1.2l0,0l0,0c0.3,0.2,0.6,0.4,0.9,0.5l-0.1,0.4 - c-0.1,0.4-0.2,0.9-0.3,1.3c-0.1,0.2-0.1,0.4-0.1,0.6c-0.1,0.2-0.1,0.5-0.1,0.8c0,0.2-0.1,0.3,0,0.5c0,0.3,0,0.6,0,0.8 - c0,0.5,0.1,1,0.2,1.5c0.4,1.8,2.1,3.1,4,3L18.8,57.8z"/> -<path class="st3" d="M13.2,27.4l0.5,0.1c-0.4,0.3-0.8,0.5-1.1,0.9c-0.2,0.2-0.4,0.3-0.6,0.5c-0.2,0.2-0.4,0.4-0.6,0.6 - c-0.1,0.1-0.2,0.2-0.3,0.3c-0.1,0.1-0.2,0.2-0.3,0.4c-0.1,0.1-0.2,0.3-0.4,0.4c-1.4,1.8-2,4.1-1.6,6.3c0.1,0.6,0.3,1.2,0.5,1.8 - l-0.1,1.7C9.1,40.2,9.1,40.1,9,40c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.3-0.2-0.6-0.3-0.9c-1-3-0.3-6.4,1.8-8.7l0.1-0.1l0.3-0.4l0.6-0.6 - l0.6-0.5L13.2,27.4z"/> -<path class="st3" d="M28.9,15.8l0.8-0.1c0.7,0,1.5,0,2.2,0c1.5,0.1,3,0.5,4.4,1c0.5,0.2,1,0.4,1.5,0.6l0.4,0.2 - c0.3,0.2,0.5,0.3,0.8,0.5l-1,0.1c-0.1-0.1-0.2-0.1-0.3-0.2c-0.1-0.1-0.2-0.2-0.4-0.2c0,0-0.1-0.1-0.2-0.1c-0.5-0.2-1-0.4-1.6-0.6 - c-1.7-0.6-3.6-0.9-5.4-0.8c-0.2,0-0.4,0-0.6,0h-0.1c-0.7,0.1-1.4,0.2-2.1,0.4c0.1-0.3,0.2-0.5,0.4-0.7L28.9,15.8z"/> -<path class="st7" d="M18.8,57.8l-1-0.5l-0.1-0.1c-0.8-0.5-1.6-1.2-2.2-2c-0.5-0.7-0.9-1.4-1.2-2.2c0.2,0,0.4,0.1,0.6,0.1 - c0.6,1.3,1.6,2.5,2.8,3.3c0.5,0.4,1,0.6,1.6,0.8c0.3,0.1,0.6,0.2,0.9,0.3c0.5,0.2,1.1,0.2,1.6,0.3c0.1,0,0.2,0,0.4,0 - c0.2,0,0.4,0,0.6,0l1,0.6h-0.7h-0.9h-0.4C20.8,58.4,19.8,58.2,18.8,57.8L18.8,57.8z"/> -<path class="st3" d="M41.6,56.5c0.2,0,0.5-0.1,0.7-0.1c-0.8,0.7-1.6,1.3-2.5,1.8c-1.4,0.8-2.8,1.5-4.4,1.8h-0.1l-0.6,0.1 - c-0.5,0.1-1,0.2-1.5,0.2c-0.2-0.2-0.4-0.4-0.5-0.6c0.5,0,0.9-0.1,1.4-0.2c0.4,0,0.8-0.1,1.1-0.2c0.2,0,0.3,0,0.5-0.1h0.1 - C37.9,58.8,39.8,57.8,41.6,56.5z"/> -<path class="st3" d="M53.7,37.4c0.2-0.2,0.3-0.3,0.5-0.4c0.7,2.1,0.6,4.4-0.4,6.4c-0.3,0.7-0.7,1.3-1.1,1.9c0-0.1,0-0.1-0.1-0.2 - l-0.3-0.4l0.1-0.1C53.9,42.5,54.4,39.8,53.7,37.4z"/> -<path class="st8" d="M12.8,51.5v0.8c-1.2-0.5-2.1-1.5-2.6-2.7c-0.2-0.7-0.3-1.5-0.2-2.3c0-0.4,0.2-0.7,0.2-1.1l0.3-0.9l0.5-1.1 - l0.4,0.1l-0.2,0.4c-0.2,0.4-0.3,0.9-0.4,1.4c-0.1,0.4-0.2,0.7-0.2,1.1c-0.1,0.6-0.1,1.3,0.1,1.9C10.9,50.1,11.7,51.1,12.8,51.5z"/> -<path class="st9" d="M38.1,17.5l-0.4-0.2c0.5-0.6,1.2-1,1.9-1.3c0.6-0.3,1.4,0,1.7,0.7c0.2,0.5,0.4,1,0.5,1.5l0.1,0.7v0.4 - c0,0-0.1,0-0.1,0c0-0.2-0.2-0.2-0.4-0.3c-0.2,0-0.5,0-0.7,0c0-0.1,0-0.2,0-0.3c0-0.2,0-0.4-0.1-0.6c0-0.3-0.1-0.6-0.3-0.9 - c-0.1-0.3-0.5-0.4-0.8-0.3c-0.1,0-0.3,0.1-0.4,0.1C38.7,17.1,38.4,17.3,38.1,17.5z"/> -<path class="st9" d="M21.8,58.5h0.4c0.1,0.4,0.2,0.8,0.5,1.1c0.2,0.2,0.5,0.3,0.8,0.3c0.1,0,0.3-0.1,0.4-0.2 - c0.3-0.2,0.6-0.4,0.9-0.7l1.1,0.5c-0.5,0.5-1.1,1-1.8,1.3c-0.6,0.3-1.4,0.1-1.8-0.6c0,0,0,0,0,0C22,59.6,21.9,59,21.8,58.5z"/> -<path class="st8" d="M52.3,29.5l-0.5-1.1l-0.2-0.3c0,0,0,0,0-0.1c0-0.8-0.2-1.5-0.6-2.2c-0.5-0.6-1.1-1.1-1.7-1.4v-0.6 - c1,0.3,1.8,1,2.4,1.8c0.4,0.7,0.7,1.4,0.7,2.2C52.4,28.4,52.4,28.9,52.3,29.5C52.3,29.4,52.3,29.4,52.3,29.5z"/> -<path class="st6" d="M10.6,45.3l-0.3,0.9c-0.3-0.8-0.6-1.6-0.7-2.5l0.7,0.2C10.3,44.4,10.4,44.9,10.6,45.3z"/> -<path class="st7" d="M41.8,18.8l-0.1-0.7c0.8,0.1,1.5,0.4,2.3,0.7l0.2,0.1c-0.5,0-1,0-1.5,0.1C42.4,18.9,42.1,18.9,41.8,18.8z"/> -<path class="st10" d="M52.3,44.6l0.3,0.4c0,0.1,0.1,0.1,0.1,0.2c-0.2,0.3-0.5,0.6-0.8,0.9l-0.2-0.3c0-0.2,0-0.4,0-0.6 - C51.9,45.1,52.1,44.9,52.3,44.6z"/> -<path class="st3" d="M29.5,51.7c-0.1-0.4-0.2-0.7-0.3-1.1l1.1,0.1h0.2l1.3,0.1h0.2h0.7l2.1,0.2c0,0.3,0,0.7,0.1,1h-0.2 - c-1.2,0-2.4,0-3.5-0.2l-1.5-0.1C29.7,51.7,29.6,51.7,29.5,51.7z"/> -<path class="st7" d="M29.9,57c-0.8,0.4-1.6,0.6-2.4,0.9c-0.1,0-0.2,0.1-0.3,0.1h-0.1l-1,0.3c-0.2,0-0.4,0.1-0.6,0.2 - c-0.4-0.2-0.8-0.4-1.1-0.6c0.6-0.1,1.3-0.2,1.9-0.4l0,0l0,0h0.1c0.5-0.1,0.9-0.3,1.3-0.4c0.3-0.1,0.5-0.2,0.7-0.5 - c0.3,0,0.6,0,0.9-0.2c0.1,0,0.2-0.1,0.2-0.1c0.1,0.2,0.2,0.4,0.3,0.6C29.9,56.8,29.9,56.9,29.9,57z"/> -<path class="st9" d="M26.9,56.4c0.5-0.7,1-1.5,1.4-2.2l0.3-0.6l0.5,1.4c0,0.1,0,0.2,0.1,0.3l-0.8,1.2c-0.1,0.3-0.4,0.4-0.7,0.5 - c-0.4,0.1-0.9,0.3-1.3,0.4h-0.1c0-0.1,0-0.1,0.1-0.1l0.4-0.5L26.9,56.4z"/> -<path class="st11" d="M27.1,21.2l-0.8,0.2c0-0.4,0.1-0.8,0.1-1.2v-0.3c0.1,0,0.2,0,0.3-0.1l1.4-0.4h0.2l0.1,0.2 - c0.2,0.3,0.3,0.6,0.4,1l-0.3,0.1C28.1,20.9,27.6,21,27.1,21.2z"/> -<path class="st6" d="M35.5,55.7c-0.7,0.2-1.4,0.4-2.2,0.5c-0.7,0.2-1.5,0.3-2.2,0.3c-0.1-0.3-0.3-0.7-0.4-1l0.5-0.3l1.1-0.6 - c0.1,0.3,0.2,0.6,0.2,0.9c-0.3,0.2-0.7,0.4-1.1,0.7c1.2-0.1,2.5-0.4,3.7-0.7C35.2,55.5,35.4,55.6,35.5,55.7z"/> -<path class="st12" d="M26.3,28.8l1.1-1l0.1-0.1c0.3,0.2,0.6,0.4,0.8,0.8l-0.6,0.6l0,0l0,0c-0.2,0.2-0.5,0.4-0.7,0.7l0,0c0,0,0,0,0,0 - l0,0l0,0c-0.1,0.1-0.1,0.1-0.2,0.2l-0.3,0.2c-0.1-0.1,0-0.2,0-0.3C26.3,29.7,26.3,29.3,26.3,28.8z"/> -<path class="st5" d="M28.7,53.4c-0.6,0.4-1.3,0.9-2,1.3c0,0-0.1,0.1,0,0.1c0,0.2-0.1,0.4-0.2,0.5c-0.2,0.1-0.4,0.1-0.5,0 - c0,0-0.1-0.1-0.1,0l-1.6,0.8c-0.2,0.1-0.4,0.2-0.5,0.3c-0.3,0.1-0.6,0.3-0.9,0.4l-0.3-0.2c0.2-0.1,0.5-0.2,0.7-0.3 - c0.2-0.1,0.4-0.1,0.6-0.2c0.3-0.1,0.5-0.2,0.8-0.3c0.4-0.2,0.8-0.4,1.1-0.6c0.1,0,0.1-0.1,0.1-0.2c0-0.2,0.1-0.4,0.2-0.5 - c0.2-0.1,0.4-0.1,0.5,0c0,0,0.1,0,0.2,0c0.7-0.4,1.3-0.8,2-1.3C28.6,53.3,28.7,53.3,28.7,53.4z"/> -<path class="st11" d="M25,21.9c-0.3,0.1-0.7,0.3-1,0.4l-0.2,0.1c0,0,0-0.1,0-0.1c-0.2-0.4-0.3-0.8-0.3-1.2l1-0.4l0.6-0.2l-0.1,1.4 - C25.1,21.7,25,21.8,25,21.9z"/> -<path class="st12" d="M30.3,53.6l-0.1,0.2c-0.2-0.5-0.3-0.9-0.4-1.4c0-0.1-0.1-0.2-0.1-0.3l0.2-0.3l1.5,0.1l-0.8,1.4 - c0,0,0,0.1,0,0.1S30.3,53.5,30.3,53.6z"/> -<path class="st7" d="M28.9,49.1l1.1-0.5c0.1,0.1,0.2,0.2,0.2,0.4c0.1,0.3,0.2,0.6,0.1,0.9c-0.4,0.2-0.8,0.3-1.1,0.5l-0.3-1.2 - C28.9,49.2,28.9,49.1,28.9,49.1z"/> -<path class="st3" d="M26.3,23.8h0.1h0.5h1.8c0.1,0,0.1,0,0.1-0.1c0.1-0.2,0.4-0.3,0.6-0.2c0.1,0,0.2,0.1,0.2,0.2 - c0,0.1,0.1,0.1,0.2,0.1c0.7,0,1.4,0.1,2.1,0.2c-0.1,0.1-0.2,0.1-0.3,0.2c-0.5-0.1-1-0.1-1.5-0.1h-0.2c-0.1,0-0.3,0-0.3,0.1 - c-0.1,0.2-0.4,0.3-0.6,0.1c-0.1,0-0.1-0.1-0.2-0.2c0-0.1-0.1-0.1-0.2-0.1c-0.7,0-1.3,0-2,0h-0.1C26.3,24.1,26.2,24,26.3,23.8z"/> -<path class="st13" d="M28.7,44.1l-0.8,0.1c-0.1-0.5-0.2-0.9-0.3-1.4l1-0.1c0.1,0.2,0.1,0.4,0.1,0.6C28.9,43.6,28.8,43.9,28.7,44.1z" - /> -<path class="st3" d="M19.4,24.8l1.2-0.3c1.4-0.3,2.8-0.5,4.3-0.6v0.2c-1.7,0.1-3.4,0.4-5,0.8l-1,0.3C19.1,25,19.2,24.9,19.4,24.8z" - /> -<path class="st13" d="M26.5,44.4l-0.9,0.1c-0.2-0.3-0.3-0.7-0.2-1V43l0.9,0c0.1,0.3,0.1,0.7,0.2,1C26.5,44.1,26.5,44.3,26.5,44.4z" - /> -<path class="st13" d="M25.2,20.4l-0.6,0.2l-0.6-0.1c0.1-0.4,0.2-0.7,0.4-1.1c0.3,0,0.7,0.1,1,0.1L25.2,20.4z"/> -<path class="st14" d="M22.4,34.7l1.2-0.2c0.1,0,0.1-0.1,0.1-0.1c0-0.2,0.2-0.4,0.4-0.4c0.2,0,0.4,0,0.5,0.2c0,0.1,0.1,0.1,0.2,0 - c0.1,0,0.2,0,0.3,0v0.2H25c-0.1,0-0.3,0.1-0.3,0.2c-0.1,0.3-0.4,0.4-0.6,0.3c-0.1,0-0.2-0.1-0.2-0.2c-0.1-0.1-0.2-0.1-0.3-0.1 - c-0.4,0.1-0.8,0.2-1.1,0.3h-0.2L22.4,34.7z"/> -<path class="st12" d="M25,31.8L24.7,32c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.2-0.2-0.3-0.4-0.5l0.4-0.5l0.5-0.6c0.1,0.3,0,0.6,0.1,0.9 - S25,31.5,25,31.8z"/> -<path class="st8" d="M24.9,30.2l-0.5,0.6l-0.5-0.2c0-0.4,0.2-0.7,0.4-1c0.1-0.1,0.1-0.2,0.2-0.3l0.4,0.1c0.1,0,0.1,0,0.1-0.1 - s0-0.2,0-0.3c0,0,0,0.1,0,0.1C24.9,29.5,24.9,29.9,24.9,30.2z"/> -<path class="st7" d="M26.9,49.9l0.7-0.3c0.1,0.4,0.2,0.8,0.3,1.3c-0.1,0.1-0.3,0.1-0.4,0.1c0-0.2-0.2-0.2-0.3-0.3 - C27.1,50.4,27,50.2,26.9,49.9z"/> -<path class="st7" d="M26.3,30.4l0.3-0.2l0.3,0.1c0,0.2,0,0.4,0,0.5c-0.1,0.3-0.2,0.6-0.5,0.8l0,0C26.3,31.2,26.3,30.8,26.3,30.4z"/> -<path class="st2" d="M26.7,51.3c0.5,0.4,1.1,0.7,1.6,1l0.1,0.4c-0.7-0.4-1.3-0.8-2-1.2h0C26.6,51.4,26.6,51.3,26.7,51.3z"/> -<path class="st3" d="M28.1,51.4L27,51.2c0.1-0.1,0.3-0.1,0.5-0.2c0.2,0,0.3-0.1,0.4-0.1C28,51.1,28.1,51.2,28.1,51.4z"/> -<path class="st15" d="M28.9,15.8L27.6,16c0.1-0.1,0.2-0.2,0.3-0.3C28.2,15.4,28.6,15.5,28.9,15.8z"/> -<path class="st13" d="M26.9,19.9c-0.1,0.1-0.2,0.1-0.3,0.1v-0.2L26.9,19.9z"/> -<path class="st8" d="M24.9,29L24.9,29L24.9,29z"/> -<path class="st7" d="M32.3,54.7L32.3,54.7c0.2-0.1,0.3-0.2,0.4-0.3l0.2-0.1c0.1,0,0.1-0.1,0.1-0.2c0,0,0,0,0,0c0-0.2,0-0.4,0-0.5 - c0.2-0.7,0.8-1.1,1.5-0.9c0.1,0,0.2,0.1,0.3,0.1c0,0,0.1,0.1,0.2,0c0.3-0.2,0.6-0.5,0.8-0.7c0.5-0.3,0.9-0.7,1.3-1 - c0.6-0.5,1.1-1.1,1.7-1.6s0.9-0.9,1.3-1.4c0.1,0,0.1-0.1,0.1-0.2c0.1,0,0.1-0.1,0.2-0.2c1-1.2,1.9-2.5,2.8-3.9 - c0.4-0.7,0.8-1.3,1.2-2c0.1-0.1,0.1-0.2-0.1-0.2c-0.1-0.1-0.2-0.1-0.3-0.2l2-0.6c0,0.1-0.1,0.2-0.1,0.3c-0.2,0.4-0.4,0.8-0.7,1.2 - c-0.4,0.7-0.8,1.4-1.3,2.1c-0.9,1.3-1.8,2.6-2.8,3.8c-0.1,0.1-0.1,0.1-0.2,0.2c-0.4,0.4-0.7,0.8-1.1,1.2s-0.9,0.9-1.3,1.3l-1.2,1.1 - l-0.8,0.7c0,0-0.1,0.1-0.1,0.2c0,0.3,0,0.7-0.1,1s-0.1,0.9-0.1,1.4c-0.1,0.1-0.1,0.1-0.2,0.1c0.1-0.8,0.2-1.5,0.2-2.3l-0.8,0.6 - c-0.1,0-0.1,0.1-0.1,0.2c0,0.4-0.1,0.7-0.4,1c-0.4,0.4-1,0.5-1.4,0.3c-0.1,0-0.2,0.1-0.3,0.1l-0.2,0.1c-0.3,0.2-0.5,0.3-0.8,0.5 - C32.5,55.3,32.4,55,32.3,54.7z"/> -<path class="st8" d="M31,48.1l0.8-0.4c0.1,0,0.1-0.1,0.2-0.1c0.2,0,0.3-0.1,0.4-0.2c0.5-0.3,1.1-0.6,1.6-0.9s0.8-0.4,1.1-0.7 - c0.1,0,0.1-0.1,0.2-0.1l0.3-0.2c0.1,0,0.1-0.1,0.1-0.2c0-0.2,0-0.4,0-0.5c0.1-0.4,0.3-0.9,0.6-1.2l0.2-0.1c0.6-0.4,1.4-0.4,2.1,0 - c0,0,0.1,0,0.2,0l1.3-0.9l0,0l0,0l0,0l0,0l0,0c0.2-0.1,0.4-0.3,0.6-0.5l0,0l0,0l0.8-0.2c0,0.1,0,0.1,0.1,0.2 - c0.2,0.2,0.4,0.4,0.6,0.5L42,42.8c-0.9,0.7-1.7,1.3-2.7,1.9c-0.1,0.1-0.2,0.2-0.1,0.3c0,0.2,0,0.4,0,0.6c-0.1,0.6-0.5,1-1,1.3 - c-0.1,0-0.2,0.1-0.3,0.1c-0.4,0.1-0.9,0-1.3-0.2c0,0-0.1,0-0.1-0.1s-0.2-0.1-0.3,0l0,0l0,0c0,0-0.1,0-0.1,0l0,0c0,0-0.1,0-0.1,0 - c-0.7,0.4-1.5,0.8-2.2,1.3c-0.3,0.1-0.6,0.3-0.9,0.5c-0.1,0-0.1,0-0.2,0c-0.5,0.2-0.9,0.5-1.4,0.7c0-0.2-0.1-0.5-0.2-0.7 - C31.2,48.5,31.1,48.3,31,48.1z"/> -<path class="st4" d="M51.4,29.2c0.3,0.6,0.6,1.3,0.8,2c0.2,0.6,0.3,1.1,0.4,1.7c0,0,0,0.1,0,0.2c-0.3-0.1-0.5-0.2-0.8-0.2l-0.5-0.5 - L51,33c-0.3,0.7-0.7,1.3-1.1,1.9l-0.6,0.9c-0.1,0-0.1,0.1-0.1,0.2c-0.2,0.2-0.3,0.4-0.5,0.6c-0.2,0.2-0.3,0.3-0.4,0.5 - c-0.2,0.2-0.4,0.4-0.5,0.6c-0.1,0.1-0.3,0.3-0.4,0.4l0,0l0,0c-0.4,0.3-0.8,0.8-1.1,1.1c-0.2,0.1-0.3,0.1-0.5,0.2 - c-0.1-0.2-0.3-0.5-0.4-0.6c-0.1-0.1-0.1-0.1-0.2-0.2l0.9-0.9c0.3-0.3,0.6-0.6,0.9-1c0.1,0,0.1-0.1,0.2-0.2l0.3-0.3 - c0.2-0.2,0.4-0.5,0.6-0.8c0.2-0.2,0.5-0.5,0.6-0.8c0.1-0.1,0.2-0.3,0.3-0.4c0,0,0.1-0.1,0.1-0.1c0.3-0.4,0.5-0.8,0.8-1.2 - c0.1-0.1,0.1-0.1,0.1-0.2c0.1-0.2,0.2-0.4,0.3-0.6c0.1-0.1,0.2-0.3,0.3-0.5C50.9,30.8,51.2,30,51.4,29.2z"/> -<path class="st6" d="M51.9,42.8l0.2-0.3v-0.1c0.2-0.5,0.4-1,0.5-1.5s0.3-1.2,0.5-1.7l0.1-0.5v-0.2c0-0.1,0-0.3,0-0.3 - c0-0.2,0-0.4,0.1-0.6L52.5,38c0,0.6-0.1,1.2-0.2,1.8c-0.2,0.8-0.5,1.7-0.9,2.5c0,0.1,0,0.1-0.1,0.1c0.1,0.4,0.2,0.8,0.2,1.2 - C51.6,43.4,51.8,43.1,51.9,42.8z"/> -<path class="st3" d="M52.8,35.4c-0.3-0.6-0.7-1.2-1.1-1.7c-0.1-0.2-0.3-0.4-0.4-0.5C51.3,33.1,51.1,33,51,33l0.3-0.6l0.5,0.5 - c0.1,0.1,0.2,0.3,0.3,0.4l0,0l0,0l0.6,0.8l0.7,1.1l0.3,0.7c-0.1,0.2-0.3,0.3-0.5,0.4C53.2,36,53,35.7,52.8,35.4z"/> -<path class="st13" d="M49.4,37.8l0.1,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.3,0.1-0.5,0.2c-0.2-0.3-0.3-0.6-0.5-0.9 - c0.1-0.2,0.3-0.4,0.5-0.6c0.1-0.2,0.3-0.3,0.4-0.5l0.6,1.1C49.3,37.7,49.4,37.8,49.4,37.8z"/> -<path class="st12" d="M35.5,43.2c-0.2,0.5-0.4,1-0.7,1.6c-0.2,0-0.5-0.1-0.7-0.2c-0.2-0.1-0.4-0.2-0.5-0.3l0.3-0.8l0.9-0.2 - C35,43.2,35.2,43.2,35.5,43.2z"/> -<path class="st12" d="M36.3,41.2l-0.2,0.4l-0.6,0.1l-1,0.2l0.5-1.3c0.3,0,0.6,0.1,0.8,0.2C36,41,36.1,41.1,36.3,41.2z"/> -<path class="st1" d="M45.1,38.5c0,0.1,0.1,0.2,0.2,0.2c0.2,0.2,0.3,0.4,0.5,0.7c-0.7,0.2-1.5,0.4-2.3,0.6h-0.1 - c0-0.1,0.1-0.1,0.1-0.1c0.2-0.1,0.3-0.3,0.4-0.4c0.1,0,0.1-0.1,0.2-0.1L45.1,38.5z"/> -<path class="st1" d="M43.9,41.3c-0.5,0.5-1,0.9-1.6,1.3c-0.2-0.2-0.4-0.3-0.6-0.5c0,0-0.1-0.1-0.1-0.2l1.5-0.4L43.9,41.3z"/> -<path class="st7" d="M43.9,39.5c-0.1,0.1-0.3,0.3-0.4,0.4c-0.1,0-0.1,0.1-0.1,0.1c-0.3,0.1-0.5,0.2-0.8,0.2l0,0 - c0.1-0.3,0.2-0.5,0.3-0.7c0.1-0.2,0.3-0.3,0.4-0.4C43.5,39.2,43.7,39.3,43.9,39.5z"/> -<path class="st13" d="M51.6,44.8v0.5c0,0.2,0,0.4,0,0.6l-1.1-1.2C50.9,44.7,51.3,44.7,51.6,44.8z"/> -<path class="st3" d="M49.4,41c0,0,0,0.1,0,0.1c-0.1,0.8-0.2,1.5-0.3,2.3c-0.1,0-0.1-0.1-0.1-0.1c0.2-0.9,0.2-1.7,0.3-2.6L49.4,41z" - /> -<path class="st6" d="M47.4,38.1c0,0.1-0.1,0.3-0.1,0.4c-0.1,0.2-0.1,0.3-0.2,0.5c-0.3,0.1-0.5,0.2-0.8,0.2 - C46.6,38.8,47,38.4,47.4,38.1z"/> -<path class="st6" d="M52.8,35.4c0.2,0.3,0.3,0.6,0.4,0.9c-0.1,0.1-0.3,0.2-0.5,0.3L52.8,35.4z"/> -<path class="st0" d="M36.5,43c0.1,0.2,0,0.4,0.1,0.6l-0.2,0.1c0-0.2,0-0.5,0-0.7L36.5,43z"/> -<path class="st14" d="M41.8,40.4c0.1-0.2,0.2-0.3,0.3-0.5c0,0,0.1,0,0.1,0.1c-0.1,0.1-0.2,0.2-0.2,0.3C42,40.4,41.9,40.4,41.8,40.4z - "/> -<path class="st14" d="M40.1,42.6c0-0.2,0.2-0.2,0.2-0.4l0,0l0,0c0.1,0,0.2-0.1,0.4-0.1C40.5,42.3,40.3,42.4,40.1,42.6z"/> -<path class="st15" d="M42.1,40.3c0-0.1,0.1-0.2,0.2-0.3l0.3,0.2l0,0C42.4,40.2,42.2,40.3,42.1,40.3z"/> -<path class="st6" d="M50.3,44.4l0.1-0.2l0.1,0.4C50.4,44.6,50.3,44.5,50.3,44.4z"/> -<path class="st14" d="M40.8,42.1L40.8,42.1C40.8,42.1,40.8,42.1,40.8,42.1z"/> -<path class="st15" d="M40.4,42.2L40.4,42.2C40.4,42.2,40.4,42.2,40.4,42.2z"/> -<path class="st5" d="M22.4,34.7l-0.2,0.3c-0.5,0.5-0.9,1-1.3,1.6c-0.3,0.4-0.6,0.7-0.8,1.1c-0.1,0-0.1,0.1-0.1,0.2l-0.1,0.1 - c-0.1,0.1,0,0.1,0,0.2c0.6,0.8,0.5,2-0.3,2.6c-0.3,0.2-0.6,0.3-0.9,0.4c-0.2,0-0.5,0-0.7,0c-0.1,0-0.1,0-0.2,0 - c-0.3,0.4-0.5,0.9-0.8,1.3c-0.1,0.1-0.1,0.2-0.2,0.3c-0.1,0.2-0.3,0.4-0.4,0.6c-0.4,0-0.8,0-1.2,0l0.8-1.4c0-0.1,0.1-0.1,0.1-0.2 - c0.1-0.1,0.1-0.2,0.2-0.3c0,0,0,0,0.1-0.1c0.1-0.3,0.3-0.5,0.4-0.7c0.1-0.1,0.1-0.2,0-0.3c-0.5-0.9-0.3-2,0.6-2.6 - c0.4-0.2,0.8-0.3,1.2-0.3c0.2,0,0.3,0,0.4-0.2v-0.1l0.1-0.2l0.8-1.1c0.1-0.1,0.2-0.3,0.3-0.4l0,0l0,0c0.1-0.1,0.2-0.2,0.2-0.3 - l0.2-0.2l1-1.2l0.9-1l0,0c0,0,0,0,0,0l0,0l0,0c0.2-0.2,0.5-0.5,0.7-0.8l0,0h0c0.1,0.2,0.3,0.4,0.4,0.5c0.1,0.1,0.2,0.3,0.4,0.3 - l-1.5,1.8L22.4,34.7z"/> -<path class="st6" d="M9.2,40.3l0.1-1.7l0.1-0.7c0.2-1.7,0.7-3.4,1.3-4.9c0.2-0.6,0.5-1.1,0.8-1.6l0.5-0.8l0.1-0.2 - c0.4-0.6,0.8-1.1,1.2-1.7c0,0,0.1,0,0.1,0.1c0.1,0.2,0.2,0.3,0.3,0.5c0,0.1,0.1,0.1,0.2,0.1l-0.3,0.9l-0.1,0.2 - c-0.4,0.5-0.8,1.1-1.1,1.7c-0.1,0.1-0.1,0.2-0.2,0.3c-0.2,0.2-0.3,0.5-0.4,0.7c-0.2,0.4-0.4,0.7-0.6,1.1c-0.7,1.5-1.1,3-1.3,4.6 - l-0.1,0.5c0,0.2,0,0.5-0.1,0.7c0,0.1,0,0.2,0,0.4c0,0.4,0,0.8,0,1.2c0,0.3,0.1,0.7,0.1,1c-0.2-0.1-0.4-0.1-0.7-0.2 - C9.3,41.7,9.2,41,9.2,40.3z"/> -<path class="st3" d="M17,46.6c0.3,0.1,0.5,0.2,0.7,0.4c1.6,0.8,3.3,1.5,5,2.1c0.1,0,0.1,0,0.2,0c0,0,0.1,0.1,0.2,0.1 - c0.1,0,0.2,0.1,0.3,0.1c0.2,0.1,0.3,0.1,0.5,0.1l0,0l0,0c0.5,0.2,1,0.3,1.6,0.4l0.9,0.2l-0.5,0.2h-0.1l-1.2,0.4l-1.7-0.5 - c-0.1,0-0.1,0-0.1,0.1l-0.2,1h-0.2c0.1-0.4,0.1-0.7,0.2-1.1c0-0.1,0-0.1-0.1-0.2c-0.5-0.1-0.9-0.3-1.3-0.5c-0.9-0.3-1.8-0.7-2.7-1.1 - c-0.7-0.3-1.4-0.7-2.1-1.1c0-0.1,0-0.1,0.1-0.1C16.7,47,16.9,46.8,17,46.6z"/> -<path class="st3" d="M9.9,41.6c0-0.4,0-0.8,0-1.2c0-0.1,0-0.2,0-0.4c0.6,1,1.3,1.9,2.1,2.7l0.2,0.2l0.1,0.1c-0.5,0-1-0.1-1.5-0.2 - L9.9,41.6z"/> -<path class="st10" d="M13.6,45.5c-0.4-0.3-0.8-0.7-1.2-1l-0.1-0.2l1,0.1l1.3,0.1c0.1,0,0.2,0,0.3,0l0.2,0.6l-0.4,0.1 - c-0.2,0-0.3,0.1-0.5,0c-0.1,0-0.1,0-0.1,0.1s0.1,0.2,0,0.3l-0.2-0.1C13.7,45.6,13.6,45.6,13.6,45.5z"/> -<path class="st10" d="M14.3,42.6l0.1,0.6c-0.3,0-0.7,0-1,0h-0.2l-0.2-1c0,0,0.1,0,0.1,0c0.3-0.2,0.6-0.3,0.9-0.3v0.2L14.3,42.6z"/> -<path class="st12" d="M15,45.3l-0.2-0.6c0.3,0,0.7,0,1,0.1l-0.3,0.8c0,0-0.1,0.1,0,0.2c-0.1,0.1-0.1,0.2-0.2,0.4L15,45.3z"/> -<path class="st5" d="M23,48.6c0.1-0.5,0.3-1,0.4-1.6l0.2,0.1l-0.4,1.6C23.1,48.7,23,48.7,23,48.6z"/> -<path class="st14" d="M23.6,47.1l-0.2-0.1c0-0.3,0.2-0.7,0.3-1c0-0.1,0-0.1,0-0.2l0.2-0.1c-0.1,0.3-0.1,0.6-0.2,0.8 - C23.6,46.8,23.6,47,23.6,47.1z"/> -<path class="st10" d="M16.4,47.4c-0.3-0.1-0.5-0.3-0.8-0.5c-0.1-0.3-0.3-0.6-0.3-0.9c0.1-0.1,0.1-0.3,0.2-0.4c0.5,0.3,1,0.6,1.5,0.9 - l0.1,0.1C16.9,46.9,16.7,47.1,16.4,47.4C16.5,47.3,16.4,47.3,16.4,47.4z"/> -<path class="st9" d="M14.6,47.5c-0.1,0.3-0.2,0.5-0.3,0.8c-0.3-0.1-0.7-0.3-0.9-0.5l0,0l0.3-0.9l0.4-0.9 - C14.3,46.5,14.4,47,14.6,47.5z"/> -<path class="st6" d="M19.4,55c-0.2,0-0.4-0.1-0.6-0.2c-1-0.4-1.9-1-2.8-1.5l0,0c0.2,0,0.3,0,0.5,0c0.2,0,0.4,0,0.6,0 - c0,0,0,0.1,0,0.1c0.5,0.3,1.1,0.6,1.6,0.9c0.1,0,0.2,0.2,0.2,0.2L19.4,55z"/> -<path class="st7" d="M17,53.3c-0.2,0-0.4,0-0.6,0c0,0,0-0.1,0-0.1c-0.2-0.3-0.2-0.6-0.2-0.9h1l0.8,1.1C17.7,53.4,17.3,53.3,17,53.3z - "/> -<path class="st1" d="M20,53.1l-0.9,0.1l-0.1-0.1c0.2-0.3,0.3-0.8,0.1-1.2c0.3-0.1,0.6-0.1,0.8-0.1C20.2,52.3,20.1,52.7,20,53.1z"/> -<path class="st6" d="M21.1,55.3l0.8,0.2c0.1,0,0.2,0.1,0.3,0.1c0.5,0.2,1,0.3,1.6,0.4h0.1c-0.2,0.1-0.4,0.2-0.6,0.2L22,56 - c-0.1-0.1-0.2-0.1-0.3-0.1C21.5,55.7,21.3,55.5,21.1,55.3z"/> -<path class="st5" d="M19.3,57.2c0.7-0.1,1.4-0.2,2.1-0.4c0.1,0.1,0.2,0.1,0.3,0.3l-0.1,0.1c-0.5,0.2-0.9,0.3-1.4,0.4 - C19.9,57.5,19.6,57.4,19.3,57.2z"/> -<path class="st9" d="M25.5,58.4c0.2-0.1,0.4-0.1,0.6-0.2l1-0.3h0.2c-0.2,0.3-0.5,0.6-0.8,0.9C26.1,58.7,25.8,58.5,25.5,58.4z"/> -<path class="st7" d="M19.3,52c0.1,0.4,0,0.8-0.2,1.1c-0.3-0.3-0.5-0.7-0.8-1L19.3,52z"/> -<path class="st9" d="M21.7,57.8v-0.7l0.3,0.2c0,0.2,0,0.3,0,0.5C22,57.9,21.8,57.9,21.7,57.8z"/> -<path class="st9" d="M22,56v0.2l-0.3-0.2C21.8,55.9,21.9,55.9,22,56z"/> -<path class="st10" d="M14.1,45.9L14.1,45.9L14.1,45.9z"/> -<path class="st6" d="M19.4,55.1L19.4,55.1z"/> -<path class="st7" d="M20.4,30.3l-1.1,1.5c-0.1,0.1-0.1,0.2,0,0.3c0.2,0.3,0.1,0.6-0.2,0.8C19.1,33,19,33,18.9,33 - c-0.2,0-0.3,0.1-0.4,0.2c-0.4,0.7-0.9,1.5-1.3,2.2c0,0.1,0,0.1,0,0.2c-0.1,0-0.1,0.1-0.1,0.2c-0.1,0.1-0.2,0.2-0.2,0.4 - c-0.1,0.1-0.1,0.2-0.2,0.3c-0.2,0.3-0.3,0.7-0.5,1c-0.1,0.1-0.1,0.2-0.1,0.3c-0.1,0.1-0.2,0.3-0.4,0.4c0,0,0-0.1,0-0.1l0.7-1.5 - c0.1-0.1,0.1-0.2,0.1-0.3l0.3-0.6c0.1-0.1,0.1-0.1,0.1-0.2c0.1-0.1,0.2-0.3,0.3-0.5c0.4-0.7,0.7-1.3,1.1-1.9c0.1-0.1,0.1-0.2,0-0.2 - c-0.2-0.2-0.2-0.6,0-0.9c0.2-0.2,0.4-0.2,0.6-0.1c0.1,0,0.1,0,0.2-0.1l1-1.4C20.3,30.3,20.4,30.3,20.4,30.3z"/> -<path class="st11" d="M18.1,25.8L18.1,25.8L18.1,25.8l-1.1,1c-0.3,0-0.5-0.1-0.7-0.1c0.1-0.3,0.3-0.6,0.5-1s0.3-0.5,0.4-0.7l0,0h0.1 - c0,0.1,0,0.1,0.1,0.1l0.3,0.2C17.7,25.4,17.9,25.6,18.1,25.8z"/> -<path class="st10" d="M15.5,28c-0.2,0.4-0.3,0.8-0.4,1.2c-0.1,0-0.2,0-0.3-0.1c-0.2-0.1-0.4-0.2-0.6-0.4c0.1-0.4,0.3-0.8,0.4-1.1 - c0.3,0,0.6,0.1,1,0.2C15.6,27.8,15.6,27.9,15.5,28L15.5,28L15.5,28z"/> -<path class="st10" d="M16.6,25.7c-0.1,0.3-0.3,0.6-0.5,1L15,26.5c0.1-0.1,0.2-0.3,0.2-0.5c0.1-0.2,0.2-0.4,0.3-0.7 - c0.3,0,0.5,0.1,0.7,0.2C16.4,25.6,16.5,25.7,16.6,25.7z"/> -<path class="st11" d="M14.5,27.6c-0.1,0.4-0.3,0.7-0.4,1.1l-0.2,0.6c-0.1,0-0.1,0-0.2-0.1c-0.1-0.1-0.2-0.3-0.3-0.5 - c0,0-0.1-0.1-0.1-0.1c0.3-0.3,0.5-0.7,0.8-1l0.1-0.1L14.5,27.6z"/> -<path class="st2" d="M11.3,28.8c0-0.5,0-1,0.1-1.4c0.2,0,0.4,0,0.6,0L12,28.3L11.3,28.8z"/> -<path class="st6" d="M28.9,20.7c0-0.4-0.2-0.7-0.4-1l-0.1-0.2c0.6-0.2,1.2-0.3,1.8-0.4l0.9-0.1h0.4c0.7-0.1,1.3-0.1,2-0.1 - c0.1,0,0.2-0.1,0.2-0.1c0.3-0.7,1-1.1,1.7-1c0.5,0.1,0.9,0.3,1.2,0.7c0.1,0.2,0.2,0.3,0.2,0.5H37c1,0.1,2,0.3,3,0.5 - c0.1,0,0.3,0,0.4,0.1c-0.8,0.2-1.5,0.5-2.3,0.8c-0.4-0.1-0.8-0.1-1.3-0.2c-0.1,0-0.1,0-0.2,0.1c-0.1,0.2-0.2,0.3-0.4,0.4 - c-0.4,0.3-0.8,0.4-1.3,0.4c-0.1,0-0.2-0.1-0.3-0.1c-0.4-0.1-0.8-0.4-1-0.8c0-0.1-0.1-0.1-0.1-0.1h-0.7c-0.4,0-0.8,0.1-1.3,0.1 - c-0.7,0.1-1.5,0.2-2.2,0.4L28.9,20.7z"/> -<path class="st13" d="M35.1,23.2c0.5,0.3,1.1,0.6,1.6,1l0.4,0.2c-0.1,0.4-0.2,0.7-0.5,1.1c0,0-0.1,0.1-0.1,0.1l-0.3-0.1 - c-0.1-0.1-0.2-0.1-0.3-0.2c-0.3-0.2-0.7-0.5-1-0.7c-0.2-0.1-0.3-0.2-0.5-0.3L33.9,24C34.2,23.7,34.7,23.5,35.1,23.2z"/> -<path class="st11" d="M42,20c0.5,0.2,1,0.4,1.5,0.6l0.1,0.1c0,0,0,0.1,0,0.1c0,0.4,0,0.7-0.2,1c-0.3-0.2-0.6-0.3-1-0.4 - c-0.2-0.1-0.5-0.2-0.7-0.3c-0.4-0.2-0.8-0.3-1.3-0.4l-0.6-0.1c0.6-0.2,1.1-0.4,1.7-0.6L42,20z"/> -<path class="st7" d="M47.1,22.7c0-0.1,0-0.1,0-0.1c-0.6-1.1-1.6-2.1-2.7-2.8l-0.2-0.1c0.5,0,0.9,0,1.3,0.2c0.3,0.3,0.6,0.5,0.9,0.8 - c0.8,0.8,1.4,1.8,1.8,2.8l0.2,0.4c0,0-0.1,0-0.1,0C48,23.5,47.6,23.1,47.1,22.7C47.1,22.8,47.1,22.8,47.1,22.7L47.1,22.7z"/> -<path class="st13" d="M32.7,23.4l-1.3-0.6c0.1-0.3,0.2-0.5,0.4-0.7c0.1-0.1,0.2-0.2,0.3-0.4h0.1c0.1,0.1,0.2,0.1,0.3,0.2 - c0.4,0.2,0.8,0.4,1.2,0.6c0,0.1,0.1,0.1,0.2,0.1c0,0,0,0.1-0.1,0.1l-1,0.7L32.7,23.4z"/> -<path class="st3" d="M40.3,19.5c-0.1-0.1-0.3-0.1-0.4-0.1s-0.1-0.1-0.1-0.1l-1-0.7c0.3,0,0.7,0,1,0l0.3,0.3c0.1,0.1,0.3,0.2,0.5,0.3 - v0.3C40.6,19.5,40.5,19.5,40.3,19.5z"/> -<path class="st14" d="M32.5,25.1l-0.5,1c-0.2,0.4-0.4,0.8-0.6,1.1l0,0l0,0c-0.1,0.1-0.2,0.1-0.3,0.1c0.3-0.6,0.6-1.1,0.9-1.7 - c0.1-0.1,0.1-0.2,0.1-0.3l0,0l0,0C32.2,25.3,32.3,25.1,32.5,25.1z"/> -<path class="st9" d="M35,21.1l-0.8,1.2c0,0-0.1,0.1-0.1,0.2l0,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0c-0.1,0-0.1,0-0.2-0.1l0.9-1.4 - C34.8,21,34.9,21,35,21.1z"/> -<path class="st8" d="M33.6,26.1l-0.4-1.6c0.1-0.1,0.1-0.1,0.2-0.1l0,0c0.1,0.4,0.2,0.8,0.3,1.2c0,0.2,0.1,0.3,0.2,0.5L33.6,26.1 - L33.6,26.1z"/> -<path class="st12" d="M40.6,19.5v-0.5c0.2,0,0.5,0,0.7,0c0.2,0,0.3,0,0.4,0.3L40.6,19.5z"/> -<path class="st3" d="M33.4,24.4L33.4,24.4c0.1-0.1,0.2-0.1,0.3-0.2l0.8,0.1c0.2,0.1,0.4,0.2,0.5,0.3h-0.2 - C34.3,24.5,33.8,24.4,33.4,24.4z"/> -<path class="st8" d="M48.4,23.5l0.3,0.1c0,0.2,0.1,0.4,0.1,0.6c-0.1-0.1-0.1-0.1-0.2-0.2L48.4,23.5z"/> -<path class="st15" d="M32,25.3L32,25.3C32,25.3,32,25.4,32,25.3z"/> -<path class="st15" d="M34,22.5L34,22.5C34,22.5,34,22.5,34,22.5z"/> -<path class="st14" d="M32.5,25L32.5,25z"/> -<path class="st2" d="M23.9,20.5c-0.6-0.1-1.1-0.1-1.7-0.1c-0.5,0-1,0-1.5,0h-0.1c0.4-0.4,0.8-0.7,1.3-1c0.7,0,1.5,0,2.2,0.1h0.2 - C24.1,19.7,24,20.1,23.9,20.5z"/> -<path class="st15" d="M17,24.9L17,24.9z"/> -<path class="st15" d="M19.1,20.6L19.1,20.6L19.1,20.6L19.1,20.6z"/> -<path class="st7" d="M48.6,34.5c-0.2,0.3-0.4,0.6-0.6,0.8l-0.5-0.7c0-0.2,0.1-0.4,0.2-0.5c0.1-0.5,0.3-1,0.3-1.5c0-0.1,0-0.1,0-0.2 - c0.1-0.4,0.2-0.7,0.2-1.1c0-0.1,0.1-0.3,0.1-0.4l0-0.5v-0.5c0-0.4,0-0.8,0-1.2c0-0.3,0-0.6,0-0.9c0-0.6,0-1.1-0.1-1.7 - c-0.1-0.4-0.2-0.9-0.3-1.3c0.4,0.3,0.8,0.7,1.1,1.1c0,0,0,0.1,0,0.1c0.2,1,0.3,2,0.3,3c0,0.5,0,1.1-0.1,1.6l-0.1,0.6l-0.2,1.3 - c0,0.1,0,0.2,0,0.2c-0.1,0.2-0.1,0.4-0.1,0.7c0,0.1-0.1,0.2-0.1,0.3L48.6,34.5z"/> -<path class="st8" d="M46.7,23.8c-0.6-0.1-1.1-0.1-1.7-0.1h-0.6c-0.3,0-0.6,0-1,0.1c-0.1,0-0.2,0-0.2,0.1c-0.1,0.3-0.5,0.5-0.8,0.3 - c-0.1,0-0.2-0.1-0.3-0.2c0-0.1-0.1-0.1-0.2-0.1L41.4,24c0-0.1,0-0.2,0.1-0.3l0.5-0.1c0.1,0,0.1,0,0.1-0.1c0.1-0.3,0.4-0.5,0.8-0.4 - c0.1,0,0.3,0.1,0.4,0.3c0,0,0,0.1,0.1,0.1c0.3,0,0.5,0,0.8-0.1c0.2,0,0.3,0,0.5,0h1.4C46.2,23.4,46.5,23.6,46.7,23.8z"/> -<path class="st2" d="M52.2,33.3c-0.1-0.1-0.2-0.3-0.3-0.4c0.3,0,0.6,0.1,0.8,0.2l0.1,0.4C52.5,33.4,52.4,33.4,52.2,33.3L52.2,33.3 - L52.2,33.3z"/> -<path class="st15" d="M47.1,22.7C47.1,22.7,47.1,22.7,47.1,22.7L47.1,22.7z"/> -<path class="st8" d="M46.1,42.6l-0.5-0.4l-0.2-0.1c0.2-0.4,0.5-0.8,0.7-1.2c0.2,0.2,0.5,0.4,0.7,0.6l0.1,0.1 - c-0.1,0.3-0.4,0.7-0.6,0.9C46.2,42.5,46.2,42.6,46.1,42.6z"/> -<path class="st6" d="M49.9,45.8c-0.5,0.7-1.1,1.4-1.7,2.1L48.2,48c-0.3,0.2-0.6,0.3-0.9,0.5l0.5-0.5l0,0l0,0l0.3-0.4c0,0,0,0,0-0.1 - l0,0c0.1,0,0.1,0,0.1-0.1c0.5-0.5,0.9-1.1,1.3-1.7c0.1-0.2,0.1-0.2,0.3,0L49.9,45.8z"/> -<path class="st3" d="M48.1,47.5l-0.3,0.4l0.4-1.2l0.1-0.3c0-0.2,0.1-0.3-0.1-0.5c-0.1-0.2-0.1-0.4,0.1-0.6c0,0,0.1-0.1,0.2-0.1 - c0.1,0,0.2-0.1,0.2-0.2s0-0.2,0.1-0.3s0.2,0.1,0.1,0.2s0,0.1,0,0.2c0,0,0,0.1,0,0.2c0.1,0.1,0.2,0.3,0.2,0.4c0,0.2-0.2,0.3-0.4,0.3 - c-0.1,0-0.1,0-0.1,0.1l-0.4,1.3l0,0l0,0C48.1,47.4,48.1,47.5,48.1,47.5z"/> -<path class="st13" d="M51.5,48.1c-0.1,0-0.3,0-0.4,0.1c-0.1,0-0.3,0-0.4,0c0-0.3,0-0.5,0-0.8c0,0,0-0.1,0-0.2s0-0.4,0-0.6 - c0.3,0.3,0.6,0.7,0.9,1.1L51.5,48.1z"/> -<path class="st10" d="M50.7,46.5c0,0.2,0,0.4,0,0.6s0,0.1,0,0.2s-0.3,0.3-0.5,0.4c-0.2-0.1-0.4-0.2-0.5-0.3 - c-0.1-0.1-0.2-0.1-0.1-0.2c0.4-0.3,0.7-0.5,1.1-0.8C50.6,46.4,50.7,46.5,50.7,46.5z"/> -<path class="st3" d="M47.1,49.9c-0.8,1.6-1.7,3.1-2.8,4.5c-0.4,0.5-0.8,0.9-1.2,1.3c-0.6,0.6-0.1,0.1-0.1,0.1l0,0l0,0 - c-0.2,0-0.4,0.1-0.6,0.1c0.4-0.4,0.8-0.7,1.1-1.1c1.2-1.3,2.3-2.8,3.1-4.4c0.1-0.2,0.3-0.5,0.4-0.8c-0.3,0.2-0.7,0.3-1,0.4 - c-0.3,0.1-0.5,0.2-0.8,0.3c-0.1,0-0.1,0-0.2,0c-0.5,0.2-1.1,0.4-1.7,0.5c-0.1,0-0.2,0.1-0.2,0.2c-0.2,0.7-0.9,1.1-1.6,0.9 - c-0.2-0.1-0.4-0.2-0.6-0.4c-0.1-0.1-0.2-0.1-0.3-0.1c-0.4,0.1-0.9,0.1-1.3,0.2c0-0.3,0-0.7,0-1l1.2-0.2c0.1,0,0.1-0.1,0.1-0.1 - c0.2-0.7,0.9-1.1,1.6-1c0.3,0.1,0.5,0.2,0.7,0.5c0,0,0.1,0.1,0.1,0c0.6-0.2,1.3-0.3,1.9-0.6c0.1,0,0.3-0.1,0.4-0.1 - c0.7-0.2,1.3-0.5,1.9-0.8c0.3-0.1,0.6-0.2,0.9-0.4c0.5-0.2,0.9-0.5,1.3-0.8c0,0.1,0.1,0.2,0.1,0.2c0.1,0.2,0.3,0.3,0.5,0.3L50,47.9 - c-0.8,0.6-1.7,1.1-2.6,1.6c-0.1,0-0.2,0.1-0.2,0.2L47.1,49.9z"/> -<path class="st6" d="M45.2,50.4c0.3-0.1,0.5-0.2,0.8-0.3c-0.5,0.5-1.1,1-1.7,1.4c-1.1,0.8-2.3,1.5-3.5,2.1c-0.1,0-0.1,0.1-0.1,0.2 - c0,0.2-0.1,0.5-0.3,0.6c-0.2,0.1-0.5,0.1-0.7-0.1c-0.1-0.1-0.2-0.1-0.2,0c-0.9,0.4-1.8,0.8-2.8,1.1c-0.1,0-0.2,0-0.2,0.1 - c-0.2,0-0.4-0.1-0.6-0.1c0.1,0,0.2-0.1,0.4-0.2c0.1,0,0.2,0,0.2-0.1h0.1c0.9-0.3,1.8-0.7,2.7-1.1c0.1,0,0.1-0.1,0.1-0.2 - c0-0.3,0.1-0.5,0.3-0.6c0.2-0.1,0.5-0.1,0.7,0.1c0.1,0.1,0.2,0.1,0.3,0c1.1-0.6,2.1-1.2,3.1-1.9C44.2,51.1,44.7,50.8,45.2,50.4z"/> -<path class="st1" d="M36.4,55.9c-0.1,1.2-0.4,2.4-0.7,3.5c-0.1,0.1-0.3,0.1-0.5,0.1c0.4-1.1,0.8-2.2,0.9-3.3l0.1-0.4 - C36.2,55.8,36.3,55.9,36.4,55.9z"/> -<path class="st4" d="M47.3,49.6c0.8,0.1,1.6,0.2,2.4,0.2c0.3,0,0.5,0,0.7,0c0,0.1-0.1,0.3-0.1,0.4c-1,0-2-0.2-3-0.4h-0.2L47.3,49.6z - "/> -<path class="st3" d="M42.3,55.9L42.3,55.9z"/> -<path class="st15" d="M43,55.8L43,55.8C43,55.8,43,55.8,43,55.8z"/> -<path class="st6" d="M12.8,50.5c-0.9-1-1.6-2.1-2.2-3.3l-0.1-0.1c0-0.4,0.1-0.7,0.2-1.1c0.5,1.3,1.2,2.4,2,3.5l0.1,0.1L12.8,50.5z" - /> -<path class="st8" d="M14.3,52.9c-0.2-0.1-0.4-0.2-0.6-0.2c0-0.3,0-0.6,0-0.8c0.1,0,0.2,0,0.3,0C14,52,14.2,52,14.3,52 - c0.2,0.1,0.5,0.1,0.7,0.1c0,0.3,0,0.6,0.1,0.9h-0.2C14.7,53,14.5,52.9,14.3,52.9z"/> -<path class="st6" d="M15,52.1c-0.2,0-0.5-0.1-0.7-0.1c-0.1-0.2-0.3-0.3-0.5-0.5c0-0.1-0.1-0.1-0.1-0.1c0-0.3,0-0.5,0.1-0.8l0.3,0.3 - c0,0,0,0.1,0,0.1c0.4,0.4,0.9,0.8,1.3,1.2C15.2,52.2,15.1,52.1,15,52.1z"/> -<path class="st7" d="M13.8,45.7c-0.1,0.4-0.1,0.8-0.1,1.2l-0.3,0.9l0,0c0-0.6,0-1.2,0.1-1.8c0-0.1,0-0.3,0-0.4 - C13.7,45.6,13.7,45.6,13.8,45.7z"/> -<path class="st7" d="M14.1,50.9l-0.3-0.3c0-0.2,0.1-0.4,0.1-0.6L14.1,50.9z"/> -<path class="st15" d="M13.7,51.4c0.1,0,0.1,0.1,0.1,0.1l0.1,0.4c-0.1,0-0.2,0-0.3,0C13.6,51.7,13.7,51.6,13.7,51.4z"/> -<path class="st2" d="M11.5,31.4L11.4,31l-0.1-0.7v-0.8c0.2-0.2,0.4-0.4,0.6-0.6c0,0.5,0,1,0,1.5v0.2L11.5,31.4z"/> -<path class="st4" d="M11.4,30.3l0.1,0.7c-0.3-0.3-0.5-0.5-0.7-0.8c0.1-0.1,0.2-0.3,0.3-0.4C11.1,30,11.2,30.1,11.4,30.3z"/> -<path class="st7" d="M36.6,18.4L36.6,18.4c0.3,0,0.5-0.1,0.7-0.1c0.2,0,0.4,0,0.6-0.1l1-0.1c0.5,0,1.1,0,1.6,0 - c0,0.2,0.1,0.4,0.1,0.6c-0.3,0-0.5,0-0.8,0c-0.3,0-0.7,0-1,0c-0.3,0-0.5,0-0.8,0.1c-0.4,0-0.8,0.1-1.2,0.2 - C36.8,18.7,36.7,18.6,36.6,18.4z"/> -<path class="st1" d="M30.1,16.3c0.4,0.6,0.7,1.2,1,1.8l0.4,0.8h-0.4c-0.1-0.3-0.3-0.6-0.4-0.9c-0.3-0.6-0.7-1.2-1.2-1.8 - C29.7,16.3,29.9,16.3,30.1,16.3z"/> -<path class="st9" d="M37.3,18.2c-0.2,0.1-0.4,0.1-0.7,0.1l0.5-0.6c0.1,0,0.3,0.1,0.4,0.2L37.3,18.2z"/> -<path class="st15" d="M37.3,18.2l0.3-0.3c0.1,0,0.2,0.1,0.3,0.2C37.7,18.2,37.5,18.2,37.3,18.2z"/> -<path class="st4" d="M41.8,39.7l-2.5-1.5c-0.5-0.3-1-0.6-1.6-0.9s-0.8-0.5-1.2-0.7L35,35.7c-1.2-0.7-2.4-1.3-3.7-1.9 - c-1.6-0.8-3.2-1.5-4.9-2.2l-0.1-0.1c0.2-0.2,0.4-0.5,0.5-0.8c0-0.2,0-0.4,0-0.5h0.1c0.8,0.3,1.5,0.7,2.2,1c1.5,0.7,2.9,1.4,4.3,2.1 - l2.1,1.1l1.4,0.7c0.4,0.3,0.8,0.5,1.2,0.7c1,0.6,2.1,1.2,3.1,1.8c0.4,0.3,0.8,0.5,1.2,0.8c0,0.1-0.2,0.2-0.2,0.3 - C42.1,39.1,41.9,39.4,41.8,39.7z"/> -<path class="st9" d="M36.6,36.6c0.4,0.2,0.8,0.4,1.2,0.7c-0.4,1.2-0.9,2.4-1.4,3.6l-0.1,0.3c-0.2-0.1-0.3-0.2-0.4-0.3 - c-0.2-0.1-0.5-0.2-0.8-0.2l1.1-2.8C36.3,37.4,36.4,37,36.6,36.6z"/> -<path class="st9" d="M33.5,44.2c0.1,0.2,0.3,0.3,0.5,0.3c0.2,0.1,0.5,0.1,0.7,0.2l-0.3,0.6c0,0-0.1,0.1-0.1,0.2 - c-0.2,0.3-0.3,0.7-0.5,1c-0.5,0.3-1.1,0.6-1.6,0.9c-0.1,0.1-0.3,0.2-0.4,0.2c0.5-1.1,1-2.2,1.5-3.3L33.5,44.2z"/> -<path class="st1" d="M31,48.1c0.1,0.2,0.2,0.4,0.2,0.5c0.1,0.2,0.1,0.5,0.2,0.7l-0.5,0.3l-0.6,0.3c0-0.3,0-0.6-0.1-0.9 - c-0.1-0.1-0.1-0.3-0.2-0.4L31,48.1z"/> -<path class="st8" d="M20,53.1c0.1-0.4,0.1-0.8,0.1-1.2l1.1-0.2l1.2-0.3h0.2c0.7-0.2,1.4-0.4,2-0.6l1.2-0.4h0.1c0,0,0.1,0.1,0.1,0.1 - c0.1,0.2,0.2,0.4,0.3,0.5c0.1,0.2,0.2,0.3,0.3,0.4h0L24.9,52c-0.8,0.2-1.6,0.5-2.4,0.7h-0.1c-0.1,0-0.2,0-0.2,0 - c-0.5,0.1-1,0.2-1.5,0.3C20.5,53,20.3,53.1,20,53.1z"/> -<path class="st9" d="M22.1,52.7c0.1,0,0.2,0,0.2,0c-0.2,1-0.3,1.9-0.3,2.9c-0.1,0-0.2,0-0.3-0.1c0.1-0.9,0.2-1.8,0.3-2.7 - C22.1,52.8,22.1,52.8,22.1,52.7z"/> -<path class="st1" d="M26.5,51.4c-0.1-0.2-0.2-0.3-0.3-0.4c-0.1-0.2-0.2-0.4-0.2-0.6c0,0,0-0.1-0.1-0.1l0.5-0.2l0.5-0.2 - c0.1,0.3,0.2,0.5,0.3,0.8c0.1,0.1,0.2,0.2,0.3,0.3c-0.1,0.1-0.3,0.1-0.5,0.2c-0.1,0-0.2,0.1-0.3,0.1C26.6,51.3,26.6,51.4,26.5,51.4z - "/> -<path class="st2" d="M23.9,49.4L23.9,49.4z"/> -<path class="st6" d="M17.1,24.9c0.5-0.4,1-0.8,1.5-1.1c1.5-1.1,3.2-2,4.9-2.7l0.1,0c0,0.4,0.1,0.8,0.3,1.2c0,0,0,0.1,0,0.1l-1.2,0.5 - c-1.1,0.5-2.2,1.2-3.2,1.8l-0.1,0.1c-0.2,0.1-0.4,0.2-0.6,0.4L18,25.8c-0.2-0.2-0.4-0.4-0.6-0.6L17.2,25C17.1,25,17.1,25,17.1,24.9z - "/> -<path class="st6" d="M18,25.8L18,25.8z"/> -<path class="st9" d="M30.9,49.6l0.5-0.3c0.5-0.2,0.9-0.5,1.4-0.7c0,0,0.1-0.1,0.2,0c-0.2,0.4-0.5,0.9-0.7,1.3 - c-0.2,0.3-0.3,0.5-0.4,0.8l0,0l0,0c0,0-0.1,0.1,0,0.1l-1.3-0.1h-0.2C30.6,50.3,30.8,50,30.9,49.6z"/> -<path class="st10" d="M36,52h-1c-0.1-0.3-0.1-0.7-0.1-1h1.4h0.2h0.2h0.5C36.8,51.4,36.4,51.7,36,52z"/> -<path class="st14" d="M31.9,50.8c0,0,0-0.1,0-0.1l0,0l0,0H32c0.4-0.3,0.8-0.7,1.2-1s1-0.9,1.5-1.4s1-0.9,1.4-1.4c0,0,0.1,0,0-0.1 - l0,0l0,0l0,0c0.1-0.1,0.2-0.1,0.3,0l-0.1,0.1l-0.8,0.8c-0.4,0.4-0.9,0.8-1.3,1.2c-0.7,0.7-1.4,1.3-2.2,1.9c0,0-0.1,0.1-0.1,0.1 - L31.9,50.8z"/> -<path class="st9" d="M26.3,57.4L26.3,57.4z"/> -<path class="st6" d="M26.7,56.7c-0.7-0.1-1.3-0.1-2-0.2l-1.1-0.2c0.2-0.1,0.4-0.2,0.5-0.3c0.4,0.1,0.8,0.2,1.2,0.2 - c0.5,0.1,1,0.1,1.5,0.1L26.7,56.7z"/> -<path class="st13" d="M28.9,20.7l0.5-0.1h0.1c0,0.4,0,0.8-0.2,1.3l-0.3-0.1c-0.6-0.2-1.2-0.4-1.8-0.6h-0.1c0.5-0.2,1-0.3,1.5-0.4 - L28.9,20.7z"/> -<path class="st7" d="M29.1,21.8l0.3,0.1l0.1,0.1c-0.9,0.5-1.7,1.1-2.5,1.8l-0.1,0.1h-0.5c0.6-0.5,1.2-0.9,1.8-1.4L29.1,21.8z"/> -<path class="st9" d="M23.3,31.9l0.6-0.6c0.2,0.1,0.2,0.3,0.4,0.5c0.1,0.1,0.3,0.3,0.4,0.3c-0.2,0.2-0.4,0.5-0.6,0.7 - c-0.2,0-0.3-0.2-0.4-0.3C23.5,32.3,23.3,32.1,23.3,31.9L23.3,31.9L23.3,31.9L23.3,31.9z"/> -<path class="st0" d="M30.7,27.9c-0.3,0.1-0.5,0.2-0.7,0.3c-0.5,0.2-0.9,0.5-1.4,0.7c-0.5,0.2-1,0.6-1.5,0.9c-0.1,0-0.1,0.1-0.2,0.1 - c0.2-0.2,0.5-0.5,0.7-0.7l0,0l0,0c0.2-0.1,0.4-0.2,0.6-0.3c0.3-0.2,0.6-0.4,1-0.5l1.7-0.9l0.1-0.1c0.1,0,0.2-0.1,0.3-0.1l0,0l0,0 - c0.2,0,0.4-0.1,0.5-0.2c0.5-0.2,1-0.5,1.6-0.7c0,0,0.1,0,0.1-0.1l0,0c0,0.1,0.1,0.1,0.1,0.1s0.2,0,0.2,0.1l0,0c-0.1,0-0.2,0-0.2,0.1 - c-0.2,0.1-0.4,0.1-0.6,0.3c-0.7,0.3-1.3,0.6-2,0.9C30.9,27.7,30.8,27.7,30.7,27.9L30.7,27.9L30.7,27.9z"/> -<path class="st0" d="M26.8,29.9C26.8,29.9,26.8,29.9,26.8,29.9C26.8,29.9,26.8,29.9,26.8,29.9z"/> -<path class="st0" d="M26.8,29.9L26.8,29.9z"/> -<path class="st15" d="M27.6,29.1L27.6,29.1z"/> -<path class="st2" d="M30.4,53.4c0.8,0.3,1.5,0.7,2.3,1h0.1c-0.1,0.1-0.2,0.2-0.3,0.2c-0.7-0.3-1.4-0.6-2.2-1 - C30.3,53.5,30.3,53.5,30.4,53.4z"/> -<path class="st10" d="M38.8,50.7h0.5c0,0.3,0,0.7,0,1c-0.6,0.1-1.1,0.1-1.7,0.2L38.8,50.7z"/> -<path class="st4" d="M44.9,49.4c-0.3-0.1-0.5-0.2-0.8-0.2c-1-0.3-1.9-0.6-2.9-0.9h-0.1c0-0.1,0.1-0.2,0.1-0.2 - c0.1,0.1,0.2,0.1,0.3,0.1c1.2,0.4,2.4,0.8,3.7,1.1l0,0C45.2,49.3,45.1,49.3,44.9,49.4z"/> -<path class="st0" d="M40.1,47.9c-0.4-0.2-0.8-0.3-1.2-0.5c-0.3-0.1-0.7-0.2-1-0.4c0.1,0,0.2-0.1,0.3-0.1c0.3,0.1,0.6,0.3,0.9,0.4 - c0.3,0.1,0.7,0.3,1,0.4c0,0,0.1,0,0.1,0.1C40.2,47.8,40.2,47.8,40.1,47.9z"/> -<path class="st4" d="M36.7,46.8c0,0.5,0.1,1.1,0,1.7h-0.2v-1.6l0.1-0.1C36.6,46.8,36.7,46.8,36.7,46.8z"/> -<path class="st15" d="M36.3,46.8C36.3,46.8,36.3,46.8,36.3,46.8z"/> -<path class="st15" d="M36.3,46.7L36.3,46.7z"/> -<path class="st14" d="M40,42.7L40,42.7z"/> -<path class="st14" d="M40,42.6L40,42.6z"/> -<path class="st14" d="M40.1,42.6L40.1,42.6z"/> -<path class="st13" d="M47,36.3c-0.2-0.4-0.4-0.7-0.7-1l-0.1-0.2c0.3-0.2,0.5-0.3,0.8-0.5c0.1,0,0.3,0,0.3-0.2l0.1,0.2l0.5,0.7 - c-0.2,0.3-0.4,0.5-0.6,0.8l-0.3,0.3L47,36.3z"/> -<path class="st3" d="M50.3,32c-0.3-0.3-0.6-0.6-1-0.9l0.1-0.6c0.4,0.3,0.8,0.6,1.2,1C50.4,31.7,50.4,31.9,50.3,32z"/> -<path class="st3" d="M49.3,37.6c0-0.6-0.1-1.1-0.1-1.7c0-0.1,0.1-0.1,0.1-0.2c0.1,0.7,0.1,1.4,0.2,2.1 - C49.4,37.8,49.3,37.7,49.3,37.6z"/> -<path class="st2" d="M49.8,32.8l-0.8-0.1c0-0.1,0-0.2,0-0.2l0.9,0.1C49.9,32.6,49.9,32.7,49.8,32.8z"/> -<path class="st6" d="M47,36.3L47,36.3c0,0.2,0,0.2-0.1,0.3L47,36.3z"/> -<path class="st6" d="M47.4,38L47.4,38C47.4,38,47.4,38,47.4,38z"/> -<path class="st8" d="M43.1,38.9l0.2,0.1c-0.1,0.2-0.3,0.3-0.4,0.4c-0.2,0.2-0.3,0.4-0.3,0.7L42.3,40c0,0-0.1-0.1-0.2-0.1l-0.3-0.2 - c0.1-0.3,0.3-0.6,0.5-0.8c0.1-0.1,0.2-0.2,0.2-0.3l0.5,0.3C43,38.8,43,38.9,43.1,38.9z"/> -<path class="st15" d="M52.2,33.3L52.2,33.3z"/> -<path class="st2" d="M15.3,39.7c0.3,0.6,0.7,1.1,1.1,1.7c0,0.1-0.1,0.2-0.2,0.3c-0.3-0.4-0.6-0.9-1-1.4l-0.1-0.1L14.9,40 - c-0.1-0.1-0.1-0.3-0.2-0.4c0.1-0.1,0.2-0.2,0.3-0.3l0.1,0.2L15.3,39.7z"/> -<path class="st0" d="M22.5,32.8c-0.2,0.1-0.3,0.2-0.5,0.3L20.8,34l0,0v-0.3c0.2-0.2,0.5-0.4,0.7-0.6c0.5-0.4,1-0.7,1.5-1.1 - c0,0,0.1-0.1,0.2-0.1c-0.2,0.2-0.4,0.5-0.6,0.7l0,0l0,0c0,0-0.1,0,0,0L22.5,32.8z"/> -<path class="st14" d="M20.3,35.4c-0.3,0-0.5,0.1-0.8,0.2l-1,0.3c0-0.1,0.1-0.1,0.2-0.2l0.3-0.2l1.5-0.4h0.1 - C20.5,35.3,20.4,35.3,20.3,35.4L20.3,35.4L20.3,35.4z"/> -<path class="st4" d="M18.1,36.2l1.1,0.7L19,37.2l-1-0.7L18,36.4C18,36.3,18,36.3,18.1,36.2z"/> -<path class="st0" d="M23.3,31.9L23.3,31.9L23.3,31.9L23.3,31.9z"/> -<path class="st15" d="M22.5,32.8C22.5,32.8,22.5,32.8,22.5,32.8C22.6,32.8,22.5,32.8,22.5,32.8z"/> -<path class="st15" d="M22.6,32.7L22.6,32.7z"/> -<path class="st15" d="M20.3,35.4L20.3,35.4C20.3,35.4,20.3,35.4,20.3,35.4z"/> -<path class="st3" d="M13.9,29.3l0.2-0.6c0.2,0.1,0.4,0.3,0.6,0.4c0.1,0,0.2,0.1,0.3,0.1c-0.4,1.1-0.6,2.3-0.8,3.5 - c0,0.2,0,0.3-0.1,0.5v0.4c0,0,0,0.1,0,0.2c0,0.5-0.1,0.9-0.1,1.4c-0.1,0.7-0.1,1.3-0.1,2v1c0,0.4,0,0.7,0,1.1c0,0.3,0,0.6,0.1,0.9 - c0,0.1,0,0.2,0,0.4c0,0.1,0,0.1,0,0.2l0.2,1.3c-0.3,0-0.7,0.1-0.9,0.3c0,0-0.1,0-0.1,0l-0.1-0.5v-0.4c-0.1-1.1-0.2-2.2-0.3-3.4v-0.3 - v-1.8l0.1-1.1c0.1-0.6,0.2-1.3,0.3-1.9c0.1-0.3,0.1-0.7,0.2-1s0.2-1,0.3-1.5L13.9,29.3z"/> -<path class="st2" d="M10,38.8l0.8-0.4c0.1,0,0.1-0.1,0.1-0.1c0-0.3,0.2-0.6,0.5-0.7c0.2,0,0.4,0.1,0.5,0.2c0.1,0.1,0.1,0,0.2,0 - l0.6-0.3v0.3c-0.2,0.1-0.4,0.1-0.6,0.2c-0.1,0,0,0.1-0.1,0.1c0,0.3-0.3,0.6-0.7,0.6c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.2-0.1-0.2,0 - c-0.4,0.2-0.7,0.4-1,0.6L10,38.8z"/> -<path class="st2" d="M12.8,35.7c-0.3-0.6-0.5-1.3-0.7-1.9c-0.1-0.2-0.1-0.5-0.2-0.7c0.1-0.2,0.2-0.5,0.4-0.7 - c0.1,0.3,0.1,0.5,0.2,0.8c0.1,0.5,0.2,0.9,0.4,1.4L12.8,35.7z"/> -<path class="st7" d="M14.9,40l0.1,0.2c-0.3,0.8-0.5,1.6-0.7,2.4l-0.1-0.5c0,0,0-0.1,0.1-0.2C14.5,41.3,14.7,40.6,14.9,40z"/> -<path class="st8" d="M11.9,42.7l0.9-1.3l0.1-0.2v0.4c-0.3,0.4-0.6,0.9-0.9,1.3L11.9,42.7z"/> -<path class="st1" d="M15,52.1c0.1,0,0.3,0,0.4,0h0.7c0,0.3,0.1,0.6,0.2,0.9c0,0,0,0.1,0,0.1c-0.2,0-0.3,0-0.5,0 - c-0.3,0-0.6-0.1-0.9-0.1C15,52.7,15,52.4,15,52.1z"/> -<path class="st4" d="M14.1,33.5v-0.4c0.9,0.8,1.8,1.5,2.7,2.2l0.1,0.1c0,0.1,0,0.2-0.1,0.2l-0.1-0.1c-0.6-0.4-1.2-0.9-1.7-1.3 - L14.1,33.5z"/> -<path class="st4" d="M15.5,28L15.5,28C15.5,28,15.5,28,15.5,28z"/> -<path class="st8" d="M14.7,39.6c-0.2,0.2-0.4,0.5-0.6,0.7L14,40.3c0-0.1,0-0.2,0-0.4c0.2-0.2,0.4-0.5,0.6-0.7 - c0.1-0.1,0.2-0.2,0.3-0.3l0.8-0.8l0,0l0,0c0.2-0.1,0.3-0.2,0.4-0.4c0.5-0.5,1-1,1.5-1.5c0.1,0,0.1-0.1,0-0.2 - c0.2-0.1,0.5-0.2,0.6-0.4c0.1-0.1,0.2-0.2,0.3-0.3s-0.1,0.2,0.1,0.2c0,0.1-0.1,0.1-0.2,0.2c-0.1,0.1-0.3,0.2-0.4,0.3 - c-0.1,0-0.1,0.1-0.1,0.2s-0.1,0-0.1,0.1c-0.7,0.7-1.4,1.3-2.1,2v0.1l0,0c-0.1,0.1-0.3,0.2-0.4,0.4l0,0l0,0c-0.1,0.1-0.2,0.2-0.3,0.4 - C14.9,39.4,14.8,39.5,14.7,39.6z"/> -<path class="st4" d="M18.6,35.7c-0.1,0,0-0.2-0.1-0.2c0.3-0.3,0.7-0.6,1-0.9c0.4-0.3,0.8-0.7,1.2-0.9V34l-1.2,1l-0.7,0.6L18.6,35.7z - "/> -<path class="st2" d="M18.3,35.7c-0.2,0.2-0.4,0.3-0.6,0.4l-0.9,0.3c0-0.1,0.1-0.2,0.2-0.3c0.2,0,0.3-0.1,0.5-0.2l0.3-0.1L18.3,35.7z - "/> -<path class="st4" d="M17.6,35.9L17.3,36L17,35.8c0-0.1,0-0.2,0.1-0.2C17.3,35.7,17.5,35.8,17.6,35.9z"/> -<path class="st0" d="M23.3,31.9L23.3,31.9z"/> -<path class="st2" d="M16.4,36.5c-0.8,0.2-1.5,0.5-2.3,0.8c-0.1,0-0.1,0.1,0,0.2c0.3,0.5,0.5,1,0.8,1.5c-0.1,0.1-0.2,0.2-0.3,0.3 - l-0.1-0.1l-0.7-1.2v-1c0.3-0.1,0.6-0.2,0.9-0.3c0.6-0.2,1.2-0.4,1.8-0.6C16.5,36.3,16.4,36.4,16.4,36.5z"/> -<path class="st15" d="M17,35.8l0.3,0.2c-0.2,0.1-0.3,0.1-0.5,0.2C16.9,36,16.9,35.9,17,35.8z"/> -<path class="st7" d="M32.9,20.1c-0.2,0.1-0.4,0.2-0.6,0.3s-0.1,0.1-0.1,0.3c0.2,0.4,0.3,0.8,0.4,1.2c-0.1,0-0.2-0.1-0.3-0.2 - c-0.1-0.4-0.2-0.7-0.4-1c0-0.1-0.1-0.1-0.2,0l-0.8,0.5L30.4,21l0.8-0.5c0.1-0.1,0.3-0.1,0.4-0.2C32,20.2,32.4,20.2,32.9,20.1z"/> -<path class="st2" d="M47.4,34.5c-0.1,0.1-0.2,0.1-0.3,0.2c-0.3,0.1-0.6,0.3-0.8,0.5c-0.2-0.2-0.2-0.4-0.4-0.5c0-0.1,0-0.1-0.1-0.2 - c-0.2-0.3-0.4-0.5-0.6-0.8c-0.1-0.1-0.2-0.1-0.3-0.1c-0.7,0.2-1.4,0-1.8-0.5c-0.2-0.2-0.3-0.4-0.4-0.6c0-0.1,0-0.1-0.1-0.2 - c0,0,0-0.1,0-0.1c-0.1-0.4,0-0.8,0.1-1.2c0-0.1,0-0.1,0-0.2c-0.5-0.5-1-1-1.5-1.4c-0.2-0.2-0.5-0.4-0.7-0.6 - c-0.1-0.1-0.3-0.3-0.4-0.4c-0.2-0.2-0.5-0.4-0.8-0.6c-0.4-0.3-0.8-0.7-1.2-1c-0.5-0.4-1.1-0.8-1.6-1.2c0.1,0,0.1-0.1,0.1-0.1 - c0.2-0.3,0.4-0.7,0.5-1.1l0.5,0.3c0.1,0.1,0.2,0.1,0.3,0.2l0.2,0.2l0.6,0.4l0,0l0,0l0.9,0.7c0,0,0,0.1,0.1,0 - c0.1,0.1,0.3,0.3,0.4,0.4l0.7,0.6l0.1,0.1c0.9,0.8,1.8,1.6,2.7,2.5c0.1,0.1,0.2,0.1,0.3,0.1c1-0.3,2,0.3,2.3,1.3c0,0.1,0,0.1,0,0.2 - c0.1,0.3,0.1,0.6,0,0.9h0.7c0,0.1,0,0.1-0.1,0.2h-0.5c-0.1,0-0.1,0-0.1,0.1c0,0,0,0.1,0,0.2l0.4,0.5l0.1,0.2l0.1,0.2 - C46.9,33.8,47.1,34.1,47.4,34.5z"/> -<path class="st9" d="M41.5,23.7c0,0.1-0.1,0.2-0.1,0.3l-0.2,0.9L41,26c0,0,0,0.1-0.1,0.2c-0.4-0.2-0.9-0.3-1.3-0.2v-0.2l0.1-0.3 - c0.1-0.4,0.2-0.8,0.2-1.3c0-0.1,0.1-0.2,0.1-0.3c0.1-0.4,0.2-0.8,0.2-1.2c0.1-0.6,0.2-1.3,0.3-2c0.4,0.1,0.8,0.2,1.3,0.4 - c0,0,0,0.1,0,0.1c0,0.4,0,0.8-0.1,1.3C41.6,23,41.5,23.3,41.5,23.7z"/> -<path class="st8" d="M40,24c0,0.1,0,0.2-0.1,0.3c-0.7,0.2-1.5,0.4-2.2,0.6c-0.1-0.1-0.2-0.1-0.3-0.2c0.3-0.1,0.7-0.3,1-0.3 - C39,24.3,39.5,24.1,40,24z"/> -<path class="st2" d="M29.5,20.6l0.9,0.3l0.5,0.2l0.2,0.1c0.4,0.2,0.7,0.3,1.1,0.5c-0.1,0.1-0.2,0.2-0.3,0.4 - c-0.2,0.2-0.3,0.5-0.4,0.7c-0.7-0.3-1.3-0.6-2-0.8l-0.1-0.1C29.5,21.5,29.5,21.1,29.5,20.6z"/> -<path class="st4" d="M33.8,26.1l2.1-0.8c0.1,0.1,0.2,0.1,0.3,0.2l-2.3,0.9c0-0.1-0.1-0.1-0.2-0.1s-0.1,0-0.1-0.1L33.8,26.1z"/> -<path class="st15" d="M31.3,27.2L31.3,27.2z"/> -<path class="st5" d="M47.9,30.2l-0.9,2c-0.1,0.1-0.1,0.1-0.1,0.2c-0.2,0.2-0.3,0.5-0.4,0.8l-0.1-0.2c0.1-0.2,0.2-0.4,0.3-0.6 - c0.1-0.1,0.1-0.1,0.1-0.2c0.3-0.6,0.6-1.3,0.8-1.9c0.1-0.1,0.1-0.3,0.2-0.5c0.1-0.1,0.1-0.3,0.2-0.4c0.2-0.5,0.3-0.9,0.4-1.4 - l0.1-0.4c0,0.3,0,0.6,0,0.9c-0.1,0.3-0.2,0.7-0.3,1C48,29.8,47.9,30,47.9,30.2z"/> -<path class="st3" d="M47.9,30.2c0.1-0.2,0.1-0.4,0.2-0.6l0.3,0.2v0.5c-0.1,0-0.1-0.1-0.2-0.1l0,0l0,0c0,0.2,0.1,0.4,0.2,0.6 - c0,0.1,0,0.3-0.1,0.4L47.9,30.2L47.9,30.2z"/> -<path class="st2" d="M46.9,32.5c0-0.1,0-0.2,0.1-0.2c0.1,0,0.2,0,0.2,0l0.8,0c0,0.1,0,0.1,0,0.2L46.9,32.5z"/> -<path class="st15" d="M48.4,29.8l-0.3-0.2c0.1-0.3,0.2-0.7,0.3-1C48.5,29,48.5,29.4,48.4,29.8z"/> -<path class="st15" d="M48.1,30.2c0.1,0,0.2,0.1,0.2,0.1l0,0.5C48.2,30.6,48.2,30.4,48.1,30.2L48.1,30.2z"/> -<path class="st3" d="M47.9,29.5c0,0.1-0.1,0.3-0.2,0.4l-0.1-0.1c-2.1-1.4-4.3-2.6-6.7-3.5v-0.1c0-0.1,0-0.1,0.1-0.2 - c1.2,0.4,2.3,0.9,3.4,1.4c1,0.5,2,1.1,3,1.7l0,0l0,0c-0.5-1.2-1.1-2.4-1.8-3.6c-0.4-0.6-0.8-1.3-1.3-1.9h0.5c0.7,1,1.3,2,1.9,3.1 - c0.4,0.8,0.8,1.7,1.1,2.5C47.8,29.4,47.8,29.5,47.9,29.5z"/> -<path class="st3" d="M47.8,47.9L47.8,47.9z"/> -<path class="st4" d="M48.1,47.5C48.1,47.5,48.1,47.4,48.1,47.5C48.1,47.4,48.1,47.5,48.1,47.5z"/> -<path class="st7" d="M13.9,51.9l-0.1-0.4c0.2,0.1,0.4,0.3,0.5,0.5C14.2,52,14,52,13.9,51.9z"/> -<path class="st9" d="M40.6,32.5c0,0.9-0.8,1.7-1.7,1.8c-0.1,0-0.1,0.1-0.1,0.2l-0.5,1.5c-0.4-0.2-0.8-0.4-1.2-0.7l0.5-1.3 - c0-0.1,0-0.1-0.1-0.2c-0.7-0.7-0.7-1.8-0.1-2.5c0.3-0.3,0.6-0.5,1-0.6c0.1,0,0.2-0.1,0.2-0.2c0.1-0.5,0.3-1,0.4-1.5h0.1 - c0.3,0.3,0.8,0.4,1.2,0.4c-0.1,0.5-0.3,1-0.4,1.5c0,0,0,0.1,0,0.2c0.4,0.3,0.7,0.8,0.7,1.3L40.6,32.5z"/> -<path class="st8" d="M36.5,48.5h0.2v2.5h-0.2L36.5,48.5z"/> -<path class="st15" d="M31.9,50.7L31.9,50.7C31.9,50.7,31.9,50.7,31.9,50.7z"/> -<path class="st0" d="M34.3,28c0.1,0.6,0.3,1.1,0.4,1.7c0,0.1,0.1,0.2,0.2,0.2c0.2,0.1,0.4,0.4,0.3,0.6c0,0.1-0.1,0.1-0.1,0.2 - c-0.1,0.1-0.1,0.2-0.1,0.4c0.1,0.4,0.2,0.8,0.3,1.3s0.2,0.9,0.2,1.3c0,0.2,0,0.3,0.1,0.5s0,0.1,0,0.1s0,0-0.1,0 - c-0.1-0.1-0.2-0.3-0.2-0.5c-0.1-0.9-0.3-1.8-0.5-2.6c0-0.1,0-0.2-0.2-0.2c-0.2,0-0.3-0.1-0.3-0.3c-0.1-0.2-0.1-0.4,0.1-0.5 - c0.2-0.1,0.2-0.3,0.1-0.5c-0.1-0.5-0.2-1-0.3-1.5L34.3,28z"/> -<path class="st12" d="M40.3,29.2c-0.4,0-0.9-0.1-1.2-0.4h-0.1l0.3-1.1c0.3,0.2,0.5,0.4,0.8,0.6c0.1,0.1,0.3,0.2,0.4,0.4L40.3,29.2z" - /> -<path class="st14" d="M30.8,27.8c0.1-0.1,0.2-0.1,0.3-0.2c-0.2,0.5-0.5,1-0.7,1.5c-0.1,0.3-0.4,0.5-0.8,0.5l0,0 - c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.1,0,0.1-0.1l0.7-1.5C30.7,28,30.7,27.9,30.8,27.8L30.8,27.8L30.8,27.8z"/> -<path class="st4" d="M34.3,28H34l-0.4-1.5c0-0.1,0.1-0.1,0.2-0.1L34.3,28z"/> -<path class="st15" d="M30.8,27.8L30.8,27.8z"/> -<path class="st14" d="M43,38.8l1-1.5l0.2-0.3c0.1-0.1,0.1-0.3,0.1-0.4c-0.1-0.2,0-0.4,0.2-0.5c0,0,0.1,0,0.1,0 - c0.1,0.3,0.1,0.6,0.1,0.8c-0.2,0-0.2,0.1-0.3,0.2c-0.4,0.6-0.8,1.2-1.2,1.8C43,38.9,43,38.9,43,38.8z"/> -<path class="st5" d="M44.6,36.9c0-0.3,0-0.6-0.1-0.8c0.2,0,0.3,0,0.4-0.2c0.3-0.5,0.5-0.9,0.8-1.4c0.1,0,0.1,0.1,0.1,0.2 - c-0.3,0.5-0.5,1-0.8,1.4c-0.1,0.1-0.1,0.2,0,0.3c0.1,0.2,0,0.5-0.2,0.6C44.7,36.9,44.7,36.9,44.6,36.9z"/> -<path class="st7" d="M15.3,38.9c0.1-0.1,0.2-0.3,0.4-0.4l-0.4,1.2l-0.1-0.2C15.2,39.3,15.3,39.1,15.3,38.9L15.3,38.9 - C15.3,38.9,15.3,38.9,15.3,38.9z"/> -<path class="st7" d="M15.7,38.5L15.7,38.5L15.7,38.5z"/> -<path class="st15" d="M15.3,38.9L15.3,38.9z"/> -<path class="st7" d="M15.6,38.2L15.6,38.2z"/> -<path class="st12" d="M41,26.3l-0.2,0.9L40,26.6c-0.2-0.1-0.3-0.2-0.4-0.4c0-0.1,0-0.1,0-0.2C40,25.9,40.5,26,41,26.3L41,26.3z"/> -<path class="st14" d="M40.6,32.3c0.6,0,1.3-0.1,1.9-0.1c0,0.1,0.1,0.1,0.1,0.2h-1.4h-0.5L40.6,32.3z"/> -<path class="st3" d="M38,25.1c0.5,0.1,1,0.3,1.5,0.4h0.2l-0.1,0.3h-0.1c-0.3-0.1-0.7-0.2-1-0.3l0,0l0,0L38,25.1z"/> -<path class="st15" d="M38.6,25.5L38.6,25.5z"/> -<path class="st15" d="M48.1,30.2L48.1,30.2L48.1,30.2z"/> -<path class="st15" d="M47.5,29.1L47.5,29.1L47.5,29.1z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 62.6 61.7"><style><![CDATA[.Q{fill:#39b44b}.R{fill:#2ca9e1}.S{fill:#fff}.T{fill:#1f92d0}.U{fill:#9dcb3c}.V{fill:#39c5f3}.W{fill:#6ccdf4}.X{fill:#bfd631}.Y{fill:#dce691}.Z{fill:#8cb940}.a{fill:#18aee4}.b{fill:#d5de26}.c{fill:#2ea149}.d{fill:#a9c239}.e{fill:#c1e8fa}.f{fill:#0083c1}]]></style><path d="M34.7 46.5a.76.76 0 0 0-.4-.2c-.1 0-.2-.1-.2-.1 0-.1 0-.1.1-.2.3.1.5.2.8.4-.1 0-.2 0-.3.1zM27.1 42l.2-.2 1.9 1.2c.4.3.8.5 1.3.7h.2c.2-.2.5-.2.7-.1s.4.4.3.6c0 .1.1.3.2.3l1.8 1 .1.1c.1.1 0 .1 0 .2s-.1 0-.2 0l-2-1.2c-.1-.1-.1-.1-.2 0-.2.1-.5.1-.7 0s-.3-.3-.3-.6c0-.1 0-.2-.2-.3-1.1-.4-2.1-1-3.1-1.7zM20 37.8c0-.1.1-.2.1-.2l1.8 1.2c.4.2.8.5 1.2.7h.2c.2-.2.5-.2.7-.1s.4.3.3.6c0 .1.1.3.2.3l1.7 1 .1.1c.1.1 0 .1 0 .2s-.1 0-.1 0l-1.9-1.1h-.2c-.2.1-.4.1-.6 0a.55.55 0 0 1-.3-.5c0-.1 0-.2-.1-.3-1.2-.6-2.1-1.2-3.1-1.9z" class="e"/><path d="M35.3 60.2c-.2.7-.7 1.3-1.4 1.6h-.6c-.6-.2-1.1-.6-1.5-1.2l-.5-.7c-.5-.8-1-1.7-1.3-2.6 0-.1 0-.2-.1-.2 0-.1 0-.2-.1-.3-.1-.2-.1-.4-.3-.6l-.3-1c0-.1 0-.2-.1-.3l-.5-1.3v-.2c0-.1 0-.1-.1-.2 0-.2-.1-.4-.1-.5l-.1-.4c-.1-.3-.1-.6-.3-.9 0-.2-.1-.4-.2-.6l-.3-1.3v-.1l-1.1-5.2v-.3c-.1-.3-.1-.7-.2-1v-.1l-.5-3.2c0-.2-.1-.2-.3-.3-1.2-.4-1.8-1.7-1.5-2.8.2-.6.6-1 1.1-1.3 0 0 .1 0 .1-.1l-.1-.9v-3.1c0-.3 0-.6-.1-.9s0-.6 0-1v-3.6h-.1l-1.6 1.5-1 1.1c0-.1-.1-.2 0-.3l1.1-1.2 1.5-1.5s.1-.1.1-.2v-1.1l.1-2v-.1l.1-1.4.1-.9.1-.4c.1-.7.3-1.3.5-2l.3-.8.6-1.1c.2-.2.4-.4.7-.6.4-.2.9-.1 1.3.1a1.96 1.96 0 0 1 .9.9l-.6.2a.67.67 0 0 0-1-.1l-.3.3c-.2.2-.3.5-.4.7 0 0 0 .1-.1.1-.3 1-.5 2-.6 3v.5c-.1.4-.1.8-.1 1.2v.5c-.1.7-.1 1.3-.1 1.9 0 .2 0 .2.2.2h.1c-.3.2-.4.5-.4.8v5.6c0 .4 0 .8.1 1.2v.9c0 .8.1 1.6.2 2.4 0 .1 0 .2.2.2.4.1.8.3 1.1.6.8.9.8 2.4-.2 3.2-.2.1-.4.3-.6.4-.1 0-.2.2-.1.3l.5 3.3c.1.5.1.9.3 1.4v.2l.6 3.3.3 1.4v.1l.3 1.2c0 .1 0 .2.1.2l.3 1.1.1.4c0 .1.1.2.1.3.1.5.3.9.4 1.4l.6 1.8c.1.3.2.7.4 1l.6 1.4c.3.7.6 1.3 1 1.9.1.2.3.4.5.6l.1.1c.2.2.5.3.8.2.2-.1.4-.3.5-.5l.8-.3zM31.6 0c.3.1.5.2.7.4s.4.6.3.9v7.9c0 .7-.5 1.3-1.3 1.3-.6 0-1.2-.4-1.3-1.1V1.2c0-.6.4-1.1 1-1.3h.1l.5.1zM0 16.4c.1-.3.2-.6.5-.8.4-.3 1-.4 1.5-.1l3.8 2.4 2.9 1.8c.6.4.8 1.2.5 1.8-.2.2-.5.4-.8.5-.4.1-.8.1-1.1-.2l-6-3.8c-.1 0-.3 0-.4-.1-.4-.2-.8-.6-.9-1v-.5zm62.6.5s0 .1 0 0c-.1.4-.3.7-.6.8L56.7 21l-1.4.9c-.6.4-1.4.2-1.8-.4s-.2-1.4.4-1.8l6.7-4.1c.6-.4 1.4-.3 1.8.3.1.1.1.3.2.4v.6z" class="a"/><path d="M53.3 33.3c.6.2 1.1.5 1.6.9s.6 1.1.3 1.7c-.2.3-.5.7-.8.9l-.2.2c-.2.1-.4.2-.5.4l-1.1.6-2.4 1.1c-.1 0-.1.1 0 .1.4 1 .8 2.1 1.1 3.2.2.8.3 1.6.4 2.4-.3-.1-.7-.1-1-.1l-.1-.1-.1-.4c0-.2-.1-.3-.1-.5-.2-.9-.5-1.8-.9-2.7l-.2-.3c-.1-.3-.2-.6-.4-.8 0-.1-.1-.1-.2-.1l-2.6.9-2 .6c-.1 0-.2 0-.3.1l-.8.2-1.5.4-.8.2c-.1 0-.2 0-.4.1h-.1l-3.7.8-.2-.1c-.3 0-.5.1-.8.2-.2 0-.5 0-.7.1l-.9.2h-.1c-1 .2-2 .3-3 .4l-2 .3c.1-.2.2-.5.1-.8 0-.2-.1-.4-.1-.6h.1l1.9-.2 3.8-.6 1-.2.6-.1h.2l4-.8c.5-.1 1-.2 1.5-.4.1 0 .2 0 .3-.1.2 0 .3-.1.5-.1.3-.1.5-.1.8-.2h.1l2.3-.6c.2 0 .4-.1.5-.2.3-.1.5-.1.8-.2.4-.1.9-.3 1.3-.4.2-.1.3-.1.5-.2.3-.1.5-.2.7-.3h.2c.4-.2.9-.3 1.3-.5l1.8-.9c.2-.1.3-.2.5-.3s.4-.2.5-.4c.2-.2.4-.4.6-.7.1-.3.1-.6-.1-.8-.2-.3-.5-.5-.9-.7l-.3-.6zM9.5 43.8l-1.4-.6c-.3-.2-.5-.4-.7-.6-.3-.4-.4-1-.1-1.4.2-.5.6-.9 1-1.2.2-.1.3-.3.5-.4.1.1.1.2.2.4-.4.3-.6.6-.9 1-.2.3-.1.6.1.8.3.3.6.5 1 .6.2.1.4.2.7.2.3.1.5.1.8.2.5.1 1 .2 1.5.2.4.1.7.1 1.1.1h.2c.3 0 .7.1 1 0 .3 0 .5.1.8.1.4 0 .8.1 1.2 0h.9l-.4-.6c0-.1.1-.2.2-.3l.6.8c.1.1.1.1.2.1h2.7c.1 0 .2 0 .2-.1.4-1.1 1.7-1.7 2.8-1.3.5.2 1 .6 1.2 1.1 0 .1.1.1.2.1h.4v.3c0 .4.1.7.2 1h-.5c-.1 0-.2.1-.2.2-.1.3-.3.6-.5.8-.1.2-.3.3-.5.4l-.2.1c-.2.1-.5.1-.7.2a2.33 2.33 0 0 1-2.1-1.3c0-.1 0-.1-.1-.1h-1.8v.1l1.1 1.1c0 .1.1 0 .2 0 .3-.1.7 0 .8.3a.45.45 0 0 1 0 .5c-.1.1-.1.1 0 .2.5.5 1 .9 1.5 1.3.1.1.3.3.5.3 0 .1.1.1.2.1 0 .1.1.1.1.1l.6.5c-.2 0-.4-.1-.5-.1 0-.1-.1-.1-.2-.2s-.1-.1-.1 0c-.1 0-.1 0-.2-.1.1-.2 0-.3-.1-.4l-1.8-1.6c-.1-.1-.1-.1-.3-.1-.2.1-.5 0-.6-.1-.2-.2-.2-.4-.1-.7v-.2L19 44.3c-.1-.1-.1-.1-.2-.1h-2.7c-.4 0-.7 0-1-.1h-.3l-1.3-.1-1-.1c-.3-.1-.5-.1-.8-.1l-.4-.1-1.1.3-.7-.2z" class="U"/><path d="M31.4 59.9l.5.7c-.9.1-1.8 0-2.7-.2-1.1-.2-2.2-.5-3.2-.9h-.1l-1.1-.5-1-.5-1-.6-.7-.5-.3-.2s0-.1-.1-.1l-.3-.3c-.7-.5-1.3-1.1-1.9-1.7l-.5-.6c-.1-.1-.1-.2-.2-.2v-.1l-.8-.9-.8-1.1-.5-.8-.1-.1h-.5a1.37 1.37 0 0 1-1-1.7.76.76 0 0 1 .2-.4c0-.1.1-.1 0-.2l-.6-1.4-.6-1.6v-.4c0-.1 0-.2.1-.1h.5l.4-.1.2.7.3.9v.2c.2.4.3.8.5 1.1.1.2.1.4.4.3h.1c.8.1 1.3.8 1.2 1.6 0 .2-.1.4-.2.5s-.1.3 0 .4l.7 1c.2.3.5.7.8 1l.1.1c.1.2.3.4.5.5.4.5.9 1 1.4 1.5.2.2.5.4.7.6l.3.2c.1.1.3.3.5.4l.3.2c.5.4 1 .7 1.6 1l1.1.6c.3.2.7.3 1.1.5h.1c1.3.7 2.9 1.1 4.6 1.2z" class="Q"/><path d="M14.2 3.9c.5 0 .9.3 1.1.7l2 4.1 1.5 3c.4.6.2 1.4-.4 1.8s-1.4.2-1.8-.4c0-.1-.1-.1-.1-.2l-2.2-4.6L13 5.8c-.3-.7 0-1.4.6-1.7.2-.2.4-.2.6-.2zm35.1 1.3c0 .3-.1.6-.3.9l-2.2 4.5-1.1 2.3a1.59 1.59 0 0 1-1 .8c-.7.1-1.3-.4-1.4-1.1 0-.3 0-.6.2-.9l2.8-5.9.6-1.2c.4-.6 1.2-.8 1.8-.4.3.2.5.4.6.7v.3z" class="a"/><path d="M22.1 28c-.1.1 0 .2 0 .3s.1.3.3.3l.4.1 1.5.6c-.1.1-.1.2-.2.3-.2.3-.3.6-.4 1l-1.9-.7c-.1-.1-.2-.1-.2 0-.2.2-.5.4-.9.5-.1 0-.3 0-.4.1s-.1 0-.2 0H20c-.7-.1-1.2-.7-1.3-1.4 0-.1-.1-.2-.2-.2l-2.8-.8c-.1 0-.2-.1-.3 0 0-.1 0-.1-.1-.1-.3-.1-.6-.1-1-.2l-.2-.1-.6-.1-.5-.1c-.4 0-.7-.1-1.1-.1h-.6c-.2 0-.4.1-.6.2-.3.1-.5.5-.4.8s.2.7.4 1l-.3.4c-.4-.5-.6-1-.8-1.6-.2-.7.2-1.5.9-1.7.4-.1.8-.2 1.2-.2h.7c.6 0 1.1.1 1.7.1l1 .1 1.1.2c.2.1.5.1.7.1h.1l2.1.6c.1 0 .2 0 .3-.1.3-.3.8-.5 1.2-.4.7.1 1.2.4 1.5 1.1 0-.1 0 0 0 0z" class="W"/><path d="M44.2 19c.6 0 1.2.1 1.7.3 1.7.5 2.9 1.9 3.2 3.6.1.3.1.6.1 1v.9l-.5-.5c0-.2 0-.4-.1-.6v-.2c-.2-1-.6-2-1.4-2.7-.4-.4-1-.7-1.6-.9-.4-.1-.9-.2-1.4-.2-.8 0-1.5.1-2.3.3l-.3.1-1.7.6-.2.1c-1.1.4-2.1.9-3.1 1.5-.5.3-1.1.6-1.6 1-.4.2-.8.5-1.2.8-.1 0-.2.1-.3.2-.1 0-.2.1-.3.2-.1 0-.1.1-.2.1-.2.1-.4.3-.6.5-.2 0-.3.2-.4.3s0 0 0 0c-.1 0-.1 0-.1.1l-2.2 1.8-1.4 1.3c-.2-.3-.5-.6-.8-.8l2.7-2.4 1.5-1.1c.1 0 .2-.1.3-.2.3-.2.6-.4.8-.6h.1l1-.7s.1 0 .1-.1h.1c.1 0 .1 0 .2-.1l2.3-1.3c.5-.3 1-.5 1.5-.7.7-.3 1.5-.6 2.3-.8.1 0 .2 0 .3-.1l1.1-.3h.1l.9-.1c.4-.3.9-.3 1.4-.3z" class="b"/><path d="M12.4 26.1h-.7a8.47 8.47 0 0 1 1.5-3c.3-.4.6-.7.9-1 .8-.8 1.8-1.4 2.8-1.8.9-.4 1.9-.7 2.9-.9h.3c.2 0 .4-.1.5-.2.8-.6 1.6-1.2 2.5-1.6.1 0 .1-.1.1-.2.1-.4.5-.7.9-.5h.3l1.6-.6-.3.8c-.3.1-.7.3-1 .4-.1 0-.1.1-.1.2-.1.4-.4.7-.9.7-.1 0-.2 0-.3-.1h-.1l-1.5 1-1.3 1h-.1A15.46 15.46 0 0 0 18 23l-1.2 1.8c-.2.2-.3.5-.4.7-.1 0-.2-.1-.2-.1-.2-.1-.5-.2-.7-.2.7-1.3 1.5-2.6 2.5-3.7.3-.4.7-.7 1-1.1-.2 0-.4 0-.6.1-1.7.4-3.2 1.2-4.4 2.5-.8 1-1.3 2-1.6 3.1z" class="Q"/><path d="M48.7 24.2l.9.9c.8.9 1.4 1.9 2 3l.2.3.6 1.1.5 1.4c.3.8.4 1.6.6 2.5l.1.5v.2c0 .4.1.8 0 1.2l-.7-1.1c0-.2 0-.4-.1-.6l-.1-.4V33c-.1-.6-.2-1.1-.4-1.7-.2-.7-.5-1.4-.8-2l-.9-1.7a11.51 11.51 0 0 0-1.4-1.7 5.73 5.73 0 0 0-1.1-1.1 6.42 6.42 0 0 0-1.3-1c-.2-.2-.5-.4-.8-.5-.7-.5-1.4-.9-2.2-1.2-.1-.1-.2-.1-.3-.1.2-.3.2-.7.2-1v-.1h.1c.9.4 1.8.9 2.6 1.5a3.04 3.04 0 0 0 .7.5c.4.3.9.7 1.3 1.1h.1l.2.2z" class="T"/><path d="M52.9 47.9c-.3-.6-.6-1.2-1-1.7l-.2-.3-1.1-1.2-.3-.3-1.2-1.1c-.1 0-.1-.1-.1-.1-.3-.2-.5-.4-.7-.6l-1.3-1h-.1c-.1.3-.4.7-.6.9 0 0-.1.1-.2.1l2.5 2h.1l1.1.9c.1 0 .1.1.1.2l.5.5c.1 0 .1.1.2.2.3.3.6.7.9 1.1s.5.8.5 1.3a.55.55 0 0 1-.3.5c-.2.2-.4.3-.7.3v.6c.5 0 1-.2 1.5-.4.3-.2.5-.5.6-.8 0-.4 0-.8-.2-1.1z" class="W"/><path d="M51.2 49.7l-.2.5c-.2.6-.4 1.1-.7 1.6-1.2 2.1-3.2 3.6-5.6 4.2-.8.2-1.6.3-2.4.4-.2 0-.5 0-.7.1h-.8a17.33 17.33 0 0 1-3.2-.3l-1.3-.3c-.1 0-.1-.1-.2-.1-.2-.1-.4-.1-.7-.2-.1-.1-.2-.1-.4-.1l-1.5-.5c.1 0 .2-.2.3-.1.2.1.5.1.8.1.4.1.8.3 1.3.3.2.1.4.1.6.1 1.2.3 2.4.4 3.6.5l2.3-.1c.2 0 .4 0 .6-.1h.2c1.1-.2 2.1-.5 3.1-1 1.8-.9 3.2-2.5 3.9-4.5.1-.1.1-.3.1-.4v-.1l.3-1.6h.4c.1 0 .3 0 .4-.1l-.2 1.7z" class="U"/><path d="M18.8 57.8c-.5.1-1 .1-1.5 0-.8-.1-1.6-.3-2.2-.7-.9-.6-1.5-1.4-1.9-2.5-.2-.7-.4-1.4-.4-2.1v-1l.1-1 .1-.8c.1-.2.1-.5.1-.7l.3-1.2c.3.2.6.4.9.5l-.1.4-.3 1.3c-.1.2-.1.4-.1.6-.1.2-.1.5-.1.8 0 .2-.1.3 0 .5v.8c0 .5.1 1 .2 1.5.4 1.8 2.1 3.1 4 3l.9.6z" class="b"/><path d="M13.2 27.4l.5.1c-.4.3-.8.5-1.1.9-.2.2-.4.3-.6.5l-.9.9c-.1.1-.2.2-.3.4-.1.1-.2.3-.4.4-1.4 1.8-2 4.1-1.6 6.3.1.6.3 1.2.5 1.8l-.1 1.7c-.1-.2-.1-.3-.2-.4 0-.2-.1-.3-.2-.5l-.3-.9c-1-3-.3-6.4 1.8-8.7l.1-.1.3-.4.6-.6.6-.5 1.3-.9zm15.7-11.6l.8-.1h2.2c1.5.1 3 .5 4.4 1l1.5.6.4.2.8.5-1 .1c-.1-.1-.2-.1-.3-.2s-.2-.2-.4-.2c0 0-.1-.1-.2-.1l-1.6-.6c-1.7-.6-3.6-.9-5.4-.8h-.7l-2.1.4c.1-.3.2-.5.4-.7l1.2-.1z" class="Q"/><path d="M18.8 57.8l-1-.5-.1-.1c-.8-.5-1.6-1.2-2.2-2-.5-.7-.9-1.4-1.2-2.2.2 0 .4.1.6.1.6 1.3 1.6 2.5 2.8 3.3.5.4 1 .6 1.6.8l.9.3c.5.2 1.1.2 1.6.3h1l1 .6h-2c-1 0-2-.2-3-.6z" class="R"/><path d="M41.6 56.5c.2 0 .5-.1.7-.1-.8.7-1.6 1.3-2.5 1.8-1.4.8-2.8 1.5-4.4 1.8h-.1l-.6.1c-.5.1-1 .2-1.5.2-.2-.2-.4-.4-.5-.6.5 0 .9-.1 1.4-.2.4 0 .8-.1 1.1-.2.2 0 .3 0 .5-.1h.1c2.1-.4 4-1.4 5.8-2.7zm12.1-19.1c.2-.2.3-.3.5-.4.7 2.1.6 4.4-.4 6.4-.3.7-.7 1.3-1.1 1.9 0-.1 0-.1-.1-.2l-.3-.4.1-.1c1.5-2.1 2-4.8 1.3-7.2z" class="Q"/><path d="M12.8 51.5v.8c-1.2-.5-2.1-1.5-2.6-2.7-.2-.7-.3-1.5-.2-2.3 0-.4.2-.7.2-1.1l.3-.9.5-1.1.4.1-.2.4c-.2.4-.3.9-.4 1.4-.1.4-.2.7-.2 1.1-.1.6-.1 1.3.1 1.9.2 1 1 2 2.1 2.4z" class="V"/><path d="M38.1 17.5l-.4-.2c.5-.6 1.2-1 1.9-1.3.6-.3 1.4 0 1.7.7.2.5.4 1 .5 1.5l.1.7v.4h-.1c0-.2-.2-.2-.4-.3h-.7v-.3c0-.2 0-.4-.1-.6 0-.3-.1-.6-.3-.9-.1-.3-.5-.4-.8-.3-.1 0-.3.1-.4.1-.4.1-.7.3-1 .5zm-16.3 41h.4c.1.4.2.8.5 1.1.2.2.5.3.8.3a.76.76 0 0 0 .4-.2c.3-.2.6-.4.9-.7l1.1.5c-.5.5-1.1 1-1.8 1.3-.6.3-1.4.1-1.8-.6-.3-.6-.4-1.2-.5-1.7z" class="X"/><path d="M52.3 29.5l-.5-1.1-.2-.3V28c0-.8-.2-1.5-.6-2.2-.5-.6-1.1-1.1-1.7-1.4v-.6c1 .3 1.8 1 2.4 1.8.4.7.7 1.4.7 2.2 0 .6 0 1.1-.1 1.7 0-.1 0-.1 0 0z" class="V"/><path d="M10.6 45.3l-.3.9c-.3-.8-.6-1.6-.7-2.5l.7.2c0 .5.1 1 .3 1.4z" class="T"/><path d="M41.8 18.8l-.1-.7c.8.1 1.5.4 2.3.7l.2.1c-.5 0-1 0-1.5.1-.3-.1-.6-.1-.9-.2z" class="R"/><path d="M52.3 44.6l.3.4c0 .1.1.1.1.2-.2.3-.5.6-.8.9l-.2-.3v-.6c.2-.1.4-.3.6-.6z" class="c"/><path d="M29.5 51.7l-.3-1.1 1.1.1h.2l1.3.1h.9l2.1.2c0 .3 0 .7.1 1h-.2c-1.2 0-2.4 0-3.5-.2l-1.5-.1h-.2z" class="Q"/><path d="M29.9 57c-.8.4-1.6.6-2.4.9-.1 0-.2.1-.3.1h-.1l-1 .3c-.2 0-.4.1-.6.2l-1.1-.6c.6-.1 1.3-.2 1.9-.4h.1c.5-.1.9-.3 1.3-.4.3-.1.5-.2.7-.5.3 0 .6 0 .9-.2.1 0 .2-.1.2-.1l.3.6c.1-.1.1 0 .1.1z" class="R"/><path d="M26.9 56.4c.5-.7 1-1.5 1.4-2.2l.3-.6.5 1.4c0 .1 0 .2.1.3l-.8 1.2c-.1.3-.4.4-.7.5-.4.1-.9.3-1.3.4h-.1c0-.1 0-.1.1-.1l.4-.5.1-.4z" class="X"/><path d="M27.1 21.2l-.8.2c0-.4.1-.8.1-1.2v-.3c.1 0 .2 0 .3-.1l1.4-.4h.2l.1.2c.2.3.3.6.4 1l-.3.1c-.4.2-.9.3-1.4.5z" class="f"/><path d="M35.5 55.7c-.7.2-1.4.4-2.2.5a8.33 8.33 0 0 1-2.2.3c-.1-.3-.3-.7-.4-1l.5-.3 1.1-.6c.1.3.2.6.2.9l-1.1.7c1.2-.1 2.5-.4 3.7-.7a.76.76 0 0 1 .4.2z" class="T"/><path d="M26.3 28.8l1.1-1 .1-.1c.3.2.6.4.8.8l-.6.6c-.2.2-.5.4-.7.7l-.2.2-.3.2c-.1-.1 0-.2 0-.3-.2-.2-.2-.6-.2-1.1z" class="d"/><path d="M28.7 53.4l-2 1.3s-.1.1 0 .1c0 .2-.1.4-.2.5-.2.1-.4.1-.5 0 0 0-.1-.1-.1 0l-1.6.8c-.2.1-.4.2-.5.3-.3.1-.6.3-.9.4l-.3-.2c.2-.1.5-.2.7-.3s.4-.1.6-.2l.8-.3 1.1-.6c.1 0 .1-.1.1-.2 0-.2.1-.4.2-.5.2-.1.4-.1.5 0h.2a22.63 22.63 0 0 0 2-1.3c-.2.1-.1.1-.1.2z" class="b"/><path d="M25 21.9c-.3.1-.7.3-1 .4l-.2.1v-.1c-.2-.4-.3-.8-.3-1.2l1-.4.6-.2-.1 1.4c.1-.2 0-.1 0 0z" class="f"/><path d="M30.3 53.6l-.1.2c-.2-.5-.3-.9-.4-1.4 0-.1-.1-.2-.1-.3l.2-.3 1.5.1-.8 1.4v.1s-.3.1-.3.2z" class="d"/><path d="M28.9 49.1l1.1-.5c.1.1.2.2.2.4.1.3.2.6.1.9-.4.2-.8.3-1.1.5l-.3-1.2v-.1z" class="R"/><path d="M26.3 23.8h2.4c.1 0 .1 0 .1-.1.1-.2.4-.3.6-.2.1 0 .2.1.2.2s.1.1.2.1c.7 0 1.4.1 2.1.2-.1.1-.2.1-.3.2-.5-.1-1-.1-1.5-.1h-.2c-.1 0-.3 0-.3.1-.1.2-.4.3-.6.1-.1 0-.1-.1-.2-.2 0-.1-.1-.1-.2-.1h-2.1c-.2.1-.3 0-.2-.2z" class="Q"/><path d="M28.7 44.1l-.8.1-.3-1.4 1-.1c.1.2.1.4.1.6.2.3.1.6 0 .8z" class="Z"/><path d="M19.4 24.8l1.2-.3c1.4-.3 2.8-.5 4.3-.6v.2c-1.7.1-3.4.4-5 .8l-1 .3c.2-.2.3-.3.5-.4z" class="Q"/><path d="M26.5 44.4l-.9.1c-.2-.3-.3-.7-.2-1V43h.9c.1.3.1.7.2 1v.4zm-1.3-24l-.6.2-.6-.1c.1-.4.2-.7.4-1.1.3 0 .7.1 1 .1l-.2.9z" class="Z"/><path d="M22.4 34.7l1.2-.2c.1 0 .1-.1.1-.1 0-.2.2-.4.4-.4s.4 0 .5.2c0 .1.1.1.2 0h.3v.2H25c-.1 0-.3.1-.3.2-.1.3-.4.4-.6.3-.1 0-.2-.1-.2-.2-.1-.1-.2-.1-.3-.1l-1.1.3h-.2l.1-.2z" class="Y"/><path d="M25 31.8l-.3.2c-.2-.1-.3-.2-.4-.3-.1-.2-.2-.3-.4-.5l.4-.5.5-.6c.1.3 0 .6.1.9s.1.5.1.8z" class="d"/><path d="M24.9 30.2l-.5.6-.5-.2c0-.4.2-.7.4-1 .1-.1.1-.2.2-.3l.4.1c.1 0 .1 0 .1-.1v-.2c-.1.4-.1.8-.1 1.1z" class="V"/><path d="M26.9 49.9l.7-.3.3 1.3c-.1.1-.3.1-.4.1 0-.2-.2-.2-.3-.3l-.3-.8zm-.6-19.5l.3-.2.3.1v.5c-.1.3-.2.6-.5.8-.1-.4-.1-.8-.1-1.2z" class="R"/><path d="M26.7 51.3c.5.4 1.1.7 1.6 1l.1.4-2-1.2c.2-.1.2-.2.3-.2z" class="U"/><path d="M28.1 51.4l-1.1-.2c.1-.1.3-.1.5-.2.2 0 .3-.1.4-.1.1.2.2.3.2.5z" class="Q"/><path d="M28.9 15.8l-1.3.2.3-.3c.3-.3.7-.2 1 .1z" class="S"/><path d="M26.9 19.9c-.1.1-.2.1-.3.1v-.2l.3.1z" class="Z"/><path d="M24.9 29z" class="V"/><path d="M32.3 54.7c.2-.1.3-.2.4-.3l.2-.1c.1 0 .1-.1.1-.2v-.5c.2-.7.8-1.1 1.5-.9.1 0 .2.1.3.1 0 0 .1.1.2 0 .3-.2.6-.5.8-.7.5-.3.9-.7 1.3-1 .6-.5 1.1-1.1 1.7-1.6s.9-.9 1.3-1.4c.1 0 .1-.1.1-.2.1 0 .1-.1.2-.2 1-1.2 1.9-2.5 2.8-3.9l1.2-2c.1-.1.1-.2-.1-.2-.1-.1-.2-.1-.3-.2l2-.6c0 .1-.1.2-.1.3-.2.4-.4.8-.7 1.2l-1.3 2.1-2.8 3.8-.2.2-1.1 1.2-1.3 1.3-1.2 1.1-.8.7s-.1.1-.1.2c0 .3 0 .7-.1 1s-.1.9-.1 1.4c-.1.1-.1.1-.2.1l.2-2.3-.8.6c-.1 0-.1.1-.1.2 0 .4-.1.7-.4 1-.4.4-1 .5-1.4.3-.1 0-.2.1-.3.1l-.2.1-.8.5c.3-.6.2-.9.1-1.2z" class="R"/><path d="M31 48.1l.8-.4c.1 0 .1-.1.2-.1.2 0 .3-.1.4-.2l1.6-.9c.5-.3.8-.4 1.1-.7.1 0 .1-.1.2-.1l.3-.2c.1 0 .1-.1.1-.2v-.5c.1-.4.3-.9.6-1.2l.2-.1c.6-.4 1.4-.4 2.1 0h.2l1.3-.9c.2-.1.4-.3.6-.5l.8-.2c0 .1 0 .1.1.2.2.2.4.4.6.5l-.2.2-2.7 1.9c-.1.1-.2.2-.1.3v.6c-.1.6-.5 1-1 1.3-.1 0-.2.1-.3.1-.4.1-.9 0-1.3-.2 0 0-.1 0-.1-.1s-.2-.1-.3 0H36L33.8 48c-.3.1-.6.3-.9.5h-.2c-.5.2-.9.5-1.4.7 0-.2-.1-.5-.2-.7.1 0 0-.2-.1-.4z" class="V"/><path d="M51.4 29.2c.3.6.6 1.3.8 2 .2.6.3 1.1.4 1.7v.2c-.3-.1-.5-.2-.8-.2l-.5-.5-.3.6c-.3.7-.7 1.3-1.1 1.9l-.6.9c-.1 0-.1.1-.1.2-.2.2-.3.4-.5.6s-.3.3-.4.5c-.2.2-.4.4-.5.6l-.4.4c-.4.3-.8.8-1.1 1.1-.2.1-.3.1-.5.2-.1-.2-.3-.5-.4-.6l-.2-.2.9-.9c.3-.3.6-.6.9-1 .1 0 .1-.1.2-.2l.3-.3c.2-.2.4-.5.6-.8.2-.2.5-.5.6-.8.1-.1.2-.3.3-.4l.1-.1c.3-.4.5-.8.8-1.2.1-.1.1-.1.1-.2l.3-.6c.1-.1.2-.3.3-.5l.8-2.4z" class="W"/><path d="M51.9 42.8l.2-.3v-.1c.2-.5.4-1 .5-1.5s.3-1.2.5-1.7l.1-.5v-.5c0-.2 0-.4.1-.6l-.8.4c0 .6-.1 1.2-.2 1.8-.2.8-.5 1.7-.9 2.5 0 .1 0 .1-.1.1.1.4.2.8.2 1.2.1-.2.3-.5.4-.8z" class="T"/><path d="M52.8 35.4c-.3-.6-.7-1.2-1.1-1.7-.1-.2-.3-.4-.4-.5 0-.1-.2-.2-.3-.2l.3-.6.5.5c.1.1.2.3.3.4l.6.8.7 1.1.3.7c-.1.2-.3.3-.5.4 0-.3-.2-.6-.4-.9z" class="Q"/><path d="M49.4 37.8l.1.2c-.2.1-.5.2-.7.3s-.3.1-.5.2c-.2-.3-.3-.6-.5-.9.1-.2.3-.4.5-.6.1-.2.3-.3.4-.5l.6 1.1c0 .1.1.2.1.2z" class="Z"/><path d="M35.5 43.2l-.7 1.6c-.2 0-.5-.1-.7-.2s-.4-.2-.5-.3l.3-.8.9-.2c.2-.1.4-.1.7-.1zm.8-2l-.2.4-.6.1-1 .2.5-1.3c.3 0 .6.1.8.2.2.2.3.3.5.4z" class="d"/><path d="M45.1 38.5c0 .1.1.2.2.2.2.2.3.4.5.7l-2.3.6h-.1c0-.1.1-.1.1-.1.2-.1.3-.3.4-.4.1 0 .1-.1.2-.1l1-.9zm-1.2 2.8c-.5.5-1 .9-1.6 1.3-.2-.2-.4-.3-.6-.5 0 0-.1-.1-.1-.2l1.5-.4.8-.2z" class="a"/><path d="M43.9 39.5l-.4.4c-.1 0-.1.1-.1.1-.3.1-.5.2-.8.2.1-.3.2-.5.3-.7s.3-.3.4-.4c.2.1.4.2.6.4z" class="R"/><path d="M51.6 44.8v1.1l-1.1-1.2c.4 0 .8 0 1.1.1z" class="Z"/><path d="M49.4 41v.1l-.3 2.3c-.1 0-.1-.1-.1-.1.2-.9.2-1.7.3-2.6l.1.3z" class="Q"/><path d="M47.4 38.1c0 .1-.1.3-.1.4-.1.2-.1.3-.2.5-.3.1-.5.2-.8.2a5.73 5.73 0 0 1 1.1-1.1zm5.4-2.7c.2.3.3.6.4.9-.1.1-.3.2-.5.3l.1-1.2z" class="T"/><path d="M36.5 43c.1.2 0 .4.1.6l-.2.1V43h.1z" class="e"/><path d="M41.8 40.4c.1-.2.2-.3.3-.5 0 0 .1 0 .1.1-.1.1-.2.2-.2.3s-.1.1-.2.1zm-1.7 2.2c0-.2.2-.2.2-.4.1 0 .2-.1.4-.1-.2.2-.4.3-.6.5z" class="Y"/><path d="M42.1 40.3c0-.1.1-.2.2-.3l.3.2c-.2 0-.4.1-.5.1z" class="S"/><path d="M50.3 44.4l.1-.2.1.4c-.1 0-.2-.1-.2-.2z" class="T"/><path d="M40.8 42.1z" class="Y"/><path d="M40.4 42.2z" class="S"/><path d="M22.4 34.7l-.2.3c-.5.5-.9 1-1.3 1.6-.3.4-.6.7-.8 1.1-.1 0-.1.1-.1.2l-.1.1c-.1.1 0 .1 0 .2.6.8.5 2-.3 2.6-.3.2-.6.3-.9.4h-.9c-.3.4-.5.9-.8 1.3-.1.1-.1.2-.2.3-.1.2-.3.4-.4.6h-1.2L16 42c0-.1.1-.1.1-.2.1-.1.1-.2.2-.3l.1-.1c.1-.3.3-.5.4-.7.1-.1.1-.2 0-.3-.5-.9-.3-2 .6-2.6.4-.2.8-.3 1.2-.3.2 0 .3 0 .4-.2v-.1l.1-.2.8-1.1c.1-.1.2-.3.3-.4s.2-.2.2-.3l.2-.2 1-1.2.9-1c.2-.2.5-.5.7-.8.1.2.3.4.4.5s.2.3.4.3l-1.5 1.8-.1.1z" class="b"/><path d="M9.2 40.3l.1-1.7.1-.7c.2-1.7.7-3.4 1.3-4.9.2-.6.5-1.1.8-1.6l.5-.8.1-.2 1.2-1.7s.1 0 .1.1c.1.2.2.3.3.5 0 .1.1.1.2.1l-.3.9-.1.2c-.4.5-.8 1.1-1.1 1.7-.1.1-.1.2-.2.3-.2.2-.3.5-.4.7l-.6 1.1c-.7 1.5-1.1 3-1.3 4.6l-.1.5c0 .2 0 .5-.1.7v1.6c0 .3.1.7.1 1-.2-.1-.4-.1-.7-.2.2-.8.1-1.5.1-2.2z" class="T"/><path d="M17 46.6c.3.1.5.2.7.4 1.6.8 3.3 1.5 5 2.1h.2s.1.1.2.1.2.1.3.1a.9.9 0 0 0 .5.1c.5.2 1 .3 1.6.4l.9.2-.5.2h-.1l-1.2.4-1.7-.5c-.1 0-.1 0-.1.1l-.2 1h-.2c.1-.4.1-.7.2-1.1 0-.1 0-.1-.1-.2-.5-.1-.9-.3-1.3-.5-.9-.3-1.8-.7-2.7-1.1-.7-.3-1.4-.7-2.1-1.1 0-.1 0-.1.1-.1.2-.1.4-.3.5-.5zm-7.1-5V40c.6 1 1.3 1.9 2.1 2.7l.3.3c-.5 0-1-.1-1.5-.2l-.9-1.2z" class="Q"/><path d="M13.6 45.5c-.4-.3-.8-.7-1.2-1l-.1-.2 1 .1 1.3.1h.3l.2.6-.4.1c-.2 0-.3.1-.5 0-.1 0-.1 0-.1.1s.1.2 0 .3l-.2-.1c-.2.1-.3.1-.3 0zm.7-2.9l.1.6h-1.2l-.2-1h.1c.3-.2.6-.3.9-.3v.2l.3.5z" class="c"/><path d="M15 45.3l-.2-.6c.3 0 .7 0 1 .1l-.3.8s-.1.1 0 .2c-.1.1-.1.2-.2.4l-.3-.9z" class="d"/><path d="M23 48.6l.4-1.6.2.1-.4 1.6c-.1 0-.2 0-.2-.1z" class="b"/><path d="M23.6 47.1l-.2-.1c0-.3.2-.7.3-1v-.2l.2-.1c-.1.3-.1.6-.2.8-.1.3-.1.5-.1.6z" class="Y"/><path d="M16.4 47.4c-.3-.1-.5-.3-.8-.5-.1-.3-.3-.6-.3-.9.1-.1.1-.3.2-.4l1.5.9.1.1c-.2.3-.4.5-.7.8.1-.1 0-.1 0 0z" class="c"/><path d="M14.6 47.5l-.3.8c-.3-.1-.7-.3-.9-.5l.3-.9.4-.9c.2.5.3 1 .5 1.5z" class="X"/><path d="M19.4 55c-.2 0-.4-.1-.6-.2-1-.4-1.9-1-2.8-1.5h1.1v.1l1.6.9c.1 0 .2.2.2.2l.5.5z" class="T"/><path d="M17 53.3h-.6v-.1c-.2-.3-.2-.6-.2-.9h1l.8 1.1c-.3 0-.7-.1-1-.1z" class="R"/><path d="M20 53.1l-.9.1-.1-.1c.2-.3.3-.8.1-1.2.3-.1.6-.1.8-.1.3.5.2.9.1 1.3z" class="a"/><path d="M21.1 55.3l.8.2c.1 0 .2.1.3.1.5.2 1 .3 1.6.4h.1c-.2.1-.4.2-.6.2L22 56c-.1-.1-.2-.1-.3-.1l-.6-.6z" class="T"/><path d="M19.3 57.2l2.1-.4c.1.1.2.1.3.3l-.1.1c-.5.2-.9.3-1.4.4-.3-.1-.6-.2-.9-.4z" class="b"/><path d="M25.5 58.4c.2-.1.4-.1.6-.2l1-.3h.2c-.2.3-.5.6-.8.9-.4-.1-.7-.3-1-.4z" class="X"/><path d="M19.3 52a1.39 1.39 0 0 1-.2 1.1c-.3-.3-.5-.7-.8-1l1-.1z" class="R"/><path d="M21.7 57.8v-.7l.3.2v.5c0 .1-.2.1-.3 0zM22 56v.2l-.3-.2c.1-.1.2-.1.3 0z" class="X"/><path d="M14.1 45.9z" class="c"/><path d="M19.4 55.1z" class="T"/><path d="M20.4 30.3l-1.1 1.5c-.1.1-.1.2 0 .3.2.3.1.6-.2.8 0 .1-.1.1-.2.1-.2 0-.3.1-.4.2l-1.3 2.2v.2c-.1 0-.1.1-.1.2-.1.1-.2.2-.2.4-.1.1-.1.2-.2.3-.2.3-.3.7-.5 1-.1.1-.1.2-.1.3-.1.1-.2.3-.4.4v-.1l.7-1.5c.1-.1.1-.2.1-.3l.3-.6c.1-.1.1-.1.1-.2.1-.1.2-.3.3-.5l1.1-1.9c.1-.1.1-.2 0-.2-.2-.2-.2-.6 0-.9a.47.47 0 0 1 .6-.1c.1 0 .1 0 .2-.1l1-1.4c.2-.1.3-.1.3-.1z" class="R"/><path d="M18.1 25.8l-1.1 1c-.3 0-.5-.1-.7-.1.1-.3.3-.6.5-1s.3-.5.4-.7h.1c0 .1 0 .1.1.1l.3.2c0 .1.2.3.4.5z" class="f"/><path d="M15.5 28c-.2.4-.3.8-.4 1.2-.1 0-.2 0-.3-.1-.2-.1-.4-.2-.6-.4.1-.4.3-.8.4-1.1.3 0 .6.1 1 .2 0 0 0 .1-.1.2zm1.1-2.3c-.1.3-.3.6-.5 1l-1.1-.2c.1-.1.2-.3.2-.5.1-.2.2-.4.3-.7.3 0 .5.1.7.2s.3.2.4.2z" class="c"/><path d="M14.5 27.6c-.1.4-.3.7-.4 1.1l-.2.6c-.1 0-.1 0-.2-.1s-.2-.3-.3-.5l-.1-.1c.3-.3.5-.7.8-1l.1-.1.3.1z" class="f"/><path d="M11.3 28.8c0-.5 0-1 .1-1.4h.6v.9l-.7.5z" class="U"/><path d="M28.9 20.7c0-.4-.2-.7-.4-1l-.1-.2c.6-.2 1.2-.3 1.8-.4l.9-.1h.4c.7-.1 1.3-.1 2-.1.1 0 .2-.1.2-.1.3-.7 1-1.1 1.7-1 .5.1.9.3 1.2.7.1.2.2.3.2.5h.2c1 .1 2 .3 3 .5.1 0 .3 0 .4.1-.8.2-1.5.5-2.3.8-.4-.1-.8-.1-1.3-.2-.1 0-.1 0-.2.1a.78.78 0 0 1-.4.4c-.4.3-.8.4-1.3.4-.1 0-.2-.1-.3-.1a1.59 1.59 0 0 1-1-.8c0-.1-.1-.1-.1-.1h-.7c-.4 0-.8.1-1.3.1l-2.2.4-.4.1z" class="T"/><path d="M35.1 23.2c.5.3 1.1.6 1.6 1l.4.2c-.1.4-.2.7-.5 1.1l-.1.1-.3-.1c-.1-.1-.2-.1-.3-.2l-1-.7c-.2-.1-.3-.2-.5-.3l-.5-.3c.3-.3.8-.5 1.2-.8z" class="Z"/><path d="M42 20l1.5.6.1.1v.1c0 .4 0 .7-.2 1-.3-.2-.6-.3-1-.4-.2-.1-.5-.2-.7-.3-.4-.2-.8-.3-1.3-.4l-.6-.1 1.7-.6h.5z" class="f"/><path d="M47.1 22.7v-.1c-.6-1.1-1.6-2.1-2.7-2.8l-.2-.1c.5 0 .9 0 1.3.2.3.3.6.5.9.8.8.8 1.4 1.8 1.8 2.8l.2.4h-.1c-.3-.4-.7-.8-1.2-1.2 0 .1 0 .1 0 0z" class="R"/><path d="M32.7 23.4l-1.3-.6c.1-.3.2-.5.4-.7.1-.1.2-.2.3-.4h.1c.1.1.2.1.3.2l1.2.6c0 .1.1.1.2.1 0 0 0 .1-.1.1l-1 .7h-.1z" class="Z"/><path d="M40.3 19.5c-.1-.1-.3-.1-.4-.1s-.1-.1-.1-.1l-1-.7h1l.3.3c.1.1.3.2.5.3v.3h-.3z" class="Q"/><path d="M32.5 25.1l-.5 1-.6 1.1c-.1.1-.2.1-.3.1l.9-1.7c.1-.1.1-.2.1-.3.1 0 .2-.2.4-.2z" class="Y"/><path d="M35 21.1l-.8 1.2s-.1.1-.1.2H34c-.1 0-.1 0-.2-.1l.9-1.4c.1 0 .2 0 .3.1z" class="X"/><path d="M33.6 26.1l-.4-1.6c.1-.1.1-.1.2-.1l.3 1.2c0 .2.1.3.2.5h-.3z" class="V"/><path d="M40.6 19.5V19h.7c.2 0 .3 0 .4.3l-1.1.2z" class="d"/><path d="M33.4 24.4c.1-.1.2-.1.3-.2l.8.1c.2.1.4.2.5.3h-.2c-.5-.1-1-.2-1.4-.2z" class="Q"/><path d="M48.4 23.5l.3.1c0 .2.1.4.1.6l-.2-.2-.2-.5z" class="V"/><path d="M32 25.3s0 .1 0 0zm2-2.8z" class="S"/><path d="M32.5 25z" class="Y"/><path d="M23.9 20.5c-.6-.1-1.1-.1-1.7-.1h-1.6a6.42 6.42 0 0 1 1.3-1l2.2.1h.2c-.2.2-.3.6-.4 1z" class="U"/><path d="M17 24.9zm2.1-4.3z" class="S"/><path d="M48.6 34.5c-.2.3-.4.6-.6.8l-.5-.7c0-.2.1-.4.2-.5.1-.5.3-1 .3-1.5v-.2c.1-.4.2-.7.2-1.1 0-.1.1-.3.1-.4v-3.1c0-.6 0-1.1-.1-1.7l-.3-1.3a5.73 5.73 0 0 1 1.1 1.1v.1c.2 1 .3 2 .3 3 0 .5 0 1.1-.1 1.6l-.1.6-.2 1.3v.2c-.1.2-.1.4-.1.7 0 .1-.1.2-.1.3l-.1.8z" class="R"/><path d="M46.7 23.8c-.6-.1-1.1-.1-1.7-.1h-.6c-.3 0-.6 0-1 .1-.1 0-.2 0-.2.1-.1.3-.5.5-.8.3-.1 0-.2-.1-.3-.2 0-.1-.1-.1-.2-.1l-.5.1c0-.1 0-.2.1-.3l.5-.1c.1 0 .1 0 .1-.1.1-.3.4-.5.8-.4.1 0 .3.1.4.3 0 0 0 .1.1.1.3 0 .5 0 .8-.1h1.9c.1 0 .4.2.6.4z" class="V"/><path d="M52.2 33.3c-.1-.1-.2-.3-.3-.4.3 0 .6.1.8.2l.1.4c-.3-.1-.4-.1-.6-.2z" class="U"/><path d="M47.1 22.7z" class="S"/><path d="M46.1 42.6l-.5-.4-.2-.1c.2-.4.5-.8.7-1.2.2.2.5.4.7.6l.1.1c-.1.3-.4.7-.6.9-.1 0-.1.1-.2.1z" class="V"/><path d="M49.9 45.8c-.5.7-1.1 1.4-1.7 2.1v.1c-.3.2-.6.3-.9.5l.5-.5.3-.4v-.1c.1 0 .1 0 .1-.1.5-.5.9-1.1 1.3-1.7.1-.2.1-.2.3 0l.1.1z" class="T"/><path d="M48.1 47.5l-.3.4.5-1.5c0-.2.1-.3-.1-.5a.47.47 0 0 1 .1-.6s.1-.1.2-.1.2-.1.2-.2 0-.2.1-.3.2.1.1.2 0 .1 0 .2v.2a.76.76 0 0 1 .2.4c0 .2-.2.3-.4.3-.1 0-.1 0-.1.1l-.4 1.3c-.1 0-.1.1-.1.1z" class="Q"/><path d="M51.5 48.1c-.1 0-.3 0-.4.1h-.4v-1.6c.3.3.6.7.9 1.1l-.1.4z" class="Z"/><path d="M50.7 46.5v.8c0 .1-.3.3-.5.4-.2-.1-.4-.2-.5-.3s-.2-.1-.1-.2l1.1-.8c-.1 0 0 .1 0 .1z" class="c"/><path d="M47.1 49.9c-.8 1.6-1.7 3.1-2.8 4.5-.4.5-.8.9-1.2 1.3l-.1.1c-.2 0-.4.1-.6.1.4-.4.8-.7 1.1-1.1 1.2-1.3 2.3-2.8 3.1-4.4.1-.2.3-.5.4-.8-.3.2-.7.3-1 .4l-.8.3H45c-.5.2-1.1.4-1.7.5-.1 0-.2.1-.2.2-.2.7-.9 1.1-1.6.9-.2-.1-.4-.2-.6-.4-.1-.1-.2-.1-.3-.1-.4.1-.9.1-1.3.2v-1l1.2-.2c.1 0 .1-.1.1-.1.2-.7.9-1.1 1.6-1 .3.1.5.2.7.5 0 0 .1.1.1 0 .6-.2 1.3-.3 1.9-.6.1 0 .3-.1.4-.1.7-.2 1.3-.5 1.9-.8.3-.1.6-.2.9-.4.5-.2.9-.5 1.3-.8 0 .1.1.2.1.2a.55.55 0 0 0 .5.3v.3c-.8.6-1.7 1.1-2.6 1.6-.1 0-.2.1-.2.2l-.1.2z" class="Q"/><path d="M45.2 50.4l.8-.3a11.51 11.51 0 0 1-1.7 1.4c-1.1.8-2.3 1.5-3.5 2.1-.1 0-.1.1-.1.2 0 .2-.1.5-.3.6s-.5.1-.7-.1c-.1-.1-.2-.1-.2 0l-2.8 1.1c-.1 0-.2 0-.2.1-.2 0-.4-.1-.6-.1.1 0 .2-.1.4-.2.1 0 .2 0 .2-.1h.1c.9-.3 1.8-.7 2.7-1.1.1 0 .1-.1.1-.2 0-.3.1-.5.3-.6s.5-.1.7.1c.1.1.2.1.3 0 1.1-.6 2.1-1.2 3.1-1.9l1.4-1z" class="T"/><path d="M36.4 55.9c-.1 1.2-.4 2.4-.7 3.5-.1.1-.3.1-.5.1.4-1.1.8-2.2.9-3.3l.1-.4s.1.1.2.1z" class="a"/><path d="M47.3 49.6l2.4.2h.7c0 .1-.1.3-.1.4-1 0-2-.2-3-.4h-.2l.2-.2z" class="W"/><path d="M42.3 55.9z" class="Q"/><path d="M43 55.8z" class="S"/><path d="M12.8 50.5c-.9-1-1.6-2.1-2.2-3.3l-.1-.1c0-.4.1-.7.2-1.1.5 1.3 1.2 2.4 2 3.5l.1.1v.9z" class="T"/><path d="M14.3 52.9c-.2-.1-.4-.2-.6-.2v-.8h.3c0 .1.2.1.3.1.2.1.5.1.7.1 0 .3 0 .6.1.9h-.2c-.2 0-.4-.1-.6-.1z" class="V"/><path d="M15 52.1c-.2 0-.5-.1-.7-.1-.1-.2-.3-.3-.5-.5 0-.1-.1-.1-.1-.1 0-.3 0-.5.1-.8l.3.3v.1l1.3 1.2c-.2 0-.3-.1-.4-.1z" class="T"/><path d="M13.8 45.7c-.1.4-.1.8-.1 1.2l-.3.9c0-.6 0-1.2.1-1.8v-.4c.2 0 .2 0 .3.1zm.3 5.2l-.3-.3c0-.2.1-.4.1-.6l.2.9z" class="R"/><path d="M13.7 51.4c.1 0 .1.1.1.1l.1.4h-.3c0-.2.1-.3.1-.5z" class="S"/><path d="M11.5 31.4l-.1-.4-.1-.7v-.8l.6-.6v1.7l-.4.8z" class="U"/><path d="M11.4 30.3l.1.7c-.3-.3-.5-.5-.7-.8.1-.1.2-.3.3-.4 0 .2.1.3.3.5z" class="W"/><path d="M36.6 18.4c.3 0 .5-.1.7-.1s.4 0 .6-.1l1-.1h1.6c0 .2.1.4.1.6h-1.8c-.3 0-.5 0-.8.1-.4 0-.8.1-1.2.2 0-.3-.1-.4-.2-.6z" class="R"/><path d="M30.1 16.3c.4.6.7 1.2 1 1.8l.4.8h-.4c-.1-.3-.3-.6-.4-.9-.3-.6-.7-1.2-1.2-1.8.2.1.4.1.6.1z" class="a"/><path d="M37.3 18.2c-.2.1-.4.1-.7.1l.5-.6a.76.76 0 0 1 .4.2l-.2.3z" class="X"/><path d="M37.3 18.2l.3-.3c.1 0 .2.1.3.2-.2.1-.4.1-.6.1z" class="S"/><path d="M41.8 39.7l-2.5-1.5-1.6-.9c-.6-.3-.8-.5-1.2-.7l-1.5-.9c-1.2-.7-2.4-1.3-3.7-1.9l-4.9-2.2-.1-.1c.2-.2.4-.5.5-.8v-.5h.1c.8.3 1.5.7 2.2 1l4.3 2.1 2.1 1.1 1.4.7c.4.3.8.5 1.2.7l3.1 1.8c.4.3.8.5 1.2.8 0 .1-.2.2-.2.3-.1.4-.3.7-.4 1z" class="W"/><path d="M36.6 36.6c.4.2.8.4 1.2.7l-1.4 3.6-.1.3c-.2-.1-.3-.2-.4-.3-.2-.1-.5-.2-.8-.2l1.1-2.8c.1-.5.2-.9.4-1.3zm-3.1 7.6a.55.55 0 0 0 .5.3c.2.1.5.1.7.2l-.3.6s-.1.1-.1.2c-.2.3-.3.7-.5 1l-1.6.9a.76.76 0 0 1-.4.2l1.5-3.3.2-.1z" class="X"/><path d="M31 48.1c.1.2.2.4.2.5.1.2.1.5.2.7l-.5.3-.6.3c0-.3 0-.6-.1-.9-.1-.1-.1-.3-.2-.4l1-.5z" class="a"/><path d="M20 53.1c.1-.4.1-.8.1-1.2l1.1-.2 1.2-.3h.2l2-.6 1.2-.4h.1l.1.1c.1.2.2.4.3.5a1.38 1.38 0 0 0 .3.4l-1.7.6-2.4.7h-.3l-1.5.3c-.2 0-.4.1-.7.1z" class="V"/><path d="M22.1 52.7h.2c-.2 1-.3 1.9-.3 2.9-.1 0-.2 0-.3-.1l.3-2.7c.1 0 .1 0 .1-.1z" class="X"/><path d="M26.5 51.4c-.1-.2-.2-.3-.3-.4-.1-.2-.2-.4-.2-.6 0 0 0-.1-.1-.1l1-.4.3.8.3.3c-.1.1-.3.1-.5.2-.1 0-.2.1-.3.1s-.1.1-.2.1z" class="a"/><path d="M23.9 49.4z" class="U"/><g class="T"><path d="M17.1 24.9l1.5-1.1c1.5-1.1 3.2-2 4.9-2.7h.1c0 .4.1.8.3 1.2v.1l-1.2.5c-1.1.5-2.2 1.2-3.2 1.8l-.1.1c-.2.1-.4.2-.6.4l-.8.6-.8-.8c-.1 0-.1 0-.1-.1z"/><path d="M18 25.8z"/></g><path d="M30.9 49.6l.5-.3c.5-.2.9-.5 1.4-.7 0 0 .1-.1.2 0l-.7 1.3c-.2.3-.3.5-.4.8 0 0-.1.1 0 .1l-1.3-.1h-.2c.2-.4.4-.7.5-1.1z" class="X"/><path d="M36 52h-1c-.1-.3-.1-.7-.1-1h2.3c-.4.4-.8.7-1.2 1z" class="c"/><path d="M31.9 50.8v-.1h.1c.4-.3.8-.7 1.2-1s1-.9 1.5-1.4 1-.9 1.4-1.4c0 0 .1 0 0-.1.1-.1.2-.1.3 0l-.9.9-1.3 1.2c-.7.7-1.4 1.3-2.2 1.9l-.1.1v-.1z" class="Y"/><path d="M26.3 57.4z" class="X"/><path d="M26.7 56.7l-2-.2-1.1-.2c.2-.1.4-.2.5-.3.4.1.8.2 1.2.2.5.1 1 .1 1.5.1l-.1.4z" class="T"/><path d="M28.9 20.7l.5-.1h.1c0 .4 0 .8-.2 1.3l-2.1-.7h-.1c.5-.2 1-.3 1.5-.4l.3-.1z" class="Z"/><path d="M29.1 21.8l.3.1.1.1c-.9.5-1.7 1.1-2.5 1.8l-.1.1h-.5l2.7-2.1z" class="R"/><path d="M23.3 31.9l.6-.6c.2.1.2.3.4.5.1.1.3.3.4.3-.2.2-.4.5-.6.7-.2 0-.3-.2-.4-.3-.2-.2-.4-.4-.4-.6z" class="X"/><path d="M30.7 27.9c-.3.1-.5.2-.7.3-.5.2-.9.5-1.4.7s-1 .6-1.5.9c-.1 0-.1.1-.2.1l.7-.7.6-.3c.3-.2.6-.4 1-.5l1.7-.9.1-.1c.1 0 .2-.1.3-.1.2 0 .4-.1.5-.2.5-.2 1-.5 1.6-.7 0 0 .1 0 .1-.1 0 .1.1.1.1.1s.2 0 .2.1c-.1 0-.2 0-.2.1-.2.1-.4.1-.6.3l-2 .9c-.1-.1-.2-.1-.3.1zm-3.9 2z" class="e"/><path d="M27.6 29.1z" class="S"/><path d="M30.4 53.4c.8.3 1.5.7 2.3 1h.1c-.1.1-.2.2-.3.2l-2.2-1c0-.1 0-.1.1-.2z" class="U"/><path d="M38.8 50.7h.5v1l-1.7.2 1.2-1.2z" class="c"/><path d="M44.9 49.4c-.3-.1-.5-.2-.8-.2l-2.9-.9h-.1c0-.1.1-.2.1-.2.1.1.2.1.3.1l3.7 1.1s-.1 0-.3.1z" class="W"/><path d="M40.1 47.9c-.4-.2-.8-.3-1.2-.5-.3-.1-.7-.2-1-.4.1 0 .2-.1.3-.1.3.1.6.3.9.4s.7.3 1 .4c0 0 .1 0 .1.1l-.1.1z" class="e"/><path d="M36.7 46.8c0 .5.1 1.1 0 1.7h-.2v-1.6l.1-.1h.1z" class="W"/><path d="M36.3 46.8zm0-.1z" class="S"/><path d="M40 42.7zm0-.1zm.1 0z" class="Y"/><path d="M47 36.3c-.2-.4-.4-.7-.7-1l-.1-.2.8-.5c.1 0 .3 0 .3-.2l.1.2.5.7c-.2.3-.4.5-.6.8l-.3.3v-.1z" class="Z"/><path d="M50.3 32c-.3-.3-.6-.6-1-.9l.1-.6c.4.3.8.6 1.2 1-.2.2-.2.4-.3.5zm-1 5.6c0-.6-.1-1.1-.1-1.7 0-.1.1-.1.1-.2l.2 2.1c-.1 0-.2-.1-.2-.2z" class="Q"/><path d="M49.8 32.8l-.8-.1v-.2l.9.1s0 .1-.1.2z" class="U"/><path d="M47 36.3c0 .2 0 .2-.1.3l.1-.3zm.4 1.7z" class="T"/><path d="M43.1 38.9l.2.1c-.1.2-.3.3-.4.4-.2.2-.3.4-.3.7l-.3-.1s-.1-.1-.2-.1l-.3-.2c.1-.3.3-.6.5-.8.1-.1.2-.2.2-.3l.5.3c0-.1 0 0 .1 0z" class="V"/><path d="M52.2 33.3z" class="S"/><path d="M15.3 39.7c.3.6.7 1.1 1.1 1.7 0 .1-.1.2-.2.3l-1-1.4-.3-.3c-.1-.1-.1-.3-.2-.4l.3-.3.1.2.2.2z" class="U"/><path d="M22.5 32.8c-.2.1-.3.2-.5.3l-1.2.9v-.3c.2-.2.5-.4.7-.6L23 32s.1-.1.2-.1c-.2.2-.4.5-.6.7 0 0-.1 0 0 0l-.1.2z" class="e"/><path d="M20.3 35.4c-.3 0-.5.1-.8.2l-1 .3c0-.1.1-.1.2-.2l.3-.2 1.5-.4h.1c-.1.2-.2.2-.3.3z" class="Y"/><path d="M18.1 36.2l1.1.7-.2.3-1-.7v-.1c0-.1 0-.1.1-.2z" class="W"/><path d="M22.5 32.8zm.1-.1zm-2.3 2.7z" class="S"/><path d="M13.9 29.3l.2-.6c.2.1.4.3.6.4.1 0 .2.1.3.1-.4 1.1-.6 2.3-.8 3.5 0 .2 0 .3-.1.5v.6c0 .5-.1.9-.1 1.4-.1.7-.1 1.3-.1 2v2.1c0 .3 0 .6.1.9v.6l.2 1.3c-.3 0-.7.1-.9.3h-.1l-.1-.5v-.4l-.3-3.4V36l.1-1.1.3-1.9c.1-.3.1-.7.2-1s.2-1 .3-1.5l.2-1.2z" class="Q"/><path d="M10 38.8l.8-.4c.1 0 .1-.1.1-.1 0-.3.2-.6.5-.7.2 0 .4.1.5.2s.1 0 .2 0l.6-.3v.3c-.2.1-.4.1-.6.2-.1 0 0 .1-.1.1 0 .3-.3.6-.7.6-.1 0-.2 0-.3-.1s-.2-.1-.2 0c-.4.2-.7.4-1 .6l.2-.4zm2.8-3.1c-.3-.6-.5-1.3-.7-1.9-.1-.2-.1-.5-.2-.7.1-.2.2-.5.4-.7.1.3.1.5.2.8.1.5.2.9.4 1.4l-.1 1.1z" class="U"/><path d="M14.9 40l.1.2c-.3.8-.5 1.6-.7 2.4l-.1-.5s0-.1.1-.2l.6-1.9z" class="R"/><path d="M11.9 42.7l.9-1.3.1-.2v.4l-.9 1.3-.1-.2z" class="V"/><path d="M15 52.1h1.1c0 .3.1.6.2.9v.1h-.5c-.3 0-.6-.1-.9-.1.1-.3.1-.6.1-.9z" class="a"/><path d="M14.1 33.5v-.4l2.7 2.2.1.1c0 .1 0 .2-.1.2l-.1-.1c-.6-.4-1.2-.9-1.7-1.3l-.9-.7zm1.4-5.5z" class="W"/><path d="M14.7 39.6c-.2.2-.4.5-.6.7H14v-.4c.2-.2.4-.5.6-.7l1.1-1.1a.78.78 0 0 0 .4-.4l1.5-1.5c.1 0 .1-.1 0-.2.2-.1.5-.2.6-.4l.3-.3c.1-.1-.1.2.1.2 0 .1-.1.1-.2.2s-.3.2-.4.3c-.1 0-.1.1-.1.2s-.1 0-.1.1l-2.1 2v.1c-.1.1-.3.2-.4.4-.1.1-.2.2-.3.4s-.2.3-.3.4z" class="V"/><path d="M18.6 35.7c-.1 0 0-.2-.1-.2.3-.3.7-.6 1-.9.4-.3.8-.7 1.2-.9v.3l-1.2 1-.7.6-.2.1z" class="W"/><path d="M18.3 35.7c-.2.2-.4.3-.6.4l-.9.3c0-.1.1-.2.2-.3.2 0 .3-.1.5-.2l.3-.1.5-.1z" class="U"/><path d="M17.6 35.9l-.3.1-.3-.2c0-.1 0-.2.1-.2.2.1.4.2.5.3z" class="W"/><path d="M23.3 31.9z" class="e"/><path d="M16.4 36.5c-.8.2-1.5.5-2.3.8-.1 0-.1.1 0 .2.3.5.5 1 .8 1.5l-.3.3-.1-.1-.7-1.2v-1l2.7-.9c0 .2-.1.3-.1.4z" class="U"/><path d="M17 35.8l.3.2c-.2.1-.3.1-.5.2.1-.2.1-.3.2-.4z" class="S"/><path d="M32.9 20.1l-.6.3c-.2.1-.1.1-.1.3.2.4.3.8.4 1.2-.1 0-.2-.1-.3-.2-.1-.4-.2-.7-.4-1 0-.1-.1-.1-.2 0l-.8.5-.5-.2.8-.5c.1-.1.3-.1.4-.2.4-.1.8-.1 1.3-.2z" class="R"/><path d="M47.4 34.5c-.1.1-.2.1-.3.2-.3.1-.6.3-.8.5-.2-.2-.2-.4-.4-.5 0-.1 0-.1-.1-.2-.2-.3-.4-.5-.6-.8-.1-.1-.2-.1-.3-.1-.7.2-1.4 0-1.8-.5-.2-.2-.3-.4-.4-.6 0-.1 0-.1-.1-.2v-.1c-.1-.4 0-.8.1-1.2v-.2l-1.5-1.4c-.2-.2-.5-.4-.7-.6l-.4-.4c-.2-.2-.5-.4-.8-.6-.4-.3-.8-.7-1.2-1l-1.6-1.2c.1 0 .1-.1.1-.1.2-.3.4-.7.5-1.1l.5.3c.1.1.2.1.3.2l.2.2.6.4.9.7s0 .1.1 0l.4.4.7.6.1.1 2.7 2.5c.1.1.2.1.3.1 1-.3 2 .3 2.3 1.3v.2c.1.3.1.6 0 .9h.7c0 .1 0 .1-.1.2h-.5c-.1 0-.1 0-.1.1v.2l.4.5.2.4c.1.1.3.4.6.8z" class="U"/><path d="M41.5 23.7c0 .1-.1.2-.1.3l-.2.9L41 26s0 .1-.1.2c-.4-.2-.9-.3-1.3-.2v-.2l.1-.3c.1-.4.2-.8.2-1.3 0-.1.1-.2.1-.3.1-.4.2-.8.2-1.2l.3-2c.4.1.8.2 1.3.4v.1c0 .4 0 .8-.1 1.3s-.2.8-.2 1.2z" class="X"/><path d="M40 24c0 .1 0 .2-.1.3l-2.2.6c-.1-.1-.2-.1-.3-.2.3-.1.7-.3 1-.3.6-.1 1.1-.3 1.6-.4z" class="V"/><path d="M29.5 20.6l.9.3.5.2.2.1 1.1.5c-.1.1-.2.2-.3.4-.2.2-.3.5-.4.7-.7-.3-1.3-.6-2-.8l-.1-.1c.1-.4.1-.8.1-1.3z" class="U"/><path d="M33.8 26.1l2.1-.8c.1.1.2.1.3.2l-2.3.9c0-.1-.1-.1-.2-.1s-.1 0-.1-.1l.2-.1z" class="W"/><path d="M31.3 27.2z" class="S"/><path d="M47.9 30.2l-.9 2c-.1.1-.1.1-.1.2-.2.2-.3.5-.4.8l-.1-.2.3-.6c.1-.1.1-.1.1-.2.3-.6.6-1.3.8-1.9.1-.1.1-.3.2-.5.1-.1.1-.3.2-.4.2-.5.3-.9.4-1.4l.1-.4v.9l-.3 1c-.2.3-.3.5-.3.7z" class="b"/><path d="M47.9 30.2c.1-.2.1-.4.2-.6l.3.2v.5c-.1 0-.1-.1-.2-.1 0 .2.1.4.2.6 0 .1 0 .3-.1.4l-.4-1z" class="Q"/><path d="M46.9 32.5c0-.1 0-.2.1-.2h1v.2h-1.1z" class="U"/><path d="M48.4 29.8l-.3-.2.3-1c.1.4.1.8 0 1.2zm-.3.4c.1 0 .2.1.2.1v.5c-.1-.2-.1-.4-.2-.6z" class="S"/><path d="M47.9 29.5a.76.76 0 0 1-.2.4l-.1-.1c-2.1-1.4-4.3-2.6-6.7-3.5v-.1c0-.1 0-.1.1-.2 1.2.4 2.3.9 3.4 1.4 1 .5 2 1.1 3 1.7-.5-1.2-1.1-2.4-1.8-3.6l-1.3-1.9h.5c.7 1 1.3 2 1.9 3.1l1.1 2.5c0 .2 0 .3.1.3zm-.1 18.4z" class="Q"/><path d="M48.1 47.5s0-.1 0 0c0-.1 0 0 0 0z" class="W"/><path d="M13.9 51.9l-.1-.4c.2.1.4.3.5.5-.1 0-.3 0-.4-.1z" class="R"/><path d="M40.6 32.5c0 .9-.8 1.7-1.7 1.8-.1 0-.1.1-.1.2l-.5 1.5c-.4-.2-.8-.4-1.2-.7l.5-1.3c0-.1 0-.1-.1-.2a1.85 1.85 0 0 1-.1-2.5c.3-.3.6-.5 1-.6.1 0 .2-.1.2-.2.1-.5.3-1 .4-1.5h.1c.3.3.8.4 1.2.4-.1.5-.3 1-.4 1.5v.2c.4.3.7.8.7 1.3v.1z" class="X"/><path d="M36.5 48.5h.2V51h-.2v-2.5z" class="V"/><path d="M31.9 50.7z" class="S"/><path d="M34.3 28c.1.6.3 1.1.4 1.7 0 .1.1.2.2.2.2.1.4.4.3.6 0 .1-.1.1-.1.2-.1.1-.1.2-.1.4l.3 1.3c.1.5.2.9.2 1.3a.9.9 0 0 0 .1.5c.1.2 0 .1 0 .1h-.1c-.1-.1-.2-.3-.2-.5-.1-.9-.3-1.8-.5-2.6 0-.1 0-.2-.2-.2s-.3-.1-.3-.3c-.1-.2-.1-.4.1-.5s.2-.3.1-.5l-.3-1.5.1-.2z" class="e"/><path d="M40.3 29.2c-.4 0-.9-.1-1.2-.4H39l.3-1.1c.3.2.5.4.8.6.1.1.3.2.4.4l-.2.5z" class="d"/><path d="M30.8 27.8c.1-.1.2-.1.3-.2-.2.5-.5 1-.7 1.5-.1.3-.4.5-.8.5.1-.1.2-.1.3-.1s.1 0 .1-.1l.7-1.5c0 .1 0 0 .1-.1z" class="Y"/><path d="M34.3 28H34l-.4-1.5c0-.1.1-.1.2-.1l.5 1.6z" class="W"/><path d="M30.8 27.8z" class="S"/><path d="M43 38.8l1.2-1.8c.1-.1.1-.3.1-.4-.1-.2 0-.4.2-.5h.1c.1.3.1.6.1.8-.2 0-.2.1-.3.2l-1.2 1.8c-.2 0-.2 0-.2-.1z" class="Y"/><path d="M44.6 36.9c0-.3 0-.6-.1-.8.2 0 .3 0 .4-.2l.8-1.4c.1 0 .1.1.1.2-.3.5-.5 1-.8 1.4-.1.1-.1.2 0 .3.1.2 0 .5-.2.6-.1-.1-.1-.1-.2-.1z" class="b"/><g class="R"><path d="M15.3 38.9c.1-.1.2-.3.4-.4l-.4 1.2-.1-.2c0-.2.1-.4.1-.6z"/><path d="M15.7 38.5z"/></g><path d="M15.3 38.9z" class="S"/><path d="M15.6 38.2z" class="R"/><path d="M41 26.3l-.2.9-.8-.6a.78.78 0 0 1-.4-.4V26c.4-.1.9 0 1.4.3z" class="d"/><path d="M40.6 32.3c.6 0 1.3-.1 1.9-.1 0 .1.1.1.1.2h-1.9l-.1-.1z" class="Y"/><path d="M38 25.1c.5.1 1 .3 1.5.4h.2l-.1.3h-.1l-1-.3-.5-.4z" class="Q"/><path d="M38.6 25.5zm9.5 4.7zm-.6-1.1z" class="S"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/miscellaneous/ibm_containers.svg b/src/main/webapp/img/lib/ibm/miscellaneous/ibm_containers.svg index 348c53fe2f421c627585fb72cd89b7f937ab3f32..a0b9a0ffae2a104f5a21cf4670da9b21bdfaa7e7 100644 --- a/src/main/webapp/img/lib/ibm/miscellaneous/ibm_containers.svg +++ b/src/main/webapp/img/lib/ibm/miscellaneous/ibm_containers.svg @@ -1,35 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.7 59.9" style="enable-background:new 0 0 59.7 59.9;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#FFFFFF;stroke:#1975B8;stroke-width:2;stroke-miterlimit:10;} - .st1{fill:#89C542;} - .st2{fill:#06ADCF;} - .st3{fill:#FFFFFF;} - .st4{fill:#074469;} -</style> -<title>INDIVIDUAL ICONS 2</title> -<ellipse class="st0" cx="29.8" cy="30" rx="28.8" ry="29"/> -<rect x="14.5" y="12.8" class="st1" width="14.4" height="14.5"/> -<rect x="14.5" y="29" class="st2" width="14.4" height="14.5"/> -<rect x="30.6" y="12.8" class="st2" width="14.4" height="14.5"/> -<rect x="30.6" y="29" class="st1" width="14.4" height="14.5"/> -<rect x="16.8" y="14.7" class="st3" width="0.9" height="10.5"/> -<rect x="25.9" y="14.7" class="st3" width="0.9" height="10.5"/> -<rect x="22.9" y="14.7" class="st3" width="0.9" height="10.5"/> -<rect x="19.8" y="14.7" class="st3" width="0.9" height="10.5"/> -<rect x="32.8" y="14.7" class="st3" width="0.9" height="10.5"/> -<rect x="42" y="14.7" class="st3" width="0.9" height="10.5"/> -<rect x="38.9" y="14.7" class="st3" width="0.9" height="10.5"/> -<rect x="35.9" y="14.7" class="st3" width="0.9" height="10.5"/> -<rect x="16.8" y="30.9" class="st3" width="0.9" height="10.5"/> -<rect x="25.9" y="30.9" class="st3" width="0.9" height="10.5"/> -<rect x="22.9" y="30.9" class="st3" width="0.9" height="10.5"/> -<rect x="19.8" y="30.9" class="st3" width="0.9" height="10.5"/> -<rect x="32.8" y="30.9" class="st3" width="0.9" height="10.5"/> -<rect x="42" y="30.9" class="st3" width="0.9" height="10.5"/> -<rect x="38.9" y="30.9" class="st3" width="0.9" height="10.5"/> -<rect x="35.9" y="30.9" class="st3" width="0.9" height="10.5"/> -<polygon class="st4" points="49.4,47.2 10.3,47.2 10.3,39.2 12.3,39.2 12.3,45.1 47.3,45.1 47.3,39.2 49.4,39.2 "/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.7 59.9"><ellipse cx="29.8" cy="30" rx="28.8" ry="29" fill="#fff" stroke="#1975b8" stroke-width="2"/><path d="M14.5 12.8h14.4v14.5H14.5z" fill="#89c542"/><path d="M14.5 29h14.4v14.5H14.5zm16.1-16.2H45v14.5H30.6z" fill="#06adcf"/><path d="M30.6 29H45v14.5H30.6z" fill="#89c542"/><path d="M16.8 14.7h.9v10.5h-.9zm9.1 0h.9v10.5h-.9zm-3 0h.9v10.5h-.9zm-3.1 0h.9v10.5h-.9zm13 0h.9v10.5h-.9zm9.2 0h.9v10.5H42zm-3.1 0h.9v10.5h-.9zm-3 0h.9v10.5h-.9zM16.8 30.9h.9v10.5h-.9zm9.1 0h.9v10.5h-.9zm-3 0h.9v10.5h-.9zm-3.1 0h.9v10.5h-.9zm13 0h.9v10.5h-.9zm9.2 0h.9v10.5H42zm-3.1 0h.9v10.5h-.9zm-3 0h.9v10.5h-.9z" fill="#fff"/><path d="M49.4 47.2H10.3v-8h2v5.9h35v-5.9h2.1z" fill="#074469"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/miscellaneous/ibm_public_cloud.svg b/src/main/webapp/img/lib/ibm/miscellaneous/ibm_public_cloud.svg index 9bc9f63e99737e17ba7236900690cd42efdec300..25ca054ed7c4ca885e21e509da0f9877bfef630a 100644 --- a/src/main/webapp/img/lib/ibm/miscellaneous/ibm_public_cloud.svg +++ b/src/main/webapp/img/lib/ibm/miscellaneous/ibm_public_cloud.svg @@ -1,16 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 80.6 62.3" style="enable-background:new 0 0 80.6 62.3;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#FFFFFF;stroke:#808083;stroke-width:1.32;stroke-miterlimit:10;} -</style> -<title>INDIVIDUAL ICONS 3</title> -<path class="st0" d="M21.4,59.7c-11.4,0.1-20.6-9-20.8-20.4s9-20.6,20.4-20.8c8.2-0.1,15.6,4.7,18.9,12.1l-2.1,1 - c-4.2-9.1-14.9-13.1-24-8.9S0.8,37.7,5,46.8c3,6.4,9.4,10.5,16.4,10.5h0.3v2.3H21.4z"/> -<rect x="21.4" y="57.4" class="st0" width="29.6" height="2.3"/> -<path class="st0" d="M60,21.5C59.2,11.1,50.6,3,40.2,3C30.3,3,22,10.2,20.5,19.9l-2.3-0.4C19.9,8.7,29.2,0.7,40.2,0.7 - c11.6,0.1,21.2,9.1,22.1,20.7L60,21.5z"/> -<path class="st0" d="M59.4,61.6c-9.9,0-18.4-7.2-20.1-16.9l2.3-0.4c1.9,9.8,11.4,16.3,21.2,14.4c9.8-1.9,16.3-11.4,14.4-21.2 - c-1.6-8.4-8.8-14.5-17.4-14.7l0-2.3c11.4,0.3,20.3,9.8,20,21.2C79.5,52.7,70.5,61.5,59.4,61.6L59.4,61.6z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80.6 62.3" fill="#fff" stroke="#808083" stroke-width="1.32" stroke-miterlimit="10"><path d="M21.4 59.7C10 59.8.8 50.7.6 39.3s9-20.6 20.4-20.8a20.42 20.42 0 0 1 18.9 12.1l-2.1 1c-4.2-9.1-14.9-13.1-24-8.9S.8 37.7 5 46.8c3 6.4 9.4 10.5 16.4 10.5h.3v2.3h-.3z"/><path d="M21.4 57.4H51v2.3H21.4zM60 21.5C59.2 11.1 50.6 3 40.2 3 30.3 3 22 10.2 20.5 19.9l-2.3-.4A22.26 22.26 0 0 1 40.2.7c11.6.1 21.2 9.1 22.1 20.7l-2.3.1z"/><path d="M59.4 61.6c-9.9 0-18.4-7.2-20.1-16.9l2.3-.4c1.9 9.8 11.4 16.3 21.2 14.4s16.3-11.4 14.4-21.2c-1.6-8.4-8.8-14.5-17.4-14.7v-2.3c11.4.3 20.3 9.8 20 21.2-.3 11-9.3 19.8-20.4 19.9z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/miscellaneous/iot_cloud.svg b/src/main/webapp/img/lib/ibm/miscellaneous/iot_cloud.svg index 9bc9f63e99737e17ba7236900690cd42efdec300..25ca054ed7c4ca885e21e509da0f9877bfef630a 100644 --- a/src/main/webapp/img/lib/ibm/miscellaneous/iot_cloud.svg +++ b/src/main/webapp/img/lib/ibm/miscellaneous/iot_cloud.svg @@ -1,16 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 80.6 62.3" style="enable-background:new 0 0 80.6 62.3;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#FFFFFF;stroke:#808083;stroke-width:1.32;stroke-miterlimit:10;} -</style> -<title>INDIVIDUAL ICONS 3</title> -<path class="st0" d="M21.4,59.7c-11.4,0.1-20.6-9-20.8-20.4s9-20.6,20.4-20.8c8.2-0.1,15.6,4.7,18.9,12.1l-2.1,1 - c-4.2-9.1-14.9-13.1-24-8.9S0.8,37.7,5,46.8c3,6.4,9.4,10.5,16.4,10.5h0.3v2.3H21.4z"/> -<rect x="21.4" y="57.4" class="st0" width="29.6" height="2.3"/> -<path class="st0" d="M60,21.5C59.2,11.1,50.6,3,40.2,3C30.3,3,22,10.2,20.5,19.9l-2.3-0.4C19.9,8.7,29.2,0.7,40.2,0.7 - c11.6,0.1,21.2,9.1,22.1,20.7L60,21.5z"/> -<path class="st0" d="M59.4,61.6c-9.9,0-18.4-7.2-20.1-16.9l2.3-0.4c1.9,9.8,11.4,16.3,21.2,14.4c9.8-1.9,16.3-11.4,14.4-21.2 - c-1.6-8.4-8.8-14.5-17.4-14.7l0-2.3c11.4,0.3,20.3,9.8,20,21.2C79.5,52.7,70.5,61.5,59.4,61.6L59.4,61.6z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80.6 62.3" fill="#fff" stroke="#808083" stroke-width="1.32" stroke-miterlimit="10"><path d="M21.4 59.7C10 59.8.8 50.7.6 39.3s9-20.6 20.4-20.8a20.42 20.42 0 0 1 18.9 12.1l-2.1 1c-4.2-9.1-14.9-13.1-24-8.9S.8 37.7 5 46.8c3 6.4 9.4 10.5 16.4 10.5h.3v2.3h-.3z"/><path d="M21.4 57.4H51v2.3H21.4zM60 21.5C59.2 11.1 50.6 3 40.2 3 30.3 3 22 10.2 20.5 19.9l-2.3-.4A22.26 22.26 0 0 1 40.2.7c11.6.1 21.2 9.1 22.1 20.7l-2.3.1z"/><path d="M59.4 61.6c-9.9 0-18.4-7.2-20.1-16.9l2.3-.4c1.9 9.8 11.4 16.3 21.2 14.4s16.3-11.4 14.4-21.2c-1.6-8.4-8.8-14.5-17.4-14.7v-2.3c11.4.3 20.3 9.8 20 21.2-.3 11-9.3 19.8-20.4 19.9z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/miscellaneous/microservices_application.svg b/src/main/webapp/img/lib/ibm/miscellaneous/microservices_application.svg index 2098dc5e2a43c25da056d90cbef2aa0e445a138c..49fc74fc5f79e07a9a39bddb88f6785fcb3c5981 100644 --- a/src/main/webapp/img/lib/ibm/miscellaneous/microservices_application.svg +++ b/src/main/webapp/img/lib/ibm/miscellaneous/microservices_application.svg @@ -1,20 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.5 60" style="enable-background:new 0 0 59.5 60;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#4D5D68;} - .st1{fill:#2BBAA7;} - .st2{fill:#31B8DC;} - .st3{fill:none;stroke:#FFFFFF;stroke-width:0.5;stroke-miterlimit:10;} -</style> -<title>INDIVIDUAL ICONS 2</title> -<polygon class="st0" points="7.9,43.4 0,28.3 9,13.9 26,14.6 33.9,29.6 24.8,44 "/> -<polygon class="st1" points="33.9,29.7 25.7,14.7 34.4,0 51.3,0.3 59.5,15.3 50.8,30 "/> -<path class="st2" d="M32.6,59.3l-7.8-15.2l9.1-14.5L50.7,30l7.8,15.5l-9,14.5L32.6,59.3z"/> -<line class="st3" x1="25.4" y1="15" x2="33.8" y2="29.4"/> -<line class="st3" x1="33.8" y1="29.4" x2="50.1" y2="29.2"/> -<ellipse transform="matrix(1.999600e-02 -0.9998 0.9998 1.999600e-02 4.2076 62.1118)" class="st3" cx="33.8" cy="28.9" rx="17.3" ry="17.3"/> -<polygon class="st3" points="37.8,21.8 50.1,29.2 37.6,36.2 25,43.2 25.2,28.8 25.4,14.4 "/> -<line class="st3" x1="33.8" y1="29.4" x2="25" y2="43.2"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.5 60"><path d="M7.9 43.4L0 28.3l9-14.4 17 .7 7.9 15L24.8 44z" fill="#4d5d68"/><path d="M33.9 29.7l-8.2-15L34.4 0l16.9.3 8.2 15L50.8 30z" fill="#2bbaa7"/><path d="M32.6 59.3l-7.8-15.2 9.1-14.5 16.8.4 7.8 15.5-9 14.5-16.9-.7z" fill="#31b8dc"/><g fill="none" stroke="#fff" stroke-width=".5"><path d="M25.4 15l8.4 14.4m0 0l16.3-.2" stroke-miterlimit="10"/><circle transform="matrix(.019996 -.9998 .9998 .019996 4.2076 62.1118)" cx="33.8" cy="28.9" r="17.3"/><g stroke-miterlimit="10"><path d="M37.8 21.8l12.3 7.4-12.5 7-12.6 7 .4-28.8z"/><path d="M33.8 29.4L25 43.2"/></g></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/miscellaneous/object_storage.svg b/src/main/webapp/img/lib/ibm/miscellaneous/object_storage.svg index d8f70ed6569470c7ed9d7c6d4a66395269f30db8..b9a266cbac6451e2e7aed5e51ac4bbe8b7d1dead 100644 --- a/src/main/webapp/img/lib/ibm/miscellaneous/object_storage.svg +++ b/src/main/webapp/img/lib/ibm/miscellaneous/object_storage.svg @@ -1,28 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.3 59.2" style="enable-background:new 0 0 59.3 59.2;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#325C80;} - .st1{fill:#FFFFFF;} - .st2{fill:#0D4269;} - .st3{fill:#05ADD0;} - .st4{fill:#86C440;} -</style> -<title>INDIVIDUAL ICONS 2</title> -<ellipse class="st0" cx="29.7" cy="29.6" rx="29.7" ry="29.6"/> -<polygon class="st1" points="11.2,46.1 48.2,46.1 29.7,14.1 "/> -<path class="st2" d="M49.8,48H9.5c-0.3,0-0.7-0.2-0.8-0.5c-0.2-0.3-0.2-0.6,0-0.9l20.1-34.8c0.2-0.3,0.5-0.5,0.8-0.5 - c0.3,0,0.7,0.2,0.8,0.5l20.1,34.7c0.1,0.2,0.2,0.4,0.2,0.6C50.7,47.5,50.3,48,49.8,48C49.8,48,49.8,48,49.8,48z M11.2,46.1h37 - l-18.5-32L11.2,46.1z"/> -<polygon class="st3" points="41.9,38.6 38.4,44.7 34.8,38.6 "/> -<polygon class="st3" points="26.1,37.7 29.7,31.6 33.2,37.7 "/> -<polygon class="st2" points="34.8,37.7 38.3,31.6 41.9,37.7 "/> -<polygon class="st4" points="37.5,31.3 34,37.4 30.5,31.3 "/> -<polygon class="st4" points="13,45 16.6,38.8 20.1,45 "/> -<polygon class="st2" points="21.8,45 25.3,38.8 28.8,45 "/> -<polygon class="st3" points="24.5,38.6 20.9,44.7 17.4,38.6 "/> -<polygon class="st2" points="30.5,45 34,38.8 37.5,45 "/> -<polygon class="st4" points="33.2,38.6 29.6,44.7 26.1,38.6 "/> -<polygon class="st4" points="39.3,45 42.8,38.8 46.3,45 "/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.3 59.2"><ellipse cx="29.7" cy="29.6" rx="29.7" ry="29.6" fill="#325c80"/><path d="M11.2 46.1h37l-18.5-32z" fill="#fff"/><path d="M49.8 48H9.5c-.3 0-.7-.2-.8-.5-.2-.3-.2-.6 0-.9l20.1-34.8c.2-.3.5-.5.8-.5s.7.2.8.5l20.1 34.7c.1.2.2.4.2.6 0 .4-.4.9-.9.9zm-38.6-1.9h37l-18.5-32-18.5 32z" fill="#0d4269"/><path d="M41.9 38.6l-3.5 6.1-3.6-6.1zm-15.8-.9l3.6-6.1 3.5 6.1z" fill="#05add0"/><path d="M34.8 37.7l3.5-6.1 3.6 6.1z" fill="#0d4269"/><path d="M37.5 31.3L34 37.4l-3.5-6.1zM13 45l3.6-6.2 3.5 6.2z" fill="#86c440"/><path d="M21.8 45l3.5-6.2 3.5 6.2z" fill="#0d4269"/><path d="M24.5 38.6l-3.6 6.1-3.5-6.1z" fill="#05add0"/><path d="M30.5 45l3.5-6.2 3.5 6.2z" fill="#0d4269"/><path d="M33.2 38.6l-3.6 6.1-3.5-6.1zm6.1 6.4l3.5-6.2 3.5 6.2z" fill="#86c440"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/miscellaneous/offline_capabilities.svg b/src/main/webapp/img/lib/ibm/miscellaneous/offline_capabilities.svg index 3e31e6e398e0c5b078fe83b205e6faec071ae2d9..652dcc8c0e336e3b9fd117550b5a7e6a7d890fce 100644 --- a/src/main/webapp/img/lib/ibm/miscellaneous/offline_capabilities.svg +++ b/src/main/webapp/img/lib/ibm/miscellaneous/offline_capabilities.svg @@ -1,16 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.9 59.9" style="enable-background:new 0 0 59.9 59.9;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#A5276E;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle class="st0" cx="30" cy="30" r="30"/> -<path class="st1" d="M37.3,51.5H22.7c-2.8,0-5-2.2-5-5v-33c0-2.8,2.2-5,5-5h14.6c2.8,0,5,2.2,5,5v33.1C42.3,49.3,40,51.5,37.3,51.5z - M22.7,9.8c-2,0-3.7,1.6-3.7,3.7l0,0v33.1c0,2,1.6,3.7,3.7,3.7l0,0h14.6c2,0,3.7-1.7,3.7-3.7V13.4c0-2-1.6-3.7-3.7-3.7l0,0H22.7z"/> -<ellipse class="st1" cx="30" cy="47.1" rx="1.8" ry="1.8"/> -<rect x="27.6" y="11" class="st1" width="4.8" height="0.9"/> -<path class="st1" d="M20.9,13.4v30.2h18.2V13.4H20.9z M29.9,35l-7.1-7.7c0.4-0.8,7.4-6.6,14.3,0L29.9,35z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.9 59.9"><circle cx="30" cy="30" r="30" fill="#a5276e"/><g fill="#fff"><path d="M37.3 51.5H22.7a4.95 4.95 0 0 1-5-5v-33a4.95 4.95 0 0 1 5-5h14.6a4.95 4.95 0 0 1 5 5v33.1c0 2.7-2.3 4.9-5 4.9zM22.7 9.8c-2 0-3.7 1.6-3.7 3.7v33.1c0 2 1.6 3.7 3.7 3.7h14.6a3.76 3.76 0 0 0 3.7-3.7V13.4c0-2-1.6-3.7-3.7-3.7H22.7z"/><circle cx="30" cy="47.1" r="1.8"/><path d="M27.6 11h4.8v.9h-4.8zm-6.7 2.4v30.2h18.2V13.4H20.9zm9 21.6l-7.1-7.7c.4-.8 7.4-6.6 14.3 0L29.9 35z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/miscellaneous/openwhisk.svg b/src/main/webapp/img/lib/ibm/miscellaneous/openwhisk.svg index 2714e4ec8d5b6ea53221aa0bf0af91a19c883eea..9807f67badd55da88c171d9b0296b214a66fbabf 100644 --- a/src/main/webapp/img/lib/ibm/miscellaneous/openwhisk.svg +++ b/src/main/webapp/img/lib/ibm/miscellaneous/openwhisk.svg @@ -1,16 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 71.9 46" style="enable-background:new 0 0 71.9 46;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#058572;} - .st1{fill:#85CEC7;} - .st2{fill:#325C80;} - .st3{fill:#6AA4D8;} -</style> -<title>INDIVIDUAL ICONS 2</title> -<polygon class="st0" points="60.2,40.2 37.1,0 60.2,0 71.9,20.1 "/> -<polygon class="st1" points="37.1,0 25.4,20.1 48.6,20.1 "/> -<polygon class="st2" points="11.5,5.8 34.5,46 11.5,46 0,25.9 "/> -<polygon class="st3" points="23,25.9 34.5,46 46,25.9 "/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 71.9 46"><path d="M60.2 40.2L37.1 0h23.1l11.7 20.1z" fill="#058572"/><path d="M37.1 0L25.4 20.1h23.2z" fill="#85cec7"/><path d="M11.5 5.8l23 40.2h-23L0 25.9z" fill="#325c80"/><path d="M23 25.9L34.5 46 46 25.9z" fill="#6aa4d8"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/miscellaneous/peer_cloud.svg b/src/main/webapp/img/lib/ibm/miscellaneous/peer_cloud.svg index 1724d6bf043b2519ff439bd40792dd734c1dda1c..47e57217243345bec825e776e4d44a212710dfa2 100644 --- a/src/main/webapp/img/lib/ibm/miscellaneous/peer_cloud.svg +++ b/src/main/webapp/img/lib/ibm/miscellaneous/peer_cloud.svg @@ -1,16 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 64.8 50.2" style="enable-background:new 0 0 64.8 50.2;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#FFFFFF;stroke:#808184;stroke-width:1.32;stroke-miterlimit:10;} -</style> -<title>INDIVIDUAL ICONS 2</title> -<path class="st0" d="M17.3,48C8.2,48.1,0.7,40.7,0.7,31.6C0.6,22.5,7.9,15.1,17,15c6.5-0.1,12.5,3.7,15.2,9.7l-1.7,0.8 - c-3.4-7.3-12-10.4-19.3-7s-10.4,12-7,19.3c2.4,5.1,7.5,8.4,13.1,8.4h0.3V48H17.3L17.3,48z"/> -<rect x="17.3" y="46.1" class="st0" width="23.8" height="1.9"/> -<path class="st0" d="M48.3,17.4C47.6,9,40.7,2.6,32.3,2.5c-7.9,0-14.6,5.8-15.7,13.6l-1.8-0.3c1.3-8.7,8.8-15.1,17.6-15.1 - c9.3,0.1,17,7.3,17.7,16.6L48.3,17.4z"/> -<path class="st0" d="M47.8,49.5c-7.9,0-14.7-5.7-16.1-13.6l1.8-0.3c1.5,7.9,9.2,13,17,11.5c7.9-1.5,13-9.2,11.5-17 - c-1.3-6.7-7.1-11.6-13.9-11.8v-1.9c9.1,0.3,16.3,7.9,16,17.1C63.8,42.4,56.6,49.4,47.8,49.5L47.8,49.5z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64.8 50.2" fill="#fff" stroke="#808184" stroke-width="1.32" stroke-miterlimit="10"><path d="M17.3 48C8.2 48.1.7 40.7.7 31.6.6 22.5 7.9 15.1 17 15c6.5-.1 12.5 3.7 15.2 9.7l-1.7.8c-3.4-7.3-12-10.4-19.3-7s-10.4 12-7 19.3c2.4 5.1 7.5 8.4 13.1 8.4h.3V48h-.3z"/><path d="M17.3 46.1h23.8V48H17.3zm31-28.7c-.7-8.4-7.6-14.8-16-14.9-7.9 0-14.6 5.8-15.7 13.6l-1.8-.3C16.1 7.1 23.6.7 32.4.7a17.95 17.95 0 0 1 17.7 16.6l-1.8.1z"/><path d="M47.8 49.5c-7.9 0-14.7-5.7-16.1-13.6l1.8-.3c1.5 7.9 9.2 13 17 11.5 7.9-1.5 13-9.2 11.5-17-1.3-6.7-7.1-11.6-13.9-11.8v-1.9c9.1.3 16.3 7.9 16 17.1-.3 8.9-7.5 15.9-16.3 16z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/miscellaneous/retrieve_rank.svg b/src/main/webapp/img/lib/ibm/miscellaneous/retrieve_rank.svg index 4af09a98e60b8005e32c06a2ddc8c14fa2106c4b..8269e02d3d8d74feec2377c4d56c3483ea8c130b 100644 --- a/src/main/webapp/img/lib/ibm/miscellaneous/retrieve_rank.svg +++ b/src/main/webapp/img/lib/ibm/miscellaneous/retrieve_rank.svg @@ -1,21 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 60 60" style="enable-background:new 0 0 60 60;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#5F92CD;} - .st1{fill:#325C80;} - .st2{fill:#4278BB;} - .st3{fill:#FFFFFF;} - .st4{fill:#274B60;} -</style> -<title>INDIVIDUAL ICONS 2</title> -<circle class="st0" cx="30" cy="30" r="30"/> -<path class="st1" d="M12.3,19.4h38v2.7h-38L12.3,19.4z M12.3,28.5h28.9v2.7H12.3V28.5z M12.7,38h33.5v2.7H12.7V38z"/> -<circle class="st2" cx="18.9" cy="25" r="12.1"/> -<path class="st3" d="M13.1,18.6h15.8v4.6H13.1V18.6z M13.1,27.6h16.4v4.6H13.1V27.6z"/> -<path class="st4" d="M27.9,37.1l3.1-3.1l9.6,9.6l-3.1,3.1L27.9,37.1z"/> -<circle class="st4" cx="28.4" cy="34.2" r="3.1"/> -<path class="st4" d="M18.2,37.7c-7.2,0-13-5.8-13-13s5.8-13,13-13s13,5.8,13,13S25.4,37.7,18.2,37.7z M18.2,15 - c-5.3,0-9.6,4.3-9.6,9.6s4.3,9.6,9.6,9.6s9.6-4.3,9.6-9.6v0C27.8,19.3,23.5,15,18.2,15C18.2,15,18.2,15,18.2,15L18.2,15z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><circle cx="30" cy="30" r="30" fill="#5f92cd"/><path d="M12.3 19.4h38v2.7h-38v-2.7zm0 9.1h28.9v2.7H12.3v-2.7zm.4 9.5h33.5v2.7H12.7V38z" fill="#325c80"/><circle cx="18.9" cy="25" r="12.1" fill="#4278bb"/><path d="M13.1 18.6h15.8v4.6H13.1v-4.6zm0 9h16.4v4.6H13.1v-4.6z" fill="#fff"/><g fill="#274b60"><path d="M27.9 37.1L31 34l9.6 9.6-3.1 3.1-9.6-9.6z"/><circle cx="28.4" cy="34.2" r="3.1"/><path d="M18.2 37.7c-7.2 0-13-5.8-13-13s5.8-13 13-13 13 5.8 13 13-5.8 13-13 13zm0-22.7c-5.3 0-9.6 4.3-9.6 9.6s4.3 9.6 9.6 9.6 9.6-4.3 9.6-9.6-4.3-9.6-9.6-9.6z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/miscellaneous/scalable.svg b/src/main/webapp/img/lib/ibm/miscellaneous/scalable.svg index facb10074560d0815b416310b7b023f75be5decb..51d3998fb5038e4d6b54f29d39235150cb6e7ac5 100644 --- a/src/main/webapp/img/lib/ibm/miscellaneous/scalable.svg +++ b/src/main/webapp/img/lib/ibm/miscellaneous/scalable.svg @@ -1,69 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - contentScriptType="text/ecmascript" - zoomAndPan="magnify" - contentStyleType="text/css" - id="svg2" - sodipodi:docname="scalable.svg" - version="1.1" - width="40.063866mm" - preserveAspectRatio="xMidYMid meet" - inkscape:version="0.91 r13725" - viewBox="0 0 141.95858 138.75573" - height="39.15995mm"> - <metadata - id="metadata4184"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <defs - id="defs4182" /> - <sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview4180" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="0.54131261" - inkscape:cx="-377.79372" - inkscape:cy="366.01501" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="svg2" /> - <path - style="opacity:1;fill:#e7e8e8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 11.16819,138.75573 C 5.21797,138.75573 0,134.40094 0,127.66549 L 0,12.40281 C 0,4.57526 5.38744,0 11.78308,0 L 129.334,0 C 138.46574,0 141.95858,6.64787 141.95858,12.91402 L 141.95858,125.50024 C 141.95858,132.85013 137.48994,138.75573 130.59364,138.75573 Z" - id="path4176" - inkscape:connector-curvature="0" /> - <path - style="opacity:1;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 97.84624,16.96564 129.22003,16.96564 129.22003,48.57483 122.35996,48.57483 122.35996,24.17663 97.84624,24.17663 Z M 42.23016,96.37712 42.23016,64.02567 48.65387,64.02567 48.65387,85.26296 86.14575,48.78477 64.69697,48.78477 64.69697,42.66695 96.99002,42.66695 96.99002,74.80846 89.72655,74.80846 89.93339,54.83827 53.23781,90.73758 75.3928,90.73758 75.3928,96.37712 Z M 17.8214,124.34712 17.8214,93.6631 25.10443,93.6631 25.10443,118.20075 50.00948,118.20075 50.00948,124.34712 Z" - id="path4178" - inkscape:connector-curvature="0" /> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" contentScriptType="text/ecmascript" zoomAndPan="magnify" contentStyleType="text/css" width="151.423" preserveAspectRatio="xMidYMid meet" viewBox="0 0 141.959 138.756" height="148.006" fill-rule="evenodd"><path d="M11.168 138.756C5.218 138.756 0 134.4 0 127.665V12.403C0 4.575 5.387 0 11.783 0h117.55c9.132 0 12.625 6.648 12.625 12.914V125.5c0 7.35-4.47 13.255-11.365 13.255z" fill="#e7e8e8"/><path d="M97.846 16.966h31.374v31.61h-6.86V24.177H97.846zM42.23 96.377v-32.35h6.424v21.237l37.492-36.478h-21.45v-6.118H97v32.142h-7.263l.207-19.97-36.696 35.9h22.155v5.64zm-24.41 27.97V93.663h7.283V118.2H50.01v6.146z" fill="#999"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/miscellaneous/text_to_speech.svg b/src/main/webapp/img/lib/ibm/miscellaneous/text_to_speech.svg index 55fb6f7f5760bad565dc062c75798de5314a1ec5..4840ec8a0e37a4f6378185eb60d7f3b061354f16 100644 --- a/src/main/webapp/img/lib/ibm/miscellaneous/text_to_speech.svg +++ b/src/main/webapp/img/lib/ibm/miscellaneous/text_to_speech.svg @@ -1 +1 @@ -<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" width="1000" height="1000" viewBox="-915 -139 1000 1000"><style>.st0{fill:#AF6EE8;} .st1{fill:#562F72;} .st2{fill:#FFFFFF;} .st3{fill:#734098;}</style><circle class="st0" cx="-415" cy="361" r="500"/><path class="st1" d="M-418.2 481c0 40.6-14.8 77.4-37.4 107.7-19.4 25.2-83.9 113.5-135.5 159.4v-89.7h-5.2c-98.1 0-176.8-79.4-176.8-177.4s80-177.4 177.4-177.4c97.5 0 177.5 79.3 177.5 177.4z"/><circle class="st2" cx="-513.1" cy="476.5" r="20.6"/><circle class="st2" cx="-595" cy="476.5" r="20.6"/><circle class="st2" cx="-676.3" cy="476.5" r="20.6"/><g><path class="st2" d="M-557.6 140.4l-24.5-20 42.6-52.3-51.6-43.2 20-25.2 77.4 63.9z"/><path class="st2" d="M-755.6 310.7c-3.2-28.4-1.3-57.4 5.2-84.5 16.8-69 63.2-126.5 127.7-158.1 23.9-11.6 50.3-19.4 76.8-22.6l4.5 38.7c-22.6 2.6-44.5 9-64.5 18.7-53.5 25.8-92.3 74.2-107.1 132.3-5.8 23.2-7.1 47.1-4.5 71l-38.1 4.5z"/></g><g><path class="st2" d="M-24.7 530h-431.6V1.6h320l111.6 111z"/><path class="st3" d="M-386.6 149.4h304.5V201h-304.5zM-386.6 261.6h218.7v51.6h-218.7zM-386.6 368.1H-115v51.6h-271.6z"/><path class="st1" d="M-24.7 113.9h-112.2V1.6z"/></g></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="1000" height="1000" viewBox="-915 -139 1000 1000"><circle cx="-415" cy="361" r="500" fill="#af6ee8"/><path d="M-418.2 481c0 40.6-14.8 77.4-37.4 107.7-19.4 25.2-83.9 113.5-135.5 159.4v-89.7h-5.2c-98.1 0-176.8-79.4-176.8-177.4s80-177.4 177.4-177.4c97.5 0 177.5 79.3 177.5 177.4z" fill="#562f72"/><g fill="#fff"><circle cx="-513.1" cy="476.5" r="20.6"/><circle cx="-595" cy="476.5" r="20.6"/><circle cx="-676.3" cy="476.5" r="20.6"/><path d="M-557.6 140.4l-24.5-20 42.6-52.3-51.6-43.2 20-25.2 77.4 63.9z"/><path d="M-755.6 310.7c-3.2-28.4-1.3-57.4 5.2-84.5 16.8-69 63.2-126.5 127.7-158.1a244.63 244.63 0 0 1 76.8-22.6l4.5 38.7c-22.6 2.6-44.5 9-64.5 18.7-53.5 25.8-92.3 74.2-107.1 132.3-5.8 23.2-7.1 47.1-4.5 71l-38.1 4.5zM-24.7 530h-431.6V1.6h320l111.6 111z"/></g><path d="M-386.6 149.4h304.5V201h-304.5zm0 112.2h218.7v51.6h-218.7zm0 106.5H-115v51.6h-271.6z" fill="#734098"/><path d="M-24.7 113.9h-112.2V1.6z" fill="#562f72"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/security/api_security.svg b/src/main/webapp/img/lib/ibm/security/api_security.svg index 7f065e70ccbd5aac65ed38f07689554029024ef3..682c0a2e0a638b8142e57c0848b70851817d9069 100644 --- a/src/main/webapp/img/lib/ibm/security/api_security.svg +++ b/src/main/webapp/img/lib/ibm/security/api_security.svg @@ -1,31 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.8 59.8" style="enable-background:new 0 0 59.8 59.8;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#E02333;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle class="st0" cx="29.9" cy="29.9" r="29.9"/> -<path class="st1" d="M27.6,29.5c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.1-0.4v-3.3c0-0.3-0.1-0.6-0.2-0.9 - c-0.1-0.2-0.3-0.4-0.6-0.6c-0.3-0.2-0.5-0.3-0.8-0.3c-0.3-0.1-0.6-0.1-0.9-0.1c-0.3,0-0.7,0-1,0.1c-0.3,0.1-0.6,0.2-0.9,0.3 - c-0.3,0.2-0.5,0.4-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1h1.4c0-0.3,0.2-0.6,0.4-0.8c0.3-0.2,0.7-0.3,1-0.2h0.4c0.1,0,0.3,0.1,0.4,0.1 - c0.1,0.1,0.2,0.1,0.3,0.3c0.1,0.1,0.1,0.3,0.1,0.4c0,0.2,0,0.3-0.1,0.5c-0.1,0.1-0.3,0.2-0.4,0.2c-0.2,0.1-0.4,0.1-0.6,0.1 - c-0.2,0-0.5,0.1-0.7,0.1c-0.3,0-0.6,0-0.9,0.1c-0.3,0.1-0.5,0.2-0.8,0.3c-0.2,0.1-0.4,0.3-0.6,0.6c-0.2,0.3-0.2,0.7-0.2,1 - c0,0.3,0.1,0.6,0.2,0.8c0.1,0.2,0.3,0.4,0.5,0.6c0.2,0.2,0.4,0.3,0.7,0.3c0.3,0.1,0.5,0.1,0.8,0.1c0.4,0,0.8-0.1,1.2-0.2 - c0.4-0.1,0.7-0.3,1-0.6c0,0.2,0.2,0.5,0.4,0.6c0.2,0.1,0.5,0.2,0.7,0.2h0.2h0.2l0.2,0l0.2,0v-1h-0.2L27.6,29.5z M25.9,28.3 - c0,0.2,0,0.4-0.2,0.6c-0.1,0.1-0.2,0.3-0.4,0.4c-0.2,0.1-0.3,0.2-0.5,0.2c-0.2,0-0.3,0.1-0.5,0.1c-0.1,0-0.3,0-0.4,0 - c-0.1,0-0.3-0.1-0.4-0.1c-0.1-0.1-0.2-0.1-0.3-0.3c-0.1-0.1-0.1-0.2-0.1-0.4c0-0.2,0-0.3,0.1-0.5c0.1-0.1,0.1-0.2,0.3-0.3 - c0.1-0.1,0.2-0.1,0.4-0.2c0.1,0,0.3-0.1,0.4-0.1c0.3-0.1,0.6-0.1,0.9-0.1c0.3,0,0.5-0.1,0.8-0.3L25.9,28.3z"/> -<path class="st1" d="M34.4,25c-0.2-0.3-0.6-0.6-0.9-0.7C33,24.1,32.6,24,32.2,24c-0.4,0-0.8,0.1-1.1,0.2c-0.4,0.2-0.6,0.4-0.8,0.8 - l0,0v-0.9h-1.3v8.6h1.4v-3.1l0,0c0.1,0.2,0.2,0.3,0.4,0.5c0.2,0.1,0.3,0.2,0.5,0.3c0.2,0.1,0.4,0.1,0.6,0.2c0.2,0,0.4,0.1,0.6,0 - c0.8,0,1.6-0.3,2.1-1c0.2-0.3,0.4-0.7,0.5-1.1c0.1-0.4,0.2-0.8,0.2-1.2c0-0.4-0.1-0.9-0.2-1.3C34.8,25.7,34.6,25.3,34.4,25z - M33.6,28.1c-0.1,0.3-0.2,0.5-0.3,0.7c-0.1,0.2-0.3,0.4-0.5,0.5c-0.2,0.1-0.5,0.2-0.8,0.2c-0.3,0-0.5-0.1-0.8-0.2 - c-0.2-0.1-0.4-0.3-0.6-0.5c-0.2-0.2-0.3-0.4-0.3-0.7c-0.1-0.3-0.1-0.6-0.1-0.9c0-0.6,0.1-1.1,0.5-1.6c0.3-0.4,0.8-0.6,1.3-0.6 - c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.3,0.5,0.5c0.2,0.2,0.3,0.5,0.3,0.7c0.1,0.3,0.1,0.5,0.1,0.8C33.7,27.6,33.7,27.9,33.6,28.1z" - /> -<rect x="36.3" y="21.7" class="st1" width="1.4" height="1.3"/> -<rect x="36.3" y="24.1" class="st1" width="1.4" height="6.3"/> -<path class="st1" d="M14,14v31.8h31.8V14H14z M15.3,15.2h29.3v24.4H15.3V15.2z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.8 59.8"><circle cx="29.9" cy="29.9" r="29.9" fill="#e02333"/><path d="M27.6 29.5c-.1 0-.2 0-.3-.1s-.1-.2-.1-.4v-3.3c0-.3-.1-.6-.2-.9-.1-.2-.3-.4-.6-.6s-.5-.3-.8-.3c-.3-.1-.6-.1-.9-.1s-.7 0-1 .1l-.9.3c-.3.2-.5.4-.6.6a1.69 1.69 0 0 0-.3 1h1.4c0-.3.2-.6.4-.8.3-.2.7-.3 1-.2h.4c.1 0 .3.1.4.1.1.1.2.1.3.3.1.1.1.3.1.4 0 .2 0 .3-.1.5a.76.76 0 0 1-.4.2c-.2.1-.4.1-.6.1s-.5.1-.7.1c-.3 0-.6 0-.9.1l-.8.3c-.2.1-.4.3-.6.6s-.2.7-.2 1 .1.6.2.8.3.4.5.6.4.3.7.3c.3.1.5.1.8.1.4 0 .8-.1 1.2-.2s.7-.3 1-.6c0 .2.2.5.4.6s.5.2.7.2h.8v-1h-.2l-.1.2zm-1.7-1.2c0 .2 0 .4-.2.6-.1.1-.2.3-.4.4s-.3.2-.5.2-.3.1-.5.1h-.4c-.1 0-.3-.1-.4-.1-.1-.1-.2-.1-.3-.3-.1-.1-.1-.2-.1-.4s0-.3.1-.5c.1-.1.1-.2.3-.3.1-.1.2-.1.4-.2.1 0 .3-.1.4-.1.3-.1.6-.1.9-.1s.5-.1.8-.3l-.1 1zm8.5-3.3c-.2-.3-.6-.6-.9-.7-.5-.2-.9-.3-1.3-.3s-.8.1-1.1.2a1.56 1.56 0 0 0-.8.8v-.9H29v8.6h1.4v-3.1c.1.2.2.3.4.5.2.1.3.2.5.3s.4.1.6.2c.2 0 .4.1.6 0 .8 0 1.6-.3 2.1-1 .2-.3.4-.7.5-1.1s.2-.8.2-1.2-.1-.9-.2-1.3c-.3-.3-.5-.7-.7-1zm-.8 3.1c-.1.3-.2.5-.3.7s-.3.4-.5.5-.5.2-.8.2-.5-.1-.8-.2c-.2-.1-.4-.3-.6-.5s-.3-.4-.3-.7c-.1-.3-.1-.6-.1-.9 0-.6.1-1.1.5-1.6.3-.4.8-.6 1.3-.6.3 0 .5.1.8.2.2.1.4.3.5.5a1.08 1.08 0 0 1 .3.7c.1.3.1.5.1.8 0 .4 0 .7-.1.9zm2.7-6.4h1.4V23h-1.4zm0 2.4h1.4v6.3h-1.4zM14 14v31.8h31.8V14H14zm1.3 1.2h29.3v24.4H15.3V15.2z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/security/blockchain_security_service.svg b/src/main/webapp/img/lib/ibm/security/blockchain_security_service.svg index 07aa27c868e601d6de7df29f30292af2706ebe6b..14f7181a277a098f01c4946c34a7d4e8f29578ec 100644 --- a/src/main/webapp/img/lib/ibm/security/blockchain_security_service.svg +++ b/src/main/webapp/img/lib/ibm/security/blockchain_security_service.svg @@ -1,23 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.8 59.8" style="enable-background:new 0 0 59.8 59.8;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#E02333;} - .st1{fill:#FFFFFF;} - .st2{fill:#2D3F4A;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle class="st0" cx="29.9" cy="29.9" r="29.9"/> -<path class="st1" d="M23.9,38.9v-7.1l-6.4-3.5l-6.4,3.5v7.1l6.4,3.5L23.9,38.9z M14.1,37.1v-3.5l3.4-1.8l3.4,1.8v3.5l-3.4,1.8 - L14.1,37.1L14.1,37.1z"/> -<path class="st1" d="M48.7,25.4v-7.1l-6.4-3.5l-6.4,3.5v7.1l6.4,3.5L48.7,25.4z M38.9,20.1l3.4-1.8l3.4,1.8v3.5l-3.4,1.8l-3.4-1.8 - V20.1z"/> -<polygon class="st1" points="38.9,23.6 38.9,33.6 29.9,38.5 20.8,33.6 20.8,23.6 29.9,18.7 "/> -<polygon class="st2" points="29.5,28.1 22.4,24.9 22.4,32.7 29.5,36.6 "/> -<polygon class="st2" points="29.9,27.4 36.9,24.3 29.9,20.4 22.9,24.3 "/> -<polygon class="st2" points="37.4,32.7 37.4,24.9 30.3,28.1 30.3,36.6 37.4,32.7 "/> -<polygon class="st0" points="22.4,24.9 29.5,28.1 29.5,36.6 22.4,32.7 "/> -<polygon class="st0" points="30.3,28.1 37.4,24.9 37.4,32.7 30.3,36.6 "/> -<polygon class="st0" points="22.9,24.3 29.9,20.4 36.9,24.3 29.9,27.5 "/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.8 59.8"><circle cx="29.9" cy="29.9" r="29.9" fill="#e02333"/><g fill="#fff"><path d="M23.9 38.9v-7.1l-6.4-3.5-6.4 3.5v7.1l6.4 3.5 6.4-3.5zm-9.8-1.8v-3.5l3.4-1.8 3.4 1.8v3.5l-3.4 1.8-3.4-1.8zm34.6-11.7v-7.1l-6.4-3.5-6.4 3.5v7.1l6.4 3.5 6.4-3.5zm-9.8-5.3l3.4-1.8 3.4 1.8v3.5l-3.4 1.8-3.4-1.8v-3.5z"/><path d="M38.9 23.6v10l-9 4.9-9.1-4.9v-10l9.1-4.9z"/></g><path d="M29.5 28.1l-7.1-3.2v7.8l7.1 3.9zm.4-.7l7-3.1-7-3.9-7 3.9zm7.5 5.3v-7.8l-7.1 3.2v8.5l7.1-3.9z" fill="#2d3f4a"/><path d="M22.4 24.9l7.1 3.2v8.5l-7.1-3.9zm7.9 3.2l7.1-3.2v7.8l-7.1 3.9zm-7.4-3.8l7-3.9 7 3.9-7 3.2z" fill="#e02333"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/security/data_security.svg b/src/main/webapp/img/lib/ibm/security/data_security.svg index 12349b7f7d7999c7e17c3e591891511ca3269151..4803335ad839d6c22f422b19a2cc064ed4dd935a 100644 --- a/src/main/webapp/img/lib/ibm/security/data_security.svg +++ b/src/main/webapp/img/lib/ibm/security/data_security.svg @@ -1,20 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 60.1 60.1" style="enable-background:new 0 0 60.1 60.1;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#D81F2E;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<ellipse transform="matrix(0.7071 -0.7071 0.7071 0.7071 -12.4554 30.07)" class="st0" cx="30.1" cy="30.1" rx="30.1" ry="30.1"/> -<ellipse class="st1" cx="30.4" cy="19.8" rx="10.1" ry="4.3"/> -<path class="st1" d="M37.4,38.4c0-1.4,0.5-2.7,1.4-3.8v-1.9c0-1.5,0.8-2.8,2-3.6v-7.8l0,0c-0.5,2.2-5,4-10.4,4s-9.9-1.8-10.4-4h0 - v16.7l0,0c0,2.5,4.7,4.4,10.5,4.4c2.6,0.1,5.2-0.4,7.6-1.4C37.7,40.2,37.4,39.3,37.4,38.4z"/> -<path class="st1" d="M43.6,28.8c2.2,0,3.9,1.8,3.9,3.9v2.1l0.1,0.1c2,2.2,1.8,5.6-0.4,7.6c-2.2,2-5.6,1.8-7.6-0.4 - c-1.8-2-1.8-5.1,0-7.1l0.1-0.1v-2.1C39.7,30.6,41.5,28.8,43.6,28.8 M40.4,34.1l0.5-0.3c1.7-1,3.7-1,5.3,0l0.5,0.3v-1.4 - c0-1.8-1.4-3.2-3.2-3.2s-3.2,1.4-3.2,3.2V34.1 M42.5,39.1l-1.4-1.4l-0.2-0.2l-0.2,0.2l-1,1l-0.3,0.2l0.2,0.2l2.6,2.6l0.2,0.2 - l0.2-0.2l4.8-4.8l0.2-0.2l-0.2-0.2l-1-1l-0.2-0.2L46,35.6L42.5,39.1 M43.6,28.5c-2.3,0.1-4.2,1.9-4.2,4.3v1.9c-2.1,2.4-1.9,6,0.5,8 - c2.4,2.1,6,1.9,8-0.5c1.9-2.2,1.9-5.4,0-7.5v-1.9C47.9,30.4,46,28.5,43.6,28.5L43.6,28.5z M40.7,33.5v-0.8c0-1.6,1.3-2.9,2.9-2.9 - c1.6,0,2.8,1.3,2.8,2.9v0.8C44.6,32.5,42.5,32.5,40.7,33.5z M42.5,39.5l3.8-3.8l1,1l-4.8,4.8l-2.6-2.6l1-1L42.5,39.5L42.5,39.5z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60.1 60.1"><circle transform="matrix(.7071 -.7071 .7071 .7071 -12.4554 30.07)" cx="30.1" cy="30.1" r="30.1" fill="#d81f2e"/><g fill="#fff"><ellipse cx="30.4" cy="19.8" rx="10.1" ry="4.3"/><path d="M37.4 38.4c0-1.4.5-2.7 1.4-3.8v-1.9c0-1.5.8-2.8 2-3.6v-7.8c-.5 2.2-5 4-10.4 4s-9.9-1.8-10.4-4V38c0 2.5 4.7 4.4 10.5 4.4 2.6.1 5.2-.4 7.6-1.4-.4-.8-.7-1.7-.7-2.6zm6.2-9.6c2.2 0 3.9 1.8 3.9 3.9v2.1l.1.1c2 2.2 1.8 5.6-.4 7.6s-5.6 1.8-7.6-.4c-1.8-2-1.8-5.1 0-7.1l.1-.1v-2.1c0-2.2 1.8-4 3.9-4m-3.2 5.3l.5-.3c1.7-1 3.7-1 5.3 0l.5.3v-1.4c0-1.8-1.4-3.2-3.2-3.2s-3.2 1.4-3.2 3.2v1.4m2.2 5l-1.6-1.6-1.2 1.2-.3.2 3 3 5.2-5.2-1.4-1.4-.2.3-3.5 3.5m1.1-10.6c-2.3.1-4.2 1.9-4.2 4.3v1.9c-2.1 2.4-1.9 6 .5 8 2.4 2.1 6 1.9 8-.5 1.9-2.2 1.9-5.4 0-7.5v-1.9c0-2.4-1.9-4.3-4.3-4.3zm-2.9 5v-.8c0-1.6 1.3-2.9 2.9-2.9s2.8 1.3 2.8 2.9v.8a5.79 5.79 0 0 0-5.7 0zm1.8 6l3.8-3.8 1 1-4.8 4.8-2.6-2.6 1-1 1.6 1.6z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/security/firewall.svg b/src/main/webapp/img/lib/ibm/security/firewall.svg index cafacdcb91d7b0ca8e48bbee22fae9145c9eace5..e825c928e51b5c318ab9243b9af9be38a7a41cf2 100644 --- a/src/main/webapp/img/lib/ibm/security/firewall.svg +++ b/src/main/webapp/img/lib/ibm/security/firewall.svg @@ -1,26 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.6 59.3" style="enable-background:new 0 0 59.6 59.3;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#E02133;} - .st1{fill:#FFFFFF;} - .st2{fill:#E52134;} -</style> -<title>INDIVIDUAL ICONS</title> -<ellipse class="st0" cx="29.8" cy="29.7" rx="29.8" ry="29.7"/> -<rect x="17.7" y="19.2" class="st1" width="12" height="6.3"/> -<rect x="18.8" y="20.2" class="st2" width="9.8" height="4.2"/> -<rect x="31.2" y="19.2" class="st1" width="12" height="6.3"/> -<rect x="32.3" y="20.2" class="st2" width="9.8" height="4.2"/> -<rect x="24" y="26.6" class="st1" width="12" height="6.3"/> -<rect x="25.1" y="27.6" class="st2" width="9.8" height="4.2"/> -<rect x="37" y="26.7" class="st1" width="12" height="6.3"/> -<rect x="38.1" y="27.7" class="st2" width="9.8" height="4.2"/> -<rect x="31.1" y="33.7" class="st1" width="12" height="6.3"/> -<rect x="32.2" y="34.8" class="st2" width="9.8" height="4.2"/> -<rect x="17.9" y="33.9" class="st1" width="12" height="6.3"/> -<rect x="19" y="34.9" class="st2" width="9.8" height="4.2"/> -<rect x="10.6" y="26.6" class="st1" width="12" height="6.3"/> -<rect x="11.7" y="27.6" class="st2" width="9.8" height="4.2"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.6 59.3"><ellipse cx="29.8" cy="29.7" rx="29.8" ry="29.7" fill="#e02133"/><path d="M17.7 19.2h12v6.3h-12z" fill="#fff"/><path d="M18.8 20.2h9.8v4.2h-9.8z" fill="#e52134"/><path d="M31.2 19.2h12v6.3h-12z" fill="#fff"/><path d="M32.3 20.2h9.8v4.2h-9.8z" fill="#e52134"/><path d="M24 26.6h12v6.3H24z" fill="#fff"/><path d="M25.1 27.6h9.8v4.2h-9.8z" fill="#e52134"/><path d="M37 26.7h12V33H37z" fill="#fff"/><path d="M38.1 27.7h9.8v4.2h-9.8z" fill="#e52134"/><path d="M31.1 33.7h12V40h-12z" fill="#fff"/><path d="M32.2 34.8H42V39h-9.8z" fill="#e52134"/><path d="M17.9 33.9h12v6.3h-12z" fill="#fff"/><path d="M19 34.9h9.8v4.2H19z" fill="#e52134"/><path d="M10.6 26.6h12v6.3h-12z" fill="#fff"/><path d="M11.7 27.6h9.8v4.2h-9.8z" fill="#e52134"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/security/gateway.svg b/src/main/webapp/img/lib/ibm/security/gateway.svg index a49f5dfb3a77e4e867186a70df1cc494f7c18694..d8152d22fd563fd0238f6ddefa26cef2bc21f15c 100644 --- a/src/main/webapp/img/lib/ibm/security/gateway.svg +++ b/src/main/webapp/img/lib/ibm/security/gateway.svg @@ -1,31 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.8 59.8" style="enable-background:new 0 0 59.8 59.8;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#E02533;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle class="st0" cx="29.9" cy="29.9" r="29.9"/> -<path class="st1" d="M13.3,45.2V14.7c0-0.4,0.4-0.6,0.7-0.6c0.3,0,0.5,0.3,0.6,0.6v28.9l10.1-3V18c0-0.4,0.4-0.6,0.7-0.6 - c0.3,0,0.5,0.3,0.6,0.6v23.4L13.3,45.2z"/> -<path class="st1" d="M16.5,44c-0.2,0-0.4-0.2-0.4-0.4c0,0,0,0,0,0V15.8c0-0.2,0.3-0.4,0.5-0.4c0.2,0,0.3,0.2,0.4,0.4v27.8 - C17,43.8,16.8,44,16.5,44z"/> -<path class="st1" d="M19.5,43.1c-0.2,0-0.4-0.2-0.4-0.4c0,0,0,0,0,0V16.5c0-0.2,0.3-0.4,0.5-0.4c0.2,0,0.3,0.2,0.4,0.4v26.2 - C20,42.9,19.8,43.1,19.5,43.1z"/> -<path class="st1" d="M22.4,42.1c-0.2,0-0.4-0.2-0.4-0.4c0,0,0,0,0,0V17.2c0-0.2,0.3-0.4,0.5-0.4c0.2,0,0.3,0.2,0.4,0.4v24.6 - C22.8,42,22.6,42.2,22.4,42.1z"/> -<polygon class="st1" points="25.1,21.5 13.7,18.4 14,17.7 25.3,20.8 "/> -<rect x="11.9" y="14.1" class="st1" width="2.6" height="31.7"/> -<path class="st1" d="M46.6,45.2L34,41.5V18.1c0-0.4,0.4-0.6,0.7-0.6c0.3,0,0.5,0.3,0.6,0.6v22.6l10.1,3v-29c0-0.4,0.4-0.6,0.7-0.6 - c0.3,0,0.5,0.3,0.6,0.6L46.6,45.2L46.6,45.2z"/> -<path class="st1" d="M43.3,44c-0.2,0-0.4-0.2-0.4-0.4c0,0,0,0,0,0V15.8c0-0.2,0.3-0.4,0.5-0.4c0.2,0,0.3,0.2,0.4,0.4v27.8 - C43.7,43.8,43.5,44,43.3,44C43.3,44,43.3,44,43.3,44z"/> -<path class="st1" d="M40.3,43.1c-0.2,0-0.4-0.2-0.4-0.4c0,0,0,0,0,0V16.5c0-0.2,0.3-0.4,0.5-0.4c0.2,0,0.3,0.2,0.4,0.4v26.3 - C40.6,43,40.5,43.1,40.3,43.1z"/> -<path class="st1" d="M37.4,42.1c-0.2,0-0.4-0.2-0.4-0.4c0,0,0,0,0,0V17.2c0-0.2,0.3-0.4,0.5-0.4c0.2,0,0.3,0.2,0.4,0.4v24.6 - C37.8,42,37.6,42.1,37.4,42.1z"/> -<polygon class="st1" points="34.7,21.5 34.5,20.8 45.8,17.7 46.1,18.4 "/> -<rect x="45.3" y="14" class="st1" width="2.6" height="31.7"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.8 59.8"><circle cx="29.9" cy="29.9" r="29.9" fill="#e02533"/><g fill="#fff"><path d="M13.3 45.2V14.7c0-.4.4-.6.7-.6s.5.3.6.6v28.9l10.1-3V18c0-.4.4-.6.7-.6s.5.3.6.6v23.4l-12.7 3.8z"/><path d="M16.5 44c-.2 0-.4-.2-.4-.4V15.8c0-.2.3-.4.5-.4s.3.2.4.4v27.8c0 .2-.2.4-.5.4zm3-.9c-.2 0-.4-.2-.4-.4V16.5c0-.2.3-.4.5-.4s.3.2.4.4v26.2c0 .2-.2.4-.5.4zm2.9-1c-.2 0-.4-.2-.4-.4V17.2c0-.2.3-.4.5-.4s.3.2.4.4v24.6c-.1.2-.3.4-.5.3z"/><path d="M25.1 21.5l-11.4-3.1.3-.7 11.3 3.1z"/><path d="M11.9 14.1h2.6v31.7h-2.6zm34.7 31.1L34 41.5V18.1c0-.4.4-.6.7-.6s.5.3.6.6v22.6l10.1 3v-29c0-.4.4-.6.7-.6s.5.3.6.6l-.1 30.5z"/><path d="M43.3 44c-.2 0-.4-.2-.4-.4V15.8c0-.2.3-.4.5-.4s.3.2.4.4v27.8c-.1.2-.3.4-.5.4zm-3-.9c-.2 0-.4-.2-.4-.4V16.5c0-.2.3-.4.5-.4s.3.2.4.4v26.3c-.2.2-.3.3-.5.3zm-2.9-1c-.2 0-.4-.2-.4-.4V17.2c0-.2.3-.4.5-.4s.3.2.4.4v24.6a.55.55 0 0 1-.5.3z"/><path d="M34.7 21.5l-.2-.7 11.3-3.1.3.7z"/><path d="M45.3 14h2.6v31.7h-2.6z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/security/governance_risk_compliance.svg b/src/main/webapp/img/lib/ibm/security/governance_risk_compliance.svg index 77ab50c69e8c8d5226425315dd233ac1a8a72561..d966e315bb43276062cee3d4f131df271450d09d 100644 --- a/src/main/webapp/img/lib/ibm/security/governance_risk_compliance.svg +++ b/src/main/webapp/img/lib/ibm/security/governance_risk_compliance.svg @@ -1,20 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.4 59.4" style="enable-background:new 0 0 59.4 59.4;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#D81F2E;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<ellipse transform="matrix(0.7071 -0.7071 0.7071 0.7071 -12.3021 29.7)" class="st0" cx="29.7" cy="29.7" rx="29.7" ry="29.7"/> -<rect x="15.3" y="38.4" class="st1" width="28.7" height="1.8"/> -<rect x="16.4" y="23.2" class="st1" width="26.7" height="1.8"/> -<rect x="13.5" y="41.2" class="st1" width="32.5" height="1.8"/> -<polygon class="st1" points="29.7,16.4 14.4,21.6 14.4,22.5 45,22.5 45,21.6 "/> -<rect x="16.4" y="25.9" class="st1" width="3.3" height="11.9"/> -<rect x="39.7" y="25.9" class="st1" width="3.3" height="11.9"/> -<rect x="28" y="25.9" class="st1" width="3.3" height="11.9"/> -<rect x="22.3" y="25.9" class="st1" width="3.3" height="11.9"/> -<rect x="34" y="25.9" class="st1" width="3.3" height="11.9"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.4 59.4"><circle transform="matrix(.7071 -.7071 .7071 .7071 -12.3021 29.7)" cx="29.7" cy="29.7" r="29.7" fill="#d81f2e"/><path d="M15.3 38.4H44v1.8H15.3zm1.1-15.2h26.7V25H16.4zm-2.9 18H46V43H13.5zm16.2-24.8l-15.3 5.2v.9H45v-.9zm-13.3 9.5h3.3v11.9h-3.3zm23.3 0H43v11.9h-3.3zm-11.7 0h3.3v11.9H28zm-5.7 0h3.3v11.9h-3.3zm11.7 0h3.3v11.9H34z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/security/identity_access_management.svg b/src/main/webapp/img/lib/ibm/security/identity_access_management.svg index f7316f84ffcd2e95ecffafab371a41a0930027b2..51c0dd1e350f21732f0152be66c7af4cfd671d78 100644 --- a/src/main/webapp/img/lib/ibm/security/identity_access_management.svg +++ b/src/main/webapp/img/lib/ibm/security/identity_access_management.svg @@ -1,48 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.5 59.5" style="enable-background:new 0 0 59.5 59.5;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#D81F2E;} - .st1{fill:#FFFFFF;} - .st2{fill:none;stroke:#FFFFFF;stroke-width:0.8;stroke-miterlimit:10;} -</style> -<title>INDIVIDUAL ICONS</title> -<ellipse transform="matrix(0.7071 -0.7071 0.7071 0.7071 -12.3229 29.75)" class="st0" cx="29.8" cy="29.8" rx="29.8" ry="29.8"/> -<path class="st1" d="M25.5,42.8L16,42.7c-1.3,0-2.4,1.1-2.4,2.4v2.4l14.3,0.1v-2.4C27.9,43.8,26.9,42.8,25.5,42.8 - C25.5,42.8,25.5,42.8,25.5,42.8z"/> -<path class="st1" d="M20.7,40.3c-3.4,0-6.1-2.7-6.1-6.1s2.7-6.1,6.1-6.1c3.3,0,6.1,2.7,6.1,6.1C26.8,37.6,24.1,40.3,20.7,40.3z - M20.7,28.9c-2.9,0-5.3,2.4-5.3,5.3c0,2.9,2.4,5.3,5.3,5.3c2.9,0,5.3-2.4,5.3-5.3C26,31.3,23.6,28.9,20.7,28.9L20.7,28.9z"/> -<path class="st1" d="M44.9,42.8l-9.5-0.1c-1.3,0-2.4,1-2.4,2.4c0,0,0,0,0,0v2.4l14.3,0.1v-2.4C47.2,43.8,46.2,42.8,44.9,42.8 - C44.9,42.8,44.9,42.8,44.9,42.8z"/> -<path class="st1" d="M40.1,40.3c-3.4,0-6.1-2.7-6.1-6.1s2.7-6.1,6.1-6.1c3.3,0,6.1,2.7,6.1,6.1C46.1,37.6,43.4,40.3,40.1,40.3z - M40.1,28.9c-2.9,0-5.3,2.4-5.3,5.3c0,2.9,2.4,5.3,5.3,5.3c2.9,0,5.3-2.4,5.3-5.3C45.4,31.3,43,28.9,40.1,28.9L40.1,28.9z"/> -<path class="st2" d="M23.4,14.1c-0.1-0.7,0-1.5,0.2-2.2c0.2-0.8,0.6-1.5,1.1-2.1c1-1.4,2.5-2.4,4.2-2.6c0.6-0.1,1.3-0.1,1.9-0.1 - c0.7,0,1.4,0.2,2,0.4c0.7,0.3,1.4,0.7,2,1.2c0.5,0.4,0.9,0.9,1.2,1.4c0.3,0.5,0.6,1,0.7,1.6c0.1,0.3,0.2,0.7,0.2,1 - c0.1,1.6,0.1,4.3,0.1,4.8"/> -<path class="st2" d="M23.2,15.6c0.6,0.1,1.2-0.2,1.5-0.8c0.2-0.3,0.3-0.6,0.3-1c0.1-0.6,0.1-0.8,0.2-1.2c0.1-0.4,0.2-0.8,0.4-1.1 - c0.4-0.8,1-1.5,1.8-1.9c1.2-0.9,2.7-1.1,4.1-0.7c0.5,0.1,1.1,0.4,1.5,0.7c0.5,0.3,0.9,0.7,1.3,1.1c0.4,0.4,0.6,0.8,0.8,1.3 - c0.1,0.2,0.1,0.5,0.2,0.8c0.1,1.4,0.1,2.9,0.1,4.4c-0.1,0.3,0,0.6,0.1,0.9c0.1,0.3,0.3,0.5,0.6,0.6c0.3,0.2,0.7,0.4,1.1,0.4"/> -<path class="st2" d="M23.2,17.3c0.3,0.1,0.7,0.1,1,0c0.4-0.1,0.8-0.3,1.2-0.5c0.4-0.2,0.7-0.5,1-0.9c0.2-0.6,0.4-1.2,0.4-1.8 - c0-0.5,0.1-1,0.2-1.6c0.2-0.4,0.4-0.7,0.7-1c0.2-0.3,0.5-0.5,0.9-0.7c0.7-0.4,1.5-0.5,2.3-0.3c0.3,0,0.7,0.1,1,0.3 - c0.3,0.2,0.6,0.4,0.8,0.6c0.3,0.3,0.5,0.6,0.7,0.9c0.2,0.3,0.3,0.6,0.3,1c0,0.2,0,0.4,0,0.6c0,1.4,0.1,2.8,0,4.1 - c0,0.2,0,0.5,0.1,0.7c0.2,0.4,0.5,0.7,0.8,1c0.3,0.2,0.5,0.4,0.8,0.6c0.5,0.2,1.1,0.4,1.7,0.4"/> -<path class="st2" d="M23.2,19c0.3,0,0.6,0,0.9,0c0.4-0.1,0.9-0.2,1.3-0.4c0.3-0.2,0.6-0.4,0.9-0.6c0.5-0.4,0.9-0.8,1.3-1.3 - c0.3-0.3,0.5-0.6,0.6-1c0.1-0.3,0.2-0.7,0.2-1.1c0-0.3,0.1-0.7,0.2-1c0-0.2,0.1-0.4,0.3-0.6c0.1-0.2,0.3-0.4,0.5-0.5 - c0.2-0.2,0.5-0.3,0.8-0.4c0.2,0,0.4,0,0.6,0.1c0.2,0.1,0.4,0.2,0.6,0.3c0.2,0.2,0.4,0.4,0.5,0.6c0.2,0.4,0.2,0.9,0.1,1.4 - c0,0.6-0.2,1.3-0.3,1.9c-0.2,0.8-0.6,1.5-1.1,2.2c-0.8,1.2-2,2.1-3.2,2.7c-1.2,0.6-2.6,1-4,1"/> -<path class="st2" d="M23.5,20.7c0.6,0,1.1-0.1,1.7-0.2c1-0.3,2-0.8,2.7-1.5c0.5-0.5,1-1,1.3-1.6c0.3-0.4,0.5-0.8,0.7-1.3 - c0.3-0.8,0.4-1.6,0.3-2.4"/> -<path class="st2" d="M30.5,20.5h0.8"/> -<path class="st2" d="M32.2,18.9c0.1,0.3,0.2,0.6,0.3,0.8c0.2,0.4,0.5,0.8,0.9,1.1c0.4,0.4,0.8,0.7,1.3,1c0.4,0.2,0.7,0.4,1.1,0.5 - c0.5,0.1,1,0.2,1.5,0.1"/> -<path class="st2" d="M36.1,24.1c-0.3-0.1-0.6-0.2-1.1-0.4c-0.4-0.1-0.7-0.3-1.1-0.5c-0.6-0.3-0.7-0.4-1.2-0.6 - c-0.4-0.2-0.9-0.4-1.3-0.5c-0.5-0.1-1-0.1-1.5,0c-0.3,0.1-0.7,0.2-1,0.4c-1.1,0.5-1.1,0.6-1.8,0.9c-0.5,0.2-1.1,0.3-1.7,0.4 - C25.1,24,24.7,24,24.3,24"/> -<path class="st2" d="M25.6,25.6c0.3,0,0.7-0.1,1-0.1c0.3-0.1,0.7-0.2,1-0.4c0.3-0.2,0.3-0.2,0.8-0.5s0.6-0.3,0.8-0.4 - c0.3-0.1,0.6-0.2,0.9-0.3c0.2,0,0.4,0,0.6,0c0.3,0,0.5,0,0.8,0.1c0.3,0.1,0.6,0.2,0.8,0.4l0.6,0.4c0.1,0.1,0.5,0.3,0.8,0.4 - c0.4,0.2,0.9,0.3,1.4,0.4"/> -<path class="st2" d="M27.3,27c0.3-0.1,0.6-0.2,0.9-0.3c0.4-0.1,0.7-0.3,1-0.5c0.4-0.3,0.4-0.3,0.6-0.4c0.3-0.1,0.6-0.1,0.9-0.1 - c0.3,0,0.5,0.1,0.8,0.2c0.2,0.1,0.4,0.2,0.6,0.4c0.3,0.2,0.4,0.3,0.7,0.4c0.2,0.1,0.3,0.2,0.5,0.2"/> -<path class="st2" d="M30.2,27.5h1"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.5 59.5"><circle transform="matrix(.7071 -.7071 .7071 .7071 -12.3229 29.75)" cx="29.8" cy="29.8" r="29.8" fill="#d81f2e"/><path d="M25.5 42.8l-9.5-.1c-1.3 0-2.4 1.1-2.4 2.4v2.4l14.3.1v-2.4c0-1.4-1-2.4-2.4-2.4zm-4.8-2.5a6.06 6.06 0 0 1-6.1-6.1 6.06 6.06 0 0 1 6.1-6.1c3.3 0 6.1 2.7 6.1 6.1a6.06 6.06 0 0 1-6.1 6.1zm0-11.4a5.34 5.34 0 0 0-5.3 5.3 5.34 5.34 0 0 0 5.3 5.3 5.34 5.34 0 0 0 5.3-5.3 5.34 5.34 0 0 0-5.3-5.3zm24.2 13.9l-9.5-.1c-1.3 0-2.4 1-2.4 2.4v2.4l14.3.1v-2.4c-.1-1.4-1.1-2.4-2.4-2.4zm-4.8-2.5a6.06 6.06 0 0 1-6.1-6.1 6.06 6.06 0 0 1 6.1-6.1c3.3 0 6.1 2.7 6.1 6.1-.1 3.4-2.8 6.1-6.1 6.1zm0-11.4a5.34 5.34 0 0 0-5.3 5.3 5.34 5.34 0 0 0 5.3 5.3 5.34 5.34 0 0 0 5.3-5.3 5.34 5.34 0 0 0-5.3-5.3z" fill="#fff"/><path d="M23.4 14.1c-.1-.7 0-1.5.2-2.2.2-.8.6-1.5 1.1-2.1 1-1.4 2.5-2.4 4.2-2.6.6-.1 1.3-.1 1.9-.1.7 0 1.4.2 2 .4.7.3 1.4.7 2 1.2.5.4.9.9 1.2 1.4s.6 1 .7 1.6c.1.3.2.7.2 1l.1 4.8m-13.8-1.9c.6.1 1.2-.2 1.5-.8a1.69 1.69 0 0 0 .3-1l.2-1.2c.1-.4.2-.8.4-1.1.4-.8 1-1.5 1.8-1.9 1.2-.9 2.7-1.1 4.1-.7.5.1 1.1.4 1.5.7.5.3.9.7 1.3 1.1s.6.8.8 1.3c.1.2.1.5.2.8l.1 4.4c-.1.3 0 .6.1.9a.9.9 0 0 0 .6.6c.3.2.7.4 1.1.4m-14-1.8c.3.1.7.1 1 0 .4-.1.8-.3 1.2-.5s.7-.5 1-.9c.2-.6.4-1.2.4-1.8 0-.5.1-1 .2-1.6.2-.4.4-.7.7-1 .2-.3.5-.5.9-.7.7-.4 1.5-.5 2.3-.3a1.93 1.93 0 0 1 1 .3c.3.2.6.4.8.6.3.3.5.6.7.9a1.69 1.69 0 0 1 .3 1V18c0 .2 0 .5.1.7.2.4.5.7.8 1 .3.2.5.4.8.6.5.2 1.1.4 1.7.4M23.2 19h.9c.4-.1.9-.2 1.3-.4l.9-.6c.5-.4.9-.8 1.3-1.3.3-.3.5-.6.6-1 .1-.3.2-.7.2-1.1 0-.3.1-.7.2-1 0-.2.1-.4.3-.6.1-.2.3-.4.5-.5.2-.2.5-.3.8-.4.2 0 .4 0 .6.1l.6.3c.2.2.4.4.5.6.2.4.2.9.1 1.4 0 .6-.2 1.3-.3 1.9-.2.8-.6 1.5-1.1 2.2-.8 1.2-2 2.1-3.2 2.7s-2.6 1-4 1m.1-1.6c.6 0 1.1-.1 1.7-.2 1-.3 2-.8 2.7-1.5.5-.5 1-1 1.3-1.6.3-.4.5-.8.7-1.3.3-.8.4-1.6.3-2.4m.3 6.8h.8m.9-1.6l.3.8c.2.4.5.8.9 1.1a6.42 6.42 0 0 0 1.3 1c.4.2.7.4 1.1.5.5.1 1 .2 1.5.1m-1.2 1.7l-1.1-.4c-.4-.1-.7-.3-1.1-.5-.6-.3-.7-.4-1.2-.6-.4-.2-.9-.4-1.3-.5-.5-.1-1-.1-1.5 0-.3.1-.7.2-1 .4l-1.8.9c-.5.2-1.1.3-1.7.4-.3.2-.7.2-1.1.2m1.3 1.6c.3 0 .7-.1 1-.1.3-.1.7-.2 1-.4l.8-.5c.5-.3.6-.3.8-.4l.9-.3h.6c.3 0 .5 0 .8.1s.6.2.8.4l.6.4c.1.1.5.3.8.4.4.2.9.3 1.4.4M27.3 27l.9-.3c.4-.1.7-.3 1-.5.4-.3.4-.3.6-.4.3-.1.6-.1.9-.1s.5.1.8.2c.2.1.4.2.6.4.3.2.4.3.7.4.2.1.3.2.5.2m-3.1.6h1" fill="none" stroke="#fff" stroke-width=".8" stroke-miterlimit="10"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/security/identity_provider.svg b/src/main/webapp/img/lib/ibm/security/identity_provider.svg index 9b7a7653671dd3c4ac27d153ce6a03dd4caacff2..254ec06f398db2feccce1cc1dd0c5442cac22287 100644 --- a/src/main/webapp/img/lib/ibm/security/identity_provider.svg +++ b/src/main/webapp/img/lib/ibm/security/identity_provider.svg @@ -1,47 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.8 59.8" style="enable-background:new 0 0 59.8 59.8;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#E22133;} - .st1{fill:#FFFFFF;stroke:#FFFFFF;stroke-width:1.2;stroke-miterlimit:10;} - .st2{fill:#DF2233;} - .st3{fill:none;stroke:#FFFFFF;stroke-width:0.8;stroke-miterlimit:10;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle class="st0" cx="29.9" cy="29.9" r="29.9"/> -<path class="st1" d="M22.6,9.1h14.5c2.4,0,4.3,1.9,4.3,4.3v32.8c0,2.4-1.9,4.3-4.3,4.3H22.6c-2.4,0-4.4-1.9-4.4-4.3V13.5 - C18.3,11.1,20.2,9.1,22.6,9.1z"/> -<path class="st2" d="M25.8,14.1H34c2.4,0,4.3,1.9,4.3,4.4V40c0,2.4-1.9,4.3-4.3,4.3h-8.2c-2.4,0-4.4-1.9-4.4-4.3V18.5 - C21.4,16.1,23.4,14.1,25.8,14.1z"/> -<path class="st3" d="M22.9,26c-0.1-0.8,0-1.5,0.2-2.3c0.2-0.8,0.6-1.5,1.1-2.1c1-1.4,2.6-2.4,4.3-2.7c0.6-0.1,1.3-0.2,1.9-0.1 - c0.7,0.1,1.4,0.2,2,0.5c0.7,0.3,1.4,0.7,2,1.3c0.5,0.4,0.9,0.9,1.3,1.5c0.3,0.5,0.6,1.1,0.8,1.6c0.1,0.3,0.2,0.7,0.2,1.1 - c0.1,1.7,0.1,4.4,0.1,4.9"/> -<path class="st3" d="M22.7,27.5c0.6,0.1,1.2-0.2,1.5-0.7c0.2-0.3,0.3-0.6,0.3-1c0.1-0.6,0.1-0.8,0.2-1.3c0.1-0.4,0.2-0.8,0.4-1.2 - c0.4-0.8,1-1.5,1.8-2c1.2-0.9,2.8-1.2,4.2-0.8c0.6,0.1,1.1,0.4,1.6,0.7c0.5,0.3,0.9,0.7,1.3,1.2c0.4,0.4,0.7,0.8,0.9,1.3 - c0.1,0.2,0.1,0.5,0.2,0.8c0.1,1.5,0.1,3,0.1,4.4c-0.1,0.3,0,0.6,0.1,0.9c0.1,0.3,0.4,0.5,0.6,0.6c0.3,0.2,0.7,0.4,1.2,0.4"/> -<path class="st3" d="M22.6,29.2c0.3,0.1,0.7,0.1,1,0c0.4-0.1,0.8-0.3,1.2-0.5c0.4-0.2,0.8-0.6,1-1c0.2-0.6,0.4-1.2,0.4-1.8 - c0-0.5,0.1-1,0.3-1.5c0.2-0.4,0.4-0.7,0.7-1c0.3-0.3,0.6-0.5,0.9-0.7c0.7-0.4,1.5-0.5,2.3-0.4c0.3,0,0.7,0.1,1,0.3 - c0.3,0.2,0.6,0.4,0.9,0.6c0.3,0.3,0.6,0.6,0.8,0.9c0.2,0.3,0.3,0.6,0.4,1c0,0.2,0,0.4,0,0.6c0,1.4,0.1,2.8,0,4.2 - c0,0.2,0,0.5,0.1,0.7c0.2,0.4,0.5,0.7,0.8,1c0.3,0.2,0.6,0.4,0.9,0.6c0.5,0.3,1.1,0.4,1.8,0.4"/> -<path class="st3" d="M22.7,30.9c0.3,0.1,0.6,0.1,0.9,0c0.4-0.1,0.9-0.2,1.3-0.4c0.3-0.2,0.6-0.4,0.9-0.6c0.5-0.4,0.9-0.8,1.3-1.3 - c0.3-0.3,0.5-0.7,0.6-1.1c0.1-0.4,0.2-0.7,0.2-1.1c0-0.3,0.1-0.7,0.2-1c0-0.2,0.1-0.5,0.3-0.7c0.1-0.2,0.3-0.4,0.5-0.5 - c0.2-0.2,0.5-0.3,0.8-0.4c0.2,0,0.4,0,0.7,0.1c0.2,0.1,0.4,0.2,0.6,0.3c0.2,0.2,0.4,0.4,0.5,0.6c0.2,0.5,0.2,0.9,0.1,1.4 - c0,0.6-0.1,1.3-0.3,1.9c-0.3,0.8-0.6,1.5-1.1,2.2c-0.9,1.2-2,2.2-3.3,2.8c-1.3,0.6-2.6,1-4.1,1.1"/> -<path class="st3" d="M23,32.6c0.6,0,1.1-0.1,1.7-0.2c1-0.3,2-0.8,2.8-1.6c0.5-0.5,1-1,1.4-1.6c0.3-0.4,0.5-0.8,0.7-1.3 - c0.3-0.8,0.4-1.6,0.3-2.5"/> -<path class="st3" d="M30.2,32.5H31"/> -<path class="st3" d="M31.9,30.8c0.1,0.3,0.2,0.6,0.3,0.8c0.2,0.4,0.5,0.8,0.9,1.1c0.4,0.4,0.8,0.7,1.3,1c0.4,0.2,0.7,0.4,1.2,0.5 - c0.5,0.1,1,0.2,1.6,0.1"/> -<path class="st3" d="M35.9,36.2c-0.3-0.1-0.6-0.2-1.1-0.4c-0.4-0.1-0.8-0.3-1.1-0.5c-0.6-0.3-0.7-0.4-1.2-0.6 - c-0.4-0.2-0.9-0.4-1.4-0.5c-0.5-0.1-1.1-0.1-1.6,0c-0.4,0.1-0.7,0.2-1.1,0.4c-1.1,0.5-1.1,0.7-1.8,0.9c-0.5,0.2-1.1,0.4-1.7,0.4 - C24.6,36,24.1,36,23.7,36"/> -<path class="st3" d="M25.1,37.6c0.3,0,0.7-0.1,1-0.1c0.3-0.1,0.7-0.2,1-0.4c0.4-0.2,0.4-0.2,0.8-0.5s0.6-0.3,0.8-0.4 - c0.3-0.1,0.6-0.3,0.9-0.3c0.2,0,0.4,0,0.7,0c0.3,0,0.5,0,0.8,0.1c0.3,0.1,0.6,0.2,0.8,0.4c0.3,0.2,0.3,0.2,0.6,0.4 - c0.1,0.1,0.5,0.3,0.8,0.4c0.4,0.2,0.9,0.3,1.4,0.4"/> -<path class="st3" d="M26.9,39.1c0.3-0.1,0.7-0.2,1-0.3c0.4-0.1,0.7-0.3,1-0.5c0.4-0.3,0.4-0.3,0.6-0.4c0.3-0.1,0.6-0.1,0.9-0.1 - c0.3,0,0.6,0.1,0.8,0.2c0.2,0.1,0.4,0.2,0.7,0.4c0.4,0.2,0.4,0.3,0.7,0.5c0.2,0.1,0.4,0.2,0.5,0.2"/> -<path class="st3" d="M29.9,39.6h1"/> -<ellipse class="st2" cx="29.7" cy="47.4" rx="1.8" ry="1.8"/> -<rect x="27.4" y="10.6" class="st2" width="4.8" height="0.9"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.8 59.8"><circle cx="29.9" cy="29.9" r="29.9" fill="#e22133"/><path d="M22.6 9.1h14.5c2.4 0 4.3 1.9 4.3 4.3v32.8c0 2.4-1.9 4.3-4.3 4.3H22.6c-2.4 0-4.4-1.9-4.4-4.3V13.5c.1-2.4 2-4.4 4.4-4.4z" fill="#fff" stroke="#fff" stroke-width="1.2" stroke-miterlimit="10"/><path d="M25.8 14.1H34c2.4 0 4.3 1.9 4.3 4.4V40c0 2.4-1.9 4.3-4.3 4.3h-8.2c-2.4 0-4.4-1.9-4.4-4.3V18.5c0-2.4 2-4.4 4.4-4.4z" fill="#df2233"/><path d="M22.9 26c-.1-.8 0-1.5.2-2.3s.6-1.5 1.1-2.1c1-1.4 2.6-2.4 4.3-2.7.6-.1 1.3-.2 1.9-.1.7.1 1.4.2 2 .5.7.3 1.4.7 2 1.3.5.4.9.9 1.3 1.5a11.94 11.94 0 0 1 .8 1.6c.1.3.2.7.2 1.1l.1 4.9m-14.1-2.2c.6.1 1.2-.2 1.5-.7a1.69 1.69 0 0 0 .3-1l.2-1.3c.1-.4.2-.8.4-1.2.4-.8 1-1.5 1.8-2 1.2-.9 2.8-1.2 4.2-.8.6.1 1.1.4 1.6.7s.9.7 1.3 1.2c.4.4.7.8.9 1.3.1.2.1.5.2.8l.1 4.4c-.1.3 0 .6.1.9s.4.5.6.6c.3.2.7.4 1.2.4m-14.5-1.6c.3.1.7.1 1 0 .4-.1.8-.3 1.2-.5a2.41 2.41 0 0 0 1-1c.2-.6.4-1.2.4-1.8 0-.5.1-1 .3-1.5.2-.4.4-.7.7-1s.6-.5.9-.7c.7-.4 1.5-.5 2.3-.4a1.93 1.93 0 0 1 1 .3l.9.6c.3.3.6.6.8.9s.3.6.4 1v4.8c0 .2 0 .5.1.7.2.4.5.7.8 1l.9.6c.5.3 1.1.4 1.8.4m-14.4-1.7c.3.1.6.1.9 0 .4-.1.9-.2 1.3-.4l.9-.6c.5-.4.9-.8 1.3-1.3.3-.3.5-.7.6-1.1s.2-.7.2-1.1c0-.3.1-.7.2-1a1.08 1.08 0 0 1 .3-.7c.1-.2.3-.4.5-.5.2-.2.5-.3.8-.4.2 0 .4 0 .7.1l.6.3c.2.2.4.4.5.6.2.5.2.9.1 1.4a6.28 6.28 0 0 1-.3 1.9c-.3.8-.6 1.5-1.1 2.2-.9 1.2-2 2.2-3.3 2.8s-2.6 1-4.1 1.1m.2-1.6c.6 0 1.1-.1 1.7-.2 1-.3 2-.8 2.8-1.6.5-.5 1-1 1.4-1.6.3-.4.5-.8.7-1.3a5.24 5.24 0 0 0 .3-2.5m.3 7.1h.8m.9-1.7l.3.8c.2.4.5.8.9 1.1a6.42 6.42 0 0 0 1.3 1c.4.2.7.4 1.2.5s1 .2 1.6.1m-1.3 1.9l-1.1-.4c-.4-.1-.8-.3-1.1-.5-.6-.3-.7-.4-1.2-.6-.4-.2-.9-.4-1.4-.5s-1.1-.1-1.6 0c-.4.1-.7.2-1.1.4-1.1.5-1.1.7-1.8.9-.5.2-1.1.4-1.7.4-.3.1-.8.1-1.2.1m1.4 1.6c.3 0 .7-.1 1-.1.3-.1.7-.2 1-.4.4-.2.4-.2.8-.5s.6-.3.8-.4c.3-.1.6-.3.9-.3h.7c.3 0 .5 0 .8.1s.6.2.8.4l.6.4c.1.1.5.3.8.4.4.2.9.3 1.4.4m-7.8 1.5l1-.3c.4-.1.7-.3 1-.5.4-.3.4-.3.6-.4.3-.1.6-.1.9-.1s.6.1.8.2.4.2.7.4c.4.2.4.3.7.5.2.1.4.2.5.2m-3.2.5h1" stroke="#fff" stroke-miterlimit="10" fill="none" stroke-width=".8"/><g fill="#df2233"><circle cx="29.7" cy="47.4" r="1.8"/><path d="M27.4 10.6h4.8v.9h-4.8z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/security/infrastructure_security.svg b/src/main/webapp/img/lib/ibm/security/infrastructure_security.svg index d36670eb2b9dbcdcafcafd60b1ba735ce6f8bb76..48a634a24ec84e77ec91723ef6edd45010b0f186 100644 --- a/src/main/webapp/img/lib/ibm/security/infrastructure_security.svg +++ b/src/main/webapp/img/lib/ibm/security/infrastructure_security.svg @@ -1,23 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 60.1 60.1" style="enable-background:new 0 0 60.1 60.1;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#D81F2E;} - .st1{fill:#FFFFFF;} - .st2{fill:none;stroke:#FFFFFF;stroke-miterlimit:10;} - .st3{fill:#D81F2E;stroke:#FFFFFF;stroke-miterlimit:10;} -</style> -<title>INDIVIDUAL ICONS</title> -<ellipse transform="matrix(0.7071 -0.7071 0.7071 0.7071 -12.4554 30.07)" class="st0" cx="30.1" cy="30.1" rx="30.1" ry="30.1"/> -<rect x="47.3" y="13.9" class="st1" width="6.4" height="6.4"/> -<rect x="47.3" y="39.6" class="st1" width="6.4" height="6.4"/> -<rect x="47.3" y="26.9" class="st1" width="6.4" height="6.4"/> -<line class="st2" x1="49.5" y1="30.1" x2="13.9" y2="30.1"/> -<rect x="12" y="21.8" class="st1" width="3.8" height="16.5"/> -<polyline class="st2" points="50.5,17.1 45,17.1 45,42.9 50.5,42.9 "/> -<ellipse transform="matrix(0.7071 -0.7071 0.7071 0.7071 -12.4554 30.07)" class="st3" cx="30.1" cy="30.1" rx="7.5" ry="7.5"/> -<path class="st1" d="M32.8,27.8c0.1-1.5-1.1-2.8-2.6-2.9c-1.5-0.1-2.8,1.1-2.9,2.6c0,0.1,0,0.2,0,0.3V29c-1.3,1.5-1.2,3.8,0.3,5.2 - s3.8,1.2,5.2-0.3c1.2-1.4,1.2-3.5,0-4.8V27.8z M28.2,27.8c0-1,0.8-1.8,1.8-1.8c1,0,1.8,0.8,1.8,1.8c0,0,0,0,0,0v0.5 - c-1.1-0.7-2.5-0.7-3.7,0V27.8z M29.4,33.5l-1.7-1.7l0.7-0.6l1,1l2.4-2.4l0.7,0.6L29.4,33.5z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60.1 60.1"><circle transform="matrix(.7071 -.7071 .7071 .7071 -12.4554 30.07)" cx="30.1" cy="30.1" r="30.1" fill="#d81f2e"/><path d="M47.3 13.9h6.4v6.4h-6.4zm0 25.7h6.4V46h-6.4zm0-12.7h6.4v6.4h-6.4z" fill="#fff"/><path d="M49.5 30.1H13.9" fill="none" stroke="#fff" stroke-miterlimit="10"/><path d="M12 21.8h3.8v16.5H12z" fill="#fff"/><g stroke="#fff"><path d="M50.5 17.1H45v25.8h5.5" fill="none" stroke-miterlimit="10"/><circle transform="matrix(.7071 -.7071 .7071 .7071 -12.4554 30.07)" cx="30.1" cy="30.1" r="7.5" fill="#d81f2e"/></g><path d="M32.8 27.8c.1-1.5-1.1-2.8-2.6-2.9s-2.8 1.1-2.9 2.6V29c-1.3 1.5-1.2 3.8.3 5.2s3.8 1.2 5.2-.3c1.2-1.4 1.2-3.5 0-4.8v-1.3zm-4.6 0a1.79 1.79 0 1 1 3.6 0v.5c-1.1-.7-2.5-.7-3.7 0v-.5zm1.2 5.7l-1.7-1.7.7-.6 1 1 2.4-2.4.7.6-3.1 3.1z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/security/physical_security.svg b/src/main/webapp/img/lib/ibm/security/physical_security.svg index e3d2b1e52a74d340884adf7a0daa682d39d8756a..7d4f860a561b843f1a6dbcc1732fd329b99946ed 100644 --- a/src/main/webapp/img/lib/ibm/security/physical_security.svg +++ b/src/main/webapp/img/lib/ibm/security/physical_security.svg @@ -1,25 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.3 59.3" style="enable-background:new 0 0 59.3 59.3;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#D81F2E;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<ellipse transform="matrix(0.7071 -0.7071 0.7071 0.7071 -12.2814 29.65)" class="st0" cx="29.6" cy="29.6" rx="29.6" ry="29.6"/> -<circle class="st1" cx="29.7" cy="29.6" r="1.3"/> -<path class="st1" d="M29.7,34.1c-2.5,0-4.4-2-4.4-4.5s2-4.4,4.5-4.4c2.5,0,4.4,2,4.4,4.4C34.1,32.1,32.1,34.1,29.7,34.1z M29.7,26.4 - c-1.8,0-3.2,1.4-3.2,3.2c0,1.8,1.4,3.2,3.2,3.2c1.8,0,3.2-1.4,3.2-3.2l0,0C32.9,27.9,31.4,26.4,29.7,26.4 - C29.7,26.4,29.7,26.4,29.7,26.4L29.7,26.4z"/> -<path class="st1" d="M29.7,37.2c-4.2,0-7.5-3.4-7.5-7.5s3.4-7.5,7.5-7.5s7.5,3.4,7.5,7.5C37.2,33.8,33.8,37.2,29.7,37.2z M29.7,23.4 - c-3.5,0-6.3,2.8-6.3,6.3s2.8,6.3,6.3,6.3s6.3-2.8,6.3-6.3l0,0C36,26.2,33.1,23.4,29.7,23.4z"/> -<path class="st1" d="M29.7,40.2c-5.8,0-10.6-4.7-10.6-10.6c0-5.8,4.7-10.6,10.6-10.6c5.8,0,10.6,4.7,10.6,10.6 - C40.2,35.5,35.5,40.2,29.7,40.2z M29.7,20.3c-5.2,0-9.3,4.2-9.3,9.3s4.2,9.3,9.3,9.3s9.3-4.2,9.3-9.3l0,0 - C39,24.5,34.8,20.3,29.7,20.3L29.7,20.3z"/> -<path class="st1" d="M29.7,43c-7.4,0-13.4-6-13.4-13.4s6-13.4,13.4-13.4c7.4,0,13.4,6,13.4,13.4C43,37,37.1,43,29.7,43z M29.7,17.5 - c-6.7,0-12.2,5.4-12.2,12.2s5.4,12.1,12.1,12.1s12.2-5.4,12.2-12.1c0,0,0,0,0,0C41.8,22.9,36.4,17.5,29.7,17.5z"/> -<path class="st1" d="M29.7,45.7c-8.9,0-16.1-7.2-16.1-16.1c0-8.9,7.2-16.1,16.1-16.1c8.9,0,16.1,7.2,16.1,16.1 - C45.7,38.5,38.5,45.7,29.7,45.7z M29.7,14.8c-8.2,0-14.8,6.6-14.8,14.8s6.6,14.8,14.8,14.8s14.8-6.6,14.8-14.8l0,0 - C44.5,21.5,37.8,14.8,29.7,14.8z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.3 59.3"><circle transform="matrix(.7071 -.7071 .7071 .7071 -12.2814 29.65)" cx="29.6" cy="29.6" r="29.6" fill="#d81f2e"/><g fill="#fff"><circle cx="29.7" cy="29.6" r="1.3"/><path d="M29.7 34.1c-2.5 0-4.4-2-4.4-4.5s2-4.4 4.5-4.4 4.4 2 4.4 4.4c-.1 2.5-2.1 4.5-4.5 4.5zm0-7.7c-1.8 0-3.2 1.4-3.2 3.2s1.4 3.2 3.2 3.2 3.2-1.4 3.2-3.2c0-1.7-1.5-3.2-3.2-3.2zm0 10.8c-4.2 0-7.5-3.4-7.5-7.5s3.4-7.5 7.5-7.5 7.5 3.4 7.5 7.5-3.4 7.5-7.5 7.5zm0-13.8c-3.5 0-6.3 2.8-6.3 6.3s2.8 6.3 6.3 6.3 6.3-2.8 6.3-6.3-2.9-6.3-6.3-6.3zm0 16.8c-5.8 0-10.6-4.7-10.6-10.6 0-5.8 4.7-10.6 10.6-10.6 5.8 0 10.6 4.7 10.6 10.6-.1 5.9-4.8 10.6-10.6 10.6zm0-19.9c-5.2 0-9.3 4.2-9.3 9.3s4.2 9.3 9.3 9.3 9.3-4.2 9.3-9.3-4.2-9.3-9.3-9.3zm0 22.7c-7.4 0-13.4-6-13.4-13.4s6-13.4 13.4-13.4 13.4 6 13.4 13.4C43 37 37.1 43 29.7 43zm0-25.5c-6.7 0-12.2 5.4-12.2 12.2s5.4 12.1 12.1 12.1 12.2-5.4 12.2-12.1c0-6.8-5.4-12.2-12.1-12.2zm0 28.2c-8.9 0-16.1-7.2-16.1-16.1s7.2-16.1 16.1-16.1 16.1 7.2 16.1 16.1c-.1 8.9-7.3 16.1-16.1 16.1zm0-30.9a14.77 14.77 0 0 0-14.8 14.8 14.77 14.77 0 0 0 14.8 14.8 14.77 14.77 0 0 0 14.8-14.8c0-8.1-6.7-14.8-14.8-14.8z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/security/security_monitoring_intelligence.svg b/src/main/webapp/img/lib/ibm/security/security_monitoring_intelligence.svg index c463cbe6e74ffabaa0cbbc833a653c79b258c4f8..c993bea7f98f427f219a5018360e416c5a8d62cf 100644 --- a/src/main/webapp/img/lib/ibm/security/security_monitoring_intelligence.svg +++ b/src/main/webapp/img/lib/ibm/security/security_monitoring_intelligence.svg @@ -1,27 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.6 59.6" style="enable-background:new 0 0 59.6 59.6;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#D81F2E;} - .st1{fill:none;stroke:#FFFFFF;stroke-miterlimit:10;} -</style> -<title>INDIVIDUAL ICONS</title> -<ellipse transform="matrix(0.7071 -0.7071 0.7071 0.7071 -12.3518 29.82)" class="st0" cx="29.8" cy="29.8" rx="29.8" ry="29.8"/> -<circle class="st1" cx="13.8" cy="30.9" r="2.3"/> -<circle class="st1" cx="25.3" cy="22.7" r="2.3"/> -<circle class="st1" cx="29.1" cy="30.2" r="2.3"/> -<circle class="st1" cx="35.6" cy="31.6" r="2.3"/> -<circle class="st1" cx="37.4" cy="39.6" r="2.3"/> -<circle class="st1" cx="45.9" cy="28.6" r="2.3"/> -<line class="st1" x1="15.7" y1="29.6" x2="23.2" y2="23.7"/> -<line class="st1" x1="27.1" y1="24.4" x2="28.4" y2="27.9"/> -<line class="st1" x1="31.4" y1="30.9" x2="33.3" y2="30.9"/> -<line class="st1" x1="35.1" y1="33.8" x2="36.1" y2="38.1"/> -<line class="st1" x1="39" y1="38" x2="44.2" y2="30.2"/> -<line class="st1" x1="21.5" y1="20.4" x2="20.1" y2="19"/> -<line class="st1" x1="20" y1="23.7" x2="18.1" y2="23.7"/> -<line class="st1" x1="25.4" y1="19.1" x2="25.4" y2="17.2"/> -<line class="st1" x1="28.2" y1="20.3" x2="29.7" y2="19.1"/> -<line class="st1" x1="31.7" y1="23.7" x2="29.7" y2="23.7"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.6 59.6"><circle transform="matrix(.7071 -.7071 .7071 .7071 -12.3518 29.82)" cx="29.8" cy="29.8" r="29.8" fill="#d81f2e"/><g fill="none" stroke="#fff"><circle cx="13.8" cy="30.9" r="2.3"/><circle cx="25.3" cy="22.7" r="2.3"/><circle cx="29.1" cy="30.2" r="2.3"/><circle cx="35.6" cy="31.6" r="2.3"/><circle cx="37.4" cy="39.6" r="2.3"/><circle cx="45.9" cy="28.6" r="2.3"/><path d="M15.7 29.6l7.5-5.9m3.9.7l1.3 3.5m3 3h1.9m1.8 2.9l1 4.3M39 38l5.2-7.8m-22.7-9.8L20.1 19m-.1 4.7h-1.9m7.3-4.6v-1.9m2.8 3.1l1.5-1.2m2 4.6h-2" stroke-miterlimit="10"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/security/security_services.svg b/src/main/webapp/img/lib/ibm/security/security_services.svg index c0f39881d93486f1a3597d61626e7efdf8a2afd2..62bad2a03cfe317a212e8d7d10a6c7842dd4224f 100644 --- a/src/main/webapp/img/lib/ibm/security/security_services.svg +++ b/src/main/webapp/img/lib/ibm/security/security_services.svg @@ -1,14 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.8 59.8" style="enable-background:new 0 0 59.8 59.8;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#E02533;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle class="st0" cx="29.9" cy="29.9" r="29.9"/> -<path class="st1" d="M40.3,21.3c0-5.7-4.6-10.3-10.3-10.3c-5.7,0-10.3,4.6-10.3,10.3V26c-5,5.7-4.5,14.4,1.2,19.4s14.4,4.5,19.4-1.2 - c4.6-5.2,4.6-13,0-18.2V21.3z M23,21.3c0.1-3.8,3.1-6.8,6.9-6.9c3.8,0.1,6.8,3.1,6.9,6.9v1.9c-4.3-2.5-9.5-2.5-13.8,0L23,21.3z - M27.3,42.6L21,36.3l2.4-2.4l3.9,4l9.1-9.1l2.4,2.4L27.3,42.6z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.8 59.8"><circle cx="29.9" cy="29.9" r="29.9" fill="#e02533"/><path d="M40.3 21.3C40.3 15.6 35.7 11 30 11s-10.3 4.6-10.3 10.3V26c-5 5.7-4.5 14.4 1.2 19.4s14.4 4.5 19.4-1.2a13.73 13.73 0 0 0 0-18.2v-4.7zm-17.3 0c.1-3.8 3.1-6.8 6.9-6.9 3.8.1 6.8 3.1 6.9 6.9v1.9a13.63 13.63 0 0 0-13.8 0v-1.9zm4.3 21.3L21 36.3l2.4-2.4 3.9 4 9.1-9.1 2.4 2.4-11.5 11.4z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/security/trustend_computing.svg b/src/main/webapp/img/lib/ibm/security/trustend_computing.svg index f3c02a88c84edac5f42acdcba2aef1c1c135b3c9..c58904e2eafa0cbe2d04a840aeb78b0768d49024 100644 --- a/src/main/webapp/img/lib/ibm/security/trustend_computing.svg +++ b/src/main/webapp/img/lib/ibm/security/trustend_computing.svg @@ -1,20 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.7 59.7" style="enable-background:new 0 0 59.7 59.7;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#FFFFFF;} - .st1{fill:#E02533;} -</style> -<title>INDIVIDUAL ICONS</title> -<rect x="13.9" y="40.7" class="st0" width="36.2" height="3.1"/> -<circle class="st1" cx="29.8" cy="29.8" r="29.8"/> -<rect x="9.9" y="12.3" class="st0" width="39.9" height="31.3"/> -<rect x="13" y="15.4" class="st1" width="33.7" height="24.1"/> -<path class="st0" d="M37.2,26.6c0,1.2,0,2.4,0,3.6c0.1,1.3-0.5,2.6-1.6,3.5c-1.5,1.2-3.2,2.1-5,2.7c-0.5,0.2-1,0.2-1.5,0 - c-1.8-0.6-3.5-1.5-5-2.7c-1.1-0.8-1.7-2.1-1.6-3.5c0-2.5,0-5.1,0-7.6c0-0.3,0.1-0.5,0.4-0.5c2.2-0.8,4.4-1.6,6.6-2.4 - c0.3-0.1,0.6-0.1,0.8,0c2.2,0.8,4.4,1.6,6.6,2.4c0.3,0.1,0.4,0.3,0.4,0.6C37.2,23.9,37.2,25.2,37.2,26.6z M28.9,29.7l-0.3-0.3 - c-0.6-0.6-1.3-1.3-1.9-1.9c-0.3-0.4-0.9-0.4-1.2-0.1c0,0,0,0-0.1,0c-0.3,0.3-0.3,0.9,0,1.2c0,0,0.1,0.1,0.1,0.1l2.6,2.6 - c0.5,0.5,0.9,0.5,1.5,0l4.9-5c0.1-0.1,0.2-0.2,0.2-0.3c0.2-0.3,0.2-0.6,0-0.9c-0.2-0.3-0.5-0.4-0.8-0.4c-0.2,0.1-0.4,0.2-0.6,0.4 - c-1.1,1.1-2.2,2.2-3.3,3.3C29.7,28.8,29.3,29.3,28.9,29.7z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.7 59.7"><path d="M13.9 40.7h36.2v3.1H13.9z" fill="#fff"/><circle cx="29.8" cy="29.8" r="29.8" fill="#e02533"/><path d="M9.9 12.3h39.9v31.3H9.9z" fill="#fff"/><path d="M13 15.4h33.7v24.1H13z" fill="#e02533"/><path d="M37.2 26.6v3.6c.1 1.3-.5 2.6-1.6 3.5-1.5 1.2-3.2 2.1-5 2.7a1.95 1.95 0 0 1-1.5 0c-1.8-.6-3.5-1.5-5-2.7-1.1-.8-1.7-2.1-1.6-3.5v-7.6c0-.3.1-.5.4-.5l6.6-2.4c.3-.1.6-.1.8 0l6.6 2.4c.3.1.4.3.4.6-.1 1.2-.1 2.5-.1 3.9zm-8.3 3.1l-2.2-2.2c-.3-.4-.9-.4-1.2-.1h-.1c-.3.3-.3.9 0 1.2l2.7 2.7c.5.5.9.5 1.5 0l4.9-5c.1-.1.2-.2.2-.3.2-.3.2-.6 0-.9s-.5-.4-.8-.4c-.2.1-.4.2-.6.4L30 28.4c-.3.4-.7.9-1.1 1.3z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/security/vpn.svg b/src/main/webapp/img/lib/ibm/security/vpn.svg index 615603ad236fcb513af68e62d88a78a644cd0979..defea60a0eea398d64e83381aaef6cb0703347e1 100644 --- a/src/main/webapp/img/lib/ibm/security/vpn.svg +++ b/src/main/webapp/img/lib/ibm/security/vpn.svg @@ -1,21 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 58.4 58.4" style="enable-background:new 0 0 58.4 58.4;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#DF2633;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle class="st0" cx="29.2" cy="29.2" r="29.2"/> -<path class="st1" d="M44,38.5v-5.2v-1.7c0-1.5,0.4-3.2-0.7-4.5c-0.2-0.5-0.7-1-1.2-1.2c-1.4-1.1-3-1-4.6-0.8h-1.7h-5.2h-1.8h-5.2 - h-1.7c-6.3-0.3-7.9,1.3-7.5,7.6V34v5.5v1.8c-0.2,1.6-0.2,3.1,1.3,4.2c0.3,0.5,0.8,0.9,1.4,1c1.6,0.8,3.2,0.5,4.9,0.4h1.7h5.2h1.7 - h5.2h1.7c0.8,0,1.5,0.1,2.3,0c2.4,0,4.3-1.8,4.4-4.2c0-0.1,0-0.2,0-0.3c0-0.7,0-1.4,0-2.1L44,38.5z M30.4,40.8 - c0.2-0.7,0.3-1.3,0.3-2h0.1h-0.1C30.7,39.5,30.6,40.2,30.4,40.8z"/> -<path class="st1" d="M21.1,23.5c0.4,0,0.8,0,1.2,0c0.8,0.1,1.3-0.2,1.2-1.1c0-1.4,0.2-2.7,0.7-4c0.6-1.1,1.6-2.1,2.8-2.6l0,0 - c1.4-0.3,2.9-0.3,4.3,0l0,0l1.6,1l0,0c0.6,0.7,1.1,1.5,1.5,2.4c0.3,1.1,0.5,2.2,0.5,3.4c0,0.8,0.3,1,1,1c0.6,0,1.1,0,1.7,0 - c0.9,0.1,1.2-0.3,1.2-1.2c0-1.8-0.4-3.7-1.1-5.3c-0.4-1.5-1.4-2.7-2.7-3.6l0,0c-0.1-0.3-0.4-0.5-0.7-0.5c-1.2-0.9-2.7-1.4-4.2-1.4 - c0,0.2-0.1,0.4-0.2,0.6c0.1-0.2,0.2-0.4,0.2-0.6h-1.7c-4.7,0.1-7.9,3.4-8.6,8.6v1.7C19.4,23.1,19.7,23.7,21.1,23.5z M32.2,15.1 - l0.3-0.2L32.2,15.1z M33,14.4L33,14.4z M29.9,12.2c-0.1,0.2-0.2,0.3-0.4,0.5C29.6,12.5,29.7,12.4,29.9,12.2L29.9,12.2z M28,14.1 - c-0.3,0.3-0.6,0.6-0.9,1C27.4,14.7,27.6,14.4,28,14.1L28,14.1z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 58.4 58.4"><circle cx="29.2" cy="29.2" r="29.2" fill="#df2633"/><path d="M44 38.5v-6.9c0-1.5.4-3.2-.7-4.5-.2-.5-.7-1-1.2-1.2-1.4-1.1-3-1-4.6-.8H21.9c-6.3-.3-7.9 1.3-7.5 7.6v8.6c-.2 1.6-.2 3.1 1.3 4.2.3.5.8.9 1.4 1 1.6.8 3.2.5 4.9.4h15.5c.8 0 1.5.1 2.3 0a4.33 4.33 0 0 0 4.4-4.2v-2.4l-.2-1.8zm-13.6 2.3c.2-.7.3-1.3.3-2 0 .7-.1 1.4-.3 2zm-9.3-17.3h1.2c.8.1 1.3-.2 1.2-1.1 0-1.4.2-2.7.7-4 .6-1.1 1.6-2.1 2.8-2.6 1.4-.3 2.9-.3 4.3 0l1.6 1c.6.7 1.1 1.5 1.5 2.4.3 1.1.5 2.2.5 3.4 0 .8.3 1 1 1h1.7c.9.1 1.2-.3 1.2-1.2a13.59 13.59 0 0 0-1.1-5.3c-.4-1.5-1.4-2.7-2.7-3.6-.1-.3-.4-.5-.7-.5-1.2-.9-2.7-1.4-4.2-1.4 0 .2-.1.4-.2.6.1-.2.2-.4.2-.6h-1.7c-4.7.1-7.9 3.4-8.6 8.6v1.7c-.4 1.2-.1 1.8 1.3 1.6zm11.1-8.4l.3-.2-.3.2zm.8-.7zm-3.1-2.2c-.1.2-.2.3-.4.5.1-.2.2-.3.4-.5zM28 14.1c-.3.3-.6.6-.9 1 .3-.4.5-.7.9-1z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/social/communities.svg b/src/main/webapp/img/lib/ibm/social/communities.svg index 962ac79dfbd6af61bb75f962bd5de79bfecc74a1..eaeb89c7bf9c53fbb649b029ea684aa0b63284ad 100644 --- a/src/main/webapp/img/lib/ibm/social/communities.svg +++ b/src/main/webapp/img/lib/ibm/social/communities.svg @@ -1,19 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.7 59.7" style="enable-background:new 0 0 59.7 59.7;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#BF6328;} - .st1{fill:#FFFFFF;} - .st2{fill:none;stroke:#FFFFFF;stroke-miterlimit:10;} -</style> -<title>INDIVIDUAL ICONS 2</title> -<ellipse transform="matrix(0.9507 -0.3102 0.3102 0.9507 -7.7869 10.7259)" class="st0" cx="29.8" cy="29.8" rx="29.8" ry="29.8"/> -<path class="st1" d="M14.3,12.8v30.3h31.1V12.8H14.3z M44.4,41.6H15.3V14.4h29.1V41.6z"/> -<rect x="18" y="16.3" class="st2" width="22.9" height="3.1"/> -<rect x="18" y="21.9" class="st2" width="4.1" height="17"/> -<rect x="25" y="21.9" class="st2" width="15.8" height="3.2"/> -<rect x="25" y="26.4" class="st2" width="15.8" height="3.2"/> -<rect x="25" y="31" class="st2" width="15.8" height="3.2"/> -<rect x="25" y="35.4" class="st2" width="15.8" height="3.2"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.7 59.7"><circle transform="matrix(.9507 -.3102 .3102 .9507 -7.7869 10.7259)" cx="29.8" cy="29.8" r="29.8" fill="#bf6328"/><path d="M14.3 12.8v30.3h31.1V12.8H14.3zm30.1 28.8H15.3V14.4h29.1v27.2z" fill="#fff"/><path d="M18 16.3h22.9v3.1H18zm0 5.6h4.1v17H18zm7 0h15.8v3.2H25zm0 4.5h15.8v3.2H25zm0 4.6h15.8v3.2H25zm0 4.4h15.8v3.2H25z" fill="none" stroke="#fff" stroke-miterlimit="10"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/social/file_sync.svg b/src/main/webapp/img/lib/ibm/social/file_sync.svg index 5ff54d792a387e08af7ea54912be2daadd6942c7..3770fe008a8b4d022e25c2b2d5275db51e72a30c 100644 --- a/src/main/webapp/img/lib/ibm/social/file_sync.svg +++ b/src/main/webapp/img/lib/ibm/social/file_sync.svg @@ -1,22 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 60.4 60.4" style="enable-background:new 0 0 60.4 60.4;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#BF6328;} - .st1{fill:#FFFFFF;} -</style> -<symbol id="New_Symbol" viewBox="-26.5 -26.5 53 53"> - <ellipse class="st0" cx="0" cy="0" rx="26.5" ry="26.5"/> -</symbol> -<title>INDIVIDUAL ICONS 2</title> -<use xlink:href="#New_Symbol" width="53" height="53" x="-26.5" y="-26.5" transform="matrix(-1.1398 -1.392655e-03 1.392655e-03 -1.1398 30.2043 30.1929)" style="overflow:visible;"/> -<path class="st1" d="M26.3,19.8v-3.9H10.7v28.6h39V19.8H26.3z M48.4,43.2H12V23.7h36.4V43.2z"/> -<g id="_7"> - <path class="st1" d="M38.3,32.4h-0.9c-0.6-3.9-4.2-6.6-8.1-6.1c-2.3,0.3-4.3,1.8-5.4,3.8l1.9,0.7c1.4-2.5,4.5-3.3,7-2 - c1.3,0.7,2.2,2,2.5,3.4H34c-0.2,0.2-0.3,0.3-0.1,0.5l1.9,1.9c0.2,0.2,0.4,0.2,0.6,0l1.9-1.9C38.5,32.8,38.4,32.6,38.3,32.4z - M30.3,38.6c-2.2,0-4.2-1.4-4.9-3.6h1.1c0.2-0.2,0.2-0.4,0.1-0.5l-1.9-2c-0.2-0.2-0.4-0.2-0.6,0c0,0,0,0,0,0l-1.9,2 - c-0.2,0.3-0.1,0.4,0.1,0.5h0.9c0.9,3.9,4.7,6.3,8.6,5.5c1.9-0.4,3.6-1.6,4.6-3.3l-1.9-0.8C33.5,37.8,31.9,38.6,30.3,38.6L30.3,38.6 - z"/> -</g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 60.4 60.4"><symbol id="A" viewBox="-26.5 -26.5 53 53"><circle cx="0" cy="0" r="26.5" fill="#bf6328"/></symbol><use xlink:href="#A" width="53" height="53" x="-26.5" y="-26.5" transform="matrix(-1.1398 -.001393 .001393 -1.1398 30.2043 30.1929)"/><path d="M26.3 19.8v-3.9H10.7v28.6h39V19.8H26.3zm22.1 23.4H12V23.7h36.4v19.5zM38.3 32.4h-.9c-.6-3.9-4.2-6.6-8.1-6.1-2.3.3-4.3 1.8-5.4 3.8l1.9.7c1.4-2.5 4.5-3.3 7-2 1.3.7 2.2 2 2.5 3.4H34c-.2.2-.3.3-.1.5l1.9 1.9a.37.37 0 0 0 .6 0l1.9-1.9c.2.1.1-.1 0-.3zm-8 6.2a5.13 5.13 0 0 1-4.9-3.6h1.1c.2-.2.2-.4.1-.5l-1.9-2a.37.37 0 0 0-.6 0l-1.9 2c-.2.3-.1.4.1.5h.9c.9 3.9 4.7 6.3 8.6 5.5 1.9-.4 3.6-1.6 4.6-3.3l-1.9-.8c-1 1.4-2.6 2.2-4.2 2.2z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/social/live_collaboration.svg b/src/main/webapp/img/lib/ibm/social/live_collaboration.svg index f25fe45d0de4810e784a7f7fd5f9df0a5ae12637..b0f5c504a37df25f86673e6de3c326338b72380b 100644 --- a/src/main/webapp/img/lib/ibm/social/live_collaboration.svg +++ b/src/main/webapp/img/lib/ibm/social/live_collaboration.svg @@ -1,31 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.3 59.3" style="enable-background:new 0 0 59.3 59.3;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#BF6328;} - .st1{fill:#FFFFFF;} -</style> -<symbol id="New_Symbol" viewBox="-26.5 -26.5 53 53"> - <ellipse class="st0" cx="0" cy="0" rx="26.5" ry="26.5"/> -</symbol> -<title>INDIVIDUAL ICONS 2</title> -<use xlink:href="#New_Symbol" width="53" height="53" x="-26.5" y="-26.5" transform="matrix(-1.1198 -1.368223e-03 1.368223e-03 -1.1198 29.6744 29.6632)" style="overflow:visible;"/> -<path class="st1" d="M24.8,47.2h-6.9c-0.9,0-1.7,0.8-1.7,1.7c0,0,0,0,0,0v1.7l10.3,0.1V49C26.5,48,25.8,47.2,24.8,47.2 - C24.8,47.2,24.8,47.2,24.8,47.2z"/> -<path class="st1" d="M21.4,45.4c-2.4,0-4.4-2-4.4-4.4c0-2.4,2-4.4,4.4-4.4c2.4,0,4.4,2,4.4,4.4S23.8,45.4,21.4,45.4 - C21.4,45.4,21.4,45.4,21.4,45.4z M21.4,37.2c-2.1,0-3.8,1.7-3.8,3.8s1.7,3.8,3.8,3.8s3.8-1.7,3.8-3.8l0,0 - C25.2,39,23.5,37.2,21.4,37.2L21.4,37.2z"/> -<path class="st1" d="M38.2,47.2h-6.9c-0.9,0-1.7,0.8-1.7,1.7c0,0,0,0,0,0v1.7l10.3,0.1V49C39.9,48,39.2,47.2,38.2,47.2 - C38.2,47.2,38.2,47.2,38.2,47.2z"/> -<path class="st1" d="M34.8,45.4c-2.4,0-4.4-2-4.4-4.4c0-2.4,2-4.4,4.4-4.4c2.4,0,4.4,2,4.4,4.4S37.2,45.4,34.8,45.4 - C34.8,45.4,34.8,45.4,34.8,45.4z M34.8,37.2c-2.1,0-3.8,1.7-3.8,3.8s1.7,3.8,3.8,3.8s3.8-1.7,3.8-3.8v0C38.6,39,36.9,37.2,34.8,37.2 - L34.8,37.2z"/> -<path class="st1" d="M40,11.7c-4.2-4.2-11.1-4.2-15.3,0c-2.7,2.7-3.8,6.7-2.8,10.4h-0.3c-3,0-5.4,2.4-5.4,5.4l0,0 - c0,1.5,0.6,3,1.6,4.1l3.8,4.1v-2.7c2.5,0,4.7-1.8,5.3-4.2c1.7,1,3.6,1.5,5.5,1.5v5.4l7.7-8.2c2.1-2.2,3.2-5.1,3.2-8.1 - C43.2,16.4,42,13.7,40,11.7z M39.3,26.8l-6.1,6.5v-4h-0.9c-1.9,0-3.8-0.6-5.4-1.6c0-0.1,0-0.1,0-0.2c0-2.5-1.7-4.7-4.1-5.3 - c-1.1-3.5-0.1-7.3,2.5-9.9c3.9-3.9,10.2-3.9,14.1-0.1c1.9,1.9,2.9,4.4,2.9,7.1C42.3,22.1,41.2,24.8,39.3,26.8z"/> -<circle class="st1" cx="32.3" cy="19.3" r="1.4"/> -<circle class="st1" cx="36.8" cy="19.3" r="1.4"/> -<circle class="st1" cx="27.8" cy="19.3" r="1.4"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 59.3 59.3"><symbol id="A" viewBox="-26.5 -26.5 53 53"><circle cx="0" cy="0" r="26.5" fill="#bf6328"/></symbol><use xlink:href="#A" width="53" height="53" x="-26.5" y="-26.5" transform="matrix(-1.1198 -.001368 .001368 -1.1198 29.6744 29.6632)"/><g fill="#fff"><use xlink:href="#C"/><use xlink:href="#D"/><use xlink:href="#C" x="13.4"/><use xlink:href="#D" x="13.4"/><path d="M40 11.7c-4.2-4.2-11.1-4.2-15.3 0-2.7 2.7-3.8 6.7-2.8 10.4h-.3c-3 0-5.4 2.4-5.4 5.4 0 1.5.6 3 1.6 4.1l3.8 4.1V33c2.5 0 4.7-1.8 5.3-4.2a10.84 10.84 0 0 0 5.5 1.5v5.4l7.7-8.2c2.1-2.2 3.2-5.1 3.2-8.1-.1-3-1.3-5.7-3.3-7.7zm-.7 15.1l-6.1 6.5v-4h-.9c-1.9 0-3.8-.6-5.4-1.6v-.2c0-2.5-1.7-4.7-4.1-5.3-1.1-3.5-.1-7.3 2.5-9.9 3.9-3.9 10.2-3.9 14.1-.1 1.9 1.9 2.9 4.4 2.9 7.1a10.94 10.94 0 0 1-3 7.5z"/><circle cx="32.3" cy="19.3" r="1.4"/><circle cx="36.8" cy="19.3" r="1.4"/><circle cx="27.8" cy="19.3" r="1.4"/></g><defs ><path id="C" d="M24.8 47.2h-6.9c-.9 0-1.7.8-1.7 1.7v1.7l10.3.1V49c0-1-.7-1.8-1.7-1.8z"/><path id="D" d="M21.4 45.4c-2.4 0-4.4-2-4.4-4.4s2-4.4 4.4-4.4 4.4 2 4.4 4.4-2 4.4-4.4 4.4zm0-8.2a3.8 3.8 0 0 0 0 7.6 3.8 3.8 0 0 0 3.8-3.8c0-2-1.7-3.8-3.8-3.8z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/social/messaging.svg b/src/main/webapp/img/lib/ibm/social/messaging.svg index 9275e8e21e09e03e9ac77a260f2b59569f4eb8ab..6319610ff153bbb84cfb12a97c06c9d6da3ef681 100644 --- a/src/main/webapp/img/lib/ibm/social/messaging.svg +++ b/src/main/webapp/img/lib/ibm/social/messaging.svg @@ -1,13 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.5 59.5" style="enable-background:new 0 0 59.5 59.5;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#BF6328;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS 2</title> -<ellipse transform="matrix(0.9511 -0.309 0.309 0.9511 -7.7396 10.6465)" class="st0" cx="29.7" cy="29.8" rx="29.7" ry="29.8"/> -<path class="st1" d="M29.7,15.6L10,25v18.9h39.5V25L29.7,15.6z M17.9,23.9h23.7v5l-11.9,5.7l-11.9-5.7V23.9z M48.2,42.7H11.2V26.8 - l18.4,8.8l18.4-8.8L48.2,42.7z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.5 59.5"><ellipse transform="matrix(.9511 -.309 .309 .9511 -7.7396 10.6465)" cx="29.7" cy="29.8" rx="29.7" ry="29.8" fill="#bf6328"/><path d="M29.7 15.6L10 25v18.9h39.5V25l-19.8-9.4zm-11.8 8.3h23.7v5l-11.9 5.7-11.9-5.7v-5zm30.3 18.8h-37V26.8l18.4 8.8L48 26.8l.2 15.9z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/social/networking.svg b/src/main/webapp/img/lib/ibm/social/networking.svg index 54e30e5fd4b311f77b940df5a53934f5c111a3c9..c2dac7e6f1e34eb91f7e726403d16d361ca38859 100644 --- a/src/main/webapp/img/lib/ibm/social/networking.svg +++ b/src/main/webapp/img/lib/ibm/social/networking.svg @@ -1,36 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.3 59.3" style="enable-background:new 0 0 59.3 59.3;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#BF6328;} - .st1{fill:#FFFFFF;} - .st2{fill:none;stroke:#FFFFFF;stroke-miterlimit:10;} -</style> -<symbol id="New_Symbol" viewBox="-26.5 -26.5 53 53"> - <ellipse class="st0" cx="0" cy="0" rx="26.5" ry="26.5"/> -</symbol> -<title>INDIVIDUAL ICONS 2</title> -<use xlink:href="#New_Symbol" width="53" height="53" x="-26.5" y="-26.5" transform="matrix(1.1198 0 0 1.1198 29.6744 29.6632)" style="overflow:visible;"/> -<path class="st1" d="M33.5,13.6l-7.3,0c-1,0-1.8,0.8-1.8,1.8v1.8l11,0.1v-1.8C35.3,14.5,34.5,13.6,33.5,13.6 - C33.5,13.6,33.5,13.6,33.5,13.6z"/> -<path class="st1" d="M29.8,11.7c-2.6,0-4.7-2.1-4.7-4.7s2.1-4.7,4.7-4.7s4.7,2.1,4.7,4.7l0,0C34.4,9.7,32.3,11.7,29.8,11.7z M29.8,3 - c-2.2,0-4.1,1.8-4.1,4.1s1.8,4.1,4.1,4.1c2.2,0,4.1-1.8,4.1-4.1C33.9,4.8,32,3,29.8,3L29.8,3L29.8,3z"/> -<path class="st1" d="M33.6,45.3l-7.3,0c-1,0-1.8,0.8-1.8,1.8v1.8l11,0.1v-1.8C35.5,46.1,34.6,45.3,33.6,45.3 - C33.6,45.3,33.6,45.3,33.6,45.3z"/> -<path class="st1" d="M29.9,43.4c-2.6,0-4.7-2.1-4.7-4.7s2.1-4.7,4.7-4.7s4.7,2.1,4.7,4.7l0,0C34.6,41.3,32.5,43.4,29.9,43.4z - M29.9,34.7c-2.2,0-4.1,1.8-4.1,4.1s1.8,4.1,4.1,4.1c2.2,0,4.1-1.8,4.1-4.1C34,36.5,32.2,34.7,29.9,34.7z"/> -<path class="st1" d="M49.9,32.2l-7.3,0c-1,0-1.8,0.8-1.8,1.8v1.8l11,0.1V34C51.8,33,51,32.2,49.9,32.2 - C49.9,32.2,49.9,32.2,49.9,32.2z"/> -<path class="st1" d="M46.2,30.3c-2.6,0-4.7-2.1-4.7-4.7s2.1-4.7,4.7-4.7s4.7,2.1,4.7,4.7l0,0C50.9,28.2,48.8,30.3,46.2,30.3z - M46.2,21.5c-2.2,0-4.1,1.8-4.1,4.1s1.8,4.1,4.1,4.1c2.2,0,4.1-1.8,4.1-4.1C50.3,23.4,48.5,21.5,46.2,21.5z"/> -<path class="st1" d="M17,32.2l-7.3,0c-1,0-1.8,0.8-1.8,1.8v1.8l11,0.1V34C18.8,33,18,32.2,17,32.2C17,32.2,17,32.2,17,32.2z"/> -<path class="st1" d="M13.3,30.3c-2.6,0-4.7-2.1-4.7-4.7s2.1-4.7,4.7-4.7S18,23,18,25.6l0,0C18,28.2,15.9,30.3,13.3,30.3z M13.3,21.6 - c-2.2,0-4.1,1.8-4.1,4.1c0,2.2,1.8,4.1,4.1,4.1c2.2,0,4.1-1.8,4.1-4.1C17.4,23.4,15.6,21.5,13.3,21.6C13.3,21.5,13.3,21.5,13.3,21.6 - L13.3,21.6z"/> -<circle class="st2" cx="29.8" cy="31.5" r="16.5"/> -<circle class="st1" cx="13.3" cy="25.6" r="4"/> -<circle class="st1" cx="29.8" cy="7.1" r="4"/> -<circle class="st1" cx="29.9" cy="38.7" r="4"/> -<circle class="st1" cx="46.2" cy="25.6" r="4"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 59.3 59.3"><symbol id="A" viewBox="-26.5 -26.5 53 53"><circle cx="0" cy="0" r="26.5" fill="#bf6328"/></symbol><use xlink:href="#A" width="53" height="53" x="-26.5" y="-26.5" transform="matrix(1.1198 0 0 1.1198 29.6744 29.6632)"/><path d="M33.5 13.6h-7.3a1.79 1.79 0 0 0-1.8 1.8v1.8l11 .1v-1.8c-.1-1-.9-1.9-1.9-1.9zm-3.7-1.9c-2.6 0-4.7-2.1-4.7-4.7s2.1-4.7 4.7-4.7 4.7 2.1 4.7 4.7c-.1 2.7-2.2 4.7-4.7 4.7zm0-8.7c-2.2 0-4.1 1.8-4.1 4.1s1.8 4.1 4.1 4.1c2.2 0 4.1-1.8 4.1-4.1S32 3 29.8 3zm3.8 42.3h-7.3a1.79 1.79 0 0 0-1.8 1.8v1.8l11 .1v-1.8c0-1.1-.9-1.9-1.9-1.9zm-3.7-1.9c-2.6 0-4.7-2.1-4.7-4.7s2.1-4.7 4.7-4.7 4.7 2.1 4.7 4.7-2.1 4.7-4.7 4.7zm0-8.7c-2.2 0-4.1 1.8-4.1 4.1s1.8 4.1 4.1 4.1c2.2 0 4.1-1.8 4.1-4.1s-1.8-4.1-4.1-4.1zm20-2.5h-7.3a1.79 1.79 0 0 0-1.8 1.8v1.8l11 .1V34c0-1-.8-1.8-1.9-1.8zm-3.7-1.9c-2.6 0-4.7-2.1-4.7-4.7s2.1-4.7 4.7-4.7 4.7 2.1 4.7 4.7-2.1 4.7-4.7 4.7zm0-8.8c-2.2 0-4.1 1.8-4.1 4.1s1.8 4.1 4.1 4.1c2.2 0 4.1-1.8 4.1-4.1 0-2.2-1.8-4.1-4.1-4.1zM17 32.2H9.7A1.79 1.79 0 0 0 7.9 34v1.8l11 .1V34c-.1-1-.9-1.8-1.9-1.8zm-3.7-1.9c-2.6 0-4.7-2.1-4.7-4.7s2.1-4.7 4.7-4.7S18 23 18 25.6s-2.1 4.7-4.7 4.7zm0-8.7c-2.2 0-4.1 1.8-4.1 4.1 0 2.2 1.8 4.1 4.1 4.1 2.2 0 4.1-1.8 4.1-4.1s-1.8-4.2-4.1-4.1c0-.1 0-.1 0 0z" fill="#fff"/><circle cx="29.8" cy="31.5" r="16.5" fill="none" stroke="#fff"/><g fill="#fff"><circle cx="13.3" cy="25.6" r="4"/><circle cx="29.8" cy="7.1" r="4"/><circle cx="29.9" cy="38.7" r="4"/><circle cx="46.2" cy="25.6" r="4"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/users/browser.svg b/src/main/webapp/img/lib/ibm/users/browser.svg index 6a4b62b737712877b56228620f8f52163019c883..303e20300002926eea1916f06860e2abe3c888e3 100644 --- a/src/main/webapp/img/lib/ibm/users/browser.svg +++ b/src/main/webapp/img/lib/ibm/users/browser.svg @@ -1,14 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.6 59.6" style="enable-background:new 0 0 59.6 59.6;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#C2952D;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle class="st0" cx="29.8" cy="29.8" r="29.8"/> -<rect x="9.9" y="12.3" class="st1" width="39.8" height="31.2"/> -<rect x="13" y="15.4" class="st0" width="33.7" height="24.1"/> -<rect x="13" y="44.4" class="st1" width="33.7" height="2.9"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.6 59.6"><circle cx="29.8" cy="29.8" r="29.8" fill="#c2952d"/><path d="M9.9 12.3h39.8v31.2H9.9z" fill="#fff"/><path d="M13 15.4h33.7v24.1H13z" fill="#c2952d"/><path d="M13 44.4h33.7v2.9H13z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/users/device.svg b/src/main/webapp/img/lib/ibm/users/device.svg index b907ed1caad0c401a9f31977da7024555ac17c73..4690cd4a5969b8b936633b31ad91293ebf12fb1e 100644 --- a/src/main/webapp/img/lib/ibm/users/device.svg +++ b/src/main/webapp/img/lib/ibm/users/device.svg @@ -1,17 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.6 59.6" style="enable-background:new 0 0 59.6 59.6;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#C2952D;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle class="st0" cx="29.8" cy="29.8" r="29.8"/> -<path class="st1" d="M37.2,51.2H22.7c-2.7,0-4.9-2.2-5-5V13.4c0-2.7,2.2-4.9,5-4.9h14.5c2.7,0,4.9,2.2,5,4.9v32.9 - C42.2,49,40,51.2,37.2,51.2C37.3,51.2,37.2,51.2,37.2,51.2z M22.7,9.7c-2,0-3.7,1.6-3.7,3.7v32.9c0,2,1.6,3.7,3.7,3.7h14.5 - c2,0,3.7-1.6,3.7-3.6c0,0,0,0,0,0V13.4c0-2-1.6-3.7-3.7-3.7H22.7z"/> -<rect x="20.9" y="13.4" class="st1" width="18.1" height="30.1"/> -<ellipse class="st1" cx="30" cy="46.8" rx="1.8" ry="1.8"/> -<rect x="27.6" y="10.9" class="st1" width="4.8" height="0.8"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.6 59.6"><circle cx="29.8" cy="29.8" r="29.8" fill="#c2952d"/><g fill="#fff"><path d="M37.2 51.2H22.7c-2.7 0-4.9-2.2-5-5V13.4c0-2.7 2.2-4.9 5-4.9h14.5c2.7 0 4.9 2.2 5 4.9v32.9c0 2.7-2.2 4.9-5 4.9zM22.7 9.7c-2 0-3.7 1.6-3.7 3.7v32.9c0 2 1.6 3.7 3.7 3.7h14.5c2 0 3.7-1.6 3.7-3.6v-33c0-2-1.6-3.7-3.7-3.7H22.7zm-1.8 3.7H39v30.1H20.9z"/><circle cx="30" cy="46.8" r="1.8"/><path d="M27.6 10.9h4.8v.8h-4.8z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/users/integrated_digital_experiences.svg b/src/main/webapp/img/lib/ibm/users/integrated_digital_experiences.svg index b49e9cf722fb3ed77e9ccaf4616f906e2fa2980a..8b7dddb89dccac57f7822b2f1f8568bef1a8f9aa 100644 --- a/src/main/webapp/img/lib/ibm/users/integrated_digital_experiences.svg +++ b/src/main/webapp/img/lib/ibm/users/integrated_digital_experiences.svg @@ -1,19 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 60 59.9" style="enable-background:new 0 0 60 59.9;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#C5972C;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<ellipse class="st0" cx="30" cy="30" rx="30" ry="30"/> -<path class="st1" d="M43.6,21.6h-11v27.6h18.4V28.9L43.6,21.6z M50,48.3H33.5V22.5h9.2v7.3H50V48.3z"/> -<rect x="36.2" y="32.6" class="st1" width="11" height="0.9"/> -<rect x="36.2" y="34.5" class="st1" width="11" height="0.9"/> -<rect x="36.2" y="36.3" class="st1" width="5.5" height="0.9"/> -<path class="st1" d="M27.6,33.4l-14.8-0.1c-2,0-3.6,1.6-3.7,3.6v3.7l22.2,0.2v-3.7C31.3,35.1,29.6,33.4,27.6,33.4 - C27.6,33.4,27.6,33.4,27.6,33.4z"/> -<path class="st1" d="M20.1,29.6c-5.2,0-9.4-4.2-9.4-9.4c0-5.2,4.2-9.4,9.4-9.4c5.2,0,9.4,4.2,9.4,9.4C29.5,25.4,25.3,29.6,20.1,29.6 - z M20.1,11.9c-4.5,0-8.2,3.7-8.2,8.2s3.7,8.2,8.2,8.2c4.5,0,8.2-3.7,8.2-8.2C28.3,15.6,24.7,11.9,20.1,11.9z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 59.9"><circle cx="30" cy="30" r="30" fill="#c5972c"/><path d="M43.6 21.6h-11v27.6H51V28.9l-7.4-7.3zM50 48.3H33.5V22.5h9.2v7.3H50v18.5zM36.2 32.6h11v.9h-11zm0 1.9h11v.9h-11zm0 1.8h5.5v.9h-5.5zm-8.6-2.9l-14.8-.1c-2 0-3.6 1.6-3.7 3.6v3.7l22.2.2v-3.7a3.76 3.76 0 0 0-3.7-3.7zm-7.5-3.8a9.39 9.39 0 1 1 0-18.8 9.39 9.39 0 1 1 0 18.8zm0-17.7a8.24 8.24 0 0 0-8.2 8.2 8.24 8.24 0 0 0 8.2 8.2 8.24 8.24 0 0 0 8.2-8.2c0-4.5-3.6-8.2-8.2-8.2z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/users/physical_entity.svg b/src/main/webapp/img/lib/ibm/users/physical_entity.svg index b4efbedd2d214bbd4bda9d82fd4b859bcb2f3aa6..eb506b27de7b5649e387b277cb54e0921302089b 100644 --- a/src/main/webapp/img/lib/ibm/users/physical_entity.svg +++ b/src/main/webapp/img/lib/ibm/users/physical_entity.svg @@ -1,23 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.6 59.6" style="enable-background:new 0 0 59.6 59.6;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#C3952D;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle class="st0" cx="29.8" cy="29.8" r="29.8"/> -<circle class="st1" cx="29.8" cy="29.8" r="1.4"/> -<path class="st1" d="M29.8,34.5c-2.6,0-4.7-2.1-4.7-4.7s2.1-4.7,4.7-4.7s4.7,2.1,4.7,4.7S32.4,34.5,29.8,34.5L29.8,34.5z M29.8,26.4 - c-1.9,0-3.4,1.5-3.4,3.4c0,1.9,1.5,3.4,3.4,3.4c1.9,0,3.4-1.5,3.4-3.4C33.2,27.9,31.7,26.4,29.8,26.4L29.8,26.4z"/> -<path class="st1" d="M29.8,37.8c-4.4,0-8-3.6-8-8s3.6-8,8-8s8,3.6,8,8S34.2,37.8,29.8,37.8z M29.8,23.1c-3.7,0-6.7,3-6.7,6.7 - c0,3.7,3,6.7,6.7,6.7s6.7-3,6.7-6.7S33.5,23.1,29.8,23.1C29.8,23.1,29.8,23.1,29.8,23.1z"/> -<path class="st1" d="M29.8,41.1c-6.2,0-11.3-5-11.3-11.3s5-11.3,11.3-11.3s11.3,5,11.3,11.3v0C41.1,36,36,41.1,29.8,41.1z - M29.8,19.9c-5.5,0-9.9,4.5-9.9,9.9s4.5,9.9,9.9,9.9s9.9-4.5,9.9-9.9l0,0C39.7,24.3,35.3,19.9,29.8,19.9z"/> -<path class="st1" d="M29.8,44c-7.9,0-14.3-6.4-14.3-14.3s6.4-14.3,14.3-14.3S44,21.9,44,29.8C44,37.7,37.7,44,29.8,44z M29.8,16.9 - c-7.1,0-12.9,5.8-12.9,12.9s5.8,12.9,12.9,12.9c7.1,0,12.9-5.8,12.9-12.9c0,0,0,0,0,0C42.7,22.7,36.9,16.9,29.8,16.9L29.8,16.9z"/> -<path class="st1" d="M29.8,46.9c-9.4,0-17.1-7.7-17.1-17.1s7.7-17.1,17.1-17.1c9.4,0,17.1,7.7,17.1,17.1 - C46.9,39.2,39.2,46.9,29.8,46.9z M29.8,14C21.1,14,14,21.1,14,29.8s7.1,15.8,15.8,15.8s15.8-7.1,15.8-15.8 - C45.6,21.1,38.5,14,29.8,14z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.6 59.6"><circle cx="29.8" cy="29.8" r="29.8" fill="#c3952d"/><g fill="#fff"><circle cx="29.8" cy="29.8" r="1.4"/><path d="M29.8 34.5c-2.6 0-4.7-2.1-4.7-4.7s2.1-4.7 4.7-4.7 4.7 2.1 4.7 4.7-2.1 4.7-4.7 4.7zm0-8.1a3.37 3.37 0 0 0-3.4 3.4 3.37 3.37 0 0 0 3.4 3.4 3.37 3.37 0 0 0 3.4-3.4 3.37 3.37 0 0 0-3.4-3.4zm0 11.4c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8zm0-14.7a6.7 6.7 0 0 0 0 13.4 6.7 6.7 0 0 0 0-13.4zm0 18a11.29 11.29 0 0 1-11.3-11.3c0-6.3 5-11.3 11.3-11.3s11.3 5 11.3 11.3c0 6.2-5.1 11.3-11.3 11.3zm0-21.2c-5.5 0-9.9 4.5-9.9 9.9s4.5 9.9 9.9 9.9 9.9-4.5 9.9-9.9a9.86 9.86 0 0 0-9.9-9.9zm0 24.1a14.3 14.3 0 1 1 0-28.6c7.9 0 14.2 6.5 14.2 14.4S37.7 44 29.8 44zm0-27.1c-7.1 0-12.9 5.8-12.9 12.9s5.8 12.9 12.9 12.9 12.9-5.8 12.9-12.9-5.8-12.9-12.9-12.9zm0 30c-9.4 0-17.1-7.7-17.1-17.1s7.7-17.1 17.1-17.1 17.1 7.7 17.1 17.1-7.7 17.1-17.1 17.1zm0-32.9C21.1 14 14 21.1 14 29.8s7.1 15.8 15.8 15.8 15.8-7.1 15.8-15.8S38.5 14 29.8 14z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/users/sensor.svg b/src/main/webapp/img/lib/ibm/users/sensor.svg index cedb1658ecf3f76f55d1521a7daead2270320211..ccee0b70930a13c1e6b09098eca8e8573412d349 100644 --- a/src/main/webapp/img/lib/ibm/users/sensor.svg +++ b/src/main/webapp/img/lib/ibm/users/sensor.svg @@ -1,25 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 59.6 59.6" style="enable-background:new 0 0 59.6 59.6;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#C3952D;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<circle class="st0" cx="29.8" cy="29.8" r="29.8"/> -<path class="st1" d="M13.8,48.6c-0.7-0.7-1.5-1.4-2.2-2.2C2.4,36.4,3,20.8,13,11.6c0.1-0.1,0.3-0.3,0.4-0.4c0.2-0.2,0.3-0.2,0.6,0 - c0.7,0.7,1.4,1.4,2.1,2.1c0.2,0.2,0.2,0.3,0,0.4c-3.2,2.8-5.6,6.4-6.6,10.5c-0.7,2.5-0.9,5.1-0.6,7.6c0.5,4.8,2.7,9.3,6.1,12.7 - c0.4,0.4,0.8,0.8,1.3,1.2c0.2,0.2,0.2,0.3,0,0.5c-0.7,0.7-1.4,1.4-2.1,2.1c-0.1,0.1-0.2,0.1-0.2,0.3L13.8,48.6z"/> -<path class="st1" d="M45.6,48.6c-0.6-0.7-1.3-1.4-2-2c-0.1-0.1-0.2-0.2-0.3-0.3c-0.2-0.2-0.2-0.3,0-0.5c2-1.7,3.7-3.7,4.9-6 - c1.3-2.4,2.2-5.1,2.5-7.8c0.7-6.4-1.6-12.8-6.2-17.3c-0.3-0.4-0.7-0.7-1.1-1c-0.1-0.1-0.2-0.2,0-0.3c0.8-0.8,1.5-1.5,2.3-2.3 - c0.2-0.2,0.3-0.1,0.4,0c2.3,2,4.2,4.4,5.6,7.1c1.3,2.5,2.2,5.3,2.6,8.1c0.1,0.6,0.2,1.2,0.2,1.9c0,0.1,0,0.1,0.1,0.2v2.8 - c-0.1,0-0.1,0.1-0.1,0.2c-0.1,1-0.2,2-0.4,3c-0.8,4.5-2.9,8.7-6,12.1c-0.7,0.8-1.5,1.5-2.3,2.2L45.6,48.6z"/> -<path class="st1" d="M22.7,19.9c-5.4,3.9-6.6,11.5-2.6,16.9c0.8,1.1,1.7,2,2.8,2.8c0,0.1,0,0.1-0.1,0.1c-0.8,0.8-1.5,1.5-2.3,2.3 - c-0.1,0.2-0.2,0.2-0.4,0c-6.8-5.4-8-15.3-2.7-22.1c0.3-0.4,0.6-0.7,0.9-1c0.5-0.5,1-1,1.6-1.5c0.1-0.1,0.2-0.1,0.4,0L22.7,19.9z"/> -<path class="st1" d="M45.6,29.7c0,4.8-2.2,9.3-6,12.3c-0.2,0.1-0.3,0.2-0.5,0c-0.7-0.7-1.5-1.5-2.2-2.2c-0.2-0.2-0.2-0.3,0-0.4 - c5.4-3.9,6.6-11.5,2.6-16.9c-0.3-0.3-0.5-0.7-0.8-1c-0.5-0.6-1.1-1.1-1.7-1.5c-0.2-0.1-0.2-0.2,0-0.4c0.7-0.7,1.5-1.5,2.2-2.2 - c0.2-0.2,0.3-0.2,0.5,0c3.1,2.5,5.1,6.1,5.7,10C45.5,28.2,45.5,29,45.6,29.7z"/> -<path class="st1" d="M34.4,29.8c0,2.6-2.1,4.7-4.7,4.7c0,0,0,0,0,0c-2.6,0-4.6-2.2-4.6-4.7c0-2.6,2.2-4.6,4.7-4.6 - C32.4,25.2,34.4,27.2,34.4,29.8z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.6 59.6"><circle cx="29.8" cy="29.8" r="29.8" fill="#c3952d"/><path d="M13.8 48.6l-2.2-2.2C2.4 36.4 3 20.8 13 11.6l.4-.4c.2-.2.3-.2.6 0l2.1 2.1c.2.2.2.3 0 .4-3.2 2.8-5.6 6.4-6.6 10.5a19.62 19.62 0 0 0-.6 7.6c.5 4.8 2.7 9.3 6.1 12.7.4.4.8.8 1.3 1.2.2.2.2.3 0 .5l-2.1 2.1c-.1.1-.2.1-.2.3h-.2zm31.8 0c-.6-.7-1.3-1.4-2-2l-.3-.3c-.2-.2-.2-.3 0-.5 2-1.7 3.7-3.7 4.9-6 1.3-2.4 2.2-5.1 2.5-7.8a21.05 21.05 0 0 0-6.2-17.3c-.3-.4-.7-.7-1.1-1-.1-.1-.2-.2 0-.3l2.3-2.3c.2-.2.3-.1.4 0a24.12 24.12 0 0 1 5.6 7.1 25.61 25.61 0 0 1 2.6 8.1c.1.6.2 1.2.2 1.9 0 .1 0 .1.1.2v2.8c-.1 0-.1.1-.1.2l-.4 3c-.8 4.5-2.9 8.7-6 12.1-.7.8-1.5 1.5-2.3 2.2l-.2-.1zM22.7 19.9c-5.4 3.9-6.6 11.5-2.6 16.9a12.4 12.4 0 0 0 2.8 2.8c0 .1 0 .1-.1.1L20.5 42c-.1.2-.2.2-.4 0-6.8-5.4-8-15.3-2.7-22.1.3-.4.6-.7.9-1 .5-.5 1-1 1.6-1.5.1-.1.2-.1.4 0l2.4 2.5zm22.9 9.8c0 4.8-2.2 9.3-6 12.3-.2.1-.3.2-.5 0l-2.2-2.2c-.2-.2-.2-.3 0-.4 5.4-3.9 6.6-11.5 2.6-16.9-.3-.3-.5-.7-.8-1-.5-.6-1.1-1.1-1.7-1.5-.2-.1-.2-.2 0-.4l2.2-2.2c.2-.2.3-.2.5 0 3.1 2.5 5.1 6.1 5.7 10 .1.8.1 1.6.2 2.3zm-11.2.1c0 2.6-2.1 4.7-4.7 4.7s-4.6-2.2-4.6-4.7c0-2.6 2.2-4.6 4.7-4.6 2.6 0 4.6 2 4.6 4.6z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/users/user.svg b/src/main/webapp/img/lib/ibm/users/user.svg index 666838d01cf5b3310d734b0f9feceec051b8bd1b..967baf733e118637a2a2fa682f40a357a107c2ef 100644 --- a/src/main/webapp/img/lib/ibm/users/user.svg +++ b/src/main/webapp/img/lib/ibm/users/user.svg @@ -1,16 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 58.6 58.4" style="enable-background:new 0 0 58.6 58.4;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#C2952D;} - .st1{fill:#FFFFFF;} -</style> -<title>INDIVIDUAL ICONS</title> -<ellipse class="st0" cx="29.3" cy="29.2" rx="29.3" ry="29.2"/> -<path class="st1" d="M38.2,38.3l-17.6-0.1c-2.4,0-4.4,1.9-4.4,4.4V47l26.5,0.2v-4.4C42.6,40.3,40.6,38.3,38.2,38.3 - C38.2,38.3,38.2,38.3,38.2,38.3z"/> -<path class="st1" d="M29.3,33.7c-6.2,0-11.2-5.1-11.2-11.2c0-6.2,5.1-11.2,11.2-11.2c6.2,0,11.2,5,11.2,11.2 - C40.5,28.7,35.5,33.7,29.3,33.7z M29.3,12.7c-5.4,0-9.8,4.4-9.8,9.8c0,5.4,4.4,9.8,9.8,9.8c5.4,0,9.8-4.4,9.8-9.8 - C39.1,17.1,34.7,12.7,29.3,12.7L29.3,12.7z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 58.6 58.4"><ellipse cx="29.3" cy="29.2" rx="29.3" ry="29.2" fill="#c2952d"/><path d="M38.2 38.3l-17.6-.1c-2.4 0-4.4 1.9-4.4 4.4V47l26.5.2v-4.4c-.1-2.5-2.1-4.5-4.5-4.5zm-8.9-4.6c-6.2 0-11.2-5.1-11.2-11.2 0-6.2 5.1-11.2 11.2-11.2 6.2 0 11.2 5 11.2 11.2s-5 11.2-11.2 11.2zm0-21a9.82 9.82 0 0 0-9.8 9.8 9.82 9.82 0 0 0 9.8 9.8 9.82 9.82 0 0 0 9.8-9.8 9.82 9.82 0 0 0-9.8-9.8z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/vpc/ACLRules.svg b/src/main/webapp/img/lib/ibm/vpc/ACLRules.svg index 680635121fcee6f57c22722c475c7e9ceaa5518b..bde6e1947d2353387195db6c0ffa0128f33f33c2 100644 --- a/src/main/webapp/img/lib/ibm/vpc/ACLRules.svg +++ b/src/main/webapp/img/lib/ibm/vpc/ACLRules.svg @@ -1,25 +1 @@ -<?xml version="1.0" standalone="no"?> -<svg contentScriptType="text/ecmascript" zoomAndPan="magnify" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svg="http://www.w3.org/2000/svg" baseProfile="full" - contentStyleType="text/css" id="svg903" sodipodi:docname="ACLRules.svg" style= - "font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:none;fill-rule:evenodd;stroke-linecap:square;stroke-miterlimit:3" - version="1.1" width="1.0416666in" xml:space="preserve" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:cc="http://creativecommons.org/ns#" - preserveAspectRatio="xMidYMid meet" inkscape:version="0.92.3 (2405546, 2018-03-11)" viewBox="0 0 74.99995 74.999941" - height="1.0416666in" class="st2" xmlns="http://www.w3.org/2000/svg"> - <circle fill="#e2002f" r="37.499973" cx="37.499973" cy="37.499973"/> - <path fill="#ffffff" d="m 27.682102,43.556497 c -2.793488,0 -5.161955,1.962769 -5.806637,4.570309 h -6.146479 v - 2.833006 h 6.146479 c 0.645366,2.607012 3.013828,4.570309 5.806637,4.570309 2.79276,0 5.162265,-1.963365 - 5.808101,-4.570309 H 60.885691 V 48.126806 H 33.491668 c -0.645023,-2.60765 -3.016,-4.570309 -5.809566,-4.570309 - z m 0,4.250973 c 0.983398,0 1.735839,0.750975 1.735839,1.734374 0,0.983398 -0.752441,1.737303 -1.735839,1.737303 - -0.983399,0 -1.734373,-0.753905 -1.734373,-1.737303 0,-0.983399 0.750974,-1.734374 1.734373,-1.734374 z M - 49.048297,31.411055 c -2.792808,0 -5.16127,1.962253 -5.806637,4.568844 H 15.728986 v 2.835936 H 43.24166 c - 0.645673,2.606167 3.014132,4.567379 5.806637,4.567379 2.792456,0 5.161958,-1.96128 5.808101,-4.567379 h 6.029293 - v -2.835936 h -6.029293 c -0.645837,-2.606522 -3.015342,-4.568844 -5.808101,-4.568844 z m 0,4.252438 c - 0.983398,0 1.735839,0.750976 1.735839,1.734374 0,0.983398 -0.752441,1.734374 -1.735839,1.734374 -0.983398,0 - -1.734374,-0.750976 -1.734374,-1.734374 0,-0.983398 0.750976,-1.734374 1.734374,-1.734374 z M 27.682102,19.26415 - c -2.793488,0 -5.161955,1.96277 -5.806637,4.570309 h -6.146479 v 2.833006 h 6.146479 c 0.645366,2.607013 - 3.013828,4.570309 5.806637,4.570309 2.792759,0 5.162264,-1.963365 5.808101,-4.570309 H 60.885691 V 23.834459 H - 33.491667 C 32.846645,21.226809 30.475668,19.26415 27.682102,19.26415 Z m 0,4.250974 c 0.983398,0 - 1.735838,0.750975 1.735838,1.734373 0,0.983398 -0.75244,1.737304 -1.735838,1.737304 -0.983399,0 - -1.734374,-0.753906 -1.734374,-1.737304 0,-0.983398 0.750975,-1.734373 1.734374,-1.734373 z"/></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" contentScriptType="text/ecmascript" zoomAndPan="magnify" baseProfile="full" contentStyleType="text/css" width="100.032" preserveAspectRatio="xMidYMid meet" viewBox="0 0 75 75" height="100.032" overflow="visible" color-interpolation-filters="sRGB" fill="none" fill-rule="evenodd" stroke-linecap="square" stroke-miterlimit="3"><circle fill="#e2002f" r="37.5" cx="37.5" cy="37.5"/><path fill="#fff" d="M27.682 43.556c-2.793 0-5.162 1.963-5.807 4.57H15.73v2.833h6.146c.645 2.607 3.014 4.57 5.807 4.57s5.162-1.963 5.808-4.57h27.395v-2.833H33.492c-.645-2.608-3.016-4.57-5.8-4.57zm0 4.25a1.7 1.7 0 0 1 1.736 1.734c0 .983-.752 1.737-1.736 1.737s-1.734-.754-1.734-1.737a1.7 1.7 0 0 1 1.734-1.734zM49.048 31.41c-2.793 0-5.16 1.962-5.807 4.57H15.73v2.836h27.513c.646 2.606 3.014 4.567 5.807 4.567s5.162-1.96 5.808-4.567h6.03V35.98h-6.03c-.646-2.607-3.015-4.57-5.808-4.57zm0 4.252a1.7 1.7 0 0 1 1.736 1.734 1.7 1.7 0 0 1-1.736 1.734 1.7 1.7 0 0 1-1.734-1.734 1.7 1.7 0 0 1 1.734-1.734zm-21.366-16.4c-2.793 0-5.162 1.963-5.807 4.57H15.73v2.833h6.146c.645 2.607 3.014 4.57 5.807 4.57s5.162-1.963 5.808-4.57h27.395v-2.833H33.492c-.645-2.608-3.016-4.57-5.8-4.57zm0 4.25a1.7 1.7 0 0 1 1.736 1.734c0 .983-.752 1.737-1.736 1.737s-1.734-.754-1.734-1.737a1.7 1.7 0 0 1 1.734-1.734z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/vpc/BareMetalServer.svg b/src/main/webapp/img/lib/ibm/vpc/BareMetalServer.svg index 8c502ba114a0fada881bf4a3438d3220ad80cce3..bedfb402a2f22642c4e39b537af25fad0054e5a7 100644 --- a/src/main/webapp/img/lib/ibm/vpc/BareMetalServer.svg +++ b/src/main/webapp/img/lib/ibm/vpc/BareMetalServer.svg @@ -1,108 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generated by Microsoft Visio, SVG Export BareMetalServer.svg Page-1 --> - -<svg - xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="1.0416666in" - height="1.0416666in" - viewBox="0 0 74.99995 74.999981" - xml:space="preserve" - class="st2" - version="1.1" - id="svg1220" - sodipodi:docname="BareMetalServer.svg" - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:none;fill-rule:evenodd;stroke-linecap:square;stroke-miterlimit:3" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata1226"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs1224"> - - - - - - - - - - - - - - <defs - id="defs1171"> - <path - id="mfid20" - d="m 639960,101770 c 146430,135680 146430,355690 0,491360 -146390,135720 -383760,135720 -530150,0 -146426,-135670 -146426,-355680 0,-491360 146390,-135707 383760,-135707 530150,0 z" - inkscape:connector-curvature="0" /> - </defs> - - - - - - - - - - - - - - - </defs><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview1222" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="4.679901" - inkscape:cx="3.2498056" - inkscape:cy="47.914478" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="svg1220" /> - <v:documentProperties - v:langID="1033" - v:viewMarkup="false" /> - - <style - type="text/css" - id="style1162"> - <![CDATA[ - .st1 {fill:none;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75} - .st2 {fill:none;fill-rule:evenodd;font-size:12px;overflow:visible;stroke-linecap:square;stroke-miterlimit:3} - ]]> - </style><circle - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:#8dc53f;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000024;stroke-linecap:square;stroke-miterlimit:3" - r="37.499981" - cx="37.499981" - cy="37.499981" - id="circle1396" /> - - -<path - id="path1993-1-4" - style="font-size:12px;overflow:visible;opacity:1;color-interpolation-filters:sRGB;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.99930978;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - d="M 19.096155,49.792997 V 62.553244 H 56.686956 V 49.792997 Z m 11.091791,3.328124 a 3.0526425,3.0526425 0 0 1 3.052733,3.052733 3.0526425,3.0526425 0 0 1 -3.052733,3.051268 3.0526425,3.0526425 0 0 1 -3.052733,-3.051268 3.0526425,3.0526425 0 0 1 3.052733,-3.052733 z M 19.096154,13.870322 V 26.63057 H 56.686957 V 13.870322 Z m 11.091792,3.328124 a 3.0526426,3.0526426 0 0 1 3.052733,3.052733 3.0526426,3.0526426 0 0 1 -3.052733,3.051268 3.0526426,3.0526426 0 0 1 -3.052733,-3.051268 3.0526426,3.0526426 0 0 1 3.052733,-3.052733 z M 19.096154,31.831659 V 44.591908 H 56.686957 V 31.831659 Z m 11.091792,3.328124 a 3.0526426,3.0526426 0 0 1 3.052733,3.052733 3.0526426,3.0526426 0 0 1 -3.052733,3.051268 3.0526426,3.0526426 0 0 1 -3.052733,-3.051268 3.0526426,3.0526426 0 0 1 3.052733,-3.052733 z" - inkscape:connector-curvature="0" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="100.032" height="100.032" viewBox="0 0 75 75" fill="none" fill-rule="evenodd" overflow="visible" stroke-linecap="square" stroke-miterlimit="3" color-interpolation-filters="sRGB"><style><![CDATA[.B{color-interpolation-filters:sRGB}]]></style><circle r="37.5" cx="37.5" cy="37.5" fill="#8dc53f" class="B"/><path d="M19.096 49.793v12.76h37.59v-12.76zm11.092 3.328a3.053 3.053 0 0 1 3.053 3.053 3.053 3.053 0 1 1-6.105 0 3.053 3.053 0 0 1 3.053-3.053zM19.096 13.87v12.76h37.59V13.87zm11.092 3.328a3.053 3.053 0 0 1 3.053 3.053 3.053 3.053 0 0 1-6.105 0 3.053 3.053 0 0 1 3.053-3.053zM19.096 31.832v12.76h37.59v-12.76zm11.092 3.328a3.053 3.053 0 0 1 3.053 3.053 3.053 3.053 0 0 1-6.105 0 3.053 3.053 0 0 1 3.053-3.053z" fill="#fff" paint-order="normal" class="B"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/vpc/BlockStorage.svg b/src/main/webapp/img/lib/ibm/vpc/BlockStorage.svg index 447e89d41db67d8c3cfb63e7a82c4b53e3c6da22..d920ec2e516e319264fc22e5976b018366b9b401 100644 --- a/src/main/webapp/img/lib/ibm/vpc/BlockStorage.svg +++ b/src/main/webapp/img/lib/ibm/vpc/BlockStorage.svg @@ -1,125 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generated by Microsoft Visio, SVG Export BlockStorage.svg Page-1 --> - -<svg - xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="1.0416666in" - height="1.0416666in" - viewBox="0 0 74.99995 75.000031" - xml:space="preserve" - class="st2" - version="1.1" - id="svg2150" - sodipodi:docname="BlockStorage.svg" - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:none;fill-rule:evenodd;stroke-linecap:square;stroke-miterlimit:3" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata2156"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs2154"> - - - - - - - - - - - - - - <defs - id="defs2119"> - <path - id="mfid1" - d="m 641260,101330 c 146720,135080 146720,354120 0,489200 -146680,135120 -384540,135120 -531230,0 -146720,-135080 -146720,-354120 0,-489200 146690,-135118 384550,-135118 531230,0 z" - inkscape:connector-curvature="0" /> - </defs> - - - - - - - - - - - <defs - id="defs2124"> - <image - xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAATLSURBVGhD7ZpvaFVlHMc359w0U8GUZm7povbCFwrCQCTUyPVikzRNXIS6SEFY+cJeqC98oxAoidIfNAijsEAGBg71laGxmlQjNMFAyUaUighGyz9rd35+z/md6z075znnOftz7xXuB76c5/n9O8/v7p57nnvuyko4MDg4WJHJZNrQR2i2mh8faKAcrWTxlzgaGN9D+9EMDStuWOgS9IOuPwS+f9FuhtM0pbhgYQtY4EmzWgeIvY12oCe0RGFhTfUs5qi3vPSQex29i6q0ZP5hHeNZwEH0wFvW8CD/D7RCyxYOFlGLPknbkDTAYTOaoKWKA9eG8PdyKHwDLGQeixin0xC2hpjfQLHXA77n0USdji2cqANdQKuYlnvWMPj9hqSBnfQyWV0h8M9FR9D/xD2l5rGFk3WYlxgY96AWzNaGCEv66x1G/V5FQ/4b8cHWjZpwWxvKhdga9CG6ryVyKVwjPvi+Q8s0NAS+megDdFdToih8Iz7EnCF0qpfhge0d1KchcRRPI8ocTTGQ16n2JEqNpKLUSLE1Ai6fPEKqRvCfQ0s0PH9w0lnIdi8QnBrBLveg5Qyd7kFjBouQu/MhlHt3FmIbYf4zamaYvwY4YSNqijspvjnEfIZkvyRENsLR7NMYWmvhn6cx1u1NKijWgLIXN+PvUWxD+GUH+wUxdWoyYNuH1mKP23vJ+b5CGT2f/NVeiTtfLCTLXkjeLv6rGwB7Fxq19zV16tHn1ByQ+kPBfhYt1vBkyJlKwh7kspUYcUPk1ZH/KRp6fUVCXCear+lhiCknYCu65aWkg7xUDRErn3jy4M72iRcLeV+jWi0XBL880jnhhaaH3L9Ro5azQugE4uQaGhbkXuGwEY3XktEQuAh9a7IcIPYB2oumaAknSF1IzmmvSjLEujWQC8Hy2PNlks9ztIL/G9SgacOCfHk62aUlQ+C7htoY2hsgYD56QachSJZr51V00VRVmMvd+EUNC0FIBarUqYF460MHYuU8zegXqS8wlod37Ql51fhXyGAjgwF0hHG9+kPgkyfrb6AzaA3zyIsa+zj869BlxoEbIvNj2N/naH3u6+dz3M7R+jgVv1xnW9CfjH8Sg7znDBj7kXwUPqvxzpAur+hrKPcvZ7uzy3PfbZiqPY87pFeS+zaSh3s+wUZ8CJKL92P0jOZbIVwaaEE9XnaApL1WL9rAsEJDrBAjj2fXo6smOUh0Iz4kyW8aBxg+rfWyYJMGmlC3CY4mthEf7BdRMyGhtytueUu3Inmr2ohvxIci/+mJsjB/S91xODWSwzENzULOr+qLw60RgYLtWtsgc3XFkaoRWbSGZlFXEqVGSo2oPZIRNUJyq05iKeZGyOuSWH9rcEHtkeBP1Qh+2aMF7uDY3kPWH4HwpWqE+D60h+Gj8zCRz+s30e8magjYnRrB/htazTByC4NPfgf5EpmvsrlgcmqEONmByA27RsPC4KxC8rD5puYZmMc2wvwvDvJzWmCjaIM4+e5zSnJ9mCc2Qox8n39O3ckQ/CTahf7RApGNcLyDdjCcpK5UkPsS+lFrWRvBJ00vUHN6KDADyb9ebFKTQeZInjZOV9NIkO8+r1PruM6zYJP/oliq01Eh8J6neOQ1MEKi9lpjcZ4SJdwoK3sIstqUaQjsG74AAAAASUVORK5CYIIAAA==" - height="50" - width="50" - id="mfid2" /> - </defs> - - - <clipPath - id="mfid3"> - <rect - id="rect2130" - height="50" - width="50" - y="-0.5" - x="-0.5" /> - </clipPath> - - </defs><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview2152" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="0.65388578" - inkscape:cx="433.87087" - inkscape:cy="113.30238" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="svg2150" /> - <v:documentProperties - v:langID="1033" - v:viewMarkup="false" /> - - <style - type="text/css" - id="style2110"> - <![CDATA[ - .st1 {fill:none;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75} - .st2 {fill:none;fill-rule:evenodd;font-size:12px;overflow:visible;stroke-linecap:square;stroke-miterlimit:3} - ]]> - </style> - - -<circle - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:#8dc53f;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000119;stroke-linecap:square;stroke-miterlimit:3" - r="37.500015" - cx="37.499996" - cy="37.500015" - id="circle1396" /><path - id="path2809-7-9" - style="opacity:1;fill:#ffffff;stroke:none;stroke-width:0.7500003px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 67.361755,41.72227 -11.292686,6.28664 v 11.71306 l 11.292686,-6.29789 z m -26.792664,0 11.292686,6.28664 V 59.72197 L 40.569091,53.42408 Z m 2.257156,-3.38751 11.153772,-6.20769 11.126164,6.23529 -11.126164,6.21188 z m -6.385555,3.38751 -11.292686,6.28664 v 11.71306 l 11.292686,-6.29789 z m -26.7926632,0 11.2926852,6.28664 V 59.72197 L 9.6480288,53.42408 Z M 11.905185,38.33476 23.058956,32.12707 34.18512,38.36236 23.058956,44.57424 Z M 51.901221,15.54827 40.608536,21.83491 v 11.71306 l 11.292685,-6.29789 z m -26.792662,0 11.292685,6.28664 V 33.54797 L 25.108559,27.25008 Z M 27.365715,12.16076 38.519485,5.9530701 49.64565,12.18836 38.519485,18.40024 Z" - inkscape:connector-curvature="0" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="100.032" height="100.032" viewBox="0 0 75 75" fill="none" fill-rule="evenodd" overflow="visible" stroke-linecap="square" stroke-miterlimit="3" color-interpolation-filters="sRGB"><circle r="37.5" cx="37.5" cy="37.5" color-interpolation-filters="sRGB" fill="#8dc53f"/><path d="M67.362 41.722L56.07 48.01v11.713l11.293-6.298zm-26.793 0l11.293 6.287v11.713L40.57 53.424zm2.257-3.388l11.154-6.208 11.126 6.235-11.126 6.212zm-6.386 3.388L25.148 48.01v11.713l11.293-6.298zm-26.793 0L20.94 48.01v11.713L9.648 53.424zm2.257-3.388l11.154-6.208 11.126 6.235-11.126 6.212zM51.9 15.548L40.61 21.835v11.713L51.9 27.25zm-26.793 0L36.4 21.835v11.713L25.11 27.25zm2.257-3.388L38.52 5.953l11.126 6.235L38.52 18.4z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/vpc/Bridge.svg b/src/main/webapp/img/lib/ibm/vpc/Bridge.svg index 2e67ff088e0ae610b110bca1b149438368c93419..1ae3e01512f808babddce8fceec40aa732fe59a1 100644 --- a/src/main/webapp/img/lib/ibm/vpc/Bridge.svg +++ b/src/main/webapp/img/lib/ibm/vpc/Bridge.svg @@ -1,125 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generated by Microsoft Visio, SVG Export Bridge.svg Page-1 --> - -<svg - xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="1.0416666in" - height="1.0416666in" - viewBox="0 0 74.99995 75.000085" - xml:space="preserve" - class="st2" - version="1.1" - id="svg2970" - sodipodi:docname="Bridge.svg" - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:none;fill-rule:evenodd;stroke-linecap:square;stroke-miterlimit:3" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata2976"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs2974"> - - - - - - - - - - - - - - <defs - id="defs2939"> - <path - id="mfid40" - d="m 641260,101550 c 146720,135380 146720,354900 0,490280 -146680,135420 -384540,135420 -531230,0 -146720,-135380 -146720,-354900 0,-490280 146690,-135412 384550,-135412 531230,0 z" - inkscape:connector-curvature="0" /> - </defs> - - - - - - - - - - - <defs - id="defs2944"> - <image - xlink:href="data:image/png;base64,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" - height="260" - width="315" - id="mfid41" /> - </defs> - - - <clipPath - id="mfid42"> - <rect - id="rect2950" - height="260" - width="315" - y="-0.5" - x="-0.5" /> - </clipPath> - - </defs><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview2972" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="5.2204443" - inkscape:cx="88.923931" - inkscape:cy="48.216004" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="svg2970" /> - <v:documentProperties - v:langID="1033" - v:viewMarkup="false" /> - - <style - type="text/css" - id="style2930"> - <![CDATA[ - .st1 {fill:none;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75} - .st2 {fill:none;fill-rule:evenodd;font-size:12px;overflow:visible;stroke-linecap:square;stroke-miterlimit:3} - ]]> - </style> - - -<circle - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:#8dc53f;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99975121;stroke-linecap:square;stroke-miterlimit:3;stroke-dasharray:none" - r="37.500046" - cx="37.500011" - cy="37.500046" - id="circle1396" /><path - id="path3627-1" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4.50000525;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 51.416824,34.8097 10.734388,11.79933 -10.678724,12.03956 -3.36768,-2.98535 6.017586,-6.78516 H 14.324008 V 44.37807 H 54.040362 L 48.088695,37.83754 Z M 25.058396,13.39436 14.324008,25.19369 25.002732,37.23325 28.370412,34.2479 22.352827,27.46274 H 62.151212 V 22.96273 H 22.434858 l 5.951668,-6.54053 z" - inkscape:connector-curvature="0" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="100.032" height="100.032" viewBox="0 0 75 75" fill="none" fill-rule="evenodd" overflow="visible" stroke-linecap="square" stroke-miterlimit="3" color-interpolation-filters="sRGB"><circle r="37.5" cx="37.5" cy="37.5" color-interpolation-filters="sRGB" fill="#8dc53f"/><path d="M51.417 34.8l10.734 11.8-10.68 12.04-3.368-2.985 6.018-6.785H14.324v-4.5H54.04l-5.952-6.54zM25.058 13.394l-10.734 11.8 10.68 12.04 3.368-2.985-6.018-6.785H62.15v-4.5H22.435l5.952-6.54z" dominant-baseline="auto" fill="#fff" fill-rule="nonzero"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/vpc/ClassicInfrastructureTag.svg b/src/main/webapp/img/lib/ibm/vpc/ClassicInfrastructureTag.svg index a2b63a137d1a0e23f4710d3a995f2056f4ed5494..6fce8ca96c8992d99c9e1fe42c6d1cb100a2bd81 100644 --- a/src/main/webapp/img/lib/ibm/vpc/ClassicInfrastructureTag.svg +++ b/src/main/webapp/img/lib/ibm/vpc/ClassicInfrastructureTag.svg @@ -1,72 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="196.42876mm" - height="196.42876mm" - viewBox="0 0 196.42876 196.42876" - version="1.1" - id="svg1355" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="Classic_tag.svg"> - <defs - id="defs1349" /> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.5" - inkscape:cx="452.51077" - inkscape:cy="276.12034" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata1352"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-7.5486803,-50.007427)"> - <rect - style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.32322836;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:17.00787544;stroke-opacity:1;paint-order:normal" - id="rect4609" - width="196.39772" - height="39.314404" - x="7.5797105" - y="128.56459" /> - <path - id="rect4609-6" - style="opacity:1;vector-effect:none;fill:#b40017;fill-opacity:1;stroke:none;stroke-width:1.32322836;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:17.00787544;stroke-opacity:1;paint-order:normal" - d="M 7.5797105,50.007427 H 203.97743 V 89.321831 H 7.5797105 Z m 0,157.114353 H 203.97743 v 39.3144 H 7.5797105 Z" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="742.409" height="742.409" viewBox="0 0 196.429 196.429"><path d="M.03 78.558h196.398v39.314H.03z" paint-order="normal"/><path d="M.03 0h196.398v39.314H.03zm0 157.114h196.398v39.314H.03z" fill="#b40017" paint-order="normal"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/vpc/CloudTag.svg b/src/main/webapp/img/lib/ibm/vpc/CloudTag.svg index 61f43c3f2b17c7eb03b3faf78ecb900bf6ff1f6e..440be544fca5a306746ff7ab575c8dfa1e45de18 100644 --- a/src/main/webapp/img/lib/ibm/vpc/CloudTag.svg +++ b/src/main/webapp/img/lib/ibm/vpc/CloudTag.svg @@ -1,75 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="196.42876mm" - height="196.42876mm" - viewBox="0 0 196.42876 196.42876" - version="1.1" - id="svg1355" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="Cloud_tag.svg"> - <defs - id="defs1349" /> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.7" - inkscape:cx="426.48853" - inkscape:cy="241.25326" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata1352"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-7.5486803,-50.007427)"> - <rect - style="opacity:1;vector-effect:none;fill:#4c7bb4;fill-opacity:0.9748744;stroke:none;stroke-width:1.28708541;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:17.00787544;stroke-opacity:1;paint-order:normal" - id="rect1368" - width="196.42876" - height="196.42876" - x="7.5486803" - y="50.007427" - rx="8.3668938" - ry="8.3668938" /> - <path - id="path1382" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 182.79688,112.16016 -20.1211,14.38476 2.9082,4.06836 20.11914,-14.38672 z m -32.3125,-33.507816 -11.96485,22.103516 4.39649,2.37891 11.96679,-22.101567 z M 106.29102,66.457031 v 25.707031 h 5 V 66.457031 Z m -38.371098,11.408203 -4.435547,2.306641 12.738281,24.480465 4.435547,-2.30664 z M 35.875,112.25781 33,116.34961 l 20.945312,14.71875 2.875,-4.0918 z m 75.92773,-7.01758 c -9.44965,-0.59116 -18.673152,1.86766 -26.640621,6.25196 l -0.02734,0.0137 -0.02734,0.0156 c -12.65574,7.38395 -20.178625,17.98786 -24.1875,29.48633 -4.008875,11.49848 -4.59347,23.88199 -3.691406,35.23828 l 4.984375,-0.39648 c -0.865486,-10.8958 -0.261435,-22.61579 3.427734,-33.19727 3.687553,-10.57684 10.367783,-20.02509 21.972656,-26.80078 14.504682,-7.96533 32.672322,-9.08879 48.884772,5.1875 l 3.30468,-3.7539 c -8.8741,-7.81432 -18.55034,-11.45376 -28,-12.04493 z m 37.49805,26.54102 c -18.03395,0 -30.34247,12.51793 -35.59375,21.24414 l 4.28516,2.57813 c 4.54814,-7.5578 15.62574,-18.82227 31.30859,-18.82227 8.32818,0 16.40459,4.80201 22.46875,12.59766 6.06416,7.79564 9.99414,18.49733 9.99414,29.69336 0,10.80856 -4.31459,20.84965 -10.33008,28.12695 -6.01548,7.2773 -13.71276,11.61133 -19.86523,11.61133 H 62.933594 c -7.56211,0 -14.401362,-4.69948 -19.408203,-11.00586 -5.006842,-6.30638 -7.953125,-14.20863 -7.953125,-19.09571 0,-14.24036 4.85913,-21.96501 13.734375,-31.98046 l -3.742188,-3.31641 c -9.154682,10.33079 -14.992187,19.8553 -14.992187,35.29687 0,6.71151 3.404791,15.11088 9.037109,22.20508 5.632318,7.0942 13.722728,12.89649 23.324219,12.89649 h 88.634766 c 8.36788,0 17.01685,-5.31809 23.71875,-13.42578 6.7019,-8.1077 11.47656,-19.18336 11.47656,-31.3125 0,-12.35653 -4.27042,-24.05237 -11.04687,-32.76368 -6.77645,-8.7113 -16.18105,-14.52734 -26.41602,-14.52734 z" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="742.409" height="742.409" viewBox="0 0 196.429 196.429"><rect width="196.429" height="196.429" rx="8.367" fill="#4c7bb4" fill-opacity=".975" paint-order="normal"/><path d="M175.248 62.153l-20.12 14.385 2.908 4.068 20.12-14.387zm-32.312-33.508L130.97 50.75l4.396 2.38 11.967-22.102zM98.742 16.45v25.707h5V16.45zM60.37 27.858l-4.436 2.307 12.738 24.48 4.436-2.307zM28.326 62.25l-2.875 4.092 20.945 14.72 2.875-4.092zm75.928-7.018c-9.45-.59-18.673 1.868-26.64 6.252l-.027.014-.027.016C64.903 68.898 57.38 79.502 53.37 91s-4.593 23.882-3.69 35.238l4.984-.396c-.865-10.896-.26-22.616 3.428-33.197s10.368-20.025 21.973-26.8c14.505-7.965 32.672-9.09 48.885 5.188l3.305-3.754c-8.874-7.814-18.55-11.454-28-12.045zm37.498 26.54c-18.034 0-30.342 12.518-35.594 21.244l4.285 2.578c4.548-7.558 15.626-18.822 31.31-18.822 8.328 0 16.405 4.802 22.47 12.598s9.994 18.497 9.994 29.693c0 10.81-4.315 20.85-10.33 28.127s-13.713 11.61-19.865 11.61H55.385c-7.562 0-14.4-4.7-19.408-11.006s-7.953-14.21-7.953-19.096c0-14.24 4.86-21.965 13.734-31.98l-3.742-3.316c-9.155 10.33-14.992 19.855-14.992 35.297 0 6.712 3.405 15.11 9.037 22.205s13.723 12.896 23.324 12.896h88.635c8.368 0 17.017-5.318 23.72-13.426s11.477-19.183 11.477-31.312c0-12.357-4.27-24.052-11.047-32.764s-16.18-14.527-26.416-14.527z" dominant-baseline="auto" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/vpc/DirectLink.svg b/src/main/webapp/img/lib/ibm/vpc/DirectLink.svg index f46382c046ae2a4d4d0e7e40aea5c715faa1e4bd..ff64a627edc67a38cb75527bfd22a866cf041ac3 100644 --- a/src/main/webapp/img/lib/ibm/vpc/DirectLink.svg +++ b/src/main/webapp/img/lib/ibm/vpc/DirectLink.svg @@ -1,125 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generated by Microsoft Visio, SVG Export DirectLink.svg Page-1 --> - -<svg - xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="1.0416666in" - height="1.0416666in" - viewBox="0 0 74.99995 75.000085" - xml:space="preserve" - class="st2" - version="1.1" - id="svg3925" - sodipodi:docname="DirectLink.svg" - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:none;fill-rule:evenodd;stroke-linecap:square;stroke-miterlimit:3" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata3931"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs3929"> - - - - - - - - - - - - - - <defs - id="defs3894"> - <path - id="mfid16" - d="m 641260,101550 c 146720,135380 146720,354900 0,490280 -146680,135420 -384540,135420 -531230,0 -146720,-135380 -146720,-354900 0,-490280 146690,-135412 384550,-135412 531230,0 z" - inkscape:connector-curvature="0" /> - </defs> - - - - - - - - - - - <defs - id="defs3899"> - <image - xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADjSURBVGhD7ZaxDYMwEEXp06fNAigVfZrMkQEQ4zBA1slSTv5ZV+YUwlkCofekL3Syv/GjoiulzO8N0HunriWIJEEkApEkiEQgkgSRCESSIBKBSJJdiaj7UIaVOfsV2qADMyKDH7M9iIjDimjulXFheq9VNF+VaWVurUVGX/qJ7fVaRfPkS39jDogY6iJie71W0YyIOSBiqIuI7fVaRTMi5nAokYvy7Td7SU5+j4rmzC9KTmQvICIQidCZd+W5JrrMS89VNBfJfNUMiEQgkgSRCESSIBKBSBJEIhBJgkjEdiJl/gDAQKRaTCWgsQAAAABJRU5ErkJgggAA" - height="50" - width="50" - id="mfid17" /> - </defs> - - - <clipPath - id="mfid18"> - <rect - id="rect3905" - height="50" - width="50" - y="-0.5" - x="-0.5" /> - </clipPath> - - </defs><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview3927" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="1.8457058" - inkscape:cx="33.797353" - inkscape:cy="14.822275" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="svg3925" /> - <v:documentProperties - v:langID="1033" - v:viewMarkup="false" /> - - <style - type="text/css" - id="style3885"> - <![CDATA[ - .st1 {fill:none;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75} - .st2 {fill:none;fill-rule:evenodd;font-size:12px;overflow:visible;stroke-linecap:square;stroke-miterlimit:3} - ]]> - </style> - - -<circle - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:#8dc53f;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000191;stroke-linecap:square;stroke-miterlimit:3" - r="37.500046" - cx="37.500011" - cy="37.500046" - id="circle1396" /><path - id="path4584-4" - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75000083px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 60.545838,32.260748 v 30.20963 h -28.21903 v -15.24304 h 14.05234 v -14.96659 z m -46.091651,10.4786 v -30.20963 h 28.21903 v 15.24304 H 28.620875 v 14.96659 z m 17.738148,-10.9609 h 10.615358 v 11.44323 H 32.192335 Z" - inkscape:connector-curvature="0" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="100.032" height="100.032" viewBox="0 0 75 75" fill="none" fill-rule="evenodd" overflow="visible" stroke-linecap="square" stroke-miterlimit="3" color-interpolation-filters="sRGB"><circle r="37.5" cx="37.5" cy="37.5" color-interpolation-filters="sRGB" fill="#8dc53f"/><path d="M60.546 32.26v30.2h-28.22V47.227H46.38V32.26zM14.454 42.74v-30.2h28.22v15.243H28.62V42.74zm17.738-10.96h10.615v11.443H32.192z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/vpc/Enterprise.svg b/src/main/webapp/img/lib/ibm/vpc/Enterprise.svg index d8abc4ee4ba5b33d4366324b4ec145064eea24c3..ca27e5f96a27dd3e53485de852863c1d99832601 100644 --- a/src/main/webapp/img/lib/ibm/vpc/Enterprise.svg +++ b/src/main/webapp/img/lib/ibm/vpc/Enterprise.svg @@ -1,117 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generated by Microsoft Visio, SVG Export Enterprise.svg Page-1 --> - -<svg - xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="0.99293303in" - height="0.99247128in" - viewBox="0 0 71.491148 71.457879" - xml:space="preserve" - class="st2" - version="1.1" - id="svg4831" - sodipodi:docname="Enterprise.svg" - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:none;fill-rule:evenodd;stroke-linecap:square;stroke-miterlimit:3" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata4837"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs4835"> - - - - - - - - - - - - - - <clipPath - id="mfid8"> - <rect - width="498.89999" - height="489.91" - id="mfid9" - x="0" - y="0" /> - </clipPath> - - - <defs - id="defs4809"> - <image - xlink:href="data:image/png;base64,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" - height="491" - width="500" - id="mfid10" /> - </defs> - - - - - - <clipPath - id="mfid11"> - <rect - id="rect4811" - height="491" - width="500" - y="-0.5" - x="-0.5" /> - </clipPath> - - </defs><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview4833" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="6.7333614" - inkscape:cx="32.24555" - inkscape:cy="57.255861" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="svg4831" /> - <v:documentProperties - v:langID="1033" - v:viewMarkup="false" /> - - <style - type="text/css" - id="style4798"> - <![CDATA[ - .st1 {fill:none;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75} - .st2 {fill:none;fill-rule:evenodd;font-size:12px;overflow:visible;stroke-linecap:square;stroke-miterlimit:3} - ]]> - </style> - - -<path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#004c9b;fill-opacity:0.89302325;fill-rule:nonzero;stroke:none;stroke-width:2.12761354;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 18.816081,0 A 1.0639131,1.0639131 0 0 0 17.752275,1.06381 V 8.02426 H 1.0638059 C 0.47630632,8.02432 5.81e-5,8.50056 0,9.08806 v 53.13216 c 5.81e-5,0.5875 0.47630632,1.06375 1.0638059,1.06381 H 17.752275 v 7.11006 a 1.0639131,1.0639131 0 0 0 1.063806,1.0638 h 34.85006 a 1.0639131,1.0639131 0 0 0 1.063806,-1.0638 v -6.88774 h 15.697382 c 0.587501,-6e-5 1.063748,-0.47631 1.063808,-1.06381 V 9.08806 c -6e-5,-0.5875 -0.476307,-1.06374 -1.063808,-1.0638 H 54.729947 V 1.06381 A 1.0639131,1.0639131 0 0 0 53.666141,0 Z m 1.063807,2.12761 H 52.602334 V 69.33028 H 19.879888 Z m 7.346915,5.70135 a 1.3298914,1.3298914 0 1 0 0,2.65951 h 18.126269 a 1.3298914,1.3298914 0 1 0 0,-2.65951 z M 2.1276133,10.15187 H 17.752275 v 5.70135 H 9.4745281 a 1.3298914,1.3298914 0 1 0 0,2.65951 h 8.2777469 v 5.57668 H 9.4745281 a 1.3298914,1.3298914 0 1 0 0,2.65951 h 8.2777469 v 5.58083 H 9.4745281 a 1.3298914,1.3298914 0 1 0 0,2.65951 H 17.752275 V 61.15642 H 2.1276133 Z m 52.6023337,0 H 69.363523 V 61.37874 H 54.729947 V 34.98926 h 8.192558 a 1.3298914,1.3298914 0 1 0 0,-2.65951 h -8.192558 v -5.58083 h 8.192558 a 1.3298914,1.3298914 0 1 0 0,-2.65951 h -8.192558 v -5.57668 h 8.192558 a 1.3298914,1.3298914 0 1 0 0,-2.65951 h -8.192558 z m -27.503144,5.91326 a 1.3298914,1.3298914 0 1 0 0,2.65953 h 18.126269 a 1.3298914,1.3298914 0 1 0 0,-2.65953 z m 0,8.23829 a 1.3298914,1.3298914 0 1 0 0,2.6595 h 18.126269 a 1.3298914,1.3298914 0 1 0 0,-2.6595 z" - id="rect5382" - inkscape:connector-curvature="0" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="95.328" height="95.232" viewBox="0 0 71.491 71.458" fill="none" fill-rule="evenodd" overflow="visible" stroke-linecap="square" stroke-miterlimit="3" color-interpolation-filters="sRGB"><path d="M18.816 0a1.064 1.064 0 0 0-1.064 1.064v6.96H1.064C.476 8.024 0 8.5 0 9.088V62.22c0 .588.476 1.064 1.064 1.064h16.688v7.1a1.064 1.064 0 0 0 1.064 1.064h34.85a1.064 1.064 0 0 0 1.064-1.064v-6.888h15.697c.588 0 1.064-.476 1.064-1.064V9.088c0-.588-.476-1.064-1.064-1.064H54.73v-6.96A1.064 1.064 0 0 0 53.666 0zm1.064 2.128h32.722V69.33H19.88zm7.347 5.7a1.33 1.33 0 1 0 0 2.66h18.126a1.33 1.33 0 1 0 0-2.66zm-25.1 2.323h15.625v5.7H9.475a1.33 1.33 0 1 0 0 2.66h8.278v5.577H9.475a1.33 1.33 0 1 0 0 2.66h8.278v5.58H9.475a1.33 1.33 0 1 0 0 2.66h8.278v26.167H2.128zm52.602 0h14.634V61.38H54.73V34.99h8.193a1.33 1.33 0 1 0 0-2.66H54.73v-5.58h8.193a1.33 1.33 0 1 0 0-2.66H54.73v-5.577h8.193a1.33 1.33 0 1 0 0-2.66H54.73zm-27.503 5.913a1.33 1.33 0 1 0 0 2.66h18.126a1.33 1.33 0 1 0 0-2.66zm0 8.238a1.33 1.33 0 1 0 0 2.66h18.126a1.33 1.33 0 1 0 0-2.66z" dominant-baseline="auto" fill="#004c9b" fill-opacity=".893" fill-rule="nonzero" paint-order="normal"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/vpc/Enterprise2.svg b/src/main/webapp/img/lib/ibm/vpc/Enterprise2.svg index 07d5e67d1551512b8b7950d8287051ed63915860..eeed9cc1a651443ab65e74cd3df91817ac3c91bd 100644 --- a/src/main/webapp/img/lib/ibm/vpc/Enterprise2.svg +++ b/src/main/webapp/img/lib/ibm/vpc/Enterprise2.svg @@ -1,66 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="166.89571mm" - height="132.54375mm" - viewBox="0 0 166.89571 132.54375" - version="1.1" - id="svg1355" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="Enterprise2.svg"> - <defs - id="defs1349" /> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.49497475" - inkscape:cx="36.243853" - inkscape:cy="32.893106" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata1352"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-22.369279,-82.421456)"> - <path - id="path3121-65-4-2-0" - style="opacity:1;fill:#2c6dad;fill-opacity:1;stroke:none;stroke-width:1.32291663;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 51.242639,145.75006 h 10.69078 V 133.5893 h -10.69078 z m 0,21.2794 h 10.69078 V 154.8687 h -10.69078 z m 0,21.2794 h 10.69078 V 176.1481 h -10.69078 z m -21.70138,-42.55881 h 10.69079 v -12.16076 h -10.69079 z m 0,21.2794 h 10.69079 v -12.16076 h -10.69079 z m 0,21.2794 h 10.69079 v -12.16076 h -10.69079 z m -7.17198,26.65635 v -87.37519 h 47.01246 v 87.37519 h -18.77568 v -19.10978 h -9.52149 V 214.9652 Z M 171.12588,124.47066 h 10.69078 V 112.3099 h -10.69078 z m 0,21.2794 h 10.69078 V 133.5893 h -10.69078 z m 0,21.2794 h 10.69078 V 154.8687 h -10.69078 z m 0,21.2794 h 10.69078 V 176.1481 H 171.12588 Z M 149.4245,124.47065 h 10.69079 V 112.30989 H 149.4245 Z m 0,21.2794 h 10.69079 V 133.58929 H 149.4245 Z m 0,21.2794 h 10.69079 V 154.86869 H 149.4245 Z m 0,21.2794 h 10.69079 V 176.14809 H 149.4245 Z m -7.17198,26.65635 V 105.94118 h 47.01246 V 214.9652 H 170.4893 v -19.10978 h -9.52149 V 214.9652 Z M 121.89418,103.19128 h 10.69078 V 91.030507 h -10.69078 z m 0,21.27938 h 10.69078 V 112.3099 h -10.69078 z m 0,21.27939 h 10.69078 v -12.16076 h -10.69078 z m 0,21.27941 h 10.69078 v -12.16077 h -10.69078 z m 0,21.2794 h 10.69078 V 176.14809 H 121.89418 Z M 100.1928,103.19128 h 10.69078 V 91.030505 H 100.1928 Z m 0,21.27938 h 10.69078 V 112.3099 H 100.1928 Z m 0,21.2794 h 10.69078 V 133.5893 H 100.1928 Z m 0,21.2794 h 10.69078 V 154.8687 H 100.1928 Z m 0,21.2794 h 10.69078 V 176.1481 H 100.1928 Z M 78.491427,103.19127 H 89.182209 V 91.030509 H 78.491427 Z m 0,21.27938 H 89.182209 V 112.30989 H 78.491427 Z m 0,21.2794 H 89.182209 V 133.58929 H 78.491427 Z m 10e-7,21.2794 H 89.18221 V 154.86869 H 78.491428 Z m -10e-7,21.2794 H 89.182209 V 176.14809 H 78.491427 Z M 71.319443,214.9652 V 82.421456 H 140.248 V 214.9652 h -23.72017 v -19.10978 h -8.88671 v 19.10978 h -3.00678 v -19.10978 h -9.521482 v 19.10978 z" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="630.788" height="500.954" viewBox="0 0 166.896 132.544"><path d="M28.874 63.33h10.69v-12.16h-10.69zm0 21.28h10.69v-12.16h-10.69zm0 21.28h10.69v-12.16h-10.69zm-21.7-42.56h10.69v-12.16H7.172zm0 21.28h10.69v-12.16H7.172zm0 21.28h10.69v-12.16H7.172zM0 132.544V45.17h47.012v87.375H28.237v-19.1h-9.52v19.1zM148.757 42.05h10.69V29.89h-10.69zm0 21.28h10.69v-12.16h-10.69zm0 21.28h10.69v-12.16h-10.69zm0 21.28h10.69v-12.16h-10.69zm-21.7-63.838h10.69V29.89h-10.69zm0 21.28h10.69v-12.16h-10.69zm0 21.28h10.69v-12.16h-10.69zm0 21.28h10.69v-12.16h-10.69zm-7.172 26.656V23.52h47.012v109.024H148.12v-19.1h-9.52v19.1zM99.525 20.77h10.69V8.6h-10.69zm0 21.28h10.69V29.89h-10.69zm0 21.28h10.69v-12.16h-10.69zm0 21.28h10.69v-12.16h-10.69zm0 21.28h10.69v-12.16h-10.69zm-21.7-85.118h10.69V8.6h-10.69zm0 21.28h10.69V29.89h-10.69zm0 21.28h10.69v-12.16h-10.69zm0 21.28h10.69v-12.16h-10.69zm0 21.28h10.69v-12.16h-10.69zm-21.7-85.118h10.69V8.6h-10.69zm0 21.28h10.69V29.89h-10.69zm0 21.28h10.69v-12.16h-10.69zm0 21.28h10.69v-12.16h-10.69zm0 21.28h10.69v-12.16h-10.69zm-7.172 26.656V0h68.93v132.544H94.16v-19.1h-8.887v19.1h-3.007v-19.1h-9.52v19.1z" fill="#2c6dad"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/vpc/EnterpriseTag.svg b/src/main/webapp/img/lib/ibm/vpc/EnterpriseTag.svg index 1453952e9056dc6bcaf788eafee2729b4137434f..28cef24ff2b7c00b90f2ef3e10f119013666a311 100644 --- a/src/main/webapp/img/lib/ibm/vpc/EnterpriseTag.svg +++ b/src/main/webapp/img/lib/ibm/vpc/EnterpriseTag.svg @@ -1,74 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="196.42876mm" - height="196.42876mm" - viewBox="0 0 196.42876 196.42876" - version="1.1" - id="svg1355" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="Enterprise_tag.svg"> - <defs - id="defs1349" /> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.49497475" - inkscape:cx="-164.32003" - inkscape:cy="109.41215" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata1352"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-7.5486803,-50.007427)"> - <rect - style="opacity:1;vector-effect:none;fill:#4c7bb4;fill-opacity:1;stroke:none;stroke-width:1.28708541;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:17.00787544;stroke-opacity:1;paint-order:normal" - id="rect1368" - width="196.42876" - height="196.42876" - x="7.5486803" - y="50.007427" - rx="8.3668938" - ry="8.3668938" /> - <path - id="path3121-65-4-2-0" - style="opacity:1;fill:#ffffff;stroke:none;stroke-width:1.32291663;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 51.242639,145.75006 h 10.69078 V 133.5893 h -10.69078 z m 0,21.2794 h 10.69078 V 154.8687 h -10.69078 z m 0,21.2794 h 10.69078 V 176.1481 h -10.69078 z m -21.70138,-42.55881 h 10.69079 v -12.16076 h -10.69079 z m 0,21.2794 h 10.69079 v -12.16076 h -10.69079 z m 0,21.2794 h 10.69079 v -12.16076 h -10.69079 z m -7.17198,26.65635 v -87.37519 h 47.01246 v 87.37519 h -18.77568 v -19.10978 h -9.52149 V 214.9652 Z M 171.12588,124.47066 h 10.69078 V 112.3099 h -10.69078 z m 0,21.2794 h 10.69078 V 133.5893 h -10.69078 z m 0,21.2794 h 10.69078 V 154.8687 h -10.69078 z m 0,21.2794 h 10.69078 V 176.1481 H 171.12588 Z M 149.4245,124.47065 h 10.69079 V 112.30989 H 149.4245 Z m 0,21.2794 h 10.69079 V 133.58929 H 149.4245 Z m 0,21.2794 h 10.69079 V 154.86869 H 149.4245 Z m 0,21.2794 h 10.69079 V 176.14809 H 149.4245 Z m -7.17198,26.65635 V 105.94118 h 47.01246 V 214.9652 H 170.4893 v -19.10978 h -9.52149 V 214.9652 Z M 121.89418,103.19128 h 10.69078 V 91.030507 h -10.69078 z m 0,21.27938 h 10.69078 V 112.3099 h -10.69078 z m 0,21.27939 h 10.69078 v -12.16076 h -10.69078 z m 0,21.27941 h 10.69078 v -12.16077 h -10.69078 z m 0,21.2794 h 10.69078 V 176.14809 H 121.89418 Z M 100.1928,103.19128 h 10.69078 V 91.030505 H 100.1928 Z m 0,21.27938 h 10.69078 V 112.3099 H 100.1928 Z m 0,21.2794 h 10.69078 V 133.5893 H 100.1928 Z m 0,21.2794 h 10.69078 V 154.8687 H 100.1928 Z m 0,21.2794 h 10.69078 V 176.1481 H 100.1928 Z M 78.491427,103.19127 H 89.182209 V 91.030509 H 78.491427 Z m 0,21.27938 H 89.182209 V 112.30989 H 78.491427 Z m 0,21.2794 H 89.182209 V 133.58929 H 78.491427 Z m 10e-7,21.2794 H 89.18221 V 154.86869 H 78.491428 Z m -10e-7,21.2794 H 89.182209 V 176.14809 H 78.491427 Z M 71.319443,214.9652 V 82.421456 H 140.248 V 214.9652 h -23.72017 v -19.10978 h -8.88671 v 19.10978 h -3.00678 v -19.10978 h -9.521482 v 19.10978 z" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="742.409" height="742.409" viewBox="0 0 196.429 196.429"><rect width="196.429" height="196.429" rx="8.367" fill="#4c7bb4" paint-order="normal"/><path d="M43.694 95.743h10.69v-12.16h-10.69zm0 21.28h10.69v-12.16h-10.69zm0 21.28h10.69v-12.16h-10.69zm-21.7-42.56h10.69v-12.16h-10.69zm0 21.28h10.69v-12.16h-10.69zm0 21.28h10.69v-12.16h-10.69zm-7.172 26.656V77.583h47.012v87.375H43.057v-19.1h-9.52v19.1zm148.757-90.495h10.69v-12.16h-10.69zm0 21.28h10.69v-12.16h-10.69zm0 21.28h10.69v-12.16h-10.69zm0 21.28h10.69v-12.16h-10.69zm-21.7-63.838h10.69v-12.16h-10.69zm0 21.28h10.69v-12.16h-10.69zm0 21.28h10.69v-12.16h-10.69zm0 21.28h10.69v-12.16h-10.69zm-7.172 26.656V55.934h47.012v109.024H162.94v-19.1h-9.52v19.1zM114.345 53.184h10.69v-12.16h-10.69zm0 21.28h10.69v-12.16h-10.69zm0 21.28h10.69v-12.16h-10.69zm0 21.28h10.69v-12.16h-10.69zm0 21.28h10.69v-12.16h-10.69zm-21.7-85.118h10.69v-12.16h-10.69zm0 21.28h10.69v-12.16h-10.69zm0 21.28h10.69v-12.16h-10.69zm0 21.28h10.69v-12.16h-10.69zm0 21.28h10.69v-12.16h-10.69zm-21.7-85.118h10.69v-12.16h-10.69zm0 21.28h10.69v-12.16h-10.69zm0 21.28h10.69v-12.16h-10.69zm0 21.28h10.69v-12.16h-10.69zm0 21.28h10.69v-12.16h-10.69zm-7.172 26.656V32.414h68.93v132.544h-23.72v-19.1h-8.887v19.1h-3.007v-19.1h-9.52v19.1z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/vpc/Firewall.svg b/src/main/webapp/img/lib/ibm/vpc/Firewall.svg index a7ff2168f593ba461f327d3cb02ce89bea67f870..15b305a1e545c8573aa3301f17e0695e4410c6d4 100644 --- a/src/main/webapp/img/lib/ibm/vpc/Firewall.svg +++ b/src/main/webapp/img/lib/ibm/vpc/Firewall.svg @@ -1,125 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generated by Microsoft Visio, SVG Export Firewall.svg Page-1 --> - -<svg - xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="1.0416666in" - height="1.0416666in" - viewBox="0 0 74.99995 74.99994" - xml:space="preserve" - class="st2" - version="1.1" - id="svg6269" - sodipodi:docname="Firewall.svg" - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:none;fill-rule:evenodd;stroke-linecap:square;stroke-miterlimit:3" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata6275"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs6273"> - - - - - - - - - - - - - - <defs - id="defs6238"> - <path - id="mfid1" - d="m 603540,103560 c 138090,138060 138090,361920 0,499980 -138060,138090 -361920,138090 -499980,0 -138092,-138060 -138092,-361920 0,-499980 138060,-138092 361920,-138092 499980,0 z" - inkscape:connector-curvature="0" /> - </defs> - - - - - - - - - - - <defs - id="defs6243"> - <image - xlink:href="data:image/png;base64,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" - height="255" - width="241" - id="mfid2" /> - </defs> - - - <clipPath - id="mfid3"> - <rect - id="rect6249" - height="255" - width="241" - y="-0.5" - x="-0.5" /> - </clipPath> - - </defs><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview6271" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="2.4129743" - inkscape:cx="-34.387779" - inkscape:cy="55.774015" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="svg6269" /> - <v:documentProperties - v:langID="1033" - v:viewMarkup="false" /> - - <style - type="text/css" - id="style6229"> - <![CDATA[ - .st1 {fill:none;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75} - .st2 {fill:none;fill-rule:evenodd;font-size:12px;overflow:visible;stroke-linecap:square;stroke-miterlimit:3} - ]]> - </style> - - -<circle - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:#e42233;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:square;stroke-miterlimit:3" - r="37.499973" - cx="37.499973" - cy="37.499973" - id="circle1396" /><path - id="path6928" - style="opacity:1;fill:#ffffff;stroke:none;stroke-width:1.49999893;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" - d="m 53.231878,59.654708 v -41.14041 h 3.66767 v 41.14041 z m -35.198297,-3.97147 v -33.44057 l 29.677204,16.7293 z" - inkscape:connector-curvature="0" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="100.032" height="100.032" viewBox="0 0 75 75" fill="none" fill-rule="evenodd" overflow="visible" stroke-linecap="square" stroke-miterlimit="3" color-interpolation-filters="sRGB"><circle r="37.5" cx="37.5" cy="37.5" color-interpolation-filters="sRGB" fill="#e42233"/><path d="M53.232 59.655v-41.14H56.9v41.14zm-35.198-3.97v-33.44l29.677 16.73z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/vpc/FloatingIP.svg b/src/main/webapp/img/lib/ibm/vpc/FloatingIP.svg index a7c79715d207ab351311ebcda2cf54b281abcee6..ccc2dd330a6a39f25ff3f431864d6744b78653f6 100644 --- a/src/main/webapp/img/lib/ibm/vpc/FloatingIP.svg +++ b/src/main/webapp/img/lib/ibm/vpc/FloatingIP.svg @@ -1,752 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<!-- Generated by Microsoft Visio, SVG Export FloatingIP.svg Page-1 --> -<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:ev="http://www.w3.org/2001/xml-events" - xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/" width="0.510417in" height="0.177557in" - viewBox="0 0 36.75 12.7841" xml:space="preserve" color-interpolation-filters="sRGB" class="st2"> - <v:documentProperties v:langID="1033" v:viewMarkup="false"/> - - <style type="text/css"> - <![CDATA[ - .st1 {fill:none;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75} - .st2 {fill:none;fill-rule:evenodd;font-size:12px;overflow:visible;stroke-linecap:square;stroke-miterlimit:3} - ]]> - </style> - - <g v:mID="0" v:index="1" v:groupContext="foregroundPage"> - <title>Page-1</title> - <v:pageProperties v:drawingScale="1" v:pageScale="1" v:drawingUnits="19" v:shadowOffsetX="9" v:shadowOffsetY="-9"/> - <g id="shape26-1" v:mID="26" v:groupContext="shape" transform="translate(0.375,-0.375)"> - <title>FLOATING IP</title> - <rect v:rectContext="foreign" x="0" y="0.75" width="36" height="12.0341" class="st1"/> - <image x="0" y="0.75" width="36" height="12.0341" preserveAspectRatio="none" xlink:href="data:image/png;base64,iVBOR - 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 - vpCmNKT3paJ0ivVXiW9skCFNZEtkN4UK7JVuPSK+FYi6R1fXOm1W5bFpbf1ZZdeg8gvOj6MWaoGg6IxjV7agEbp6m+wQkykXYqu/trxB - 30wma9RnAKsv1KRKrAW4FQSbOIQEGGXDCtBVeIaIYXkqsfp59LPG8H8zYP1hVngECSYBfhII5p7tIksTLHwRHNpVZZ7T2tpW7b0XHtae - akrrbqvO62+v4dEHNY+0FuLbx9ac29vWnWJ5fdCTyo4C/ntyvLbiRYf6cDy25bltzXLbwuaLvLbhCZt5AG0viGNX1uf5bcey28Gyy+f1 - ApqK/ldjhOakd8agfwOWVJNi29VEd9BEfFlbPFF3CFS8bVzvuEEN8QdnJPcUPVl8Q2qvog8JGlvFk50U5VfxB6M/CYK8LdZgJl631MTA - 654qqVNn6nVU+J6THHow6/Hif13Uv2bg+K+x/Qwz1ueuP5uiOu9Glz3T038b3sqnsT9kt4+jT9P5WZEHuS3LstvHSW/kvetFchvfLJ6Z - LJbTH7lm1i+XuL6CflNOtnNijwEeV9LftOe7Mbia8svrrEll95myaWXSbUiW7Gk1yxDXMmkN5nwFiW9KSeyQXpnRaUXTROuFOk1iPyC4 - YvqUfZy9TUABomKPzTQa4PXEQGG/IYT31T11xl/MJ8mi6gASwTCxCCSVIITqsE2WlajQgyM4GrJNej7msdDrEWwDftjyO/r888swQcas - ASzAB9sRHMONaa5hzNp/tFmtPB4Cz44W7EAt6H8M+1pxYUukulddW8PWn1vT1pzH6IOffjn3rT6Um8W315UeI7l90wPWnqK5fd4Z1rE8 - rvgYDuau6+NzHqcvr0Zy28mTd7YWMtvA8peVY/GrqzL8puh5Bfia+SXP4wE8ptbPZDfUHyrOMSXQcWXcVZ8tfianK8ddxDxjccddNa3p - au9man6tr9OyS8qv1p+pdtDZlj9rdIoKr9123xfDrayoO+0GPidjfVvOJmlwr6vC9ffv9ZwbZc4rm1r43pMqv2WDq6/ky6u5wuIv644r - sekwPX3Da77p/p7rv3jKT72NlXbNcl+wX0Ncr+KZdTSuqH86rwvrhnOuToy2U1dn01xSnV6sNqc8fUzkF8TeTDya+V9XZEHp/zakQeRX - 3fkIf9i8zSlt4WW3jDX65JeI75llumVfV6JpRcUV3pTxRss6UWmd2QepFfHG9bY0mu6N1Q+6TUE8rts1xiWXwwUlYeJxh9Uu5TEZtlh/ - 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 - vi2j4jv9M2tZT1zrG4zeR3avvAHjdW8rRE10avtYVAb+R3K8jtkQW0aPF/L75wa1J/ltx/kdwZ/IpzG8hvEHfjgQdWXxVeiDmNxsEF8b - 9MVX0ZWcLs1OsEtlvM1Gd+I/LL0osWZWdwCsQep/jorwIxV/QUZbW+gjDY38rbpRIdfHhPlpbFXFvHXX2bgucsY1+u3cb6OosDjisD1t - 8oC5+tJBzw2Ba6/lQrXcyTD9fhkOF/7NYZruxSF63kC8O8xXM9hcN0fuO4LnH+zfFh1sVdEflXel8V3Da5tqtgTiTzEsr6yYqqZ7Mbya - zo9yGS3BPlNI+9rRR7ied+czZnFm8hW0dLL0lnh0uvM9JZQeldp6d2ipHeukd4Lg65p6TUkld/ffomev01YdpX8zt3RWSrAEOCpIsBoS - wIxUwKcXYg2aHoiVi66P2DpXbMKnGq0LZPgmBEQ4JgEJ0yKW1WDJbhGRILH4P/NzwYtxHZkQrD/3/zsRH0dFMInCbBOy69Ql2H5XV8/F - OANDVmAG7EAN5aDeNrWZrICCpYmnrG9Fc3czgK8ow3DAgwJ3tlOgPSqaq9V8d2Kno9GfFvLmuao+iJighmw8iGjsAmNLeATxTKW33wsY - cnyy4MdffpEfufVooFza9IAyO8slt+Z1ajP9Kqq6pvDB44R3wn4CgUHGQ64qPii4muqvq2H3pIgvvGcrxCX3243KPlNIcCqAhwKcEY7/ - rndjVS3zU109LVRdOTV0eXLa54rGtc+LWMwDosPHpc+zvdWFI7XWpa431dZkbgNSotzG1V2HNs9Hdzb1KC2x9LTnSz5VXnfMau0/FpV3 - 4mm6svyG6/6Juv0gMhDsk4Pxc37LjrN4lsm0httWQbpTSvTW4T0htXe8pfeTmPxDSykNxZvYOFNLb21Q+nNi0nvxmYR6V3gpTeBpPILM - PEN0QfI7xyW3zk7OtGsbSzAmzEBrpVVmYwKsMr/svyyAKMHMCrAaiEMRneBGLGsRqIEQ4CtOMRoCDBjbgNYgl2MWVMUMXEWakXASUJOF - GvraDJo3Nq6NG4dC/A6LcDrGwgTNzRiAWb53dREBtq0Lc1ZglmAt7IAb2sl/XrRvQFZXpFgll2Dqfba4osPFVN4u2JlK1nhZk1zWWBkX - GGmrvry9l3KJwlbfhfUocHza8unv4FzWH5n12DxrU59Z1TTVV8+cCbjAOIDKhBfPnD5gEsQ3xFW1VfHHZLlfFPKrxFgyG8qAW5vuEHkd - 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 - ElFTkSuQmCC"/> - <rect v:rectContext="foreign" x="0" y="0.75" width="36" height="12.0341" class="st1"/> - </g> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="48.96" height="17.088" viewBox="0 0 36.75 12.784" color-interpolation-filters="sRGB" fill="none" fill-rule="evenodd" overflow="visible" stroke-linecap="square" stroke-miterlimit="3"><image y=".75" width="36" height="12.034" preserveAspectRatio="none" xlink:href="data:image/png;base64,iVBOR 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 vpCmNKT3paJ0ivVXiW9skCFNZEtkN4UK7JVuPSK+FYi6R1fXOm1W5bFpbf1ZZdeg8gvOj6MWaoGg6IxjV7agEbp6m+wQkykXYqu/trxB 30wma9RnAKsv1KRKrAW4FQSbOIQEGGXDCtBVeIaIYXkqsfp59LPG8H8zYP1hVngECSYBfhII5p7tIksTLHwRHNpVZZ7T2tpW7b0XHtae akrrbqvO62+v4dEHNY+0FuLbx9ac29vWnWJ5fdCTyo4C/ntyvLbiRYf6cDy25bltzXLbwuaLvLbhCZt5AG0viGNX1uf5bcey28Gyy+f1 ApqK/ldjhOakd8agfwOWVJNi29VEd9BEfFlbPFF3CFS8bVzvuEEN8QdnJPcUPVl8Q2qvog8JGlvFk50U5VfxB6M/CYK8LdZgJl631MTA 654qqVNn6nVU+J6THHow6/Hif13Uv2bg+K+x/Qwz1ueuP5uiOu9Glz3T038b3sqnsT9kt4+jT9P5WZEHuS3LstvHSW/kvetFchvfLJ6Z LJbTH7lm1i+XuL6CflNOtnNijwEeV9LftOe7Mbia8svrrEll95myaWXSbUiW7Gk1yxDXMmkN5nwFiW9KSeyQXpnRaUXTROuFOk1iPyC4 YvqUfZy9TUABomKPzTQa4PXEQGG/IYT31T11xl/MJ8mi6gASwTCxCCSVIITqsE2WlajQgyM4GrJNej7msdDrEWwDftjyO/r888swQcas ASzAB9sRHMONaa5hzNp/tFmtPB4Cz44W7EAt6H8M+1pxYUukulddW8PWn1vT1pzH6IOffjn3rT6Um8W315UeI7l90wPWnqK5fd4Z1rE8 rvgYDuau6+NzHqcvr0Zy28mTd7YWMtvA8peVY/GrqzL8puh5Bfia+SXP4wE8ptbPZDfUHyrOMSXQcWXcVZ8tfianK8ddxDxjccddNa3p au9man6tr9OyS8qv1p+pdtDZlj9rdIoKr9123xfDrayoO+0GPidjfVvOJmlwr6vC9ffv9ZwbZc4rm1r43pMqv2WDq6/ky6u5wuIv644r sekwPX3Da77p/p7rv3jKT72NlXbNcl+wX0Ncr+KZdTSuqH86rwvrhnOuToy2U1dn01xSnV6sNqc8fUzkF8TeTDya+V9XZEHp/zakQeRX 3fkIf9i8zSlt4WW3jDX65JeI75llumVfV6JpRcUV3pTxRss6UWmd2QepFfHG9bY0mu6N1Q+6TUE8rts1xiWXwwUlYeJxh9Uu5TEZtlh/ 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 vi2j4jv9M2tZT1zrG4zeR3avvAHjdW8rRE10avtYVAb+R3K8jtkQW0aPF/L75wa1J/ltx/kdwZ/IpzG8hvEHfjgQdWXxVeiDmNxsEF8b 9MVX0ZWcLs1OsEtlvM1Gd+I/LL0osWZWdwCsQep/jorwIxV/QUZbW+gjDY38rbpRIdfHhPlpbFXFvHXX2bgucsY1+u3cb6OosDjisD1t 8oC5+tJBzw2Ba6/lQrXcyTD9fhkOF/7NYZruxSF63kC8O8xXM9hcN0fuO4LnH+zfFh1sVdEflXel8V3Da5tqtgTiTzEsr6yYqqZ7Mbya zo9yGS3BPlNI+9rRR7ied+czZnFm8hW0dLL0lnh0uvM9JZQeldp6d2ipHeukd4Lg65p6TUkld/ffomev01YdpX8zt3RWSrAEOCpIsBoS wIxUwKcXYg2aHoiVi66P2DpXbMKnGq0LZPgmBEQ4JgEJ0yKW1WDJbhGRILH4P/NzwYtxHZkQrD/3/zsRH0dFMInCbBOy69Ql2H5XV8/F OANDVmAG7EAN5aDeNrWZrICCpYmnrG9Fc3czgK8ow3DAgwJ3tlOgPSqaq9V8d2Kno9GfFvLmuao+iJighmw8iGjsAmNLeATxTKW33wsY cnyy4MdffpEfufVooFza9IAyO8slt+Z1ajP9Kqq6pvDB44R3wn4CgUHGQ64qPii4muqvq2H3pIgvvGcrxCX3243KPlNIcCqAhwKcEY7/ rndjVS3zU109LVRdOTV0eXLa54rGtc+LWMwDosPHpc+zvdWFI7XWpa431dZkbgNSotzG1V2HNs9Hdzb1KC2x9LTnSz5VXnfMau0/FpV3 4mm6svyG6/6Juv0gMhDsk4Pxc37LjrN4lsm0httWQbpTSvTW4T0htXe8pfeTmPxDSykNxZvYOFNLb21Q+nNi0nvxmYR6V3gpTeBpPILM PEN0QfI7xyW3zk7OtGsbSzAmzEBrpVVmYwKsMr/svyyAKMHMCrAaiEMRneBGLGsRqIEQ4CtOMRoCDBjbgNYgl2MWVMUMXEWakXASUJOF GvraDJo3Nq6NG4dC/A6LcDrGwgTNzRiAWb53dREBtq0Lc1ZglmAt7IAb2sl/XrRvQFZXpFgll2Dqfba4osPFVN4u2JlK1nhZk1zWWBkX GGmrvry9l3KJwlbfhfUocHza8unv4FzWH5n12DxrU59Z1TTVV8+cCbjAOIDKhBfPnD5gEsQ3xFW1VfHHZLlfFPKrxFgyG8qAW5vuEHkd 8KaTDr42iAnB14bWCL2v9r/GqKfA/x+QLE5cJlxvabSEd9WNq7tBlz3rVhc26akuLdL0biOq7LCdayXhH2/7FdmuPZDSXDtgxLh2G7Jm HuoZSi/qPoi7yuRB3yb6Yo8qElutvjKZLd4pwd7spuj04Mr7xtGHqLym3cxMz3pNZleS3rVqmyJ0lv0RDamnKU3LeEF5jEppDfavQHX8 aqB9KJlmS29iEF66S0+KeX3i68+oSnrWrPstqfZ2zrRvJ1dVAWYBXg6BDioUIYCjEzq6KUsZrlYeleTjyqwkl9TARb51RgBjschDCLC5 tZGi7FNKjkOCeMVZtKdilqgHYySXwXL75oMQQR4bT0av7Y+SzAL8DoIcEOaxAI8eWMTmrJZZWqwLDEWqIAAT9/KAryVBXgbf4AIYOGVi IOR3ja62psovlL1RfuXFarqm7UMJww+UeTWl/W3hy3S8jtPye+A2TWl6gvx7TOtKvWeWoV65txN3SfhEyTiDnwQG/EdA/G9LSq+w1l8d dbXbmtm53wRc4DwppLfiABrCRb51QIsEqyrv/U63MDcSPXaf58+/uzXznHo8Xg8nqIpPDQ2Kr867ytxPkfkIZjkZld9U3Z6iE12g/wWM +87aUPjq1N6gUt2Dfr+Ir38fCWR3qBPr0N68e2zl970SSm/YNWh8XrSW0eR3/m7uuoIRHupACthCwUYOwOrwKlWXEZ+lQCrdcZVBAKt0 IYvrSEEAmxJcIQV1YVRhsJERq+MARlOIchKoK2ohcQt1Co4+JpIUYfGrgYswKvrsgTXo3ECC/Balt91DZlGNGl9Yx58mbIONpYkxspsU zezBG9mAd7SStNagPDaEQcTc5iynrfjOrWmfER8UfUtaEJjluMrIj5h5DXgEwafKBaz/C7MkE+A+Ppj4ByW31k1qN8Mlt/p1Vh8q1Kvn CrUYzLLL6q+LL7IEuGgw0EYiO8IoMWXpTeS9bWqvsj5qnZmiQIsLc5YgE3mN3kFGBKsgQR35NuONzI3Uf7qGc7x5/F4PJ70mL25K8uvK +/L8htEHpT8BpEHR9U3aaeHZJPd0sz7ztzD4ltM6S1Zy7L0pLc0md60hBfo+5vnS1d6+7D09k8lvZjIlkx6X/XSWxRFyi+qv8ieSvRhe 2dauKc7zd/dNYhAoAJsCzA+hWARDNWRAMvvYgGMOtIJYuTSOjRKZ4AlApGPnsAswMwILcERllePMLLAQgtx+mJshJdBFTkBRC7U+ucK/ akZArwqQ8MCvLqeIAK8pgFLcEOauK4xTd6QyTQlLEqRs7E5TRFYgjdhmWLQSiayTbNyvYiOmGqvEd+Jq1l8V/EHiZXNAvEdK+Jrqr44a UB8UfXlk8Q8PkFAfFH1nVmDxbc6nxhYfKdU4YPIVH354OaDzRzIHUV8b6N2I2PiO1RlfVVrszDyIJPcAtFNlGAjv6j+Ria+uQRYqsCQX 3AjNeh0EzXoeDN94qu+Ho/HUyqw4JTI7wqWX2lxpuQXXYxckYeg6huIr6r6Iu9rOj24J7tZyxqnyvtakYfcC02KkN66jkpv6aW3W2WQ3 mLEG/pMTSK9dveGjU2j0nuYpfeir/QWhyLlF+y/dynN3NxBog+o/C7cywK8CxEICHB7mr6pjYpAWItgjC1gWVuK/K9ahheMWsosYwmGA CMHnI+ewCy/QEuwqgZXD1nG4huhGoswUEJclBQbAjkWrHiFRhbhWMECLOi10PnkkVVYh8asBBkCBHjsKhbgVfVp3OoGwvg1jViAm9Ckd SzA65tKb16Qs4EFeEMLC5ZgVHn5FtjSO2mNEl+1vCOL74qmLL6qDUzW0sZBPmoEqr6LcMLgk4Wp+s6uxeJbk/rNqMGfFqvxyaEq9UTVd xIf+Hxw4UDDgddpzI9YfG+nDiy+7UV8fygZX5FfLb6IO9gT3VxZ37gAx+U3QYBZfg2hBLP4dr6JGnb+PuWv9VVfj8fjKS0ivxJ5qBPkf TGBW/rYuyIPyaq+iDxY8pv2ZLcUeV8UitwT2Yz0MmUhvYH4VhbpZcpTen28oUSkJb9f/OETqeya6MPifT2VAJsKcBCBUHlV9ZV9kyD/C wFGFwglv5BgVIGN/NakYSy/IdVD8hXDgchwNQULsEHJcCjCNhEpTkoYr0Af4hCsTKdXx5ETSYYwBqxkAV6pBBhLSY5b3ZAmrGlME9c2k b6FWJENoEevsL453zaXDwc2tvSK+LL0jpeVbkLxxYxYEd/gqyI+cUivQ3w1xCeKOXyimMUnCRZfZIN6T61GvXKqivh2n3gXnwjUgY4DE QemEt/bdNyB5VeqvrcGFV8lvtHIA+TXNdnNlt+g16+zAoz2ZxYsvg27sPh2+T5zM73w8jPOcefxeDye9Hj6pQt6gQu+VuGaZUceWH6TR h6sqi/EV1V9SzrZzZ33nb67UaWS3lB8y156w4lsMellnJne6ejQVFOKWInS2yiUXnsim5feUpOW/IKLT+9WLc909GHJ/l60SAswKsAzt 7aLVIAnrsHX9qoCPIoFWMkvwwcnJBgRCOSAsRrcsNyaNHRJDUVudWEYSBDhakIgwTaBELP4xoEMJ/u9gIgFC7CgulHIwhyyOAcLsOSn+ GSyAicVCHBdYWxhPZZgFuCVDXiAYpCqT2fIPqNzAXohA7SEQyQE8RFhjSKIOEi1t6kW30zKXs7iu0yJb5ZLfBfwSWOe+npoIIuvVH35A MInR7RCwUGFgwsrweDAw0HeKUtVfePiayIPYWszJb6RZYx1izMR4KRVYCXAgQRDfo0As/wCI7+Nut7EfJ8ad72Zlq6f6RxvHo/H40mfc 09ul8lucp1KN/JgT3Kzqr6IPKSa7BbIL8TXkl9X3nf+icYppTdZprfPZZTetIUX4DEsvInSyxQhvZjIhvk6ofQ2UNK7Qkkvvk2G9M700 lvmpC2/v5Pqb3OJPizY3Y1yD/RmAe4ZCPCcHR1ZgNvrLhCtWYBbSgUYEQipAC9Tq8DhkykkGBlgZIHRDxhLIg9dwgK8GALM8mujZVjIY /m10TI8jOUXOKXYiakk27AAG3Q/YulMIRJcm2EBhgTjU7V8ssZJph6NYcYW8mBd2ZDfayPpeIHcs4IlGKxmCRYwKVDJrvyMSq9MatPSa 6q9LL4SdchzVXxx8tBV39k4aaDqixMGPiFX4xMFqr58gpigAv5dxt7JB/MdLL4/og6jLPkdruV3mI48DAnlV8RXr+YmxAQ4QYIDAQ4lO KECrAW4UbebqHE3Ft9uN1Nmj1ucY83j8Xg8xWP3hSV8feLrEr6lNF0edORhQrLIQxFV39JMdjORB8Qf49KLPr2VWnqBS3Rt8Bjp3FAS6 UVr0uJIbxsvvWVM2vILnnn1EmGZ4/m7uknlN+9QH1pyABXgHlYGWPcBloUwVAQCFWBbgJX8YjIcy2+ukt9hWn6HLK4ehQUYDF1STZFrE ZdhGyPGRaKqyhKtEFT2GN0ogCzRrCfpIa8sEiyzafH1Ep9oCiDA9Wnsigay0h0GL/I5kGC8b8j/uJWZLLkAK7XxLcuuS3pNzCEr3xbfh jJBYNhCcwJh8UXFF+KLqq8WX5wweuXgZKFOFKj64uDvDPHNCsW3/QiWXxFfBuKbIL/hohYm9hAR4L5JBNhRBQ4EWOIPNwmNu3+fmnRX4 nvfY/c4x5nH4/F4iseszV101RdzVMLIQ8LCFrq377Q97qovsr5B5KGIyW6RyINDfvHN6BUlvS7JjYPHJJFeWY0tLr2TotKLeToJ8QYvv RVOseQX1d+8vQNYcrtI5hfym3+or1SBF+3rIRXhMAPcjqZuQAXYEuDlDUSAEYNADhidINAPePgSFuAl/ClocU0asqgGDV5UXRhiEBGup mABBrYMD7GFOBksxILr33Rl2UQs1AQ8dKJgATb9idGmTUDHCoD8Mgswk7WcBbiggaahRD3Q8WLsisayOIWCJZjBrcDCqzo5MCbioGMOR nwhvcMXoeLL4rugnjqJmBOI9DvU4ou4gxbfHhPVSaJr9l18cN5JnbLiVV8tv8N+GIovIg/I+5rIA+R3gJLfiAAzcQFOKcE9WXZ7aCC+P Vh8e0B8f0BTlgx0jjGPx+PxFB9ckySWhwnaq1D1xSqldaIT3eKRh3Srvikmu9lVXzvrO+94Yy29KNakkt4aZSi9SnyV8FZy6V2mimUiv euV9M7Y3sJLbwVRLPkFb/3qeZqxpa2KPhzsRcuO9Kf8w/1EgDERzgjw7GAhjGgFGC3QXAI8jAV46OJaIr9DFrIAL2QBthEhZtEFtggHP 1ctBvqxMcKoRQ0axmAyngABFjBJjwVYt20biQl8SyHAiHOgqo0B3YBluCGLvqGRgEUq0LLMIGuaB+uaR6XXVHtFfHVWyoivZKSsE4hMC OATR08+cchJg08YOCEg7iBVXxbfjqMckQdn1VdFHiC/qQQ4rAJr+oCiBTizJ4tvzx9Q8z630ouv/sw5vjwej8dTPN744DmRX5mQvQq96 VH1ZfHdUIcmbK4jVd/4RLeUVV+Ir6n6Js37svyaqi+6PFgV38XnmgTSm2wi29UjvSy8JZDeCZb0TvfSW+EUW37B/T/bKxlfVHvzD/eh5 UcH0FIW4LyDfViAVQV43k4shMECvEn1AUZnA+RdVQVY9QFGFmhUPktwHhbE4MERCHBNGrygBg1aUD0gFOFqCpbgKFVp8GJN/Oek8OO0P ONnJdIsv2CJEmBMxgPDc9GZguFbLNusFu5gAZY2bjyo+X0oWILz8d4UWJhCgfeM5YmjGOE12d6R0gORxTeYGVuXhsytG35lFBdfxB2M+ CLuwCeJLmPvYvGNVn07jAzlN4g8DL1VxNeWXzPZTQkwi68lwC4JDvPASoCVBKMvMNPr+yK/TXryzyy+TXv9gJr1vpUKt812jiuPx+PxF B/p9LAcVV8tvzLRjeV3I4svy69d9ZXIQ1D1VeKbrOqbVt43Ie6QKXHAK1165THlJL1YE8BL7+WlRPL7uz9+QssPD6EFe1T1d/nR/iLA+ Yf78v+rCjAmwaEtGirAJgIxea2eBMcCjGiAW4DrsHzWpiELa7L0sgDPZ/k1GBlm+R20gMGtUDVGldhtUajnUVJtohY1+HXYoCMFi/AS5 JMhwbWlYo3XjOo1Xr+Qi/fCEsyDXcHvETKcr1ZnM8s6OoU31vg7IStlTiT6JBKeQELxlbgDi29nFt905bfVYEt+B90cE+BoBThBgG0JF gHWWAKc2YvFtzfEl0V74O3OMeXxeDyekiGT3SC/WIxpdZ0g8jBhE8vvlsSqL+QXVd+4+NoruhnxTae/rx15yFpet/TSK+J7V0x877SWI U5fegPhBQ7JjVMS6cVkc0gvoojpSO+MHSy9e730Xk5KJL/g7V8/T3N3daAlB3vS0iN9acXxQUEFOFcqwCoCgaWQZ2/rqAW4jRLgVRDgT IkCYGCgQqoEuJ7I5LDFLMCLWIAX8ECaX4MGzqseoESYZZUZiFtI8IKqNDCBKor5Dsx95ofgOdRzQYLDSnMYw+Bb/LyIJXgR8skswSzpA MI+fDEGO4vwEpb4Jfw+AuqzEDN8i5/RtUGBDg5R4TWV3qFaeiXmIO3MrE/QycSXTxYQXxV3UFVf1d4sNtlNtziLRx4Ekd+YAGsJjguw4 BDgZn1vFpr2gfAqmvVh8e1zK7Xo+0N66XUfd/B4PJ6yBJPd0IlIViJdw/JrRR4m2RPdWH6DiW6u1maxrK/J+ybr7xuPPMw92rCcpdeex FYO0ssUq9Kboyq9aDealvSi0uult1JQYvkFDz63jxbt60r5h3vT8mP9qfDEYBbggWEEYn8vHYFABRgC3J6mrldt0NDuCxO/ZOneQIAhi vVYJlmAF7EAL6xNgyHA81iA54YCPHAei28CUZkdMK9KmuC+/Bj9eCPWkUqz/hlRDICqtKKWAFEfuhCvtw6/brz2ugFYjW34YoZv0aosg iW8qPKaSq/J9g6cpaq9ScXXRB2M+MbkV/K+lvwGk93i8qsXtzCI/KLrQ0yAlQRr+lv0UyvB4VZ+tgS4Wd8fUPO+t1LL/rfRrIIhznHk8 Xg8npIzW3d6GLsa8qsiDxMQeQiqvkp87Yluqaq+RnwTujwEed/EyMOiM41LKb1KfIsvvVHxLY7wglTSq1qWOaR3spfeK51Sye/v//QJ7 bx3Bi052J2WHe0r8rvy5BAqODZQJsLlHeyrF8NAK7SuNGd7J2mVNm1jWxbgVoRFHkSACzD5CxlYFQ1QAgx5zFACPL8my68S4AFzNHOrJ QKRnRvSf24VxRxze7f6OQ7/mzzGPN4p14AlWKrPiGOwCPPrAkMWsATPR6W6jiw5PJRvcTAo6oZAci3RtYXXNPxWEwTUzFgIb//pSnrNC cUlvibuIFlfPdEtkF9EHgL5jU52U6u6pRbgSAXYkmARYVuAAxFm2WVEevvdQi36QXx/SMOmt3SOIY/H4/GUDnQgEvlF1XetrvpuSqz6T g2qvkp+41Vfe5KbiO/JhkW2ODPyizkwyaWXqaTSqyIOxZVedgCRXnzrm0x6m/t4QyWmVPILvvzTp7T4QDdaegTV3wG08tRQEeAVx1EFH iCt0JagFVogwJ1lpTgR4LWtaNLqFrrXbZMUAlyHJbMWi2dNGjDbCDDLbgIsvBGU3Pabbbg7Rvhv6r7Rx4tQ8/P2j/yN6qoKLUDI8ckP1 KLB82rLAYHbwfP4NTNmQQoDYgwmzmAIhBdV3hkmK6Wld6qWXrsHYuQTNIsvThhB1ZfFV+Q3rPraSxoHC1sMu0VVfgMBZumNCLCWXxuW3 3gcIuQH1KK/AvLbov8tLL23UqsB/LeH30GvvPlz5/jxeDweT8l5+uULqs1ZYQZlm8iDPdENVV+7vZmJPKSq+or46qpvkryv3eJs4qZ6Z SK9dp73ckpvNy29oKTSO8dLb6Wm1PILHnxhLy051JWWHetLK04MpNX3DKNVLMGoBC87onPAphXarm6yRPIsFuDpG9vRlHWtlQAXNpXet 2j/JV0Q8iHAyMnWswQYcqkEuL/AYpoAiyvTD8wCLLeavgF3U9+ZjL617xNgnkeeI6T/LPN3WMCFGhqsza3W58bKLQPn8GvVYEGKgFkK0 /NQbuPCayq9OJk4Tijm6yNzAsGJQ04Ygfyy+OrljIO870hrSWNd+S1KgFtCgEWCTRZYM1DRwtyy+LYUbuGfFa0G/pBh4R76Iy++Ho/HU 05gWeNR0ukhcaLb5G0ZkaqvPdEtVdXXiK9d9Y3IrxZf5H1nH25YPOmV61Zlkt47SyW941c1VtK7NSa9F730VmbKRH7Bwy/up/xjPange H9aeWowrT0zgiV4eBCDyD8EAcZEOJUDxkIZs7Z2pOmbWIDXt6HJa1rS+MJmUgXGwg9KgFUVWAkwogO2APOAnMUCDBll+gWwpM5U9BVYd m1mVKE+wt0RIMHqNnZ/g35c3xl4bv47Afwa+MAI4dc2y1CLBbcW/w4LUoSI5AbUFER49VdG5hO0OqFUlxMKqr0ivqj4StVXnUTk5CF5X xZfnCxM1RcHvMhvWPUN5Neu/toCPPQHjgpwjLgID7qFBdgC4jvoh9R60G3UdsiPaP3++c7x4vF4PJ7Ss0eWNcbCFtZEN4k8ZNDk7UVXf RMmucXE1877QnztvO+CU42KJb2h8JZMegPhBTG5TUZxpDcSb5imru1eeq9Oykx+f//nT2j3Q9Op4GQfKjw5kFafHkprz46kNadHsAAPl W4QQQ6YBXjh7h4iwLO3dqIZmzARDgLcSgtwUy3AjVmA0QcXnRHqawHOkFjBwDlKgCGfRkT7zjDwwLVQsstMj8PCy/TWmP8XnPdnpuGWn 1PTdzpanFQP6MefEvvNAJBavmWwCluIllxDILumwquB8Ir0Rqu9tviaT89y8kDVl08acqLQ8tth9G1afpX4KrT8piPANgkijC4R4FaWX UVr/rnN4NuY20V8568b5hwrHo/H4ykbMNkN8juW5XdcJPKQEU5001VfM9FNxDdp1TdRfBeedrc4Q9ejiqj0lqv0Ml56rz2+9t///d9UV mAC3Lrzw2jFPX1p1WlUf4fT+nOjpAq86tQw3Q1igAhw7v7etGhPT5q/sxvN2dY5EOCcta1p4krkgJuJAI9ZxhLMAox+uBBgdE1QAlyHB 2etQID7zoB8QkRBKKfCNKDFlekdwNKbgl5T9c98i59D+LEB/NxTq/FtNbnFUsM4eAB+lqWHkdc1mIquLbr8ydl8eg7gE0pQ7XWJLx+4c iLRJxFz8lCRBz74UfVl+W2v5VcEWCT41ogAB/IbCDDLr6BlWE+IC2DhVT+jR7Bm8A+pzZAfUtuht1G7YT+SqEOXMXfRZ7/7tXOceDwej 6dsUJPdsKqbHXlIUfU18pui6mvEV9qbxSMPyPuy+I5bn1Fx0hsT21Q4pZf/VpjpZeLSi5ZlKaWX329cevXiFGsuDhTpde0bT+WlTOUXQ IBzT3SiVWf705pzQ1h+R9KG86ODGEThCcQgBkkMIu9AX1q8txct2NWd5m7vQrO2dKTpG9pTzprWNGlVSxrPApy9HDlgCHDjYFEIJcB1t QAjS4toQQ0R3z7TDJDSqiKnIaG0QmBFZKfExTb2O/65pyEnDg4adeDY9M5hmTW4xNbFRBDKboCR3gnmhGL3QEwU3076BCBVX1P5HaXk1 xbgtoEAW/JrSbBNRISHsjALLLyApRe0H8F/c+Qd1GEEv5asu+mVt37uHB8ej8fjKRt+/NJ5GrWc5VfnfcPevkmqviy/soxxbJLb3GCSG wuvkV9bfI386qrvzAP1K530gnSlN8j0xqQXHZsgvYhaOqV3u5feq4Uyl1/w5Z8/pWWnu9Ka8wNp3YVhtPHiaNp0cYxUgVUOeCitODaYl h7uT/kH+9GSfb0lBjFvR1eavaWzCPDUdW1p0upWWoCb0thlmSLAWA5YCbBaGGLI/AwetOiYAAGuKdGDPjyYA+GdosCyg72m8GAHgbSy3 BogvE7BVfSYzJ8SbSbx7wKqUM/JhqqKSSEJQmvhFN6JVSLSm1DtDU4o5kQSnjjkJGDEVyPyqwU4Uv1NJcARILt8C+kdhlZp4DbFUP4bI /lvj76TQceJu+mXb3vx9Xg8nvJmz4XFQd4XkQfV2zcjmOg2dbcW30jVN4w72FXfoLuDHXewxVfnfeedaHhlSi8Lb4L0znBJbwMlvSu99 F7NlIv8ghfeu48Kz/ekdZeG0IZ7h9Pme7Noy33ZtPFCluSAV58aLgK87MhAWnqoP+Xu7yMxiHnbu9HsrV1oxqaONHV9O5q8pjWNL2xO4 wqaiQCPyW+iBbihLAksAiy9ciHA6JqgJpCpuAGqr2FFFpXaUFLj8EHB9EgAopsEPpBCWFghwUJceiGzfMsyK0RE12Bk1y298WqvfTKJi K9wW1SATfU3EGAlv1EBjsHCa4D8qv7AinbDb9Pw3xrFr2Msvy6WXrwPL74ej8dTMcza3DmMPMQnukU6PGjxdVR9XXEHI74m7mBHHrDoU 7lIryWz6ZKu9Mo12pJezMtJKb3rM2mqkV6d6fXSe3VRbvILHnt1P6280JM23D+ENt8/krY+MIa2PTiORXhsEIUoPI4YBEvw4QFagHvR/ J09aM62rjRzcyeahhjE2jY0cSViEM0pe1lTLcCNAwHG8sBmsQj0zEULMdVBAZPIVPxAVWOVnOIgiGIEVn0yDMGBkwL5CoXvB+Tx/Fxag oOfI0IboiQ4/u/6uZhAeoNq753WSSV6IjEnEDmJyEmB5TdBgLX82gIcl2CnCKNSDFigZXlk3N4udBrNJ5lsfr3j+aQyuRr98h0vvh6Px 1NRIO87plBHHmSiW0Yw0c2d9S266gvxRbU3Lr4AfycU3kTpLe7iFGVZ6ZXJbMWUXqwn4KX32qRc5Rc88fpBWndff9r04DDa+tAo2v7wW Nr58ATa9kA2bbo0htafH0VrTquWaMuPDKK8A/1o8Z7etIAFeK4W4BkbO9DUde1o8urWLMAtKHt5MxqzNJOy8prQqCUswYsbsgA3oKHzW YLn1g2WBkZbMdMvV+VuVYXV0B3EpFPEU6PkVs0IFbSMBv8vmPsC9ZzB80fENhX675qTSgrpVScUfRKJnUiCk4mcIJQAB/I7+oehAAfyi 1uNSDBuLVh80Satw8jb+bHI9P4oADEHnPywXftMqU5PvnDOuf89Ho/HU/aYvC/6+0rkAVVfe6JbkqpvykluJupgxRyQ8QUz9tdX16eyk t6Y0KaDPL4o6WWc0junmNJ7gaX3VS+9VyvlLr8AArz+gX605eHhtP2RLNr56Dja/dhE2vHweNp6/1jacGE0rTs3UhbHKDiqqsAiwXtZg ncpCZ7FEows8OTVbWhCYUsaV9Ccxi5FFTiTRuc2YQFuRCMWNqRhCxqwANejwXPqsgBnyAIS6KeLldJMZ4VAOhHYj3yKtVECahMc7Pg58 m98f00gwUaI+W8gviCY31nYj43+HVt61UmlsyW+wQlFCOVXTixyotDV30CAWX5tAbZE2EaJsAJxCXSNkGWShTtEehFz6KarvWjb9uTzX nw9Ho+nIjF536DLQ2SiWyzrqxe0MOKbqupry69pa4aJcHKNMtdAc40qhvSWtMoLipJeU6iypRdzfwbMrOml1+OkQuQXvPTRg7Tuwd607 bHhtOPxLNr9xHja++Qk2vnIBNr+0Djact8YkWCJQkhHiMG09BCiEH11FKI7zdnWhWZu6kRT1ykJHl/QgrKXNWcBbkpZuZlSBYYAD1/Qk IbOq09D5tSjQSzAA2dmsACzBE+rRX1YgtFqDB0WkMOV4D6Dr+9D+MC2wYHu+p2FCLOWWBHbQGiLQgtvIL2ATyYivuqEEp5UouJrEPm1B FidYEL5TRDgoiSYpbcDpDeLnzuL/65wJ/+MkwxOLCy902pIvvqpF88797fH4/F4yg/J+9qRBz3RTbU3i1d9ddwB0mv19E2n6ou2ZoMXV I9cny5bpZeFN0F6rXgD4o2ppHdsQaOI9E7f5qX3WqXC5Be8+OH9tP6h3rTjiRG068ks2vvUBNr/48m076nJIsGIQmy+14pCnBhKy48Oo vyD/aUKvHC3mhA3a0sXmr6hI01Z044mrWytBbgZZeU1ZQFuQiMXQYIb0bB5DUIJnl2XJbgODZhRR0nwFEhwDZbg6izB1aj7uKrSqUCBr gVFEBz8fDKwhNgtuEBJbpzgZGJhS69NZz747ZOLIS6/6mQTld8EgjiERoRX3aLai4UysFocFs8AeH8ivdNr6BNLLfnazbWfPR6Px1O+S N7Xjjyg6isT3Vh890SrvljQAlVfI77FqfoOCsQ3UXq7lIP0Btex4krvVEt654fSOzqV9B5q7aX3GqVC5Rd89dfPaMtjA2nnUyNoz9Nja d9PJtDBn06h/U/nSCV4h1SBx9KmS1m07uxIWnlyGK04rqrAJg88b0d3ms0CPHNjZ5q2rgNNXtWWJhS0YgluQWNYgLNym9JoS4KHz9eV4 LlhJbi/JcG9JrMET6zOB5KSYFUJriILNUCGO/NtyJ2CkUKFll9bgHFrSFt6GdwmoE80SSVYnShsARb51QQnE4vICUeiDfx7VHpZeI30m veE/LK0hZlVkwbPrU3T1nSm1z941rl/PR6Px1O+oPCgVnXLkMhDMNHNVfU1k9x01CFp1ZcJ+/my/LL4Zq+tra5PxZVe+/qSJsH1SUsvr nMivJb0SqbXIb1ocxqXXleld+bOll56PUKFyy+AAB94ZhLt+slI2vvTMXTgZxPo8M+n0JGfT6cDP5mi4xDjaesDY2njxaxghThpjXZ4Y CDB0hVia1eauYkleH0HmrQKUYiWNG55CxqrK8GQ4FGLdSV4frwSXJf6SxyiNvWdWksqwb1ZhHtNqi6LTkhFeLyR4bulnZcRYFMBDkU4l N84ieKLA9n9+2Q4BTiQYHXCiKBPIiH6BBWcpEI6Az6RmWq2es2qYo1qb7DqzcI6NHNDF/riq98496vH4/F4yh+T981ek0HjN2aEK7qlq vpCfCG9mqKqvpDny1HpTZBeFl639OLaZEtvPS29DaPSu8VLryeRyyK/4Ku/fkonX5hHO38ylPb/bCwdenYCHXkuh469MIMleJpI8J4nJ kkeGBKMSrBI8D1YJhmdIViCD4aT4uZs7SIZqOkswTlr2tLEwtaSCR67tJlUg2VSnKkEL2gokYghc+vT4ECEM0SEASbH9dWxiN6YJKdlG CKsJrBhohyywizEOuurJrSpiW7y/9akNhy05sBVs1Fj/64PbqcQ88Ev2BIciLA6USgJxolDnzwiP7swJy88hyW8DN4D2q+hMwY+UQ+cU 4uGLcqgkXn1aPWRbOe+9Hg8Hk/FEeZ9M2jCpoxgolvyqq9V8XVVfSG+lvzOO95QXxv0taYo6XVIbVFUtPQuOt7KS68n4LLJL/jqr5/QT 98/Srt+Ooz2PzuGDj8/kY6+kEMnXpxBx7UEIxMsleBHx9O2B1EJHk3rz4+kNadZgtEe7ehAWSp50d5eapU4yQRjlbgONGVtmAnOhgQHE +PQHcIS4fkswvNUh4hBszNUmzQtwohGQIZFhI0MT67GQqyXJQb4fwYHZi9GDlIsdME/h+B3aIGmD2Q5mDX8swiyEeAEGbYFmE9EDgEOc lHmNnIfCy3RZoId5BuxBnntOVgNr5qS3tm1aPC82tL8e/TS+rT/vlznPvR4PB5PxRK0ONuQIZGHYEW3FFXfQHqFhkmrvpjoNnB+NXW9q ETSK9G7ZNK7omEgvVM2NQukd76XXk8SLqv8Gj76/cu05cd9ae/PR9KhF8bTsRdz6NTLM5lZdPwXLMHPohLMEvzUJNr1GEvwQ9m08dJo2 nCBJfjMMFp1Ct0hBtLSw2ap5J40f4daKW7aeiyVjB7BqjuEapEGEbb7BLMES5eIBizC9WkoRHhuXRqMijDapc00MlyLZRiLZzBTa7AkK vAzuh9AGtHzFlEBSGQcyGXiynIsxFqKlQDb2BKsBVgkWJ0kgtsikKyUFmk8J/4WlnfGss/4FI3ZsZjIJicWiTdk0IjcupS1vAGNLWxAP 331onO/eTwej6diCfK+qx2RB7Q32183oeobEV+W3lRV34Hzqor4Voj0MoH0grSkt658E+ml11MaKoX8gj/866dS+d377Ag6/ItxdPzlH Dr5yjQ68+ocuueV2XTiFzPpqJbgPU9OlF7B2x/Opi33ZdHGi6No9emhtOqeIbTi+EBadqQ/5R3sQ4v2sgTvUi3SsFAG+gRPWddWLZbBE iwivEyJ8OjcxoL0C16kFs0wIqwWzsgIq8IzarMQYynlWsKAmerWLK2MgxUyHMJSzGIsEsxiDAm2EQmGADMiwAZbgHFSsG+N0Orfmd9HM c+hng9/B68BsttvBk4oNWjArJpS5cWJBfGGUfn1aUxBAxq/mk+E+3rSW79+3rm/PB6Px1PxIO+LJY2R941HHlJVfU21NxBfR9V3zOpal Vd6F3np9ZQdlUZ+AXLAz3x4lHY/O5gOv5RNx16eSCd/OYVOvzaLzrw+h07/kiX4RZbg56bRwWdyaN+PEYdQErz5vtG08dIoWnd+uIhw4 clBtPxYf8o/1FckeOGeHjRvZ1cW4c40c0tHmr5RifCkVa1oQiEqws1YhJsGK8eJCC+BCDeg4QvqC0Pn1wtleA5kuI7cYllltaocpFhJM A5auRUhZgFmIJ2BBFvVYCXAjBZgtUIcTgKhtKJSC0SUzS1jThZya/9snodvRXj57+J14HWJ7M6tLbEGqfLqaANOKJDeSRsa0/3P7nbuI 4/H4/FcPmZtUXnfcevCyMOUnXVV5CGo+urV3HTV1yW+8aovqsblIb3B/BMtvRJxKI30Fnrp9ZSeSiW/hl9+/CAde2kyHXppNB19ZTyde DWH7nltOp17Yw4zL5DgI89OpUM/Q5u0SbTniQkswtm05YEsEeH1F0bQmrNDaeU9g2n50f607Gg/yjvUR6qZC/d0p/m7WIS3Q4Q7sAi3Y xFuQzlrWtHEVVg9DiKcKWTlN6bReWoJZSAyvFCL8Py6AUPmQYIhw0qCB85mZtWiAQwO5H5GghGP0BJsRBgxCSXByA2rE4ASViwmAWlVV VpUa/vyz32no3qr/h30BkamIdHm8fJYPE5XeOeoHC8afw/jEwqkF9GG7JWNaOLaJpSzOVO20du/8dVej8fjqYyYFmfjN2TIcsZBb19Md HNVfe3Jbbb4MkZ80f+3rKXXVHpFeIshvSjOJJPeSQ7pXXjMS6+n+FRK+QWIQfzso6O094UhdOSVMXTitYl0z+vT6MwbM+j8m/NYgufSP a/MopMvzaRjL0yXVmkHfopc8ATa9fg42vpgFoswqsEjae25obTmzBBacXIAFRzvT0uP9mXJ602L9/egBXu60dwdnVmEO9GMze2FaRvas gy3psmQ4ZUtaPwKluHlTbUINxJG5UKGWYQX1ReGLVQyPNiSYHxyhQQbATZVYYgwJBi3QZVYUJVZuS/L6gA+CUBYwaC5+ufZ/O+zlMyq+ yu5RWUZt+ax6jHqk/OwhRlB78NRefVp9FIW3sJGNH61OZlk0vTtTenBF/Y494XH4/F4Lj8/fvk8Za3ICCIPaqJb3SDyoFZzM1Xf+kHV1 xZfiTpYcQcwYG6VyiW9fK0and/AS6+n3Ki08mv4w98+o3vfyqP9Lw6hk69PoFNv5NCZt6bT+bfn0oV3WILfnEunX53NEjyDJXialuBJI sFYQnn7I2Np28NZtOm+UbTh0nBae34orT4zmApPDaTlx/vR0iN9aMmBHiLCC/eyCO9kEd7RiWZv60gzt7Sn6ZtQFYYIt6RJq1vSxFUsw 4XNaNyKpizETWjssiaUtZSlOF8J8YjFSoSVFNeTn4ctrEtDF6BCzGI8rw4f4BkR8Hsc9Or/6+j71OHH8L+xuEJecTt0gfo9qrcAcgsgu kPwGP53uT+fPExlFxleNPsesxyfnhvRhDVNaNK6TMrZ2IymbWtOM3Y2p4KTfemdj19wbn+Px+PxVA5WHRlLY2Rhi8SJbnZ7M2fV10ivE V8tv/3nQHzLSnpvD4U3DelFwSZd6Z29u6WXXk+ZUenl1/DqZw9K5ffY62Po1JuT6Ozb0+jcOzPowruz6dJ7C+jC20aEZ9HJlyHCU1mEc 2jf0xNp748n0K4nskWCtz40mjbeN4LWXxxGa88NoVVnBlHBiX60nFl6tA/lHe7FItydFu3rRgv2dqV5uzrT7O0dada2DizCbWnaxjY0d UMbmrK+FeWsYyFe04Imrm5OE1Y2o/Erm1L2ikwas6wxyyaDWyZraSM+oBsKo/IasCRr8LPFyNz6gmrhUp9/p/4fQGQBKriYmAa5xc/4n bnvaBHdhkp0CxpRNp88xq9kVjehyRua0tTNzVXvwx0taPaelrTiVH96+KW9zu3t8Xg8nsoFqr6my4Oa6JZe1deWXfvnrFU1y1Z6mRJL7 1JLetcp6Z2Ba5WWXsn0/nK/c7t4PMXlipFf8Ie/fUrP/eYYC/BoOvnWODr99mQ6+85UOvcuS/B7s+ne9xfQpXfnS1X4zOuzWYKn0/EXp 9HR56fQoZ9Ppv0/nUh7nhpHOx8fKxK85aFRtMmI8PkhtPrsIFp5egCtOAkR7k35R3qzDPekRfu7KRne04Xm7OgozN7egWZsacu0o+mbW Yo3sRBvUEIMGZ60prncTlzdTJiwqimLaCYf2JmUXdCYJbkJ/6zAz9krGrOwMsv5hCQC2ygA/w/widj8bCq5ENxxK5vQ+FVNaMLqTJq4N pNPHE0DILxYx1w+Oe9pRfMOtKJV5wbQI6946fV4PJ4rBUQexhRm0Li1eqKbtaKbVH1ZfCNVX8jvKVXpheyaldtyLzSmvItNWJjrOaW2K EomvWqJ/KIqvZPXN/XS66kQrij5Nfzxb5/R8x8fp4OvDmUJzqbT70xiAZ7GAjyTLr4/i+79YB6L8Hy6wBJ89s05dOa1WXTqlRl0/KWpd OjZyXTgmYm07ycTWISzWYTH0PZHs2jzAyNo84MjaMO9w2jdhSG05vwgKjzdn1acQlW4Ly07DhnuRbmHerAMd6WF+7rS/N2daf6ezjRnJ wvxzg4sxO1p5tZ2LMKtWYjbyO3Uja0EiPGUDS0pZ30LmrS2OU1eF4L/n7SGJXlNUxZlluRVmSzLDMusCC1+bzF5XTN+TFN+rmY0ZWNzP lm0YMltQdO2tKAZ21rRjO2tWHZb0exdrWgOhHd/a1pwuA2fRFrzScR/XeTxeDxXGnsvLVET3dbHq74svgfsDg9KftHTV2V8VZVX5JfFN /diY6kIu8Q2FcmkN3Wmt4pMzk6UXnxTaccbvPR6KpYrUn4NIsGfnKD9vxxIx9/MotPvTqSz702h8+9Pp4sfsAR/yBL84Xwlwu/OpXNvz qbTr82kk69Mp2MvTqEjz0+m/c9MoP0/HU+7nxpLu54YQzsez6Jtj4yiTQ8MZxEeKqy7OJhWnxtIKyHD90CG+7AM96L8oz1pyaHuTDdad ABC3IXm7+1E8/Z0pLm7Oghzdran2Tva06zt7Zi2NHNbG5q+pTXN2MqCvKUVSzKDW2bqxpY0dVNLFloW2c0tWWb1v21loQXbWtPM7Zodr WnWjjY0eyezSzFvX1uav78tLTjQlhYeakeLjrajxceYE23p8df8ScTj8XiuVCIT3VD13ZlY9Z2Nqq9pb4asr6PqO4/Ft0fOnU7BdeGUX hZeL72eK5krWn4Nf0Qc4uOjdPad6XTi7TF05r2JdO59SPBUuvD+DEuE59Gl9+exCM+hs2/OYhGeIQtpHH9pCh19YTId/PkEYd9Px9GeH 7MMP5lF2x9DPGIEM5w23j+U1t/LInx+AK08AxHuS4Wn+1LBKZbhk71o6fGelHdUyfCSQ11pMTjYhRbs68RS3FGYt4eleHcH/rkDzUvGn vZ8n3b8c3uav0+xYH8HxYEOtJBZcKAjLTzYgRYd7kiLDnWgxUc6UO7xjpR3kjnVgfJPd6AN/HqfeGM/ffmXT5zbzePxeDyVH4k8YKIbe vuivZmp+u6tJ+3NgqqvjjyEVV+W31jVt//cKk7JjROX3oRliIspvVnI9BaE0jt1s5dez+XjqpBfAzLBb/z2IXr4w+V09M0RdPrd8SLCZ 9+fLDJ84QNVEb704RwtwugYMZvOvT1LWqihl/DJV6ayDOfQkRcm0aHnWISfyWYZzqZdT2WxDI+m7Y+PpK2PjKDNDw2j9fcNFtZdGkhrL g6gVef60sqzEOI+LMa9qeCeXrT8FOhJS0/0oGXM0hPdKf94d8o92pVvuwl5x7rJ/+M27xhuu9KSI53Vz8dxP9CF8k/i/7tQ3gn+t+MM3 y69pzMtO9OZlp/tTAXnmQsdacsjQ+mljx5wbiOPx+PxXFkg8pC9OoMmbER7s7pB1Xe67vAQiK9d9TUT3Vh8F59vLPKbjviWRnpVq0239 GJ+ii29s3Z56fVcPq4q+bX54799Rs9/eowe/ggiPIxOvz+ezn4wkc59kEPnP5hKFz6czhI8W4vwHLr0wRy6+N5sOv/OLDr71kwW4Wl08 pcswi9PlgU3jrwwkWV4PB34+Tja+9OxtPvpLNr51Cja8QTL8KPDafPDQ5khtPHBwbTh/kEsxQNp3X0DaO2l/sIacLEfrb7Ql1YxK8/3o VXMyvO9g9uAc72o8GxPKsTtecA/n+9BBee6U8HZblR4gbnYjVZeYu7tSivv60rbHxtJT719wLktPB6Px3PlMmZlONEtsepbP5L1RXszV 9V3zOr/3969PUV93nEc/2+aaaZp0gVS06RN25vOaNskipwRkNMuCKhBUJROp2lrBBWQ8/kggkplsKliDFrAA0bEA8pBgaqdpjOJbdOb3 vTm2+d5frvsAruADe6u7PviNTgON9y95zPP73le8xq7Ll6jV3ne6NVXc5rjDUQvgti6jV9POoRHv+iW83O/lq6HySqE0+XMXJb0zuU4q Rie3WWWYfNz5kPpm1Eh/HC3nJneLT0TO+XUgzw5OZ4jXXdVCI/apV1pvZEuLSPp0nQtVQXxdhXEyVI7mCQ1l7dJ9aVEqR5IkCql8rN4O aZdjJOKT2ON8v4YFcsxUtYfLWUXnPqj5PC5SGWLstkoPfeB8r6Unn/PKDn/Sym98Asp6f+51F5OlqHpNrn9hJUXANajwbFe63qzozbJO uax+uoP3VZafXX89m5Y9maHBdGrYtdn9Nqd0etYGL2uZ4gXR2/GQY/orf7RwmeIiV4EWEjEr6evdQj/vUs+e/o76ZxOlFMzqdIza5c/z GYZehk+M6PlWB7lGfpKtZ6pXDk9matCOEdO3s+W7vEsFcMO6bxtl46xTGm7mS6tn6dJ80iq0XR9uzReS5HGq8nScDVJ6oaVoW1SO5QoN YMJUj0YJ1V/jpXKyyqEB6Kk4tJW9TPSaYuUX1IGNisfqH+/J0cGNkn9cLIMz7TJ3Fe3vP59AID1o7GvWNJLbGIvt0l2tbX65rlW3zbrI zfP1Xf+ejPn6qsXYm/R+7NF0eu6vWFto/eHS6L32b/5BgWBF3Lx60kvwhNf9svQX4/Jp09+Ix2TsSqIE+TUozSzDvfM2M2Z4dOP7KJvk uh5mCWnpx1yasouJyfs0vUgU06MZ0jn3XTpuJsm7WOpRpvSOpoiLaPJ0nwzSZpubFMSpeG6MpKgfsYbddfipOZqjBItNVeipfpKlLJVq q5skcrhzUbzyHa5Otcuf3k25vVvAACsXwVVGyXzyDKrryt8Fz9qoeJ3j/r/VUWvtzO9S6LXeobYM3r1I0srRq9+kY3oRZAJ6fhd7F//+ ZsJ4smvLsrg0woVxL+VrulkOT4ZL51TierfKdL9MFW6p9OkeypVuia3S+cDLUWO31fGU6TjXrLRdidJ2SYtY4lG860Eo+lWvDSNxknja Kw03IyRuhuRUqu03UqVM+NFcv1xh1x73C6P/0HsAkAo00cezOpbZjMfuuWap4zdq6/ruEOBCl9vq69+uthX9JrwXYPo1Q8s+Yzee0Qvg hPxuwo6iJ9+PSYTX16QqWcX5fKTMvlkZr+cmy2WPyndE5lKhvRM5UjbeJw034uS05M50v3AISfG0+Xs9H754/QBGZgrk4HZMnMt28hTr UMe/5PIBQAs1dB3QDJKbeKosMmOxauvfs1tmdU3cs8raxK90XvcH7KtGL2tRC9eDsQvAABByBx50B+6Vdqsp4wXr77z4Wutvq5HLUz4f qPo/Y47evcTvVh/iF8AAIKMftjCrL7lNtmhP3RbsvpGLPjIzbre7PuScvC1VUevdW2Zit4sK3ojVxu9Nc7bG4hevKSIXwAAgszHHWlLV 9/mhauvOergDF+9+uqbINYiepN+tUL0thC9eLkRvwAABJn0QzZxlOnVN0zyGsKcq2/4/Oqrjzvo6NXHHA6c2aDi2Lb8i2y+otc8Q/w9n 9GbQ/RiHSJ+AQAIIkN3eiXjsL7eLExy6lT8ejnr67rZQd/qoEPYRG/6ctH7ihW9uStHr73kB/PRm6+it5DoxTpD/AIAEEQKqjeKozxsV atvwYk35f3cb3mJXsVb9Jory1YRvQ3vEr1Yt4hfAACChL7bVz9qkV0ZJrm1VvguOevrsfpG7/32c0avzXf0VuvotZbeIqIX6xjxCwBAk Gg8WyyOsjDZUWOtvjp8PW948Fx9o/e+usrofUPi9y1deh1EL0IU8QsAQJDIdJ31da2+Ps76xujw9RG9W3f5jt6MJdFrHW8o6vwJ0YuQQ fwCABAEhm73iv2o66xvuOxqDpfdKn4Xr74x+15dOXqLvERvKdELaMQvAABB4FBnmmRV6NXXFb5KW7jkd7hX37SS131Gb+xzRm/TpVyiF yGJ+AUAIMDuz46IXZ/1rbJWXxO+reHyocfq66h44/+P3npn9Hb8lOhFyCN+AQAIsMa+YnO9mVl9m5zh67H65taFLYre75ro9by9IdVH9 OpniIvaiV7AhfgFACDACms3WatvvbX66vC1Vt9w87zxfPTmLxO9nh+yEb2AT8QvAAABpD90M2d9a8JlZ5M7fPXqq194i3RFb+Hqo3cf0 Qv4RPwCABBA+kO37GPu1Vff7qDDV9/xa0Xv616jN+uwit5yohd4XsQvAAABoj90M2d9natvfluEFHRGmFseUj5a+CIb0QusDeIXAIAAM atvZZjk1Vkfue05HiH57W9K6u+JXuBFIX4BAAgAvfpmHrWZ1Vff8JDfEWFudkj/ONx39Db8mOgFviHiFwCAAGj+pNh91te5+mYcCrei9 6A7encSvcCaIn4BAAiAjNKFq6/9sPfoLSR6gTVF/AIA4GcNfQcky2P1zTq6QRxEL+AXxC8AAH5mP+JefbPLN7ijt/7d+ehtHCB6gReB+ AUAwI+G7/TOr745lW+5o7eF6AX8gfgFAMCP9tZvMqtvXvXbC6K39GwU0Qv4AfELAICfuJ4y3l33zoLoffTFTa+/D2DtEb8AAPhJYc1Gy W96h+gFAoj4BQDAD/Tqm9/8tpT26egd9fo7AF484hcAAD84eeUjohcIAsQvAAAAQgbxCwAAgJBB/AIAACBE/Ff+B28NkqAS3JI3AAAAA ElFTkSuQmCC" transform="translate(.375 -.375)"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/vpc/GatewayAppliance.svg b/src/main/webapp/img/lib/ibm/vpc/GatewayAppliance.svg index 63a629f0a4b7e17fee4de77fabf699b35f864cbc..1300635ec2a272c8557ecfc4e262427a1e711a9e 100644 --- a/src/main/webapp/img/lib/ibm/vpc/GatewayAppliance.svg +++ b/src/main/webapp/img/lib/ibm/vpc/GatewayAppliance.svg @@ -1,168 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generated by Microsoft Visio, SVG Export GatewayAppliance.svg Page-1 --> - -<svg - xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="1.0416667in" - height="1.0416667in" - viewBox="0 0 74.999959 74.999923" - xml:space="preserve" - class="st2" - version="1.1" - id="svg7097" - sodipodi:docname="GatewayAppliance.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:none;fill-rule:evenodd;stroke-linecap:square;stroke-miterlimit:3"><metadata - id="metadata7103"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs7101"> - - - - - - - - - - - - - - <defs - id="defs7045"> - <path - id="mfid25" - d="m 600940,103110 c 137500,137470 137500,360370 0,497830 -137460,137500 -360360,137500 -497830,0 -137493,-137460 -137493,-360360 0,-497830 137470,-137493 360370,-137493 497830,0 z" - inkscape:connector-curvature="0" /> - </defs> - - - - - - - - - - - - - - - - <defs - id="defs7050"> - <path - inkscape:connector-curvature="0" - d="m 1.75,-2.76 -1.75,2 -1.75,-2" - id="mfid26" /> - </defs> - <defs - id="defs7053"> - <path - inkscape:connector-curvature="0" - d="M 0,0 1,229100" - id="mfid27" /> - </defs> - - - <defs - id="defs7069"> - <image - xlink:href="data:image/png;base64,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" - height="95" - width="81" - id="mfid29" /> - </defs> - - - - - <clipPath - id="mfid30"> - <rect - id="rect7077" - height="95" - width="81" - y="-0.5" - x="-0.5" /> - </clipPath> - - </defs><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview7099" - showgrid="false" - inkscape:zoom="2.4129932" - inkscape:cx="-35.69175" - inkscape:cy="23.519224" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="svg7097" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <v:documentProperties - v:langID="1033" - v:viewMarkup="false" /> - - <style - type="text/css" - id="style7036"> - <![CDATA[ - .st1 {fill:none;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75} - .st2 {fill:none;fill-rule:evenodd;font-size:12px;overflow:visible;stroke-linecap:square;stroke-miterlimit:3} - ]]> - </style> - - <marker - style="overflow:visible;fill:#8dc53f" - overflow="visible" - markerUnits="strokeWidth" - id="mfid28" - transform="matrix(6.5617e-4,0,0,6.5617e-4,255.35462,-217.03772)"> - <g - style="stroke-linecap:round;stroke-miterlimit:10" - id="g7061" - stroke-miterlimit="10" - transform="rotate(-45)"> - <use - height="100%" - width="100%" - y="0" - x="0" - style="fill:none;stroke:#8dc53f" - id="use7059" - xlink:href="#mfid26" /> - </g> - </marker> -<circle - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:#8dc53f;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99974912;stroke-linecap:square;stroke-miterlimit:3;stroke-dasharray:none" - r="37.499969" - cx="37.499969" - cy="37.499969" - id="circle1396" /><path - id="path7835" - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.49999869;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" - d="m 14.58675,63.47161 v -3.76098 h 6.018452 V 57.60386 H 14.58675 V 40.8077 h 22.101305 v 9.75863 l -4.053184,-4.21831 c -0.747993,-0.67613 -1.431928,-0.79471 -2.142864,-0.23969 -0.60212,0.52271 -0.460819,1.77038 0.05495,2.33968 l 7.634624,7.1111 7.471404,-7.1111 c 0.774579,-0.82334 0.75221,-1.69771 0.19426,-2.33968 -0.57063,-0.52583 -1.498311,-0.49674 -2.327125,0.23969 l -3.818692,4.21831 V 40.8077 h 21.587942 v 16.79616 h -6.346743 v 2.10677 h 6.346743 v 3.76098 h -9.642646 c 0,-1.00445 -0.595025,-1.56032 -1.359894,-1.56032 -0.736138,0 -1.359894,0.69206 -1.359894,1.56032 H 47.356852 V 59.71063 H 52.66654 V 57.60386 H 39.411174 v 2.10677 h 5.129734 v 3.76098 h -8.748642 c 0,-0.97831 -0.633242,-1.56032 -1.468808,-1.56032 -0.734914,0 -1.468808,0.72798 -1.468808,1.56032 h -1.503233 v -3.76098 h 5.491474 V 57.60386 H 23.262283 v 2.10677 h 5.393249 v 3.76098 h -8.910028 c 0,-1.05859 -0.499813,-1.56032 -1.284832,-1.56032 -0.820469,0 -1.284832,0.64858 -1.284832,1.56032 z M 27.213675,39.15385 c -3.042393,0 -5.836704,-2.69216 -7.51921,-5.20809 -1.633038,-2.34123 -2.022991,-6.88947 -0.666009,-11.66399 1.233968,-4.31469 4.614337,-6.10868 10.0644,-6.07617 -0.150704,-3.40976 2.041663,-7.3202497 5.229222,-9.1664297 3.082914,-1.94691 6.755015,-2.93916 11.939203,1.25432 3.023679,2.6612297 3.531873,5.0709797 4.182501,9.0432097 5.2446,2.02451 5.829162,8.39661 5.268074,12.90935 -0.681116,4.95415 -4.286141,8.85561 -8.822276,8.85561 z" - inkscape:connector-curvature="0" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="100.032" height="100.032" viewBox="0 0 75 75" fill="none" fill-rule="evenodd" overflow="visible" stroke-linecap="square" stroke-miterlimit="3" color-interpolation-filters="sRGB"><defs><path d="M1.75-2.76L0-.76l-1.75-2" id="A"/></defs><g fill="#8dc53f"><marker overflow="visible" markerUnits="strokeWidth"><use xlink:href="#A" fill="none" stroke="#8dc53f" stroke-miterlimit="10" transform="rotate(315)" stroke-linecap="round"/></marker><circle r="37.5" cx="37.5" cy="37.5" color-interpolation-filters="sRGB"/></g><path d="M14.587 63.472v-3.76h6.018v-2.107h-6.018V40.808h22.1v9.76l-4.053-4.218c-.748-.676-1.432-.795-2.143-.24-.602.523-.46 1.77.055 2.34l7.635 7.11 7.47-7.11c.775-.823.752-1.698.194-2.34-.57-.526-1.498-.497-2.327.24l-3.82 4.218v-9.76H61.29v16.796h-6.347v2.107h6.347v3.76h-9.643c0-1.004-.595-1.56-1.36-1.56-.736 0-1.36.692-1.36 1.56h-1.57v-3.76h5.3v-2.107H39.41v2.107h5.13v3.76h-8.75c0-.978-.633-1.56-1.47-1.56-.735 0-1.47.728-1.47 1.56H31.35v-3.76h5.49v-2.107h-13.58v2.107h5.393v3.76h-8.9c0-1.06-.5-1.56-1.285-1.56-.82 0-1.285.65-1.285 1.56zm12.627-24.318c-3.042 0-5.837-2.692-7.52-5.208-1.633-2.34-2.023-6.89-.666-11.664 1.234-4.315 4.614-6.11 10.064-6.076-.15-3.4 2.042-7.32 5.23-9.166 3.083-1.947 6.755-2.94 11.94 1.254 3.024 2.66 3.532 5.07 4.183 9.043 5.245 2.025 5.83 8.397 5.268 12.91-.68 4.954-4.286 8.856-8.822 8.856z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/vpc/IBMCloud.svg b/src/main/webapp/img/lib/ibm/vpc/IBMCloud.svg index 9a4fed1608bcc0389a5538b09a42538e79684bfb..3d6d5e92ed4028e1ee5d77d0318f801e86957ec1 100644 --- a/src/main/webapp/img/lib/ibm/vpc/IBMCloud.svg +++ b/src/main/webapp/img/lib/ibm/vpc/IBMCloud.svg @@ -1,72 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="100.69883mm" - height="75.012184mm" - viewBox="0 0 100.69883 75.012184" - version="1.1" - id="svg3112" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="IBMCloud.svg"> - <defs - id="defs3106" /> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.35" - inkscape:cx="-429.7398" - inkscape:cy="258.95564" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata3109"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-19.657119,-128.03304)"> - <path - style="opacity:1;fill:#3592fc;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 42.079495,203.04523 c -8.096744,0 -15.334672,-6.3392 -19.400924,-13.45729 -4.556291,-8.01858 -4.711632,-20.06946 4.812482,-29.91547 4.478531,-4.71904 12.679592,-8.19906 21.500753,-6.5363 1.335961,-8.69568 5.22256,-16.07637 15.405887,-21.92598 10.528168,-5.99838 22.295111,-2.88835 31.183035,4.20499 6.052312,5.08783 9.243322,12.11361 9.402162,19.18228 7.15797,2.6574 12.32345,8.28825 14.07961,15.21355 3.05791,11.04493 0.32533,18.82566 -4.34673,24.42671 -3.43816,4.46643 -9.92677,8.80751 -16.63095,8.80751 z" - id="path3668" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccccc" /> - <path - id="path3678" - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 75.547993,187.49283 v -23.31568 h 6.898067 l 6.567336,16.26443 6.000372,-16.26443 h 7.276042 v 23.31568 h -4.93732 v -18.43779 l -6.496466,18.43779 H 86.367557 L 79.91834,169.00775 v 18.48508 z m -15.038886,-13.5995 h 3.302052 c 1.650155,0 2.32321,-1.96999 2.32321,-3.2376 0,-1.13519 -0.917484,-2.56923 -2.398134,-2.56923 h -3.227128 z m 0,9.86939 h 4.286133 c 1.39725,0 2.39576,-1.51832 2.39576,-3.10782 0,-1.51646 -0.873704,-2.93169 -2.252628,-2.93169 h -4.429265 z m -4.944233,3.73011 v -23.31568 h 8.415703 c 3.399141,0 6.806928,1.65889 6.806928,6.14546 0,2.34785 -1.57156,4.59108 -3.507743,4.59108 3.287235,0.88081 4.91369,2.98762 4.91369,6.2366 0,3.62198 -3.634589,6.34254 -7.276041,6.34254 z m -9.624555,0 v -23.31568 h 5.081718 v 23.31568 z" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="380.595" height="283.51" viewBox="0 0 100.699 75.012"><path d="M22.422 75.012c-8.097 0-15.335-6.34-19.4-13.457-4.556-8.02-4.712-20.07 4.812-29.915 4.48-4.72 12.68-8.2 21.5-6.536C30.67 16.407 34.557 9.027 44.74 3.177 55.27-2.82 67.036.29 75.924 7.382c6.052 5.088 9.243 12.114 9.402 19.182 7.158 2.657 12.323 8.288 14.08 15.214 3.058 11.045.325 18.826-4.347 24.427-3.438 4.466-9.927 8.808-16.63 8.808z" fill="#3592fc"/><path d="M55.89 59.46V36.144h6.898l6.567 16.264 6-16.264h7.276V59.46h-4.937V41.022L71.2 59.46H66.71l-6.45-18.485V59.46zm-15.04-13.6h3.302c1.65 0 2.323-1.97 2.323-3.238 0-1.135-.917-2.57-2.398-2.57h-3.227zm0 9.87h4.286c1.397 0 2.396-1.518 2.396-3.108 0-1.516-.874-2.932-2.253-2.932h-4.43zm-4.944 3.73V36.144h8.416c3.4 0 6.807 1.66 6.807 6.145 0 2.348-1.572 4.59-3.508 4.59 3.287.88 4.914 2.988 4.914 6.237 0 3.622-3.635 6.343-7.276 6.343zm-9.625 0V36.144h5.082V59.46z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/vpc/Image.svg b/src/main/webapp/img/lib/ibm/vpc/Image.svg index 3a639744f514445238966becd81b12b7f3238b8b..9bda3fcf1a1d248a6f2b2e5151d6f311d7b1494d 100644 --- a/src/main/webapp/img/lib/ibm/vpc/Image.svg +++ b/src/main/webapp/img/lib/ibm/vpc/Image.svg @@ -1,208 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generated by Microsoft Visio, SVG Export Image.svg Page-1 --> - -<svg - xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="1.0416667in" - height="1.0416667in" - viewBox="0 0 74.999959 74.999989" - xml:space="preserve" - class="st2" - version="1.1" - id="svg8188" - sodipodi:docname="Image.svg" - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:none;fill-rule:evenodd;stroke-linecap:square;stroke-miterlimit:3" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata8194"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs8192"> - - - - - - - - - - - - - - <defs - id="defs8100"> - <path - id="mfid7" - d="m 639960,101770 c 146430,135680 146430,355690 0,491360 -146390,135720 -383760,135720 -530150,0 -146426,-135670 -146426,-355680 0,-491360 146390,-135707 383760,-135707 530150,0 z" - inkscape:connector-curvature="0" /> - </defs> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - <defs - id="defs8105"> - <image - xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEYAAABRCAYAAABv/dCnAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAJcSURBVHhe7Zk7aBRhFEZ9I4IIgiBBQaIR4wtEsLCwsrKyTGebMq2tta2tWFpY2Ag2go0giIKNjRAEFUVRxEdiTJzxXL1B1P1iHrvL/DPfgcPONsv9DqQIs84sQV3XG6uq2oNjDXOE2zbnmcOHAw7gbXzZMJ8T5hqO5qnDhQPG8SEHNA7u+oI3cCzPHR5NDhNw2wze4vFQnjwcmh4m4L5ZvIOH8+zBU0KYgBvn8B4ezdMHSylhAu78hg/weJ4/OEoKE3DrPD7GEzlhMJQWJuDeBXzC48mc0X9KDBNknKd4Kqf0l1LDBNz9HafxNF/X56T+UHKYgNuDZ3iGrxty1trhB4sOE0QZiH8hzuKmnLY2+MHiwwQ/01TVCzzH1y05b/XwQ60IswhbXvFxHrfmxNXRtjABe17jBI/bcubKaWOYgE1v8AJuz6kro61hAna9xUked+Tc5dPmMAHb3uEU7szJy6PtYQL2vceLuCtn/58uhEk+sPMSn7tz+tJ0KEwQcS7jSM7XdCxM/Fl9xCu4NxP0pmthAvZ+wqs87ssM/9LFMAGbP+N13J8p/qSrYQJ2xxuIm3gwc/ymy2GCjBMvHMczyS+6HiZg/1c+7vJ5JLM4zCI0iNcz9/GYw/wFHeINxCOH6QEtFhxG4DAChxE4jMBhBA4jcBiBwwgcRuAwAocROIzAYQQOI3AYgcMIHEbgMAKHETiMwGEEDiNwGIHDCBxG4DAChxE4jMBhBA4jcBiBwwgcRuAwAocROIzAYQQOI3AYgcMIHEbgMAKHETiMwGEEDiNwGIHDCBymJ3X9Axga0yvNNJJ7AAAAAElFTkSuQmCCAA==" - height="81" - width="70" - id="mfid8" /> - </defs> - - - <clipPath - id="mfid9"> - <rect - id="rect8111" - height="81" - width="70" - y="-0.5" - x="-0.5" /> - </clipPath> - - <defs - id="defs8117"> - <image - xlink:href="data:image/png;base64,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" - height="50" - width="59" - id="mfid10" /> - </defs> - - - <clipPath - id="mfid11"> - <rect - id="rect8123" - height="50" - width="59" - y="-0.5" - x="-0.5" /> - </clipPath> - - <defs - id="defs8129"> - <path - inkscape:connector-curvature="0" - d="M 0,0 57412,1" - id="mfid12" /> - </defs> - - - <defs - id="defs8138"> - <path - inkscape:connector-curvature="0" - d="M 0,0 57412,1" - id="mfid13" /> - </defs> - - - <defs - id="defs8147"> - <path - inkscape:connector-curvature="0" - d="M 0,0 57412,1" - id="mfid14" /> - </defs> - - - <defs - id="defs8156"> - <path - inkscape:connector-curvature="0" - d="M 0,0 57412,1" - id="mfid15" /> - </defs> - - - <defs - id="defs8165"> - <path - inkscape:connector-curvature="0" - d="M 0,0 H 153100 V 179420 H 278310" - id="mfid16" /> - </defs> - - - </defs><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview8190" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="2.5987215" - inkscape:cx="-0.3908398" - inkscape:cy="44.447922" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="svg8188" /> - <v:documentProperties - v:langID="1033" - v:viewMarkup="false" /> - - <style - type="text/css" - id="style8091"> - <![CDATA[ - .st1 {fill:none;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75} - .st2 {fill:none;fill-rule:evenodd;font-size:12px;overflow:visible;stroke-linecap:square;stroke-miterlimit:3} - ]]> - </style> - - -<circle - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:#8dc53f;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00062954;stroke-linecap:square;stroke-miterlimit:3;stroke-dasharray:none" - r="37.499985" - cx="37.499985" - cy="37.499985" - id="circle1396" /><path - id="path9073-7-1" - style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.41732228;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - d="m 40.745513,41.152006 h 8.324403 v -2.76429 h -8.324404 z m 10e-7,3.47 h 8.324402 v -2.76429 h -8.324403 z m -6.658168,-3.04839 a 1.9119971,1.9119971 0 0 1 -1.911998,1.912 1.9119971,1.9119971 0 0 1 -1.911996,-1.912 1.9119971,1.9119971 0 0 1 1.911996,-1.91199 1.9119971,1.9119971 0 0 1 1.911998,1.91199 z m -10.407759,4.49138 v -9.09101 h 27.796108 v 9.09101 z m 17.065926,5.02576 h 8.324403 v -2.76429 h -8.324404 z m 0,3.47 h 8.324402 v -2.76429 h -8.324402 z m -6.658168,-3.04839 a 1.9119971,1.9119971 0 0 1 -1.911997,1.912 1.9119971,1.9119971 0 0 1 -1.911996,-1.912 1.9119971,1.9119971 0 0 1 1.911996,-1.91199 1.9119971,1.9119971 0 0 1 1.911997,1.91199 z m -10.407758,4.49138 v -9.09101 h 27.796109 v 9.09101 z m 28.01718,2.36519 2.170793,-1.81218 v -20.64699 c 0,-0.42744 -0.38664,-0.81422 -0.800035,-0.81422 H 21.542264 v 21.75101 l 1.916516,1.52238 z m 3.527465,-28.70361 H 41.653354 v -13.14997 z m -36.702163,30.3626 v -45.05588 h 20.567613 v 17.4895 h 17.388219 v 27.56638 z" - inkscape:connector-curvature="0" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="100.032" height="100.032" viewBox="0 0 75 75" fill="none" fill-rule="evenodd" overflow="visible" stroke-linecap="square" stroke-miterlimit="3" color-interpolation-filters="sRGB"><circle r="37.5" cx="37.5" cy="37.5" color-interpolation-filters="sRGB" fill="#8dc53f"/><path d="M40.746 41.152h8.324v-2.764h-8.324zm0 3.47h8.324v-2.764h-8.324zm-6.658-3.048a1.912 1.912 0 1 1-3.824 0 1.912 1.912 0 0 1 3.824 0zm-10.408 4.49v-9.09h27.796v9.09zm17.066 5.026h8.324v-2.764h-8.324zm0 3.47h8.324v-2.764h-8.324zm-6.658-3.048a1.912 1.912 0 1 1-3.824 0 1.912 1.912 0 0 1 3.824 0zm-10.408 4.49v-9.09h27.796v9.09zm28.017 2.365l2.17-1.812V35.9c0-.427-.387-.814-.8-.814H21.542v21.75l1.917 1.522zm3.527-28.704h-13.57v-13.15zM18.522 60.028V14.972H39.1v17.5h17.388v27.566z" fill="#fff" paint-order="normal"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/vpc/ImageService.svg b/src/main/webapp/img/lib/ibm/vpc/ImageService.svg index 8dc5d7a36131edf5a61e2655f850f81e89c752d2..3a3701c6000264969ab3ccbaff28ac59d53641d9 100644 --- a/src/main/webapp/img/lib/ibm/vpc/ImageService.svg +++ b/src/main/webapp/img/lib/ibm/vpc/ImageService.svg @@ -1,124 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generated by Microsoft Visio, SVG Export VPN.svg Page-1 --> - -<svg - xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="1.0416666in" - height="1.0416666in" - viewBox="0 0 74.99995 75.000085" - xml:space="preserve" - class="st2" - version="1.1" - id="svg2361" - sodipodi:docname="ImageService.svg" - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:none;fill-rule:evenodd;stroke-linecap:square;stroke-miterlimit:3" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata2367"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs2365"> - - - - - - - - - - - - - - <defs - id="defs2330"> - <path - id="mfid13" - d="m 641260,101550 c 146720,135380 146720,354900 0,490280 -146680,135420 -384540,135420 -531230,0 -146720,-135380 -146720,-354900 0,-490280 146690,-135412 384550,-135412 531230,0 z" - inkscape:connector-curvature="0" /> - </defs> - - - - - - - - - - - <defs - id="defs2335"> - <image - xlink:href="data:image/png;base64,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" - height="336" - width="336" - id="mfid14" /> - </defs> - - - <clipPath - id="mfid15"> - <rect - id="rect2341" - height="336" - width="336" - y="-0.5" - x="-0.5" /> - </clipPath> - - </defs><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview2363" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="5.2204442" - inkscape:cx="25.292058" - inkscape:cy="54.033094" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="svg2361" /> - <v:documentProperties - v:langID="1033" - v:viewMarkup="false" /> - - <style - type="text/css" - id="style2321"> - <![CDATA[ - .st1 {fill:none;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75} - .st2 {fill:none;fill-rule:evenodd;font-size:12px;overflow:visible;stroke-linecap:square;stroke-miterlimit:3} - ]]> - </style> - - <circle - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:#90c34b;fill-opacity:0.97487438;fill-rule:evenodd;stroke:none;stroke-width:1.00000191;stroke-linecap:square;stroke-miterlimit:3;opacity:1" - r="37.500046" - cx="37.500011" - cy="37.500046" - id="circle826" /> -<path - id="path1225-8" - style="font-size:12px;overflow:visible;opacity:1;color-interpolation-filters:sRGB;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.25000262;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:17.00787544;stroke-opacity:1;paint-order:normal" - d="m 27.43182,41.262517 a 2.0317454,2.0317454 0 0 1 -2.031745,2.031746 2.0317454,2.0317454 0 0 1 -2.031746,-2.031746 2.0317454,2.0317454 0 0 1 2.031746,-2.031746 2.0317454,2.0317454 0 0 1 2.031745,2.031746 z m 12.484806,0.41201 v 1.125 h 10.248047 v -1.125 z m 0,-2.970703 v 1.125 h 10.248047 v -1.125 z M 20.492799,35.479216 18.69983,38.18234 v 6.107421 l 2.335937,2.564455 h 0.414063 31.431639 l 2.328126,-1.929688 v -6.695312 l -3.09961,-2.75 z m 1.005859,1.874999 h 29.898437 l 1.9375,1.718751 v 4.970703 l -1.128907,0.935546 H 21.863892 L 20.57483,43.563199 v -4.814452 z m 5.933161,17.077525 a 2.0317454,2.0317454 0 0 1 -2.031745,2.031745 2.0317454,2.0317454 0 0 1 -2.031746,-2.031745 2.0317454,2.0317454 0 0 1 2.031746,-2.031746 2.0317454,2.0317454 0 0 1 2.031745,2.031746 z m 12.484807,0.41201 v 1.125 h 10.248047 v -1.125 z m 0,-2.970703 v 1.125 h 10.248047 v -1.125 z m -19.423828,-3.224609 -1.792969,2.703124 v 6.107422 l 2.335937,2.564454 h 0.414063 31.431641 l 2.328125,-1.929688 v -6.695312 l -3.09961,-2.75 z m 1.005859,1.875 h 29.898438 l 1.9375,1.71875 v 4.970703 l -1.128907,0.935547 H 21.863891 L 20.574829,56.732422 V 51.917969 Z M 14.839844,10.730469 v 53.552734 h 1.125 44.603515 V 31.289062 L 40.259766,10.730469 Z m 2.25,2.25 h 21.574218 v 19.896484 h 19.654297 v 29.15625 H 17.089844 Z m 23.824218,1.615234 15.837891,16.03125 H 40.914062 Z" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="100.032" height="100.032" viewBox="0 0 75 75" fill="none" fill-rule="evenodd" overflow="visible" stroke-linecap="square" stroke-miterlimit="3" color-interpolation-filters="sRGB"><style><![CDATA[.B{color-interpolation-filters:sRGB}]]></style><circle r="37.5" cx="37.5" cy="37.5" fill="#90c34b" fill-opacity=".975" class="B"/><path d="M27.432 41.263a2.032 2.032 0 1 1-4.063 0 2.032 2.032 0 1 1 4.063 0zm12.485.412V42.8h10.248v-1.125zm0-2.97v1.125h10.248v-1.125zM20.493 35.48L18.7 38.182V44.3l2.336 2.564H52.88l2.328-1.93V38.23l-3.1-2.75zm1.006 1.875h29.898l1.938 1.72v4.97l-1.13.936H21.864l-1.29-1.416V38.75zm5.933 17.078a2.032 2.032 0 1 1-4.063 0 2.032 2.032 0 1 1 4.063 0zm12.485.412v1.125h10.248v-1.125zm0-2.97v1.125h10.248v-1.125zm-19.424-3.225L18.7 51.352v6.107l2.336 2.564H52.88l2.328-1.93v-6.695l-3.1-2.75zm1.006 1.875h29.898l1.938 1.72v4.97l-1.13.936H21.864l-1.29-1.416v-4.814zM14.84 10.73v53.553h45.73V31.29L40.26 10.73zm2.25 2.25h21.574v19.896h19.654v29.156H17.1zm23.824 1.615l15.838 16.03H40.914z" fill="#fff" paint-order="normal" class="B"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/vpc/Instance.svg b/src/main/webapp/img/lib/ibm/vpc/Instance.svg index 4c15ccce2f3d7e76fe585b19950f031325a41e27..5b9aa7b3973d41a2f85a48ccd13ebbf4dacd8b68 100644 --- a/src/main/webapp/img/lib/ibm/vpc/Instance.svg +++ b/src/main/webapp/img/lib/ibm/vpc/Instance.svg @@ -1,125 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generated by Microsoft Visio, SVG Export Instance.svg Page-1 --> - -<svg - xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="1.0416667in" - height="1.0416667in" - viewBox="0 0 74.999959 74.999923" - xml:space="preserve" - class="st2" - version="1.1" - id="svg9304" - sodipodi:docname="Instance.svg" - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:none;fill-rule:evenodd;stroke-linecap:square;stroke-miterlimit:3" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata9310"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs9308"> - - - - - - - - - - - - - - <defs - id="defs9273"> - <path - id="mfid4" - d="m 600940,103110 c 137500,137470 137500,360370 0,497830 -137460,137500 -360360,137500 -497830,0 -137493,-137460 -137493,-360360 0,-497830 137470,-137493 360370,-137493 497830,0 z" - inkscape:connector-curvature="0" /> - </defs> - - - - - - - - - - - <defs - id="defs9278"> - <image - xlink:href="data:image/png;base64,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" - height="87" - width="81" - id="mfid5" /> - </defs> - - - <clipPath - id="mfid6"> - <rect - id="rect9284" - height="87" - width="81" - y="-0.5" - x="-0.5" /> - </clipPath> - - </defs><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview9306" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="3.4124877" - inkscape:cx="59.640135" - inkscape:cy="68.211315" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="svg9304" /> - <v:documentProperties - v:langID="1033" - v:viewMarkup="false" /> - - <style - type="text/css" - id="style9264"> - <![CDATA[ - .st1 {fill:none;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75} - .st2 {fill:none;fill-rule:evenodd;font-size:12px;overflow:visible;stroke-linecap:square;stroke-miterlimit:3} - ]]> - </style> - - -<circle - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:#8dc53f;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999988;stroke-linecap:square;stroke-miterlimit:3" - r="37.499969" - cx="37.499969" - cy="37.499969" - id="circle1396" /><path - id="path9965" - style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.83464313;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - d="m 31.3331,53.369412 a 3.8075087,3.8075087 0 0 1 -3.807509,3.80751 3.8075087,3.8075087 0 0 1 -3.807508,-3.80751 3.8075087,3.8075087 0 0 1 3.807508,-3.8075 3.8075087,3.8075087 0 0 1 3.807509,3.8075 z m -7.353622,-11.12507 c -4.151374,0 -6.911703,-2.77575 -8.78058,-5.6724 -2.345708,-3.67091 -3.163785,-9.18683 0.388522,-14.21988 3.050832,-4.68683 6.365552,-6.38745 11.927602,-5.86667 0.185985,-4.38206 3.092455,-9.4485804 8.625173,-11.1117104 5.013749,-1.49153 10.487651,-0.90292 14.686104,3.45784 3.624192,3.9752004 3.61798,6.1704304 3.962917,9.4799204 5.222425,2.7375 7.181119,5.60852 6.876827,11.38367 -0.389504,7.55036 -4.357897,12.51038 -10.762039,12.51038 l -11.111709,0.0777 -0.0777,-11.73334 5.206186,5.63355 2.991614,-3.06931 -9.518772,-10.72319 -10.334666,10.76204 3.185875,2.91391 4.623403,-5.24504 -0.0777,11.50023 z m -10.636056,1.51249 H 61.82145 v 18.14671 H 13.343422 Z" - inkscape:connector-curvature="0" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="100.032" height="100.032" viewBox="0 0 75 75" fill="none" fill-rule="evenodd" overflow="visible" stroke-linecap="square" stroke-miterlimit="3" color-interpolation-filters="sRGB"><circle r="37.5" cx="37.5" cy="37.5" color-interpolation-filters="sRGB" fill="#8dc53f"/><path d="M31.333 53.37a3.808 3.808 0 1 1-7.615 0 3.808 3.808 0 0 1 7.615 0zM23.98 42.244c-4.15 0-6.912-2.776-8.78-5.672-2.346-3.67-3.164-9.187.39-14.22 3.05-4.687 6.366-6.387 11.928-5.867.186-4.382 3.092-9.45 8.625-11.112 5.014-1.492 10.488-.903 14.686 3.458 3.624 3.975 3.618 6.17 3.963 9.48 5.222 2.738 7.18 5.61 6.877 11.384-.4 7.55-4.358 12.5-10.762 12.5l-11.112.078-.078-11.733 5.206 5.634 2.992-3.07-9.52-10.723L28.06 33.153l3.186 2.914 4.623-5.245-.078 11.5zm-10.636 1.512H61.82v18.147H13.343z" fill="#fff" paint-order="normal"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/vpc/Internet.svg b/src/main/webapp/img/lib/ibm/vpc/Internet.svg index 5c3efc50ebd662de9080c4d4ea67bddbd941f17c..8ae421032fc8486eb74ff7f73339f592c415143d 100644 --- a/src/main/webapp/img/lib/ibm/vpc/Internet.svg +++ b/src/main/webapp/img/lib/ibm/vpc/Internet.svg @@ -1,181 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generated by Microsoft Visio, SVG Export Internet.svg Page-1 --> - -<svg - xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="0.97181708in" - height="0.95826513in" - viewBox="0 0 69.9708 68.995087" - xml:space="preserve" - class="st2" - version="1.1" - id="svg10097" - sodipodi:docname="Internet.svg" - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:none;fill-rule:evenodd;stroke-linecap:square;stroke-miterlimit:3" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata10103"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs10101"> - - - - - - - - - - - - - - <clipPath - id="mfid4"> - <rect - width="368.10001" - height="374" - id="mfid5" - x="0" - y="0" /> - </clipPath> - - - <defs - id="defs10075"> - <image - xlink:href="data:image/png;base64,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" - height="60" - width="59" - id="mfid6" /> - </defs> - - - - - - <clipPath - id="mfid7"> - <rect - id="rect10077" - height="60" - width="59" - y="-0.5" - x="-0.5" /> - </clipPath> - - </defs><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview10099" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="1.5942498" - inkscape:cx="78.305328" - inkscape:cy="17.036951" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="svg10097" /> - <v:documentProperties - v:langID="1033" - v:viewMarkup="false" /> - - <style - type="text/css" - id="style10064"> - <![CDATA[ - .st1 {fill:none;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75} - .st2 {fill:none;fill-rule:evenodd;font-size:12px;overflow:visible;stroke-linecap:square;stroke-miterlimit:3} - ]]> - </style> - - -<path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#00459d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.20894645;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 37.56522,61.331621 v 4.43807 c 0.745786,-0.22172 1.400986,-0.63197 1.985396,-1.22225 0.58441,-0.59028 1.09803,-1.36061 1.5569,-2.29964 0.14222,-0.29104 0.27673,-0.59753 0.40198,-0.91618 z" - id="path11065" - inkscape:connector-curvature="0" /><path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#00459d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.20894645;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 30.9071,61.331621 h 3.94427 v 4.43807 c -0.74579,-0.22172 -1.40303,-0.63197 -1.98744,-1.22225 -0.58441,-0.59028 -1.09599,-1.36061 -1.55486,-2.29964 -0.14222,-0.29104 -0.27673,-0.59753 -0.40197,-0.91618 z" - id="path11063" - inkscape:connector-curvature="0" /><path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#00459d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.20894645;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 37.56522,54.061341 v 4.55438 h 4.735986 c 0.30582,-1.43075 0.48557,-2.97684 0.52237,-4.55438 z" - id="path11061" - inkscape:connector-curvature="0" /><path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#00459d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.20894645;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 29.59302,54.061341 h 5.25835 v 4.55438 h -4.73598 c -0.30583,-1.43075 -0.48557,-2.97684 -0.52237,-4.55438 z" - id="path11059" - inkscape:connector-curvature="0" /><path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#00459d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.20894645;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 37.56522,46.791081 v 4.55438 h 5.182856 c -0.12197,-1.58258 -0.37549,-3.13512 -0.75499,-4.55438 z" - id="path11057" - inkscape:connector-curvature="0" /><path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#00459d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.20894645;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 30.4235,46.791081 h 4.42787 v 4.55438 h -5.18285 c 0.12197,-1.58258 0.37548,-3.13512 0.75498,-4.55438 z" - id="path11055" - inkscape:connector-curvature="0" /><path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#00459d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.20894645;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 37.56522,40.112531 v 3.96468 h 3.464756 c -0.0624,-0.13735 -0.12028,-0.2824 -0.18568,-0.41422 -0.45481,-0.91698 -0.95419,-1.67617 -1.49977,-2.27106 -0.54557,-0.5949 -1.13733,-1.02549 -1.779306,-1.2794 z" - id="path11053" - inkscape:connector-curvature="0" /><path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#00459d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.20894645;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 34.85137,40.112531 v 3.96468 h -3.46476 c 0.0624,-0.13732 0.12029,-0.28244 0.18569,-0.41422 0.4548,-0.91698 0.95419,-1.67617 1.49976,-2.27106 0.54557,-0.5949 1.13734,-1.02549 1.77931,-1.2794 z" - id="path11051" - inkscape:connector-curvature="0" /><path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#00459d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.20894645;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 37.56522,61.331621 h 3.944276 c -0.12525,0.31865 -0.25976,0.62514 -0.40198,0.91618 -0.45887,0.93903 -0.97249,1.70936 -1.5569,2.29964 -0.58441,0.59028 -1.23961,1.00053 -1.985396,1.22225 z" - id="path11049" - inkscape:connector-curvature="0" /><path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#00459d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.20894645;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 30.9071,61.331621 c 0.12524,0.31865 0.25975,0.62514 0.40197,0.91618 0.45887,0.93903 0.97045,1.70936 1.55486,2.29964 0.58441,0.59028 1.24165,1.00053 1.98744,1.22225 v -4.43807 z" - id="path11047" - inkscape:connector-curvature="0" /><path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#00459d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.20894645;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 37.56522,54.061341 h 5.258356 c -0.0368,1.57754 -0.21655,3.12363 -0.52237,4.55438 H 37.56522 Z" - id="path11045" - inkscape:connector-curvature="0" /><path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#00459d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.20894645;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 29.59302,54.061341 c 0.0368,1.57754 0.21654,3.12363 0.52237,4.55438 h 4.73598 v -4.55438 z" - id="path11043" - inkscape:connector-curvature="0" /><path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#00459d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.20894645;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 37.56522,46.791081 h 4.427866 c 0.3795,1.41926 0.63301,2.9718 0.75499,4.55438 H 37.56522 Z" - id="path11041" - inkscape:connector-curvature="0" /><path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#00459d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.20894645;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 30.4235,46.791081 c -0.3795,1.41926 -0.63301,2.9718 -0.75498,4.55438 h 5.18285 v -4.55438 z" - id="path11039" - inkscape:connector-curvature="0" /><path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#00459d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.20894645;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 37.56522,40.112531 c 0.641976,0.25391 1.233736,0.6845 1.779306,1.2794 0.54558,0.59489 1.04496,1.35408 1.49977,2.27106 0.0654,0.13178 0.12328,0.2769 0.18568,0.41422 H 37.56522 Z" - id="path11037" - inkscape:connector-curvature="0" /><path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#00459d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.20894645;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 34.85137,40.112531 c -0.64197,0.25391 -1.23374,0.6845 -1.77931,1.2794 -0.54557,0.59489 -1.04496,1.35408 -1.49976,2.27106 -0.0654,0.13182 -0.12329,0.27687 -0.18569,0.41422 h 3.46476 z" - id="path11001" - inkscape:connector-curvature="0" /><path - id="path11470" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#00459d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.20894645;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 35.314821,3.9958209 c 2.759844,0.0885 5.545923,0.98216 7.939557,2.87505 l 0.01633,0.01 0.01633,0.0142 c 4.554072,3.4420301 7.314364,5.8828001 7.447791,14.2120401 l 0.02856,1.81195 1.807877,0.13666 c 6.106693,0.45482 10.426753,3.17155 13.026503,11.40431 0.68797,2.37999 0.42087,5.48139 -0.56317,8.315 -0.98098,2.82478 -2.67964,5.34095 -4.33401,6.62753 -4.77143,3.26925 -6.0893,3.4967 -8.555787,3.49332 -0.01903,-8.84059 -7.217793,-16.02806 -16.062758,-16.02806 -7.766658,0 -14.262787,5.543 -15.744443,12.87959 l -4.43807,-0.0816 h -0.01633 c -2.684001,0 -5.624241,-1.8633 -7.921194,-4.64417 -2.284049,-2.76528 -3.802229,-6.35523 -3.981002,-8.87211 0.01561,-4.82845 1.21629,-7.90405 2.864852,-10.11267 1.652332,-2.21368 3.83141,-3.60709 6.005169,-4.74415 2.992872,-1.47236 9.05874,-1.50549 11.851182,0.0734 4.027379,2.53299 5.854271,4.86742 7.706944,8.01913 l 3.421904,-2.00988 c -2.024852,-3.44464 -4.485849,-6.53671 -9.05978,-9.4026 l -0.03265,-0.0224 -0.03468,-0.0184 c -2.109014,-1.20785 -4.6599,-1.76047 -7.231507,-1.84461 1.184651,-3.97523 3.642958,-6.5876001 6.213301,-8.8618501 2.574154,-2.12874 6.080716,-3.34391 9.629085,-3.23011 z m 0.214252,-3.98305002 c -0.504476,-0.0187 -1.00822,-0.017 -1.509964,0.006 -4.017032,0.185 -7.897762,1.68556002 -10.88399,4.16261002 l -0.02449,0.0224 -0.02244,0.0184 c -2.965479,2.62142 -6.479212,6.3772601 -7.759994,12.1756201 -1.512996,0.28606 -2.966897,0.70529 -4.248307,1.33857 l -0.02041,0.008 -0.01837,0.01 c -2.39583,1.2506 -5.193899,2.98306 -7.376382,5.907 C 1.482242,26.585301 0,30.662431 0,36.228761 v 0.0653 l 0.004,0.0653 c 0.244081,3.73956 2.117637,7.82697 4.897181,11.1921 2.779548,3.36513 6.585424,6.08271 10.981933,6.08271 l 4.17689,0.0776 c 0.411563,8.49298 7.428978,15.2833 16.021948,15.2833 7.49889,0 13.79796,-5.17438 15.558756,-12.13481 3.112671,-0.039 5.846451,-0.42554 11.375751,-4.22383 l 0.0429,-0.0326 0.0449,-0.0326 c 2.53967,-1.95845 4.4874,-5.05245 5.68277,-8.49456 1.19536,-3.44212 1.63011,-7.26471 0.62235,-10.73504 l -0.004,-0.0224 -0.006,-0.0203 c -2.71404,-8.6276 -8.30374,-12.80231 -14.90177,-13.85077 C 53.893076,11.323231 50.171741,7.1276009 45.707163,3.7486009 42.622572,1.3121709 39.060521,0.14304088 35.529187,0.01245088 Z M 30.152374,40.910371 c 1.807563,-0.89387 3.771646,-1.50384 5.929672,-1.50384 2.439837,0 4.602624,0.81631 6.576506,1.9405 0.2291,0.36882 0.485077,0.71191 0.681525,1.10799 0.255763,0.51568 0.482148,1.0628 0.693768,1.62219 h 2.099667 c 0.721676,0.81982 1.320661,1.73519 1.828281,2.71387 h -3.103589 c 0.346642,1.46193 0.573632,2.99548 0.679485,4.55438 h 3.911635 c 0.06192,0.52636 0.159158,1.0421 0.159158,1.58545 0,0.38738 -0.0805,0.75143 -0.112232,1.13043 h -3.89326 c -0.0298,1.55046 -0.174678,3.08617 -0.450948,4.55438 h 3.115831 c -0.468453,1.00246 -1.139495,1.86638 -1.828282,2.7159 h -1.983358 c -0.242301,0.73554 -0.519773,1.4448 -0.844764,2.10988 -0.13048,0.26702 -0.315573,0.49016 -0.463193,0.74478 -2.085627,1.31324 -4.413207,2.27107 -7.066226,2.27107 -2.369634,0 -4.481251,-0.76724 -6.415307,-1.83237 -0.250328,-0.39123 -0.527261,-0.75923 -0.734578,-1.18348 -0.324993,-0.66508 -0.602252,-1.37434 -0.844764,-2.10988 H 25.72451 c -0.688466,-0.84942 -1.358011,-1.71357 -1.82624,-2.7159 h 3.491283 c -0.276826,-1.4682 -0.42096,-3.00394 -0.45095,-4.55438 h -4.26871 c -0.03172,-0.379 -0.112232,-0.74305 -0.112232,-1.13043 0,-0.54335 0.09727,-1.05909 0.159158,-1.58545 h 4.287075 c 0.106139,-1.55898 0.334288,-3.09237 0.681525,-4.55438 h -3.481082 c 0.507392,-0.97854 1.104883,-1.89415 1.826242,-2.71387 h 2.479199 c 0.211755,-0.55939 0.438004,-1.10651 0.693767,-1.62219 0.273767,-0.55197 0.611866,-1.04863 0.948829,-1.54465 z" - inkscape:connector-curvature="0" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="93.312" height="91.968" viewBox="0 0 69.971 68.995" fill="#00459d" fill-rule="nonzero" overflow="visible" stroke-linecap="square" stroke-miterlimit="3" color-interpolation-filters="sRGB"><path d="M37.565 61.332v4.438c.746-.222 1.4-.632 1.985-1.222s1.098-1.36 1.557-2.3l.402-.916zm-6.658 0h3.944v4.438c-.746-.222-1.403-.632-1.987-1.222s-1.096-1.36-1.555-2.3l-.402-.916zm6.658-7.272v4.554H42.3a24.71 24.71 0 0 0 .522-4.554zm-7.972 0h5.258v4.554h-4.736a24.71 24.71 0 0 1-.522-4.554zm7.972-7.27v4.554h5.183c-.122-1.583-.375-3.135-.755-4.554zm-7.14 0h4.428v4.554H29.67c.122-1.583.375-3.135.755-4.554zm7.14-6.677v3.965h3.465l-.186-.414c-.455-.917-.954-1.676-1.5-2.27s-1.137-1.025-1.78-1.28zm-2.715 0v3.965h-3.465l.186-.414c.455-.917.954-1.676 1.5-2.27s1.137-1.025 1.78-1.28z" dominant-baseline="auto" paint-order="normal"/><path d="M37.565 61.332h3.944l-.402.916c-.46.94-.972 1.7-1.557 2.3s-1.24 1-1.985 1.222zm-6.658 0l.402.916c.46.94.97 1.7 1.555 2.3s1.242 1 1.987 1.222v-4.438zm6.658-7.272h5.258a24.71 24.71 0 0 1-.522 4.554h-4.736zm-7.972 0a24.71 24.71 0 0 0 .522 4.554h4.736V54.06zm7.972-7.27h4.428c.38 1.42.633 2.972.755 4.554h-5.183zm-7.14 0c-.38 1.42-.633 2.972-.755 4.554h5.183V46.8zm7.14-6.677c.642.254 1.234.684 1.78 1.28s1.045 1.354 1.5 2.27l.186.414h-3.465zm-2.715 0c-.642.254-1.234.684-1.78 1.28s-1.045 1.354-1.5 2.27l-.186.414h3.465zm.465-36.117c2.76.088 5.546.982 7.94 2.875l.016.01.016.014c4.554 3.442 7.314 5.883 7.448 14.212l.03 1.812 1.808.137C58.68 23.51 63 26.228 65.6 34.46c.688 2.38.42 5.48-.563 8.315-.98 2.825-2.68 5.34-4.334 6.628-4.77 3.27-6.1 3.497-8.556 3.493-.02-8.84-7.218-16.028-16.063-16.028-7.767 0-14.263 5.543-15.744 12.88l-4.454-.082c-2.684 0-5.624-1.863-7.92-4.644-2.284-2.765-3.802-6.355-3.98-8.872.016-4.828 1.216-7.904 2.865-10.113s3.83-3.607 6.005-4.744c2.993-1.472 9.06-1.505 11.85.073 4.027 2.533 5.854 4.867 7.707 8.02l3.422-2c-2.025-3.445-4.486-6.537-9.06-9.403l-.033-.022-.035-.018c-2.1-1.208-4.66-1.76-7.232-1.845 1.185-3.975 3.643-6.588 6.213-8.862 2.574-2.13 6.08-3.344 9.63-3.23zM35.53.013a18.23 18.23 0 0 0-1.51.006c-4.018.185-7.9 1.685-10.885 4.16l-.024.022-.022.018c-2.965 2.62-6.48 6.377-7.76 12.176-1.513.286-2.967.705-4.248 1.34l-.02.008-.018.01c-2.396 1.25-5.194 2.983-7.376 5.907S0 30.662 0 36.23v.065l.004.065c.244 3.74 2.118 7.826 4.896 11.2s6.585 6.083 10.982 6.083l4.177.078c.412 8.493 7.43 15.283 16.022 15.283 7.5 0 13.798-5.174 15.56-12.135 3.113-.04 5.846-.426 11.376-4.224l.043-.033.045-.033c2.54-1.958 4.487-5.052 5.683-8.495s1.63-7.265.622-10.735l-.004-.022-.006-.02c-2.714-8.628-8.304-12.802-14.902-13.85-.605-8.125-4.326-12.32-8.8-15.7C42.623 1.312 39.06.143 35.53.012zM30.152 40.9c1.808-.894 3.772-1.504 5.93-1.504 2.44 0 4.603.816 6.577 1.94.23.37.485.712.682 1.108a17.97 17.97 0 0 1 .694 1.622h2.1c.722.82 1.32 1.735 1.828 2.714H44.86a28.04 28.04 0 0 1 .679 4.554h3.912c.062.526.16 1.042.16 1.585 0 .387-.08.75-.112 1.13h-3.893a27.6 27.6 0 0 1-.451 4.554h3.116c-.468 1.002-1.14 1.866-1.828 2.716H44.46a16.74 16.74 0 0 1-.845 2.11c-.13.267-.316.5-.463.745-2.086 1.313-4.413 2.27-7.066 2.27-2.37 0-4.48-.767-6.415-1.832-.25-.4-.527-.76-.735-1.183-.325-.665-.602-1.374-.845-2.1h-2.363c-.688-.85-1.358-1.714-1.826-2.716h3.5c-.277-1.468-.42-3.004-.45-4.554h-4.27c-.032-.38-.112-.743-.112-1.13 0-.543.097-1.06.16-1.585h4.287a27.89 27.89 0 0 1 .682-4.554h-3.48c.507-.98 1.105-1.894 1.826-2.714h2.48a17.85 17.85 0 0 1 .694-1.622c.274-.552.612-1.05.95-1.545z" dominant-baseline="auto" paint-order="normal"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/vpc/InternetServices.svg b/src/main/webapp/img/lib/ibm/vpc/InternetServices.svg index 43b86b18742165836cb1fc8c60add2aa76b1fa0d..add594efd63f901c7d7bcc0844c8d35047c88212 100644 --- a/src/main/webapp/img/lib/ibm/vpc/InternetServices.svg +++ b/src/main/webapp/img/lib/ibm/vpc/InternetServices.svg @@ -1,134 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generated by Microsoft Visio, SVG Export InternetServices.svg Page-1 --> - -<svg - xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="1.0416666in" - height="1.0416666in" - viewBox="0 0 74.99995 75.000031" - xml:space="preserve" - class="st2" - version="1.1" - id="svg11188" - sodipodi:docname="InternetServices.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:none;fill-rule:evenodd;stroke-linecap:square;stroke-miterlimit:3"><metadata - id="metadata11194"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs11192"> - - - - - - - - - - - - - - <defs - id="defs11157"> - <path - id="mfid4" - d="m 641260,101330 c 146720,135080 146720,354120 0,489200 -146680,135120 -384540,135120 -531230,0 -146720,-135080 -146720,-354120 0,-489200 146690,-135118 384550,-135118 531230,0 z" - inkscape:connector-curvature="0" /> - </defs> - - - - - - - - - - - <defs - id="defs11162"> - <image - xlink:href="data:image/png;base64,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" - height="66" - width="66" - id="mfid5" /> - </defs> - - - <clipPath - id="mfid6"> - <rect - id="rect11168" - height="66" - width="66" - y="-0.5" - x="-0.5" /> - </clipPath> - - </defs><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview11190" - showgrid="false" - inkscape:zoom="3.6989365" - inkscape:cx="17.292574" - inkscape:cy="28.274392" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="svg11188" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <v:documentProperties - v:langID="1033" - v:viewMarkup="false" /><circle - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:#8dc53f;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000119;stroke-linecap:square;stroke-miterlimit:3" - r="37.500015" - cx="37.499973" - cy="37.500015" - id="circle1396" /> - - <style - type="text/css" - id="style11148"> - <![CDATA[ - .st1 {fill:none;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75} - .st2 {fill:none;fill-rule:evenodd;font-size:12px;overflow:visible;stroke-linecap:square;stroke-miterlimit:3} - ]]> - </style><path - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#016e14;stroke-width:1.5000006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" - d="m 26.455852,52.865198 c -2.253688,0 -7.077863,-1.61538 -9.140075,-5.05393 -3.20417,-5.63576 -1.914712,-10.98001 0.537651,-14.08646 3.096347,-3.79925 6.620217,-4.76752 10.502126,-3.58435 -0.01359,-4.16132 2.138943,-7.11132 5.268984,-9.42682 4.127166,-2.76906 8.125917,-2.59659 12.186767,-0.86025 3.160723,1.57219 6.449893,5.47974 6.236757,10.53797 3.396949,1.3716 5.400739,2.88683 6.631035,6.38014 2.506355,7.96142 -0.711174,16.27292 -5.985853,16.27292 z" - id="path11929" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccccccc" /> - - -<path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#016e14;stroke-width:0.7500003;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 54.056091,21.739965 c -3.458729,0 -6.287112,2.826916 -6.287112,6.285647 0,1.055543 0.266584,2.049639 0.730957,2.925294 L 43.85052,34.57493 c -1.152049,-1.26576 -2.805189,-2.066896 -4.642092,-2.066896 -3.458729,0 -6.287112,2.825454 -6.287112,6.284186 0,3.458724 2.828383,6.28711 6.287112,6.28711 1.526182,0 2.927661,-0.552286 4.019533,-1.464848 l 5.009768,3.766119 c -0.299891,0.731775 -0.46875,1.530525 -0.46875,2.367188 0,3.458717 2.828383,6.285648 6.287112,6.285648 3.458729,0 6.285647,-2.826931 6.285647,-6.285648 0,-3.458731 -2.826918,-6.28711 -6.285647,-6.28711 -1.81413,0 -3.449478,0.78243 -4.599611,2.021483 l -4.785647,-3.596191 c 0.521734,-0.915278 0.824708,-1.970026 0.824708,-3.093751 0,-0.811778 -0.160661,-1.586064 -0.443848,-2.299809 l 4.84131,-3.774902 c 1.111413,0.987728 2.567802,1.595214 4.163088,1.595214 3.458729,0 6.285647,-2.828387 6.285647,-6.287111 0,-3.458731 -2.826918,-6.285647 -6.285647,-6.285647 z" - id="path11926" - inkscape:connector-curvature="0" /><path - id="path11860" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#016e14;stroke-width:0.7500003;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 54.056091,45.71068 c 2.242738,0 4.035646,1.794368 4.035646,4.037109 0,2.242726 -1.792908,4.035647 -4.035646,4.035647 -2.242738,0 -4.037111,-1.792921 -4.037111,-4.035647 0,-2.242741 1.794373,-4.037109 4.037111,-4.037109 z M 39.208428,34.758035 c 2.242738,0 4.037111,1.791444 4.037112,4.034185 0,2.242733 -1.794374,4.037109 -4.037112,4.037109 -2.242738,0 -4.037111,-1.794376 -4.037111,-4.037109 0,-2.242741 1.794373,-4.034185 4.037111,-4.034185 z M 54.056091,23.989966 c 2.242738,0 4.035646,1.792905 4.035646,4.035646 0,2.242741 -1.792908,4.03711 -4.035646,4.03711 -2.242738,0 -4.037111,-1.794369 -4.037111,-4.03711 0,-2.242741 1.794373,-4.035646 4.037111,-4.035646 z" - inkscape:connector-curvature="0" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="100.032" height="100.032" viewBox="0 0 75 75" fill="none" fill-rule="evenodd" overflow="visible" stroke-linecap="square" stroke-miterlimit="3" color-interpolation-filters="sRGB"><circle r="37.5" cx="37.5" cy="37.5" color-interpolation-filters="sRGB" fill="#8dc53f"/><g fill="#fff" stroke="#016e14"><path d="M26.456 52.865c-2.254 0-7.078-1.615-9.14-5.054-3.204-5.636-1.915-10.98.538-14.086 3.096-3.8 6.62-4.768 10.502-3.584-.014-4.16 2.14-7.11 5.27-9.427 4.127-2.77 8.126-2.597 12.187-.86 3.16 1.572 6.45 5.48 6.237 10.538 3.397 1.372 5.4 2.887 6.63 6.38 2.506 7.96-.71 16.273-5.986 16.273z" stroke-width="1.5"/><g fill-rule="nonzero" stroke-width=".75"><path d="M54.056 21.74c-3.46 0-6.287 2.827-6.287 6.286 0 1.056.267 2.05.73 2.925l-4.65 3.624c-1.152-1.266-2.805-2.067-4.642-2.067-3.46 0-6.287 2.825-6.287 6.284s2.828 6.287 6.287 6.287a6.25 6.25 0 0 0 4.02-1.465l5 3.766a6.23 6.23 0 0 0-.469 2.367c0 3.46 2.828 6.286 6.287 6.286s6.286-2.827 6.286-6.286-2.827-6.287-6.286-6.287c-1.814 0-3.45.782-4.6 2.02l-4.786-3.596a6.23 6.23 0 0 0 .825-3.094 6.22 6.22 0 0 0-.444-2.3l4.84-3.775c1.11.988 2.568 1.595 4.163 1.595 3.46 0 6.286-2.828 6.286-6.287s-2.827-6.286-6.286-6.286z" dominant-baseline="auto" paint-order="normal"/><path d="M54.056 45.71a4.02 4.02 0 1 1 0 8.073 4.02 4.02 0 1 1 0-8.073zM39.208 34.758c2.243 0 4.037 1.79 4.037 4.034a4.02 4.02 0 1 1-8.074 0c0-2.243 1.794-4.034 4.037-4.034zM54.056 24a4.02 4.02 0 0 1 4.036 4.036 4.02 4.02 0 1 1-8.073 0 4.02 4.02 0 0 1 4.037-4.036z" dominant-baseline="auto" paint-order="normal"/></g></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/vpc/InternetServices2.svg b/src/main/webapp/img/lib/ibm/vpc/InternetServices2.svg index 885945da94f2ad096e4ee3bd3b27f25e1b39c63b..87fab32275d2667e66606a41a8dabcb0ef70e1e0 100644 --- a/src/main/webapp/img/lib/ibm/vpc/InternetServices2.svg +++ b/src/main/webapp/img/lib/ibm/vpc/InternetServices2.svg @@ -1,58 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - contentScriptType="text/ecmascript" - zoomAndPan="magnify" - contentStyleType="text/css" - id="svg903" - sodipodi:docname="InternetServices2.svg" - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:none;fill-rule:evenodd;stroke-linecap:square;stroke-miterlimit:3" - version="1.1" - width="1.0416666in" - xml:space="preserve" - preserveAspectRatio="xMidYMid meet" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - viewBox="0 0 74.99995 74.999941" - height="1.0416666in" - class="st2"><metadata - id="metadata1210"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs1208" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview1206" - showgrid="false" - inkscape:zoom="4.3350002" - inkscape:cx="28.300253" - inkscape:cy="52.762648" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="svg903" /> - <circle - fill="#e2002f" - r="37.499973" - cx="37.499973" - cy="37.499973" - id="circle1201" - style="fill:#92c24b;fill-opacity:1;opacity:1" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.54126549;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 32.063668,11.572258 c -8.036826,0 -14.300875,5.950401 -15.664797,12.546758 -7.2786092,1.292187 -12.3046357,7.906265 -12.3046357,14.079736 0,9.403294 7.2685307,15.605673 15.7858577,15.605673 h 0.0028 l 19.036219,-0.07742 c 1.893687,0.94483 3.911847,1.4457 5.851775,1.4457 4.944629,0 8.966468,-1.793852 11.669768,-4.636938 0.404369,-0.42528 0.775527,-0.875167 1.120522,-1.34153 l 0.360369,0.233677 a 5.2315876,5.2315876 0 0 0 -0.449054,2.112946 5.2315876,5.2315876 0 0 0 5.230984,5.230983 5.2315876,5.2315876 0 0 0 5.232391,-5.230983 5.2315876,5.2315876 0 0 0 -5.232391,-5.232392 5.2315876,5.2315876 0 0 0 -3.705045,1.544238 l -0.418085,-0.271684 c 1.27951,-2.314715 1.94543,-4.955593 1.94543,-7.664884 0,-3.608083 -1.262959,-6.672683 -3.177161,-9.037382 l 1.514677,-1.013538 a 5.2315876,5.2315876 0 0 0 3.545977,1.395023 5.2315876,5.2315876 0 0 0 5.23239,-5.230984 5.2315876,5.2315876 0 0 0 -5.23239,-5.232391 5.2315876,5.2315876 0 0 0 -5.230984,5.232391 5.2315876,5.2315876 0 0 0 0.539146,2.307207 l -1.669523,1.1163 C 53.800745,27.328093 50.995142,26.10732 48.178926,25.484477 47.182449,16.707263 39.399437,11.572258 32.063668,11.572258 Z m 0,3.540345 c 6.021289,0 12.516158,4.165431 12.757913,11.785197 l 0.04645,1.497784 1.485115,0.199893 c 2.296199,0.31071 4.722353,1.311184 6.64853,2.895622 l -5.325299,3.562869 a 5.2315876,5.2315876 0 0 0 -3.724753,-1.559723 5.2315876,5.2315876 0 0 0 -5.230984,5.230984 5.2315876,5.2315876 0 0 0 5.230984,5.23239 5.2315876,5.2315876 0 0 0 3.48263,-1.335899 l 7.153891,4.642568 c -0.222599,0.288374 -0.460296,0.565511 -0.712292,0.830539 -2.025259,2.129983 -4.995454,3.536122 -9.104953,3.536122 -4.142573,0 -9.859062,-3.748685 -10.842043,-10.335275 l -3.502338,0.523661 c 0.504638,3.381393 1.959345,6.206462 3.910568,8.384214 l -14.456997,0.06194 c -6.891533,0 -12.2441045,-4.410058 -12.2441045,-12.066735 0,-4.60727 4.8122675,-10.768844 11.3403665,-10.768844 5.853054,0 9.636384,3.748416 11.037713,7.380529 l 3.305261,-1.276777 c -1.787799,-4.633687 -6.452881,-9.139559 -13.209781,-9.599052 1.422564,-4.514524 6.108396,-8.822005 11.95412,-8.822005 z m 22.34148,17.735511 c 1.574949,1.809546 2.580299,4.124515 2.580299,7.068021 0,2.0601 -0.479165,4.023401 -1.37813,5.736346 l -7.003268,-4.542623 a 5.2315876,5.2315876 0 0 0 0.579969,-2.384629 5.2315876,5.2315876 0 0 0 -0.442015,-2.089016 z" - id="path1309" - inkscape:connector-curvature="0" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" contentScriptType="text/ecmascript" zoomAndPan="magnify" contentStyleType="text/css" width="100.032" preserveAspectRatio="xMidYMid meet" viewBox="0 0 75 75" height="100.032" overflow="visible" color-interpolation-filters="sRGB" fill="none" fill-rule="evenodd" stroke-linecap="square" stroke-miterlimit="3"><circle fill="#92c24b" r="37.5" cx="37.5" cy="37.5"/><path d="M32.064 11.572c-8.037 0-14.3 5.95-15.665 12.547C9.12 25.41 4.094 32.025 4.094 38.2c0 9.403 7.27 15.606 15.786 15.606h.003l19.036-.077c1.894.945 3.912 1.446 5.852 1.446 4.945 0 8.966-1.794 11.67-4.637.404-.425.776-.875 1.12-1.342l.36.234a5.232 5.232 0 0 0 4.782 7.344 5.232 5.232 0 1 0 0-10.463 5.232 5.232 0 0 0-3.705 1.544l-.418-.272c1.28-2.315 1.945-4.956 1.945-7.665a14.18 14.18 0 0 0-3.177-9.037l1.515-1.014a5.232 5.232 0 0 0 8.778-3.836 5.232 5.232 0 1 0-10.463 0 5.232 5.232 0 0 0 .539 2.307l-1.67 1.116c-2.247-2.125-5.053-3.345-7.87-3.968-.996-8.777-8.78-13.912-16.115-13.912zm0 3.54c6.02 0 12.516 4.165 12.758 11.785l.046 1.498 1.485.2a13.57 13.57 0 0 1 6.649 2.896l-5.325 3.563a5.232 5.232 0 0 0-8.956 3.671 5.232 5.232 0 0 0 8.714 3.896l7.154 4.643c-.223.288-.46.566-.712.83-2.025 2.13-4.995 3.536-9.105 3.536-4.143 0-9.86-3.75-10.842-10.335l-3.502.524c.505 3.38 1.96 6.206 3.91 8.384l-14.457.062c-6.892 0-12.244-4.4-12.244-12.067 0-4.607 4.812-10.77 11.34-10.77 5.853 0 9.636 3.748 11.038 7.38l3.305-1.277c-1.788-4.634-6.453-9.14-13.2-9.6 1.423-4.515 6.108-8.822 11.954-8.822zm22.34 17.736c1.575 1.8 2.58 4.125 2.58 7.068 0 2.06-.48 4.023-1.378 5.736L48.604 41.1a5.232 5.232 0 0 0 .58-2.385 5.232 5.232 0 0 0-.442-2.089z" dominant-baseline="auto" fill="#fff" fill-rule="nonzero"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/vpc/Key.svg b/src/main/webapp/img/lib/ibm/vpc/Key.svg index 2fada0bf342cf535fdadd85214e3ded51d5c47bf..b2a82997e3cb417cee7ccf8e939eef5a0c5e6107 100644 --- a/src/main/webapp/img/lib/ibm/vpc/Key.svg +++ b/src/main/webapp/img/lib/ibm/vpc/Key.svg @@ -1,125 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generated by Microsoft Visio, SVG Export Key.svg Page-1 --> - -<svg - xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="1.0416666in" - height="1.0416666in" - viewBox="0 0 75.000057 75.000047" - xml:space="preserve" - class="st2" - version="1.1" - id="svg12665" - sodipodi:docname="Key.svg" - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:none;fill-rule:evenodd;stroke-linecap:square;stroke-miterlimit:3" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata12671"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs12669"> - - - - - - - - - - - - - - <defs - id="defs12634"> - <path - id="mfid17" - d="m 603540,103560 c 138090,138060 138090,361920 0,499980 -138060,138090 -361920,138090 -499980,0 -138092,-138060 -138092,-361920 0,-499980 138060,-138092 361920,-138092 499980,0 z" - inkscape:connector-curvature="0" /> - </defs> - - - - - - - - - - - <defs - id="defs12639"> - <image - xlink:href="data:image/png;base64,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" - height="327" - width="283" - id="mfid18" /> - </defs> - - - <clipPath - id="mfid19"> - <rect - id="rect12645" - height="327" - width="283" - y="-0.5" - x="-0.5" /> - </clipPath> - - </defs><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview12667" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="3.4112288" - inkscape:cx="-13.005553" - inkscape:cy="58.983261" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="svg12665" /> - <v:documentProperties - v:langID="1033" - v:viewMarkup="false" /> - - <style - type="text/css" - id="style12625"> - <![CDATA[ - .st1 {fill:none;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75} - .st2 {fill:none;fill-rule:evenodd;font-size:12px;overflow:visible;stroke-linecap:square;stroke-miterlimit:3} - ]]> - </style> - - -<circle - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:#8dc53f;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000155;stroke-linecap:square;stroke-miterlimit:3" - r="37.500027" - cx="37.500027" - cy="37.500027" - id="circle1396" /><path - id="path13327" - style="opacity:1;fill:#ffffff;stroke:none;stroke-width:0.75000054;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" - d="m 44.678902,29.664438 c -1.548422,-1.25883 -2.798087,-3.25807 -3.136944,-5.20954 -0.500447,-2.31259 0.678731,-4.60219 2.709412,-5.30279 2.19382,-0.79543 4.142855,-0.0541 5.839115,0.90554 2.046215,1.2577 3.789756,3.81743 4.051353,5.69699 0.296498,2.39794 -0.282965,4.62293 -2.748279,5.60649 -1.91565,0.61264 -4.241713,0.30917 -6.714657,-1.69669 z m -13.690497,32.90034 -6.315811,-6.29639 7.656706,-7.67613 6.412978,6.31581 -2.604058,2.66236 -2.312558,-2.48746 -2.506891,2.46803 2.370858,2.39029 z m -7.36716,-7.92406 c -0.958973,0.79747 -1.927067,1.17539 -2.922467,0.29719 l -2.711227,-2.73871 c -0.689837,-0.76267 -0.611671,-1.78366 0.264993,-2.65626 l 18.157742,-18.22685 c -1.288503,-2.49341 -3.031569,-5.02208 -2.053257,-10.67219 1.142118,-4.99453 4.723259,-8.92353 11.276818,-9.10893 5.637007,-0.34601 9.712338,2.68109 12.368986,5.77501 2.78529,3.37435 4.299212,7.53208 3.428067,12.50642 -0.713459,4.24437 -4.670807,8.54879 -10.329066,9.19526 -2.889649,0.27603 -6.908257,-0.6069 -9.37655,-2.41944 z" - inkscape:connector-curvature="0" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="100.032" height="100.032" viewBox="0 0 75 75" fill="none" fill-rule="evenodd" overflow="visible" stroke-linecap="square" stroke-miterlimit="3" color-interpolation-filters="sRGB"><circle r="37.5" cx="37.5" cy="37.5" color-interpolation-filters="sRGB" fill="#8dc53f"/><path d="M44.68 29.664c-1.548-1.26-2.798-3.258-3.137-5.2-.5-2.313.68-4.602 2.71-5.303 2.194-.795 4.143-.054 5.84.906 2.046 1.258 3.8 3.817 4.05 5.697.296 2.398-.283 4.623-2.748 5.606-1.916.613-4.242.31-6.715-1.697zm-13.7 32.9l-6.316-6.296 7.657-7.676 6.413 6.316-2.604 2.662-2.313-2.487-2.507 2.468 2.37 2.4zM23.62 54.64c-.96.797-1.927 1.175-2.922.297l-2.71-2.74c-.7-.763-.612-1.784.265-2.656L36.4 31.316c-1.29-2.493-3.032-5.022-2.053-10.672 1.142-4.995 4.723-8.924 11.277-9.11 5.637-.346 9.712 2.68 12.37 5.775 2.785 3.374 4.3 7.532 3.428 12.506-.713 4.244-4.67 8.55-10.33 9.195-2.9.276-6.908-.607-9.377-2.42z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/vpc/LoadBalancer.svg b/src/main/webapp/img/lib/ibm/vpc/LoadBalancer.svg index 684d1eb0094f39058e6caa68de696faa3e2dd822..de0eb6ffc02930564ef217c9c67eef28f69df4d0 100644 --- a/src/main/webapp/img/lib/ibm/vpc/LoadBalancer.svg +++ b/src/main/webapp/img/lib/ibm/vpc/LoadBalancer.svg @@ -1,125 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generated by Microsoft Visio, SVG Export LoadBalancer.svg Page-1 --> - -<svg - xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="1.0416667in" - height="1.0416667in" - viewBox="0 0 74.999959 75.000006" - xml:space="preserve" - class="st2" - version="1.1" - id="svg13431" - sodipodi:docname="LoadBalancer.svg" - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:none;fill-rule:evenodd;stroke-linecap:square;stroke-miterlimit:3" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata13437"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs13435"> - - - - - - - - - - - - - - <defs - id="defs13400"> - <path - id="mfid10" - d="m 642560,101550 c 147020,135380 147020,354900 0,490280 -146980,135420 -385320,135420 -532300,0 -147025,-135380 -147025,-354900 0,-490280 146980,-135412 385320,-135412 532300,0 z" - inkscape:connector-curvature="0" /> - </defs> - - - - - - - - - - - <defs - id="defs13405"> - <image - xlink:href="data:image/png;base64,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" - height="329" - width="310" - id="mfid11" /> - </defs> - - - <clipPath - id="mfid12"> - <rect - id="rect13411" - height="329" - width="310" - y="-0.5" - x="-0.5" /> - </clipPath> - - </defs><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview13433" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="3.6983228" - inkscape:cx="42.332032" - inkscape:cy="40.563407" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="svg13431" /> - <v:documentProperties - v:langID="1033" - v:viewMarkup="false" /> - - <style - type="text/css" - id="style13391"> - <![CDATA[ - .st1 {fill:none;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75} - .st2 {fill:none;fill-rule:evenodd;font-size:12px;overflow:visible;stroke-linecap:square;stroke-miterlimit:3} - ]]> - </style> - - -<circle - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:#8dc53f;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99974966;stroke-linecap:square;stroke-miterlimit:3;stroke-dasharray:none" - r="37.499989" - cx="37.499989" - cy="37.499989" - id="circle1396" /><path - id="rect14094-2" - style="font-size:12px;overflow:visible;opacity:1;color-interpolation-filters:sRGB;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.7499997;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - d="m 53.186466,53.561722 h 9.106744 v 7.516073 h -9.106744 z m -20.239847,0 h 9.106744 v 7.516073 h -9.106744 z m -20.239851,0 h 9.106744 v 7.516073 H 12.706768 Z M 27.461922,7.0394779 H 47.538057 V 15.908667 H 27.461922 Z M 35.624259,18.52214 v 7.491209 H 15.545652 V 49.028965 H 19.29565 V 29.763347 h 16.328609 v 19.252435 h 3.749999 V 29.763347 h 16.328607 v 19.277337 h 3.749998 V 26.013349 H 39.374258 V 18.52214 Z" - inkscape:connector-curvature="0" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="100.032" height="100.032" viewBox="0 0 75 75" fill="none" fill-rule="evenodd" overflow="visible" stroke-linecap="square" stroke-miterlimit="3" color-interpolation-filters="sRGB"><style><![CDATA[.B{color-interpolation-filters:sRGB}]]></style><circle r="37.5" cx="37.5" cy="37.5" fill="#8dc53f" class="B"/><path d="M53.186 53.562h9.107v7.516h-9.107zm-20.24 0h9.107v7.516h-9.107zm-20.24 0h9.107v7.516h-9.107zM27.462 7.04h20.076v8.87H27.462zm8.162 11.483v7.49h-20.08V49.03h3.75V29.763h16.33v19.252h3.75V29.763h16.33V49.04h3.75V26.013h-20.08v-7.49z" fill="#fff" paint-order="normal" class="B"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/vpc/LoadBalancerListener.svg b/src/main/webapp/img/lib/ibm/vpc/LoadBalancerListener.svg index 232907fe08a255cedad3cbe861bbb33d5588b29e..684ebc49e00cabb7175dd7bb58beee27b9d0a874 100644 --- a/src/main/webapp/img/lib/ibm/vpc/LoadBalancerListener.svg +++ b/src/main/webapp/img/lib/ibm/vpc/LoadBalancerListener.svg @@ -1,124 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generated by Microsoft Visio, SVG Export VPN.svg Page-1 --> - -<svg - xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="1.0416666in" - height="1.0416666in" - viewBox="0 0 74.99995 75.000085" - xml:space="preserve" - class="st2" - version="1.1" - id="svg2361" - sodipodi:docname="LoadBalancerListener.svg" - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:none;fill-rule:evenodd;stroke-linecap:square;stroke-miterlimit:3" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata2367"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs2365"> - - - - - - - - - - - - - - <defs - id="defs2330"> - <path - id="mfid13" - d="m 641260,101550 c 146720,135380 146720,354900 0,490280 -146680,135420 -384540,135420 -531230,0 -146720,-135380 -146720,-354900 0,-490280 146690,-135412 384550,-135412 531230,0 z" - inkscape:connector-curvature="0" /> - </defs> - - - - - - - - - - - <defs - id="defs2335"> - <image - xlink:href="data:image/png;base64,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" - height="336" - width="336" - id="mfid14" /> - </defs> - - - <clipPath - id="mfid15"> - <rect - id="rect2341" - height="336" - width="336" - y="-0.5" - x="-0.5" /> - </clipPath> - - </defs><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview2363" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="5.2204442" - inkscape:cx="23.759276" - inkscape:cy="44.752384" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="svg2361" /> - <v:documentProperties - v:langID="1033" - v:viewMarkup="false" /> - - <circle - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:#92c24b;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000191;stroke-linecap:square;stroke-miterlimit:3;opacity:1" - r="37.500046" - cx="37.500011" - cy="37.500046" - id="circle826" /><style - type="text/css" - id="style2321"> - <![CDATA[ - .st1 {fill:none;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75} - .st2 {fill:none;fill-rule:evenodd;font-size:12px;overflow:visible;stroke-linecap:square;stroke-miterlimit:3} - ]]> - </style> - - -<path - id="path996" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.4015789;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:17.00787544;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 37.568359,8.1464844 c -16.193008,0 -29.3554684,13.1644136 -29.3554684,29.3574216 0,16.193008 13.1624604,29.355469 29.3554684,29.355469 16.193009,0 29.357422,-13.162461 29.357422,-29.355469 0,-16.193008 -13.164413,-29.3574216 -29.357422,-29.3574216 z m 0,3.4023436 c 14.354659,0 25.955079,11.60042 25.955079,25.955078 0,14.354659 -11.60042,25.955078 -25.955079,25.955078 -14.354658,0 -25.955078,-11.600419 -25.955078,-25.955078 0,-14.354658 11.60042,-25.955078 25.955078,-25.955078 z m 0.116443,7.039652 a 4.2880467,4.2880467 0 0 0 -4.287925,4.287925 4.2880467,4.2880467 0 0 0 3.049854,4.104508 v 2.437751 c -1.460417,0.227871 -2.795797,0.841858 -3.888031,1.746735 l -4.453215,-3.984006 a 4.2880464,4.2880464 0 0 0 0.493736,-1.990937 4.2880464,4.2880464 0 0 0 -4.287926,-4.287925 4.2880464,4.2880464 0 0 0 -4.287925,4.287925 4.2880464,4.2880464 0 0 0 4.287925,4.287925 4.2880464,4.2880464 0 0 0 2.055986,-0.529992 l 4.551322,4.072516 c -0.597364,0.925077 -1.006334,1.978201 -1.182618,3.108506 h -3.838979 a 4.2880464,4.2880464 0 0 0 -4.102374,-3.049855 4.2880464,4.2880464 0 0 0 -4.287926,4.287925 4.2880464,4.2880464 0 0 0 4.287926,4.287925 4.2880464,4.2880464 0 0 0 4.104507,-3.049854 h 3.836846 c 0.537901,3.443147 3.267468,6.172187 6.710746,6.70968 v 2.562518 a 4.2880464,4.2880464 0 0 0 -3.049854,4.102375 4.2880464,4.2880464 0 0 0 4.287925,4.287925 4.2880464,4.2880464 0 0 0 4.287925,-4.287925 4.2880464,4.2880464 0 0 0 -3.050921,-4.104508 v -2.559319 c 1.437258,-0.224143 2.752414,-0.824393 3.834712,-1.706212 l 4.661159,4.170623 a 4.2880464,4.2880464 0 0 0 -0.48627,1.976008 4.2880464,4.2880464 0 0 0 4.287925,4.288991 4.2880464,4.2880464 0 0 0 4.287926,-4.288991 4.2880464,4.2880464 0 0 0 -4.287926,-4.287926 4.2880464,4.2880464 0 0 0 -2.069848,0.538524 l -4.73474,-4.235673 c 0.617087,-0.938467 1.037726,-2.012939 1.217809,-3.16609 h 3.723809 a 4.2880464,4.2880464 0 0 0 4.102375,3.049854 4.2880464,4.2880464 0 0 0 4.287924,-4.287925 4.2880464,4.2880464 0 0 0 -4.287924,-4.287925 4.2880464,4.2880464 0 0 0 -4.104508,3.049855 H 45.632553 C 45.095569,32.685107 42.36611,29.955647 38.921806,29.418664 V 26.97878 a 4.2880467,4.2880467 0 0 0 3.050921,-4.102375 4.2880467,4.2880467 0 0 0 -4.287925,-4.287925 z m 0,13.201819 c 3.094841,0 5.577182,2.481275 5.577182,5.576116 0,3.094841 -2.482341,5.578249 -5.577182,5.578248 -3.094841,0 -5.577182,-2.483407 -5.577182,-5.578248 0,-3.094841 2.482341,-5.576116 5.577182,-5.576116 z" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="100.032" height="100.032" viewBox="0 0 75 75" fill="none" fill-rule="evenodd" overflow="visible" stroke-linecap="square" stroke-miterlimit="3" color-interpolation-filters="sRGB"><circle r="37.5" cx="37.5" cy="37.5" color-interpolation-filters="sRGB" fill="#92c24b"/><path d="M37.568 8.146c-16.193 0-29.355 13.164-29.355 29.357S21.375 66.86 37.568 66.86s29.357-13.162 29.357-29.355S53.76 8.146 37.568 8.146zm0 3.402c14.355 0 25.955 11.6 25.955 25.955S51.923 63.46 37.568 63.46s-25.955-11.6-25.955-25.955 11.6-25.955 25.955-25.955zm.116 7.04a4.288 4.288 0 0 0-1.238 8.392v2.438c-1.46.228-2.796.842-3.888 1.747l-4.453-3.984a4.288 4.288 0 0 0-3.794-6.279 4.288 4.288 0 0 0 0 8.576 4.288 4.288 0 0 0 2.056-.53l4.55 4.073a7.99 7.99 0 0 0-1.183 3.109h-3.84a4.288 4.288 0 0 0-8.39 1.238 4.288 4.288 0 0 0 8.392 1.238h3.837a8.08 8.08 0 0 0 6.711 6.71v2.563a4.288 4.288 0 0 0 1.238 8.39 4.288 4.288 0 0 0 1.237-8.392v-2.56a8.02 8.02 0 0 0 3.835-1.706l4.66 4.17a4.288 4.288 0 0 0 3.802 6.265 4.288 4.288 0 1 0 0-8.577 4.288 4.288 0 0 0-2.07.539l-4.735-4.236a8 8 0 0 0 1.218-3.166h3.724a4.288 4.288 0 0 0 8.39-1.238 4.288 4.288 0 0 0-8.392-1.238h-3.722c-.537-3.444-3.266-6.174-6.71-6.71v-2.44a4.288 4.288 0 0 0-1.237-8.39zm0 13.202c3.095 0 5.577 2.48 5.577 5.576a5.56 5.56 0 1 1-11.154 0c0-3.095 2.482-5.576 5.577-5.576z" dominant-baseline="auto" fill="#fff" fill-rule="nonzero" paint-order="normal"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/vpc/LoadBalancerPool.svg b/src/main/webapp/img/lib/ibm/vpc/LoadBalancerPool.svg index 8032c396257ffe9baec371d887dcd3a0c348f4d0..9160659eb67b7f8c5945be1a98fa46e4dd4528e8 100644 --- a/src/main/webapp/img/lib/ibm/vpc/LoadBalancerPool.svg +++ b/src/main/webapp/img/lib/ibm/vpc/LoadBalancerPool.svg @@ -1,125 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generated by Microsoft Visio, SVG Export VPN.svg Page-1 --> - -<svg - xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="1.0416666in" - height="1.0416666in" - viewBox="0 0 74.99995 75.000085" - xml:space="preserve" - class="st2" - version="1.1" - id="svg2361" - sodipodi:docname="LoadBalancerPool.svg" - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:none;fill-rule:evenodd;stroke-linecap:square;stroke-miterlimit:3" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata2367"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs2365"> - - - - - - - - - - - - - - <defs - id="defs2330"> - <path - id="mfid13" - d="m 641260,101550 c 146720,135380 146720,354900 0,490280 -146680,135420 -384540,135420 -531230,0 -146720,-135380 -146720,-354900 0,-490280 146690,-135412 384550,-135412 531230,0 z" - inkscape:connector-curvature="0" /> - </defs> - - - - - - - - - - - <defs - id="defs2335"> - <image - xlink:href="data:image/png;base64,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" - height="336" - width="336" - id="mfid14" /> - </defs> - - - <clipPath - id="mfid15"> - <rect - id="rect2341" - height="336" - width="336" - y="-0.5" - x="-0.5" /> - </clipPath> - - </defs><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview2363" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="3.6914115" - inkscape:cx="-31.615781" - inkscape:cy="18.50901" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="svg2361" /> - <v:documentProperties - v:langID="1033" - v:viewMarkup="false" /> - - <style - type="text/css" - id="style2321"> - <![CDATA[ - .st1 {fill:none;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75} - .st2 {fill:none;fill-rule:evenodd;font-size:12px;overflow:visible;stroke-linecap:square;stroke-miterlimit:3} - ]]> - </style> - - <circle - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:#92c24b;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000191;stroke-linecap:square;stroke-miterlimit:3;opacity:1" - r="37.500046" - cx="37.500011" - cy="37.500046" - id="circle826" /> -<path - style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:0.9748744;stroke:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:17.00787544;stroke-opacity:1;paint-order:normal" - d="M 50.275391 15.398438 A 7.8537381 7.8537381 0 0 0 42.421875 23.251953 A 7.8537381 7.8537381 0 0 0 48.007812 30.769531 L 48.007812 35.234375 C 45.332996 35.65173 42.887192 36.776273 40.886719 38.433594 L 32.730469 31.136719 A 7.8537375 7.8537375 0 0 0 33.634766 27.490234 A 7.8537375 7.8537375 0 0 0 25.78125 19.636719 A 7.8537375 7.8537375 0 0 0 17.927734 27.490234 A 7.8537375 7.8537375 0 0 0 25.78125 35.34375 A 7.8537375 7.8537375 0 0 0 29.546875 34.373047 L 37.882812 41.832031 C 36.788716 43.526349 36.03967 45.45519 35.716797 47.525391 L 28.685547 47.525391 A 7.8537375 7.8537375 0 0 0 21.171875 41.939453 A 7.8537375 7.8537375 0 0 0 13.318359 49.792969 A 7.8537375 7.8537375 0 0 0 21.171875 57.646484 A 7.8537375 7.8537375 0 0 0 28.689453 52.060547 L 35.716797 52.060547 C 36.701987 58.366817 41.701303 63.365167 48.007812 64.349609 L 48.007812 69.042969 A 7.8537375 7.8537375 0 0 0 42.421875 76.556641 A 7.8537375 7.8537375 0 0 0 50.275391 84.410156 A 7.8537375 7.8537375 0 0 0 58.128906 76.556641 A 7.8537375 7.8537375 0 0 0 52.541016 69.039062 L 52.541016 64.351562 C 55.173414 63.941033 57.582177 62.841651 59.564453 61.226562 L 68.101562 68.865234 A 7.8537375 7.8537375 0 0 0 67.210938 72.484375 A 7.8537375 7.8537375 0 0 0 75.064453 80.339844 A 7.8537375 7.8537375 0 0 0 82.917969 72.484375 A 7.8537375 7.8537375 0 0 0 75.064453 64.630859 A 7.8537375 7.8537375 0 0 0 71.273438 65.617188 L 62.601562 57.859375 C 63.731783 56.140532 64.502201 54.172592 64.832031 52.060547 L 71.652344 52.060547 A 7.8537375 7.8537375 0 0 0 79.166016 57.646484 A 7.8537375 7.8537375 0 0 0 87.019531 49.792969 A 7.8537375 7.8537375 0 0 0 79.166016 41.939453 A 7.8537375 7.8537375 0 0 0 71.648438 47.525391 L 64.832031 47.525391 C 63.848523 41.217003 58.849404 36.217883 52.541016 35.234375 L 52.541016 30.765625 A 7.8537381 7.8537381 0 0 0 58.128906 23.251953 A 7.8537381 7.8537381 0 0 0 50.275391 15.398438 z M 50.275391 39.578125 C 55.943722 39.578125 60.490234 44.122685 60.490234 49.791016 C 60.490234 55.459347 55.943722 60.007813 50.275391 60.007812 C 44.60706 60.007812 40.060547 55.459347 40.060547 49.791016 C 40.060547 44.122685 44.60706 39.578125 50.275391 39.578125 z " - transform="matrix(0.75000085,0,0,0.75000085,-6.75e-5,0)" - id="path876" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="100.032" height="100.032" viewBox="0 0 75 75" fill="none" fill-rule="evenodd" overflow="visible" stroke-linecap="square" stroke-miterlimit="3" color-interpolation-filters="sRGB"><circle r="37.5" cx="37.5" cy="37.5" color-interpolation-filters="sRGB" fill="#92c24b"/><path d="M37.707 11.55a5.89 5.89 0 0 0-1.701 11.528v3.35c-2.006.313-3.84 1.156-5.34 2.4l-6.117-5.473a5.89 5.89 0 0 0-5.212-8.625 5.89 5.89 0 1 0 0 11.78 5.89 5.89 0 0 0 2.824-.728l6.252 5.594c-.82 1.27-1.382 2.717-1.625 4.27h-5.273a5.89 5.89 0 0 0-11.525 1.701 5.89 5.89 0 0 0 11.528 1.701h5.27c.74 4.73 4.488 8.478 9.218 9.217v3.52a5.89 5.89 0 0 0 1.701 11.525 5.89 5.89 0 0 0 1.699-11.528v-3.516c1.974-.308 3.78-1.132 5.268-2.344l6.403 5.73a5.89 5.89 0 0 0 1.057 6.88 5.89 5.89 0 0 0 8.331 0 5.89 5.89 0 0 0-4.165-10.056 5.89 5.89 0 0 0-2.843.74l-6.504-5.818a10.99 10.99 0 0 0 1.673-4.349h5.115a5.89 5.89 0 0 0 11.525-1.701 5.89 5.89 0 0 0-11.528-1.701h-5.112a11.09 11.09 0 0 0-9.218-9.218v-3.352a5.89 5.89 0 0 0-1.699-11.525zm0 18.135c4.25 0 7.66 3.408 7.66 7.66s-3.4 7.663-7.66 7.663-7.66-3.41-7.66-7.663 3.4-7.66 7.66-7.66z" fill="#fff" fill-opacity=".975" paint-order="normal"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/vpc/Marketplace.svg b/src/main/webapp/img/lib/ibm/vpc/Marketplace.svg index f974fc5b114a543562118bdd80776c4be43c61aa..680aeb4befd7016e81d4cf3f757d319229a1b807 100644 --- a/src/main/webapp/img/lib/ibm/vpc/Marketplace.svg +++ b/src/main/webapp/img/lib/ibm/vpc/Marketplace.svg @@ -1,117 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generated by Microsoft Visio, SVG Export Marketplace.svg Page-1 --> - -<svg - xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="1.0226296in" - height="0.925538in" - viewBox="0 0 73.629302 66.638704" - xml:space="preserve" - class="st2" - version="1.1" - id="svg14202" - sodipodi:docname="Marketplace.svg" - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:none;fill-rule:evenodd;stroke-linecap:square;stroke-miterlimit:3" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata14208"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs14206"> - - - - - - - - - - - - - - <clipPath - id="mfid12"> - <rect - width="565.96002" - height="506.95001" - id="mfid13" - x="0" - y="0" /> - </clipPath> - - - <defs - id="defs14180"> - <image - xlink:href="data:image/png;base64,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" - height="508" - width="567" - id="mfid14" /> - </defs> - - - - - - <clipPath - id="mfid15"> - <rect - id="rect14182" - height="508" - width="567" - y="-0.5" - x="-0.5" /> - </clipPath> - - </defs><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview14204" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="3.6101949" - inkscape:cx="21.110051" - inkscape:cy="29.768545" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="svg14202" /> - <v:documentProperties - v:langID="1033" - v:viewMarkup="false" /> - - <style - type="text/css" - id="style14169"> - <![CDATA[ - .st1 {fill:none;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75} - .st2 {fill:none;fill-rule:evenodd;font-size:12px;overflow:visible;stroke-linecap:square;stroke-miterlimit:3} - ]]> - </style> - - -<path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#00459d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.55117989;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 9.3802623,3.8705408e-5 1.2669813,0.06053871 a 1.2764024,1.2764024 0 1 0 0.01953,2.55272999 l 7.095703,-0.0547 6.6718747,28.3750003 v 0.006 a 1.2757175,1.2757175 0 0 0 0.03516,0.20898 c 0.01102,0.0466 0.03177,0.0729 0.04297,0.11914 l 2.527344,10.75 a 1.2757175,1.2757175 0 0 0 0.0078,0.0312 c 0.578761,2.20777 1.285509,4.22201 2.761719,5.74609 1.47621,1.52409 3.677077,2.36719 6.662109,2.36719 a 1.2757175,1.2757175 0 0 0 0.002,0 l 41.679687,-0.0332 a 1.2757175,1.2757175 0 1 0 -0.002,-2.55078 l -41.679688,0.0332 c -2.540669,0 -3.873032,-0.60176 -4.830078,-1.58984 -0.956322,-0.98734 -1.581701,-2.55144 -2.123047,-4.61524 -4.09e-4,-0.002 -0.0015,-0.002 -0.002,-0.004 l -0.679687,-2.89063 c 1.610666,1.11136 3.469602,1.625 5.43164,1.625 a 1.2757175,1.2757175 0 0 0 0.002,0 l 38.369141,-0.0566 c 2.066894,0 3.902086,-0.28792 5.365235,-1.375 1.463148,-1.08708 2.334329,-2.87635 2.71289,-5.29492 a 1.2757175,1.2757175 0 0 0 0.002,-0.0176 l 2.277344,-15.96484 a 1.2757175,1.2757175 0 0 0 -1.263672,-1.45508 l -51.695312,0.0215 a 1.2757175,1.2757175 0 1 0 0.002,2.55078 l 50.224609,-0.0215 -2.068359,14.49219 c -0.319368,2.04039 -0.913299,3.04655 -1.712891,3.64062 -0.799592,0.59408 -2.024765,0.87305 -3.84375,0.87305 a 1.2757175,1.2757175 0 0 0 -0.002,0 l -38.369141,0.0547 c -1.835141,0 -3.245993,-0.37245 -4.419921,-1.36133 -1.153073,-0.97132 -2.153967,-2.67411 -2.851563,-5.53516 L 10.632214,0.98441871 A 1.2757175,1.2757175 0 0 0 9.3802623,3.8705408e-5 Z M 40.530653,0.21488871 c -1.857873,-0.12012 -3.591155,0.10752 -5.074219,0.49023 a 1.2757175,1.2757175 0 0 0 -0.04492,0.0137 C 31.513004,1.8810487 28.14454,4.5738787 26.532608,8.3574887 c -3.426152,-2.21132 -6.871339,-1.96006 -9.644532,-1.17773 a 1.2757175,1.2757175 0 1 0 0.69336,2.45508 c 2.89311,-0.81616 5.485627,-1.23733 8.68164,1.5507803 a 1.2757175,1.2757175 0 0 0 2.072266,-0.63672 c 0.953337,-3.6322603 4.048405,-6.2546903 7.78125,-7.3750003 2.508545,-0.64375 5.753969,-0.76828 9.042969,0.90234 3.183109,1.8191 5.057508,4.31852 5.457031,6.7929703 a 1.2757175,1.2757175 0 0 0 2.121094,0.73828 c 2.316328,-2.1221103 4.696135,-3.1259603 8.029297,-2.3339803 2.95863,1.0706803 4.211704,2.8772103 4.515625,3.8125003 a 1.2757175,1.2757175 0 1 0 2.425781,-0.78906 c -0.60902,-1.87421 -2.487696,-4.1591503 -6.134766,-5.4550803 a 1.2757175,1.2757175 0 0 0 -0.123049,-0.0371 c -3.448587,-0.84586 -6.417425,0.0368 -8.896484,1.75977 -1.020337,-2.6548 -3.152061,-5.01247 -6.148437,-6.71875 a 1.2757175,1.2757175 0 0 0 -0.05078,-0.0274 C 44.371964,0.80384871 42.388527,0.33498871 40.530655,0.21487871 Z M 26.356824,53.658249 c -3.569473,0 -6.490231,2.92076 -6.490234,6.49023 -4e-6,3.56948 2.920756,6.49023 6.490234,6.49023 3.569478,0 6.490239,-2.92075 6.490235,-6.49023 -3e-6,-3.56947 -2.920762,-6.49023 -6.490235,-6.49023 z m 33.464844,0 c -3.569473,0 -6.490232,2.92076 -6.490234,6.49023 -4e-6,3.56948 2.920756,6.49023 6.490234,6.49023 3.569478,0 6.490239,-2.92075 6.490235,-6.49023 -3e-6,-3.56947 -2.920762,-6.49023 -6.490235,-6.49023 z m -33.464844,2.55078 c 2.190714,0 3.939452,1.74874 3.939453,3.93945 3e-6,2.19072 -1.748736,3.93945 -3.939453,3.93945 -2.190717,0 -3.939455,-1.74873 -3.939453,-3.93945 2e-6,-2.19071 1.748739,-3.93945 3.939453,-3.93945 z m 33.464844,0 c 2.190714,0 3.939452,1.74874 3.939453,3.93945 3e-6,2.19072 -1.748736,3.93945 -3.939453,3.93945 -2.190717,0 -3.939456,-1.74873 -3.939453,-3.93945 2e-6,-2.19071 1.748739,-3.93945 3.939453,-3.93945 z" - id="path14818-2" - inkscape:connector-curvature="0" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="98.208" height="88.896" viewBox="0 0 73.629 66.639" fill="none" fill-rule="evenodd" overflow="visible" stroke-linecap="square" stroke-miterlimit="3" color-interpolation-filters="sRGB"><path d="M9.38 0L1.267.06a1.276 1.276 0 1 0 .02 2.553l7.096-.055 6.672 28.38a1.276 1.276 0 0 0 .035.209c.01.047.032.073.043.12l2.527 10.75a1.276 1.276 0 0 0 .008.031c.58 2.208 1.286 4.222 2.762 5.746s3.677 2.367 6.662 2.367a1.276 1.276 0 0 0 .002 0l41.68-.033a1.276 1.276 0 1 0-.002-2.551l-41.68.033c-2.54 0-3.873-.602-4.83-1.6s-1.582-2.55-2.123-4.615l-.682-2.895c1.61 1.11 3.47 1.625 5.432 1.625a1.276 1.276 0 0 0 .002 0l38.37-.057c2.067 0 3.902-.288 5.365-1.375s2.334-2.876 2.713-5.295a1.276 1.276 0 0 0 .002-.018l2.277-15.965a1.276 1.276 0 0 0-1.264-1.455l-51.695.022a1.276 1.276 0 1 0 .002 2.551l50.225-.02-2.068 14.492c-.32 2.04-.913 3.047-1.713 3.64s-2.025.873-3.844.873a1.276 1.276 0 0 0-.002 0l-38.37.055c-1.835 0-3.246-.372-4.42-1.36-1.153-.97-2.154-2.674-2.852-5.535L10.632.984A1.276 1.276 0 0 0 9.38 0zm31.15.215a16.21 16.21 0 0 0-5.074.49 1.276 1.276 0 0 0-.045.014c-3.9 1.162-7.267 3.855-8.88 7.64-3.426-2.21-6.87-1.96-9.645-1.178a1.276 1.276 0 1 0 .693 2.455c2.893-.816 5.486-1.237 8.682 1.55a1.276 1.276 0 0 0 2.072-.637c.953-3.632 4.048-6.255 7.78-7.375 2.51-.644 5.754-.768 9.043.902 3.183 1.82 5.058 4.32 5.457 6.793a1.276 1.276 0 0 0 2.121.738c2.316-2.122 4.696-3.126 8.03-2.334 2.96 1.07 4.212 2.877 4.516 3.813a1.276 1.276 0 1 0 2.426-.789c-.61-1.874-2.488-4.16-6.135-5.455a1.276 1.276 0 0 0-.123-.037c-3.45-.846-6.417.037-8.896 1.76-1.02-2.655-3.152-5.012-6.148-6.72a1.276 1.276 0 0 0-.051-.027C44.372.804 42.39.335 40.53.215zM26.357 53.658c-3.57 0-6.5 2.92-6.5 6.5s2.92 6.5 6.5 6.5 6.5-2.92 6.5-6.5-2.92-6.5-6.5-6.5zm33.465 0c-3.57 0-6.5 2.92-6.5 6.5s2.92 6.5 6.5 6.5 6.5-2.92 6.5-6.5-2.92-6.5-6.5-6.5zm-33.465 2.55a3.92 3.92 0 1 1 0 7.879 3.92 3.92 0 1 1 0-7.879zm33.465 0a3.92 3.92 0 1 1 0 7.879 3.92 3.92 0 1 1 0-7.879z" dominant-baseline="auto" fill="#00459d" fill-rule="nonzero" paint-order="normal"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/vpc/ObjectStorage.svg b/src/main/webapp/img/lib/ibm/vpc/ObjectStorage.svg index 89af43a2a419a882041bd11aedd4dc57a10abcdc..42b4d5aff527115f5c627198a1ce7dc15e801c18 100644 --- a/src/main/webapp/img/lib/ibm/vpc/ObjectStorage.svg +++ b/src/main/webapp/img/lib/ibm/vpc/ObjectStorage.svg @@ -1,109 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generated by Microsoft Visio, SVG Export BareMetalServer.svg Page-1 --> - -<svg - xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="1.0416666in" - height="1.0416666in" - viewBox="0 0 74.99995 74.999981" - xml:space="preserve" - class="st2" - version="1.1" - id="svg1220" - sodipodi:docname="ObjectStorage.svg" - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:none;fill-rule:evenodd;stroke-linecap:square;stroke-miterlimit:3" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata1226"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs1224"> - - - - - - - - - - - - - - <defs - id="defs1171"> - <path - id="mfid20" - d="m 639960,101770 c 146430,135680 146430,355690 0,491360 -146390,135720 -383760,135720 -530150,0 -146426,-135670 -146426,-355680 0,-491360 146390,-135707 383760,-135707 530150,0 z" - inkscape:connector-curvature="0" /> - </defs> - - - - - - - - - - - - - - - </defs><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview1222" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="5.6568542" - inkscape:cx="47.946162" - inkscape:cy="40.413132" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="svg1220" /> - <v:documentProperties - v:langID="1033" - v:viewMarkup="false" /> - - <style - type="text/css" - id="style1162"> - <![CDATA[ - .st1 {fill:none;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75} - .st2 {fill:none;fill-rule:evenodd;font-size:12px;overflow:visible;stroke-linecap:square;stroke-miterlimit:3} - ]]> - </style><circle - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:#90c34b;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000024;stroke-linecap:square;stroke-miterlimit:3;opacity:1" - r="37.499981" - cx="37.499981" - cy="37.499981" - id="circle1396" /> - - -<path - id="path203" - style="opacity:1;fill:#ffffff;stroke:none;stroke-width:0.74999964px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="M 60.843722,56.953095 V 24.304674 L 42.93748,15.070302 49.00779,11.976553 67.371063,21.35155 V 53.695285 Z M 37.714941,34.24619 21.855114,26.040713 39.838044,16.808698 55.638243,24.915713 Z M 39.15375,55.881146 V 36.679668 L 58.01323,26.765609 V 46.180381 Z M 18.738617,47.029329 V 27.688404 l 17.347071,8.88545 v 19.45076 z M 7.6289027,41.343728 V 21.328112 L 37.406233,5.9531192 45.749979,10.312492 15.773431,25.82811 v 19.640616 z m 0,12.304682 V 44.554664 L 37.642963,59.960649 58.01323,49.335912 V 58.40622 L 37.42967,68.882777 Z" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccc" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="100.032" height="100.032" viewBox="0 0 75 75" fill="none" fill-rule="evenodd" overflow="visible" stroke-linecap="square" stroke-miterlimit="3" color-interpolation-filters="sRGB"><circle r="37.5" cx="37.5" cy="37.5" color-interpolation-filters="sRGB" fill="#90c34b"/><path d="M60.844 56.953V24.305L42.937 15.07l6.07-3.094 18.363 9.375v32.344zm-23.13-22.707l-15.86-8.205 17.983-9.232 15.8 8.107zm1.44 21.635v-19.2l18.86-9.914V46.18zM18.74 47.03v-19.34l17.347 8.885v19.45zm-11.1-5.686V21.328L37.406 5.953l8.344 4.36-29.977 15.516v19.64zm0 12.305v-9.094L37.643 59.96l20.37-10.625v9.07L37.43 68.883z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/vpc/PublicGateway.svg b/src/main/webapp/img/lib/ibm/vpc/PublicGateway.svg index f5f0065f53a582f8ef88fdf2fcf22371ee6f1c5f..c40cf781d4ad9742b7ed0992763260b010911fe5 100644 --- a/src/main/webapp/img/lib/ibm/vpc/PublicGateway.svg +++ b/src/main/webapp/img/lib/ibm/vpc/PublicGateway.svg @@ -1,125 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generated by Microsoft Visio, SVG Export PublicGateway.svg Page-1 --> - -<svg - xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="1.0416666in" - height="1.0416666in" - viewBox="0 0 74.99995 75.000085" - xml:space="preserve" - class="st2" - version="1.1" - id="svg15048" - sodipodi:docname="PublicGateway.svg" - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:none;fill-rule:evenodd;stroke-linecap:square;stroke-miterlimit:3" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata15054"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs15052"> - - - - - - - - - - - - - - <defs - id="defs15017"> - <path - id="mfid7" - d="m 641260,101550 c 146720,135380 146720,354900 0,490280 -146680,135420 -384540,135420 -531230,0 -146720,-135380 -146720,-354900 0,-490280 146690,-135412 384550,-135412 531230,0 z" - inkscape:connector-curvature="0" /> - </defs> - - - - - - - - - - - <defs - id="defs15022"> - <image - xlink:href="data:image/png;base64,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" - height="274" - width="360" - id="mfid8" /> - </defs> - - - <clipPath - id="mfid9"> - <rect - id="rect15028" - height="274" - width="360" - y="-0.5" - x="-0.5" /> - </clipPath> - - </defs><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview15050" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="5.2204443" - inkscape:cx="6.0589066" - inkscape:cy="48.202036" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="svg15048" /> - <v:documentProperties - v:langID="1033" - v:viewMarkup="false" /> - - <style - type="text/css" - id="style15008"> - <![CDATA[ - .st1 {fill:none;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75} - .st2 {fill:none;fill-rule:evenodd;font-size:12px;overflow:visible;stroke-linecap:square;stroke-miterlimit:3} - ]]> - </style> - - -<circle - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:#8dc53f;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99975121;stroke-linecap:square;stroke-miterlimit:3;stroke-dasharray:none" - r="37.500046" - cx="37.500011" - cy="37.500046" - id="circle1396" /><path - id="path15709-0" - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75000083px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 12.859611,60.009787 v -9.28254 l 7.701586,4.64127 z m 0,-35.73695 v -9.28254 l 7.701586,4.64127 z m 0,17.86849 v -9.28254 l 7.701586,4.64127 z m 31.645366,-24.5888 -19.914575,0.0264 0.0059,3.75 16.151387,-0.0234 -0.03076,14.49758 -16.12209,-0.0147 -0.0015,3.75001 16.114765,0.0146 -0.0293,13.88967 -16.138204,0.022 0.0059,3.75001 19.875024,-0.0278 0.03662,-17.63088 11.336439,0.0102 0.0015,-3.75 -11.329116,-0.0103 z m 15.559461,25.57649 v -11.44398 l 10.030202,5.72199 z" - inkscape:connector-curvature="0" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="100.032" height="100.032" viewBox="0 0 75 75" fill="none" fill-rule="evenodd" overflow="visible" stroke-linecap="square" stroke-miterlimit="3" color-interpolation-filters="sRGB"><circle r="37.5" cx="37.5" cy="37.5" color-interpolation-filters="sRGB" fill="#8dc53f"/><path d="M12.86 60v-9.283l7.702 4.64zm0-35.737V15l7.702 4.64zm0 17.868V32.86l7.702 4.64zm31.645-24.59L24.6 17.58l.006 3.75 16.15-.023-.03 14.498-16.122-.015-.002 3.75 16.115.015-.03 13.9-16.138.022.006 3.75 19.875-.028.037-17.63 11.336.01.002-3.75-11.33-.01zm15.56 25.576V31.685l10.03 5.722z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/vpc/PublicTag.svg b/src/main/webapp/img/lib/ibm/vpc/PublicTag.svg index 430e8f4bb4b48d8120c78aa9cfc53bdbee07415b..1f6be11adfdf3eb912582292edf641debab8c92f 100644 --- a/src/main/webapp/img/lib/ibm/vpc/PublicTag.svg +++ b/src/main/webapp/img/lib/ibm/vpc/PublicTag.svg @@ -1,75 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="196.42876mm" - height="196.42876mm" - viewBox="0 0 196.42876 196.42876" - version="1.1" - id="svg1355" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="Public_tag.svg"> - <defs - id="defs1349" /> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.49497475" - inkscape:cx="-164.32003" - inkscape:cy="109.41215" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata1352"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-7.5486803,-50.007427)"> - <rect - style="opacity:1;vector-effect:none;fill:#4c7bb4;fill-opacity:1;stroke:none;stroke-width:1.28708541;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:17.00787544;stroke-opacity:1;paint-order:normal" - id="rect1368" - width="196.42876" - height="196.42876" - x="7.5486803" - y="50.007427" - rx="8.3668938" - ry="8.3668938" /> - <path - inkscape:connector-curvature="0" - id="path3431" - d="m 163.59595,191.40588 h -38.42844 c -5.32672,0 -9.51199,4.18526 -9.51199,9.51203 0,0 0,0 0,0 v 14.83878 h 57.83292 v -14.45828 c -0.3805,-5.32677 -4.56577,-9.51202 -9.89249,-9.89253 0,0 0,0 0,0 z m -77.237358,0 H 47.93014 c -5.326709,0 -9.511991,4.18526 -9.892461,9.51203 0,0 0,0 0,0.38108 v 14.45826 h 57.832904 v -14.45826 c 0.380505,-5.32677 -3.804792,-9.51203 -9.511991,-9.89253 0.380505,0 0.380505,0 0,0 z m 43.374688,-86.74937 c 0,-13.316765 -11.03392,-23.970148 -24.35072,-23.970148 -13.316769,0 -23.970216,11.033887 -23.970216,24.350658 0,13.31676 10.653447,23.97029 23.970216,23.97029 13.69727,0 24.35072,-10.65353 24.35072,-24.3508 0,0.38108 0,0.38108 0,0 z m -23.97023,19.40454 c -10.653433,0 -19.404458,-8.751 -19.404458,-19.40454 0,-10.653383 8.751025,-19.404392 19.404458,-19.404392 10.65343,0 19.40446,8.751009 19.40446,19.404392 0,10.65354 -8.75103,19.40454 -19.40446,19.40454 z m 14.45822,33.86267 c 0,13.31676 10.65344,23.97015 23.97022,23.97015 13.3168,0 23.97022,-10.65339 23.97022,-23.97015 0,-13.31677 -10.65342,-23.97029 -23.97022,-23.97029 -13.31678,0 -23.97022,10.65352 -23.97022,23.97029 0,0 0,0 0,0 z m 23.97022,-19.40454 c 10.65344,0 19.40446,8.75116 19.40446,19.40454 0,10.65338 -8.75102,19.4044 -19.40446,19.4044 -10.65342,0 -19.40446,-8.75102 -19.40446,-19.4044 0.3805,-10.65338 8.75104,-19.40454 19.40446,-19.40454 z m -77.237359,43.37469 c 13.316775,0 23.970222,-10.65339 23.970222,-23.97015 0,-13.31677 -10.653447,-23.97029 -23.970222,-23.97029 -13.316792,0 -23.970221,10.65352 -23.970221,23.97029 0,13.31676 10.653429,23.97015 23.970221,23.97015 0,0 0,0 0,0 z m 0,-43.37469 c 10.653421,0 19.404461,8.37066 19.404461,19.02404 0,10.65338 -8.370561,19.40453 -19.02399,19.40453 -10.653428,0 -19.404462,-8.37065 -19.404462,-19.02403 0,0 0,0 0,0 0,-10.65338 8.751034,-19.40454 19.023991,-19.40454 z" - style="fill:#ffffff;stroke-width:3.80479693" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="742.409" height="742.409" viewBox="0 0 196.429 196.429"><rect width="196.429" height="196.429" rx="8.367" fill="#4c7bb4" paint-order="normal"/><path d="M156.047 141.4H117.62c-5.327 0-9.512 4.185-9.512 9.512v14.84h57.833V151.29c-.38-5.327-4.566-9.512-9.892-9.893zm-77.237 0H40.38c-5.327 0-9.512 4.185-9.892 9.512v14.84h57.833v-14.458c.38-5.327-3.805-9.512-9.512-9.893zm43.375-86.75c0-13.317-11.034-23.97-24.35-23.97s-23.97 11.034-23.97 24.35A23.87 23.87 0 0 0 97.834 79c13.697 0 24.35-10.654 24.35-24.35 0 .38 0 .38 0 0zm-23.97 19.405c-10.653 0-19.404-8.75-19.404-19.405s8.75-19.404 19.404-19.404 19.404 8.75 19.404 19.404-8.75 19.405-19.404 19.405zm14.458 33.863a23.87 23.87 0 0 0 23.97 23.97 23.87 23.87 0 0 0 23.97-23.97 23.87 23.87 0 0 0-23.97-23.97 23.87 23.87 0 0 0-23.97 23.97zm23.97-19.405c10.653 0 19.404 8.75 19.404 19.405s-8.75 19.404-19.404 19.404-19.404-8.75-19.404-19.404c.38-10.653 8.75-19.405 19.404-19.405zm-77.237 43.375a23.87 23.87 0 0 0 23.97-23.97 23.87 23.87 0 0 0-23.97-23.97 23.87 23.87 0 0 0-23.97 23.97 23.87 23.87 0 0 0 23.97 23.97zm0-43.375c10.653 0 19.404 8.37 19.404 19.024s-8.37 19.405-19.024 19.405-19.404-8.37-19.404-19.024 8.75-19.405 19.024-19.405z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/vpc/RegionTag.svg b/src/main/webapp/img/lib/ibm/vpc/RegionTag.svg index 62dbf9c122ecabbf2d2b1690add96985e6289e67..7a4af198c7ef8e137bc65247cb5f442186565516 100644 --- a/src/main/webapp/img/lib/ibm/vpc/RegionTag.svg +++ b/src/main/webapp/img/lib/ibm/vpc/RegionTag.svg @@ -1,75 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="196.42876mm" - height="196.42876mm" - viewBox="0 0 196.42876 196.42876" - version="1.1" - id="svg1355" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="Region_tag.svg"> - <defs - id="defs1349" /> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.49497475" - inkscape:cx="376.08002" - inkscape:cy="279.64655" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata1352"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-7.5486803,-50.007427)"> - <rect - style="opacity:1;vector-effect:none;fill:#168733;fill-opacity:1;stroke:none;stroke-width:1.28708541;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:17.00787544;stroke-opacity:1;paint-order:normal" - id="rect1368" - width="196.42876" - height="196.42876" - x="7.5486803" - y="50.007427" - rx="8.3668938" - ry="8.3668938" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:34.01574707;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 174.41992 76.691406 L 174.41992 640.97852 L 208.43555 640.97852 L 208.43555 374.41797 L 620.00586 374.41797 L 484.20117 236.99023 L 621.42969 104.68359 L 208.43555 104.68359 L 208.43555 76.691406 L 174.41992 76.691406 z M 208.43555 138.69922 L 537.14453 138.69922 L 435.79688 236.39844 L 538.56836 340.40234 L 208.43555 340.40234 L 208.43555 138.69922 z " - transform="matrix(0.26458333,0,0,0.26458333,7.5486803,50.007427)" - id="path2163" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="742.409" height="742.409" viewBox="0 0 196.429 196.429"><rect width="196.429" height="196.429" rx="8.367" fill="#168733" paint-order="normal"/><path d="M46.148 20.292v149.3h9V99.065h108.895l-35.932-36.36 36.308-35.006H55.148v-7.406h-9zm9 16.406h86.97l-26.815 25.85 27.192 27.518H55.148V36.698z" dominant-baseline="auto" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/vpc/Router.svg b/src/main/webapp/img/lib/ibm/vpc/Router.svg index b1685afdfe6955ef3c2d8d5073efc1499a33f3dd..39e86f84e803bbb2ecb64e2321e9c5c94848d409 100644 --- a/src/main/webapp/img/lib/ibm/vpc/Router.svg +++ b/src/main/webapp/img/lib/ibm/vpc/Router.svg @@ -1,125 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generated by Microsoft Visio, SVG Export Router.svg Page-1 --> - -<svg - xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="1.0416666in" - height="1.0416666in" - viewBox="0 0 74.99995 74.999997" - xml:space="preserve" - class="st2" - version="1.1" - id="svg16439" - sodipodi:docname="Router.svg" - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:none;fill-rule:evenodd;stroke-linecap:square;stroke-miterlimit:3" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata16445"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs16443"> - - - - - - - - - - - - - - <defs - id="defs16408"> - <path - id="mfid37" - d="m 642560,101550 c 147020,135380 147020,354900 0,490280 -146980,135420 -385320,135420 -532300,0 -147025,-135380 -147025,-354900 0,-490280 146980,-135412 385320,-135412 532300,0 z" - inkscape:connector-curvature="0" /> - </defs> - - - - - - - - - - - <defs - id="defs16413"> - <image - xlink:href="data:image/png;base64,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" - height="311" - width="312" - id="mfid38" /> - </defs> - - - <clipPath - id="mfid39"> - <rect - id="rect16419" - height="311" - width="312" - y="-0.5" - x="-0.5" /> - </clipPath> - - </defs><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview16441" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="3.6983228" - inkscape:cx="14.172037" - inkscape:cy="12.817032" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="svg16439" /> - <v:documentProperties - v:langID="1033" - v:viewMarkup="false" /> - - <style - type="text/css" - id="style16399"> - <![CDATA[ - .st1 {fill:none;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75} - .st2 {fill:none;fill-rule:evenodd;font-size:12px;overflow:visible;stroke-linecap:square;stroke-miterlimit:3} - ]]> - </style> - - -<circle - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:#8dc53f;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99974972;stroke-linecap:square;stroke-miterlimit:3;stroke-dasharray:none" - r="37.499989" - cx="37.499989" - cy="37.499989" - id="circle1396" /><path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.74999881;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 37.523406,11.463863 -10.523434,10.27734 2.620605,2.68359 6.02783,-5.88867 v 37.88964 l -5.986814,-5.8916 -2.630859,2.67187 10.492672,10.33008 10.494138,-10.33008 -2.630858,-2.67187 -5.988281,5.89306 v -37.8911 l 6.029296,5.88867 2.619139,-2.68359 z m -15.84814,15.45263 -2.645507,2.65576 5.932616,5.90918 -13.605465,0.0205 0.0059,3.75 13.598141,-0.0191 -5.93408,5.93408 2.651366,2.65137 10.4707,-10.4707 z m 31.649405,0.0132 -10.47363,10.43115 10.470701,10.4707 2.651366,-2.65137 -5.934081,-5.93408 13.59814,0.019 0.0059,-3.75 -13.605461,-0.0205 5.932616,-5.90918 z" - id="path17102" - inkscape:connector-curvature="0" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="100.032" height="100.032" viewBox="0 0 75 75" fill="none" fill-rule="evenodd" overflow="visible" stroke-linecap="square" stroke-miterlimit="3" color-interpolation-filters="sRGB"><circle r="37.5" cx="37.5" cy="37.5" color-interpolation-filters="sRGB" fill="#8dc53f"/><path d="M37.523 11.464L27 21.74l2.62 2.684 6.028-5.89v37.9l-5.987-5.892-2.63 2.672 10.493 10.33 10.494-10.33-2.63-2.672-5.988 5.893v-37.89l6.03 5.89 2.62-2.684zM21.675 26.916l-2.646 2.656 5.933 5.91-13.605.02.006 3.75 13.598-.02-5.934 5.934 2.65 2.65 10.47-10.47zm31.65.013L42.85 37.36l10.47 10.47 2.65-2.65-5.934-5.934 13.598.02.006-3.75-13.605-.02 5.933-5.91z" dominant-baseline="auto" fill="#fff" fill-rule="nonzero"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/vpc/Rules.svg b/src/main/webapp/img/lib/ibm/vpc/Rules.svg index 659c68ec0923ce8e6d2dc498ba614d0454fda0c2..01fbcfad7b76167a5c435399b4080ce64e5b05da 100644 --- a/src/main/webapp/img/lib/ibm/vpc/Rules.svg +++ b/src/main/webapp/img/lib/ibm/vpc/Rules.svg @@ -1,57 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - contentScriptType="text/ecmascript" - zoomAndPan="magnify" - contentStyleType="text/css" - id="svg903" - sodipodi:docname="Rules.svg" - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:none;fill-rule:evenodd;stroke-linecap:square;stroke-miterlimit:3" - version="1.1" - width="1.0416666in" - xml:space="preserve" - preserveAspectRatio="xMidYMid meet" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - viewBox="0 0 74.99995 74.999941" - height="1.0416666in" - class="st2"><metadata - id="metadata1210"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs1208" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview1206" - showgrid="false" - inkscape:zoom="4.3350002" - inkscape:cx="-8.9819516" - inkscape:cy="37.570164" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="svg903" /> - <circle - fill="#e2002f" - r="37.499973" - cx="37.499973" - cy="37.499973" - id="circle1201" - style="fill:#92c24b;fill-opacity:1" /> - <path - fill="#ffffff" - d="m 27.682102,43.556497 c -2.793488,0 -5.161955,1.962769 -5.806637,4.570309 h -6.146479 v 2.833006 h 6.146479 c 0.645366,2.607012 3.013828,4.570309 5.806637,4.570309 2.79276,0 5.162265,-1.963365 5.808101,-4.570309 H 60.885691 V 48.126806 H 33.491668 c -0.645023,-2.60765 -3.016,-4.570309 -5.809566,-4.570309 z m 0,4.250973 c 0.983398,0 1.735839,0.750975 1.735839,1.734374 0,0.983398 -0.752441,1.737303 -1.735839,1.737303 -0.983399,0 -1.734373,-0.753905 -1.734373,-1.737303 0,-0.983399 0.750974,-1.734374 1.734373,-1.734374 z M 49.048297,31.411055 c -2.792808,0 -5.16127,1.962253 -5.806637,4.568844 H 15.728986 v 2.835936 H 43.24166 c 0.645673,2.606167 3.014132,4.567379 5.806637,4.567379 2.792456,0 5.161958,-1.96128 5.808101,-4.567379 h 6.029293 v -2.835936 h -6.029293 c -0.645837,-2.606522 -3.015342,-4.568844 -5.808101,-4.568844 z m 0,4.252438 c 0.983398,0 1.735839,0.750976 1.735839,1.734374 0,0.983398 -0.752441,1.734374 -1.735839,1.734374 -0.983398,0 -1.734374,-0.750976 -1.734374,-1.734374 0,-0.983398 0.750976,-1.734374 1.734374,-1.734374 z M 27.682102,19.26415 c -2.793488,0 -5.161955,1.96277 -5.806637,4.570309 h -6.146479 v 2.833006 h 6.146479 c 0.645366,2.607013 3.013828,4.570309 5.806637,4.570309 2.792759,0 5.162264,-1.963365 5.808101,-4.570309 H 60.885691 V 23.834459 H 33.491667 C 32.846645,21.226809 30.475668,19.26415 27.682102,19.26415 Z m 0,4.250974 c 0.983398,0 1.735838,0.750975 1.735838,1.734373 0,0.983398 -0.75244,1.737304 -1.735838,1.737304 -0.983399,0 -1.734374,-0.753906 -1.734374,-1.737304 0,-0.983398 0.750975,-1.734373 1.734374,-1.734373 z" - id="path1203" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" contentScriptType="text/ecmascript" zoomAndPan="magnify" contentStyleType="text/css" width="100.032" preserveAspectRatio="xMidYMid meet" viewBox="0 0 75 75" height="100.032" overflow="visible" color-interpolation-filters="sRGB" fill="none" fill-rule="evenodd" stroke-linecap="square" stroke-miterlimit="3"><circle fill="#92c24b" r="37.5" cx="37.5" cy="37.5"/><path fill="#fff" d="M27.682 43.556c-2.793 0-5.162 1.963-5.807 4.57H15.73v2.833h6.146c.645 2.607 3.014 4.57 5.807 4.57s5.162-1.963 5.808-4.57h27.395v-2.833H33.492c-.645-2.608-3.016-4.57-5.8-4.57zm0 4.25a1.7 1.7 0 0 1 1.736 1.734c0 .983-.752 1.737-1.736 1.737s-1.734-.754-1.734-1.737a1.7 1.7 0 0 1 1.734-1.734zM49.048 31.41c-2.793 0-5.16 1.962-5.807 4.57H15.73v2.836h27.513c.646 2.606 3.014 4.567 5.807 4.567s5.162-1.96 5.808-4.567h6.03V35.98h-6.03c-.646-2.607-3.015-4.57-5.808-4.57zm0 4.252a1.7 1.7 0 0 1 1.736 1.734 1.7 1.7 0 0 1-1.736 1.734 1.7 1.7 0 0 1-1.734-1.734 1.7 1.7 0 0 1 1.734-1.734zm-21.366-16.4c-2.793 0-5.162 1.963-5.807 4.57H15.73v2.833h6.146c.645 2.607 3.014 4.57 5.807 4.57s5.162-1.963 5.808-4.57h27.395v-2.833H33.492c-.645-2.608-3.016-4.57-5.8-4.57zm0 4.25a1.7 1.7 0 0 1 1.736 1.734c0 .983-.752 1.737-1.736 1.737s-1.734-.754-1.734-1.737a1.7 1.7 0 0 1 1.734-1.734z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/vpc/SecurityGroupRules.svg b/src/main/webapp/img/lib/ibm/vpc/SecurityGroupRules.svg index 2126a047a0e916f8772ed5297a60ab45b115f8bb..38541a9ea1b32a290a372f405b417288bb763681 100644 --- a/src/main/webapp/img/lib/ibm/vpc/SecurityGroupRules.svg +++ b/src/main/webapp/img/lib/ibm/vpc/SecurityGroupRules.svg @@ -1,125 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generated by Microsoft Visio, SVG Export SecurityGroupRules.svg Page-1 --> - -<svg - xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="1.0416666in" - height="1.0416666in" - viewBox="0 0 74.99995 74.99994" - xml:space="preserve" - class="st2" - version="1.1" - id="svg1151" - sodipodi:docname="SecurityGroupRules.svg" - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:none;fill-rule:evenodd;stroke-linecap:square;stroke-miterlimit:3" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata1157"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs1155"> - - - - - - - - - - - - - - <defs - id="defs1120"> - <path - id="mfid34" - d="m 603540,103560 c 138090,138060 138090,361920 0,499980 -138060,138090 -361920,138090 -499980,0 -138092,-138060 -138092,-361920 0,-499980 138060,-138092 361920,-138092 499980,0 z" - inkscape:connector-curvature="0" /> - </defs> - - - - - - - - - - - <defs - id="defs1125"> - <image - xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEwAAABOCAYAAACKX/AgAAAACXBIWXMAABcRAAAXEQHKJvM/AAACyklEQVR42u2b3XHiMBSFDxneoQPoYN0BTgfuYL0VLNsBVBC2gnU6cCpYp4I4HZgOTAXah72eeDLElhSJWNa5Mxp+RjLMx9HV0bVYKKXA0I87IiAwAiMwAiMwBoERGIERGIExCIzACIzACCyiWHq6bgogA5D03qsBFPIYbCwcV1y3AmU30OcJQA6gjR1YAqACsNLoe5b+bczAagDfDPq/vpuyUSX9gyEsSP88VoU1ADYW44JTma7CKgBqoH0E6wjgHsDjgMrURFr6lbaiU8+hBzy1VGE0xnVNp28WGwClKKucg7pcJn1TS9E3sVmMCjtZjitiNq7VyJYoeHW5BrYWaDpT81VyW3BbI5dJvxUIv0f6HUOF5aNa0a9aZPLYbcobWS1dg0quTO0SnspIi4AP1CWy2OwGKiK5/FjRA8sB/NHs+8PlahwisATAi+GYe1dKCxGYqX3ppud26lsjX+raWYzbuPJ8ugqrLL/oreIiC0CL/xWSlcU1tKbtEvOIfS+xtwYLwuyn5JBpvvbcecxFYQXe7g8cpuD0E0yjIJgAeLAcexzJUbWOOkO0FQ3Mi5EXsRWfnq4h5rC9xZiDq9wWIrAS4xWRfjzCvsA5m1VyL3vEy8g0/AXHN4t95rBE2lbyTg33JZe1AEl7i1Iryb3wYjGUUq5brpRq1PVolFKZh8+8WXOtsALAd828koeYC+6+ABak3ylEYK4UlgL462vDO0eF7S3H5XNV2AnDx5KG6urdPu8jd/48IatSuwJWwa7K2R3LXIu1WE1YPFrpwadxbXo+qJXXwYdPYLtejsphd1gl2Bw2Vt4pLafbeUKJX6u8szS42JgH+2np3ao5KkxnT2ea1IM8q+8qh7Uwu411kf5Rn96pZGk+aygrRaD/OfJR3ulKLtk77/YsOauIYZVk3MCHERiDwAiMwAiMwAiMQWAERmAERmAMAjOPf/yx2l+GzFUUAAAAAElFTkSuQmCC" - height="78" - width="76" - id="mfid35" /> - </defs> - - - <clipPath - id="mfid36"> - <rect - id="rect1131" - height="78" - width="76" - y="-0.5" - x="-0.5" /> - </clipPath> - - </defs><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview1153" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="6.8249218" - inkscape:cx="36.34932" - inkscape:cy="45.58882" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="svg1151" /> - <v:documentProperties - v:langID="1033" - v:viewMarkup="false" /> - - <style - type="text/css" - id="style1111"> - <![CDATA[ - .st1 {fill:none;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75} - .st2 {fill:none;fill-rule:evenodd;font-size:12px;overflow:visible;stroke-linecap:square;stroke-miterlimit:3} - ]]> - </style> - - -<circle - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:#e2002f;fill-opacity:1;fill-rule:evenodd;stroke-width:1;stroke-linecap:square;stroke-miterlimit:3" - r="37.499973" - cx="37.499973" - cy="37.499973" - id="circle826" /><path - inkscape:connector-curvature="0" - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:#ffffff;fill-rule:evenodd;stroke-width:1;stroke-linecap:square;stroke-miterlimit:3" - d="m 27.682102,43.556498 c -2.793487,0 -5.161955,1.96277 -5.806637,4.57031 h -6.146478 v 2.833006 h 6.146478 c 0.645366,2.607012 3.013828,4.570309 5.806637,4.570309 2.792761,0 5.162265,-1.963365 5.808101,-4.570309 H 60.885692 V 48.126808 H 33.491669 c -0.645024,-2.60765 -3.016001,-4.57031 -5.809567,-4.57031 z m 0,4.250974 c 0.983398,0 1.73584,0.750975 1.73584,1.734374 0,0.983398 -0.752442,1.737303 -1.73584,1.737303 -0.983399,0 -1.734373,-0.753905 -1.734373,-1.737303 0,-0.983399 0.750974,-1.734374 1.734373,-1.734374 z M 49.048298,31.411056 c -2.792808,0 -5.161271,1.962253 -5.806638,4.568844 H 15.728987 v 2.835936 H 43.24166 c 0.645673,2.606168 3.014133,4.567379 5.806638,4.567379 2.792456,0 5.161958,-1.96128 5.808101,-4.567379 h 6.029293 V 35.9799 h -6.029293 c -0.645837,-2.606522 -3.015342,-4.568844 -5.808101,-4.568844 z m 0,4.252438 c 0.983398,0 1.735838,0.750977 1.735838,1.734375 0,0.983398 -0.75244,1.734373 -1.735838,1.734373 -0.983399,0 -1.734375,-0.750975 -1.734375,-1.734373 0,-0.983398 0.750976,-1.734375 1.734375,-1.734375 z M 27.682102,19.264151 c -2.793487,0 -5.161955,1.962771 -5.806637,4.57031 h -6.146478 v 2.833006 h 6.146478 c 0.645366,2.607013 3.013828,4.570309 5.806637,4.570309 2.792759,0 5.162265,-1.963365 5.808101,-4.570309 H 60.885692 V 23.834461 H 33.491667 c -0.645022,-2.60765 -3.015999,-4.57031 -5.809565,-4.57031 z m 0,4.250974 c 0.983398,0 1.735838,0.750975 1.735838,1.734373 0,0.983399 -0.75244,1.737304 -1.735838,1.737304 -0.983399,0 -1.734373,-0.753905 -1.734373,-1.737304 0,-0.983398 0.750974,-1.734373 1.734373,-1.734373 z" - id="path828" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="100.032" height="100.032" viewBox="0 0 75 75" fill="none" fill-rule="evenodd" overflow="visible" stroke-linecap="square" stroke-miterlimit="3" color-interpolation-filters="sRGB"><style><![CDATA[.B{color-interpolation-filters:sRGB}]]></style><circle r="37.5" cx="37.5" cy="37.5" fill="#e2002f" class="B"/><path d="M27.682 43.556c-2.793 0-5.162 1.963-5.807 4.57H15.73v2.833h6.146c.645 2.607 3.014 4.57 5.807 4.57s5.162-1.963 5.808-4.57h27.395v-2.833H33.492c-.645-2.608-3.016-4.57-5.8-4.57zm0 4.25a1.7 1.7 0 0 1 1.736 1.734c0 .983-.752 1.737-1.736 1.737s-1.734-.754-1.734-1.737a1.7 1.7 0 0 1 1.734-1.734zM49.048 31.41c-2.793 0-5.16 1.962-5.807 4.57H15.73v2.836h27.513c.646 2.606 3.014 4.567 5.807 4.567s5.162-1.96 5.808-4.567h6.03V35.98h-6.03c-.646-2.607-3.015-4.57-5.808-4.57zm0 4.252a1.7 1.7 0 0 1 1.736 1.734 1.7 1.7 0 0 1-1.736 1.734 1.7 1.7 0 0 1-1.734-1.734 1.7 1.7 0 0 1 1.734-1.734zm-21.366-16.4c-2.793 0-5.162 1.963-5.807 4.57H15.73v2.833h6.146c.645 2.607 3.014 4.57 5.807 4.57s5.162-1.963 5.808-4.57h27.395v-2.833H33.492c-.645-2.608-3.016-4.57-5.8-4.57zm0 4.25a1.7 1.7 0 0 1 1.736 1.734c0 .983-.752 1.737-1.736 1.737s-1.734-.754-1.734-1.737a1.7 1.7 0 0 1 1.734-1.734z" fill="#fff" class="B"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/vpc/Subnet.svg b/src/main/webapp/img/lib/ibm/vpc/Subnet.svg index add7d046c0d3c1349a25ebe76c74210c0d56020a..81e128fd5b3d5206ac99572157771abe0e34810d 100644 --- a/src/main/webapp/img/lib/ibm/vpc/Subnet.svg +++ b/src/main/webapp/img/lib/ibm/vpc/Subnet.svg @@ -1,71 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="72.336151mm" - height="99.648186mm" - viewBox="0 0 72.336151 99.648186" - version="1.1" - id="svg3687" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="Subnet.svg"> - <defs - id="defs3681" /> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.49497475" - inkscape:cx="355.94126" - inkscape:cy="-60.369484" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata3684"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-42.41191,-92.229725)"> - <path - style="opacity:1;vector-effect:none;fill:#af1f23;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - d="m 78.565258,92.229725 c -14.079772,0 -26.865026,12.364995 -26.865026,26.876915 v 12.46229 a 36.16829,36.16829 0 0 0 -9.288322,24.14064 36.16829,36.16829 0 0 0 36.168334,36.16834 36.16829,36.16829 0 0 0 36.167816,-36.16834 36.16829,36.16829 0 0 0 -9.31726,-24.16803 v -12.4349 c 0,-14.39479 -12.55675,-26.876915 -26.865542,-26.876915 z m 0,8.000025 c 9.379595,0 18.865515,9.40865 18.865515,18.87689 v 5.78879 a 36.16829,36.16829 0 0 0 -18.850529,-5.35368 36.16829,36.16829 0 0 0 -18.879984,5.35368 v -5.78879 c 0,-9.49496 9.796235,-18.87689 18.864998,-18.87689 z" - id="path4243" - inkscape:connector-curvature="0" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 96.147452,138.10452 -24.388672,23.97461 -10.574218,-10.29102 -6.97461,7.16602 17.583984,17.11328 31.363284,-30.83203 z" - id="path4247" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="273.396" height="376.622" viewBox="0 0 72.336 99.648"><path d="M36.153 0C22.073 0 9.288 12.365 9.288 26.877V39.34a36.17 36.17 0 0 0 1.305 49.716 36.17 36.17 0 0 0 25.575 10.593c19.975 0 36.168-16.193 36.168-36.168a36.17 36.17 0 0 0-9.317-24.168V26.877C63.02 12.482 50.462 0 36.153 0zm0 8c9.38 0 18.866 9.41 18.866 18.877v5.79a36.17 36.17 0 0 0-18.851-5.354 36.17 36.17 0 0 0-18.88 5.354v-5.79C17.288 17.382 27.084 8 36.153 8z" fill="#af1f23" paint-order="normal"/><path d="M53.735 45.875L29.347 69.85l-10.574-10.29-6.975 7.166 17.584 17.113 31.363-30.832z" dominant-baseline="auto" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/vpc/SubnetTag.svg b/src/main/webapp/img/lib/ibm/vpc/SubnetTag.svg index ba5cb5765efebed398612aaa76bc20305dcd23d7..5f9f0ff8004686a52687bb03923bc7020cf224f3 100644 --- a/src/main/webapp/img/lib/ibm/vpc/SubnetTag.svg +++ b/src/main/webapp/img/lib/ibm/vpc/SubnetTag.svg @@ -1,108 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="141.62221mm" - height="192.92336mm" - viewBox="0 0 141.62221 192.92336" - version="1.1" - id="svg1355" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="Subnet_tag.svg"> - <defs - id="defs1349" /> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.7" - inkscape:cx="249.84363" - inkscape:cy="414.58905" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata1352"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-34.494965,-51.906654)"> - <rect - style="opacity:1;vector-effect:none;fill:#168733;fill-opacity:1;stroke:none;stroke-width:0.9279694;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:17.00787544;stroke-opacity:1;paint-order:normal" - id="rect1368" - width="141.62221" - height="141.62221" - x="34.494965" - y="51.906654" - rx="6.0324059" - ry="6.0324059" /> - <text - xml:space="preserve" - style="font-style:normal;font-weight:normal;font-size:22.57777786px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332" - x="70.62429" - y="229.33093" - id="text2291"><tspan - sodipodi:role="line" - id="tspan2289" - x="70.62429" - y="249.30698" - style="font-size:22.57777786px;stroke-width:0.26458332" /></text> - <text - xml:space="preserve" - style="font-style:normal;font-weight:normal;font-size:25.39999962px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332" - x="89.065887" - y="234.14178" - id="text2295"><tspan - sodipodi:role="line" - id="tspan2293" - x="89.065887" - y="256.61484" - style="font-size:25.39999962px;stroke-width:0.26458332" /></text> - <text - xml:space="preserve" - style="font-style:normal;font-weight:normal;font-size:25.39999962px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332" - x="49.242725" - y="244.03075" - id="text2299"><tspan - sodipodi:role="line" - id="tspan2297" - x="49.242725" - y="244.03075" - style="font-size:56.44444275px;stroke-width:0.26458332">ACL</tspan></text> - <path - id="path3013" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.50189018;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 74.939688,115.91675 h 6.213702 v -13.87654 c 0,-16.316287 11.929425,-25.996505 25.03041,-25.996505 12.76508,0 24.50346,10.189894 24.50346,26.391675 v 13.48137 h 6.03805 v 49.4021 H 74.939688 Z m 14.271742,0 h 33.19823 v -13.56912 c 0,-11.461397 -8.31325,-18.09216 -16.75286,-18.09216 -7.969307,0 -16.44537,7.044639 -16.44537,16.9504 z m 34.44887,7.45686 a 2.7512203,2.7512203 0 0 0 -1.86735,0.88356 L 101.9919,145.18058 90.639457,133.45564 a 2.7526886,2.7526886 0 1 0 -3.954486,3.83029 l 15.349909,15.85134 23.75547,-25.09756 a 2.7512203,2.7512203 0 0 0 -2.13005,-4.6661 z" - inkscape:connector-curvature="0" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="535.264" height="729.158" viewBox="0 0 141.622 192.923"><rect width="141.622" height="141.622" rx="6.032" fill="#168733" paint-order="normal"/><text xml:space="preserve" x="49.243" y="244.031" font-size="25.4" font-family="sans-serif" letter-spacing="0" word-spacing="0"><tspan x="14.748" y="192.124" font-size="56.444">ACL</tspan></text><path d="M40.445 64h6.214V50.133c0-16.316 11.93-25.997 25.03-25.997 12.765 0 24.503 10.2 24.503 26.392V64h6.038v49.402H40.445zm14.272 0h33.198V50.44c0-11.46-8.313-18.092-16.753-18.092-7.97 0-16.445 7.045-16.445 16.95zm34.45 7.457a2.75 2.75 0 0 0-1.867.884l-19.8 20.923L56.144 81.55c-.684-.708-1.694-.998-2.65-.76s-1.7.97-1.98 1.917-.012 1.966.674 2.672l15.35 15.85 23.755-25.098a2.75 2.75 0 0 0-2.13-4.666z" dominant-baseline="auto" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/vpc/VPCTag.svg b/src/main/webapp/img/lib/ibm/vpc/VPCTag.svg index 19590f8e436314d0b28fcfd04da0b2c8df8fc8ab..18880c9de7fcb1d45c11be7ef4033b3a8c9e31f4 100644 --- a/src/main/webapp/img/lib/ibm/vpc/VPCTag.svg +++ b/src/main/webapp/img/lib/ibm/vpc/VPCTag.svg @@ -1,75 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="196.42876mm" - height="196.42876mm" - viewBox="0 0 196.42876 196.42876" - version="1.1" - id="svg1355" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="VPC_tag.svg"> - <defs - id="defs1349" /> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.98994949" - inkscape:cx="336.33391" - inkscape:cy="360.80692" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata1352"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-7.5486803,-50.007427)"> - <rect - style="opacity:1;vector-effect:none;fill:#4c7bb4;fill-opacity:0.9748744;stroke:none;stroke-width:1.28708541;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:17.00787544;stroke-opacity:1;paint-order:normal" - id="rect1368" - width="196.42876" - height="196.42876" - x="7.5486803" - y="50.007427" - rx="8.3668938" - ry="8.3668938" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:18.89763832;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 373.19922 62.171875 L 373.19922 159.33203 L 392.09766 159.33203 L 392.09766 62.171875 L 373.19922 62.171875 z M 228.17383 105.28906 L 211.41016 114.00781 L 259.55469 206.53125 L 276.32031 197.81445 L 228.17383 105.28906 z M 540.22852 108.26367 L 495.00781 191.80469 L 511.625 200.79688 L 556.85352 117.26367 L 540.22852 108.26367 z M 384.01172 208.42578 C 351.82105 208.32586 320.63195 217.36572 293.3418 232.38281 L 293.23828 232.43555 L 293.13477 232.49414 C 245.30205 260.40198 216.8704 300.48067 201.71875 343.93945 C 186.5671 387.39828 184.35625 434.20164 187.76562 477.12305 L 206.60547 475.625 C 203.33434 434.44402 205.61723 390.14729 219.56055 350.1543 C 233.49776 310.17884 258.74453 274.46828 302.60547 248.85938 C 357.42631 218.75419 426.09179 214.50917 487.36719 268.4668 L 499.85742 254.27734 C 466.31752 224.74291 429.7465 210.98825 394.03125 208.75391 C 390.68295 208.54444 387.34179 208.43612 384.01172 208.42578 z M 662.35547 234.9082 L 586.30664 289.27539 L 597.29883 304.65234 L 673.33984 250.27734 L 662.35547 234.9082 z M 107.06055 235.27734 L 96.193359 250.74219 L 175.35742 306.37109 L 186.22266 290.90625 L 107.06055 235.27734 z M 390.08594 304.08008 C 348.8476 304.08008 311.29688 334.54915 311.29688 385.9082 L 311.29688 429.58789 L 291.73828 429.58789 L 291.73828 585.09375 L 486.22266 585.09375 L 486.22266 429.58789 L 467.21484 429.58789 L 467.21484 387.15234 C 467.21484 374.45516 464.92361 362.93337 460.86328 352.78516 C 480.87976 338.59 506.14542 327.96484 535.75586 327.96484 C 567.23245 327.96484 597.75807 346.11425 620.67773 375.57812 C 643.59739 405.04196 658.45117 445.48898 658.45117 487.80469 C 658.45117 528.65594 642.14391 566.60657 619.4082 594.11133 C 596.67253 621.61608 567.5796 637.99609 544.32617 637.99609 L 209.32812 637.99609 C 180.74692 637.99609 154.8981 620.23357 135.97461 596.39844 C 117.05111 572.5633 105.91602 542.69742 105.91602 524.22656 C 105.91602 470.40473 124.28194 441.20914 157.82617 403.35547 L 143.68164 390.82031 C 109.08127 429.86582 87.017578 465.86472 87.017578 524.22656 C 87.017578 549.5929 99.886327 581.33767 121.17383 608.15039 C 142.46133 634.96312 173.03903 656.89453 209.32812 656.89453 L 544.32617 656.89453 C 575.9528 656.89453 608.64264 636.79363 633.97266 606.15039 C 659.30267 575.50712 677.34766 533.64711 677.34766 487.80469 C 677.34766 441.10284 661.20748 396.89729 635.5957 363.97266 C 609.98392 331.04806 574.43921 309.06641 535.75586 309.06641 C 502.317 309.06641 474.10183 320.46524 451.67383 335.96094 C 437.17778 315.66525 414.22158 304.08008 390.08594 304.08008 z M 388.42578 329.92773 C 404.86309 329.92773 421.14166 337.92722 431.16992 352.56641 C 418.14214 364.84609 408.08946 377.95834 401.22852 389.35938 L 417.42383 399.10352 C 422.57673 390.54076 429.96334 380.72039 439.35547 371.16406 C 440.52539 376.01987 441.16016 381.2636 441.16016 386.87695 L 441.16016 429.58789 L 336.66016 429.58789 L 336.66016 383.2832 C 336.66016 352.10259 363.34057 329.92773 388.42578 329.92773 z M 445.96875 453.05469 A 8.6600935 8.6600935 0 0 1 451.80078 467.74805 L 377.02539 546.74805 L 328.70898 496.85352 A 8.6647117 8.6647117 0 1 1 341.15625 484.79688 L 376.89062 521.70312 L 439.21875 455.8418 A 8.6600935 8.6600935 0 0 1 445.09766 453.06055 A 8.6600935 8.6600935 0 0 1 445.96875 453.05469 z " - transform="matrix(0.26458333,0,0,0.26458333,7.5486803,50.007427)" - id="path1382" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="742.409" height="742.409" viewBox="0 0 196.429 196.429"><rect width="196.429" height="196.429" rx="8.367" fill="#4c7bb4" fill-opacity=".975" paint-order="normal"/><path d="M98.742 16.45v25.707h5V16.45h-5zM60.37 27.858l-4.435 2.307 12.738 24.48 4.436-2.306-12.74-24.48zm82.564.787L130.97 50.75l4.397 2.38 11.967-22.1-4.4-2.38zm-41.332 26.5c-8.517-.026-16.77 2.365-24 6.34l-.027.014-.027.016C64.902 68.898 57.38 79.503 53.37 91s-4.594 23.882-3.692 35.238l4.985-.396c-.865-10.896-.26-22.616 3.428-33.197s10.367-20.025 21.972-26.8c14.505-7.965 32.672-9.088 48.885 5.188l3.305-3.754c-8.874-7.814-18.55-11.454-28-12.045a44.68 44.68 0 0 0-2.651-.087zm73.645 7.007l-20.12 14.385 2.908 4.068 20.12-14.387-2.906-4.066zm-146.922.098l-2.875 4.092L46.396 81.06l2.875-4.092L28.326 62.25zM103.2 80.455c-10.91 0-20.846 8.062-20.846 21.65v11.557H77.19v41.144h51.457v-41.144h-5.03v-11.228c0-3.36-.606-6.408-1.68-9.093 5.296-3.756 11.98-6.567 19.815-6.567 8.328 0 16.405 4.802 22.47 12.598s9.994 18.497 9.994 29.693c0 10.81-4.315 20.85-10.33 28.127s-13.713 11.61-19.865 11.61H55.384c-7.562 0-14.4-4.7-19.408-11.006s-7.953-14.208-7.953-19.095c0-14.24 4.86-21.965 13.735-31.98l-3.742-3.317c-9.155 10.33-14.992 19.855-14.992 35.297 0 6.712 3.405 15.11 9.037 22.205s13.723 12.897 23.324 12.897h88.635c8.368 0 17.017-5.318 23.72-13.426s11.476-19.183 11.476-31.312c0-12.357-4.27-24.053-11.047-32.764s-16.18-14.527-26.416-14.527c-8.847 0-16.313 3.016-22.247 7.116-3.835-5.37-9.91-8.435-16.295-8.435zm-.44 6.84c4.35 0 8.656 2.117 11.31 6-3.447 3.25-6.107 6.718-7.922 9.735l4.285 2.578c1.363-2.266 3.318-4.864 5.803-7.392.3 1.285.477 2.672.477 4.157v11.3h-27.65v-12.25c0-8.25 7.06-14.117 13.696-14.117zm15.225 32.577a2.29 2.29 0 0 1 1.543 3.888L99.754 144.66l-12.784-13.2c-.576-.587-.793-1.438-.57-2.23s.855-1.402 1.653-1.6 1.64.046 2.2.64l9.455 9.765 16.49-17.426a2.29 2.29 0 0 1 1.786-.737z" dominant-baseline="auto" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/vpc/VPN.svg b/src/main/webapp/img/lib/ibm/vpc/VPN.svg index 2c333b06e26817bb87d92db5307ee08f19af5e7a..1ed73fcd2e502b0340633bd49df3070fb081a370 100644 --- a/src/main/webapp/img/lib/ibm/vpc/VPN.svg +++ b/src/main/webapp/img/lib/ibm/vpc/VPN.svg @@ -1,125 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generated by Microsoft Visio, SVG Export VPN.svg Page-1 --> - -<svg - xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="1.0416666in" - height="1.0416666in" - viewBox="0 0 74.99995 75.000085" - xml:space="preserve" - class="st2" - version="1.1" - id="svg2361" - sodipodi:docname="VPN.svg" - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:none;fill-rule:evenodd;stroke-linecap:square;stroke-miterlimit:3" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata2367"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs2365"> - - - - - - - - - - - - - - <defs - id="defs2330"> - <path - id="mfid13" - d="m 641260,101550 c 146720,135380 146720,354900 0,490280 -146680,135420 -384540,135420 -531230,0 -146720,-135380 -146720,-354900 0,-490280 146690,-135412 384550,-135412 531230,0 z" - inkscape:connector-curvature="0" /> - </defs> - - - - - - - - - - - <defs - id="defs2335"> - <image - xlink:href="data:image/png;base64,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" - height="336" - width="336" - id="mfid14" /> - </defs> - - - <clipPath - id="mfid15"> - <rect - id="rect2341" - height="336" - width="336" - y="-0.5" - x="-0.5" /> - </clipPath> - - </defs><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview2363" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="3.6914115" - inkscape:cx="19.378845" - inkscape:cy="35.72513" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="svg2361" /> - <v:documentProperties - v:langID="1033" - v:viewMarkup="false" /> - - <style - type="text/css" - id="style2321"> - <![CDATA[ - .st1 {fill:none;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75} - .st2 {fill:none;fill-rule:evenodd;font-size:12px;overflow:visible;stroke-linecap:square;stroke-miterlimit:3} - ]]> - </style> - - <circle - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:#8dc53f;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000191;stroke-linecap:square;stroke-miterlimit:3" - r="37.500046" - cx="37.500011" - cy="37.500046" - id="circle826" /> -<path - inkscape:connector-curvature="0" - style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.26771927;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - d="m 39.004104,10.698644 c -3.299415,0 -5.921104,1.41969 -7.643564,3.38086 -1.722461,1.96119 -2.600101,4.43006 -2.600101,6.709 l -0.02637,11.43019 a 18.963927,18.963927 0 0 0 -9.039562,16.1426 18.963927,18.963927 0 0 0 18.963891,18.96388 18.963927,18.963927 0 0 0 18.963889,-18.96388 18.963927,18.963927 0 0 0 -9.12306,-16.18362 l 0.004,-7.83839 13.78712,-0.0264 -4.04004,4.28615 1.65088,1.55419 6.58302,-6.98145 -6.58741,-6.94044 -1.64503,1.56153 4.03712,4.25098 -13.7842,0.0278 v -1.21142 c 0,-5.30782 -4.27966,-10.16163 -9.500986,-10.16163 z m 0,2.26759 c 3.758246,0 7.233403,3.83785 7.233403,7.89405 l -0.006,10.12501 a 18.963927,18.963927 0 0 0 -7.573247,-1.58789 18.963927,18.963927 0 0 0 -7.655283,1.63916 l 0.01611,-6.71925 12.355971,0.0234 0.0044,-2.26758 -12.354507,-0.0234 0.0029,-1.25976 v -0.001 c 0,-1.67817 0.696189,-3.68609 2.037601,-5.2134 1.341411,-1.52731 3.27244,-2.60888 5.938484,-2.60888 z m -21.61526,3.22119 -6.606454,6.89063 6.587411,7.07228 1.658204,-1.54688 -4.06641,-4.36377 10.751966,0.0688 0.01319,-2.27051 -10.740247,-0.0674 4.040043,-4.21583 z" - id="path3005" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="100.032" height="100.032" viewBox="0 0 75 75" fill="none" fill-rule="evenodd" overflow="visible" stroke-linecap="square" stroke-miterlimit="3" color-interpolation-filters="sRGB"><circle r="37.5" cx="37.5" cy="37.5" color-interpolation-filters="sRGB" fill="#8dc53f"/><path d="M39.004 10.7c-3.3 0-5.92 1.42-7.644 3.38s-2.6 4.43-2.6 6.71l-.026 11.43a18.964 18.964 0 0 0 9.924 35.106 18.964 18.964 0 0 0 9.841-35.147l.004-7.838 13.787-.026-4.04 4.286 1.65 1.554 6.583-6.98-6.587-6.94-1.645 1.562 4.037 4.25-13.784.028v-1.21c0-5.308-4.28-10.162-9.5-10.162zm0 2.268c3.758 0 7.233 3.838 7.233 7.894l-.006 10.125a18.964 18.964 0 0 0-7.573-1.588 18.964 18.964 0 0 0-7.655 1.639l.016-6.72 12.356.023.004-2.268-12.355-.023.003-1.26c0-1.678.696-3.686 2.038-5.213s3.272-2.61 5.938-2.61zm-21.615 3.22l-6.606 6.89 6.587 7.072 1.658-1.547-4.066-4.364 10.752.07.013-2.27-10.74-.067 4.04-4.216z" fill="#fff" paint-order="normal"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/vpc/VPNConnection.svg b/src/main/webapp/img/lib/ibm/vpc/VPNConnection.svg index 5e8194dcfb62848368143243608be1908a7d5ae0..0d596fb5f218bcf6083943135067c1c1cd0e2447 100644 --- a/src/main/webapp/img/lib/ibm/vpc/VPNConnection.svg +++ b/src/main/webapp/img/lib/ibm/vpc/VPNConnection.svg @@ -1,124 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generated by Microsoft Visio, SVG Export VPN.svg Page-1 --> - -<svg - xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="1.0416666in" - height="1.0416666in" - viewBox="0 0 74.99995 75.000085" - xml:space="preserve" - class="st2" - version="1.1" - id="svg2361" - sodipodi:docname="VPNConnection.svg" - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:none;fill-rule:evenodd;stroke-linecap:square;stroke-miterlimit:3" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata2367"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs2365"> - - - - - - - - - - - - - - <defs - id="defs2330"> - <path - id="mfid13" - d="m 641260,101550 c 146720,135380 146720,354900 0,490280 -146680,135420 -384540,135420 -531230,0 -146720,-135380 -146720,-354900 0,-490280 146690,-135412 384550,-135412 531230,0 z" - inkscape:connector-curvature="0" /> - </defs> - - - - - - - - - - - <defs - id="defs2335"> - <image - xlink:href="data:image/png;base64,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" - height="336" - width="336" - id="mfid14" /> - </defs> - - - <clipPath - id="mfid15"> - <rect - id="rect2341" - height="336" - width="336" - y="-0.5" - x="-0.5" /> - </clipPath> - - </defs><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview2363" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="3.6914115" - inkscape:cx="-45.514183" - inkscape:cy="49.200303" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="svg2361" /> - <v:documentProperties - v:langID="1033" - v:viewMarkup="false" /> - - <style - type="text/css" - id="style2321"> - <![CDATA[ - .st1 {fill:none;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75} - .st2 {fill:none;fill-rule:evenodd;font-size:12px;overflow:visible;stroke-linecap:square;stroke-miterlimit:3} - ]]> - </style> - - <circle - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:#90c34b;fill-opacity:0.97989953;fill-rule:evenodd;stroke:none;stroke-width:1.00000191;stroke-linecap:square;stroke-miterlimit:3;opacity:1" - r="37.500046" - cx="37.500011" - cy="37.500046" - id="circle826" /> -<path - id="path1078" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.00000334;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 48.546875,35.630859 a 1.5001517,1.5001517 0 0 0 -1.025391,0.464844 L 35.511719,48.404297 28.503906,41.365234 a 1.5005344,1.5005344 0 1 0 -2.126953,2.117188 l 9.154297,9.195312 14.136719,-14.486328 a 1.5001517,1.5001517 0 0 0 -1.121094,-2.560547 z m -20.58003,-4.335927 h 19.689056 v -7.92485 c 0,-7.297458 -5.558213,-10.451708 -9.692202,-10.451708 -5.545246,0 -9.996854,4.277996 -9.996854,9.930918 z M 19.466689,59.906158 V 31.294932 h 3.636545 v -8.319934 c 0,-7.566802 5.828213,-14.8304443 14.899239,-14.8304443 6.47353,0 14.560649,4.7148123 14.560649,15.7670453 v 7.383333 h 3.655143 v 28.611226 z m 45.373155,-40.144439 -1.267578,1.382812 3.58789,3.291016 H 53.25 v 1.875 h 13.921875 l -3.564453,3.291015 1.273437,1.376954 6.072266,-5.607422 z m -54.015625,0.01172 -6.1328128,5.597656 6.1308598,5.630859 1.267578,-1.380859 -3.605469,-3.310547 h 13.894531 v -1.875 H 8.4980469 l 3.5898441,-3.277344 z m 18.162109,4.662109 v 1.875 h 17.341797 v -1.875 z" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="100.032" height="100.032" viewBox="0 0 75 75" fill="none" fill-rule="evenodd" overflow="visible" stroke-linecap="square" stroke-miterlimit="3" color-interpolation-filters="sRGB"><circle r="37.5" cx="37.5" cy="37.5" color-interpolation-filters="sRGB" fill="#90c34b" fill-opacity=".98"/><path d="M48.547 35.63a1.5 1.5 0 0 0-1.025.465l-12 12.31-7.008-7.04a1.501 1.501 0 1 0-2.127 2.117l9.154 9.195L49.668 38.19a1.5 1.5 0 0 0-1.121-2.561zm-20.58-4.336h19.69V23.37c0-7.297-5.558-10.452-9.692-10.452-5.545 0-9.997 4.278-9.997 9.93zm-8.5 28.61v-28.61h3.637v-8.32c0-7.567 5.828-14.83 14.9-14.83 6.474 0 14.56 4.715 14.56 15.767v7.383h3.655v28.61zM64.84 19.762l-1.268 1.383 3.588 3.29h-13.9v1.875h13.922l-3.564 3.29 1.273 1.377 6.072-5.607zm-54.016.012L4.69 25.37l6.13 5.63 1.268-1.38-3.605-3.31H22.38v-1.875H8.498l3.6-3.277zm18.162 4.662v1.875h17.342v-1.875z" dominant-baseline="auto" fill="#fff" fill-rule="nonzero"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/vpc/VPNGateway.svg b/src/main/webapp/img/lib/ibm/vpc/VPNGateway.svg index 839ade3305b1806cbf4b0c678d938ef0ee4df258..6d136af9b714bd7afb38b8c64584431b71b32801 100644 --- a/src/main/webapp/img/lib/ibm/vpc/VPNGateway.svg +++ b/src/main/webapp/img/lib/ibm/vpc/VPNGateway.svg @@ -1,124 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generated by Microsoft Visio, SVG Export VPN.svg Page-1 --> - -<svg - xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="1.0416666in" - height="1.0416666in" - viewBox="0 0 74.99995 75.000085" - xml:space="preserve" - class="st2" - version="1.1" - id="svg2361" - sodipodi:docname="VPNGateway.svg" - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:none;fill-rule:evenodd;stroke-linecap:square;stroke-miterlimit:3" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata2367"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs2365"> - - - - - - - - - - - - - - <defs - id="defs2330"> - <path - id="mfid13" - d="m 641260,101550 c 146720,135380 146720,354900 0,490280 -146680,135420 -384540,135420 -531230,0 -146720,-135380 -146720,-354900 0,-490280 146690,-135412 384550,-135412 531230,0 z" - inkscape:connector-curvature="0" /> - </defs> - - - - - - - - - - - <defs - id="defs2335"> - <image - xlink:href="data:image/png;base64,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" - height="336" - width="336" - id="mfid14" /> - </defs> - - - <clipPath - id="mfid15"> - <rect - id="rect2341" - height="336" - width="336" - y="-0.5" - x="-0.5" /> - </clipPath> - - </defs><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview2363" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="5.2204442" - inkscape:cx="47.072097" - inkscape:cy="46.052212" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="svg2361" /> - <v:documentProperties - v:langID="1033" - v:viewMarkup="false" /> - - <style - type="text/css" - id="style2321"> - <![CDATA[ - .st1 {fill:none;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75} - .st2 {fill:none;fill-rule:evenodd;font-size:12px;overflow:visible;stroke-linecap:square;stroke-miterlimit:3} - ]]> - </style> - - <circle - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:#90c34b;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000191;stroke-linecap:square;stroke-miterlimit:3;opacity:1" - r="37.500046" - cx="37.500011" - cy="37.500046" - id="circle826" /> -<path - id="path1150" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.25000262;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 44.769531,38.523438 a 1.1251138,1.1251138 0 0 0 -0.763672,0.361328 l -8.097656,8.55664 -4.642578,-4.794922 a 1.1257136,1.1257136 0 1 0 -1.617187,1.566407 l 6.277343,6.482421 9.714844,-10.263671 a 1.1251138,1.1251138 0 0 0 -0.871094,-1.908203 z m -14.087908,-3.04949 h 13.576446 v -5.549096 c 0,-4.687143 -3.399695,-7.398805 -6.851077,-7.398805 -3.259052,0 -6.725369,2.880913 -6.725369,6.931889 z m -5.836431,0 h 2.541095 v -5.674824 c 0,-6.672552 4.878566,-10.631291 10.236212,-10.631291 5.220295,0 10.020711,4.167175 10.020711,10.792915 v 5.5132 h 2.46926 V 55.676984 H 24.845192 Z M 37.537109,5.640625 c -17.558034,0 -31.8242184,14.264232 -31.8242184,31.822266 0,17.558034 14.2661844,31.824218 31.8242184,31.824218 17.558034,0 31.822266,-14.266184 31.822266,-31.824218 0,-17.558034 -14.264232,-31.822266 -31.822266,-31.822266 z m 0,3 c 15.936712,0 28.822266,12.885554 28.822266,28.822266 0,15.936711 -12.885554,28.824218 -28.822266,28.824218 -15.936711,0 -28.8242184,-12.887507 -28.8242184,-28.824218 0,-15.936712 12.8875074,-28.822266 28.8242184,-28.822266 z" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="100.032" height="100.032" viewBox="0 0 75 75" fill="none" fill-rule="evenodd" overflow="visible" stroke-linecap="square" stroke-miterlimit="3" color-interpolation-filters="sRGB"><circle r="37.5" cx="37.5" cy="37.5" color-interpolation-filters="sRGB" fill="#90c34b"/><path d="M44.77 38.523a1.125 1.125 0 0 0-.764.361l-8.098 8.557-4.643-4.795a1.126 1.126 0 1 0-1.617 1.566l6.277 6.482 9.715-10.264a1.125 1.125 0 0 0-.871-1.908zm-14.088-3.05h13.576v-5.55c0-4.687-3.4-7.4-6.85-7.4-3.26 0-6.725 2.88-6.725 6.932zm-5.836 0h2.54V29.8c0-6.673 4.88-10.63 10.236-10.63 5.22 0 10.02 4.167 10.02 10.793v5.513h2.47v20.203H24.845zM37.537 5.64C19.98 5.64 5.713 19.905 5.713 37.463S19.98 69.287 37.537 69.287 69.36 55.02 69.36 37.463 55.095 5.64 37.537 5.64zm0 3c15.937 0 28.822 12.886 28.822 28.822S53.474 66.287 37.537 66.287 8.713 53.4 8.713 37.463 21.6 8.64 37.537 8.64z" dominant-baseline="auto" fill="#fff" fill-rule="nonzero"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/vpc/VPNPolicy.svg b/src/main/webapp/img/lib/ibm/vpc/VPNPolicy.svg index 7cab17eb35564b758365ce919305503182632ab1..e549fb804bc5cc74a413de95e3e0a3811fb6e28d 100644 --- a/src/main/webapp/img/lib/ibm/vpc/VPNPolicy.svg +++ b/src/main/webapp/img/lib/ibm/vpc/VPNPolicy.svg @@ -1,57 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - contentScriptType="text/ecmascript" - zoomAndPan="magnify" - contentStyleType="text/css" - id="svg903" - sodipodi:docname="VPNPolicy.svg" - style="font-size:12px;overflow:visible;color-interpolation-filters:sRGB;fill:none;fill-rule:evenodd;stroke-linecap:square;stroke-miterlimit:3" - version="1.1" - width="1.0416666in" - xml:space="preserve" - preserveAspectRatio="xMidYMid meet" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - viewBox="0 0 74.99995 74.999941" - height="1.0416666in" - class="st2"><metadata - id="metadata1210"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs1208" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview1206" - showgrid="false" - inkscape:zoom="4.3350002" - inkscape:cx="31.801069" - inkscape:cy="46.903352" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="svg903" /> - <circle - fill="#e2002f" - r="37.499973" - cx="37.499973" - cy="37.499973" - id="circle1201" - style="fill:#92c24b;fill-opacity:1;opacity:1" /> - <path - id="path1262" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.4173218;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="m 17.474609,44.900391 v 1.417968 h 19.50586 V 44.900391 Z M 13.458968,34.71389 H 61.245627 V 52.768127 H 13.458968 Z m 0.06117,-10.84897 H 61.46497 v 6.253707 H 13.520136 Z M 8.7871094,18.587891 V 19.4375 57.367188 H 65.677734 V 18.587891 Z m 1.7011716,1.701171 H 63.978516 V 55.667969 H 10.488281 Z" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" contentScriptType="text/ecmascript" zoomAndPan="magnify" contentStyleType="text/css" width="100.032" preserveAspectRatio="xMidYMid meet" viewBox="0 0 75 75" height="100.032" overflow="visible" color-interpolation-filters="sRGB" fill="none" fill-rule="evenodd" stroke-linecap="square" stroke-miterlimit="3"><circle fill="#92c24b" r="37.5" cx="37.5" cy="37.5"/><path d="M17.475 44.9v1.418H36.98V44.9zM13.46 34.714h47.787v18.054H13.46zm.06-10.85h47.945v6.254H13.52zm-4.733-5.277v38.78h56.89v-38.78zm1.7 1.7h53.5v35.38h-53.5z" dominant-baseline="auto" fill="#fff" fill-rule="nonzero"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/vpc/VirtualPrivateCloud.svg b/src/main/webapp/img/lib/ibm/vpc/VirtualPrivateCloud.svg index 3b108571082bdbf73e5adc0c0bc1664ac559459c..396f9c9413243825793026cc24c4d39c7b77bac0 100644 --- a/src/main/webapp/img/lib/ibm/vpc/VirtualPrivateCloud.svg +++ b/src/main/webapp/img/lib/ibm/vpc/VirtualPrivateCloud.svg @@ -1,73 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="100.69883mm" - height="75.012184mm" - viewBox="0 0 100.69883 75.012184" - version="1.1" - id="svg3112" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="VirtualPrivateCloud.svg"> - <defs - id="defs3106" /> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="1.4" - inkscape:cx="58.084122" - inkscape:cy="67.420744" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata3109"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-19.657119,-128.03304)"> - <path - style="opacity:1;fill:#3592fc;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 42.079495,203.04523 c -8.096744,0 -15.334672,-6.3392 -19.400924,-13.45729 -4.556291,-8.01858 -4.711632,-20.06946 4.812482,-29.91547 4.478531,-4.71904 12.679592,-8.19906 21.500753,-6.5363 1.335961,-8.69568 5.22256,-16.07637 15.405887,-21.92598 10.528168,-5.99838 22.295111,-2.88835 31.183035,4.20499 6.052312,5.08783 9.243322,12.11361 9.402162,19.18228 7.15797,2.6574 12.32345,8.28825 14.07961,15.21355 3.05791,11.04493 0.32533,18.82566 -4.34673,24.42671 -3.43816,4.46643 -9.92677,8.80751 -16.63095,8.80751 z" - id="path3668" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccccc" /> - <path - id="path831" - style="opacity:1;fill:#ffffff;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1" - d="m 102.95362,183.91018 c -1.99947,2.98557 -4.032904,5.0318 -8.528086,5.0318 -3.856087,0 -7.314676,-2.08614 -8.386348,-6.56733 -0.813403,-3.07854 -0.826397,-6.16449 0.519717,-10.03999 1.091692,-2.76339 3.530572,-5.26804 7.937499,-5.26804 5.083195,0 6.795848,2.16167 8.551718,4.96093 l -4.346732,2.17336 c -0.669368,-1.3603 -1.22376,-3.1183 -4.157739,-3.1183 -3.017528,0 -4.134113,3.52062 -4.134113,6.99256 0,3.69169 1.073398,6.35472 4.275857,6.35472 2.323186,0 3.423595,-1.442 4.370347,-3.07105 z M 70.506378,176.7062 h 4.28466 c 1.618217,0 2.446364,-0.94485 2.446364,-2.68784 0,-1.79682 -1.072906,-2.4177 -2.629621,-2.4177 h -4.101403 z m -5.033979,12.00981 v -21.4454 h 9.406413 c 4.294543,0 7.027935,2.21903 7.027935,6.98734 0,3.7936 -2.28369,6.73151 -6.342566,6.73151 h -5.057803 v 7.72655 z m -15.516099,0 -7.065109,-21.4454 h 5.025379 l 4.780056,17.40459 4.685564,-17.40459 h 4.913688 l -7.08132,21.4454 z" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccccccccccccccccccccccccccccccc" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="380.595" height="283.51" viewBox="0 0 100.699 75.012"><path d="M22.422 75.012c-8.097 0-15.335-6.34-19.4-13.457-4.556-8.02-4.712-20.07 4.812-29.915 4.48-4.72 12.68-8.2 21.5-6.536C30.67 16.407 34.557 9.027 44.74 3.177 55.27-2.82 67.036.29 75.924 7.382c6.052 5.088 9.243 12.114 9.402 19.182 7.158 2.657 12.323 8.288 14.08 15.214 3.058 11.045.325 18.826-4.347 24.427-3.438 4.466-9.927 8.808-16.63 8.808z" fill="#3592fc"/><path d="M83.297 55.877c-2 2.986-4.033 5.032-8.528 5.032-3.856 0-7.315-2.086-8.386-6.567-.813-3.08-.826-6.164.52-10.04 1.092-2.763 3.53-5.268 7.937-5.268 5.083 0 6.796 2.162 8.552 4.96l-4.347 2.173c-.67-1.36-1.224-3.118-4.158-3.118-3.018 0-4.134 3.52-4.134 6.993 0 3.692 1.073 6.355 4.276 6.355 2.323 0 3.424-1.442 4.37-3.07zM50.85 48.673h4.285c1.618 0 2.446-.945 2.446-2.688 0-1.797-1.073-2.418-2.63-2.418h-4.1zm-5.034 12V39.238h9.406c4.295 0 7.028 2.22 7.028 6.987 0 3.794-2.284 6.732-6.343 6.732H50.85v7.727zm-15.516 0l-7.065-21.445h5.025l4.78 17.405 4.686-17.405h4.914l-7.08 21.445z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/ibm/vpc/ZoneTag.svg b/src/main/webapp/img/lib/ibm/vpc/ZoneTag.svg index 7cf06392bc4e095ed4d924218474eb5c5b189b84..f227b8ccadd6d021d128f86bab1fce4b1e819fff 100644 --- a/src/main/webapp/img/lib/ibm/vpc/ZoneTag.svg +++ b/src/main/webapp/img/lib/ibm/vpc/ZoneTag.svg @@ -1,75 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="196.42876mm" - height="196.42876mm" - viewBox="0 0 196.42876 196.42876" - version="1.1" - id="svg1355" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="Zone_tag.svg"> - <defs - id="defs1349" /> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.49497475" - inkscape:cx="86.359732" - inkscape:cy="420.30225" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata1352"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-7.5486803,-50.007427)"> - <rect - style="opacity:1;vector-effect:none;fill:#168733;fill-opacity:1;stroke:none;stroke-width:1.28708541;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:17.00787544;stroke-opacity:1;paint-order:normal" - id="rect1368" - width="196.42876" - height="196.42876" - x="7.5486803" - y="50.007427" - rx="8.3668938" - ry="8.3668938" /> - <path - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30.23622131;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" - d="M 226.66797 92.289062 L 226.66797 107.4082 L 226.66797 163.24609 L 93.701172 163.24609 L 93.701172 178.36523 L 93.701172 594.19727 L 226.66797 594.19727 L 226.66797 626.8125 L 492.26172 626.8125 L 492.26172 594.19727 L 624.88672 594.19727 L 624.88672 163.24609 L 492.26172 163.24609 L 492.26172 92.289062 L 226.66797 92.289062 z M 256.9043 122.52539 L 462.02539 122.52539 L 462.02539 596.57617 L 256.9043 596.57617 L 256.9043 122.52539 z M 427.3457 162.02734 L 289.21484 162.67578 L 289.35547 192.91211 L 427.48633 192.25586 L 427.3457 162.02734 z M 123.9375 193.48242 L 226.66797 193.48242 L 226.66797 233.10547 L 156.24805 233.63281 L 156.38867 263.86914 L 226.66797 263.33789 L 226.66797 297.02148 L 156.43359 296.20117 L 156.21094 326.4375 L 226.66797 327.25977 L 226.66797 365.63672 L 156.26367 366.02734 L 156.37305 396.26367 L 226.66797 395.875 L 226.66797 563.96094 L 123.9375 563.96094 L 123.9375 193.48242 z M 492.26172 193.48242 L 594.65039 193.48242 L 594.65039 563.96094 L 492.26172 563.96094 L 492.26172 396.16602 L 560.0957 395.7832 L 559.99414 365.54688 L 492.26172 365.92773 L 492.26172 326.64648 L 559.93359 327.44922 L 560.15625 297.21289 L 492.26172 296.4082 L 492.26172 263.73438 L 560.11133 263.21289 L 559.9707 232.98242 L 492.26172 233.49805 L 492.26172 193.48242 z M 289.40039 225.24414 L 289.17969 255.48047 L 427.30859 256.49219 L 427.5293 226.25586 L 289.40039 225.24414 z M 427.36719 294.58984 L 289.23047 295.07031 L 289.3418 325.30664 L 427.4707 324.82617 L 427.36719 294.58984 z " - transform="matrix(0.26458333,0,0,0.26458333,7.5486803,50.007427)" - id="path2189" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="742.409" height="742.409" viewBox="0 0 196.429 196.429"><rect width="196.429" height="196.429" rx="8.367" fill="#168733" paint-order="normal"/><path d="M59.972 24.42v18.774H24.79v114.022h35.18v8.63h70.272v-8.63h35.1V43.193h-35.1V24.42H59.972zm8 8h54.272v125.426H67.972V32.42zm45.096 10.452l-36.547.172.037 8 36.547-.174-.037-7.998zM32.79 51.193h27.18v10.484l-18.632.14.037 8 18.595-.14v8.912L41.39 78.37l-.06 8 18.642.218v10.154l-18.628.103.03 8 18.6-.103v44.473H32.79V51.193zm97.452 0h27.1v98.022h-27.1V104.82l17.948-.1-.027-8-17.92.1V86.426l17.905.212.06-8-17.964-.213V69.78l17.952-.138-.037-7.998-17.915.136V51.193zM76.57 59.596l-.058 8 36.547.268.058-8-36.547-.268zm36.504 18.348l-36.55.127.03 8 36.547-.127-.027-8z" dominant-baseline="auto" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/ADFS.svg b/src/main/webapp/img/lib/mscae/ADFS.svg index fd66583e85e192496324ce61d464b8d5a5e73ede..ce6a6353818aee39df2e13404f87b9295bcefa8b 100644 --- a/src/main/webapp/img/lib/mscae/ADFS.svg +++ b/src/main/webapp/img/lib/mscae/ADFS.svg @@ -1,26 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 50 50" style="enable-background:new 0 0 50 50;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#59B4D9;} - .st1{opacity:0.2;fill:#FFFFFF;enable-background:new ;} - .st2{fill:#FCD116;} - .st3{opacity:0.3;fill:#FF8C00;enable-background:new ;} - .st4{opacity:0.4;fill:#FF8C00;enable-background:new ;} - .st5{opacity:0.5;fill:#FFFFFF;enable-background:new ;} -</style> -<path class="st0" d="M28.6,10.3c0,5.7-4.6,10.3-10.3,10.3S8,16,8,10.3C8.1,4.6,12.7,0,18.3,0C24,0,28.6,4.6,28.6,10.3"/> -<polygon class="st0" points="25.8,24.1 18.3,34.6 10.8,24.1 0,24.1 0,50 36.7,50 36.7,24.1 "/> -<path class="st1" d="M8.1,10.3c0,5.6,4.5,10.1,10,10.3l2.6-20.2C19.9,0.1,19.1,0,18.3,0C12.7,0,8.1,4.6,8.1,10.3"/> -<polygon class="st1" points="10.8,24.1 0,24.1 0,50 14.4,50 16.7,32.2 "/> -<path class="st2" d="M46.5,42.7c2,0,3.5-1.6,3.5-3.5v-8.6c0-2-1.6-3.5-3.5-3.5h-8.6c-2,0-3.5,1.6-3.5,3.5v7.6L27,45.4V50h4l0,0h2.3 - v-2.3h2.3v-2.3h2.3v-2.3l0.3-0.3L46.5,42.7z M47.2,29.8c0.8,0.8,0.8,2.1,0,2.8c-0.8,0.8-2.1,0.8-2.8,0c-0.8-0.8-0.8-2.1,0-2.8 - C45.1,29,46.4,29,47.2,29.8z"/> -<path class="st3" d="M46.5,42.7c2,0,3.5-1.6,3.5-3.5v-8.6c0-2-1.6-3.5-3.5-3.5h-8.6c-2,0-3.5,1.6-3.5,3.5v7.6L27,45.4V50h4l0,0h2.3 - v-2.3h2.3v-2.3h2.3v-2.3l0.3-0.3L46.5,42.7z M47.2,29.8c0.8,0.8,0.8,2.1,0,2.8c-0.8,0.8-2.1,0.8-2.8,0c-0.8-0.8-0.8-2.1,0-2.8 - C45.1,29,46.4,29,47.2,29.8z"/> -<polygon class="st4" points="28.4,47.1 28.4,48.9 35.4,41.9 35,40.6 "/> -<rect x="41.347" y="29.657" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -12.7125 40.2227)" class="st5" width="1.7" height="11.6"/> -<rect x="39.548" y="31.573" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -14.5947 39.5121)" class="st5" width="1.7" height="11.6"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 50 50"><style><![CDATA[.G{enable-background:new}]]></style><path d="M28.6 10.3c0 5.7-4.6 10.3-10.3 10.3S8 16 8 10.3C8.1 4.6 12.7 0 18.3 0 24 0 28.6 4.6 28.6 10.3m-2.8 13.8l-7.5 10.5-7.5-10.5H0V50h36.7V24.1z" fill="#59b4d9"/><path d="M8.1 10.3c0 5.6 4.5 10.1 10 10.3L20.7.4c-.8-.3-1.6-.4-2.4-.4C12.7 0 8.1 4.6 8.1 10.3m2.7 13.8H0V50h14.4l2.3-17.8z" opacity=".2" fill="#fff" class="G"/><use xlink:href="#B" fill="#fcd116"/><g fill="#ff8c00" class="G"><use xlink:href="#B" opacity=".3"/><path d="M28.4 47.1v1.8l7-7-.4-1.3z" opacity=".4"/></g><path d="M37.494 31.957l1.202-1.202 8.202 8.202-1.202 1.202zm-1.8 1.916l1.202-1.202 8.202 8.202-1.202 1.202z" opacity=".5" fill="#fff" class="G"/><defs ><path id="B" d="M46.5 42.7c2 0 3.5-1.6 3.5-3.5v-8.6c0-2-1.6-3.5-3.5-3.5h-8.6c-2 0-3.5 1.6-3.5 3.5v7.6L27 45.4V50h6.3v-2.3h2.3v-2.3h2.3v-2.3l.3-.3 8.3-.1zm.7-12.9c.8.8.8 2.1 0 2.8-.8.8-2.1.8-2.8 0-.8-.8-.8-2.1 0-2.8.7-.8 2-.8 2.8 0z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/API.svg b/src/main/webapp/img/lib/mscae/API.svg index fe34faf49b959467206e6079530186ce2124912e..1ff81dbce0a44687196c1e954bdc9ab9cee6b19c 100644 --- a/src/main/webapp/img/lib/mscae/API.svg +++ b/src/main/webapp/img/lib/mscae/API.svg @@ -1,17 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 49.8 42.6" style="enable-background:new 0 0 49.8 42.6;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#7FBA00;} - .st1{fill:#FFFFFF;} -</style> -<path class="st0" d="M2.4,42.6h45c1.3,0,2.4-1.1,2.4-2.4V2.4c0-1.3-1.1-2.4-2.4-2.4h-45C1.1,0,0,1.1,0,2.4v37.8 - C0,41.5,1.1,42.6,2.4,42.6z"/> -<path class="st1" d="M39.8,0v21.1h-4.1c-0.4-2.4-1.6-4.7-3.4-6.6c-2.4-2.4-5.5-3.7-8.9-3.7c-3.3,0-6.5,1.3-8.9,3.7 - c-0.8,0.8-0.8,2.1,0,3c0.8,0.8,2.1,0.8,3,0c1.6-1.6,3.7-2.4,5.9-2.4s4.3,0.9,5.9,2.4c3.3,3.3,3.3,8.6,0,11.8 - c-1.6,1.6-3.7,2.4-5.9,2.4s-4.3-0.9-5.9-2.4c-0.8-0.8-2.1-0.8-3,0c-0.8,0.8-0.8,2.1,0,3c2.4,2.4,5.5,3.7,8.9,3.7 - c3.3,0,6.5-1.3,8.9-3.7c2-2,3.1-4.4,3.5-7h6.1c1.2,0,2.1-0.9,2.1-2.1V0"/> -<path class="st1" d="M6.1,0v23.2c0,1.2,0.9,2.1,2.1,2.1H19c0.8,1.7,2.5,2.9,4.5,2.9c2.8,0,5-2.2,5-5c-0.1-2.8-2.4-5-5.1-5 - c-2,0-3.7,1.2-4.5,2.9h-8.7V0"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 49.8 42.6"><path d="M2.4 42.6h45c1.3 0 2.4-1.1 2.4-2.4V2.4c0-1.3-1.1-2.4-2.4-2.4h-45C1.1 0 0 1.1 0 2.4v37.8c0 1.3 1.1 2.4 2.4 2.4z" fill="#7fba00"/><path d="M39.8 0v21.1h-4.1c-.4-2.4-1.6-4.7-3.4-6.6-2.4-2.4-5.5-3.7-8.9-3.7-3.3 0-6.5 1.3-8.9 3.7-.8.8-.8 2.1 0 3 .8.8 2.1.8 3 0 1.6-1.6 3.7-2.4 5.9-2.4s4.3.9 5.9 2.4c3.3 3.3 3.3 8.6 0 11.8-1.6 1.6-3.7 2.4-5.9 2.4s-4.3-.9-5.9-2.4c-.8-.8-2.1-.8-3 0-.8.8-.8 2.1 0 3 2.4 2.4 5.5 3.7 8.9 3.7 3.3 0 6.5-1.3 8.9-3.7 2-2 3.1-4.4 3.5-7h6.1c1.2 0 2.1-.9 2.1-2.1V0M6.1 0v23.2c0 1.2.9 2.1 2.1 2.1H19c.8 1.7 2.5 2.9 4.5 2.9a4.95 4.95 0 0 0 5-5c-.1-2.8-2.4-5-5.1-5-2 0-3.7 1.2-4.5 2.9h-8.7V0" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/APIDefinition.svg b/src/main/webapp/img/lib/mscae/APIDefinition.svg index 6ab6e8096733f238c16ecf1f5851cb7bb32f257f..4cd1a0fd55c277b674ed4bf657710e23dba6e3aa 100644 --- a/src/main/webapp/img/lib/mscae/APIDefinition.svg +++ b/src/main/webapp/img/lib/mscae/APIDefinition.svg @@ -1,86 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="44" - height="50" - viewBox="1 -1 44 50" - enable-background="new 1 -1 50 50" - xml:space="preserve" - sodipodi:docname="APIDefinition.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata1583"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs1581" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview1579" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="8.5" - inkscape:cx="1.480948" - inkscape:cy="18.884403" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<polygon - points="4,49 48,49 48,-1 4,-1 " - id="polygon1564" - style="fill:#59b4d9" - transform="translate(-3)" /> -<polygon - enable-background="new " - points="6,47 46,47 46,1 6,1 " - id="polygon1566" - style="opacity:0.8;fill:#ffffff" - transform="translate(-3)" /> -<path - d="m 26.8,41.1 c 0,0.6 -0.5,1.1 -1.1,1.1 H 10.6 C 10,42.2 9.5,41.7 9.5,41.1 9.5,40.5 10,40 10.6,40 h 15.1 c 0.6,0 1.1,0.5 1.1,1.1" - id="path1568" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="m 36.9,26.1 c 0,0.6 -0.5,1.1 -1.1,1.1 H 10.6 C 10,27.2 9.5,26.7 9.5,26.1 9.5,25.5 10,25 10.6,25 h 25.1 c 0.7,0 1.2,0.5 1.2,1.1" - id="path1570" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="m 36.9,33.6 c 0,0.6 -0.5,1.1 -1.1,1.1 H 10.6 C 10,34.7 9.5,34.2 9.5,33.6 9.5,33 10,32.5 10.6,32.5 h 25.1 c 0.7,0 1.2,0.5 1.2,1.1" - id="path1572" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="m 35.717,-1 v 12.47 h -6.423 c -0.236,-1.418 -0.946,-2.778 -2.009,-3.9 -1.418,-1.418 -3.25,-2.187 -5.26,-2.187 -1.95,0 -3.841,0.768 -5.26,2.187 -0.473,0.473 -0.473,1.241 0,1.773 0.473,0.473 1.241,0.473 1.773,0 0.946,-0.946 2.187,-1.418 3.487,-1.418 1.3,0 2.541,0.532 3.487,1.418 1.95,1.95 1.95,5.082 0,6.973 -0.946,0.946 -2.187,1.418 -3.487,1.418 -1.3,0 -2.541,-0.532 -3.487,-1.418 -0.473,-0.473 -1.241,-0.473 -1.773,0 -0.473,0.473 -0.473,1.241 0,1.773 1.418,1.418 3.25,2.187 5.26,2.187 1.95,0 3.841,-0.768 5.26,-2.187 1.182,-1.182 1.832,-2.6 2.068,-4.137 h 7.605 c 0.709,0 1.241,-0.532 1.241,-1.241 V -1" - id="path1574" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="m 7.801,-1 v 13.711 c 0,0.709 0.532,1.241 1.241,1.241 h 10.382 c 0.473,1.005 1.477,1.714 2.659,1.714 1.655,0 2.955,-1.3 2.955,-2.955 -0.059,-1.655 -1.418,-2.955 -3.014,-2.955 -1.182,0 -2.187,0.709 -2.659,1.714 H 10.224 V -1" - id="path1576" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="44" height="50" viewBox="1 -1 44 50"><path d="M1 49h44V-1H1z" fill="#59b4d9"/><path d="M3 47h40V1H3z" opacity=".8" fill="#fff"/><g fill="#59b4d9"><path d="M26.8 41.1a1.11 1.11 0 0 1-1.1 1.1H10.6a1.11 1.11 0 0 1-1.1-1.1 1.11 1.11 0 0 1 1.1-1.1h15.1a1.11 1.11 0 0 1 1.1 1.1"/><use xlink:href="#B"/><use xlink:href="#B" y="7.5"/><path d="M35.717-1v12.47h-6.423c-.236-1.418-.946-2.778-2-3.9-1.418-1.418-3.25-2.187-5.26-2.187a7.43 7.43 0 0 0-5.26 2.187c-.473.473-.473 1.24 0 1.773.473.473 1.24.473 1.773 0 .946-.946 2.187-1.418 3.487-1.418s2.54.532 3.487 1.418c1.95 1.95 1.95 5.082 0 6.973-.946.946-2.187 1.418-3.487 1.418s-2.54-.532-3.487-1.418c-.473-.473-1.24-.473-1.773 0-.473.473-.473 1.24 0 1.773 1.418 1.418 3.25 2.187 5.26 2.187a7.43 7.43 0 0 0 5.26-2.187c1.182-1.182 1.832-2.6 2.068-4.137h7.605a1.21 1.21 0 0 0 1.241-1.241V-1M7.8-1v13.7a1.21 1.21 0 0 0 1.241 1.241h10.382c.473 1.005 1.477 1.714 2.66 1.714 1.655 0 2.955-1.3 2.955-2.955-.06-1.655-1.418-2.955-3.014-2.955-1.182 0-2.187.7-2.66 1.714h-9.14V-1"/></g><defs ><path id="B" d="M36.9 26.1a1.11 1.11 0 0 1-1.1 1.1H10.6a1.11 1.11 0 0 1-1.1-1.1 1.11 1.11 0 0 1 1.1-1.1h25.1c.7 0 1.2.5 1.2 1.1"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/API_Management.svg b/src/main/webapp/img/lib/mscae/API_Management.svg index 55363ec406ed8416b4c5c9c5d77bd530fcf31dbc..2b544c7a23c4c340538e8286173585cd3bba4224 100644 --- a/src/main/webapp/img/lib/mscae/API_Management.svg +++ b/src/main/webapp/img/lib/mscae/API_Management.svg @@ -1,56 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50.200001" - height="41.700001" - viewBox="0 0 50.200001 41.700001" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure API Management_COLOR.svg"><metadata - id="metadata4145"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs4143" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview4141" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17.02" - inkscape:cx="25" - inkscape:cy="20.7" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 20.5,28.5 11.6,28.5 11.6,28.5 C 7.2,28.5 3.6,24.9 3.6,20.4 3.6,15.9 7,12.3 11.6,12.3 12.4,12.3 13.3,12.5 14.3,12.6 L 16,13.1 16.5,11.4 C 18.1,6.2 23.1,3 28.8,3 35.7,3 41,8.3 41,15.2 41,16.3 40.8,17.4 40.5,18.5 L 39.8,21 42.5,20.7 C 42.7,20.7 42.8,20.7 43,20.7 45,20.7 46.6,22.4 46.6,24.3 46.6,26.2 45.2,27.6 43.5,27.9 43.5,27.9 34.9,27.9 34.6,27.9 34.3,25.4 33,23.2 31.3,21.5 29.1,19.3 26.1,18 23,18 20.8,18 18.6,18.6 16.9,19.7 L 18.8,22.7 C 20.2,21.9 21.6,21.6 23.2,21.6 25.4,21.6 27.6,22.4 29,24.1 30.6,25.7 31.5,27.7 31.5,29.9 31.5,32.1 30.7,34.3 29,35.7 27.4,37.4 25.4,38.2 23.2,38.2 21.6,38.2 20.1,37.7 18.8,36.8 L 16.9,39.8 C 18.8,40.9 21,41.7 23,41.7 26.1,41.7 29.1,40.6 31.3,38.3 33.2,36.4 34.3,33.9 34.6,31.3 35.1,31.3 43.7,31.3 43.7,31.3 L 43.9,31.3 C 47.5,31 50.2,27.9 50.2,24.1 50.2,21.1 47.4,18.3 44.1,17.7 44.3,17.1 44.3,16.8 44.3,15.8 44.3,7 38.1,0 28.2,0 L 28.2,0 C 21.9,0 16.3,3.6 14,9.4 13.2,9.4 12.6,9.1 11.7,9.1 5.2,9 0,14 0,20.4 0,26.7 5.2,31.7 11.4,31.7 L 21.2,31.7 20.5,28.5 Z" - id="path4137" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><circle - cx="22.799999" - cy="29.799999" - r="5.5999999" - id="circle4139" - style="fill:#68217a" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50.2" height="41.7"><path d="M20.5 28.5h-8.9c-4.4 0-8-3.6-8-8.1s3.4-8.1 8-8.1c.8 0 1.7.2 2.7.3l1.7.5.5-1.7C18.1 6.2 23.1 3 28.8 3 35.7 3 41 8.3 41 15.2c0 1.1-.2 2.2-.5 3.3l-.7 2.5 2.7-.3h.5c2 0 3.6 1.7 3.6 3.6s-1.4 3.3-3.1 3.6h-8.9c-.3-2.5-1.6-4.7-3.3-6.4-2.2-2.2-5.2-3.5-8.3-3.5-2.2 0-4.4.6-6.1 1.7l1.9 3c1.4-.8 2.8-1.1 4.4-1.1 2.2 0 4.4.8 5.8 2.5 1.6 1.6 2.5 3.6 2.5 5.8s-.8 4.4-2.5 5.8c-1.6 1.7-3.6 2.5-5.8 2.5-1.6 0-3.1-.5-4.4-1.4l-1.9 3c1.9 1.1 4.1 1.9 6.1 1.9 3.1 0 6.1-1.1 8.3-3.4 1.9-1.9 3-4.4 3.3-7h9.3c3.6-.3 6.3-3.4 6.3-7.2 0-3-2.8-5.8-6.1-6.4.2-.6.2-.9.2-1.9C44.3 7 38.1 0 28.2 0 21.9 0 16.3 3.6 14 9.4c-.8 0-1.4-.3-2.3-.3C5.2 9 0 14 0 20.4c0 6.3 5.2 11.3 11.4 11.3h9.8l-.7-3.2z" fill="#59b4d9"/><circle cx="22.8" cy="29.8" r="5.6" fill="#68217a"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/ARMExplorer.svg b/src/main/webapp/img/lib/mscae/ARMExplorer.svg index d42a4cff763d42396a8d3c2c8bedcb892bd22a26..179e1289dcb21b184d139f44ca9159b56df2dba4 100644 --- a/src/main/webapp/img/lib/mscae/ARMExplorer.svg +++ b/src/main/webapp/img/lib/mscae/ARMExplorer.svg @@ -1,85 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="49.799999" - height="42.799999" - viewBox="0 0 49.799999 42.799999" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="ARMExplorer.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata1877"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs1875" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview1873" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="8.5" - inkscape:cx="10.307728" - inkscape:cy="15.284403" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="M 7.9,24.8 C 5.8,24.8 4.3,24.4 3.4,23.7 2.5,22.9 2.1,21.6 2.1,19.7 V 16.3 C 2.1,14.6 1.4,13.7 0,13.7 v -2.6 c 1.4,0 2.1,-0.9 2.1,-2.7 V 5.2 C 2.1,3.3 2.5,1.9 3.4,1.1 4.3,0.3 5.8,0 7.9,0 V 2.6 C 6.4,2.6 5.6,3.4 5.6,5.1 v 3 c 0,2.3 -0.7,3.7 -2.2,4.3 v 0 c 1.4,0.6 2.2,2 2.2,4.3 v 2.9 c 0,0.9 0.2,1.6 0.5,2 0.4,0.4 0.9,0.6 1.7,0.6 v 2.6 h 0.1 z" - id="path1858" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="m 41.9,18 c 2.1,0 3.6,0.4 4.5,1.1 0.9,0.8 1.3,2.1 1.3,4 v 3.4 c 0,1.7 0.7,2.6 2.1,2.6 v 2.6 c -1.4,0 -2.1,0.9 -2.1,2.7 v 3.1 c 0,1.9 -0.4,3.3 -1.3,4.1 -0.9,0.8 -2.4,1.2 -4.5,1.2 v -2.6 c 1.5,0 2.3,-0.8 2.3,-2.5 v -3 c 0,-2.3 0.7,-3.7 2.2,-4.3 v 0 c -1.4,-0.6 -2.2,-2 -2.2,-4.3 v -2.9 c 0,-0.9 -0.2,-1.6 -0.5,-2 -0.4,-0.4 -0.9,-0.6 -1.7,-0.6 z" - id="path1860" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="M 25.6,23.4 H 12.8 c -1.3,0 -2.4,-1.1 -2.4,-2.1 0,-1 1.1,-1.9 2.4,-1.9 h 12.8 c 1.4,0 2.4,0.8 2.4,1.9 0,1.1 -1,2.1 -2.4,2.1 z" - id="path1862" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<path - d="M 36.6,32.5 H 16.8 c -1.3,0 -2.4,-1.1 -2.4,-2.1 0,-1 1.1,-1.9 2.4,-1.9 h 19.8 c 1.4,0 2.4,0.8 2.4,1.9 0,1.1 -1,2.1 -2.4,2.1 z" - id="path1864" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<path - d="M 36.6,13.5 H 12.8 c -1.3,0 -2.4,-1.1 -2.4,-2.1 0,-1 1.1,-1.9 2.4,-1.9 h 23.8 c 1.4,0 2.4,0.8 2.4,1.9 0,1.1 -1,2.1 -2.4,2.1 z" - id="path1866" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<path - d="M 32.6,4 H 12.8 C 11.5,4 10.4,2.9 10.4,1.9 10.4,0.9 11.5,0 12.8,0 H 32.6 C 34,0 35,0.8 35,1.9 35,3 34,4 32.6,4 Z" - id="path1868" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<path - d="M 31.6,42.8 H 16.8 c -1.3,0 -2.4,-1.1 -2.4,-2.1 0,-1 1.1,-1.9 2.4,-1.9 h 14.8 c 1.3,0 2.4,0.8 2.4,1.9 0,1 -1,2.1 -2.4,2.1 z" - id="path1870" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="49.8" height="42.8"><path d="M7.9 24.8c-2.1 0-3.6-.4-4.5-1.1-.9-.8-1.3-2.1-1.3-4v-3.4c0-1.7-.7-2.6-2.1-2.6v-2.6c1.4 0 2.1-.9 2.1-2.7V5.2c0-1.9.4-3.3 1.3-4.1S5.8 0 7.9 0v2.6c-1.5 0-2.3.8-2.3 2.5v3c0 2.3-.7 3.7-2.2 4.3 1.4.6 2.2 2 2.2 4.3v2.9c0 .9.2 1.6.5 2 .4.4.9.6 1.7.6v2.6h.1zm34-6.8c2.1 0 3.6.4 4.5 1.1.9.8 1.3 2.1 1.3 4v3.4c0 1.7.7 2.6 2.1 2.6v2.6c-1.4 0-2.1.9-2.1 2.7v3.1c0 1.9-.4 3.3-1.3 4.1s-2.4 1.2-4.5 1.2v-2.6c1.5 0 2.3-.8 2.3-2.5v-3c0-2.3.7-3.7 2.2-4.3-1.4-.6-2.2-2-2.2-4.3v-2.9c0-.9-.2-1.6-.5-2-.4-.4-.9-.6-1.7-.6z" fill="#59b4d9"/><path d="M25.6 23.4H12.8c-1.3 0-2.4-1.1-2.4-2.1s1.1-1.9 2.4-1.9h12.8c1.4 0 2.4.8 2.4 1.9s-1 2.1-2.4 2.1zm11 9.1H16.8c-1.3 0-2.4-1.1-2.4-2.1s1.1-1.9 2.4-1.9h19.8c1.4 0 2.4.8 2.4 1.9s-1 2.1-2.4 2.1zm0-19H12.8c-1.3 0-2.4-1.1-2.4-2.1s1.1-1.9 2.4-1.9h23.8c1.4 0 2.4.8 2.4 1.9s-1 2.1-2.4 2.1zm-4-9.5H12.8c-1.3 0-2.4-1.1-2.4-2.1S11.5 0 12.8 0h19.8C34 0 35 .8 35 1.9S34 4 32.6 4zm-1 38.8H16.8c-1.3 0-2.4-1.1-2.4-2.1s1.1-1.9 2.4-1.9h14.8c1.3 0 2.4.8 2.4 1.9 0 1-1 2.1-2.4 2.1z" fill="#a0a1a2"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Access_Review.svg b/src/main/webapp/img/lib/mscae/Access_Review.svg new file mode 100644 index 0000000000000000000000000000000000000000..27ba5c403b086fb444d833c1398c8be486416f37 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Access_Review.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" viewBox="-526.909 -96 50 50" width="50" height="50"><path d="M-526.91-96h50v50h-50z" fill="#0072c6"/><path d="M-500.4-76.375c-.25.125-.375.125-.75.25v12.875c.375.125.875.375 1.25.75l5.75-4.625c-.125-.25-.125-.75-.125-1.125s.125-1 .25-1.375zm-9.5 6.75c.25.375.375 1 .375 1.5 0 .375-.125.875-.25 1.25l5.75 4.625c.25-.25.75-.5 1.125-.75v-13.125c-.25-.125-.375-.125-.5-.25zm8-21.375l-20 23.75 20 16.25 20-16.25zm10.875 26.125c-.75 0-1.375-.25-2-.75l-5.75 4.75c.125.25.125.5.125.875 0 1.75-1.375 3.25-3.25 3.25s-3.25-1.375-3.25-3.25c0-.25 0-.5.125-.75l-6.125-4.75c-.5.375-1.125.5-1.75.5-1.75 0-3.25-1.375-3.25-3.25 0-1.75 1.375-3.25 3.25-3.25.5 0 1 .125 1.5.375l6.375-7c-.125-.375-.25-.875-.25-1.375 0-1.75 1.375-3.25 3.25-3.25s3.25 1.375 3.25 3.25c0 .5-.125 1.125-.375 1.5l6.25 7a3.85 3.85 0 0 1 1.625-.375c1.75 0 3.25 1.375 3.25 3.25a3.027 3.027 0 0 1-3 3.25z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/ActiveDirectory.svg b/src/main/webapp/img/lib/mscae/ActiveDirectory.svg index 1358f991ead88afb5d9bc4bcb64a2ec7a820fa39..b09a57c625f9e233ef1c6b8d903b06620fcbd8fd 100644 --- a/src/main/webapp/img/lib/mscae/ActiveDirectory.svg +++ b/src/main/webapp/img/lib/mscae/ActiveDirectory.svg @@ -1,26 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="24px" height="24px" viewBox="0 0 24 24" enable-background="new 0 0 24 24" xml:space="preserve"> -<path fill="#3C9BE4" d="M14,20c0-0.409,0.08-0.803,0.236-1.17c0.155-0.359,0.37-0.678,0.641-0.949 - c0.275-0.274,0.594-0.489,0.949-0.643c0.728-0.311,1.578-0.315,2.303-0.019c0.023-0.024,0.047-0.048,0.07-0.071 - c0.007-0.007,0.015-0.015,0.022-0.021c-0.002-0.004-0.003-0.008-0.005-0.012C18.072,16.755,18,16.381,18,16 - c0-0.409,0.08-0.803,0.236-1.17c0.155-0.359,0.37-0.678,0.641-0.949c0.275-0.274,0.594-0.489,0.949-0.643 - c0.742-0.316,1.609-0.314,2.344-0.002c0.243,0.105,0.458,0.246,0.661,0.403L23,13.5L11.5,0L0,13.5L11.5,23l2.631-2.174 - C14.053,20.556,14,20.281,14,20z"/> -<polygon opacity="0.2" fill="#FFFFFF" enable-background="new " points="11.5,0 11.5,0 0,13.5 11.5,23 "/> -<circle fill="#FFFFFF" cx="11.5" cy="17.5" r="1.5"/> -<circle fill="#FFFFFF" cx="5.5" cy="13.5" r="1.5"/> -<circle fill="#FFFFFF" cx="11.5" cy="5.5" r="1.5"/> -<rect x="14" y="4.499" transform="matrix(0.8 -0.6 0.6 0.8 -2.7995 10.5997)" opacity="0.5" fill="#FFFFFF" enable-background="new " width="1" height="10"/> -<rect x="8.001" y="11.894" transform="matrix(0.5547 -0.8321 0.8321 0.5547 -9.1111 13.9759)" fill="#FFFFFF" width="1" height="7.211"/> -<rect x="3.5" y="9" transform="matrix(0.5998 -0.8001 0.8001 0.5998 -4.1996 10.6022)" opacity="0.5" fill="#FFFFFF" enable-background="new " width="10" height="1"/> -<rect x="10.896" y="15.001" transform="matrix(0.8321 -0.5547 0.5547 0.8321 -6.1628 10.6467)" fill="#FFFFFF" width="7.211" height="1"/> -<rect x="11" y="5.5" fill="#FFFFFF" width="1" height="12"/> -<circle fill="#000C82" cx="21" cy="16" r="2"/> -<path fill="#68217A" d="M14,24c0-1.657,1.343-3,3-3s3,1.343,3,3H14z"/> -<circle fill="#68217A" cx="17" cy="20" r="2"/> -<path fill="#000C82" d="M21,17c-0.772,0-1.469,0.3-2.001,0.779C19.609,18.329,20,19.116,20,20h4C24,18.343,22.657,17,21,17z"/> -<path fill="#FFFFFF" d="M17.5,15c0.279,0,0.536-0.081,0.76-0.214c0.154-0.341,0.358-0.646,0.617-0.906 - c0.028-0.028,0.062-0.049,0.092-0.076C18.989,13.707,19,13.605,19,13.5c0-0.828-0.672-1.5-1.5-1.5S16,12.672,16,13.5 - S16.672,15,17.5,15z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><path fill="#3c9be4" d="M14 20c0-.41.08-.803.236-1.17.155-.36.37-.678.64-.95s.594-.49.95-.643c.728-.31 1.578-.315 2.303-.02l.07-.07.022-.02A3 3 0 0 1 18 16c0-.41.08-.803.236-1.17.155-.36.37-.678.64-.95s.594-.49.95-.643c.742-.316 1.61-.314 2.344-.002.243.105.458.246.66.403l.17-.14L11.5 0 0 13.5 11.5 23l2.63-2.174c-.078-.27-.13-.545-.13-.826z"/><g fill="#fff"><path opacity=".2" d="M11.5 0L0 13.5 11.5 23z"/><circle cx="11.5" cy="17.5" r="1.5"/><circle cx="5.5" cy="13.5" r="1.5"/><circle cx="11.5" cy="5.5" r="1.5"/><path opacity=".5" d="M11.1 5.8l.8-.6 6 8-.8.6z"/><path d="M5.224 13.916l.555-.832 6 4-.555.832z"/><path opacity=".5" d="M5.1 13.2l5.998-8 .8.6-5.998 8z"/><path d="M11.225 17.085l6-4 .555.832-6 4z"/><path d="M11 5.5h1v12h-1z"/></g><circle fill="#000c82" cx="21" cy="16" r="2"/><g fill="#68217a"><path d="M14 24a3 3 0 1 1 6 0h-6z"/><circle cx="17" cy="20" r="2"/></g><path fill="#000c82" d="M21 17a2.98 2.98 0 0 0-2.001.779c.6.55 1 1.337 1 2.22h4a3 3 0 0 0-3-3z"/><path fill="#fff" d="M17.5 15a1.48 1.48 0 0 0 .76-.214 3.05 3.05 0 0 1 .617-.906c.028-.028.062-.05.092-.076.02-.097.03-.2.03-.304a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 1.5 1.5z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/ActiveDirectoryDomain.svg b/src/main/webapp/img/lib/mscae/ActiveDirectoryDomain.svg index 334c22bfe779edd04d9c7077acef9e5652a5d500..cd5958eda706bb050e1fa0e08c22ff994c3adaf7 100644 --- a/src/main/webapp/img/lib/mscae/ActiveDirectoryDomain.svg +++ b/src/main/webapp/img/lib/mscae/ActiveDirectoryDomain.svg @@ -1,20 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="24px" height="24px" viewBox="0 0 24 24" enable-background="new 0 0 24 24" xml:space="preserve"> -<polygon fill="#3C9BE4" points="16.5,9 9,17.804 16.5,24 24,17.804 16.5,9 "/> -<polygon opacity="0.2" fill="#FFFFFF" enable-background="new " points="16.5,9 16.5,9 9,17.804 16.5,24 "/> -<path opacity="0.5" fill="#FFFFFF" enable-background="new " d="M14.748,16.669l1.308-1.743 - c-0.331-0.103-0.615-0.312-0.804-0.594l-1.308,1.744C14.275,16.178,14.559,16.386,14.748,16.669z"/> -<path opacity="0.5" fill="#FFFFFF" enable-background="new " d="M17.748,14.331c-0.188,0.282-0.473,0.491-0.804,0.594 - l1.308,1.743c0.188-0.282,0.472-0.491,0.803-0.594L17.748,14.331z"/> -<path fill="#FFFFFF" d="M15.605,18.303l-0.655-0.437c-0.085,0.338-0.284,0.629-0.555,0.832l0.655,0.437 - C15.135,18.796,15.334,18.506,15.605,18.303z"/> -<path fill="#FFFFFF" d="M18.05,17.866l-0.655,0.437c0.271,0.203,0.47,0.493,0.555,0.832l0.655-0.437 - C18.334,18.494,18.135,18.204,18.05,17.866z"/> -<path fill="#FFFFFF" d="M16.5,12c-0.828,0-1.5,0.672-1.5,1.5s0.672,1.5,1.5,1.5s1.5-0.672,1.5-1.5S17.328,12,16.5,12L16.5,12z"/> -<path fill="#FFFFFF" d="M16.5,18c-0.828,0-1.5,0.672-1.5,1.5s0.672,1.5,1.5,1.5s1.5-0.672,1.5-1.5S17.328,18,16.5,18L16.5,18z"/> -<path fill="#FFFFFF" d="M13.5,16c-0.828,0-1.5,0.672-1.5,1.5s0.672,1.5,1.5,1.5s1.5-0.672,1.5-1.5S14.328,16,13.5,16L13.5,16z"/> -<path fill="#FFFFFF" d="M19.5,16c-0.828,0-1.5,0.672-1.5,1.5s0.672,1.5,1.5,1.5s1.5-0.672,1.5-1.5S20.328,16,19.5,16L19.5,16z"/> -<rect x="16" y="14.5" fill="#FFFFFF" width="1" height="4"/> -<polygon fill="#0072C6" points="7.581,17.929 16.5,7.458 22.206,14.156 23,13.5 11.5,0 0,13.5 11.5,23 12.61,22.083 "/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><path fill="#3c9be4" d="M16.5 9L9 17.804 16.5 24l7.5-6.196L16.5 9z"/><g fill="#fff"><path opacity=".2" d="M16.5 9L9 17.804 16.5 24z"/><path opacity=".5" d="M14.748 16.67l1.308-1.743a1.5 1.5 0 0 1-.804-.594l-1.308 1.744a1.49 1.49 0 0 1 .804.593zm3-2.34c-.188.282-.473.5-.804.594l1.308 1.743a1.5 1.5 0 0 1 .803-.594l-1.307-1.743z"/><path d="M15.605 18.303l-.655-.437a1.49 1.49 0 0 1-.555.832l.655.437a1.49 1.49 0 0 1 .555-.832zm2.445-.437l-.655.437a1.49 1.49 0 0 1 .555.832l.655-.437a1.5 1.5 0 0 1-.555-.832z"/><path d="M16.5 12a1.5 1.5 0 1 0 0 3 1.5 1.5 0 1 0 0-3zm0 6a1.5 1.5 0 1 0 0 3 1.5 1.5 0 1 0 0-3zm-3-2a1.5 1.5 0 1 0 0 3 1.5 1.5 0 1 0 0-3zm6 0a1.5 1.5 0 1 0 0 3 1.5 1.5 0 1 0 0-3z"/><path d="M16 14.5h1v4h-1z"/></g><path fill="#0072c6" d="M7.58 17.93l8.92-10.47 5.706 6.698L23 13.5 11.5 0 0 13.5 11.5 23l1.1-.917z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Active_Directory.svg b/src/main/webapp/img/lib/mscae/Active_Directory.svg index 4f70880e637b437601a0b55e84634ea1a27e283a..a5bc09a756e104fc6e25f7344976fec8db5ed2e4 100644 --- a/src/main/webapp/img/lib/mscae/Active_Directory.svg +++ b/src/main/webapp/img/lib/mscae/Active_Directory.svg @@ -1,26 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#59B4D9" d="M25.001,50.001c-1.232,0-2.392-0.48-3.261-1.352L1.351,28.261C0.492,27.402,0,26.215,0,25 - c0-1.214,0.492-2.402,1.351-3.26L21.74,1.352C22.611,0.48,23.769,0,25.001,0c1.231,0,2.39,0.48,3.261,1.352L48.648,21.74 - C49.521,22.608,50,23.767,50,25c0,1.233-0.479,2.392-1.353,3.263L28.262,48.649C27.392,49.521,26.232,50.001,25.001,50.001"/> -<path fill="#FFFFFF" d="M38.614,21.093c-2.16,0-3.91,1.75-3.91,3.909c0,0.792,0.239,1.527,0.645,2.143l-7.744,7.744 - c-0.206-0.144-0.427-0.264-0.656-0.373V14.759c1.167-0.676,1.961-1.924,1.961-3.37C28.91,9.23,27.16,7.48,25,7.48 - c-2.158,0-3.908,1.75-3.908,3.909c0,1.446,0.794,2.694,1.96,3.37v19.756c-0.219,0.104-0.434,0.216-0.632,0.353l-7.753-7.753 - c0.394-0.61,0.628-1.333,0.628-2.113c0-2.159-1.75-3.909-3.908-3.909c-2.16,0-3.91,1.75-3.91,3.909s1.75,3.909,3.91,3.909 - c0.448,0,0.872-0.091,1.274-0.23l8.15,8.15c-0.234,0.548-0.364,1.15-0.364,1.783c0,2.513,2.038,4.551,4.551,4.551 - c2.514,0,4.551-2.038,4.551-4.551c0-0.621-0.126-1.212-0.351-1.751l8.173-8.172c0.392,0.132,0.804,0.22,1.241,0.22 - c2.158,0,3.908-1.75,3.908-3.909S40.771,21.093,38.614,21.093z"/> -<rect x="31.006" y="8.226" transform="matrix(-0.707 0.7072 -0.7072 -0.707 68.2099 8.8718)" opacity="0.5" fill="#FFFFFF" width="2.523" height="20.676"/> -<rect x="16.487" y="8.242" transform="matrix(0.7071 0.7071 -0.7071 0.7071 18.3355 -7.1088)" opacity="0.5" fill="#FFFFFF" width="2.524" height="20.677"/> -<path fill="#B8D432" d="M27.665,38.614c0,1.496-1.214,2.709-2.71,2.709c-1.497,0-2.709-1.213-2.709-2.709 - c0-1.496,1.212-2.709,2.709-2.709C26.45,35.905,27.665,37.118,27.665,38.614"/> -<path fill="#B8D432" d="M27.174,11.389c0,1.201-0.973,2.174-2.174,2.174c-1.201,0-2.174-0.973-2.174-2.174 - c0-1.201,0.973-2.174,2.174-2.174C26.201,9.215,27.174,10.188,27.174,11.389"/> -<path fill="#B8D432" d="M13.563,25.001c0,1.201-0.975,2.174-2.174,2.174c-1.201,0-2.174-0.973-2.174-2.174 - c0-1.201,0.973-2.174,2.174-2.174C12.588,22.827,13.563,23.8,13.563,25.001"/> -<path fill="#B8D432" d="M40.788,25.001c0,1.201-0.975,2.174-2.175,2.174c-1.2,0-2.174-0.973-2.174-2.174 - c0-1.201,0.974-2.174,2.174-2.174C39.813,22.827,40.788,23.8,40.788,25.001"/> -<path opacity="0.1" fill="#FFFFFF" d="M28.262,1.352C27.391,0.48,26.233,0,25.001,0c-1.231,0-2.389,0.48-3.26,1.352L1.352,21.74 - C0.492,22.598,0,23.786,0,25c0,1.215,0.492,2.403,1.352,3.261l11.543,11.544L34.61,7.699L28.262,1.352z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path fill="#59b4d9" d="M25 50c-1.232 0-2.392-.48-3.26-1.352L1.35 28.26a4.64 4.64 0 0 1 0-6.521L21.74 1.352a4.58 4.58 0 0 1 6.522 0L48.648 21.74C49.52 22.608 50 23.767 50 25s-.48 2.392-1.353 3.263L28.262 48.65a4.58 4.58 0 0 1-3.261 1.352"/><g fill="#fff"><path d="M38.614 21.093a3.91 3.91 0 0 0-3.91 3.909 3.88 3.88 0 0 0 .645 2.143l-7.744 7.744a4.55 4.55 0 0 0-.656-.373V14.76c1.167-.676 1.96-1.924 1.96-3.37A3.91 3.91 0 0 0 25 7.48a3.91 3.91 0 0 0-3.908 3.909c0 1.446.794 2.694 1.96 3.37v19.756a4.48 4.48 0 0 0-.632.353l-7.753-7.753a3.88 3.88 0 0 0 .628-2.113 3.91 3.91 0 0 0-3.908-3.909 3.91 3.91 0 0 0-3.91 3.909 3.91 3.91 0 0 0 3.91 3.909 3.88 3.88 0 0 0 1.274-.23l8.15 8.15c-.234.548-.364 1.15-.364 1.783 0 2.513 2.038 4.55 4.55 4.55a4.55 4.55 0 0 0 4.551-4.551c0-.62-.126-1.212-.35-1.75l8.173-8.172c.392.132.804.22 1.24.22a3.91 3.91 0 0 0 3.908-3.909 3.91 3.91 0 0 0-3.906-3.909z"/><path opacity=".5" d="M40.47 24.983l-1.784 1.784L24.065 12.15l1.784-1.784z"/><path opacity=".5" d="M24.166 10.377l1.785 1.785-14.62 14.62-1.785-1.785z"/></g><path d="M27.665 38.614a2.71 2.71 0 0 1-2.71 2.709 2.71 2.71 0 0 1-2.709-2.709 2.71 2.71 0 0 1 2.709-2.709 2.71 2.71 0 0 1 2.71 2.709m-.49-27.224c0 1.2-.973 2.174-2.174 2.174s-2.174-.973-2.174-2.174S23.8 9.215 25 9.215s2.174.973 2.174 2.174M13.563 25c0 1.2-.975 2.174-2.174 2.174S9.215 26.202 9.215 25s.973-2.174 2.174-2.174 2.174.973 2.174 2.174m27.225 0c0 1.2-.975 2.174-2.175 2.174S36.44 26.202 36.44 25s.974-2.174 2.174-2.174S40.79 23.8 40.79 25" fill="#b8d432"/><path opacity=".1" fill="#fff" d="M28.262 1.352A4.58 4.58 0 0 0 25.001 0c-1.23 0-2.39.48-3.26 1.352L1.352 21.74C.492 22.598 0 23.786 0 25s.492 2.403 1.352 3.26l11.543 11.544L34.6 7.7l-6.348-6.347z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Active_Directory_Health_Monitoring.svg b/src/main/webapp/img/lib/mscae/Active_Directory_Health_Monitoring.svg index 9947173bc53e15b07d17323e937bbd063880a6ef..38fdfe9aa5cbb9f9353e14f3355fcbd70f7657e4 100644 --- a/src/main/webapp/img/lib/mscae/Active_Directory_Health_Monitoring.svg +++ b/src/main/webapp/img/lib/mscae/Active_Directory_Health_Monitoring.svg @@ -1,28 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - height="50px" width="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#59B4D9" d="M22,44c-1.1,0-2.1-0.4-2.9-1.2L1.2,24.9C0.4,24.1,0,23.1,0,22c0-1.1,0.4-2.1,1.2-2.9L19.1,1.2 - C19.9,0.4,20.9,0,22,0c1.1,0,2.1,0.4,2.9,1.2l17.9,17.9c0.8,0.8,1.2,1.8,1.2,2.9s-0.4,2.1-1.2,2.9L24.9,42.8 - C24.1,43.6,23.1,44,22,44"/> -<path fill="#FFFFFF" d="M34,18.6c-1.9,0-3.4,1.5-3.4,3.4c0,0.7,0.2,1.3,0.6,1.9l-6.8,6.8c-0.2-0.1-0.4-0.2-0.6-0.3V13 - c1-0.6,1.7-1.7,1.7-3c0-1.9-1.5-3.4-3.4-3.4c-1.9,0-3.4,1.5-3.4,3.4c0,1.3,0.7,2.4,1.7,3v17.4c-0.2,0.1-0.4,0.2-0.6,0.3l-6.8-6.8 - c0.3-0.5,0.6-1.2,0.6-1.9c0-1.9-1.5-3.4-3.4-3.4c-1.9,0-3.4,1.5-3.4,3.4c0,1.9,1.5,3.4,3.4,3.4c0.4,0,0.8-0.1,1.1-0.2l7.2,7.2 - c-0.2,0.5-0.3,1-0.3,1.6c0,2.2,1.8,4,4,4c2.2,0,4-1.8,4-4c0-0.5-0.1-1.1-0.3-1.5l7.2-7.2c0.3,0.1,0.7,0.2,1.1,0.2 - c1.9,0,3.4-1.5,3.4-3.4C37.4,20.1,35.9,18.6,34,18.6z"/> -<rect x="27.3" y="7.2" transform="matrix(0.707 -0.7072 0.7072 0.707 -3.2349 24.869)" opacity="0.5" fill="#FFFFFF" enable-background="new " width="2.2" height="18.2"/> -<rect x="14.5" y="7.3" transform="matrix(-0.7071 -0.7071 0.7071 -0.7071 15.1 38.955)" opacity="0.5" fill="#FFFFFF" enable-background="new " width="2.2" height="18.2"/> -<path fill="#B8D432" d="M24.3,34c0,1.3-1.1,2.4-2.4,2.4c-1.3,0-2.4-1.1-2.4-2.4s1.1-2.4,2.4-2.4C23.3,31.6,24.3,32.7,24.3,34"/> -<path fill="#B8D432" d="M23.9,10c0,1.1-0.9,1.9-1.9,1.9s-1.9-0.9-1.9-1.9s0.9-1.9,1.9-1.9S23.9,9,23.9,10"/> -<path fill="#B8D432" d="M11.9,22c0,1.1-0.9,1.9-1.9,1.9c-1.1,0-1.9-0.9-1.9-1.9c0-1.1,0.9-1.9,1.9-1.9C11.1,20.1,11.9,20.9,11.9,22" - /> -<path fill="#B8D432" d="M35.9,22c0,1.1-0.9,1.9-1.9,1.9s-1.9-0.9-1.9-1.9c0-1.1,0.9-1.9,1.9-1.9S35.9,20.9,35.9,22"/> -<path opacity="0.1" fill="#FFFFFF" enable-background="new " d="M24.9,1.2C24.1,0.4,23.1,0,22,0c-1.1,0-2.1,0.4-2.9,1.2L1.2,19.1 - C0.4,19.9,0,20.9,0,22c0,1.1,0.4,2.1,1.2,2.9L11.3,35L30.5,6.8L24.9,1.2z"/> -<path fill="#BA141A" d="M48.2,30.3c-0.4-0.5-1-0.8-1.6-1.1c-2.7-1.1-6.6,0.3-9,3.7c-3.8-4.5-8.2-5.4-10.7-2.7 - c-5,5.4,1.3,12.6,6.2,16.6c1.9,1.6,3.7,2.7,4.4,3.1v0c0,0,0,0,0,0c0,0,0,0,0,0v0C40.2,48.7,55.1,37.8,48.2,30.3"/> -<path opacity="0.2" fill="#FFFFFF" d="M37.6,32.9c-3.8-4.5-8.2-5.4-10.7-2.7c-5,5.4,1.3,12.6,6.2,16.6l13.6-17.7 - C43.9,28.1,40,29.5,37.6,32.9"/> -<path opacity="0.5" fill="#FFFFFF" d="M26.2,39.1l2.8,0l2.5-0.1l1.9-5.1c0.1-0.3,0.3-0.9,1.1-0.9c0.8,0,0.9,0.6,0.9,0.9l0.1,8.5 - l1.4-2.9c0.1-0.3,0.4-0.4,0.6-0.4h8.1c0.4,0,0.7,0.4,0.7,0.7s-0.3,0.9-0.7,0.9h-7.3l-2.6,5.2c-0.2,0.5-0.4,0.7-1,0.6l0,0 - c-0.3-0.1-0.6-0.5-0.6-0.8L34,37.9L33.2,40c-0.1,0.3-0.3,0.7-0.6,0.7h-2.4h-3.1l-0.5-0.8L26.2,39.1z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" height="50" width="50"><path fill="#59b4d9" d="M22 44c-1.1 0-2.1-.4-2.9-1.2L1.2 24.9C.4 24.1 0 23.1 0 22s.4-2.1 1.2-2.9L19.1 1.2C19.9.4 20.9 0 22 0s2.1.4 2.9 1.2l17.9 17.9c.8.8 1.2 1.8 1.2 2.9s-.4 2.1-1.2 2.9L24.9 42.8c-.8.8-1.8 1.2-2.9 1.2"/><g fill="#fff"><path d="M34 18.6a3.37 3.37 0 0 0-3.4 3.4c0 .7.2 1.3.6 1.9l-6.8 6.8-.6-.3V13c1-.6 1.7-1.7 1.7-3a3.37 3.37 0 0 0-3.4-3.4 3.37 3.37 0 0 0-3.4 3.4c0 1.3.7 2.4 1.7 3v17.4l-.6.3-6.8-6.8c.3-.5.6-1.2.6-1.9a3.37 3.37 0 0 0-3.4-3.4A3.37 3.37 0 0 0 6.8 22a3.37 3.37 0 0 0 3.4 3.4c.4 0 .8-.1 1.1-.2l7.2 7.2c-.2.5-.3 1-.3 1.6 0 2.2 1.8 4 4 4s4-1.8 4-4c0-.5-.1-1.1-.3-1.5l7.2-7.2c.3.1.7.2 1.1.2a3.37 3.37 0 0 0 3.4-3.4c-.2-2-1.7-3.5-3.6-3.5z"/><path opacity=".5" d="M21.158 10.653l1.555-1.556 12.87 12.867-1.555 1.556z"/><path opacity=".5" d="M10.01 23.54l-1.556-1.556 12.87-12.87 1.556 1.556z"/></g><path d="M24.3 34c0 1.3-1.1 2.4-2.4 2.4s-2.4-1.1-2.4-2.4 1.1-2.4 2.4-2.4c1.4 0 2.4 1.1 2.4 2.4m-.4-24c0 1.1-.9 1.9-1.9 1.9a1.97 1.97 0 0 1-1.9-1.9A1.97 1.97 0 0 1 22 8.1a1.97 1.97 0 0 1 1.9 1.9m-12 12c0 1.1-.9 1.9-1.9 1.9-1.1 0-1.9-.9-1.9-1.9 0-1.1.9-1.9 1.9-1.9 1.1 0 1.9.8 1.9 1.9m24 0c0 1.1-.9 1.9-1.9 1.9a1.97 1.97 0 0 1-1.9-1.9c0-1.1.9-1.9 1.9-1.9s1.9.8 1.9 1.9" fill="#b8d432"/><path opacity=".1" fill="#fff" d="M24.9 1.2C24.1.4 23.1 0 22 0s-2.1.4-2.9 1.2L1.2 19.1C.4 19.9 0 20.9 0 22s.4 2.1 1.2 2.9L11.3 35 30.5 6.8l-5.6-5.6z"/><path fill="#ba141a" d="M48.2 30.3c-.4-.5-1-.8-1.6-1.1-2.7-1.1-6.6.3-9 3.7-3.8-4.5-8.2-5.4-10.7-2.7-5 5.4 1.3 12.6 6.2 16.6a31.57 31.57 0 0 0 4.4 3.1c2.7-1.2 17.6-12.1 10.7-19.6"/><g fill="#fff"><path opacity=".2" d="M37.6 32.9c-3.8-4.5-8.2-5.4-10.7-2.7-5 5.4 1.3 12.6 6.2 16.6l13.6-17.7c-2.8-1-6.7.4-9.1 3.8"/><path opacity=".5" d="M26.2 39.1H29l2.5-.1 1.9-5.1c.1-.3.3-.9 1.1-.9s.9.6.9.9l.1 8.5 1.4-2.9c.1-.3.4-.4.6-.4h8.1c.4 0 .7.4.7.7s-.3.9-.7.9h-7.3l-2.6 5.2c-.2.5-.4.7-1 .6-.3-.1-.6-.5-.6-.8l-.1-7.8-.8 2.1c-.1.3-.3.7-.6.7h-5.5l-.5-.8-.4-.8z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/AddTeamMember.svg b/src/main/webapp/img/lib/mscae/AddTeamMember.svg index 6b14fba424ee1389afb2e37574b82212b6951c4a..1cab08c9570d57f3d9ef3a489784069216d92075 100644 --- a/src/main/webapp/img/lib/mscae/AddTeamMember.svg +++ b/src/main/webapp/img/lib/mscae/AddTeamMember.svg @@ -1,13 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 50 43.62" style="enable-background:new 0 0 50 43.62;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#59B4D9;} -</style> -<path class="st0" d="M42.959,8.958c0,4.947-4.011,8.959-8.96,8.959c-4.948,0-8.958-4.011-8.958-8.959 - c0-4.947,4.01-8.958,8.958-8.958C38.948,0,42.959,4.011,42.959,8.958"/> -<polygon class="st0" points="40.55,20.988 34,30.166 27.449,20.988 18,20.988 18,43.62 50,43.62 50,20.988 "/> -<polygon class="st0" points="8.211,16.909 8.211,12.12 4.789,12.12 4.789,16.909 0,16.909 0,20.331 4.789,20.331 4.789,25.12 - 8.211,25.12 8.211,25.031 8.211,20.331 12.911,20.331 13,20.331 13,16.909 "/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 43.62" fill="#59b4d9"><path d="M42.96 8.958A8.96 8.96 0 0 1 34 17.917a8.96 8.96 0 0 1-8.958-8.959A8.96 8.96 0 0 1 33.999 0a8.96 8.96 0 0 1 8.96 8.958m-2.41 12.03L34 30.166l-6.55-9.178H18V43.62h32V20.988zM8.2 16.9v-4.8H4.8v4.8H0v3.422h4.8v4.8H8.2v-4.8H13V16.9z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Address_Space.svg b/src/main/webapp/img/lib/mscae/Address_Space.svg index ef67181ddb1c958fa40a52b0d0c3ace3fac8a17a..e26cb84de9dff5a732e5cbbbe2ca82594141e944 100644 --- a/src/main/webapp/img/lib/mscae/Address_Space.svg +++ b/src/main/webapp/img/lib/mscae/Address_Space.svg @@ -1,18 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 50.077 28.714" style="enable-background:new 0 0 50.077 28.714;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#3999C6;} - .st1{fill:#7FBA00;} -</style> -<path class="st0" d="M49.739,15.075c0.5-0.5,0.4-1.3,0-1.8l-2.4-2.4l-10.8-10.5c-0.5-0.5-1.2-0.5-1.7,0l0,0c-0.5,0.5-0.6,1.3,0,1.8 - l11.3,11.1c0.5,0.5,0.5,1.3,0,1.8l-11.5,11.5c-0.5,0.5-0.5,1.3,0,1.8l0,0c0.5,0.5,1.3,0.4,1.7,0l10.7-10.6c0,0,0,0,0.1-0.1 - L49.739,15.075z"/> -<path class="st0" d="M0.339,15.075c-0.5-0.5-0.4-1.3,0-1.8l2.4-2.4l10.8-10.5c0.5-0.5,1.2-0.5,1.7,0l0,0c0.5,0.5,0.6,1.3,0,1.8 - l-11.1,11.1c-0.5,0.5-0.5,1.3,0,1.8l11.3,11.5c0.5,0.5,0.5,1.3,0,1.8l0,0c-0.5,0.5-1.3,0.4-1.7,0l-10.9-10.5c0,0,0,0-0.1-0.1 - L0.339,15.075z"/> -<path class="st1" d="M22.739,14.175c0,1.9-1.6,3.3-3.3,3.3c-1.7,0-3.5-1.6-3.5-3.3s1.4-3.3,3.5-3.3 - C21.439,10.875,22.739,12.475,22.739,14.175z"/> -<circle class="st1" cx="30.739" cy="14.175" r="3.3"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50.077 28.714"><path d="M49.74 15.075c.5-.5.4-1.3 0-1.8l-2.4-2.4-10.8-10.5c-.5-.5-1.2-.5-1.7 0s-.6 1.3 0 1.8l11.3 11.1c.5.5.5 1.3 0 1.8l-11.5 11.5c-.5.5-.5 1.3 0 1.8s1.3.4 1.7 0l10.8-10.7 2.6-2.6zm-49.4 0c-.5-.5-.4-1.3 0-1.8l2.4-2.4 10.8-10.5c.5-.5 1.2-.5 1.7 0s.6 1.3 0 1.8l-11.1 11.1c-.5.5-.5 1.3 0 1.8l11.3 11.5c.5.5.5 1.3 0 1.8s-1.3.4-1.7 0l-11-10.6-2.4-2.7z" fill="#3999c6"/><g fill="#7fba00"><path d="M22.74 14.175c0 1.9-1.6 3.3-3.3 3.3s-3.5-1.6-3.5-3.3 1.4-3.3 3.5-3.3c2 0 3.3 1.6 3.3 3.3z"/><circle cx="30.739" cy="14.175" r="3.3"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Advisor.svg b/src/main/webapp/img/lib/mscae/Advisor.svg index 62a8d3d477c52adc7e6bb1b1703fbe85048bfc40..a2c2ca64c016309b765e96e30882359559a98c88 100644 --- a/src/main/webapp/img/lib/mscae/Advisor.svg +++ b/src/main/webapp/img/lib/mscae/Advisor.svg @@ -1,22 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 21.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" style="enable-background:new 0 0 50 50;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#59B4D9;} - .st1{opacity:0.2;fill:#FFFFFF;enable-background:new ;} - .st2{fill:#BA141A;} - .st3{fill:#DD5900;} - .st4{fill:#FF8C00;} - .st5{opacity:0.15;fill:#FFFFFF;enable-background:new ;} -</style> -<path class="st0" d="M50,25.4c0-3.3-2.7-5.8-5.8-5.8c-0.3,0-0.5,0-0.8,0c0.3-1.3,0.6-2.7,0.6-4.1C44,6.9,37.1,0,28.5,0 - C21.8,0,16,4.4,14,10.7c-1.1-0.3-2.2-0.6-3.4-0.6C4.7,10,0,14.7,0,20.7s4.7,10.7,10.5,10.7l0,0l0,0h34.2l0,0 - C47.6,31,50,28.5,50,25.4"/> -<path class="st1" d="M16,31.3c-1.4-1.4-2.4-3.1-2.8-5.2c-1.3-5.8,2.2-11.4,8-12.7c1.3-0.3,2.4-0.3,3.4-0.2C25.1,8,28.4,3.1,33.2,0.8 - c-1.4-0.5-3-0.8-4.7-0.8C21.8,0,16,4.4,14,10.7c-1.1-0.3-2.2-0.6-3.4-0.6C4.7,10,0,14.7,0,20.7s4.7,10.7,10.5,10.7l0,0l0,0H16z"/> -<path class="st2" d="M36.5,32c-1.6,1.4-3.7,2.3-6,2.3s-4.4-0.9-6-2.3l-0.9,18l6.8-6.9l6.8,6.9L36.5,32z"/> -<circle class="st3" cx="30.6" cy="25.7" r="11.6"/> -<circle class="st4" cx="30.6" cy="25.7" r="8.8"/> -<path class="st5" d="M22.3,34c-4.5-4.5-4.5-11.9,0-16.4s11.9-4.5,16.4,0L22.3,34z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path d="M50 25.4c0-3.3-2.7-5.8-5.8-5.8h-.8c.3-1.3.6-2.7.6-4.1A15.45 15.45 0 0 0 28.5 0C21.8 0 16 4.4 14 10.7c-1.1-.3-2.2-.6-3.4-.6C4.7 10 0 14.7 0 20.7s4.7 10.7 10.5 10.7h34.2c2.9-.4 5.3-2.9 5.3-6" fill="#59b4d9"/><path d="M16 31.3c-1.4-1.4-2.4-3.1-2.8-5.2-1.3-5.8 2.2-11.4 8-12.7a10.15 10.15 0 0 1 3.4-.2C25.1 8 28.4 3.1 33.2.8c-1.4-.5-3-.8-4.7-.8C21.8 0 16 4.4 14 10.7c-1.1-.3-2.2-.6-3.4-.6C4.7 10 0 14.7 0 20.7s4.7 10.7 10.5 10.7H16z" opacity=".2" fill="#fff" enable-background="new"/><path d="M36.5 32c-1.6 1.4-3.7 2.3-6 2.3s-4.4-.9-6-2.3l-.9 18 6.8-6.9 6.8 6.9-.7-18z" fill="#ba141a"/><circle cx="30.6" cy="25.7" r="11.6" fill="#dd5900"/><circle cx="30.6" cy="25.7" r="8.8" fill="#ff8c00"/><path d="M22.3,34c-4.5-4.5-4.5-11.9,0-16.4s11.9-4.5,16.4,0L22.3,34z" opacity=".15" fill="#fff" enable-background="new"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Alien.svg b/src/main/webapp/img/lib/mscae/Alien.svg index 45044743582e811b7d903fd782f1c5231c17b9d0..a0d4ed8626c5ffed98ded583ace86765038bbae4 100644 --- a/src/main/webapp/img/lib/mscae/Alien.svg +++ b/src/main/webapp/img/lib/mscae/Alien.svg @@ -1,64 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#E5E5E5" d="M23.614,18.375c-0.145-0.012-0.248-0.063-0.404-0.063c-8.292,0-11.161,3.297-11.161,3.297 - c8.13,4.939,11.161,15.409,11.161,15.409s0.159-0.372,0.404-0.976c0.249,0.604,0.409,0.976,0.409,0.976s3.031-10.47,11.161-15.409 - c0,0-2.871-3.297-11.161-3.297C23.868,18.312,23.762,18.363,23.614,18.375"/> -<path fill="#3999C6" d="M47.111,41.046c0.114-0.086,0.18-0.135,0.18-0.135s-1.514-2.411-4.879-5.014 - c-1.953-1.51-4.522-3.086-7.791-4.293v-0.06c-3.277-1.128-7.008-1.774-10.979-1.774c-3.967,0-7.7,0.646-10.976,1.774v0.06 - c-3.267,1.207-5.836,2.783-7.789,4.293C1.513,38.5,0,40.911,0,40.911s0.07,0.053,0.201,0.151c0.142,0.105,0.363,0.264,0.649,0.461 - c2.579,1.764,10.931,7.646,22.792,7.646c11.865,0,20.217-5.882,22.795-7.646C46.742,41.315,46.966,41.152,47.111,41.046"/> -<path opacity="0.5" fill="#1E1E1E" enable-background="new " d="M38.025,35.012c0,2.04-6.473,3.696-14.455,3.696 - c-7.986,0-14.455-1.656-14.455-3.696c0-2.047,6.469-3.705,14.455-3.705C31.552,31.307,38.025,32.965,38.025,35.012"/> -<path fill="#7A7A7A" d="M23.521,31.307L23.521,31.307h-0.015h-0.014c-8,0.233-14.327,1.777-14.536,3.58 - c-0.008-0.492-0.014-0.974-0.022-1.444c-0.025-1.851,6.404-3.448,14.558-3.682h0.014h0.015c8.149,0.234,14.581,1.831,14.556,3.682 - c-0.01,0.47-0.016,0.952-0.022,1.444C37.845,33.084,31.517,31.54,23.521,31.307"/> -<path fill="#59B4D9" d="M20.716,34.061c-0.302-0.062-7.351-1.457-8.896-7.441c-0.066-0.257,0.039-0.531,0.274-0.649 - c0.224-0.145,0.514-0.116,0.701,0.065c0.041,0.035,3.668,3.508,6.656,3.548c0.246-0.008,0.459,0.15,0.549,0.358l1.367,3.315 - c0.088,0.19,0.049,0.42-0.084,0.599C21.152,34.021,20.929,34.101,20.716,34.061"/> -<path fill="#59B4D9" d="M33.392,25.631c-0.027,0.035-2.987,3.672-5.753,4.064c-0.227,0.019-0.401,0.186-0.453,0.403l-0.879,3.22 - c-0.059,0.203-0.002,0.409,0.145,0.543c0.153,0.143,0.364,0.193,0.55,0.132c0.271-0.084,6.643-2.224,7.361-7.959 - c0.039-0.237-0.101-0.471-0.332-0.563C33.812,25.367,33.55,25.439,33.392,25.631"/> -<polygon fill="#1E1E1E" points="26.729,30.924 27.644,37.264 19.433,37.264 20.348,30.924 "/> -<path fill="#59B4D9" d="M23.197,37.482c-2.251-8.971-5.546-12.207-9.584-20.914C9.691,8.103,15.972-0.173,24.035,0.003 - c8.053,0.187,13.961,8.735,9.656,17.01C29.27,25.544,25.845,28.625,23.197,37.482"/> -<path fill="#1E1E1E" d="M20.342,14.434c-0.017,0.746-0.367,1.331-0.781,1.326c-0.422-0.019-0.738-0.615-0.732-1.361 - c0.017-0.737,0.376-1.325,0.781-1.313C20.031,13.098,20.355,13.706,20.342,14.434"/> -<path fill="#1E1E1E" d="M28.346,14.637c-0.023,0.727-0.368,1.322-0.785,1.312c-0.419-0.007-0.74-0.61-0.717-1.352 - c0.006-0.737,0.354-1.327,0.779-1.319C28.037,13.287,28.364,13.891,28.346,14.637"/> -<path fill="#A0A1A2" d="M27.645,25.826c-2.353,2.658-3.495,6.26-4.031,8.691c-0.538-2.431-1.681-6.033-4.034-8.691 - c0,0-3.785-4.027-7.451-4.063c0,0,9.963,9.471,10.92,15.421h0.12h0.892h0.119c0.959-5.95,10.917-15.421,10.917-15.421 - C31.429,21.799,27.645,25.826,27.645,25.826z"/> -<path fill="#E5E5E5" d="M23.521,36.885L23.521,36.885h-0.029c-8-0.229-14.327-1.263-14.536-3.067 - c-0.008,0.494-0.014,0.974-0.022,1.448c-0.025,1.849,6.404,3.443,14.558,3.679v0.003c0.004,0,0.01-0.003,0.014-0.003 - s0.008,0.003,0.015,0.003v-0.003c8.149-0.236,14.581-1.83,14.556-3.679c-0.01-0.474-0.016-0.954-0.022-1.448 - C37.845,35.622,31.517,36.656,23.521,36.885"/> -<path fill="#B8D432" d="M43.49,6.905c-3.596,0-6.511,2.914-6.511,6.51c0,1.275,0.149,2.058,0.783,3.062l-2.139,1.767h3.512 - c1.154,1.042,2.677,1.681,4.355,1.681c3.596,0,6.51-2.916,6.51-6.51C50,9.819,47.086,6.905,43.49,6.905"/> -<path fill="#FFFFFF" d="M46.812,10.702c0,0.978-0.488,1.863-1.465,2.658c-0.408,0.328-0.68,0.597-0.818,0.807 - c-0.137,0.211-0.207,0.489-0.207,0.835v0.386h-1.824v-0.589c0-0.847,0.338-1.555,1.012-2.126c0.42-0.346,0.707-0.631,0.859-0.855 - c0.15-0.225,0.227-0.496,0.227-0.813c0-0.295-0.107-0.536-0.326-0.723C44.052,10.094,43.773,10,43.431,10 - c-0.768,0-1.498,0.307-2.195,0.919V8.808c0.721-0.43,1.529-0.646,2.428-0.646c0.986,0,1.758,0.226,2.314,0.678 - C46.535,9.291,46.812,9.911,46.812,10.702z"/> -<path fill="#FFFFFF" d="M44.744,17.388c0,0.337-0.121,0.615-0.361,0.835s-0.549,0.329-0.922,0.329c-0.355,0-0.662-0.111-0.92-0.333 - s-0.387-0.499-0.387-0.831s0.125-0.607,0.373-0.824c0.248-0.218,0.559-0.326,0.934-0.326c0.369,0,0.676,0.108,0.918,0.326 - C44.623,16.78,44.744,17.056,44.744,17.388z"/> -<path opacity="0.5" fill="#1E1E1E" enable-background="new " d="M23.643,49.169c11.865,0,20.217-5.882,22.795-7.646 - c0.305-0.208,0.529-0.371,0.674-0.477c-4.695,1.893-13.598,5.329-23.512,5.329c-9.912,0-18.714-3.371-23.398-5.313 - c0.142,0.105,0.363,0.264,0.649,0.461C3.429,43.287,11.781,49.169,23.643,49.169"/> -<path opacity="0.85" fill="#3E3E3E" enable-background="new " d="M30.983,18.229c0.013-0.648-14.392-0.97-14.412-0.324 - c-0.009,0.452,1.637,2.518,3.98,3.764c0.878-0.241,1.945-0.316,3.052-0.155c0.958,0.14,1.787,0.432,2.427,0.808 - C28.942,21.411,30.976,18.757,30.983,18.229z"/> -<path fill="#1E1E1E" d="M24.415,18.921c-0.721-0.045-0.77,0.511-0.741,1.178c0.032,0.667,0.082,0.915-0.216,0.92 - c-0.294,0.003-0.722-0.166-0.35-0.904c0.378-0.738,0.029-1.718-1.459-0.848c-1.174,0.686-1.027,1.884-0.913,2.362 - c0.842-0.204,1.834-0.266,2.868-0.115c0.958,0.14,1.787,0.432,2.427,0.808c0.111-0.035,0.211-0.087,0.32-0.127 - c0.01-0.025,0.02-0.042,0.031-0.067C27.207,20.165,25.137,18.961,24.415,18.921z"/> -<path fill="#FFFFFF" d="M25.247,19.035c0.737-0.005,1.344-0.598,1.422-1.353c-0.918-0.045-1.907-0.08-2.901-0.102 - C23.799,18.393,24.449,19.042,25.247,19.035z"/> -<path fill="#FFFFFF" d="M21.998,18.985c0.796,0.032,1.465-0.6,1.521-1.41c-0.758-0.015-1.512-0.024-2.229-0.024 - c-0.231,0-0.452,0.002-0.675,0.004C20.653,18.329,21.249,18.957,21.998,18.985z"/> -<path fill="#DD5900" d="M20.552,21.668c1.024,0.544,2.179,0.934,3.389,0.96c0.733,0.017,1.433-0.102,2.09-0.307 - c-0.64-0.376-1.469-0.668-2.427-0.808C22.496,21.352,21.429,21.428,20.552,21.668z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path fill="#e5e5e5" d="M23.614 18.375c-.145-.012-.248-.063-.404-.063-8.292 0-11.16 3.297-11.16 3.297 8.13 4.94 11.16 15.41 11.16 15.41l.404-.976.41.976s3.03-10.47 11.16-15.41c0 0-2.87-3.297-11.16-3.297-.155 0-.26.05-.41.063"/><path fill="#3999c6" d="M47.11 41.046l.18-.135s-1.514-2.41-4.88-5.014c-1.953-1.5-4.522-3.086-7.79-4.293v-.06c-3.277-1.128-7.008-1.774-10.98-1.774s-7.7.646-10.976 1.774v.06C9.4 32.81 6.83 34.387 4.877 35.897 1.513 38.5 0 40.91 0 40.91l.2.15a24.54 24.54 0 0 0 .649.461c2.58 1.764 10.93 7.646 22.792 7.646s20.217-5.882 22.795-7.646a24.05 24.05 0 0 0 .674-.477"/><path opacity=".5" fill="#1e1e1e" d="M38.025 35.012c0 2.04-6.473 3.696-14.455 3.696S9.115 37.052 9.115 35.012c0-2.047 6.47-3.705 14.455-3.705s14.455 1.658 14.455 3.705"/><path fill="#7a7a7a" d="M23.52 31.307h-.03c-8 .233-14.327 1.777-14.536 3.58l-.022-1.444c-.025-1.85 6.404-3.448 14.558-3.682h.03c8.15.234 14.58 1.83 14.556 3.682l-.022 1.444c-.2-1.803-6.538-3.347-14.534-3.58"/><path d="M20.716 34.06c-.302-.062-7.35-1.457-8.896-7.44-.066-.257.04-.53.274-.65.224-.145.514-.116.7.065.04.035 3.668 3.508 6.656 3.548a.59.59 0 0 1 .55.358l1.367 3.315c.088.2.05.42-.084.6a.59.59 0 0 1-.567.205m12.676-8.43c-.027.035-2.987 3.672-5.753 4.064-.227.02-.4.186-.453.403l-.88 3.22c-.06.203-.002.4.145.543.153.143.364.193.55.132.27-.084 6.643-2.224 7.36-7.96a.52.52 0 0 0-.332-.563c-.22-.104-.48-.032-.64.16" fill="#59b4d9"/><path fill="#1e1e1e" d="M26.73 30.924l.915 6.34h-8.21l.915-6.34z"/><path fill="#59b4d9" d="M23.197 37.482c-2.25-8.97-5.546-12.207-9.584-20.914C9.69 8.103 15.972-.173 24.035.003c8.053.187 13.96 8.735 9.656 17-4.42 8.53-7.846 11.612-10.494 20.47"/><path d="M20.342 14.434c-.017.746-.367 1.33-.78 1.326-.422-.02-.738-.615-.732-1.36.017-.737.376-1.325.78-1.313.42.012.745.62.732 1.348m8.004.202c-.023.727-.368 1.322-.785 1.312s-.74-.6-.717-1.352c.006-.737.354-1.327.78-1.32.414.01.74.613.723 1.36" fill="#1e1e1e"/><path fill="#a0a1a2" d="M27.645 25.826c-2.353 2.658-3.495 6.26-4.03 8.69-.538-2.43-1.68-6.033-4.034-8.69 0 0-3.785-4.027-7.45-4.063 0 0 9.963 9.47 10.92 15.42h1.13c.96-5.95 10.917-15.42 10.917-15.42-3.668.036-7.452 4.063-7.452 4.063z"/><path fill="#e5e5e5" d="M23.52 36.885h-.03c-8-.23-14.327-1.263-14.536-3.067l-.022 1.448c-.025 1.85 6.404 3.443 14.558 3.68v.003c.018-.003.022 0 .03 0v-.003c8.15-.236 14.58-1.83 14.556-3.68l-.022-1.448c-.2 1.804-6.538 2.838-14.534 3.067"/><path fill="#b8d432" d="M43.5 6.905a6.51 6.51 0 0 0-6.511 6.51c0 1.275.15 2.058.783 3.062l-2.14 1.767h3.512c1.154 1.042 2.677 1.68 4.355 1.68a6.51 6.51 0 1 0 0-13.02"/><path d="M46.812 10.702c0 .978-.488 1.863-1.465 2.658-.408.328-.68.597-.818.807s-.207.5-.207.835v.386h-1.824v-.6c0-.847.338-1.555 1.012-2.126.42-.346.707-.63.86-.855s.227-.496.227-.813c0-.295-.107-.536-.326-.723s-.498-.28-.84-.28c-.768 0-1.498.307-2.195.92V8.8c.72-.43 1.53-.646 2.428-.646.986 0 1.758.226 2.314.678s.834 1.07.834 1.862zm-2.068 6.686c0 .337-.12.615-.36.835s-.55.33-.922.33a1.36 1.36 0 0 1-.92-.333 1.05 1.05 0 0 1-.387-.831 1.05 1.05 0 0 1 .373-.824c.248-.218.56-.326.934-.326s.676.108.918.326a1.06 1.06 0 0 1 .365.824z" fill="#fff"/><path opacity=".5" fill="#1e1e1e" d="M23.643 49.17c11.865 0 20.217-5.882 22.795-7.646a24.05 24.05 0 0 0 .674-.477c-4.695 1.893-13.598 5.33-23.512 5.33S4.886 43.004.202 41.062a24.54 24.54 0 0 0 .649.461c2.578 1.764 10.93 7.646 22.792 7.646"/><path opacity=".85" fill="#3e3e3e" d="M30.983 18.23c.013-.648-14.392-.97-14.412-.324-.01.452 1.637 2.518 3.98 3.764.878-.24 1.945-.316 3.052-.155.958.14 1.787.432 2.427.808 2.912-.91 4.946-3.565 4.953-4.093z"/><path fill="#1e1e1e" d="M24.415 18.92c-.72-.045-.77.51-.74 1.178s.082.915-.216.92-.722-.166-.35-.904c.378-.738.03-1.718-1.46-.848-1.174.686-1.027 1.884-.913 2.362a7.63 7.63 0 0 1 2.868-.115c.958.14 1.787.432 2.427.808.11-.035.21-.087.32-.127.01-.025.02-.042.03-.067.825-1.963-1.245-3.167-1.967-3.207z"/><path d="M25.247 19.035c.737-.005 1.344-.598 1.422-1.353l-2.9-.102c.03.813.68 1.462 1.48 1.455zm-3.25-.05c.796.032 1.465-.6 1.52-1.4l-2.23-.024-.675.004c.038.774.634 1.402 1.383 1.43z" fill="#fff"/><path fill="#dd5900" d="M20.552 21.668c1.024.544 2.18.934 3.39.96a6.49 6.49 0 0 0 2.09-.307c-.64-.376-1.47-.668-2.427-.808-1.108-.16-2.175-.085-3.052.155z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/AlienSad.svg b/src/main/webapp/img/lib/mscae/AlienSad.svg index 5aca977668d864a8b47b94e538b25a662254070f..27b547ba960c6afb50eff8de49d3d613b2ba9799 100644 --- a/src/main/webapp/img/lib/mscae/AlienSad.svg +++ b/src/main/webapp/img/lib/mscae/AlienSad.svg @@ -1,50 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 47.291 49.169" style="enable-background:new 0 0 47.291 49.169;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#E5E5E5;} - .st1{fill:#3999C6;} - .st2{opacity:0.5;fill:#1E1E1E;enable-background:new ;} - .st3{fill:#7A7A7A;} - .st4{fill:#59B4D9;} - .st5{fill:#1E1E1E;} - .st6{fill:#A0A1A2;} -</style> -<path class="st0" d="M23.614,18.375c-0.145-0.012-0.248-0.063-0.404-0.063c-8.292,0-11.161,3.297-11.161,3.297 - c8.13,4.939,11.161,15.409,11.161,15.409s0.159-0.372,0.404-0.976c0.249,0.604,0.409,0.976,0.409,0.976s3.031-10.47,11.161-15.409 - c0,0-2.871-3.297-11.161-3.297C23.868,18.312,23.762,18.363,23.614,18.375"/> -<path class="st1" d="M47.111,41.046c0.114-0.086,0.18-0.135,0.18-0.135s-1.514-2.411-4.879-5.014 - c-1.953-1.51-4.522-3.086-7.791-4.293v-0.06c-3.277-1.128-7.008-1.774-10.979-1.774c-3.967,0-7.7,0.646-10.976,1.774v0.06 - c-3.267,1.207-5.836,2.783-7.789,4.293C1.513,38.5,0,40.911,0,40.911s0.07,0.053,0.201,0.151c0.142,0.105,0.363,0.264,0.649,0.461 - c2.579,1.764,10.931,7.646,22.792,7.646c11.865,0,20.217-5.882,22.795-7.646C46.742,41.315,46.966,41.152,47.111,41.046"/> -<path class="st2" d="M38.025,35.012c0,2.04-6.473,3.696-14.455,3.696c-7.986,0-14.455-1.656-14.455-3.696 - c0-2.047,6.469-3.705,14.455-3.705C31.552,31.307,38.025,32.965,38.025,35.012"/> -<path class="st3" d="M23.521,31.307L23.521,31.307h-0.015h-0.014c-8,0.233-14.327,1.777-14.536,3.58 - c-0.008-0.492-0.014-0.974-0.022-1.444c-0.025-1.851,6.404-3.448,14.558-3.682h0.014h0.015c8.149,0.234,14.581,1.831,14.556,3.682 - c-0.01,0.47-0.016,0.952-0.022,1.444C37.845,33.084,31.517,31.54,23.521,31.307"/> -<path class="st4" d="M20.716,34.061c-0.302-0.062-7.351-1.457-8.896-7.441c-0.066-0.257,0.039-0.531,0.274-0.649 - c0.224-0.145,0.514-0.116,0.701,0.065c0.041,0.035,3.668,3.508,6.656,3.548c0.246-0.008,0.459,0.15,0.549,0.358l1.367,3.315 - c0.088,0.19,0.049,0.42-0.084,0.599C21.152,34.021,20.929,34.101,20.716,34.061"/> -<path class="st4" d="M33.392,25.631c-0.027,0.035-2.987,3.672-5.753,4.064c-0.227,0.019-0.401,0.186-0.453,0.403l-0.879,3.22 - c-0.059,0.203-0.002,0.409,0.145,0.543c0.153,0.143,0.364,0.193,0.55,0.132c0.271-0.084,6.643-2.224,7.361-7.959 - c0.039-0.237-0.101-0.471-0.332-0.563C33.812,25.367,33.55,25.439,33.392,25.631"/> -<polygon class="st5" points="26.729,30.924 27.644,37.264 19.433,37.264 20.348,30.924 "/> -<path class="st4" d="M23.197,37.482c-2.251-8.971-5.546-12.207-9.584-20.914C9.691,8.103,15.972-0.173,24.035,0.003 - c8.053,0.187,13.961,8.735,9.656,17.01C29.27,25.544,25.845,28.625,23.197,37.482"/> -<path class="st5" d="M20.342,14.434c-0.017,0.746-0.367,1.331-0.781,1.326c-0.422-0.019-0.738-0.615-0.732-1.361 - c0.017-0.737,0.376-1.325,0.781-1.313C20.031,13.098,20.355,13.706,20.342,14.434"/> -<path class="st5" d="M28.346,14.637c-0.023,0.727-0.368,1.322-0.785,1.312c-0.419-0.007-0.74-0.61-0.717-1.352 - c0.006-0.737,0.354-1.327,0.779-1.319C28.037,13.287,28.364,13.891,28.346,14.637"/> -<path class="st6" d="M27.645,25.826c-2.353,2.658-3.495,6.26-4.031,8.691c-0.538-2.431-1.681-6.033-4.034-8.691 - c0,0-3.785-4.027-7.451-4.063c0,0,9.963,9.471,10.92,15.421h0.12h0.892h0.119c0.959-5.95,10.917-15.421,10.917-15.421 - C31.429,21.799,27.645,25.826,27.645,25.826z"/> -<path class="st0" d="M23.521,36.885L23.521,36.885h-0.029c-8-0.229-14.327-1.263-14.536-3.067c-0.008,0.494-0.014,0.974-0.022,1.448 - c-0.025,1.849,6.404,3.443,14.558,3.679v0.003c0.004,0,0.01-0.003,0.014-0.003s0.008,0.003,0.015,0.003v-0.003 - c8.149-0.236,14.581-1.83,14.556-3.679c-0.01-0.474-0.016-0.954-0.022-1.448C37.845,35.622,31.517,36.656,23.521,36.885"/> -<path class="st2" d="M23.643,49.169c11.865,0,20.217-5.882,22.795-7.646c0.305-0.208,0.529-0.371,0.674-0.477 - c-4.695,1.893-13.598,5.329-23.512,5.329c-9.912,0-18.714-3.371-23.398-5.313c0.142,0.105,0.363,0.264,0.649,0.461 - C3.429,43.287,11.781,49.169,23.643,49.169"/> -<path class="st5" d="M29.717,20.412c-1.015-1.465-3.413-2.495-6.212-2.495s-5.197,1.03-6.212,2.495 - c1.464-0.92,3.702-1.509,6.212-1.509S28.253,19.492,29.717,20.412z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 47.291 49.169"><path d="M23.614 18.375c-.145-.012-.248-.063-.404-.063-8.292 0-11.16 3.297-11.16 3.297 8.13 4.94 11.16 15.41 11.16 15.41l.404-.976.41.976s3.03-10.47 11.16-15.41c0 0-2.87-3.297-11.16-3.297-.155 0-.26.05-.41.063" fill="#e5e5e5"/><path d="M47.11 41.046l.18-.135s-1.514-2.41-4.88-5.014c-1.953-1.5-4.522-3.086-7.79-4.293v-.06c-3.277-1.128-7.008-1.774-10.98-1.774s-7.7.646-10.976 1.774v.06C9.4 32.81 6.83 34.387 4.877 35.897 1.513 38.5 0 40.91 0 40.91l.2.15a24.54 24.54 0 0 0 .649.461c2.58 1.764 10.93 7.646 22.792 7.646s20.217-5.882 22.795-7.646a24.05 24.05 0 0 0 .674-.477" fill="#3999c6"/><path d="M38.025 35.012c0 2.04-6.473 3.696-14.455 3.696S9.115 37.052 9.115 35.012c0-2.047 6.47-3.705 14.455-3.705s14.455 1.658 14.455 3.705" opacity=".5" fill="#1e1e1e" enable-background="new"/><path d="M23.52 31.307h-.03c-8 .233-14.327 1.777-14.536 3.58l-.022-1.444c-.025-1.85 6.404-3.448 14.558-3.682h.03c8.15.234 14.58 1.83 14.556 3.682l-.022 1.444c-.2-1.803-6.538-3.347-14.534-3.58" fill="#7a7a7a"/><path d="M20.716 34.06c-.302-.062-7.35-1.457-8.896-7.44-.066-.257.04-.53.274-.65.224-.145.514-.116.7.065.04.035 3.668 3.508 6.656 3.548a.59.59 0 0 1 .55.358l1.367 3.315c.088.2.05.42-.084.6a.59.59 0 0 1-.567.205m12.676-8.43c-.027.035-2.987 3.672-5.753 4.064-.227.02-.4.186-.453.403l-.88 3.22c-.06.203-.002.4.145.543.153.143.364.193.55.132.27-.084 6.643-2.224 7.36-7.96a.52.52 0 0 0-.332-.563c-.22-.104-.48-.032-.64.16" fill="#59b4d9"/><path d="M26.73 30.924l.915 6.34h-8.21l.915-6.34z" fill="#1e1e1e"/><path d="M23.197 37.482c-2.25-8.97-5.546-12.207-9.584-20.914C9.69 8.103 15.972-.173 24.035.003c8.053.187 13.96 8.735 9.656 17-4.42 8.53-7.846 11.612-10.494 20.47" fill="#59b4d9"/><path d="M20.342 14.434c-.017.746-.367 1.33-.78 1.326-.422-.02-.738-.615-.732-1.36.017-.737.376-1.325.78-1.313.42.012.745.62.732 1.348m8.004.202c-.023.727-.368 1.322-.785 1.312s-.74-.6-.717-1.352c.006-.737.354-1.327.78-1.32.414.01.74.613.723 1.36" fill="#1e1e1e"/><path d="M27.645 25.826c-2.353 2.658-3.495 6.26-4.03 8.69-.538-2.43-1.68-6.033-4.034-8.69 0 0-3.785-4.027-7.45-4.063 0 0 9.963 9.47 10.92 15.42h1.13c.96-5.95 10.917-15.42 10.917-15.42-3.668.036-7.452 4.063-7.452 4.063z" fill="#a0a1a2"/><path d="M23.52 36.885h-.03c-8-.23-14.327-1.263-14.536-3.067l-.022 1.448c-.025 1.85 6.404 3.443 14.558 3.68v.003c.018-.003.022 0 .03 0v-.003c8.15-.236 14.58-1.83 14.556-3.68l-.022-1.448c-.2 1.804-6.538 2.838-14.534 3.067" fill="#e5e5e5"/><g fill="#1e1e1e"><path d="M23.643 49.17c11.865 0 20.217-5.882 22.795-7.646a24.05 24.05 0 0 0 .674-.477c-4.695 1.893-13.598 5.33-23.512 5.33S4.886 43.004.202 41.062a24.54 24.54 0 0 0 .649.461c2.578 1.764 10.93 7.646 22.792 7.646" opacity=".5" enable-background="new"/><path d="M29.717 20.412c-1.015-1.465-3.413-2.495-6.212-2.495s-5.197 1.03-6.212 2.495c1.464-.92 3.702-1.51 6.212-1.51s4.748.59 6.212 1.51z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Analysis_Services.svg b/src/main/webapp/img/lib/mscae/Analysis_Services.svg new file mode 100644 index 0000000000000000000000000000000000000000..93ef8228635213a32f971cdc1cf7f0329efe5ff7 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Analysis_Services.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="1332.4" height="1029.975" fill="#59b4d9"><path d="M784.1 243.17v122.952l-235.8-75.28V0H0v420.366h271.42l29.328 189.23h-206v420.38h548.3v-292.06L784.1 662.4v1.147h548.3V243.17zm342.93 254.687a69.685 69.685 0 0 1-120.206 25.571L435.8 829.176a69.69 69.69 0 1 1-90.564-46.1l-12.717-82.1-61.17-394.616a69.654 69.654 0 1 1 72.427-66.766q-.084 2.056-.3 4.105L995.66 451.92a69.687 69.687 0 0 1 131.366 45.938zm-136.6-17.183L334.637 271.3a69.488 69.488 0 0 1-27.77 27.033 75.166 75.166 0 0 1-6.939 3.183l74.007 477.52a71.439 71.439 0 0 1 14.343 2.554 69.4 69.4 0 0 1 33.89 22.006L993.2 497.86a69.045 69.045 0 0 1-2.761-17.185zM784.1 590.1l-141.04 75.5v-56.005H365.276l-29.327-189.23H548.3v-62.6l235.8 75.28z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/AppServiceConnectivity.svg b/src/main/webapp/img/lib/mscae/AppServiceConnectivity.svg index ecc90a4883e4f9ab95d3b78e8b93052ba5abcb2e..e8abb9521e3278cfa8a8755cd8274b6e6e2c1e8d 100644 --- a/src/main/webapp/img/lib/mscae/AppServiceConnectivity.svg +++ b/src/main/webapp/img/lib/mscae/AppServiceConnectivity.svg @@ -1,113 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="46.099998" - viewBox="0 0 50 46.099998" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="AppServiceConnectivity.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata1723"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs1721" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview1719" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="6.0104076" - inkscape:cx="0.5867586" - inkscape:cy="7.4096089" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="M 32.4,36.5 H 31.2 19.4 18.8 c 1.6,5.8 -0.6,6.6 -10.2,6.6 v 3 h 12.2 8.9 11.5 v -3 c -9.5,0 -10.4,-0.8 -8.8,-6.6" - id="path1694" - inkscape:connector-curvature="0" - style="fill:#7a7a7a" /> -<path - d="M 47,0 H 2.7 C 1.2,0 0,1.3 0,2.8 v 30.9 c 0,1.5 1.2,2.8 2.7,2.8 H 47 c 1.5,0 3,-1.3 3,-2.8 V 2.8 C 50,1.3 48.5,0 47,0 M 46.2,3.8 V 32.6 H 3.8 V 3.8 L 46.2,3.7 Z" - id="path1696" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<polygon - points="3.8,34.6 3.8,5.8 46.2,5.7 46.1,5.8 46.1,34.6 " - id="polygon1698" - style="fill:#59b4d9" - transform="translate(0,-2)" /> -<path - d="m 3.8,32.6 v 0 V 3.8 L 42.5,3.7 47,0 c 0,0 0,0 0,0 H 2.7 C 1.2,0 0,1.3 0,2.8 v 30.9 c 0,1.5 1.2,2.8 2.7,2.8 H 3.8 L 8.4,32.7 H 3.8 Z" - id="path1700" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#ffffff" /> -<polygon - points="3.8,5.8 42.5,5.7 42.5,5.7 3.8,5.8 3.8,34.6 " - id="polygon1702" - style="fill:#59b4d9" - transform="translate(0,-2)" /> -<rect - x="8.6999998" - y="43.099998" - width="32.700001" - height="3" - id="rect1704" - style="fill:#a0a1a2" /> -<path - d="m 25.5,2 c 0,0.4 -0.3,0.7 -0.7,0.7 -0.4,0 -0.7,-0.3 -0.7,-0.7 0,-0.4 0.3,-0.7 0.7,-0.7 0.4,0 0.7,0.4 0.7,0.7" - id="path1706" - inkscape:connector-curvature="0" - style="fill:#b8d432" /> -<path - d="m 41.3,17.9 c 0.3,-0.3 0.3,-0.8 0,-1.2 l -1.6,-1.6 -7.1,-7 c -0.3,-0.3 -0.8,-0.3 -1.2,0 v 0 C 31,8.4 31,9 31.4,9.3 l 7.5,7.4 c 0.3,0.3 0.3,0.9 0,1.2 l -7.5,7.6 c -0.3,0.3 -0.3,0.9 0,1.2 v 0 c 0.3,0.3 0.8,0.3 1.2,0 l 7.1,-7 c 0,0 0,0 0,0 z" - id="path1708" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -<path - d="m 8.7,17.9 c -0.3,-0.3 -0.3,-0.8 0,-1.2 l 1.6,-1.6 7.1,-7 c 0.3,-0.3 0.8,-0.3 1.2,0 v 0 C 19,8.4 19,9 18.6,9.3 l -7.5,7.4 c -0.3,0.3 -0.3,0.9 0,1.2 l 7.5,7.6 c 0.3,0.3 0.3,0.9 0,1.2 v 0 c -0.3,0.3 -0.8,0.3 -1.2,0 l -7.1,-7 c 0,0 0,0 0,0 z" - id="path1710" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -<path - d="m 20.5,17.3 c 0,1.3 -1,2.2 -2.2,2.2 -1.2,0 -2.3,-1 -2.3,-2.2 0,-1.1 0.9,-2.2 2.3,-2.2 1.3,0 2.2,1 2.2,2.2 z" - id="path1712" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -<path - d="m 27.2,17.3 c 0,1.3 -1,2.2 -2.2,2.2 -1.2,0 -2.3,-1 -2.3,-2.2 0,-1.1 1,-2.2 2.3,-2.2 1.3,0 2.2,1 2.2,2.2 z" - id="path1714" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -<circle - cx="31.799999" - cy="17.299999" - r="2.2" - id="circle1716" - style="fill:#ffffff" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="46.1"><path d="M32.4 36.5H18.8c1.6 5.8-.6 6.6-10.2 6.6v3h32.6v-3c-9.5 0-10.4-.8-8.8-6.6" fill="#7a7a7a"/><path d="M47 0H2.7C1.2 0 0 1.3 0 2.8v30.9c0 1.5 1.2 2.8 2.7 2.8H47c1.5 0 3-1.3 3-2.8V2.8C50 1.3 48.5 0 47 0m-.8 3.8v28.8H3.8V3.8l42.4-.1z" fill="#a0a1a2"/><path d="M3.8 32.6V3.8l42.4-.1-.1.1v28.8z" fill="#59b4d9"/><path d="M3.8 32.6V3.8l38.7-.1L47 0H2.7C1.2 0 0 1.3 0 2.8v30.9c0 1.5 1.2 2.8 2.7 2.8h1.1l4.6-3.8H3.8z" opacity=".2" fill="#fff"/><path d="M3.8 3.8l38.7-.1-38.7.1v28.8z" fill="#59b4d9"/><path d="M8.7 43.1h32.7v3H8.7z" fill="#a0a1a2"/><path d="M25.5 2a.68.68 0 0 1-.7.7.68.68 0 0 1-.7-.7.68.68 0 0 1 .7-.7c.4 0 .7.4.7.7" fill="#b8d432"/><g fill="#fff"><path d="M41.3 17.9c.3-.3.3-.8 0-1.2l-1.6-1.6-7.1-7c-.3-.3-.8-.3-1.2 0a.75.75 0 0 0 0 1.2l7.5 7.4c.3.3.3.9 0 1.2l-7.5 7.6c-.3.3-.3.9 0 1.2s.8.3 1.2 0l7.1-7zm-32.6 0c-.3-.3-.3-.8 0-1.2l1.6-1.6 7.1-7c.3-.3.8-.3 1.2 0a.75.75 0 0 1 0 1.2l-7.5 7.4c-.3.3-.3.9 0 1.2l7.5 7.6c.3.3.3.9 0 1.2s-.8.3-1.2 0l-7.1-7zm11.8-.6c0 1.3-1 2.2-2.2 2.2s-2.3-1-2.3-2.2c0-1.1.9-2.2 2.3-2.2 1.3 0 2.2 1 2.2 2.2zm6.7 0c0 1.3-1 2.2-2.2 2.2s-2.3-1-2.3-2.2c0-1.1 1-2.2 2.3-2.2s2.2 1 2.2 2.2z"/><circle cx="31.8" cy="17.3" r="2.2"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/AppServiceEnvironment.svg b/src/main/webapp/img/lib/mscae/AppServiceEnvironment.svg index 849161f503fce9965dde1c39d4d2b3e45d9f66b6..7532da3f9296b7cf93f91e234c063d766216265b 100644 --- a/src/main/webapp/img/lib/mscae/AppServiceEnvironment.svg +++ b/src/main/webapp/img/lib/mscae/AppServiceEnvironment.svg @@ -1,105 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="46" - viewBox="0 0 50 46" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="AppServiceEnvironment.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata1789"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs1787" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview1785" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="8.5" - inkscape:cx="35.118305" - inkscape:cy="12.513101" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<polygon - points="6,32 44,32 50,43 0,43 " - id="polygon1762" - style="fill:#b8d432" /> -<rect - y="43" - width="50" - height="3" - id="rect1764" - x="0" - style="fill:#7a7a7a" /> -<rect - y="43" - enable-background="new " - width="50" - height="3" - id="rect1766" - x="0" - style="opacity:0.5;fill:#dd5900" /> -<g - id="g1776"> - <path - d="M 21.4,34.9 H 8.8 V 22.5 h 2.5 c -0.3,-0.8 -0.5,-1.6 -0.5,-2.4 0,0 0,-0.1 0,-0.2 H 6.2 V 37.5 H 23.9 V 27 h -2.6 v 7.9 z" - id="path1768" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> - <path - d="m 38.9,22.5 h 2.3 V 35 H 28.6 V 27 H 26 V 37.5 H 43.7 V 19.8 h -5.6 c 0.4,0.7 0.7,1.5 0.7,2.4 0.1,0.2 0.1,0.2 0.1,0.3 z" - id="path1770" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> - <path - d="M 8.8,15 V 2.6 H 21.3 V 9.8 C 22.1,9.2 23,8.8 23.9,8.6 V 0 H 6.2 v 17.7 h 5.1 c 0.3,-1 0.9,-1.9 1.6,-2.6 z" - id="path1772" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> - <path - d="M 28.6,8.4 V 2.6 H 41.1 V 15 h -5.4 c 0.2,0.8 0.3,1.7 0.3,2.5 0,0 0,0.1 0,0.1 h 7.7 V 0 H 26.1 v 8.2 c 0.2,0 0.4,0 0.6,0 0.6,-0.1 1.3,0 1.9,0.2 z" - id="path1774" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -</g> -<g - id="g1782"> - <path - d="m 36.8,22.3 c 0,-1.5 -1.2,-2.8 -2.8,-2.8 -0.1,0 -0.2,0 -0.3,0 0.2,-0.6 0.3,-1.3 0.3,-2 0,-4.1 -3.3,-7.5 -7.4,-7.5 -3.3,0 -6,2.1 -7,5.1 -0.5,-0.2 -1.1,-0.3 -1.7,-0.3 -2.8,0 -5.1,2.3 -5.1,5.1 0,2.8 2.3,5.1 5.1,5.1 0,0 0,0 0,0 v 0 h 16.4 v 0 c 1.4,0 2.5,-1.2 2.5,-2.7" - id="path1778" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> - <path - d="m 20.6,25.1 c -0.7,-0.7 -1.2,-1.5 -1.4,-2.5 -0.6,-2.7 1.1,-5.5 3.8,-6.1 0.6,-0.1 1.1,-0.2 1.7,-0.1 0.2,-2.6 1.8,-4.8 4.1,-6 -0.7,-0.2 -1.5,-0.4 -2.2,-0.4 -3.3,0 -6,2.1 -7,5.1 -0.5,-0.2 -1.1,-0.3 -1.7,-0.3 -2.8,0 -5.1,2.3 -5.1,5.1 0,2.8 2.3,5.1 5.1,5.1 0,0 0,0 0,0 v 0 h 2.7 z" - id="path1780" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#ffffff" /> -</g> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="46"><path d="M6 32h38l6 11H0z" fill="#b8d432"/><path d="M0 43h50v3H0z" fill="#7a7a7a"/><path d="M0 43h50v3H0z" opacity=".5" fill="#dd5900"/><path d="M21.4 34.9H8.8V22.5h2.5c-.3-.8-.5-1.6-.5-2.4v-.2H6.2v17.6h17.7V27h-2.6v7.9zm17.5-12.4h2.3V35H28.6v-8H26v10.5h17.7V19.8h-5.6c.4.7.7 1.5.7 2.4.1.2.1.2.1.3zM8.8 15V2.6h12.5v7.2a6.82 6.82 0 0 1 2.6-1.2V0H6.2v17.7h5.1c.3-1 .9-1.9 1.6-2.6zm19.8-6.6V2.6h12.5V15h-5.4a10.68 10.68 0 0 1 .3 2.5v.1h7.7V0H26.1v8.2h.6c.6-.1 1.3 0 1.9.2z" fill="#a0a1a2"/><path d="M36.8 22.3c0-1.5-1.2-2.8-2.8-2.8h-.3c.2-.6.3-1.3.3-2 0-4.1-3.3-7.5-7.4-7.5-3.3 0-6 2.1-7 5.1-.5-.2-1.1-.3-1.7-.3-2.8 0-5.1 2.3-5.1 5.1s2.3 5.1 5.1 5.1h16.4c1.4 0 2.5-1.2 2.5-2.7" fill="#59b4d9"/><path d="M20.6 25.1c-.7-.7-1.2-1.5-1.4-2.5-.6-2.7 1.1-5.5 3.8-6.1.6-.1 1.1-.2 1.7-.1.2-2.6 1.8-4.8 4.1-6-.7-.2-1.5-.4-2.2-.4-3.3 0-6 2.1-7 5.1-.5-.2-1.1-.3-1.7-.3-2.8 0-5.1 2.3-5.1 5.1s2.3 5.1 5.1 5.1h2.7z" opacity=".2" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/App_Configuration.svg b/src/main/webapp/img/lib/mscae/App_Configuration.svg new file mode 100644 index 0000000000000000000000000000000000000000..ec99bd66b90271174dba0a6a2bbbcfb335c95aa8 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/App_Configuration.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="45.725" height="45.198"><path d="M39.245 12.664c0-.357.09-.8.09-1.16-.016-3.054-1.248-5.975-3.424-8.118S30.794.058 27.74.09c-3.693-.085-7.193 1.65-9.364 4.638a8.3 8.3 0 0 0-4.638-1.338A8.74 8.74 0 0 0 5 12.044v.713a8.65 8.65 0 0 0-5 7.844 9.66 9.66 0 0 0 9.993 9.543h24.614a9.66 9.66 0 0 0 9.993-9.543 8.46 8.46 0 0 0-5.355-7.937z" fill="#59b4d9"/><path d="M21.235 33.234l.94 2.232-2.114 3.7 2.32 2.32 3.82-1.792 2.232.94 1.168 3.494.118.41H33l1.38-3.905 2.232-.94 3.29 1.7.41.206 2.32-2.32-1.762-3.636.94-2.232 3.494-1.174.41-.118v-3.29l-3.9-1.38-.94-2.23 1.7-3.29.206-.41-2.232-2.32-3.7 1.79-2.232-.94-1.174-3.494-.208-.41H30.1l-1.38 3.905-2.23.94-3.29-1.7-.41-.206-2.2 2.643 1.586 3.377-.94 2.232-3.494 1.174-.41.206v3.14zm5.756-2.848a4.55 4.55 0 0 1 7.771-3.22 4.55 4.55 0 0 1-3.22 7.771 4.5 4.5 0 0 1-4.551-4.551z" fill="#fcd116"/><path d="M7.07 41.167l.868.93-.37 2.207 1.564.722 1.556-1.575 1.27.058 1.212 1.508.133.182 1.62-.6-.03-2.174.93-.868 1.93.242.24.027.722-1.563-1.528-1.475.058-1.27 1.51-1.212.18-.133-.6-1.62-2.174.03-.868-.93.243-1.93.026-.24-1.52-.738-1.5 1.553-1.27-.058-1.212-1.508-.176-.166-1.548.57.03 2.175-.93.867-1.925-.234-.24-.027-.606 1.7 1.394 1.376L6 38.26l-1.5 1.212-.165.176.57 1.548zm2.32-2.447a2.39 2.39 0 0 1 3.245-2.996 2.39 2.39 0 0 1-.177 4.413c-.594.226-1.255.204-1.832-.063S9.6 39.32 9.388 38.72z" fill="#7fba00"/><path d="M6.247 24.97c0-3.656 1.873-6.5 5.35-8.294v-.713a9.36 9.36 0 0 1 14.18-7.848 12.33 12.33 0 0 1 9.989-5.084A12.08 12.08 0 0 0 27.74 0c-3.697-.01-7.177 1.746-9.364 4.727a8.3 8.3 0 0 0-4.638-1.338A8.74 8.74 0 0 0 5 12.044v.713a8.65 8.65 0 0 0-5 7.844 9.46 9.46 0 0 0 7.5 9.275c-.83-1.5-1.262-3.2-1.253-4.905z" opacity=".2" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/App_Registrations.svg b/src/main/webapp/img/lib/mscae/App_Registrations.svg new file mode 100644 index 0000000000000000000000000000000000000000..572355b69d0bf705164dd2d6c37d1b86d22b6458 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/App_Registrations.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="44.545" height="47.322"><path d="M0 0h11v11H0zm13 0h12v11H13zm14 0h11v11H27zM0 13h11v11H0zm13 0h12v11H13zm14 0h11v11H27zM0 26h11v12H0zm13 0h12v12H13zm14 0h11v12H27z" fill="#0072c6"/><g fill="#fff"><path d="M30.808 43.742a.31.31 0 0 1-.161-.042l-10.462-6a.31.31 0 0 1-.161-.273V25.4a.32.32 0 0 1 .161-.276c.1-.054.22-.054.32 0l10.46 6a.32.32 0 0 1 .156.275v12.028c.001.112-.06.217-.156.273a.32.32 0 0 1-.157.042m2.954.058a.31.31 0 0 0 .161-.042l10.462-6a.31.31 0 0 0 .161-.273v-12.03a.32.32 0 0 0-.161-.276c-.1-.054-.22-.054-.32 0l-10.46 6a.32.32 0 0 0-.156.275v12.03c-.001.112.06.217.156.273a.32.32 0 0 0 .157.042"/><path d="M32.316 47.322c-.055 0-.1-.016-.157-.045l-10.494-6.014c-.1-.056-.16-.162-.16-.276s.06-.216.16-.27l10.427-5.976c.098-.054.217-.054.315 0l10.5 6.018c.096.056.157.158.158.27a.32.32 0 0 1-.158.275l-10.432 5.973c-.048.03-.103.045-.16.045"/><path d="M32.316 39c-.055 0-.1-.016-.157-.045l-10.494-6.01c-.1-.056-.16-.162-.16-.276s.06-.216.16-.27l10.427-5.976c.098-.054.217-.054.315 0L42.9 32.44c.096.056.157.158.158.27a.32.32 0 0 1-.158.275l-10.425 5.973c-.048.03-.103.045-.16.045"/></g><path d="M30.808 46.46a.31.31 0 0 1-.161-.042l-10.462-6a.31.31 0 0 1-.161-.273V28.118a.32.32 0 0 1 .161-.276c.1-.054.22-.054.32 0l10.46 6a.32.32 0 0 1 .156.275v12.03c.001.112-.06.217-.156.273a.32.32 0 0 1-.157.042m2.96 0a.33.33 0 0 1-.161-.042c-.097-.056-.157-.16-.157-.273V34.19a.32.32 0 0 1 .157-.275l10.458-5.994c.1-.056.22-.056.32 0s.155.16.156.272V40.15c0 .112-.06.216-.156.273l-10.462 6a.29.29 0 0 1-.156.042" fill="#59b4d9"/><path d="M33.768 46.46a.33.33 0 0 1-.161-.042c-.097-.056-.157-.16-.157-.273V34.19a.32.32 0 0 1 .157-.275l10.458-5.994c.1-.056.22-.056.32 0s.155.16.156.272V40.15c0 .112-.06.216-.156.273l-10.462 6a.29.29 0 0 1-.156.042" opacity=".5" fill="#fff"/><path d="M32.316 31.842c-.055 0-.1-.016-.157-.045l-10.494-6.015c-.1-.056-.16-.162-.16-.276s.06-.216.16-.27l10.427-5.976c.098-.054.217-.054.315 0l10.5 6.018c.096.056.157.158.158.27a.32.32 0 0 1-.158.275L32.475 31.8c-.048.03-.103.045-.16.045" fill="#3999c6"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/App_Service.svg b/src/main/webapp/img/lib/mscae/App_Service.svg index 24f3a2d66db96bd0e73efbc2c5956af81d291c7d..27319250713764332b9f715454983e4fd225652b 100644 --- a/src/main/webapp/img/lib/mscae/App_Service.svg +++ b/src/main/webapp/img/lib/mscae/App_Service.svg @@ -1,15 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#A0A1A2" d="M20.1,46.5H3.5V30h3.4c-0.4-1-0.6-2.1-0.6-3.3c0,0,0-0.1,0-0.2H0V50h23.6V36h-3.5V46.5z"/> -<path fill="#A0A1A2" d="M43.5,30h3v16.6H29.9V36.1h-3.5V50H50V26.5h-7.4c0.5,1,0.9,2,0.9,3.3C43.5,29.8,43.5,29.9,43.5,30z"/> -<path fill="#A0A1A2" d="M3.5,20V3.5h16.6v9.6c1-0.8,2.3-1.3,3.5-1.6V0H0v23.5h6.8C7.3,22.3,8,21,9,20.1L3.5,20L3.5,20z"/> -<path fill="#A0A1A2" d="M29.9,11.1V3.5h16.6v16.6h-7.3c0.3,1,0.5,2.2,0.5,3.4c0,0,0,0.1,0,0.1H50V0H26.4v10.9c0.3,0,0.5-0.1,0.8-0.1 - C28.1,10.9,29,10.9,29.9,11.1z"/> -<path fill="#59B4D9" d="M40.8,29.7c0-2.1-1.7-3.7-3.7-3.7c-0.2,0-0.3,0-0.5,0c0.2-0.8,0.4-1.7,0.4-2.6c0-5.5-4.4-9.9-9.9-9.9 - c-4.3,0-8,2.8-9.3,6.8c-0.7-0.2-1.4-0.4-2.2-0.4c-3.7,0-6.7,3-6.7,6.8c0,3.8,3,6.8,6.7,6.8c0,0,0,0,0,0v0h21.8l0,0 - C39.3,33.3,40.8,31.7,40.8,29.7"/> -<path opacity="0.2" fill="#FFFFFF" d="M19.2,33.5c-0.9-0.9-1.5-2-1.8-3.3c-0.8-3.7,1.4-7.3,5.1-8.1c0.8-0.2,1.5-0.2,2.2-0.1 - c0.3-3.4,2.4-6.5,5.5-8c-0.9-0.3-1.9-0.5-3-0.5c-4.3,0-8,2.8-9.3,6.8c-0.7-0.2-1.4-0.4-2.2-0.4c-3.7,0-6.7,3-6.7,6.8 - c0,3.8,3,6.8,6.7,6.8c0,0,0,0,0,0v0H19.2z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path d="M20.1 46.5H3.5V30h3.4c-.4-1-.6-2.1-.6-3.3v-.2H0V50h23.6V36h-3.5v10.5zM43.5 30h3v16.6H29.9V36.1h-3.5V50H50V26.5h-7.4c.5 1 .9 2 .9 3.3v.2zm-40-10V3.5h16.6v9.6c1-.8 2.3-1.3 3.5-1.6V0H0v23.5h6.8C7.3 22.3 8 21 9 20.1L3.5 20zm26.4-8.9V3.5h16.6v16.6h-7.3c.3 1 .5 2.2.5 3.4v.1H50V0H26.4v10.9c.3 0 .5-.1.8-.1.9.1 1.8.1 2.7.3z" fill="#a0a1a2"/><path fill="#59b4d9" d="M40.8 29.7c0-2.1-1.7-3.7-3.7-3.7h-.5c.2-.8.4-1.7.4-2.6a9.86 9.86 0 0 0-9.9-9.9c-4.3 0-8 2.8-9.3 6.8-.7-.2-1.4-.4-2.2-.4-3.7 0-6.7 3-6.7 6.8s3 6.8 6.7 6.8h21.8c1.9-.2 3.4-1.8 3.4-3.8"/><path opacity=".2" fill="#fff" d="M19.2 33.5c-.9-.9-1.5-2-1.8-3.3-.8-3.7 1.4-7.3 5.1-8.1.8-.2 1.5-.2 2.2-.1.3-3.4 2.4-6.5 5.5-8-.9-.3-1.9-.5-3-.5-4.3 0-8 2.8-9.3 6.8-.7-.2-1.4-.4-2.2-.4-3.7 0-6.7 3-6.7 6.8s3 6.8 6.7 6.8h3.5z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/App_Service_API_Apps.svg b/src/main/webapp/img/lib/mscae/App_Service_API_Apps.svg index 038e96fa277398e7b54617ae2b3478290f383e10..43bcdb6d4b7c205ba341e6e20185f50fe691122b 100644 --- a/src/main/webapp/img/lib/mscae/App_Service_API_Apps.svg +++ b/src/main/webapp/img/lib/mscae/App_Service_API_Apps.svg @@ -1,68 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - viewBox="0 0 50 42.599998" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure App Service - Azure API Apps_COLOR.svg" - width="50" - height="42.599998"><metadata - id="metadata4170"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs4168" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview4166" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.034957" - inkscape:cx="40.441745" - inkscape:cy="18.34307" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 0,40.6 C 0,41.7 0.9,42.6 2,42.6 L 48,42.6 C 49.1,42.6 50,41.7 50,40.6 L 50,9.3 0,9.3 0,40.6 Z" - id="path4156" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><path - d="M 44,3.7 C 44,2.5 43.1,1.6 41.9,1.6 40.7,1.6 39.8,2.5 39.8,3.7 L 39.8,24.8 35.7,24.8 C 35.3,22.4 34.1,20.1 32.3,18.2 29.9,15.8 26.8,14.5 23.4,14.5 20.1,14.5 16.9,15.8 14.5,18.2 13.7,19 13.7,20.3 14.5,21.2 15.3,22 16.6,22 17.5,21.2 19.1,19.6 21.2,18.8 23.4,18.8 25.6,18.8 27.7,19.7 29.3,21.2 32.6,24.5 32.6,29.8 29.3,33 27.7,34.6 25.6,35.4 23.4,35.4 21.2,35.4 19.1,34.5 17.5,33 16.7,32.2 15.4,32.2 14.5,33 13.7,33.8 13.7,35.1 14.5,36 16.9,38.4 20,39.7 23.4,39.7 26.7,39.7 29.9,38.4 32.3,36 34.3,34 35.4,31.6 35.8,29 L 41.9,29 C 43.1,29 44,28.1 44,26.9 L 44,3.7 Z" - id="path4158" - inkscape:connector-curvature="0" - style="fill:#ffffff" /><path - d="M 23.4,21.9 C 21.4,21.9 19.7,23.1 18.9,24.8 L 10.2,24.8 10.2,3.7 C 10.2,2.5 9.3,1.6 8.1,1.6 7,1.6 6.1,2.6 6.1,3.7 L 6.1,26.9 C 6.1,28.1 7,29 8.2,29 L 19,29 C 19.8,30.7 21.5,31.9 23.5,31.9 26.3,31.9 28.5,29.7 28.5,26.9 28.4,24.1 26.1,21.9 23.4,21.9 Z" - id="path4160" - inkscape:connector-curvature="0" - style="fill:#ffffff" /><path - d="M 48,0 2,0 C 0.9,0 0,0.9 0,2 L 0,9.6 50,9.6 50,2 C 50,0.9 49.1,0 48,0" - id="path4162" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /><path - enable-background="new " - d="M 2,0 C 0.9,0 0,0.9 0,2 L 0,9.3 0,12.6 0,40.6 C 0,41.7 0.9,42.6 2,42.6 L 4.2,42.6 43.6,0 2,0 Z" - id="path4164" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#ffffff" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="42.6"><path d="M0 40.6c0 1.1.9 2 2 2h46c1.1 0 2-.9 2-2V9.3H0v31.3z" fill="#59b4d9"/><path d="M44 3.7c0-1.2-.9-2.1-2.1-2.1s-2.1.9-2.1 2.1v21.1h-4.1c-.4-2.4-1.6-4.7-3.4-6.6-2.4-2.4-5.5-3.7-8.9-3.7-3.3 0-6.5 1.3-8.9 3.7-.8.8-.8 2.1 0 3 .8.8 2.1.8 3 0 1.6-1.6 3.7-2.4 5.9-2.4s4.3.9 5.9 2.4c3.3 3.3 3.3 8.6 0 11.8-1.6 1.6-3.7 2.4-5.9 2.4s-4.3-.9-5.9-2.4c-.8-.8-2.1-.8-3 0-.8.8-.8 2.1 0 3 2.4 2.4 5.5 3.7 8.9 3.7 3.3 0 6.5-1.3 8.9-3.7 2-2 3.1-4.4 3.5-7h6.1c1.2 0 2.1-.9 2.1-2.1V3.7zM23.4 21.9c-2 0-3.7 1.2-4.5 2.9h-8.7V3.7c0-1.2-.9-2.1-2.1-2.1-1.1 0-2 1-2 2.1v23.2c0 1.2.9 2.1 2.1 2.1H19c.8 1.7 2.5 2.9 4.5 2.9a4.95 4.95 0 0 0 5-5c-.1-2.8-2.4-5-5.1-5z" fill="#fff"/><path d="M48 0H2C.9 0 0 .9 0 2v7.6h50V2c0-1.1-.9-2-2-2" fill="#a0a1a2"/><path d="M2 0C.9 0 0 .9 0 2v38.6c0 1.1.9 2 2 2h2.2L43.6 0H2z" opacity=".2" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/App_Service_Frontend.svg b/src/main/webapp/img/lib/mscae/App_Service_Frontend.svg index 180271a2605d74ef444ddc413ccd7cbedcfe31d5..a5add821d61501135efe0a99a70748c45f9b84f4 100644 --- a/src/main/webapp/img/lib/mscae/App_Service_Frontend.svg +++ b/src/main/webapp/img/lib/mscae/App_Service_Frontend.svg @@ -1,93 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="37" - viewBox="0 0 50 37" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="App_Service_Frontend.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata1637"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs1635" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview1633" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="22.431884" - inkscape:cy="16.990932" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 0,33 c 0,0.9 0.7,1.6 1.6,1.6 H 39 c 0.9,0 1.6,-0.7 1.6,-1.6 V 7.5 H 0 Z" - id="path1616" - inkscape:connector-curvature="0" - style="fill:#0072c6" /> -<path - d="M 39.1,0 H 1.6 C 0.7,0 0,0.7 0,1.6 v 8.6 H 40.7 V 1.6 C 40.7,0.7 40,0 39.1,0" - id="path1618" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<path - d="M 1.6,0 C 0.7,0 0,0.7 0,1.6 V 7.5 10.2 33 c 0,0.9 0.7,1.6 1.6,1.6 H 3.4 L 35.5,0 Z" - id="path1620" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#ffffff" /> -<rect - x="10.5" - y="3.8999996" - width="27.4" - height="3.2" - id="rect1622" - style="fill:#ffffff" /> -<path - d="m 9.2,5.4 c 0,2.2 -1.8,4 -4,4 -2.2,0 -4,-1.8 -4,-4 0,-2.2 1.8,-4 4,-4 2.2,0 4,1.8 4,4" - id="path1624" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<polygon - points="5.6,14.2 3.2,12 5.6,9.7 6.6,9.7 4.8,11.6 9.2,11.6 9.2,12.3 4.8,12.3 6.6,14.2 " - id="polygon1626" - style="fill:#ffffff" - transform="translate(0,-6.5)" /> -<path - d="m 50,33.3 c 0,-2.1 -1.7,-3.8 -3.7,-3.8 -0.2,0 -0.3,0 -0.5,0 0.2,-0.8 0.4,-1.7 0.4,-2.7 0,-5.5 -4.5,-10 -10,-10 -4.4,0 -8.1,2.9 -9.4,6.8 -0.7,-0.2 -1.4,-0.4 -2.2,-0.4 -3.8,0 -6.8,3.1 -6.8,6.9 0,3.8 3,6.9 6.8,6.9 0,0 0,0 0,0 v 0 h 22 v 0 C 48.5,36.9 50,35.3 50,33.3" - id="path1628" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - enable-background="new " - d="m 28.2,37 c -0.9,-0.9 -1.6,-2 -1.9,-3.4 -0.8,-3.7 1.4,-7.4 5.1,-8.2 0.8,-0.2 1.5,-0.2 2.3,-0.1 0.3,-3.5 2.4,-6.5 5.6,-8 -1,-0.3 -2,-0.5 -3,-0.5 -4.4,0 -8.1,2.9 -9.4,6.8 -0.7,-0.2 -1.4,-0.4 -2.2,-0.4 -3.8,0 -6.8,3.1 -6.8,6.9 0,3.8 3,6.9 6.8,6.9 0,0 0,0 0,0 v 0 z" - id="path1630" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#ffffff" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="37"><path d="M0 33a1.58 1.58 0 0 0 1.6 1.6H39a1.58 1.58 0 0 0 1.6-1.6V7.5H0z" fill="#0072c6"/><path d="M39.1 0H1.6A1.58 1.58 0 0 0 0 1.6v8.6h40.7V1.6A1.58 1.58 0 0 0 39.1 0" fill="#a0a1a2"/><g fill="#fff"><path d="M1.6 0A1.58 1.58 0 0 0 0 1.6V33a1.58 1.58 0 0 0 1.6 1.6h1.8L35.5 0z" opacity=".2"/><path d="M10.5 3.9h27.4v3.2H10.5z"/></g><path d="M9.2 5.4c0 2.2-1.8 4-4 4s-4-1.8-4-4 1.8-4 4-4 4 1.8 4 4" fill="#59b4d9"/><path d="M5.6 7.7L3.2 5.5l2.4-2.3h1L4.8 5.1h4.4v.7H4.8l1.8 1.9z" fill="#fff"/><path d="M50 33.3c0-2.1-1.7-3.8-3.7-3.8h-.5c.2-.8.4-1.7.4-2.7 0-5.5-4.5-10-10-10-4.4 0-8.1 2.9-9.4 6.8-.7-.2-1.4-.4-2.2-.4-3.8 0-6.8 3.1-6.8 6.9s3 6.9 6.8 6.9h22c1.9-.1 3.4-1.7 3.4-3.7" fill="#59b4d9"/><path d="M28.2 37c-.9-.9-1.6-2-1.9-3.4-.8-3.7 1.4-7.4 5.1-8.2.8-.2 1.5-.2 2.3-.1.3-3.5 2.4-6.5 5.6-8-1-.3-2-.5-3-.5-4.4 0-8.1 2.9-9.4 6.8-.7-.2-1.4-.4-2.2-.4-3.8 0-6.8 3.1-6.8 6.9s3 6.9 6.8 6.9z" opacity=".2" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/App_Service_IPAddress.svg b/src/main/webapp/img/lib/mscae/App_Service_IPAddress.svg index 653372ca1b870f083abc543ab44cc0655ccab403..725302e5bb82bacda9e33ce68af732282dd65d12 100644 --- a/src/main/webapp/img/lib/mscae/App_Service_IPAddress.svg +++ b/src/main/webapp/img/lib/mscae/App_Service_IPAddress.svg @@ -1,97 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="42.633999" - viewBox="0.5 0.5 50 42.633999" - enable-background="new 0.5 0.5 50 50" - xml:space="preserve" - sodipodi:docname="App_Service_IPAddress.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata25"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs23" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview21" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="4.72" - inkscape:cx="25" - inkscape:cy="21.634" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 0.5,41.127 c 0,1.108 0.898,2.007 2.007,2.007 h 45.986 c 1.109,0 2.007,-0.899 2.007,-2.007 V 9.798 h -50 z" - id="path2" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="M 48.493,0.5 H 2.507 C 1.398,0.5 0.5,1.398 0.5,2.507 v 10.627 h 50 V 2.507 C 50.5,1.398 49.601,0.5 48.493,0.5" - id="path4" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<path - d="M 2.514,0.5 C 1.406,0.5 0.507,1.398 0.507,2.507 v 7.291 3.336 27.993 c 0,1.108 0.899,2.007 2.007,2.007 H 4.702 L 44.12,0.5 Z" - id="path6" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#ffffff" /> -<rect - x="13.357" - y="5.2790003" - width="33.671001" - height="3.9419999" - id="rect8" - style="fill:#ffffff" /> -<path - d="m 11.81,7.183 c 0,2.693 -2.184,4.878 -4.878,4.878 -2.694,0 -4.878,-2.185 -4.878,-4.878 0,-2.694 2.184,-4.879 4.878,-4.879 2.693,0 4.878,2.185 4.878,4.879" - id="path10" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<polygon - points="7.428,14.068 4.469,11.25 7.417,8.432 8.615,8.432 6.416,10.754 11.809,10.754 11.809,11.732 6.416,11.732 8.629,14.068 " - id="polygon12" - style="fill:#ffffff" - transform="translate(0,-4)" /> -<path - d="m 17.926,32.576 c 0,0.57 -0.203,1.037 -0.609,1.4 -0.406,0.363 -0.941,0.545 -1.605,0.545 -0.594,0 -1.098,-0.186 -1.512,-0.557 -0.414,-0.371 -0.621,-0.834 -0.621,-1.389 0,-0.563 0.207,-1.023 0.621,-1.383 0.414,-0.36 0.938,-0.539 1.57,-0.539 0.609,0 1.121,0.184 1.535,0.551 0.414,0.367 0.621,0.825 0.621,1.372 z" - id="path14" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -<path - d="m 26.83,32.576 c 0,0.57 -0.203,1.037 -0.609,1.4 -0.406,0.363 -0.941,0.545 -1.605,0.545 -0.594,0 -1.098,-0.186 -1.512,-0.557 -0.414,-0.371 -0.621,-0.834 -0.621,-1.389 0,-0.563 0.207,-1.023 0.621,-1.383 0.414,-0.36 0.938,-0.539 1.57,-0.539 0.609,0 1.121,0.184 1.535,0.551 0.414,0.367 0.621,0.825 0.621,1.372 z" - id="path16" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -<path - d="m 35.733,32.576 c 0,0.57 -0.203,1.037 -0.609,1.4 -0.406,0.363 -0.941,0.545 -1.605,0.545 -0.594,0 -1.098,-0.186 -1.512,-0.557 -0.414,-0.371 -0.621,-0.834 -0.621,-1.389 0,-0.563 0.207,-1.023 0.621,-1.383 0.414,-0.36 0.938,-0.539 1.57,-0.539 0.609,0 1.121,0.184 1.535,0.551 0.414,0.367 0.621,0.825 0.621,1.372 z" - id="path18" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="42.634" viewBox="0.5 0.5 50 42.634"><path d="M.5 41.127c0 1.108.898 2.007 2.007 2.007h45.986c1.11 0 2.007-.9 2.007-2.007V9.798H.5z" fill="#59b4d9"/><path d="M48.493.5H2.507C1.398.5.5 1.398.5 2.507v10.627h50V2.507C50.5 1.398 49.6.5 48.493.5" fill="#a0a1a2"/><g fill="#fff"><path d="M2.514.5C1.406.5.507 1.398.507 2.507v38.62a2.01 2.01 0 0 0 2.007 2.007h2.188L44.12.5z" opacity=".2"/><path d="M13.357 5.28h33.67V9.22h-33.67z"/></g><path d="M11.8 7.183a4.88 4.88 0 0 1-4.878 4.878 4.88 4.88 0 0 1-4.878-4.878 4.88 4.88 0 0 1 4.878-4.879 4.88 4.88 0 0 1 4.878 4.879" fill="#59b4d9"/><g fill="#fff"><path d="M7.428 10.068L4.47 7.25l2.948-2.818h1.198l-2.2 2.322h5.393v.978H6.416l2.213 2.336z"/><use xlink:href="#B"/><use xlink:href="#B" x="8.904"/><use xlink:href="#B" x="17.807"/></g><defs ><path id="B" d="M17.926 32.576c0 .57-.203 1.037-.61 1.4s-.94.545-1.605.545c-.594 0-1.098-.186-1.512-.557s-.62-.834-.62-1.39c0-.563.207-1.023.62-1.383s.938-.54 1.57-.54c.61 0 1.12.184 1.535.55a1.76 1.76 0 0 1 .621 1.372z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/App_Service_Mobile_App.svg b/src/main/webapp/img/lib/mscae/App_Service_Mobile_App.svg index 8ecc5a929e77ea26d4d48f0fa2e39e24c385a148..32966a15e345c9d55b24c08cb13fa311a28f9846 100644 --- a/src/main/webapp/img/lib/mscae/App_Service_Mobile_App.svg +++ b/src/main/webapp/img/lib/mscae/App_Service_Mobile_App.svg @@ -1,89 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="34.445" - height="50" - viewBox="0 0 34.445 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure App Service - Mobile App_COLOR.svg"><metadata - id="metadata4205"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs4203" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview4201" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.034957" - inkscape:cx="4.4261117" - inkscape:cy="22.992208" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 34.445,47 C 34.445,48.657 33.102,50 31.445,50 L 3,50 C 1.343,50 0,48.657 0,47 L 0,3 C 0,1.343 1.343,0 3,0 L 31.445,0 C 33.102,0 34.445,1.343 34.445,3 L 34.445,47 Z" - id="path4181" - inkscape:connector-curvature="0" - style="fill:#3e3e3e" /><rect - x="2.224" - y="5" - width="30" - height="35.222" - id="rect4183" - style="fill:#59b4d9" /><path - d="M 20.112,45.11 C 20.112,46.706 18.818,47.999 17.222,47.999 15.628,47.999 14.334,46.706 14.334,45.11 14.334,43.515 15.628,42.221 17.222,42.221 18.818,42.221 20.112,43.515 20.112,45.11" - id="path4185" - inkscape:connector-curvature="0" - style="fill:#ffffff" /><path - d="M 19.117,45.11 C 19.117,46.156 18.269,47.005 17.222,47.005 16.177,47.005 15.329,46.156 15.329,45.11 15.329,44.064 16.177,43.216 17.222,43.216 18.269,43.216 19.117,44.064 19.117,45.11" - id="path4187" - inkscape:connector-curvature="0" - style="fill:#b8d432" /><path - d="M 2.223,40.222 2.223,5 24.99,5 27.021,0 3,0 C 1.343,0 0,1.343 0,3 L 0,47 C 0,48.658 1.343,50 3,50 L 6.695,50 10.669,40.222 2.223,40.222 Z" - id="path4189" - inkscape:connector-curvature="0" - style="opacity:0.15;fill:#ffffff" /><path - d="M 22.334,2.817 C 22.334,3.225 22.004,3.555 21.596,3.555 L 12.852,3.555 C 12.443,3.555 12.112,3.225 12.112,2.817 12.112,2.409 12.443,2.078 12.852,2.078 L 21.596,2.078 C 22.004,2.078 22.334,2.409 22.334,2.817" - id="path4191" - inkscape:connector-curvature="0" - style="fill:#1e1e1e" /><path - d="M 22.334,2.817 C 22.334,3.225 22.004,3.555 21.596,3.555 L 12.852,3.555 C 12.443,3.555 12.112,3.225 12.112,2.817 12.112,2.409 12.443,2.078 12.852,2.078 L 21.596,2.078 C 22.004,2.078 22.334,2.409 22.334,2.817" - id="path4193" - inkscape:connector-curvature="0" - style="fill:#ffffff" /><path - d="M 17.251,21.311 C 17.206,21.311 17.16,21.297 17.117,21.273 L 8.313,16.191 C 8.232,16.143 8.181,16.054 8.181,15.96 8.181,15.865 8.232,15.777 8.313,15.73 L 17.064,10.681 C 17.146,10.635 17.246,10.635 17.327,10.681 L 26.134,15.765 C 26.216,15.812 26.265,15.9 26.265,15.995 26.265,16.091 26.216,16.178 26.134,16.225 L 17.386,21.273 C 17.343,21.297 17.3,21.311 17.251,21.311" - id="path4195" - inkscape:connector-curvature="0" - style="fill:#ffffff" /><path - d="M 15.987,33.663 C 15.937,33.663 15.892,33.651 15.853,33.627 L 7.075,28.561 C 6.99,28.514 6.939,28.428 6.939,28.33 L 6.939,18.164 C 6.939,18.068 6.99,17.981 7.075,17.933 7.156,17.884 7.256,17.884 7.343,17.933 L 16.12,22.997 C 16.198,23.047 16.25,23.134 16.25,23.23 L 16.25,33.396 C 16.25,33.493 16.198,33.579 16.12,33.627 16.076,33.651 16.03,33.663 15.987,33.663" - id="path4197" - inkscape:connector-curvature="0" - style="opacity:0.7;fill:#ffffff" /><path - d="M 18.471,33.663 C 18.423,33.663 18.378,33.651 18.333,33.627 18.255,33.579 18.204,33.493 18.204,33.396 L 18.204,23.294 C 18.204,23.2 18.255,23.112 18.333,23.063 L 27.11,17.999 C 27.194,17.951 27.292,17.951 27.374,17.999 27.458,18.046 27.509,18.134 27.509,18.229 L 27.509,28.33 C 27.509,28.428 27.458,28.514 27.374,28.561 L 18.6,33.627 C 18.564,33.651 18.517,33.663 18.471,33.663" - id="path4199" - inkscape:connector-curvature="0" - style="opacity:0.4;fill:#ffffff" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="34.445" height="50"><path d="M34.445 47a3 3 0 0 1-3 3H3a3 3 0 0 1-3-3V3a3 3 0 0 1 3-3h28.445a3 3 0 0 1 3 3v44z" fill="#3e3e3e"/><path d="M2.224 5h30v35.222h-30z" fill="#59b4d9"/><path d="M20.112 45.1a2.89 2.89 0 0 1-2.89 2.889 2.89 2.89 0 0 1-2.888-2.889 2.89 2.89 0 0 1 2.888-2.889 2.89 2.89 0 0 1 2.89 2.889" fill="#fff"/><path d="M19.117 45.1c0 1.046-.848 1.895-1.895 1.895s-1.893-.85-1.893-1.895.848-1.894 1.893-1.894 1.895.848 1.895 1.894" fill="#b8d432"/><path d="M2.223 40.222V5H25l2.03-5H3a3 3 0 0 0-3 3v44a3 3 0 0 0 3 3h3.695l3.974-9.778H2.223z" opacity=".15" fill="#fff"/><use xlink:href="#B" fill="#1e1e1e"/><g fill="#fff"><use xlink:href="#B"/><path d="M17.25 21.31c-.045 0-.09-.014-.134-.038L8.313 16.19a.27.27 0 0 1-.132-.231c0-.095.05-.183.132-.23l8.75-5.05c.082-.046.182-.046.263 0l8.807 5.084c.082.047.13.135.13.23s-.05.183-.13.23l-8.748 5.048a.27.27 0 0 1-.135.038"/><path d="M15.987 33.663c-.05 0-.095-.012-.134-.036L7.075 28.56a.26.26 0 0 1-.136-.231V18.164c0-.096.05-.183.136-.23s.18-.05.268 0l8.777 5.064a.28.28 0 0 1 .13.233v10.166c0 .097-.052.183-.13.23a.28.28 0 0 1-.133.036" opacity=".7"/><path d="M18.47 33.663c-.048 0-.093-.012-.138-.036a.27.27 0 0 1-.129-.231V23.294c0-.094.05-.182.13-.23L27.1 18a.26.26 0 0 1 .264 0c.084.047.135.135.135.23v10.1a.26.26 0 0 1-.135.231L18.6 33.627c-.036.024-.083.036-.13.036" opacity=".4"/></g><defs ><path id="B" d="M22.334 2.817a.74.74 0 0 1-.738.738h-8.744a.74.74 0 0 1-.74-.738.74.74 0 0 1 .74-.739h8.744a.74.74 0 0 1 .738.739"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/App_Service_Worker_Pools.svg b/src/main/webapp/img/lib/mscae/App_Service_Worker_Pools.svg index 05de2220a489f609c86ee7466c52e5b9632e1361..8a58c3aaca5a4d9312401e335eda5ee028c9253d 100644 --- a/src/main/webapp/img/lib/mscae/App_Service_Worker_Pools.svg +++ b/src/main/webapp/img/lib/mscae/App_Service_Worker_Pools.svg @@ -1,41 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#59B4D9" d="M25,50c-1.2,0-2.4-0.5-3.3-1.4L1.4,28.3C0.5,27.4,0,26.2,0,25c0-1.2,0.5-2.4,1.4-3.3L21.7,1.4 - C22.6,0.5,23.8,0,25,0c1.2,0,2.4,0.5,3.3,1.4l20.4,20.4c0.9,0.9,1.4,2,1.4,3.3s-0.5,2.4-1.4,3.3L28.3,48.6C27.4,49.5,26.2,50,25,50" - /> -<path opacity="0.1" fill="#FFFFFF" enable-background="new " d="M28.3,1.4C27.4,0.5,26.2,0,25,0c-1.2,0-2.4,0.5-3.3,1.4L1.4,21.7 - C0.5,22.6,0,23.8,0,25c0,1.2,0.5,2.4,1.4,3.3l11.5,11.5L34.6,7.7L28.3,1.4z"/> -<polygon fill="#3E3E3E" points="30.6,12.6 30.6,11.4 30.4,11.3 29.1,10.9 28.7,10 29.4,8.5 28.5,7.6 28.3,7.7 27.1,8.3 26.2,7.9 - 25.6,6.4 24.3,6.4 24.3,6.6 23.8,8 22.9,8.3 21.5,7.6 20.6,8.5 20.6,8.7 21.3,10 20.9,10.9 19.4,11.4 19.4,12.7 19.6,12.8 - 20.9,13.2 21.3,14.1 20.6,15.6 21.5,16.5 21.7,16.4 22.9,15.7 23.8,16.1 24.4,17.6 25.7,17.6 25.7,17.5 26.2,16.1 27.1,15.7 - 28.5,16.4 29.4,15.5 29.4,15.4 28.7,14.1 29.1,13.2 "/> -<path opacity="0.2" fill="#F1F1F1" enable-background="new " d="M28.3,7.7l-1.3,0.6l-0.9-0.4l-0.6-1.5h-1.3l-0.1,0.2L23.8,8 - l-0.9,0.4l-1.5-0.7l-0.9,0.9l0.1,0.2l0.7,1.3l-0.4,0.9l-1.5,0.6v1.3l0.2,0.1l1.4,0.4l0.4,0.9l-0.7,1.5l0.9,0.9l0.2-0.1l0.5-0.3 - L23,15c0,0,0,0,0,0l4.3-5.9c0,0,0,0,0,0L28.3,7.7z"/> -<circle fill="#59B4D9" cx="25" cy="12" r="2"/> -<polygon fill="#3E3E3E" points="30.6,39.4 30.6,38.1 30.4,38.1 29.1,37.6 28.7,36.7 29.4,35.3 28.5,34.4 28.3,34.4 27.1,35.1 - 26.2,34.7 25.6,33.2 24.3,33.2 24.3,33.4 23.8,34.7 22.9,35.1 21.5,34.4 20.6,35.3 20.6,35.5 21.3,36.8 20.9,37.6 19.4,38.2 - 19.4,39.5 19.6,39.5 20.9,40 21.3,40.9 20.6,42.3 21.5,43.3 21.7,43.2 22.9,42.5 23.8,42.9 24.4,44.4 25.7,44.4 25.7,44.2 - 26.2,42.9 27.1,42.5 28.5,43.2 29.4,42.3 29.4,42.1 28.7,40.9 29.1,40 "/> -<path opacity="0.2" fill="#F1F1F1" enable-background="new " d="M28.3,34.5l-1.3,0.6l-0.9-0.4l-0.6-1.5h-1.3l-0.1,0.2l-0.4,1.4 - l-0.9,0.4l-1.5-0.7l-0.9,0.9l0.1,0.2l0.7,1.3l-0.4,0.9l-1.5,0.6v1.3l0.2,0.1l1.4,0.4l0.4,0.9l-0.7,1.5l0.9,0.9l0.2-0.1l0.5-0.3 - l0.8-1.1c0,0,0,0,0,0l4.3-5.9c0,0,0,0,0,0L28.3,34.5z"/> -<circle fill="#59B4D9" cx="25" cy="38.8" r="2"/> -<polygon fill="#3E3E3E" points="16.9,25.6 16.9,24.3 16.7,24.3 15.3,23.8 15,22.9 15.7,21.5 14.8,20.6 14.6,20.6 13.3,21.3 - 12.4,20.9 11.9,19.4 10.6,19.4 10.5,19.6 10.1,20.9 9.2,21.3 7.7,20.6 6.8,21.5 6.9,21.7 7.5,22.9 7.2,23.8 5.6,24.4 5.6,25.7 - 5.8,25.7 7.2,26.2 7.5,27.1 6.8,28.5 7.7,29.4 7.9,29.4 9.2,28.7 10.1,29.1 10.6,30.6 11.9,30.6 12,30.4 12.4,29.1 13.3,28.7 - 14.8,29.4 15.7,28.5 15.6,28.3 15,27.1 15.3,26.2 "/> -<path opacity="0.2" fill="#F1F1F1" enable-background="new " d="M14.6,20.6l-1.3,0.6l-0.9-0.4l-0.6-1.5h-1.3l-0.1,0.2l-0.4,1.4 - l-0.9,0.4l-1.5-0.7l-0.9,0.9l0.1,0.2l0.7,1.3l-0.4,0.9l-1.5,0.6v1.3l0.2,0.1l1.4,0.4l0.4,0.9l-0.7,1.5l0.9,0.9l0.2-0.1l0.5-0.3 - L9.2,28c0,0,0,0,0,0l4.3-5.9c0,0,0,0,0,0L14.6,20.6z"/> -<circle fill="#59B4D9" cx="11.3" cy="25" r="2"/> -<polygon fill="#3E3E3E" points="44.9,25.6 44.9,24.3 44.7,24.3 43.3,23.8 42.9,22.9 43.6,21.5 42.7,20.6 42.6,20.6 41.3,21.3 - 40.4,20.9 39.8,19.4 38.6,19.4 38.5,19.6 38.1,20.9 37.2,21.3 35.7,20.6 34.8,21.5 34.9,21.7 35.5,22.9 35.2,23.8 33.6,24.4 - 33.6,25.7 33.8,25.7 35.2,26.2 35.5,27.1 34.8,28.5 35.7,29.4 35.9,29.4 37.2,28.7 38.1,29.1 38.6,30.6 39.9,30.6 40,30.4 - 40.4,29.1 41.3,28.7 42.8,29.4 43.7,28.5 43.6,28.3 42.9,27.1 43.3,26.2 "/> -<path opacity="0.2" fill="#F1F1F1" enable-background="new " d="M42.6,20.6l-1.3,0.6l-0.9-0.4l-0.6-1.5h-1.3l-0.1,0.2l-0.4,1.4 - l-0.9,0.4l-1.5-0.7l-0.9,0.9l0.1,0.2l0.7,1.3l-0.4,0.9l-1.5,0.6v1.3l0.2,0.1l1.4,0.4l0.4,0.9l-0.7,1.5l0.9,0.9l0.2-0.1l0.5-0.3 - l0.8-1.1c0,0,0,0,0,0l4.3-5.9c0,0,0,0,0,0L42.6,20.6z"/> -<circle fill="#59B4D9" cx="39.2" cy="25" r="2"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="50"><path fill="#59b4d9" d="M25 50c-1.2 0-2.4-.5-3.3-1.4L1.4 28.3C.5 27.4 0 26.2 0 25s.5-2.4 1.4-3.3L21.7 1.4C22.6.5 23.8 0 25 0s2.4.5 3.3 1.4l20.4 20.4c.9.9 1.4 2 1.4 3.3s-.5 2.4-1.4 3.3L28.3 48.6c-.9.9-2.1 1.4-3.3 1.4"/><path opacity=".1" fill="#fff" d="M28.3 1.4C27.4.5 26.2 0 25 0s-2.4.5-3.3 1.4L1.4 21.7C.5 22.6 0 23.8 0 25s.5 2.4 1.4 3.3l11.5 11.5L34.6 7.7l-6.3-6.3z"/><path fill="#3e3e3e" d="M30.6 12.6v-1.2l-.2-.1-1.3-.4-.4-.9.7-1.5-.9-.9-1.4.7-.9-.4-.6-1.5h-1.3v.2L23.8 8l-.9.3-1.4-.7-.9.9v.2l.7 1.3-.4.9-1.5.5v1.3l.2.1 1.3.4.4.9-.7 1.5.9.9.2-.1 1.2-.7.9.4.6 1.5h1.3v-.1l.5-1.4.9-.4 1.4.7.9-.9v-.1l-.7-1.3.4-.9z"/><path opacity=".2" fill="#f1f1f1" d="M28.3 7.7l-1.3.6-.9-.4-.6-1.5h-1.3l-.1.2-.3 1.4-.9.4-1.5-.7-.9.9.1.2.7 1.3-.4.9-1.5.6v1.3l.2.1 1.4.4.4.9-.7 1.5.9.9.2-.1.5-.3.7-1.3 4.3-5.9 1-1.4z"/><circle fill="#59b4d9" cx="25" cy="12" r="2"/><path fill="#3e3e3e" d="M30.6 39.4v-1.3h-.2l-1.3-.5-.4-.9.7-1.4-.9-.9h-.2l-1.2.7-.9-.4-.6-1.5h-1.3v.2l-.5 1.3-.9.4-1.4-.7-.9.9v.2l.7 1.3-.4.8-1.5.6v1.3h.2l1.3.5.4.9-.7 1.4.9 1 .2-.1 1.2-.7.9.4.6 1.5h1.3v-.2l.5-1.3.9-.4 1.4.7.9-.9v-.2l-.7-1.2.4-.9z"/><use xlink:href="#B" opacity=".2" fill="#f1f1f1"/><circle fill="#59b4d9" cx="25" cy="38.8" r="2"/><path fill="#3e3e3e" d="M16.9 25.6v-1.3h-.2l-1.4-.5-.3-.9.7-1.4-.9-.9h-.2l-1.3.7-.9-.4-.5-1.5h-1.3l-.1.2-.4 1.3-.9.4-1.5-.7-.9.9.7 1.4-.3.9-1.6.6v1.3h.2l1.4.5.3.9-.7 1.4.9.9h.2l1.3-.7.9.4.5 1.5h1.3l.1-.2.4-1.3.9-.4 1.5.7.9-.9-.7-1.4.3-.9z"/><path opacity=".2" fill="#f1f1f1" d="M14.6 20.6l-1.3.6-.9-.4-.6-1.5h-1.3l-.1.2-.4 1.4-.9.4-1.5-.7-.9.9.1.2.7 1.3-.4.9-1.5.6v1.3l.2.1 1.4.4.4.9-.7 1.5.9.9.2-.1.5-.3.7-1.2 4.3-5.9 1.1-1.5z"/><circle fill="#59b4d9" cx="11.3" cy="25" r="2"/><path fill="#3e3e3e" d="M44.9 25.6v-1.3h-.2l-1.4-.5-.4-.9.7-1.4-.9-.9h-.1l-1.3.7-.9-.4-.6-1.5h-1.2l-.1.2-.4 1.3-.9.4-1.5-.7-.9.9.7 1.4-.3.9-1.6.6v1.3h.2l1.4.5.3.9-.7 1.4.9.9h.2l1.3-.7.9.4.5 1.5h1.3l.1-.2.4-1.3.9-.4 1.5.7.9-.9-.1-.2-.7-1.2.4-.9z"/><use xlink:href="#B" x="14.3" y="-13.9" opacity=".2" fill="#f1f1f1"/><circle fill="#59b4d9" cx="39.2" cy="25" r="2"/><defs ><path id="B" d="M28.3 34.5l-1.3.6-.9-.4-.6-1.5h-1.3l-.1.2-.4 1.4-.9.4-1.5-.7-.9.9.1.2.7 1.3-.4.9-1.5.6v1.3l.2.1 1.4.4.4.9-.7 1.5.9.9.2-.1.5-.3.8-1.1 4.3-5.9 1-1.6z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/App_Services.svg b/src/main/webapp/img/lib/mscae/App_Services.svg new file mode 100644 index 0000000000000000000000000000000000000000..f37d91e9cdee6ec89b78bb565ff592f97e79cc96 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/App_Services.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="49.99"><path d="M40.193 44.84a24.898 24.898 0 0 1-15.167 5.151c-7.52 0-14.956-3.376-19.87-9.803-8.396-10.962-6.324-26.64 4.658-35.04C14.343 1.663 19.686 0 24.98 0c7.52 0 14.958 3.376 19.87 9.81 8.398 10.96 6.305 26.64-4.656 35.03" fill="#59b4d9"/><path d="M35.6 29.378a5.385 5.385 0 0 0 7.541 1.004c.123-.094.218-.208.33-.31l5.025 3.46c.28-.723.472-1.417.67-2.142a130.857 130.857 0 0 1-4.29-3.356c.64-1.68.437-3.64-.73-5.17a5.36 5.36 0 0 0-6.936-1.377 224.317 224.317 0 0 1-8.293-7.833c9.165-4.93 15.676-4.207 15.676-4.207-1.087-1.386-2.305-2.6-3.606-3.697-3.865-.597-9.87-.53-16.73 3.12l-.002-.003h-.001a200.322 200.322 0 0 1-6.983-7.712A23.264 23.264 0 0 0 13.96 2.5c1.75 2.862 4.102 5.75 6.754 8.565l.017.017a46.293 46.293 0 0 0-6.944 6.015c-.3.31-.57.62-.842.93a7.546 7.546 0 0 0-4.117.282C6.564 13.425 6.746 9.5 7.104 7.478c-.983 1.03-1.9 2.113-2.692 3.267-.59 2.415-.76 5.898.985 10.095a7.538 7.538 0 0 0-.005 9.153c.176.23.364.442.56.645a37.87 37.87 0 0 0-1.46 8.761c.237.322.237.582.472.896 1.2 1.538 2.705 2.834 4.16 4.008-.18-2.75.014-6.806 1.714-11.372a7.507 7.507 0 0 0 3.483-.566 64.73 64.73 0 0 0 2.025 1.711 41.672 41.672 0 0 0 7.285 4.643 4.974 4.974 0 0 0 .968 3.518 4.998 4.998 0 0 0 6.983.919 4.918 4.918 0 0 0 1.108-1.216c3.89.866 7.287 1.02 9.806 1.02.386 0 2.177-2.436 3.203-3.946-1.534.32-6.083.946-12.3-.84a4.952 4.952 0 0 0-.898-1.98c-1.58-2.07-4.466-2.518-6.618-1.133a46.853 46.853 0 0 1-6.758-4.49 46.422 46.422 0 0 1-1.359-1.118 7.578 7.578 0 0 0 .318-7.55l.87-.857c2.31-2.16 4.485-3.887 6.52-5.274-.082-.076-.156-.156-.236-.233l.24.227-.002.001c3.12 2.886 6.43 5.62 9.564 8.065-.83 1.758-.7 3.9.562 5.547z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Application_Gateway.svg b/src/main/webapp/img/lib/mscae/Application_Gateway.svg index 81aa3e43e11f735d219dd90534db7776d7b165af..6fb332e93f326b2858ee16a6fb6350aba0504595 100644 --- a/src/main/webapp/img/lib/mscae/Application_Gateway.svg +++ b/src/main/webapp/img/lib/mscae/Application_Gateway.svg @@ -1,37 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#7FBA00" d="M25,50c-1.2,0-2.4-0.5-3.3-1.4L1.4,28.3C0.5,27.4,0,26.2,0,25s0.5-2.4,1.4-3.3L21.7,1.4 - C22.6,0.5,23.8,0,25,0s2.4,0.5,3.3,1.4l20.4,20.4c0.9,0.9,1.4,2,1.4,3.3c0,1.2-0.5,2.4-1.4,3.3L28.3,48.6C27.4,49.5,26.2,50,25,50" - /> -<path fill="#FFFFFF" d="M29.738,18.584c-1.398,1.069-3.044,1.589-4.68,1.589c-2.32,0-4.614-1.042-6.131-3.025 - c-2.59-3.382-1.951-8.219,1.437-10.811c1.397-1.075,3.046-1.588,4.679-1.588c2.32,0,4.615,1.042,6.131,3.026 - C33.765,11.158,33.119,15.996,29.738,18.584"/> -<path opacity="0.15" fill="#FFFFFF" enable-background="new " d="M28.3,1.4C27.4,0.5,26.2,0,25,0s-2.4,0.5-3.3,1.4L1.4,21.7 - C0.5,22.6,0,23.8,0,25s0.5,2.4,1.4,3.3l11.5,11.5L34.6,7.7L28.3,1.4z"/> -<polygon fill="#FFFFFF" points="25,45.6 31.6,39 26.9,39 26.9,19.149 23,19.149 23,39 18.4,39 "/> -<polygon fill="#FFFFFF" points="39.33,33.48 39.33,24.146 36.077,27.399 27.633,18.955 24.805,21.783 33.249,30.227 29.996,33.48 - "/> -<polygon fill="#FFFFFF" points="10.685,33.515 20.018,33.515 16.766,30.263 25.447,21.582 22.618,18.753 13.937,27.434 - 10.685,24.182 "/> -<path fill="#59B4D9" d="M29.115,17.771c-1.212,0.927-2.64,1.378-4.058,1.378c-2.012,0-4.002-0.903-5.316-2.623 - c-2.246-2.933-1.692-7.127,1.246-9.375c1.212-0.932,2.641-1.377,4.057-1.377c2.012,0,4.002,0.903,5.316,2.624 - C32.608,11.331,32.048,15.526,29.115,17.771"/> -<path fill="#FFFFFF" d="M27.886,13.635c0.486,0.634,1.388,0.748,2.018,0.269c0.033-0.025,0.058-0.056,0.088-0.083 - c0.645,0.454,1.092,0.754,1.344,0.925c0.075-0.193,0.126-0.379,0.179-0.573c-0.266-0.198-0.627-0.476-1.148-0.898 - c0.171-0.449,0.117-0.974-0.195-1.384c-0.447-0.578-1.238-0.725-1.856-0.368c-0.681-0.611-1.43-1.312-2.219-2.096 - c2.452-1.319,4.194-1.126,4.194-1.126c-0.291-0.371-0.617-0.696-0.965-0.989c-1.034-0.16-2.64-0.142-4.476,0.834l-0.001-0.001h0 - c-0.612-0.64-1.234-1.327-1.868-2.063c-0.303,0.097-0.6,0.217-0.886,0.36c0.468,0.766,1.098,1.538,1.807,2.292l0,0 - c0.001,0.002,0.003,0.003,0.005,0.005c-0.592,0.414-1.25,0.967-1.858,1.609c-0.078,0.083-0.152,0.166-0.225,0.249 - c-0.363-0.076-0.745-0.054-1.102,0.075c-0.606-1.307-0.557-2.357-0.461-2.898c-0.263,0.276-0.509,0.565-0.72,0.874 - c-0.158,0.646-0.203,1.578,0.264,2.701c-0.54,0.707-0.566,1.709-0.001,2.449c0.047,0.061,0.097,0.118,0.15,0.173 - c-0.246,0.839-0.357,1.649-0.391,2.344c0.063,0.086,0.063,0.156,0.126,0.24c0.321,0.411,0.724,0.758,1.113,1.072 - c-0.048-0.736,0.004-1.821,0.459-3.043c0.314,0.024,0.633-0.026,0.932-0.151c0.171,0.151,0.35,0.303,0.542,0.458 - c0.656,0.52,1.311,0.924,1.949,1.242c-0.033,0.325,0.048,0.662,0.259,0.941c0.451,0.582,1.286,0.691,1.868,0.246 - c0.121-0.093,0.217-0.205,0.296-0.325c1.041,0.232,1.95,0.273,2.624,0.273c0.103,0,0.582-0.652,0.857-1.056 - c-0.41,0.086-1.628,0.253-3.291-0.225c-0.04-0.187-0.117-0.368-0.24-0.53c-0.422-0.554-1.195-0.674-1.771-0.303 - c-0.578-0.314-1.184-0.707-1.808-1.201c-0.126-0.1-0.247-0.199-0.364-0.299c0.382-0.601,0.422-1.372,0.085-2.02 - c0.077-0.077,0.152-0.153,0.233-0.229c0.618-0.578,1.2-1.04,1.744-1.411c-0.022-0.02-0.042-0.042-0.063-0.062 - c0.022,0.02,0.042,0.041,0.064,0.061c0,0,0,0-0.001,0c0.835,0.772,1.72,1.504,2.559,2.158 - C27.514,12.621,27.549,13.194,27.886,13.635z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path fill="#7fba00" d="M25 50c-1.2 0-2.4-.5-3.3-1.4L1.4 28.3C.5 27.4 0 26.2 0 25s.5-2.4 1.4-3.3L21.7 1.4C22.6.5 23.8 0 25 0s2.4.5 3.3 1.4l20.4 20.4c.9.9 1.4 2 1.4 3.3 0 1.2-.5 2.4-1.4 3.3L28.3 48.6c-.9.9-2.1 1.4-3.3 1.4"/><g fill="#fff"><path d="M29.738 18.584a7.68 7.68 0 0 1-4.68 1.589 7.7 7.7 0 0 1-6.131-3.025c-2.6-3.382-1.95-8.22 1.437-10.81C21.76 5.262 23.4 4.75 25.043 4.75c2.32 0 4.615 1.042 6.13 3.026a7.71 7.71 0 0 1-1.436 10.809"/><path opacity=".15" d="M28.3 1.4C27.4.5 26.2 0 25 0s-2.4.5-3.3 1.4L1.4 21.7C.5 22.6 0 23.8 0 25s.5 2.4 1.4 3.3l11.5 11.5L34.6 7.7l-6.3-6.3z"/><path d="M25 45.6l6.6-6.6h-4.7V19.15H23V39h-4.6z"/><path d="M39.33 33.48v-9.334L36.077 27.4l-8.444-8.444-2.828 2.828 8.444 8.444-3.253 3.253z"/><path d="M10.685 33.515h9.333l-3.252-3.252 8.68-8.68-2.83-2.83-8.68 8.68-3.252-3.252z"/></g><path fill="#59b4d9" d="M29.115 17.77a6.66 6.66 0 0 1-4.058 1.378c-2.012 0-4.002-.903-5.316-2.623-2.246-2.933-1.692-7.127 1.246-9.375a6.63 6.63 0 0 1 4.057-1.377 6.67 6.67 0 0 1 5.316 2.624c2.248 2.933 1.688 7.128-1.245 9.373"/><path fill="#fff" d="M27.886 13.635a1.44 1.44 0 0 0 2.018.269c.033-.025.058-.056.088-.083l1.344.925c.075-.193.126-.38.18-.573l-1.148-.898c.17-.45.117-.974-.195-1.384-.447-.578-1.238-.725-1.856-.368l-2.22-2.096C28.55 8.108 30.29 8.3 30.29 8.3c-.29-.37-.617-.696-.965-.99-1.034-.16-2.64-.142-4.476.834v-.001L22.98 6.082a6.23 6.23 0 0 0-.886.36c.468.766 1.098 1.538 1.807 2.292-.587.42-1.245.972-1.853 1.614l-.225.25c-.363-.076-.745-.054-1.102.075-.606-1.307-.557-2.357-.46-2.898-.263.276-.51.565-.72.874-.158.646-.203 1.578.264 2.7-.54.707-.566 1.71-.001 2.45.047.06.097.118.15.173-.246.84-.357 1.65-.39 2.344.063.086.063.156.126.24.32.41.724.758 1.113 1.072-.048-.736.004-1.82.46-3.043.314.024.633-.026.932-.15l.542.458c.656.52 1.31.924 1.95 1.242a1.33 1.33 0 0 0 .259.941c.45.582 1.286.69 1.868.246.12-.093.217-.205.296-.325 1.04.232 1.95.273 2.624.273.103 0 .582-.652.857-1.056-.4.086-1.628.253-3.29-.225a1.33 1.33 0 0 0-.24-.53c-.422-.554-1.195-.674-1.77-.303a12.61 12.61 0 0 1-1.808-1.201l-.364-.3c.382-.6.422-1.372.085-2.02l.233-.23a14.63 14.63 0 0 1 1.744-1.411l-.063-.062.064.06 2.558 2.158c-.22.47-.186 1.043.15 1.484z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Application_Insights.svg b/src/main/webapp/img/lib/mscae/Application_Insights.svg index d44c5377e96b6255680a4ffe512f1d03f7714f68..4cad5e006ce0f42da60245401aeded477b062552 100644 --- a/src/main/webapp/img/lib/mscae/Application_Insights.svg +++ b/src/main/webapp/img/lib/mscae/Application_Insights.svg @@ -1,76 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="49.911572" - width="32.565647" - viewBox="0 0 32.565647 49.911572" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure Application Insights_COLOR.svg"><metadata - id="metadata21"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs19" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview17" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="16.059063" - inkscape:cx="16.138431" - inkscape:cy="25" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 32.538431,14.61157 32.538431,14.61157 32.538431,14.31157 C 32.538431,6.6115702 25.938431,0.21157025 17.838431,0.11157025 17.638431,-0.18842975 13.038431,0.21157025 13.038431,0.21157025 L 13.038431,0.21157025 C 5.7384312,1.1115702 0.03843123,7.2115702 0.03843123,14.31157 0.03843123,14.51157 -0.76156877,20.11157 4.9384312,24.81157 7.5384312,27.11157 10.238431,33.31157 10.638431,35.11157 L 10.938431,35.71157 21.538431,35.71157 21.838431,35.11157 C 22.238431,33.31157 25.038431,27.11157 27.538431,24.91157 33.238431,20.11157 32.538431,14.81157 32.538431,14.61157 Z" - id="path3" - inkscape:connector-curvature="0" - style="fill:#68217a" /><rect - x="11.138432" - y="39.311573" - width="10.6" - height="3.4000001" - id="rect5" - style="fill:#7a7a7a" /><polygon - points="20,46.5 23.3,50 27.2,50 30.5,46.5 " - id="polygon7" - style="fill:#7a7a7a" - transform="translate(-8.8615688,-0.08842975)" /><g - id="g9" - style="opacity:0.65" - transform="translate(-8.8615688,-0.08842975)"><path - d="M 27.9,35.3 25.9,35.3 25.9,22.6 24.2,22.6 24.2,35.2 22.2,35.2 22.2,22.6 20.5,22.6 C 18.5,22.6 16.8,20.9 16.8,18.9 16.8,16.9 18.4,15.2 20.5,15.2 22.6,15.2 24.2,16.9 24.2,18.9 L 24.2,20.6 25.9,20.6 25.9,18.9 C 25.9,16.9 27.6,15.2 29.6,15.2 31.6,15.2 33.3,16.9 33.3,18.9 33.3,20.9 31.6,22.6 29.6,22.6 L 27.9,22.6 27.9,35.3 Z M 20.5,17.2 C 19.6,17.2 18.8,17.9 18.8,18.9 18.8,19.8 19.6,20.6 20.5,20.6 L 22.2,20.6 22.2,18.9 C 22.1,18 21.4,17.2 20.5,17.2 Z M 29.6,17.2 C 28.7,17.2 27.9,18 27.9,18.9 L 27.9,20.6 29.6,20.6 C 30.5,20.6 31.3,19.8 31.3,18.9 31.3,18 30.6,17.2 29.6,17.2 Z" - id="path11" - inkscape:connector-curvature="0" - style="fill:#ffffff" /></g><g - enable-background="new " - id="g13" - style="opacity:0.15" - transform="translate(-8.8615688,-0.08842975)"><path - d="M 26.7,0.2 C 26.5,-0.1 21.9,0.3 21.9,0.3 14.6,1.2 8.9,7.3 8.9,14.4 8.9,14.6 8.2,19.5 12.8,24 L 34.4,2.4 C 32.1,1 29.5,0.2 26.7,0.2 Z" - id="path15" - inkscape:connector-curvature="0" - style="fill:#ffffff" /></g></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" height="49.912" width="32.566"><path d="M32.538 14.612v-.3c0-7.7-6.6-14.1-14.7-14.2-.2-.3-4.8.1-4.8.1-7.3.9-13 7-13 14.1 0 .2-.8 5.8 4.9 10.5 2.6 2.3 5.3 8.5 5.7 10.3l.3.6h10.6l.3-.6c.4-1.8 3.2-8 5.7-10.2 5.7-4.8 5-10.1 5-10.3z" fill="#68217a"/><path d="M11.138 39.312h10.6v3.4h-10.6zm0 7.1l3.3 3.5h3.9l3.3-3.5z" fill="#7a7a7a"/><g fill="#fff"><path d="M19.038 35.212h-2v-12.7h-1.7v12.6h-2v-12.6h-1.7a3.76 3.76 0 0 1-3.7-3.7c0-2 1.6-3.7 3.7-3.7s3.7 1.7 3.7 3.7v1.7h1.7v-1.7a3.76 3.76 0 0 1 3.7-3.7 3.76 3.76 0 0 1 3.7 3.7 3.76 3.76 0 0 1-3.7 3.7h-1.7v12.7zm-7.4-18.1c-.9 0-1.7.7-1.7 1.7 0 .9.8 1.7 1.7 1.7h1.7v-1.7c-.1-.9-.8-1.7-1.7-1.7zm9.1 0c-.9 0-1.7.8-1.7 1.7v1.7h1.7c.9 0 1.7-.8 1.7-1.7s-.7-1.7-1.7-1.7z" opacity=".65"/><path d="M17.838.112c-.2-.3-4.8.1-4.8.1-7.3.9-13 7-13 14.1 0 .2-.7 5.1 3.9 9.6l21.6-21.6c-2.3-1.4-4.9-2.2-7.7-2.2z" opacity=".15"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Application_Security_Groups.svg b/src/main/webapp/img/lib/mscae/Application_Security_Groups.svg new file mode 100644 index 0000000000000000000000000000000000000000..0702bf19830dbed26b8ddd4326ebd6f176f7ab12 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Application_Security_Groups.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="36.654" height="50.001"><path d="M31.185 5.96C20.17 4.745 18.326 0 18.326 0S15.847 6.242 0 6.242v25.61c0 3.097 1.72 5.997 4.104 8.532C9.506 46.133 18.327 50 18.327 50s18.327-8.03 18.327-18.15v-25.6c-2.038 0-3.85-.103-5.47-.282z" fill="#0072c6"/><path d="M22.86 16.543L31.185 5.96C20.17 4.745 18.326 0 18.326 0S15.847 6.242 0 6.242v25.61c0 3.097 1.72 5.997 4.104 8.532l6.154-7.822z" opacity=".2" fill="#fff"/><path d="M7.298 29.998h.03V15l20.114-.03L7.298 15z" fill="#59b4d9"/><g fill="#fff"><path d="M29.756 13H6.74c-.782 0-1.413.7-1.413 1.48v16.05c0 .776.63 1.468 1.413 1.468l8.567.002c.795 2.98-.265 3.423-4.897 3.43h-.083V37h16v-1.57h-.083c-4.632-.005-5.692-.448-4.897-3.43l-.006-.002h8.415c.78 0 1.57-.692 1.57-1.468V14.48c0-.783-.8-1.48-1.57-1.48zm-.46 16.998h-22V15h22zM18.34 22.045c-.025-.001-.05-.007-.07-.02l-4.578-2.643c-.042-.025-.07-.07-.07-.12s.027-.095.07-.12l4.55-2.625a.14.14 0 0 1 .137 0l4.58 2.644c.043.024.068.07.068.12s-.025.095-.068.12l-4.55 2.625c-.02.012-.045.018-.07.02" opacity=".95"/><path d="M17.684 28.468a.13.13 0 0 1-.07-.019l-4.564-2.634c-.044-.024-.07-.07-.07-.12V20.41c0-.05.027-.095.07-.12s.096-.025.14 0l4.564 2.633c.042.026.068.072.068.12v5.286c0 .05-.027.095-.068.12-.02.012-.045.018-.07.02" opacity=".8"/><path d="M18.976 28.468c-.025 0-.05-.007-.072-.02a.14.14 0 0 1-.067-.12v-5.253c0-.05.027-.095.067-.12l4.564-2.633c.042-.025.095-.025.137 0s.07.07.07.12v5.252c0 .05-.026.096-.07.12l-4.562 2.634c-.02.012-.043.02-.067.02" opacity=".6"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Archive_Storage.svg b/src/main/webapp/img/lib/mscae/Archive_Storage.svg new file mode 100644 index 0000000000000000000000000000000000000000..99cd9ba39dfd52c0549fd70ee314ad2b6b159769 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Archive_Storage.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="48"><path d="M44 48H6a6 6 0 0 1-6-6V2h50v40a6 6 0 0 1-6 6z" fill="#3e3e3e"/><path d="M4 17h42v12H4z" fill="#fff"/><path d="M4 17h42v12H4z" opacity=".85" fill="#804998"/><path d="M4 32h42v12H4z" fill="#fff"/><g fill="#59b4d9"><path d="M4 32h42v12H4z" opacity=".5"/><path d="M4 2h42v12H4z"/></g><g fill="#fff"><path d="M4 17h42v2H4z" opacity=".25"/><path d="M4 2h42v2H4z" opacity=".2"/><path d="M4 32h42v2H4z" opacity=".4"/><path d="M6 48h2.696L40.08 2H0v40a6 6 0 0 0 6 6z" opacity=".15"/></g><path d="M12.91 22.8a.9.9 0 0 0 .892-.795L15.994 1a.9.9 0 0 0-.892-1h-4.386a.9.9 0 0 0-.891 1.001l2.193 21.005c.052.452.435.794.89.794z" fill="#59b4d9"/><g fill="#fff"><path d="M15.212.8L12.996 22h-.173L10.607.8z" opacity=".6"/><path d="M12.91.8l.087 21.2h-.173L10.607.8z" opacity=".6"/></g><path d="M39 27c.57 0 1.05-.427 1.115-.993l2.74-24.756A1.12 1.12 0 0 0 41.741 0H36.26c-.67 0-1.19.584-1.115 1.25l2.74 24.756c.066.566.545.993 1.115.993z" fill="#59b4d9"/><path d="M41.878 1l-2.77 25h-.216l-2.77-25z" opacity=".6" fill="#fff"/><path d="M32.636 22.8a.9.9 0 0 0 .892-.795L35.72 1A.9.9 0 0 0 34.829 0h-4.386a.9.9 0 0 0-.892 1.001l2.193 21.005a.9.9 0 0 0 .892.794z" fill="#59b4d9"/><g fill="#fff"><path d="M30.557 1h4.16l-2.08 19.915z" opacity=".6"/><path d="M30.557 1h2.08v19.915zM39 1l.108 25h-.216l-2.77-25z" opacity=".6"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Auditing.svg b/src/main/webapp/img/lib/mscae/Auditing.svg index 73ac0d2e85afc41ba89603cbd3829ceb0aa992c1..f32172a0d662bf78a283862b08f213b281147dfa 100644 --- a/src/main/webapp/img/lib/mscae/Auditing.svg +++ b/src/main/webapp/img/lib/mscae/Auditing.svg @@ -1,96 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="50" - width="40" - viewBox="0 0 40 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Auditing.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata1931"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs1929" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview1927" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="8.5" - inkscape:cx="15.15935" - inkscape:cy="23.605152" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="M 38.4,0 H 1.6 C 0.7,0 0,0.7 0,1.6 V 7 7.5 48.3 c 0,1 0.7,1.7 1.6,1.7 H 38.4 C 39.3,50 40,49.3 40,48.4 V 7.5 7 1.6 C 40,0.7 39.3,0 38.4,0 Z" - id="path1910" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="M 1.6,0 C 0.7,0 0,0.7 0,1.6 v 5.9 17 23.8 c 0,1 0.7,1.7 1.6,1.7 H 17 L 34.9,0 Z" - id="path1912" - inkscape:connector-curvature="0" - style="opacity:0.1;fill:#ffffff" /> -<rect - x="20.299999" - y="25.299999" - width="13.3" - height="2.5999999" - id="rect1914" - style="opacity:0.6;fill:#ffffff" /> -<path - d="M 5.9,11.5 5.5,11 C 5.4,10.9 5.4,10.7 5.5,10.6 L 6.8,9.4 C 6.9,9.3 6.9,9.3 7,9.3 c 0.1,0 0.2,0 0.2,0.1 l 3.5,3.8 6,-7.8 c 0.1,-0.1 0.2,-0.1 0.2,-0.1 0.1,0 0.1,0 0.2,0.1 l 1.4,1.1 c 0.1,0.1 0.1,0.1 0.1,0.2 0,0.1 0,0.2 -0.1,0.2 l -7.8,10 z" - id="path1916" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -<path - d="M 5.9,25.1 5.5,24.6 C 5.4,24.5 5.4,24.3 5.5,24.2 L 6.8,23 c 0.1,-0.1 0.1,-0.1 0.2,-0.1 0.1,0 0.2,0 0.2,0.1 l 3.5,3.8 6,-7.8 c 0.1,-0.1 0.2,-0.1 0.2,-0.1 0.1,0 0.1,0 0.2,0.1 l 1.4,1.1 c 0.1,0.1 0.1,0.1 0.1,0.2 0,0.1 0,0.2 -0.1,0.2 l -7.8,10 z" - id="path1918" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -<rect - x="20.299999" - y="11.4" - width="13.3" - height="2.5999999" - id="rect1920" - style="opacity:0.6;fill:#ffffff" /> -<path - d="M 5.9,40 5.5,39.5 c -0.1,-0.1 -0.1,-0.3 0,-0.4 l 1.3,-1.2 c 0.1,-0.1 0.1,-0.1 0.2,-0.1 0.1,0 0.2,0 0.2,0.1 l 3.5,3.8 6,-7.8 c 0.1,-0.1 0.2,-0.1 0.2,-0.1 0.1,0 0.1,0 0.2,0.1 l 1.4,1.1 c 0.1,0.1 0.1,0.1 0.1,0.2 0,0.1 0,0.2 -0.1,0.2 l -7.8,10 z" - id="path1922" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -<rect - x="20.299999" - y="39.900002" - width="13.3" - height="2.5999999" - id="rect1924" - style="opacity:0.6;fill:#ffffff" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="50" width="40"><path d="M38.4 0H1.6A1.58 1.58 0 0 0 0 1.6v46.7c0 1 .7 1.7 1.6 1.7h36.8a1.58 1.58 0 0 0 1.6-1.6V1.6A1.58 1.58 0 0 0 38.4 0z" fill="#59b4d9"/><g fill="#fff"><path d="M1.6 0A1.58 1.58 0 0 0 0 1.6v46.7c0 1 .7 1.7 1.6 1.7H17L34.9 0z" opacity=".1"/><path d="M20.3 25.3h13.3v2.6H20.3z" opacity=".6"/><use xlink:href="#B"/><path d="M5.9 25.1l-.4-.5c-.1-.1-.1-.3 0-.4L6.8 23c.1-.1.1-.1.2-.1s.2 0 .2.1l3.5 3.8 6-7.8c.1-.1.2-.1.2-.1.1 0 .1 0 .2.1l1.4 1.1c.1.1.1.1.1.2s0 .2-.1.2l-7.8 10z"/><path d="M20.3 11.4h13.3V14H20.3z" opacity=".6"/><use xlink:href="#B" y="28.5"/><path d="M20.3 39.9h13.3v2.6H20.3z" opacity=".6"/></g><defs ><path id="B" d="M5.9 11.5l-.4-.5c-.1-.1-.1-.3 0-.4l1.3-1.2c.1-.1.1-.1.2-.1s.2 0 .2.1l3.5 3.8 6-7.8c.1-.1.2-.1.2-.1.1 0 .1 0 .2.1l1.4 1.1c.1.1.1.1.1.2s0 .2-.1.2l-7.8 10z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/AuditingServer.svg b/src/main/webapp/img/lib/mscae/AuditingServer.svg index a16209b903217b7ec9da8f640c0cc93f1ac9a551..6fb68fc674b196036a3ff1bff605195a4031595f 100644 --- a/src/main/webapp/img/lib/mscae/AuditingServer.svg +++ b/src/main/webapp/img/lib/mscae/AuditingServer.svg @@ -1,29 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - height="50px" width="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#777777" d="M29.4,47.5c0,1.4-1.1,2.5-2.5,2.5H2.5C1.1,50,0,48.9,0,47.5V2.5C0,1.1,1.1,0,2.5,0h24.3 - c1.4,0,2.5,1.1,2.5,2.5V47.5z"/> -<path fill="#1E1E1E" d="M4.3,27c0-1.8,1.4-3.2,3.2-3.2h14.6c1.8,0,3.2,1.4,3.2,3.2l0,0c0,1.8-1.4,3.2-3.2,3.2H7.5 - C5.7,30.2,4.3,28.8,4.3,27L4.3,27z"/> -<circle fill="#B8D432" cx="7.6" cy="27" r="2.1"/> -<path fill="#1E1E1E" d="M4.3,17.5c0-1.8,1.4-3.2,3.2-3.2h14.6c1.8,0,3.2,1.4,3.2,3.2l0,0c0,1.8-1.4,3.2-3.2,3.2H7.5 - C5.7,20.7,4.3,19.3,4.3,17.5L4.3,17.5z"/> -<circle fill="#B8D432" cx="7.6" cy="17.5" r="2.1"/> -<path fill="#1E1E1E" d="M4.3,8.1c0-1.8,1.4-3.2,3.2-3.2h14.6c1.8,0,3.2,1.4,3.2,3.2l0,0c0,1.8-1.4,3.2-3.2,3.2H7.5 - C5.7,11.3,4.3,9.8,4.3,8.1L4.3,8.1z"/> -<circle fill="#B8D432" cx="7.6" cy="8.1" r="2.1"/> -<path fill="#59B4D9" d="M48.8,13H21.2c-0.7,0-1.2,0.5-1.2,1.2v4v0.4v30.2c0,0.7,0.5,1.2,1.2,1.2h27.6c0.7,0,1.2-0.5,1.2-1.2V18.6 - v-0.4v-4C50,13.5,49.5,13,48.8,13z"/> -<path opacity="0.1" fill="#FFFFFF" d="M21.2,13c-0.7,0-1.2,0.5-1.2,1.2v4.4v12.6v17.6c0,0.7,0.5,1.2,1.2,1.2h11.5l13.5-37H21.2z"/> -<rect x="35.2" y="31.7" opacity="0.6" fill="#FFFFFF" width="10" height="2"/> -<path fill="#FFFFFF" d="M24.4,21.5l-0.3-0.4c-0.1-0.1-0.1-0.2,0-0.3l1-0.9c0,0,0.1-0.1,0.2-0.1c0.1,0,0.1,0,0.2,0.1l2.6,2.8l4.5-5.7 - c0-0.1,0.1-0.1,0.2-0.1c0.1,0,0.1,0,0.1,0l1,0.8c0,0,0.1,0.1,0.1,0.2c0,0.1,0,0.1,0,0.2l-5.8,7.4L24.4,21.5z"/> -<path fill="#FFFFFF" d="M24.4,31.6l-0.3-0.4c-0.1-0.1-0.1-0.2,0-0.3l1-0.9c0,0,0.1-0.1,0.2-0.1c0.1,0,0.1,0,0.2,0.1l2.6,2.8l4.5-5.7 - c0-0.1,0.1-0.1,0.2-0.1c0.1,0,0.1,0,0.1,0l1,0.8c0,0,0.1,0.1,0.1,0.2c0,0.1,0,0.1,0,0.2l-5.8,7.4L24.4,31.6z"/> -<rect x="35.2" y="21.5" opacity="0.6" fill="#FFFFFF" width="10" height="2"/> -<path fill="#FFFFFF" d="M24.4,42.6l-0.3-0.4c-0.1-0.1-0.1-0.2,0-0.3l1-0.9c0,0,0.1-0.1,0.2-0.1c0.1,0,0.1,0,0.2,0.1l2.6,2.8l4.5-5.7 - c0-0.1,0.1-0.1,0.2-0.1c0.1,0,0.1,0,0.1,0l1,0.8c0,0,0.1,0.1,0.1,0.2c0,0.1,0,0.1,0,0.2l-5.8,7.4L24.4,42.6z"/> -<rect x="35.2" y="42.5" opacity="0.6" fill="#FFFFFF" width="10" height="2"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="50" width="50"><path fill="#777" d="M29.4 47.5c0 1.4-1.1 2.5-2.5 2.5H2.5C1.1 50 0 48.9 0 47.5v-45C0 1.1 1.1 0 2.5 0h24.3c1.4 0 2.5 1.1 2.5 2.5v45z"/><path fill="#1e1e1e" d="M4.3 27c0-1.8 1.4-3.2 3.2-3.2h14.6c1.8 0 3.2 1.4 3.2 3.2s-1.4 3.2-3.2 3.2H7.5c-1.8 0-3.2-1.4-3.2-3.2z"/><circle fill="#b8d432" cx="7.6" cy="27" r="2.1"/><path fill="#1e1e1e" d="M4.3 17.5c0-1.8 1.4-3.2 3.2-3.2h14.6c1.8 0 3.2 1.4 3.2 3.2s-1.4 3.2-3.2 3.2H7.5c-1.8 0-3.2-1.4-3.2-3.2z"/><circle fill="#b8d432" cx="7.6" cy="17.5" r="2.1"/><path fill="#1e1e1e" d="M4.3 8.1c0-1.8 1.4-3.2 3.2-3.2h14.6c1.8 0 3.2 1.4 3.2 3.2s-1.4 3.2-3.2 3.2H7.5c-1.8 0-3.2-1.5-3.2-3.2z"/><circle fill="#b8d432" cx="7.6" cy="8.1" r="2.1"/><path fill="#59b4d9" d="M48.8 13H21.2c-.7 0-1.2.5-1.2 1.2v34.6c0 .7.5 1.2 1.2 1.2h27.6c.7 0 1.2-.5 1.2-1.2V14.2c0-.7-.5-1.2-1.2-1.2z"/><g fill="#fff"><path opacity=".1" d="M21.2 13c-.7 0-1.2.5-1.2 1.2v34.6c0 .7.5 1.2 1.2 1.2h11.5l13.5-37h-25z"/><path opacity=".6" d="M35.2 31.7h10v2h-10z"/><use xlink:href="#B"/><use xlink:href="#B" y="10.1"/><path opacity=".6" d="M35.2 21.5h10v2h-10z"/><use xlink:href="#B" y="21.1"/><path opacity=".6" d="M35.2 42.5h10v2h-10z"/></g><defs ><path id="B" d="M24.4 21.5l-.3-.4c-.1-.1-.1-.2 0-.3l1-.9s.1-.1.2-.1.1 0 .2.1l2.6 2.8 4.5-5.7c0-.1.1-.1.2-.1h.1l1 .8s.1.1.1.2v.2l-5.8 7.4-3.8-4z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/AutoBackup.svg b/src/main/webapp/img/lib/mscae/AutoBackup.svg index 088d9df378c6f9240dc0f7471894d6b820bb405f..f173c3cee62d852670f5cf493084b361f4f59273 100644 --- a/src/main/webapp/img/lib/mscae/AutoBackup.svg +++ b/src/main/webapp/img/lib/mscae/AutoBackup.svg @@ -1,20 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<g> - <path fill="#FCD116" d="M12.4,0H3.7L0,11.6c-0.1,0.3,0,0.5,0.3,0.5h4.1c0.1,0,0.2,0,0.3,0.1c0.1,0.1,0.1,0.2,0.1,0.4L0.6,22.8 - c-0.1,0.3,0,0.3,0.2,0.1L14.1,7.8c0.2-0.2,0.1-0.4-0.2-0.4l-4.4,0H8.7C8.4,7.4,8.3,7.2,8.4,7L12.4,0z"/> -</g> -<path fill="#0072C6" d="M45.1,20c0-0.3,0-0.7,0-1.1c0-5.8-4.8-10.5-10.6-10.5c-3.5,0-6.7,1.7-8.7,4.4c-1.3-0.8-2.7-1.2-4.3-1.2 - c-4.2,0-7.6,3.2-8,7.2c0.6-0.1,1.3-0.1,2-0.1c3.1,0,6.1,1,8.5,2.8c1.8-4.2,6.4-6.9,11.5-7v-3.6l6.3,5.4l-6.3,5.3v-3.5 - c-2.9,0.1-5.8,1.2-7.4,3.9l0.3,0c6,0,10.9,4.5,11.6,10.2c1.4,1.1,2.5,2.4,3.3,3.8c3.9-1,6.6-4.4,6.6-8.5C50,24,48.2,21.4,45.1,20z" - /> -<path fill="#59B4D9" d="M4.9,33.8c0-0.4-0.1-0.7-0.1-1.1c0-5.8,4.8-10.5,10.6-10.5c3.5,0,6.7,1.7,8.7,4.4c1.3-0.8,2.7-1.2,4.3-1.2 - c4.4,0,8.1,3.6,8.1,8l0,0.6c3,1.5,4.6,4,4.6,7.2c0,5-4,8.8-9.2,8.8H9.2C4,50,0,46.1,0,41.2C0,37.9,1.8,35.3,4.9,33.8z"/> -<path opacity="0.3" fill="#FF8C00" d="M13.9,7.4l-2.7,0L1.3,22.3L14.1,7.8C14.3,7.6,14.2,7.4,13.9,7.4z"/> -<g opacity="0.3"> - <path fill="#FF8C00" d="M12.4,0H9.8L6.2,7.4h2.4C8.4,7.4,8.3,7.2,8.4,7L12.4,0z"/> -</g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path fill="#fcd116" d="M12.4 0H3.7L0 11.6c-.1.3 0 .5.3.5h4.1c.1 0 .2 0 .3.1s.1.2.1.4L.6 22.8c-.1.3 0 .3.2.1L14.1 7.8c.2-.2.1-.4-.2-.4H8.7c-.3 0-.4-.2-.3-.4l4-7z"/><path fill="#0072c6" d="M45.1 20v-1.1c0-5.8-4.8-10.5-10.6-10.5-3.5 0-6.7 1.7-8.7 4.4-1.3-.8-2.7-1.2-4.3-1.2-4.2 0-7.6 3.2-8 7.2.6-.1 1.3-.1 2-.1 3.1 0 6.1 1 8.5 2.8 1.8-4.2 6.4-6.9 11.5-7v-3.6l6.3 5.4-6.3 5.3v-3.5c-2.9.1-5.8 1.2-7.4 3.9h.3c6 0 10.9 4.5 11.6 10.2a13.11 13.11 0 0 1 3.3 3.8 8.68 8.68 0 0 0 6.6-8.5c.1-3.5-1.7-6.1-4.8-7.5z"/><path fill="#59b4d9" d="M4.9 33.8c0-.4-.1-.7-.1-1.1 0-5.8 4.8-10.5 10.6-10.5 3.5 0 6.7 1.7 8.7 4.4 1.3-.8 2.7-1.2 4.3-1.2 4.4 0 8.1 3.6 8.1 8v.6c3 1.5 4.6 4 4.6 7.2 0 5-4 8.8-9.2 8.8H9.2C4 50 0 46.1 0 41.2c0-3.3 1.8-5.9 4.9-7.4z"/><path opacity=".3" d="M13.9 7.4h-2.7L1.3 22.3 14.1 7.8c.2-.2.1-.4-.2-.4zM12.4 0H9.8L6.2 7.4h2.4c-.2 0-.3-.2-.2-.4l4-7z" fill="#ff8c00"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Automation.svg b/src/main/webapp/img/lib/mscae/Automation.svg index e0342c7e11b5411a1f687ec83e7842fff45d66b0..8e8ced13e23ee9b8f0834412728fe1ea24a46aa1 100644 --- a/src/main/webapp/img/lib/mscae/Automation.svg +++ b/src/main/webapp/img/lib/mscae/Automation.svg @@ -1,67 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50.000999" - height="45.312" - viewBox="0 0 50.000999 45.312" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure Automation_COLOR.svg"><metadata - id="metadata17"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs15" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview13" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="16.059063" - inkscape:cx="25" - inkscape:cy="22" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 46.281,21.656 C 46.281,21.281 46.25,20.922 46.218,20.547 L 50,18.453 C 49.797,17.203 49.469,15.984 49.031,14.828 L 44.718,14.906 C 44.39,14.234 44.03,13.578 43.624,12.968 L 45.843,9.265 C 45.046,8.296 44.155,7.406 43.202,6.624 L 41.014,7.921 40.092,9.296 38.108,12.218 C 40.921,14.406 42.733,17.812 42.733,21.656 42.733,28.25 37.405,33.594 30.811,33.594 24.233,33.594 18.889,28.25 18.889,21.656 18.889,15.75 23.17,10.875 28.795,9.906 L 29.701,6.234 27.607,2.453 C 26.359,2.656 25.156,2.984 24,3.421 L 24.063,7.749 C 23.407,8.062 22.75,8.421 22.141,8.843 L 18.438,6.624 C 17.469,7.405 16.594,8.296 15.797,9.265 L 18.016,12.968 C 17.594,13.577 17.25,14.234 16.922,14.906 L 12.594,14.828 C 12.172,15.984 11.844,17.203 11.641,18.453 L 15.407,20.547 C 15.376,20.922 15.36,21.281 15.36,21.656 15.36,22.031 15.376,22.39 15.407,22.765 L 11.641,24.859 C 11.844,26.109 12.172,27.328 12.61,28.484 L 16.923,28.406 C 17.251,29.078 17.595,29.734 18.017,30.344 L 15.798,34.047 C 16.595,35.016 17.47,35.906 18.439,36.703 L 22.142,34.469 C 22.751,34.891 23.408,35.25 24.064,35.578 L 24,39.89 C 25.156,40.328 26.359,40.656 27.609,40.859 L 29.718,37.078 C 30.077,37.109 30.437,37.141 30.812,37.141 31.187,37.141 31.562,37.11 31.921,37.078 L 34.015,40.859 C 35.265,40.656 36.484,40.328 37.64,39.89 L 37.562,35.577 C 38.234,35.249 38.875,34.889 39.5,34.468 L 43.203,36.702 C 44.156,35.905 45.047,35.014 45.844,34.046 L 43.625,30.343 C 44.031,29.734 44.391,29.077 44.719,28.405 L 49.032,28.483 C 49.47,27.327 49.798,26.108 50.001,24.858 L 46.22,22.764 C 46.25,22.39 46.281,22.031 46.281,21.656 Z" - id="path3" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /><path - d="M 16,38.031 16,36.172 15.898,36.078 13.996,35.437 13.506,34.156 14.448,32.203 14.552,31.984 13.963,31.39 13.247,30.671 12.998,30.796 11.139,31.749 9.858,31.39 9.047,29.312 7.203,29.312 7.109,29.406 6.468,31.304 5.172,31.792 3.016,30.755 1.703,32.057 1.828,32.302 2.781,34.159 2.25,35.439 0,36.25 0,38.109 0.266,38.187 2.25,38.843 2.781,40.124 1.765,42.28 3.078,43.608 3.328,43.483 5.187,42.53 6.468,43.061 7.281,45.312 9.14,45.312 9.218,45.046 9.874,43.062 11.14,42.531 13.312,43.547 14.625,42.234 14.5,41.984 13.547,40.125 13.914,38.828 16,38.031 Z M 8.172,39.75 C 6.734,39.75 5.563,38.578 5.563,37.141 5.563,35.704 6.735,34.532 8.172,34.532 9.609,34.532 10.766,35.704 10.766,37.141 10.766,38.578 9.609,39.75 8.172,39.75 Z" - id="path5" - inkscape:connector-curvature="0" - style="fill:#7a7a7a" /><path - d="M 33.297,0 32.578,2.266 31.344,6.204 30.75,8.093 30.234,9.749 26.64,21.171 C 26.562,21.39 26.671,21.562 26.921,21.562 L 30.234,21.562 C 30.343,21.562 30.422,21.593 30.468,21.656 30.546,21.734 30.562,21.844 30.515,21.969 L 27.093,30.266 C 26.999,30.485 27.062,30.532 27.218,30.344 L 38.047,18.062 C 38.203,17.874 38.141,17.734 37.906,17.734 L 34.359,17.75 33.703,17.766 C 33.469,17.766 33.359,17.594 33.484,17.391 L 36.859,11.375 37.656,9.937 38.578,8.281 40.547,4.797 41.672,2.766 C 39.156,1.312 36.328,0.343 33.297,0 Z" - id="path7" - inkscape:connector-curvature="0" - style="fill:#fcd116" /><path - d="M 39.505,1.679 31.661,17.749 33.614,17.749 C 33.44,17.712 33.365,17.566 33.474,17.39 L 36.849,11.374 37.646,9.936 38.568,8.28 40.537,4.796 41.662,2.765 C 40.966,2.364 40.245,2.004 39.505,1.679 Z" - id="path9" - inkscape:connector-curvature="0" - style="opacity:0.3;fill:#ff8c00" /><path - d="M 37.92,17.734 35.731,17.744 27.638,29.884 38.061,18.062 C 38.217,17.875 38.155,17.734 37.92,17.734 Z" - id="path11" - inkscape:connector-curvature="0" - style="opacity:0.3;fill:#ff8c00" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50.001" height="45.312"><path d="M46.28 21.656c0-.375-.03-.734-.063-1.11L50 18.453a18.72 18.72 0 0 0-.969-3.625l-4.313.078c-.328-.672-.688-1.328-1.094-1.938l2.22-3.703c-.797-.97-1.688-1.86-2.64-2.64L41.014 7.92l-.922 1.375-1.984 2.922a11.92 11.92 0 0 1 4.625 9.438c0 6.594-5.328 11.938-11.922 11.938-6.578 0-11.922-5.344-11.922-11.938 0-5.906 4.28-10.78 9.906-11.75l.906-3.672-2.094-3.78c-1.248.203-2.45.53-3.607.968l.063 4.328a13.84 13.84 0 0 0-1.922 1.094l-3.703-2.22c-.97.78-1.844 1.672-2.64 2.64l2.22 3.703c-.422.61-.766 1.266-1.094 1.938l-4.328-.078a19.91 19.91 0 0 0-.953 3.625l3.766 2.094c-.03.375-.047.734-.047 1.11s.016.734.047 1.11L11.64 24.86a18.72 18.72 0 0 0 .969 3.625l4.313-.078c.328.672.672 1.328 1.094 1.938l-2.22 3.703a19.27 19.27 0 0 0 2.641 2.656l3.703-2.234c.61.422 1.266.78 1.922 1.11L24 39.9c1.156.438 2.36.766 3.61.97l2.11-3.78c.36.03.72.063 1.094.063s.75-.03 1.11-.063l2.094 3.78a18.72 18.72 0 0 0 3.625-.969l-.078-4.313a15.99 15.99 0 0 0 1.938-1.109l3.703 2.234a20.27 20.27 0 0 0 2.641-2.656l-2.22-3.703c.406-.61.766-1.266 1.094-1.938l4.313.078a18.72 18.72 0 0 0 .969-3.625l-3.78-2.094c.03-.374.06-.733.06-1.108z" fill="#a0a1a2"/><path d="M16 38.03v-1.86l-.102-.094-1.902-.64-.5-1.28.942-1.953.104-.22-.59-.594-.716-.72-.25.125-1.86.953-1.28-.36-.81-2.078H7.203l-.094.094-.64 1.898-1.296.488-2.156-1.037-1.313 1.302.125.245.953 1.857-.53 1.28-2.25.81v1.86l.266.078 1.984.656.53 1.28-1.016 2.156 1.313 1.328.25-.125 1.86-.953 1.28.53.813 2.25h1.86l.078-.266.656-1.984 1.266-.53 2.172 1.016 1.313-1.313-.125-.25-.953-1.86.367-1.297L16 38.03zm-7.828 1.72c-1.438 0-2.61-1.172-2.61-2.61s1.172-2.61 2.61-2.61 2.594 1.172 2.594 2.61-1.157 2.61-2.594 2.61z" fill="#7a7a7a"/><path d="M33.297 0l-.72 2.266-1.234 3.938-.594 1.89-.516 1.656L26.64 21.17c-.078.22.03.39.28.39h3.313c.11 0 .188.03.234.094.078.078.094.188.047.313l-3.422 8.297c-.094.22-.03.266.125.078l10.83-12.282c.156-.188.094-.328-.14-.328l-3.547.016-.656.016c-.234 0-.344-.172-.22-.375l3.375-6.016.797-1.438.922-1.656 1.97-3.484 1.125-2.03A21.54 21.54 0 0 0 33.297 0z" fill="#fcd116"/><path d="M39.505 1.68L31.66 17.75h1.953c-.174-.037-.25-.183-.14-.36l3.375-6.016.797-1.438.922-1.656 1.97-3.484 1.125-2.03a22.19 22.19 0 0 0-2.157-1.086zM37.92 17.734l-2.2.01-8.093 12.14L38.06 18.062c.156-.187.094-.328-.14-.328z" opacity=".3" fill="#ff8c00"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Avatar.svg b/src/main/webapp/img/lib/mscae/Avatar.svg index bcf0d572801216603d529752f3887b1daeca5517..2ce16b1c08c99c6373de02b4ca375075e6dd12d1 100644 --- a/src/main/webapp/img/lib/mscae/Avatar.svg +++ b/src/main/webapp/img/lib/mscae/Avatar.svg @@ -1,11 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<rect fill="#A0A1A2" width="50" height="50"/> -<path fill="#E5E5E5" d="M33,18.2c0,4.5-3.7,8.2-8.2,8.2c-4.5,0-8.2-3.7-8.2-8.2c0-4.5,3.7-8.2,8.2-8.2C29.3,10,33,13.7,33,18.2"/> -<polygon fill="#E5E5E5" points="30.8,29.2 24.8,37.7 18.8,29.2 10.1,29.2 10.1,50 39.4,50 39.4,29.2 "/> -<path fill="#FFFFFF" d="M16.5,18.2c0,4.5,3.6,8.1,8,8.2l2.1-16.2C26,10.1,25.4,10,24.8,10C20.2,10,16.5,13.7,16.5,18.2"/> -<polygon fill="#FFFFFF" points="18.8,29.2 10.1,29.2 10.1,50 21.6,50 23.4,35.8 "/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path fill="#a0a1a2" d="M0 0h50v50H0z"/><path d="M33 18.2a8.24 8.24 0 0 1-8.2 8.2 8.24 8.24 0 0 1-8.2-8.2 8.24 8.24 0 0 1 8.2-8.2 8.24 8.24 0 0 1 8.2 8.2m-2.2 11l-6 8.5-6-8.5h-8.7V50h29.3V29.2z" fill="#e5e5e5"/><path d="M16.5 18.2a8.2 8.2 0 0 0 8 8.2l2.1-16.2c-.6-.1-1.2-.2-1.8-.2-4.6 0-8.3 3.7-8.3 8.2m2.3 11h-8.7V50h11.5l1.8-14.2z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/AvatarDefault.svg b/src/main/webapp/img/lib/mscae/AvatarDefault.svg index c6628bca461316904353760b239f9092b8c1aca6..ba89c610ff4431ea6a7c488d4c9518ee11fea5d3 100644 --- a/src/main/webapp/img/lib/mscae/AvatarDefault.svg +++ b/src/main/webapp/img/lib/mscae/AvatarDefault.svg @@ -1,10 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve"> -<rect fill="#A0A1A2" width="30" height="30"/> -<path fill="#FFFFFF" d="M20.04,10.929c0,2.722-2.256,4.929-5.04,4.929c-2.783,0-5.039-2.207-5.039-4.929C9.961,8.207,12.217,6,15,6 - C17.783,6,20.04,8.207,20.04,10.929"/> -<polygon fill="#FFFFFF" points="18.685,17.548 15,22.598 11.315,17.548 6,17.548 6,30 24,30 24,17.548 "/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30"><path fill="#a0a1a2" d="M0 0h30v30H0z"/><path d="M20.04 10.93c0 2.722-2.256 4.93-5.04 4.93s-5.04-2.207-5.04-4.93S12.217 6 15 6s5.04 2.207 5.04 4.93m-1.355 6.618L15 22.598l-3.685-5.05H6V30h18V17.548z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/AvatarUnknown.svg b/src/main/webapp/img/lib/mscae/AvatarUnknown.svg index 8997f2db39f305145e2ef964c32c640af4bed0ce..c7d4781ced2d3ff4e5b0ced02238f2e609cff52f 100644 --- a/src/main/webapp/img/lib/mscae/AvatarUnknown.svg +++ b/src/main/webapp/img/lib/mscae/AvatarUnknown.svg @@ -1,20 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve"> -<rect fill="#A0A1A2" width="30" height="30"/> -<g> - <path fill="#FFFFFF" d="M9.143,11.378c0-0.804,0.258-1.619,0.774-2.444s1.27-1.509,2.26-2.05s2.146-0.813,3.466-0.813 - c1.228,0,2.311,0.227,3.25,0.679s1.665,1.068,2.178,1.847c0.512,0.779,0.768,1.625,0.768,2.539c0,0.719-0.146,1.35-0.438,1.892 - c-0.293,0.542-0.64,1.009-1.041,1.403c-0.402,0.394-1.124,1.056-2.165,1.987c-0.288,0.262-0.519,0.493-0.692,0.691 - c-0.173,0.199-0.302,0.381-0.387,0.547c-0.085,0.164-0.15,0.33-0.197,0.494c-0.046,0.166-0.116,0.455-0.209,0.87 - c-0.161,0.88-0.664,1.32-1.511,1.32c-0.44,0-0.811-0.144-1.11-0.432c-0.301-0.288-0.451-0.716-0.451-1.282 - c0-0.711,0.11-1.326,0.33-1.848c0.22-0.52,0.512-0.977,0.876-1.371s0.854-0.861,1.473-1.403c0.542-0.474,0.933-0.832,1.175-1.073 - c0.24-0.241,0.443-0.51,0.609-0.806c0.164-0.296,0.247-0.618,0.247-0.965c0-0.677-0.252-1.249-0.755-1.714 - c-0.504-0.465-1.153-0.698-1.949-0.698c-0.931,0-1.616,0.235-2.057,0.705s-0.813,1.162-1.117,2.076 - c-0.288,0.957-0.834,1.435-1.638,1.435c-0.474,0-0.874-0.167-1.2-0.501C9.306,12.129,9.143,11.767,9.143,11.378z M15.338,25.292 - c-0.517,0-0.967-0.167-1.352-0.501c-0.386-0.335-0.578-0.803-0.578-1.403c0-0.533,0.187-0.981,0.559-1.346s0.829-0.546,1.371-0.546 - c0.533,0,0.981,0.182,1.346,0.546s0.546,0.813,0.546,1.346c0,0.593-0.19,1.058-0.571,1.396S15.837,25.292,15.338,25.292z"/> -</g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30"><path fill="#a0a1a2" d="M0 0h30v30H0z"/><path fill="#fff" d="M9.143 11.378c0-.804.258-1.62.774-2.444s1.27-1.51 2.26-2.05 2.146-.813 3.466-.813c1.228 0 2.31.227 3.25.68s1.665 1.068 2.178 1.847a4.53 4.53 0 0 1 .768 2.539c0 .72-.146 1.35-.438 1.892s-.64 1.01-1.04 1.403l-2.165 1.987-.692.69c-.173.2-.302.38-.387.547s-.15.33-.197.494l-.21.87c-.16.88-.664 1.32-1.51 1.32-.44 0-.81-.144-1.1-.432s-.45-.716-.45-1.282c0-.71.1-1.326.33-1.848a4.7 4.7 0 0 1 .876-1.371c.364-.394.854-.86 1.473-1.403l1.175-1.073c.24-.24.443-.5.61-.806a1.96 1.96 0 0 0 .247-.965c0-.677-.252-1.25-.755-1.714s-1.153-.698-1.95-.698c-.93 0-1.616.235-2.057.705s-.813 1.162-1.117 2.076c-.288.957-.834 1.435-1.638 1.435a1.61 1.61 0 0 1-1.2-.501c-.326-.334-.49-.696-.49-1.085zm6.195 13.914c-.517 0-.967-.167-1.352-.5s-.578-.803-.578-1.403a1.81 1.81 0 0 1 .559-1.346 1.88 1.88 0 0 1 1.371-.546 1.83 1.83 0 0 1 1.346.546c.365.364.546.813.546 1.346 0 .593-.2 1.058-.57 1.396s-.822.508-1.32.508z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Azure API for FHIR.svg b/src/main/webapp/img/lib/mscae/Azure API for FHIR.svg new file mode 100644 index 0000000000000000000000000000000000000000..6dca931c5e014ec20d500896deb642b5eac11cd5 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Azure API for FHIR.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="48.1" height="48"><path d="M35.5 0C30.337 0 25.906 3.13 24 7.598 22.094 3.13 17.663 0 12.5 0 4 0 0 8.096 0 15c0 21 24 33 24 33s24-12 24-33c0-6.904-4-15-12.5-15z" fill="#ff8c00"/><path d="M24 27C13.287 27 4.1 23.012.11 17.317 1.774 36.878 24 48 24 48s22.226-11.122 23.89-30.683C43.9 23.012 34.713 27 24 27z" opacity=".25" fill="#ba141a"/><g fill="#fff"><circle cx="27" cy="36" r="3.9"/><path d="M3.645 4.1S2.24 9.143 8.08 14.183l1.846-2.364c-.032-.025-3.18-2.564-3.413-6.265C6.323 2.538 7.83.9 7.83.9c-1.672.758-3.064 1.8-4.185 3.19zm43.15 4.32c.892 3.894.563 7.733-1.007 11.266-2.82 6.35-9.488 11.5-19.28 14.896l.982 2.834c8.436-2.924 14.857-7.143 18.686-12.336C47.368 22 48.1 18.638 48.1 15c0-2.172-.497-4.46-1.304-6.58z"/><path d="M8.176 12.176c-5.62 5.62 1.344 15.486 7 21.143l1.06 1.06a1.5 1.5 0 0 0 2.121 0l2.12-2.12a1.5 1.5 0 0 0-.662-2.53 1.5 1.5 0 0 0-1.459.409l-1.13 1.13c-7.778-7.778-10.28-13.903-7.07-17.112s9.334-.707 17.112 7.07l-1.13 1.13a1.5 1.5 0 0 0 .662 2.53 1.5 1.5 0 0 0 1.459-.409l2.12-2.12a1.5 1.5 0 0 0 0-2.121l-1.06-1.06c-5.656-5.657-15.52-12.622-21.142-7z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/AzureFXTEdgeFiler.svg b/src/main/webapp/img/lib/mscae/AzureFXTEdgeFiler.svg new file mode 100644 index 0000000000000000000000000000000000000000..7b6d0d8880865cbba68e28ad12afbb652fa6274b --- /dev/null +++ b/src/main/webapp/img/lib/mscae/AzureFXTEdgeFiler.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="48" height="48"><path d="M2 35a2 2 0 0 1-2-2V0h14.05L19 5h22v3h2v24.9c.001.554-.22 1.085-.6 1.477s-.922.612-1.476.613z" fill="#fee087"/><path d="M4 33a2 2 0 1 1-4 0V0h14.05L19 5h22v3H4z" opacity=".2" fill="#1e1e1e"/><path d="M9 15h34v20H8V16a1 1 0 0 1 1-1z" opacity=".4" fill="#fff"/><use xlink:href="#B" fill="#ff8c00"/><g fill="#0072c6"><rect x="44" y="18" width="2" height="2" rx=".5"/><rect x="44" y="22" width="2" height="2" rx=".5"/></g><use xlink:href="#B" y="11" fill="#ff8c00"/><g fill="#0072c6"><rect x="44" y="29" width="2" height="2" rx=".5"/><rect x="44" y="33" width="2" height="2" rx=".5"/></g><use xlink:href="#B" y="22" fill="#ff8c00"/><g fill="#0072c6"><rect x="44" y="40" width="2" height="2" rx=".5"/><rect x="44" y="44" width="2" height="2" rx=".5"/></g><defs ><path id="B" d="M47 16H10a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h37a1 1 0 0 0 1-1v-8a1 1 0 0 0-1-1z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Azure_AD_B2C.svg b/src/main/webapp/img/lib/mscae/Azure_AD_B2C.svg new file mode 100644 index 0000000000000000000000000000000000000000..264290626fe951f42b5e2dfd020d72c195975592 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Azure_AD_B2C.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="95.552" height="88.779"><circle cx="39.348" cy="39.348" r="39.348" fill="#804998"/><path d="M50.61 26.374c4.67 2.38 7.746 7.262 7.746 12.52-.843 0-2.173.288-2.945 0-.83-.31-.47-.16-.638-1.41-.143-1.028-.442-2.028-.886-2.966-1.813-3.886-5.916-6.364-10.207-6.076-4.137.278-7.807 3.134-9.185 7.03-.75 2.12-.384 4.372-1.05 6.508a10.59 10.59 0 0 1-3.781 5.339c4.67 2.38 7.746 7.262 7.746 12.52-.835 0-2.19.283-2.946 0-.715-.267-.46-.05-.603-1.06-.148-1.042-.354-2.028-.774-3.003-1.64-3.813-5.478-6.41-9.642-6.41-4.05 0-7.784 2.448-9.496 6.1-.445.938-.743 1.938-.886 2.966-.114.847.125 1.12-.495 1.41-.68.318-2.305 0-3.09 0 0-5.257 3.075-10.142 7.746-12.52-5.083-3.76-5.638-11.355-1.173-15.82s12.058-3.908 15.82 1.174a14.39 14.39 0 0 1 6.3-6.302c-7.93-5.865-3.643-18.9 6.22-18.9s14.15 13.034 6.22 18.902c1.182.602.6-.31 0 0zM23.443 45.877c8.993 0 8.99-13.954 0-13.965s-8.992 13.965 0 13.965zm13.965-27.93c0 8.993 13.976 8.99 13.965 0s-13.965-8.993-13.965 0zm5.063 46.185l24.807-24.81L91.925 63.97l-24.81 24.808z" fill="#fff"/><path d="M69.25 52.704c-.355.178-.533.178-1.066.355v18.304c.533.178 1.244.533 1.777 1.066l8.174-6.575c-.177-.355-.177-1.066-.177-1.6s.177-1.422.355-1.955zM55.745 62.3c.355.533.533 1.422.533 2.132 0 .533-.178 1.244-.355 1.777l8.175 6.575c.355-.355 1.066-.7 1.6-1.066V53.06c-.355-.178-.533-.178-.7-.355zm11.373-30.388L38.685 65.677 67.12 88.78l28.433-23.102zm15.46 37.14c-1.066 0-1.955-.355-2.843-1.066L71.56 74.74c.178.355.178.7.178 1.244 0 2.488-1.955 4.62-4.62 4.62s-4.62-1.955-4.62-4.62c0-.355 0-.7.178-1.066l-8.708-6.753c-.7.533-1.6.7-2.488.7-2.488 0-4.62-1.955-4.62-4.62 0-2.488 1.955-4.62 4.62-4.62.7 0 1.422.178 2.133.533l9.063-9.952c-.178-.533-.355-1.244-.355-1.955 0-2.488 1.955-4.62 4.62-4.62s4.62 1.955 4.62 4.62c0 .7-.178 1.6-.533 2.132l8.885 9.952a5.48 5.48 0 0 1 2.31-.533c2.488 0 4.62 1.955 4.62 4.62.177 2.665-1.956 4.62-4.266 4.62z" fill="#59b4d9"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Azure_AD_Domain_Services.svg b/src/main/webapp/img/lib/mscae/Azure_AD_Domain_Services.svg new file mode 100644 index 0000000000000000000000000000000000000000..354ecc5ad14631a4253a09d0a4fe967a9a8fddad --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Azure_AD_Domain_Services.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="48.292" height="48.673"><path d="M22.576.76L.43 28.813a2 2 0 0 0 .387 2.852l22.146 16.24a2 2 0 0 0 2.365 0l22.146-16.24a2 2 0 0 0 .387-2.852L25.716.76a2 2 0 0 0-3.14 0z" fill="#0072c6"/><path d="M26.344 47.16l20.44-15c-1-1.27-2.47-2.14-4.168-2.275l-5.664-7.208a5.85 5.85 0 0 0 .094-1.015 5.91 5.91 0 0 0-5.9-5.9 5.91 5.91 0 0 0-5.9 5.9 5.86 5.86 0 0 0 .094 1.015l-5.664 7.208c-3.035.24-5.43 2.782-5.43 5.877a5.91 5.91 0 0 0 5.9 5.9c.395 0 .78-.04 1.154-.115l3.99 2.9a5.85 5.85 0 0 0 1.055 2.702z" opacity=".4" fill="#fff"/><g fill="#3999c6"><path d="M45.74 35.49L32.27 18.346h-2.246L16.552 35.49l.212 1.532 13.144 9.56h2.477l13.144-9.56z"/><circle cx="20.146" cy="35.772" r="4.9"/><circle cx="42.146" cy="35.772" r="4.9"/><circle cx="31.146" cy="43.772" r="4.9"/><path d="M31.146 26.573c-2.702 0-4.9-2.198-4.9-4.9s2.198-4.9 4.9-4.9 4.9 2.198 4.9 4.9-2.198 4.9-4.9 4.9z"/></g><g fill="#fff"><path d="M40.718 35.575l-9.572 6.962-9.572-6.962 9.572-3.184z" opacity=".25"/><circle cx="20.146" cy="35.772" r="2.9"/><circle cx="42.146" cy="35.772" r="2.9"/><circle cx="31.146" cy="43.772" r="2.9"/><path d="M31.146 24.672c-1.6 0-2.9-1.3-2.9-2.9s1.3-2.9 2.9-2.9 2.9 1.3 2.9 2.9-1.3 2.9-2.9 2.9z"/><path d="M19.358 35.15l11.005-13.996 1.572 1.236L20.93 36.387z" opacity=".6"/><path d="M30.36 22.39l1.573-1.236 11 14-1.573 1.236z" opacity=".6"/><path d="M32.146 41.8V21.773h-2V41.8l-9.412-6.846-1.176 1.618 11 8h1.176l11-8-1.176-1.618z"/></g><g fill="#7fba00"><circle cx="20.146" cy="35.772" r="1.9"/><circle cx="42.146" cy="35.772" r="1.9"/><circle cx="31.146" cy="43.772" r="1.9"/><circle cx="31.146" cy="21.772" r="1.9"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Azure_AD_Identity_Protection.svg b/src/main/webapp/img/lib/mscae/Azure_AD_Identity_Protection.svg new file mode 100644 index 0000000000000000000000000000000000000000..a9081a5d5cd7cf1dc1bb39177b821eae64615dd4 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Azure_AD_Identity_Protection.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" viewBox="-568.4 -96 40 40" width="40" height="40"><path d="M-568.4-96h40v40h-40z" fill="#ffb900"/><path d="M-547.2-80.3c-.2.1-.3.1-.6.2v10.3c.3.1.7.3 1 .6l4.6-3.7c-.1-.2-.1-.6-.1-.9s.1-.8.2-1.1zm-7.6 5.4c.2.3.3.8.3 1.2 0 .3-.1.7-.2 1l4.6 3.7c.2-.2.6-.4.9-.6v-10.5c-.2-.1-.3-.1-.4-.2zm6.4-17.1l-16 19 16 13 16-13zm8.7 20.9c-.6 0-1.1-.2-1.6-.6l-4.6 3.8c.1.2.1.4.1.7 0 1.4-1.1 2.6-2.6 2.6s-2.6-1.1-2.6-2.6c0-.2 0-.4.1-.6l-4.9-3.8c-.4.3-.9.4-1.4.4-1.4 0-2.6-1.1-2.6-2.6 0-1.4 1.1-2.6 2.6-2.6.4 0 .8.1 1.2.3l5.1-5.6c-.1-.3-.2-.7-.2-1.1 0-1.4 1.1-2.6 2.6-2.6s2.6 1.1 2.6 2.6c0 .4-.1.9-.3 1.2l5 5.6a3.08 3.08 0 0 1 1.3-.3c1.4 0 2.6 1.1 2.6 2.6.1 1.5-1.1 2.6-2.4 2.6z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Azure_AD_Privileged_Identity_Management.svg b/src/main/webapp/img/lib/mscae/Azure_AD_Privileged_Identity_Management.svg new file mode 100644 index 0000000000000000000000000000000000000000..715567484d37e612abbf308217c14430141bbd02 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Azure_AD_Privileged_Identity_Management.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48"><path d="M48 24c0 13.254-10.746 24-24 24S0 37.254 0 24 10.744 0 24 0s24 10.746 24 24" fill="#804998"/><g fill="#fff"><path d="M12.5 43.918C1.498 37.567-2.27 23.5 4.08 12.5S24.498-2.27 35.5 4.08" opacity=".15"/><path d="M37.06 28.06l-2.12-2.12-9.256 9.256c-.06-.027-.122-.048-.184-.072V21h-3v14.123l-.184.072-6.5-6.5c.23-.517.363-1.085.363-1.687-.005-2.3-1.87-4.163-4.17-4.166s-4.167 1.873-4.166 4.17 1.87 4.166 4.167 4.166h.003a4.13 4.13 0 0 0 1.682-.362l6.5 6.5c-.238.53-.362 1.105-.363 1.687.004 2.3 1.867 4.163 4.167 4.166h.003c2.3-.004 4.164-1.87 4.166-4.17 0-.6-.134-1.166-.363-1.682zM12 26.832c.046 0 .088.02.12.05l-.237.237c-.03-.032-.05-.074-.05-.12-.001-.08.09-.167.167-.167zm12 12.336c-.044 0-.087-.018-.118-.05L24 39l.12.12c-.032.03-.074.05-.12.05z"/></g><path d="M26.168 39a2.17 2.17 0 0 1-2.167 2.169 2.17 2.17 0 0 1-2.169-2.167 2.17 2.17 0 0 1 2.167-2.169H24a2.17 2.17 0 0 1 2.168 2.167" fill="#7fba00"/><path d="M36 31.168c-2.296 0-4.165-1.868-4.167-4.166s1.867-4.168 4.166-4.17 4.165 1.866 4.17 4.166c-.001 2.3-1.865 4.167-4.166 4.17zM36 26.832a.19.19 0 0 0-.168.167c0 .068.04.13.103.156s.135.012.183-.036.063-.12.037-.183-.087-.104-.155-.104z" fill="#fff"/><path d="M38.168 27a2.17 2.17 0 0 1-2.167 2.169 2.17 2.17 0 0 1-2.169-2.167 2.17 2.17 0 0 1 2.167-2.169 2.17 2.17 0 0 1 2.169 2.167m-24 0a2.17 2.17 0 0 1-2.167 2.169 2.17 2.17 0 0 1-2.169-2.167 2.17 2.17 0 0 1 2.167-2.169 2.17 2.17 0 0 1 2.169 2.167" fill="#7fba00"/><path d="M28.973 13.9a4.9 4.9 0 1 1-9.8 0 4.9 4.9 0 1 1 9.8 0" fill="#804998"/><g fill="#fff"><path d="M24.073 6a7.9 7.9 0 1 0 0 15.8 7.9 7.9 0 1 0 0-15.8zm0 12.8a4.9 4.9 0 0 1-4.9-4.9 4.9 4.9 0 1 1 9.8 0 4.9 4.9 0 0 1-4.9 4.9z"/><path d="M15.02 26.1l6.762-6.762a5.93 5.93 0 0 1-2.388-1.855L12.9 23.98a3.16 3.16 0 0 1 2.121 2.121zm17.997 0l-6.762-6.762a5.93 5.93 0 0 0 2.388-1.855l6.496 6.496a3.16 3.16 0 0 0-2.122 2.121z" opacity=".5"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Azure_API_for_FHIR.svg b/src/main/webapp/img/lib/mscae/Azure_API_for_FHIR.svg new file mode 100644 index 0000000000000000000000000000000000000000..6dca931c5e014ec20d500896deb642b5eac11cd5 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Azure_API_for_FHIR.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="48.1" height="48"><path d="M35.5 0C30.337 0 25.906 3.13 24 7.598 22.094 3.13 17.663 0 12.5 0 4 0 0 8.096 0 15c0 21 24 33 24 33s24-12 24-33c0-6.904-4-15-12.5-15z" fill="#ff8c00"/><path d="M24 27C13.287 27 4.1 23.012.11 17.317 1.774 36.878 24 48 24 48s22.226-11.122 23.89-30.683C43.9 23.012 34.713 27 24 27z" opacity=".25" fill="#ba141a"/><g fill="#fff"><circle cx="27" cy="36" r="3.9"/><path d="M3.645 4.1S2.24 9.143 8.08 14.183l1.846-2.364c-.032-.025-3.18-2.564-3.413-6.265C6.323 2.538 7.83.9 7.83.9c-1.672.758-3.064 1.8-4.185 3.19zm43.15 4.32c.892 3.894.563 7.733-1.007 11.266-2.82 6.35-9.488 11.5-19.28 14.896l.982 2.834c8.436-2.924 14.857-7.143 18.686-12.336C47.368 22 48.1 18.638 48.1 15c0-2.172-.497-4.46-1.304-6.58z"/><path d="M8.176 12.176c-5.62 5.62 1.344 15.486 7 21.143l1.06 1.06a1.5 1.5 0 0 0 2.121 0l2.12-2.12a1.5 1.5 0 0 0-.662-2.53 1.5 1.5 0 0 0-1.459.409l-1.13 1.13c-7.778-7.778-10.28-13.903-7.07-17.112s9.334-.707 17.112 7.07l-1.13 1.13a1.5 1.5 0 0 0 .662 2.53 1.5 1.5 0 0 0 1.459-.409l2.12-2.12a1.5 1.5 0 0 0 0-2.121l-1.06-1.06c-5.656-5.657-15.52-12.622-21.142-7z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Azure_Artifacts.svg b/src/main/webapp/img/lib/mscae/Azure_Artifacts.svg new file mode 100644 index 0000000000000000000000000000000000000000..2ab5cf1fcd89525e4119ac449e71c5eb95a40a64 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Azure_Artifacts.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="48.001" height="48" fill="none"><path d="M18.156 48H2.093C.943 48 0 47.057 0 45.896v-19.8C0 24.933.943 24 2.093 24h16.063z" fill="#b41055"/><path d="M45.947 48H39.14V24h6.806a2.06 2.06 0 0 1 2.054 2.055v19.89A2.06 2.06 0 0 1 45.947 48z" fill="#e86299"/><path d="M18.304 48h21.768V24h-24v21.777c0 1.22.992 2.223 2.222 2.223z" fill="#f173a7"/><path d="M37.9 0H10.348a2.15 2.15 0 0 0-2.153 2.154V24h31.848V2.154A2.15 2.15 0 0 0 37.89 0z" fill="#c12664"/><path d="M32.056 0H10.348a2.15 2.15 0 0 0-2.153 2.154V24h23.86z" fill="#cf3071"/><path d="M22.214 7.94h-4.167a1.99 1.99 0 0 1-1.984-1.985 1.99 1.99 0 0 1 1.984-1.985h4.167a1.99 1.99 0 0 1 1.984 1.985c0 1.092-.883 1.985-1.984 1.985z" fill="#b5205c"/><path d="M32.005 37.984H20.13v2.035h11.876zm-5.12 4.04H20.13v2.035h6.756z" fill="#fe90be"/><use xlink:href="#B" fill="#cb2e6f"/><use xlink:href="#B" x="-16.105" fill="#900740"/><defs ><path id="B" d="M30.073 32.06h-3.96c-1.14 0-2.064-.923-2.064-2.065s.923-2.065 2.064-2.065h3.96c1.14 0 2.064.923 2.064 2.065s-.923 2.065-2.064 2.065z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Azure_Boards.svg b/src/main/webapp/img/lib/mscae/Azure_Boards.svg new file mode 100644 index 0000000000000000000000000000000000000000..27853e092f3b397c3854ad743c546da76661f45e --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Azure_Boards.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="47.689" height="47.823" fill="none"><path d="M33.804 20.014c3.556 0 6.792 1.337 9.252 3.534V1.97c0-1.09-.88-1.97-1.97-1.97H1.97C.88 0 0 .88 0 1.97v32.074c0 1.09.88 1.97 1.97 1.97h18.115c-.102-.682-.157-1.385-.157-2.1-.007-7.674 6.213-13.902 13.877-13.902z" fill="#00947d"/><path d="M13.12 3.613H3.543v6.07h9.578z" fill="#1fc1a7"/><path d="M26.29 3.613h-9.58v6.07h9.58z" fill="#61ddc9"/><path d="M13.12 13.232H3.543v6.07h9.578z" fill="#9bfdec"/><path d="M13.12 22.852H3.543v5.982h9.578z" fill="#00b99d"/><path d="M26.29 13.232h-9.58v6.07h9.58z" fill="#04bca1"/><path d="M39.485 3.613h-9.578v6.07h9.578z" fill="#1dc0a7"/><path d="M43.053 34.044v-10.49a13.82 13.82 0 0 0-9.251-3.533c-7.664 0-13.884 6.22-13.884 13.902a14.25 14.25 0 0 0 .157 2.101h21c1.1-.007 1.97-.887 1.97-1.978z" fill="#00ba9d"/><path d="M43.057 23.553V34.05a1.97 1.97 0 0 1-1.969 1.971h-21c1.008 6.678 6.772 11.8 13.727 11.8 7.67-.007 13.884-6.228 13.884-13.91a13.87 13.87 0 0 0-4.632-10.362z" fill="#27cfb2"/><path d="M40.937 27.074l-8.7 8.704-4.47-4.475-2.67 2.68 7.3 7.32 2.67-2.68 8.7-8.704z" fill="#c5fdf4"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Azure_Cache_for_Redis.svg b/src/main/webapp/img/lib/mscae/Azure_Cache_for_Redis.svg new file mode 100644 index 0000000000000000000000000000000000000000..8f1890f9674b06db7a6a9904d7f0c0799f5ad185 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Azure_Cache_for_Redis.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="49.9"><defs><clipPath ><use xlink:href="#B"/></clipPath><path id="B" d="M1394.3 2.8h336v500h-336z"/></defs><path d="M12 4h12v25.5c0 2.4-5.3 4.4-11.8 4.4H12c-6.6 0-12-2-12-4.4V4z" fill="#804998"/><g fill="#fff"><path d="M12.3 33.9c-6.7 0-12.3-2-12.3-4.4V3.6l12.3.3z" opacity=".2" enable-background="new"/><path d="M24 4.4c0 2.4-5.4 4.7-12 4.7S0 6.8 0 4.4 5.4 0 12 0s12 2 12 4.4"/></g><path d="M21.6 4.3c0 1.5-4.3 2.7-9.5 2.7S2.6 5.8 2.6 4.3s4.3-2.7 9.5-2.7 9.5 1.2 9.5 2.7" fill="#b8d432"/><path d="M4.4 5.9C6.1 6.6 8.9 7 12 7s5.9-.4 7.6-1.1c-1.7-.7-4.5-1.1-7.6-1.1s-5.8.5-7.6 1.1z" fill="#7fba00"/><path d="M38 4h12v25.5c0 2.4-5.3 4.4-11.8 4.4H38c-6.6 0-12-2-12-4.4V4z" fill="#804998"/><g fill="#fff"><path d="M38.3 33.9c-6.7 0-12.3-2-12.3-4.4V3.6l12.3.3z" opacity=".2" enable-background="new"/><path d="M49.9 4.4c0 2.4-5.4 4.7-12 4.7s-12-2.3-12-4.7S31.3 0 37.9 0s12 2 12 4.4"/></g><path d="M47.5 4.3C47.5 5.8 43.2 7 38 7s-9.5-1.2-9.5-2.7 4.3-2.7 9.5-2.7 9.5 1.2 9.5 2.7" fill="#b8d432"/><path d="M30.3 5.9C32 6.6 34.8 7 37.9 7s5.9-.4 7.6-1.1c-1.7-.7-4.5-1.1-7.6-1.1s-5.8.5-7.6 1.1z" fill="#7fba00"/><path d="M38 33.9V22.3c0-1.4-1.2-3.3-2-3.3H14c-.8 0-2 1.9-2 3.3v11.6z" opacity=".4" fill="#fff"/><path d="M25 20h12v25.5c0 2.4-5.3 4.4-11.8 4.4H25c-6.6 0-12-2-12-4.4V20z" fill="#804998"/><g fill="#fff"><path d="M25.3 49.9c-6.7 0-12.3-2-12.3-4.4V19.6l12.3.3z" opacity=".2" enable-background="new"/><path d="M37 20.3c0 2.4-5.4 4.7-12 4.7s-12-2.3-12-4.7 5.4-4.4 12-4.4 12 2 12 4.4"/></g><path d="M34.6 20.2c0 1.5-4.3 2.7-9.6 2.7s-9.6-1.2-9.6-2.7 4.3-2.7 9.6-2.7 9.6 1.2 9.6 2.7" fill="#b8d432"/><path d="M17.3 21.8c1.7.7 4.5 1.1 7.7 1.1 3.1 0 5.9-.4 7.7-1.1-1.7-.7-4.5-1.1-7.7-1.1-3.1 0-5.9.5-7.7 1.1z" fill="#7fba00"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Azure_Data_Explorer_Clusters.svg b/src/main/webapp/img/lib/mscae/Azure_Data_Explorer_Clusters.svg new file mode 100644 index 0000000000000000000000000000000000000000..accb424ff3f264f9e3e1314861fe2e13abe7dccd --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Azure_Data_Explorer_Clusters.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60.002"><path d="M60 0H0l60 60z" fill="#0078d4"/><g fill="#b8d432"><rect x="-3.108" y="43.585" width="33.071" height="5.991" rx=".941" transform="rotate(315 13.428 46.58)"/><rect x="-1.347" y="30.819" width="21.126" height="5.991" rx=".941" transform="rotate(315 9.216 33.814)"/></g><path d="M17.747 17.747l24.506 24.506L60 24.506V0H35.494z" fill="#59b4d9"/><rect x="15.498" y="47.789" width="21.126" height="5.991" rx=".941" transform="rotate(315 26.062 50.785)" fill="#b8d432"/><g fill="#fff"><path d="M60 60V0L30 30z" opacity=".2"/><rect x="30.484" y="15.004" width="5.991" height="5.991" rx="1.333" transform="rotate(315 33.479 18)"/><rect x="38.957" y="6.532" width="5.991" height="5.991" rx="1.333" transform="rotate(315 41.952 9.527)"/><rect x="38.957" y="23.477" width="5.991" height="5.991" rx="1.333" transform="rotate(315 41.952 26.473)"/><rect x="47.429" y="15.004" width="5.991" height="5.991" rx="1.333" transform="rotate(315 50.425 18)"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Azure_Database_Migration_Services.svg b/src/main/webapp/img/lib/mscae/Azure_Database_Migration_Services.svg new file mode 100644 index 0000000000000000000000000000000000000000..9643181e81d31054a0afe6a2731eaaae26c83f38 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Azure_Database_Migration_Services.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><path d="M21.216 9.44h-.336c.192-.623.24-1.295.24-1.965C21.168 3.354 17.808 0 13.728 0a7.348 7.348 0 0 0-7.007 5.08 4.71 4.71 0 0 0-1.633-.287C2.256 4.793 0 7.094 0 9.92c0 2.814 2.234 5.055 5 5.076v-2.35c0-2.314 3.888-3.37 7.5-3.37s7.5 1.055 7.5 3.37V15h1.408C22.896 14.857 24 13.658 24 12.22a2.785 2.785 0 0 0-2.784-2.78z" fill="#0072c6"/><path d="M6 12.646v8.986c0 1.297 2.863 2.348 6.41 2.365V24h.09c3.6 0 6.5-1.06 6.5-2.367v-8.986H6z" fill="#59b4d9"/><path d="M12.5 12.646V24c3.6 0 6.5-1.06 6.5-2.367v-8.986h-6.5z" fill="#3999c6"/><path d="M19 12.646c0 1.307-2.9 2.367-6.5 2.367S6 13.953 6 12.646s2.9-2.37 6.5-2.37 6.5 1.06 6.5 2.37" fill="#b8d432"/><path d="M2 11.584a5.417 5.417 0 0 1 7.976-4.773A7.488 7.488 0 0 1 16.498 3c1.395 0 2.695.387 3.814 1.05C19.085 1.648 16.585 0 13.728 0a7.348 7.348 0 0 0-7.007 5.08 4.71 4.71 0 0 0-1.633-.287C2.256 4.793 0 7.094 0 9.92a5.053 5.053 0 0 0 2.843 4.557A5.388 5.388 0 0 1 2 11.584z" opacity=".2" fill="#ecf0f1"/><path d="M12.5 3l-4 4H11v6h3V7h2.5z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Azure_Database_for_MariaDB_servers.svg b/src/main/webapp/img/lib/mscae/Azure_Database_for_MariaDB_servers.svg new file mode 100644 index 0000000000000000000000000000000000000000..3b98d3b7932ed766de69afe599fb74ecb734dc96 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Azure_Database_for_MariaDB_servers.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="84.1" height="111.4"><path d="M0 15.2v80.9c0 8.5 18.8 15.2 41.9 15.2V15.2z" fill="#1b3662"/><path d="M41.5 111.4h.7c23.3 0 41.9-6.7 41.9-15.2v-81H41.5z" fill="#2f4c77"/><path d="M84.1 15.2c0 8.3-18.8 15.2-41.9 15.2S0 23.5 0 15.2 18.8 0 41.9 0s42.2 7 42.2 15.2" fill="#fff"/><path d="M75.6 14.3c0 5.6-15 10.1-33.4 10.1S8.5 20 8.5 14.3s15-10.1 33.4-10.1 33.7 4.5 33.7 10.1" fill="#7fb900"/><path d="M68.4 20.4c4.5-1.8 7-3.8 7-6.1 0-5.6-15-10.1-33.4-10.1S8.5 8.7 8.5 14.3c0 2.2 2.7 4.5 7 6.1 6.1-2.5 15.7-3.8 26.5-3.8s20.3 1.6 26.4 3.8" fill="#b7d332"/><path d="M6.5 82.7s3.5-1.58 4.57-1.58l5.62-.53c1.76 0 3.3-1.4 4.57-3.34s6.32-7.73 12.12-9 14.76-2.64 19.68-9.14 7.55-14.23 15.1-14.58 5.1-1.93 7.2-1.93.88 4 .88 4-.7.53-.7.7-.55 2.37-4.4 4.7-4 7.73-4.4 10-3.86 13.35-7.38 16.34l-.88.35s-.35.88-.7 1.05-1.23-.7-1.4-1.05-1.76 3-2.28 3.7a13.7 13.7 0 0 1-10.72 6.5s5.8-9.66 5.27-13.18a21.6 21.6 0 0 0-1.58 3.86c0 .7-1.23 2.1-3.16 2.28s-14.23-2.8-19.32 0-7.2 5.27-10 5.45-5.62.18-6.68-.35l2.46-2.8c-.02-.01-3.38.7-3.88-1.42z" fill="#fff"/><path d="M75.72 47.22l.53-.53s-2.46-.7-3.16-2.46a.85.85 0 0 0 0 .7 10.72 10.72 0 0 0 2.63 2.29zM64.82 49s1.05-2.46 3.34-1.93a1.82 1.82 0 0 1-1.41 2.46 2.54 2.54 0 0 1-1.93-.53z" fill="#1b3662"/><g fill="#fff"><path d="M72.73 46s-1.93 2.64-2.1 3.7m2.46-3.17a23.66 23.66 0 0 0-1.41 3.34m1.6-3.34a10.76 10.76 0 0 0-.53 3.34" stroke-miterlimit="10" stroke="#1b3662" stroke-width=".5"/><path d="M62.2 76.2s-3.16 3-3.34 4 3.5 2.64 5.8 2.1c0 .04-2.46-5.4-2.46-6.1z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Azure_Database_for_MySQL_servers.svg b/src/main/webapp/img/lib/mscae/Azure_Database_for_MySQL_servers.svg new file mode 100644 index 0000000000000000000000000000000000000000..b4c87b83eef0cffe590096c5207a8e76990c3683 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Azure_Database_for_MySQL_servers.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="84.1" height="111.4"><path d="M0 15.2v80.9c0 8.5 18.8 15.2 41.9 15.2V15.2z" fill="#005f87"/><path d="M41.5 111.4h.7c23.3 0 41.9-6.7 41.9-15.2v-81H41.5z" fill="#0f80b0"/><path d="M84.1 15.2c0 8.3-18.8 15.2-41.9 15.2S0 23.5 0 15.2 18.8 0 41.9 0s42.2 7 42.2 15.2" fill="#fff"/><path d="M75.6 14.3c0 5.6-15 10.1-33.4 10.1S8.5 20 8.5 14.3s15-10.1 33.4-10.1 33.7 4.5 33.7 10.1" fill="#7fb900"/><path d="M68.4 20.4c4.5-1.8 7-3.8 7-6.1 0-5.6-15-10.1-33.4-10.1S8.5 8.7 8.5 14.3c0 2.2 2.7 4.5 7 6.1 6.1-2.5 15.7-3.8 26.5-3.8s20.3 1.6 26.4 3.8" fill="#b7d332"/><path d="M75.5 72.7c0 4.8-3.3 8.9-8 8.9h-18v-7h16c1-.1 1.8-2.9 1.8-2.9l-1.8.9h-10c-4 0-7-2.3-7-6v-11l-3-1v19h-8V59.1L33 69.3c-1.2 2.7-2.4 4.4-5.4 4.4-2.9.1-5.6-1.7-6.7-4.4l-4.3-10.6v15h-8V51.4c0-2.6.5-4.2 2.9-4.9 1.1-.4 2.2-.6 3.4-.6 2.7-.1 5.1 1.4 6.1 3.9l6.6 12.8 5.3-12.8c1-2.5 3.4-4 6.1-3.9 1.1 0 2.3.2 3.4.5 2.4.8 3.2 2.6 3.2 5.2v2.8c0 .1-.1.2 0 .2h12v10c.5.6 1.2.9 2 1h7v-11h9v18.1z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Azure_Database_for_PostgreSQL_servers.svg b/src/main/webapp/img/lib/mscae/Azure_Database_for_PostgreSQL_servers.svg new file mode 100644 index 0000000000000000000000000000000000000000..0236e4d26d8c5f99433c574cc869e3c1a07b9b95 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Azure_Database_for_PostgreSQL_servers.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="50.304" height="66.624" viewBox="0 0 37.702 50"><path d="M-.013 6.84V43.16c0 3.823 8.45 6.84 18.813 6.84V6.84z" fill="#3998c5"/><path d="M18.6 50h.3c10.463 0 18.813-3.018 18.813-6.84V6.84H18.6z" fill="#59b3d8"/><path d="M37.714 6.84c0 3.724-8.45 6.84-18.813 6.84S-.013 10.563-.013 6.84 8.438 0 18.8 0s18.914 3.12 18.914 6.84" fill="#fff"/><path d="M33.887 6.438c0 2.515-6.74 4.527-15 4.527S3.8 8.954 3.8 6.438s6.74-4.527 15-4.527 15.087 2.012 15.087 4.527" fill="#7fb900"/><path d="M30.67 9.154c2.012-.8 3.12-1.7 3.12-2.716 0-2.515-6.74-4.527-15-4.527s-15 2.012-15 4.527c0 1.006 1.207 2.012 3.12 2.716 2.716-1.107 7.042-1.7 11.87-1.7a36.67 36.67 0 0 1 11.871 1.71" fill="#b7d332"/><path d="M29.452 33.817c-2.994.617-3.2-.4-3.2-.4 3.16-4.69 4.483-10.645 3.342-12.1-3.11-3.975-8.5-2.095-8.586-2.046l-.03.005a10.68 10.68 0 0 0-2-.208c-1.13-.057-2.248.277-3.162.946 0 0-9.608-3.958-9.16 4.976.1 1.9 2.725 14.384 5.86 10.613 1.146-1.38 2.254-2.544 2.254-2.544a2.91 2.91 0 0 0 1.9.485l.054-.045c-.016.18-.008.36.022.538-.808.9-.57 1.06-2.186 1.394-1.634.337-.673.936-.048 1.093a3.32 3.32 0 0 0 3.706-1.2l-.048.2a5.4 5.4 0 0 1 .5 2.917c-.104.94-.04 1.893.187 2.812.25.678.5 2.205 2.62 1.75a3.13 3.13 0 0 0 2.821-3.009c.1-1.167.3-1 .31-2.04l.165-.494c.2-1.584.03-2.095 1.122-1.857l.266.023c.845.036 1.69-.106 2.476-.417 1.33-.617 2.12-1.65.808-1.378z" fill="#336790"/><g fill="#fff"><path d="M16.813 25.98c-.135-.07-.282-.116-.433-.135a.93.93 0 0 0-.638.09c-.053.036-.1.092-.1.155-.028.2.27.576.64.628.03.004.06.006.1.006a.7.7 0 0 0 .634-.407l.01-.035c.013-.064-.001-.2-.204-.302zm8.274-.312a1.19 1.19 0 0 0-.43-.009c-.3.045-.612.184-.587.368l.005.018c.103.226.33.37.578.37a.65.65 0 0 0 .082-.005.76.76 0 0 0 .426-.234c.094-.084.15-.2.16-.325-.015-.086-.1-.152-.235-.184z"/><path d="M30.357 33.778c-.144-.442-.774-.3-.98-.267-2.11.435-2.7.006-2.823-.115a24.59 24.59 0 0 0 3.263-7.336c.583-2.333.572-4.184-.025-4.947a6.82 6.82 0 0 0-5.3-2.62c-1.2-.05-2.4.11-3.545.473l-.025.006-.04.014-.036.014c-.614-.153-1.244-.235-1.877-.244-1.127-.044-2.238.272-3.174.9-.98-.368-1.998-.624-3.035-.763-1.544-.303-3.145-.014-4.487.808-1.39.987-2.036 2.76-1.91 5.268.06 1.183 1.792 10.606 4.51 11.513a1.66 1.66 0 0 0 1.84-.732c.968-1.164 1.872-2.13 2.1-2.37.482.27 1.025.414 1.577.42a1.42 1.42 0 0 0 .013.167c-.1.113-.2.227-.285.348-.363.462-.45.57-1.626.814-.477.1-1.112.284-1.122.757s.654.77 1.046.867c1.283.417 2.693.076 3.643-.882a24.27 24.27 0 0 0 .351 5.6c.305 1.133 1.33 1.923 2.504 1.93a4.02 4.02 0 0 0 .836-.095c1.573-.124 2.815-1.386 2.913-2.96.173-1 .473-3.43.6-4.654.36.126.74.183 1.122.17.807.007 1.607-.144 2.356-.444.75-.358 1.803-1.08 1.62-1.638zm-5.588 1.3a101.09 101.09 0 0 1-.652 5.167c-.063 1.352-1.136 2.44-2.487 2.52-.56.188-1.172.133-1.688-.152s-.9-.774-1.03-1.348c-.338-2.158-.435-4.347-.3-6.526a.26.26 0 0 0-.028-.122 1.41 1.41 0 0 0-.051-.25c-.107-.352-.35-.647-.675-.818l-.033-.017a1 1 0 0 0-.871-.052c.087-.4.207-.772.36-1.142l.056-.15c.064-.172.14-.343.224-.532.44-.98 1.044-2.32.387-5.356-.083-.502-.37-.948-.792-1.232s-.944-.38-1.44-.268c-.75.102-1.468.358-2.112.753.05-1.808.702-3.547 1.855-4.94a4.58 4.58 0 0 1 3.455-1.3c1.973.004 3.856.827 5.2 2.27a8.43 8.43 0 0 1 1.9 3.12c-1.427-.17-2.386.085-2.858.76-1 1.436.583 4.28 1.346 5.65.13.233.265.474.307.576.2.47.473.905.805 1.293a2.73 2.73 0 0 1 .269.372l-.065.018c-.404.11-1.16.32-1.09 1.706zm-13.725.88c-.9-.3-1.92-2.128-2.844-5.137-.608-1.916-1.04-3.883-1.288-5.878-.115-2.31.45-3.92 1.68-4.792a4.99 4.99 0 0 1 2.906-.782 12.57 12.57 0 0 1 3.792.689c-.058.05-.118.1-.175.16-2.113 2.132-2.038 5.794-2.034 5.948v.018a17.6 17.6 0 0 1-.062 3.425c-.173 1.148.193 2.31.992 3.153.105.108.218.208.337.3-.346.368-1.17 1.26-2.06 2.333-.428.512-.836.695-1.243.56zm2.52-6.28a18 18 0 0 0 .07-3.455 4.21 4.21 0 0 1 2.8-.873 1.21 1.21 0 0 1 1.019 1.06c.618 2.86.08 4.054-.352 5.015-.083.185-.17.376-.24.565l-.056.15c-.145.36-.265.732-.36 1.11-.773.014-1.515-.302-2.04-.868-.682-.724-.99-1.722-.84-2.705zm3.368 4.508a.27.27 0 0 0 .026-.033.46.46 0 0 1 .61-.148l.045.023a.84.84 0 0 1 .365 1.1 3.05 3.05 0 0 1-3.414 1.1 1.47 1.47 0 0 1-.639-.314 1.53 1.53 0 0 1 .673-.242c1.314-.27 1.5-.446 1.947-1.012.1-.128.224-.285.4-.47zm8.43-2.713c-.052-.127-.168-.334-.328-.622l-.007-.012c-.653-1.17-2.182-3.913-1.375-5.067a1.83 1.83 0 0 1 1.585-.575c.3.003.58.024.866.065a7.15 7.15 0 0 1-.109 1.149 9.55 9.55 0 0 0-.13 1.216c-.002.46.032.922.1 1.378a4.87 4.87 0 0 1-.309 3.027 3.67 3.67 0 0 1-.292-.561zm3.756-4.986a27.62 27.62 0 0 1-2.865 6.361c-.045-.064-.1-.135-.17-.22l-.064-.082-.018-.022a5.11 5.11 0 0 0 .5-3.595c-.063-.426-.093-.856-.092-1.287.017-.387.06-.772.125-1.154.085-.464.124-.935.114-1.407a.46.46 0 0 0 .015-.179c-.694-2.52-2.5-4.586-4.906-5.61 4.478-1.094 6.8 1.136 7.6 2.154.6.763.51 2.553-.24 5.04zm-3.1 7.4a1.61 1.61 0 0 0 .2-.066c.044.04.09.074.14.107a4.47 4.47 0 0 0 3.136.114 1.71 1.71 0 0 1 .288-.038 3.57 3.57 0 0 1-1.266.9 4.91 4.91 0 0 1-3.123.231c-.054-.032-.066-.055-.067-.06-.056-.972.325-1.08.7-1.183z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Azure_DevOps.svg b/src/main/webapp/img/lib/mscae/Azure_DevOps.svg new file mode 100644 index 0000000000000000000000000000000000000000..15e56c5e7472e982aaa6a3dc4da4de4528af04cb --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Azure_DevOps.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36"><path d="M36 6.6v22L26.9 36l-14-5.1V36L5.1 25.7l23.1 1.8V7.7zm-7.7 1.1L15.4 0v5.1L3.5 8.6 0 13.2v10.4l5.1 2.2V12.5z" fill="#0078d4"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Azure_Digital_Twins.svg b/src/main/webapp/img/lib/mscae/Azure_Digital_Twins.svg new file mode 100644 index 0000000000000000000000000000000000000000..647d6e183e56c383762ea5ff00df1d9b6c293205 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Azure_Digital_Twins.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="44.9" height="49.9"><g fill="#0072c6"><path d="M28 0H0v36h28z"/><path d="M15 9v37h25.9L41 9zm23.915 2v15h-21.93V11zm-21.93 33V28h21.93v16z"/></g><circle cx="16" cy="45" r="4.9" fill="#7fba00"/><path d="M16 46.9c-1.048 0-1.9-.853-1.9-1.9s.853-1.9 1.9-1.9 1.9.852 1.9 1.9a1.9 1.9 0 0 1-1.9 1.9z" fill="#fff"/><circle cx="40" cy="45" r="4.9" fill="#7fba00"/><path d="M40 46.9c-1.048 0-1.9-.853-1.9-1.9s.853-1.9 1.9-1.9 1.9.852 1.9 1.9a1.9 1.9 0 0 1-1.9 1.9z" fill="#fff"/><circle cx="40" cy="10" r="4.9" fill="#7fba00"/><circle cx="40" cy="10" r="1.9" fill="#fff"/><circle cx="40" cy="27" r="4.9" fill="#7fba00"/><g fill="#fff"><circle cx="40" cy="27" r="1.9"/><path d="M2.9 2.9h22.257v30H2.9z" opacity=".3"/></g><path d="M19.854 11H28V9h-8.146c-.445-1.664-1.95-2.9-3.754-2.9-2.15 0-3.9 1.75-3.9 3.9 0 1.766 1.188 3.245 2.8 3.723v9.554c-1.613.478-2.8 1.957-2.8 3.723s1.188 3.245 2.8 3.723V36h1.986v-5.21A3.9 3.9 0 0 0 19.854 28H28v-2h-8.146c-.37-1.382-1.47-2.46-2.868-2.79V13.79A3.9 3.9 0 0 0 19.854 11z" opacity=".6" fill="#00188f"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Azure_Firewall.svg b/src/main/webapp/img/lib/mscae/Azure_Firewall.svg new file mode 100644 index 0000000000000000000000000000000000000000..290c31ce6d39235f6343f5cd9c2e164b61c898e0 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Azure_Firewall.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="49.9" height="49.9"><path d="M19.5 10c.9-5.7 5.8-10 11.8-10 6.6 0 11.9 5.4 11.9 12 0 .8-.1 1.5-.2 2.2 3.9.4 6.9 4 6.9 8.3 0 4.6-3.5 8.4-7.7 8.4h-22c-5.6 0-10.2-4.8-10.2-10.6.1-5.4 4.3-9.8 9.5-10.3z" fill="#59b4d9"/><path d="M41 21.9c0-1.1-.9-2-2-2H28c-.365 0-.704.106-1 .28-.302-.18-.648-.277-1-.28H15c-.365 0-.704.106-1 .28-.302-.18-.648-.277-1-.28H2c-1.1 0-2 .9-2 2v5c0 .365.106.704.28 1-.18.302-.277.648-.28 1v5c0 .365.106.704.28 1-.18.302-.277.648-.28 1v5c0 .365.106.704.28 1-.18.302-.277.648-.28 1v5c0 1.1.9 2 2 2h11c.365 0 .704-.106 1-.28.296.173.635.28 1 .28h11c.365 0 .704-.106 1-.28.296.173.635.28 1 .28h11c1.1 0 2-.9 2-2v-5c0-.365-.106-.704-.28-1 .173-.296.28-.635.28-1v-5c0-.365-.106-.704-.28-1 .173-.296.28-.635.28-1v-5c0-.365-.106-.704-.28-1 .173-.296.28-.635.28-1z" fill="#a0a1a2"/><path d="M15 21.9h11v5H15z" fill="#dd5900"/><path d="M28 21.9h11v5H28zm-26 0h11v5H2zm13 7h11v5H15z" fill="#ba141a"/><path d="M2 35.9h11v5H2z" fill="#dd5900"/><path d="M2 28.9h11v5H2zm13 14h11v5H15zm13-7h11v5H28zm0-7h11v5H28zm-13 7h11v5H15z" fill="#ba141a"/><path d="M28 42.9h11v5H28z" fill="#dd5900"/><path d="M2 42.9h11v5H2z" fill="#ba141a"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Azure_Home.svg b/src/main/webapp/img/lib/mscae/Azure_Home.svg new file mode 100644 index 0000000000000000000000000000000000000000..c21ed7ca5cf97c32b705510127648c94c563177a --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Azure_Home.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="22.7" height="18.2"><path d="M4.1 10.9v7.3h5v-4.8h4.3v4.8h4.3v-7.3h5L11.2 0 0 10.9z" fill="#3999c6"/><path d="M11.2 0L0 10.9h4.1v7.3h5v-4.8h1L11.9.7z" fill="#59aed3"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Azure_IoT_Hub.svg b/src/main/webapp/img/lib/mscae/Azure_IoT_Hub.svg new file mode 100644 index 0000000000000000000000000000000000000000..abf275bf785c12aea9caa5b461f2e4a83fed5022 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Azure_IoT_Hub.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="31.9" viewBox="-783 985 32 31.9"><g fill="#b8d432"><path d="M-763.288 1000.266l-7.074-10.063 1.31-.92 7.074 10.063z"/><path d="M-757.03 1011.085l-6.26-10.936 1.39-.795 6.26 10.936z"/><path d="M-777.836 1001.936l-.132-1.595 15.248-1.266.132 1.595z"/><path d="M-767.31 1009.197l-1.37-.826 5.367-8.908 1.37.826z"/></g><path d="M-751.5 985h-8.1c-.3 0-.5.2-.5.6v2.9a.47.47 0 0 0 .5.5h4.6v4.5c0 .3.2.5.6.5h2.9a.47.47 0 0 0 .5-.5v-8a.47.47 0 0 0-.5-.5zm-31 31.9h8.1c.3 0 .5-.2.5-.6v-2.9a.47.47 0 0 0-.5-.5h-4.6v-4.5c0-.3-.2-.5-.6-.5h-2.9a.47.47 0 0 0-.5.5v8a.47.47 0 0 0 .5.5z" fill="#0072c6"/><g fill="#006dd6"><circle cx="-769.6" cy="989.9" r="3.1"/><circle cx="-762.5" cy="999.9" r="3.7"/><circle cx="-756.3" cy="1010.9" r="2.9"/><circle cx="-767.8" cy="1008.9" r="2.5"/><circle cx="-777.9" cy="1001.3" r="2.5"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Azure_IoT_Hub_Security.svg b/src/main/webapp/img/lib/mscae/Azure_IoT_Hub_Security.svg new file mode 100644 index 0000000000000000000000000000000000000000..074d5ac41da9645f6782dec8484a51794c5605f4 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Azure_IoT_Hub_Security.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="23.536" height="31.999"><path d="M20.048 3.923c-7.022-.776-8.197-3.8-8.197-3.8S10.27 4.1.17 4.1v16.326c0 1.975 1.095 3.826 2.614 5.44C6.23 29.53 11.85 32 11.85 32s11.685-5.118 11.685-11.572V4.1h-.115a32.16 32.16 0 0 1-3.516-.192l.143.013z" fill="#7fba00"/><path d="M11.682 0S10.1 3.978 0 3.978v16.33c0 1.975 1.095 3.823 2.614 5.437L19.88 3.8C12.857 3.027 11.682 0 11.682 0z" fill="#96c414"/><path d="M16.713 21.672a1.543 1.543 0 0 1-1.076-2.65L14 16.14a1.86 1.86 0 0 1-1.279-.034l.012.004-1.205 2a1.33 1.33 0 1 1-.934-.384h.002c.058.002.113.008.167.017l-.007-.001 1.267-2.1a1.94 1.94 0 0 1-.484-.818l-.003-.014-5.008.416a1.336 1.336 0 1 1-.147-.853l.003.007 5.092-.422a1.98 1.98 0 0 1 .47-.989l-.002.002-1.75-2.485a1.656 1.656 0 1 1 .699-.485l.002-.002 1.73 2.462a1.966 1.966 0 0 1 2.116 3.256l-.002.002 1.66 2.897a1.544 1.544 0 1 1 .321 3.052z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Azure_Maps.svg b/src/main/webapp/img/lib/mscae/Azure_Maps.svg new file mode 100644 index 0000000000000000000000000000000000000000..3c304751eedc719ab1ccdf19ab988c1b20389ff0 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Azure_Maps.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="174.544" height="224.61"><path d="M123.06 0L0 195.304l154.077-59.735z" fill="#3999c6"/><path d="M98.188 39.47l76.356 185.14L123.06 0z" fill="#59b4d9"/><path d="M93.768 158.95l46.294-17.948 34.482 83.608z" fill="#0072c6"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Azure_Media_Player.svg b/src/main/webapp/img/lib/mscae/Azure_Media_Player.svg new file mode 100644 index 0000000000000000000000000000000000000000..367065af048a2f77a49555830e222cd2139c1f3f --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Azure_Media_Player.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><circle cx="25" cy="25" r="24" fill="#59b4d9"/><g fill="#fff"><path d="M8.03 41.97c-9.373-9.373-9.373-24.57 0-33.94s24.57-9.373 33.94 0z" opacity=".15"/><path d="M35.828 25.01l-16.42 10.267.038-20.556z"/></g><path d="M25 4.63c11.25 0 20.37 9.12 20.37 20.37S36.25 45.37 25 45.37 4.63 36.25 4.63 25 13.75 4.63 25 4.63M25 0C11.215 0 0 11.215 0 25s11.215 25 25 25 25-11.215 25-25S38.785 0 25 0z" fill="#3e3e3e"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Azure_NetApp_files.svg b/src/main/webapp/img/lib/mscae/Azure_NetApp_files.svg new file mode 100644 index 0000000000000000000000000000000000000000..bb67316f6516801e3b4443d2433bada35bfddf9b --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Azure_NetApp_files.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="42"><path d="M2 42h46a2 2 0 0 0 2-2V7H0v33a2 2 0 0 0 2 2z" fill="#a0a1a2"/><path d="M0 1.988V7h50V1.988c-.002-.53-.213-1.035-.588-1.408S48.53-.002 48 0H2C.895 0 0 .9 0 1.988z" fill="#7a7a7a"/><path d="M4 21h42v7H4zm0-10h42v7H4z" fill="#fff"/><path d="M4 31h42v7H4z" fill="#b8d432"/><g fill="#fff"><path d="M43.6 0H1.988A1.99 1.99 0 0 0 0 1.988V40a2 2 0 0 0 2 2h2z" opacity=".2"/><path d="M12 18v17h11v-4h4v4h11V18z" opacity=".4"/></g><path d="M13 15v19h9V22h6v12h9V15z" fill="#0072c6"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Azure_Pipelines.svg b/src/main/webapp/img/lib/mscae/Azure_Pipelines.svg new file mode 100644 index 0000000000000000000000000000000000000000..125dd54a71d16ab8bc78eefdfadc14bc62334eae --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Azure_Pipelines.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="47.915" height="47.845" fill="none"><path d="M16.523 41.303l6.492 6.492H33.55a2.32 2.32 0 0 0 2.316-2.316V21.143L16.523 40.5c-.228.216-.228.576 0 .804z" fill="#235dc1"/><path d="M0 14.246v10.536l6.492 6.492c.228.228.588.228.804 0l19.356-19.356H2.316A2.33 2.33 0 0 0 0 14.246z" fill="#3b6ec6"/><path d="M24.36 2.448L8.736 26.352A2.05 2.05 0 0 0 9 28.92l10.008 10.008c.684.684 1.764.792 2.568.264L45.48 23.556c1.524-.996 2.436-2.7 2.436-4.512V2.376A2.38 2.38 0 0 0 45.539 0H28.883c-1.824 0-3.516.924-4.524 2.448z" fill="#5d8de4"/><path d="M3.516 44.51V36.06H0v11.784h11.964V44.51z" fill="#9fbbf0"/><path d="M35.925 17.71c3.287 0 5.952-2.665 5.952-5.952s-2.665-5.952-5.952-5.952-5.952 2.665-5.952 5.952 2.665 5.952 5.952 5.952z" fill="#adc5f2"/><path d="M25.27 19.733L12.543 32.46l2.936 2.936L28.207 22.67z" fill="#6c9aee"/><path d="M12.944 37.93l2.53-2.53-2.936-2.936-2.53 2.53z" fill="#88acef"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Azure_Repos.svg b/src/main/webapp/img/lib/mscae/Azure_Repos.svg new file mode 100644 index 0000000000000000000000000000000000000000..ee9ef6b5347bd13afa669f711033bf75ec1a6fb0 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Azure_Repos.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="43" height="47.725" fill="none"><path d="M33.955 0H9.042a1.73 1.73 0 0 0-1.733 1.733V7.41h28.38V1.733A1.73 1.73 0 0 0 33.955 0z" fill="#bc3200"/><path d="M36.888 3.467H6.112c-1.387 0-2.506 1.12-2.506 2.506v1.97h35.79v-1.97c0-1.387-1.12-2.506-2.506-2.506z" fill="#d13600"/><path d="M40.494 7.023H2.506C1.12 7.023 0 8.143 0 9.53v35.68a2.52 2.52 0 0 0 2.516 2.516h37.968A2.52 2.52 0 0 0 43 45.209V9.53c0-1.387-1.12-2.506-2.506-2.506z" fill="#e15815"/><g fill="#ffb290"><path d="M12.69 10.697a4.78 4.78 0 0 0-4.774 4.774 4.78 4.78 0 0 0 4.775 4.775 4.78 4.78 0 0 0 4.775-4.775 4.78 4.78 0 0 0-4.774-4.774zm0 7.865a3.1 3.1 0 1 1 0-6.201 3.1 3.1 0 1 1 0 6.201z"/><path d="M14.482 19.732h-3.536V29.4h3.536z"/></g><path d="M35.364 15.542a4.78 4.78 0 0 0-4.774-4.774A4.78 4.78 0 0 0 28.876 20v3.28l-17.93 5.924h-.03v6.072c-1.753.703-2.99 2.427-2.99 4.428a4.78 4.78 0 0 0 4.775 4.774 4.78 4.78 0 0 0 4.775-4.774 4.79 4.79 0 0 0-2.922-4.408V31.53l17.83-5.894-.04-.07h.04V19.96c1.743-.703 2.982-2.417 2.982-4.418zM15.79 39.712a3.1 3.1 0 1 1-6.201 0 3.1 3.1 0 1 1 6.201 0zm14.8-21.08a3.1 3.1 0 0 1 0-6.201 3.1 3.1 0 0 1 3.101 3.1c0 1.714-1.397 3.1-3.1 3.1z" fill="#ffdbca"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Azure_Sentinel.svg b/src/main/webapp/img/lib/mscae/Azure_Sentinel.svg new file mode 100644 index 0000000000000000000000000000000000000000..283affa959de3f5bf545de9e6c48d77bd2197c49 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Azure_Sentinel.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="27.988" height="32"><path d="M13.386 31.6C10.248 29.67 0 22.676 0 14.514V4.076l1.095-.083c4.382-.273 6.083-1.41 7.583-2.416C9.956.738 11.06 0 14 0s4.09.77 5.3 1.584c1.507.998 3.21 2.153 7.593 2.422l1.095.07v10.438c0 8.166-10.25 15.156-13.4 17.103l-.612.383z" fill="#0072c6"/><g fill="#fff"><path d="M9.906 28.385l9.18-26.15-.143-.096c-1.188-.79-2.21-1.474-4.945-1.474s-3.713.665-4.948 1.48C7.48 3.197 5.7 4.39 1.134 4.658l-.47.043v9.813c0 5.63 5.19 10.74 9.24 13.872z" opacity=".15"/><path d="M14 9.332h.006a7.32 7.32 0 0 1 7.289 6.636l.002.03h3.327C24.315 10.364 19.672 5.914 14 5.914A10.65 10.65 0 0 0 3.358 15.97l-.001.027h3.327c.347-3.75 3.48-6.665 7.3-6.665h.023zm3.932 7.334c0 1.405-.75 2.704-1.966 3.406s-2.716.703-3.933 0a3.93 3.93 0 0 1-1.966-3.406c0-2.172 1.76-3.933 3.933-3.933s3.933 1.76 3.933 3.933z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Azure_Sphere.svg b/src/main/webapp/img/lib/mscae/Azure_Sphere.svg new file mode 100644 index 0000000000000000000000000000000000000000..44660d77d9c3fc32574ebaedf949eb7faf02625f --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Azure_Sphere.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="48" height="50"><circle cx="24" cy="27" r="22" fill="#59b4d9" stroke="#0072c6" stroke-width="2"/><circle cx="24" cy="27" r="21" opacity=".6" fill="#fff"/><path d="M23.476 42.852C20.784 41.196 12 35.258 12 28.325V19.46l.938-.058c3.758-.23 5.215-1.2 6.5-2.053C20.534 16.626 21.48 16 24 16s3.506.653 4.555 1.346c1.3.856 2.75 1.826 6.507 2.058l.938.057v8.864c0 6.934-8.784 12.87-11.477 14.526l-.523.323z" fill="#0072c6"/><circle cx="42" cy="40" r="4" fill="#fff"/><use xlink:href="#B" fill="#0072c6"/><circle cx="6" cy="40" r="4" fill="#fff"/><use xlink:href="#B" x="-36" fill="#0072c6"/><circle cx="24" cy="6" r="4" fill="#fff"/><use xlink:href="#B" x="-18" y="-34" fill="#0072c6"/><defs ><path id="B" d="M42 36a4 4 0 1 1 0 8 4 4 0 1 1 0-8m0-2a6.01 6.01 0 0 0-6 6 6.01 6.01 0 0 0 6 6 6.01 6.01 0 0 0 6-6 6.01 6.01 0 0 0-6-6z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Azure_Test_Plans.svg b/src/main/webapp/img/lib/mscae/Azure_Test_Plans.svg new file mode 100644 index 0000000000000000000000000000000000000000..0074d0ce9ec6b9d126a9718af03b097b6e85b98c --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Azure_Test_Plans.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="46.003" height="47" fill="none"><path d="M30.57 4.893H15.234v7.77H30.57z" fill="#915acd"/><path d="M45.194 38.104l-3.213-5.526H28.25v.097c0 4.55-3.734 8.24-8.336 8.24s-8.336-3.69-8.336-8.24v-.097H3.98L.8 38.137C-1.48 42.096 1.41 47 6.01 47h33.984c4.613 0 7.5-4.936 5.2-8.896z" fill="#661db0"/><path d="M11.6 32.684c0 4.55 3.734 8.24 8.336 8.24s8.336-3.69 8.336-8.24v-.097H11.6v.097z" fill="#a062df"/><path d="M19.914 24.444a8.22 8.22 0 0 1 1.27.097c.478-2.082 2.366-3.638 4.613-3.638 2.616 0 4.732 2.093 4.732 4.68 0 1.9-1.15 3.53-2.8 4.27a8.16 8.16 0 0 1 .499 2.736h13.73L30.573 12.984v-.322H15.236v.322L3.98 32.578h7.61c.054-4.496 3.756-8.134 8.325-8.134z" fill="#945ccf"/><path d="M25.798 30.26c-2.616 0-4.732-2.093-4.732-4.68 0-.354.043-.708.12-1.04a8.22 8.22 0 0 0-1.27-.097c-4.57 0-8.27 3.638-8.325 8.134h16.66a8.21 8.21 0 0 0-.499-2.736 4.76 4.76 0 0 1-1.954.419z" fill="#cea8f6"/><path d="M27.74 29.842a4.67 4.67 0 0 0 2.789-4.271c0-2.586-2.117-4.68-4.732-4.68-2.258 0-4.135 1.556-4.613 3.638 3.028.46 5.525 2.543 6.556 5.312z" fill="#be95ea"/><path d="M25.795 30.26a4.71 4.71 0 0 0 1.943-.419c-1.03-2.78-3.528-4.85-6.556-5.312a4.71 4.71 0 0 0-.119 1.041c0 2.597 2.117 4.69 4.732 4.69z" fill="#e5cfff"/><path d="M15.234 0h-1.096c-.727 0-1.313.58-1.313 1.298v.837c0 .72.586 1.298 1.313 1.298h1.096zM32.85 2.135v-.837C32.85.58 32.264 0 31.536 0h-.966v3.434h.966c.727 0 1.313-.58 1.313-1.298z" fill="#b88ee7"/><path d="M30.57 0H15.234v3.434H30.57z" fill="#9d6bd5"/><path d="M30.57 3.434H15.234v1.46H30.57z" fill="#874cc7"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Backlog.svg b/src/main/webapp/img/lib/mscae/Backlog.svg index 1111728770e51bd3875f327e17ca81a961f34a2e..4edf5f2ca25a5b8a48ed05b9ce62b7f2194d79a6 100644 --- a/src/main/webapp/img/lib/mscae/Backlog.svg +++ b/src/main/webapp/img/lib/mscae/Backlog.svg @@ -1,80 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="41.689999" - viewBox="0 0 50 41.689999" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Backlog.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata2261"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs2259" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview2257" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="6.0104076" - inkscape:cx="-26.715295" - inkscape:cy="3.5104446" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="M 47.583,23.524 H 16.787 c -1.325,0 -2.417,-1.12 -2.417,-2.14 0,-1.02 1.091,-1.86 2.417,-1.86 h 30.796 c 1.351,0 2.417,0.84 2.417,1.86 0,1.02 -1.065,2.14 -2.417,2.14 z" - id="path2244" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<path - d="M 47.583,7.932 H 16.787 c -1.325,0 -2.417,-1.12 -2.417,-2.14 0,-1.02 1.091,-1.86 2.417,-1.86 h 30.796 c 1.351,0 2.417,0.84 2.417,1.86 0,1.02 -1.065,2.14 -2.417,2.14 z" - id="path2246" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<path - d="M 47.609,39.117 H 16.787 c -1.325,0 -2.417,-1.12 -2.417,-2.14 0,-1.04 1.091,-1.86 2.417,-1.86 h 30.822 c 1.325,0 2.391,0.82 2.391,1.86 0,1.02 -1.065,2.14 -2.391,2.14 z" - id="path2248" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<polygon - points="2.248,8.157 2.248,8.157 2.248,8.157 5.749,11.658 12.752,4.655 12.752,4.655 12.752,4.655 14.5,6.406 14.5,6.406 14.5,6.406 5.749,15.16 0.5,9.907 " - id="polygon2250" - style="fill:#b8d432" - transform="translate(-0.5,-4.655)" /> -<polygon - points="2.248,23.75 2.248,23.75 2.248,23.75 5.749,27.25 12.752,20.248 12.752,20.248 12.752,20.248 14.5,21.999 14.5,21.999 14.5,21.999 5.749,30.752 0.5,25.5 " - id="polygon2252" - style="fill:#b8d432" - transform="translate(-0.5,-4.655)" /> -<polygon - points="2.248,39.342 2.248,39.342 2.248,39.342 5.749,42.843 12.752,35.84 12.752,35.84 12.752,35.84 14.5,37.591 14.5,37.591 14.5,37.591 5.749,46.345 0.5,41.092 " - id="polygon2254" - style="fill:#b8d432" - transform="translate(-0.5,-4.655)" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="41.69"><g fill="#a0a1a2"><use xlink:href="#B"/><use xlink:href="#B" y="-15.592"/><path d="M47.61 39.117H16.787c-1.325 0-2.417-1.12-2.417-2.14 0-1.04 1.09-1.86 2.417-1.86H47.61c1.325 0 2.39.82 2.39 1.86 0 1.02-1.065 2.14-2.39 2.14z"/></g><path d="M1.748 3.502l3.5 3.5L12.252 0 14 1.75l-8.75 8.754L0 5.252zm0 15.593l3.5 3.5 7.003-7.002 1.75 1.75-8.75 8.753L0 20.845zm0 15.592l3.5 3.5 7.003-7.003L14 32.936 5.25 41.7 0 36.437z" fill="#b8d432"/><defs ><path id="B" d="M47.583 23.524H16.787c-1.325 0-2.417-1.12-2.417-2.14s1.09-1.86 2.417-1.86h30.796c1.35 0 2.417.84 2.417 1.86s-1.065 2.14-2.417 2.14z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Backup.svg b/src/main/webapp/img/lib/mscae/Backup.svg index 4aa40d228a44da0199f4ddba1d6d3250c9afabb4..505491ea098d174fc8c3691f2ba5396b7873f41b 100644 --- a/src/main/webapp/img/lib/mscae/Backup.svg +++ b/src/main/webapp/img/lib/mscae/Backup.svg @@ -1,55 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="41.666" - viewBox="0 0 50 41.666" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure Backup_COLOR.svg"><metadata - id="metadata11"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs9" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview7" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="16.059063" - inkscape:cx="25" - inkscape:cy="20" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 45.083,11.633 C 45.116,11.283 45.133,10.916 45.133,10.55 45.133,4.7330004 40.35,4.4965651e-7 34.483,4.4965651e-7 31,-9.9955034e-4 27.8,1.6660004 25.833,4.3990004 24.567,3.6160004 23.1,3.1830004 21.567,3.1830004 17.384,3.1830004 13.934,6.3660004 13.55,10.416 14.2,10.333 14.85,10.266 15.517,10.266 18.6,10.266 21.567,11.266 23.984,13.033 25.8,8.8490004 30.417,6.1660004 35.533,6.0160004 L 35.533,2.4330004 41.783,7.7830004 35.533,13.1 35.533,9.6000004 C 32.6,9.7160004 29.75,10.816 28.1,13.483 L 28.433,13.45 C 34.4,13.45 39.333,17.917 40.033,23.633 41.45,24.7 42.566,25.983 43.366,27.45 47.233,26.416 50,23.083 50,18.999 50,15.716 48.233,13.099 45.083,11.633 Z" - id="path3" - inkscape:connector-curvature="0" - style="fill:#0072c6" /><path - d="M 4.917,25.499 C 4.884,25.132 4.867,24.766 4.867,24.399 4.867,18.582 9.65,13.866 15.517,13.866 19,13.866 22.2,15.533 24.167,18.249 25.434,17.466 26.9,17.049 28.434,17.049 32.867,17.049 36.484,20.632 36.484,25.032 L 36.467,25.666 C 39.467,27.183 41.084,29.699 41.084,32.849 41.084,37.799 37.051,41.666 31.901,41.666 L 9.183,41.666 C 4.033,41.666 0,37.799 0,32.849 0,29.583 1.767,26.966 4.917,25.499 Z" - id="path5" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="41.666"><path d="M45.083 11.633l.05-1.083C45.133 4.733 40.35 0 34.483 0 31-.001 27.8 1.666 25.833 4.4c-1.266-.783-2.733-1.216-4.266-1.216-4.183 0-7.633 3.183-8.017 7.233.65-.083 1.3-.15 1.967-.15 3.083 0 6.05 1 8.467 2.767 1.816-4.184 6.433-6.867 11.55-7.017V2.433l6.25 5.35-6.25 5.317V9.6c-2.933.116-5.783 1.216-7.433 3.883l.333-.033c5.967 0 10.9 4.467 11.6 10.183 1.417 1.067 2.533 2.35 3.333 3.817C47.233 26.416 50 23.083 50 19c0-3.283-1.767-5.9-4.917-7.366z" fill="#0072c6"/><path d="M4.917 25.5l-.05-1.1c0-5.817 4.783-10.533 10.65-10.533 3.483 0 6.683 1.667 8.65 4.383 1.267-.783 2.733-1.2 4.267-1.2 4.433 0 8.05 3.583 8.05 7.983l-.017.634c3 1.517 4.617 4.033 4.617 7.183 0 4.95-4.033 8.817-9.183 8.817H9.183C4.033 41.666 0 37.8 0 32.85c0-3.266 1.767-5.883 4.917-7.35z" fill="#59b4d9"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Batch.svg b/src/main/webapp/img/lib/mscae/Batch.svg index 38f7cdea430b67a70732b40319d26aabb94058f3..69eb31bcf42981f58c7716b0b0bdbf98b6fdd485 100644 --- a/src/main/webapp/img/lib/mscae/Batch.svg +++ b/src/main/webapp/img/lib/mscae/Batch.svg @@ -1,145 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="46.400002" - width="50" - viewBox="0 0 50 46.400002" - xml:space="preserve" - sodipodi:docname="Batch.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata2355"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs2353" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview2351" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.020815" - inkscape:cx="14.084254" - inkscape:cy="18.721823" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 0,25.2 c 0,0.7 0.5,1.2 1.2,1.2 h 27.6 c 0.7,0 1.2,-0.5 1.2,-1.2 V 5.2 H 0 Z" - id="path2314" - inkscape:connector-curvature="0" - style="fill:#0072c6" /> -<path - d="M 28.8,0 H 1.2 C 0.5,0 0,0.5 0,1.2 V 5.6 H 30 V 1.2 C 30,0.5 29.5,0 28.8,0 Z" - id="path2316" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<path - d="M 1.2,0 C 0.5,0 0,0.5 0,1.2 v 4.4 2 17.6 c 0,0.7 0.5,1.2 1.2,1.2 H 12.7 L 26.2,0 Z" - id="path2318" - inkscape:connector-curvature="0" - style="opacity:0.1;fill:#ffffff" /> -<path - d="M 5.1,12.6 4.8,12.3 C 4.7,12.2 4.7,12.1 4.8,12 l 0.8,-0.7 c 0,0 0.1,-0.1 0.1,-0.1 0.1,0 0.1,0 0.1,0.1 L 8,13.7 11.9,8.8 c 0,0 0.1,-0.1 0.2,-0.1 0,0 0.1,0 0.1,0 l 0.9,0.7 c 0,0 0.1,0.1 0.1,0.1 0,0.1 0,0.1 0,0.1 l -5,6.3 z" - id="path2320" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -<path - d="M 5.1,20.4 4.8,20.1 C 4.7,20 4.7,19.9 4.8,19.8 l 0.8,-0.7 c 0,0 0.1,-0.1 0.1,-0.1 0.1,0 0.1,0 0.1,0.1 l 2.2,2.4 3.9,-4.9 c 0,0 0.1,-0.1 0.2,-0.1 0,0 0.1,0 0.1,0 l 0.9,0.7 c 0,0 0.1,0.1 0.1,0.1 0,0.1 0,0.1 0,0.1 l -5,6.3 z" - id="path2322" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -<path - d="m 10,35.2 c 0,0.7 0.5,1.2 1.2,1.2 h 27.6 c 0.7,0 1.2,-0.5 1.2,-1.2 v -20 H 10 Z" - id="path2324" - inkscape:connector-curvature="0" - style="fill:#3999c6" /> -<path - d="M 38.8,10 H 11.2 C 10.5,10 10,10.5 10,11.2 v 4.4 H 40 V 11.2 C 40,10.5 39.5,10 38.8,10 Z" - id="path2326" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<path - d="M 11.2,10 C 10.5,10 10,10.5 10,11.2 v 4.4 2 17.6 c 0,0.7 0.5,1.2 1.2,1.2 H 22.7 L 36.2,10 Z" - id="path2328" - inkscape:connector-curvature="0" - style="opacity:0.1;fill:#ffffff" /> -<path - d="m 15.1,22.6 -0.3,-0.3 c -0.1,-0.1 -0.1,-0.2 0,-0.3 l 0.8,-0.7 c 0,0 0.1,-0.1 0.1,-0.1 0.1,0 0.1,0 0.1,0.1 l 2.2,2.4 3.9,-4.9 c 0,0 0.1,-0.1 0.2,-0.1 0,0 0.1,0 0.1,0 l 0.9,0.7 c 0,0 0.1,0.1 0.1,0.1 0,0.1 0,0.1 0,0.1 l -5,6.3 z" - id="path2330" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -<path - d="m 15.1,30.4 -0.3,-0.3 c -0.1,-0.1 -0.1,-0.2 0,-0.3 l 0.8,-0.7 c 0,0 0.1,-0.1 0.1,-0.1 0.1,0 0.1,0 0.1,0.1 l 2.2,2.4 3.9,-4.9 c 0,0 0.1,-0.1 0.2,-0.1 0,0 0.1,0 0.1,0 l 0.9,0.7 c 0,0 0.1,0.1 0.1,0.1 0,0.1 0,0.1 0,0.1 l -5,6.3 z" - id="path2332" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -<path - d="m 20,45.2 c 0,0.7 0.5,1.2 1.2,1.2 h 27.6 c 0.7,0 1.2,-0.5 1.2,-1.2 v -20 H 20 Z" - id="path2334" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="M 48.8,20 H 21.2 C 20.5,20 20,20.5 20,21.2 v 4.4 H 50 V 21.2 C 50,20.5 49.5,20 48.8,20 Z" - id="path2336" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<rect - x="20" - y="25.6" - width="30" - height="2" - id="rect2338" - style="opacity:0.15;fill:#ffffff" /> -<path - d="M 21.2,20 C 20.5,20 20,20.5 20,21.2 v 4.4 2 17.6 c 0,0.7 0.5,1.2 1.2,1.2 H 32.7 L 46.2,20 Z" - id="path2340" - inkscape:connector-curvature="0" - style="opacity:0.1;fill:#ffffff" /> -<path - d="m 25.1,32.6 -0.3,-0.3 c -0.1,-0.1 -0.1,-0.2 0,-0.3 l 0.8,-0.7 c 0,0 0.1,-0.1 0.1,-0.1 0.1,0 0.1,0 0.1,0.1 l 2.2,2.4 3.9,-4.9 c 0,0 0.1,-0.1 0.2,-0.1 0,0 0.1,0 0.1,0 l 0.9,0.7 c 0,0 0.1,0.1 0.1,0.1 0,0.1 0,0.1 0,0.1 l -5,6.3 z" - id="path2342" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -<rect - x="33.200001" - y="32.5" - width="12" - height="2" - id="rect2344" - style="opacity:0.6;fill:#ffffff" /> -<path - d="m 25.1,40.4 -0.3,-0.3 c -0.1,-0.1 -0.1,-0.2 0,-0.3 l 0.8,-0.7 c 0,0 0.1,-0.1 0.1,-0.1 0.1,0 0.1,0 0.1,0.1 l 2.2,2.4 3.9,-4.9 c 0,0 0.1,-0.1 0.2,-0.1 0,0 0.1,0 0.1,0 l 0.9,0.7 c 0,0 0.1,0.1 0.1,0.1 0,0.1 0,0.1 0,0.1 l -5,6.3 z" - id="path2346" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -<rect - x="33.200001" - y="40.400002" - width="12" - height="2" - id="rect2348" - style="opacity:0.6;fill:#ffffff" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="46.4" width="50"><path d="M0 25.2c0 .7.5 1.2 1.2 1.2h27.6c.7 0 1.2-.5 1.2-1.2v-20H0z" fill="#0072c6"/><path d="M28.8 0H1.2C.5 0 0 .5 0 1.2v4.4h30V1.2c0-.7-.5-1.2-1.2-1.2z" fill="#a0a1a2"/><g fill="#fff"><path d="M1.2 0C.5 0 0 .5 0 1.2v24c0 .7.5 1.2 1.2 1.2h11.5L26.2 0z" opacity=".1"/><path d="M5.1 12.6l-.3-.3c-.1-.1-.1-.2 0-.3l.8-.7.1-.1c.1 0 .1 0 .1.1L8 13.7l3.9-4.9s.1-.1.2-.1h.1l.9.7.1.1v.1l-5 6.3zm0 7.8l-.3-.3c-.1-.1-.1-.2 0-.3l.8-.7.1-.1c.1 0 .1 0 .1.1L8 21.5l3.9-4.9s.1-.1.2-.1h.1l.9.7.1.1v.1l-5 6.3z"/></g><path d="M10 35.2c0 .7.5 1.2 1.2 1.2h27.6c.7 0 1.2-.5 1.2-1.2v-20H10z" fill="#3999c6"/><path d="M38.8 10H11.2c-.7 0-1.2.5-1.2 1.2v4.4h30v-4.4c0-.7-.5-1.2-1.2-1.2z" fill="#a0a1a2"/><g fill="#fff"><path d="M11.2 10c-.7 0-1.2.5-1.2 1.2v24c0 .7.5 1.2 1.2 1.2h11.5L36.2 10z" opacity=".1"/><use xlink:href="#B"/><use xlink:href="#B" y="7.8"/></g><path d="M20 45.2c0 .7.5 1.2 1.2 1.2h27.6c.7 0 1.2-.5 1.2-1.2v-20H20z" fill="#59b4d9"/><path d="M48.8 20H21.2c-.7 0-1.2.5-1.2 1.2v4.4h30v-4.4c0-.7-.5-1.2-1.2-1.2z" fill="#a0a1a2"/><g fill="#fff"><path d="M20 25.6h30v2H20z" opacity=".15"/><path d="M21.2 20c-.7 0-1.2.5-1.2 1.2v24c0 .7.5 1.2 1.2 1.2h11.5L46.2 20z" opacity=".1"/><use xlink:href="#B" x="10" y="10"/><path d="M33.2 32.5h12v2h-12z" opacity=".6"/><use xlink:href="#B" x="10" y="17.8"/><path d="M33.2 40.4h12v2h-12z" opacity=".6"/></g><defs ><path id="B" d="M15.1 22.6l-.3-.3c-.1-.1-.1-.2 0-.3l.8-.7.1-.1c.1 0 .1 0 .1.1l2.2 2.4 3.9-4.9s.1-.1.2-.1h.1l.9.7.1.1v.1l-5 6.3z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Batch_AI.svg b/src/main/webapp/img/lib/mscae/Batch_AI.svg new file mode 100644 index 0000000000000000000000000000000000000000..8895ac3e9385a782fa48fc3a0e46f2d6baab5c54 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Batch_AI.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="35.955" height="49.818"><path d="M11.955 41.818h12v3h-12zm3 8h5l3.638-3h-11.5z" fill="#7a7a7a"/><path d="M12.13 39.718a.41.41 0 0 1-.419-.392c-.172-5.37-3.152-8.82-6.033-12.158C2.8 23.847.1 20.7.1 15.878.1 5.8 6.608.018 17.955.018S35.8 5.8 35.8 15.878c0 4.832-2.71 7.97-5.577 11.3-2.88 3.337-5.86 6.788-6.033 12.158a.41.41 0 0 1-.419.392z" fill="#fff"/><path d="M16.955 1.005c0-.573-.486-1.04-1.058-1.003C5.6.68 0 6.513 0 15.878c0 9.825 11.272 12.876 11.6 23.45.013.277.243.493.52.49h3.825a1 1 0 0 0 1-1z" fill="#59b4d9"/><path d="M19 1.005c0-.573.486-1.04 1.058-1.003 10.297.68 15.897 6.51 15.897 15.876 0 9.825-11.272 12.876-11.6 23.45-.013.277-.243.493-.52.49H20a1 1 0 0 1-1-1z" fill="#3999c6"/><path d="M24.047 15.594l-.895-1.788-5.197 2.598-5.197-2.598-.895 1.788 5.472 2.736h1.24zm-.2 16.1l-.895-1.788-4.997 2.498-4.997-2.498-.895 1.788 5.272 2.636h1.24zm-11.06-23.48l-.632-1.897-4.34 1.447-3.4-3.4c-.488.46-.93.96-1.34 1.49L6.4 9.18l-1.446 4.34 1.897.633L8.336 9.7zM32.396 5.29a13.23 13.23 0 0 0-1.433-1.396l-3.87 3.87-4.34-1.446-.632 1.897L26.574 9.7l1.484 4.452 1.897-.632-1.447-4.34zm.63 18.6l-4.608-1.77-.393-4.436-1.992.177.414 4.674-3.49 3.135 1.337 1.488 3.494-3.14 3.955 1.52 1.284-1.65zm-20.07 1.78l-3.49-3.136.414-4.674-1.992-.177-.393 4.436-4.608 1.77 1.285 1.65 3.955-1.52 3.494 3.14z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Batch_Accounts.svg b/src/main/webapp/img/lib/mscae/Batch_Accounts.svg new file mode 100644 index 0000000000000000000000000000000000000000..404970eb49c0e4d76be01a521231253dd6eeb303 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Batch_Accounts.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" viewBox="96 243.8 559.4 536.4" width="559.4" height="536.4"><path d="M357.4 318.4H96v210.9c0 3.3 1.3 6.6 3.6 9.1l-.1.1c.3.3.7.7 1.1.9 2.4 2.2 5.5 3.6 9.2 3.6h271.7c6.9 0 13.8-5.7 13.8-13.8V318.4z" fill="#59b4d9"/><path d="M153.4 365.4h186.8v17.2H153.4zm0 56.1h186.8v17.2H153.4zm0 56.2h186.8v17.2H153.4z" fill="#fff"/><path d="M531.6 467.4s13.8-102-80.2-121.5c0 0-8-1.1-18.3-1.1-11.5 0-16 3.4-16 3.4v41.3s3.4-3.4 18.3-3.4c9.2 0 16 1.1 19.5 1.1 21.8 6.9 42.4 22.9 37.8 79.1h-40.1l63 77.9 61.9-77.9h-45.9z" fill="#7fba00"/><path d="M611.9 598.1h-8v130.6H473.2v10.4c0 4.6 1.1 8 5.7 8h135.3c4.6 0 8-3.4 8-8v-133c0-4.6-5.7-8-10.3-8zm33.2 33.2h-8v129.5c0 1.1-1.1 1.1-1.1 1.1H506.4v10.3c0 4.6 1.1 8 5.7 8h133c5.7 0 10.3-4.6 10.3-10.3V639.3c0-4.5-5.7-8-10.3-8z" fill="#59b4d9"/><path d="M133.9 318.4h261.3v-60.8c0-6.9-5.7-13.8-13.8-13.8H109.8c-6.9 0-13.8 5.7-13.8 13.8v60.8zm442.4 243h-133c-4.6 0-8 3.4-8 8v29.8h148.9v-29.8c.2-4.6-3.3-8-7.9-8z" fill="#3999c6"/><path d="M566 598.1H435.4v104.3c0 4.6 3.4 8 8 8h133c4.6 0 8-3.4 8-8V598.1z" fill="#59b4d9"/><g fill="#fff"><path d="M469.7 616.4h74.5v18.3h-74.5z"/><path d="M357.6 318.4H96.2v210.9c0 3.4 1.4 6.9 3.9 9.5 2.4 2.6 295.3-220.4 295.3-220.4h-37.8zm226.8 279.7h-149v103.7s-.4 3.6 1.9 5.9z" opacity=".2"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Batch_Task.svg b/src/main/webapp/img/lib/mscae/Batch_Task.svg index 7fb167675526204cb4040cb8c7167ed7fb1fff3f..1ec82c5e2a327dca4a0bf25cdab196da300e090f 100644 --- a/src/main/webapp/img/lib/mscae/Batch_Task.svg +++ b/src/main/webapp/img/lib/mscae/Batch_Task.svg @@ -1,96 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - viewBox="0 0 50 44" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Batch_Task.svg" - width="50" - height="44" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata2420"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs2418" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview2416" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="25" - inkscape:cy="22" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 0,42 c 0,1.1 0.9,2 2,2 h 46 c 1.1,0 2,-0.9 2,-2 V 8.6 H 0 Z" - id="path2399" - inkscape:connector-curvature="0" - style="fill:#3999c6" /> -<path - d="M 48,0 H 2 C 0.9,0 0,0.9 0,2 V 9.3 H 50 V 2 C 50,0.9 49.1,0 48,0 Z" - id="path2401" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<rect - y="9.3000002" - width="50" - height="3.3" - id="rect2403" - x="0" - style="opacity:0.15;fill:#ffffff" /> -<path - d="M 2,0 C 0.9,0 0,0.9 0,2 V 9.3 12.6 42 c 0,1.1 0.9,2 2,2 H 21.2 L 43.6,0 Z" - id="path2405" - inkscape:connector-curvature="0" - style="opacity:0.1;fill:#ffffff" /> -<path - d="M 8.6,20.9 8.1,20.4 C 8,20.3 8,20.1 8.1,20 l 1.4,-1.2 c 0.1,-0.1 0.1,-0.1 0.2,-0.1 0.1,0 0.2,0 0.2,0.1 l 3.7,4 6.4,-8.1 c 0.1,-0.1 0.2,-0.1 0.3,-0.1 0.1,0 0.1,0 0.2,0.1 l 1.5,1.1 c 0.1,0.1 0.1,0.1 0.1,0.2 0,0.1 0,0.2 -0.1,0.2 l -8.3,10.5 z" - id="path2407" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -<rect - x="22" - y="20.9" - width="20" - height="3.3" - id="rect2409" - style="opacity:0.6;fill:#ffffff" /> -<path - d="M 8.6,34 8.1,33.5 C 8,33.4 8,33.2 8.1,33 l 1.4,-1.2 c 0.1,-0.1 0.1,-0.1 0.2,-0.1 0.1,0 0.2,0 0.2,0.1 l 3.7,4 6.4,-8.1 c 0.1,-0.1 0.2,-0.1 0.3,-0.1 0.1,0 0.1,0 0.2,0.1 l 1.5,1.1 c 0.1,0.1 0.1,0.1 0.1,0.2 0,0.1 0,0.2 -0.1,0.2 l -8.3,10.5 z" - id="path2411" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -<rect - x="22" - y="34" - width="20" - height="3.3" - id="rect2413" - style="opacity:0.6;fill:#ffffff" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="44"><path d="M0 42c0 1.1.9 2 2 2h46c1.1 0 2-.9 2-2V8.6H0z" fill="#3999c6"/><path d="M48 0H2C.9 0 0 .9 0 2v7.3h50V2c0-1.1-.9-2-2-2z" fill="#a0a1a2"/><g fill="#fff"><path d="M0 9.3h50v3.3H0z" opacity=".15"/><path d="M2 0C.9 0 0 .9 0 2v40c0 1.1.9 2 2 2h19.2L43.6 0z" opacity=".1"/><path d="M8.6 20.9l-.5-.5c-.1-.1-.1-.3 0-.4l1.4-1.2c.1-.1.1-.1.2-.1s.2 0 .2.1l3.7 4 6.4-8.1c.1-.1.2-.1.3-.1s.1 0 .2.1l1.5 1.1c.1.1.1.1.1.2s0 .2-.1.2l-8.3 10.5z"/><path d="M22 20.9h20v3.3H22z" opacity=".6"/><path d="M8.6 34l-.5-.5c-.1-.1-.1-.3 0-.5l1.4-1.2c.1-.1.1-.1.2-.1s.2 0 .2.1l3.7 4 6.4-8.1c.1-.1.2-.1.3-.1s.1 0 .2.1l1.5 1.1c.1.1.1.1.1.2s0 .2-.1.2l-8.3 10.5z"/><path d="M22 34h20v3.3H22z" opacity=".6"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Batch_TaskVM.svg b/src/main/webapp/img/lib/mscae/Batch_TaskVM.svg index d733ec626ed060fe4cb38d85522e7d297b174bcc..ddc34a4ef49363acbf8ad909561c8bafb1204fe9 100644 --- a/src/main/webapp/img/lib/mscae/Batch_TaskVM.svg +++ b/src/main/webapp/img/lib/mscae/Batch_TaskVM.svg @@ -1,106 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - viewBox="0 0 50 47.299999" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Batch_TaskVM.svg" - width="50" - height="47.299999" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata2482"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs2480" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview2478" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="6.0104076" - inkscape:cx="-13.057923" - inkscape:cy="5.0192516" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="M 32.4,37.7 H 31.2 19.4 18.8 c 1.6,5.8 -0.6,6.6 -10.2,6.6 v 3 h 12.2 8.9 11.5 v -3 c -9.5,0 -10.4,-0.8 -8.8,-6.6" - id="path2457" - inkscape:connector-curvature="0" - style="fill:#7a7a7a" /> -<path - d="M 47,0 H 2.7 C 1.2,0 0,1.4 0,2.9 v 32 c 0,1.5 1.2,2.8 2.7,2.8 H 47 c 1.5,0 3,-1.3 3,-2.8 V 2.9 C 50,1.4 48.5,0 47,0 M 46.2,3.9 V 33.8 H 3.8 V 3.9 L 46.2,3.8 Z" - id="path2459" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<polygon - points="3.8,4.6 46.2,4.5 46.2,34.5 3.8,34.5 " - id="polygon2461" - style="fill:#59b4d9" - transform="translate(0,-0.7)" /> -<path - d="m 3.8,33.8 v 0 V 3.9 L 42.5,3.8 47,0 c 0,0 0,0 0,0 H 2.7 C 1.2,0 0,1.4 0,2.9 v 32 c 0,1.5 1.2,2.8 2.7,2.8 H 3.8 L 8.4,33.9 H 3.8 Z" - id="path2463" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#ffffff" /> -<polygon - points="3.8,4.6 42.5,4.5 42.5,4.5 3.8,4.6 3.8,34.5 " - id="polygon2465" - style="fill:#59b4d9" - transform="translate(0,-0.7)" /> -<rect - x="8.6999998" - y="44.299999" - width="32.700001" - height="3" - id="rect2467" - style="fill:#a0a1a2" /> -<path - d="M 8.6,12.6 8.1,12.1 C 8,12 8,11.8 8.1,11.6 l 1.4,-1.2 c 0,-0.1 0.1,-0.1 0.2,-0.1 0.1,0 0.2,0 0.2,0.1 l 3.7,4 6.4,-8.1 c 0.1,-0.1 0.2,-0.1 0.3,-0.1 0.1,0 0.1,0 0.2,0.1 l 1.5,1 c 0.1,0.1 0.1,0.1 0.1,0.2 0,0.1 0,0.2 -0.1,0.2 l -8.3,10.5 z" - id="path2469" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -<rect - x="22" - y="12.6" - width="20" - height="3.3" - id="rect2471" - style="opacity:0.6;fill:#ffffff" /> -<path - d="M 8.6,25.7 8.1,25.2 C 8,25.1 8,24.9 8.1,24.7 l 1.4,-1.2 c 0.1,-0.1 0.1,-0.1 0.2,-0.1 0.1,0 0.2,0 0.2,0.1 l 3.7,4 6.4,-8.1 c 0.1,-0.1 0.2,-0.1 0.3,-0.1 0.1,0 0.1,0 0.2,0.1 l 1.5,1.1 c 0.1,0.1 0.1,0.1 0.1,0.2 0,0.1 0,0.2 -0.1,0.2 l -8.2,10.4 z" - id="path2473" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -<rect - x="22" - y="25.699999" - width="20" - height="3.3" - id="rect2475" - style="opacity:0.6;fill:#ffffff" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="47.3"><path d="M32.4 37.7H18.8c1.6 5.8-.6 6.6-10.2 6.6v3h32.6v-3c-9.5 0-10.4-.8-8.8-6.6" fill="#7a7a7a"/><path d="M47 0H2.7C1.2 0 0 1.4 0 2.9v32c0 1.5 1.2 2.8 2.7 2.8H47c1.5 0 3-1.3 3-2.8v-32C50 1.4 48.5 0 47 0m-.8 3.9v29.9H3.8V3.9l42.4-.1z" fill="#a0a1a2"/><path d="M3.8 3.9l42.4-.1v30H3.8z" fill="#59b4d9"/><path d="M3.8 33.8V3.9l38.7-.1L47 0H2.7C1.2 0 0 1.4 0 2.9v32c0 1.5 1.2 2.8 2.7 2.8h1.1l4.6-3.8H3.8z" opacity=".2" fill="#fff"/><path d="M3.8 3.9l38.7-.1-38.7.1v29.9z" fill="#59b4d9"/><path d="M8.7 44.3h32.7v3H8.7z" fill="#a0a1a2"/><g fill="#fff"><path d="M8.6 12.6l-.5-.5c-.1-.1-.1-.3 0-.5l1.4-1.2c0-.1.1-.1.2-.1s.2 0 .2.1l3.7 4L20 6.3c.1-.1.2-.1.3-.1s.1 0 .2.1l1.5 1c.1.1.1.1.1.2s0 .2-.1.2l-8.3 10.5z"/><path d="M22 12.6h20v3.3H22z" opacity=".6"/><path d="M8.6 25.7l-.5-.5c-.1-.1-.1-.3 0-.5l1.4-1.2c.1-.1.1-.1.2-.1s.2 0 .2.1l3.7 4 6.4-8.1c.1-.1.2-.1.3-.1s.1 0 .2.1l1.5 1.1c.1.1.1.1.1.2s0 .2-.1.2l-8.2 10.4z"/><path d="M22 25.7h20V29H22z" opacity=".6"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/BillingHub.svg b/src/main/webapp/img/lib/mscae/BillingHub.svg index a6950d37e424851e2e449ef74661a2df17a5e473..0546062559eb2a2a52cc041ba5ea5f91f46d2fa2 100644 --- a/src/main/webapp/img/lib/mscae/BillingHub.svg +++ b/src/main/webapp/img/lib/mscae/BillingHub.svg @@ -1,23 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#0F0F0F" d="M28.431,27.562c0,0.811-0.254,1.462-0.764,1.955c-0.512,0.493-1.254,0.796-2.23,0.908v1.59h-1.07v-1.546 - c-1.006-0.01-1.928-0.234-2.768-0.674v-2.028c0.264,0.215,0.684,0.423,1.264,0.626c0.578,0.202,1.08,0.318,1.504,0.348v-2.666 - c-1.078-0.4-1.844-0.839-2.293-1.314c-0.449-0.477-0.674-1.103-0.674-1.879s0.277-1.432,0.828-1.967 - c0.553-0.534,1.266-0.846,2.139-0.934v-1.362h1.07v1.333c1.029,0.049,1.799,0.215,2.307,0.498v1.978 - c-0.68-0.41-1.447-0.664-2.307-0.762v2.775c1.078,0.392,1.848,0.831,2.307,1.318C28.203,26.249,28.431,26.849,28.431,27.562z - M24.367,24.017v-2.322c-0.678,0.122-1.018,0.477-1.018,1.063C23.349,23.269,23.689,23.69,24.367,24.017z M26.484,27.664 - c0-0.473-0.35-0.863-1.047-1.172v2.22C26.134,28.599,26.484,28.25,26.484,27.664z"/> -<path fill="#7FBA00" d="M25,38.81c-7.627,0-13.811-6.183-13.811-13.809s6.183-13.809,13.81-13.81l0,0 - c7.627,0,13.81,6.182,13.81,13.809h11.19c0-13.807-11.192-25-25-25v0.001C11.191,0.002,0,11.194,0,25.001s11.192,25,25,25 - c6.393,0,12.221-2.403,16.641-6.35l-7.457-8.358C31.741,37.474,28.53,38.81,25,38.81z"/> -<path opacity="0.1" fill="#FFFFFF" enable-background="new " d="M25,38.81c-7.627,0-13.811-6.183-13.811-13.809 - s6.183-13.809,13.81-13.81l0,0c7.627,0,13.81,6.182,13.81,13.809h11.19c0-13.807-11.192-25-25-25v0.001 - C11.191,0.002,0,11.194,0,25.001s11.192,25,25,25c6.393,0,12.221-2.403,16.641-6.35l-7.457-8.358 - C31.741,37.474,28.53,38.81,25,38.81z"/> -<path fill="#FCD116" d="M50,25H38.809c0,4.096-1.793,7.764-4.625,10.292l7.457,8.359C46.768,39.072,50,32.415,50,25"/> -<path opacity="0.9" fill="#B8D432" enable-background="new " d="M38.809,25h11.19c0-13.807-11.192-25-25-25v11.191 - C32.625,11.191,38.809,17.373,38.809,25"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="50"><path fill="#0f0f0f" d="M28.43 27.562c0 .81-.254 1.462-.764 1.955s-1.254.796-2.23.908v1.6h-1.07V30.47c-1.006-.01-1.928-.234-2.768-.674v-2.028c.264.215.684.423 1.264.626s1.08.318 1.504.348v-2.666c-1.078-.4-1.844-.84-2.293-1.314s-.674-1.103-.674-1.88.277-1.432.828-1.967 1.266-.846 2.14-.934V18.62h1.07v1.333c1.03.05 1.8.215 2.307.498v1.978c-.68-.4-1.447-.664-2.307-.762v2.775c1.078.392 1.848.83 2.307 1.318s.687 1.1.687 1.803zm-4.064-3.545v-2.322c-.678.122-1.018.477-1.018 1.063 0 .51.34.932 1.018 1.26zm2.117 3.647c0-.473-.35-.863-1.047-1.172v2.22c.697-.113 1.047-.462 1.047-1.048z"/><use xlink:href="#B" fill="#7fba00"/><use xlink:href="#B" opacity=".1" fill="#fff"/><path fill="#fcd116" d="M50 25H38.81c0 4.096-1.793 7.764-4.625 10.292l7.457 8.36C46.768 39.072 50 32.415 50 25"/><path opacity=".9" fill="#b8d432" d="M38.81 25H50C50 11.193 38.807 0 25 0v11.19c7.626 0 13.8 6.182 13.8 13.81"/><defs ><path id="B" d="M25 38.8c-7.627 0-13.81-6.183-13.81-13.81s6.183-13.81 13.8-13.8 13.8 6.182 13.8 13.81H50C50 11.193 38.807 0 25 0v.001C11.19.002 0 11.194 0 25s11.192 25 25 25c6.393 0 12.22-2.403 16.64-6.35l-7.457-8.358C31.74 37.474 28.53 38.8 25 38.8z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/BizTalk_Services.svg b/src/main/webapp/img/lib/mscae/BizTalk_Services.svg index 0fa4dbebbf797914145dacd4fd6d47f1d1d721a2..f3ca4923c71ef4afee2e13f5ec0456a4c1859b26 100644 --- a/src/main/webapp/img/lib/mscae/BizTalk_Services.svg +++ b/src/main/webapp/img/lib/mscae/BizTalk_Services.svg @@ -1,66 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="48.400002" - viewBox="0 0 50 48.400002" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure BizTalk Services_COLOR.svg"><metadata - id="metadata15"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs13" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview11" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="10.363697" - inkscape:cx="28.240741" - inkscape:cy="17.742825" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 29.6,23.2 C 29.6,20.7 27.6,18.7 25.1,18.7 22.6,18.7 20.6,20.7 20.6,23.2 20.6,25.7 22.6,27.7 25.1,27.7 27.6,27.7 29.6,25.7 29.6,23.2 Z" - id="path3" - inkscape:connector-curvature="0" - style="fill:#b8d432" /><path - d="M 43.1,15.3 C 43.4,14.3 43.5,13.3 43.5,12.2 43.5,5.5 38.2,0 31.7,0 26.8,0 22.6,3.1 20.8,7.5 19.3,5.6 17,4.5 14.4,4.5 9.8,4.5 6.1,8.4 6.1,13.1 6.1,13.9 6.2,14.7 6.4,15.5 2.7,16.9 0,20.2 0,24.6 0,30.2 4.4,34.4 9.9,34.4 L 12.8,34.4 24.1,34.4 24.1,30.3 C 22.3,30 20.7,29.1 19.7,27.7 L 15.9,29.7 17.2,32.7 11.4,31.2 13.4,25.2 14.9,28 18.6,25.8 C 18.3,25 18.1,24 18.1,23 18.1,22.1 18.3,21.2 18.6,20.4 L 18.6,20.4 14.7,18.1 13.2,20.8 11.3,14.8 17.2,13.8 15.8,16.3 19.7,18.6 C 20.8,17.2 22.4,16.2 24.3,15.9 L 24.3,11.5 21.5,11.5 25.3,6.9 29.3,11.5 26.3,11.5 26.3,15.9 C 28.2,16.2 29.8,17.2 30.9,18.6 L 34.8,16.3 33.3,13.7 39.2,14.9 37.3,20.8 35.8,18.2 31.9,20.5 C 32.2,21.3 32.4,22.2 32.4,23.1 32.4,24 32.2,24.9 31.9,25.7 L 35.8,28 37.5,25.1 39.3,31.3 33,32.7 34.6,29.8 30.7,27.5 C 29.6,29 27.9,30 26.1,30.2 L 26.1,34.4 38.3,34.4 40.2,34.4 C 45.7,34.4 50,30.2 50,24.6 50,20.1 47.1,16.6 43.1,15.3 Z" - id="path5" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><rect - x="23.5" - y="34.400002" - width="3" - height="7" - id="rect7" - style="fill:#3999c6" /><circle - cx="25" - cy="44.400002" - r="4" - id="circle9" - style="fill:#0072c6" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="48.4"><path d="M29.6 23.2a4.48 4.48 0 0 0-4.5-4.5 4.48 4.48 0 0 0-4.5 4.5 4.48 4.48 0 0 0 4.5 4.5 4.48 4.48 0 0 0 4.5-4.5z" fill="#b8d432"/><path d="M43.1 15.3c.3-1 .4-2 .4-3.1C43.5 5.5 38.2 0 31.7 0c-4.9 0-9.1 3.1-10.9 7.5-1.5-1.9-3.8-3-6.4-3-4.6 0-8.3 3.9-8.3 8.6 0 .8.1 1.6.3 2.4C2.7 16.9 0 20.2 0 24.6c0 5.6 4.4 9.8 9.9 9.8h14.2v-4.1c-1.8-.3-3.4-1.2-4.4-2.6l-3.8 2 1.3 3-5.8-1.5 2-6 1.5 2.8 3.7-2.2a8.21 8.21 0 0 1-.5-2.8c0-.9.2-1.8.5-2.6l-3.9-2.3-1.5 2.7-1.9-6 5.9-1-1.4 2.5 3.9 2.3c1.1-1.4 2.7-2.4 4.6-2.7v-4.4h-2.8l3.8-4.6 4 4.6h-3v4.4c1.9.3 3.5 1.3 4.6 2.7l3.9-2.3-1.5-2.6 5.9 1.2-1.9 5.9-1.5-2.6-3.9 2.3c.3.8.5 1.7.5 2.6s-.2 1.8-.5 2.6l3.9 2.3 1.7-2.9 1.8 6.2-6.3 1.4 1.6-2.9-3.9-2.3c-1.1 1.5-2.8 2.5-4.6 2.7v4.2h14.1c5.5 0 9.8-4.2 9.8-9.8 0-4.5-2.9-8-6.9-9.3z" fill="#59b4d9"/><path d="M23.5 34.4h3v7h-3z" fill="#3999c6"/><circle cx="25" cy="44.4" r="4" fill="#0072c6"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/BizTalk_Services_Hybrid_Connections.svg b/src/main/webapp/img/lib/mscae/BizTalk_Services_Hybrid_Connections.svg index 6c1c531d7dc4f968cf1001d8ea232cce41d4aba0..5745e7321044b5f1018e494f93b4d217da7f188e 100644 --- a/src/main/webapp/img/lib/mscae/BizTalk_Services_Hybrid_Connections.svg +++ b/src/main/webapp/img/lib/mscae/BizTalk_Services_Hybrid_Connections.svg @@ -1,73 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="47" - height="50" - viewBox="0 0 47 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure BizTalk Services - Hybrid Connections_COLOR.svg"><metadata - id="metadata19"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs17" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview15" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="14.656481" - inkscape:cx="25.636207" - inkscape:cy="26.296746" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><circle - cx="22.799999" - cy="11.1" - r="4" - id="circle3" - style="fill:#7fba00" /><circle - cx="23.1" - cy="38.900002" - r="4" - id="circle5" - style="fill:#7fba00" /><path - d="M 13,40.9 11.1,40.9 C 5,40.9 0,35.9 0,29.8 L 0,20.1 C 0.1,14.3 5,9.3 11,9 L 14,9 C 15,9 15.8,9.8 15.8,10.8 15.8,11.8 15,12.6 14,12.6 L 11.1,12.6 C 7.1,12.8 3.7,16.1 3.7,20 L 3.7,29.7 C 3.7,33.8 7,37.1 11.1,37.1 L 13,37.1 C 14,37.1 14.8,37.9 14.8,38.9 14.8,40.1 14,40.9 13,40.9 Z" - id="path7" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><path - d="M 35.9,40.9 32,40.9 C 31,40.9 30.2,40.1 30.2,39.1 30.2,38.1 31,37.3 32,37.3 L 35.9,37.3 C 40,37.3 43.3,34 43.3,29.9 L 43.3,20.2 C 43.3,16.1 40,12.8 35.9,12.8 L 33,12.8 C 32,12.8 31.2,12 31.2,11 31.2,10 32,9.2 33,9.2 L 35.9,9.2 C 42,9.2 47,14.2 47,20.3 L 47,30 C 47,36 42,40.9 35.9,40.9 Z" - id="path9" - inkscape:connector-curvature="0" - style="fill:#804998" /><path - d="M 22.6,22.2 C 19.8,22.2 16.9,21.1 14.8,19 14.1,18.3 14.1,17.1 14.8,16.4 15.5,15.7 16.7,15.7 17.4,16.4 20.3,19.3 25,19.3 27.8,16.4 30.7,13.5 30.7,8.8 27.8,6 26.4,4.6 24.5,3.8 22.6,3.8 20.6,3.8 18.8,4.6 17.4,6 16.7,6.7 15.5,6.7 14.8,6 14.1,5.3 14.1,4.1 14.8,3.4 16.9,1.2 19.7,0 22.6,0 25.6,0 28.3,1.2 30.4,3.2 34.7,7.5 34.7,14.6 30.4,18.9 28.3,21.1 25.5,22.2 22.6,22.2 Z" - id="path11" - inkscape:connector-curvature="0" - style="fill:#68217a" /><path - d="M 23,50 C 20,50 17.3,48.8 15.2,46.8 10.9,42.5 10.9,35.4 15.2,31.1 17.3,29 20.1,27.9 23,27.9 26,27.9 28.7,29.1 30.8,31.1 31.5,31.8 31.5,33 30.8,33.7 30.1,34.4 28.9,34.4 28.2,33.7 26.8,32.3 24.9,31.5 23,31.5 21,31.5 19.2,32.3 17.8,33.7 14.9,36.6 14.9,41.3 17.8,44.1 19.2,45.5 21,46.3 23,46.3 25,46.3 26.8,45.5 28.2,44.1 28.9,43.4 30.1,43.4 30.8,44.1 31.5,44.8 31.5,46 30.8,46.7 28.8,48.8 26,50 23,50 Z" - id="path13" - inkscape:connector-curvature="0" - style="fill:#0072c6" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="47" height="50"><g fill="#7fba00"><circle cx="22.8" cy="11.1" r="4"/><circle cx="23.1" cy="38.9" r="4"/></g><path d="M13 40.9h-1.9C5 40.9 0 35.9 0 29.8v-9.7C.1 14.3 5 9.3 11 9h3a1.79 1.79 0 0 1 1.8 1.8 1.79 1.79 0 0 1-1.8 1.8h-2.9c-4 .2-7.4 3.5-7.4 7.4v9.7c0 4.1 3.3 7.4 7.4 7.4H13a1.79 1.79 0 0 1 1.8 1.8c0 1.2-.8 2-1.8 2z" fill="#59b4d9"/><path d="M35.9 40.9H32a1.79 1.79 0 1 1 0-3.6h3.9c4.1 0 7.4-3.3 7.4-7.4v-9.7c0-4.1-3.3-7.4-7.4-7.4H33a1.79 1.79 0 0 1-1.8-1.8A1.79 1.79 0 0 1 33 9.2h2.9c6.1 0 11.1 5 11.1 11.1V30c0 6-5 10.9-11.1 10.9z" fill="#804998"/><path d="M22.6 22.2c-2.8 0-5.7-1.1-7.8-3.2-.7-.7-.7-1.9 0-2.6s1.9-.7 2.6 0c2.9 2.9 7.6 2.9 10.4 0 2.9-2.9 2.9-7.6 0-10.4-1.4-1.4-3.3-2.2-5.2-2.2-2 0-3.8.8-5.2 2.2-.7.7-1.9.7-2.6 0s-.7-1.9 0-2.6C16.9 1.2 19.7 0 22.6 0c3 0 5.7 1.2 7.8 3.2 4.3 4.3 4.3 11.4 0 15.7-2.1 2.2-4.9 3.3-7.8 3.3z" fill="#68217a"/><path d="M23 50c-3 0-5.7-1.2-7.8-3.2-4.3-4.3-4.3-11.4 0-15.7 2.1-2.1 4.9-3.2 7.8-3.2 3 0 5.7 1.2 7.8 3.2.7.7.7 1.9 0 2.6s-1.9.7-2.6 0c-1.4-1.4-3.3-2.2-5.2-2.2-2 0-3.8.8-5.2 2.2-2.9 2.9-2.9 7.6 0 10.4 1.4 1.4 3.2 2.2 5.2 2.2s3.8-.8 5.2-2.2c.7-.7 1.9-.7 2.6 0s.7 1.9 0 2.6C28.8 48.8 26 50 23 50z" fill="#0072c6"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/BlobBlock.svg b/src/main/webapp/img/lib/mscae/BlobBlock.svg index 835332b9840367e9335a3d526b1ef89e90838458..f7928040c39ffad85681f5adbd197c0e2e00e66f 100644 --- a/src/main/webapp/img/lib/mscae/BlobBlock.svg +++ b/src/main/webapp/img/lib/mscae/BlobBlock.svg @@ -1,93 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="42.700001" - viewBox="0 0 50 42.700001" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="BlobBlock.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata4786"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs4784" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1851" - inkscape:window-height="921" - id="namedview4782" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.020815" - inkscape:cx="12.256842" - inkscape:cy="16.802534" - inkscape:window-x="1928" - inkscape:window-y="22" - inkscape:window-maximized="0" - inkscape:current-layer="Layer_1" /> -<path - d="m 0,40.8 c 0,1 0.8,1.9 1.8,1.9 h 46.3 c 1,0 1.9,-0.8 1.9,-1.9 V 7.7 H 0 Z" - id="path4767" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<path - d="M 48.1,0 H 1.8 C 0.8,0 0,0.9 0,1.9 V 7.6 H 50 V 1.9 C 50,0.9 49.2,0 48.1,0" - id="path4769" - inkscape:connector-curvature="0" - style="fill:#7a7a7a" /> -<rect - x="3.7" - y="11.1" - width="20.4" - height="13" - id="rect4771" - style="fill:#0072c6" /> -<rect - x="3.7" - y="25.9" - width="20.4" - height="13" - id="rect4773" - style="fill:#0072c6" /> -<rect - x="25.9" - y="11.1" - width="20.299999" - height="13" - id="rect4775" - style="fill:#ffffff" /> -<rect - x="25.9" - y="25.9" - width="20.299999" - height="13" - id="rect4777" - style="fill:#0072c6" /> -<path - d="M 2,0 C 0.9,0 0,0.9 0,2 v 7.3 3.3 28 c 0,1.1 0.9,2 2,2 H 4.2 L 43.6,0 Z" - id="path4779" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#ffffff" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="42.7"><path d="M0 40.8c0 1 .8 1.9 1.8 1.9h46.3c1 0 1.9-.8 1.9-1.9V7.7H0z" fill="#a0a1a2"/><path d="M48.1 0H1.8C.8 0 0 .9 0 1.9v5.7h50V1.9c0-1-.8-1.9-1.9-1.9" fill="#7a7a7a"/><path d="M3.7 11.1h20.4v13H3.7zm0 14.8h20.4v13H3.7z" fill="#0072c6"/><path d="M25.9 11.1h20.3v13H25.9z" fill="#fff"/><path d="M25.9 25.9h20.3v13H25.9z" fill="#0072c6"/><path d="M2 0C.9 0 0 .9 0 2v38.6c0 1.1.9 2 2 2h2.2L43.6 0z" opacity=".2" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/BlobPage.svg b/src/main/webapp/img/lib/mscae/BlobPage.svg index 41db81a1fc0c020981ed9cd7e7e706f2ceabea6c..c0f05b4a74467307d472a0e0b32a87fe99fda2d3 100644 --- a/src/main/webapp/img/lib/mscae/BlobPage.svg +++ b/src/main/webapp/img/lib/mscae/BlobPage.svg @@ -1,85 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="42.700001" - viewBox="0 0 50 42.700001" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="BlobPage.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata4859"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs4857" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1851" - inkscape:window-height="921" - id="namedview4855" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="8.5" - inkscape:cx="50.379038" - inkscape:cy="17.272846" - inkscape:window-x="1928" - inkscape:window-y="22" - inkscape:window-maximized="0" - inkscape:current-layer="Layer_1" /> -<path - d="m 0,40.8 c 0,1 0.8,1.9 1.8,1.9 h 46.3 c 1,0 1.9,-0.8 1.9,-1.9 V 7.7 H 0 Z" - id="path4840" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<path - d="M 48.1,0 H 1.8 C 0.8,0 0,0.9 0,1.9 V 7.6 H 50 V 1.9 C 50,0.9 49.2,0 48.1,0" - id="path4842" - inkscape:connector-curvature="0" - style="fill:#7a7a7a" /> -<polygon - points="3.7,43 22.7,43 22.7,25.6 13.1,16 3.7,16 " - id="polygon4844" - style="fill:#b8d432" - transform="translate(0,-4)" /> -<polygon - points="4.8,42 21.6,42 21.6,26.3 12.4,26.3 12.4,17.1 4.8,17.1 " - id="polygon4846" - style="opacity:0.8;fill:#ffffff" - transform="translate(0,-4)" /> -<polygon - points="27.2,43 46.2,43 46.2,25.6 36.6,16 27.2,16 " - id="polygon4848" - style="fill:#b8d432" - transform="translate(0,-4)" /> -<polygon - points="28.3,42 45.1,42 45.1,26.3 35.9,26.3 35.9,17.1 28.3,17.1 " - id="polygon4850" - style="opacity:0.8;fill:#ffffff" - transform="translate(0,-4)" /> -<path - d="M 2,0 C 0.9,0 0,0.9 0,2 v 7.3 3.3 28 c 0,1.1 0.9,2 2,2 H 4.2 L 43.6,0 Z" - id="path4852" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#ffffff" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="42.7"><path d="M0 40.8c0 1 .8 1.9 1.8 1.9h46.3c1 0 1.9-.8 1.9-1.9V7.7H0z" fill="#a0a1a2"/><path d="M48.1 0H1.8C.8 0 0 .9 0 1.9v5.7h50V1.9c0-1-.8-1.9-1.9-1.9" fill="#7a7a7a"/><path d="M3.7 39h19V21.6L13.1 12H3.7z" fill="#b8d432"/><path d="M4.8 38h16.8V22.3h-9.2v-9.2H4.8z" opacity=".8" fill="#fff"/><path d="M27.2 39h19V21.6L36.6 12h-9.4z" fill="#b8d432"/><g fill="#fff"><path d="M28.3 38h16.8V22.3h-9.2v-9.2h-7.6z" opacity=".8"/><path d="M2 0C.9 0 0 .9 0 2v38.6c0 1.1.9 2 2 2h2.2L43.6 0z" opacity=".2"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Blockchain.svg b/src/main/webapp/img/lib/mscae/Blockchain.svg index c3dff7c0c56a13839bdd1331dfcdd4a2ddb020e7..0d626301a11442c5da206603a084f9d5bb8ce9e3 100644 --- a/src/main/webapp/img/lib/mscae/Blockchain.svg +++ b/src/main/webapp/img/lib/mscae/Blockchain.svg @@ -1,87 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - viewBox="0 0 48.157524 35.919476" - xml:space="preserve" - sodipodi:docname="Blockchain.svg" - width="48.157524" - height="35.919476" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata4360"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title>Blockchain_icon</dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs4358" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview4356" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="11.805556" - inkscape:cx="24.078763" - inkscape:cy="17.959738" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<style - type="text/css" - id="style4335"> - .st0{fill:#0072C6;} - .st1{opacity:0.3;} - .st2{fill:#FFFFFF;} - .st3{fill:none;} -</style> -<title - id="title4337">Blockchain_icon</title> - - -<g - transform="translate(0.02080241,0.00819059)" - id="g4351"><g - id="g4345"><circle - class="st0" - cx="23" - cy="15" - r="5" - id="circle4339" - style="fill:#0072c6" /><path - inkscape:connector-curvature="0" - class="st0" - d="M 37.2,10.2 C 34.6,2.4 26.1,-1.9 18.2,0.8 13,2.6 9.1,7.1 8.2,12.6 c -6.3,2.1 -9.7,8.9 -7.6,15.1 2.1,6.2 8.9,9.7 15.1,7.6 2.6,-0.9 4.8,-2.6 6.3,-4.8 v -8.7 c -1.6,-0.2 -3.1,-1 -4.2,-2.3 l -0.9,0.9 c 1.9,2.7 1.3,6.5 -1.4,8.4 C 12.8,30.7 9,30.1 7.1,27.4 5.2,24.7 5.8,21 8.5,19.1 c 2.1,-1.5 4.9,-1.5 7,0 l 1.2,-1.2 c -1.6,-3.5 -0.1,-7.7 3.4,-9.3 3.5,-1.6 7.7,-0.1 9.3,3.4 0.8,1.8 0.9,3.9 0.1,5.7 l 2.2,1.6 c 0.2,-0.2 0.4,-0.4 0.6,-0.5 2.4,-1.7 5.7,-1.1 7.3,1.2 1.7,2.4 1.1,5.7 -1.2,7.3 C 36,29 32.7,28.4 31.1,26.1 30,24.6 29.8,22.6 30.6,20.9 l -2.1,-1.5 c -1.1,1.3 -2.6,2.2 -4.3,2.4 v 8 c 0,0 0,0 0,0 3.8,6.1 11.9,7.9 17.9,4 6,-3.9 7.9,-11.9 4,-17.9 -2,-2.9 -5.2,-5.1 -8.9,-5.7 z" - id="path4341" - style="fill:#0072c6" /><circle - class="st0" - cx="12" - cy="24" - r="4" - id="circle4343" - style="fill:#0072c6" /></g><g - class="st1" - id="g4349" - style="opacity:0.3"><path - inkscape:connector-curvature="0" - class="st2" - d="M 12.2,16.6 C 13.5,8.5 21.1,2.9 29.3,4.2 c 2.2,0.3 4.3,1.2 6.1,2.4 -4.6,-6.8 -13.9,-8.7 -20.8,-4 -3.4,2.3 -5.8,6 -6.4,10.1 -6.2,2 -9.6,8.8 -7.6,15.1 0.9,2.7 2.7,5 5.2,6.5 -3.5,-5.6 -1.7,-13 4,-16.5 0.7,-0.5 1.6,-0.9 2.4,-1.2 z" - id="path4347" - style="fill:#ffffff" /></g></g></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="48.158" height="35.919"><g fill="#0072c6"><circle cx="23.021" cy="15.008" r="5"/><path d="M37.22 10.208c-2.6-7.8-11.1-12.1-19-9.4-5.2 1.8-9.1 6.3-10 11.8-6.3 2.1-9.7 8.9-7.6 15.1s8.9 9.7 15.1 7.6c2.6-.9 4.8-2.6 6.3-4.8v-8.7c-1.6-.2-3.1-1-4.2-2.3l-.9.9c1.9 2.7 1.3 6.5-1.4 8.4s-6.5 1.3-8.4-1.4-1.3-6.4 1.4-8.3c2.1-1.5 4.9-1.5 7 0l1.2-1.2c-1.6-3.5-.1-7.7 3.4-9.3s7.7-.1 9.3 3.4c.8 1.8.9 3.9.1 5.7l2.2 1.6c.2-.2.4-.4.6-.5 2.4-1.7 5.7-1.1 7.3 1.2 1.7 2.4 1.1 5.7-1.2 7.3-2.4 1.7-5.7 1.1-7.3-1.2a5.12 5.12 0 0 1-.5-5.2l-2.1-1.5c-1.1 1.3-2.6 2.2-4.3 2.4v8c3.8 6.1 11.9 7.9 17.9 4s7.9-11.9 4-17.9c-2-2.9-5.2-5.1-8.9-5.7z"/><circle cx="12.021" cy="24.008" r="4"/></g><path d="M12.22 16.608c1.3-8.1 8.9-13.7 17.1-12.4 2.2.3 4.3 1.2 6.1 2.4-4.6-6.8-13.9-8.7-20.8-4-3.4 2.3-5.8 6-6.4 10.1-6.2 2-9.6 8.8-7.6 15.1.9 2.7 2.7 5 5.2 6.5-3.5-5.6-1.7-13 4-16.5.7-.5 1.6-.9 2.4-1.2z" fill="#fff" opacity=".3"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Blog_Storage.svg b/src/main/webapp/img/lib/mscae/Blog_Storage.svg new file mode 100644 index 0000000000000000000000000000000000000000..1f214ec35d7b3e1d4f65fdd06222a73099fb3bf6 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Blog_Storage.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="46"><path d="M44 46H6a6 6 0 0 1-6-6V0h50v40a6 6 0 0 1-6 6z" fill="#3e3e3e"/><path d="M4 30h23v12H4zM4 0h7v12H4z" fill="#804998"/><path d="M4 0h7v2H4z" opacity=".2" fill="#fff"/><path d="M14 0h11v12H14z" fill="#e5e5e5"/><path d="M14 0h11v2H14z" opacity=".2" fill="#fff"/><path d="M28 0h4v12h-4z" fill="#804998"/><path d="M28 0h4v2h-4z" opacity=".2" fill="#fff"/><path d="M35 0h11v12H35z" fill="#59b4d9"/><path d="M35 0h11v2H35zM4 30h23v2H4z" opacity=".2" fill="#fff"/><path d="M30 30h16v12H30z" fill="#59b4d9"/><path d="M30 30h16v2H30z" opacity=".2" fill="#fff"/><path d="M23 15h23v12H23z" fill="#e5e5e5"/><path d="M46 17H23v-2h23z" opacity=".2" fill="#fff"/><path d="M4 15h16v12H4z" fill="#59b4d9"/><g fill="#fff"><path d="M20 17H4v-2h16z" opacity=".2"/><path d="M6 46h2.696L40.08 0H0v40a6 6 0 0 0 6 6z" opacity=".15"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Blueprints.svg b/src/main/webapp/img/lib/mscae/Blueprints.svg new file mode 100644 index 0000000000000000000000000000000000000000..42472013618b042f4b1ae2b990cb2ef8abf473ce --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Blueprints.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="48" height="45.9"><use xlink:href="#B" fill="#59b4d9"/><use xlink:href="#B" opacity=".7" fill="#fff"/><g fill="#0072c6"><path d="M38.1 4.9H11C11 1.9 8.5 0 5.5 0S0 1.9 0 4.9v30c0 5 3 6 6 6h35v5s7 0 7-5V13c0-6-3-8.1-9.9-8.1zM46 41.1s-2-2.2-5.9-2.2H6c-2 0-4-.5-4-3.5 0-1.7 1.3-3.5 4-3.5 3 0 4.9 3 4.9 3h.1v-28h28.1c4 0 6.9 1.1 6.9 5.1zM35 29.85l1.5 4 1.5-4zm0-14h3v12h-3zm1.5-4.9c.828 0 1.5.647 1.5 1.446l-.027 1.454L35 13.826v-1.43c0-.798.672-1.445 1.5-1.445zm-13.5-1c.552 0 1 .647 1 1.446l-.018 1.454L22 12.826v-1.43c0-.798.448-1.445 1-1.445z"/><path d="M23 11.952a3.9 3.9 0 0 0-3.377 5.85 3.9 3.9 0 0 0 7.277-1.95 3.9 3.9 0 0 0-3.9-3.9zm0 6.8c-1.6 0-2.9-1.3-2.9-2.9s1.3-2.9 2.9-2.9 2.9 1.3 2.9 2.9-1.3 2.9-2.9 2.9z"/><path d="M23 18.766v-1.914l-1.867 1.307-4.017 12.364-.285 4.112 2.187-3.494 4.017-12.364z"/><path d="M28.884 30.523L24.867 18.16 23 16.852v1.914l-.035.01 4.018 12.364 2.186 3.494z"/><path d="M31 25.852H15a.5.5 0 1 1 0-1h16a.5.5 0 1 1 0 1z"/></g><defs ><path id="B" d="M42.4 44.856c-.48 0 .01.098-.4 0V39.9H6c-.204 0-5-.046-5-4v-31C1 2.22 3.333 1 5.5 1S10 2.22 10 4.9v1h28.1C43.507 5.9 47 7.53 47 13v28.9c0 2.244-2.02 2.957-4.6 2.957z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Book.svg b/src/main/webapp/img/lib/mscae/Book.svg index 77936302bb845619c72862befdda0fbdedcb5562..f4758d55807250372711fdbd119a8a6639b89a8e 100644 --- a/src/main/webapp/img/lib/mscae/Book.svg +++ b/src/main/webapp/img/lib/mscae/Book.svg @@ -1,85 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="37.978085" - viewBox="0 0 50 37.978085" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Book.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata4971"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs4969" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1851" - inkscape:window-height="921" - id="namedview4967" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.020815" - inkscape:cx="23.684263" - inkscape:cy="19.354483" - inkscape:window-x="1928" - inkscape:window-y="22" - inkscape:window-maximized="0" - inkscape:current-layer="Layer_1" /> -<path - d="m 36.194,24.326083 c 2.303,0 4.003,0.407 5.126,0.801 0.562,0.197 0.969,0.393 1.236,0.534 l 0.256,0.148 v -3.206 c -1.418,-0.555 -3.619,-1.156 -6.619,-1.156 -2.991,0 -5.15,0.597 -6.545,1.154 v 3.214 c 0.183,-0.113 2.318,-1.489 6.546,-1.489 z" - id="path4952" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="m 36.194,18.090083 c 2.303,0 4.003,0.421 5.126,0.815 0.562,0.197 0.969,0.379 1.236,0.52 l 0.256,0.148 v -3.206 c -1.418,-0.555 -3.619,-1.156 -6.619,-1.156 -2.991,0 -5.15,0.602 -6.545,1.159 v 3.223 c 0.099,-0.056 2.234,-1.489 6.546,-1.503 z" - id="path4954" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="m 29.649,13.371083 c 0.098,-0.07 2.233,-1.503 6.545,-1.503 2.303,0 4.003,0.407 5.126,0.801 0.562,0.197 0.969,0.393 1.236,0.52 l 0.256,0.162 v -3.205 C 41.394,9.5900829 39.194,8.9890829 36.194,8.9890829 c -2.991,0 -5.15,0.597 -6.545,1.1540001 v 3.214 z" - id="path4956" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="m 13.806,24.326083 c -2.303,0 -4.003,0.407 -5.126,0.801 -0.562,0.197 -0.969,0.393 -1.236,0.534 l -0.256,0.148 v -3.206 c 1.418,-0.555 3.619,-1.156 6.619,-1.156 2.991,0 5.15,0.597 6.545,1.154 v 3.214 c -0.183,-0.113 -2.318,-1.489 -6.546,-1.489 z" - id="path4958" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="m 13.806,18.090083 c -2.303,0 -4.003,0.421 -5.126,0.815 -0.562,0.197 -0.969,0.379 -1.236,0.52 l -0.256,0.148 v -3.206 c 1.418,-0.555 3.619,-1.156 6.619,-1.156 2.991,0 5.15,0.602 6.545,1.159 v 3.223 c -0.099,-0.056 -2.234,-1.489 -6.546,-1.503 z" - id="path4960" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="m 20.351,13.371083 c -0.098,-0.07 -2.233,-1.503 -6.545,-1.503 -2.303,0 -4.003,0.407 -5.126,0.801 -0.562,0.197 -0.969,0.393 -1.236,0.52 l -0.256,0.162 v -3.205 c 1.418,-0.5560001 3.618,-1.1570001 6.618,-1.1570001 2.991,0 5.15,0.597 6.545,1.1540001 v 3.214 z" - id="path4962" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="m 49.761,7.8230829 c -0.07,-0.098 -1.32,-1.98 -3.483,-3.905 C 44.115,1.9940829 40.772,8.2908582e-5 36.376,8.2908582e-5 31.966,-0.01391709 28.665,2.0080829 26.544,3.9320829 c -0.598,0.546 -1.113,1.088 -1.545,1.589 -0.431,-0.502 -0.947,-1.043 -1.545,-1.589 -2.121,-1.924 -5.421,-3.94699999 -9.832,-3.931999991418 -4.396,0 -7.739,1.993999991418 -9.902,3.917999991418 -2.163,1.924 -3.413,3.806 -3.483,3.905 L 0,8.7360829 V 37.079083 l 3.399,0.899 h 0.169 v -0.014 l 0.014,-0.028 0.112,-0.169 c 0.112,-0.155 0.267,-0.393 0.492,-0.674 0.435,-0.576 1.095,-1.362 1.952,-2.121 1.756,-1.545 4.228,-3.006 7.486,-3.006 3.16,0 5.534,1.362 7.219,2.837 0.71,0.626 0.979,1.286 1.067,1.844 H 25 28.09 c 0.089,-0.558 0.357,-1.218 1.067,-1.844 1.685,-1.475 4.059,-2.837 7.219,-2.837 3.258,0 5.73,1.461 7.486,3.006 0.857,0.758 1.517,1.545 1.952,2.121 0.225,0.281 0.379,0.52 0.492,0.674 l 0.112,0.169 0.014,0.028 v 0.014 h 0.169 L 50,37.079083 V 8.7360829 Z M 23.75,32.107083 c -2.121,-1.868 -5.421,-3.778 -9.691,-3.764 -4.354,0 -8.146,1.952 -10.309,3.848 V 9.2560829 l 0.379,-0.52 c 0.435,-0.562 1.152,-1.348 2.008,-2.107 1.756,-1.545 4.228,-3.006 7.486,-3.006 3.16,0 6.011,1.362 7.697,2.837 1.236,1.081 2.065,2.219 2.43,2.781 z m 22.5,0.084 c -2.163,-1.896 -5.955,-3.848 -10.309,-3.848 -4.27,-0.014 -7.57,1.896 -9.691,3.764 V 9.2420829 c 0.365,-0.562 1.194,-1.699 2.43,-2.781 1.685,-1.475 4.536,-2.837 7.697,-2.837 3.258,0 5.73,1.461 7.486,3.006 0.857,0.758 1.573,1.545 2.008,2.107 l 0.379,0.52 c 0,0 0,22.9340001 0,22.9340001 z" - id="path4964" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="37.978" fill="#59b4d9"><path d="M36.194 24.326c2.303 0 4.003.407 5.126.8a8.98 8.98 0 0 1 1.236.534l.256.148v-3.206c-1.418-.555-3.62-1.156-6.62-1.156-3 0-5.15.597-6.545 1.154v3.214c.183-.113 2.318-1.5 6.546-1.5zm0-6.226c2.303 0 4.003.42 5.126.815a9.38 9.38 0 0 1 1.236.52l.256.148v-3.206c-1.418-.555-3.62-1.156-6.62-1.156-3 0-5.15.602-6.545 1.16v3.223c.1-.056 2.234-1.5 6.546-1.503zm-6.544-4.73c.098-.07 2.233-1.503 6.545-1.503 2.303 0 4.003.407 5.126.8.562.197.97.393 1.236.52l.256.162v-3.205C41.394 9.6 39.194 9 36.194 9c-3 0-5.15.597-6.545 1.154v3.214zM13.806 24.326c-2.303 0-4.003.407-5.126.8a8.98 8.98 0 0 0-1.236.534l-.256.148v-3.206c1.418-.555 3.62-1.156 6.62-1.156 3 0 5.15.597 6.545 1.154v3.214c-.183-.113-2.318-1.5-6.546-1.5zm0-6.226c-2.303 0-4.003.42-5.126.815a9.38 9.38 0 0 0-1.236.52l-.256.148v-3.206c1.418-.555 3.62-1.156 6.62-1.156 3 0 5.15.602 6.545 1.16v3.223c-.1-.056-2.234-1.5-6.546-1.503zm6.544-4.73c-.098-.07-2.233-1.503-6.545-1.503-2.303 0-4.003.407-5.126.8-.562.197-.97.393-1.236.52l-.256.162v-3.205C8.606 9.6 10.806 9 13.806 9c3 0 5.15.597 6.545 1.154v3.214zm29.4-5.547c-.07-.098-1.32-1.98-3.483-3.905S40.772 0 36.376 0c-4.4-.014-7.7 2.008-9.832 3.932a18.65 18.65 0 0 0-1.545 1.589c-.43-.502-.947-1.043-1.545-1.6-2.12-1.924-5.42-3.947-9.832-3.932-4.396 0-7.74 1.994-9.902 3.918S.307 7.724.237 7.823L0 8.736V37.08l3.4.9h.17v-.014l.014-.028.112-.17c.112-.155.267-.393.492-.674a14.65 14.65 0 0 1 1.952-2.12c1.756-1.545 4.228-3.006 7.486-3.006 3.16 0 5.534 1.362 7.22 2.837.7.626.98 1.286 1.067 1.844h6.18c.1-.558.357-1.218 1.067-1.844 1.685-1.475 4.06-2.837 7.22-2.837 3.258 0 5.73 1.46 7.486 3.006a14.65 14.65 0 0 1 1.952 2.121c.225.28.38.52.492.674l.112.17.014.028v.014h.17l3.4-.9V8.736zm-26 24.284c-2.12-1.868-5.42-3.778-9.7-3.764-4.354 0-8.146 1.952-10.3 3.848V9.256l.38-.52c.435-.562 1.152-1.348 2.008-2.107 1.756-1.545 4.228-3.006 7.486-3.006 3.16 0 6 1.362 7.697 2.837a13.97 13.97 0 0 1 2.43 2.781zm22.5.084c-2.163-1.896-5.955-3.848-10.3-3.848-4.27-.014-7.57 1.896-9.7 3.764V9.242a14 14 0 0 1 2.43-2.781c1.685-1.475 4.536-2.837 7.697-2.837 3.258 0 5.73 1.46 7.486 3.006.857.758 1.573 1.545 2.008 2.107l.38.52V32.2z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Bot_Services.svg b/src/main/webapp/img/lib/mscae/Bot_Services.svg new file mode 100644 index 0000000000000000000000000000000000000000..782424b527a24f02f16a024d80cd7011c9431bf4 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Bot_Services.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="88" height="88" fill="#59b4d9"><circle cx="36" cy="44" r="4"/><circle cx="52" cy="44" r="4"/><path d="M20 33h5v35h-5z"/><path d="M20 63h35v5H20zm43-43h5v35h-5z"/><path d="M33 20h35v5H33zM44 0a44 44 0 1 0 44 44A44 44 0 0 0 44 0zm0 82a38 38 0 1 1 38-38 38 38 0 0 1-38 38z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Branch.svg b/src/main/webapp/img/lib/mscae/Branch.svg index 8db652ce8c81bcb0bb4f5d43e085de5f4905625a..75b78daaa7f4dad4c267788229ac4ff4fc6944a2 100644 --- a/src/main/webapp/img/lib/mscae/Branch.svg +++ b/src/main/webapp/img/lib/mscae/Branch.svg @@ -1,13 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - height="50px" width="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#3999C6" d="M49,22.5c1.4,1.4,1.4,3.7,0,5L27.5,49c-1.4,1.4-3.7,1.4-5,0L1,27.5c-1.4-1.4-1.4-3.7,0-5L22.5,1 - c1.4-1.4,3.7-1.4,5,0L49,22.5z"/> -<polygon fill="#FFFFFF" points="16.2,30.1 23.2,39.9 30.2,30.1 "/> -<polygon fill="#FFFFFF" points="33.5,30.1 39.9,28.5 36.4,22.9 "/> -<rect x="21" y="11.1" fill="#FFFFFF" width="4.5" height="20.1"/> -<path fill="#FFFFFF" d="M37,29.1c-16.9-4.5-15.7-15.3-15.7-15.8l3.7,0.5l-1.9-0.2l1.9,0.2c0,0.3-0.7,8.1,12.9,11.7L37,29.1z"/> -<path opacity="0.2" fill="#FFFFFF" d="M27.5,1c-1.4-1.4-3.7-1.4-5,0L1,22.5c-1.4,1.4-1.4,3.7,0,5l14.1,14.1L33.7,7.2L27.5,1z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" height="50" width="50"><path fill="#3999c6" d="M49 22.5c1.4 1.4 1.4 3.7 0 5L27.5 49c-1.4 1.4-3.7 1.4-5 0L1 27.5c-1.4-1.4-1.4-3.7 0-5L22.5 1c1.4-1.4 3.7-1.4 5 0L49 22.5z"/><g fill="#fff"><path d="M16.2 30.1l7 9.8 7-9.8zm17.3 0l6.4-1.6-3.5-5.6z"/><path d="M21 11.1h4.5v20.1H21z"/><path d="M37 29.1c-16.9-4.5-15.7-15.3-15.7-15.8l3.7.5-1.9-.2 1.9.2c0 .3-.7 8.1 12.9 11.7l-.9 3.6z"/><path opacity=".2" d="M27.5,1c-1.4-1.4-3.7-1.4-5,0L1,22.5c-1.4,1.4-1.4,3.7,0,5l14.1,14.1L33.7,7.2L27.5,1z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Browser.svg b/src/main/webapp/img/lib/mscae/Browser.svg index 373fd9d2cf296a9fa19f572d53b840f5ca800843..213f9d52107ef1b4cca95b577a260ab7f7cf5c37 100644 --- a/src/main/webapp/img/lib/mscae/Browser.svg +++ b/src/main/webapp/img/lib/mscae/Browser.svg @@ -1,83 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="42.633999" - viewBox="0.5 0.5 50 42.633999" - enable-background="new 0.5 0.5 50 50" - xml:space="preserve" - sodipodi:docname="Browser.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata5063"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs5061" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1851" - inkscape:window-height="921" - id="namedview5059" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="8.5" - inkscape:cx="34.010504" - inkscape:cy="19.210279" - inkscape:window-x="1930" - inkscape:window-y="0" - inkscape:window-maximized="0" - inkscape:current-layer="Layer_1" /> -<path - d="m 0.5,41.127 c 0,1.108 0.898,2.007 2.007,2.007 h 45.986 c 1.109,0 2.007,-0.899 2.007,-2.007 V 9.798 h -50 z" - id="path5046" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="M 48.493,0.5 H 2.507 C 1.398,0.5 0.5,1.398 0.5,2.507 v 10.627 h 50 V 2.507 C 50.5,1.398 49.601,0.5 48.493,0.5" - id="path5048" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<path - enable-background="new " - d="M 2.514,0.5 C 1.406,0.5 0.507,1.398 0.507,2.507 v 7.291 3.336 27.993 c 0,1.108 0.899,2.007 2.007,2.007 H 4.702 L 44.12,0.5 Z" - id="path5050" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#ffffff" /> -<rect - x="13.357" - y="5.2790003" - width="33.671001" - height="3.9419999" - id="rect5052" - style="fill:#ffffff" /> -<path - d="m 11.81,7.183 c 0,2.693 -2.184,4.878 -4.878,4.878 -2.694,0 -4.878,-2.185 -4.878,-4.878 0,-2.694 2.184,-4.879 4.878,-4.879 2.693,0 4.878,2.185 4.878,4.879" - id="path5054" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<polygon - points="7.428,14.068 4.469,11.25 7.417,8.432 8.615,8.432 6.416,10.754 11.809,10.754 11.809,11.732 6.416,11.732 8.629,14.068 " - id="polygon5056" - style="fill:#ffffff" - transform="translate(0,-4)" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="42.634" viewBox="0.5 0.5 50 42.634"><path d="M.5 41.127c0 1.108.898 2.007 2.007 2.007h45.986c1.11 0 2.007-.9 2.007-2.007V9.798H.5z" fill="#59b4d9"/><path d="M48.493.5H2.507C1.398.5.5 1.398.5 2.507v10.627h50V2.507C50.5 1.398 49.6.5 48.493.5" fill="#a0a1a2"/><g fill="#fff"><path d="M2.514.5C1.406.5.507 1.398.507 2.507v38.62a2.01 2.01 0 0 0 2.007 2.007h2.188L44.12.5z" opacity=".2"/><path d="M13.357 5.28h33.67V9.22h-33.67z"/></g><path d="M11.8 7.183a4.88 4.88 0 0 1-4.878 4.878 4.88 4.88 0 0 1-4.878-4.878 4.88 4.88 0 0 1 4.878-4.879 4.88 4.88 0 0 1 4.878 4.879" fill="#59b4d9"/><path d="M7.428 10.068L4.47 7.25l2.948-2.818h1.198l-2.2 2.322h5.393v.978H6.416l2.213 2.336z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Bug.svg b/src/main/webapp/img/lib/mscae/Bug.svg index 7c37b4abc69c88039b36bdfa1feea2b23e0d583f..4ed9ed51572558845d3859b46c8c5db5b1da770d 100644 --- a/src/main/webapp/img/lib/mscae/Bug.svg +++ b/src/main/webapp/img/lib/mscae/Bug.svg @@ -1,36 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#7A7A7A" d="M7.824,32.85c0-0.726,0.032-1.442,0.094-2.147H2.1c-1.159,0-2.1,0.93-2.1,2.076s0.941,2.076,2.1,2.076h5.808 - C7.852,34.196,7.824,33.527,7.824,32.85 M46.381,20.733c0.82-0.813,0.82-2.127,0-2.939c-0.82-0.811-2.152-0.811-2.971,0 - l-3.713,3.671c0.723,1.273,1.327,2.648,1.797,4.099L46.381,20.733z M3.619,45.415c-0.821,0.811-0.821,2.127,0,2.936 - c0.82,0.812,2.15,0.812,2.97,0l4.166-4.118c-0.721-1.272-1.327-2.646-1.794-4.098L3.619,45.415z M8.85,25.904 - c0.45-1.468,1.041-2.856,1.749-4.148l-4.008-3.962c-0.82-0.811-2.151-0.811-2.972,0c-0.821,0.812-0.821,2.126,0,2.939L8.85,25.904z - M41.379,40.472c-0.489,1.434-1.11,2.792-1.85,4.044l3.881,3.835c0.819,0.812,2.15,0.812,2.971,0c0.82-0.809,0.82-2.125,0-2.936 - L41.379,40.472z M47.898,30.703h-5.363c0.061,0.705,0.095,1.421,0.095,2.147c0,0.677-0.03,1.346-0.085,2.005h5.353 - c1.161,0,2.102-0.93,2.102-2.076C50,31.633,49.059,30.703,47.898,30.703"/> -<path fill="#804998" d="M23.736,36.485L23.736,36.485V17.199h-4.762c-4.681,2.849-7.905,8.745-7.905,15.543 - c0,0.551,0.022,1.095,0.063,1.633c0.02,0.267,0.06,0.527,0.091,0.791c0.03,0.263,0.052,0.529,0.092,0.787 - c0.059,0.383,0.139,0.757,0.218,1.131c0.028,0.129,0.047,0.262,0.077,0.39c0.103,0.442,0.225,0.874,0.356,1.301 - c0.016,0.053,0.028,0.109,0.045,0.162c0.148,0.47,0.314,0.93,0.494,1.38c0.003,0.006,0.005,0.013,0.007,0.02 - c0.549,1.369,1.243,2.633,2.054,3.772c0.005,0.007,0.009,0.015,0.014,0.022l0,0c1.137,1.59,2.504,2.927,4.042,3.93 - c0.011,0.007,0.021,0.016,0.033,0.023c0.353,0.228,0.715,0.436,1.084,0.628c0.039,0.02,0.076,0.045,0.114,0.065 - c0.347,0.176,0.703,0.33,1.063,0.473c0.063,0.025,0.124,0.058,0.188,0.082c0.355,0.134,0.718,0.244,1.084,0.344 - c0.072,0.02,0.14,0.048,0.212,0.066c0.438,0.111,0.883,0.2,1.335,0.261l0,0h0.001C23.736,50.003,23.736,36.485,23.736,36.485z"/> -<path fill="#804998" d="M39.561,32.742c0-0.394-0.013-0.784-0.036-1.171c-0.011-0.198-0.031-0.392-0.047-0.588 - c-0.014-0.16-0.025-0.32-0.043-0.479c-0.518-4.874-2.699-9.114-5.826-11.856c-0.027-0.024-0.053-0.048-0.08-0.072 - c-0.25-0.216-0.506-0.421-0.768-0.618c-0.056-0.042-0.111-0.088-0.167-0.129c-0.306-0.223-0.619-0.436-0.939-0.631h-4.762v16.65l0,0 - V50l0,0c3.964-0.536,7.439-3.064,9.742-6.739C38.468,40.341,39.561,36.696,39.561,32.742z"/> -<path fill="#7A7A7A" d="M13.372,1.803c3.442,0.024,5.003,1.288,5.917,2.697c0.753,1.182,0.967,2.557,1.014,3.374 - c-1.92,1.301-3.296,3.327-3.727,5.682h17.479c-0.431-2.355-1.809-4.381-3.729-5.682c0.049-0.819,0.262-2.192,1.014-3.374 - c0.913-1.407,2.474-2.671,5.92-2.697c0.504,0,0.912-0.404,0.912-0.901C38.173,0.405,37.765,0,37.261,0 - c-3.931-0.024-6.298,1.641-7.471,3.546c-0.749,1.2-1.068,2.444-1.203,3.412c-1.013-0.4-2.114-0.621-3.269-0.623 - c-1.157,0.002-2.262,0.225-3.274,0.623c-0.136-0.968-0.454-2.212-1.205-3.412c-1.172-1.905-3.54-3.57-7.467-3.546 - c-0.506,0-0.913,0.405-0.913,0.902S12.866,1.803,13.372,1.803"/> -<path opacity="0.2" fill="#FFFFFF" enable-background="new " d="M18.974,17.199c-4.681,2.849-7.905,8.745-7.905,15.543 - c0,4.356,1.33,8.335,3.511,11.387l9.156-7.644V17.199H18.974z"/> -<path opacity="0.2" fill="#FFFFFF" enable-background="new " d="M31.656,17.199h-4.762v16.65l10.994-9.177 - C36.493,21.462,34.326,18.824,31.656,17.199"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path fill="#7a7a7a" d="M7.824 32.85l.094-2.147H2.1A2.09 2.09 0 0 0 0 32.779a2.09 2.09 0 0 0 2.1 2.076h5.808l-.084-2.005M46.38 20.733c.82-.813.82-2.127 0-2.94a2.12 2.12 0 0 0-2.971 0l-3.713 3.67c.723 1.273 1.327 2.648 1.797 4.1l4.887-4.83zM3.62 45.415a2.06 2.06 0 0 0 0 2.936c.82.812 2.15.812 2.97 0l4.166-4.118c-.72-1.272-1.327-2.646-1.794-4.098l-5.342 5.28zm5.23-19.51a22.12 22.12 0 0 1 1.749-4.148L6.59 17.794a2.12 2.12 0 0 0-2.972 0 2.06 2.06 0 0 0 0 2.939l5.23 5.17zm32.53 14.568c-.49 1.434-1.1 2.792-1.85 4.044l3.88 3.835c.82.812 2.15.812 2.97 0a2.06 2.06 0 0 0 0-2.936l-5.002-4.943zm6.52-9.77h-5.363l.095 2.147-.085 2.005h5.353A2.09 2.09 0 0 0 50 32.779a2.09 2.09 0 0 0-2.102-2.076"/><path d="M23.736 36.485V17.2h-4.762c-4.68 2.85-7.905 8.745-7.905 15.543 0 .55.022 1.095.063 1.633.02.267.06.527.1.8s.052.53.092.787c.06.383.14.757.218 1.13.028.13.047.262.077.4a19.59 19.59 0 0 0 .356 1.301c.016.053.028.1.045.162a19.43 19.43 0 0 0 .494 1.38c.003.006.005.013.007.02a18.14 18.14 0 0 0 2.054 3.772.27.27 0 0 1 .014.022c1.137 1.6 2.504 2.927 4.042 3.93.01.007.02.016.033.023.353.228.715.436 1.084.628.04.02.076.045.114.065a12.74 12.74 0 0 0 1.063.473c.063.025.124.058.188.082a12.07 12.07 0 0 0 1.084.344c.072.02.14.048.212.066.438.1.883.2 1.335.26l.001-13.526zm15.824-3.743l-.036-1.17-.047-.588-.043-.48c-.518-4.874-2.7-9.114-5.826-11.856l-.08-.072c-.25-.216-.506-.42-.768-.618l-.167-.13c-.306-.223-.62-.436-.94-.63H26.89V50c3.964-.536 7.44-3.064 9.742-6.74 1.833-2.92 2.926-6.565 2.926-10.52z" fill="#804998"/><path fill="#7a7a7a" d="M13.372 1.803c3.442.024 5.003 1.288 5.917 2.697.753 1.182.967 2.557 1.014 3.374-1.92 1.3-3.296 3.327-3.727 5.682h17.48c-.43-2.355-1.81-4.38-3.73-5.682.05-.82.262-2.192 1.014-3.374.913-1.407 2.474-2.67 5.92-2.697.504 0 .912-.404.912-.9S37.765 0 37.26 0c-3.93-.024-6.298 1.64-7.47 3.546-.75 1.2-1.068 2.444-1.203 3.412-1.013-.4-2.114-.62-3.27-.623s-2.262.225-3.274.623C21.908 6 21.6 4.746 20.84 3.546 19.667 1.64 17.3-.024 13.372 0c-.506 0-.913.405-.913.902s.407.9.913.9"/><path opacity=".2" d="M18.974 17.2c-4.68 2.85-7.905 8.745-7.905 15.543 0 4.356 1.33 8.335 3.5 11.387l9.156-7.644V17.2h-4.762zm12.682 0h-4.762v16.65l10.994-9.177c-1.395-3.2-3.562-5.848-6.232-7.473" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Building_Blocks.svg b/src/main/webapp/img/lib/mscae/Building_Blocks.svg index 8d94c81114f45f00e4b11962153b236edb36cedf..cfb1b0b368d6cf590f28b7a70763359208f3c33b 100644 --- a/src/main/webapp/img/lib/mscae/Building_Blocks.svg +++ b/src/main/webapp/img/lib/mscae/Building_Blocks.svg @@ -1,90 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_2" - x="0px" - y="0px" - width="45.048302" - height="40" - viewBox="0 0 45.048302 40" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Az_building_blocks_50.svg"><metadata - id="metadata4249"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs4247" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview4245" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17.02" - inkscape:cx="23" - inkscape:cy="21" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_2" /><rect - x="0" - y="28" - width="12" - height="12" - id="rect4231" - style="fill:#3999c6" /><rect - x="0" - y="14" - width="12" - height="12" - id="rect4233" - style="fill:#0072c6" /><rect - x="14" - y="28" - width="12" - height="12" - id="rect4235" - style="fill:#0072c6" /><rect - x="22.620646" - y="19.490866" - transform="matrix(0.89442719,-0.4472136,0.4472136,0.89442719,0,0)" - width="11.999635" - height="11.999635" - id="rect4237" - style="fill:#0072c6" /><rect - x="28" - y="28" - width="12" - height="12" - id="rect4239" - style="fill:#3999c6" /><rect - x="14" - y="14" - width="12" - height="12" - id="rect4241" - style="fill:#3999c6" /><rect - x="0" - y="0" - width="12" - height="12" - id="rect4243" - style="fill:#3999c6" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="45.048" height="40"><path d="M0 28h12v12H0z" fill="#3999c6"/><path d="M0 14h12v12H0zm14 14h12v12H14zM28.95 7.317L39.682 1.95l5.366 10.733-10.733 5.366z" fill="#0072c6"/><path d="M28 28h12v12H28zM14 14h12v12H14zM0 0h12v12H0z" fill="#3999c6"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Builds.svg b/src/main/webapp/img/lib/mscae/Builds.svg index 3220fa784993ee57868d5e2611dc6f294c66e560..ae9336b7ea39ccce57a7f51c1f394e270a80829a 100644 --- a/src/main/webapp/img/lib/mscae/Builds.svg +++ b/src/main/webapp/img/lib/mscae/Builds.svg @@ -1,16 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0.5 0.5 50 50" enable-background="new 0.5 0.5 50 50" xml:space="preserve"> -<polygon fill="#804998" points="26.931,12.098 33.833,5.55 33.833,9.103 25.504,17.854 17.167,9.134 17.167,5.592 24.032,12.098 - 24.032,0.5 26.931,0.5 "/> -<path fill="#804998" d="M0.5,48.647c0,1.021,0.836,1.853,1.848,1.853h46.295c1.02,0,1.853-0.832,1.853-1.853L50.5,15.508h-3.768 - v15.796H4.201V15.508H0.5V48.647z"/> -<rect x="4.228" y="31.304" opacity="0.35" fill="#FFFFFF" enable-background="new " width="42.5" height="15.206"/> -<rect x="21.146" y="19.979" fill="#B8D432" width="8.323" height="8.324"/> -<rect x="33.564" y="19.979" fill="#B8D432" width="8.32" height="8.324"/> -<rect x="8.729" y="19.979" fill="#B8D432" width="8.324" height="8.324"/> -<rect x="26.673" y="34.474" fill="#B8D432" width="8.323" height="8.324"/> -<rect x="14.256" y="34.474" fill="#B8D432" width="8.324" height="8.324"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0.5 0.5 50 50"><path d="M26.93 12.098l6.902-6.548v3.553l-8.33 8.75-8.337-8.72v-3.54l6.865 6.506V.5h2.9zM.5 48.647A1.86 1.86 0 0 0 2.348 50.5h46.295c1.02 0 1.853-.832 1.853-1.853l.004-33.14h-3.768v15.796H4.2V15.508H.5v33.14z" fill="#804998"/><path opacity=".35" fill="#fff" d="M4.228 31.304h42.5V46.5h-42.5z"/><path d="M21.146 19.98h8.323v8.324h-8.323zm12.418 0h8.32v8.324h-8.32zm-24.834 0h8.324v8.324H8.73zm17.943 14.494h8.323v8.324h-8.323zm-12.417 0h8.324v8.324h-8.324z" fill="#b8d432"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/CDNrocket.svg b/src/main/webapp/img/lib/mscae/CDNrocket.svg index e70730363e1ae16c12cf34cb30de73d2504991cb..4cd743fb538c2f1e98e4317795e9959a4c69a741 100644 --- a/src/main/webapp/img/lib/mscae/CDNrocket.svg +++ b/src/main/webapp/img/lib/mscae/CDNrocket.svg @@ -1,30 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" style="enable-background:new 0 0 50 50;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#DD5900;} - .st1{fill:#FCD116;} - .st2{fill:#3999C6;} - .st3{opacity:0.2;fill:#FFFFFF;enable-background:new ;} - .st4{fill:#68217A;} - .st5{fill:#E5E5E5;} - .st6{fill:#0072C6;} - .st7{opacity:0.15;fill:#FFFFFF;enable-background:new ;} -</style> -<ellipse transform="matrix(-0.7071 -0.7071 0.7071 -0.7071 -5.5673 72.8951)" class="st0" cx="12.313" cy="37.601" rx="4.1" ry="16.9"/> -<ellipse transform="matrix(-0.7071 -0.7071 0.7071 -0.7071 -5.5673 72.8951)" class="st1" cx="12.313" cy="37.601" rx="2.5" ry="12.2"/> -<path class="st2" d="M49.986,18.6c0-2.4-1.9-4.3-4.2-4.3c-0.2,0-0.3,0-0.6,0c0.2-0.9,0.4-1.9,0.4-3c0-6.2-5.1-11.2-11.2-11.2 - c-4.9,0-9.1,3.3-10.6,7.6c-0.8-0.2-1.6-0.4-2.5-0.4c-4.3,0-7.6,3.5-7.6,7.8s3.4,7.8,7.6,7.8l0,0l0,0h24.7l0,0 - C48.286,22.6,49.986,20.8,49.986,18.6"/> -<path class="st3" d="M25.286,22.8c-1-1-1.8-2.2-2.1-3.8c-0.9-4.2,1.6-8.3,5.7-9.2c0.9-0.2,1.7-0.2,2.6-0.1c0.3-3.9,2.7-7.3,6.3-9 - c-1.1-0.3-2.2-0.6-3.4-0.6c-4.9,0-9.1,3.3-10.6,7.6c-0.8-0.2-1.6-0.4-2.5-0.4c-4.3,0-7.6,3.5-7.6,7.8s3.4,7.8,7.6,7.8l0,0l0,0h4 - V22.8z"/> -<polygon class="st4" points="4.686,21.6 4.686,30.8 8.586,34.6 17.786,34.6 17.786,21.6 "/> -<polygon class="st4" points="28.486,45.3 19.286,45.3 15.386,41.5 15.386,32.3 28.486,32.2 "/> -<rect x="9.143" y="23.688" transform="matrix(-0.7071 0.7071 -0.7071 -0.7071 53.779 40.3006)" class="st5" width="18.8" height="15.2"/> -<polygon class="st4" points="17.33,43.356 10.53,45.856 4.03,39.356 6.53,32.556 "/> -<path class="st4" d="M19.886,19.3c6.6-6.6,16.1-5.4,16.1-5.4s1.3,9.5-5.4,16.2L19.886,19.3z"/> -<circle class="st6" cx="20.686" cy="29.3" r="2.9"/> -<path class="st7" d="M35.886,13.8c-1.6-0.1-10-0.5-16,5.5l-2.3,2.3h-12.9v9.2l1.8,1.8l-2.5,6.8l3.2,3.2L35.886,13.8z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><g transform="matrix(-.7071 -.7071 .7071 -.7071 -5.5673 72.8951)"><ellipse cx="12.313" cy="37.601" rx="4.1" ry="16.9" fill="#dd5900"/><ellipse cx="12.313" cy="37.601" rx="2.5" ry="12.2" fill="#fcd116"/></g><path d="M49.986 18.6c0-2.4-1.9-4.3-4.2-4.3h-.6c.2-.9.4-1.9.4-3 0-6.2-5.1-11.2-11.2-11.2-4.9 0-9.1 3.3-10.6 7.6-.8-.2-1.6-.4-2.5-.4-4.3 0-7.6 3.5-7.6 7.8s3.4 7.8 7.6 7.8h24.7c2.3-.3 4-2.1 4-4.3" fill="#3999c6"/><path d="M25.286 22.8c-1-1-1.8-2.2-2.1-3.8-.9-4.2 1.6-8.3 5.7-9.2.9-.2 1.7-.2 2.6-.1.3-3.9 2.7-7.3 6.3-9-1.1-.3-2.2-.6-3.4-.6-4.9 0-9.1 3.3-10.6 7.6-.8-.2-1.6-.4-2.5-.4-4.3 0-7.6 3.5-7.6 7.8s3.4 7.8 7.6 7.8h4v-.1z" opacity=".2" fill="#fff" enable-background="new"/><g fill="#68217a"><path d="M4.686 21.6v9.2l3.9 3.8h9.2v-13z"/><path d="M28.486 45.3h-9.2l-3.9-3.8v-9.2l13.1-.1z"/></g><path d="M30.564 30.016L17.27 43.31 6.523 32.56l13.293-13.293z" fill="#e5e5e5"/><path d="M17.33 43.356l-6.8 2.5-6.5-6.5 2.5-6.8zM19.886 19.3c6.6-6.6 16.1-5.4 16.1-5.4s1.3 9.5-5.4 16.2l-10.7-10.8z" fill="#68217a"/><circle cx="20.686" cy="29.3" r="2.9" fill="#0072c6"/><path d="M35.886 13.8c-1.6-.1-10-.5-16 5.5l-2.3 2.3h-12.9v9.2l1.8 1.8-2.5 6.8 3.2 3.2 28.7-28.8z" opacity=".15" fill="#fff" enable-background="new"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Cache_Redis_Product.svg b/src/main/webapp/img/lib/mscae/Cache_Redis_Product.svg index fcee65ce7579a24acac23ef9d17ed3c258360aed..61dba99b620f360fe4842fdc9b3da58da6e3c5d2 100644 --- a/src/main/webapp/img/lib/mscae/Cache_Redis_Product.svg +++ b/src/main/webapp/img/lib/mscae/Cache_Redis_Product.svg @@ -1,109 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50.001617" - height="42.139" - viewBox="0 0 50.001617 42.139" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure Cache Redis Product icon_COLOR.svg"><metadata - id="metadata41"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs39" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview37" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="14.656481" - inkscape:cx="14.593612" - inkscape:cy="18.085549" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><g - id="g3" - transform="translate(5.3339518e-5,-3.8605)"><path - d="M 0.01,35.63 C -0.075,36.162 0.379,36.706 1.372,37.113 L 21.688,45.437 C 23.517,46.187 26.483,46.187 28.313,45.437 L 48.629,37.113 C 49.622,36.706 50.076,36.162 49.991,35.63 L 49.996,30.862 C 50.058,31.384 49.602,31.914 48.629,32.313 L 28.313,40.637 C 26.484,41.387 23.518,41.387 21.688,40.637 L 1.372,32.313 C 0.304,31.875 -0.141,31.279 0.039,30.709 L 0.01,35.63 Z" - id="path5" - inkscape:connector-curvature="0" - style="fill:#ba141a" /><path - d="M 48.628,29.599 C 50.457,30.349 50.457,31.564 48.628,32.313 L 28.312,40.637 C 26.483,41.387 23.517,41.387 21.687,40.637 L 1.372,32.313 C -0.457,31.563 -0.457,30.348 1.372,29.599 L 21.688,21.275 C 23.517,20.525 26.483,20.525 28.313,21.275 L 48.628,29.599 Z" - id="path7" - inkscape:connector-curvature="0" - style="fill:#ba141a" /></g><g - id="g9" - transform="translate(5.3339518e-5,-3.8605)"><path - d="M 0.01,27.204 C -0.075,27.736 0.379,28.28 1.372,28.687 L 21.688,37.011 C 23.517,37.761 26.483,37.761 28.313,37.011 L 48.629,28.687 C 49.622,28.28 50.076,27.736 49.991,27.204 L 49.996,22.436 C 50.058,22.958 49.602,23.488 48.629,23.887 L 28.313,32.211 C 26.484,32.961 23.518,32.961 21.688,32.211 L 1.372,23.887 C 0.304,23.449 -0.141,22.853 0.039,22.283 L 0.01,27.204 Z" - id="path11" - inkscape:connector-curvature="0" - style="fill:#ba141a" /><path - d="M 48.628,21.173 C 50.457,21.923 50.457,23.138 48.628,23.887 L 28.312,32.211 C 26.483,32.961 23.517,32.961 21.687,32.211 L 1.372,23.887 C -0.457,23.137 -0.457,21.922 1.372,21.173 L 21.688,12.849 C 23.517,12.099 26.483,12.099 28.313,12.849 L 48.628,21.173 Z" - id="path13" - inkscape:connector-curvature="0" - style="fill:#ba141a" /></g><g - id="g15" - transform="translate(5.3339518e-5,-3.8605)"><path - d="M 0.01,18.778 C -0.075,19.31 0.379,19.854 1.372,20.261 L 21.688,28.585 C 23.517,29.335 26.483,29.335 28.313,28.585 L 48.629,20.261 C 49.622,19.854 50.076,19.31 49.991,18.778 L 49.996,14.01 C 50.058,14.532 49.602,15.062 48.629,15.461 L 28.313,23.785 C 26.484,24.535 23.518,24.535 21.688,23.785 L 1.372,15.461 C 0.304,15.023 -0.141,14.427 0.039,13.857 L 0.01,18.778 Z" - id="path17" - inkscape:connector-curvature="0" - style="fill:#ba141a" /><path - d="M 0.01,35.63 C -0.075,36.162 0.379,36.706 1.372,37.113 L 21.688,45.437 C 23.517,46.187 26.483,46.187 28.313,45.437 L 48.629,37.113 C 49.622,36.706 50.076,36.162 49.991,35.63 L 49.996,30.862 C 50.058,31.384 49.602,31.914 48.629,32.313 L 28.313,40.637 C 26.484,41.387 23.518,41.387 21.688,40.637 L 1.372,32.313 C 0.304,31.875 -0.141,31.279 0.039,30.709 L 0.01,35.63 Z" - id="path19" - inkscape:connector-curvature="0" - style="opacity:0.25;fill:#1e1e1e" /><path - d="M 0.01,27.204 C -0.075,27.736 0.379,28.28 1.372,28.687 L 21.688,37.011 C 23.517,37.761 26.483,37.761 28.313,37.011 L 48.629,28.687 C 49.622,28.28 50.076,27.736 49.991,27.204 L 49.996,22.436 C 50.058,22.958 49.602,23.488 48.629,23.887 L 28.313,32.211 C 26.484,32.961 23.518,32.961 21.688,32.211 L 1.372,23.887 C 0.304,23.449 -0.141,22.853 0.039,22.283 L 0.01,27.204 Z" - id="path21" - inkscape:connector-curvature="0" - style="opacity:0.25;fill:#1e1e1e" /><path - d="M 0.01,18.778 C -0.075,19.31 0.379,19.854 1.372,20.261 L 21.688,28.585 C 23.517,29.335 26.483,29.335 28.313,28.585 L 48.629,20.261 C 49.622,19.854 50.076,19.31 49.991,18.778 L 49.996,14.01 C 50.058,14.532 49.602,15.062 48.629,15.461 L 28.313,23.785 C 26.484,24.535 23.518,24.535 21.688,23.785 L 1.372,15.461 C 0.304,15.023 -0.141,14.427 0.039,13.857 L 0.01,18.778 Z" - id="path23" - inkscape:connector-curvature="0" - style="opacity:0.25;fill:#1e1e1e" /><path - d="M 48.628,12.747 C 50.457,13.497 50.457,14.712 48.628,15.461 L 28.312,23.785 C 26.483,24.535 23.517,24.535 21.687,23.785 L 1.372,15.461 C -0.457,14.711 -0.457,13.496 1.372,12.747 L 21.688,4.423 C 23.517,3.673 26.483,3.673 28.313,4.423 L 48.628,12.747 Z" - id="path25" - inkscape:connector-curvature="0" - style="fill:#ba141a" /></g><path - d="M 18.740053,11.8125 C 16.421053,12.8435 12.662053,12.8435 10.344053,11.8125 8.0260533,10.7815 8.0250533,9.1095 10.344053,8.0775 12.663053,7.0455 16.422053,7.0465 18.740053,8.0775 21.058053,9.1085 21.059053,10.7815 18.740053,11.8125 Z" - id="path27" - inkscape:connector-curvature="0" - style="fill:#ffffff" /><polygon - points="17.167,18.329 29.065,16.911 25.877,22.203 " - id="polygon29" - style="fill:#ffffff" - transform="translate(5.3339518e-5,-3.8605)" /><polygon - points="42.926,13.834 35.81,16.999 28.695,13.834 35.81,10.669 " - id="polygon31" - style="opacity:0.25;fill:#1e1e1e" - transform="translate(5.3339518e-5,-3.8605)" /><polygon - points="35.81,16.999 28.695,13.834 35.81,10.669 " - id="polygon33" - style="opacity:0.25;fill:#1e1e1e" - transform="translate(5.3339518e-5,-3.8605)" /><polygon - points="21.661,6.412 25.156,7.837 29.47,6.963 27.504,8.881 30.707,10.436 25.997,10.197 23.662,12.033 22.717,9.966 18.072,9.546 22.198,8.508 " - id="polygon35" - style="fill:#ffffff" - transform="translate(5.3339518e-5,-3.8605)" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50.002" height="42.139"><g fill="#ba141a"><use xlink:href="#B"/><path d="M48.628 25.74c1.83.75 1.83 1.965 0 2.714l-20.316 8.324c-1.83.75-4.795.75-6.625 0L1.372 28.453c-1.83-.75-1.83-1.965 0-2.714l20.316-8.324c1.83-.75 4.795-.75 6.625 0l20.315 8.324z"/><use xlink:href="#C"/><path d="M48.628 17.313c1.83.75 1.83 1.965 0 2.714L28.312 28.35c-1.83.75-4.795.75-6.625 0L1.372 20.027c-1.83-.75-1.83-1.965 0-2.714L21.688 8.99c1.83-.75 4.795-.75 6.625 0l20.315 8.324z"/><use xlink:href="#D"/></g><g fill="#1e1e1e"><use xlink:href="#B" opacity=".25"/><use xlink:href="#C" opacity=".25"/><use xlink:href="#D" opacity=".25"/></g><path d="M48.628 8.887c1.83.75 1.83 1.965 0 2.714l-20.316 8.324c-1.83.75-4.795.75-6.625 0L1.372 11.6c-1.83-.75-1.83-1.965 0-2.714L21.688.563c1.83-.75 4.795-.75 6.625 0l20.315 8.324z" fill="#ba141a"/><path d="M18.74 11.813c-2.32 1.03-6.078 1.03-8.396 0s-2.32-2.703 0-3.735 6.078-1.03 8.396 0 2.32 2.704 0 3.735zm-1.573 2.657l11.898-1.418-3.188 5.292z" fill="#fff"/><g fill="#1e1e1e"><path d="M42.926 9.974L35.8 13.138l-7.115-3.165L35.8 6.81z" opacity=".25"/><path d="M35.8 13.138l-7.115-3.165L35.8 6.81z" opacity=".25"/></g><path d="M21.66 2.552l3.495 1.425 4.314-.874-1.966 1.918 3.203 1.555-4.7-.24-2.335 1.836-.945-2.067-4.645-.42 4.126-1.038z" fill="#fff"/><defs ><path id="B" d="M.01 31.77c-.085.532.37 1.076 1.362 1.483l20.316 8.324c1.83.75 4.795.75 6.625 0l20.316-8.324c.993-.407 1.447-.95 1.362-1.483l.005-4.768c.062.522-.394 1.052-1.367 1.45l-20.316 8.324c-1.83.75-4.795.75-6.625 0L1.372 28.453C.304 28.015-.14 27.42.04 26.85l-.03 4.92z"/><path id="C" d="M.01 23.344c-.085.532.37 1.076 1.362 1.483l20.316 8.324c1.83.75 4.795.75 6.625 0l20.316-8.324c.993-.407 1.447-.95 1.362-1.483l.005-4.768c.062.522-.394 1.052-1.367 1.45L28.313 28.35c-1.83.75-4.795.75-6.625 0L1.372 20.027C.304 19.59-.14 18.993.04 18.423l-.03 4.92z"/><path id="D" d="M.01 14.918c-.085.532.37 1.076 1.362 1.483l20.316 8.324c1.83.75 4.795.75 6.625 0L48.63 16.4c.993-.407 1.447-.95 1.362-1.483l.005-4.768c.062.522-.394 1.052-1.367 1.45l-20.316 8.324c-1.83.75-4.795.75-6.625 0L1.372 11.6C.304 11.163-.14 10.567.04 9.997l-.03 4.92z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Cache_including_Redis.svg b/src/main/webapp/img/lib/mscae/Cache_including_Redis.svg index acc7df42ad55648a3f74fedc968d57aaf47da95b..f48fc6fff3b8b16b8b0f146d4996c34f7f07f24b 100644 --- a/src/main/webapp/img/lib/mscae/Cache_including_Redis.svg +++ b/src/main/webapp/img/lib/mscae/Cache_including_Redis.svg @@ -1,96 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="40.666668" - height="41.416668" - viewBox="0 0 244.00001 207.08334" - enable-background="new 0 0 300 250" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure Cache including Redis_COLOR.svg"><metadata - id="metadata31"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs29" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview27" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="7.3282407" - inkscape:cx="43.8625" - inkscape:cy="9.7498532" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 0,9.0000046 0,189.5 C 0,208.5 42,223.5 93.5,223.5 L 93.5,9.0000046 0,9.0000046 Z" - id="path3" - inkscape:connector-curvature="0" - style="fill:#3999c6" /><path - d="M 92.5,223.5 94,223.5 C 146,223.5 187.5,208.5 187.5,189.5 L 187.5,9.0000046 92.5,9.0000046 92.5,223.5 Z" - id="path5" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><path - d="M 187.5,9.0000046 C 187.5,27.500005 145.5,43.000005 94,43.000005 42.5,43.000005 0,27.500005 0,9.0000046 0,-9.4999954 42,-24.999995 93.5,-24.999995 145,-24.999995 187.5,-9.4999954 187.5,9.0000046" - id="path7" - inkscape:connector-curvature="0" - style="fill:#ffffff" /><path - d="M 168.5,7.0000046 C 168.5,19.500005 135,29.500005 94,29.500005 53,29.500005 19,19.500005 19,7.0000046 19,-5.4999954 52.5,-15.499995 93.5,-15.499995 134.5,-15.499995 168.5,-5.4999954 168.5,7.0000046" - id="path9" - inkscape:connector-curvature="0" - style="fill:#7fba00" /><path - d="M 152.5,20.500005 C 162.5,16.500005 168,12.000005 168,7.0000046 168,-5.4999954 134.5,-15.499995 93.5,-15.499995 52.5,-15.499995 19,-5.4999954 19,7.0000046 19,12.000005 25,17.000005 34.5,20.500005 48,15.000005 69.5,12.000005 93.5,12.000005 117.5,12.000005 139,15.500005 152.5,20.500005" - id="path11" - inkscape:connector-curvature="0" - style="fill:#b8d432" /><path - d="M 119,80.500005 119,201 C 119,213.5 147,223.5 181.5,223.5 L 181.5,80.500005 119,80.500005 Z" - id="path13" - inkscape:connector-curvature="0" - style="fill:#0072c6" /><path - d="M 180.5,223.5 181.5,223.5 C 216,223.5 244,213.5 244,201 L 244,80.500005 180.5,80.500005 180.5,223.5 Z" - id="path15" - inkscape:connector-curvature="0" - style="fill:#0072c6" /><path - enable-background="new " - d="M 180.5,223.5 181.5,223.5 C 216,223.5 244,213.5 244,201 L 244,80.500005 180.5,80.500005 180.5,223.5 Z" - id="path17" - inkscape:connector-curvature="0" - style="opacity:0.15;fill:#ffffff" /><path - d="M 244,80.500005 C 244,93.000005 216,103 181.5,103 147,103 119,93.000005 119,80.500005 119,68.000005 147,58.000005 181.5,58.000005 216,58.000005 244,68.000005 244,80.500005" - id="path19" - inkscape:connector-curvature="0" - style="fill:#ffffff" /><path - d="M 231,79.000005 C 231,87.000005 208.5,94.000005 181.5,94.000005 154.5,94.000005 132,87.500005 132,79.000005 132,71.000005 154.5,64.000005 181.5,64.000005 208.5,64.000005 231,71.000005 231,79.000005" - id="path21" - inkscape:connector-curvature="0" - style="fill:#7fba00" /><path - d="M 220.5,88.000005 C 227,85.500005 231,82.500005 231,79.000005 231,71.000005 208.5,64.000005 181.5,64.000005 154,64.000005 132,70.500005 132,79.000005 132,82.500005 136,85.500005 142.5,88.000005 151.5,84.500005 166,82.000005 182,82.000005 197,82.000005 211,84.500005 220.5,88.000005" - id="path23" - inkscape:connector-curvature="0" - style="fill:#b8d432" /><polygon - points="174.5,193 244,136 217,180 240.5,180 171,237.5 198,193 " - id="polygon25" - style="fill:#ffffff" - transform="translate(-25,-26.499995)" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="40.667" height="41.417" viewBox="0 0 244 207.083"><path d="M0 9v180.5c0 19 42 34 93.5 34V9H0z" fill="#3999c6"/><path d="M92.5 223.5H94c52 0 93.5-15 93.5-34V9h-95v214.5z" fill="#59b4d9"/><path d="M187.5 9c0 18.5-42 34-93.5 34S0 27.5 0 9s42-34 93.5-34 94 15.5 94 34" fill="#fff"/><path d="M168.5 7c0 12.5-33.5 22.5-74.5 22.5S19 19.5 19 7s33.5-22.5 74.5-22.5 75 10 75 22.5" fill="#7fba00"/><path d="M152.5 20.5c10-4 15.5-8.5 15.5-13.5 0-12.5-33.5-22.5-74.5-22.5S19-5.5 19 7c0 5 6 10 15.5 13.5C48 15 69.5 12 93.5 12s45.5 3.5 59 8.5" fill="#b8d432"/><g fill="#0072c6"><path d="M119 80.5V201c0 12.5 28 22.5 62.5 22.5v-143H119z"/><path d="M180.5 223.5h1c34.5 0 62.5-10 62.5-22.5V80.5h-63.5v143z"/></g><g fill="#fff"><path d="M180.5 223.5h1c34.5 0 62.5-10 62.5-22.5V80.5h-63.5v143z" opacity=".15"/><path d="M244 80.5c0 12.5-28 22.5-62.5 22.5S119 93 119 80.5 147 58 181.5 58 244 68 244 80.5"/></g><path d="M231 79c0 8-22.5 15-49.5 15S132 87.5 132 79c0-8 22.5-15 49.5-15S231 71 231 79" fill="#7fba00"/><path d="M220.5 88c6.5-2.5 10.5-5.5 10.5-9 0-8-22.5-15-49.5-15C154 64 132 70.5 132 79c0 3.5 4 6.5 10.5 9 9-3.5 23.5-6 39.5-6 15 0 29 2.5 38.5 6" fill="#b8d432"/><path d="M149.5 166.5l69.5-57-27 44h23.5L146 211l27-44.5z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Calendar.svg b/src/main/webapp/img/lib/mscae/Calendar.svg index 9d7201335e6e06cec4a12b2494fcb75c60038d66..2c6fe517831215a5e2ba0c81ced8dfff53e7ba2a 100644 --- a/src/main/webapp/img/lib/mscae/Calendar.svg +++ b/src/main/webapp/img/lib/mscae/Calendar.svg @@ -1,20 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - height="15px" width="15px" viewBox="0 0 15 15" enable-background="new 0 0 15 15" xml:space="preserve"> -<g> - <path fill="#A0A1A2" d="M14.2,0H0.9C0.4,0,0,0.4,0,0.9V14c0,0.6,0.4,1,0.9,1h13.2c0.5,0,0.9-0.4,0.9-0.9V0.9 - C15.1,0.4,14.7,0,14.2,0z M14,14H1V4h13V14z"/> - <rect x="5" y="5" fill="#A0A1A2" width="2" height="2"/> - <rect x="8" y="5" fill="#A0A1A2" width="2" height="2"/> - <rect x="2" y="8" fill="#A0A1A2" width="2" height="2"/> - <rect x="5" y="8" fill="#A0A1A2" width="2" height="2"/> - <rect x="8" y="8" fill="#A0A1A2" width="2" height="2"/> - <rect x="11" y="8" fill="#A0A1A2" width="2" height="2"/> - <rect x="2" y="11" fill="#A0A1A2" width="2" height="2"/> - <rect x="5" y="11" fill="#A0A1A2" width="2" height="2"/> - <rect x="8" y="11" fill="#A0A1A2" width="2" height="2"/> - <rect x="11" y="5" fill="#A0A1A2" width="2" height="2"/> -</g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" height="15" width="15" fill="#a0a1a2"><path d="M14.2 0H.9C.4 0 0 .4 0 .9V14c0 .6.4 1 .9 1h13.2c.5 0 .9-.4.9-.9V.9c.1-.5-.3-.9-.8-.9zM14 14H1V4h13v10zM5 5h2v2H5zm3 0h2v2H8zM2 8h2v2H2zm3 0h2v2H5zm3 0h2v2H8zm3 0h2v2h-2zm-9 3h2v2H2zm3 0h2v2H5zm3 0h2v2H8zm3-6h2v2h-2z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Certificate.svg b/src/main/webapp/img/lib/mscae/Certificate.svg index d1c412dffcdf06fd4722ca0c47df6a1437fb7ed5..ff75857c7c59b0fed2b8f09cb1cb86f0a4b79ead 100644 --- a/src/main/webapp/img/lib/mscae/Certificate.svg +++ b/src/main/webapp/img/lib/mscae/Certificate.svg @@ -1,94 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="42.143002" - viewBox="0 0 50 42.143002" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Certificate.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata5550"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs5548" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1851" - inkscape:window-height="921" - id="namedview5546" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="8.5" - inkscape:cx="31.168008" - inkscape:cy="22.917522" - inkscape:window-x="1930" - inkscape:window-y="0" - inkscape:window-maximized="0" - inkscape:current-layer="Layer_1" /> -<path - d="m 50,33.571 c 0,1.973 -1.599,3.571 -3.571,3.571 H 3.571 C 1.599,37.143 0,35.544 0,33.571 v -30 C 0,1.599 1.599,0 3.571,0 H 46.428 C 48.401,0 50,1.599 50,3.571 Z" - id="path5529" - inkscape:connector-curvature="0" - style="fill:#fcd116" /> -<rect - x="4.2859998" - y="4.2860003" - width="41.429001" - height="28.570999" - id="rect5531" - style="fill:#ffffff" /> -<circle - cx="12.143" - cy="26.429001" - r="5.7140002" - id="circle5533" - style="fill:#dd5900" /> -<circle - cx="12.143" - cy="26.429001" - r="4.2859998" - id="circle5535" - style="fill:#ff8c00" /> -<path - d="m 12.143,30.714 c -1.662,0 -3.174,-0.64 -4.317,-1.679 l -0.678,13.031 4.923,-4.923 5,5 0.072,-0.714 -0.683,-12.394 c -1.143,1.04 -2.655,1.679 -4.317,1.679 z" - id="path5537" - inkscape:connector-curvature="0" - style="fill:#dd5900" /> -<path - d="m 40.962,25.085 c 0,0.441 -0.358,0.799 -0.799,0.799 H 22.227 c -0.441,0 -0.799,-0.358 -0.799,-0.799 0,-0.441 0.358,-0.799 0.799,-0.799 h 17.936 c 0.441,0 0.799,0.358 0.799,0.799" - id="path5539" - inkscape:connector-curvature="0" - style="fill:#7a7a7a" /> -<path - d="m 40.962,20.714 c 0,0.441 -0.358,0.799 -0.799,0.799 H 22.227 c -0.441,0 -0.799,-0.358 -0.799,-0.799 0,-0.441 0.358,-0.799 0.799,-0.799 h 17.936 c 0.441,0 0.799,0.358 0.799,0.799" - id="path5541" - inkscape:connector-curvature="0" - style="fill:#7a7a7a" /> -<path - d="m 40.962,14.286 c 0,0.441 -0.358,0.799 -0.799,0.799 H 10.084 c -0.441,0 -0.799,-0.358 -0.799,-0.799 0,-0.441 0.358,-0.799 0.799,-0.799 h 30.078 c 0.442,-10e-4 0.8,0.357 0.8,0.799" - id="path5543" - inkscape:connector-curvature="0" - style="fill:#7a7a7a" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="42.143"><path d="M50 33.57a3.57 3.57 0 0 1-3.571 3.571H3.57A3.57 3.57 0 0 1 0 33.571v-30A3.57 3.57 0 0 1 3.571 0h42.857A3.57 3.57 0 0 1 50 3.571z" fill="#fcd116"/><path d="M4.286 4.286h41.43v28.57H4.286z" fill="#fff"/><circle cx="12.143" cy="26.429" r="5.714" fill="#dd5900"/><circle cx="12.143" cy="26.429" r="4.286" fill="#ff8c00"/><path d="M12.143 30.714a6.4 6.4 0 0 1-4.317-1.679l-.678 13.03 4.923-4.923 5 5 .072-.714-.683-12.394c-1.143 1.04-2.655 1.68-4.317 1.68z" fill="#dd5900"/><g fill="#7a7a7a"><use xlink:href="#B"/><use xlink:href="#B" y="-4.371"/><path d="M40.962 14.286a.8.8 0 0 1-.799.799h-30.08a.8.8 0 0 1-.799-.799.8.8 0 0 1 .799-.799h30.078a.8.8 0 0 1 .8.799"/></g><defs ><path id="B" d="M40.962 25.085a.8.8 0 0 1-.799.799H22.227a.8.8 0 0 1-.799-.799.8.8 0 0 1 .799-.799h17.936a.8.8 0 0 1 .799.799"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Chart.svg b/src/main/webapp/img/lib/mscae/Chart.svg index 0bb450fe021726f883d0668551916f588cde22cd..694e3768f7d1ce73443d517fbdaf24354d5809be 100644 --- a/src/main/webapp/img/lib/mscae/Chart.svg +++ b/src/main/webapp/img/lib/mscae/Chart.svg @@ -1,107 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="48.400002" - width="50" - viewBox="0 0 50 48.400002" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Chart.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata5608"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs5606" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1851" - inkscape:window-height="921" - id="namedview5604" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.020815" - inkscape:cx="29.288329" - inkscape:cy="24.02538" - inkscape:window-x="1930" - inkscape:window-y="0" - inkscape:window-maximized="0" - inkscape:current-layer="Layer_1" /> -<rect - y="23.1" - width="8.8000002" - height="25.299999" - id="rect5585" - x="0" - style="fill:#0072c6" /> -<rect - x="13.7" - y="16.199999" - width="8.8000002" - height="32.200001" - id="rect5587" - style="fill:#59b4d9" /> -<rect - x="27.5" - y="27.199999" - width="8.8000002" - height="21.200001" - id="rect5589" - style="fill:#3999c6" /> -<rect - x="41.200001" - y="19.6" - width="8.8000002" - height="28.799999" - id="rect5591" - style="fill:#0072c6" /> -<polygon - points="4.4,18.5 3.1,16.7 21.8,2.9 31.5,17 46.5,3.8 47.5,4.9 46.7,5.7 47.2,6.3 31.1,20.3 21.3,6.1 " - id="polygon5593" - style="fill:#68217a" - transform="translate(0,-1.6000001)" /> -<circle - cx="3.3" - cy="16.199999" - r="3.3" - id="circle5595" - style="fill:#804998" /> -<circle - cx="21.5" - cy="3.3" - r="3.3" - id="circle5597" - style="fill:#804998" /> -<circle - cx="31" - cy="17.1" - r="3.3" - id="circle5599" - style="fill:#804998" /> -<circle - cx="46.700001" - cy="3.7" - r="3.3" - id="circle5601" - style="fill:#804998" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" height="48.4" width="50"><path d="M0 23.1h8.8v25.3H0z" fill="#0072c6"/><path d="M13.7 16.2h8.8v32.2h-8.8z" fill="#59b4d9"/><path d="M27.5 27.2h8.8v21.2h-8.8z" fill="#3999c6"/><path d="M41.2 19.6H50v28.8h-8.8z" fill="#0072c6"/><path d="M4.4 16.9l-1.3-1.8L21.8 1.3l9.7 14.1 15-13.2 1 1.1-.8.8.5.6-16.1 14-9.8-14.2z" fill="#68217a"/><g fill="#804998"><circle cx="3.3" cy="16.2" r="3.3"/><circle cx="21.5" cy="3.3" r="3.3"/><circle cx="31" cy="17.1" r="3.3"/><circle cx="46.7" cy="3.7" r="3.3"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Check.svg b/src/main/webapp/img/lib/mscae/Check.svg index 695d37b37611bbea4d663fdea19783f59ec3892d..4750b98f95777c45009276774af354f2361ddee7 100644 --- a/src/main/webapp/img/lib/mscae/Check.svg +++ b/src/main/webapp/img/lib/mscae/Check.svg @@ -1,55 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="16.000145" - height="13.82" - viewBox="0 0 16.000145 13.82" - enable-background="new 0 0 16 16" - xml:space="preserve" - sodipodi:docname="Check.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata5634"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs5632" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1851" - inkscape:window-height="921" - id="namedview5630" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="37.565048" - inkscape:cx="9.7854065" - inkscape:cy="6.9107307" - inkscape:window-x="1930" - inkscape:window-y="0" - inkscape:window-maximized="0" - inkscape:current-layer="Layer_1" /> -<path - d="m 0.6319024,7.427 -0.531,-0.575 c -0.138,-0.152 -0.138,-0.393 0.022,-0.538 l 1.534,-1.418 c 0.073,-0.066 0.16,-0.101 0.255,-0.101 0.108,0 0.204,0.044 0.276,0.123 l 4.218,4.523 7.2579996,-9.296 c 0.073,-0.094 0.182,-0.145 0.298,-0.145 0.088,0 0.167,0.029 0.233,0.081 l 1.659,1.28 c 0.081,0.059 0.13,0.145 0.145,0.248 0.007,0.101 -0.015,0.204 -0.081,0.276 L 6.5949024,13.82 Z" - id="path5627" - inkscape:connector-curvature="0" - style="fill:#7fba00" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="16" height="13.82"><path d="M.632 7.427L.1 6.852a.38.38 0 0 1 .022-.538l1.534-1.418c.073-.066.16-.1.255-.1.108 0 .204.044.276.123L6.406 9.44 13.664.145c.073-.094.182-.145.298-.145a.37.37 0 0 1 .233.081l1.66 1.28c.08.06.13.145.145.248.007.1-.015.204-.08.276L6.595 13.82z" fill="#7fba00"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Citrix_Virtual_Desktops_Essentials.svg b/src/main/webapp/img/lib/mscae/Citrix_Virtual_Desktops_Essentials.svg new file mode 100644 index 0000000000000000000000000000000000000000..ddbf987153da2423f9144ba97b8efe9325b6eb39 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Citrix_Virtual_Desktops_Essentials.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="145.7" height="145.7" stroke="#4293f4"><path d="M113.7 145.1c-10.4 0-20.2-5.2-26.1-13.9-3.3-5-8.8-7.9-14.7-7.9-6 0-11.3 2.9-14.7 7.9-5.8 8.7-15.5 14-26.1 14-17.4 0-31.5-14.1-31.5-31.5 0-10.4 5.2-20.2 13.9-26.1 5-3.3 7.9-8.8 7.9-14.7 0-6-2.9-11.3-7.9-14.7C5.8 52.4.5 42.7.5 32.1.5 14.7 14.6.6 32 .6c10.4 0 20.2 5.2 26.1 13.9 3.3 5 8.8 7.9 14.7 7.9s11.4-3 14.7-7.9c5.8-8.7 15.5-14 26.1-14 17.4 0 31.5 14.1 31.5 31.5 0 10.4-5.2 20.2-13.9 26.1-5 3.3-7.9 8.8-7.9 14.7 0 6 2.9 11.3 7.9 14.7 8.7 5.8 14 15.5 14 26.1 0 17.4-14.1 31.5-31.5 31.5zm-40.8-30.3c8.7 0 16.8 4.3 21.7 11.6 4.4 6.4 11.5 10.2 19.1 10.2 12.7 0 23-10.3 23-23 0-7.7-3.8-14.8-10.2-19.1-7.3-4.9-11.7-13.1-11.7-21.8s4.3-16.8 11.6-21.7c6.4-4.4 10.2-11.5 10.2-19.1 0-12.7-10.3-23-23-23-7.7 0-14.8 3.8-19.1 10.2-4.9 7.3-13.1 11.7-21.7 11.7S56 26.5 51.1 19.2C46.7 12.8 39.6 9 32 9 19.3 9 9 19.3 9 32c0 7.7 3.8 14.8 10.2 19.1 7.3 4.9 11.7 13.1 11.7 21.7 0 8.7-4.3 16.8-11.6 21.7-6.4 4.4-10.2 11.5-10.2 19.1 0 12.7 10.3 23 23 23 7.7 0 14.8-3.8 19.1-10.2 4.9-7.3 13-11.6 21.7-11.6zm0-5.9c-6.4 0-12.8-2.4-17.7-7.2L44.3 90.9c-9.8-9.8-9.9-25.8-.2-35.7l10.8-10.9c9.8-9.8 25.8-9.9 35.7-.2l10.9 10.8a24.89 24.89 0 0 1 7.5 17.8c0 6.8-2.6 13.1-7.3 17.9l-10.8 10.9c-4.9 4.9-11.4 7.4-18 7.4zm-.1-63.7c-4.3 0-8.7 1.6-12 4.9l-10.7 11c-6.5 6.6-6.4 17.2.1 23.8l10.9 10.8c6.6 6.5 17.2 6.4 23.8-.1l10.8-10.9c3.2-3.2 4.9-7.4 4.9-11.9a16.33 16.33 0 0 0-5-11.8L84.7 50.2c-3.3-3.4-7.6-5-11.9-5z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/ClassicIPAddress.svg b/src/main/webapp/img/lib/mscae/ClassicIPAddress.svg index 1af05b3a180e4ad6bd741a044722892e3131f6ad..79036aeb9dae8c106a56e426141a5b3d271de276 100644 --- a/src/main/webapp/img/lib/mscae/ClassicIPAddress.svg +++ b/src/main/webapp/img/lib/mscae/ClassicIPAddress.svg @@ -1,92 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="42.599998" - viewBox="0 0 50 42.599998" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="ClassicIPAddress.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata5720"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs5718" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1851" - inkscape:window-height="921" - id="namedview5716" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.020815" - inkscape:cx="26.619799" - inkscape:cy="19.492891" - inkscape:window-x="1930" - inkscape:window-y="0" - inkscape:window-maximized="0" - inkscape:current-layer="Layer_1" /> -<path - d="m 0,40.6 c 0,1.1 0.9,2 2,2 h 46 c 1.1,0 2,-0.9 2,-2 V 9.3 H 0 Z" - id="path5699" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="M 48,0 H 2 C 0.9,0 0,0.9 0,2 V 12.6 H 50 V 2 C 50,0.9 49.1,0 48,0" - id="path5701" - inkscape:connector-curvature="0" - style="fill:#0072c6" /> -<rect - x="12.9" - y="4.8000002" - width="33.700001" - height="3.9000001" - id="rect5703" - style="fill:#ffffff" /> -<path - d="m 11.3,6.7 c 0,2.7 -2.2,4.9 -4.9,4.9 C 3.7,11.6 1.5,9.4 1.5,6.7 1.5,4 3.7,1.8 6.4,1.8 c 2.7,0 4.9,2.2 4.9,4.9" - id="path5705" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<polygon - points="7.4,14.1 4.5,11.3 7.4,8.4 8.6,8.4 6.4,10.8 11.8,10.8 11.8,11.7 6.4,11.7 8.6,14.1 " - id="polygon5707" - style="fill:#ffffff" - transform="translate(-0.5,-4.5)" /> -<path - d="m 17.4,32.1 c 0,0.6 -0.2,1 -0.6,1.4 -0.4,0.4 -0.9,0.5 -1.6,0.5 -0.6,0 -1.1,-0.2 -1.5,-0.6 -0.4,-0.4 -0.6,-0.8 -0.6,-1.4 0,-0.6 0.2,-1 0.6,-1.4 0.4,-0.4 0.9,-0.5 1.6,-0.5 0.6,0 1.1,0.2 1.5,0.6 0.4,0.4 0.6,0.8 0.6,1.4 z" - id="path5709" - inkscape:connector-curvature="0" - style="fill:#0072c6" /> -<path - d="m 26.3,32.1 c 0,0.6 -0.2,1 -0.6,1.4 C 25.3,33.9 24.8,34 24.1,34 23.5,34 23,33.8 22.6,33.4 22.2,33 22,32.6 22,32 c 0,-0.6 0.2,-1 0.6,-1.4 0.4,-0.4 0.9,-0.5 1.6,-0.5 0.6,0 1.1,0.2 1.5,0.6 0.4,0.4 0.6,0.8 0.6,1.4 z" - id="path5711" - inkscape:connector-curvature="0" - style="fill:#0072c6" /> -<path - d="m 35.2,32.1 c 0,0.6 -0.2,1 -0.6,1.4 C 34.2,33.9 33.7,34 33,34 32.4,34 31.9,33.8 31.5,33.4 31.1,33 30.9,32.6 30.9,32 c 0,-0.6 0.2,-1 0.6,-1.4 0.4,-0.4 0.9,-0.5 1.6,-0.5 0.6,0 1.1,0.2 1.5,0.6 0.4,0.4 0.6,0.8 0.6,1.4 z" - id="path5713" - inkscape:connector-curvature="0" - style="fill:#0072c6" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="42.6"><path d="M0 40.6c0 1.1.9 2 2 2h46c1.1 0 2-.9 2-2V9.3H0z" fill="#59b4d9"/><path d="M48 0H2C.9 0 0 .9 0 2v10.6h50V2c0-1.1-.9-2-2-2" fill="#0072c6"/><path d="M12.9 4.8h33.7v3.9H12.9z" fill="#fff"/><path d="M11.3 6.7a4.91 4.91 0 0 1-4.9 4.9 4.91 4.91 0 0 1-4.9-4.9 4.91 4.91 0 0 1 4.9-4.9 4.91 4.91 0 0 1 4.9 4.9" fill="#59b4d9"/><path d="M6.9 9.6L4 6.8l2.9-2.9h1.2L5.9 6.3h5.4v.9H5.9l2.2 2.4z" fill="#fff"/><g fill="#0072c6"><use xlink:href="#B"/><use xlink:href="#B" x="8.9"/><use xlink:href="#B" x="17.8"/></g><defs ><path id="B" d="M17.4 32.1c0 .6-.2 1-.6 1.4s-.9.5-1.6.5c-.6 0-1.1-.2-1.5-.6s-.6-.8-.6-1.4.2-1 .6-1.4.9-.5 1.6-.5c.6 0 1.1.2 1.5.6s.6.8.6 1.4z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/ClassicStorage.svg b/src/main/webapp/img/lib/mscae/ClassicStorage.svg index 8c4917f4656d270d62ad520775b7b1aa01fb1fba..475aae8736d7ed41ee15f78154a88abc7cfcad30 100644 --- a/src/main/webapp/img/lib/mscae/ClassicStorage.svg +++ b/src/main/webapp/img/lib/mscae/ClassicStorage.svg @@ -1,81 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="42.900002" - viewBox="0 0 50 42.900002" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="ClassicStorage.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata5794"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs5792" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1851" - inkscape:window-height="921" - id="namedview5790" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="8.5" - inkscape:cx="7.3754222" - inkscape:cy="11.643914" - inkscape:window-x="1930" - inkscape:window-y="0" - inkscape:window-maximized="0" - inkscape:current-layer="Layer_1" /> -<path - d="m 0,41 c 0,1 0.8,1.9 1.8,1.9 h 46.3 c 1,0 1.9,-0.8 1.9,-1.9 V 7.9 H 0 Z" - id="path5779" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="M 48.1,0 H 1.8 C 0.8,0 0,0.9 0,1.9 v 6 h 50 v -6 c 0,-1 -0.8,-1.6 -1.9,-1.6" - id="path5781" - inkscape:connector-curvature="0" - style="fill:#0072c6" /> -<rect - x="4" - y="21.4" - width="42" - height="7" - id="rect5783" - style="fill:#0072c6" /> -<rect - x="4" - y="10.9" - width="42" - height="7" - id="rect5785" - style="fill:#ffffff" /> -<rect - x="4" - y="31.9" - width="42" - height="7" - id="rect5787" - style="fill:#0072c6" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="42.9"><path d="M0 41c0 1 .8 1.9 1.8 1.9h46.3c1 0 1.9-.8 1.9-1.9V7.9H0z" fill="#59b4d9"/><path d="M48.1 0H1.8C.8 0 0 .9 0 1.9v6h50v-6c0-1-.8-1.6-1.9-1.6M4 21.4h42v7H4z" fill="#0072c6"/><path d="M4 10.9h42v7H4z" fill="#fff"/><path d="M4 31.9h42v7H4z" fill="#0072c6"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Client_Apps.svg b/src/main/webapp/img/lib/mscae/Client_Apps.svg new file mode 100644 index 0000000000000000000000000000000000000000..ac275a79c52b90e6d34b19e9e734a46a94502610 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Client_Apps.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="49.321" height="49.321"><path d="M0 0h14.274v14.274H0zm16.886 0h15.58v14.274h-15.58zm18.16 0H49.32v14.274H35.047zM0 16.886h14.274V31.16H0zm16.886 0h15.58V31.16h-15.58zm18.16 0H49.32V31.16H35.047zM0 33.74h14.274v15.58H0zm16.886 0h15.58v15.58h-15.58zm18.16 0H49.32v15.58H35.047z" fill="#0072c6"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Clock.svg b/src/main/webapp/img/lib/mscae/Clock.svg index 7d3c44d36ed18532f4d39ba507cb875e2c7b914d..84017263a8a1b43815dea52f0283e5f07aa34c3b 100644 --- a/src/main/webapp/img/lib/mscae/Clock.svg +++ b/src/main/webapp/img/lib/mscae/Clock.svg @@ -1,38 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#FFFFFF" d="M22.83,4.372C17.124,4.974,12.221,7.82,8.877,11.951c-3.345,4.134-5.106,9.52-4.508,15.227 - c0.604,5.703,3.449,10.604,7.581,13.949c4.134,3.346,9.52,5.109,15.222,4.509c5.705-0.601,10.606-3.451,13.955-7.581 - c3.34-4.132,5.106-9.519,4.505-15.225c-0.608-5.751-3.528-10.669-7.724-14.064c-3.531-2.859-8.032-4.51-12.856-4.51 - C24.319,4.256,23.578,4.294,22.83,4.372"/> -<path fill="#3999C6" d="M49.859,22.385c-0.728-6.937-4.271-12.883-9.273-16.928c-0.971-0.786-2.018-1.472-3.1-2.1l-1.963,3.777 - c0.83,0.493,1.636,1.024,2.385,1.632c4.196,3.395,7.116,8.312,7.723,14.063c0.602,5.706-1.165,11.093-4.504,15.226 - c-3.349,4.131-8.25,6.98-13.955,7.581c-3.82,0.4-7.489-0.277-10.744-1.761l-1.961,3.774c3.976,1.851,8.479,2.708,13.151,2.214 - c6.862-0.719,12.796-4.164,16.814-9.133C48.453,35.767,50.587,29.243,49.859,22.385"/> -<path fill="#A0A1A2" d="M11.951,41.127c-4.133-3.346-6.978-8.247-7.581-13.949c-0.599-5.708,1.162-11.094,4.508-15.228 - c3.343-4.13,8.246-6.977,13.951-7.578c4.613-0.484,9.016,0.574,12.694,2.76l1.963-3.776C33.07,0.793,27.824-0.43,22.381,0.143 - C15.522,0.865,9.588,4.309,5.569,9.274L5.562,9.283c-4.018,4.965-6.144,11.484-5.423,18.338c0.723,6.859,4.164,12.796,9.135,16.815 - c1.582,1.282,3.335,2.346,5.194,3.212l1.961-3.774C14.826,43.144,13.315,42.231,11.951,41.127"/> -<path fill="#59B4D9" d="M11.951,41.127c-4.133-3.346-6.978-8.247-7.581-13.949c-0.599-5.708,1.162-11.094,4.508-15.228 - c3.343-4.13,8.246-6.977,13.951-7.578c4.613-0.484,9.016,0.574,12.694,2.76l1.963-3.776C33.07,0.793,27.824-0.43,22.381,0.143 - C15.522,0.865,9.588,4.309,5.569,9.274L5.562,9.283c-4.018,4.965-6.144,11.484-5.423,18.338c0.723,6.859,4.164,12.796,9.135,16.815 - c1.582,1.282,3.335,2.346,5.194,3.212l1.961-3.774C14.826,43.144,13.315,42.231,11.951,41.127"/> -<path fill="#7A7A7A" d="M35.497,31.558l-9.601-3.414c-1.041-0.37-1.584-1.514-1.214-2.554c0.37-1.041,1.514-1.584,2.554-1.214 - l9.601,3.414c1.041,0.37,1.584,1.514,1.214,2.554C37.682,31.384,36.538,31.928,35.497,31.558z"/> -<path fill="#7A7A7A" d="M24.801,27.773c-1.104,0-2-0.896-2-2V8.755c0-1.104,0.896-2,2-2s2,0.896,2,2v17.018 - C26.801,26.878,25.906,27.773,24.801,27.773z"/> -<circle fill="#1E1E1E" cx="24.801" cy="25.773" r="2.921"/> -<rect x="11.79" y="12.992" transform="matrix(0.7071 0.7071 -0.7071 0.7071 13.566 -5.6206)" fill="#7A7A7A" width="3.556" height="1.147"/> -<rect x="24.418" y="7.087" fill="#7A7A7A" width="1.146" height="3.556"/> -<rect x="35.725" y="11.902" transform="matrix(0.7071 0.7071 -0.7071 0.7071 20.3048 -21.6604)" fill="#7A7A7A" width="1.147" height="3.556"/> -<rect x="39.055" y="24.415" fill="#7A7A7A" width="3.556" height="1.147"/> -<rect x="34.358" y="35.56" transform="matrix(0.7071 0.7071 -0.7071 0.7071 36.134 -14.9688)" fill="#7A7A7A" width="3.556" height="1.147"/> -<rect x="34.358" y="35.56" transform="matrix(0.7071 0.7071 -0.7071 0.7071 36.134 -14.9688)" fill="#7A7A7A" width="3.556" height="1.147"/> -<rect x="24.418" y="38.996" fill="#7A7A7A" width="1.146" height="3.556"/> -<rect x="11.79" y="12.992" transform="matrix(0.7071 0.7071 -0.7071 0.7071 13.566 -5.6206)" fill="#7A7A7A" width="3.556" height="1.147"/> -<rect x="13.168" y="34.459" transform="matrix(0.7071 0.7071 -0.7071 0.7071 29.6485 0.8972)" fill="#7A7A7A" width="1.147" height="3.556"/> -<rect x="13.168" y="34.459" transform="matrix(0.7071 0.7071 -0.7071 0.7071 29.6485 0.8972)" fill="#7A7A7A" width="1.147" height="3.556"/> -<rect x="7.151" y="24.415" fill="#7A7A7A" width="3.557" height="1.147"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="50"><path fill="#fff" d="M22.83 4.372a20.66 20.66 0 0 0-13.953 7.579 20.67 20.67 0 0 0-4.508 15.227c.604 5.703 3.45 10.604 7.58 13.95s9.52 5.11 15.222 4.51a20.68 20.68 0 0 0 13.955-7.581 20.67 20.67 0 0 0 4.505-15.225c-.608-5.75-3.528-10.67-7.724-14.064-3.53-2.86-8.032-4.5-12.856-4.5-.733 0-1.474.038-2.222.116"/><path fill="#3999c6" d="M49.86 22.385c-.728-6.937-4.27-12.883-9.273-16.928-.97-.786-2.018-1.472-3.1-2.1l-1.963 3.777c.83.493 1.636 1.024 2.385 1.632 4.196 3.395 7.116 8.312 7.723 14.063.602 5.706-1.165 11.093-4.504 15.226-3.35 4.13-8.25 6.98-13.955 7.58-3.82.4-7.49-.277-10.744-1.76l-1.96 3.774c3.976 1.85 8.48 2.708 13.15 2.214 6.862-.72 12.796-4.164 16.814-9.133 4.02-4.963 6.155-11.487 5.427-18.345"/><use xlink:href="#B" fill="#a0a1a2"/><use xlink:href="#B" fill="#59b4d9"/><g fill="#7a7a7a"><path d="M35.497 31.558l-9.6-3.414a2 2 0 0 1-1.214-2.554 2 2 0 0 1 2.554-1.214l9.6 3.414a2 2 0 0 1 1.214 2.554 2 2 0 0 1-2.554 1.214z"/><path d="M24.8 27.773a2 2 0 0 1-2-2V8.755a2 2 0 1 1 4 0v17.018a2 2 0 0 1-2 2z"/></g><circle fill="#1e1e1e" cx="24.801" cy="25.773" r="2.921"/><path d="M24.418 7.087h1.146v3.556h-1.146zm12.732 4.93l.8.8-2.514 2.514-.8-.8zm1.905 12.398h3.556v1.147h-3.556zm-3.77 10.055l2.514 2.514-.8.8-2.514-2.514zm-10.866 4.526h1.146v3.556h-1.146zM12.716 11.903l2.514 2.514-.8.8-2.514-2.514zm1.878 22.67l.8.8L12.9 37.9l-.8-.8zM7.15 24.415h3.557v1.147H7.15z" fill="#7a7a7a"/><defs ><path id="B" d="M11.95 41.127c-4.133-3.346-6.978-8.247-7.58-13.95-.6-5.708 1.162-11.094 4.508-15.228s8.246-6.977 13.95-7.578c4.613-.484 9.016.574 12.694 2.76l1.963-3.776C33.07.793 27.824-.43 22.38.143 15.522.865 9.588 4.31 5.57 9.274l-.007.01A24.94 24.94 0 0 0 .139 27.621c.723 6.86 4.164 12.796 9.135 16.815 1.582 1.282 3.335 2.346 5.194 3.212l1.96-3.774c-1.603-.73-3.114-1.643-4.478-2.747"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/CloudSimple_Nodes.svg b/src/main/webapp/img/lib/mscae/CloudSimple_Nodes.svg new file mode 100644 index 0000000000000000000000000000000000000000..e4263a5d410b12d0850b10bdcf4ec929e01aea30 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/CloudSimple_Nodes.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="48.359" height="49.784"><style><![CDATA[.B{stroke-width:2}.C{fill-rule:nonzero}.D{fill:#486385}.E{stroke:#486385}.F{fill:#eaeaea}]]></style><g fill="none" fill-rule="evenodd"><g stroke="#81ba33"><g fill="#81ba33" stroke-width="3"><path d="M27.833 44.74v-5"/><path d="M44.228 46.724h-12.17m-9.467 0H10.42" stroke-linecap="round"/></g><path d="M23.595 48.784h8.475v-3.87h-8.475z" fill="#fff" class="B"/></g><g class="E"><use xlink:href="#B" class="B C F"/><use xlink:href="#C"/></g><g class="D"><rect width="7.201" height="1.2" x="36.314" y="35.71" rx=".6"/><rect width="7.201" height="1.2" x="36.314" y="33.673" rx=".6"/><rect width="7.201" height="1.2" x="36.314" y="31.673" rx=".6"/></g><g class="E"><use xlink:href="#B" y="-12.626" class="B C F"/><use xlink:href="#C" y="-12.627"/></g><g class="D"><rect width="7.201" height="1.2" x="36.314" y="23.083" rx=".6"/><rect width="7.201" height="1.2" x="36.314" y="21.046" rx=".6"/><rect width="7.201" height="1.2" x="36.314" y="19.046" rx=".6"/></g><g class="E"><path d="M45.857 4.137H9.827c-.845 0-1.502.542-1.502 1.24v7.52c0 .698.657 1.24 1.5 1.24h36.03c.845 0 1.502-.542 1.502-1.24v-7.52c0-.697-.657-1.24-1.502-1.24z" class="B C F"/><use xlink:href="#C" y="-25.255"/></g><g class="D"><rect width="7.201" height="1.2" x="36.314" y="10.455" rx=".6"/><rect width="7.201" height="1.2" x="36.314" y="8.418" rx=".6"/><rect width="7.201" height="1.2" x="36.314" y="6.418" rx=".6"/></g><path d="M47.28 3.425l-.026-.002H9.59c-1.28 0-2.312 1.37-2.312 2.9v31.45c0 1.522 1.032 2.877 2.312 2.877h.896z" opacity=".2" fill="#fff" class="C"/><circle cx="12.705" cy="12.705" r="12.005" fill="#f7f7f7" stroke="#81ba33" stroke-width="1.4"/><path d="M13.152 17.224c-.4.284-.857.51-1.33.672-.865.297-1.775.443-2.69.433-.8 0-1.558-.12-2.273-.36-.694-.228-1.334-.596-1.88-1.08a5.13 5.13 0 0 1-1.28-1.794c-.316-.714-.473-1.547-.473-2.496 0-.93.152-1.753.456-2.473s.72-1.33 1.25-1.825a5.41 5.41 0 0 1 1.856-1.137c.736-.266 1.514-.4 2.297-.392.438 0 .833.027 1.185.08s.664.123.936.208a4.75 4.75 0 0 1 1.16.529c.246.18.422.37.53.568s.16.403.16.616a1.41 1.41 0 0 1-.12.576 2.29 2.29 0 0 1-.288.488c-.1.133-.214.256-.337.37-.086.08-.18.154-.28.216l-.408-.376a2.85 2.85 0 0 0-.6-.393 4.57 4.57 0 0 0-.808-.304c-.332-.09-.674-.132-1.017-.128-.47 0-.896.078-1.28.232-.377.15-.718.38-1 .673-.3.305-.514.668-.657 1.064a4.02 4.02 0 0 0-.232 1.409c0 .533.085 1.003.256 1.408s.406.744.704 1.016a2.97 2.97 0 0 0 1.065.617c.4.138.856.208 1.336.208.598 0 1.113-.075 1.545-.224s.76-.304.984-.464l1.2 2.064z" fill="#81ba33"/><path d="M12.195 14.903c.064.054.21.136.433.25s.506.224.848.336a10.58 10.58 0 0 0 1.184.304c.45.1.934.136 1.457.136.427 0 .768-.03 1.024-.088s.454-.136.593-.232a.68.68 0 0 0 .272-.328 1.16 1.16 0 0 0 .064-.377c.004-.25-.112-.484-.312-.632-.208-.165-.595-.296-1.16-.392l-1.633-.288a9.36 9.36 0 0 1-1.281-.32c-.4-.13-.796-.324-1.144-.576-.34-.25-.623-.573-.825-.945-.213-.384-.32-.86-.32-1.424a3.53 3.53 0 0 1 .272-1.385c.182-.432.46-.808.833-1.128s.845-.574 1.416-.76 1.24-.28 2.01-.28c.555 0 1.04.03 1.456.087a8.15 8.15 0 0 1 1.073.216 5.28 5.28 0 0 1 .728.257l.408.208c.182.106.355.253.52.44a.97.97 0 0 1 .249.664 1.43 1.43 0 0 1-.096.52 2.44 2.44 0 0 1-.233.456c-.1.14-.19.26-.296.36a2.67 2.67 0 0 1-.272.233c-.147-.137-.307-.258-.48-.36a3.97 3.97 0 0 0-.768-.36c-.334-.117-.677-.208-1.025-.273-.406-.077-.82-.114-1.232-.112s-.747.035-.992.104-.43.155-.553.256c-.113.088-.197.208-.24.344-.035.114-.054.233-.056.353a.93.93 0 0 0 .04.272c.027.085.1.168.192.248a1.62 1.62 0 0 0 .432.224c.187.07.44.136.76.2l1.697.336c.538.1 1.065.248 1.577.44.454.176.835.392 1.144.65a2.42 2.42 0 0 1 .697.928c.154.363.232.795.232 1.296 0 1.12-.42 1.996-1.257 2.625s-2.02.945-3.545.945a9.68 9.68 0 0 1-1.913-.176 11.36 11.36 0 0 1-1.528-.408c-.364-.124-.72-.27-1.065-.44-.272-.14-.435-.235-.488-.29z" class="D"/></g><defs ><path id="B" d="M45.857 29.39H9.827c-.845 0-1.502.543-1.502 1.24v7.52c0 .698.657 1.24 1.5 1.24h36.03c.845 0 1.502-.542 1.502-1.24v-7.52c0-.697-.657-1.24-1.502-1.24z"/><path id="C" d="M13.158 35.712c-.75 0-1.407-.616-1.407-1.32s.657-1.32 1.407-1.32 1.408.616 1.408 1.32-.657 1.32-1.408 1.32z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/CloudSimple_Services.svg b/src/main/webapp/img/lib/mscae/CloudSimple_Services.svg new file mode 100644 index 0000000000000000000000000000000000000000..6ccf3ab17b5567e77fd832f25e436bdaa0bae51e --- /dev/null +++ b/src/main/webapp/img/lib/mscae/CloudSimple_Services.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill-rule="evenodd"><rect width="48" height="48" rx="2" fill="#e4e4e4"/><path d="M26.403 34.715c-.264.19-.64.425-1.13.7s-1.108.545-1.85.808-1.616.5-2.62.682-2.143.287-3.41.287c-1.796 0-3.495-.27-5.1-.808s-3-1.346-4.22-2.423S5.905 31.543 5.2 29.94s-1.06-3.47-1.06-5.602c0-2.083.34-3.932 1.024-5.548s1.616-2.98 2.8-4.093 2.574-1.963 4.166-2.55 3.3-.88 5.153-.88c.98 0 1.867.06 2.657.18s1.5.275 2.1.467a10.65 10.65 0 0 1 1.563.61l1.04.575c.55.407.946.832 1.185 1.274s.36.904.36 1.383a3.16 3.16 0 0 1-.27 1.293 5.18 5.18 0 0 1-.646 1.095c-.227.297-.48.573-.754.826a3.89 3.89 0 0 1-.629.485l-.916-.844a6.39 6.39 0 0 0-1.346-.88c-.582-.284-1.19-.512-1.814-.682-.682-.192-1.442-.288-2.28-.288-1.053 0-2 .174-2.872.52a6.4 6.4 0 0 0-2.245 1.508c-.634.66-1.125 1.455-1.472 2.388s-.52 1.987-.52 3.16c0 1.197.2 2.25.574 3.16s.9 1.67 1.58 2.28c.69.623 1.504 1.094 2.388 1.383.92.31 1.92.467 2.998.467 1.34 0 2.496-.168 3.465-.503s1.706-.682 2.21-1.04l2.693 4.632z" fill="#81ba33"/><path d="M24.257 29.508c.144.12.467.305.97.557s1.137.502 1.903.754 1.652.478 2.657.682 2.095.305 3.268.305c.957 0 1.723-.066 2.298-.197s1.017-.306 1.33-.52.514-.46.6-.736.144-.557.144-.844c0-.575-.234-1.047-.7-1.418s-1.335-.665-2.604-.88l-3.663-.647a21 21 0 0 1-2.872-.718c-.92-.29-1.786-.728-2.568-1.292-.764-.562-1.395-1.286-1.85-2.12-.48-.862-.718-1.927-.718-3.196 0-1.1.203-2.136.6-3.106A6.74 6.74 0 0 1 24.94 13.6c.837-.718 1.897-1.286 3.177-1.705s2.783-.63 4.507-.63c1.245 0 2.334.066 3.268.198s1.735.293 2.406.485 1.214.383 1.633.574l.916.467c.407.24.796.57 1.167.987s.557.916.557 1.5a3.2 3.2 0 0 1-.216 1.168c-.137.358-.31.7-.52 1.023-.204.31-.425.58-.665.808a6.07 6.07 0 0 1-.61.52c-.24-.24-.6-.508-1.077-.807a8.91 8.91 0 0 0-1.724-.808c-.67-.24-1.436-.443-2.298-.6a14.48 14.48 0 0 0-2.765-.252c-.934 0-1.676.078-2.227.233s-.963.348-1.238.575-.455.485-.54.772a2.84 2.84 0 0 0-.126.79c0 .215.03.42.1.6s.204.377.43.557.55.347.97.503.987.305 1.705.45l3.806.754c1.34.263 2.52.592 3.537.987s1.874.88 2.568 1.454a5.44 5.44 0 0 1 1.562 2.083c.347.814.52 1.784.52 2.91 0 2.513-.94 4.476-2.818 5.89s-4.53 2.118-7.954 2.118c-1.556 0-2.986-.13-4.29-.395s-2.448-.568-3.43-.915-1.777-.677-2.387-.988-.976-.526-1.095-.646z" fill="#486385"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/CloudSimple_Virtual_Machines.svg b/src/main/webapp/img/lib/mscae/CloudSimple_Virtual_Machines.svg new file mode 100644 index 0000000000000000000000000000000000000000..48c941de7124e807485a408bccea1e904af33601 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/CloudSimple_Virtual_Machines.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="42.297" height="27.391"><path d="M23.493 24.8a13 13 0 0 1-1.52.85 17 17 0 0 1-2.06.83 18.6 18.6 0 0 1-2.63.64 19.34 19.34 0 0 1-3.33.26 16.37 16.37 0 0 1-5.41-.88 12.71 12.71 0 0 1-4.43-2.6 12.3 12.3 0 0 1-3-4.25 14.37 14.37 0 0 1-1.11-5.83 15.09 15.09 0 0 1 1.08-5.88 12.21 12.21 0 0 1 3-4.33A12.74 12.74 0 0 1 8.593.94a17 17 0 0 1 5.59-.9 19.34 19.34 0 0 1 4.3.41 11.23 11.23 0 0 1 2.89 1 7.27 7.27 0 0 1 .8.53 2.8 2.8 0 0 1 1.11 3.51 1.78 1.78 0 0 1-.29.5c-1 1.3-3.07.54-4.25 0a10.45 10.45 0 0 0-4.33-.8 10.12 10.12 0 0 0-3.27.51 7 7 0 0 0-2.63 1.57 7.5 7.5 0 0 0-1.75 2.63 9.82 9.82 0 0 0-.64 3.74 10 10 0 0 0 .67 3.87 7 7 0 0 0 1.86 2.63 7.6 7.6 0 0 0 2.74 1.52 11 11 0 0 0 3.35.47 10.38 10.38 0 0 0 4.15-.7 18.69 18.69 0 0 0 2.14-1.06z" fill="#83bc41"/><path d="M19.553 20.2a7.89 7.89 0 0 0 1.29.67 23.08 23.08 0 0 0 2.29.85 23.67 23.67 0 0 0 3.12.75 21.89 21.89 0 0 0 3.82.31 11.7 11.7 0 0 0 4.38-.7 2.44 2.44 0 0 0 1.7-2.4 2.5 2.5 0 0 0-1.08-2.19 9 9 0 0 0-3.87-1.06l-4-.47a18.87 18.87 0 0 1-3.77-.75 9.7 9.7 0 0 1-3-1.47 6.56 6.56 0 0 1-1.93-2.3 7.13 7.13 0 0 1-.69-3.27 7.69 7.69 0 0 1 .64-3.12 7 7 0 0 1 2-2.6 10.11 10.11 0 0 1 3.64-1.78 19.92 19.92 0 0 1 5.44-.65 23.2 23.2 0 0 1 8.33 1.18 8.29 8.29 0 0 1 1.72.94 2.42 2.42 0 0 1 1 3.25c-.9 1.67-2.77.88-2.94.8a12.44 12.44 0 0 0-1.36-.6 18.89 18.89 0 0 0-6.65-1.11q-6 0-6 3.15a2.25 2.25 0 0 0 1.13 2 8.18 8.18 0 0 0 3.25.94l5.25.7a14 14 0 0 1 6.65 2.36 6.12 6.12 0 0 1 2.37 5.27 7.37 7.37 0 0 1-3.07 6.19q-3.07 2.32-8.84 2.32a28.36 28.36 0 0 1-5.09-.42 30.66 30.66 0 0 1-3.94-.94 19.61 19.61 0 0 1-2.69-1.07 8.17 8.17 0 0 1-1.34-.77z" fill="#496487"/><path d="M20.843 20.86l-.4-.17-1.57.75-.9 1.4-.7 1.36a6.19 6.19 0 0 0 1.29.8 6.58 6.58 0 0 0 2.62 1l.76-.34a13 13 0 0 0 1.52-.85l-2.07-3.7z" fill="#83bc41"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Cloud_Cycle.svg b/src/main/webapp/img/lib/mscae/Cloud_Cycle.svg index 0e02723165bfce274e3212d1577c41045932c0cf..91bcf0a7d62c58393572a20eea46d48bb9a08846 100644 --- a/src/main/webapp/img/lib/mscae/Cloud_Cycle.svg +++ b/src/main/webapp/img/lib/mscae/Cloud_Cycle.svg @@ -1,55 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="49.799" - height="35.900002" - viewBox="0 0 49.799 35.900002" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Cloud_Cycle.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata158"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs156" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview154" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="24.899" - inkscape:cy="17" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 45.036,18.999 c 0.497,-1.252 0.778,-2.612 0.778,-4.041 0,-6.058 -4.907,-10.969 -10.96,-10.969 -1.683,0 -3.271,0.391 -4.696,1.069 C 27.79,1.987 24.086,0 19.91,0 12.757,0 6.958,5.804 6.958,12.964 c 0,0.581 0.051,1.149 0.125,1.71 -1.704,0.643 -3.202,1.702 -4.381,3.047 0.99,0.858 2.395,1.373 3.847,1.373 5.276,-0.032 12.204,-4.331 15.868,-6.891 L 20.67,10.288 28.572,8.614 26.001,16.277 24.288,14.429 C 22.642,15.761 13.72,22.377 6.501,22.377 4.269,22.377 2.395,21.742 0.93,20.49 0.365,21.76 0.041,23.158 0,24.629 c 1.41,1.29 3.477,1.963 6.234,1.963 6.822,0 17.441,-4.259 26.425,-10.596 l -1.509,-1.814 7.97,-1.304 -2.924,7.536 -1.69,-2.007 c -9.437,7.101 -20.119,11.508 -27.812,11.508 -2.377,0 -4.408,-0.418 -6.04,-1.236 0.549,1.508 1.913,3.531 2.527,3.974 1.083,0.783 3.312,1.412 6.569,1.412 10e-4,0 10e-4,0 0.002,0 6.033,0 14.506,-2.498 21.949,-6.68 l -1.507,-1.953 8.012,-1.01 -3.198,7.423 -1.601,-2.05 C 28.995,32.5 24.152,34.603 19.449,35.9 h 21.383 c 4.953,0 8.967,-4.018 8.967,-8.975 0,-3.435 -1.93,-6.417 -4.763,-7.926 z" - id="path151" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="49.799" height="35.9"><path d="M45.036 19a10.92 10.92 0 0 0 .778-4.041c0-6.058-4.907-10.97-10.96-10.97-1.683 0-3.27.39-4.696 1.07C27.8 1.987 24.086 0 19.9 0A12.96 12.96 0 0 0 6.958 12.964c0 .58.05 1.15.125 1.7a11 11 0 0 0-4.381 3.047c1 .858 2.395 1.373 3.847 1.373 5.276-.032 12.204-4.33 15.868-6.89l-1.747-1.915 7.902-1.674L26 16.277l-1.713-1.848C22.642 15.76 13.72 22.377 6.5 22.377c-2.232 0-4.106-.635-5.57-1.887-.565 1.27-.89 2.668-.93 4.14 1.4 1.3 3.477 1.963 6.234 1.963 6.822 0 17.44-4.26 26.425-10.596l-1.51-1.814 7.97-1.304-2.924 7.536-1.7-2.007c-9.437 7.1-20.12 11.508-27.812 11.508-2.377 0-4.408-.418-6.04-1.236.55 1.508 1.913 3.53 2.527 3.974 1.083.783 3.312 1.412 6.57 1.412 6.035 0 14.508-2.498 21.95-6.68l-1.507-1.953 8.012-1-3.198 7.423-1.6-2.05C28.995 32.5 24.152 34.603 19.45 35.9h21.383c4.953 0 8.967-4.018 8.967-8.975 0-3.435-1.93-6.417-4.763-7.926z" fill="#59b4d9"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Cloud_Service.svg b/src/main/webapp/img/lib/mscae/Cloud_Service.svg index 9e5eafedfefe308db7a3180404e1403ddbcd3c2d..1f02e843706e542f9df1c2c3a03ac05304f83b4e 100644 --- a/src/main/webapp/img/lib/mscae/Cloud_Service.svg +++ b/src/main/webapp/img/lib/mscae/Cloud_Service.svg @@ -1,67 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="42.433998" - viewBox="0 0 50 42.433998" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure Cloud Service_COLOR.svg"><metadata - id="metadata17"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs15" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview13" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="10.363697" - inkscape:cx="17.089658" - inkscape:cy="12.22544" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 43.339,14.659 C 43.534,13.748 43.63,12.88 43.63,12.016 43.63,5.39 38.232,0 31.595,0 26.964,0 22.795,2.622 20.785,6.736 19.166,5.126 16.976,4.213 14.671,4.213 9.908,4.213 6.033,8.088 6.033,12.85 6.033,13.496 6.105,14.148 6.251,14.818 2.328,16.416 0,19.731 0,23.763 0,29.2 4.443,33.459 10.113,33.459 L 10.759,33.459 C 10.869,38.427 14.939,42.434 19.923,42.434 23.278,42.434 26.316,40.625 27.919,37.753 29.125,38.798 30.667,39.381 32.279,39.381 35.699,39.381 38.528,36.79 38.929,33.459 L 39.89,33.459 C 45.56,33.459 50,29.2 50,23.763 50,19.564 47.456,16.109 43.339,14.659" - id="path3" - inkscape:connector-curvature="0" - style="fill:#3e3e3e" /><path - d="M 39.437,19.192 40.173,17.449 39.96,17.265 38.353,15.869 38.361,14.458 40.173,12.838 39.46,11.085 39.181,11.104 37.056,11.256 36.064,10.25 36.199,7.822 34.457,7.087 34.273,7.299 32.876,8.908 31.464,8.898 29.843,7.088 28.091,7.799 28.111,8.08 28.261,10.205 27.257,11.195 24.829,11.06 24.093,12.803 24.306,12.987 25.914,14.384 25.905,15.796 24.095,17.417 24.806,19.169 25.087,19.148 27.21,18.999 28.202,20.004 28.067,22.43 29.81,23.166 29.994,22.953 31.39,21.345 32.802,21.355 34.423,23.167 36.175,22.455 36.155,22.173 36.005,20.049 37.011,19.057 39.437,19.192 Z M 30.628,18.693 C 28.657,17.862 27.734,15.591 28.566,13.622 29.399,11.65 31.668,10.728 33.638,11.559 35.608,12.391 36.531,14.662 35.7,16.632 34.868,18.602 32.599,19.525 30.628,18.693" - id="path5" - inkscape:connector-curvature="0" - style="fill:#ffffff" /><path - d="M 28.357,27.948 28.357,26.055 28.091,25.969 26.066,25.306 25.527,24.002 26.567,21.804 25.231,20.467 24.98,20.594 23.081,21.556 21.776,21.015 20.958,18.726 19.067,18.724 18.98,18.993 18.317,21.016 17.013,21.555 14.815,20.516 13.478,21.853 13.605,22.104 14.567,24.004 14.027,25.306 11.737,26.125 11.736,28.016 12.003,28.104 14.028,28.765 14.567,30.071 13.527,32.267 14.863,33.607 15.114,33.479 17.015,32.515 18.317,33.056 19.136,35.345 21.027,35.346 21.114,35.08 21.777,33.055 23.082,32.516 25.278,33.556 26.617,32.22 26.49,31.969 25.526,30.07 26.068,28.765 28.357,27.948 Z M 20.044,30.908 C 17.906,30.907 16.175,29.172 16.175,27.034 16.177,24.895 17.911,23.164 20.05,23.165 22.189,23.166 23.921,24.9 23.919,27.039 23.918,29.177 22.183,30.909 20.044,30.908" - id="path7" - inkscape:connector-curvature="0" - style="fill:#ffffff" /><path - d="M 34.449,16.103 C 33.91,17.382 32.435,17.981 31.156,17.441 29.877,16.901 29.278,15.427 29.818,14.148 30.358,12.871 31.832,12.27 33.111,12.81 34.389,13.35 34.988,14.824 34.449,16.103" - id="path9" - inkscape:connector-curvature="0" - style="fill:#b8d432" /><path - d="M 22.561,27.037 C 22.56,28.426 21.433,29.551 20.046,29.55 18.658,29.549 17.534,28.423 17.535,27.034 17.536,25.646 18.662,24.521 20.048,24.522 21.437,24.523 22.562,25.649 22.561,27.037" - id="path11" - inkscape:connector-curvature="0" - style="fill:#b8d432" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="42.434"><path d="M43.34 14.66a12.52 12.52 0 0 0 .291-2.643C43.63 5.4 38.232 0 31.595 0a12 12 0 0 0-10.81 6.736 8.66 8.66 0 0 0-6.114-2.523 8.65 8.65 0 0 0-8.638 8.637c0 .646.072 1.298.218 1.968C2.328 16.416 0 19.73 0 23.763 0 29.2 4.443 33.46 10.113 33.46h.646c.1 4.968 4.18 8.975 9.164 8.975 3.355 0 6.393-1.81 7.996-4.68a6.65 6.65 0 0 0 4.36 1.628c3.42 0 6.25-2.59 6.65-5.922h.96c5.67 0 10.1-4.26 10.1-9.696 0-4.2-2.544-7.654-6.66-9.104" fill="#3e3e3e"/><path d="M39.437 19.192l.736-1.743-.213-.184-1.607-1.396.008-1.4 1.812-1.62-.713-1.753-2.405.172-.992-1.006.135-2.428-1.742-.735-1.58 1.82-1.412-.01-1.62-1.8-1.752.7.17 2.406-1.004 1-2.428-.135-.736 1.743.213.184 1.608 1.397-.01 1.412-1.8 1.62.7 1.752.28-.02L27.2 19l.992 1.005-.135 2.426 1.743.736.184-.213 1.396-1.608 1.412.01 1.62 1.812 1.752-.712-.02-.282-.15-2.124L37 19.058l2.426.135zm-8.8-.5a3.872 3.872 0 1 1 3.01-7.134c1.97.832 2.893 3.103 2.062 5.073a3.87 3.87 0 0 1-5.072 2.061m-2.27 9.256v-1.893l-.266-.086-2.025-.663-.54-1.304 1.04-2.198-1.336-1.337-2.15 1.1-1.305-.54-.818-2.3-1.9-.002-.087.27-.663 2.023-1.304.54-2.198-1.04-1.337 1.337 1.1 2.15-.54 1.302-2.3.82-.001 1.9.267.088 2.025.66.54 1.306-1.04 2.196 1.336 1.34.25-.128 1.9-.964 1.302.54.82 2.3 1.9.001.087-.266.663-2.025 1.305-.54 2.196 1.04 1.34-1.336-.127-.25-.964-1.9.542-1.305 2.3-.817zm-8.313 2.96c-2.138-.001-3.87-1.736-3.87-3.874s1.736-3.87 3.875-3.87a3.87 3.87 0 0 1 3.869 3.874c-.001 2.138-1.736 3.87-3.875 3.87" fill="#fff"/><path d="M34.45 16.103c-.54 1.28-2.014 1.878-3.293 1.338s-1.878-2.014-1.338-3.293 2.014-1.878 3.293-1.338 1.877 2.014 1.338 3.293m-11.9 10.934c-.001 1.4-1.128 2.514-2.515 2.513s-2.512-1.127-2.5-2.516 1.127-2.513 2.513-2.512 2.514 1.127 2.513 2.515" fill="#b8d432"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Cloud_Services_Classic.svg b/src/main/webapp/img/lib/mscae/Cloud_Services_Classic.svg new file mode 100644 index 0000000000000000000000000000000000000000..c826f78fafc603d3d7033b1754c38ba5418f9403 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Cloud_Services_Classic.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="42.434"><path d="M43.34 14.66a12.52 12.52 0 0 0 .291-2.643C43.63 5.4 38.232 0 31.595 0a12 12 0 0 0-10.81 6.736 8.66 8.66 0 0 0-6.114-2.523 8.65 8.65 0 0 0-8.638 8.637c0 .646.072 1.298.218 1.968C2.328 16.416 0 19.73 0 23.763 0 29.2 4.443 33.46 10.113 33.46h.646c.1 4.968 4.18 8.975 9.164 8.975a9.14 9.14 0 0 0 7.996-4.681 6.65 6.65 0 0 0 4.36 1.628c3.42 0 6.25-2.59 6.65-5.922h.96c5.67 0 10.1-4.26 10.1-9.696 0-4.2-2.544-7.654-6.66-9.104" fill="#59b4d9"/><path d="M39.437 19.192l.736-1.743-.213-.184-1.607-1.396.008-1.41 1.812-1.62-.713-1.753-.28.02-2.125.152-.992-1.006.135-2.428-1.742-.735-1.58 1.82-1.412-.01-1.62-1.8-1.752.71.17 2.406-1.004 1-2.428-.135-.736 1.743.213.184 1.608 1.397-.01 1.412-1.8 1.62.71 1.752.28-.02L27.2 19l.992 1.005-.135 2.426 1.743.736.184-.213 1.396-1.608 1.412.01 1.62 1.812 1.752-.712-.02-.282-.15-2.124 1.006-.992zm-8.81-.5c-1.97-.83-2.894-3.102-2.063-5.072s3.102-2.894 5.073-2.063 2.894 3.102 2.063 5.073-3.102 2.894-5.073 2.063m-2.27 9.255v-1.893l-.266-.086-2.025-.663-.54-1.304 1.04-2.198-1.336-1.337-2.15 1.09-1.305-.54-.818-2.29-1.89-.002-.087.27-.663 2.023-1.304.54-2.198-1.04-1.337 1.337 1.09 2.15-.54 1.302-2.3.82-.001 1.89.267.088 2.025.66.54 1.306-1.04 2.196 1.336 1.34.25-.128 1.9-.964 1.302.54.82 2.29 1.89.001.087-.266.663-2.025 1.305-.54 2.196 1.04 1.34-1.336-.127-.25-.964-1.9.542-1.305zm-8.313 2.96c-1.384-.001-2.66-.74-3.352-1.94s-.69-2.675.004-3.873 1.972-1.934 3.356-1.933c2.14.002 3.87 1.737 3.87 3.876s-1.737 3.87-3.876 3.87" fill="#fff"/><path d="M34.45 16.103c-.337.845-1.104 1.44-2.006 1.56s-1.797-.26-2.34-.988-.652-1.694-.283-2.525c.556-1.25 2.01-1.826 3.273-1.294s1.865 1.976 1.357 3.247M22.56 27.037c-.001 1.388-1.127 2.512-2.515 2.51s-2.512-1.127-2.51-2.515 1.127-2.512 2.515-2.51 2.512 1.127 2.51 2.515" fill="#b8d432"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Code.svg b/src/main/webapp/img/lib/mscae/Code.svg index 100431f6e6060efc119d3b95bc86948a978564d7..516ce2c159dbd895ab182ca2100bba83b7423ca5 100644 --- a/src/main/webapp/img/lib/mscae/Code.svg +++ b/src/main/webapp/img/lib/mscae/Code.svg @@ -1,89 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - viewBox="0 0 50 42.599998" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Code.svg" - width="50" - height="42.599998" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata6111"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs6109" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1851" - inkscape:window-height="921" - id="namedview6107" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.020815" - inkscape:cx="23.06345" - inkscape:cy="17.836037" - inkscape:window-x="1930" - inkscape:window-y="0" - inkscape:window-maximized="0" - inkscape:current-layer="Layer_1" /> -<path - d="m 0,40.6 c 0,1.1 0.9,2 2,2 h 46 c 1.1,0 2,-0.9 2,-2 V 8.6 H 0 Z" - id="path6092" - inkscape:connector-curvature="0" - style="fill:#3999c6" /> -<path - d="M 48,0 H 2 C 0.9,0 0,0.9 0,2 V 9.3 H 50 V 2 C 50,0.9 49.1,0 48,0 Z" - id="path6094" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<rect - x="0" - y="9.3000002" - enable-background="new " - width="50" - height="3.3" - id="rect6096" - style="opacity:0.15;fill:#ffffff" /> -<path - enable-background="new " - d="M 2,0 C 0.9,0 0,0.9 0,2 v 7.3 3.3 28 c 0,1.1 0.9,2 2,2 H 21.2 L 43.6,0 Z" - id="path6098" - inkscape:connector-curvature="0" - style="opacity:0.1;fill:#ffffff" /> -<polygon - points="20.4,40 27.8,22.2 30.6,22.2 23.1,40 " - id="polygon6100" - style="fill:#ffffff" - transform="translate(0.5,-4.5)" /> -<polygon - points="17.7,24.2 6.5,30.1 6.5,32.2 17.7,38.1 17.7,35.4 9.8,31.1 17.7,26.9 " - id="polygon6102" - style="fill:#ffffff" - transform="translate(0.5,-4.5)" /> -<polygon - points="32.4,24.2 43.6,30.1 43.6,32.2 32.4,38.1 32.4,35.4 40.4,31.1 32.4,26.9 " - id="polygon6104" - style="fill:#ffffff" - transform="translate(0.5,-4.5)" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="42.6"><path d="M0 40.6c0 1.1.9 2 2 2h46c1.1 0 2-.9 2-2v-32H0z" fill="#3999c6"/><path d="M48 0H2C.9 0 0 .9 0 2v7.3h50V2c0-1.1-.9-2-2-2z" fill="#a0a1a2"/><g fill="#fff"><path d="M0 9.3h50v3.3H0z" opacity=".15"/><path d="M2 0C.9 0 0 .9 0 2v38.6c0 1.1.9 2 2 2h19.2L43.6 0z" opacity=".1"/><path d="M20.9 35.5l7.4-17.8h2.8l-7.5 17.8zm-2.7-15.8L7 25.6v2.1l11.2 5.9v-2.7l-7.9-4.3 7.9-4.2zm14.7 0l11.2 5.9v2.1l-11.2 5.9v-2.7l8-4.3-8-4.2z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Cognitive_Services.svg b/src/main/webapp/img/lib/mscae/Cognitive_Services.svg new file mode 100644 index 0000000000000000000000000000000000000000..edd3f65d4dbd81d8dfcc97227a0537e9b1fe6c92 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Cognitive_Services.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" viewBox="64.048 -1062.413 193.082 114.372" width="193.082" height="114.372"><path d="M254.748-1005.72c-3.504-8.302-10.753-15.332-20.133-19.63-4.324-14.54-16.426-29.08-34.475-29.08-.575 0-1.156.015-1.74.044-7.528-5.398-14.84-8.03-22.287-8.03-4.49 0-9.076.99-13.674 2.952-3.405-1.785-7.312-2.715-11.487-2.715-9.237 0-17.998 4.266-23.406 9.264-1.74-.406-3.52-.608-5.304-.604-13.78 0-27.433 11.384-31.124 25.186-11.877 4.31-20.55 12.14-24.624 22.323-3.952 9.882-3.083 20.93 2.384 30.313 5.43 9.32 14.928 14.883 25.408 14.883 4.02 0 7.896-.82 11.43-2.402 6.372 5.793 14.57 9.256 22.334 9.256 2.707 0 5.3-.4 7.75-1.193 6.286 5.17 15.922 7.11 23.74 7.11 9.226 0 17.242-2.437 22.557-6.693 3.444 1.594 7.237 2.42 11.194 2.42h.003c9.9 0 20.127-5.274 25.713-12.607 3.116 1.277 6.396 1.938 9.712 1.938h.003c10.816-.002 20.86-7.063 25.59-17.99 3.604-8.33 3.756-16.886.438-24.747z" fill="#3176bc"/><path d="M118.452-995.685h-9.74c-1.215-5.37-6.015-9.394-11.744-9.394-6.644 0-12.05 5.406-12.05 12.05s5.405 12.05 12.05 12.05c5.696 0 10.47-3.98 11.72-9.3h9.764c1.238.002 2.24 1.004 2.242 2.242v33.09a29.66 29.66 0 0 0 5.408.906v-33.997a7.66 7.66 0 0 0-7.651-7.649zm-21.483 9.708a7.06 7.06 0 0 1-7.049-7.051 7.06 7.06 0 0 1 7.049-7.05 7.06 7.06 0 0 1 7.049 7.05 7.06 7.06 0 0 1-7.049 7.051zm60.294-7.315v-11.256a7.66 7.66 0 0 0-7.648-7.648H132.5c-1.238-.002-2.24-1.005-2.242-2.243v-40.697c-.944.7-1.85 1.432-2.712 2.223a22.18 22.18 0 0 0-2.696-.46v38.934a7.66 7.66 0 0 0 7.65 7.651h17.115c1.236.002 2.238 1.004 2.24 2.24v11.256c-5.344 1.232-9.344 6.02-9.344 11.733 0 6.644 5.404 12.05 12.048 12.05s12.05-5.406 12.05-12.05c0-5.713-4-10.5-9.345-11.733zm-2.704 18.784a7.06 7.06 0 0 1-7.048-7.05 7.06 7.06 0 0 1 7.048-7.051 7.06 7.06 0 0 1 7.049 7.051 7.06 7.06 0 0 1-7.049 7.05zm76.442-30.02c0-6.644-5.404-12.05-12.047-12.05s-12.05 5.405-12.05 12.05c0 5.696 3.978 10.47 9.297 11.72v2.23c-.001 1.237-1.003 2.24-2.24 2.242h-21.668v-38.774a7.66 7.66 0 0 0-7.649-7.65h-11.743c-1.215-5.368-6.014-9.392-11.743-9.392-6.644 0-12.05 5.406-12.05 12.05s5.405 12.048 12.05 12.048c5.696 0 10.47-3.978 11.72-9.298h11.767c1.238.001 2.24 1.004 2.24 2.242v74.03c1.75.423 3.56.672 5.408.737v-30.585h21.668a7.66 7.66 0 0 0 7.65-7.65v-2.207C226.98-994 231-998.798 231-1004.528zm-69.843-20.525a7.06 7.06 0 0 1-7.049-7.048 7.06 7.06 0 0 1 7.049-7.05 7.06 7.06 0 0 1 7.049 7.05 7.06 7.06 0 0 1-7.049 7.048zm57.796 27.574a7.06 7.06 0 0 1-7.049-7.05 7.06 7.06 0 0 1 7.049-7.049 7.06 7.06 0 0 1 7.047 7.049 7.06 7.06 0 0 1-7.047 7.05z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Cognitive_Services_Computer_Vision.svg b/src/main/webapp/img/lib/mscae/Cognitive_Services_Computer_Vision.svg index 56146942fde6ada43205361d4d99837d330700c5..1be445eed9f3a41477f59fca7043fcb9f09c825c 100644 --- a/src/main/webapp/img/lib/mscae/Cognitive_Services_Computer_Vision.svg +++ b/src/main/webapp/img/lib/mscae/Cognitive_Services_Computer_Vision.svg @@ -1,14 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<rect y="0" fill="#009480" width="50" height="50"/> -<path fill="#FFFFFF" d="M31.512,15.628c-2.93-1.395-6.023-2-9.256-1.256c-6.326,1.442-10.651,5.651-14.558,10.605 - c2.93,3.93,6.302,7.163,10.605,9.302c4.186,2.07,8.465,2.279,12.767,0.326c4.465-2.023,7.93-5.209,10.86-9.047 - c0.14-0.186,0.256-0.395,0.395-0.605C39.372,21.047,35.953,17.744,31.512,15.628z"/> -<path fill="#414141" d="M25.07,17.651c-4.116-0.023-7.512,3.279-7.558,7.372c-0.047,4.186,3.279,7.605,7.419,7.628 - c4.163,0.023,7.581-3.326,7.581-7.465S29.186,17.674,25.07,17.651z M24.07,28.814c-0.907,0-1.814,0-2.721,0c0-0.907,0-1.814,0-2.721 - c0.907,0,1.814,0,2.721,0C24.07,26.977,24.07,27.884,24.07,28.814z M24.07,24.209c-0.907,0-1.814,0-2.721,0c0-0.907,0-1.814,0-2.721 - c0.907,0,1.814,0,2.721,0C24.07,22.395,24.07,23.302,24.07,24.209z M28.674,28.814c-0.907,0-1.814,0-2.721,0 - c0-0.907,0-1.814,0-2.721c0.907,0,1.814,0,2.721,0C28.674,26.977,28.674,27.884,28.674,28.814z M28.674,24.209 - c-0.907,0-1.814,0-2.721,0c0-0.907,0-1.814,0-2.744c0.907,0,1.814,0,2.721,0C28.674,22.395,28.674,23.302,28.674,24.209z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path fill="#009480" d="M0 0h50v50H0z"/><path fill="#fff" d="M31.512 15.628c-2.93-1.395-6.023-2-9.256-1.256-6.326 1.442-10.65 5.65-14.558 10.605 2.93 3.93 6.302 7.163 10.605 9.302 4.186 2.07 8.465 2.28 12.767.326 4.465-2.023 7.93-5.21 10.86-9.047.14-.186.256-.395.395-.605-2.953-3.906-6.372-7.21-10.813-9.325z"/><path fill="#414141" d="M25.07 17.65c-4.116-.023-7.512 3.28-7.558 7.372-.047 4.186 3.28 7.605 7.42 7.628 4.163.023 7.58-3.326 7.58-7.465s-3.326-7.512-7.442-7.535zm-1 11.163h-2.72v-2.72h2.72v2.72zm0-4.605h-2.72v-2.72h2.72v2.72zm4.604 4.605h-2.72v-2.72h2.72v2.72zm0-4.605h-2.72v-2.744h2.72v2.744z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Cognitive_Services_Speech.svg b/src/main/webapp/img/lib/mscae/Cognitive_Services_Speech.svg index fc64260912951b0d0e38ee640b27c934e1200709..5f8f65a8d8a571a6c0ce6dcd11ae2dd435418938 100644 --- a/src/main/webapp/img/lib/mscae/Cognitive_Services_Speech.svg +++ b/src/main/webapp/img/lib/mscae/Cognitive_Services_Speech.svg @@ -1,21 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<rect y="0" fill="#009480" width="50" height="50"/> -<path fill="#FFFFFF" d="M9.907,25.419c0-1.419,0-2.814,0-4.233c0.093-0.605,0.233-1.233,0.302-1.837 - c0.395-2.86,2.326-5.767,5.837-6.372C22.023,11.93,28,11.907,33.977,13c3.256,0.605,5.047,2.721,5.698,5.86 - c0.605,2.907,0.558,5.837,0.07,8.767c-0.488,2.814-2.465,5.674-6.093,6.116c-2.372,0.279-4.744,0.488-7.116,0.744 - c-0.326,0.047-0.698,0.116-0.953,0.302c-1.326,0.86-2.07,1.837-3.977,2.605c-1.558,0.674-4.86,1.395-5.116,1.326 - c-0.116-0.186,2.326-2.884,2.535-4.512c-0.86-0.14-1.512-0.233-2.14-0.326c-3.721-0.558-5.907-2.605-6.605-6.233 - C10.14,26.907,10.047,26.163,9.907,25.419z"/> -<path fill="#414141" d="M29.047,30.256c0.605-0.093,1.047-0.14,1.512-0.209c2.605-0.372,4.14-1.698,4.628-4.023 - c0.093-0.465,0.163-0.953,0.256-1.442c0-0.907,0-1.814,0-2.721c-0.07-0.395-0.163-0.791-0.209-1.186 - c-0.279-1.837-1.628-3.721-4.093-4.116c-4.186-0.674-8.372-0.698-12.558,0.023c-2.279,0.395-3.535,1.767-4,3.791 - c-0.442,1.884-0.395,3.767-0.047,5.674c0.326,1.814,1.744,3.581,4.256,3.953C22.512,30.512,29.047,30.256,29.047,30.256z"/> -<path fill="#FFFFFF" d="M19,23.186C19,22.512,19.512,22,20.186,22c0.651,0,1.186,0.535,1.186,1.186c0,0.628-0.535,1.163-1.186,1.163 - C19.535,24.372,19,23.837,19,23.186z"/> -<path fill="#FFFFFF" d="M29.93,22c0.674,0,1.186,0.512,1.186,1.186c0,0.651-0.535,1.186-1.186,1.186 - c-0.628,0-1.163-0.535-1.186-1.163C28.744,22.535,29.279,22,29.93,22z"/> -<path fill="#FFFFFF" d="M25.047,24.372c-0.651,0-1.186-0.535-1.186-1.186c0.023-0.651,0.535-1.163,1.186-1.163 - c0.651,0,1.186,0.535,1.186,1.186C26.233,23.837,25.721,24.372,25.047,24.372z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path fill="#009480" d="M0 0h50v50H0z"/><path fill="#fff" d="M9.907 25.42v-4.233l.302-1.837c.395-2.86 2.326-5.767 5.837-6.372C22.023 11.93 28 11.907 33.977 13c3.256.605 5.047 2.72 5.698 5.86.605 2.907.558 5.837.07 8.767-.488 2.814-2.465 5.674-6.093 6.116l-7.116.744c-.326.047-.698.116-.953.302-1.326.86-2.07 1.837-3.977 2.605-1.558.674-4.86 1.395-5.116 1.326-.116-.186 2.326-2.884 2.535-4.512l-2.14-.326c-3.72-.558-5.907-2.605-6.605-6.233-.14-.742-.233-1.486-.373-2.23z"/><path fill="#414141" d="M29.047 30.256l1.512-.21c2.605-.372 4.14-1.698 4.628-4.023l.256-1.442v-2.72l-.21-1.186c-.28-1.837-1.628-3.72-4.093-4.116-4.186-.674-8.372-.698-12.558.023-2.28.395-3.535 1.767-4 3.79-.442 1.884-.395 3.767-.047 5.674.326 1.814 1.744 3.58 4.256 3.953 3.72.512 10.255.256 10.255.256z"/><path d="M19 23.186A1.16 1.16 0 0 1 20.186 22a1.19 1.19 0 0 1 1.186 1.186c0 .628-.535 1.163-1.186 1.163-.65.023-1.186-.512-1.186-1.163zM29.93 22a1.16 1.16 0 0 1 1.186 1.186 1.19 1.19 0 0 1-1.186 1.186 1.22 1.22 0 0 1-1.186-1.163c0-.674.535-1.2 1.186-1.2zm-4.883 2.372a1.19 1.19 0 0 1-1.186-1.186c.023-.65.535-1.163 1.186-1.163a1.19 1.19 0 0 1 1.186 1.186c0 .628-.512 1.163-1.186 1.163z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Cognitive_Services_emotion.svg b/src/main/webapp/img/lib/mscae/Cognitive_Services_emotion.svg index 0fcb026f015d6bc07f0011051c5acc38abc7c92e..ae82a5bca84a16e7e4f08ac12f0f97ec31ebf0bf 100644 --- a/src/main/webapp/img/lib/mscae/Cognitive_Services_emotion.svg +++ b/src/main/webapp/img/lib/mscae/Cognitive_Services_emotion.svg @@ -1,15 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<rect y="0" fill="#009480" width="50" height="50"/> -<path fill="#FFFFFF" d="M31.465,15.581c-2.953-1.395-6.047-1.977-9.256-1.209C15.884,15.86,11.581,20.093,7.698,25.07 - c2.953,3.907,6.349,7.14,10.674,9.233c4.209,2.047,8.465,2.233,12.767,0.256c4.442-2.047,7.884-5.256,10.814-9.116 - c0.14-0.186,0.256-0.395,0.372-0.605C39.349,20.953,35.907,17.674,31.465,15.581z"/> -<path fill="#414141" d="M25,17.651c-4.14,0-7.488,3.349-7.488,7.512c0,4.14,3.349,7.512,7.488,7.512s7.488-3.349,7.488-7.512 - S29.14,17.651,25,17.651z M25,30.698c-1.093,0-2.07-1.07-2.07-2.302c0-1,0.907-1.814,2.047-1.814c1.14,0,2.07,0.814,2.07,1.791 - C27.07,29.628,26.116,30.698,25,30.698z"/> -<path fill="#FFFFFF" d="M28,24.605c-0.651,0-1.186-0.535-1.186-1.186c0.023-0.651,0.535-1.163,1.186-1.163 - c0.651,0,1.186,0.535,1.186,1.186C29.186,24.093,28.651,24.605,28,24.605z"/> -<path fill="#FFFFFF" d="M22.047,24.605c-0.651,0-1.186-0.535-1.186-1.186c0.023-0.651,0.535-1.163,1.186-1.163 - c0.651,0,1.186,0.535,1.186,1.186C23.233,24.093,22.698,24.605,22.047,24.605z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="50"><path fill="#009480" d="M0 0h50v50H0z"/><path fill="#fff" d="M31.465 15.58c-2.953-1.395-6.047-1.977-9.256-1.21-6.325 1.488-10.628 5.72-14.51 10.698 2.953 3.907 6.35 7.14 10.674 9.233 4.21 2.047 8.465 2.233 12.767.256 4.442-2.047 7.884-5.256 10.814-9.116.14-.186.256-.395.372-.605-2.976-3.885-6.418-7.164-10.86-9.257z"/><path fill="#414141" d="M25 17.65c-4.14 0-7.488 3.35-7.488 7.512 0 4.14 3.35 7.512 7.488 7.512a7.49 7.49 0 0 0 7.488-7.512C32.488 21 29.14 17.65 25 17.65zm0 13.047c-1.093 0-2.07-1.07-2.07-2.302 0-1 .907-1.814 2.047-1.814s2.07.814 2.07 1.79c.023 1.255-.93 2.325-2.047 2.325z"/><g fill="#fff"><use xlink:href="#B"/><use xlink:href="#B" x="-5.953"/></g><defs ><path id="B" d="M28 24.605a1.19 1.19 0 0 1-1.186-1.186c.023-.65.535-1.163 1.186-1.163a1.19 1.19 0 0 1 1.186 1.186c0 .65-.535 1.163-1.186 1.163z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Cognitive_Services_face.svg b/src/main/webapp/img/lib/mscae/Cognitive_Services_face.svg index 4dfa93093efb23a2fadb1db849c4c772f6e65089..009d9ab03da687c844f1f1310b7b01884a6b2369 100644 --- a/src/main/webapp/img/lib/mscae/Cognitive_Services_face.svg +++ b/src/main/webapp/img/lib/mscae/Cognitive_Services_face.svg @@ -1,16 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<rect y="0" fill="#009480" width="50" height="50"/> -<path fill="#FFFFFF" d="M31.512,15.628c-2.93-1.395-6.023-2-9.256-1.256c-6.326,1.442-10.651,5.651-14.558,10.605 - c2.93,3.93,6.302,7.163,10.605,9.302c4.186,2.07,8.465,2.279,12.767,0.326c4.465-2.023,7.93-5.209,10.86-9.047 - c0.14-0.186,0.256-0.395,0.395-0.605C39.372,21.047,35.953,17.744,31.512,15.628z"/> -<path fill="#414141" d="M25.023,17.651c-4.116,0-7.512,3.349-7.512,7.488c-0.023,4.116,3.349,7.512,7.488,7.512 - c4.116,0.023,7.512-3.349,7.512-7.488C32.512,21.047,29.14,17.651,25.023,17.651z M25.093,30.419 - c-2.047,0.023-3.953-1.419-4.279-3.256c1.558,1.186,2.814,1.488,4.209,1.488c1.395,0,2.953-0.465,4.209-1.488 - C28.93,28.907,27.023,30.395,25.093,30.419z"/> -<path fill="#FFFFFF" d="M27.977,24.605c-0.651,0-1.186-0.535-1.186-1.186c0.023-0.651,0.535-1.163,1.186-1.163 - s1.186,0.535,1.186,1.186S28.628,24.605,27.977,24.605z"/> -<path fill="#FFFFFF" d="M22.023,24.605c-0.651,0-1.186-0.535-1.186-1.186c0.023-0.651,0.535-1.163,1.186-1.163 - c0.651,0,1.186,0.535,1.186,1.186C23.209,24.093,22.674,24.605,22.023,24.605z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="50"><path fill="#009480" d="M0 0h50v50H0z"/><path fill="#fff" d="M31.512 15.628c-2.93-1.395-6.023-2-9.256-1.256-6.326 1.442-10.65 5.65-14.558 10.605 2.93 3.93 6.302 7.163 10.605 9.302 4.186 2.07 8.465 2.28 12.767.326 4.465-2.023 7.93-5.21 10.86-9.047.14-.186.256-.395.395-.605-2.953-3.906-6.372-7.21-10.813-9.325z"/><path fill="#414141" d="M25.023 17.65c-4.116 0-7.512 3.35-7.512 7.488-.023 4.116 3.35 7.512 7.488 7.512 4.116.023 7.512-3.35 7.512-7.488.001-4.116-3.37-7.512-7.488-7.512zm.07 12.768c-2.047.023-3.953-1.42-4.28-3.256 1.558 1.186 2.814 1.488 4.21 1.488s2.953-.465 4.21-1.488c-.302 1.744-2.21 3.232-4.14 3.256z"/><g fill="#fff"><use xlink:href="#B"/><use xlink:href="#B" x="-5.954"/></g><defs ><path id="B" d="M27.977 24.605a1.19 1.19 0 0 1-1.186-1.186c.023-.65.535-1.163 1.186-1.163a1.19 1.19 0 0 1 1.186 1.186c0 .65-.535 1.163-1.186 1.163z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Cognitive_Services_luis.svg b/src/main/webapp/img/lib/mscae/Cognitive_Services_luis.svg index def9d36f6f9f2c42ae09754a2199c4872a2dab79..a9d2b63861efaebc2da3added48cd31c44436cf2 100644 --- a/src/main/webapp/img/lib/mscae/Cognitive_Services_luis.svg +++ b/src/main/webapp/img/lib/mscae/Cognitive_Services_luis.svg @@ -1,19 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<rect y="0" fill="#009480" width="50" height="50"/> -<path fill="#FFFFFF" d="M37.488,21.047c0-6.256-5.07-11.349-11.349-11.349s-11.349,5.07-11.349,11.349 - c0,4.651,2.791,8.628,6.767,10.395c-0.372,0.628-1.279,1.488-2.186,2.047c-1.744,1.116-3.814,1.698-5.721,2.535 - c-0.326,0.14-0.814,0.349-0.837,0.581c-0.14,1.07-0.14,2.163-0.209,3.233c0.233,0.07,0.349,0.14,0.465,0.14 - c5.395,1,10.279-0.279,14.698-3.093C32.372,33.953,37.488,29.186,37.488,21.047z"/> -<path fill="#414141" d="M26.326,13.465c-4.14-0.023-7.535,3.279-7.581,7.372c-0.047,4.186,3.279,7.605,7.419,7.628 - c4.163,0.023,7.581-3.326,7.581-7.465C33.744,16.884,30.419,13.512,26.326,13.465z"/> -<path fill="#FFFFFF" d="M24.86,25c-0.558,0-0.953-0.116-1.209-0.349c-0.256-0.233-0.395-0.628-0.395-1.163v-1.279 - c0-0.558-0.233-0.86-0.698-0.86v-0.698c0.465,0,0.698-0.302,0.698-0.907v-1.209c0-0.535,0.14-0.907,0.395-1.163S24.326,17,24.86,17 - v0.721c-0.488,0-0.721,0.279-0.721,0.837v1.209c0,0.651-0.233,1.07-0.674,1.233v0.023c0.442,0.14,0.674,0.535,0.674,1.209v1.209 - c0,0.302,0.047,0.512,0.163,0.651c0.116,0.14,0.302,0.209,0.558,0.209V25z"/> -<path fill="#FFFFFF" d="M27.628,24.302c0.256,0,0.442-0.07,0.558-0.209c0.116-0.14,0.163-0.349,0.163-0.651v-1.209 - c0-0.651,0.233-1.047,0.674-1.209V21c-0.442-0.163-0.674-0.581-0.674-1.233v-1.209c0-0.558-0.233-0.837-0.721-0.837V17 - c0.535,0,0.953,0.116,1.209,0.372s0.395,0.651,0.395,1.163v1.233c0,0.605,0.233,0.907,0.698,0.907v0.698 - c-0.465,0-0.698,0.279-0.698,0.86v1.279c0,0.535-0.14,0.907-0.395,1.163c-0.256,0.233-0.674,0.349-1.209,0.349V24.302z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path fill="#009480" d="M0 0h50v50H0z"/><path fill="#fff" d="M37.488 21.047c0-6.256-5.07-11.35-11.35-11.35s-11.35 5.07-11.35 11.35c0 4.65 2.79 8.628 6.767 10.395-.372.628-1.28 1.488-2.186 2.047-1.744 1.116-3.814 1.698-5.72 2.535-.326.14-.814.35-.837.58-.14 1.07-.14 2.163-.21 3.233.233.07.35.14.465.14 5.395 1 10.28-.28 14.698-3.093 4.605-2.932 9.72-7.7 9.72-15.838z"/><path fill="#414141" d="M26.326 13.465c-4.14-.023-7.535 3.28-7.58 7.372-.047 4.186 3.28 7.605 7.42 7.628 4.163.023 7.58-3.326 7.58-7.465-.001-4.116-3.326-7.488-7.42-7.535z"/><path d="M24.86 25c-.558 0-.953-.116-1.2-.35s-.395-.628-.395-1.163v-1.28c0-.558-.233-.86-.698-.86v-.698c.465 0 .698-.302.698-.907v-1.2c0-.535.14-.907.395-1.163s.676-.37 1.2-.37v.72c-.488 0-.72.28-.72.837v1.2c0 .65-.233 1.07-.674 1.233v.023c.442.14.674.535.674 1.2v1.2c0 .302.047.512.163.65s.302.2.558.2v.7zm2.768-.698c.256 0 .442-.07.558-.2s.163-.35.163-.65v-1.2c0-.65.233-1.047.674-1.2V21c-.442-.163-.674-.58-.674-1.233v-1.2c0-.558-.233-.837-.72-.837V17c.535 0 .953.116 1.2.372s.395.65.395 1.163v1.233c0 .605.233.907.698.907v.698c-.465 0-.698.28-.698.86v1.28c0 .535-.14.907-.395 1.163-.256.233-.674.35-1.2.35v-.722z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Cognitive_Services_recommendations.svg b/src/main/webapp/img/lib/mscae/Cognitive_Services_recommendations.svg index be23237e8390ce9e47dc9c04bf8da2289024490b..e8d7e413e73b14e09ea350c2a909b76e1f00f257 100644 --- a/src/main/webapp/img/lib/mscae/Cognitive_Services_recommendations.svg +++ b/src/main/webapp/img/lib/mscae/Cognitive_Services_recommendations.svg @@ -1,29 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<rect fill="#009480" width="50" height="50"/> -<path fill="#FFFFFF" d="M21.909,9.674h6.147v3.366l3.295,1.378l2.206-2.371l4.45,4.45l-2.378,2.244l1.337,3.202h3.362v6.14h-3.364 - l-1.377,3.294l2.361,2.213l-4.415,4.428l-2.187-2.386l-3.321,1.387v3.31h-6.113v-3.321l-3.264-1.362l-2.227,2.371l-4.498-4.488 - l2.439-2.139l-1.397-3.336H9.669v-6.099h3.321l1.362-3.269l-2.365-2.211l4.456-4.463l2.214,2.378l3.247-1.357V9.667L21.909,9.674z" - /> -<ellipse fill="#FFFFFF" cx="25" cy="25" rx="12.705" ry="12.705"/> -<path fill="#414142" d="M25.096,17.024c-4.393,0-8.004,3.485-8.061,7.838s3.482,8.078,7.887,8.114 - c4.404,0.036,8.05-3.532,8.061-7.944C32.994,20.621,29.456,17.058,25.096,17.024z"/> -<path fill="#FFFFFF" d="M29.742,23.873c-0.019-0.057-0.052-0.108-0.096-0.149c-0.047-0.042-0.102-0.074-0.161-0.096 - c-0.087-0.027-0.178-0.04-0.269-0.037h-3.13c0.058-0.202,0.125-0.401,0.204-0.596l0.108-0.263c0.035-0.09,0.075-0.177,0.12-0.263 - l0.126-0.244c0.039-0.071,0.083-0.139,0.13-0.204l0.22-0.299c0.079-0.115,0.148-0.237,0.204-0.364 - c0.064-0.148,0.114-0.302,0.149-0.46c0.042-0.196,0.062-0.396,0.059-0.596c0.001-0.087-0.014-0.174-0.043-0.256 - c-0.044-0.143-0.14-0.264-0.269-0.34c-0.063-0.031-0.133-0.047-0.204-0.047c-0.07,0.001-0.139,0.016-0.204,0.043 - c-0.075,0.033-0.144,0.079-0.204,0.136c-0.078,0.07-0.146,0.15-0.204,0.238c-0.069,0.111-0.127,0.229-0.173,0.352 - c-0.086,0.236-0.205,0.458-0.352,0.661c-0.146,0.199-0.312,0.383-0.495,0.55c-0.187,0.17-0.386,0.326-0.596,0.466 - c-0.214,0.142-0.435,0.282-0.661,0.417c-0.285,0.159-0.553,0.347-0.8,0.56c-0.185,0.162-0.349,0.347-0.488,0.55 - c-0.111,0.162-0.196,0.342-0.25,0.531c-0.031,0.121-0.051,0.245-0.059,0.37h-2.139v4.885h2.111V28.75l0,0 - c0.025,0.062,0.071,0.112,0.13,0.142c0.117,0.065,0.241,0.115,0.37,0.149c0.181,0.05,0.364,0.09,0.55,0.12l0.655,0.096l0.71,0.071 - l0.698,0.047h1.085c0.176,0.021,0.354,0.008,0.525-0.037c0.137-0.049,0.266-0.117,0.383-0.204c0.109-0.079,0.209-0.169,0.299-0.269 - c0.102-0.116,0.198-0.238,0.287-0.364c0.052-0.069,0.089-0.148,0.108-0.232c0.001-0.087,0.015-0.174,0.043-0.256 - c0.028-0.089,0.043-0.182,0.043-0.275c0.018-0.102,0.05-0.201,0.096-0.293c0.034-0.075,0.08-0.144,0.136-0.204l0.185-0.204 - c0.067-0.075,0.129-0.155,0.185-0.238c0.063-0.091,0.109-0.192,0.136-0.299c0.005-0.073,0.005-0.147,0-0.22v-0.596 - c-0.006-0.068-0.006-0.136,0-0.204c0.056-0.075,0.12-0.143,0.191-0.204l0.12-0.22l0.126-0.214l0.096-0.161 - c0.035-0.048,0.067-0.097,0.096-0.149c0.03-0.054,0.056-0.11,0.077-0.167c0.022-0.058,0.039-0.118,0.053-0.179 - c0.007-0.057,0.007-0.116,0-0.173C29.761,23.969,29.755,23.92,29.742,23.873z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path fill="#009480" d="M0 0h50v50H0z"/><g fill="#fff"><path d="M21.91 9.674h6.147v3.366l3.295 1.378 2.206-2.37 4.45 4.45-2.378 2.244 1.337 3.202h3.362v6.14h-3.364l-1.377 3.294 2.36 2.213-4.415 4.428-2.187-2.386-3.32 1.387v3.3h-6.113v-3.32l-3.264-1.362-2.227 2.37-4.498-4.488 2.44-2.14-1.397-3.336H9.67v-6.1H13l1.362-3.27-2.365-2.21 4.456-4.463 2.214 2.378 3.247-1.357V9.667l.005.007z"/><circle cx="25" cy="25" r="12.705"/></g><path fill="#414142" d="M25.096 17.024c-4.393 0-8.004 3.485-8.06 7.838s3.482 8.078 7.887 8.114 8.05-3.532 8.06-7.944-3.527-7.974-7.887-8.008z"/><path fill="#fff" d="M29.742 23.873a.36.36 0 0 0-.096-.149c-.047-.042-.102-.074-.16-.096a.82.82 0 0 0-.269-.037h-3.13l.204-.596.108-.263a2.59 2.59 0 0 1 .12-.263l.126-.244a1.96 1.96 0 0 1 .13-.204l.22-.3c.08-.115.148-.237.204-.364.064-.148.114-.302.15-.46.042-.196.062-.396.06-.596.001-.087-.014-.174-.043-.256a.6.6 0 0 0-.269-.34c-.063-.03-.133-.047-.204-.047a.55.55 0 0 0-.204.043c-.075.033-.144.08-.204.136-.078.07-.146.15-.204.238a1.98 1.98 0 0 0-.173.352 2.71 2.71 0 0 1-.352.661 3.74 3.74 0 0 1-.495.55c-.187.17-.386.326-.596.466l-.66.417c-.285.16-.553.347-.8.56-.185.162-.35.347-.488.55a1.83 1.83 0 0 0-.25.531 2.01 2.01 0 0 0-.059.37h-2.14v4.885h2.11v-.668c.025.062.07.112.13.142a1.6 1.6 0 0 0 .37.149 5.13 5.13 0 0 0 .55.12l.655.096.7.07.698.047h1.085c.176.02.354.008.525-.037a1.47 1.47 0 0 0 .383-.204 1.91 1.91 0 0 0 .299-.269 4.37 4.37 0 0 0 .287-.364.61.61 0 0 0 .108-.232c.001-.087.015-.174.043-.256a.92.92 0 0 0 .043-.275 1.07 1.07 0 0 1 .096-.293.76.76 0 0 1 .136-.204l.185-.204a2.23 2.23 0 0 0 .185-.238A.92.92 0 0 0 29 26.5c.005-.073.005-.147 0-.22v-.596a1.16 1.16 0 0 1 0-.204c.056-.075.12-.143.19-.204l.12-.22.126-.214.096-.16c.035-.048.067-.097.096-.15s.056-.1.077-.167.04-.118.053-.18c.007-.057.007-.116 0-.173a.46.46 0 0 0-.017-.14z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Cognitive_Services_textanalytics.svg b/src/main/webapp/img/lib/mscae/Cognitive_Services_textanalytics.svg index 9cf46806db6776ebaf32925e19fffd42e8ff1a2a..41c582b010757ab52792661ffb008195a1941f88 100644 --- a/src/main/webapp/img/lib/mscae/Cognitive_Services_textanalytics.svg +++ b/src/main/webapp/img/lib/mscae/Cognitive_Services_textanalytics.svg @@ -1,14 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<rect fill="#009480" width="50" height="50"/> -<path fill="#FFFFFF" d="M37.442,21.038c0-6.267-5.087-11.346-11.361-11.346s-11.36,5.07-11.36,11.346 - c0,4.648,2.789,8.625,6.783,10.385c-0.371,0.617-1.29,1.479-2.186,2.052c-1.748,1.113-3.81,1.69-5.72,2.535 - c-0.319,0.139-0.811,0.353-0.841,0.588c-0.142,1.069-0.147,2.16-0.2,3.222c0.238,0.078,0.348,0.129,0.461,0.15 - c5.402,1.002,10.298-0.27,14.722-3.091C32.333,33.944,37.442,29.179,37.442,21.038z"/> -<path fill="#414142" d="M26.183,13.374c-4.097,0-7.473,3.252-7.518,7.311c-0.045,4.058,3.25,7.537,7.363,7.567 - s7.514-3.299,7.525-7.432C33.564,16.688,30.254,13.406,26.183,13.374z"/> -<path fill="#FFFFFF" d="M28.041,18.412v-1.63h0.519v-1.064h-4.522v1.064h0.519v1.63l-2.675,5.341l0.809,1.358h7.235l0.802-1.341 - L28.041,18.412z M25.928,19.727L23.785,24h-0.526l-0.285-0.272l2.675-5.077v-1.847h1.309v1.853l0.519,1.064h-1.555l0,0 - L25.928,19.727z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path fill="#009480" d="M0 0h50v50H0z"/><path fill="#fff" d="M37.442 21.038c0-6.267-5.087-11.346-11.36-11.346a11.35 11.35 0 0 0-11.36 11.346c0 4.648 2.79 8.625 6.783 10.385-.37.617-1.3 1.48-2.186 2.052-1.748 1.113-3.8 1.7-5.72 2.535-.32.14-.81.353-.84.588-.142 1.07-.147 2.16-.2 3.222.238.078.348.13.46.15 5.402 1.002 10.298-.27 14.722-3.09 4.593-2.935 9.702-7.7 9.702-15.84z"/><path fill="#414142" d="M26.183 13.374c-4.097 0-7.473 3.252-7.518 7.31s3.25 7.537 7.363 7.567 7.514-3.3 7.525-7.432a7.41 7.41 0 0 0-7.37-7.446z"/><path fill="#fff" d="M28.04 18.412v-1.63h.52v-1.064h-4.522v1.064h.52v1.63l-2.675 5.34.81 1.358h7.235l.802-1.34-2.687-5.358zm-2.113 1.315L23.785 24h-.526l-.285-.272 2.675-5.077v-1.847h1.31v1.853l.52 1.064h-1.555l.006.006z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Cognitive_Services_web_language_model.svg b/src/main/webapp/img/lib/mscae/Cognitive_Services_web_language_model.svg index 3522a044254a2b08ebb1bec2ad97e45db38aa0fc..3da783669744b4e356322d06719e842980d031e5 100644 --- a/src/main/webapp/img/lib/mscae/Cognitive_Services_web_language_model.svg +++ b/src/main/webapp/img/lib/mscae/Cognitive_Services_web_language_model.svg @@ -1,13 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<rect x="0" y="0" fill="#009480" width="50" height="50"/> -<path fill="#FFFFFF" d="M37.488,21.047c0-6.256-5.07-11.349-11.349-11.349s-11.349,5.07-11.349,11.349 - c0,4.651,2.791,8.628,6.767,10.395c-0.372,0.628-1.279,1.488-2.186,2.047c-1.744,1.116-3.814,1.698-5.721,2.535 - c-0.326,0.14-0.814,0.349-0.837,0.581c-0.14,1.07-0.14,2.163-0.209,3.233c0.233,0.07,0.349,0.14,0.465,0.14 - c5.395,1,10.279-0.279,14.698-3.093C32.372,33.953,37.488,29.186,37.488,21.047z"/> -<path fill="#414141" d="M26.186,13.465c-4.14-0.023-7.535,3.279-7.581,7.372c-0.047,4.186,3.279,7.605,7.419,7.628 - c4.163,0.023,7.581-3.326,7.581-7.465C33.628,16.884,30.279,13.512,26.186,13.465z"/> -<path fill="#FFFFFF" d="M21.07,21.558v-0.674l3.977-2.977v1.233l-2.86,2.07v0.023l2.86,1.86v1.233L21.07,21.558z"/> -<path fill="#FFFFFF" d="M27.163,24.302V23.07l2.86-1.837v-0.023l-2.86-2.07v-1.233l3.977,3v0.651L27.163,24.302z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path fill="#009480" d="M0 0h50v50H0z"/><path fill="#fff" d="M37.488 21.047c0-6.256-5.07-11.35-11.35-11.35s-11.35 5.07-11.35 11.35c0 4.65 2.79 8.628 6.767 10.395-.372.628-1.28 1.488-2.186 2.047-1.744 1.116-3.814 1.698-5.72 2.535-.326.14-.814.35-.837.58-.14 1.07-.14 2.163-.21 3.233.233.07.35.14.465.14 5.395 1 10.28-.28 14.698-3.093 4.605-2.932 9.72-7.7 9.72-15.838z"/><path fill="#414141" d="M26.186 13.465c-4.14-.023-7.535 3.28-7.58 7.372-.047 4.186 3.28 7.605 7.42 7.628 4.163.023 7.58-3.326 7.58-7.465a7.53 7.53 0 0 0-7.419-7.535z"/><path d="M21.07 21.558v-.674l3.977-2.977v1.233l-2.86 2.07v.023l2.86 1.86v1.233l-3.977-2.768zm6.093 2.744V23.07l2.86-1.837V21.2l-2.86-2.07v-1.233l3.977 3v.65l-3.977 2.744z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Commits.svg b/src/main/webapp/img/lib/mscae/Commits.svg index a918c17c825f53ac70288632c21a7d8146c4f656..fdb0ddba19ef2812fd4c9fa61790bc111e1a0257 100644 --- a/src/main/webapp/img/lib/mscae/Commits.svg +++ b/src/main/webapp/img/lib/mscae/Commits.svg @@ -1,81 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="49.995998" - height="47" - viewBox="0 0 49.995998 47" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Commits.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata6296"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs6294" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1851" - inkscape:window-height="1008" - id="namedview6292" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="6.0104076" - inkscape:cx="34.97816" - inkscape:cy="11.417732" - inkscape:window-x="1930" - inkscape:window-y="0" - inkscape:window-maximized="0" - inkscape:current-layer="Layer_1" /> -<polygon - points="17.167,12.251 25.496,3.5 33.833,12.22 33.833,15.762 26.968,9.256 26.968,20.854 24.069,20.854 24.069,9.256 17.167,15.804 " - id="polygon6281" - style="fill:#59b4d9" - transform="translate(-0.5,-3.5)" /> -<path - d="M 48.148,22 H 1.853 C 0.833,22 0,22.832 0,23.853 V 28 41 45.147 C 0,46.168 0.836,47 1.848,47 h 46.295 c 1.02,0 1.853,-0.832 1.853,-1.853 V 41 28 23.853 C 49.996,22.832 49.16,22 48.148,22 Z m -1.92,21.01 H 3.728 V 26 h 42.5 z" - id="path6283" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<rect - x="20.646" - y="30.675999" - width="8.323" - height="8.3240004" - id="rect6285" - style="fill:#59b4d9" /> -<rect - x="33.063999" - y="30.675999" - width="8.3199997" - height="8.3240004" - id="rect6287" - style="fill:#59b4d9" /> -<rect - x="8.2290001" - y="30.675999" - width="8.3240004" - height="8.3240004" - id="rect6289" - style="fill:#59b4d9" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="49.996" height="47" fill="#59b4d9"><path d="M16.667 8.75L24.996 0l8.337 8.72v3.542l-6.865-6.506v11.598h-2.9V5.756l-6.902 6.548zM48.148 22H1.853C.833 22 0 22.832 0 23.853v21.294A1.86 1.86 0 0 0 1.848 47h46.295c1.02 0 1.853-.832 1.853-1.853V23.853A1.86 1.86 0 0 0 48.148 22zm-1.92 21h-42.5V26h42.5zM20.646 30.676h8.323V39h-8.323zm12.418 0h8.32V39h-8.32zm-24.834 0h8.324V39H8.23z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Connection.svg b/src/main/webapp/img/lib/mscae/Connection.svg index 662468047da876a5963ebb497e39b3e2313e300f..64923195be8c2cc29230364bc608bb7f4a83ee39 100644 --- a/src/main/webapp/img/lib/mscae/Connection.svg +++ b/src/main/webapp/img/lib/mscae/Connection.svg @@ -1,60 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="31.250999" - viewBox="0 0 50 31.250999" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Connection.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata6337"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs6335" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview6333" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="25" - inkscape:cy="15.626" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 39.063,9.375 c 1.514,0 2.934,0.289 4.26,0.867 1.326,0.578 2.482,1.359 3.467,2.344 0.985,0.985 1.766,2.14 2.344,3.467 0.578,1.327 0.866,2.746 0.866,4.26 0,1.514 -0.289,2.934 -0.867,4.26 -0.578,1.326 -1.359,2.482 -2.344,3.467 -0.985,0.985 -2.14,1.766 -3.467,2.344 -1.327,0.578 -2.747,0.867 -4.26,0.867 h -12.5 c -1.514,0 -2.934,-0.289 -4.26,-0.867 -1.326,-0.578 -2.482,-1.359 -3.467,-2.344 -0.985,-0.985 -1.766,-2.14 -2.344,-3.467 -0.578,-1.327 -0.867,-2.747 -0.867,-4.26 0,-1.513 0.289,-2.934 0.867,-4.26 0.578,-1.326 1.359,-2.482 2.344,-3.467 0.985,-0.985 2.14,-1.766 3.467,-2.344 1.327,-0.578 2.747,-0.867 4.26,-0.867 h 1.563 V 12.5 c -1.237,0 -2.421,0.142 -3.552,0.427 -1.131,0.285 -2.128,0.741 -2.991,1.367 -0.863,0.626 -1.55,1.432 -2.063,2.417 -0.513,0.985 -0.769,2.185 -0.769,3.601 0,1.074 0.208,2.083 0.623,3.027 0.415,0.944 0.977,1.77 1.685,2.478 0.708,0.708 1.534,1.27 2.478,1.685 0.944,0.415 1.953,0.623 3.027,0.623 h 12.5 c 1.074,0 2.083,-0.208 3.027,-0.623 0.944,-0.415 1.77,-0.977 2.478,-1.685 0.708,-0.708 1.27,-1.534 1.685,-2.478 0.415,-0.944 0.623,-1.953 0.623,-3.027 0,-1.416 -0.256,-2.616 -0.769,-3.601 -0.513,-0.985 -1.2,-1.79 -2.063,-2.417 -0.863,-0.627 -1.86,-1.082 -2.991,-1.367 C 39.922,12.642 38.738,12.5 37.501,12.5 V 9.375 Z" - id="path6328" - inkscape:connector-curvature="0" - style="fill:#7fba00" /> -<path - d="M 21.875,21.875 V 18.75 c 1.237,0 2.421,-0.142 3.552,-0.427 1.131,-0.285 2.128,-0.741 2.991,-1.367 0.863,-0.626 1.55,-1.432 2.063,-2.417 0.513,-0.985 0.769,-2.185 0.769,-3.601 0,-1.074 -0.208,-2.083 -0.623,-3.027 C 30.212,6.967 29.65,6.141 28.942,5.433 28.234,4.725 27.408,4.163 26.464,3.748 25.52,3.333 24.512,3.125 23.438,3.125 h -12.5 C 9.864,3.125 8.855,3.333 7.911,3.748 6.967,4.163 6.141,4.725 5.433,5.433 4.725,6.141 4.163,6.967 3.748,7.911 3.333,8.855 3.125,9.864 3.125,10.938 c 0,1.416 0.256,2.616 0.769,3.601 0.513,0.985 1.2,1.79 2.063,2.417 0.863,0.627 1.86,1.082 2.991,1.367 1.131,0.285 2.315,0.427 3.552,0.427 v 3.125 h -1.563 c -1.514,0 -2.934,-0.289 -4.26,-0.867 C 5.351,20.43 4.195,19.649 3.21,18.665 2.225,17.681 1.444,16.525 0.866,15.198 0.288,13.871 0,12.451 0,10.938 0,9.425 0.289,8.004 0.867,6.678 1.445,5.352 2.226,4.196 3.211,3.211 4.196,2.226 5.351,1.445 6.678,0.867 8.005,0.289 9.425,0 10.938,0 h 12.5 c 1.514,0 2.934,0.289 4.26,0.867 1.326,0.578 2.482,1.359 3.467,2.344 0.985,0.985 1.766,2.14 2.344,3.467 0.578,1.327 0.867,2.747 0.867,4.26 0,1.513 -0.289,2.934 -0.867,4.26 -0.578,1.326 -1.359,2.482 -2.344,3.467 -0.985,0.985 -2.14,1.766 -3.467,2.344 -1.327,0.578 -2.747,0.867 -4.26,0.867 h -1.563 z" - id="path6330" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="31.251"><path d="M39.063 9.375c1.514 0 2.934.29 4.26.867s2.482 1.36 3.467 2.344a11.14 11.14 0 0 1 2.344 3.467c.578 1.327.866 2.746.866 4.26s-.29 2.934-.867 4.26-1.36 2.482-2.344 3.467a11.14 11.14 0 0 1-3.467 2.344 10.55 10.55 0 0 1-4.26.867h-12.5c-1.514 0-2.934-.29-4.26-.867s-2.482-1.36-3.467-2.344a11.14 11.14 0 0 1-2.344-3.467 10.55 10.55 0 0 1-.867-4.26c0-1.513.29-2.934.867-4.26s1.36-2.482 2.344-3.467a11.14 11.14 0 0 1 3.467-2.344 10.55 10.55 0 0 1 4.26-.867h1.563V12.5c-1.237 0-2.42.142-3.552.427s-2.128.74-2.99 1.367-1.55 1.432-2.063 2.417-.77 2.185-.77 3.6c0 1.074.208 2.083.623 3.027a8.05 8.05 0 0 0 4.163 4.163c.944.415 1.953.623 3.027.623h12.5c1.074 0 2.083-.208 3.027-.623a8.05 8.05 0 0 0 4.163-4.163c.415-.944.623-1.953.623-3.027 0-1.416-.256-2.616-.77-3.6s-1.2-1.8-2.063-2.417-1.86-1.082-2.99-1.367-2.315-.427-3.552-.427V9.375z" fill="#7fba00"/><path d="M21.875 21.875V18.75c1.237 0 2.42-.142 3.552-.427s2.128-.74 2.99-1.367 1.55-1.432 2.063-2.417.77-2.185.77-3.6c0-1.074-.208-2.083-.623-3.027a8.05 8.05 0 0 0-1.685-2.478 8.05 8.05 0 0 0-2.478-1.685c-.944-.415-1.952-.623-3.026-.623h-12.5c-1.074 0-2.083.208-3.027.623a8.05 8.05 0 0 0-2.478 1.685 8.05 8.05 0 0 0-1.685 2.478c-.415.944-.623 1.953-.623 3.027 0 1.416.256 2.616.77 3.6s1.2 1.8 2.063 2.417 1.86 1.082 2.99 1.367 2.315.427 3.552.427v3.125h-1.563c-1.514 0-2.934-.29-4.26-.867S4.195 19.65 3.2 18.665s-1.766-2.14-2.344-3.467A10.55 10.55 0 0 1 0 10.938c0-1.513.29-2.934.867-4.26S2.226 4.196 3.21 3.21A11.14 11.14 0 0 1 6.678.867 10.55 10.55 0 0 1 10.938 0h12.5c1.514 0 2.934.29 4.26.867s2.482 1.36 3.467 2.344a11.14 11.14 0 0 1 2.344 3.467 10.55 10.55 0 0 1 .867 4.26c0 1.513-.29 2.934-.867 4.26s-1.36 2.482-2.344 3.467a11.14 11.14 0 0 1-3.467 2.344 10.55 10.55 0 0 1-4.26.867h-1.563z" fill="#59b4d9"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Connections.svg b/src/main/webapp/img/lib/mscae/Connections.svg new file mode 100644 index 0000000000000000000000000000000000000000..c03b230d3134d37d00647b9bc5488411a8750a61 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Connections.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path d="M23.8 20.6l10.7 10.8 3.3-3.1-7.3-7.4 7.3-7.8-3.3-3.3zM12.2 36.9l3.3 3.3 10.7-10.8-10.7-10.8-3.3 3.6 7.3 7.3z" fill="#b8d432"/><path d="M25 0C11.1 0 0 11.4 0 25c0 13.9 11.4 25 25 25s25-11.4 25-25S38.9 0 25 0zm0 3.3C37 3.3 46.7 13 46.7 25S36.9 46.7 25 46.7 3.3 36.9 3.3 25 13 3.3 25 3.3z" fill="#59b4d9"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/ContactInfo.svg b/src/main/webapp/img/lib/mscae/ContactInfo.svg index 7bdae9e35bda2c6104fda5a11cb5427a8e173907..227fa2285077810d9a02b5a984f7e93064640f94 100644 --- a/src/main/webapp/img/lib/mscae/ContactInfo.svg +++ b/src/main/webapp/img/lib/mscae/ContactInfo.svg @@ -1,16 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#59B4D9" d="M25.256,9.065c0,5.006-4.059,9.065-9.066,9.065c-5.007,0-9.065-4.059-9.065-9.065 - C7.125,4.059,11.183,0,16.19,0C21.197,0,25.256,4.059,25.256,9.065"/> -<polygon fill="#59B4D9" points="22.818,21.237 16.19,30.523 9.562,21.237 0.001,21.237 0.001,44.137 32.38,44.137 32.38,21.237 "/> -<path opacity="0.2" fill="#FFFFFF" d="M7.126,9.065c0,4.931,3.939,8.935,8.843,9.054l2.277-17.875C17.584,0.089,16.899,0,16.19,0 - C11.183,0,7.126,4.059,7.126,9.065"/> -<polygon opacity="0.2" fill="#FFFFFF" points="9.564,21.237 0,21.237 0,44.137 12.696,44.137 14.698,28.433 "/> -<rect x="21.5" y="29" fill="#FFFFFF" width="28.5" height="14.583"/> -<path fill="#EAC282" d="M40.636,41.33c-1.305,1.305-3.04,2.024-4.886,2.024c-1.846,0-3.581-0.719-4.886-2.024L21.5,31.966V50H50 - V31.966L40.636,41.33z"/> -<path fill="#EAC282" d="M35.75,40.963c1.474,0,2.861-0.574,3.903-1.617L50,29v-0.549H21.5V29l10.347,10.347 - C32.889,40.389,34.275,40.963,35.75,40.963z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path d="M25.256 9.065a9.07 9.07 0 0 1-9.066 9.065 9.07 9.07 0 0 1-9.065-9.065 9.07 9.07 0 1 1 18.141 0m-2.448 12.172L16.2 30.523l-6.628-9.286H.001v22.9h32.38v-22.9z" fill="#59b4d9"/><g fill="#fff"><path opacity=".2" d="M7.126 9.065a9.06 9.06 0 0 0 8.843 9.054L18.246.244A8.99 8.99 0 0 0 16.19 0c-5.007 0-9.064 4.06-9.064 9.065m2.438 12.172H0v22.9h12.696l2.002-15.704z"/><path d="M21.5 29H50v14.583H21.5z"/></g><path d="M40.636 41.33c-1.305 1.305-3.04 2.024-4.886 2.024a6.87 6.87 0 0 1-4.886-2.024L21.5 31.966V50H50V31.966l-9.364 9.364zm-4.886-.367a5.48 5.48 0 0 0 3.903-1.617L50 29v-.55H21.5V29l10.347 10.347c1.042 1.042 2.428 1.616 3.903 1.616z" fill="#eac282"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Container_Instances.svg b/src/main/webapp/img/lib/mscae/Container_Instances.svg new file mode 100644 index 0000000000000000000000000000000000000000..16f85b4612cac6a0ddf85cd9ef6c94cb7f93a33f --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Container_Instances.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="49.797" height="49.909"><path d="M41.797 11.277A11.93 11.93 0 0 0 29.234.018c-3.607.197-6.93 2.018-9.037 4.952-3.188-2.468-7.592-2.64-10.962-.427s-4.965 6.32-3.97 10.227a8.97 8.97 0 0 0 3.696 17.139H39.34c5.78-.003 10.46-4.69 10.458-10.468-.002-4.828-3.308-9.027-8-10.164z" fill="#59b4d9"/><path d="M12.897 21.91a1 1 0 0 0-1 1v26a1 1 0 0 0 1 1h24a1 1 0 0 0 1-1v-26a1 1 0 0 0-1-1z" fill="#804998"/><path d="M22.897 21.91v-7h-3l5-7 5 7h-3v7zm10 3h-18v22h20v-22z" fill="#fff"/><path d="M16.864 26.91h4v18h-4zm6 0h4v18h-4zm6 0h4v18h-4z" fill="#804998"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Container_Registries.svg b/src/main/webapp/img/lib/mscae/Container_Registries.svg new file mode 100644 index 0000000000000000000000000000000000000000..d6de61be327be803570e5f700753301b8a201f6e --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Container_Registries.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="43.1" height="36.7"><path d="M13.1 28h-6c-4-1-7.1-4.2-7.1-8.3 0-3.5 2.2-6.6 5.3-7.8 0-.4-.1-.7-.1-1.1C5.2 4.8 10 0 16 0c3.3 0 6.3 1.5 8.4 4a8.91 8.91 0 0 1 3.9-.9c4.7 0 8.8 4.2 8.9 8.8L21.1 5.3l-8 4.9z" fill="#59b4d9"/><path d="M43.1 32.4L21 36.6l.1-15.5 22 4.1zM21 7.3l22.1 8.3V24l-22-4.7" fill="#959595"/><path d="M21.1 19.3l-6 2.8V11l6-3.6m21 15.6l-20-4.6V8.5l20 7.4zm-11-3.6l2 .5v-6.5l-2-.7zm-2-7.2l-2-.7v6.9l2 .6zm6 8.3l2 .5v-6.2l-2-.7zm-12-3.2l2 .5v-7.1l-2-.7v7.3zm18-1.1l-2-.7v6l2 .5zm-19 6.6v12.8l20-3.7v-6.1zm1 11.3v-9.9l2 .2v9.3zm6-1l-2 .4v-8.7l2 .3c0-.1 0 8 0 8zm2-.3v-7.6l2 .2v7zm6-1.1l-2 .3v-6.4l2 .3zm4.1-.6l-2.1.3v-5.2l1.9.2z" fill="#b3b4b5"/><path d="M17.1 19.1l-1 .6v-7.9l1-.5c0-.1 0 7.8 0 7.8zm2-9l-1 .7v7.7l1-.5z" fill="#959595"/><path d="M15.1 33.1V24l6-2.9v15.6" fill="#b3b4b5"/><path d="M17 33.1l-.9-.5v-7.7l.9-.4zm2.1-9.6l-1 .5v9.7l1 .5z" fill="#959595"/><path d="M41.1 16.9l-18-6v-.8l18 6.2zm-.1 9.5l-17.9-2.2v.8L41 27.1zM19.1 11.1v-1l-2.9 1.6v.8zm-3 14.4l3-1.1v-.8l-3 1.3z" fill="#7a7a7a"/><path d="M43.1 15.7v16.7l-22 4.2 16.7-23z" opacity=".2" fill="#fff" enable-background="new"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Container_Service.svg b/src/main/webapp/img/lib/mscae/Container_Service.svg index f29845d6007e2490aa7a1008cb2fce381ad3ccae..2a528624c8d2bef2959db5632cd0629b7725e6ed 100644 --- a/src/main/webapp/img/lib/mscae/Container_Service.svg +++ b/src/main/webapp/img/lib/mscae/Container_Service.svg @@ -1,156 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="37" - viewBox="-454 256 50 37" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure Container Service_COLOR.svg"><metadata - id="metadata51"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs49" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview47" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="10.363697" - inkscape:cx="23.815885" - inkscape:cy="16.453783" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><style - type="text/css" - id="style3"> - .st0{fill:#804998;} - .st1{opacity:0.2;fill:#FFFFFF;} -</style><polygon - class="st0" - points="-431.1,265.2 -431.1,271.9 -438.8,274.9 -438.8,262.5 " - id="polygon5" - style="fill:#804998" - transform="translate(0,-6.5)" /><path - class="st0" - d="M -445.7,258.1 -445.7,266.2 -440,268.4 -440,256.1 -445.7,258.1 Z M -445.1,265.6 -445.4,265.5 -445.4,258.8 -445.1,258.7 -444.8,258.6 -444.5,258.5 -444.5,265.8 -444.8,265.7 -445.1,265.6 Z M -443.6,266 -444,265.9 -444,258.4 -443.6,258.3 -443.2,258.2 -442.8,258.1 -442.8,266.3 -443.2,266.2 -443.6,266 Z M -441.8,266.6 -442.3,266.4 -442.3,257.9 -441.8,257.8 -441.3,257.6 -440.7,257.4 -440.7,266.9 -441.3,266.7 -441.8,266.6 Z" - id="path7" - inkscape:connector-curvature="0" - style="fill:#804998" /><polygon - class="st0" - points="-413.2,265.2 -413.2,271.9 -420.9,274.9 -420.9,262.5 " - id="polygon9" - style="fill:#804998" - transform="translate(0,-6.5)" /><path - class="st0" - d="M -427.8,258.1 -427.8,266.2 -422.1,268.4 -422.1,256.1 -427.8,258.1 Z M -427.2,265.6 -427.5,265.5 -427.5,258.8 -427.2,258.7 -426.9,258.6 -426.6,258.5 -426.6,265.8 -426.9,265.7 -427.2,265.6 Z M -425.7,266 -426.1,265.9 -426.1,258.4 -425.7,258.3 -425.3,258.2 -424.9,258.1 -424.9,266.3 -425.3,266.2 -425.7,266 Z M -423.9,266.6 -424.4,266.4 -424.4,257.9 -423.9,257.8 -423.4,257.6 -422.8,257.4 -422.8,266.9 -423.4,266.7 -423.9,266.6 Z" - id="path11" - inkscape:connector-curvature="0" - style="fill:#804998" /><polygon - class="st0" - points="-431.1,289.8 -431.1,296.5 -438.8,299.5 -438.8,287.1 " - id="polygon13" - style="fill:#804998" - transform="translate(0,-6.5)" /><path - class="st0" - d="M -445.7,282.7 -445.7,290.8 -440,293 -440,280.7 -445.7,282.7 Z M -445.1,290.2 -445.4,290.1 -445.4,283.4 -445.1,283.3 -444.8,283.2 -444.5,283.1 -444.5,290.4 -444.8,290.3 -445.1,290.2 Z M -443.6,290.6 -444,290.5 -444,283 -443.6,282.9 -443.2,282.8 -442.8,282.7 -442.8,290.9 -443.2,290.8 -443.6,290.6 Z M -441.8,291.2 -442.3,291 -442.3,282.5 -441.8,282.4 -441.3,282.2 -440.7,282 -440.7,291.5 -441.3,291.3 -441.8,291.2 Z" - id="path15" - inkscape:connector-curvature="0" - style="fill:#804998" /><polygon - class="st0" - points="-413.2,289.8 -413.2,296.5 -420.9,299.5 -420.9,287.1 " - id="polygon17" - style="fill:#804998" - transform="translate(0,-6.5)" /><path - class="st0" - d="M -427.8,282.7 -427.8,290.8 -422.1,293 -422.1,280.7 -427.8,282.7 Z M -427.2,290.2 -427.5,290.1 -427.5,283.4 -427.2,283.3 -426.9,283.2 -426.6,283.1 -426.6,290.4 -426.9,290.3 -427.2,290.2 Z M -425.7,290.6 -426.1,290.5 -426.1,283 -425.7,282.9 -425.3,282.8 -424.9,282.7 -424.9,290.9 -425.3,290.8 -425.7,290.6 Z M -423.9,291.2 -424.4,291 -424.4,282.5 -423.9,282.4 -423.4,282.2 -422.8,282 -422.8,291.5 -423.4,291.3 -423.9,291.2 Z" - id="path19" - inkscape:connector-curvature="0" - style="fill:#804998" /><polygon - class="st0" - points="-421.6,277.5 -421.6,284.2 -429.2,287.1 -429.2,274.8 " - id="polygon21" - style="fill:#804998" - transform="translate(0,-6.5)" /><path - class="st0" - d="M -436.2,270.3 -436.2,278.4 -430.5,280.6 -430.5,268.3 -436.2,270.3 Z M -435.6,277.8 -435.9,277.7 -435.9,271 -435.6,270.9 -435.3,270.8 -435,270.7 -435,278 -435.3,277.9 -435.6,277.8 Z M -434.1,278.3 -434.5,278.2 -434.5,270.7 -434.1,270.6 -433.7,270.5 -433.3,270.4 -433.3,278.6 -433.7,278.5 -434.1,278.3 Z M -432.3,278.9 -432.8,278.7 -432.8,270.2 -432.3,270.1 -431.8,269.9 -431.2,269.7 -431.2,279.2 -431.8,279 -432.3,278.9 Z" - id="path23" - inkscape:connector-curvature="0" - style="fill:#804998" /><polygon - class="st0" - points="-439.4,277.5 -439.4,284.2 -447,287.1 -447,274.8 " - id="polygon25" - style="fill:#804998" - transform="translate(0,-6.5)" /><path - class="st0" - d="M -454,270.3 -454,278.4 -448.3,280.6 -448.3,268.3 -454,270.3 Z M -453.4,277.8 -453.7,277.7 -453.7,271 -453.4,270.9 -453.1,270.8 -452.8,270.7 -452.8,278 -453.1,277.9 -453.4,277.8 Z M -451.9,278.3 -452.3,278.2 -452.3,270.7 -451.9,270.6 -451.5,270.5 -451.1,270.4 -451.1,278.6 -451.5,278.5 -451.9,278.3 Z M -450.1,278.9 -450.6,278.7 -450.6,270.2 -450.1,270.1 -449.6,269.9 -449,269.7 -449,279.2 -449.6,279 -450.1,278.9 Z" - id="path27" - inkscape:connector-curvature="0" - style="fill:#804998" /><polygon - class="st0" - points="-404,277.5 -404,284.2 -411.6,287.1 -411.6,274.8 " - id="polygon29" - style="fill:#804998" - transform="translate(0,-6.5)" /><polygon - class="st1" - points="-431.1,265.2 -431.1,271.9 -438.8,274.9 -438.8,262.5 " - id="polygon31" - style="opacity:0.2;fill:#ffffff" - transform="translate(0,-6.5)" /><polygon - class="st1" - points="-413.2,265.2 -413.2,271.9 -420.9,274.9 -420.9,262.5 " - id="polygon33" - style="opacity:0.2;fill:#ffffff" - transform="translate(0,-6.5)" /><polygon - class="st1" - points="-431.1,289.8 -431.1,296.5 -438.8,299.5 -438.8,287.1 " - id="polygon35" - style="opacity:0.2;fill:#ffffff" - transform="translate(0,-6.5)" /><polygon - class="st1" - points="-413.2,289.8 -413.2,296.5 -420.9,299.5 -420.9,287.1 " - id="polygon37" - style="opacity:0.2;fill:#ffffff" - transform="translate(0,-6.5)" /><polygon - class="st1" - points="-421.6,277.5 -421.6,284.2 -429.2,287.1 -429.2,274.8 " - id="polygon39" - style="opacity:0.2;fill:#ffffff" - transform="translate(0,-6.5)" /><polygon - class="st1" - points="-439.4,277.5 -439.4,284.2 -447,287.1 -447,274.8 " - id="polygon41" - style="opacity:0.2;fill:#ffffff" - transform="translate(0,-6.5)" /><polygon - class="st1" - points="-404,277.5 -404,284.2 -411.6,287.1 -411.6,274.8 " - id="polygon43" - style="opacity:0.2;fill:#ffffff" - transform="translate(0,-6.5)" /><path - class="st0" - d="M -418.6,270.3 -418.6,278.4 -412.9,280.6 -412.9,268.3 -418.6,270.3 Z M -418,277.8 -418.3,277.7 -418.3,271 -418,270.9 -417.7,270.8 -417.4,270.7 -417.4,278 -417.7,277.9 -418,277.8 Z M -416.5,278.3 -416.9,278.2 -416.9,270.7 -416.5,270.6 -416.1,270.5 -415.7,270.4 -415.7,278.6 -416.1,278.5 -416.5,278.3 Z M -414.7,278.9 -415.2,278.7 -415.2,270.2 -414.7,270.1 -414.2,269.9 -413.6,269.7 -413.6,279.2 -414.2,279 -414.7,278.9 Z" - id="path45" - inkscape:connector-curvature="0" - style="fill:#804998" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="37" viewBox="-454 256 50 37"><g fill="#804998"><path d="M-431.1 258.7v6.7l-7.7 3V256z"/><use xlink:href="#B"/><path d="M-413.2 258.7v6.7l-7.7 3V256z"/><use xlink:href="#B" x="17.9"/><path d="M-431.1 283.3v6.7l-7.7 3v-12.4z"/><use xlink:href="#C"/><path d="M-413.2 283.3v6.7l-7.7 3v-12.4z"/><use xlink:href="#C" x="17.9"/><path d="M-421.6 271v6.7l-7.6 2.9v-12.3z"/><use xlink:href="#D"/><path d="M-439.4 271v6.7l-7.6 2.9v-12.3z"/><use xlink:href="#D" x="-17.8"/><path d="M-404 271v6.7l-7.6 2.9v-12.3z"/></g><path d="M-431.1 258.7v6.7l-7.7 3V256zm17.9 0v6.7l-7.7 3V256zm-17.9 24.6v6.7l-7.7 3v-12.4zm17.9 0v6.7l-7.7 3v-12.4zm-8.4-12.3v6.7l-7.6 2.9v-12.3zm-17.8 0v6.7l-7.6 2.9v-12.3zm35.4 0v6.7l-7.6 2.9v-12.3z" opacity=".2" fill="#fff"/><use xlink:href="#D" x="17.6" fill="#804998"/><defs ><path id="B" d="M-445.7 258.1v8.1l5.7 2.2v-12.3l-5.7 2zm.6 7.5l-.3-.1v-6.7l.9-.3v7.3l-.6-.2zm1.5.4l-.4-.1v-7.5l1.2-.3v8.2l-.4-.1-.4-.2zm1.8.6l-.5-.2v-8.5l.5-.1.5-.2.6-.2v9.5l-.6-.2-.5-.1z"/><path id="C" d="M-445.7 282.7v8.1l5.7 2.2v-12.3l-5.7 2zm.6 7.5l-.3-.1v-6.7l.9-.3v7.3l-.6-.2zm1.5.4l-.4-.1V283l1.2-.3v8.2l-.4-.1-.4-.2zm1.8.6l-.5-.2v-8.5l.5-.1.5-.2.6-.2v9.5l-.6-.2-.5-.1z"/><path id="D" d="M-436.2 270.3v8.1l5.7 2.2v-12.3l-5.7 2zm.6 7.5l-.3-.1V271l.9-.3v7.3l-.6-.2zm1.5.5l-.4-.1v-7.5l1.2-.3v8.2l-.4-.1-.4-.2zm1.8.6l-.5-.2v-8.5l.5-.1.5-.2.6-.2v9.5l-.6-.2-.5-.1z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/ContentManagementSystem.svg b/src/main/webapp/img/lib/mscae/ContentManagementSystem.svg index a2fd8adce37581f818dbb71e6b4624ea6e9b30f3..7370e1b1038de1679c9b5895e08be4a74c8564f0 100644 --- a/src/main/webapp/img/lib/mscae/ContentManagementSystem.svg +++ b/src/main/webapp/img/lib/mscae/ContentManagementSystem.svg @@ -1,93 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<g id="Retention"> - <path fill="#59B4D9" d="M18.5,50h0.3c10.4,0,18.8-3,18.8-6.8V6.9H18.5L18.5,50L18.5,50z"/> - <g id="arrow_copy"> - </g> - <path fill="#3999C6" d="M0,6.8v36.3c0,3.8,8.4,6.8,18.8,6.8V6.8L0,6.8L0,6.8z"/> - <path fill="#FFFFFF" d="M37.6,6.8c0,3.8-8.4,6.8-18.8,6.8S0,10.6,0,6.8S8.4,0,18.8,0S37.6,3,37.6,6.8"/> - <path fill="#7FBA00" d="M33.7,6.4c0,2.5-6.7,4.5-14.9,4.5S3.9,8.9,3.9,6.4s6.7-4.5,14.9-4.5S33.7,3.9,33.7,6.4"/> - <path fill="#B8D432" d="M30.6,9.2c2-0.8,3.1-1.8,3.1-2.8c0-2.5-6.7-4.5-14.9-4.5S3.9,3.9,3.9,6.4c0,1,1.1,2,3.1,2.8 - c2.8-1,7-1.8,11.8-1.8S27.8,8.2,30.6,9.2"/> -</g> -<g id="_x31_" display="none"> - <path display="inline" fill="#59B4D9" d="M546.7,9122.4h28.8c1195.2,0,2160-345.6,2160-777.6V4183.2H546.7V9122.4z"/> - <g id="arrow" display="inline"> - </g> - <g display="inline"> - <path fill="#B8D432" d="M3383.5,8013.6l187.2-1108.8l-388.8,230.4c-331.2-532.8-849.6-921.6-1468.8-1080 - c-633.6-172.8-1296-72-1857.6,259.2s-964.8,864-1137.6,1497.6l561.6,144c129.6-489.6,432-892.8,864-1152s936-331.2,1425.6-201.6 - c460.8,115.2,849.6,403.2,1108.8,820.8l-374.4,216L3383.5,8013.6z"/> - </g> - <path display="inline" fill="#3999C6" d="M-1584.5,4168.8V8330.4c0,432,964.8,777.6,2160,777.6V4168.8H-1584.5z"/> - <path display="inline" fill="#FFFFFF" d="M2735.5,4168.8c0,432-964.8,777.6-2160,777.6s-2160-345.6-2160-777.6 - s964.8-777.6,2160-777.6C1770.7,3391.2,2735.5,3736.8,2735.5,4168.8"/> - <path display="inline" fill="#7FBA00" d="M2289.1,4125.6c0,288-763.2,518.4-1713.6,518.4s-1713.6-230.4-1713.6-518.4 - s763.2-518.4,1713.6-518.4S2289.1,3837.6,2289.1,4125.6"/> - <path display="inline" fill="#B8D432" d="M1929.1,4442.4c230.4-86.4,360-201.6,360-316.8c0-288-763.2-518.4-1713.6-518.4 - s-1713.6,230.4-1713.6,518.4c0,115.2,129.6,230.4,360,316.8c316.8-115.2,806.4-201.6,1353.6-201.6S1612.3,4327.2,1929.1,4442.4"/> -</g> -<g id="_x32_" display="none"> - <g id="DB" display="inline"> - <path fill="#59B4D9" d="M1833.1,9136.8h14.4c820.8,0,1483.2-244.8,1483.2-532.8V5738.4h-1512v3398.4H1833.1L1833.1,9136.8z"/> - <path fill="#3999C6" d="M364.3,5738.4V8604c0,302.4,662.4,532.8,1483.2,532.8V5738.4H364.3z"/> - <path fill="#FFFFFF" d="M3330.7,5738.4c0,302.4-662.4,532.8-1483.2,532.8S364.3,6026.4,364.3,5738.4 - c0-302.4,662.4-532.8,1483.2-532.8S3330.7,5436,3330.7,5738.4"/> - <path fill="#7FBA00" d="M3028.3,5709.6c0,201.6-532.8,360-1180.8,360s-1180.8-158.4-1180.8-360s532.8-360,1180.8-360 - S3028.3,5508,3028.3,5709.6"/> - <path fill="#B8D432" d="M2783.5,5925.6c158.4-57.6,244.8-129.6,244.8-216c0-201.6-532.8-360-1180.8-360S666.7,5508,666.7,5709.6 - c0,86.4,86.4,158.4,244.8,216c216-86.4,547.2-144,936-144C2221.9,5781.6,2567.5,5839.2,2783.5,5925.6"/> - </g> - <path display="inline" fill="#0072C6" d="M-427.7,6213.6c0-43.2,0-86.4,0-129.6c0-691.2,576-1252.8,1267.2-1252.8 - c417.6,0,792,201.6,1022.4,518.4c144-86.4,331.2-144,504-144c532.8,0,964.8,432,964.8,950.4v72c360,187.2,547.2,475.2,547.2,849.6 - c0,590.4-475.2,1051.2-1094.4,1051.2H76.3c-619.2,0-1094.4-460.8-1094.4-1051.2C-1018.1,6688.8-802.1,6386.4-427.7,6213.6z"/> - <path display="inline" fill="#0072C6" d="M3517.9,6501.6v-72c0-432-288-806.4-691.2-936c0,43.2,0,72,0,115.2 - c0,936-748.8,1670.4-1713.6,1670.4H-946.1c0,28.8-14.4,72-14.4,100.8c0,604.8,489.6,1080,1123.2,1080h2793.6 - c633.6,0,1123.2-475.2,1123.2-1080C4093.9,6991.2,3892.3,6688.8,3517.9,6501.6z"/> - <g display="inline"> - <path fill="#FFFFFF" d="M2898.7,8172l720-864h-446.4c-14.4-633.6-273.6-1224-720-1670.4c-460.8-460.8-1080-720-1742.4-720 - s-1267.2,259.2-1742.4,720l403.2,403.2c360-360,820.8-547.2,1324.8-547.2s979.2,187.2,1324.8,547.2 - c345.6,345.6,532.8,792,547.2,1267.2h-432L2898.7,8172z"/> - </g> - <path display="inline" fill="#59B4D9" d="M-2011.7,4773.6c0-43.2,0-86.4,0-129.6c0-691.2,576-1252.8,1267.2-1252.8 - c417.6,0,792,201.6,1022.4,518.4c144-86.4,331.2-144,504-144c532.8,0,964.8,432,964.8,950.4v72c360,187.2,547.2,475.2,547.2,849.6 - c0,590.4-475.2,1051.2-1094.4,1051.2h-2707.2c-619.2,0-1094.4-460.8-1094.4-1051.2C-2602.1,5248.8-2386.1,4946.4-2011.7,4773.6z"/> -</g> -<g id="_x33_" display="none"> - <path display="inline" fill="#0072C6" d="M-1594.1,5244c0-57.6,0-100.8,0-158.4c0-835.2,691.2-1512,1526.4-1512 - c504,0,964.8,244.8,1252.8,633.6c187.2-115.2,388.8-172.8,619.2-172.8c633.6,0,1166.4,518.4,1166.4,1152v86.4 - c432,216,662.4,576,662.4,1036.8c0,705.6-576,1267.2-1324.8,1267.2H-960.5c-748.8,0-1324.8-561.6-1324.8-1267.2 - C-2299.7,5820-2040.5,5445.6-1594.1,5244z"/> - <path display="inline" fill="#B8D432" d="M2970.7,7893.6c-28.8-648-302.4-1267.2-763.2-1728 - c-489.6-489.6-1137.6-763.2-1828.8-763.2l0,0l0,0v144l0,0c43.2,0,86.4,0,129.6,0c-43.2,0-86.4,0-129.6,0v720 - c460.8,0,907.2,187.2,1224,504c302.4,302.4,475.2,691.2,504,1123.2h-561.6l489.6,561.6l489.6,561.6l489.6-561.6l489.6-561.6 - L2970.7,7893.6L2970.7,7893.6z"/> - <g display="inline"> - <path fill="#59B4D9" d="M2783.5,7332c-158.4,57.6-316.8,86.4-489.6,86.4h-417.6c129.6,230.4,216,489.6,230.4,748.8h-561.6 - l489.6,561.6l489.6,561.6l489.6-561.6l489.6-561.6h-532.8C2956.3,7879.2,2884.3,7605.6,2783.5,7332z"/> - <path fill="#59B4D9" d="M364.3,6554.4v-720c43.2,0,86.4,0,129.6,0c-43.2,0-86.4,0-129.6,0l0,0v-144l0,0l0,0 - c691.2,0,1339.2,273.6,1828.8,763.2c259.2,259.2,446.4,561.6,576,892.8c489.6-187.2,835.2-633.6,835.2-1180.8 - c0-460.8-230.4-820.8-662.4-1036.8v-86.4c0-633.6-518.4-1152-1152-1152c-216,0-432,57.6-619.2,172.8 - c-288-388.8-748.8-633.6-1252.8-633.6c-849.6,0-1526.4,676.8-1526.4,1512c0,57.6,0,100.8,0,158.4 - c-460.8,216-705.6,590.4-705.6,1065.6c0,705.6,576,1267.2,1324.8,1267.2h2851.2c-72-129.6-172.8-259.2-273.6-360 - C1271.5,6727.2,839.5,6554.4,364.3,6554.4z"/> - <path fill="#FFFFFF" d="M2783.5,7332c-129.6-331.2-316.8-633.6-576-892.8C1717.9,5949.6,1069.9,5676,378.7,5676l0,0l0,0v144l0,0 - c43.2,0,86.4,0,129.6,0c-43.2,0-86.4,0-129.6,0v720c460.8,0,907.2,187.2,1224,504c115.2,115.2,201.6,230.4,273.6,360h417.6 - C2466.7,7418.4,2639.5,7389.6,2783.5,7332z"/> - </g> -</g> -<polygon fill="#0072C6" points="48.569,29.114 45.136,25.681 43.706,24.25 43.563,24.25 26.396,24.25 26.396,50 50,50 50,30.688 - 50,30.544 "/> -<polygon opacity="0.8" fill="#FFFFFF" enable-background="new " points="43.563,25.681 27.826,25.681 27.826,48.569 - 48.569,48.569 48.569,30.688 43.563,30.688 "/> -<path fill="#0072C6" d="M43.419,45.136c0,0.429-0.358,0.787-0.787,0.787H31.832c-0.429,0-0.787-0.358-0.787-0.787 - s0.358-0.787,0.787-0.787h10.801C43.062,44.349,43.419,44.707,43.419,45.136"/> -<path fill="#0072C6" d="M45.637,37.268c0,0.429-0.358,0.787-0.787,0.787H31.832c-0.429,0-0.787-0.358-0.787-0.787 - c0-0.429,0.358-0.787,0.787-0.787h12.947C45.279,36.481,45.637,36.839,45.637,37.268"/> -<path fill="#0072C6" d="M45.637,41.202c0,0.429-0.358,0.787-0.787,0.787H31.832c-0.429,0-0.787-0.358-0.787-0.787 - c0-0.429,0.358-0.787,0.787-0.787h12.947C45.279,40.415,45.637,40.773,45.637,41.202"/> -<path fill="#0072C6" d="M45.637,33.334c0,0.429-0.358,0.787-0.787,0.787H31.832c-0.429,0-0.787-0.358-0.787-0.787 - c0-0.429,0.358-0.787,0.787-0.787h12.947C45.279,32.547,45.637,32.905,45.637,33.334"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="50"><path fill="#59b4d9" d="M18.5 50h.3c10.4 0 18.8-3 18.8-6.8V6.9H18.5V50z"/><path fill="#3999c6" d="M0 6.8v36.3c0 3.8 8.4 6.8 18.8 6.8V6.8H0z"/><path fill="#fff" d="M37.6,6.8c0,3.8-8.4,6.8-18.8,6.8S0,10.6,0,6.8S8.4,0,18.8,0S37.6,3,37.6,6.8"/><path fill="#7fba00" d="M33.7 6.4c0 2.5-6.7 4.5-14.9 4.5S3.9 8.9 3.9 6.4s6.7-4.5 14.9-4.5 14.9 2 14.9 4.5"/><path fill="#b8d432" d="M30.6 9.2c2-.8 3.1-1.8 3.1-2.8 0-2.5-6.7-4.5-14.9-4.5S3.9 3.9 3.9 6.4c0 1 1.1 2 3.1 2.8 2.8-1 7-1.8 11.8-1.8s9 .8 11.8 1.8"/><path fill="#0072c6" d="M48.57 29.114l-4.863-4.864h-17.3V50H50V30.544z"/><path opacity=".8" fill="#fff" d="M43.563 25.68H27.826V48.57H48.57v-17.88h-5.006z"/><g fill="#0072c6"><path d="M43.42 45.136c0 .43-.358.787-.787.787h-10.8c-.43 0-.787-.358-.787-.787s.358-.787.787-.787h10.8c.43 0 .786.358.786.787"/><use xlink:href="#B"/><use xlink:href="#B" y="3.934"/><use xlink:href="#B" y="-3.934"/></g><defs ><path id="B" d="M45.637 37.268c0 .43-.358.787-.787.787H31.832c-.43 0-.787-.358-.787-.787s.358-.787.787-.787H44.78c.5 0 .858.358.858.787"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Content_Delivery_Network.svg b/src/main/webapp/img/lib/mscae/Content_Delivery_Network.svg index 19fd3726385cddc1e0afda936152b7de40ef2816..1810ab52d774e1a9ce42dcf706f538e379368c08 100644 --- a/src/main/webapp/img/lib/mscae/Content_Delivery_Network.svg +++ b/src/main/webapp/img/lib/mscae/Content_Delivery_Network.svg @@ -1,77 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="22.799999" - viewBox="0 0 50 22.799999" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure Content Delivery Network (CDN)_COLOR.svg"><metadata - id="metadata19"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs17" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview15" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="14.656481" - inkscape:cx="16.409796" - inkscape:cy="10.729921" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><style - type="text/css" - id="style3"> - .st0{fill:#7A7A7A;} - .st1{fill:#3999C6;} - .st2{opacity:0.2;fill:#FFFFFF;enable-background:new ;} -</style><path - class="st0" - d="M 34.9,6.1 8.3,6.1 C 7.2,6.1 6.3,5.2 6.3,4.1 L 6.3,4.1 C 6.3,3 7.2,2.1 8.3,2.1 L 34.9,2.1 C 36,2.1 36.9,3 36.9,4.1 L 36.9,4.1 C 36.9,5.2 36,6.1 34.9,6.1 Z" - id="path5" - inkscape:connector-curvature="0" - style="fill:#7a7a7a" /><path - class="st0" - d="M 29.5,22.8 4.9,22.8 C 3.8,22.8 2.9,21.9 2.9,20.8 L 2.9,20.8 C 2.9,19.7 3.8,18.8 4.9,18.8 L 29.5,18.8 C 30.6,18.8 31.5,19.7 31.5,20.8 L 31.5,20.8 C 31.5,21.9 30.6,22.8 29.5,22.8 Z" - id="path7" - inkscape:connector-curvature="0" - style="fill:#7a7a7a" /><path - class="st0" - d="M 26.6,14.7 2,14.7 C 0.9,14.7 0,13.8 0,12.7 L 0,12.7 C 0,11.6 0.9,10.7 2,10.7 L 26.6,10.7 C 27.7,10.7 28.6,11.6 28.6,12.7 L 28.6,12.7 C 28.6,13.8 27.7,14.7 26.6,14.7 Z" - id="path9" - inkscape:connector-curvature="0" - style="fill:#7a7a7a" /><path - class="st1" - d="M 50,18.5 C 50,16.1 48.1,14.2 45.8,14.2 45.6,14.2 45.5,14.2 45.2,14.2 45.4,13.3 45.6,12.3 45.6,11.2 45.6,5 40.5,0 34.4,0 29.5,0 25.3,3.3 23.8,7.6 23,7.4 22.2,7.2 21.3,7.2 17,7.2 13.7,10.7 13.7,15 13.7,19.3 17.1,22.8 21.3,22.8 L 21.3,22.8 21.3,22.8 46,22.8 46,22.8 C 48.3,22.5 50,20.7 50,18.5" - id="path11" - inkscape:connector-curvature="0" - style="fill:#3999c6" /><path - class="st2" - d="M 25.3,22.7 C 24.3,21.7 23.5,20.5 23.2,18.9 22.3,14.7 24.8,10.6 28.9,9.7 29.8,9.5 30.6,9.5 31.5,9.6 31.8,5.7 34.2,2.3 37.8,0.6 36.7,0.3 35.6,0 34.4,0 29.5,0 25.3,3.3 23.8,7.6 23,7.4 22.2,7.2 21.3,7.2 17,7.2 13.7,10.7 13.7,15 13.7,19.3 17.1,22.8 21.3,22.8 L 21.3,22.8 21.3,22.8 25.3,22.7 25.3,22.7 Z" - id="path13" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#ffffff;enable-background:new" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="22.8"><path d="M34.9 6.1H8.3c-1.1 0-2-.9-2-2s.9-2 2-2h26.6c1.1 0 2 .9 2 2s-.9 2-2 2zm-5.4 16.7H4.9c-1.1 0-2-.9-2-2s.9-2 2-2h24.6c1.1 0 2 .9 2 2s-.9 2-2 2zm-2.9-8.1H2c-1.1 0-2-.9-2-2s.9-2 2-2h24.6c1.1 0 2 .9 2 2s-.9 2-2 2z" fill="#7a7a7a"/><path d="M50 18.5c0-2.4-1.9-4.3-4.2-4.3h-.6c.2-.9.4-1.9.4-3C45.6 5 40.5 0 34.4 0c-4.9 0-9.1 3.3-10.6 7.6-.8-.2-1.6-.4-2.5-.4-4.3 0-7.6 3.5-7.6 7.8s3.4 7.8 7.6 7.8H46c2.3-.3 4-2.1 4-4.3" fill="#3999c6"/><path d="M25.3 22.7c-1-1-1.8-2.2-2.1-3.8-.9-4.2 1.6-8.3 5.7-9.2.9-.2 1.7-.2 2.6-.1.3-3.9 2.7-7.3 6.3-9-1.1-.3-2.2-.6-3.4-.6-4.9 0-9.1 3.3-10.6 7.6-.8-.2-1.6-.4-2.5-.4-4.3 0-7.6 3.5-7.6 7.8s3.4 7.8 7.6 7.8l4-.1z" opacity=".2" fill="#fff" enable-background="new"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Content_Protection.svg b/src/main/webapp/img/lib/mscae/Content_Protection.svg new file mode 100644 index 0000000000000000000000000000000000000000..6dabead66d3704048454a550cb3f826d05fc0259 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Content_Protection.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="44.8" height="50"><path d="M39.5 18.5v-2.2c0-4.4-1.6-8.5-4.4-11.4-2.6-3-8.4-4.9-12.7-4.9S12.3 1.9 9.7 4.9c-2.7 2.9-4.4 7-4.4 11.4v2.2l7.9.9v-2c0-2.6.9-5.9 2.4-7.6s4.7-2.5 6.8-2.6c2.1 0 5.3.9 6.8 2.6a9.55 9.55 0 0 1 2.4 6.4v3.2z" fill="#3e3e3e"/><path d="M5.3 18.5c-3.9 0-5.3 2.3-5.3 5.3v20.9C0 47.3 1.6 50 4.6 50h35.6c3.4 0 4.6-2.7 4.6-5.3V23.8c0-2.7-1.1-5.3-5.3-5.3z" fill="#59b4d9"/><g fill="#fff"><path d="M18.77 40.63V26l11 7.316z"/><path d="M31.5 18.5H5.3c-3.9 0-5.3 2.3-5.3 5.3v20.9C0 47.3 1.6 50 4.6 50h6.7z" opacity=".15"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/ContinuousExport.svg b/src/main/webapp/img/lib/mscae/ContinuousExport.svg index 670811691fd7734d2012619bcdc02dae3c5dc03c..e4f67c715b1cae428c652e82ad7439cf6f49ad7c 100644 --- a/src/main/webapp/img/lib/mscae/ContinuousExport.svg +++ b/src/main/webapp/img/lib/mscae/ContinuousExport.svg @@ -1,96 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="49.599998" - width="49.995583" - viewBox="0 0 49.995583 49.599998" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="ContinuousExport.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata1147"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs1145" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview1143" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.020815" - inkscape:cx="25.604848" - inkscape:cy="21.413195" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<g - id="g1130" - transform="translate(-0.00428913,-0.2)"> - <path - d="m 19.4,45.9 2.8,-3.8 C 14.9,40.5 8.1,34.3 7.4,26.4 6.7,17.8 12.2,10.1 20.3,7.9 L 23.3,4 19.5,0.5 C 7.5,3.3 -1,14.5 0.1,27.1 c 1,12 10.5,21.3 22,22.7 z" - id="path1126" - inkscape:connector-curvature="0" - style="fill:#0072c6" /> - <path - d="m 28.8,0.2 2.4,3.9 -3.3,3.6 C 35.2,9.4 42,15.6 42.7,23.4 43.4,31.9 38,39.6 30,41.9 l -2.3,4.3 3.5,3 C 42.9,46.2 51,35.2 49.9,22.8 48.9,11 39.9,1.9 28.8,0.2 Z" - id="path1128" - inkscape:connector-curvature="0" - style="fill:#0072c6" /> -</g> -<g - id="g1140" - transform="translate(-0.00428913,-0.2)"> - <rect - x="12.7" - y="21.5" - width="4.0999999" - height="9.6999998" - id="rect1132" - style="fill:#0072c6" /> - <rect - x="19.5" - y="16" - width="4.0999999" - height="15.2" - id="rect1134" - style="fill:#59b4d9" /> - <rect - x="26.299999" - y="22.9" - width="4.0999999" - height="8.3000002" - id="rect1136" - style="fill:#3999c6" /> - <rect - x="33.200001" - y="18.700001" - width="4.0999999" - height="12.4" - id="rect1138" - style="fill:#0072c6" /> -</g> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" height="49.6" width="49.996"><path d="M19.396 45.7l2.8-3.8c-7.3-1.6-14.1-7.8-14.8-15.7-.7-8.6 4.8-16.3 12.9-18.5l3-3.9-3.8-3.5c-12 2.8-20.5 14-19.4 26.6 1 12 10.5 21.3 22 22.7zm9.4-45.7l2.4 3.9-3.3 3.6c7.3 1.7 14.1 7.9 14.8 15.7.7 8.5-4.7 16.2-12.7 18.5l-2.3 4.3 3.5 3c11.7-3 19.8-14 18.7-26.4-1-11.8-10-20.9-21.1-22.6zm-16.1 21.3h4.1V31h-4.1z" fill="#0072c6"/><path d="M19.496 15.8h4.1V31h-4.1z" fill="#59b4d9"/><path d="M26.296 22.7h4.1V31h-4.1z" fill="#3999c6"/><path d="M33.196 18.5h4.1v12.4h-4.1z" fill="#0072c6"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Controllers.svg b/src/main/webapp/img/lib/mscae/Controllers.svg new file mode 100644 index 0000000000000000000000000000000000000000..f0dafa3f0b29b46909a655626268f5d54b0a19b9 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Controllers.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="44.4"><path d="M24.8 0L12.7 4.9l.1 14.1 12-4.8z" fill="#a0a1a2"/><path d="M24.8 0v23.9L36.7 19V4.3L24.8 0z" fill="#7a7a7a"/><path d="M12.8 19l12-4.7L36.7 19l-11.9 4.9z" fill="#3e3e3e"/><path d="M12.1 20.5L0 26.6v12.9l12.1-4.7z" fill="#a0a1a2"/><path d="M12.1 20.5v.2L12 44.4l12-4.9V25.9l-11.9-5.4z" fill="#7a7a7a"/><path d="M0 39.5l12.1-4.7L24 39.5l-11.9 4.9z" fill="#3e3e3e"/><path d="M38.1 20.5L26 26v13.5l12.1-4.7z" fill="#e5e5e5"/><path d="M38.1 20.5v.2L38 44.4l12-4.9V25.9l-11.9-5.4z" fill="#a0a1a2"/><path d="M26 39.5l12.1-4.7L50 39.5l-11.9 4.9z" fill="#0070c9"/><path d="M44.8 37.7H31.3c-.7 0-1.3-.6-1.3-1.3v-8.7c0-.7.5-1.2 1.2-1.2h13.5c.7 0 1.3.6 1.3 1.3v8.6c.1.7-.5 1.3-1.2 1.3z" fill="#000e92"/><g fill="#fff"><path d="M35.9 27.8l.9.9-3.8 3.5 3.6 3.7-.8.8-4.5-4.5zm4.1 0l-.8.9 3.7 3.5-3.6 3.7.8.8 4.5-4.5z"/><path d="M40.6 26.5h-9.4c-.7 0-1.1.7-1.1 1.2v8.8c0 .5.5 1.2 1.2 1.2h3.6z" opacity=".25" enable-background="new"/></g><path d="M44.7 26.5H31.1l6.6-1.6z" opacity=".2" fill="#3e3e3e"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Controls.svg b/src/main/webapp/img/lib/mscae/Controls.svg index 888d363d796e867b4a5a2c4961320fdce8840938..2c12f15fcd8eda5eb8b5b147f5433d5ee3e4c3cd 100644 --- a/src/main/webapp/img/lib/mscae/Controls.svg +++ b/src/main/webapp/img/lib/mscae/Controls.svg @@ -1,176 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="42.002998" - height="50" - viewBox="0 0 42.002998 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Controls.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata1280"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs1278" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview1276" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="21" - inkscape:cy="25" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<rect - x="0" - width="10.003" - height="50" - id="rect1239" - y="0" - style="fill:#e5e5e5" /> -<rect - x="2" - y="2" - width="5.941" - height="46" - id="rect1241" - style="fill:#59b4d9" /> -<rect - x="2" - y="20" - width="6.0029998" - height="28" - id="rect1243" - style="opacity:0.6;fill:#ffffff" /> -<rect - x="0" - y="18" - width="9.9989996" - height="4" - id="rect1245" - style="fill:#7a7a7a" /> -<rect - x="0.00099992752" - y="18" - width="10" - height="2" - id="rect1247" - style="opacity:0.7;fill:#ffffff" /> -<rect - x="16" - width="10.003" - height="50" - id="rect1249" - y="0" - style="fill:#e5e5e5" /> -<rect - x="18" - y="2" - width="5.941" - height="46" - id="rect1251" - style="fill:#59b4d9" /> -<rect - x="18.004999" - y="36" - width="6.0029998" - height="12" - id="rect1253" - style="opacity:0.6;fill:#ffffff" /> -<rect - x="16" - y="34" - width="9.9989996" - height="4" - id="rect1255" - style="fill:#7a7a7a" /> -<rect - x="16.000999" - y="34" - width="10" - height="2" - id="rect1257" - style="opacity:0.7;fill:#ffffff" /> -<rect - x="32" - width="10.003" - height="50" - id="rect1259" - y="0" - style="fill:#e5e5e5" /> -<rect - x="34" - y="2" - width="5.941" - height="46" - id="rect1261" - style="fill:#59b4d9" /> -<rect - x="34" - y="20" - width="6.0029998" - height="28" - id="rect1263" - style="opacity:0.6;fill:#ffffff" /> -<rect - x="32" - y="18" - width="9.9989996" - height="4" - id="rect1265" - style="fill:#7a7a7a" /> -<rect - x="32.000999" - y="18" - width="10" - height="2" - id="rect1267" - style="opacity:0.7;fill:#ffffff" /> -<rect - x="0.00099992752" - y="22" - width="10" - height="2" - id="rect1269" - style="opacity:0.2;fill:#1e1e1e" /> -<rect - x="31.970001" - y="22" - width="10" - height="2" - id="rect1271" - style="opacity:0.2;fill:#1e1e1e" /> -<rect - x="16.007" - y="38" - width="10" - height="2" - id="rect1273" - style="opacity:0.2;fill:#1e1e1e" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="42.003" height="50"><path d="M0 0h10.003v50H0z" fill="#e5e5e5"/><path d="M2 2h5.94v46H2z" fill="#59b4d9"/><path d="M2 20h6.003v28H2z" opacity=".6" fill="#fff"/><path d="M0 18h10v4H0z" fill="#7a7a7a"/><path d="M.001 18h10v2h-10z" opacity=".7" fill="#fff"/><path d="M16 0h10.003v50H16z" fill="#e5e5e5"/><path d="M18 2h5.94v46H18z" fill="#59b4d9"/><path d="M18.005 36h6.003v12h-6.003z" opacity=".6" fill="#fff"/><path d="M16 34h10v4H16z" fill="#7a7a7a"/><path d="M16 34h10v2H16z" opacity=".7" fill="#fff"/><path d="M32 0h10.003v50H32z" fill="#e5e5e5"/><path d="M34 2h5.94v46H34z" fill="#59b4d9"/><path d="M34 20h6.003v28H34z" opacity=".6" fill="#fff"/><path d="M32 18h10v4H32z" fill="#7a7a7a"/><path d="M32 18h10v2H32z" opacity=".7" fill="#fff"/><path d="M.001 22h10v2h-10zm31.97 0h10v2h-10zM16.007 38h10v2h-10z" opacity=".2" fill="#1e1e1e"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/ControlsHorizontal.svg b/src/main/webapp/img/lib/mscae/ControlsHorizontal.svg index d621bcc33900418354a816f9810bcd7d385c2525..8d8bcceff9fae5fcc9ae574b2a4ddb7c1ac35cfd 100644 --- a/src/main/webapp/img/lib/mscae/ControlsHorizontal.svg +++ b/src/main/webapp/img/lib/mscae/ControlsHorizontal.svg @@ -1,185 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="42.002003" - viewBox="0 0 50 42.002003" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="ControlsHorizontal.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata1423"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs1421" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview1419" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="24.999" - inkscape:cy="21.001001" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<rect - x="0" - y="31.999001" - width="50" - height="10.003" - id="rect1382" - style="fill:#e5e5e5" /> -<rect - x="1.9999999" - y="34.062" - width="46" - height="5.941" - id="rect1384" - style="fill:#7fba00" /> -<rect - x="20" - y="33.999001" - enable-background="new " - width="28" - height="6.0029998" - id="rect1386" - style="opacity:0.6;fill:#ffffff" /> -<rect - x="18" - y="32.002998" - width="4" - height="9.9989996" - id="rect1388" - style="fill:#7a7a7a" /> -<rect - x="18" - y="32.000999" - enable-background="new " - width="2" - height="10" - id="rect1390" - style="opacity:0.7;fill:#ffffff" /> -<rect - x="0" - y="16" - width="50" - height="10.003" - id="rect1392" - style="fill:#e5e5e5" /> -<rect - x="1.9999999" - y="18.060999" - width="46" - height="5.941" - id="rect1394" - style="fill:#7fba00" /> -<rect - x="36" - y="17.993999" - enable-background="new " - width="12" - height="6.0029998" - id="rect1396" - style="opacity:0.6;fill:#ffffff" /> -<rect - x="34" - y="16.003" - width="4" - height="9.9989996" - id="rect1398" - style="fill:#7a7a7a" /> -<rect - x="34" - y="16.000999" - enable-background="new " - width="2" - height="10" - id="rect1400" - style="opacity:0.7;fill:#ffffff" /> -<rect - x="0" - y="0" - width="50" - height="10.003" - id="rect1402" - style="fill:#e5e5e5" /> -<rect - x="1.9999999" - y="2.0609999" - width="46" - height="5.941" - id="rect1404" - style="fill:#7fba00" /> -<rect - x="20" - y="2" - enable-background="new " - width="28" - height="6.0029998" - id="rect1406" - style="opacity:0.6;fill:#ffffff" /> -<rect - x="18" - y="0.0029997826" - width="4" - height="9.9989996" - id="rect1408" - style="fill:#7a7a7a" /> -<rect - x="18" - y="0.00099992752" - enable-background="new " - width="2" - height="10" - id="rect1410" - style="opacity:0.7;fill:#ffffff" /> -<rect - x="22" - y="32.000999" - enable-background="new " - width="2" - height="10" - id="rect1412" - style="opacity:0.2;fill:#1e1e1e" /> -<rect - x="22" - y="0.032000065" - enable-background="new " - width="2" - height="10" - id="rect1414" - style="opacity:0.2;fill:#1e1e1e" /> -<rect - x="38" - y="15.994999" - enable-background="new " - width="2" - height="10" - id="rect1416" - style="opacity:0.2;fill:#1e1e1e" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="42.002"><path d="M0 32h50v10.003H0z" fill="#e5e5e5"/><path d="M2 34.062h46v5.94H2z" fill="#7fba00"/><path d="M20 34h28v6.003H20z" opacity=".6" fill="#fff"/><path d="M18 32.003h4v10h-4z" fill="#7a7a7a"/><path d="M18 32h2v10h-2z" opacity=".7" fill="#fff"/><path d="M0 16h50v10.003H0z" fill="#e5e5e5"/><path d="M2 18.06h46v5.94H2z" fill="#7fba00"/><path d="M36 17.994h12v6.003H36z" opacity=".6" fill="#fff"/><path d="M34 16.003h4v10h-4z" fill="#7a7a7a"/><path d="M34 16h2v10h-2z" opacity=".7" fill="#fff"/><path d="M0 0h50v10.003H0z" fill="#e5e5e5"/><path d="M2 2.06h46v5.94H2z" fill="#7fba00"/><path d="M20 2h28v6.003H20z" opacity=".6" fill="#fff"/><path d="M18 .003h4v10h-4z" fill="#7a7a7a"/><path d="M18 .001h2v10h-2z" opacity=".7" fill="#fff"/><path d="M22 32h2v10h-2zM22 .032h2v10h-2zm16 15.963h2v10h-2z" opacity=".2" fill="#1e1e1e"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/CosmosDB.svg b/src/main/webapp/img/lib/mscae/CosmosDB.svg index 5d7ae048bff2bfadb102abde69c956406ce53ade..6ac3548f0a105993df62380679e7017d923b7140 100644 --- a/src/main/webapp/img/lib/mscae/CosmosDB.svg +++ b/src/main/webapp/img/lib/mscae/CosmosDB.svg @@ -1,83 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="24" - height="24" - viewBox="0 0 24 24" - enable-background="new 0 0 24 24" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="CosmosDB-color.svg"><metadata - id="metadata25"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs23" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview21" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="21.591036" - inkscape:cx="10.780481" - inkscape:cy="9.023687" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 8.147,19.01 C 9.877,17.791 11.863,16.149 14.006,14.006 16.207,11.805 17.825,9.839 19.014,8.153 17.654,5.678 15.024,4 12,4 7.582,4 4,7.582 4,12 4,15.021 5.675,17.649 8.147,19.01 Z" - id="path3" - inkscape:connector-curvature="0" - style="fill:#b8d432" /><path - d="M 16.127,16.127 C 14.697,17.556 13.239,18.852 11.809,19.99 11.873,19.992 11.936,20 12,20 16.418,20 20,16.418 20,12 20,11.935 19.992,11.873 19.99,11.809 18.82,13.276 17.513,14.741 16.127,16.127 Z" - id="path5" - inkscape:connector-curvature="0" - style="fill:#b8d432" /><path - d="M 23.417,0.583 C 23.075,0.241 22.578,0.079 21.956,0.079 20.253,0.079 17.608,1.304 14.644,3.407 15.033,3.528 15.412,3.669 15.777,3.84 18.459,2.019 20.681,1.079 21.957,1.079 22.204,1.079 22.536,1.116 22.711,1.29 23.658,2.237 21.745,7.681 14.714,14.712 9.325,20.101 4.262,22.92 2.046,22.92 1.798,22.92 1.467,22.883 1.292,22.709 0.666,22.083 1.303,19.481 3.834,15.76 3.667,15.4 3.528,15.026 3.409,14.642 0.537,18.689 -0.691,22.139 0.585,23.416 0.927,23.758 1.424,23.92 2.046,23.92 4.865,23.92 10.256,20.583 15.421,15.419 21.725,9.114 25.305,2.472 23.417,0.583 Z" - id="path7" - inkscape:connector-curvature="0" - style="fill:#0078d7" /><path - d="M 4,0 C 4,2.209 2.209,4 0,4 2.209,4 4,5.791 4,8 4,5.791 5.791,4 8,4 5.791,4 4,2.209 4,0 L 4,0 Z" - id="path9" - inkscape:connector-curvature="0" - style="fill:#0078d7" /><path - d="M 21,18 C 21,19.657 19.657,21 18,21 19.657,21 21,22.343 21,24 21,22.343 22.343,21 24,21 22.343,21 21,19.657 21,18 L 21,18 Z" - id="path11" - inkscape:connector-curvature="0" - style="fill:#0078d7" /><path - d="M 8.639,13.194 8.312,13.194 C 8.353,13.031 8.373,12.867 8.373,12.684 8.373,11.479 7.393,10.5 6.189,10.5 L 4.146,10.5 C 4.053,10.986 4,11.487 4,12 4,14.164 4.863,16.123 6.258,17.563 L 8.639,17.563 C 9.844,17.563 10.823,16.583 10.823,15.379 10.823,14.174 9.843,13.194 8.639,13.194 Z" - id="path13" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><path - d="M 14.001,14.011 C 14.003,14.009 14.004,14.008 14.006,14.006 14.302,13.71 14.578,13.422 14.853,13.135 14.48,13.323 14.178,13.631 14.001,14.011 Z" - id="path15" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><path - d="M 16.127,16.127 C 15.191,17.063 14.242,17.942 13.296,18.759 13.632,19.092 14.093,19.299 14.6,19.299 L 15.265,19.299 C 17.784,18.17 19.611,15.78 19.941,12.929 L 19.07,12.929 C 18.147,14.017 17.159,15.094 16.127,16.127 Z" - id="path17" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><path - d="M 12.661,11.234 16.587,11.234 C 17.545,10.127 18.346,9.1 19.009,8.161 18.21,6.709 16.977,5.528 15.478,4.803 L 15.029,4.803 C 14.212,4.803 13.559,5.456 13.559,6.273 13.559,6.395 13.579,6.538 13.62,6.661 L 12.681,6.661 C 11.395,6.661 10.374,7.682 10.374,8.947 10.374,10.212 11.395,11.234 12.661,11.234 Z" - id="path19" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><path d="M8.147 19c1.73-1.22 3.716-2.86 5.86-5.004 2.2-2.2 3.82-4.167 5.008-5.853C17.654 5.678 15.024 4 12 4a8 8 0 0 0-8 8c0 3.02 1.675 5.65 4.147 7zm7.98-2.873a51.6 51.6 0 0 1-4.318 3.863L12 20a8 8 0 0 0 8-8c0-.065-.008-.127-.01-.2a52.08 52.08 0 0 1-3.863 4.318z" fill="#b8d432"/><path d="M23.417.583c-.342-.342-.84-.504-1.46-.504-1.703 0-4.348 1.225-7.312 3.328a8.68 8.68 0 0 1 1.133.433c2.682-1.82 4.904-2.76 6.18-2.76.247 0 .58.037.754.2.947.947-.966 6.4-7.997 13.422-5.4 5.388-10.453 8.208-12.67 8.208-.248 0-.58-.037-.754-.2-.626-.626.01-3.228 2.542-6.95a8.94 8.94 0 0 1-.425-1.118C.537 18.7-.7 22.14.585 23.416c.342.342.84.504 1.46.504 2.82 0 8.2-3.337 13.375-8.5C21.725 9.114 25.305 2.472 23.417.583zM4 0a4 4 0 0 1-4 4 4 4 0 0 1 4 4 4 4 0 0 1 4-4 4 4 0 0 1-4-4zm17 18a3 3 0 0 1-3 3 3 3 0 0 1 3 3 3 3 0 0 1 3-3 3 3 0 0 1-3-3z" fill="#0078d7"/><path d="M8.64 13.194h-.327a2.05 2.05 0 0 0 .061-.51c0-1.205-.98-2.184-2.184-2.184H4.146A7.97 7.97 0 0 0 4 12a7.97 7.97 0 0 0 2.258 5.563h2.38c1.205 0 2.184-.98 2.184-2.184a2.19 2.19 0 0 0-2.184-2.185zM14 14l.852-.876c-.373.188-.675.496-.852.876zm2.127 2.117l-2.83 2.632a1.85 1.85 0 0 0 1.304.54h.665a8 8 0 0 0 4.676-6.37h-.87l-2.943 3.198zm-3.467-4.893h3.926L19 8.16a8.03 8.03 0 0 0-3.531-3.358h-.45c-.817 0-1.47.653-1.47 1.47a1.28 1.28 0 0 0 .061.388h-.94c-1.286 0-2.307 1.02-2.307 2.286s1.02 2.287 2.287 2.287z" fill="#59b4d9"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Counter.svg b/src/main/webapp/img/lib/mscae/Counter.svg index 37fd77abafeab816c707e274e5cdfedae6ea1e80..4e839424b3e28eccddeb739991cf0c76a133ea80 100644 --- a/src/main/webapp/img/lib/mscae/Counter.svg +++ b/src/main/webapp/img/lib/mscae/Counter.svg @@ -1,112 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="40" - width="50" - viewBox="0 0 50 40" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Counter.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata1529"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs1527" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview1525" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="25" - inkscape:cy="20" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="M 44.5,40 H 5.5 C 2.5,40 0,37.5 0,34.5 V 5.5 C 0,2.5 2.5,0 5.5,0 h 39 c 3,0 5.5,2.5 5.5,5.5 v 29 c 0,3 -2.5,5.5 -5.5,5.5 z" - id="path1504" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<rect - x="2.7" - y="8.1000004" - width="13" - height="24" - id="rect1506" - style="fill:#0072c6" /> -<rect - x="2.7" - y="8.1000004" - width="13" - height="12" - id="rect1508" - style="opacity:0.15;fill:#ffffff" /> -<path - d="m 14.1,19.7 c 0,2.5 -0.5,4.4 -1.4,5.7 -0.9,1.3 -2.2,2 -3.8,2 C 7.3,27.4 6.1,26.8 5.2,25.5 4.4,24.2 4,22.4 4,20 c 0,-2.6 0.4,-4.5 1.3,-5.9 0.9,-1.4 2.2,-2 3.9,-2 3.3,0.1 4.9,2.6 4.9,7.6 z m -2.4,0.1 c 0,-2 -0.2,-3.4 -0.6,-4.3 -0.4,-0.9 -1.1,-1.4 -1.9,-1.4 -1.8,0 -2.7,2 -2.7,5.9 0,1.8 0.2,3.2 0.7,4.1 0.5,0.9 1.1,1.4 2,1.4 0.9,0 1.5,-0.5 1.9,-1.4 0.4,-0.9 0.5,-2.4 0.6,-4.3 z" - id="path1510" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -<rect - x="18.700001" - y="8.1000004" - width="13" - height="24" - id="rect1512" - style="fill:#0072c6" /> -<rect - x="18.700001" - y="8.1000004" - width="13" - height="12" - id="rect1514" - style="opacity:0.15;fill:#ffffff" /> -<path - d="m 30.1,19.7 c 0,2.5 -0.5,4.4 -1.4,5.7 -0.9,1.3 -2.2,2 -3.8,2 -1.6,0 -2.8,-0.6 -3.7,-1.9 C 20.4,24.2 20,22.4 20,20 c 0,-2.6 0.4,-4.5 1.3,-5.9 0.9,-1.4 2.2,-2 3.9,-2 3.3,0.1 4.9,2.6 4.9,7.6 z m -2.4,0.1 c 0,-2 -0.2,-3.4 -0.6,-4.3 -0.4,-0.9 -1.1,-1.4 -1.9,-1.4 -1.8,0 -2.7,2 -2.7,5.9 0,1.8 0.2,3.2 0.7,4.1 0.5,0.9 1.1,1.4 2,1.4 0.9,0 1.5,-0.5 1.9,-1.4 0.4,-0.9 0.5,-2.4 0.6,-4.3 z" - id="path1516" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -<rect - x="34.700001" - y="8.1000004" - width="13" - height="24" - id="rect1518" - style="fill:#0072c6" /> -<rect - x="34.700001" - y="8.1000004" - width="13" - height="12" - id="rect1520" - style="opacity:0.15;fill:#ffffff" /> -<path - d="m 42.5,12.1 v 15 H 40.1 V 15 c -0.8,0.6 -1.8,1 -3.1,1.4 v -2 c 0.9,-0.3 1.7,-0.6 2.4,-1 0.7,-0.4 1.4,-0.8 2,-1.2 h 1.1 z" - id="path1522" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" height="40" width="50"><path d="M44.5 40h-39c-3 0-5.5-2.5-5.5-5.5v-29C0 2.5 2.5 0 5.5 0h39c3 0 5.5 2.5 5.5 5.5v29c0 3-2.5 5.5-5.5 5.5z" fill="#a0a1a2"/><path d="M2.7 8.1h13v24h-13z" fill="#0072c6"/><g fill="#fff"><path d="M2.7 8.1h13v12h-13z" opacity=".15"/><path d="M14.1 19.7c0 2.5-.5 4.4-1.4 5.7s-2.2 2-3.8 2-2.8-.6-3.7-1.9C4.4 24.2 4 22.4 4 20c0-2.6.4-4.5 1.3-5.9s2.2-2 3.9-2c3.3.1 4.9 2.6 4.9 7.6zm-2.4.1c0-2-.2-3.4-.6-4.3s-1.1-1.4-1.9-1.4c-1.8 0-2.7 2-2.7 5.9 0 1.8.2 3.2.7 4.1s1.1 1.4 2 1.4 1.5-.5 1.9-1.4.5-2.4.6-4.3z"/></g><path d="M18.7 8.1h13v24h-13z" fill="#0072c6"/><g fill="#fff"><path d="M18.7 8.1h13v12h-13z" opacity=".15"/><path d="M30.1 19.7c0 2.5-.5 4.4-1.4 5.7s-2.2 2-3.8 2-2.8-.6-3.7-1.9c-.8-1.3-1.2-3.1-1.2-5.5 0-2.6.4-4.5 1.3-5.9s2.2-2 3.9-2c3.3.1 4.9 2.6 4.9 7.6zm-2.4.1c0-2-.2-3.4-.6-4.3s-1.1-1.4-1.9-1.4c-1.8 0-2.7 2-2.7 5.9 0 1.8.2 3.2.7 4.1s1.1 1.4 2 1.4 1.5-.5 1.9-1.4.5-2.4.6-4.3z"/></g><path d="M34.7 8.1h13v24h-13z" fill="#0072c6"/><g fill="#fff"><path d="M34.7 8.1h13v12h-13z" opacity=".15"/><path d="M42.5 12.1v15h-2.4V15c-.8.6-1.8 1-3.1 1.4v-2c.9-.3 1.7-.6 2.4-1l2-1.2h1.1z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Cubes.svg b/src/main/webapp/img/lib/mscae/Cubes.svg index 7d2f173186fb03a884e0301e9aa10cf6280e4260..eef8354e4187f57d39b09e1c9fd963b0f66c0f58 100644 --- a/src/main/webapp/img/lib/mscae/Cubes.svg +++ b/src/main/webapp/img/lib/mscae/Cubes.svg @@ -1,110 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="49.216751" - viewBox="0 0 50 49.216751" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Cubes.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata1626"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs1624" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview1622" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="25" - inkscape:cy="24.217" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 11.923,34.93975 c -0.055,0 -0.107,-0.013 -0.155,-0.043 l -10.173,-5.872 c -0.099,-0.056 -0.158,-0.158 -0.158,-0.267 0,-0.111 0.059,-0.212 0.158,-0.266 l 10.109,-5.834 c 0.093,-0.056 0.211,-0.056 0.306,0 l 10.172,5.874 c 0.099,0.054 0.159,0.156 0.159,0.268 0,0.11 -0.06,0.211 -0.159,0.265 l -10.107,5.832 c -0.048,0.03 -0.099,0.043 -0.152,0.043" - id="path1597" - inkscape:connector-curvature="0" - style="fill:#7fba00" /> -<path - d="m 10.454,49.21675 c -0.052,0 -0.107,-0.015 -0.152,-0.04 L 0.158,43.32075 C 0.059,43.26675 0,43.16275 0,43.05475 v -11.751 c 0,-0.108 0.059,-0.212 0.158,-0.266 0.093,-0.055 0.213,-0.055 0.307,0 l 10.143,5.855 c 0.097,0.055 0.156,0.157 0.156,0.268 v 11.748 c 0,0.111 -0.059,0.212 -0.156,0.268 -0.05,0.025 -0.098,0.04 -0.154,0.04" - id="path1599" - inkscape:connector-curvature="0" - style="fill:#b8d432" /> -<path - d="m 13.326,49.21675 c -0.052,0 -0.105,-0.015 -0.156,-0.04 -0.094,-0.056 -0.151,-0.157 -0.151,-0.268 v -11.674 c 0,-0.109 0.057,-0.211 0.151,-0.268 l 10.142,-5.853 c 0.098,-0.054 0.213,-0.054 0.31,0 0.094,0.056 0.151,0.158 0.151,0.268 v 11.673 c 0,0.108 -0.057,0.212 -0.151,0.266 l -10.142,5.856 c -0.046,0.025 -0.099,0.04 -0.154,0.04" - id="path1601" - inkscape:connector-curvature="0" - style="fill:#b8d432" /> -<path - d="m 38.146,34.94075 c -0.054,0 -0.104,-0.016 -0.152,-0.044 l -10.176,-5.873 c -0.097,-0.055 -0.154,-0.158 -0.154,-0.269 0,-0.108 0.057,-0.21 0.154,-0.264 l 10.11,-5.835 c 0.096,-0.053 0.214,-0.053 0.306,0 l 10.178,5.876 c 0.092,0.054 0.153,0.155 0.153,0.264 0,0.113 -0.061,0.213 -0.153,0.268 l -10.112,5.833 c -0.049,0.028 -0.1,0.044 -0.154,0.044" - id="path1603" - inkscape:connector-curvature="0" - style="fill:#7fba00" /> -<path - d="m 36.683,49.21575 c -0.055,0 -0.109,-0.013 -0.156,-0.041 l -10.144,-5.855 c -0.098,-0.055 -0.156,-0.155 -0.156,-0.267 v -11.749 c 0,-0.11 0.058,-0.211 0.156,-0.269 0.093,-0.053 0.212,-0.053 0.31,0 l 10.142,5.855 c 0.094,0.057 0.151,0.158 0.151,0.268 v 11.75 c 0,0.113 -0.057,0.211 -0.151,0.267 -0.051,0.028 -0.102,0.041 -0.152,0.041" - id="path1605" - inkscape:connector-curvature="0" - style="fill:#b8d432" /> -<path - d="m 39.553,49.21575 c -0.052,0 -0.105,-0.013 -0.156,-0.041 -0.094,-0.056 -0.152,-0.154 -0.152,-0.267 v -11.674 c 0,-0.11 0.058,-0.211 0.152,-0.268 l 10.141,-5.853 c 0.098,-0.054 0.213,-0.054 0.31,0 0.093,0.055 0.152,0.157 0.152,0.266 v 11.674 c 0,0.112 -0.059,0.212 -0.152,0.267 l -10.144,5.855 c -0.043,0.028 -0.098,0.041 -0.151,0.041" - id="path1607" - inkscape:connector-curvature="0" - style="fill:#b8d432" /> -<path - d="m 24.937,12.32475 c -0.052,0 -0.105,-0.016 -0.155,-0.044 l -10.176,-5.873 c -0.093,-0.055 -0.152,-0.158 -0.152,-0.268 0,-0.109 0.059,-0.211 0.152,-0.265 l 10.113,-5.835 c 0.097,-0.053 0.213,-0.053 0.306,0 l 10.178,5.876 c 0.094,0.055 0.152,0.155 0.152,0.265 0,0.112 -0.058,0.212 -0.152,0.267 l -10.111,5.833 c -0.049,0.028 -0.1,0.044 -0.155,0.044" - id="path1609" - inkscape:connector-curvature="0" - style="fill:#7fba00" /> -<path - d="m 23.475,26.60075 c -0.057,0 -0.11,-0.014 -0.155,-0.041 l -10.144,-5.855 c -0.099,-0.056 -0.156,-0.156 -0.156,-0.267 v -11.749 c 0,-0.111 0.057,-0.211 0.156,-0.27 0.094,-0.053 0.208,-0.053 0.31,0 l 10.142,5.856 c 0.091,0.056 0.151,0.158 0.151,0.267 v 11.75 c 0,0.113 -0.06,0.211 -0.151,0.268 -0.051,0.027 -0.103,0.041 -0.153,0.041" - id="path1611" - inkscape:connector-curvature="0" - style="fill:#b8d432" /> -<path - d="m 26.346,26.60075 c -0.056,0 -0.107,-0.014 -0.157,-0.041 -0.093,-0.057 -0.152,-0.155 -0.152,-0.268 v -11.674 c 0,-0.11 0.059,-0.211 0.152,-0.267 l 10.14,-5.854 c 0.098,-0.054 0.212,-0.054 0.307,0 0.097,0.055 0.155,0.157 0.155,0.267 v 11.674 c 0,0.111 -0.058,0.211 -0.155,0.267 l -10.141,5.855 c -0.042,0.027 -0.096,0.041 -0.149,0.041" - id="path1613" - inkscape:connector-curvature="0" - style="fill:#b8d432" /> -<path - d="m 13.326,49.21675 c -0.052,0 -0.105,-0.015 -0.156,-0.04 -0.094,-0.056 -0.151,-0.157 -0.151,-0.268 v -11.674 c 0,-0.109 0.057,-0.211 0.151,-0.268 l 10.142,-5.853 c 0.098,-0.054 0.213,-0.054 0.31,0 0.094,0.056 0.151,0.158 0.151,0.268 v 11.673 c 0,0.108 -0.057,0.212 -0.151,0.266 l -10.142,5.856 c -0.046,0.025 -0.099,0.04 -0.154,0.04" - id="path1615" - inkscape:connector-curvature="0" - style="opacity:0.5;fill:#ffffff" /> -<path - d="m 39.553,49.21575 c -0.052,0 -0.105,-0.013 -0.156,-0.041 -0.094,-0.056 -0.152,-0.154 -0.152,-0.267 v -11.674 c 0,-0.11 0.058,-0.211 0.152,-0.268 l 10.141,-5.853 c 0.098,-0.054 0.213,-0.054 0.31,0 0.093,0.055 0.152,0.157 0.152,0.266 v 11.674 c 0,0.112 -0.059,0.212 -0.152,0.267 l -10.144,5.855 c -0.043,0.028 -0.098,0.041 -0.151,0.041" - id="path1617" - inkscape:connector-curvature="0" - style="opacity:0.5;fill:#ffffff" /> -<path - d="m 26.346,26.60075 c -0.056,0 -0.107,-0.014 -0.157,-0.041 -0.093,-0.057 -0.152,-0.155 -0.152,-0.268 v -11.674 c 0,-0.11 0.059,-0.211 0.152,-0.267 l 10.14,-5.854 c 0.098,-0.054 0.212,-0.054 0.307,0 0.097,0.055 0.155,0.157 0.155,0.267 v 11.674 c 0,0.111 -0.058,0.211 -0.155,0.267 l -10.141,5.855 c -0.042,0.027 -0.096,0.041 -0.149,0.041" - id="path1619" - inkscape:connector-curvature="0" - style="opacity:0.5;fill:#ffffff" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="49.217"><path d="M11.923 34.94c-.055 0-.107-.013-.155-.043L1.595 29.025c-.1-.056-.158-.158-.158-.267a.3.3 0 0 1 .158-.266l10.11-5.834a.3.3 0 0 1 .306 0l10.172 5.874c.1.054.16.156.16.268a.3.3 0 0 1-.159.265l-10.107 5.832a.28.28 0 0 1-.152.043" fill="#7fba00"/><g fill="#b8d432"><path d="M10.454 49.217c-.052 0-.107-.015-.152-.04L.158 43.32c-.1-.054-.158-.158-.158-.266v-11.75c0-.108.06-.212.158-.266.093-.055.213-.055.307 0l10.143 5.855c.097.055.156.157.156.268V48.91c0 .11-.06.212-.156.268-.05.025-.098.04-.154.04"/><use xlink:href="#B"/></g><path d="M38.146 34.94c-.054 0-.104-.016-.152-.044l-10.176-5.873c-.097-.055-.154-.158-.154-.27a.3.3 0 0 1 .154-.264l10.1-5.835c.096-.053.214-.053.306 0l10.178 5.876a.31.31 0 0 1 .153.264c0 .113-.06.213-.153.268L38.3 34.897c-.05.028-.1.044-.154.044" fill="#7fba00"/><g fill="#b8d432"><path d="M36.683 49.216c-.055 0-.11-.013-.156-.04L26.383 43.32c-.098-.055-.156-.155-.156-.267v-11.75c0-.1.058-.21.156-.27.093-.053.212-.053.3 0L36.835 36.9c.094.057.15.158.15.268v11.75c0 .113-.057.21-.15.267-.05.028-.102.04-.152.04"/><use xlink:href="#C"/></g><path d="M24.937 12.325a.32.32 0 0 1-.155-.044L14.606 6.408c-.093-.055-.152-.158-.152-.268s.06-.21.152-.265L24.72.04c.097-.053.213-.053.306 0l10.178 5.876c.094.055.152.155.152.265s-.058.212-.152.267l-10.11 5.833c-.05.028-.1.044-.155.044" fill="#7fba00"/><g fill="#b8d432"><path d="M23.475 26.6a.3.3 0 0 1-.155-.041l-10.144-5.855c-.1-.056-.156-.156-.156-.267V8.69a.31.31 0 0 1 .156-.27c.094-.053.208-.053.3 0l10.142 5.856c.09.056.15.158.15.267v11.75c0 .113-.06.21-.15.268-.05.027-.103.04-.153.04"/><use xlink:href="#D"/></g><g fill="#fff"><use xlink:href="#B" opacity=".5"/><use xlink:href="#C" opacity=".5"/><use xlink:href="#D" opacity=".5"/></g><defs ><path id="B" d="M13.326 49.217c-.052 0-.105-.015-.156-.04a.31.31 0 0 1-.151-.268V37.235c0-.11.057-.21.15-.268l10.142-5.853c.098-.054.213-.054.3 0a.31.31 0 0 1 .151.268v11.673c0 .108-.057.212-.15.266L13.48 49.177c-.046.025-.1.04-.154.04"/><path id="C" d="M39.553 49.216c-.052 0-.105-.013-.156-.04-.094-.056-.152-.154-.152-.267V37.234c0-.1.058-.21.152-.268l10.14-5.853c.098-.054.213-.054.3 0a.31.31 0 0 1 .152.266v11.674a.31.31 0 0 1-.152.267l-10.144 5.855a.28.28 0 0 1-.151.041"/><path id="D" d="M26.346 26.6c-.056 0-.107-.014-.157-.04-.093-.057-.152-.155-.152-.268V14.618c0-.1.06-.21.152-.267l10.14-5.854a.31.31 0 0 1 .307 0c.097.055.155.157.155.267v11.674c0 .11-.058.21-.155.267l-10.14 5.855a.28.28 0 0 1-.149.041"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/CustomDomain.svg b/src/main/webapp/img/lib/mscae/CustomDomain.svg index c06fc93eb34987dba4c5a6e21fb96324e521d722..1bcb06de6a5a3b4d2aa31d701046fe59fb1c7eec 100644 --- a/src/main/webapp/img/lib/mscae/CustomDomain.svg +++ b/src/main/webapp/img/lib/mscae/CustomDomain.svg @@ -1,97 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="42.633999" - viewBox="0 0 50 42.633999" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="CustomDomain.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata1814"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs1812" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview1810" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="4.72" - inkscape:cx="25" - inkscape:cy="21.481" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 0,40.627 c 0,1.108 0.898,2.007 2.007,2.007 H 47.993 C 49.102,42.634 50,41.735 50,40.627 V 9.298 H 0 Z" - id="path1791" - inkscape:connector-curvature="0" - style="fill:#0072c6" /> -<path - d="M 47.993,0 H 2.007 C 0.898,0 0,0.898 0,2.007 V 12.634 H 50 V 2.007 C 50,0.898 49.101,0 47.993,0" - id="path1793" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<path - d="M 2.014,0 C 0.906,0 0.007,0.898 0.007,2.007 v 7.291 3.336 27.993 c 0,1.108 0.899,2.007 2.007,2.007 H 4.202 L 43.62,0 Z" - id="path1795" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#ffffff" /> -<rect - x="12.857" - y="4.7790003" - width="33.671001" - height="3.9419999" - id="rect1797" - style="fill:#ffffff" /> -<path - d="m 11.31,6.683 c 0,2.693 -2.184,4.878 -4.878,4.878 -2.694,0 -4.878,-2.185 -4.878,-4.878 0,-2.694 2.184,-4.879 4.878,-4.879 2.693,0 4.878,2.185 4.878,4.879" - id="path1799" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<polygon - points="6.928,13.414 3.969,10.597 6.917,7.779 8.115,7.779 5.916,10.101 11.309,10.101 11.309,11.079 5.916,11.079 8.129,13.414 " - id="polygon1801" - style="fill:#ffffff" - transform="translate(0,-3.847)" /> -<path - d="m 17.286,22.626 -2.644,8.816 H 13.179 L 11.362,25.131 C 11.293,24.89 11.247,24.617 11.224,24.313 H 11.19 c -0.017,0.207 -0.077,0.474 -0.181,0.801 L 9.037,31.442 H 7.625 L 4.956,22.626 h 1.481 l 1.825,6.629 c 0.058,0.201 0.098,0.465 0.121,0.792 h 0.069 c 0.017,-0.252 0.069,-0.522 0.155,-0.809 l 2.032,-6.612 h 1.292 l 1.825,6.646 c 0.057,0.213 0.101,0.477 0.129,0.792 h 0.069 c 0.011,-0.224 0.06,-0.488 0.146,-0.792 l 1.791,-6.646 z" - id="path1803" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -<path - d="m 30.91,22.626 -2.644,8.816 H 26.803 L 24.986,25.131 C 24.917,24.89 24.871,24.617 24.848,24.313 h -0.035 c -0.017,0.207 -0.077,0.474 -0.181,0.801 l -1.972,6.328 h -1.41 l -2.669,-8.816 h 1.481 l 1.825,6.629 c 0.058,0.201 0.098,0.465 0.121,0.792 h 0.069 c 0.017,-0.252 0.069,-0.522 0.155,-0.809 l 2.032,-6.612 h 1.292 l 1.825,6.646 c 0.057,0.213 0.101,0.477 0.129,0.792 h 0.069 c 0.011,-0.224 0.06,-0.488 0.146,-0.792 l 1.791,-6.646 z" - id="path1805" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -<path - d="m 44.535,22.626 -2.644,8.816 H 40.428 L 38.611,25.131 C 38.542,24.89 38.496,24.617 38.473,24.313 h -0.035 c -0.017,0.207 -0.077,0.474 -0.181,0.801 l -1.972,6.328 h -1.412 l -2.669,-8.816 h 1.481 l 1.825,6.629 c 0.058,0.201 0.098,0.465 0.121,0.792 H 35.7 c 0.017,-0.252 0.069,-0.522 0.155,-0.809 l 2.032,-6.612 h 1.292 l 1.825,6.646 c 0.057,0.213 0.101,0.477 0.129,0.792 h 0.069 c 0.011,-0.224 0.06,-0.488 0.146,-0.792 l 1.791,-6.646 z" - id="path1807" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="42.634"><path d="M0 40.627c0 1.108.898 2.007 2.007 2.007h45.986c1.11 0 2.007-.9 2.007-2.007V9.298H0z" fill="#0072c6"/><path d="M47.993 0H2.007C.898 0 0 .898 0 2.007v10.627h50V2.007C50 .898 49.1 0 47.993 0" fill="#a0a1a2"/><g fill="#fff"><path d="M2.014 0C.906 0 .007.898.007 2.007v38.62a2.01 2.01 0 0 0 2.007 2.007h2.188L43.62 0z" opacity=".2"/><path d="M12.857 4.78h33.67V8.72h-33.67z"/></g><path d="M11.3 6.683a4.88 4.88 0 0 1-4.878 4.878 4.88 4.88 0 0 1-4.878-4.878 4.88 4.88 0 0 1 4.878-4.879 4.88 4.88 0 0 1 4.878 4.879" fill="#59b4d9"/><path d="M6.928 9.567L3.97 6.75l2.948-2.818h1.198l-2.2 2.322h5.393v.978H5.916L8.13 9.567zm10.358 13.06l-2.644 8.816H13.18l-1.817-6.3a4.11 4.11 0 0 1-.138-.818H11.2a3.8 3.8 0 0 1-.181.801l-1.972 6.328H7.625l-2.67-8.816h1.48l1.825 6.63a3.95 3.95 0 0 1 .121.792h.07a3.7 3.7 0 0 1 .155-.809l2.032-6.612h1.292l1.825 6.646c.057.213.1.477.13.792h.07c.01-.224.06-.488.146-.792l1.8-6.646zm13.614 0l-2.644 8.816h-1.463l-1.817-6.3a4.11 4.11 0 0 1-.138-.818h-.035a3.8 3.8 0 0 1-.181.801l-1.972 6.328h-1.4l-2.67-8.816h1.48l1.825 6.63a3.95 3.95 0 0 1 .121.792h.07a3.7 3.7 0 0 1 .155-.809l2.032-6.612h1.292l1.825 6.646c.057.213.1.477.13.792h.07c.01-.224.06-.488.146-.792l1.8-6.646zm13.635 0l-2.644 8.816h-1.463l-1.817-6.3a4.11 4.11 0 0 1-.138-.818h-.035a3.8 3.8 0 0 1-.181.801l-1.972 6.328h-1.412l-2.67-8.816h1.48l1.825 6.63a3.95 3.95 0 0 1 .121.792h.07a3.7 3.7 0 0 1 .155-.809l2.032-6.612h1.292l1.825 6.646c.057.213.1.477.13.792h.07c.01-.224.06-.488.146-.792l1.8-6.646z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/CustomerInsights.svg b/src/main/webapp/img/lib/mscae/CustomerInsights.svg index 7390a7102cf44ada64480b45104a2610d8941206..2c3cf586220b0846f1342e3a42a7f1802cad7fba 100644 --- a/src/main/webapp/img/lib/mscae/CustomerInsights.svg +++ b/src/main/webapp/img/lib/mscae/CustomerInsights.svg @@ -1,27 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#59B4D9" d="M44,14.2c0-0.4,0.1-0.9,0.1-1.3c0-7.1-5.8-12.8-13-12.8C26.9,0,23,2,20.6,5.3c-1.5-1-3.3-1.5-5.2-1.5 - c-5.4,0-9.8,4.4-9.8,9.7v0.8C2,16.2,0,19.3,0,23.1c0,6,4.9,10.7,11.2,10.7h27.6c6.3,0,11.2-4.7,11.2-10.7C50,19.1,47.8,15.9,44,14.2 - z"/> -<path opacity="0.2" fill="#FFFFFF" enable-background="new " d="M7,28c0-4.1,2.1-7.3,6-9.3v-0.8c0-5.7,4.7-10.3,10.4-10.3 - c2,0,3.9,0.5,5.5,1.5c2.5-3.5,6.7-5.7,11.2-5.7l0,0c-2.4-2.1-5.5-3.4-9-3.4C26.9,0,23,2,20.6,5.3c-1.5-1-3.3-1.5-5.2-1.5 - c-5.4,0-9.8,4.4-9.8,9.7v0.8C2,16.2,0,19.3,0,23.1c0,5.1,3.5,9.3,8.4,10.4C7.5,31.9,7,30,7,28z"/> -<path fill="#FCD116" d="M38.07,21.93L38.07,21.93v-0.239c0-6.123-5.248-11.212-11.689-11.291c-0.159-0.239-3.817,0.08-3.817,0.08 - l0,0c-5.805,0.716-10.337,5.566-10.337,11.212c0,0.159-0.636,4.612,3.896,8.349c2.067,1.829,4.214,6.759,4.532,8.19l0.239,0.477 - h8.429l0.239-0.477c0.318-1.431,2.545-6.361,4.532-8.111C38.627,26.304,38.07,22.089,38.07,21.93z"/> -<path opacity="0.2" fill="#FF8C00" d="M38.07,21.93L38.07,21.93v-0.239c0-6.123-5.248-11.212-11.689-11.291 - c-0.159-0.239-3.817,0.08-3.817,0.08l0,0c-5.805,0.716-10.337,5.566-10.337,11.212c0,0.159-0.636,4.612,3.896,8.349 - c2.067,1.829,4.214,6.759,4.532,8.19l0.239,0.477h8.429l0.239-0.477c0.318-1.431,2.545-6.361,4.532-8.111 - C38.627,26.304,38.07,22.089,38.07,21.93z"/> -<rect x="21.054" y="41.571" fill="#7A7A7A" width="8.429" height="2.704"/> -<polygon fill="#7A7A7A" points="23.678,50 26.779,50 29.403,47.217 21.054,47.217 "/> -<path fill="#FFFFFF" d="M28.631,18.082c0,1.905-1.54,3.486-3.486,3.486s-3.486-1.54-3.486-3.486c0-1.905,1.54-3.486,3.486-3.486 - S28.631,16.177,28.631,18.082"/> -<polygon fill="#FFFFFF" points="27.698,22.866 25.144,26.433 22.59,22.866 19.955,22.866 19.955,29.662 30.333,29.662 - 30.333,22.866 "/> -<g opacity="0.15" enable-background="new "> - <path fill="#FFFFFF" d="M26.381,10.4c-0.159-0.239-3.817,0.08-3.817,0.08c-5.805,0.716-10.337,5.566-10.337,11.212 - c0,0.159-0.557,4.055,3.101,7.634L32.504,12.15C30.675,11.037,28.608,10.4,26.381,10.4z"/> -</g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="50"><path fill="#59b4d9" d="M44 14.2c0-.4.1-.9.1-1.3 0-7.1-5.8-12.8-13-12.8a12.62 12.62 0 0 0-10.5 5.2c-1.5-1-3.3-1.5-5.2-1.5-5.4 0-9.8 4.4-9.8 9.7v.8C2 16.2 0 19.3 0 23.1c0 6 4.9 10.7 11.2 10.7h27.6c6.3 0 11.2-4.7 11.2-10.7 0-4-2.2-7.2-6-8.9z"/><path opacity=".2" fill="#fff" d="M7 28c0-4.1 2.1-7.3 6-9.3v-.8c0-5.7 4.7-10.3 10.4-10.3 2 0 3.9.5 5.5 1.5 2.5-3.5 6.7-5.7 11.2-5.7-2.4-2.1-5.5-3.4-9-3.4-4.2 0-8.1 2-10.5 5.3-1.5-1-3.3-1.5-5.2-1.5-5.4 0-9.8 4.4-9.8 9.7v.8C2 16.2 0 19.3 0 23.1c0 5.1 3.5 9.3 8.4 10.4C7.5 31.9 7 30 7 28z"/><use xlink:href="#B" fill="#fcd116"/><use xlink:href="#B" opacity=".2" fill="#ff8c00"/><path d="M21.054 41.57h8.43v2.704h-8.43zM23.678 50h3.1l2.624-2.783h-8.35z" fill="#7a7a7a"/><g fill="#fff"><path d="M28.63 18.082c0 1.905-1.54 3.486-3.486 3.486a3.46 3.46 0 0 1-3.486-3.486c0-1.905 1.54-3.486 3.486-3.486s3.486 1.58 3.486 3.486m-.932 4.784l-2.554 3.567-2.554-3.567h-2.635v6.796h10.378v-6.796z"/><path d="M26.38 10.4c-.16-.24-3.817.08-3.817.08-5.805.716-10.337 5.566-10.337 11.212 0 .16-.557 4.055 3.1 7.634L32.504 12.15c-1.83-1.113-3.896-1.75-6.123-1.75z" opacity=".15"/></g><defs ><path id="B" d="M38.07 21.93v-.24c0-6.123-5.248-11.212-11.69-11.29-.16-.24-3.817.08-3.817.08-5.805.716-10.337 5.566-10.337 11.212 0 .16-.636 4.612 3.896 8.35 2.067 1.83 4.214 6.76 4.532 8.2l.24.477h8.43l.24-.477c.318-1.43 2.545-6.36 4.532-8.11 4.533-3.816 3.976-8.03 3.976-8.2z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Customer_Lockbox.svg b/src/main/webapp/img/lib/mscae/Customer_Lockbox.svg new file mode 100644 index 0000000000000000000000000000000000000000..ebad195b74792c4cc4592f8c1c809300c167ba2b --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Customer_Lockbox.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="47" height="49.9"><path d="M24.9 8.9a8.9 8.9 0 0 1-13.35 7.708A8.9 8.9 0 0 1 16 0a8.9 8.9 0 0 1 8.9 8.9m-2.35 11L16 29.227 9.45 19.9H.001v23h32v-23z" fill="#804998"/><path d="M7.1 8.9c0 4.842 3.867 8.773 8.68 8.9L18.017.24C17.356.083 16.68.002 16 0a8.9 8.9 0 0 0-8.899 8.9m2.35 11H0v23h12.547l1.978-15.772z" opacity=".2" fill="#fff"/><path d="M43.75 49.9H12.25A3.25 3.25 0 0 1 9 46.651V34.15a3.25 3.25 0 0 1 3.249-3.249H43.75A3.25 3.25 0 0 1 47 34.149V46.65a3.25 3.25 0 0 1-3.249 3.249z" fill="#a0a1a2"/><path d="M11 46.798V34.002a1.1 1.1 0 0 1 1.102-1.102h31.796A1.1 1.1 0 0 1 45 34.002v12.796a1.1 1.1 0 0 1-1.102 1.102H12.102A1.1 1.1 0 0 1 11 46.798z" fill="#1e1e1e"/><g fill="#fff"><path d="M12 32.9a1 1 0 0 0-1 1v13a1 1 0 0 0 1 1h16v-15z" opacity=".2"/><path d="M25.475 36.176c-.01-.1-.06-.172-.132-.227l-1.264-.975c-.15-.118-.37-.092-.487.06l-5.55 7.12-3.168-3.397c-.062-.068-.148-.108-.24-.112s-.18.03-.248.092l-1.17 1.08c-.104.095-.14.245-.1.377-.042.12-.015.252.07.346l.405.44 4.592 4.923 7.203-9.235c.06-.072.088-.165.077-.258-.004-.025-.015-.046-.023-.068a.37.37 0 0 0 .023-.163zM42 36.733L40.167 34.9 36.5 38.567 32.833 34.9 31 36.733l3.667 3.667L31 44.067l1.833 1.833 3.667-3.667 3.667 3.667L42 44.067 38.333 40.4z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/DC_OS.svg b/src/main/webapp/img/lib/mscae/DC_OS.svg index 0a00d5a8b0b191820629c93805e9f022c8e9a8f0..9a0e6dca6eeb7934040d44f4a42eaa6a0b9c8e8b 100644 --- a/src/main/webapp/img/lib/mscae/DC_OS.svg +++ b/src/main/webapp/img/lib/mscae/DC_OS.svg @@ -1,270 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 20.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="40.081249" - height="50.001499" - viewBox="0 0 40.081249 50.001499" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Logo-DC-OS.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata325"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs323" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview321" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="20.0415" - inkscape:cy="25" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<linearGradient - id="path-2_2_" - gradientUnits="userSpaceOnUse" - x1="1.0375" - y1="51.233601" - x2="1.0375" - y2="51.170898" - gradientTransform="matrix(640,0,0,-640,-639.0002,32799.398)"> - <stop - offset="0" - style="stop-color:#7540B7" - id="stop260" /> - <stop - offset="1" - style="stop-color:#9351E5" - id="stop262" /> -</linearGradient> -<path - id="path-2_1_" - d="m 19.7585,49.8845 -19.64,-19.64 c -0.157,-0.157 -0.157,-0.41 0,-0.567 l 19.639,-19.639 c 0.157,-0.157 0.41,-0.157 0.567,0 l 19.639,19.639 c 0.157,0.157 0.157,0.41 0,0.567 l -19.639,19.64 c -0.156,0.156 -0.41,0.156 -0.566,0" - inkscape:connector-curvature="0" - style="fill:url(#path-2_2_)" /> -<linearGradient - id="Fill-11_2_" - gradientUnits="userSpaceOnUse" - x1="-0.072300002" - y1="53.336601" - x2="-0.072300002" - y2="53.3992" - gradientTransform="matrix(188.2576,0,0,-188.2592,38.6136,10082.997)"> - <stop - offset="0" - style="stop-color:#E9DCF9" - id="stop266" /> - <stop - offset="1" - style="stop-color:#FFFFFF" - id="stop268" /> -</linearGradient> -<path - id="Fill-11_1_" - d="m 20.3275,30.2285 c -0.158,-0.158 -0.414,-0.158 -0.572,0 l -5.491,5.491 c -0.158,0.158 -0.158,0.414 0,0.572 l 5.491,5.491 c 0.158,0.158 0.414,0.158 0.572,0 l 5.491,-5.491 c 0.158,-0.158 0.158,-0.414 0,-0.572 z" - inkscape:connector-curvature="0" - style="fill:url(#Fill-11_2_)" /> -<linearGradient - id="Path_1_" - gradientUnits="userSpaceOnUse" - x1="-0.63459998" - y1="52.7743" - x2="-0.63459998" - y2="52.836899" - gradientTransform="matrix(188.2592,0,0,-188.2568,151.5472,9969.9434)"> - <stop - offset="0" - style="stop-color:#DECBF7" - id="stop272" /> - <stop - offset="1" - style="stop-color:#F4EDFC" - id="stop274" /> -</linearGradient> -<path - id="Path_8_" - d="m 27.3995,23.1565 c -0.158,-0.158 -0.414,-0.158 -0.572,0 l -5.491,5.491 c -0.158,0.158 -0.158,0.414 0,0.572 l 5.491,5.491 c 0.158,0.158 0.414,0.158 0.572,0 l 5.491,-5.491 c 0.158,-0.158 0.158,-0.414 0,-0.572 z" - inkscape:connector-curvature="0" - style="fill:url(#Path_1_)" /> -<linearGradient - id="Path_2_" - gradientUnits="userSpaceOnUse" - x1="0.49000001" - y1="52.7743" - x2="0.49000001" - y2="52.836899" - gradientTransform="matrix(188.2592,0,0,-188.2568,-74.3248,9969.9434)"> - <stop - offset="0" - style="stop-color:#DECBF7" - id="stop278" /> - <stop - offset="1" - style="stop-color:#F4EDFC" - id="stop280" /> -</linearGradient> -<path - id="Path_9_" - d="m 18.7455,28.6475 -5.491,-5.491 c -0.158,-0.158 -0.414,-0.158 -0.572,0 l -5.491,5.491 c -0.158,0.158 -0.158,0.414 0,0.572 l 5.491,5.491 c 0.158,0.158 0.414,0.158 0.572,0 l 5.491,-5.491 c 0.158,-0.159 0.158,-0.415 0,-0.572 z" - inkscape:connector-curvature="0" - style="fill:url(#Path_2_)" /> -<linearGradient - id="Path_3_" - gradientUnits="userSpaceOnUse" - x1="-1.197" - y1="52.274601" - x2="-1.197" - y2="52.212002" - gradientTransform="matrix(188.2568,0,0,-188.2568,264.4864,9857.0068)"> - <stop - offset="0" - style="stop-color:#D3B9F4" - id="stop284" /> - <stop - offset="1" - style="stop-color:#BE96EF" - id="stop286" /> -</linearGradient> -<path - id="Path_10_" - d="m 39.9635,21.5745 -5.491,-5.491 c -0.158,-0.158 -0.414,-0.158 -0.572,0 l -5.491,5.491 c -0.158,0.158 -0.158,0.414 0,0.572 l 5.491,5.491 c 0.158,0.158 0.414,0.158 0.572,0 l 5.491,-5.491 c 0.157,-0.158 0.157,-0.414 0,-0.572 z" - inkscape:connector-curvature="0" - style="fill:url(#Path_3_)" /> -<linearGradient - id="Path_4_" - gradientUnits="userSpaceOnUse" - x1="-0.072300002" - y1="52.274601" - x2="-0.072300002" - y2="52.212002" - gradientTransform="matrix(188.2576,0,0,-188.2568,38.6136,9857.0068)"> - <stop - offset="0" - style="stop-color:#D3B9F4" - id="stop290" /> - <stop - offset="1" - style="stop-color:#BE96EF" - id="stop292" /> -</linearGradient> -<path - id="Path_11_" - d="m 19.7555,16.0835 -5.491,5.491 c -0.158,0.158 -0.158,0.414 0,0.572 l 5.491,5.491 c 0.158,0.158 0.414,0.158 0.572,0 l 5.491,-5.491 c 0.158,-0.158 0.158,-0.414 0,-0.572 l -5.491,-5.491 c -0.158,-0.158 -0.414,-0.158 -0.572,0 z" - inkscape:connector-curvature="0" - style="fill:url(#Path_4_)" /> -<linearGradient - id="Path_5_" - gradientUnits="userSpaceOnUse" - x1="1.0523" - y1="52.274601" - x2="1.0523" - y2="52.212002" - gradientTransform="matrix(188.2568,0,0,-188.2568,-187.2568,9857.0068)"> - <stop - offset="0" - style="stop-color:#D3B9F4" - id="stop296" /> - <stop - offset="1" - style="stop-color:#BE96EF" - id="stop298" /> -</linearGradient> -<path - id="Path_12_" - d="m 11.6725,22.1465 -5.491,5.491 c -0.158,0.158 -0.414,0.158 -0.572,0 l -5.491,-5.491 c -0.158,-0.158 -0.158,-0.414 0,-0.572 l 5.491,-5.491 c 0.158,-0.158 0.414,-0.158 0.572,0 l 5.491,5.491 c 0.158,0.158 0.158,0.414 0,0.572 z" - inkscape:connector-curvature="0" - style="fill:url(#Path_5_)" /> -<linearGradient - id="Path_6_" - gradientUnits="userSpaceOnUse" - x1="-0.63459998" - y1="51.648102" - x2="-0.63459998" - y2="51.585499" - gradientTransform="matrix(188.2592,0,0,-188.2592,151.5472,9731.3135)"> - <stop - offset="0" - style="stop-color:#BE96EF" - id="stop302" /> - <stop - offset="1" - style="stop-color:#A873EA" - id="stop304" /> -</linearGradient> -<path - id="Path_13_" - d="m 21.3375,14.2665 5.491,5.491 c 0.158,0.158 0.414,0.158 0.572,0 l 5.491,-5.491 c 0.158,-0.158 0.158,-0.414 0,-0.572 l -5.491,-5.491 c -0.158,-0.158 -0.414,-0.158 -0.572,0 l -5.491,5.491 c -0.158,0.159 -0.158,0.414 0,0.572 z" - inkscape:connector-curvature="0" - style="fill:url(#Path_6_)" /> -<linearGradient - id="Path_7_" - gradientUnits="userSpaceOnUse" - x1="0.49000001" - y1="51.648102" - x2="0.49000001" - y2="51.585499" - gradientTransform="matrix(188.2592,0,0,-188.2592,-74.3248,9731.3135)"> - <stop - offset="0" - style="stop-color:#BE96EF" - id="stop308" /> - <stop - offset="1" - style="stop-color:#A873EA" - id="stop310" /> -</linearGradient> -<path - id="Path_14_" - d="m 12.6835,19.7575 c 0.158,0.158 0.414,0.158 0.572,0 l 5.491,-5.491 c 0.158,-0.158 0.158,-0.414 0,-0.572 l -5.491,-5.491 c -0.158,-0.158 -0.414,-0.158 -0.572,0 l -5.491,5.491 c -0.158,0.158 -0.158,0.414 0,0.572 z" - inkscape:connector-curvature="0" - style="fill:url(#Path_7_)" /> -<linearGradient - id="Path_16_" - gradientUnits="userSpaceOnUse" - x1="-0.072300002" - y1="51.005299" - x2="-0.072300002" - y2="50.942699" - gradientTransform="matrix(188.2576,0,0,-188.2568,38.6136,9602.0957)"> - <stop - offset="0" - style="stop-color:#A873EA" - id="stop314" /> - <stop - offset="1" - style="stop-color:#9351E5" - id="stop316" /> -</linearGradient> -<path - id="Path_15_" - d="m 19.7555,11.6725 c 0.158,0.158 0.414,0.158 0.572,0 l 5.491,-5.491 c 0.158,-0.158 0.158,-0.414 0,-0.572 l -5.491,-5.491 c -0.158,-0.158 -0.414,-0.158 -0.572,0 l -5.491,5.491 c -0.158,0.158 -0.158,0.414 0,0.572 z" - inkscape:connector-curvature="0" - style="fill:url(#Path_16_)" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="40.081" height="50.001"><linearGradient id="A" gradientUnits="userSpaceOnUse" x1="25" y1="9.893" x2="25" y2="50.023"><stop offset="0" stop-color="#7540b7"/><stop offset="1" stop-color="#9351e5"/></linearGradient><path d="M19.76 49.885L.12 30.245a.4.4 0 0 1 0-.567l19.64-19.64a.4.4 0 0 1 .567 0l19.64 19.64a.4.4 0 0 1 0 .567l-19.64 19.64a.4.4 0 0 1-.566 0" fill="url(#A)"/><linearGradient id="B" gradientUnits="userSpaceOnUse" x1="25.003" y1="41.891" x2="25.003" y2="30.106"><stop offset="0" stop-color="#e9dcf9"/><stop offset="1" stop-color="#fff"/></linearGradient><use xlink:href="#L" fill="url(#B)"/><linearGradient id="C" gradientUnits="userSpaceOnUse" x1="25.006" y1="41.896" x2="25.006" y2="30.111"><stop offset="0" stop-color="#decbf7"/><stop offset="1" stop-color="#f4edfc"/></linearGradient><use xlink:href="#L" x="7.072" y="-7.073" fill="url(#C)"/><linearGradient id="D" gradientUnits="userSpaceOnUse" x1="17.922" y1="34.823" x2="17.922" y2="23.038"><stop offset="0" stop-color="#decbf7"/><stop offset="1" stop-color="#f4edfc"/></linearGradient><path d="M18.746 28.648l-5.49-5.49c-.158-.158-.414-.158-.572 0l-5.49 5.49c-.158.158-.158.414 0 .572l5.49 5.49c.158.158.414.158.572 0l5.49-5.49c.158-.16.158-.415 0-.572z" fill="url(#D)"/><linearGradient id="E" gradientUnits="userSpaceOnUse" x1="39.143" y1="15.958" x2="39.143" y2="27.742"><stop offset="0" stop-color="#d3b9f4"/><stop offset="1" stop-color="#be96ef"/></linearGradient><path d="M39.964 21.575l-5.49-5.49c-.158-.158-.414-.158-.572 0l-5.49 5.49c-.158.158-.158.414 0 .572l5.49 5.49c.158.158.414.158.572 0l5.49-5.49c.157-.158.157-.414 0-.572z" fill="url(#E)"/><linearGradient id="F" gradientUnits="userSpaceOnUse" x1="25.003" y1="15.958" x2="25.003" y2="27.742"><stop offset="0" stop-color="#d3b9f4"/><stop offset="1" stop-color="#be96ef"/></linearGradient><path d="M19.756 16.084l-5.49 5.49c-.158.158-.158.414 0 .572l5.49 5.49c.158.158.414.158.572 0l5.49-5.49c.158-.158.158-.414 0-.572l-5.49-5.49c-.158-.158-.414-.158-.572 0z" fill="url(#F)"/><linearGradient id="G" gradientUnits="userSpaceOnUse" x1="10.846" y1="15.958" x2="10.846" y2="27.742"><stop offset="0" stop-color="#d3b9f4"/><stop offset="1" stop-color="#be96ef"/></linearGradient><path d="M11.673 22.147l-5.49 5.49c-.158.158-.414.158-.572 0l-5.49-5.49c-.158-.158-.158-.414 0-.572l5.49-5.49c.158-.158.414-.158.572 0l5.49 5.49c.158.158.158.414 0 .572z" fill="url(#G)"/><linearGradient id="H" gradientUnits="userSpaceOnUse" x1="32.078" y1="8.083" x2="32.078" y2="19.869"><stop offset="0" stop-color="#be96ef"/><stop offset="1" stop-color="#a873ea"/></linearGradient><path d="M21.338 14.267l5.49 5.49c.158.158.414.158.572 0l5.49-5.49c.158-.158.158-.414 0-.572l-5.49-5.49c-.158-.158-.414-.158-.572 0l-5.49 5.49c-.158.16-.158.414 0 .572z" fill="url(#H)"/><linearGradient id="I" gradientUnits="userSpaceOnUse" x1="17.922" y1="8.083" x2="17.922" y2="19.869"><stop offset="0" stop-color="#be96ef"/><stop offset="1" stop-color="#a873ea"/></linearGradient><path d="M12.684 19.758c.158.158.414.158.572 0l5.49-5.49c.158-.158.158-.414 0-.572l-5.49-5.49c-.158-.158-.414-.158-.572 0l-5.49 5.49c-.158.158-.158.414 0 .572z" fill="url(#I)"/><linearGradient id="J" gradientUnits="userSpaceOnUse" x1="25.003" y1=".001" x2="25.003" y2="11.786"><stop offset="0" stop-color="#a873ea"/><stop offset="1" stop-color="#9351e5"/></linearGradient><path d="M19.756 11.673c.158.158.414.158.572 0l5.49-5.49c.158-.158.158-.414 0-.572L20.328.12c-.158-.158-.414-.158-.572 0l-5.49 5.49c-.158.158-.158.414 0 .572z" fill="url(#J)"/><defs ><path id="L" d="M20.328 30.23c-.158-.158-.414-.158-.572 0l-5.49 5.49c-.158.158-.158.414 0 .572l5.49 5.49c.158.158.414.158.572 0l5.49-5.49c.158-.158.158-.414 0-.572z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/DDOS_Protection_Plans.svg b/src/main/webapp/img/lib/mscae/DDOS_Protection_Plans.svg new file mode 100644 index 0000000000000000000000000000000000000000..cf5c9e3e773d853eac7077b967644eb3ae182619 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/DDOS_Protection_Plans.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="154" height="210.07"><path d="M131 25.05C84.74 19.9 77 0 77 0S66.58 26.23 0 26.23v107.6c0 13 7.23 25.2 17.24 35.85 22.7 24.14 59.76 40.4 59.76 40.4s77-33.72 77-76.24V26.23a208.8 208.8 0 0 1-23-1.18z" fill="#7fba00"/><path d="M96.06 69.5l35-44.46C84.74 19.9 77 0 77 0S66.58 26.23 0 26.23v107.6c0 13 7.23 25.2 17.24 35.85l25.84-32.86z" opacity=".4" fill="#b8d432"/><path d="M108.95 155.97a5.61 5.61 0 0 1-5.66 5.66h-55a5.61 5.61 0 0 1-5.66-5.66V54.2a5.61 5.61 0 0 1 5.66-5.66h55a5.61 5.61 0 0 1 5.66 5.66z" fill="#3e3e3e"/><path d="M52.16 109.6a7.14 7.14 0 0 1 7.23-7.23h33a7.14 7.14 0 0 1 7.23 7.23 7.14 7.14 0 0 1-7.23 7.23h-33a7.29 7.29 0 0 1-7.25-7.23z" fill="#1e1e1e"/><circle cx="59.86" cy="109.6" r="4.76" fill="#b8d432"/><path d="M52.16 88.1a7.14 7.14 0 0 1 7.23-7.19h33a7.14 7.14 0 0 1 7.23 7.23 7.14 7.14 0 0 1-7.23 7.23h-33a7.26 7.26 0 0 1-7.25-7.23z" fill="#1e1e1e"/><circle cx="59.86" cy="88.1" r="4.76" fill="#b8d432"/><path d="M52.16 66.84a7.14 7.14 0 0 1 7.23-7.23h33a7.14 7.14 0 0 1 7.23 7.23 7.14 7.14 0 0 1-7.23 7.23h-33a7.42 7.42 0 0 1-7.25-7.23z" fill="#1e1e1e"/><circle cx="59.86" cy="66.84" r="4.76" fill="#b8d432"/><path d="M43.1 136.82l65.7-83.6a5.59 5.59 0 0 0-5.57-4.69h-54.9a5.61 5.61 0 0 0-5.66 5.66v83.2z" opacity=".1" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/DNS.svg b/src/main/webapp/img/lib/mscae/DNS.svg index a2665564e818aaf0785fbcc03a3b6c08007375ca..df04aa0fb4f9914f2e8e842a6d5045483d94a380 100644 --- a/src/main/webapp/img/lib/mscae/DNS.svg +++ b/src/main/webapp/img/lib/mscae/DNS.svg @@ -1,82 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="-374 616 50 50" enable-background="new -374 616 50 50" xml:space="preserve"> -<circle fill="#0072C6" cx="-349" cy="641" r="25"/> -<path opacity="0.2" fill="#FFFFFF" d="M-366.678,658.678c-9.763-9.763-9.763-25.592,0-35.355c9.763-9.763,25.592-9.763,35.355,0 - L-366.678,658.678z"/> -<path opacity="0.8" fill="#FFFFFF" d="M-326,640.996c0-5.152-1.748-10.12-4.968-14.168l0,0l-0.184-0.184 - c-0.092-0.092-0.092-0.184-0.184-0.276l-1.472-1.564l0,0c-4.324-4.416-10.028-6.808-16.192-6.808c0,0,0,0-0.092,0l0,0h-0.092 - c-6.072,0.092-11.684,2.392-16.008,6.716l0,0l-1.564,1.656c-0.092,0.092-0.092,0.184-0.184,0.276l-0.184,0.092l0,0 - c-3.128,4.048-4.876,9.108-4.876,14.26c0,5.152,1.748,10.12,4.968,14.168l0,0l0.184,0.184c0.092,0.092,0.092,0.184,0.184,0.276 - l1.472,1.564l0,0c4.324,4.324,9.936,6.716,16.008,6.716h0.092l0,0c0,0,0,0,0.092,0c6.072,0,11.868-2.392,16.192-6.716l0,0 - l1.472-1.656c0.092-0.092,0.092-0.184,0.184-0.276l0.184-0.184l0,0C-327.748,651.208-326,646.148-326,640.996z M-335.292,626 - c-0.092,0-0.184,0.092-0.276,0.092c-0.184,0.092-0.368,0.184-0.46,0.184c-0.368,0.184-0.828,0.276-1.288,0.46 - c-0.092,0-0.184,0.092-0.276,0.092c-0.552,0.184-1.012,0.276-1.564,0.46l0,0c-0.092,0-0.276,0.092-0.368,0.092 - c-0.828-2.208-1.84-4.14-3.036-5.612C-339.892,622.596-337.408,624.068-335.292,626z M-349.184,620.664h0.092 - c2.484,0,5.06,2.668,6.9,7.268c-2.116,0.368-4.416,0.552-6.808,0.552s-4.784-0.184-6.992-0.552 - C-354.244,623.424-351.668,620.756-349.184,620.664z M-355.716,621.86c-1.104,1.472-2.116,3.312-2.944,5.52 - c-0.092,0-0.092,0-0.184,0l0,0c-0.552-0.184-1.104-0.276-1.564-0.46c-0.092,0-0.184-0.092-0.276-0.092 - c-0.368-0.184-0.828-0.368-1.196-0.552c-0.184-0.092-0.276-0.092-0.46-0.184c-0.092-0.092-0.184-0.092-0.368-0.184 - C-360.592,624.16-358.292,622.688-355.716,621.86z M-362.708,655.992c0.092,0,0.184-0.092,0.276-0.092 - c0.184-0.092,0.276-0.092,0.46-0.184c0.368-0.184,0.828-0.276,1.288-0.46c0.092,0,0.184-0.092,0.276-0.092 - c0.552-0.184,1.012-0.276,1.564-0.46l0,0c0.092,0,0.092,0,0.184,0c0.828,2.116,1.84,4.048,2.944,5.52 - C-358.292,659.304-360.684,657.832-362.708,655.992z M-349.092,661.328h-0.092c-2.484-0.092-5.06-2.668-6.808-7.176 - c2.208-0.368,4.6-0.552,6.992-0.552s4.6,0.184,6.808,0.552C-343.94,658.66-346.608,661.328-349.092,661.328z M-342.56,660.224 - c1.196-1.472,2.208-3.404,3.036-5.612c0.092,0,0.276,0.092,0.368,0.092l0,0c0.552,0.184,1.104,0.276,1.564,0.46 - c0.092,0,0.184,0.092,0.276,0.092c0.46,0.184,0.828,0.276,1.288,0.46c0.184,0.092,0.276,0.092,0.46,0.184 - c0.092,0,0.184,0.092,0.368,0.184C-337.408,657.924-339.892,659.396-342.56,660.224z M-333.268,653.876L-333.268,653.876 - c-0.276,0-0.46-0.092-0.736-0.184c-0.276-0.092-0.644-0.276-0.92-0.368c-0.092,0-0.184-0.092-0.276-0.092 - c-1.104-0.46-2.3-0.736-3.496-1.104c0.276-1.104,0.552-2.208,0.736-3.312h-2.76c-0.184,1.012-0.368,1.932-0.644,2.76 - c-2.392-0.46-4.968-0.644-7.636-0.644c-2.76,0-5.336,0.276-7.82,0.736c-0.276-0.92-0.46-1.84-0.644-2.852h-2.76 - c0.184,1.196,0.46,2.3,0.736,3.404c-1.104,0.276-2.208,0.644-3.22,1.012c-0.092,0.092-0.276,0.092-0.368,0.184 - c-0.276,0.092-0.644,0.276-0.92,0.368c-0.184,0-0.46,0.092-0.644,0.184l0,0c-2.76-3.312-4.324-7.452-4.6-11.684h2.3v-2.668h-2.3 - c0.276-4.232,1.84-8.28,4.508-11.5l0.092-0.092c0.184,0.092,0.46,0.184,0.644,0.276c0.368,0.184,0.644,0.276,1.012,0.46 - c0.092,0,0.184,0.092,0.276,0.092c1.012,0.368,2.116,0.736,3.312,1.012c-0.276,1.012-0.46,2.024-0.644,3.036h2.76 - c0.184-0.828,0.368-1.748,0.552-2.484c2.484,0.46,5.152,0.736,7.82,0.736c2.668,0,5.244-0.276,7.636-0.644 - c0.184,0.736,0.368,1.564,0.552,2.484h2.76c-0.184-1.012-0.368-2.024-0.644-3.036c1.196-0.276,2.3-0.644,3.404-1.104 - c0.092,0,0.276-0.092,0.368-0.092c0.368-0.092,0.644-0.276,1.012-0.368c0.184-0.092,0.46-0.184,0.644-0.276l0,0 - c2.668,3.312,4.324,7.36,4.6,11.592h-2.76v2.668h2.76C-329.036,646.516-330.6,650.656-333.268,653.876z"/> -<path fill="#FFFFFF" d="M-354.778,640.855c0,1.09-0.143,2.023-0.427,2.797c-0.284,0.775-0.694,1.407-1.226,1.896 - c-0.533,0.49-1.18,0.85-1.943,1.079c-0.762,0.229-1.67,0.344-2.723,0.344h-2.838c-0.201,0-0.373-0.06-0.51-0.178 - c-0.138-0.12-0.206-0.314-0.206-0.583v-10.36c0-0.27,0.069-0.464,0.206-0.583c0.138-0.12,0.308-0.179,0.51-0.179h3.049 - c1.059,0,1.958,0.124,2.696,0.373c0.738,0.248,1.359,0.615,1.865,1.102c0.505,0.487,0.889,1.088,1.153,1.804 - C-354.91,639.082-354.778,639.913-354.778,640.855z M-357.276,640.938c0-0.564-0.066-1.087-0.198-1.571 - c-0.132-0.483-0.343-0.903-0.634-1.258c-0.291-0.355-0.664-0.632-1.121-0.831c-0.456-0.2-1.054-0.299-1.796-0.299h-1.222v8.082 - h1.259c0.661,0,1.218-0.085,1.672-0.257c0.453-0.172,0.831-0.43,1.134-0.776s0.53-0.776,0.68-1.291 - C-357.352,642.224-357.276,641.624-357.276,640.938z"/> -<path fill="#FFFFFF" d="M-342.995,646.128c0,0.141-0.024,0.267-0.073,0.376c-0.051,0.11-0.116,0.201-0.199,0.276 - c-0.081,0.074-0.18,0.126-0.293,0.16c-0.114,0.034-0.229,0.051-0.345,0.051h-1.028c-0.215,0-0.399-0.021-0.557-0.064 - c-0.155-0.042-0.3-0.121-0.431-0.234c-0.132-0.113-0.259-0.267-0.381-0.459c-0.123-0.193-0.26-0.443-0.412-0.749l-2.958-5.557 - c-0.172-0.33-0.346-0.687-0.523-1.07c-0.178-0.383-0.337-0.754-0.478-1.116h-0.018c0.025,0.441,0.043,0.88,0.055,1.317 - s0.018,0.89,0.018,1.354v6.218c0,0.062-0.017,0.117-0.051,0.166c-0.034,0.049-0.092,0.09-0.175,0.124 - c-0.083,0.034-0.195,0.06-0.335,0.077c-0.141,0.019-0.322,0.028-0.542,0.028c-0.214,0-0.392-0.009-0.533-0.028 - s-0.251-0.044-0.33-0.077c-0.08-0.033-0.135-0.075-0.166-0.124c-0.03-0.049-0.046-0.104-0.046-0.166v-10.681 - c0-0.288,0.084-0.503,0.252-0.648c0.168-0.143,0.375-0.216,0.62-0.216h1.294c0.233,0,0.429,0.02,0.588,0.06 - c0.159,0.04,0.301,0.105,0.427,0.198c0.125,0.092,0.245,0.219,0.354,0.381c0.11,0.163,0.223,0.363,0.339,0.602l2.315,4.344 - c0.133,0.263,0.268,0.523,0.399,0.776s0.259,0.509,0.381,0.763c0.121,0.254,0.24,0.503,0.358,0.748 - c0.116,0.245,0.229,0.49,0.339,0.735h0.009c-0.018-0.429-0.032-0.877-0.041-1.341c-0.009-0.465-0.013-0.909-0.013-1.331v-5.575 - c0-0.061,0.018-0.116,0.054-0.166c0.036-0.049,0.098-0.092,0.184-0.128c0.085-0.037,0.199-0.063,0.339-0.078 - c0.141-0.016,0.322-0.023,0.542-0.023c0.208,0,0.381,0.007,0.523,0.023c0.141,0.016,0.249,0.041,0.327,0.078 - c0.075,0.037,0.13,0.079,0.161,0.128c0.03,0.05,0.045,0.104,0.045,0.166v10.682L-342.995,646.128L-342.995,646.128z"/> -<path fill="#FFFFFF" d="M-333.36,643.408c0,0.626-0.117,1.173-0.349,1.644c-0.233,0.472-0.548,0.866-0.946,1.18 - c-0.398,0.316-0.864,0.552-1.397,0.712c-0.532,0.159-1.102,0.238-1.708,0.238c-0.41,0-0.791-0.034-1.143-0.101 - c-0.352-0.068-0.663-0.148-0.932-0.243c-0.27-0.095-0.495-0.194-0.675-0.299c-0.18-0.104-0.312-0.196-0.391-0.276 - c-0.079-0.079-0.135-0.194-0.17-0.344c-0.033-0.15-0.051-0.366-0.051-0.648c0-0.19,0.006-0.349,0.019-0.477 - c0.012-0.129,0.031-0.233,0.06-0.313c0.027-0.079,0.064-0.136,0.11-0.17c0.046-0.033,0.099-0.051,0.161-0.051 - c0.086,0,0.207,0.051,0.362,0.152c0.156,0.1,0.357,0.213,0.602,0.335c0.245,0.122,0.537,0.234,0.877,0.335 - c0.339,0.101,0.733,0.152,1.18,0.152c0.293,0,0.557-0.035,0.789-0.106c0.232-0.071,0.43-0.17,0.592-0.299 - c0.162-0.128,0.285-0.287,0.372-0.477c0.086-0.19,0.129-0.401,0.129-0.634c0-0.27-0.074-0.5-0.221-0.693 - c-0.147-0.193-0.339-0.365-0.575-0.515c-0.236-0.15-0.503-0.291-0.803-0.422c-0.3-0.132-0.61-0.271-0.927-0.419 - c-0.319-0.147-0.627-0.314-0.927-0.5c-0.3-0.187-0.569-0.41-0.803-0.671c-0.236-0.26-0.427-0.569-0.575-0.924 - c-0.148-0.355-0.221-0.78-0.221-1.277c0-0.569,0.106-1.07,0.317-1.502c0.212-0.432,0.496-0.789,0.854-1.075 - c0.359-0.284,0.781-0.498,1.268-0.638s1.003-0.211,1.547-0.211c0.282,0,0.564,0.021,0.845,0.064 - c0.281,0.043,0.545,0.101,0.789,0.175s0.463,0.156,0.652,0.248c0.19,0.092,0.316,0.168,0.376,0.23 - c0.061,0.061,0.102,0.113,0.124,0.156c0.022,0.043,0.04,0.1,0.055,0.17c0.016,0.071,0.026,0.159,0.031,0.267 - c0.006,0.107,0.01,0.24,0.01,0.4c0,0.178-0.005,0.328-0.015,0.45c-0.009,0.122-0.025,0.224-0.045,0.303 - c-0.022,0.079-0.052,0.138-0.092,0.175c-0.04,0.037-0.094,0.055-0.161,0.055c-0.068,0-0.175-0.042-0.322-0.128 - s-0.328-0.179-0.542-0.281c-0.214-0.1-0.462-0.193-0.743-0.276c-0.282-0.083-0.591-0.124-0.927-0.124 - c-0.263,0-0.493,0.032-0.688,0.097c-0.196,0.064-0.361,0.153-0.491,0.267c-0.132,0.113-0.23,0.25-0.294,0.408 - c-0.064,0.159-0.096,0.328-0.096,0.505c0,0.263,0.072,0.491,0.215,0.685c0.144,0.193,0.337,0.364,0.579,0.514 - c0.242,0.15,0.516,0.291,0.823,0.422c0.306,0.132,0.618,0.271,0.937,0.419c0.318,0.147,0.63,0.314,0.937,0.5 - c0.306,0.187,0.578,0.41,0.818,0.671c0.238,0.26,0.431,0.567,0.578,0.919C-333.434,642.517-333.36,642.931-333.36,643.408z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="-374 616 50 50"><circle fill="#0072c6" cx="-349" cy="641" r="25"/><g fill="#fff"><path opacity=".2" d="M-366.678 658.678c-9.763-9.763-9.763-25.592 0-35.355s25.592-9.763 35.355 0l-35.355 35.355z"/><path opacity=".8" d="M-326 640.996c0-5.152-1.748-10.12-4.968-14.168l-.184-.184c-.092-.092-.092-.184-.184-.276l-1.472-1.564A22.39 22.39 0 0 0-349 617.996h-.184c-6.072.092-11.684 2.392-16.008 6.716l-1.564 1.656c-.092.092-.092.184-.184.276l-.184.092c-3.128 4.048-4.876 9.108-4.876 14.26s1.748 10.12 4.968 14.168l.184.184c.092.092.092.184.184.276l1.472 1.564c4.324 4.324 9.936 6.716 16.008 6.716h.184c6.072 0 11.868-2.392 16.192-6.716l1.472-1.656c.092-.092.092-.184.184-.276l.184-.184c3.22-3.864 4.968-8.924 4.968-14.076zM-335.292 626c-.092 0-.184.092-.276.092-.184.092-.368.184-.46.184-.368.184-.828.276-1.288.46-.092 0-.184.092-.276.092-.552.184-1.012.276-1.564.46-.092 0-.276.092-.368.092-.828-2.208-1.84-4.14-3.036-5.612 2.668.828 5.152 2.3 7.268 4.232zm-13.892-5.336h.092c2.484 0 5.06 2.668 6.9 7.268-2.116.368-4.416.552-6.808.552s-4.784-.184-6.992-.552c1.748-4.508 4.324-7.176 6.808-7.268zm-6.532 1.196c-1.104 1.472-2.116 3.312-2.944 5.52h-.184c-.552-.184-1.104-.276-1.564-.46-.092 0-.184-.092-.276-.092-.368-.184-.828-.368-1.196-.552-.184-.092-.276-.092-.46-.184-.092-.092-.184-.092-.368-.184 2.116-1.748 4.416-3.22 6.992-4.048zm-6.992 34.132c.092 0 .184-.092.276-.092.184-.092.276-.092.46-.184.368-.184.828-.276 1.288-.46.092 0 .184-.092.276-.092.552-.184 1.012-.276 1.564-.46h.184c.828 2.116 1.84 4.048 2.944 5.52-2.576-.92-4.968-2.392-6.992-4.232zm13.616 5.336h-.092c-2.484-.092-5.06-2.668-6.808-7.176 2.208-.368 4.6-.552 6.992-.552s4.6.184 6.808.552c-1.748 4.508-4.416 7.176-6.9 7.176zm6.532-1.104c1.196-1.472 2.208-3.404 3.036-5.612.092 0 .276.092.368.092.552.184 1.104.276 1.564.46.092 0 .184.092.276.092.46.184.828.276 1.288.46.184.092.276.092.46.184.092 0 .184.092.368.184-2.208 1.84-4.692 3.312-7.36 4.14zm9.292-6.348c-.276 0-.46-.092-.736-.184s-.644-.276-.92-.368c-.092 0-.184-.092-.276-.092-1.104-.46-2.3-.736-3.496-1.104.276-1.104.552-2.208.736-3.312h-2.76c-.184 1.012-.368 1.932-.644 2.76-2.392-.46-4.968-.644-7.636-.644-2.76 0-5.336.276-7.82.736-.276-.92-.46-1.84-.644-2.852h-2.76c.184 1.196.46 2.3.736 3.404-1.104.276-2.208.644-3.22 1.012-.092.092-.276.092-.368.184-.276.092-.644.276-.92.368-.184 0-.46.092-.644.184-2.76-3.312-4.324-7.452-4.6-11.684h2.3v-2.668h-2.3c.276-4.232 1.84-8.28 4.508-11.5l.092-.092c.184.092.46.184.644.276.368.184.644.276 1.012.46.092 0 .184.092.276.092 1.012.368 2.116.736 3.312 1.012-.276 1.012-.46 2.024-.644 3.036h2.76l.552-2.484c2.484.46 5.152.736 7.82.736s5.244-.276 7.636-.644a53.93 53.93 0 0 1 .552 2.484h2.76c-.184-1.012-.368-2.024-.644-3.036 1.196-.276 2.3-.644 3.404-1.104.092 0 .276-.092.368-.092.368-.092.644-.276 1.012-.368.184-.092.46-.184.644-.276 2.668 3.312 4.324 7.36 4.6 11.592h-2.76v2.668h2.76c-.46 4.14-2.024 8.28-4.692 11.5z"/><path d="M-354.778 640.855c0 1.1-.143 2.023-.427 2.797s-.694 1.407-1.226 1.896-1.18.85-1.943 1.08-1.67.344-2.723.344h-2.838c-.2 0-.373-.06-.5-.178s-.206-.314-.206-.583v-10.36c0-.27.07-.464.206-.583a.75.75 0 0 1 .51-.179h3.05c1.06 0 1.958.124 2.696.373s1.36.615 1.865 1.102a4.74 4.74 0 0 1 1.153 1.804c.262.715.394 1.546.394 2.488zm-2.498.083a5.95 5.95 0 0 0-.198-1.571 3.35 3.35 0 0 0-.634-1.258 2.92 2.92 0 0 0-1.12-.83c-.456-.198-1.054-.3-1.796-.3h-1.222v8.082h1.26c.66 0 1.218-.085 1.672-.257a2.8 2.8 0 0 0 1.134-.776c.303-.346.53-.776.68-1.3s.226-1.113.226-1.8zm14.28 5.2a.91.91 0 0 1-.073.376.84.84 0 0 1-.199.276.74.74 0 0 1-.293.16 1.2 1.2 0 0 1-.345.051h-1.028a2.08 2.08 0 0 1-.557-.064 1.1 1.1 0 0 1-.431-.234 2.04 2.04 0 0 1-.381-.459c-.123-.193-.26-.443-.412-.75l-2.958-5.557-.523-1.07-.478-1.116h-.018l.055 1.317.018 1.354v6.218a.29.29 0 0 1-.05.166c-.033.05-.092.1-.175.124a1.33 1.33 0 0 1-.335.077 4.03 4.03 0 0 1-.542.028c-.214 0-.392-.01-.533-.028a1.33 1.33 0 0 1-.33-.077c-.08-.033-.135-.075-.166-.124a.31.31 0 0 1-.046-.166v-10.68c0-.288.084-.503.252-.648s.375-.216.62-.216h1.294c.233 0 .43.02.588.06a1.22 1.22 0 0 1 .427.198c.127.093.245.22.354.38a4.94 4.94 0 0 1 .339.602l2.315 4.344.4.776.38.763.358.748.34.735h.01l-.04-1.34-.013-1.33v-5.575a.28.28 0 0 1 .054-.166.42.42 0 0 1 .184-.128 1.24 1.24 0 0 1 .34-.078c.14-.015.322-.023.542-.023l.523.023c.14.016.25.04.327.078s.13.08.16.128.045.104.045.166v10.682h.005zm9.635-2.72c0 .626-.117 1.173-.35 1.644a3.4 3.4 0 0 1-.946 1.18c-.398.314-.864.552-1.397.712a5.94 5.94 0 0 1-1.708.238 6.29 6.29 0 0 1-1.143-.1c-.353-.066-.663-.148-.932-.243s-.495-.194-.675-.3-.312-.196-.4-.276a.7.7 0 0 1-.17-.344c-.033-.15-.05-.366-.05-.648l.02-.477a1.24 1.24 0 0 1 .06-.313c.03-.08.064-.136.1-.17s.1-.05.16-.05c.086 0 .207.05.362.152a6.52 6.52 0 0 0 .602.335c.245.122.537.234.877.335s.733.152 1.18.152a2.7 2.7 0 0 0 .789-.106c.232-.07.43-.17.592-.3a1.27 1.27 0 0 0 .372-.477 1.52 1.52 0 0 0 .129-.634c0-.27-.074-.5-.22-.693s-.34-.365-.575-.515a5.94 5.94 0 0 0-.803-.422l-.927-.42a8.54 8.54 0 0 1-.927-.5 3.7 3.7 0 0 1-.803-.671c-.236-.26-.427-.57-.575-.924s-.22-.78-.22-1.277c0-.57.106-1.07.317-1.502a3.1 3.1 0 0 1 .854-1.075 3.64 3.64 0 0 1 1.268-.638c.487-.14 1.003-.2 1.547-.2a5.58 5.58 0 0 1 .845.064 5.69 5.69 0 0 1 .789.175c.244.074.463.156.652.248s.316.168.376.23.102.113.124.156.04.1.055.17.026.16.03.267l.01.4-.015.45c-.01.122-.025.224-.045.303a.37.37 0 0 1-.092.175c-.04.037-.094.055-.16.055s-.175-.042-.322-.128-.328-.18-.542-.28-.462-.193-.743-.276-.6-.124-.927-.124c-.263 0-.493.032-.688.097a1.39 1.39 0 0 0-.491.267 1.05 1.05 0 0 0-.294.408 1.34 1.34 0 0 0-.096.505c0 .263.072.5.215.685a2.07 2.07 0 0 0 .579.514 6.24 6.24 0 0 0 .823.422l.937.42c.318.147.63.314.937.5a3.49 3.49 0 0 1 .818.67 3.14 3.14 0 0 1 .578.919c.148.355.222.77.222 1.246z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/DNS_Private_Zones.svg b/src/main/webapp/img/lib/mscae/DNS_Private_Zones.svg new file mode 100644 index 0000000000000000000000000000000000000000..b9836ba094fc7a878dbfbc0372662b9a555f4721 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/DNS_Private_Zones.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="50.001" height="50"><circle cx="21.001" cy="21" r="21" fill="#0072c6"/><g fill="#fff"><path d="M6.15 35.85c-8.2-8.2-8.2-21.497 0-29.698s21.497-8.2 29.698 0z" opacity=".2"/><path d="M40.32 20.997c0-4.328-1.468-8.5-4.173-11.9l-.155-.155c-.077-.077-.077-.155-.155-.232l-1.236-1.314C30.97 3.686 26.18 1.677 21 1.677h-.154c-5.1.077-9.815 2.01-13.447 5.64L6.086 8.71c-.077.077-.077.155-.155.232l-.154.077c-2.628 3.4-4.096 7.65-4.096 11.978s1.468 8.5 4.173 11.9l.155.155c.077.077.077.155.155.232L7.4 34.598c3.632 3.632 8.346 5.64 13.447 5.64H21c5.1 0 9.97-2.01 13.6-5.64l1.236-1.39c.077-.077.077-.155.155-.232l.155-.155c2.705-3.245 4.173-7.496 4.173-11.823zM32.516 8.4c-.077 0-.155.077-.232.077-.155.077-.31.155-.386.155-.31.155-.696.232-1.082.386-.077 0-.155.077-.232.077-.464.155-.85.232-1.314.386-.077 0-.232.077-.31.077-.696-1.855-1.546-3.478-2.55-4.714 2.24.697 4.327 1.933 6.105 3.556zm-11.67-4.482h.077c2.087 0 4.25 2.24 5.796 6.105-1.777.31-3.71.464-5.72.464s-4.02-.155-5.873-.464c1.47-3.787 3.633-6.028 5.72-6.105zM15.36 4.922c-.927 1.236-1.777 2.782-2.473 4.637h-.155c-.464-.155-.927-.232-1.314-.386-.077 0-.155-.077-.232-.077-.31-.155-.696-.31-1.005-.464-.155-.077-.232-.077-.386-.155-.077-.077-.154-.077-.31-.154 1.778-1.47 3.7-2.705 5.874-3.4zm-5.874 28.67c.077 0 .155-.077.232-.077.155-.077.232-.077.386-.155.31-.155.696-.232 1.082-.386.077 0 .155-.077.232-.077.464-.155.85-.232 1.314-.386h.155c.696 1.777 1.546 3.4 2.473 4.637-2.164-.774-4.174-2-5.874-3.556zm11.438 4.483h-.077c-2.087-.077-4.25-2.24-5.72-6.028 1.855-.31 3.864-.464 5.873-.464s3.864.155 5.72.464c-1.47 3.786-3.7 6.028-5.796 6.028zm5.487-.928c1.005-1.236 1.855-2.86 2.55-4.714.077 0 .232.077.31.077.464.155.927.232 1.314.386.077 0 .155.077.232.077.386.155.696.232 1.082.386.155.077.232.077.386.155.077 0 .155.077.31.155-1.855 1.546-3.94 2.783-6.182 3.478zm7.805-5.332c-.232 0-.386-.077-.618-.155s-.54-.232-.773-.31c-.077 0-.155-.077-.232-.077-.927-.386-1.932-.618-2.937-.927.232-.927.464-1.855.618-2.782h-2.318c-.155.85-.31 1.623-.54 2.318-2.01-.386-4.173-.54-6.414-.54-2.318 0-4.482.232-6.57.618-.232-.773-.386-1.546-.54-2.396h-2.318c.155 1.005.386 1.932.618 2.86-.927.232-1.855.54-2.705.85-.077.077-.232.077-.31.155-.232.077-.54.232-.773.31-.155 0-.386.077-.54.155C5.545 29.11 4.23 25.633 4 22.078H5.93v-2.24H4c.232-3.555 1.546-6.955 3.787-9.66l.077-.077c.155.077.386.155.54.232.31.155.54.232.85.386.077 0 .155.077.232.077.85.31 1.777.618 2.782.85-.232.85-.386 1.7-.54 2.55h2.318l.464-2.087c2.087.386 4.328.618 6.57.618s4.405-.232 6.414-.54a45.17 45.17 0 0 1 .464 2.087h2.318c-.155-.85-.31-1.7-.54-2.55 1.005-.232 1.932-.54 2.86-.927.077 0 .232-.077.31-.077.31-.077.54-.232.85-.31.155-.077.386-.155.54-.232 2.24 2.782 3.632 6.182 3.864 9.737h-2.318v2.24h2.318c-.385 3.478-1.7 6.956-3.94 9.66z" opacity=".8"/><path d="M16.147 20.878c0 .916-.12 1.7-.36 2.35s-.583 1.182-1.03 1.593a4.11 4.11 0 0 1-1.632.906c-.642.192-1.403.3-2.287.3H8.456a.63.63 0 0 1-.428-.15c-.116-.1-.173-.264-.173-.5v-8.702c0-.227.058-.4.173-.5s.26-.15.428-.15h2.56c.9 0 1.645.104 2.265.313s1.142.517 1.567.926.747.914.97 1.515.33 1.3.33 2.1zm-2.098.07c0-.474-.055-.913-.166-1.32a2.79 2.79 0 0 0-.533-1.057c-.245-.297-.558-.53-.942-.698s-.885-.25-1.5-.25H9.874v6.8h1.058c.555 0 1.023-.07 1.404-.216s.698-.36.953-.652.445-.652.57-1.084.2-.935.2-1.5zm11.996 4.36a.77.77 0 0 1-.061.316.71.71 0 0 1-.167.232.62.62 0 0 1-.246.134.98.98 0 0 1-.3.043h-.864c-.18 0-.335-.018-.468-.054a.92.92 0 0 1-.362-.197c-.1-.095-.218-.224-.32-.386a7.28 7.28 0 0 1-.346-.63L20.436 20.1l-.44-.9-.402-.937h-.014l.046 1.106.015 1.137v5.223a.24.24 0 0 1-.043.14c-.03.042-.077.076-.147.104s-.164.05-.28.065a3.51 3.51 0 0 1-.455.024c-.18 0-.33-.008-.448-.024s-.2-.037-.277-.065-.113-.063-.14-.104-.04-.087-.04-.14v-8.972c0-.242.07-.423.212-.544s.315-.18.52-.18h1.087c.196 0 .36.017.494.05a1.02 1.02 0 0 1 .359.166c.105.077.206.184.297.32s.187.305.285.506L23 20.725l.335.652.32.64.3.628.285.617h.008l-.034-1.126-.01-1.118v-4.683a.24.24 0 0 1 .045-.14c.03-.043.082-.077.155-.108s.167-.053.285-.066a4.33 4.33 0 0 1 .455-.019l.44.02c.118.013.2.034.275.066s.1.066.135.108.038.087.038.14v8.973zm8.095-2.285c0 .526-.098.985-.293 1.38s-.46.727-.795 1-.726.464-1.173.598-.926.2-1.435.2a5.25 5.25 0 0 1-.96-.085 5.46 5.46 0 0 1-.783-.204 3.35 3.35 0 0 1-.567-.251 1.64 1.64 0 0 1-.328-.232c-.066-.067-.113-.163-.143-.3s-.043-.307-.043-.544l.016-.4c.01-.108.026-.196.05-.263s.054-.114.092-.143.083-.043.135-.043c.072 0 .174.043.304.128a4.67 4.67 0 0 0 .506.28c.206.1.45.197.737.28a3.48 3.48 0 0 0 .991.128 2.26 2.26 0 0 0 .663-.089 1.5 1.5 0 0 0 .497-.251 1.07 1.07 0 0 0 .312-.401c.072-.16.108-.337.108-.533 0-.227-.062-.42-.186-.582s-.285-.307-.483-.433-.423-.244-.675-.354l-.78-.352a7.24 7.24 0 0 1-.78-.42 3.1 3.1 0 0 1-.675-.564c-.198-.218-.36-.478-.483-.776s-.186-.655-.186-1.073c0-.478.1-.9.266-1.262s.417-.663.717-.903a3.06 3.06 0 0 1 1.065-.536 4.67 4.67 0 0 1 1.299-.177 4.48 4.48 0 0 1 .7.054 5.14 5.14 0 0 1 .663.147 3.77 3.77 0 0 1 .548.208c.16.077.265.14.316.193s.086.095.104.13a.57.57 0 0 1 .046.143 1.46 1.46 0 0 1 .026.224l.008.336-.013.378a1.46 1.46 0 0 1-.038.255c-.018.067-.044.116-.077.147s-.08.046-.135.046-.147-.035-.27-.108a6.11 6.11 0 0 0-.455-.236 4.52 4.52 0 0 0-.624-.232 2.74 2.74 0 0 0-.779-.104 1.89 1.89 0 0 0-.578.08c-.164.053-.303.13-.412.224s-.193.2-.247.343a1.16 1.16 0 0 0-.08.424c0 .22.06.412.18.575s.283.306.486.432a5.11 5.11 0 0 0 .691.354l.787.352a7.96 7.96 0 0 1 .787.42c.257.157.486.344.687.564a2.64 2.64 0 0 1 .486.772c.128.3.2.65.2 1.05z"/></g><circle cx="37.001" cy="37" r="12" fill="#1e1e1e"/><path d="M37 26c6.065 0 11 4.935 11 11s-4.935 11-11 11-11-4.935-11-11 4.935-11 11-11m0-2c-7.18 0-13 5.82-13 13s5.82 13 13 13 13-5.82 13-13-5.82-13-13-13zm3.194 18.412a1.01 1.01 0 0 1-.814-.414L37 38.744l-2.38 3.254c-.188.26-.493.414-.814.414a1 1 0 0 1-.595-.195.99.99 0 0 1-.4-.66.99.99 0 0 1 .183-.749l2.45-3.354-3.688-1.076a1.01 1.01 0 0 1 .282-1.978 1.01 1.01 0 0 1 .283.041l3.67 1.07v-4.07A1.01 1.01 0 0 1 37 30.432a1.01 1.01 0 0 1 1.009 1.008v4.07l3.67-1.07c.093-.027.188-.04.283-.04.445 0 .843.3.968.727a1.01 1.01 0 0 1-.686 1.251l-3.688 1.076 2.45 3.354c.16.217.225.482.183.75a1.01 1.01 0 0 1-.4.66 1 1 0 0 1-.597.196z" fill="#e5e5e5"/><path d="M37 37l-3.788 5.217c-.218-.158-.36-.393-.4-.66a.99.99 0 0 1 .183-.749l2.45-3.354-3.688-1.076a1.01 1.01 0 0 1 .282-1.978 1.01 1.01 0 0 1 .283.041l3.67 1.07V31.44a1.01 1.01 0 0 1 1.009-1.008z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/DataServices_category_rollup.svg b/src/main/webapp/img/lib/mscae/DataServices_category_rollup.svg index b97a6c5880d0f70d1e43a55d9c35164d43d1713a..db22ec5f4cb8174f3bd4956ee1009b106aa13270 100644 --- a/src/main/webapp/img/lib/mscae/DataServices_category_rollup.svg +++ b/src/main/webapp/img/lib/mscae/DataServices_category_rollup.svg @@ -1,83 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="37.486" - height="49.688" - viewBox="-454 256 37.486 49.688" - enable-background="new -454 256 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure DataServices category rollup.svg"><metadata - id="metadata25"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs23" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview21" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="10.363697" - inkscape:cx="22.055104" - inkscape:cy="17.809073" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M -454,262.788 -454,298.899 C -454,302.648 -445.608,305.688 -435.257,305.688 L -435.257,262.788 C -435.257,262.788 -454,262.788 -454,262.788 Z" - id="path3" - inkscape:connector-curvature="0" - style="fill:#3999c6" /><path - d="M -435.514,305.687 -435.257,305.687 C -424.906,305.687 -416.514,302.649 -416.514,298.899 L -416.514,262.788 -435.514,262.788 -435.514,305.687 Z" - id="path5" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><path - d="M -416.514,262.788 C -416.514,266.537 -424.906,269.576 -435.257,269.576 -445.608,269.576 -454,266.537 -454,262.788 -454,259.039 -445.608,256 -435.257,256 -424.906,256 -416.514,259.039 -416.514,262.788" - id="path7" - inkscape:connector-curvature="0" - style="fill:#ffffff" /><path - d="M -420.346,262.397 C -420.346,264.872 -427.022,266.876 -435.257,266.876 -443.492,266.876 -450.169,264.872 -450.169,262.397 -450.169,259.923 -443.492,257.918 -435.257,257.918 -427.022,257.918 -420.346,259.923 -420.346,262.397" - id="path9" - inkscape:connector-curvature="0" - style="fill:#7fba00" /><path - d="M -423.47,265.134 C -421.518,264.377 -420.345,263.429 -420.345,262.399 -420.345,259.924 -427.021,257.919 -435.257,257.919 -443.492,257.919 -450.168,259.924 -450.168,262.399 -450.168,263.429 -448.995,264.377 -447.043,265.134 -444.317,264.076 -440.057,263.393 -435.257,263.393 -430.456,263.393 -426.198,264.076 -423.47,265.134" - id="path11" - inkscape:connector-curvature="0" - style="fill:#b8d432" /><path - d="M -443.729,280.765 -445.433,280.765 -445.433,290.519 -443.709,290.519 C -442.194,290.519 -441.02,290.045 -440.151,289.136 -439.319,288.227 -438.898,287.015 -438.898,285.482 -438.898,284.043 -439.319,282.909 -440.132,282.069 -440.985,281.201 -442.178,280.765 -443.729,280.765" - id="path13" - inkscape:connector-curvature="0" - style="fill:#3999c6" /><path - d="M -426.515,283.628 C -426.099,283.266 -425.891,282.792 -425.891,282.204 -425.891,281.065 -426.723,280.498 -428.411,280.498 L -429.713,280.498 -429.713,284.138 -428.18,284.138 C -427.479,284.138 -426.911,283.963 -426.515,283.628" - id="path15" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><path - d="M -425.946,287.241 C -426.402,286.902 -427.022,286.711 -427.823,286.711 L -429.716,286.711 -429.716,290.763 -427.841,290.763 C -427.044,290.763 -426.402,290.574 -425.928,290.195 -425.493,289.815 -425.267,289.326 -425.267,288.68 -425.263,288.073 -425.49,287.581 -425.946,287.241" - id="path17" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><path - d="M -436.917,276.561 C -436.23,277.29 -435.711,278.019 -435.361,278.748 -435.109,279.252 -434.695,280.577 -434.12,282.722 L -432.27,279.947 C -431.78,279.274 -431.184,278.633 -430.483,278.023 -429.782,277.413 -429.165,276.996 -428.633,276.772 -428.297,276.632 -427.925,276.562 -427.518,276.562 -426.915,276.562 -426.435,276.723 -426.078,277.046 -425.72,277.369 -425.542,277.761 -425.542,278.224 -425.542,278.757 -425.647,279.121 -425.857,279.317 -426.25,279.667 -426.698,279.843 -427.203,279.843 -427.497,279.843 -427.813,279.78 -428.149,279.654 -428.808,279.43 -429.25,279.318 -429.473,279.318 -429.809,279.318 -430.209,279.515 -430.671,279.907 -431.54,280.636 -432.577,282.045 -433.783,284.133 L -432.059,291.366 C -431.792,292.473 -431.569,293.136 -431.386,293.353 -431.204,293.571 -431.022,293.679 -430.839,293.679 -430.545,293.679 -430.201,293.518 -429.809,293.195 -429.038,292.55 -428.379,291.709 -427.832,290.672 L -427.096,291.05 C -427.979,292.704 -429.1,294.078 -430.46,295.171 -431.231,295.788 -431.883,296.096 -432.415,296.096 -433.2,296.096 -433.824,295.655 -434.287,294.772 -434.581,294.225 -435.191,291.87 -436.116,287.707 -438.303,291.506 -440.055,293.952 -441.373,295.045 -442.228,295.746 -443.055,296.096 -443.854,296.096 -444.415,296.096 -444.926,295.893 -445.389,295.486 -445.725,295.178 -445.893,294.764 -445.893,294.245 -445.893,293.782 -445.739,293.397 -445.43,293.089 -445.122,292.781 -444.743,292.626 -444.295,292.626 -443.846,292.626 -443.37,292.85 -442.865,293.299 -442.501,293.622 -442.22,293.783 -442.024,293.783 -441.856,293.783 -441.639,293.671 -441.372,293.447 -440.713,292.914 -439.816,291.765 -438.681,289.999 -437.546,288.233 -436.803,286.958 -436.452,286.172 -437.321,282.766 -437.791,280.965 -437.861,280.768 -438.183,279.857 -438.604,279.212 -439.122,278.833 -439.64,278.454 -440.405,278.266 -441.414,278.266 -441.736,278.266 -442.108,278.28 -442.529,278.308 L -442.529,277.551 -436.917,276.561 Z" - id="path19" - inkscape:connector-curvature="0" - style="fill:#ffffff" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="37.486" height="49.688" viewBox="-454 256 37.486 49.688"><path d="M-454 262.788v36.11c0 3.75 8.392 6.79 18.743 6.79v-42.9H-454z" fill="#3999c6"/><path d="M-435.514 305.687h.257c10.35 0 18.743-3.038 18.743-6.788v-36.11h-19v42.9z" fill="#59b4d9"/><path d="M-416.514 262.788c0 3.75-8.392 6.788-18.743 6.788S-454 266.537-454 262.788-445.608 256-435.257 256s18.743 3.04 18.743 6.788" fill="#fff"/><path d="M-420.346 262.397c0 2.475-6.676 4.48-14.91 4.48s-14.912-2.004-14.912-4.48 6.677-4.48 14.912-4.48 14.91 2.005 14.91 4.48" fill="#7fba00"/><path d="M-423.47 265.134c1.952-.757 3.125-1.705 3.125-2.735 0-2.475-6.676-4.48-14.912-4.48s-14.91 2.005-14.91 4.48c0 1.03 1.173 1.978 3.125 2.735 2.726-1.058 6.986-1.74 11.786-1.74s9.06.683 11.787 1.74" fill="#b8d432"/><path d="M-443.73 280.765h-1.704v9.754h1.724c1.515 0 2.69-.474 3.558-1.383.832-.91 1.253-2.12 1.253-3.654 0-1.44-.42-2.573-1.234-3.413-.853-.868-2.046-1.304-3.597-1.304" fill="#3999c6"/><path d="M-426.515 283.628c.416-.362.624-.836.624-1.424 0-1.14-.832-1.706-2.52-1.706h-1.302v3.64h1.533c.7 0 1.27-.175 1.665-.5m.57 3.602c-.456-.34-1.076-.53-1.877-.53h-1.893v4.052h1.875c.797 0 1.44-.2 1.913-.568.435-.38.66-.87.66-1.515.004-.607-.223-1.1-.68-1.44" fill="#59b4d9"/><path d="M-436.917 276.56c.687.73 1.206 1.458 1.556 2.187.252.504.666 1.83 1.24 3.974l1.85-2.775c.5-.673 1.086-1.314 1.787-1.924s1.318-1.027 1.85-1.25c.336-.14.708-.2 1.115-.2.603 0 1.083.16 1.44.484s.536.715.536 1.178c0 .533-.105.897-.315 1.093-.393.35-.84.526-1.346.526-.294 0-.6-.063-.946-.19-.66-.224-1.1-.336-1.324-.336-.336 0-.736.197-1.198.59-.87.73-1.906 2.138-3.112 4.226l1.724 7.233c.267 1.107.5 1.77.673 1.987s.364.326.547.326c.294 0 .638-.16 1.03-.484.77-.645 1.43-1.486 1.977-2.523l.736.378c-.883 1.654-2.004 3.028-3.364 4.12-.77.617-1.423.925-1.955.925-.785 0-1.41-.44-1.872-1.324-.294-.547-.904-2.902-1.83-7.065-2.187 3.8-3.94 6.245-5.257 7.338-.855.7-1.682 1.05-2.48 1.05-.56 0-1.072-.203-1.535-.6-.336-.308-.504-.722-.504-1.24 0-.463.154-.848.463-1.156s.687-.463 1.135-.463.925.224 1.43.673c.364.323.645.484.84.484.168 0 .385-.112.652-.336.66-.533 1.556-1.682 2.69-3.448l2.23-3.827-1.41-5.404c-.322-.91-.743-1.556-1.26-1.935s-1.283-.567-2.292-.567l-1.115.042v-.757l5.612-1z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Data_Box.svg b/src/main/webapp/img/lib/mscae/Data_Box.svg new file mode 100644 index 0000000000000000000000000000000000000000..0728c77f59e570d66b30a6a70043b93e4410a4aa --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Data_Box.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="399.61" height="382.7"><path d="M195 230.7v-37.5c0-3.8-3.2-6.9-7.1-6.9h-30.1c-1.5 0-2.7-.5-3.6-1.4s-1.4-2.1-1.4-3.6c0-1.3.5-2.5 1.6-3.8l50-49.9c.9-.9 2-1.3 3.4-1.4-11-44.6-49.8-78.6-97.5-80.8C48.4 42.6-2.7 93.8.1 155.6c2.6 56.5 50 100.6 106.6 100.6h88.4v-25.5z" fill="#45add2"/><path d="M254.9 278.3v-22.1h40.7c57.3 0 104-44.8 104-99.8 0-52.8-43.5-96-97.9-98.1C281.3 22.3 242.1 0 198.6 0c-28.8 0-55.3 9.9-75.6 26.8 26 4.1 50.1 16.2 69.1 35.3 22.3 22.3 35.2 51.5 36.7 82.6l33 32.9c.9.9 1.4 2.1 1.4 3.6 0 1.4-.5 2.5-1.5 3.5s-2.2 1.5-3.5 1.5H229v129.4c0 3.9-3.2 7.1-7.2 7.1h.2-30.1c-1.4 0-2.5.5-3.5 1.5s-1.5 2.2-1.5 3.5c0 1.5.5 2.7 1.4 3.6l50.2 50c.9.9 2.1 1.4 3.6 1.4s2.7-.5 3.6-1.4l50-49.9c1-1.3 1.6-2.5 1.6-3.8 0-1.5-.5-2.7-1.4-3.6s-2.1-1.4-3.6-1.4h-30.1c-3.9 0-7.1-3.1-7.1-6.9v-37.4z" fill="#2272b9"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Data_Box_Edge_Data_Box_Gateway.svg b/src/main/webapp/img/lib/mscae/Data_Box_Edge_Data_Box_Gateway.svg new file mode 100644 index 0000000000000000000000000000000000000000..a82336a9547c37b098d3d46978d0c4875b2897fe --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Data_Box_Edge_Data_Box_Gateway.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="399.61" height="256.3"><path d="M301.8 58.3C281.3 22.3 242.1 0 198.6 0c-28.8 0-55.3 9.9-75.6 26.8 26 4.1 50.1 16.2 69.1 35.3 23.7 23.7 36.8 55.2 36.8 88.6v105.5h66.7c57.3 0 104-44.8 104-99.8 0-52.7-43.5-95.9-97.8-98.1z" fill="#2272b9"/><path d="M110.3 45.5C48.4 42.7-2.7 93.9.1 155.7c2.6 56.5 50 100.6 106.6 100.6H211V152c-.1-56.6-44.2-104-100.7-106.5z" fill="#45add2"/><path d="M188.1 159.9v-12.8c0-1.6-1-3-2.6-3.5l-17.8-5.8c-1-.3-1.9-1.1-2.3-2.1l-3.9-9.4c-.4-1-.4-2.1.1-3l8.1-17.2c.7-1.4.4-3.1-.7-4.2l-9.1-9.1c-1.1-1.1-2.9-1.4-4.3-.7l-16.7 8.5c-1 .5-2.1.5-3.1.1l-9.4-3.9c-1-.4-1.7-1.2-2.1-2.2l-6.4-17.9c-.5-1.5-1.9-2.5-3.5-2.5h-12.7c-1.6 0-3 1-3.5 2.6l-5.8 17.8c-.3 1-1.1 1.9-2.1 2.3l-9.4 3.9c-1 .4-2.1.4-3-.1l-17.2-8.1c-1.4-.7-3.1-.4-4.2.7l-9.1 9.1c-1.1 1.1-1.4 2.9-.7 4.3l8.5 16.7c.5 1 .5 2.1.1 3.1l-3.9 9.4c-.4 1-1.2 1.7-2.2 2.1l-17.9 6.4c-1.5.5-2.5 1.9-2.5 3.5v12.8c0 1.6 1 3 2.5 3.5l17.8 5.8c1 .3 1.9 1.1 2.3 2.1l3.9 9.4c.4 1 .4 2.1-.1 3l-8.1 17.2c-.7 1.4-.4 3.1.7 4.2l9.1 9.1c1.1 1.1 2.9 1.4 4.3.7l16.7-8.5c1-.5 2.1-.5 3.1-.1l9.4 3.9c1 .4 1.7 1.2 2.1 2.2l6.4 17.9c.5 1.5 1.9 2.5 3.5 2.5h12.8c1.6 0 3-1 3.5-2.6l5.8-17.8c.3-1 1.1-1.9 2.1-2.3l9.4-3.9c1-.4 2.1-.4 3 .1l17.2 8.1c1.4.7 3.1.4 4.2-.7l9.1-9.1c1.1-1.1 1.4-2.9.7-4.3l-8.5-16.7c-.5-1-.5-2.1-.1-3.1l3.9-9.4c.4-1 1.2-1.7 2.2-2.1l17.9-6.4c1.5-.6 2.5-2 2.5-3.5zm-75.9 32.8c-10.4 1-20.6-2.1-28.6-8.8-8.1-6.6-13.1-16-14.1-26.4s2.1-20.6 8.8-28.6c6.6-8.1 16-13.1 26.4-14.1 14.4-1.5 27.9 5.3 35.8 16.4 3.8 5.4 6.1 11.8 6.9 18.8 2.1 21.5-13.6 40.7-35.2 42.7z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Data_Catalog.svg b/src/main/webapp/img/lib/mscae/Data_Catalog.svg index 622f90af7b6a84fedfebd291c4d3c1cedd21dd68..c103b5f8c1e6c5e485ce08fc2f7c8587a6ce4b84 100644 --- a/src/main/webapp/img/lib/mscae/Data_Catalog.svg +++ b/src/main/webapp/img/lib/mscae/Data_Catalog.svg @@ -1,92 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="47" - height="50.200001" - viewBox="0 0 47 50.200001" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure Data Catalog_COLOR.svg"><metadata - id="metadata29"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs27" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview25" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="10.363697" - inkscape:cx="15.75052" - inkscape:cy="16.924068" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 35.7,35.7 37.3,35.7 37.3,0 8.1,0 6,0 C 5,0.1 2.9,2.6 2.9,2.9 2.9,3 2.9,37.4 2.9,37.4 2.9,38.4 3.7,39.3 4.8,39.3 L 33.3,39.3 33.3,38.7 35.7,35.7 Z" - id="path3" - inkscape:connector-curvature="0" - style="fill:#0072c6" /><path - d="M 7.4,1.6 C 6.5,1.6 6.2,1.7 5.4,2.4 3.7,3.9 5.8,3.9 6.6,3.9 L 33.3,3.9 33.3,38.7 35.7,35.6 35.7,1.6 7.4,1.6 Z" - id="path5" - inkscape:connector-curvature="0" - style="fill:#e5e5e5" /><polygon - enable-background="new " - points="34.3,3.9 34.3,38.7 36.7,35.7 36.7,1.6 " - id="polygon7" - style="opacity:0.5;fill:#a0a1a2" - transform="translate(-1,0)" /><path - d="M 7.4,21.2 C 7.4,22 6.8,22.6 6,22.6 L 1.4,22.6 C 0.6,22.6 0,22 0,21.2 L 0,21.2 C 0,20.4 0.6,19.8 1.4,19.8 L 6,19.8 C 6.8,19.7 7.4,20.4 7.4,21.2 L 7.4,21.2 Z" - id="path9" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /><path - d="M 7.4,10.9 C 7.4,11.7 6.8,12.3 6,12.3 L 1.4,12.3 C 0.6,12.3 0,11.7 0,10.9 L 0,10.9 C 0,10.1 0.6,9.5 1.4,9.5 L 6,9.5 C 6.8,9.5 7.4,10.2 7.4,10.9 L 7.4,10.9 Z" - id="path11" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /><path - d="M 7.4,31.4 C 7.4,32.2 6.8,32.8 6,32.8 L 1.4,32.8 C 0.6,32.8 0,32.2 0,31.4 L 0,31.4 C 0,30.6 0.6,30 1.4,30 L 6,30 C 6.8,30 7.4,30.6 7.4,31.4 L 7.4,31.4 Z" - id="path13" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /><path - d="M 22.6,22.2 22.6,45.7 C 22.6,48.1 28.1,50.1 34.8,50.1 L 34.8,22.1 22.6,22.1 Z" - id="path15" - inkscape:connector-curvature="0" - style="fill:#3999c6" /><path - d="M 34.6,50.2 34.8,50.2 C 41.5,50.2 47,48.2 47,45.8 L 47,22.2 34.6,22.2 34.6,50.2 Z" - id="path17" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><path - d="M 47,22.2 C 47,24.6 41.5,26.6 34.8,26.6 28.1,26.6 22.6,24.6 22.6,22.2 22.6,19.8 28.1,17.8 34.8,17.8 41.5,17.8 47,19.8 47,22.2" - id="path19" - inkscape:connector-curvature="0" - style="fill:#ffffff" /><path - d="M 44.5,21.9 C 44.5,23.5 40.1,24.8 34.8,24.8 29.5,24.8 25.1,23.5 25.1,21.9 25.1,20.3 29.5,19 34.8,19 40.1,19 44.5,20.3 44.5,21.9" - id="path21" - inkscape:connector-curvature="0" - style="fill:#7fba00" /><path - d="M 42.5,23.7 C 43.8,23.2 44.5,22.6 44.5,21.9 44.5,20.3 40.1,19 34.8,19 29.4,19 25.1,20.3 25.1,21.9 25.1,22.6 25.9,23.2 27.1,23.7 28.9,23 31.7,22.6 34.8,22.6 37.9,22.6 40.7,23 42.5,23.7" - id="path23" - inkscape:connector-curvature="0" - style="fill:#b8d432" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="47" height="50.2"><path d="M35.7 35.7h1.6V0H6C5 .1 2.9 2.6 2.9 2.9v34.5c0 1 .8 1.9 1.9 1.9h28.5v-.6l2.4-3z" fill="#0072c6"/><path d="M7.4 1.6c-.9 0-1.2.1-2 .8-1.7 1.5.4 1.5 1.2 1.5h26.7v34.8l2.4-3.1v-34H7.4z" fill="#e5e5e5"/><g fill="#a0a1a2"><path d="M33.3 3.9v34.8l2.4-3V1.6z" opacity=".5"/><path d="M7.4 21.2c0 .8-.6 1.4-1.4 1.4H1.4C.6 22.6 0 22 0 21.2s.6-1.4 1.4-1.4H6c.8-.1 1.4.6 1.4 1.4zm0-10.3c0 .8-.6 1.4-1.4 1.4H1.4c-.8 0-1.4-.6-1.4-1.4s.6-1.4 1.4-1.4H6c.8 0 1.4.7 1.4 1.4zm0 20.5c0 .8-.6 1.4-1.4 1.4H1.4c-.8 0-1.4-.6-1.4-1.4S.6 30 1.4 30H6c.8 0 1.4.6 1.4 1.4z"/></g><path d="M22.6 22.2v23.5c0 2.4 5.5 4.4 12.2 4.4v-28H22.6z" fill="#3999c6"/><path d="M34.6 50.2h.2c6.7 0 12.2-2 12.2-4.4V22.2H34.6v28z" fill="#59b4d9"/><path d="M47 22.2c0 2.4-5.5 4.4-12.2 4.4s-12.2-2-12.2-4.4 5.5-4.4 12.2-4.4 12.2 2 12.2 4.4" fill="#fff"/><path d="M44.5 21.9c0 1.6-4.4 2.9-9.7 2.9s-9.7-1.3-9.7-2.9 4.4-2.9 9.7-2.9 9.7 1.3 9.7 2.9" fill="#7fba00"/><path d="M42.5 23.7c1.3-.5 2-1.1 2-1.8 0-1.6-4.4-2.9-9.7-2.9-5.4 0-9.7 1.3-9.7 2.9 0 .7.8 1.3 2 1.8 1.8-.7 4.6-1.1 7.7-1.1s5.9.4 7.7 1.1" fill="#b8d432"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Data_Factory.svg b/src/main/webapp/img/lib/mscae/Data_Factory.svg index 2c9a117c0f7e867bcea1690b273f6133874136a3..46d79b6fdffadb838ee13dc4094a1561b4dc44b8 100644 --- a/src/main/webapp/img/lib/mscae/Data_Factory.svg +++ b/src/main/webapp/img/lib/mscae/Data_Factory.svg @@ -1,69 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="49.900002" - viewBox="0 0 50 49.900002" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure Data Factory_COLOR.svg"><metadata - id="metadata17"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs15" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview13" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="10.363697" - inkscape:cx="24.141106" - inkscape:cy="19.961658" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 49.9,29.4 49.9,29.4 49.9,17.3 36.2,29.2 35.9,29.2 35.9,17.3 22.2,29.2 22.2,29.2 22.2,4.3 C 22.2,2.2 17.5,0.1 11.3,0.1 5.1,0.1 0,2.1 0,4.3 L 0,49.9 50,49.9 49.9,29.4 Z M 11.3,6.3 C 6.8,6.3 3.2,5.2 3.2,4 3.2,2.8 6.8,1.7 11.3,1.7 15.8,1.7 19.4,2.7 19.4,4 19.3,5.2 15.7,6.3 11.3,6.3 Z M 34.9,41.8 29.4,41.8 29.4,36.3 34.9,36.3 34.9,41.8 Z M 25.2,41.8 19.7,41.8 19.7,36.3 25.2,36.3 25.2,41.8 Z M 39.2,41.8 39.2,36.3 44.7,36.3 44.7,41.8 39.2,41.8 Z" - id="path3" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><rect - x="0" - y="4" - width="11.1" - height="45.900002" - id="rect5" - style="fill:#3999c6" /><path - d="M 22.1,4 C 22.1,6.2 17.1,8 11,8 4.9,8 0,6.2 0,4 0,1.8 5,0 11.1,0 17.2,0 22.1,1.7 22.1,4" - id="path7" - inkscape:connector-curvature="0" - style="fill:#ffffff" /><path - d="M 19.9,3.7 C 19.9,5.2 16,6.3 11.1,6.3 6.2,6.3 2.3,5.2 2.3,3.7 2.3,2.2 6.2,1.1 11.1,1.1 16,1.1 19.9,2.3 19.9,3.7" - id="path9" - inkscape:connector-curvature="0" - style="fill:#7fba00" /><path - d="M 18,5.3 C 19.2,4.9 19.8,4.3 19.8,3.7 19.8,2.2 15.9,1.1 11,1.1 6.1,1.1 2.2,2.3 2.2,3.7 2.3,4.3 3,4.9 4.1,5.3 5.7,4.7 8.2,4.3 11.1,4.3 13.9,4.3 16.4,4.7 18,5.3" - id="path11" - inkscape:connector-curvature="0" - style="fill:#b8d432" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="49.9"><path d="M49.9 29.4V17.3L36.2 29.2h-.3V17.3L22.2 29.2V4.3c0-2.1-4.7-4.2-10.9-4.2S0 2.1 0 4.3v45.6h50l-.1-20.5zM11.3 6.3C6.8 6.3 3.2 5.2 3.2 4s3.6-2.3 8.1-2.3 8.1 1 8.1 2.3c-.1 1.2-3.7 2.3-8.1 2.3zm23.6 35.5h-5.5v-5.5h5.5v5.5zm-9.7 0h-5.5v-5.5h5.5v5.5zm14 0v-5.5h5.5v5.5h-5.5z" fill="#59b4d9"/><path d="M0 4h11.1v45.9H0z" fill="#3999c6"/><path d="M22.1 4c0 2.2-5 4-11.1 4S0 6.2 0 4s5-4 11.1-4 11 1.7 11 4" fill="#fff"/><path d="M19.9 3.7c0 1.5-3.9 2.6-8.8 2.6S2.3 5.2 2.3 3.7s3.9-2.6 8.8-2.6 8.8 1.2 8.8 2.6" fill="#7fba00"/><path d="M18 5.3c1.2-.4 1.8-1 1.8-1.6 0-1.5-3.9-2.6-8.8-2.6S2.2 2.3 2.2 3.7c.1.6.8 1.2 1.9 1.6 1.6-.6 4.1-1 7-1 2.8 0 5.3.4 6.9 1" fill="#b8d432"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Data_Lake.svg b/src/main/webapp/img/lib/mscae/Data_Lake.svg new file mode 100644 index 0000000000000000000000000000000000000000..0102b6da6e447d5e829dd9382803f6112601f3a7 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Data_Lake.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="37.8" height="50"><path d="M0 6.8v36.3c0 3.8 8.4 6.8 18.9 6.8V6.8z" fill="#3e3e3e"/><path d="M18.6 50h.3c10.4 0 18.9-3.1 18.9-6.8V6.8H18.6z" fill="#a0a1a2"/><path d="M37.8 6.8c0 3.8-8.4 6.8-18.9 6.8S0 10.6 0 6.8C0 3.1 8.5 0 18.9 0s18.9 3.1 18.9 6.8" fill="#fff"/><path d="M33.9 6.4c0 2.5-6.7 4.5-15 4.5s-15-2-15-4.5 6.7-4.5 15-4.5 15 2 15 4.5" fill="#7fba00"/><path d="M30.8 9.2c2-.8 3.1-1.7 3.1-2.8 0-2.5-6.7-4.5-15-4.5s-15 2-15 4.5c0 1 1.2 2 3.1 2.8 2.7-1.1 7-1.8 11.9-1.8 4.8 0 9.1.7 11.9 1.8" fill="#b8d432"/><path d="M18.6 50V32c-2.8 0-5.2-1.5-6.6-3.7-1.4 2.2-3.7 3.7-6.5 3.7-2.2 0-4.1-.9-5.5-2.4v13.6c0 3.7 8.3 6.7 18.6 6.8zm.3 0z" fill="#3999c6"/><g fill="#59b4d9"><path d="M18.6 50zM32 32c-2.8 0-5.3-1.5-6.7-3.7-1.3 2.2-3.7 3.6-6.5 3.7v18c10.4 0 18.9-3.1 18.9-6.8V29.5C36.3 31 34.3 32 32 32z"/><path d="M18.7 32l-.1 18h.2V32h-.1z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Data_Lake_Analytics.svg b/src/main/webapp/img/lib/mscae/Data_Lake_Analytics.svg index 26a79aeba35acdd1e84d486a962421027c5afb57..d637874b773857c65675debc41f2bd581785e3a8 100644 --- a/src/main/webapp/img/lib/mscae/Data_Lake_Analytics.svg +++ b/src/main/webapp/img/lib/mscae/Data_Lake_Analytics.svg @@ -1,20 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="-549 251 100 100" style="enable-background:new -549 251 100 100;" xml:space="preserve"> - <g> - <path fill="#a0a1a2" d="M-466.3,342.8h-65.5c-5,0-9.1-4.1-9.1-9.1v-65.5c0-5,4.1-9.1,9.1-9.1h65.5c5,0,9.1,4.1,9.1,9.1v65.5 - C-457.2,338.7-461.3,342.8-466.3,342.8z M-531.8,265.1c-1.7,0-3,1.4-3,3v65.5c0,1.7,1.4,3,3,3h65.5c1.7,0,3-1.4,3-3v-65.5 - c0-1.7-1.4-3-3-3H-531.8z"/> - <g> - <path fill="#7a7a7a" d="M-507.9,251.9c-2.2-1-4.8-1.2-7.1-0.3c-2.3,0.8-4.2,2.5-5.2,4.8l-1.4,2.9h29.5L-507.9,251.9z"/> - <path fill="#7a7a7a" d="M-449.6,285c-0.8-2.3-2.5-4.2-4.8-5.2l-2.9-1.4V308l7.4-15.8C-448.8,289.9-448.7,287.4-449.6,285z"/> - <path fill="#7a7a7a" d="M-548.1,316.7c-1,2.2-1.2,4.8-0.3,7.1c0.8,2.3,2.5,4.2,4.8,5.2l2.9,1.4v-29.5L-548.1,316.7z"/> - <path fill="#7a7a7a" d="M-483.3,350.1c1.2,0.6,2.6,0.9,3.9,0.9c1.1,0,2.1-0.2,3.2-0.6c2.3-0.8,4.2-2.5,5.2-4.8l0,0l1.4-2.9h-29.5 - L-483.3,350.1z"/> - </g> - <path fill="#FFFFFF" d="M-531.8,265.1c-1.7,0-3,1.4-3,3v65.5c0,1.7,1.4,3,3,3h65.5c1.7,0,3-1.4,3-3v-65.5c0-1.7-1.4-3-3-3H-531.8z"/> - <path fill="#59b4d9" d="M-484.6,294.7L-484.6,294.7h-12.7l5.3-17.7c0.1-0.5-0.1-1-0.5-1.2c-0.1-0.1-0.3-0.1-0.4-0.1 - c-0.3,0-0.6,0.2-0.8,0.4l-20.5,29.9c-0.2,0.3-0.2,0.7-0.1,1c0.2,0.3,0.5,0.5,0.9,0.5h12.3l-5.5,18c-0.1,0.5,0.1,1,0.5,1.2 - c0.1,0.1,0.3,0.1,0.4,0.1c0.3,0,0.6-0.2,0.8-0.4l21.1-30.2c0.1-0.2,0.2-0.4,0.2-0.6C-483.6,295.1-484.1,294.7-484.6,294.7z"/> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="-549 251 100 100"><path fill="#a0a1a2" d="M-466.3 342.8h-65.5c-5 0-9.1-4.1-9.1-9.1v-65.5c0-5 4.1-9.1 9.1-9.1h65.5c5 0 9.1 4.1 9.1 9.1v65.5c0 5-4.1 9.1-9.1 9.1zm-65.5-77.7a3.01 3.01 0 0 0-3 3v65.5a3.01 3.01 0 0 0 3 3h65.5a3.01 3.01 0 0 0 3-3v-65.5a3.01 3.01 0 0 0-3-3h-65.5z"/><path d="M-507.9 251.9c-2.2-1-4.8-1.2-7.1-.3-2.3.8-4.2 2.5-5.2 4.8l-1.4 2.9h29.5l-15.8-7.4zm58.3 33.1c-.8-2.3-2.5-4.2-4.8-5.2l-2.9-1.4V308l7.4-15.8c1.1-2.3 1.2-4.8.3-7.2zm-98.5 31.7c-1 2.2-1.2 4.8-.3 7.1.8 2.3 2.5 4.2 4.8 5.2l2.9 1.4v-29.5l-7.4 15.8zm64.8 33.4a8.91 8.91 0 0 0 3.9.9c1.1 0 2.1-.2 3.2-.6 2.3-.8 4.2-2.5 5.2-4.8l1.4-2.9h-29.5l15.8 7.4z" fill="#7a7a7a"/><path fill="#fff" d="M-531.8,265.1c-1.7,0-3,1.4-3,3v65.5c0,1.7,1.4,3,3,3h65.5c1.7,0,3-1.4,3-3v-65.5c0-1.7-1.4-3-3-3H-531.8z"/><path fill="#59b4d9" d="M-484.6 294.7h-12.7l5.3-17.7c.1-.5-.1-1-.5-1.2-.1-.1-.3-.1-.4-.1-.3 0-.6.2-.8.4l-20.5 29.9c-.2.3-.2.7-.1 1 .2.3.5.5.9.5h12.3l-5.5 18c-.1.5.1 1 .5 1.2.1.1.3.1.4.1.3 0 .6-.2.8-.4l21.1-30.2c.1-.2.2-.4.2-.6 0-.5-.5-.9-1-.9z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Data_Lake_Storage.svg b/src/main/webapp/img/lib/mscae/Data_Lake_Storage.svg new file mode 100644 index 0000000000000000000000000000000000000000..b495c616575ec32246b2b350da338033cfec04c2 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Data_Lake_Storage.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="45.559"><path d="M44 45.56H6a6 6 0 0 1-6-6v-36h50v36a6 6 0 0 1-6 6z" fill="#3e3e3e"/><use xlink:href="#B" fill="#804998"/><g fill="#fff"><use xlink:href="#B" opacity=".1"/><use xlink:href="#C" opacity=".2"/></g><path d="M41.45 2.56c-2.235 0-4.16-.953-5.038-2.326a.49.49 0 0 0-.827-.002C34.7 1.605 32.757 2.56 30.5 2.56s-4.202-.956-5.087-2.33a.49.49 0 0 0-.826 0c-.885 1.375-2.83 2.33-5.087 2.33s-4.196-.952-5.082-2.324a.49.49 0 0 0-.828.003c-.873 1.37-2.778 2.32-5 2.32-1.49 0-2.84-.432-3.83-1.133-.323-.228-.77.026-.77.42v9.712h42v-9.65c0-.39-.438-.647-.762-.428-.99.67-2.322 1.08-3.788 1.08z" fill="#59b4d9"/><path d="M41.45 17.56c-2.235 0-4.16-.953-5.038-2.326a.49.49 0 0 0-.827-.002c-.886 1.374-2.828 2.328-5.085 2.328s-4.202-.956-5.087-2.33a.49.49 0 0 0-.826 0c-.885 1.375-2.83 2.33-5.087 2.33s-4.196-.952-5.082-2.324a.49.49 0 0 0-.828.003c-.873 1.37-2.778 2.32-5 2.32-1.49 0-2.84-.432-3.83-1.133-.323-.228-.77.026-.77.42v9.712h42V15.846c-1.003 1.035-2.666 1.713-4.55 1.713z" fill="#b8d432"/><use xlink:href="#C" y="-15" opacity=".2" fill="#fff"/><defs ><path id="B" d="M41.45 32.56c-2.235 0-4.16-.953-5.038-2.326a.49.49 0 0 0-.827-.002c-.886 1.374-2.828 2.328-5.085 2.328s-4.202-.956-5.087-2.33a.49.49 0 0 0-.826 0c-.885 1.375-2.83 2.33-5.087 2.33s-4.196-.952-5.082-2.324a.49.49 0 0 0-.828.003c-.873 1.37-2.778 2.32-5 2.32-1.49 0-2.84-.432-3.83-1.133-.323-.228-.77.026-.77.42v9.712h42V30.846c-1.003 1.035-2.666 1.713-4.55 1.713z"/><path id="C" d="M41.45 32.56c-2.235 0-4.16-.953-5.038-2.326a.49.49 0 0 0-.827-.002c-.886 1.374-2.828 2.328-5.085 2.328s-4.202-.956-5.087-2.33a.49.49 0 0 0-.826 0c-.885 1.375-2.83 2.33-5.087 2.33s-4.196-.952-5.082-2.324a.49.49 0 0 0-.828.003c-.873 1.37-2.778 2.32-5 2.32-1.49 0-2.84-.432-3.83-1.133-.323-.228-.77.026-.77.42v1.9c.982 1.1 2.674 1.81 4.6 1.81 2.687 0 4.92-1.402 5.4-3.254.49 1.852 2.763 3.254 5.5 3.254s5.013-1.404 5.5-3.258c.487 1.854 2.762 3.258 5.5 3.258s5.01-1.403 5.5-3.256c.484 1.853 2.738 3.256 5.45 3.256 1.885 0 3.547-.678 4.55-1.713v-3c-1.003 1.035-2.666 1.713-4.55 1.713z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Data_Lake_Store.svg b/src/main/webapp/img/lib/mscae/Data_Lake_Store.svg index aaa2571aa7a55fb8fd95be5744cf94b71309a6d9..871cf5d8cbdcda37fe3978a75fe5f5277aeaa9fe 100644 --- a/src/main/webapp/img/lib/mscae/Data_Lake_Store.svg +++ b/src/main/webapp/img/lib/mscae/Data_Lake_Store.svg @@ -1,56 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - viewBox="-549 251 100 78.5" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure Data Lake Store_COLOR.svg" - width="100" - height="78.5"><metadata - id="metadata13"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs11" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview9" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="7.3282406" - inkscape:cx="27.126038" - inkscape:cy="39.310048" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><g - id="g3" - transform="translate(0,-10.7)"><path - d="M -489.9,269.8 -492.8,264.8 C -493.9,262.9 -496,261.7 -498.2,261.7 L -542.8,261.7 C -546.2,261.7 -549,264.5 -549,267.9 L -549,270.8 -549,271.1 -488.8,271.1 C -489.3,270.8 -489.6,270.3 -489.9,269.8 Z" - id="path5" - inkscape:connector-curvature="0" - style="fill:#3999c6" /><path - d="M -452.9,274.3 -549,274.3 -549,278.9 -549,334 C -549,337.4 -546.2,340.2 -542.8,340.2 L -455.2,340.2 C -451.8,340.2 -449,337.4 -449,334 L -449,280 C -449,277.5 -450.6,275.3 -452.9,274.3 Z M -486.3,304.3 -504,329.6 C -504.2,329.8 -504.4,330 -504.7,330 -504.8,330 -505,330 -505.1,329.9 -505.5,329.7 -505.7,329.3 -505.5,328.9 L -500.9,313.8 -511.2,313.8 C -511.5,313.8 -511.8,313.6 -512,313.3 -512.1,313 -512.1,312.7 -511.9,312.4 L -494.7,287.4 C -494.5,287.2 -494.3,287 -494,287 -493.9,287 -493.8,287 -493.6,287.1 -493.2,287.3 -493,287.7 -493.2,288.1 L -497.6,302.9 -487,302.9 -487,302.9 C -486.5,302.9 -486.1,303.3 -486.1,303.8 -486.1,304 -486.2,304.1 -486.3,304.3 Z" - id="path7" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /></g></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" viewBox="-549 251 100 78.5" width="100" height="78.5"><path d="M-489.9 259.1l-2.9-5a6.3 6.3 0 0 0-5.4-3.1h-44.6c-3.4 0-6.2 2.8-6.2 6.2v3.2h60.2c-.5-.3-.8-.8-1.1-1.3z" fill="#3999c6"/><path d="M-452.9 263.6H-549v59.7c0 3.4 2.8 6.2 6.2 6.2h87.6c3.4 0 6.2-2.8 6.2-6.2v-54c0-2.5-1.6-4.7-3.9-5.7zm-33.4 30l-17.7 25.3c-.2.2-.4.4-.7.4-.1 0-.3 0-.4-.1-.4-.2-.6-.6-.4-1l4.6-15.1h-10.3c-.3 0-.6-.2-.8-.5-.1-.3-.1-.6.1-.9l17.2-25c.2-.2.4-.4.7-.4.1 0 .2 0 .4.1.4.2.6.6.4 1l-4.4 14.8h10.6c.5 0 .9.4.9.9 0 .2-.1.3-.2.5z" fill="#59b4d9"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Data_Warehouse.svg b/src/main/webapp/img/lib/mscae/Data_Warehouse.svg index 0ee3c82fd77001a77d69dfc011cca2348854c52d..5314d24a087b04073bdf9475f5e7a362469d328c 100644 --- a/src/main/webapp/img/lib/mscae/Data_Warehouse.svg +++ b/src/main/webapp/img/lib/mscae/Data_Warehouse.svg @@ -1,175 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="372.89999" - height="362.60001" - viewBox="0 0 372.89999 362.60001" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure Data Warehouse_COLOR.svg"><metadata - id="metadata78"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs76" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview74" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="1.2954622" - inkscape:cx="230.45437" - inkscape:cy="96.694132" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><g - id="Layer_4" - transform="translate(-17.5,-14.9)"><rect - x="107.3" - y="128.60001" - style="fill:#7fbb42" - width="35.700001" - height="35.700001" - id="rect4" /><rect - x="79" - y="225.39999" - style="fill:#7fbb42" - width="35.700001" - height="35.700001" - id="rect6" /><rect - x="129.8" - y="225.39999" - style="fill:#7fbb42" - width="35.700001" - height="35.700001" - id="rect8" /><rect - x="180.10001" - y="225.39999" - style="fill:#7fbb42" - width="35.700001" - height="35.700001" - id="rect10" /><rect - x="79" - y="177" - style="fill:#7fbb42" - width="35.700001" - height="35.700001" - id="rect12" /><rect - x="129.8" - y="177" - style="fill:#7fbb42" - width="35.700001" - height="35.700001" - id="rect14" /><polygon - style="fill:#3999c6" - points="46.2,111.4 46.2,262.3 70.2,262.3 70.2,111.4 245,111.4 245,252.7 271.4,252.7 271.4,111.4 297.7,111.4 297.7,89.6 158.1,14.9 17.5,89.6 17.5,111.4 " - id="polygon16" /><polygon - style="opacity:0.8;fill:#b8d433;enable-background:new" - points="107.3,133.2 107.3,128.6 143,128.6 143,164.3 138.9,164.3 138.9,133.2 " - id="polygon18" /><polygon - style="opacity:0.5;fill:#b8d433;enable-background:new" - points="143,159.8 143,164.3 107.3,164.3 107.3,128.6 111.4,128.6 111.4,159.8 " - id="polygon20" /><polygon - style="opacity:0.8;fill:#b8d433;enable-background:new" - points="79,181.6 79,177 114.7,177 114.7,212.7 110.7,212.7 110.7,181.6 " - id="polygon22" /><polygon - style="opacity:0.5;fill:#b8d433;enable-background:new" - points="114.7,208.1 114.7,212.7 79,212.7 79,177 83.1,177 83.1,208.1 " - id="polygon24" /><polygon - style="opacity:0.8;fill:#b8d433;enable-background:new" - points="129.8,181.6 129.8,177 165.7,177 165.7,212.7 161.4,212.7 161.4,181.6 " - id="polygon26" /><polygon - style="opacity:0.5;fill:#b8d433;enable-background:new" - points="165.7,208.1 165.7,212.7 129.8,212.7 129.8,177 134.1,177 134.1,208.1 " - id="polygon28" /><polygon - style="opacity:0.8;fill:#b8d433;enable-background:new" - points="79,229.9 79,225.4 114.7,225.4 114.7,261.1 110.7,261.1 110.7,229.9 " - id="polygon30" /><polygon - style="opacity:0.5;fill:#b8d433;enable-background:new" - points="114.7,256.5 114.7,261.1 79,261.1 79,225.4 83.1,225.4 83.1,256.5 " - id="polygon32" /><polygon - style="opacity:0.8;fill:#b8d433;enable-background:new" - points="129.8,229.9 129.8,225.4 165.7,225.4 165.7,261.1 161.4,261.1 161.4,229.9 " - id="polygon34" /><polygon - style="opacity:0.5;fill:#b8d433;enable-background:new" - points="165.7,256.5 165.7,261.1 129.8,261.1 129.8,225.4 134.1,225.4 134.1,256.5 " - id="polygon36" /><polygon - style="opacity:0.8;fill:#b8d433;enable-background:new" - points="180.1,229.9 180.1,225.4 215.8,225.4 215.8,261.1 211.7,261.1 211.7,229.9 " - id="polygon38" /><polygon - style="opacity:0.5;fill:#b8d433;enable-background:new" - points="215.8,256.5 215.8,261.1 180.1,261.1 180.1,225.4 184.2,225.4 184.2,256.5 " - id="polygon40" /><polygon - style="opacity:0.8;fill:#b8d433;enable-background:new" - points="138.2,128.6 143,128.6 143,132.2 112.6,164.3 107.3,164.3 107.3,160.2 " - id="polygon42" /><polygon - style="opacity:0.8;fill:#b8d433;enable-background:new" - points="161,177 165.7,177 165.7,180.6 135.1,212.7 129.8,212.7 129.8,208.6 " - id="polygon44" /><polygon - style="opacity:0.8;fill:#b8d433;enable-background:new" - points="109.9,177 114.7,177 114.7,180.6 84.3,212.7 79,212.7 79,208.6 " - id="polygon46" /><polygon - style="opacity:0.8;fill:#b8d433;enable-background:new" - points="109.9,225.4 114.7,225.4 114.7,229 84.3,261.1 79,261.1 79,257 " - id="polygon48" /><polygon - style="opacity:0.8;fill:#b8d433;enable-background:new" - points="161,225.4 165.7,225.4 165.7,229 135.1,261.1 129.8,261.1 129.8,257 " - id="polygon50" /><polygon - style="opacity:0.8;fill:#b8d433;enable-background:new" - points="211,225.4 215.8,225.4 215.8,229 185.4,261.1 180.1,261.1 180.1,257 " - id="polygon52" /><g - id="g54"><path - style="fill:#3999c6" - d="M 229,192.8 229,348.2 C 229,364.2 265.2,377.4 309.7,377.4 L 309.7,192.8 229,192.8 Z" - id="path56" - inkscape:connector-curvature="0" /><path - style="fill:#5ab4d9" - d="M 308.5,377.5 309.7,377.5 C 354.3,377.5 390.4,364.3 390.4,348.3 L 390.4,192.8 308.5,192.8 308.5,377.5 Z" - id="path58" - inkscape:connector-curvature="0" /><path - style="fill:#ffffff" - d="M 390.4,192.8 C 390.4,208.8 354.2,222 309.7,222 265.2,222 229,208.9 229,192.8 229,176.7 265.2,163.6 309.7,163.6 354.2,163.6 390.4,176.5 390.4,192.8" - id="path60" - inkscape:connector-curvature="0" /><path - style="fill:#7fbb42" - d="M 373.9,191.1 C 373.9,201.6 345.2,210.5 309.7,210.5 274.2,210.5 245.5,201.9 245.5,191.1 245.5,180.6 274.2,171.7 309.7,171.7 345.2,171.7 373.9,180.4 373.9,191.1" - id="path62" - inkscape:connector-curvature="0" /><path - style="fill:#b8d433" - d="M 360.5,202.9 C 368.9,199.5 373.9,195.5 373.9,191.2 373.9,180.7 345.2,171.8 309.7,171.8 274.2,171.8 245.5,180.4 245.5,191.2 245.5,195.8 250.5,199.8 258.9,202.9 270.6,198.3 289.1,195.5 309.7,195.5 330.3,195.2 348.7,198.3 360.5,202.9" - id="path64" - inkscape:connector-curvature="0" /><g - id="g66"><path - style="fill:#ffffff" - d="M 249.1,304.2 249.1,293.2 C 251,294.9 253.2,296.1 255.6,297 258,297.7 260.4,298.2 262.5,298.2 263.9,298.2 265.1,298 266.1,297.7 267.1,297.5 268,297.2 268.7,296.7 269.4,296.2 269.9,295.7 270.1,295 270.3,294.3 270.6,293.8 270.6,293.1 270.6,292.1 270.4,291.2 269.9,290.5 269.4,289.8 268.7,289.1 267.7,288.3 266.7,287.6 265.5,287.1 264.3,286.4 263.1,285.9 261.7,285.2 260,284.5 256.2,282.8 253.3,280.9 251.4,278.8 249.5,276.4 248.5,273.8 248.5,270.4 248.5,267.8 249,265.6 249.9,263.9 250.9,262 252.3,260.5 254,259.3 255.7,258.1 257.8,257.1 260.2,256.7 262.6,256.2 265,256 267.6,256 270.2,256 272.4,256.2 274.3,256.5 276.2,256.7 278.1,257.2 279.8,257.9 L 279.8,268.2 C 279.1,267.7 278.1,267.2 277.2,266.8 276.3,266.4 275.3,266.1 274.3,265.8 273.3,265.6 272.1,265.3 271.2,265.1 270.2,264.9 269.3,264.9 268.3,264.9 267.1,264.9 265.9,264.9 264.9,265.1 263.9,265.3 263,265.6 262.3,266.1 261.6,266.6 261.1,267.1 260.6,267.5 260.1,268.2 260.1,268.7 260.1,269.4 260.1,270.1 260.3,270.8 260.8,271.6 261.3,272.3 261.8,272.8 262.7,273.5 263.4,274 264.4,274.7 265.6,275.2 266.8,275.7 268,276.4 269.4,276.9 271.3,277.6 273.2,278.6 274.7,279.5 276.4,280.5 277.6,281.4 278.8,282.6 280,283.8 280.7,285 281.4,286.7 281.9,288.1 282.4,289.8 282.4,292 282.4,294.6 281.9,297 281,298.9 280,300.8 278.6,302.3 276.7,303.5 275,304.7 272.9,305.4 270.5,305.9 268.1,306.4 265.7,306.6 263.1,306.6 260.5,306.6 257.8,306.4 255.4,305.9 252.9,305.9 250.8,305.1 249.1,304.2 Z" - id="path68" - inkscape:connector-curvature="0" /><path - style="fill:#ffffff" - d="M 311.1,307.1 C 304.2,307.1 298.4,304.7 293.9,300.2 289.6,295.6 287.2,289.7 287.2,282.2 287.2,274.5 289.4,268.3 293.9,263.5 298.5,258.7 304.2,256.3 311.6,256.3 318.5,256.3 324.3,258.7 328.6,263.2 332.9,267.7 335.1,273.7 335.1,281.4 335.1,289.1 332.9,295.3 328.4,300.1 328.2,300.3 328.2,300.3 327.9,300.6 327.7,300.8 327.7,300.8 327.4,301.1 L 339.9,313.1 324.3,313.1 317.8,306.4 C 316.2,306.8 313.8,307.1 311.1,307.1 Z M 311.6,265.9 C 307.8,265.9 304.7,267.3 302.3,270.2 299.9,273.1 298.9,276.9 298.9,281.7 298.9,286.5 300.1,290.3 302.3,293.2 304.7,296.1 307.6,297.5 311.2,297.5 315,297.5 317.9,296.1 320.3,293.4 322.5,290.5 323.7,286.7 323.7,281.9 323.7,276.9 322.5,272.8 320.3,269.9 318.3,267.3 315.4,265.9 311.6,265.9 Z" - id="path70" - inkscape:connector-curvature="0" /><path - style="fill:#ffffff" - d="M 372.7,306.1 343.5,306.1 343.5,257 354.5,257 354.5,297 372.7,297 372.7,306.1 372.7,306.1 Z" - id="path72" - inkscape:connector-curvature="0" /></g></g></g></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="372.9" height="362.6"><path d="M89.8 113.7h35.7v35.7H89.8zm-28.3 96.8h35.7v35.7H61.5zm50.8 0H148v35.7h-35.7zm50.3 0h35.7v35.7h-35.7zM61.5 162.1h35.7v35.7H61.5zm50.8 0H148v35.7h-35.7z" fill="#7fbb42"/><path d="M28.7 96.5v150.9h24V96.5h174.8v141.3h26.4V96.5h26.3V74.7L140.6 0 0 74.7v21.8z" fill="#3999c6"/><g fill="#b8d433"><path d="M89.8 118.3v-4.6h35.7v35.7h-4.1v-31.1z" opacity=".8"/><path d="M125.5 144.9v4.5H89.8v-35.7h4.1v31.2z" opacity=".5"/><path d="M61.5 166.7v-4.6h35.7v35.7h-4v-31.1z" opacity=".8"/><path d="M97.2 193.2v4.6H61.5v-35.7h4.1v31.1z" opacity=".5"/><path d="M112.3 166.7v-4.6h35.9v35.7h-4.3v-31.1z" opacity=".8"/><path d="M148.2 193.2v4.6h-35.9v-35.7h4.3v31.1z" opacity=".5"/><path d="M61.5 215v-4.5h35.7v35.7h-4V215z" opacity=".8"/><path d="M97.2 241.6v4.6H61.5v-35.7h4.1v31.1z" opacity=".5"/><path d="M112.3 215v-4.5h35.9v35.7h-4.3V215z" opacity=".8"/><path d="M148.2 241.6v4.6h-35.9v-35.7h4.3v31.1z" opacity=".5"/><path d="M162.6 215v-4.5h35.7v35.7h-4.1V215z" opacity=".8"/><path d="M198.3 241.6v4.6h-35.7v-35.7h4.1v31.1z" opacity=".5"/><path d="M120.7 113.7h4.8v3.6l-30.4 32.1h-5.3v-4.1zm22.8 48.4h4.7v3.6l-30.6 32.1h-5.3v-4.1zm-51.1 0h4.8v3.6l-30.4 32.1h-5.3v-4.1zm0 48.4h4.8v3.6l-30.4 32.1h-5.3v-4.1zm51.1 0h4.7v3.6l-30.6 32.1h-5.3v-4.1zm50 0h4.8v3.6l-30.4 32.1h-5.3v-4.1z" opacity=".8"/></g><path d="M211.5 177.9v155.4c0 16 36.2 29.2 80.7 29.2V177.9h-80.7z" fill="#3999c6"/><path d="M291 362.6h1.2c44.6 0 80.7-13.2 80.7-29.2V177.9H291v184.7z" fill="#5ab4d9"/><path d="M372.9 177.9c0 16-36.2 29.2-80.7 29.2s-80.7-13.1-80.7-29.2 36.2-29.2 80.7-29.2 80.7 12.9 80.7 29.2" fill="#fff"/><path d="M356.4 176.2c0 10.5-28.7 19.4-64.2 19.4S228 187 228 176.2c0-10.5 28.7-19.4 64.2-19.4s64.2 8.7 64.2 19.4" fill="#7fbb42"/><path d="M343 188c8.4-3.4 13.4-7.4 13.4-11.7 0-10.5-28.7-19.4-64.2-19.4s-64.2 8.6-64.2 19.4c0 4.6 5 8.6 13.4 11.7 11.7-4.6 30.2-7.4 50.8-7.4 20.6-.3 39 2.8 50.8 7.4" fill="#b8d433"/><path d="M231.6 289.3v-11c1.9 1.7 4.1 2.9 6.5 3.8 2.4.7 4.8 1.2 6.9 1.2 1.4 0 2.6-.2 3.6-.5 1-.2 1.9-.5 2.6-1s1.2-1 1.4-1.7.5-1.2.5-1.9c0-1-.2-1.9-.7-2.6s-1.2-1.4-2.2-2.2c-1-.7-2.2-1.2-3.4-1.9l-4.3-1.9c-3.8-1.7-6.7-3.6-8.6-5.7-1.9-2.4-2.9-5-2.9-8.4 0-2.6.5-4.8 1.4-6.5 1-1.9 2.4-3.4 4.1-4.6s3.8-2.2 6.2-2.6c2.4-.5 4.8-.7 7.4-.7s4.8.2 6.7.5a20.21 20.21 0 0 1 5.5 1.4v10.3c-.7-.5-1.7-1-2.6-1.4s-1.9-.7-2.9-1c-1-.2-2.2-.5-3.1-.7-1-.2-1.9-.2-2.9-.2-1.2 0-2.4 0-3.4.2s-1.9.5-2.6 1-1.2 1-1.7 1.4c-.5.7-.5 1.2-.5 1.9s.2 1.4.7 2.2c.5.7 1 1.2 1.9 1.9.7.5 1.7 1.2 2.9 1.7s2.4 1.2 3.8 1.7c1.9.7 3.8 1.7 5.3 2.6 1.7 1 2.9 1.9 4.1 3.1s1.9 2.4 2.6 4.1c.5 1.4 1 3.1 1 5.3 0 2.6-.5 5-1.4 6.9-1 1.9-2.4 3.4-4.3 4.6-1.7 1.2-3.8 1.9-6.2 2.4s-4.8.7-7.4.7-5.3-.2-7.7-.7c-2.5 0-4.6-.8-6.3-1.7zm62 2.9c-6.9 0-12.7-2.4-17.2-6.9-4.3-4.6-6.7-10.5-6.7-18 0-7.7 2.2-13.9 6.7-18.7 4.6-4.8 10.3-7.2 17.7-7.2 6.9 0 12.7 2.4 17 6.9s6.5 10.5 6.5 18.2-2.2 13.9-6.7 18.7l-1 1 12.5 12h-15.6l-6.5-6.7c-1.6.4-4 .7-6.7.7zm.5-41.2c-3.8 0-6.9 1.4-9.3 4.3s-3.4 6.7-3.4 11.5 1.2 8.6 3.4 11.5c2.4 2.9 5.3 4.3 8.9 4.3 3.8 0 6.7-1.4 9.1-4.1 2.2-2.9 3.4-6.7 3.4-11.5 0-5-1.2-9.1-3.4-12-2-2.6-4.9-4-8.7-4zm61.1 40.2H326v-49.1h11v40h18.2v9.1z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/DatabaseRestore.svg b/src/main/webapp/img/lib/mscae/DatabaseRestore.svg index fd7ca6be0f36493d24158e5dceb2ca5afbea7d2a..dc34b9f95efc43eb0a4ba34fd01c034a43ff0cca 100644 --- a/src/main/webapp/img/lib/mscae/DatabaseRestore.svg +++ b/src/main/webapp/img/lib/mscae/DatabaseRestore.svg @@ -1,95 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="37.799999" - height="50" - viewBox="0 0 37.799999 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="DatabaseRestore.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata2732"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs2730" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview2728" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="8.5" - inkscape:cx="7.787989" - inkscape:cy="14.887272" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 0,6.8 v 36.3 c 0,3.7 8.5,6.8 18.8,6.8 V 6.8 Z" - id="path2709" - inkscape:connector-curvature="0" - style="fill:#3999c6" /> -<path - d="m 18.6,50 h 0.3 c 10.5,0 18.8,-3 18.8,-6.8 V 6.8 H 18.6 Z" - id="path2711" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="m 37.8,6.8 c 0,3.7 -8.5,6.8 -18.8,6.8 C 8.7,13.6 0,10.6 0,6.8 0,3 8.5,0 18.8,0 c 10.3,0 19,3 19,6.8" - id="path2713" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -<path - d="m 33.9,6.4 c 0,2.5 -6.7,4.5 -15,4.5 -8.3,0 -15,-1.9 -15,-4.5 0,-2.6 6.7,-4.5 15,-4.5 8.3,0 15,2 15,4.5" - id="path2715" - inkscape:connector-curvature="0" - style="fill:#7fba00" /> -<path - d="M 30.7,9.2 C 32.7,8.4 33.8,7.5 33.8,6.5 33.8,4 27.1,2 18.8,2 c -8.3,0 -15,2 -15,4.5 0,1 1.2,2 3.1,2.7 2.7,-1.1 7,-1.7 11.9,-1.7 4.9,-0.1 9.2,0.6 11.9,1.7" - id="path2717" - inkscape:connector-curvature="0" - style="fill:#b8d432" /> -<path - d="M 10.4,24.9 H 8.7 v 9.9 h 1.7 c 1.5,0 2.7,-0.5 3.6,-1.4 0.8,-0.9 1.3,-2.1 1.3,-3.7 0,-1.4 -0.4,-2.6 -1.2,-3.4 -1,-0.9 -2.2,-1.4 -3.7,-1.4" - id="path2719" - inkscape:connector-curvature="0" - style="fill:#3999c6" /> -<path - d="m 27.7,27.8 c 0.4,-0.4 0.6,-0.8 0.6,-1.4 0,-1.1 -0.8,-1.7 -2.5,-1.7 h -1.3 v 3.6 H 26 c 0.7,0 1.3,-0.1 1.7,-0.5" - id="path2721" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="M 28.3,31.4 C 27.8,31.1 27.2,30.9 26.4,30.9 H 24.5 V 35 h 1.9 c 0.8,0 1.4,-0.2 1.9,-0.6 C 28.7,34 29,33.5 29,32.9 28.9,32.3 28.7,31.8 28.3,31.4" - id="path2723" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="m 10.5,38.2 2.6,-2.6 c 1.5,2.3 4.2,3.8 7.1,3.8 4.7,0 8.5,-3.7 8.4,-8.5 -0.1,-4.6 -3.9,-8.5 -8.7,-8.5 -2.7,0 -5.1,1.3 -6.6,3.3 l 4,4.3 H 7.1 V 19.3 l 3.7,3.9 C 13,20.6 16.2,19 20,19 c 6.7,0 12.2,5.4 12.4,12.1 0.1,6.6 -5.1,11.8 -11.9,11.8 -4.1,0 -7.8,-1.8 -10,-4.7 z" - id="path2725" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="37.8" height="50"><path d="M0 6.8v36.3c0 3.7 8.5 6.8 18.8 6.8V6.8z" fill="#3999c6"/><path d="M18.6 50h.3c10.5 0 18.8-3 18.8-6.8V6.8H18.6z" fill="#59b4d9"/><path d="M37.8 6.8c0 3.7-8.5 6.8-18.8 6.8s-19-3-19-6.8S8.5 0 18.8 0s19 3 19 6.8" fill="#fff"/><path d="M33.9 6.4c0 2.5-6.7 4.5-15 4.5S3.9 9 3.9 6.4s6.7-4.5 15-4.5 15 2 15 4.5" fill="#7fba00"/><path d="M30.7 9.2c2-.8 3.1-1.7 3.1-2.7 0-2.5-6.7-4.5-15-4.5s-15 2-15 4.5c0 1 1.2 2 3.1 2.7 2.7-1.1 7-1.7 11.9-1.7 4.9-.1 9.2.6 11.9 1.7" fill="#b8d432"/><path d="M10.4 24.9H8.7v9.9h1.7c1.5 0 2.7-.5 3.6-1.4.8-.9 1.3-2.1 1.3-3.7 0-1.4-.4-2.6-1.2-3.4-1-.9-2.2-1.4-3.7-1.4" fill="#3999c6"/><path d="M27.7 27.8c.4-.4.6-.8.6-1.4 0-1.1-.8-1.7-2.5-1.7h-1.3v3.6H26c.7 0 1.3-.1 1.7-.5m.6 3.6c-.5-.3-1.1-.5-1.9-.5h-1.9V35h1.9c.8 0 1.4-.2 1.9-.6.4-.4.7-.9.7-1.5-.1-.6-.3-1.1-.7-1.5" fill="#59b4d9"/><path d="M10.5 38.2l2.6-2.6c1.5 2.3 4.2 3.8 7.1 3.8 4.7 0 8.5-3.7 8.4-8.5-.1-4.6-3.9-8.5-8.7-8.5a8.24 8.24 0 0 0-6.6 3.3l4 4.3H7.1V19.3l3.7 3.9C13 20.6 16.2 19 20 19c6.7 0 12.2 5.4 12.4 12.1.1 6.6-5.1 11.8-11.9 11.8-4.1 0-7.8-1.8-10-4.7z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Database_General.svg b/src/main/webapp/img/lib/mscae/Database_General.svg index 0d353b9d3187335ecc4d7e90ba07d586e8813a2a..add15ad549e6c614e09dd7b6399647af78e0a27a 100644 --- a/src/main/webapp/img/lib/mscae/Database_General.svg +++ b/src/main/webapp/img/lib/mscae/Database_General.svg @@ -1,83 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="37.486" - height="49.688" - viewBox="0 0 37.486 49.688" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure Database General_COLOR.svg"><metadata - id="metadata25"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs23" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview21" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="10.363697" - inkscape:cx="23.355131" - inkscape:cy="16.056862" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 0,6.788 0,42.899 C 0,46.648 8.392,49.688 18.743,49.688 L 18.743,6.788 C 18.743,6.788 0,6.788 0,6.788 Z" - id="path3" - inkscape:connector-curvature="0" - style="fill:#3999c6" /><path - d="M 18.486,49.687 18.743,49.687 C 29.094,49.687 37.486,46.649 37.486,42.899 L 37.486,6.788 18.486,6.788 18.486,49.687 Z" - id="path5" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><path - d="M 37.486,6.788 C 37.486,10.537 29.094,13.576 18.743,13.576 8.392,13.576 0,10.537 0,6.788 0,3.039 8.392,0 18.743,0 29.094,0 37.486,3.039 37.486,6.788" - id="path7" - inkscape:connector-curvature="0" - style="fill:#ffffff" /><path - d="M 33.654,6.397 C 33.654,8.872 26.978,10.876 18.743,10.876 10.508,10.876 3.831,8.872 3.831,6.397 3.831,3.923 10.508,1.918 18.743,1.918 26.978,1.918 33.654,3.923 33.654,6.397" - id="path9" - inkscape:connector-curvature="0" - style="fill:#7fba00" /><path - d="M 30.53,9.134 C 32.482,8.377 33.655,7.429 33.655,6.399 33.655,3.924 26.979,1.919 18.743,1.919 10.508,1.919 3.832,3.924 3.832,6.399 3.832,7.429 5.005,8.377 6.957,9.134 9.683,8.076 13.943,7.393 18.743,7.393 23.544,7.393 27.802,8.076 30.53,9.134" - id="path11" - inkscape:connector-curvature="0" - style="fill:#b8d432" /><path - d="M 30.857,36.068 C 29.854,36.904 28.495,37.324 26.729,37.324 L 20.839,37.324 20.839,21.961 26.426,21.961 C 28.185,21.961 29.533,22.282 30.46,22.947 31.328,23.571 31.763,24.444 31.763,25.559 31.763,26.448 31.446,27.204 30.799,27.869 30.248,28.419 29.586,28.799 28.77,29.022 L 28.77,29.058 C 29.865,29.193 30.759,29.61 31.425,30.311 32.048,30.976 32.369,31.792 32.369,32.735 32.373,34.14 31.861,35.24 30.857,36.068 M 16.502,35.163 C 15.028,36.605 13.038,37.324 10.555,37.324 L 5.117,37.324 5.117,21.961 10.555,21.961 C 16.01,21.961 18.738,24.444 18.738,29.441 18.738,31.83 18,33.742 16.502,35.163" - id="path13" - inkscape:connector-curvature="0" - style="fill:#ffffff" /><path - d="M 10.271,24.765 8.567,24.765 8.567,34.519 10.291,34.519 C 11.806,34.519 12.98,34.045 13.849,33.136 14.681,32.227 15.102,31.015 15.102,29.482 15.102,28.043 14.681,26.909 13.868,26.069 13.015,25.201 11.822,24.765 10.271,24.765" - id="path15" - inkscape:connector-curvature="0" - style="fill:#3999c6" /><path - d="M 27.485,27.628 C 27.901,27.266 28.109,26.792 28.109,26.204 28.109,25.065 27.277,24.498 25.589,24.498 L 24.287,24.498 24.287,28.138 25.82,28.138 C 26.521,28.138 27.089,27.963 27.485,27.628" - id="path17" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><path - d="M 28.054,31.241 C 27.598,30.902 26.978,30.711 26.177,30.711 L 24.284,30.711 24.284,34.763 26.159,34.763 C 26.956,34.763 27.598,34.574 28.072,34.195 28.507,33.815 28.733,33.326 28.733,32.68 28.737,32.073 28.51,31.581 28.054,31.241" - id="path19" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="37.486" height="49.688"><path d="M0 6.788V42.9c0 3.75 8.392 6.79 18.743 6.79v-42.9H0z" fill="#3999c6"/><path d="M18.486 49.687h.257c10.35 0 18.743-3.038 18.743-6.788V6.788h-19v42.9z" fill="#59b4d9"/><path d="M37.486 6.788c0 3.75-8.392 6.788-18.743 6.788S0 10.537 0 6.788 8.392 0 18.743 0s18.743 3.04 18.743 6.788" fill="#fff"/><path d="M33.654 6.397c0 2.475-6.676 4.48-14.91 4.48S3.83 8.872 3.83 6.397s6.677-4.48 14.912-4.48 14.91 2.005 14.91 4.48" fill="#7fba00"/><path d="M30.53 9.134c1.952-.757 3.125-1.705 3.125-2.735 0-2.475-6.676-4.48-14.912-4.48S3.832 3.924 3.832 6.4c0 1.03 1.173 1.978 3.125 2.735 2.726-1.058 6.986-1.74 11.786-1.74s9.06.683 11.787 1.74" fill="#b8d432"/><path d="M30.857 36.068c-1.003.836-2.362 1.256-4.128 1.256h-5.9V21.96h5.587c1.76 0 3.107.32 4.034.986.868.624 1.303 1.497 1.303 2.612 0 .89-.317 1.645-.964 2.3-.55.55-1.213.93-2.03 1.153v.036c1.095.135 1.99.552 2.655 1.253.623.665.944 1.48.944 2.424.004 1.405-.508 2.505-1.512 3.333m-14.355-.905c-1.474 1.442-3.464 2.16-5.947 2.16H5.117V21.96h5.438c5.455 0 8.183 2.483 8.183 7.48 0 2.39-.738 4.3-2.236 5.722" fill="#fff"/><path d="M10.27 24.765H8.567v9.754h1.724c1.515 0 2.69-.474 3.558-1.383.832-.91 1.253-2.12 1.253-3.654 0-1.44-.42-2.573-1.234-3.413-.853-.868-2.046-1.304-3.597-1.304" fill="#3999c6"/><path d="M27.485 27.628c.416-.362.624-.836.624-1.424 0-1.14-.832-1.706-2.52-1.706h-1.302v3.64h1.533c.7 0 1.27-.175 1.665-.5m.57 3.602c-.456-.34-1.076-.53-1.877-.53h-1.893v4.052h1.875c.797 0 1.44-.2 1.913-.568.435-.38.66-.87.66-1.515.004-.607-.223-1.1-.68-1.44" fill="#59b4d9"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Databricks.svg b/src/main/webapp/img/lib/mscae/Databricks.svg index 4b222ed29b996510faf2f2857d3caf1e7cf522c8..1549e5d24672b6f407e4ce6ec029506106ba575d 100644 --- a/src/main/webapp/img/lib/mscae/Databricks.svg +++ b/src/main/webapp/img/lib/mscae/Databricks.svg @@ -1,13 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="24px" height="25.26px" viewBox="0 0 24 25.26" enable-background="new 0 0 24 25.26" xml:space="preserve"> -<title>Artboard 4</title> -<g> - <polygon fill="#DF262B" points="0,18.937 12,25.26 24,18.937 24,14.886 0,14.886 "/> - <polygon fill="#F25F32" points="12,8.562 0,14.886 12,21.209 24,14.886 "/> -</g> -<g> - <polygon fill="#DF262B" points="0,10.375 12,16.698 24,10.375 24,6.323 0,6.323 "/> - <polygon fill="#F25F32" points="12,0 0,6.323 12,12.647 24,6.323 "/> -</g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="25.26"><path fill="#df262b" d="M0 18.937l12 6.323 12-6.323v-4.05H0z"/><path fill="#f25f32" d="M12 8.562L0 14.886l12 6.323 12-6.323z"/><path fill="#df262b" d="M0 10.375l12 6.323 12-6.323V6.323H0z"/><path fill="#f25f32" d="M12 0L0 6.323l12 6.324 12-6.324z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Dedicated_Event_Hub.svg b/src/main/webapp/img/lib/mscae/Dedicated_Event_Hub.svg new file mode 100644 index 0000000000000000000000000000000000000000..85c3cb953b2ff4bba899155a98a22738d46921c7 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Dedicated_Event_Hub.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="48"><g fill="#7fba00"><use xlink:href="#B"/><use xlink:href="#B" y="7"/><use xlink:href="#B" y="-7"/></g><path d="M0 .5v6a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 1 .5-.5h21a.5.5 0 0 1 .5.5v3a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 .5-.5v-6a.5.5 0 0 0-.5-.5H.5a.5.5 0 0 0-.5.5z" fill="#7a7a7a"/><g fill="#7fba00"><use xlink:href="#B" x="11" y="9"/><use xlink:href="#B" x="11" y="16"/><use xlink:href="#B" x="11" y="2"/></g><use xlink:href="#C" fill="#7a7a7a"/><g fill="#7fba00"><use xlink:href="#B" x="22" y="18"/><use xlink:href="#B" x="29" y="14"/><use xlink:href="#B" x="29" y="21"/><use xlink:href="#B" x="36" y="18"/><use xlink:href="#B" x="22" y="25"/><use xlink:href="#B" x="22" y="11"/></g><g fill="#3999c6"><use xlink:href="#C" x="11" y="9"/><path d="M50 47.5v-6a.5.5 0 0 0-.5-.5h-2a.5.5 0 0 0-.5.5v3a.5.5 0 0 1-.5.5h-21a.5.5 0 0 1-.5-.5v-3a.5.5 0 0 0-.5-.5h-2a.5.5 0 0 0-.5.5v6a.5.5 0 0 0 .5.5h27a.5.5 0 0 0 .5-.5z"/></g><path d="M11 27H3.5a.5.5 0 0 1-.5-.5v-3a.5.5 0 0 0-.5-.5h-2a.5.5 0 0 0-.5.5v6a.5.5 0 0 0 .5.5H11zm11 9h-7.5a.5.5 0 0 1-.5-.5v-3a.5.5 0 0 0-.5-.5h-2a.5.5 0 0 0-.5.5v6a.5.5 0 0 0 .5.5H22z" fill="#7a7a7a"/><defs ><path id="B" d="M9.5 17h-4a.5.5 0 0 1-.5-.5v-3a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5z"/><path id="C" d="M11 9.5v6a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 1 .5-.5h21a.5.5 0 0 1 .5.5v3a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 .5-.5v-6a.5.5 0 0 0-.5-.5h-27a.5.5 0 0 0-.5.5z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/DevConsole.svg b/src/main/webapp/img/lib/mscae/DevConsole.svg index 2972ddba6ee6ccb0586a31e7bd7fc8be17e1c57c..8fc9861293482ea309c32f4d63ca8960dd562fdb 100644 --- a/src/main/webapp/img/lib/mscae/DevConsole.svg +++ b/src/main/webapp/img/lib/mscae/DevConsole.svg @@ -1,84 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="42.633999" - viewBox="0 0 50 42.633999" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="DevConsole.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata4169"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs4167" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview4165" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="8.5" - inkscape:cx="14.129195" - inkscape:cy="17.070388" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 0,40.627 c 0,1.108 0.898,2.007 2.007,2.007 H 47.993 C 49.102,42.634 50,41.735 50,40.627 V 8.633 H 0 Z" - id="path4152" - inkscape:connector-curvature="0" - style="fill:#3e3e3e" /> -<path - d="M 47.993,0 H 2.007 C 0.898,0 0,0.898 0,2.006 V 9.297 H 50 V 2.006 C 50,0.898 49.101,0 47.993,0 Z" - id="path4154" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<rect - y="9.2969999" - width="50" - height="3.336" - id="rect4156" - x="0" - style="opacity:0.15;fill:#ffffff" /> -<path - d="M 2.014,0 C 0.906,0 0.007,0.898 0.007,2.007 v 7.291 3.336 27.993 c 0,1.108 0.899,2.007 2.007,2.007 H 21.202 L 43.62,0 Z" - id="path4158" - inkscape:connector-curvature="0" - style="opacity:0.1;fill:#ffffff" /> -<polygon - points="16.343,31.535 16.343,31.481 7.363,26.46 7.363,25.215 18.397,31.403 18.397,31.641 7.363,37.231 7.363,35.96 " - id="polygon4160" - style="fill:#ffffff" - transform="translate(0,-3.898)" /> -<rect - x="17.621" - y="37.785" - width="11.262" - height="1.576" - id="rect4162" - style="fill:#ffffff" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="42.634"><path d="M0 40.627c0 1.108.898 2.007 2.007 2.007h45.986c1.11 0 2.007-.9 2.007-2.007V8.633H0z" fill="#3e3e3e"/><path d="M47.993 0H2.007C.898 0 0 .898 0 2.006v7.29h50v-7.29C50 .898 49.1 0 47.993 0z" fill="#a0a1a2"/><g fill="#fff"><path d="M0 9.297h50v3.336H0z" opacity=".15"/><path d="M2.014 0C.906 0 .007.898.007 2.007v38.62a2.01 2.01 0 0 0 2.007 2.007h19.188L43.62 0z" opacity=".1"/><path d="M16.343 27.637v-.054l-8.98-5.02v-1.245l11.034 6.188v.238l-11.034 5.6v-1.27zm1.277 10.148h11.262v1.576H17.62z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/DevTest_Labs.svg b/src/main/webapp/img/lib/mscae/DevTest_Labs.svg index 3b44d237274cf18f5a0319268111f1d931b3e5f9..830fd2fedaa5179f65952868f49ec5b730e051d8 100644 --- a/src/main/webapp/img/lib/mscae/DevTest_Labs.svg +++ b/src/main/webapp/img/lib/mscae/DevTest_Labs.svg @@ -1,19 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#0072C6" d="M50,25.5c0-3.2-2.6-5.8-5.8-5.8c-0.2,0-0.5,0-0.7,0c0.4-1.3,0.5-2.7,0.5-4.1C44.1,7,37.1,0,28.6,0 - C21.8,0,16,4.4,14,10.6c-1.1-0.4-2.2-0.6-3.4-0.6C4.7,10,0,14.8,0,20.7c0,5.9,4.7,10.6,10.5,10.6c0,0,0,0,0,0v0h34.1l0,0 - C47.7,31,50,28.5,50,25.5"/> -<path opacity="0.1" fill="#FFFFFF" d="M16.2,31.3c-1.4-1.4-2.4-3.2-2.9-5.2c-1.3-5.7,2.2-11.4,7.9-12.7c1.2-0.3,2.4-0.3,3.5-0.2 - c0.5-5.4,3.8-10.1,8.6-12.5C31.8,0.3,30.3,0,28.6,0C21.8,0,16,4.4,14,10.6c-1.1-0.4-2.2-0.6-3.4-0.6C4.7,10,0,14.8,0,20.7 - c0,5.9,4.7,10.6,10.5,10.6c0,0,0,0,0,0v0H16.2z"/> -<path fill="#59B4D9" d="M46.3,46.3L35.8,28v-7.4H36c1.3,0,2.3-1,2.3-2.3S37.2,16,36,16H24.4c-1.3,0-2.3,1-2.3,2.3s1,2.3,2.3,2.3h0.2 - V28L14,46.3c-1.2,2-0.2,3.7,2.1,3.7h28.1C46.6,50,47.5,48.4,46.3,46.3z"/> -<path fill="#804998" d="M37.6,38.5h-5c0.1,0.3,0.2,0.6,0.2,0.9c0,1.2-1,2.1-2.1,2.1s-2.1-1-2.1-2.1c0-0.3,0.1-0.7,0.2-0.9h-6.1 - L18.4,46H42L37.6,38.5z"/> -<path fill="#68217A" d="M30.7,41.5c1.2,0,2.1-1,2.1-2.1c0-0.3-0.1-0.7-0.2-0.9h-3.8c-0.1,0.3-0.2,0.6-0.2,0.9 - C28.6,40.6,29.6,41.5,30.7,41.5z"/> -<circle fill="#68217A" cx="33.4" cy="43.2" r="1"/> -<path opacity="0.25" fill="#FFFFFF" d="M14,46.3L24.6,28v-7.4h-0.2c-1.3,0-2.3-1-2.3-2.3s1-2.3,2.3-2.3h5V28l-5.6,22h-7.7 - C13.8,50,12.9,48.4,14,46.3z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path fill="#0072c6" d="M50 25.5c0-3.2-2.6-5.8-5.8-5.8h-.7c.4-1.3.5-2.7.5-4.1C44.1 7 37.1 0 28.6 0 21.8 0 16 4.4 14 10.6c-1.1-.4-2.2-.6-3.4-.6C4.7 10 0 14.8 0 20.7s4.7 10.6 10.5 10.6h34.1c3.1-.3 5.4-2.8 5.4-5.8"/><path opacity=".1" fill="#fff" d="M16.2 31.3c-1.4-1.4-2.4-3.2-2.9-5.2-1.3-5.7 2.2-11.4 7.9-12.7 1.2-.3 2.4-.3 3.5-.2.5-5.4 3.8-10.1 8.6-12.5-1.5-.4-3-.7-4.7-.7C21.8 0 16 4.4 14 10.6c-1.1-.4-2.2-.6-3.4-.6C4.7 10 0 14.8 0 20.7s4.7 10.6 10.5 10.6h5.7z"/><path fill="#59b4d9" d="M46.3,46.3L35.8,28v-7.4H36c1.3,0,2.3-1,2.3-2.3S37.2,16,36,16H24.4c-1.3,0-2.3,1-2.3,2.3s1,2.3,2.3,2.3h0.2 V28L14,46.3c-1.2,2-0.2,3.7,2.1,3.7h28.1C46.6,50,47.5,48.4,46.3,46.3z"/><path fill="#804998" d="M37.6 38.5h-5c.1.3.2.6.2.9 0 1.2-1 2.1-2.1 2.1s-2.1-1-2.1-2.1a2.39 2.39 0 0 1 .2-.9h-6.1L18.4 46H42l-4.4-7.5z"/><g fill="#68217a"><path d="M30.7 41.5c1.2 0 2.1-1 2.1-2.1a2.39 2.39 0 0 0-.2-.9h-3.8c-.1.3-.2.6-.2.9 0 1.2 1 2.1 2.1 2.1z"/><circle cx="33.4" cy="43.2" r="1"/></g><path opacity=".25" fill="#fff" d="M14,46.3L24.6,28v-7.4h-0.2c-1.3,0-2.3-1-2.3-2.3s1-2.3,2.3-2.3h5V28l-5.6,22h-7.7 C13.8,50,12.9,48.4,14,46.3z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Developer_Tools.svg b/src/main/webapp/img/lib/mscae/Developer_Tools.svg new file mode 100644 index 0000000000000000000000000000000000000000..4f58a7479e3ea48d63acc59b756d348f38003ae6 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Developer_Tools.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="42.058" height="45.001"><path d="M35.587 10.128l.45.45L38.283 8.7l3.775-6.2-.99-.99-5.93 3.953-1.8 2.337.45.45-11.77 12.134-2.427-2.517-2.7 2.786a4.832 4.832 0 0 1-1.258 3.865 4.262 4.262 0 0 1-3.685 1.348L0 38.08 6.65 45l11.86-12.314a4.61 4.61 0 0 1 1.348-3.865 4.262 4.262 0 0 1 3.685-1.348l2.7-2.786-2.427-2.517z" fill="#00abec"/><path d="M34.5 41.405a4.24 4.24 0 0 0 6.2 0 4.469 4.469 0 0 0 1.258-3.236 4.877 4.877 0 0 0-1.258-3.236l-13.3-13.66-1.26 1.35 2.427 2.517-1.08 1-2.7 2.786-.36.36-.54-.1a5.125 5.125 0 0 0-1.168.09zM16.927 2.924A9.24 9.24 0 0 0 7.98.266l5.22 5.476-1.432 5.28-5.237 1.355L1.4 6.904a9.838 9.838 0 0 0 2.28 9.294 9.1 9.1 0 0 0 9.038 2.569l.177.183 2.387 2.554a2.488 2.488 0 0 0 .1-.807l.018-.448-.174-.362 4.1-4.16.706.82 1.6 1.733 1.274-1.33-3.8-4.195a9.962 9.962 0 0 0-2.181-9.83z" opacity=".8" fill="#525252"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Device_Compliance.svg b/src/main/webapp/img/lib/mscae/Device_Compliance.svg new file mode 100644 index 0000000000000000000000000000000000000000..d5883224ba22d5d3647e85561d8aac68ced6c23c --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Device_Compliance.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="40.959" height="49.959"><path d="M28 41c0 1.657-1.323 3-2.956 3H2.956C1.323 44 0 42.657 0 41V3c0-1.657 1.323-3 2.956-3h22.088C26.677 0 28 1.343 28 3z" fill="#3e3e3e"/><path d="M2 5h24v33H2z" fill="#59b4d9"/><g fill="#fff"><path d="M19 2.817c0 .408-.53.738-1.186.738H10.19c-.657 0-1.19-.33-1.19-.738s.532-.74 1.19-.74h7.625c.656 0 1.186.33 1.186.74"/><path d="M22.02 0H3a3 3 0 0 0-3 3v38a3 3 0 0 0 3 3h2.6z" opacity=".15"/><path stroke-miterlimit="10" d="M17.042 26.042H39.96V48.96H17.042z" stroke="#3999c6" stroke-width="2" stroke-linejoin="round"/></g><path d="M20.26 37.613c-.11-.118-.167-.276-.16-.433s.08-.303.196-.41l1.568-1.45a.59.59 0 0 1 .402-.159.57.57 0 0 1 .432.193l4.158 4.458 7.287-9.334a.58.58 0 0 1 .466-.228.57.57 0 0 1 .362.127l1.698 1.31c.126.1.208.227.228.39.012.13-.003.306-.14.45L27.384 44.53c-.162.207-.47.22-.65.028z" fill="#3999c6"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Device_Config.svg b/src/main/webapp/img/lib/mscae/Device_Config.svg new file mode 100644 index 0000000000000000000000000000000000000000..bfddb8ed69bda53bf18102395a6bef6c4b3a5cbd --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Device_Config.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="44" height="50"><g fill-rule="evenodd"><path d="M25 37l3-7V19H16v25h12z" fill="#a0a1a2"/><path d="M25 37l3-7V19H16v25h12z" opacity=".5" fill="#e5e5e5"/></g><path d="M21.328 41.757l-.5-1.194-2.733-.896L17 39.252v-4.36l3.884-1.387.488-1.19-1.51-2.978-.322-.645 3.1-3.1 3.617 1.726 1.19-.488.563-1.715V3c0-1.657-1.323-3-2.956-3H2.956C1.323 0 0 1.343 0 3v38c0 1.657 1.323 3 2.956 3h17.318z" fill="#3e3e3e"/><path d="M21.372 32.313l-1.51-2.978-.322-.645 3.1-3.09L26 27.21V5H2v33h15v-3.11l3.884-1.387z" fill="#59b4d9"/><g fill="#fff"><path d="M19 2.817c0 .408-.53.738-1.186.738H10.19c-.657 0-1.19-.33-1.19-.738s.532-.74 1.19-.74h7.625c.656 0 1.186.33 1.186.74"/><path d="M22.02 0H3a3 3 0 0 0-3 3v38a3 3 0 0 0 3 3h2.6z" opacity=".15"/></g><path d="M44 38.404V35.44l-.416-.156-3.172-1.04-.832-2.028 1.612-3.432-2.08-2.08-.416.208-2.964 1.508-2.028-.832-1.3-3.588H29.44l-.156.416-1.04 3.172-2.028.832-3.38-1.612-2.08 2.08.208.416 1.508 2.964-.832 2.028-3.64 1.3v2.964l.416.156 3.172 1.04.832 2.028-1.612 3.432 2.08 2.08.416-.208 2.964-1.508 2.028.832 1.3 3.588h2.964l.156-.416 1.04-3.172 2.028-.832 3.432 1.612 2.08-2.08-.208-.416-1.508-2.964.832-2.028zM31 41.42c-2.444 0-4.42-1.976-4.42-4.42s1.976-4.42 4.42-4.42 4.42 1.976 4.42 4.42-1.976 4.42-4.42 4.42z" fill="#7a7a7a"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Device_Provisioning_Services.svg b/src/main/webapp/img/lib/mscae/Device_Provisioning_Services.svg new file mode 100644 index 0000000000000000000000000000000000000000..6a9e04b8c9589e9eef24f553d9db25f5898b95c2 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Device_Provisioning_Services.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="323.8" height="337.5" fill="#0072c6"><circle cx="127.9" cy="66.8" r="25"/><circle cx="185" cy="147.3" r="29.8"/><circle cx="234.9" cy="235.9" r="23.3"/><circle cx="142.4" cy="219.8" r="20.1"/><circle cx="61" cy="158.6" r="20.1"/><path d="M118.084 68.764l14.807-10.41 59.926 85.246-14.808 10.4z"/><path d="M175.34 148.528l15.71-8.992 52.958 92.518-15.71 8.992z"/><path d="M57.573 148.248l127.963-10.624 1.498 18.038L59.07 166.286z"/><path d="M131.876 216.3l45.88-76.144 15.504 9.342-45.882 76.143z"/><circle cx="33.6" cy="85.5" r="24"/><circle cx="289.6" cy="85.5" r="24"/><circle cx="168" cy="313.5" r="24"/><path d="M59.9 64.4c25.7-26.9 61.9-43.6 102-43.6 39.9 0 76 16.6 101.7 43.3a34.08 34.08 0 0 1 17.9-11.4c-1.6-1.8-3.3-3.6-5.1-5.3-14.9-14.9-32.2-26.5-51.5-34.7C204.9 4.2 183.7 0 161.8 0s-43.1 4.3-63.1 12.7c-19.3 8.2-36.6 19.8-51.5 34.7-1.8 1.8-3.5 3.6-5.2 5.4 7.3 1.9 13.4 6 17.9 11.6zm254.8 43.7c-4.8 5.3-11.2 9-18.5 10.5A141.31 141.31 0 0 1 303 162c0 65.4-44.5 120.4-104.9 136.4 2.3 4.6 3.6 9.7 3.6 15.2 0 1.9-.2 3.8-.5 5.6 8.1-2 16-4.7 23.7-7.9 19.3-8.2 36.6-19.8 51.5-34.7s26.5-32.2 34.7-51.5c8.5-20 12.7-41.2 12.7-63.1 0-18.6-3-36.7-9.1-53.9zm-178 192.7C70.8 288.9 20.8 231.3 20.8 161.9c0-15.1 2.4-29.6 6.8-43.3-7.3-1.3-13.7-5-18.6-10.1-6 17.1-9 35-9 53.4C0 183.8 4.3 205 12.7 225c8.2 19.3 19.8 36.6 34.7 51.5s32.2 26.5 51.5 34.7c11.7 5 23.9 8.5 36.4 10.5-.7-2.6-1-5.4-1-8.2-.1-4.5.8-8.8 2.4-12.7z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Devices_Groups.svg b/src/main/webapp/img/lib/mscae/Devices_Groups.svg new file mode 100644 index 0000000000000000000000000000000000000000..c6d03ea6909673d3cfc36f1bf910912cc18a6056 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Devices_Groups.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path d="M46 33c0 1.657-1.36 3-3.036 3H3.036C1.36 36 0 34.657 0 33V3c0-1.657 1.36-3 3.036-3h39.928C44.64 0 46 1.343 46 3z" fill="#3e3e3e"/><path d="M2.962 5H43v26H2.962z" fill="#3999c6"/><g fill="#fff"><path d="M26 2.69a.69.69 0 0 1-.688.688H20.9a.69.69 0 0 1-.69-.688.69.69 0 0 1 .69-.689h4.422a.69.69 0 0 1 .688.689"/><path d="M31 0H3a3 3 0 0 0-3 3v30a3 3 0 0 0 3 3h12z" opacity=".15"/></g><path d="M50 47.545C50 48.9 48.913 50 47.572 50H29.428C28.087 50 27 48.9 27 47.545v-31.1C27 15.1 28.087 14 29.428 14H47.57c1.342 0 2.43 1.1 2.43 2.455z" fill="#3e3e3e"/><path d="M29 18h19v27H29z" fill="#59b4d9"/><g fill="#fff"><path d="M42.607 16.17c0 .335-.436.606-.974.606H35.37c-.54 0-.977-.27-.977-.606s.437-.607.977-.607h6.263c.538 0 .974.272.974.607"/><path d="M45.09 14H29.464A2.46 2.46 0 0 0 27 16.455v31.09A2.46 2.46 0 0 0 29.464 50H31.6z" opacity=".15"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/DirectorySync.svg b/src/main/webapp/img/lib/mscae/DirectorySync.svg index ba42d59eb652fddd786dfcf12807ceb297953a43..2cb41bbf6bfbdb678819b06dcaea5e8a192ecc6e 100644 --- a/src/main/webapp/img/lib/mscae/DirectorySync.svg +++ b/src/main/webapp/img/lib/mscae/DirectorySync.svg @@ -1,42 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<g> - <path fill="#A0A1A2" d="M23.5,38c0,1.1-0.9,2-2,2H2c-1.1,0-2-0.9-2-2V2c0-1.1,0.9-2,2-2h19.4c1.1,0,2,0.9,2,2V38z"/> - <path opacity="0.6" fill="#1E1E1E" d="M3.5,21.6c0-1.4,1.1-2.6,2.6-2.6h11.7c1.4,0,2.6,1.1,2.6,2.6l0,0c0,1.4-1.1,2.6-2.6,2.6H6 - C4.6,24.2,3.5,23,3.5,21.6L3.5,21.6z"/> - <circle fill="#B8D432" cx="6.1" cy="21.6" r="1.7"/> - <path opacity="0.6" fill="#1E1E1E" d="M3.5,14c0-1.4,1.1-2.6,2.6-2.6h11.7c1.4,0,2.6,1.1,2.6,2.6l0,0c0,1.4-1.1,2.6-2.6,2.6H6 - C4.6,16.6,3.5,15.4,3.5,14L3.5,14z"/> - <circle fill="#B8D432" cx="6.1" cy="14" r="1.7"/> - <path opacity="0.6" fill="#1E1E1E" d="M3.5,6.5C3.5,5,4.6,3.9,6,3.9h11.7c1.4,0,2.6,1.1,2.6,2.6l0,0c0,1.4-1.1,2.6-2.6,2.6H6 - C4.6,9,3.5,7.9,3.5,6.5L3.5,6.5z"/> - <circle fill="#B8D432" cx="6.1" cy="6.5" r="1.7"/> -</g> -<g> - <path fill="#A0A1A2" d="M50,38c0,1.1-0.9,2-2,2H28.5c-1.1,0-2-0.9-2-2V2c0-1.1,0.9-2,2-2H48c1.1,0,2,0.9,2,2V38z"/> - <path opacity="0.6" fill="#1E1E1E" d="M30,21.6c0-1.4,1.1-2.6,2.6-2.6h11.7c1.4,0,2.6,1.1,2.6,2.6l0,0c0,1.4-1.1,2.6-2.6,2.6H32.5 - C31.1,24.2,30,23,30,21.6L30,21.6z"/> - <circle fill="#B8D432" cx="32.6" cy="21.6" r="1.7"/> - <path opacity="0.6" fill="#1E1E1E" d="M30,14c0-1.4,1.1-2.6,2.6-2.6h11.7c1.4,0,2.6,1.1,2.6,2.6l0,0c0,1.4-1.1,2.6-2.6,2.6H32.5 - C31.1,16.6,30,15.4,30,14L30,14z"/> - <circle fill="#B8D432" cx="32.6" cy="14" r="1.7"/> - <path opacity="0.6" fill="#1E1E1E" d="M30,6.5c0-1.4,1.1-2.6,2.6-2.6h11.7c1.4,0,2.6,1.1,2.6,2.6l0,0c0,1.4-1.1,2.6-2.6,2.6H32.5 - C31.1,9,30,7.9,30,6.5L30,6.5z"/> - <circle fill="#B8D432" cx="32.6" cy="6.5" r="1.7"/> -</g> -<g> - <path fill="#3E3E3E" d="M37.6,48c0,1.1-0.9,2-2,2H16.2c-1.1,0-2-0.9-2-2V12c0-1.1,0.9-2,2-2h19.4c1.1,0,2,0.9,2,2V48z"/> - <path fill="#1E1E1E" d="M17.6,31.6c0-1.4,1.1-2.6,2.6-2.6h11.7c1.4,0,2.6,1.1,2.6,2.6l0,0c0,1.4-1.1,2.6-2.6,2.6H20.2 - C18.7,34.2,17.6,33,17.6,31.6L17.6,31.6z"/> - <circle fill="#B8D432" cx="20.3" cy="31.6" r="1.7"/> - <path fill="#1E1E1E" d="M17.6,24c0-1.4,1.1-2.6,2.6-2.6h11.7c1.4,0,2.6,1.1,2.6,2.6l0,0c0,1.4-1.1,2.6-2.6,2.6H20.2 - C18.7,26.6,17.6,25.4,17.6,24L17.6,24z"/> - <circle fill="#B8D432" cx="20.3" cy="24" r="1.7"/> - <path fill="#1E1E1E" d="M17.6,16.5c0-1.4,1.1-2.6,2.6-2.6h11.7c1.4,0,2.6,1.1,2.6,2.6l0,0c0,1.4-1.1,2.6-2.6,2.6H20.2 - C18.7,19,17.6,17.9,17.6,16.5L17.6,16.5z"/> - <circle fill="#B8D432" cx="20.3" cy="16.5" r="1.7"/> -</g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 50 50"><style><![CDATA[.B{fill:#1e1e1e}.C{fill:#b8d432}.D{opacity:.6}]]></style><path fill="#a0a1a2" d="M23.5 38c0 1.1-.9 2-2 2H2c-1.1 0-2-.9-2-2V2C0 .9.9 0 2 0h19.4c1.1 0 2 .9 2 2v36z"/><use xlink:href="#B" class="B D"/><circle cx="6.1" cy="21.6" r="1.7" class="C"/><use xlink:href="#B" y="-7.6" class="B D"/><circle cx="6.1" cy="14" r="1.7" class="C"/><path d="M3.5 6.5C3.5 5 4.6 3.9 6 3.9h11.7c1.4 0 2.6 1.1 2.6 2.6 0 1.4-1.1 2.6-2.6 2.6H6C4.6 9 3.5 7.9 3.5 6.5z" class="B D"/><circle cx="6.1" cy="6.5" r="1.7" class="C"/><path fill="#a0a1a2" d="M50 38c0 1.1-.9 2-2 2H28.5c-1.1 0-2-.9-2-2V2c0-1.1.9-2 2-2H48c1.1 0 2 .9 2 2v36z"/><use xlink:href="#C" class="B D"/><circle cx="32.6" cy="21.6" r="1.7" class="C"/><use xlink:href="#C" y="-7.6" class="B D"/><circle cx="32.6" cy="14" r="1.7" class="C"/><path d="M30 6.5c0-1.4 1.1-2.6 2.6-2.6h11.7c1.4 0 2.6 1.1 2.6 2.6 0 1.4-1.1 2.6-2.6 2.6H32.5C31.1 9 30 7.9 30 6.5z" class="B D"/><circle cx="32.6" cy="6.5" r="1.7" class="C"/><path fill="#3e3e3e" d="M37.6 48c0 1.1-.9 2-2 2H16.2c-1.1 0-2-.9-2-2V12c0-1.1.9-2 2-2h19.4c1.1 0 2 .9 2 2v36z"/><use xlink:href="#D" class="B"/><circle cx="20.3" cy="31.6" r="1.7" class="C"/><use xlink:href="#D" y="-7.6" class="B"/><circle cx="20.3" cy="24" r="1.7" class="C"/><path d="M17.6 16.5c0-1.4 1.1-2.6 2.6-2.6h11.7c1.4 0 2.6 1.1 2.6 2.6 0 1.4-1.1 2.6-2.6 2.6H20.2c-1.5-.1-2.6-1.2-2.6-2.6z" class="B"/><circle cx="20.3" cy="16.5" r="1.7" class="C"/><defs ><path id="B" d="M3.5 21.6c0-1.4 1.1-2.6 2.6-2.6h11.7c1.4 0 2.6 1.1 2.6 2.6 0 1.4-1.1 2.6-2.6 2.6H6c-1.4 0-2.5-1.2-2.5-2.6z"/><path id="C" d="M30 21.6c0-1.4 1.1-2.6 2.6-2.6h11.7c1.4 0 2.6 1.1 2.6 2.6 0 1.4-1.1 2.6-2.6 2.6H32.5c-1.4 0-2.5-1.2-2.5-2.6z"/><path id="D" d="M17.6 31.6c0-1.4 1.1-2.6 2.6-2.6h11.7c1.4 0 2.6 1.1 2.6 2.6 0 1.4-1.1 2.6-2.6 2.6H20.2c-1.5 0-2.6-1.2-2.6-2.6z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Discard.svg b/src/main/webapp/img/lib/mscae/Discard.svg index 694576ce06521ff047ad0c2481b93c0e6431a1fa..4a39178f9157466bc18c3674ce4464b0855c6109 100644 --- a/src/main/webapp/img/lib/mscae/Discard.svg +++ b/src/main/webapp/img/lib/mscae/Discard.svg @@ -1,55 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="14" - height="14.013" - viewBox="0 0 14 14.013" - enable-background="new 0 0 16 16" - xml:space="preserve" - sodipodi:docname="Discard.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata4387"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs4385" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview4383" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="37.565048" - inkscape:cx="4.8324448" - inkscape:cy="5.7430953" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<polygon - points="8.006,5.534 3.474,1.001 1,3.475 5.52,8.007 1,12.527 3.474,15.001 7.994,10.481 12.526,15.014 15,12.54 10.467,8.007 15,3.475 12.539,1.001 " - id="polygon4380" - style="fill:#ec008c" - transform="translate(-1,-1.001)" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14.013"><path d="M7.006 4.533L2.474 0 0 2.474l4.52 4.532L0 11.526 2.474 14l4.52-4.52 4.532 4.533L14 11.54 9.467 7.006 14 2.474 11.54 0z" fill="#ec008c"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Discs.svg b/src/main/webapp/img/lib/mscae/Discs.svg index 85b9bb920a781ae79593a8a59e8362297750f0b3..6bdda1483f1c74bf221a3c837f8b6fd2da8a0aca 100644 --- a/src/main/webapp/img/lib/mscae/Discs.svg +++ b/src/main/webapp/img/lib/mscae/Discs.svg @@ -1,86 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="42.504002" - width="50" - viewBox="0 0 50 42.504002" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Discs.svg"><metadata - id="metadata27"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs25" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview23" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="10.363697" - inkscape:cx="16.94835" - inkscape:cy="10.755606" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 50,33.45 C 50,38.451 38.806,42.504 25,42.504 11.194,42.504 0,38.451 0,33.45 L 0,28.57 50,28.57 50,33.45 Z" - id="path3" - inkscape:connector-curvature="0" - style="fill:#7fba00" /><path - d="M 50,28.57 C 50,33.571 38.806,37.624 25,37.624 11.194,37.624 0,33.571 0,28.57 0,23.57 11.193,19.516 25,19.516 38.807,19.516 50,23.57 50,28.57" - id="path5" - inkscape:connector-curvature="0" - style="fill:#b8d432" /><path - d="M 33.013,28.049 C 33.013,29.379 29.425,30.456 24.999,30.456 20.573,30.456 16.984,29.379 16.984,28.049 16.984,26.719 20.573,25.642 24.999,25.642 29.425,25.642 33.013,26.72 33.013,28.049" - id="path7" - inkscape:connector-curvature="0" - style="fill:#7fba00" /><path - d="M 43.071,22.367 C 39.569,21.04 34.967,20.098 29.792,19.734 L 26.548,25.738 C 28.144,25.832 29.571,26.067 30.675,26.4 L 43.071,22.367 Z" - id="path9" - inkscape:connector-curvature="0" - style="opacity:0.25;fill:#ffffff" /><path - d="M 5.902,34.46 C 9.503,36.003 14.5,37.103 20.19,37.505 L 23.983,30.485 C 22.404,30.425 20.969,30.228 19.815,29.933 L 5.902,34.46 Z" - id="path11" - inkscape:connector-curvature="0" - style="opacity:0.25;fill:#ffffff" /><path - d="M 50,13.934 C 50,18.935 38.806,22.988 25,22.988 11.194,22.988 0,18.934 0,13.934 L 0,9.054 50,9.054 50,13.934 Z" - id="path13" - inkscape:connector-curvature="0" - style="fill:#0072c6" /><path - d="M 50,9.054 C 50,14.055 38.806,18.108 25,18.108 11.194,18.108 0,14.054 0,9.054 0,4.054 11.193,0 25,0 38.807,0 50,4.053 50,9.054" - id="path15" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><path - d="M 33.013,8.533 C 33.013,9.863 29.425,10.94 24.999,10.94 20.573,10.94 16.984,9.863 16.984,8.533 16.984,7.203 20.573,6.126 24.999,6.126 29.425,6.126 33.013,7.203 33.013,8.533" - id="path17" - inkscape:connector-curvature="0" - style="fill:#0072c6" /><path - d="M 43.071,2.801 C 39.569,1.474 34.967,0.532 29.792,0.168 L 26.548,6.172 C 28.144,6.266 29.571,6.501 30.675,6.834 L 43.071,2.801 Z" - id="path19" - inkscape:connector-curvature="0" - style="opacity:0.25;fill:#ffffff" /><path - d="M 5.902,14.894 C 9.503,16.437 14.5,17.537 20.19,17.939 L 23.983,10.919 C 22.404,10.859 20.969,10.662 19.815,10.367 L 5.902,14.894 Z" - id="path21" - inkscape:connector-curvature="0" - style="opacity:0.25;fill:#ffffff" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" height="42.504" width="50"><path d="M50 33.45c0 5-11.194 9.054-25 9.054S0 38.45 0 33.45v-4.88h50v4.88z" fill="#7fba00"/><path d="M50 28.57c0 5-11.194 9.054-25 9.054S0 33.57 0 28.57s11.193-9.054 25-9.054 25 4.054 25 9.054" fill="#b8d432"/><path d="M33.013 28.05c0 1.33-3.588 2.407-8.014 2.407s-8.015-1.077-8.015-2.407 3.59-2.407 8.015-2.407 8.014 1.078 8.014 2.407" fill="#7fba00"/><path d="M43.07 22.367c-3.502-1.327-8.104-2.27-13.28-2.633l-3.244 6.004c1.596.094 3.023.33 4.127.662l12.396-4.033zM5.902 34.46c3.6 1.543 8.598 2.643 14.288 3.045l3.793-7.02c-1.58-.06-3.014-.257-4.168-.552L5.902 34.46z" opacity=".25" fill="#fff"/><path d="M50 13.934c0 5-11.194 9.054-25 9.054S0 18.934 0 13.934v-4.88h50v4.88z" fill="#0072c6"/><path d="M50 9.054c0 5-11.194 9.054-25 9.054S0 14.054 0 9.054 11.193 0 25 0s25 4.053 25 9.054" fill="#59b4d9"/><path d="M33.013 8.533c0 1.33-3.588 2.407-8.014 2.407s-8.015-1.077-8.015-2.407S20.573 6.126 25 6.126s8.014 1.077 8.014 2.407" fill="#0072c6"/><path d="M43.07 2.8C39.57 1.474 34.967.532 29.792.168l-3.244 6.004c1.596.094 3.023.33 4.127.662L43.07 2.8zM5.902 14.894c3.6 1.543 8.598 2.643 14.288 3.045l3.793-7.02c-1.58-.06-3.014-.257-4.168-.552L5.902 14.894z" opacity=".25" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Docker.svg b/src/main/webapp/img/lib/mscae/Docker.svg index 2d93ab2c9db6e1c7ee58903f8430fb68323611a7..4af6bffbf5567e6877de6f86204bfa20cadb4ec4 100644 --- a/src/main/webapp/img/lib/mscae/Docker.svg +++ b/src/main/webapp/img/lib/mscae/Docker.svg @@ -1,150 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 20.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="41.947659" - viewBox="0 0 50 41.947659" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Logo-docker.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata621"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs619" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview617" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="25" - inkscape:cy="20.973658" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - id="docker_2_" - d="m 37.02,39.308 c 1.125,-0.964 2.25,-1.929 3.371,-2.897 0.383,-0.331 0.804,-0.674 1.184,-1.021 -0.305,-0.384 -0.815,-0.662 -1.248,-0.827 -0.874,-0.333 -1.736,-0.221 -2.537,0.242 -1.049,0.606 -1.496,1.571 -1.457,2.771 0.015,0.473 0.143,0.928 0.394,1.331 0.088,0.141 0.186,0.274 0.293,0.401 m 1.301,0.914 c 0.551,0.192 1.18,0.165 1.746,0.066 0.289,-0.123 1.029,-0.446 1.302,-0.398 l 0.043,0.007 0.039,0.019 c 0.166,0.081 0.325,0.195 0.41,0.363 0.198,0.397 0.103,0.795 -0.286,1.02 l -0.13,0.075 c -1.437,0.83 -2.966,0.715 -4.399,-0.06 -0.685,-0.37 -1.209,-0.92 -1.596,-1.59 l -0.09,-0.157 c -0.923,-1.598 -0.798,-3.279 0.242,-4.799 0.359,-0.525 0.829,-0.931 1.378,-1.248 l 0.208,-0.12 c 1.354,-0.781 2.804,-0.728 4.195,-0.042 0.747,0.369 1.353,0.919 1.77,1.642 l 0.075,0.13 c 0.303,0.525 -0.09,0.983 -0.495,1.296 -0.47,0.363 -0.945,0.8 -1.397,1.189 -1.006,0.868 -2.01,1.738 -3.015,2.607 z m 10.771,-7.27 h 0.15 c 0.455,0 0.758,0.306 0.758,0.758 0,0.627 -0.6,0.788 -1.119,0.788 -0.681,0 -1.33,0.412 -1.799,0.874 -0.585,0.577 -0.841,1.315 -0.841,2.127 v 3.669 c 0,0.421 -0.262,0.758 -0.698,0.758 h -0.119 c -0.436,0 -0.698,-0.338 -0.698,-0.758 v -3.879 c 0,-1.49 0.725,-2.705 1.934,-3.558 0.721,-0.51 1.548,-0.779 2.432,-0.779 z m -18.887,2.604 c 0.589,-0.589 1.179,-1.178 1.777,-1.757 0.167,-0.162 0.797,-0.846 1.045,-0.846 h 0.271 l 0.031,0.006 c 0.346,0.072 0.605,0.291 0.605,0.662 v 0.15 c 0,0.253 -0.297,0.548 -0.46,0.721 -0.348,0.369 -0.715,0.726 -1.071,1.087 l -1.831,1.858 c 0.788,0.79 1.576,1.581 2.358,2.377 0.216,0.22 0.433,0.441 0.646,0.664 0.075,0.079 0.186,0.178 0.25,0.288 0.068,0.103 0.109,0.219 0.109,0.342 v 0.157 l -0.009,0.036 c -0.085,0.346 -0.305,0.625 -0.688,0.625 h -0.12 c -0.251,0 -0.534,-0.284 -0.706,-0.446 -0.354,-0.334 -0.695,-0.684 -1.042,-1.025 l -1.163,-1.142 v 1.825 c 0,0.42 -0.263,0.758 -0.698,0.758 H 29.39 c -0.435,0 -0.698,-0.338 -0.698,-0.758 V 30.853 c 0,-0.421 0.263,-0.757 0.698,-0.757 h 0.119 c 0.435,0 0.698,0.336 0.698,0.757 v 4.703 z M 25.29,34.53 c -0.229,-0.107 -0.657,-0.143 -0.904,-0.152 -1.266,-0.048 -2.182,0.665 -2.719,1.782 -0.186,0.385 -0.27,0.793 -0.27,1.219 0,1.298 0.681,2.207 1.84,2.761 0.423,0.202 0.97,0.241 1.432,0.241 0.407,0 0.982,-0.249 1.343,-0.421 l 0.063,-0.03 h 0.28 l 0.031,0.006 c 0.345,0.072 0.605,0.29 0.605,0.661 v 0.15 c 0,0.923 -1.686,1.134 -2.33,1.179 -2.27,0.157 -3.968,-1.09 -4.616,-3.255 -0.113,-0.376 -0.163,-0.75 -0.163,-1.141 v -0.3 c 0,-1.643 0.815,-2.945 2.225,-3.782 0.655,-0.389 1.38,-0.585 2.142,-0.585 h 0.3 c 0.808,0 1.552,0.229 2.218,0.685 l 0.055,0.038 0.035,0.057 c 0.072,0.119 0.134,0.257 0.134,0.4 v 0.15 c 0,0.387 -0.289,0.595 -0.639,0.662 l -0.029,0.005 h -0.09 C 26.006,34.859 25.492,34.624 25.29,34.53 Z m -13.817,2.88 c 0,1.152 0.565,1.999 1.538,2.595 0.457,0.28 0.96,0.406 1.494,0.406 1.138,0 1.979,-0.577 2.565,-1.538 0.279,-0.458 0.405,-0.961 0.405,-1.494 0,-1.071 -0.516,-1.889 -1.398,-2.482 -0.483,-0.325 -1.021,-0.488 -1.603,-0.488 -1.269,0 -2.183,0.641 -2.731,1.781 -0.186,0.384 -0.27,0.793 -0.27,1.22 z m 2.851,-4.518 h 0.21 c 1.756,0 3.091,0.852 3.937,2.384 0.338,0.613 0.519,1.282 0.519,1.983 v 0.3 c 0,1.643 -0.81,2.952 -2.226,3.783 -0.656,0.385 -1.38,0.584 -2.14,0.584 h -0.3 c -1.643,0 -2.949,-0.812 -3.782,-2.226 -0.387,-0.656 -0.584,-1.38 -0.584,-2.141 v -0.3 c 0,-1.643 0.815,-2.945 2.225,-3.783 0.655,-0.389 1.38,-0.584 2.141,-0.584 z M 1.55,37.41 c 0,1.187 0.575,2.079 1.615,2.648 0.42,0.23 0.877,0.354 1.357,0.354 1.165,0 2.029,-0.549 2.624,-1.536 0.277,-0.459 0.406,-0.961 0.406,-1.496 0,-1.029 -0.487,-1.831 -1.316,-2.428 -0.503,-0.361 -1.068,-0.543 -1.685,-0.543 -1.269,0 -2.183,0.641 -2.731,1.781 -0.186,0.384 -0.27,0.793 -0.27,1.22 z m 6.002,-3.387 v -3.2 c 0,-0.42 0.263,-0.758 0.698,-0.758 h 0.12 c 0.435,0 0.697,0.338 0.697,0.758 v 6.736 c 0,1.643 -0.812,2.95 -2.226,3.782 -0.656,0.386 -1.38,0.584 -2.14,0.584 H 4.4 c -1.643,0 -2.948,-0.812 -3.782,-2.226 -0.387,-0.656 -0.584,-1.38 -0.584,-2.141 v -0.3 c 0,-1.643 0.812,-2.95 2.225,-3.784 C 2.915,33.087 3.639,32.89 4.4,32.89 h 0.301 c 1.112,0.002 2.055,0.433 2.851,1.133 z" - inkscape:connector-curvature="0" - style="clip-rule:evenodd;fill:#394d54;fill-rule:evenodd" /> -<path - id="outline_4_" - d="m 28.842,8.943 h 4.472 v 4.571 h 2.261 c 1.044,0 2.118,-0.186 3.107,-0.521 0.486,-0.165 1.031,-0.394 1.51,-0.682 -0.631,-0.824 -0.953,-1.865 -1.048,-2.89 -0.129,-1.395 0.153,-3.211 1.097,-4.303 l 0.47,-0.544 0.56,0.45 c 1.41,1.133 2.596,2.716 2.805,4.521 1.698,-0.499 3.692,-0.381 5.188,0.483 l 0.614,0.354 -0.323,0.631 c -1.266,2.47 -3.912,3.236 -6.499,3.1 -3.871,9.643 -12.3,14.208 -22.52,14.208 -5.28,0 -10.124,-1.974 -12.882,-6.658 L 7.609,21.586 7.207,20.768 C 6.275,18.706 5.965,16.447 6.175,14.19 l 0.063,-0.676 h 3.824 V 8.943 h 4.471 V 4.471 h 8.943 V 0 h 5.366 z" - inkscape:connector-curvature="0" - style="clip-rule:evenodd;fill:#394d54;fill-rule:evenodd" /> -<path - d="m 43.33,10.634 c 0.3,-2.33 -1.444,-4.16 -2.525,-5.029 -1.246,1.441 -1.44,5.217 0.515,6.807 -1.091,0.969 -3.39,1.848 -5.745,1.848 H 6.917 c -0.229,2.458 0.203,4.721 1.188,6.658 l 0.326,0.596 c 0.206,0.35 0.432,0.688 0.676,1.014 v 0 c 1.178,0.076 2.264,0.102 3.258,0.08 0,0 0,0 10e-4,0 1.953,-0.043 3.547,-0.274 4.754,-0.692 0.18,-0.062 0.376,0.033 0.438,0.212 0.062,0.18 -0.033,0.376 -0.213,0.438 -0.161,0.056 -0.328,0.108 -0.501,0.157 0,0 0,0 -0.001,0 -0.951,0.271 -1.971,0.454 -3.286,0.536 0.078,0.001 -0.081,0.012 -0.082,0.012 -0.045,0.003 -0.101,0.009 -0.146,0.012 -0.518,0.029 -1.077,0.035 -1.648,0.035 -0.625,0 -1.241,-0.012 -1.929,-0.047 l -0.018,0.012 c 2.388,2.684 6.121,4.293 10.801,4.293 9.905,0 18.306,-4.391 22.026,-14.248 2.639,0.271 5.176,-0.402 6.33,-2.655 -1.837,-1.061 -4.2,-0.723 -5.561,-0.039 z" - id="path580" - inkscape:connector-curvature="0" - style="fill:#00aada" /> -<path - d="m 43.33,10.634 c 0.3,-2.33 -1.444,-4.16 -2.525,-5.029 -1.246,1.441 -1.44,5.217 0.515,6.807 -1.091,0.969 -3.39,1.848 -5.745,1.848 H 8.614 c -0.117,3.764 1.28,6.621 3.751,8.348 0,0 0,0 10e-4,0 1.953,-0.043 3.547,-0.274 4.754,-0.692 0.18,-0.062 0.376,0.033 0.438,0.212 0.062,0.18 -0.033,0.376 -0.213,0.438 -0.161,0.056 -0.328,0.108 -0.501,0.157 0,0 0,0 -0.001,0 -0.951,0.271 -2.058,0.478 -3.374,0.559 0,0 -0.032,-0.03 -0.032,-0.03 3.371,1.729 8.258,1.723 13.862,-0.43 6.283,-2.414 12.13,-7.013 16.21,-12.273 -0.062,0.027 -0.122,0.056 -0.179,0.085 z" - id="path582" - inkscape:connector-curvature="0" - style="fill:#24b8eb" /> -<path - d="m 6.971,17.245 c 0.178,1.316 0.563,2.549 1.134,3.672 l 0.326,0.596 c 0.206,0.35 0.432,0.688 0.676,1.014 1.178,0.076 2.265,0.102 3.259,0.08 1.953,-0.043 3.547,-0.274 4.754,-0.692 0.18,-0.062 0.376,0.033 0.438,0.212 0.062,0.18 -0.033,0.376 -0.213,0.438 -0.161,0.056 -0.328,0.108 -0.501,0.157 0,0 0,0 -0.001,0 -0.951,0.271 -2.053,0.466 -3.368,0.547 -0.045,0.003 -0.124,0.003 -0.169,0.006 -0.518,0.029 -1.071,0.047 -1.642,0.047 -0.625,0 -1.264,-0.012 -1.952,-0.047 2.388,2.684 6.145,4.299 10.825,4.299 8.479,0 15.856,-3.219 20.138,-10.33 H 6.971 Z" - id="path584" - inkscape:connector-curvature="0" - style="fill:#008bb8" /> -<path - d="m 8.872,17.245 c 0.507,2.311 1.725,4.126 3.493,5.362 1.953,-0.043 3.547,-0.274 4.754,-0.692 0.18,-0.062 0.376,0.033 0.438,0.212 0.062,0.18 -0.033,0.376 -0.213,0.438 -0.161,0.056 -0.328,0.108 -0.501,0.157 0,0 0,0 -0.001,0 -0.951,0.271 -2.076,0.466 -3.392,0.547 3.37,1.729 8.244,1.704 13.847,-0.448 3.39,-1.302 6.652,-3.241 9.579,-5.576 z" - id="path586" - inkscape:connector-curvature="0" - style="fill:#039bc6" /> -<path - d="m 14.053,10.011 h 0.306 v 3.23 h -0.306 z m -0.587,0 h 0.318 v 3.23 h -0.318 z m -0.587,0 h 0.318 v 3.23 h -0.318 z m -0.588,0 h 0.318 v 3.23 h -0.318 z m -0.587,0 h 0.318 v 3.23 h -0.318 z m -0.575,0 h 0.306 v 3.23 H 11.129 Z M 10.807,9.688 h 3.875 v 3.876 h -3.875 z" - id="path588" - inkscape:connector-curvature="0" - style="clip-rule:evenodd;fill:#00acd3;fill-rule:evenodd" /> -<path - d="m 18.525,5.539 h 0.306 v 3.23 h -0.306 z m -0.587,0 h 0.318 v 3.23 h -0.318 z m -0.588,0 h 0.318 v 3.23 H 17.35 Z m -0.587,0 h 0.318 v 3.23 h -0.318 z m -0.587,0 h 0.318 v 3.23 h -0.318 z m -0.575,0 h 0.306 v 3.23 H 15.601 Z M 15.278,5.216 h 3.876 v 3.875 h -3.876 z" - id="path590" - inkscape:connector-curvature="0" - style="clip-rule:evenodd;fill:#00acd3;fill-rule:evenodd" /> -<path - d="m 18.525,10.011 h 0.306 v 3.23 h -0.306 z m -0.587,0 h 0.318 v 3.23 h -0.318 z m -0.588,0 h 0.318 v 3.23 H 17.35 Z m -0.587,0 h 0.318 v 3.23 h -0.318 z m -0.587,0 h 0.318 v 3.23 h -0.318 z m -0.575,0 h 0.306 v 3.23 H 15.601 Z M 15.278,9.688 h 3.876 v 3.876 h -3.876 z" - id="path592" - inkscape:connector-curvature="0" - style="clip-rule:evenodd;fill:#20c2ef;fill-rule:evenodd" /> -<path - d="m 22.997,10.011 h 0.306 v 3.23 h -0.306 z m -0.588,0 h 0.318 v 3.23 h -0.318 z m -0.587,0 h 0.318 v 3.23 h -0.318 z m -0.587,0 h 0.318 v 3.23 h -0.318 z m -0.587,0 h 0.318 v 3.23 h -0.318 z m -0.575,0 h 0.306 v 3.23 H 20.073 Z M 19.75,9.688 h 3.876 v 3.876 H 19.75 Z" - id="path594" - inkscape:connector-curvature="0" - style="clip-rule:evenodd;fill:#00acd3;fill-rule:evenodd" /> -<path - d="m 22.997,5.539 h 0.306 v 3.23 h -0.306 z m -0.588,0 h 0.318 v 3.23 h -0.318 z m -0.587,0 h 0.318 v 3.23 h -0.318 z m -0.587,0 h 0.318 v 3.23 h -0.318 z m -0.587,0 h 0.318 v 3.23 h -0.318 z m -0.575,0 h 0.306 v 3.23 H 20.073 Z M 19.75,5.216 h 3.876 V 9.091 H 19.75 Z" - id="path596" - inkscape:connector-curvature="0" - style="clip-rule:evenodd;fill:#20c2ef;fill-rule:evenodd" /> -<path - d="m 27.468,10.011 h 0.306 v 3.23 h -0.306 z m -0.587,0 h 0.318 v 3.23 h -0.318 z m -0.587,0 h 0.318 v 3.23 h -0.318 z m -0.587,0 h 0.318 v 3.23 h -0.318 z m -0.588,0 h 0.318 v 3.23 h -0.318 z m -0.575,0 h 0.306 v 3.23 H 24.544 Z M 24.221,9.688 h 3.876 v 3.876 h -3.876 z" - id="path598" - inkscape:connector-curvature="0" - style="clip-rule:evenodd;fill:#20c2ef;fill-rule:evenodd" /> -<path - d="m 27.468,5.539 h 0.306 v 3.23 h -0.306 z m -0.587,0 h 0.318 v 3.23 h -0.318 z m -0.587,0 h 0.318 v 3.23 h -0.318 z m -0.587,0 h 0.318 v 3.23 h -0.318 z m -0.588,0 h 0.318 v 3.23 h -0.318 z m -0.575,0 h 0.306 v 3.23 H 24.544 Z M 24.221,5.216 h 3.876 v 3.875 h -3.876 z" - id="path600" - inkscape:connector-curvature="0" - style="clip-rule:evenodd;fill:#00acd3;fill-rule:evenodd" /> -<path - d="m 27.468,1.068 h 0.306 v 3.23 h -0.306 z m -0.587,0 h 0.318 v 3.23 h -0.318 z m -0.587,0 h 0.318 v 3.23 h -0.318 z m -0.587,0 h 0.318 v 3.23 h -0.318 z m -0.588,0 h 0.318 v 3.23 h -0.318 z m -0.575,0 h 0.306 v 3.23 H 24.544 Z M 24.221,0.745 h 3.876 v 3.876 h -3.876 z" - id="path602" - inkscape:connector-curvature="0" - style="clip-rule:evenodd;fill:#20c2ef;fill-rule:evenodd" /> -<path - d="m 31.94,10.011 h 0.306 v 3.23 H 31.94 Z m -0.587,0 h 0.318 v 3.23 h -0.318 z m -0.588,0 h 0.318 v 3.23 h -0.318 z m -0.587,0 h 0.318 v 3.23 h -0.318 z m -0.587,0 h 0.318 v 3.23 h -0.318 z m -0.575,0 h 0.306 v 3.23 H 29.016 Z M 28.693,9.688 h 3.876 v 3.876 h -3.876 z" - id="path604" - inkscape:connector-curvature="0" - style="clip-rule:evenodd;fill:#00acd3;fill-rule:evenodd" /> -<path - d="m 18.911,19.847 c 0.59,0 1.069,0.479 1.069,1.069 0,0.59 -0.479,1.069 -1.069,1.069 -0.591,0 -1.069,-0.479 -1.069,-1.069 0,-0.59 0.479,-1.069 1.069,-1.069" - id="path606" - inkscape:connector-curvature="0" - style="clip-rule:evenodd;fill:#d4edf1;fill-rule:evenodd" /> -<path - d="m 18.911,20.15 c 0.098,0 0.191,0.018 0.277,0.052 -0.093,0.054 -0.156,0.155 -0.156,0.271 0,0.173 0.14,0.312 0.313,0.312 0.118,0 0.221,-0.066 0.274,-0.163 0.037,0.09 0.058,0.19 0.058,0.294 0,0.423 -0.343,0.766 -0.766,0.766 -0.423,0 -0.766,-0.343 -0.766,-0.766 0,-0.423 0.343,-0.766 0.766,-0.766" - id="path608" - inkscape:connector-curvature="0" - style="clip-rule:evenodd;fill:#394d54;fill-rule:evenodd" /> -<path - d="m 0,17.631 h 23.42 2.897 23.419 c -1.083,-0.275 -3.426,-0.646 -3.04,-2.065 -1.969,2.279 -6.718,1.599 -7.916,0.475 -1.335,1.936 -9.104,1.2 -9.646,-0.308 -1.673,1.964 -6.858,1.964 -8.531,0 -0.542,1.508 -8.311,2.244 -9.646,0.308 C 9.759,17.165 5.01,17.845 3.041,15.566 3.427,16.986 1.083,17.357 0,17.631" - id="path610" - inkscape:connector-curvature="0" - style="clip-rule:evenodd;fill:#394d54;fill-rule:evenodd" /> -<path - d="m 21.753,27.551 c -2.648,-1.256 -4.101,-2.964 -4.91,-4.829 -0.984,0.281 -2.166,0.46 -3.539,0.537 -0.518,0.029 -1.062,0.044 -1.633,0.044 -0.658,0 -1.353,-0.019 -2.081,-0.058 2.428,2.427 5.415,4.295 10.946,4.329 0.408,10e-4 0.814,-0.007 1.217,-0.023 z" - id="path612" - inkscape:connector-curvature="0" - style="fill:#bfdbe0" /> -<path - d="m 17.827,24.443 c -0.366,-0.497 -0.722,-1.122 -0.983,-1.721 -0.984,0.281 -2.166,0.46 -3.54,0.538 0.944,0.512 2.293,0.986 4.523,1.183 z" - id="path614" - inkscape:connector-curvature="0" - style="fill:#d4edf1" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="41.948"><path d="M37.02 39.308l4.555-3.918c-.305-.384-.815-.662-1.248-.827-.874-.333-1.736-.22-2.537.242-1.05.606-1.496 1.57-1.457 2.77a2.65 2.65 0 0 0 .394 1.33 3.49 3.49 0 0 0 .293.401m1.3.914c.55.192 1.18.165 1.746.066.3-.123 1.03-.446 1.302-.398l.043.007.04.02c.166.08.325.195.4.363.198.397.103.795-.286 1.02l-.13.075c-1.437.83-2.966.715-4.4-.06-.685-.37-1.2-.92-1.596-1.6l-.1-.157c-.923-1.598-.798-3.28.242-4.8.36-.525.83-.93 1.378-1.248l.208-.12c1.354-.78 2.804-.728 4.195-.042.747.37 1.353.92 1.77 1.642l.075.13c.303.525-.1.983-.495 1.296l-1.397 1.2L38.3 40.21zm10.77-7.27h.15c.455 0 .758.306.758.758 0 .627-.6.788-1.12.788-.68 0-1.33.412-1.8.874-.585.577-.84 1.315-.84 2.127v3.67c0 .42-.262.758-.698.758h-.12c-.436 0-.698-.338-.698-.758v-3.88c0-1.5.725-2.705 1.934-3.558a4.16 4.16 0 0 1 2.432-.779zm-18.887 2.604l1.777-1.757c.167-.162.797-.846 1.045-.846h.27l.03.006c.346.072.605.3.605.662v.15c0 .253-.297.548-.46.72l-2.902 2.945 2.358 2.377.646.664c.075.08.186.178.25.288a.62.62 0 0 1 .109.342v.157l-.01.036c-.085.346-.305.625-.688.625h-.12c-.25 0-.534-.284-.706-.446l-1.042-1.025-1.163-1.142v1.825c0 .42-.263.758-.698.758h-.12c-.435 0-.698-.338-.698-.758V30.853c0-.42.263-.757.698-.757h.12c.435 0 .698.336.698.757v4.703zM25.3 34.53c-.23-.107-.657-.143-.904-.152-1.266-.048-2.182.665-2.72 1.782-.186.385-.27.793-.27 1.22 0 1.298.68 2.207 1.84 2.76.423.202.97.24 1.432.24.407 0 .982-.25 1.343-.42l.063-.03h.28l.03.006c.345.072.605.3.605.66v.15c0 .923-1.686 1.134-2.33 1.18-2.27.157-3.968-1.1-4.616-3.255-.113-.376-.163-.75-.163-1.14v-.3c0-1.643.815-2.945 2.225-3.782a4.15 4.15 0 0 1 2.142-.585h.3a3.85 3.85 0 0 1 2.218.685l.055.038.035.057c.072.12.134.257.134.4v.15c0 .387-.3.595-.64.662l-.03.005h-.1c-.227-.001-.74-.236-.943-.33zM11.473 37.4c0 1.152.565 2 1.538 2.595.457.28.96.406 1.494.406 1.138 0 1.98-.577 2.565-1.538.28-.458.405-.96.405-1.494 0-1.07-.516-1.9-1.398-2.482a2.82 2.82 0 0 0-1.603-.488c-1.27 0-2.183.64-2.73 1.78-.186.384-.27.793-.27 1.22zm2.85-4.518h.2c1.756 0 3.1.852 3.937 2.384.338.613.52 1.282.52 1.983v.3c0 1.643-.8 2.952-2.226 3.783-.656.385-1.38.584-2.14.584h-.3c-1.643 0-2.95-.812-3.782-2.226a4.17 4.17 0 0 1-.584-2.141v-.3c0-1.643.815-2.945 2.225-3.783.655-.4 1.38-.584 2.14-.584zM1.55 37.4c0 1.187.575 2.08 1.615 2.648.42.23.877.354 1.357.354 1.165 0 2.03-.55 2.624-1.536.277-.46.406-.96.406-1.496 0-1.03-.487-1.83-1.316-2.428a2.83 2.83 0 0 0-1.685-.543c-1.27 0-2.183.64-2.73 1.78-.186.384-.27.793-.27 1.22zm6.002-3.387v-3.2c0-.42.263-.758.698-.758h.12c.435 0 .697.338.697.758v6.736c0 1.643-.812 2.95-2.226 3.782a4.18 4.18 0 0 1-2.14.584h-.3c-1.643 0-2.948-.812-3.782-2.226a4.17 4.17 0 0 1-.584-2.141v-.3c0-1.643.812-2.95 2.225-3.784a4.17 4.17 0 0 1 2.14-.574h.3c1.112.002 2.055.433 2.85 1.133zm21.3-25.07h4.472v4.57h2.26a9.81 9.81 0 0 0 3.107-.521c.486-.165 1.03-.394 1.5-.682-.63-.824-.953-1.865-1.048-2.9-.13-1.395.153-3.2 1.097-4.303l.47-.544.56.45c1.4 1.133 2.596 2.716 2.805 4.52 1.698-.5 3.692-.38 5.188.483l.614.354-.323.63c-1.266 2.47-3.912 3.236-6.5 3.1-3.87 9.643-12.3 14.208-22.52 14.208-5.28 0-10.124-1.974-12.882-6.658l-.045-.077-.402-.818c-.932-2.062-1.242-4.32-1.032-6.578l.063-.676h3.824V8.93h4.47V4.47h8.943V0h5.366z" fill="#394d54" fill-rule="evenodd"/><path d="M43.33 10.634c.3-2.33-1.444-4.16-2.525-5.03-1.246 1.44-1.44 5.217.515 6.807-1.09.97-3.4 1.848-5.745 1.848H6.917c-.23 2.458.203 4.72 1.188 6.658l.326.596c.206.35.432.688.676 1.014l3.258.08c1.954-.043 3.548-.274 4.755-.692.18-.062.376.033.438.212s-.033.376-.213.438l-.5.157c-.952.27-1.972.454-3.287.536.078.001-.08.012-.082.012l-.146.012-1.648.035a37.08 37.08 0 0 1-1.929-.047l-.018.012c2.388 2.684 6.12 4.293 10.8 4.293 9.905 0 18.306-4.39 22.026-14.248 2.64.27 5.176-.402 6.33-2.655-1.837-1.06-4.2-.723-5.56-.04z" fill="#00aada"/><path d="M43.33 10.634c.3-2.33-1.444-4.16-2.525-5.03-1.246 1.44-1.44 5.217.515 6.807-1.09.97-3.4 1.848-5.745 1.848H8.614c-.117 3.764 1.28 6.62 3.75 8.348 1.954-.043 3.548-.274 4.755-.692.18-.062.376.033.438.212s-.033.376-.213.438l-.5.157c-.952.27-2.06.478-3.375.56l-.032-.03c3.37 1.73 8.258 1.723 13.862-.43 6.283-2.414 12.13-7.013 16.2-12.273-.062.027-.122.056-.18.085z" fill="#24b8eb"/><path d="M6.97 17.245c.178 1.316.563 2.55 1.134 3.672l.326.596c.206.35.432.688.676 1.014l3.26.08c1.953-.043 3.547-.274 4.754-.692.18-.062.376.033.438.212s-.033.376-.213.438l-.5.157c-.952.27-2.054.466-3.37.547l-.17.006-1.642.047a37.95 37.95 0 0 1-1.952-.047c2.388 2.684 6.145 4.3 10.825 4.3 8.48 0 15.856-3.22 20.138-10.33H6.97z" fill="#008bb8"/><path d="M8.872 17.245c.507 2.31 1.725 4.126 3.493 5.362 1.953-.043 3.547-.274 4.754-.692.18-.062.376.033.438.212s-.033.376-.213.438l-.5.157c-.952.27-2.077.466-3.393.547 3.37 1.73 8.244 1.704 13.847-.448 3.4-1.302 6.652-3.24 9.58-5.576z" fill="#039bc6"/><g fill-rule="evenodd"><path d="M14.053 10h.306v3.23h-.306zm-.587 0h.318v3.23h-.318zm-.587 0h.318v3.23h-.318zm-.588 0h.318v3.23h-.318zm-.587 0h.318v3.23h-.318zm-.575 0h.306v3.23h-.306zm-.322-.323h3.875v3.876h-3.875zm7.718-4.147h.306v3.23h-.306zm-.587 0h.318v3.23h-.318zm-.588 0h.318v3.23h-.318zm-.587 0h.318v3.23h-.318zm-.587 0h.318v3.23h-.318zm-.575 0h.306v3.23H15.6zm-.323-.323h3.876V9.1h-3.876z" fill="#00acd3"/><path d="M18.525 10.01h.306v3.23h-.306zm-.587 0h.318v3.23h-.318zm-.588 0h.318v3.23h-.318zm-.587 0h.318v3.23h-.318zm-.587 0h.318v3.23h-.318zm-.575 0h.306v3.23H15.6zm-.323-.323h3.876v3.876h-3.876z" fill="#20c2ef"/><path d="M22.997 10.01h.306v3.23h-.306zm-.588 0h.318v3.23h-.318zm-.587 0h.318v3.23h-.318zm-.587 0h.318v3.23h-.318zm-.587 0h.318v3.23h-.318zm-.575 0h.306v3.23h-.306zm-.323-.323h3.876v3.876H19.75z" fill="#00acd3"/><path d="M22.997 5.54h.306v3.23h-.306zm-.588 0h.318v3.23h-.318zm-.587 0h.318v3.23h-.318zm-.587 0h.318v3.23h-.318zm-.587 0h.318v3.23h-.318zm-.575 0h.306v3.23h-.306zm-.323-.323h3.876V9.1H19.75zM27.468 10h.306v3.23h-.306zm-.587 0h.318v3.23h-.318zm-.587 0h.318v3.23h-.318zm-.587 0h.318v3.23h-.318zm-.588 0h.318v3.23h-.318zm-.575 0h.306v3.23h-.306zm-.323-.323h3.876v3.876H24.22z" fill="#20c2ef"/><path d="M27.468 5.54h.306v3.23h-.306zm-.587 0h.318v3.23h-.318zm-.587 0h.318v3.23h-.318zm-.587 0h.318v3.23h-.318zm-.588 0h.318v3.23h-.318zm-.575 0h.306v3.23h-.306zm-.323-.323h3.876V9.09H24.22z" fill="#00acd3"/><path d="M27.468 1.068h.306v3.23h-.306zm-.587 0h.318v3.23h-.318zm-.587 0h.318v3.23h-.318zm-.587 0h.318v3.23h-.318zm-.588 0h.318v3.23h-.318zm-.575 0h.306v3.23h-.306zM24.22.745h3.876V4.62H24.22z" fill="#20c2ef"/><path d="M31.94 10.01h.306v3.23h-.306zm-.587 0h.318v3.23h-.318zm-.588 0h.318v3.23h-.318zm-.587 0h.318v3.23h-.318zm-.587 0h.318v3.23h-.318zm-.575 0h.306v3.23h-.306zm-.323-.323h3.876v3.876h-3.876z" fill="#00acd3"/><path d="M18.91 19.847a1.07 1.07 0 0 1 1.069 1.069 1.07 1.07 0 0 1-1.069 1.069 1.07 1.07 0 0 1-1.069-1.069 1.07 1.07 0 0 1 1.069-1.069" fill="#d4edf1"/><path d="M18.9 20.15a.75.75 0 0 1 .277.052c-.093.054-.156.155-.156.27 0 .173.14.312.313.312.118 0 .22-.066.274-.163.037.1.058.2.058.294 0 .423-.343.766-.766.766s-.766-.343-.766-.766.343-.766.766-.766M0 17.63h49.736c-1.083-.275-3.426-.646-3.04-2.065-1.97 2.28-6.718 1.6-7.916.475-1.335 1.936-9.104 1.2-9.646-.308-1.673 1.964-6.858 1.964-8.53 0-.542 1.508-8.3 2.244-9.646.308C9.76 17.165 5 17.845 3.04 15.566c.386 1.42-1.958 1.8-3.04 2.065" fill="#394d54"/></g><path d="M21.753 27.55c-2.648-1.256-4.1-2.964-4.9-4.83-.984.28-2.166.46-3.54.537l-1.633.044a38.99 38.99 0 0 1-2.081-.058c2.428 2.427 5.415 4.295 10.946 4.33a28.9 28.9 0 0 0 1.217-.023z" fill="#bfdbe0"/><path d="M17.827 24.443a9.26 9.26 0 0 1-.983-1.721c-.984.28-2.166.46-3.54.538.944.512 2.293.986 4.523 1.183z" fill="#d4edf1"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/DocumentDB.svg b/src/main/webapp/img/lib/mscae/DocumentDB.svg index 14dda9964c956dd5ad55425360478a24f6cbf6c4..5b81718c2459810986f182103dfd39c4fd8ad327 100644 --- a/src/main/webapp/img/lib/mscae/DocumentDB.svg +++ b/src/main/webapp/img/lib/mscae/DocumentDB.svg @@ -1,77 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="37.799999" - height="50" - viewBox="0 0 37.799999 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure DocumentDB_COLOR.svg"><metadata - id="metadata23"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs21" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview19" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="14.656481" - inkscape:cx="6.0841321" - inkscape:cy="23.516266" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 0,6.8 0,43.1 C 0,46.9 8.4,49.9 18.9,49.9 L 18.9,6.8 0,6.8 Z" - id="path3" - inkscape:connector-curvature="0" - style="fill:#3999c6" /><path - d="M 18.6,50 18.9,50 C 29.3,50 37.8,46.9 37.8,43.2 L 37.8,6.8 18.6,6.8 18.6,50 Z" - id="path5" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><path - d="M 37.8,6.8 C 37.8,10.6 29.4,13.6 18.9,13.6 8.4,13.6 0,10.6 0,6.8 0,3.1 8.5,0 18.9,0 29.3,0 37.8,3.1 37.8,6.8" - id="path7" - inkscape:connector-curvature="0" - style="fill:#ffffff" /><path - d="M 33.9,6.4 C 33.9,8.9 27.2,10.9 18.9,10.9 10.6,10.9 3.9,8.9 3.9,6.4 3.9,3.9 10.6,1.9 18.9,1.9 27.2,1.9 33.9,3.9 33.9,6.4" - id="path9" - inkscape:connector-curvature="0" - style="fill:#7fba00" /><path - d="M 30.8,9.2 C 32.8,8.4 33.9,7.5 33.9,6.4 33.9,3.9 27.2,1.9 18.9,1.9 10.6,1.9 3.9,3.9 3.9,6.4 3.9,7.4 5.1,8.4 7,9.2 9.7,8.1 14,7.4 18.9,7.4 23.7,7.4 28,8.1 30.8,9.2" - id="path11" - inkscape:connector-curvature="0" - style="fill:#b8d432" /><g - id="g13" - transform="translate(-6.1,0)"><path - d="M 19.6,41.8 C 18.1,41.8 16.9,41.6 16.1,41.3 15.2,41 14.6,40.5 14.2,39.9 13.8,39.2 13.6,38.2 13.6,36.9 L 13.6,34.7 C 13.6,33.3 13,32.5 11.8,32.5 L 11.8,29.8 C 13,29.8 13.6,29.1 13.6,27.6 L 13.6,25.6 C 13.6,24.2 13.8,23.1 14.2,22.5 14.6,21.8 15.2,21.4 16,21 16.9,20.7 18,20.5 19.5,20.5 L 19.5,23.2 C 18.8,23.2 18.4,23.3 18,23.6 17.7,23.9 17.5,24.4 17.5,25.1 L 17.5,26.8 C 17.5,27.9 17.4,28.8 17.1,29.5 16.8,30.2 16.3,30.7 15.6,31 L 15.6,31 C 16.3,31.3 16.8,31.8 17.1,32.6 17.4,33.3 17.6,34.3 17.6,35.4 L 17.6,36.9 C 17.6,37.6 17.7,38.1 18,38.4 18.3,38.7 18.8,38.9 19.5,38.9 L 19.5,41.8 Z" - id="path15" - inkscape:connector-curvature="0" - style="fill:#ffffff" /><path - d="M 36.6,32.5 C 35.4,32.5 34.8,33.2 34.8,34.7 L 34.8,36.7 C 34.8,38.1 34.6,39.2 34.2,39.8 33.8,40.5 33.2,40.9 32.4,41.3 31.5,41.6 30.4,41.8 28.9,41.8 L 28.9,39.1 C 29.6,39.1 30.1,39 30.4,38.7 30.7,38.4 30.9,37.9 30.9,37.2 L 30.9,35.5 C 30.9,34.4 31,33.5 31.3,32.8 31.6,32.1 32.1,31.6 32.8,31.3 L 32.8,31.3 C 32.1,31 31.6,30.4 31.3,29.7 31,29 30.8,28 30.8,26.9 L 30.8,25.4 C 30.8,24.7 30.7,24.2 30.4,23.9 30.1,23.6 29.6,23.4 28.9,23.4 L 28.9,20.7 C 30.4,20.7 31.6,20.9 32.4,21.2 33.3,21.5 33.9,22 34.3,22.6 34.7,23.3 34.9,24.3 34.9,25.6 L 34.9,27.8 C 34.9,29.2 35.5,30 36.7,30 L 36.7,32.5 Z" - id="path17" - inkscape:connector-curvature="0" - style="fill:#ffffff" /></g></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="37.8" height="50"><path d="M0 6.8v36.3c0 3.8 8.4 6.8 18.9 6.8V6.8H0z" fill="#3999c6"/><path d="M18.6 50h.3c10.4 0 18.9-3.1 18.9-6.8V6.8H18.6V50z" fill="#59b4d9"/><path d="M37.8 6.8c0 3.8-8.4 6.8-18.9 6.8S0 10.6 0 6.8C0 3.1 8.5 0 18.9 0s18.9 3.1 18.9 6.8" fill="#fff"/><path d="M33.9 6.4c0 2.5-6.7 4.5-15 4.5s-15-2-15-4.5 6.7-4.5 15-4.5 15 2 15 4.5" fill="#7fba00"/><path d="M30.8 9.2c2-.8 3.1-1.7 3.1-2.8 0-2.5-6.7-4.5-15-4.5s-15 2-15 4.5c0 1 1.2 2 3.1 2.8 2.7-1.1 7-1.8 11.9-1.8 4.8 0 9.1.7 11.9 1.8" fill="#b8d432"/><path d="M13.5 41.8c-1.5 0-2.7-.2-3.5-.5-.9-.3-1.5-.8-1.9-1.4-.4-.7-.6-1.7-.6-3v-2.2c0-1.4-.6-2.2-1.8-2.2v-2.7c1.2 0 1.8-.7 1.8-2.2v-2c0-1.4.2-2.5.6-3.1.4-.7 1-1.1 1.8-1.5.9-.3 2-.5 3.5-.5v2.7c-.7 0-1.1.1-1.5.4-.3.3-.5.8-.5 1.5v1.7c0 1.1-.1 2-.4 2.7s-.8 1.2-1.5 1.5c.7.3 1.2.8 1.5 1.6.3.7.5 1.7.5 2.8v1.5c0 .7.1 1.2.4 1.5s.8.5 1.5.5v2.9zm17-9.3c-1.2 0-1.8.7-1.8 2.2v2c0 1.4-.2 2.5-.6 3.1-.4.7-1 1.1-1.8 1.5-.9.3-2 .5-3.5.5v-2.7c.7 0 1.2-.1 1.5-.4s.5-.8.5-1.5v-1.7c0-1.1.1-2 .4-2.7s.8-1.2 1.5-1.5c-.7-.3-1.2-.9-1.5-1.6s-.5-1.7-.5-2.8v-1.5c0-.7-.1-1.2-.4-1.5s-.8-.5-1.5-.5v-2.7c1.5 0 2.7.2 3.5.5.9.3 1.5.8 1.9 1.4.4.7.6 1.7.6 3v2.2c0 1.4.6 2.2 1.8 2.2v2.5z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Download.svg b/src/main/webapp/img/lib/mscae/Download.svg index cae0882fa21b9dc5d813e2529d684695e6ec2128..8d7c88798f7567920a2090e5828a03f9b83e4491 100644 --- a/src/main/webapp/img/lib/mscae/Download.svg +++ b/src/main/webapp/img/lib/mscae/Download.svg @@ -1,95 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50.000999" - height="46.148998" - viewBox="0 0 50.000999 46.148998" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Download.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata4601"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs4599" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview4597" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.020815" - inkscape:cx="19.469031" - inkscape:cy="18.519554" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="M 32.426,36.534 H 31.235 19.445 18.83 c 1.634,5.768 -0.561,6.595 -10.175,6.595 v 3.02 h 12.227 8.927 11.538 v -3.02 c -9.614,0 -10.557,-0.824 -8.921,-6.595" - id="path4580" - inkscape:connector-curvature="0" - style="fill:#7a7a7a" /> -<path - d="M 46.98,0 H 2.718 C 1.214,0 0.001,1.345 0.001,2.847 v 30.866 c 0,1.493 1.213,2.823 2.717,2.823 H 46.98 c 1.501,0 3.021,-1.33 3.021,-2.823 V 2.847 C 50.001,1.341 48.481,0 46.98,0" - id="path4582" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<path - enable-background="new " - d="M 47.011,0.003 C 47,0.003 46.99,10e-4 46.98,10e-4 H 2.717 C 1.213,10e-4 0,1.345 0,2.848 v 30.865 c 0,1.494 1.213,2.824 2.717,2.824 H 3.77 Z" - id="path4584" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#ffffff" /> -<polygon - points="3.79,34.689 3.79,5.848 46.212,5.786 46.212,5.848 46.212,34.689 " - id="polygon4586" - style="fill:#59b4d9" - transform="translate(0,-2)" /> -<polygon - points="33.333,17.58 25.003,26.331 16.666,17.611 16.666,14.069 23.532,20.575 23.532,6.977 26.43,6.977 26.43,20.575 33.333,14.027 " - id="polygon4588" - style="fill:#ffffff" - transform="translate(0,-2)" /> -<rect - x="17.778" - y="27.18" - width="14.445" - height="3.3329999" - id="rect4590" - style="fill:#ffffff" /> -<rect - x="8.6549997" - y="43.127998" - width="32.692001" - height="3.0209999" - id="rect4592" - style="fill:#a0a1a2" /> -<path - d="m 25.518,2.095 c 0,0.392 -0.318,0.71 -0.71,0.71 -0.393,0 -0.709,-0.318 -0.709,-0.71 0,-0.393 0.316,-0.71 0.709,-0.71 0.392,0 0.71,0.317 0.71,0.71" - id="path4594" - inkscape:connector-curvature="0" - style="fill:#b8d432" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50.001" height="46.149"><path d="M32.426 36.534H18.83c1.634 5.768-.56 6.595-10.175 6.595v3.02h32.692v-3.02c-9.614 0-10.557-.824-8.92-6.595" fill="#7a7a7a"/><path d="M46.98 0H2.718C1.214 0 .001 1.345.001 2.847v30.866c0 1.493 1.213 2.823 2.717 2.823H46.98c1.5 0 3.02-1.33 3.02-2.823V2.847C50 1.34 48.48 0 46.98 0" fill="#a0a1a2"/><path d="M47.01.003c-.01 0-.02-.002-.03-.002H2.717C1.213.001 0 1.345 0 2.848v30.865c0 1.494 1.213 2.824 2.717 2.824H3.77z" opacity=".2" fill="#fff"/><path d="M3.8 32.69V3.848l42.422-.062V32.69z" fill="#59b4d9"/><path d="M33.333 15.58l-8.33 8.75-8.337-8.72v-3.54l6.866 6.506v-13.6h2.898v13.598l6.903-6.548zm-15.555 11.6h14.445v3.333H17.778z" fill="#fff"/><path d="M8.655 43.128h32.692v3.02H8.655z" fill="#a0a1a2"/><path d="M25.518 2.095a.71.71 0 0 1-.71.71.71.71 0 0 1-.709-.71.71.71 0 0 1 .709-.71.71.71 0 0 1 .71.71" fill="#b8d432"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Education.svg b/src/main/webapp/img/lib/mscae/Education.svg new file mode 100644 index 0000000000000000000000000000000000000000..434632c9e91d230f0e0162415ac05cb8ca4c0a0a --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Education.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="49" height="38.525" fill="#59b4d9"><path d="M38.4 19.525l-13 6a1.91 1.91 0 0 1-1.8 0l-13.1-6v12.4c0 3.7 6.2 6.6 13.9 6.6s13.9-3 13.9-6.6v-12.4zm5 1.6c-.5-2.5-2.1-4.5-4.5-5.5l-11.9-5c-.3-1.5-5.1-1.4-5.1.2 0 1 2 1.5 3.6 1.2l12.7 5.4c1.7.7 2.9 2.2 3.3 4-.5.3-.8.9-.8 1.5v5.3c0 1 .8 1.9 1.9 1.9s1.9-.8 1.9-1.9v-5.3c0-.8-.4-1.5-1.1-1.8z"/><path d="M48.4 10.825L25.3.225a1.91 1.91 0 0 0-1.8 0L.6 10.825a1.05 1.05 0 0 0 0 1.9l23.1 10.6a1.91 1.91 0 0 0 1.8 0l11.2-5.2-10.8-4.8c-.4.1-.9.1-1.4.1-3.1 0-5.5-1.2-5.5-2.6s2.5-2.6 5.5-2.6 5.6.9 5.7 2.2l11.9 5.1 6.3-2.9c.8-.3.8-1.4 0-1.8z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Elastic_Database_Pools.svg b/src/main/webapp/img/lib/mscae/Elastic_Database_Pools.svg index 0b4f323abcca17fea5e4f536c5d745268f23bb96..4a8f89c992518ae8ce7236e56909598a9f4b0188 100644 --- a/src/main/webapp/img/lib/mscae/Elastic_Database_Pools.svg +++ b/src/main/webapp/img/lib/mscae/Elastic_Database_Pools.svg @@ -1,32 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" style="enable-background:new 0 0 50 50;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#0072C6;} - .st1{opacity:0.2;fill:#FFFFFF;enable-background:new ;} - .st2{fill:#7FBA00;} - .st3{fill:#B8D432;} - .st4{fill:#FFFFFF;} -</style> -<path class="st0" d="M25,50c-1.2,0-2.4-0.5-3.3-1.4L1.4,28.3C0.5,27.4,0,26.2,0,25c0-1.2,0.5-2.4,1.4-3.3L21.7,1.4 - C22.6,0.5,23.8,0,25,0c1.2,0,2.4,0.5,3.3,1.4l20.4,20.4c0.9,0.9,1.4,2,1.4,3.3s-0.5,2.4-1.4,3.3L28.3,48.6C27.4,49.5,26.2,50,25,50" - /> -<path class="st1" d="M33.5,6.6l-5.2-5.2C27.4,0.5,26.2,0,25,0c-1.2,0-2.4,0.5-3.3,1.4L1.4,21.7C0.5,22.6,0,23.8,0,25 - c0,1.2,0.5,2.4,1.4,3.3l8.3,8.3L33.5,6.6z"/> -<path class="st2" d="M12,20.4L12,20.4H7v9.7c0,1,2.2,1.8,4.9,1.8v0H12c0,0,0,0,0,0l0,0l0,0c2.8,0,5-0.8,5-1.8v-9.7H12z"/> -<path class="st3" d="M12,20.4v11.5c2.8,0,5-0.8,5-1.8v-9.7H12z"/> -<path class="st4" d="M17,20.4c0,1.3-2.2,2.3-5,2.3s-5-1-5-2.3c0-1.3,2.2-2.3,5-2.3S17,19.1,17,20.4"/> -<path class="st2" d="M15.7,20.4c0,0.7-1.6,1.3-3.7,1.3s-3.7-0.6-3.7-1.3s1.6-1.3,3.7-1.3S15.7,19.7,15.7,20.4"/> -<path class="st2" d="M38,20.4L38,20.4h-5v9.7c0,1,2.2,1.8,4.9,1.8v0H38c0,0,0,0,0,0l0,0l0,0c2.8,0,5-0.8,5-1.8v-9.7H38z"/> -<path class="st3" d="M38,20.4v11.5c2.8,0,5-0.8,5-1.8v-9.7H38z"/> -<path class="st4" d="M43,20.4c0,1.3-2.2,2.3-5,2.3s-5-1-5-2.3c0-1.3,2.2-2.3,5-2.3S43,19.1,43,20.4"/> -<path class="st2" d="M41.7,20.4c0,0.7-1.6,1.3-3.7,1.3s-3.7-0.6-3.7-1.3s1.6-1.3,3.7-1.3S41.7,19.7,41.7,20.4"/> -<path class="st2" d="M25,7.4L25,7.4h-5v9.7c0,1,2.2,1.8,4.9,1.8v0H25c0,0,0,0,0,0l0,0l0,0c2.8,0,5-0.8,5-1.8V7.4H25z"/> -<path class="st3" d="M25,7.4v11.5c2.8,0,5-0.8,5-1.8V7.4H25z"/> -<path class="st4" d="M30,7.4c0,1.3-2.2,2.3-5,2.3s-5-1-5-2.3s2.2-2.3,5-2.3S30,6.1,30,7.4"/> -<path class="st2" d="M28.7,7.4c0,0.7-1.6,1.3-3.7,1.3s-3.7-0.6-3.7-1.3S23,6.1,25,6.1S28.7,6.7,28.7,7.4"/> -<path class="st2" d="M25,33.4L25,33.4h-5v9.7c0,1,2.2,1.8,4.9,1.8v0H25c0,0,0,0,0,0l0,0l0,0c2.8,0,5-0.8,5-1.8v-9.7H25z"/> -<path class="st3" d="M25,33.4v11.5c2.8,0,5-0.8,5-1.8v-9.7H25z"/> -<path class="st4" d="M30,33.4c0,1.3-2.2,2.3-5,2.3s-5-1-5-2.3c0-1.3,2.2-2.3,5-2.3S30,32.1,30,33.4"/> -<path class="st2" d="M28.7,33.4c0,0.7-1.6,1.3-3.7,1.3s-3.7-0.6-3.7-1.3s1.6-1.3,3.7-1.3S28.7,32.7,28.7,33.4"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="50"><path d="M25 50c-1.2 0-2.4-.5-3.3-1.4L1.4 28.3C.5 27.4 0 26.2 0 25s.5-2.4 1.4-3.3L21.7 1.4C22.6.5 23.8 0 25 0s2.4.5 3.3 1.4l20.4 20.4c.9.9 1.4 2 1.4 3.3s-.5 2.4-1.4 3.3L28.3 48.6c-.9.9-2.1 1.4-3.3 1.4" fill="#0072c6"/><path d="M33.5 6.6l-5.2-5.2C27.4.5 26.2 0 25 0s-2.4.5-3.3 1.4L1.4 21.7C.5 22.6 0 23.8 0 25s.5 2.4 1.4 3.3l8.3 8.3 23.8-30z" opacity=".2" fill="#fff" enable-background="new"/><path d="M12 20.4H7v9.7c0 1 2.2 1.8 4.9 1.8h.1c2.8 0 5-.8 5-1.8v-9.7h-5z" fill="#7fba00"/><path d="M12 20.4v11.5c2.8 0 5-.8 5-1.8v-9.7h-5z" fill="#b8d432"/><use xlink:href="#B" fill="#fff"/><g fill="#7fba00"><use xlink:href="#C"/><path d="M38 20.4h-5v9.7c0 1 2.2 1.8 4.9 1.8h.1c2.8 0 5-.8 5-1.8v-9.7h-5z"/></g><path d="M38 20.4v11.5c2.8 0 5-.8 5-1.8v-9.7h-5z" fill="#b8d432"/><use xlink:href="#B" x="26" fill="#fff"/><g fill="#7fba00"><use xlink:href="#C" x="26"/><path d="M25 7.4h-5v9.7c0 1 2.2 1.8 4.9 1.8h.1c2.8 0 5-.8 5-1.8V7.4h-5z"/></g><path d="M25 7.4v11.5c2.8 0 5-.8 5-1.8V7.4h-5z" fill="#b8d432"/><use xlink:href="#B" x="13" y="-13" fill="#fff"/><path d="M28.7 7.4c0 .7-1.6 1.3-3.7 1.3s-3.7-.6-3.7-1.3S23 6.1 25 6.1s3.7.6 3.7 1.3m-3.7 26h-5v9.7c0 1 2.2 1.8 4.9 1.8h.1c2.8 0 5-.8 5-1.8v-9.7h-5z" fill="#7fba00"/><path d="M25 33.4v11.5c2.8 0 5-.8 5-1.8v-9.7h-5z" fill="#b8d432"/><use xlink:href="#B" x="13" y="13" fill="#fff"/><use xlink:href="#C" x="13" y="13" fill="#7fba00"/><defs ><path id="B" d="M17 20.4c0 1.3-2.2 2.3-5 2.3s-5-1-5-2.3 2.2-2.3 5-2.3 5 1 5 2.3"/><path id="C" d="M15.7 20.4c0 .7-1.6 1.3-3.7 1.3s-3.7-.6-3.7-1.3 1.6-1.3 3.7-1.3 3.7.6 3.7 1.3"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Elastic_Job_Agents.svg b/src/main/webapp/img/lib/mscae/Elastic_Job_Agents.svg new file mode 100644 index 0000000000000000000000000000000000000000..e5dec592ed2694e4133f20f5a3022d2f035d8de9 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Elastic_Job_Agents.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="20.14" height="24.043"><path d="M15.92 11.463a5.22 5.22 0 0 1-3.59-9H9.96v11.82h1.56v3.15a13.69 13.69 0 0 0 3.87-.76l-1.16-1.17-.7-.7 2.2-2.2 1.4 1.4v-2.65a5.19 5.19 0 0 1-1.2.14z" fill="#5bb4da"/><path d="M4.7 16.653a13.5 13.5 0 0 0 3.71.76v-3.13h1.63V2.453H2.98v11.5l1.36-1.36 2.2 2.2-.7.7z" fill="#3999c7"/><path d="M15.68 1.003a14.86 14.86 0 0 0-5.64-1c-3.9.07-7.06 1.16-7.06 2.45s3.2 2.38 7.1 2.38h.83a5.22 5.22 0 0 1 4.78-3.83z" fill="#fff"/><path d="M9.4 15.283v6.62l-1.77-1.78-.8.8 3.12 3.12.8-.8 2.33-2.33-.8-.8-1.78 1.78v-6.62zm-4.27-.5l-.8-.8-3.22 3.22v-2.5H0v4.42h4.42v-1.12H1.9z" fill="#9fa0a2"/><g fill="#fff"><circle cx="15.92" cy="6.233" r="4.22"/><path d="M15.65 2.633a3.63 3.63 0 0 0-3.22 4 3.62 3.62 0 0 0 6.917 1.064 3.62 3.62 0 0 0-1.067-4.284 3.59 3.59 0 0 0-2.24-.79 2.25 2.25 0 0 1-.39 0"/></g><path d="M20.1 5.803a4.22 4.22 0 0 0-1.59-2.87c-.17-.12-.34-.25-.52-.34l-.34.64a2.23 2.23 0 0 1 .39.27 3.46 3.46 0 0 1 1.3 2.38 3.5 3.5 0 0 1-3.12 3.86 3.48 3.48 0 0 1-1.82-.29l-.34.64a4 4 0 0 0 2.24.37 4.29 4.29 0 0 0 2.87-1.56 4.17 4.17 0 0 0 .93-3.1" fill="#3999c7"/><path d="M13.7 9.003a3.51 3.51 0 0 1 4-5.75l.35-.64a4.16 4.16 0 0 0-2.52-.61 4.31 4.31 0 0 0-2.91 1.6 4.16 4.16 0 0 0-.91 3.1 4.29 4.29 0 0 0 1.55 2.85 4.08 4.08 0 0 0 .89.54l.38-.64a3.52 3.52 0 0 1-.83-.45" fill="#5bb4da"/><path d="M17.72 7.343l-1.62-.6c-.12-.04-.21-.143-.23-.27s.028-.252.13-.33.236-.094.352-.04l1.62.6a.34.34 0 0 1 .2.44.37.37 0 0 1-.45.2z" fill="#7c7b7b"/><path d="M15.9 6.923a.56.56 0 0 1-.56-.56v-2.87c0-.312.253-.565.565-.565s.565.253.565.565v2.87a.56.56 0 0 1-.57.56z" fill="#9fa0a2"/><path d="M15.9 3.143a.34.34 0 0 1 .34.34v2.88c0 .19-.154.345-.345.345s-.345-.154-.345-.345v-2.87a.34.34 0 0 1 .34-.34m0-.44a.77.77 0 0 0-.78.78v2.87a.78.78 0 0 0 1.56 0v-2.87a.77.77 0 0 0-.78-.78z" fill="#fff"/><circle cx="15.89" cy="6.363" r=".49" fill="#1e1e1e"/><path d="M20.07 19.133v-4.42h-1.12v2.5l-3.22-3.22-.8.8 3.22 3.22h-2.5v1.12z" fill="#9fa0a2"/><path d="M14.3 1.283a14.87 14.87 0 0 0-4.26-.54c-3.1 0-5.62.7-5.62 1.58s2.56 1.58 5.66 1.58h1.2a5.24 5.24 0 0 1 3.01-2.62z" fill="#7fbb42"/><path d="M14.28 1.283a14.62 14.62 0 0 0-4.25-.54c-3.1 0-5.62.7-5.62 1.58 0 .35.45.7 1.17.95a13.69 13.69 0 0 1 4.45-.6 19.09 19.09 0 0 1 2 .1 5.23 5.23 0 0 1 2.25-1.49z" fill="#b8d433"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Enrollment.svg b/src/main/webapp/img/lib/mscae/Enrollment.svg new file mode 100644 index 0000000000000000000000000000000000000000..82132ba01a0197b8239c63552b010c0512ef071a --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Enrollment.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path d="M46 33c0 1.657-1.36 3-3.036 3H3.036C1.36 36 0 34.657 0 33V3c0-1.657 1.36-3 3.036-3h39.928C44.64 0 46 1.343 46 3z" fill="#3e3e3e"/><path d="M2.962 5H43v26H2.962z" fill="#3999c6"/><g fill="#fff"><path d="M31 0H3a3 3 0 0 0-3 3v30a3 3 0 0 0 3 3h12z" opacity=".15"/><path d="M26 2.69a.69.69 0 0 1-.688.688H20.9a.69.69 0 0 1-.69-.688.69.69 0 0 1 .69-.689h4.422a.69.69 0 0 1 .688.689"/></g><path d="M50 47.545C50 48.9 48.913 50 47.572 50H29.428C28.087 50 27 48.9 27 47.545v-31.1C27 15.1 28.087 14 29.428 14H47.57c1.342 0 2.43 1.1 2.43 2.455z" fill="#3e3e3e"/><path d="M29 18h19v27H29z" fill="#59b4d9"/><g fill="#fff"><path d="M42.607 16.17c0 .335-.436.606-.974.606H35.37c-.54 0-.977-.27-.977-.606s.437-.607.977-.607h6.263c.538 0 .974.272.974.607"/><path d="M45.09 14H29.464A2.46 2.46 0 0 0 27 16.455v31.09A2.46 2.46 0 0 0 29.464 50H31.6z" opacity=".15"/></g><circle cx="21.5" cy="33.5" r="13.5" fill="#7fba00"/><path d="M21.5 21C28.393 21 34 26.607 34 33.5S28.393 46 21.5 46 9 40.393 9 33.5 14.607 21 21.5 21m0-1C14.044 20 8 26.044 8 33.5S14.044 47 21.5 47 35 40.956 35 33.5 28.956 20 21.5 20z" fill="#00188f" opacity=".5"/><path d="M19 31v-6h5v6h6v5h-6v6h-5v-6h-6v-5z" opacity=".2" fill="#0072c6"/><path d="M20 32h-6v3h6v6h3v-6h6v-3h-6v-6h-3z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Enterprise_Applications.svg b/src/main/webapp/img/lib/mscae/Enterprise_Applications.svg new file mode 100644 index 0000000000000000000000000000000000000000..56690aa47b69c58c882c5e792afb559702cea67b --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Enterprise_Applications.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="45.897" height="46.697"><path d="M0 0h11v11H0zm13 0h12v11H13zm14 0h11v11H27zM0 13h11v11H0zm13 0h12v11H13zm14 0h11v11H27zM0 26h11v12H0zm13 0h12v12H13zm14 0h11v12H27z" fill="#0072c6"/><circle cx="32.3" cy="33.1" r="13.5" fill="#59b4d9" stroke="#59b4d9" stroke-width=".194"/><path d="M45.85 32.636l-4.522-4.522a1.58 1.58 0 0 0-2.348 0c-.313.3-.49.733-.49 1.174s.176.864.49 1.174l-1.74-1.74a1.66 1.66 0 1 0-2.348 2.348l5.99 5.996a1.66 1.66 0 1 1-2.348 2.348l-2.522-2.522a1.66 1.66 0 1 0-2.348 2.348l2.7 2.7a1.66 1.66 0 1 0-2.348 2.348l1.917 1.91c6.125-1.568 10.28-7.255 9.914-13.567zm-22.154 3.897a2 2 0 0 0 0-2.957L21.52 31.4a2 2 0 0 0 2.957 0c.6-.62.782-1.55.435-2.348l2.957 2.957a2 2 0 0 0 2.957 0c.397-.4.62-.922.62-1.478s-.223-1.09-.62-1.48l-2.61-2.783a2 2 0 0 1 0-2.957c.4-.397.922-.62 1.48-.62s1.09.223 1.48.62l1.39 1.39a2.09 2.09 0 0 0 2.957-2.957l-1.993-2.193a12.89 12.89 0 0 0-11.076 4.053A13.6 13.6 0 0 0 18.8 34.671l1.85 1.95a2.18 2.18 0 0 0 3.044-.087z" fill="#b8d432"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/EventLog.svg b/src/main/webapp/img/lib/mscae/EventLog.svg index 5d9355ec89faf4a79fa85334846a4f0bc56f5e09..fccccf8a166b289a4604b4a4f109a66087997a29 100644 --- a/src/main/webapp/img/lib/mscae/EventLog.svg +++ b/src/main/webapp/img/lib/mscae/EventLog.svg @@ -1,99 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="45" - height="50.099998" - viewBox="0 0 45 50.099998" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="EventLog.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata4791"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs4789" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview4787" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="6.0104076" - inkscape:cx="13.339564" - inkscape:cy="12.966972" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 43,45.4 h 2 V 0 H 6.7 4 C 2.7,0.2 0,3.3 0,3.8 0,4 0.1,47.7 0.1,47.7 c 0,1.3 1.1,2.4 2.4,2.4 h 37.6 v -0.7 z" - id="path4766" - inkscape:connector-curvature="0" - style="fill:#0072c6" /> -<path - d="M 5.8,2 C 4.7,2 4.2,2.2 3.3,3 1,5 3.7,5 4.8,5 H 40 v 44.3 l 3,-3.9 V 2 Z" - id="path4768" - inkscape:connector-curvature="0" - style="fill:#e5e5e5" /> -<polygon - enable-background="new " - points="45.5,2 42.5,5 42.5,49.3 45.5,45.4 " - id="polygon4770" - style="opacity:0.5;fill:#a0a1a2" - transform="translate(-2.5)" /> -<g - id="g4778" - transform="translate(-2.5)"> - <path - d="M 30.8,25.9 H 22.4 14 c -1.3,0 -2,-1.4 -1.4,-2.5 L 16.8,16 21,9 c 0.7,-1.1 2,-1.1 2.7,0 l 4.2,7.3 4.2,7.2 c 0.7,1.1 0.1,2.4 -1.3,2.4 z" - id="path4772" - inkscape:connector-curvature="0" - style="fill:#ff8c00" /> - <circle - cx="22.4" - cy="21.9" - r="1.4" - id="circle4774" - style="fill:#ffffff" /> - <polygon - points="21.3,13.6 21.6,19.9 22.3,19.9 22.7,19.9 23.4,19.9 23.7,13.6 22.7,13.6 22.3,13.6 " - id="polygon4776" - style="fill:#ffffff" /> -</g> -<g - id="g4784" - transform="translate(-2.5)"> - <circle - cx="22.5" - cy="37.700001" - r="9" - id="circle4780" - style="fill:#ba141a" /> - <polygon - points="22.5,36.1 19.1,32.7 17.5,34.3 20.9,37.7 17.5,41.1 19.1,42.7 22.5,39.3 25.9,42.7 27.5,41.1 24.1,37.7 27.5,34.3 25.9,32.7 " - id="polygon4782" - style="fill:#ffffff" /> -</g> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="45" height="50.1"><path d="M43 45.4h2V0H4C2.7.2 0 3.3 0 3.8l.1 43.9c0 1.3 1.1 2.4 2.4 2.4h37.6v-.7z" fill="#0072c6"/><path d="M5.8 2c-1.1 0-1.6.2-2.5 1C1 5 3.7 5 4.8 5H40v44.3l3-3.9V2z" fill="#e5e5e5"/><path d="M43 2l-3 3v44.3l3-3.9z" opacity=".5" fill="#a0a1a2"/><path d="M28.3 25.9H11.5c-1.3 0-2-1.4-1.4-2.5l4.2-7.4 4.2-7c.7-1.1 2-1.1 2.7 0l4.2 7.3 4.2 7.2c.7 1.1.1 2.4-1.3 2.4z" fill="#ff8c00"/><g fill="#fff"><circle cx="19.9" cy="21.9" r="1.4"/><path d="M18.8 13.6l.3 6.3h1.8l.3-6.3h-1.4z"/></g><circle cx="20" cy="37.7" r="9" fill="#ba141a"/><path d="M20 36.1l-3.4-3.4-1.6 1.6 3.4 3.4-3.4 3.4 1.6 1.6 3.4-3.4 3.4 3.4 1.6-1.6-3.4-3.4 3.4-3.4-1.6-1.6z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Event_Grid.svg b/src/main/webapp/img/lib/mscae/Event_Grid.svg index 256493aa637dfc9db69437caf6dbda40f8f95cf2..592a886d773d3ffe663386e2c92b127e94939cac 100644 --- a/src/main/webapp/img/lib/mscae/Event_Grid.svg +++ b/src/main/webapp/img/lib/mscae/Event_Grid.svg @@ -1,14 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<polygon fill="#0072C6" points="39,22 39,20 24.004,20 23.996,19.996 16.991,27 11.82,27 23.82,15 32,15 32,13 23,13 23,13.005 - 22.992,13 8.991,27 7,27 7,29 13,29 20,35.999 20,35.999 20,36 37,36 37,34 20.828,34 15.829,29 28,29 28,27 19.82,27 24.82,22 "/> -<circle fill="#59B4D9" cx="30" cy="28" r="2.9"/> -<ellipse transform="matrix(0.7071 -0.7071 0.7071 0.7071 -0.2338 27.4349)" fill="#59B4D9" cx="33" cy="14" rx="2.9" ry="2.9"/> -<ellipse transform="matrix(0.7071 -0.7071 0.7071 0.7071 -3.1333 34.4349)" fill="#B8D432" cx="40" cy="21" rx="2.9" ry="2.9"/> -<ellipse transform="matrix(0.7071 -0.7071 0.7071 0.7071 -13.9114 36.4141)" fill="#B8D432" cx="37" cy="35" rx="2.9" ry="2.9"/> -<path fill="#0072C6" d="M0.801,0C0.3,0,0,0.3,0,0.8v10c0,0.5,0.3,0.8,0.801,0.8h5.008c0.501,0,0.801-0.3,0.801-0.8V6.7H43.37v4.2 - c0,0.5,0.3,0.8,1.002,0.8h4.808c0.501,0,0.801-0.3,0.801-0.8v-5v-5c0.1-0.6-0.2-0.9-0.701-0.9l0,0H0.801z"/> -<path fill="#0072C6" d="M49.2,50c0.5,0,0.8-0.3,0.8-0.8v-9.8c0-0.5-0.3-0.8-0.8-0.8h-4.8c-0.5,0-0.8,0.3-0.8,0.8v4H6.7v-4.2 - c0-0.5-0.3-0.8-1-0.8H0.8c-0.5,0-0.8,0.3-0.8,1v9.8C0,49.7,0.3,50,0.8,50H49.2z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path fill="#0072c6" d="M39 22v-2H24.004l-.008-.004L16.99 27h-5.17l12-12H32v-2h-9v.005L22.992 13l-14 14H7v2h6l7 7h17v-2H20.828l-5-5H28v-2h-8.18l5-5z"/><g fill="#59b4d9"><circle cx="30" cy="28" r="2.9"/><circle transform="matrix(.7071 -.7071 .7071 .7071 -.2338 27.4349)" cx="33" cy="14" r="2.9"/></g><g fill="#b8d432"><circle transform="matrix(.7071 -.7071 .7071 .7071 -3.1333 34.4349)" cx="40" cy="21" r="2.9"/><circle transform="matrix(.7071 -.7071 .7071 .7071 -13.9114 36.4141)" cx="37" cy="35" r="2.9"/></g><path d="M.8 0C.3 0 0 .3 0 .8v10c0 .5.3.8.8.8h5c.5 0 .8-.3.8-.8V6.7h36.76v4.2c0 .5.3.8 1.002.8h4.808c.5 0 .8-.3.8-.8V.9c.1-.6-.2-.9-.7-.9H.8zm48.4 50c.5 0 .8-.3.8-.8v-9.8c0-.5-.3-.8-.8-.8h-4.8c-.5 0-.8.3-.8.8v4H6.7v-4.2c0-.5-.3-.8-1-.8H.8c-.5 0-.8.3-.8 1v9.8c0 .5.3.8.8.8h48.4z" fill="#0072c6"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Event_Grid_Topics.svg b/src/main/webapp/img/lib/mscae/Event_Grid_Topics.svg new file mode 100644 index 0000000000000000000000000000000000000000..679a9adad86e45ed3f323400c593d9103fc7c09d --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Event_Grid_Topics.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="49.9" height="50"><path d="M3.067 13h22.667v4H3.067zm5 10h25.667v4H8.067zm-5 10h22.667v4H3.067z" fill="#0072c6"/><g fill="#b8d432"><circle cx="3.9" cy="35" r="3.9"/><circle transform="matrix(.707094 -.707119 .707119 .707094 -9.535165 7.22206)" cx="4" cy="15" r="3.9"/></g><circle transform="matrix(.707094 -.707119 .707119 .707094 -15.141828 13.686711)" cx="9" cy="25" r="3.9" fill="#59b4d9"/><path d="M23.9 20V10l8 5zm0 20V30l8 5zm8-10V20l8 5zm17.2 8.6h-4.8c-.5 0-.8.3-.8.8v4H6.9V50h42.2c.5 0 .8-.3.8-.8v-9.8c0-.5-.3-.8-.8-.8zM49.18 0H6.9v6.7h36.38v4.2c0 .5.3.8 1 .8h4.8c.5 0 .8-.3.8-.8V.9c.1-.6-.2-.9-.7-.9z" fill="#0072c6"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Event_Hub_Clusters.svg b/src/main/webapp/img/lib/mscae/Event_Hub_Clusters.svg new file mode 100644 index 0000000000000000000000000000000000000000..95f32a9fd49570e4c6885e7022e05e5f8c76193e --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Event_Hub_Clusters.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="48"><use xlink:href="#B" fill="#7fba00"/><path d="M0 .5v6a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 1 .5-.5h21a.5.5 0 0 1 .5.5v3a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 .5-.5v-6a.5.5 0 0 0-.5-.5H.5a.5.5 0 0 0-.5.5z" fill="#7a7a7a"/><use xlink:href="#B" x="11" y="9" fill="#7fba00"/><path d="M11 9.5v6a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 1 .5-.5h21a.5.5 0 0 1 .5.5v3a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 .5-.5v-6a.5.5 0 0 0-.5-.5h-27a.5.5 0 0 0-.5.5z" fill="#7a7a7a"/><path d="M31.5 35h-4a.5.5 0 0 1-.5-.5v-3a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5zm7-4h-4a.5.5 0 0 1-.5-.5v-3a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5zm0 7h-4a.5.5 0 0 1-.5-.5v-3a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5zm7-3h-4a.5.5 0 0 1-.5-.5v-3a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5zm-14 7h-4a.5.5 0 0 1-.5-.5v-3a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5zm0-14h-4a.5.5 0 0 1-.5-.5v-3a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5z" fill="#7fba00"/><path d="M22 18.5v6a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 1 .5-.5h21a.5.5 0 0 1 .5.5v3a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 .5-.5v-6a.5.5 0 0 0-.5-.5h-27a.5.5 0 0 0-.5.5zm28 29v-6a.5.5 0 0 0-.5-.5h-2a.5.5 0 0 0-.5.5v3a.5.5 0 0 1-.5.5h-21a.5.5 0 0 1-.5-.5v-3a.5.5 0 0 0-.5-.5h-2a.5.5 0 0 0-.5.5v6a.5.5 0 0 0 .5.5h27a.5.5 0 0 0 .5-.5z" fill="#3999c6"/><path d="M11 27H3.5a.5.5 0 0 1-.5-.5v-3a.5.5 0 0 0-.5-.5h-2a.5.5 0 0 0-.5.5v6a.5.5 0 0 0 .5.5H11zm11 9h-7.5a.5.5 0 0 1-.5-.5v-3a.5.5 0 0 0-.5-.5h-2a.5.5 0 0 0-.5.5v6a.5.5 0 0 0 .5.5H22z" fill="#7a7a7a"/><defs ><path id="B" d="M9.5 17h-4a.5.5 0 0 1-.5-.5v-3a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5zm0 7h-4a.5.5 0 0 1-.5-.5v-3a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5zm0-14h-4a.5.5 0 0 1-.5-.5v-3a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Event_Hubs.svg b/src/main/webapp/img/lib/mscae/Event_Hubs.svg index 9e71d44ac01c0d12738003e0482ce71fae3fcb10..96f6552fdcd7cf8fa7a39e211585252b09d42e88 100644 --- a/src/main/webapp/img/lib/mscae/Event_Hubs.svg +++ b/src/main/webapp/img/lib/mscae/Event_Hubs.svg @@ -1,79 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - viewBox="-163 237 29 30" - enable-background="new -163 237 32 32" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure Event Hubs_COLOR.svg" - width="29" - height="30"><metadata - id="metadata23"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs21" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview19" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="16.193277" - inkscape:cx="16.044344" - inkscape:cy="11.262184" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M -145,250.5 C -145,250.8 -145.2,251 -145.5,251 L -149.4,251 C -149.7,251 -149.9,250.8 -149.9,250.5 L -149.9,247.6 C -149.9,247.3 -149.7,247.1 -149.4,247.1 L -145.5,247.1 C -145.2,247.1 -145,247.3 -145,247.6 L -145,250.5 Z" - id="path3" - inkscape:connector-curvature="0" - style="fill:#b8d432" /><path - d="M -138,253.5 C -138,253.8 -138.2,254 -138.5,254 L -142.4,254 C -142.7,254 -142.9,253.8 -142.9,253.5 L -142.9,250.6 C -142.9,250.3 -142.7,250.1 -142.4,250.1 L -138.5,250.1 C -138.2,250.1 -138,250.3 -138,250.6 L -138,253.5 Z" - id="path5" - inkscape:connector-curvature="0" - style="fill:#b8d432" /><path - d="M -145,256.5 C -145,256.8 -145.2,257 -145.5,257 L -149.4,257 C -149.7,257 -149.9,256.8 -149.9,256.5 L -149.9,253.6 C -149.9,253.3 -149.7,253.1 -149.4,253.1 L -145.5,253.1 C -145.2,253.1 -145,253.3 -145,253.6 L -145,256.5 Z" - id="path7" - inkscape:connector-curvature="0" - style="fill:#b8d432" /><path - d="M -152,247.5 C -152,247.8 -152.2,248 -152.5,248 L -156.5,248 C -156.8,248 -157,247.8 -157,247.5 L -157,244.5 C -157,244.2 -156.8,244 -156.5,244 L -152.6,244 C -152.2,244 -152,244.2 -152,244.5 L -152,247.5 Z" - id="path9" - inkscape:connector-curvature="0" - style="fill:#b8d432" /><path - d="M -134.5,237 -134.5,237 -137.5,237 -159.6,237 -161.5,237 -162.5,237 C -162.8,237 -163,237.2 -163,237.5 L -163,243.5 C -163,243.8 -162.8,244 -162.5,244 L -159.5,244 C -159.2,244 -159,243.8 -159,243.5 L -159,241 -138,241 -138,243.5 C -138,243.8 -137.8,244 -137.4,244 L -134.5,244 C -134.2,244 -134,243.8 -134,243.5 L -134,240.5 -134,237.5 C -134,237.2 -134.2,237 -134.5,237 Z" - id="path11" - inkscape:connector-curvature="0" - style="fill:#0072c6" /><path - d="M -134.5,260.1 -137.4,260.1 C -137.7,260.1 -137.9,260.3 -137.9,260.6 L -137.9,263 -159,263 -159,260.5 C -159,260.2 -159.2,260 -159.6,260 L -162.5,260 C -162.8,260 -163,260.2 -163,260.6 L -163,266.5 C -163,266.8 -162.8,267 -162.5,267 L -161.5,267 -159.5,267 -137.4,267 -134.6,267 -134.5,267 C -134.2,267 -134,266.8 -134,266.5 L -134,260.6 C -134,260.3 -134.2,260.1 -134.5,260.1 Z" - id="path13" - inkscape:connector-curvature="0" - style="fill:#0072c6" /><path - d="M -152,253.5 C -152,253.8 -152.2,254 -152.5,254 L -156.5,254 C -156.8,254 -157,253.8 -157,253.5 L -157,250.5 C -157,250.2 -156.8,250 -156.5,250 L -152.6,250 C -152.2,250 -152,250.2 -152,250.5 L -152,253.5 Z" - id="path15" - inkscape:connector-curvature="0" - style="fill:#b8d432" /><path - d="M -152,259.5 C -152,259.8 -152.2,260 -152.5,260 L -156.5,260 C -156.8,260 -157,259.8 -157,259.5 L -157,256.5 C -157,256.2 -156.8,256 -156.5,256 L -152.6,256 C -152.2,256 -152,256.2 -152,256.5 L -152,259.5 Z" - id="path17" - inkscape:connector-curvature="0" - style="fill:#b8d432" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="-163 237 29 30" width="29" height="30"><g fill="#b8d432"><use xlink:href="#B"/><use xlink:href="#B" x="7" y="3"/><use xlink:href="#B" y="6"/><use xlink:href="#C"/></g><path d="M-134.5 237h-28a.47.47 0 0 0-.5.5v6a.47.47 0 0 0 .5.5h3a.47.47 0 0 0 .5-.5V241h21v2.5c0 .3.2.5.6.5h2.9a.47.47 0 0 0 .5-.5v-6a.47.47 0 0 0-.5-.5zm0 23.1h-2.9a.47.47 0 0 0-.5.5v2.4H-159v-2.5c0-.3-.2-.5-.6-.5h-2.9c-.3 0-.5.2-.5.6v5.9a.47.47 0 0 0 .5.5h28a.47.47 0 0 0 .5-.5v-5.9a.47.47 0 0 0-.5-.5z" fill="#0072c6"/><g fill="#b8d432"><use xlink:href="#C" y="6"/><use xlink:href="#C" y="12"/></g><defs ><path id="B" d="M-145 250.5a.47.47 0 0 1-.5.5h-3.9a.47.47 0 0 1-.5-.5v-2.9a.47.47 0 0 1 .5-.5h3.9a.47.47 0 0 1 .5.5v2.9z"/><path id="C" d="M-152 247.5a.47.47 0 0 1-.5.5h-4a.47.47 0 0 1-.5-.5v-3a.47.47 0 0 1 .5-.5h3.9c.4 0 .6.2.6.5v3z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Exchange_On_premises_Access.svg b/src/main/webapp/img/lib/mscae/Exchange_On_premises_Access.svg new file mode 100644 index 0000000000000000000000000000000000000000..e9de51cf3617a3fb043950b6941c2496394191fb --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Exchange_On_premises_Access.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="28" height="48.05"><path d="M27.96.702c-.002-.01-.001-.02-.004-.03-.012-.043-.034-.074-.05-.112-.24-.548-.9-.56-.9-.56h-26S.343.012.098.552C.08.592.056.626.043.672L.04.702C.013.8 0 .9 0 1v46c0 .957 1 1 1 1h26s1-.043 1-1V1c0-.113-.016-.21-.04-.298z" fill="#0072c6"/><g fill="#fff"><path d="M4 4h4v7H4zm8 0h4v7h-4zm8 0h4v7h-4zM4 15h4v7H4zm8 0h4v7h-4zm8 0h4v7h-4zM4 26h4v7H4zm8 0h4v7h-4zm-1 13h6v9.05h-6zm9-13h4v7h-4z" opacity=".85"/><path d="M25 0H.993C.983 0 .34.016.097.55.08.59.055.625.042.67L.038.7C.016.79 0 .887 0 1v34.295z" opacity=".2"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Express_Route.svg b/src/main/webapp/img/lib/mscae/Express_Route.svg index f69ca09b6a675580b5ce2310d544522533ff91ac..643725d1e03c54b8dd5d66c9271fc345da5e83ec 100644 --- a/src/main/webapp/img/lib/mscae/Express_Route.svg +++ b/src/main/webapp/img/lib/mscae/Express_Route.svg @@ -1,79 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="30.6" - viewBox="0 0 50 30.6" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure Express Route_COLOR.svg"><metadata - id="metadata19"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs17" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview15" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="10.363697" - inkscape:cx="25.45505" - inkscape:cy="8.2232427" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><rect - x="9.8000002" - y="23.099998" - width="31" - height="3.8" - id="rect3" - style="fill:#68217a" /><rect - x="-11.053578" - y="19.708536" - transform="matrix(0.70710678,-0.70710678,0.70710678,0.70710678,0,0)" - width="21.199797" - height="3.7999635" - id="rect5" - style="fill:#68217a" /><rect - x="25.289461" - y="-15.693048" - transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)" - width="21.199797" - height="3.7999635" - id="rect7" - style="fill:#68217a" /><path - d="M 25,0 C 21.9,0 19.4,2.5 19.4,5.6 19.4,8.7 21.9,11.2 25,11.2 28.1,11.2 30.6,8.7 30.6,5.6 30.6,2.5 28.1,0 25,0 Z M 25,7.4 C 24,7.4 23.2,6.6 23.2,5.6 23.2,4.6 24,3.8 25,3.8 26,3.8 26.8,4.6 26.8,5.6 26.8,6.6 26,7.4 25,7.4 Z" - id="path9" - inkscape:connector-curvature="0" - style="fill:#7fba00" /><path - d="M 5.6,19.4 C 2.5,19.4 0,21.9 0,25 0,28.1 2.5,30.6 5.6,30.6 8.7,30.6 11.2,28.1 11.2,25 11.2,21.9 8.7,19.4 5.6,19.4 Z M 5.6,26.8 C 4.6,26.8 3.8,26 3.8,25 3.8,24 4.6,23.2 5.6,23.2 6.6,23.2 7.4,24 7.4,25 7.4,26 6.6,26.8 5.6,26.8 Z" - id="path11" - inkscape:connector-curvature="0" - style="fill:#7fba00" /><path - d="M 44.4,19.4 C 41.3,19.4 38.8,21.9 38.8,25 38.8,28.1 41.3,30.6 44.4,30.6 47.5,30.6 50,28.1 50,25 50,21.9 47.5,19.4 44.4,19.4 Z M 44.4,26.8 C 43.4,26.8 42.6,26 42.6,25 42.6,24 43.4,23.2 44.4,23.2 45.4,23.2 46.2,24 46.2,25 46.2,26 45.4,26.8 44.4,26.8 Z" - id="path13" - inkscape:connector-curvature="0" - style="fill:#7fba00" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="30.6"><g fill="#68217a"><path d="M9.8 23.1h31v3.8h-31z"/><path d="M6.12 21.752l14.98-15 2.687 2.687-15 15zM28.98 6.786l15 15-2.687 2.687-15-15z"/></g><g fill="#7fba00"><path d="M25 0a5.59 5.59 0 0 0-5.6 5.6 5.59 5.59 0 1 0 11.2 0A5.59 5.59 0 0 0 25 0zm0 7.4a1.79 1.79 0 0 1-1.8-1.8 1.79 1.79 0 1 1 3.6 0A1.79 1.79 0 0 1 25 7.4z"/><use xlink:href="#B"/><use xlink:href="#B" x="38.8"/></g><defs ><path id="B" d="M5.6 19.4a5.59 5.59 0 1 0 0 11.2 5.59 5.59 0 1 0 0-11.2zm0 7.4a1.79 1.79 0 1 1 0-3.6 1.79 1.79 0 1 1 0 3.6z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Extensions.svg b/src/main/webapp/img/lib/mscae/Extensions.svg index f2e4b944bc63f7a5198ed54fe79b12799a2fe0f7..5fbd7cc1c93fb6494d6fab1098c14ffab12ade83 100644 --- a/src/main/webapp/img/lib/mscae/Extensions.svg +++ b/src/main/webapp/img/lib/mscae/Extensions.svg @@ -1,9 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - height="50px" width="50px" viewBox="0 0 100 100" enable-background="new 0 0 100 100" xml:space="preserve"> -<rect x="30" y="42" fill="#59B4D9" width="28" height="28"/> -<polygon fill="#804998" points="56,0 56,22 78,22 78,44 100,44 100,0 "/> -<polygon fill="#A0A1A2" points="22,78 22,34 38,34 38,12 0,12 0,100 88,100 88,60 66.2,60 66.2,78 "/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" height="50" width="50" viewBox="0 0 100 100"><path fill="#59b4d9" d="M30 42h28v28H30z"/><path fill="#804998" d="M56 0v22h22v22h22V0z"/><path fill="#a0a1a2" d="M22 78V34h16V12H0v88h88V60H66.2v18z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Favorite.svg b/src/main/webapp/img/lib/mscae/Favorite.svg index 6f350eaa494096e4ff01fa84a10e61b8f76b86a4..963a034dfecb5a04c8db0b4c86788eb04a0f7fad 100644 --- a/src/main/webapp/img/lib/mscae/Favorite.svg +++ b/src/main/webapp/img/lib/mscae/Favorite.svg @@ -1,55 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="14" - height="20" - viewBox="0.5 0.5 14 20" - enable-background="new 0.5 0.5 24 24" - xml:space="preserve" - sodipodi:docname="Favorite.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata887"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs885" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview883" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="35.416667" - inkscape:cx="7" - inkscape:cy="10" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 0.5,0.5 v 20 l 7,-5 7,5 V 0.5 Z M 11.208,13.706 7.5,11.126 3.792,13.706 5.1,9.382 1.5,6.653 6.017,6.561 7.5,2.294 8.983,6.561 13.5,6.653 9.9,9.382 Z" - id="path880" - inkscape:connector-curvature="0" - style="fill:#fcd116" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="14" height="20" viewBox="0.5 0.5 14 20"><path d="M.5.5v20l7-5 7 5V.5zm10.708 13.206L7.5 11.126l-3.708 2.58L5.1 9.382l-3.6-2.73 4.517-.092L7.5 2.294 8.983 6.56l4.517.092-3.6 2.73z" fill="#fcd116"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/File.svg b/src/main/webapp/img/lib/mscae/File.svg index 8c7a5fb59466499c2809477282f73c16e85b9cae..c561adbef44737108daa407ac4dd0d1e765226c7 100644 --- a/src/main/webapp/img/lib/mscae/File.svg +++ b/src/main/webapp/img/lib/mscae/File.svg @@ -1,80 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="50" - width="44" - viewBox="0 0 44 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="File.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata959"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs957" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview955" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="8.5" - inkscape:cx="30.42569" - inkscape:cy="14.542692" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<polygon - points="38.2,0 38,0 3,0 3,50 47,50 47,9 47,8.8 45,6.8 40.2,2 " - id="polygon942" - style="fill:#59b4d9" - transform="translate(-3)" /> -<polygon - points="5,48 45,48 45,9 38,9 38,2 5,2 " - id="polygon944" - style="opacity:0.8;fill:#ffffff" - transform="translate(-3)" /> -<path - d="m 25.8,39.2 c 0,0.6 -0.5,1.1 -1.1,1.1 H 9.6 C 9,40.3 8.5,39.8 8.5,39.2 8.5,38.6 9,38.1 9.6,38.1 h 15.1 c 0.6,0 1.1,0.5 1.1,1.1" - id="path946" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="m 35.9,24.2 c 0,0.6 -0.5,1.1 -1.1,1.1 H 9.6 C 9,25.3 8.5,24.8 8.5,24.2 8.5,23.6 9,23.1 9.6,23.1 h 25.1 c 0.7,0 1.2,0.5 1.2,1.1" - id="path948" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="m 35.9,31.7 c 0,0.6 -0.5,1.1 -1.1,1.1 H 9.6 C 9,32.8 8.5,32.3 8.5,31.7 8.5,31.1 9,30.6 9.6,30.6 h 25.1 c 0.7,0 1.2,0.5 1.2,1.1" - id="path950" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="m 35.9,16.7 c 0,0.6 -0.5,1.1 -1.1,1.1 H 9.6 C 9,17.8 8.5,17.3 8.5,16.7 8.5,16.1 9,15.6 9.6,15.6 h 25.1 c 0.7,0 1.2,0.5 1.2,1.1" - id="path952" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="50" width="44"><path d="M35.2 0H0v50h44V8.8L37.2 2z" fill="#59b4d9"/><path d="M2 48h40V9h-7V2H2z" opacity=".8" fill="#fff"/><g fill="#59b4d9"><path d="M25.8 39.2a1.11 1.11 0 0 1-1.1 1.1H9.6a1.11 1.11 0 0 1-1.1-1.1 1.11 1.11 0 0 1 1.1-1.1h15.1a1.11 1.11 0 0 1 1.1 1.1"/><use xlink:href="#B"/><use xlink:href="#B" y="7.5"/><use xlink:href="#B" y="-7.5"/></g><defs ><path id="B" d="M35.9 24.2a1.11 1.11 0 0 1-1.1 1.1H9.6a1.11 1.11 0 0 1-1.1-1.1 1.11 1.11 0 0 1 1.1-1.1h25.1c.7 0 1.2.5 1.2 1.1"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Files.svg b/src/main/webapp/img/lib/mscae/Files.svg index a6b6aaea1d1fe7e63329087ea611913d236e864f..41281c9ea046a647cdb2f294b74f06b972216fb0 100644 --- a/src/main/webapp/img/lib/mscae/Files.svg +++ b/src/main/webapp/img/lib/mscae/Files.svg @@ -1,113 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="50" - width="48" - viewBox="0 0 48 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Files.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata1056"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs1054" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview1052" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="6.0104076" - inkscape:cx="32.384959" - inkscape:cy="29.362397" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<polygon - points="41.8,12 41.6,12 13,12 13,50 49,50 49,19.4 49,19.2 47.4,17.5 43.5,13.6 " - id="polygon1029" - style="fill:#59b4d9" - transform="translate(-1)" /> -<polygon - points="15,48 47,48 47,20 41,20 41,14 15,14 " - id="polygon1031" - style="opacity:0.8;fill:#ffffff" - transform="translate(-1)" /> -<path - d="m 19,39.1 c 0,-0.5 0.4,-0.9 0.9,-0.9 h 12.4 c 0.5,0 0.9,0.4 0.9,0.9 0,0.5 -0.4,0.9 -0.9,0.9 H 19.9 C 19.4,40 19,39.6 19,39.1" - id="path1033" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="M 19,32.9 C 19,32.4 19.4,32 19.9,32 h 20.5 c 0.5,0 0.9,0.4 0.9,0.9 0,0.5 -0.4,0.9 -0.9,0.9 H 19.9 C 19.4,33.8 19,33.4 19,32.9" - id="path1035" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="m 19,27.1 c 0,-0.5 0.4,-0.9 0.9,-0.9 h 20.5 c 0.5,0 0.9,0.4 0.9,0.9 0,0.5 -0.4,0.9 -0.9,0.9 H 19.9 C 19.4,28 19,27.6 19,27.1" - id="path1037" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<rect - x="2" - width="29" - height="6" - id="rect1039" - y="0" - style="fill:#59b4d9" /> -<rect - x="0" - width="6" - height="40" - id="rect1041" - y="0" - style="fill:#59b4d9" /> -<polygon - points="3,38 7,38 7,6 30,6 30,2 5,2 3,2 " - id="polygon1043" - style="opacity:0.8;fill:#ffffff" - transform="translate(-1)" /> -<rect - x="8" - y="6" - width="29" - height="6" - id="rect1045" - style="fill:#59b4d9" /> -<rect - x="6" - y="6" - width="6" - height="38" - id="rect1047" - style="fill:#59b4d9" /> -<polygon - points="9,42 13,42 13,12 36,12 36,8 11,8 9,8 " - id="polygon1049" - style="opacity:0.8;fill:#ffffff" - transform="translate(-1)" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" height="50" width="48"><path d="M40.8 12H12v38h36V19.2l-1.6-1.7-3.9-3.9z" fill="#59b4d9"/><path d="M14 48h32V20h-6v-6H14z" opacity=".8" fill="#fff"/><g fill="#59b4d9"><path d="M19 39.1c0-.5.4-.9.9-.9h12.4c.5 0 .9.4.9.9s-.4.9-.9.9H19.9c-.5 0-.9-.4-.9-.9m0-6.2c0-.5.4-.9.9-.9h20.5c.5 0 .9.4.9.9s-.4.9-.9.9H19.9c-.5 0-.9-.4-.9-.9m0-5.8c0-.5.4-.9.9-.9h20.5c.5 0 .9.4.9.9s-.4.9-.9.9H19.9c-.5 0-.9-.4-.9-.9M2 0h29v6H2z"/><path d="M0 0h6v40H0z"/></g><path d="M2 38h4V6h23V2H2z" opacity=".8" fill="#fff"/><g fill="#59b4d9"><path d="M8 6h29v6H8z"/><path d="M6 6h6v38H6z"/></g><path d="M8 42h4V12h23V8H8z" opacity=".8" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Folder.svg b/src/main/webapp/img/lib/mscae/Folder.svg index 110378817d6307eef563adb0abf6ef5d0aca3c68..f3218a89361fb9250079c56847b1497fb19da557 100644 --- a/src/main/webapp/img/lib/mscae/Folder.svg +++ b/src/main/webapp/img/lib/mscae/Folder.svg @@ -1,60 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="16.524" - width="18" - viewBox="0 0 12 11.016" - enable-background="new 0 0 12 12" - xml:space="preserve" - sodipodi:docname="Folder.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata1166"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs1164" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview1162" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="23.611111" - inkscape:cx="8.1133033" - inkscape:cy="5.5570863" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="M 11.3,2 H 1 v 9 H 11.4 C 11.7,11 12,10.7 12,10.4 V 2 Z" - id="path1157" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<path - d="m 1,2 v 8.6 C 1,10.9 0.9,11 0.6,11 0.3,11 0,11.1 0,10.8 V 0 H 3.8 L 5.2,1 H 12 v 1 z" - id="path1159" - inkscape:connector-curvature="0" - style="fill:#7a7a7a" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" height="16.524" width="18" viewBox="0 0 12 11.016"><path d="M11.3 2H1v9h10.4a.65.65 0 0 0 .6-.6V2z" fill="#a0a1a2"/><path d="M1 2v8.6c0 .3-.1.4-.4.4s-.6.1-.6-.2V0h3.8l1.4 1H12v1z" fill="#7a7a7a"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/FolderBlank.svg b/src/main/webapp/img/lib/mscae/FolderBlank.svg index d1cbcedb8ffa2a24acbcb14ec53671a56a4a02e9..2acc9e2a3fce323ec9f7c4ad7a1c2237867f500a 100644 --- a/src/main/webapp/img/lib/mscae/FolderBlank.svg +++ b/src/main/webapp/img/lib/mscae/FolderBlank.svg @@ -1,60 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="49.999001" - height="46.080002" - viewBox="0 0 49.999001 46.080002" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="FolderBlank.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata1257"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs1255" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview1253" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.020815" - inkscape:cx="22.34416" - inkscape:cy="16.964259" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="M 48.065,9.912 V 5.935 H 21.897 L 15.963,0 H 0 v 43.708 c 0,1.31 1.06,2.371 2.37,2.372 v 0 h 45.258 c 1.309,0 2.371,-1.062 2.371,-2.372 V 9.912 Z" - id="path1248" - inkscape:connector-curvature="0" - style="fill:#fee087" /> -<path - d="m 4.742,9.912 v 33.796 c 0,1.31 -1.062,2.372 -2.371,2.372 C 1.06,46.08 0,45.018 0,43.708 V 0 h 15.963 l 5.934,5.935 h 26.168 v 3.977 z" - id="path1250" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#1e1e1e" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="49.999" height="46.08"><path d="M48.065 9.912V5.935H21.897L15.963 0H0v43.708a2.37 2.37 0 0 0 2.37 2.372h45.258c1.31 0 2.37-1.062 2.37-2.372V9.912z" fill="#fee087"/><path d="M4.742 9.912v33.796c0 1.3-1.062 2.372-2.37 2.372A2.37 2.37 0 0 1 0 43.708V0h15.963l5.934 5.935h26.168v3.977z" opacity=".2" fill="#1e1e1e"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/FolderCube.svg b/src/main/webapp/img/lib/mscae/FolderCube.svg index 6c2d21fbb830b82e67b48925ad177b4f4374ddef..5731b085a9241dd55304333d9b4498f45be2b347 100644 --- a/src/main/webapp/img/lib/mscae/FolderCube.svg +++ b/src/main/webapp/img/lib/mscae/FolderCube.svg @@ -1,77 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="49.999001" - height="46.080002" - viewBox="0 0 49.999001 46.080002" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="FolderCube.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata1327"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs1325" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview1323" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.020815" - inkscape:cx="22.860814" - inkscape:cy="22.352006" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="M 48.065,9.912 V 5.935 H 21.897 L 15.963,0 H 0 v 43.708 c 0,1.31 1.06,2.371 2.37,2.372 v 0 h 45.258 c 1.309,0 2.371,-1.062 2.371,-2.372 V 9.912 Z" - id="path1312" - inkscape:connector-curvature="0" - style="fill:#fee087" /> -<path - d="m 26.176,25.945 c -0.052,0 -0.105,-0.016 -0.155,-0.044 L 15.846,20.028 c -0.093,-0.055 -0.152,-0.158 -0.152,-0.267 0,-0.11 0.059,-0.212 0.152,-0.266 L 25.958,13.66 c 0.097,-0.053 0.213,-0.053 0.306,0 l 10.178,5.876 c 0.094,0.054 0.152,0.155 0.152,0.265 0,0.112 -0.058,0.212 -0.152,0.267 l -10.111,5.833 c -0.048,0.028 -0.099,0.044 -0.155,0.044" - id="path1314" - inkscape:connector-curvature="0" - style="fill:#dd5900" /> -<path - d="m 24.714,40.221 c -0.056,0 -0.11,-0.013 -0.155,-0.041 L 14.415,34.325 C 14.316,34.269 14.259,34.17 14.259,34.058 V 22.309 c 0,-0.11 0.057,-0.211 0.156,-0.269 0.093,-0.053 0.208,-0.053 0.31,0 l 10.143,5.855 c 0.09,0.057 0.15,0.158 0.15,0.268 v 11.75 c 0,0.113 -0.06,0.211 -0.15,0.267 -0.051,0.028 -0.103,0.041 -0.154,0.041" - id="path1316" - inkscape:connector-curvature="0" - style="fill:#ff8c00" /> -<path - enable-background="new " - d="m 27.585,40.221 c -0.055,0 -0.107,-0.013 -0.157,-0.041 -0.093,-0.056 -0.152,-0.154 -0.152,-0.267 V 28.239 c 0,-0.11 0.059,-0.211 0.152,-0.268 l 10.141,-5.853 c 0.097,-0.054 0.212,-0.054 0.306,0 0.097,0.055 0.156,0.157 0.156,0.266 v 11.674 c 0,0.112 -0.059,0.211 -0.156,0.267 l -10.14,5.855 c -0.042,0.028 -0.097,0.041 -0.15,0.041" - id="path1318" - inkscape:connector-curvature="0" - style="opacity:0.5;fill:#ff8c00" /> -<path - enable-background="new " - d="m 4.742,9.912 v 33.796 c 0,1.31 -1.062,2.372 -2.371,2.372 C 1.06,46.08 0,45.018 0,43.708 V 0 h 15.963 l 5.934,5.935 h 26.168 v 3.977 z" - id="path1320" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#1e1e1e" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="49.999" height="46.08"><path d="M48.065 9.912V5.935H21.897L15.963 0H0v43.708a2.37 2.37 0 0 0 2.37 2.372h45.258c1.31 0 2.37-1.062 2.37-2.372V9.912z" fill="#fee087"/><path d="M26.176 25.945a.32.32 0 0 1-.155-.044l-10.175-5.873c-.093-.055-.152-.158-.152-.267a.31.31 0 0 1 .152-.266l10.112-5.835c.097-.053.213-.053.306 0l10.178 5.876c.094.054.152.155.152.265s-.058.212-.152.267L26.33 25.9c-.048.028-.1.044-.155.044" fill="#dd5900"/><g fill="#ff8c00"><path d="M24.714 40.22c-.056 0-.1-.013-.155-.04l-10.144-5.855a.3.3 0 0 1-.156-.267V22.31a.31.31 0 0 1 .156-.269c.093-.053.208-.053.3 0l10.143 5.855a.32.32 0 0 1 .15.268v11.75c0 .113-.06.21-.15.267-.05.028-.103.04-.154.04"/><path d="M27.585 40.22c-.055 0-.107-.013-.157-.04a.31.31 0 0 1-.152-.267V28.24c0-.1.06-.21.152-.268l10.14-5.853a.31.31 0 0 1 .306 0c.097.055.156.157.156.266v11.674c0 .112-.06.21-.156.267l-10.14 5.855c-.042.028-.097.04-.15.04" opacity=".5"/></g><path d="M4.742 9.912v33.796c0 1.3-1.062 2.372-2.37 2.372A2.37 2.37 0 0 1 0 43.708V0h15.963l5.934 5.935h26.168v3.977z" opacity=".2" fill="#1e1e1e"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/FolderWebsite.svg b/src/main/webapp/img/lib/mscae/FolderWebsite.svg index 266afc5dfa9d142702396e8697a74c8f29d55550..dbe3c2b524cc6d250a89162aed43f683a2fd4aa6 100644 --- a/src/main/webapp/img/lib/mscae/FolderWebsite.svg +++ b/src/main/webapp/img/lib/mscae/FolderWebsite.svg @@ -1,75 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="46.080002" - viewBox="0 0 50 46.080002" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="FolderWebsite.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata1388"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs1386" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview1384" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.020815" - inkscape:cx="32.845692" - inkscape:cy="20.326698" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="M 47.064,9.912 V 5.934 H 21.897 L 15.963,0 H 0 v 43.708 c 0,1.309 1.06,2.372 2.371,2.372 v 0 H 47.629 C 48.938,46.08 50,45.017 50,43.709 V 9.912 Z" - id="path1373" - inkscape:connector-curvature="0" - style="fill:#fee087" /> -<path - d="m 32.59,36.052 c -1.656,1.267 -3.607,1.883 -5.544,1.883 -2.749,0 -5.467,-1.234 -7.263,-3.584 -3.069,-4.007 -2.312,-9.737 1.703,-12.807 1.655,-1.274 3.608,-1.882 5.543,-1.882 2.749,0 5.467,1.234 7.263,3.585 3.069,4.006 2.304,9.739 -1.702,12.805" - id="path1375" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="m 30.911,30.399 c 0.664,0.866 1.895,1.023 2.757,0.367 0.045,-0.034 0.079,-0.075 0.12,-0.112 0.88,0.62 1.565,1.08 1.909,1.314 0.104,-0.265 0.17,-0.515 0.244,-0.78 -0.362,-0.269 -0.933,-0.709 -1.639,-1.281 0.233,-0.613 0.158,-1.329 -0.267,-1.89 -0.609,-0.787 -1.688,-0.988 -2.532,-0.505 -0.934,-0.838 -1.95,-1.784 -3.034,-2.861 3.351,-1.802 5.73,-1.537 5.73,-1.537 -0.398,-0.508 -0.843,-0.952 -1.318,-1.352 -1.414,-0.219 -3.607,-0.194 -6.115,1.14 v -0.001 c -0.122,0.064 -0.244,0.139 -0.367,0.21 0.122,-0.071 0.244,-0.146 0.366,-0.211 -0.835,-0.875 -1.687,-1.812 -2.552,-2.819 -0.416,0.133 -0.82,0.298 -1.211,0.492 0.639,1.046 1.498,2.101 2.469,3.131 0,0 0,0 0.001,0 0.032,0.034 0.067,0.068 0.099,0.102 -0.033,-0.034 -0.07,-0.065 -0.101,-0.099 -0.828,0.57 -1.673,1.296 -2.531,2.203 -0.109,0.117 -0.205,0.236 -0.308,0.354 -0.492,-0.1 -1.009,-0.074 -1.493,0.099 -0.83,-1.789 -0.773,-3.229 -0.642,-3.968 -0.359,0.376 -0.695,0.771 -0.984,1.193 -0.217,0.885 -0.276,2.162 0.365,3.699 -0.735,0.965 -0.776,2.328 -0.006,3.336 0.067,0.087 0.146,0.158 0.221,0.235 -0.336,1.146 -0.504,2.255 -0.55,3.204 0.086,0.118 0.086,0.212 0.173,0.327 0.438,0.562 0.992,1.094 1.524,1.523 -0.065,-1.007 0.007,-2.551 0.631,-4.221 0.426,0.031 0.856,-0.035 1.262,-0.205 0.236,0.208 0.48,0.417 0.744,0.63 0.897,0.71 1.791,1.263 2.663,1.698 -0.045,0.444 0.066,0.904 0.354,1.286 0.616,0.795 1.757,0.944 2.552,0.336 0.166,-0.127 0.297,-0.28 0.405,-0.445 1.422,0.317 2.664,0.372 3.585,0.372 0.141,0 0.795,-0.889 1.17,-1.441 -0.56,0.117 -2.226,0.339 -4.497,-0.313 -0.055,-0.253 -0.16,-0.5 -0.328,-0.719 -0.577,-0.756 -1.629,-0.92 -2.417,-0.415 -0.791,-0.429 -1.618,-0.963 -2.472,-1.639 -0.178,-0.141 -0.331,-0.281 -0.495,-0.422 0.513,-0.817 0.571,-1.857 0.12,-2.735 0.108,-0.108 0.199,-0.218 0.314,-0.325 0.807,-0.753 1.663,-1.424 2.387,-1.926 1.14,1.054 2.348,2.052 3.492,2.944 -0.306,0.643 -0.258,1.426 0.202,2.027 z" - id="path1377" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -<path - d="m 27.309,25.361 c 0.002,-0.001 0.004,-0.003 0.006,-0.005 0.058,-0.037 0.117,-0.075 0.175,-0.113 -0.06,0.04 -0.121,0.079 -0.181,0.118 z" - id="path1379" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -<path - d="M 4.742,9.912 V 43.708 C 4.742,45.017 3.68,46.08 2.371,46.08 1.06,46.08 0,45.017 0,43.708 V 0 h 15.963 l 5.934,5.934 h 25.167 v 3.978 z" - id="path1381" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#1e1e1e" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="46.08"><path d="M47.064 9.912V5.934H21.897L15.963 0H0v43.708a2.37 2.37 0 0 0 2.371 2.372H47.63c1.31 0 2.37-1.063 2.37-2.37V9.912z" fill="#fee087"/><path d="M32.6 36.052c-1.656 1.267-3.607 1.883-5.544 1.883-2.75 0-5.467-1.234-7.263-3.584a9.13 9.13 0 0 1 1.703-12.807 9.05 9.05 0 0 1 5.543-1.882c2.75 0 5.467 1.234 7.263 3.585 3.07 4.006 2.304 9.74-1.702 12.805" fill="#59b4d9"/><g fill="#fff"><path d="M30.91 30.4a1.97 1.97 0 0 0 2.757.367c.045-.034.08-.075.12-.112l1.91 1.314c.104-.265.17-.515.244-.78l-1.64-1.28c.233-.613.158-1.33-.267-1.9-.61-.787-1.688-.988-2.532-.505l-3.034-2.86c3.35-1.802 5.73-1.537 5.73-1.537-.398-.508-.843-.952-1.318-1.352-1.414-.22-3.607-.194-6.115 1.14V22.9l-.367.2.366-.21-2.552-2.82a8.65 8.65 0 0 0-1.211.492c.64 1.046 1.498 2.1 2.47 3.13l.1.102-.1-.1c-.828.57-1.673 1.296-2.53 2.203l-.308.354c-.492-.1-1.01-.074-1.493.1-.83-1.79-.773-3.23-.642-3.968-.36.376-.695.77-.984 1.193-.217.885-.276 2.162.365 3.7-.735.965-.776 2.328-.006 3.336.067.087.146.158.22.235-.336 1.146-.504 2.255-.55 3.204.086.118.086.212.173.327.438.562.992 1.094 1.524 1.523-.065-1.007.007-2.55.63-4.22a2.74 2.74 0 0 0 1.262-.205l.744.63a15.24 15.24 0 0 0 2.663 1.698 1.82 1.82 0 0 0 .354 1.286c.616.795 1.757.944 2.552.336.166-.127.297-.28.405-.445 1.422.317 2.664.372 3.585.372.14 0 .795-.89 1.17-1.44-.56.117-2.226.34-4.497-.313-.055-.253-.16-.5-.328-.72-.577-.756-1.63-.92-2.417-.415-.79-.43-1.618-.963-2.472-1.64l-.495-.422a2.77 2.77 0 0 0 .12-2.735l.314-.325c.807-.753 1.663-1.424 2.387-1.926l3.492 2.944c-.306.643-.258 1.426.202 2.027z"/><path d="M27.31 25.36l.18-.118-.18.118z"/></g><path d="M4.742 9.912v33.796c0 1.31-1.062 2.372-2.37 2.372A2.37 2.37 0 0 1 0 43.708V0h15.963l5.934 5.934h25.167v3.978z" opacity=".2" fill="#1e1e1e"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/ForPlacementOnly.svg b/src/main/webapp/img/lib/mscae/ForPlacementOnly.svg index f983d97cf6e5185fc306971d5f45be91d3c36501..9dc63bcb049a60abca7615933d584943e01d72ab 100644 --- a/src/main/webapp/img/lib/mscae/ForPlacementOnly.svg +++ b/src/main/webapp/img/lib/mscae/ForPlacementOnly.svg @@ -1,24 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<circle fill="#EC008C" cx="25" cy="25" r="25"/> -<path fill="#FFFFFF" d="M10.055,19.625v4.507h5.294v2.179h-5.294v6.379h-2.53V17.446h8.25v2.179H10.055z"/> -<path fill="#FFFFFF" d="M28.669,22.177c0,0.688-0.128,1.338-0.383,1.951c-0.255,0.613-0.631,1.146-1.127,1.6 - c-0.496,0.453-1.105,0.813-1.828,1.079c-0.723,0.266-1.549,0.398-2.477,0.398h-1.807v5.485h-2.53V17.446h4.709 - c0.914,0,1.711,0.11,2.392,0.33c0.68,0.22,1.247,0.535,1.7,0.946c0.454,0.411,0.792,0.909,1.016,1.493 - C28.558,20.8,28.669,21.454,28.669,22.177z M26.011,22.262c0-0.411-0.065-0.781-0.196-1.111c-0.131-0.33-0.331-0.611-0.601-0.845 - c-0.27-0.233-0.604-0.413-1.004-0.537s-0.874-0.186-1.419-0.186h-1.743v5.485h1.626c1.049,0,1.867-0.237,2.456-0.712 - C25.717,23.881,26.011,23.183,26.011,22.262z"/> -<path fill="#FFFFFF" d="M44.796,24.919c0,1.226-0.176,2.333-0.526,3.322c-0.351,0.989-0.851,1.832-1.499,2.53 - s-1.426,1.237-2.333,1.616s-1.921,0.568-3.04,0.568c-1.085,0-2.071-0.188-2.961-0.563c-0.89-0.375-1.649-0.899-2.28-1.573 - c-0.631-0.673-1.12-1.482-1.467-2.429c-0.348-0.946-0.521-1.986-0.521-3.12c0-1.169,0.165-2.247,0.495-3.232 - c0.329-0.985,0.813-1.837,1.45-2.557c0.639-0.719,1.421-1.281,2.35-1.685c0.929-0.404,1.991-0.605,3.189-0.605 - c1.056,0,2.023,0.184,2.902,0.553c0.878,0.368,1.632,0.889,2.259,1.563s1.114,1.487,1.462,2.439 - C44.622,22.7,44.796,23.757,44.796,24.919z M42.117,25.153c0-0.942-0.108-1.77-0.324-2.482c-0.217-0.712-0.524-1.308-0.925-1.786 - s-0.881-0.84-1.44-1.084c-0.561-0.244-1.188-0.367-1.882-0.367c-0.723,0-1.375,0.138-1.956,0.415s-1.073,0.665-1.478,1.164 - c-0.404,0.5-0.716,1.093-0.936,1.781s-0.329,1.446-0.329,2.275c0,0.886,0.116,1.678,0.351,2.376c0.233,0.698,0.556,1.29,0.967,1.775 - s0.896,0.855,1.457,1.11c0.56,0.256,1.165,0.383,1.817,0.383c0.694,0,1.327-0.118,1.897-0.355s1.063-0.589,1.478-1.053 - c0.415-0.464,0.735-1.044,0.962-1.738C42.004,26.872,42.117,26.067,42.117,25.153z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><circle fill="#ec008c" cx="25" cy="25" r="25"/><path d="M10.055 19.625v4.507h5.294v2.18h-5.294v6.38h-2.53V17.446h8.25v2.18h-5.72zm18.615 2.552a5.02 5.02 0 0 1-.383 1.95c-.255.612-.63 1.146-1.127 1.6s-1.105.813-1.828 1.08-1.55.398-2.477.398h-1.807V32.7h-2.53V17.446h4.7c.914 0 1.7.1 2.392.33s1.247.535 1.7.946.792.9 1.016 1.493.335 1.24.335 1.962zm-2.658.085c0-.4-.065-.78-.196-1.1a2.16 2.16 0 0 0-.6-.845 2.77 2.77 0 0 0-1.004-.537c-.4-.124-.874-.186-1.42-.186H21.05v5.485h1.626c1.05 0 1.867-.237 2.456-.712s.88-1.173.88-2.094zm18.784 2.658c0 1.226-.176 2.333-.526 3.322s-.85 1.832-1.5 2.53a6.63 6.63 0 0 1-2.333 1.616c-.907.38-1.92.568-3.04.568-1.085 0-2.07-.188-2.96-.563s-1.65-.9-2.28-1.573-1.12-1.482-1.467-2.43-.52-1.986-.52-3.12c0-1.17.165-2.247.495-3.232s.813-1.837 1.45-2.557a6.61 6.61 0 0 1 2.35-1.685c.93-.405 2-.605 3.2-.605 1.056 0 2.023.184 2.902.553a6.45 6.45 0 0 1 2.259 1.563c.627.674 1.114 1.487 1.462 2.44s.52 2 .52 3.173zm-2.68.234c0-.942-.108-1.77-.324-2.482s-.524-1.308-.925-1.786-.88-.84-1.44-1.084-1.188-.367-1.882-.367c-.723 0-1.375.138-1.956.415s-1.073.665-1.478 1.164-.716 1.093-.936 1.78-.33 1.446-.33 2.275c0 .886.116 1.678.35 2.376s.556 1.3.967 1.775.896.855 1.457 1.1 1.165.383 1.817.383c.694 0 1.327-.118 1.897-.355s1.063-.6 1.478-1.053.735-1.044.962-1.738.34-1.5.34-2.414z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Free_Services.svg b/src/main/webapp/img/lib/mscae/Free_Services.svg new file mode 100644 index 0000000000000000000000000000000000000000..203aa8aa3588091889ba239b87f47b42ae393715 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Free_Services.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="106.702" height="98.5"><path d="M69.3 78H38.1c3.5 12.3 1 14.1-19.5 14.1v6.4h69.8v-6.4c-20.6 0-22.6-1.8-19.1-14.1" fill="#7a7a7a"/><path d="M100.3 0H5.8C2.6 0 0 2.9 0 6.1V72c0 3.2 2.6 6 5.8 6h94.5c3.2 0 6.4-2.8 6.4-6V6.1c.1-3.2-3.2-6.1-6.4-6.1" fill="#a0a1a2"/><path d="M100.4 0H5.8C2.6 0 0 2.9 0 6.1V72c0 3.2 2.6 6 5.8 6H8z" opacity=".2" fill="#fff"/><g fill="#59b4d9"><path d="M98.5 8.2v61.6H8.1V8.2z"/><path d="M8.1 69.8h.2V8.2l82.5-.1-82.7.1z"/></g><path d="M18.5 92.1h69.8v6.4H18.5z" fill="#a0a1a2"/><path d="M54.5 4.5A1.54 1.54 0 0 1 53 6a1.54 1.54 0 0 1-1.5-1.5A1.54 1.54 0 0 1 53 3a1.54 1.54 0 0 1 1.5 1.5" fill="#b8d432"/><g fill="#fff"><path d="M53.5 48.8c-.1 0-.1 0-.2-.1L39.9 41c-.1-.1-.2-.2-.2-.4 0-.1.1-.3.2-.3l13.3-7.7c.1-.1.3-.1.4 0L67 40.3c.1.1.2.2.2.3s-.1.3-.2.3l-13.3 7.7-.2.2"/><path d="M51.5 67.5c-.1 0-.1 0-.2-.1L38 59.7c-.1-.1-.2-.2-.2-.4V44a.76.76 0 0 1 .2-.4c.1-.1.3-.1.4 0l13.3 7.7c.1.1.2.2.2.4v15.4a.76.76 0 0 1-.2.4h-.2" opacity=".7"/><path d="M55.3 67.5c-.1 0-.1 0-.2-.1s-.2-.2-.2-.4V51.8a.76.76 0 0 1 .2-.4l13.3-7.7c.1-.1.3-.1.4 0s.2.2.2.3v15.3a.76.76 0 0 1-.2.4l-13.3 7.7c0 .1-.1.1-.2.1" opacity=".4"/></g><path d="M35.9 9c18.2 12.8 17.7 29.6 17.7 29.6s-5-16-26.3-22.6l11.4.3zm31.9 8.1C53.4 25.6 52.5 39 52.5 39s4.9-12.5 21.3-16.1l-8.6-.4zM53.5 36.9c-.2-.3-4.3-6.5-11.4-9.4-4.6-1.8-8.1-2.4-10.5-1.5-1.3.5-2.2 1.3-2.7 2.5-.8 2-.7 5.9 8.8 9.7 7.1 2.9 14.4 1.2 14.7 1.1l2.1-.8zm-12.6-6.4c3.8 1.5 6.7 4.2 8.3 6.1-2.5.2-6.4.2-10.2-1.4-5.5-2.2-7.5-4.5-7.1-5.6.1-.2.2-.5.8-.6.7-.3 3-.6 8.2 1.5zM54.3 39c.3.1 7.4 2.3 14.8.1 4.7-1.5 7.8-3.3 9.1-5.4.7-1.2.9-2.4.5-3.6-.6-2.1-3.2-5-13-2-7.3 2.3-12 8.2-12.2 8.4l-1.3 1.7zm13.9-3c-3.9 1.2-7.8.9-10.3.5 1.8-1.7 4.9-4.2 8.8-5.4 5.7-1.8 8.6-1.3 9-.1.1.2.1.5-.2 1-.4.6-1.9 2.3-7.3 4z" fill="#ba141a"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Front_Doors.svg b/src/main/webapp/img/lib/mscae/Front_Doors.svg new file mode 100644 index 0000000000000000000000000000000000000000..947c040846b00835423145d5f53da08ff437741f --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Front_Doors.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="49.8" height="43.899"><path d="M45.04 19a10.94 10.94 0 0 0 .777-4.041c0-6.058-4.905-10.97-10.956-10.97-1.682 0-3.27.39-4.694 1.07C27.798 1.987 24.095 0 19.92 0A12.96 12.96 0 0 0 6.972 12.964c0 .58.052 1.15.125 1.7C2.953 16.24 0 20.234 0 24.93 0 30.99 4.905 35.9 10.956 35.9h29.88a8.97 8.97 0 0 0 8.964-8.975c.001-3.32-1.83-6.368-4.76-7.926z" fill="#59b4d9"/><g fill="#fff"><path d="M17.9 15.9h14v20.05h-14z"/><path d="M34.838 14.747l-9.678-5.69s-.412-.2-.596-.2c-.917-.001-1.664.052-1.664 1.8V15.9h10v20h3V16.322c0-.7-.424-1.324-1.062-1.575z" opacity=".4"/></g><path d="M34.444 14.667l-9.667-5.684c-.43-.15-.877.184-.877.655v33.57c0 .47.446.804.877.655l9.667-5.684c.276-.098.46-.36.456-.654V15.322a.69.69 0 0 0-.456-.655z" fill="#0072c6"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Ftp.svg b/src/main/webapp/img/lib/mscae/Ftp.svg index 35c8544cbae26aeffc42d42d247e268ca052b89a..fc640d8df5cc60021718c58f9cdc237854fe6187 100644 --- a/src/main/webapp/img/lib/mscae/Ftp.svg +++ b/src/main/webapp/img/lib/mscae/Ftp.svg @@ -1,92 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="42.633999" - viewBox="0 0 50 42.633999" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Ftp.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata1632"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs1630" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview1628" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="25" - inkscape:cy="21.634" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 0,40.627 c 0,1.108 0.898,2.007 2.007,2.007 H 47.993 C 49.102,42.634 50,41.735 50,40.627 V 9.298 H 0 Z" - id="path1611" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="M 47.993,0 H 2.007 C 0.898,0 0,0.898 0,2.007 V 12.634 H 50 V 2.007 C 50,0.898 49.101,0 47.993,0" - id="path1613" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<polygon - points="14.424,39.232 21.848,21.397 26.556,21.397 19.1,39.232 " - id="polygon1615" - style="fill:#ffffff" - transform="translate(0,-4)" /> -<polygon - points="23.991,39.232 31.415,21.397 36.123,21.397 28.667,39.232 " - id="polygon1617" - style="fill:#ffffff" - transform="translate(0,-4)" /> -<path - d="M 2.014,0 C 0.906,0 0.007,0.898 0.007,2.007 v 7.291 3.336 27.993 c 0,1.108 0.899,2.007 2.007,2.007 H 4.202 L 43.62,0 Z" - id="path1619" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#ffffff" /> -<rect - x="12.857" - y="4.7790003" - width="33.671001" - height="3.9419999" - id="rect1621" - style="fill:#ffffff" /> -<path - d="m 11.31,6.683 c 0,2.693 -2.184,4.878 -4.878,4.878 -2.694,0 -4.878,-2.185 -4.878,-4.878 0,-2.694 2.184,-4.879 4.878,-4.879 2.693,0 4.878,2.185 4.878,4.879" - id="path1623" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<polygon - points="6.928,13.568 3.969,10.75 6.917,7.932 8.115,7.932 5.916,10.254 11.309,10.254 11.309,11.232 5.916,11.232 8.129,13.568 " - id="polygon1625" - style="fill:#ffffff" - transform="translate(0,-4)" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="42.634"><path d="M0 40.627c0 1.108.898 2.007 2.007 2.007h45.986c1.11 0 2.007-.9 2.007-2.007V9.298H0z" fill="#59b4d9"/><path d="M47.993 0H2.007C.898 0 0 .898 0 2.007v10.627h50V2.007C50 .898 49.1 0 47.993 0" fill="#a0a1a2"/><g fill="#fff"><path d="M14.424 35.232l7.424-17.835h4.708L19.1 35.232zm9.566 0l7.424-17.835h4.708l-7.456 17.835z"/><path d="M2.014 0C.906 0 .007.898.007 2.007v38.62a2.01 2.01 0 0 0 2.007 2.007h2.188L43.62 0z" opacity=".2"/><path d="M12.857 4.78h33.67V8.72h-33.67z"/></g><path d="M11.3 6.683a4.88 4.88 0 0 1-4.878 4.878 4.88 4.88 0 0 1-4.878-4.878 4.88 4.88 0 0 1 4.878-4.879 4.88 4.88 0 0 1 4.878 4.879" fill="#59b4d9"/><path d="M6.928 9.568L3.97 6.75l2.948-2.818h1.198l-2.2 2.322h5.393v.978H5.916L8.13 9.568z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Functions.svg b/src/main/webapp/img/lib/mscae/Functions.svg index c54f38ff10c58edb86f13ae42042121eeed4a102..cfa9359b595ea7547139ee30815691a006b10678 100644 --- a/src/main/webapp/img/lib/mscae/Functions.svg +++ b/src/main/webapp/img/lib/mscae/Functions.svg @@ -1,64 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - viewBox="0 0 64.026695 59" - enable-background="new 0 0 64 64" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure Functions_COLOR_LARGE.svg" - width="64.026695" - height="59"><metadata - id="metadata17"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs15" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview13" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="8.0966385" - inkscape:cx="23.081875" - inkscape:cy="24.896194" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><g - id="g3" - transform="translate(0.01334878,-2.5)"><path - d="M 63.6,32.4 C 64.2,31.8 64.1,30.7 63.6,30.1 L 60.5,27 46.7,13.6 C 46.1,13 45.2,13 44.5,13.6 L 44.5,13.6 C 43.9,14.2 43.7,15.3 44.5,15.9 L 59,30.1 C 59.6,30.7 59.6,31.8 59,32.4 L 44.2,47.1 C 43.6,47.7 43.6,48.8 44.2,49.4 L 44.2,49.4 C 44.8,50 45.9,49.9 46.4,49.4 L 60.1,35.8 C 60.1,35.8 60.1,35.8 60.2,35.7 L 63.6,32.4 Z" - id="path5" - inkscape:connector-curvature="0" - style="fill:#3999c6" /><path - d="M 0.4,32.4 C -0.2,31.8 -0.1,30.7 0.4,30.1 L 3.5,27 17.3,13.6 C 17.9,13 18.8,13 19.5,13.6 L 19.5,13.6 C 20.1,14.2 20.3,15.3 19.5,15.9 L 5.3,30.1 C 4.7,30.7 4.7,31.8 5.3,32.4 L 19.8,47.1 C 20.4,47.7 20.4,48.8 19.8,49.4 L 19.8,49.4 C 19.2,50 18.1,49.9 17.6,49.4 L 3.6,36 C 3.6,36 3.6,36 3.5,35.9 L 0.4,32.4 Z" - id="path7" - inkscape:connector-curvature="0" - style="fill:#3999c6" /><polygon - points="30.4,32.2 20.4,61.5 48,22.4 34.6,22.4 47.6,2.5 28.1,2.5 17.6,32.1 " - id="polygon9" - style="fill:#fcd116" /><polygon - enable-background="new " - points="26.6,27.1 39.4,27.2 20.4,61.5 48,22.4 34.6,22.4 47.6,2.5 37.4,2.5 " - id="polygon11" - style="opacity:0.3;fill:#ff8c00" /></g></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="64.027" height="59"><path d="M63.613 29.9c.6-.6.5-1.7 0-2.3l-3.1-3.1-13.8-13.4c-.6-.6-1.5-.6-2.2 0-.6.6-.8 1.7 0 2.3l14.5 14.2c.6.6.6 1.7 0 2.3l-14.8 14.7c-.6.6-.6 1.7 0 2.3s1.7.5 2.2 0l13.8-13.7 3.4-3.3zm-63.2 0c-.6-.6-.5-1.7 0-2.3l3.1-3.1 13.8-13.4c.6-.6 1.5-.6 2.2 0 .6.6.8 1.7 0 2.3l-14.2 14.2c-.6.6-.6 1.7 0 2.3l14.5 14.7c.6.6.6 1.7 0 2.3s-1.7.5-2.2 0l-14.1-13.5-3.1-3.5z" fill="#3999c6"/><path d="M30.413 29.7l-10 29.3 27.6-39.1h-13.4l13-19.9h-19.5l-10.5 29.6z" fill="#fcd116"/><path d="M26.613 24.6l12.8.1-19 34.3 27.6-39.1h-13.4l13-19.9h-10.2z" opacity=".3" fill="#ff8c00"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/GalleryManagement.svg b/src/main/webapp/img/lib/mscae/GalleryManagement.svg index 82b127f20136abcec3cdef802a8d777b52245cc4..2f3399405f63eda6d53bfc57a4955aa6d9ec6737 100644 --- a/src/main/webapp/img/lib/mscae/GalleryManagement.svg +++ b/src/main/webapp/img/lib/mscae/GalleryManagement.svg @@ -1,17 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<rect fill="#A0A1A2" width="11.7" height="11.5"/> -<rect x="16.1" fill="#A0A1A2" width="11.7" height="11.5"/> -<rect x="32.3" fill="#A0A1A2" width="11.7" height="11.5"/> -<rect y="16.1" fill="#A0A1A2" width="27.9" height="11.5"/> -<rect x="32.3" y="16.1" fill="#A0A1A2" width="11.7" height="11.5"/> -<rect y="32.3" fill="#A0A1A2" width="44" height="11.7"/> -<path fill="#0072C6" d="M45.8,16.5c0,4.7-3.8,8.6-8.6,8.6s-8.6-3.8-8.6-8.6c0-4.7,3.8-8.6,8.6-8.6S45.8,11.8,45.8,16.5"/> -<polygon fill="#0072C6" points="43.5,28.3 37.2,37.1 30.9,28.3 24.4,28.3 24.4,50 50,50 50,28.3 "/> -<path opacity="0.2" fill="#FFFFFF" d="M28.6,16.5c0,4.7,3.8,8.6,8.6,8.6c0.3,0,0.6-0.1,0.9-0.1l2.1-16.5c-0.9-0.3-1.9-0.6-3-0.6 - C32.4,7.9,28.6,11.8,28.6,16.5"/> -<polygon opacity="0.2" fill="#FFFFFF" points="30.9,28.3 24.4,28.3 24.4,50 35,50 36.7,36.4 "/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M0 0h11.7v11.5H0zm16.1 0h11.7v11.5H16.1zm16.2 0H44v11.5H32.3zM0 16.1h27.9v11.5H0zm32.3 0H44v11.5H32.3zM0 32.3h44V44H0z" fill="#a0a1a2"/><path d="M45.8 16.5c0 4.7-3.8 8.6-8.6 8.6s-8.6-3.8-8.6-8.6c0-4.7 3.8-8.6 8.6-8.6s8.6 3.9 8.6 8.6m-2.3 11.8l-6.3 8.8-6.3-8.8h-6.5V50H50V28.3z" fill="#0072c6"/><path opacity=".2" d="M28.6 16.5c0 4.7 3.8 8.6 8.6 8.6.3 0 .6-.1.9-.1l2.1-16.5c-.9-.3-1.9-.6-3-.6-4.8 0-8.6 3.9-8.6 8.6m2.3 11.8h-6.5V50H35l1.7-13.6z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Gateway.svg b/src/main/webapp/img/lib/mscae/Gateway.svg index 08647fdd6ae14a682c798ee08c724889a5d90dfd..d59067b9f3c37864efe9364105f856fd4199d4d1 100644 --- a/src/main/webapp/img/lib/mscae/Gateway.svg +++ b/src/main/webapp/img/lib/mscae/Gateway.svg @@ -1,55 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="42" - height="48" - viewBox="0 0 42 48" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="gateway_50.svg"><metadata - id="metadata11"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs9" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview7" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="7.3282407" - inkscape:cx="29.28107" - inkscape:cy="22.029164" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 17,35 4,48 38,48 25,35 17,35 Z" - id="path3" - inkscape:connector-curvature="0" - style="clip-rule:evenodd;fill:#59b4d9;fill-rule:evenodd" /><path - d="M 21,0 C 6.1,0 0,10.5 0,21 L 0,45.9 1,47 14,34 C 14,34 14,30.5 14,26 14,21 16,18 21,18 26,18 28,21 28,26 28,30.5 28,34 28,34 L 41,47 42,45.9 42,20 C 42,9.5 35.9,0 21,0 Z" - id="path5" - inkscape:connector-curvature="0" - style="clip-rule:evenodd;fill:#7a7a7a;fill-rule:evenodd" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="42" height="48" fill-rule="evenodd"><path d="M17 35L4 48h34L25 35h-8z" fill="#59b4d9"/><path d="M21 0C6.1 0 0 10.5 0 21v24.9L1 47l13-13v-8c0-5 2-8 7-8s7 3 7 8v8l13 13 1-1.1V20C42 9.5 35.9 0 21 0z" fill="#7a7a7a"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Gear.svg b/src/main/webapp/img/lib/mscae/Gear.svg index da428de1f48ac4368db449effa0fe51d23eceeec..2d938d5ee852dfa5fc3050412844e7c8b7eb603a 100644 --- a/src/main/webapp/img/lib/mscae/Gear.svg +++ b/src/main/webapp/img/lib/mscae/Gear.svg @@ -1,13 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#59B4D9" d="M50,27.726v-5.69l-0.803-0.261l-6.091-1.989l-1.625-3.925l3.124-6.609l-4.024-4.023L39.826,5.61 - l-5.711,2.903L30.19,6.885L27.724,0h-5.688l-0.263,0.807l-1.989,6.092l-3.922,1.623L9.25,5.4L5.227,9.422l0.383,0.753l2.9,5.714 - L6.887,19.81L0,22.276v5.691l0.804,0.264l6.092,1.987l1.625,3.923l-3.123,6.611l4.021,4.025l0.755-0.384l5.712-2.901l3.924,1.625 - L22.275,50h5.691l0.262-0.803l1.989-6.089l3.923-1.626l6.61,3.126l4.025-4.026l-0.383-0.754l-2.902-5.711l1.627-3.924L50,27.726z - M25.943,36.31c-6.132-0.105-11.148-5.216-11.148-11.417c0-3.351,1.491-6.362,3.817-8.371L16,14h8v8l-2.872-2.993 - c-1.744,1.407-2.989,3.561-2.989,5.994c0,4.343,3.507,7.908,7.792,7.978c4.309,0.07,7.781-3.368,7.781-7.699 - c0-2.753-1.417-5.203-3.554-6.632l2.369-2.391c2.741,2.09,4.332,5.445,4.332,9.138C36.859,31.585,32.098,36.414,25.943,36.31z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path fill="#59b4d9" d="M50 27.726v-5.7l-.803-.26-6.09-1.99-1.625-3.925 3.124-6.61L40.58 5.23l-.755.38-5.71 2.903L30.2 6.885 27.724 0h-5.688l-2.252 6.9-3.922 1.623L9.25 5.4 5.227 9.422l.383.753 2.9 5.714-1.623 3.92L0 22.276v5.69l.804.264 6.092 1.987L8.52 34.14l-3.123 6.61 4.02 4.025.755-.384 5.712-2.9 3.924 1.625L22.275 50h5.69l2.25-6.892 3.923-1.626 6.6 3.126 4.025-4.026-3.285-6.465 1.627-3.924L50 27.726zM25.943 36.3c-6.132-.105-11.148-5.216-11.148-11.417a11.05 11.05 0 0 1 3.817-8.371L16 14h8v8l-2.872-2.993c-1.744 1.407-2.99 3.56-2.99 5.994 0 4.343 3.507 7.908 7.792 7.978 4.31.07 7.78-3.368 7.78-7.7 0-2.753-1.417-5.203-3.554-6.632l2.37-2.39c2.74 2.1 4.332 5.445 4.332 9.138 0 6.2-4.76 11.02-10.916 10.915z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/GearAlternate.svg b/src/main/webapp/img/lib/mscae/GearAlternate.svg index c69f740f7cd05d4e77d4690cf6052b49d39fa6b9..137c8cb4499955d97ba040a0adb4cb58f434fbf1 100644 --- a/src/main/webapp/img/lib/mscae/GearAlternate.svg +++ b/src/main/webapp/img/lib/mscae/GearAlternate.svg @@ -1,10 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - height="50px" width="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#59B4D9" d="M50,27.7V22l-0.8-0.3l-6.1-2l-1.6-3.9l3.1-6.6l-4-4l-0.8,0.4l-5.7,2.9l-3.9-1.6L27.7,0H22l-0.3,0.8l-2,6.1 - l-3.9,1.6L9.3,5.4l-4,4l0.4,0.8l2.9,5.7l-1.6,3.9L0,22.3V28l0.8,0.3l6.1,2l1.6,3.9l-3.1,6.6l4,4l0.8-0.4l5.7-2.9l3.9,1.6l2.5,6.9H28 - l0.3-0.8l2-6.1l3.9-1.6l6.6,3.1l4-4l-0.4-0.8l-2.9-5.7l1.6-3.9L50,27.7z M25,33.5c-4.7,0-8.5-3.8-8.5-8.5s3.8-8.5,8.5-8.5 - s8.5,3.8,8.5,8.5S29.7,33.5,25,33.5z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" height="50" width="50"><path fill="#59b4d9" d="M50 27.7V22l-.8-.3-6.1-2-1.6-3.9 3.1-6.6-4-4-.8.4-5.7 2.9-3.9-1.6L27.7 0H22l-.3.8-2 6.1-3.9 1.6-6.5-3.1-4 4 .4.8 2.9 5.7L7 19.8l-7 2.5V28l.8.3 6.1 2 1.6 3.9-3.1 6.6 4 4 .8-.4 5.7-2.9 3.9 1.6 2.5 6.9H28l.3-.8 2-6.1 3.9-1.6 6.6 3.1 4-4-.4-.8-2.9-5.7 1.6-3.9 6.9-2.5zm-25 5.8c-4.7 0-8.5-3.8-8.5-8.5s3.8-8.5 8.5-8.5 8.5 3.8 8.5 8.5-3.8 8.5-8.5 8.5z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/GearAlternate_2.svg b/src/main/webapp/img/lib/mscae/GearAlternate_2.svg index 0cc01daa8ecc4181904e3f7636936689617f2132..41b9c0f7cfb3f615411d41ce71a5a204a41c68b1 100644 --- a/src/main/webapp/img/lib/mscae/GearAlternate_2.svg +++ b/src/main/webapp/img/lib/mscae/GearAlternate_2.svg @@ -1,13 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - height="50px" width="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#7A7A7A" d="M50,27.7V22l-0.8-0.3l-6.1-2l-1.6-3.9l3.1-6.6l-4-4l-0.8,0.4l-5.7,2.9l-3.9-1.6L27.7,0H22l-0.3,0.8l-2,6.1 - l-3.9,1.6L9.3,5.4l-4,4l0.4,0.8l2.9,5.7l-1.6,3.9L0,22.3V28l0.8,0.3l6.1,2l1.6,3.9l-3.1,6.6l4,4l0.8-0.4l5.7-2.9l3.9,1.6l2.5,6.9H28 - l0.3-0.8l2-6.1l3.9-1.6l6.6,3.1l4-4l-0.4-0.8l-2.9-5.7l1.6-3.9L50,27.7z M25,31.5c-3.6,0-6.5-2.9-6.5-6.5s2.9-6.5,6.5-6.5 - s6.5,2.9,6.5,6.5S28.6,31.5,25,31.5z"/> -<path opacity="0.2" fill="#F1F1F1" enable-background="new " d="M39.7,5.6l-5.6,2.9l-3.9-1.6L27.7,0H22l-0.3,0.8l-2,6.1l-3.9,1.6 - L9.2,5.4l-4,4l0.4,0.8l2.9,5.7l-1.6,3.9L0,22.3V28l0.8,0.3l6.1,2l1.6,3.9l-3.1,6.6l4,4l0.8-0.4l2.4-1.2l3.5-4.8c0,0,0,0,0,0l5.6-7.8 - c-1.9-1.1-3.2-3.2-3.2-5.6c0-3.6,2.9-6.5,6.5-6.5c1.7,0,3.2,0.6,4.3,1.6l5.8-8c0,0,0,0,0,0L39.7,5.6z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" height="50" width="50"><path fill="#7a7a7a" d="M50 27.7V22l-.8-.3-6.1-2-1.6-3.9 3.1-6.6-4-4-.8.4-5.7 2.9-3.9-1.6L27.7 0H22l-.3.8-2 6.1-3.9 1.6-6.5-3.1-4 4 .4.8 2.9 5.7L7 19.8l-7 2.5V28l.8.3 6.1 2 1.6 3.9-3.1 6.6 4 4 .8-.4 5.7-2.9 3.9 1.6 2.5 6.9H28l.3-.8 2-6.1 3.9-1.6 6.6 3.1 4-4-.4-.8-2.9-5.7 1.6-3.9 6.9-2.5zm-25 3.8a6.49 6.49 0 0 1-6.5-6.5 6.49 6.49 0 0 1 6.5-6.5 6.49 6.49 0 0 1 6.5 6.5 6.49 6.49 0 0 1-6.5 6.5z"/><path opacity=".2" fill="#f1f1f1" d="M39.7 5.6l-5.6 2.9-3.9-1.6L27.7 0H22l-.3.8-2 6.1-3.9 1.6-6.6-3.1-4 4 .4.8 2.9 5.7-1.6 3.9L0 22.3V28l.8.3 6.1 2 1.6 3.9-3.1 6.6 4 4 3.2-1.6 3.5-4.8 5.6-7.8c-1.9-1.1-3.2-3.2-3.2-5.6a6.49 6.49 0 0 1 6.5-6.5c1.7 0 3.2.6 4.3 1.6l5.8-8 4.6-6.5z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Gear_2.svg b/src/main/webapp/img/lib/mscae/Gear_2.svg index b41d681803da4fbd0aa43847ef8456faf29237fa..dde474af8b8eb32daed219ec091ec2eed5ab922f 100644 --- a/src/main/webapp/img/lib/mscae/Gear_2.svg +++ b/src/main/webapp/img/lib/mscae/Gear_2.svg @@ -1,19 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<polygon fill="#7A7A7A" points="50,27.726 50,22.036 49.197,21.775 43.106,19.786 41.481,15.861 44.605,9.252 40.581,5.229 - 39.826,5.61 34.115,8.513 30.19,6.885 27.724,0 22.036,0 21.773,0.807 19.784,6.899 15.862,8.522 9.25,5.4 5.227,9.422 5.61,10.175 - 8.51,15.889 6.887,19.81 0,22.276 0,27.967 0.804,28.231 6.896,30.218 8.521,34.141 5.398,40.752 9.419,44.777 10.174,44.393 - 15.886,41.492 19.81,43.117 22.275,50 27.966,50 28.228,49.197 30.217,43.108 34.14,41.482 40.75,44.608 44.775,40.582 - 44.392,39.828 41.49,34.117 43.117,30.193 "/> -<path opacity="0.2" fill="#FFFFFF" enable-background="new " d="M39.749,5.648l-5.634,2.865L30.19,6.886L27.725,0h-5.689 - l-0.262,0.807l-1.989,6.091l-3.922,1.624L9.249,5.398L5.227,9.422l0.383,0.753l2.9,5.715l-1.623,3.92L0,22.277v5.69l0.804,0.263 - l6.092,1.988l1.625,3.923l-3.123,6.611l4.021,4.025l0.755-0.384l2.433-1.236l3.452-4.77c0.006,0.004,0.012,0.008,0.018,0.012 - l19.047-26.32c-0.006-0.005-0.012-0.009-0.018-0.014L39.749,5.648z"/> -<path fill="#FFFFFF" d="M32.527,16.257l-2.369,2.391c2.137,1.429,3.554,3.879,3.554,6.632c0,4.331-3.472,7.769-7.781,7.699 - c-4.285-0.07-7.792-3.635-7.792-7.978c0-2.433,1.245-4.587,2.989-5.994L23,20.747V15h-5.809l1.421,1.522 - c-2.326,2.009-3.817,5.02-3.817,8.371c0,6.201,5.016,11.312,11.148,11.417c6.155,0.104,10.916-4.725,10.916-10.915 - C36.859,21.702,35.268,18.347,32.527,16.257z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path fill="#7a7a7a" d="M50 27.726v-5.7l-.803-.26-6.09-1.99-1.625-3.925 3.124-6.61L40.58 5.23l-.755.38-5.71 2.903L30.2 6.885 27.724 0h-5.688l-2.252 6.9-3.922 1.623L9.25 5.4 5.227 9.422l.383.753 2.9 5.714-1.623 3.92L0 22.276v5.69l.804.264 6.092 1.987L8.52 34.14l-3.123 6.61 4.02 4.025.755-.384 5.712-2.9 3.924 1.625L22.275 50h5.69l2.25-6.892 3.923-1.626 6.6 3.126 4.025-4.026-3.285-6.465 1.627-3.924z"/><g fill="#fff"><path opacity=".2" d="M39.75 5.648l-5.634 2.865L30.2 6.886 27.725 0h-5.69l-.262.807-1.99 6.09-3.922 1.624L9.25 5.398 5.227 9.422l.383.753L8.5 15.9 6.887 19.8 0 22.277v5.7l6.896 2.25L8.52 34.14l-3.123 6.61 4.02 4.025.755-.384 2.433-1.236 3.452-4.77.018.012 19.047-26.32-.018-.014 4.643-6.417z"/><path d="M32.527 16.257l-2.37 2.39c2.137 1.43 3.554 3.88 3.554 6.632 0 4.33-3.472 7.77-7.78 7.7-4.285-.07-7.792-3.635-7.792-7.978 0-2.433 1.245-4.587 2.99-5.994L23 20.747V15h-5.81l1.42 1.522a11.05 11.05 0 0 0-3.817 8.371c0 6.2 5.016 11.312 11.148 11.417 6.155.104 10.916-4.725 10.916-10.915 0-3.693-1.59-7.048-4.332-9.138z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/General_Storage.svg b/src/main/webapp/img/lib/mscae/General_Storage.svg new file mode 100644 index 0000000000000000000000000000000000000000..5eea30e88edd5b5bdf74c076a2fb1965f2f9e890 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/General_Storage.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path d="M44 0H6a6 6 0 0 0-6 6v38a6 6 0 0 0 6 6h38a6 6 0 0 0 6-6V6a6 6 0 0 0-6-6z" fill="#3e3e3e"/><path d="M4 20h42v11H4z" fill="#b8d432"/><path d="M4 35h42v11H4z" fill="#804998"/><path d="M4 5h42v11H4z" fill="#59b4d9"/><g fill="#fff"><path d="M4 20h42v2H4z" opacity=".25"/><path d="M4 5h42v2H4z" opacity=".2"/><path d="M4 35h42v2H4z" opacity=".4"/><path d="M6 50h2.88L42.994 0H6a6 6 0 0 0-6 6v38a6 6 0 0 0 6 6z" opacity=".15"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Genomics_Accounts.svg b/src/main/webapp/img/lib/mscae/Genomics_Accounts.svg new file mode 100644 index 0000000000000000000000000000000000000000..469507e67c8718c5e7faf1bec91d00a4b33f20f7 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Genomics_Accounts.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="30.981" height="60.021"><path d="M11.995 38.65l-.62-.4L7.1 34.822a6.98 6.98 0 0 1-1.249-7.88c.866-1.406 1.995-2.63 3.327-3.608a52.38 52.38 0 0 1 9.386-5.683 31.35 31.35 0 0 0 6.3-3.793 16.8 16.8 0 0 0 5.919-9.729 12.21 12.21 0 0 0 .165-1.238c.128-.906-.242-1.8-.967-2.367s-1.695-.68-2.537-.323-1.426 1.14-1.53 2.05c-.7 4.342-3.31 7.315-6.962 9.47-1.737 1.025-3.585 1.86-5.365 2.812a40.76 40.76 0 0 0-9 6.147c-1.716 1.627-3.334 3.34-4 5.706a11.7 11.7 0 0 0 3.041 12.129c.916.934 1.943 1.76 2.942 2.61a.75.75 0 0 0 .643.156c1.58-.836 3.137-1.716 4.782-2.63zm6.886 9.13l1.56.984c2.85 1.635 4.78 4.5 5.225 7.758.062.432.1.87.157 1.3.173 1.348 1.386 2.315 2.74 2.183 1.315-.103 2.316-1.223 2.27-2.542-.018-3.4-1.24-6.704-3.45-9.3-.927-.984-1.9-1.913-2.946-2.78-.18-.147-.417-.2-.642-.145L18.88 47.78z" fill="#ff8c00"/><path d="M5.755 5.377a10.03 10.03 0 0 0 1.738 3.231H18.43c-.586.442-1.196.85-1.83 1.222l-1.067.6h-6.2a13.56 13.56 0 0 0 1.191.839l1.56.983-4.912 2.537c-.225.055-.463.002-.642-.145a34.38 34.38 0 0 1-2.946-2.781c-2.2-2.596-3.433-5.9-3.45-9.3-.045-1.317.955-2.436 2.27-2.54 1.353-.132 2.565.834 2.74 2.182l.157 1.3c0 .018.008.033.01.05h17.255v.057a11.97 11.97 0 0 1-1 1.763zm-5.56 50.52a16.8 16.8 0 0 1 5.919-9.729 31.34 31.34 0 0 1 6.3-3.793 52.41 52.41 0 0 0 9.386-5.683l.96-.815H11.93l-1.12-.975a5.4 5.4 0 0 1-.724-.843h14.4a7.7 7.7 0 0 0 .637-.975 6.02 6.02 0 0 0 .655-2.307H8.904c-.066-.605-.055-1.216.032-1.818h16.8a6.8 6.8 0 0 0-1.36-3.181H10.4c.554-.66 1.166-1.267 1.828-1.818h10.15l-2.8-2.183c-.175-.138-.376-.243-.62-.4l4.782-2.633a.75.75 0 0 1 .643.155l2.942 2.608a11.7 11.7 0 0 1 3.05 12.129c-.67 2.367-2.288 4.08-4 5.707-2.71 2.443-5.738 4.5-9 6.147-1.78.954-3.628 1.788-5.365 2.812-.767.454-1.5.962-2.194 1.52h7.31l.117.073a12.66 12.66 0 0 1 2.216 1.745H7.938c-.855.974-1.55 2.08-2.054 3.274h15.83c.25.587.446 1.195.586 1.817h-17c-.085.344-.176.682-.235 1.044-.105.907-.69 1.688-1.53 2.045s-1.81.233-2.534-.323-1.095-1.458-.97-2.363c.034-.415.088-.828.164-1.238z" fill="#59b4d9"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/GeoReplicationPremium.svg b/src/main/webapp/img/lib/mscae/GeoReplicationPremium.svg index 5783fca0af881a7cbe886d5e72d2f94448752787..9c796f89291400c9a691d02773e2bb05f5484c31 100644 --- a/src/main/webapp/img/lib/mscae/GeoReplicationPremium.svg +++ b/src/main/webapp/img/lib/mscae/GeoReplicationPremium.svg @@ -1,25 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#FF8C00" d="M25,47.5C12.6,47.5,2.5,37.4,2.5,25S12.6,2.5,25,2.5S47.5,12.6,47.5,25S37.4,47.5,25,47.5z M25,3.5 - C13.1,3.5,3.5,13.1,3.5,25S13.1,46.5,25,46.5S46.5,36.9,46.5,25S36.9,3.5,25,3.5z"/> -<path fill="#59B4D9" stroke="#59B4D9" stroke-width="0.1937" stroke-miterlimit="10" d="M26.9,35.2c0.8-0.8,2-0.8,2.7,0l-3.1-3.1 - c-0.8-0.8-0.8-2,0-2.7c0.8-0.8,2-0.8,2.7,0l0.8,0.8l0.6,0.6l1.5,1.5c0.8,0.8,2,0.8,2.7,0c0.8-0.8,0.8-2,0-2.7l-1.5-1.5l-0.9-0.9 - L28,22.6c-0.8-0.8-0.8-2,0-2.7c0.8-0.8,2-0.8,2.7,0l2,2c-0.8-0.8-0.8-2,0-2.7c0.8-0.8,2-0.8,2.7,0l5.2,5.2 - c-0.2-3.8-1.7-7.4-4.6-10.3c-2.6-2.6-6-4.1-9.5-4.5l2.3,2.3c1,1,1,2.5,0,3.4s-2.5,1-3.4,0l-1.6-1.6c-1-1-2.5-1-3.4,0 - c-1,1-1,2.5,0,3.4l3.1,3.1c1,1,1,2.5,0,3.4s-2.5,1-3.4,0l-3.4-3.4c0.4,0.9,0.2,2-0.5,2.7c-1,1-2.5,1-3.4,0l2.5,2.5c1,1,1,2.5,0,3.4 - c-1,1-2.5,1-3.4,0l-2.3-2.3c0.4,3.5,1.8,6.8,4.5,9.5c4.1,4.1,9.9,5.4,15.1,4L27,37.8C26.1,37.2,26.1,36,26.9,35.2z"/> -<path fill="#B8D432" d="M40.7,24.4l-5.2-5.2c-0.8-0.8-2-0.8-2.7,0s-0.8,2,0,2.7l-2-2c-0.8-0.8-2-0.8-2.7,0c-0.8,0.8-0.8,2,0,2.7 - l4.5,4.5l0.9,0.9l1.5,1.5c0.8,0.8,0.8,2,0,2.7c-0.8,0.8-2,0.8-2.7,0l-1.5-1.5l-0.6-0.6l-0.8-0.8c-0.8-0.8-2-0.8-2.7,0 - c-0.8,0.8-0.8,2,0,2.7l3.1,3.1c-0.8-0.8-2-0.8-2.7,0c-0.8,0.8-0.8,2,0,2.7l2.2,2.2c2.6-0.7,5-2,7-4C39.4,32.9,40.9,28.6,40.7,24.4z" - /> -<path fill="#B8D432" d="M15.1,28.8c1-1,1-2.5,0-3.4l-2.5-2.5c1,1,2.5,1,3.4,0c0.7-0.7,0.9-1.8,0.5-2.7l3.4,3.4c1,1,2.5,1,3.4,0 - s1-2.5,0-3.4l-3-3.2c-1-1-1-2.5,0-3.4s2.5-1,3.4,0l1.6,1.6c1,1,2.5,1,3.4,0c1-1,1-2.5,0-3.4l-2.3-2.3c-4.5-0.5-9.2,1-12.6,4.5 - s-5,8.1-4.5,12.6l2.3,2.3C12.6,29.8,14.2,29.8,15.1,28.8z"/> -<circle fill="#FCD116" cx="25" cy="3.6" r="3.6"/> -<circle fill="#FCD116" cx="25" cy="46.4" r="3.6"/> -<circle fill="#FCD116" cx="46.4" cy="25" r="3.6"/> -<circle fill="#FCD116" cx="3.6" cy="25" r="3.6"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path fill="#ff8c00" d="M25,47.5C12.6,47.5,2.5,37.4,2.5,25S12.6,2.5,25,2.5S47.5,12.6,47.5,25S37.4,47.5,25,47.5z M25,3.5 C13.1,3.5,3.5,13.1,3.5,25S13.1,46.5,25,46.5S46.5,36.9,46.5,25S36.9,3.5,25,3.5z"/><path fill="#59b4d9" stroke="#59b4d9" stroke-width=".194" stroke-miterlimit="10" d="M26.9 35.2c.8-.8 2-.8 2.7 0l-3.1-3.1c-.8-.8-.8-2 0-2.7.8-.8 2-.8 2.7 0l2.9 2.9c.8.8 2 .8 2.7 0 .8-.8.8-2 0-2.7l-2.4-2.4-4.4-4.6c-.8-.8-.8-2 0-2.7.8-.8 2-.8 2.7 0l2 2c-.8-.8-.8-2 0-2.7.8-.8 2-.8 2.7 0l5.2 5.2A15.5 15.5 0 0 0 36 14.1c-2.6-2.6-6-4.1-9.5-4.5l2.3 2.3c1 1 1 2.5 0 3.4s-2.5 1-3.4 0l-1.6-1.6c-1-1-2.5-1-3.4 0-1 1-1 2.5 0 3.4l3.1 3.1c1 1 1 2.5 0 3.4s-2.5 1-3.4 0l-3.4-3.4a2.46 2.46 0 0 1-.5 2.7c-1 1-2.5 1-3.4 0l2.5 2.5c1 1 1 2.5 0 3.4-1 1-2.5 1-3.4 0l-2.3-2.3c.4 3.5 1.8 6.8 4.5 9.5 4.1 4.1 9.9 5.4 15.1 4L27 37.8c-.9-.6-.9-1.8-.1-2.6z"/><path d="M40.7 24.4l-5.2-5.2c-.8-.8-2-.8-2.7 0s-.8 2 0 2.7l-2-2c-.8-.8-2-.8-2.7 0-.8.8-.8 2 0 2.7l6.9 6.9c.8.8.8 2 0 2.7-.8.8-2 .8-2.7 0l-2.9-2.9c-.8-.8-2-.8-2.7 0-.8.8-.8 2 0 2.7l3.1 3.1c-.8-.8-2-.8-2.7 0-.8.8-.8 2 0 2.7l2.2 2.2c2.6-.7 5-2 7-4 3.1-3.1 4.6-7.4 4.4-11.6zm-25.6 4.4c1-1 1-2.5 0-3.4l-2.5-2.5c1 1 2.5 1 3.4 0a2.46 2.46 0 0 0 .5-2.7l3.4 3.4c1 1 2.5 1 3.4 0s1-2.5 0-3.4l-3-3.2c-1-1-1-2.5 0-3.4s2.5-1 3.4 0l1.6 1.6c1 1 2.5 1 3.4 0 1-1 1-2.5 0-3.4l-2.3-2.3c-4.5-.5-9.2 1-12.6 4.5s-5 8.1-4.5 12.6l2.3 2.3c1 .9 2.6.9 3.5-.1z" fill="#b8d432"/><g fill="#fcd116"><circle cx="25" cy="3.6" r="3.6"/><circle cx="25" cy="46.4" r="3.6"/><circle cx="46.4" cy="25" r="3.6"/><circle cx="3.6" cy="25" r="3.6"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/GeoReplicationStandard.svg b/src/main/webapp/img/lib/mscae/GeoReplicationStandard.svg index 2af46f57e62a4ad92fd81566132a7b30e102ce3b..ebcd2cc3f5d4bfa72296ade674f8c29979d8c197 100644 --- a/src/main/webapp/img/lib/mscae/GeoReplicationStandard.svg +++ b/src/main/webapp/img/lib/mscae/GeoReplicationStandard.svg @@ -1,77 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="45" - height="47.5" - viewBox="0 0 45 47.5" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="GeoReplicationStandard.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata2179"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs2177" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview2175" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.020815" - inkscape:cx="23.2066" - inkscape:cy="16.837558" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="M 22.5,45 C 10.1,45 0,34.9 0,22.5 0,10.1 10.1,0 22.5,0 34.9,0 45,10.1 45,22.5 45,34.9 34.9,45 22.5,45 Z m 0,-44 C 10.6,1 1,10.6 1,22.5 1,34.4 10.6,44 22.5,44 34.4,44 44,34.4 44,22.5 44,10.6 34.4,1 22.5,1 Z" - id="path2164" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - stroke-miterlimit="10" - d="m 24.4,32.7 c 0.8,-0.8 2,-0.8 2.7,0 L 24,29.6 c -0.8,-0.8 -0.8,-2 0,-2.7 0.8,-0.8 2,-0.8 2.7,0 l 0.8,0.8 0.6,0.6 1.5,1.5 c 0.8,0.8 2,0.8 2.7,0 0.8,-0.8 0.8,-2 0,-2.7 l -1.5,-1.5 -0.9,-0.9 -4.4,-4.6 c -0.8,-0.8 -0.8,-2 0,-2.7 0.8,-0.8 2,-0.8 2.7,0 l 2,2 c -0.8,-0.8 -0.8,-2 0,-2.7 0.8,-0.8 2,-0.8 2.7,0 l 5.2,5.2 C 37.9,18.1 36.4,14.5 33.5,11.6 30.9,9 27.5,7.5 24,7.1 l 2.3,2.3 c 1,1 1,2.5 0,3.4 -1,0.9 -2.5,1 -3.4,0 l -1.6,-1.6 c -1,-1 -2.5,-1 -3.4,0 -1,1 -1,2.5 0,3.4 l 3.1,3.1 c 1,1 1,2.5 0,3.4 -1,0.9 -2.5,1 -3.4,0 l -3.4,-3.4 c 0.4,0.9 0.2,2 -0.5,2.7 -1,1 -2.5,1 -3.4,0 l 2.5,2.5 c 1,1 1,2.5 0,3.4 -1,1 -2.5,1 -3.4,0 L 7.1,24 c 0.4,3.5 1.8,6.8 4.5,9.5 4.1,4.1 9.9,5.4 15.1,4 l -2.2,-2.2 c -0.9,-0.6 -0.9,-1.8 -0.1,-2.6 z" - id="path2166" - inkscape:connector-curvature="0" - style="fill:#59b4d9;stroke:#59b4d9;stroke-width:0.1937;stroke-miterlimit:10" /> -<path - d="M 38.2,21.9 33,16.7 c -0.8,-0.8 -2,-0.8 -2.7,0 -0.7,0.8 -0.8,2 0,2.7 l -2,-2 c -0.8,-0.8 -2,-0.8 -2.7,0 -0.8,0.8 -0.8,2 0,2.7 l 4.5,4.5 0.9,0.9 1.5,1.5 c 0.8,0.8 0.8,2 0,2.7 -0.8,0.8 -2,0.8 -2.7,0 l -1.5,-1.5 -0.6,-0.6 -0.8,-0.8 c -0.8,-0.8 -2,-0.8 -2.7,0 -0.8,0.8 -0.8,2 0,2.7 l 3.1,3.1 c -0.8,-0.8 -2,-0.8 -2.7,0 -0.8,0.8 -0.8,2 0,2.7 l 2.2,2.2 c 2.6,-0.7 5,-2 7,-4 3.1,-3.1 4.6,-7.4 4.4,-11.6 z" - id="path2168" - inkscape:connector-curvature="0" - style="fill:#b8d432" /> -<path - d="m 12.6,26.3 c 1,-1 1,-2.5 0,-3.4 l -2.5,-2.5 c 1,1 2.5,1 3.4,0 0.7,-0.7 0.9,-1.8 0.5,-2.7 l 3.4,3.4 c 1,1 2.5,1 3.4,0 0.9,-1 1,-2.5 0,-3.4 l -3,-3.2 c -1,-1 -1,-2.5 0,-3.4 1,-0.9 2.5,-1 3.4,0 l 1.6,1.6 c 1,1 2.5,1 3.4,0 1,-1 1,-2.5 0,-3.4 L 23.9,7 C 19.4,6.5 14.7,8 11.3,11.5 7.9,15 6.3,19.6 6.8,24.1 l 2.3,2.3 c 1,0.9 2.6,0.9 3.5,-0.1 z" - id="path2170" - inkscape:connector-curvature="0" - style="fill:#b8d432" /> -<circle - cx="22.5" - cy="43.900002" - r="3.5999999" - id="circle2172" - style="fill:#0072c6" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="45" height="47.5"><g fill="#59b4d9"><path d="M22.5 45C10.1 45 0 34.9 0 22.5S10.1 0 22.5 0 45 10.1 45 22.5 34.9 45 22.5 45zm0-44A21.47 21.47 0 0 0 1 22.5 21.47 21.47 0 0 0 22.5 44 21.47 21.47 0 0 0 44 22.5 21.47 21.47 0 0 0 22.5 1z"/><path stroke-miterlimit="10" d="M24.4 32.7c.8-.8 2-.8 2.7 0L24 29.6c-.8-.8-.8-2 0-2.7.8-.8 2-.8 2.7 0l2.9 2.9c.8.8 2 .8 2.7 0 .8-.8.8-2 0-2.7l-2.4-2.4-4.4-4.6c-.8-.8-.8-2 0-2.7.8-.8 2-.8 2.7 0l2 2c-.8-.8-.8-2 0-2.7.8-.8 2-.8 2.7 0l5.2 5.2a15.5 15.5 0 0 0-4.6-10.3c-2.6-2.6-6-4.1-9.5-4.5l2.3 2.3c1 1 1 2.5 0 3.4s-2.5 1-3.4 0l-1.6-1.6c-1-1-2.5-1-3.4 0-1 1-1 2.5 0 3.4l3.1 3.1c1 1 1 2.5 0 3.4s-2.5 1-3.4 0l-3.4-3.4a2.46 2.46 0 0 1-.5 2.7c-1 1-2.5 1-3.4 0l2.5 2.5c1 1 1 2.5 0 3.4-1 1-2.5 1-3.4 0L7.1 24c.4 3.5 1.8 6.8 4.5 9.5 4.1 4.1 9.9 5.4 15.1 4l-2.2-2.2c-.9-.6-.9-1.8-.1-2.6z" stroke="#59b4d9" stroke-width=".194"/></g><path d="M38.2 21.9L33 16.7c-.8-.8-2-.8-2.7 0s-.8 2 0 2.7l-2-2c-.8-.8-2-.8-2.7 0-.8.8-.8 2 0 2.7l6.9 6.9c.8.8.8 2 0 2.7-.8.8-2 .8-2.7 0l-2.9-2.9c-.8-.8-2-.8-2.7 0-.8.8-.8 2 0 2.7l3.1 3.1c-.8-.8-2-.8-2.7 0-.8.8-.8 2 0 2.7l2.2 2.2c2.6-.7 5-2 7-4 3.1-3.1 4.6-7.4 4.4-11.6zm-25.6 4.4c1-1 1-2.5 0-3.4l-2.5-2.5c1 1 2.5 1 3.4 0a2.46 2.46 0 0 0 .5-2.7l3.4 3.4c1 1 2.5 1 3.4 0s1-2.5 0-3.4l-3-3.2c-1-1-1-2.5 0-3.4s2.5-1 3.4 0l1.6 1.6c1 1 2.5 1 3.4 0 1-1 1-2.5 0-3.4L23.9 7c-4.5-.5-9.2 1-12.6 4.5s-5 8.1-4.5 12.6l2.3 2.3c1 .9 2.6.9 3.5-.1z" fill="#b8d432"/><circle cx="22.5" cy="43.9" r="3.6" fill="#0072c6"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/GetMoreLicense.svg b/src/main/webapp/img/lib/mscae/GetMoreLicense.svg index d28cc2f3c3e431701dd28ea154d981bcac8c44e7..a114e4c7a6c4677797891d8cb187d7b00201f396 100644 --- a/src/main/webapp/img/lib/mscae/GetMoreLicense.svg +++ b/src/main/webapp/img/lib/mscae/GetMoreLicense.svg @@ -1,10 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<polygon fill="#59B4D9" points="29.946,22.868 20.19,12.584 25.484,12.584 38.523,24.994 25.53,37.416 20.252,37.416 29.946,27.187 - 0,27.187 0,22.868 "/> -<path fill="#59B4D9" d="M48.147,0H46L30.269,0.002L15,0h-3.143C10.836,0,10,0.837,10,1.857V17h5V5h30v40H15V33h-5v15.152 - C10,49.164,10.84,50,11.861,50h36.286C49.168,50,50,49.164,50,48.152V1.857C50,0.837,49.168,0,48.147,0z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" fill="#59b4d9"><path d="M29.946 22.868L20.2 12.584h5.294l13.04 12.4L25.53 37.416h-5.278l9.694-10.23H0v-4.32zM48.147 0H46L30.27.002 11.857 0C10.836 0 10 .837 10 1.857V17h5V5h30v40H15V33h-5v15.152c0 1.012.84 1.848 1.86 1.848h36.286A1.86 1.86 0 0 0 50 48.152V1.857A1.86 1.86 0 0 0 48.147 0z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/GetStarted.svg b/src/main/webapp/img/lib/mscae/GetStarted.svg index b94e4fd48509a27876057b19c38e5051598f0927..ca32fac7fe843794cf3889711170b839a9c2dc42 100644 --- a/src/main/webapp/img/lib/mscae/GetStarted.svg +++ b/src/main/webapp/img/lib/mscae/GetStarted.svg @@ -1,58 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="37.097" - viewBox="0 0 50 37.097" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="GetStarted.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata2361"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs2359" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview2357" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="25" - inkscape:cy="17.486" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<g - id="g2354" - transform="translate(0,-5.389)"> - <polygon - points="30.371,5.389 50,23.986 30.452,42.486 18.516,42.486 33.097,27.97 0,27.97 0,19.905 33.097,19.905 18.435,5.389 " - id="polygon2352" - style="fill:#59b4d9" /> -</g> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="37.097"><path d="M30.37 0L50 18.597l-19.548 18.5H18.516l14.58-14.516H0v-8.065h33.097L18.435 0z" fill="#59b4d9"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Gift.svg b/src/main/webapp/img/lib/mscae/Gift.svg index 36493c76ec8fde56f167516918822008f550f376..46343a69103f374735c656f675829d085aa94687 100644 --- a/src/main/webapp/img/lib/mscae/Gift.svg +++ b/src/main/webapp/img/lib/mscae/Gift.svg @@ -1,143 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="47.799999" - height="49.959808" - viewBox="0 0 47.799999 49.959808" - xml:space="preserve" - sodipodi:docname="Gift.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata2488"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs2486" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview2484" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.020815" - inkscape:cx="13.349737" - inkscape:cy="25.341117" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<style - type="text/css" - id="style2453"> - .st0{fill:#0072C6;} - .st1{opacity:0.15;fill:#FFFFFF;enable-background:new ;} - .st2{opacity:0.25;fill:#1E1E1E;enable-background:new ;} - .st3{fill:#B8D432;} - .st4{fill:#7FBA00;} - .st5{opacity:0.25;fill:#FCD116;enable-background:new ;} -</style> -<path - class="st0" - d="m 23.9,21.359808 -23.9,-9.6 v -0.1 L 23.9,1.9598076 47.8,11.559808 v 0.1 z" - id="path2455" - inkscape:connector-curvature="0" - style="fill:#0072c6" /> -<path - class="st0" - d="m 23.9,49.959808 23.9,-9.7 v -28.6 l -23.9,9.7 z" - id="path2457" - inkscape:connector-curvature="0" - style="fill:#0072c6" /> -<path - class="st1" - d="m 23.9,49.959808 23.9,-9.7 v -28.6 l -23.9,9.7 z" - id="path2459" - inkscape:connector-curvature="0" - style="opacity:0.15;fill:#ffffff;enable-background:new" /> -<path - class="st0" - d="m 23.9,49.959808 -23.9,-9.6 v -28.6 l 23.9,9.6 z" - id="path2461" - inkscape:connector-curvature="0" - style="fill:#0072c6" /> -<path - class="st2" - d="m 23.9,49.959808 -23.9,-9.6 v -28.6 l 23.9,9.6 z" - id="path2463" - inkscape:connector-curvature="0" - style="opacity:0.25;fill:#1e1e1e;enable-background:new" /> -<polygon - class="st3" - points="41.2,43.4 41.2,14.7 34.9,17.4 34.9,46 " - id="polygon2465" - style="fill:#b8d432" - transform="translate(-1.1,-0.04019238)" /> -<polygon - class="st4" - points="8.4,43.4 8.4,14.7 14.9,17.4 14.9,46 " - id="polygon2467" - style="fill:#7fba00" - transform="translate(-1.1,-0.04019238)" /> -<polygon - class="st4" - points="34.9,17.4 41.2,14.7 41.2,14.6 17.3,5 10.9,7.6 10.9,7.7 " - id="polygon2469" - style="fill:#7fba00" - transform="translate(-1.1,-0.04019238)" /> -<polygon - class="st3" - points="14.9,17.4 8.4,14.7 8.4,14.6 32.7,5 39.1,7.6 39.1,7.7 " - id="polygon2471" - style="fill:#b8d432" - transform="translate(-1.1,-0.04019238)" /> -<path - class="st4" - d="m 17.9,15.259808 c 0.5,0.1 1.1,0.1 1.7,-0.2 l 7.7,-3.1 -5.9,-3.1000004 -6.9,-2.5 c -0.6,-0.2 -1.1,-0.3 -1.8,0 -1.7,0.7 -3.1,2.6 -3.1,4.3000004 0,0.8 0.4,1.5 0.9,1.8 z" - id="path2473" - inkscape:connector-curvature="0" - style="fill:#7fba00" /> -<path - class="st4" - d="m 20.5,9.4598076 5.9,-7.8 c 0.6,-0.6 1.1,-1.09999998 1.8,-1.39999998 0.6,-0.2 1.2,-0.3 1.7,-0.2 l 7,2.59999998 c 0.7,0.3 1.2,1 1.2,2 0,1.7 -1.4,3.6 -3.1,4.3 l -7.7,3.1000004 z" - id="path2475" - inkscape:connector-curvature="0" - style="fill:#7fba00" /> -<path - class="st5" - d="M 37,2.6598076 30,0.05980762 c -0.5,-0.1 -1.1,-0.1 -1.7,0.2 -0.7,0.3 -1.3,0.79999998 -1.8,1.39999998 l -5.4,7.2 -6.5,-2.4 c -0.6,-0.2 -1.1,-0.3 -1.8,0 -1.7,0.7 -3.1,2.6 -3.1,4.3000004 0,0.8 0.4,1.5 0.9,1.8 l 7.3,2.7 c 0.5,0.1 1.1,0.1 1.7,-0.2 l 7.7,-3.1 -0.7,-0.4 0.8,0.3 7.7,-3.1000004 c 1.7,-0.7 3.1,-2.6 3.1,-4.3 0,-0.9 -0.5,-1.6 -1.2,-1.8 z" - id="path2477" - inkscape:connector-curvature="0" - style="opacity:0.25;fill:#fcd116;enable-background:new" /> -<path - class="st2" - d="m 33.3,4.1598076 c 0.6,-0.6 1.1,-1.1 1.8,-1.4 1.7,-0.7 3.1,0.2 3.1,1.9 0,1.7 -1.4,3.6 -3.1,4.3 l -7.7,3.1000004 z" - id="path2479" - inkscape:connector-curvature="0" - style="opacity:0.25;fill:#1e1e1e;enable-background:new" /> -<path - class="st2" - d="m 21.4,8.8598076 c -0.6,-0.2 -1.1,-0.3 -1.8,0 -1.7,0.7 -3.1,2.6000004 -3.1,4.3000004 0,1.7 1.4,2.5 3.1,1.9 l 7.7,-3.1 z" - id="path2481" - inkscape:connector-curvature="0" - style="opacity:0.25;fill:#1e1e1e;enable-background:new" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="47.8" height="49.96"><style><![CDATA[.G{enable-background:new}]]></style><g fill="#0072c6"><path d="M23.9 21.36L0 11.76v-.1l23.9-9.7 23.9 9.6v.1z"/><path d="M23.9 49.96l23.9-9.7v-28.6l-23.9 9.7z"/></g><path d="M23.9 49.96l23.9-9.7v-28.6l-23.9 9.7z" opacity=".15" fill="#fff" class="G"/><path d="M23.9 49.96L0 40.36v-28.6l23.9 9.6z" fill="#0072c6"/><path d="M23.9 49.96L0 40.36v-28.6l23.9 9.6z" opacity=".25" fill="#1e1e1e" class="G"/><path d="M40.1 43.36v-28.7l-6.3 2.7v28.6z" fill="#b8d432"/><path d="M7.3 43.36v-28.7l6.5 2.7v28.6zm26.5-26l6.3-2.7v-.1l-23.9-9.6-6.4 2.6v.1z" fill="#7fba00"/><path d="M13.8 17.36l-6.5-2.7v-.1l24.3-9.6 6.4 2.6v.1z" fill="#b8d432"/><g fill="#7fba00"><path d="M17.9 15.26c.5.1 1.1.1 1.7-.2l7.7-3.1-5.9-3.1-6.9-2.5c-.6-.2-1.1-.3-1.8 0-1.7.7-3.1 2.6-3.1 4.3 0 .8.4 1.5.9 1.8z"/><path d="M20.5 9.46l5.9-7.8c.6-.6 1.1-1.1 1.8-1.4.6-.2 1.2-.3 1.7-.2l7 2.6c.7.3 1.2 1 1.2 2 0 1.7-1.4 3.6-3.1 4.3l-7.7 3.1z"/></g><path d="M37 2.66l-7-2.6c-.5-.1-1.1-.1-1.7.2-.7.3-1.3.8-1.8 1.4l-5.4 7.2-6.5-2.4c-.6-.2-1.1-.3-1.8 0-1.7.7-3.1 2.6-3.1 4.3 0 .8.4 1.5.9 1.8l7.3 2.7c.5.1 1.1.1 1.7-.2l7.7-3.1-.7-.4.8.3 7.7-3.1c1.7-.7 3.1-2.6 3.1-4.3 0-.9-.5-1.6-1.2-1.8z" opacity=".25" fill="#fcd116" class="G"/><path d="M33.3 4.16c.6-.6 1.1-1.1 1.8-1.4 1.7-.7 3.1.2 3.1 1.9s-1.4 3.6-3.1 4.3l-7.7 3.1zm-11.9 4.7c-.6-.2-1.1-.3-1.8 0-1.7.7-3.1 2.6-3.1 4.3s1.4 2.5 3.1 1.9l7.7-3.1z" opacity=".25" fill="#1e1e1e" class="G"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Globe.svg b/src/main/webapp/img/lib/mscae/Globe.svg index 082649645fadfd7a5a963bafd23282fede985489..bc8c13d982f4548ea7dd5802ae3dde051ad824a5 100644 --- a/src/main/webapp/img/lib/mscae/Globe.svg +++ b/src/main/webapp/img/lib/mscae/Globe.svg @@ -1,83 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="43.708298" - height="50.051308" - viewBox="0 0 43.708298 50.051308" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Globe.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata2577"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs2575" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview2573" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="8.5" - inkscape:cx="12.938853" - inkscape:cy="20.055976" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 21.039299,40.402308 h -3.951 c 0.957,5.788 -2.336,6.618 -7.9680003,6.618 v 3.031 h 7.1630003 5.229 6.759 v -3.031 c -5.631,0 -8.19,-0.827 -7.232,-6.618" - id="path2560" - inkscape:connector-curvature="0" - style="fill:#ff8c00" /> -<rect - x="9.1222982" - y="47.019306" - width="19.150999" - height="3.0320001" - id="rect2562" - style="fill:#fcd116" /> -<path - stroke-miterlimit="10" - d="m 21.020299,30.979308 c 0.904,-0.904 2.37,-0.904 3.274,0 l -3.66,-3.66 c -0.904,-0.904 -0.904,-2.37 0,-3.274 0.904,-0.904 2.37,-0.904 3.274,0 l 0.971,0.971 0.756,0.686 1.79,1.79 c 0.904,0.904 2.37,0.904 3.274,0 0.904,-0.904 0.904,-2.37 0,-3.274 l -1.79,-1.79 -1.133,-1.133 -5.447,-5.447 c -0.904,-0.904 -0.904,-2.37 0,-3.274 0.904,-0.904 2.37,-0.904 3.274,0 l 2.387,2.387 c -0.904,-0.904 -0.904,-2.37 0,-3.274 0.904,-0.904 2.37,-0.904 3.274,0 l 6.195,6.195 c -0.208,-4.491 -2.028,-8.9210004 -5.458,-12.3510004 -3.17,-3.17 -7.195,-4.96300003 -11.332,-5.38300003 l 2.778,2.77800003 c 1.141,1.141 1.141,2.99 0,4.131 -1.141,1.141 -2.99,1.141 -4.131,0 l -1.9,-1.9 c -1.141,-1.141 -2.99,-1.141 -4.131,0 -1.141,1.141 -1.141,2.99 0,4.131 l 3.743,3.7430004 c 1.141,1.141 1.141,2.99 0,4.131 -1.141,1.141 -2.99,1.141 -4.131,0 l -4.1060003,-4.106 c 0.489,1.076 0.294,2.388 -0.591,3.273 -1.141,1.141 -2.99,1.141 -4.131,0 l 2.988,2.988 c 1.141,1.141 1.141,2.99 0,4.131 -1.141,1.141 -2.99,1.141 -4.131,0 l -2.77799998,-2.778 c 0.42,4.138 2.21299998,8.162 5.38299998,11.332 4.8980003,4.898 11.8340003,6.508 18.0770003,4.842 l -2.589,-2.589 c -0.904,-0.906 -0.904,-2.372 0.001,-3.276 z" - id="path2564" - inkscape:connector-curvature="0" - style="fill:#59b4d9;stroke:#59b4d9;stroke-width:0.23199999;stroke-miterlimit:10" /> -<path - d="m 37.461299,17.882308 -6.195,-6.195 c -0.904,-0.904 -2.37,-0.904 -3.274,0 -0.904,0.904 -0.904,2.37 0,3.274 l -2.387,-2.387 c -0.904,-0.904 -2.37,-0.904 -3.274,0 -0.904,0.904 -0.904,2.37 0,3.274 l 5.447,5.447 1.133,1.133 1.79,1.79 c 0.904,0.904 0.904,2.37 0,3.274 -0.904,0.904 -2.37,0.904 -3.274,0 l -1.79,-1.79 -0.756,-0.686 -0.971,-0.971 c -0.904,-0.904 -2.37,-0.904 -3.274,0 -0.904,0.904 -0.904,2.37 0,3.274 l 3.66,3.66 c -0.904,-0.904 -2.37,-0.904 -3.274,0 -0.904,0.904 -0.904,2.37 0,3.274 l 2.589,2.589 c 3.074,-0.82 5.981,-2.431 8.392,-4.842 3.877,-3.88 5.697,-9.038 5.458,-14.118 z" - id="path2566" - inkscape:connector-curvature="0" - style="fill:#b8d432" /> -<path - d="m 7.0572987,23.445308 c 1.141,-1.141 1.141,-2.99 0,-4.131 l -2.988,-2.988 c 1.141,1.141 2.99,1.141 4.131,0 0.885,-0.885 1.08,-2.196 0.591,-3.273 l 4.1060003,4.106 c 1.141,1.141 2.99,1.141 4.131,0 1.141,-1.141 1.141,-2.99 0,-4.131 l -3.743,-3.7430004 c -1.141,-1.141 -1.141,-2.99 0,-4.131 1.141,-1.141 2.99,-1.141 4.131,0 l 1.9,1.9 c 1.141,1.141 2.99,1.141 4.131,0 1.141,-1.141 1.141,-2.99 0,-4.131 l -2.778,-2.77800003 c -5.403,-0.546 -10.9980003,1.24700003 -15.1370003,5.38600003 -4.139,4.139 -5.93199998,9.7340004 -5.38299998,15.1370004 l 2.77799998,2.778 c 1.14,1.14 2.989,1.14 4.13,-10e-4 z" - id="path2568" - inkscape:connector-curvature="0" - style="fill:#b8d432" /> -<path - d="m 18.766299,43.707308 c -6.662,0 -12.9260003,-2.594 -17.6370003,-7.305 -0.67999998,-0.68 -0.67999998,-1.781 0,-2.461 0.68,-0.679 1.781,-0.68 2.461,0 4.054,4.054 9.4430003,6.286 15.1760003,6.286 5.733,0 11.122,-2.232 15.176,-6.286 4.054,-4.054 6.286,-9.443 6.286,-15.176 0,-5.733 -2.232,-11.1220004 -6.286,-15.1760004 -0.68,-0.68 -0.68,-1.781 0,-2.461 0.68,-0.68000003 1.782,-0.67900003 2.461,0 4.711,4.711 7.305,10.9740004 7.305,17.6370004 0,6.663 -2.594,12.926 -7.305,17.637 -4.711,4.711 -10.975,7.305 -17.637,7.305 z" - id="path2570" - inkscape:connector-curvature="0" - style="fill:#fcd116" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="43.708" height="50.051"><path d="M21.04 40.402h-3.95c.957 5.788-2.336 6.618-7.968 6.618v3.03h19.15v-3.03c-5.63 0-8.2-.827-7.232-6.618" fill="#ff8c00"/><path d="M9.122 47.02h19.15v3.032H9.122z" fill="#fcd116"/><path stroke-miterlimit="10" d="M21.02 30.98c.904-.904 2.37-.904 3.274 0l-3.66-3.66c-.904-.904-.904-2.37 0-3.274s2.37-.904 3.274 0l.97.97.756.686 1.8 1.8c.904.904 2.37.904 3.274 0s.904-2.37 0-3.274l-8.37-8.37c-.904-.904-.904-2.37 0-3.274s2.37-.904 3.274 0L28 14.96c-.904-.904-.904-2.37 0-3.274s2.37-.904 3.274 0l6.195 6.195a18.63 18.63 0 0 0-5.458-12.351C28.83 2.36 24.806.568 20.67.148l2.778 2.778a2.92 2.92 0 1 1-4.131 4.131l-1.9-1.9a2.92 2.92 0 1 0-4.131 4.131l3.743 3.743a2.92 2.92 0 1 1-4.131 4.131L8.79 13.056a2.92 2.92 0 0 1-4.722 3.273l2.988 2.988a2.92 2.92 0 1 1-4.131 4.131L.148 20.67c.42 4.138 2.213 8.162 5.383 11.332C10.43 36.9 17.365 38.5 23.608 36.844l-2.59-2.59c-.904-.906-.904-2.372.001-3.276z" fill="#59b4d9" stroke="#59b4d9" stroke-width=".232"/><path d="M37.46 17.882l-6.195-6.195c-.904-.904-2.37-.904-3.274 0s-.904 2.37 0 3.274l-2.387-2.387c-.904-.904-2.37-.904-3.274 0s-.904 2.37 0 3.274l8.37 8.37c.904.904.904 2.37 0 3.274s-2.37.904-3.274 0l-1.8-1.8-.756-.686-.97-.97c-.904-.904-2.37-.904-3.274 0s-.904 2.37 0 3.274l3.66 3.66c-.904-.904-2.37-.904-3.274 0s-.904 2.37 0 3.274l2.6 2.6A18.62 18.62 0 0 0 32.003 32c3.877-3.88 5.697-9.038 5.458-14.118zM7.057 23.445a2.92 2.92 0 0 0 0-4.131L4.07 16.326a2.92 2.92 0 0 0 4.722-3.273l4.106 4.106a2.921 2.921 0 1 0 4.131-4.131l-3.743-3.743a2.921 2.921 0 1 1 4.131-4.131l1.9 1.9a2.921 2.921 0 1 0 4.131-4.131L20.67.145C15.266-.4 9.67 1.392 5.532 5.53S-.4 15.265.15 20.668l2.778 2.778a2.92 2.92 0 0 0 4.13-.001z" fill="#b8d432"/><path d="M18.766 43.707c-6.662 0-12.926-2.594-17.637-7.305a1.74 1.74 0 1 1 2.461-2.461 21.32 21.32 0 0 0 15.176 6.286 21.32 21.32 0 0 0 15.176-6.286 21.32 21.32 0 0 0 6.286-15.176 21.32 21.32 0 0 0-6.286-15.176 1.74 1.74 0 1 1 2.461-2.461c4.71 4.71 7.305 10.974 7.305 17.637s-2.594 12.926-7.305 17.637-10.975 7.305-17.637 7.305z" fill="#fcd116"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/GlobeError.svg b/src/main/webapp/img/lib/mscae/GlobeError.svg index 4e0241a77d750b60c4acd3d4e03e6887bb10908e..8d72a04a3dc3ffd7fb6135b4510abb3dd92a9134 100644 --- a/src/main/webapp/img/lib/mscae/GlobeError.svg +++ b/src/main/webapp/img/lib/mscae/GlobeError.svg @@ -1,88 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="43.6562" - height="49.999516" - viewBox="0 0 43.6562 49.999516" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="GlobeError.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata2676"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs2674" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview2672" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="21.828202" - inkscape:cy="25" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 20.987202,40.350514 h -3.951 c 0.957,5.788 -2.336,6.618 -7.9679998,6.618 v 3.031 h 7.1629998 5.229 6.759 v -3.031 c -5.631,0 -8.19,-0.827 -7.232,-6.618" - id="path2657" - inkscape:connector-curvature="0" - style="fill:#7a7a7a" /> -<rect - x="9.0702019" - y="46.967514" - width="19.150999" - height="3.0320001" - id="rect2659" - style="fill:#a0a1a2" /> -<path - d="m 31.948202,5.4795139 c -3.17,-3.17 -7.195,-4.96299995 -11.332,-5.38299995 -5.402,-0.549 -10.9969998,1.24399995 -15.1359998,5.38299995 -4.139,4.139 -5.93200005,9.7340001 -5.38400005,15.1360001 0.42,4.138 2.21300005,8.162 5.38300005,11.332 4.8979998,4.898 11.8329998,6.508 18.0769998,4.842 3.074,-0.82 5.981,-2.431 8.392,-4.842 3.879,-3.879 5.699,-9.038 5.461,-14.117 -0.211,-4.491 -2.03,-8.9210001 -5.461,-12.3510001 z" - id="path2661" - inkscape:connector-curvature="0" - style="fill:#ec008c" /> -<path - d="m 18.714202,43.655514 c -6.662,0 -12.9259998,-2.594 -17.6369998,-7.305 -0.68000005,-0.68 -0.68000005,-1.781 0,-2.461 0.68,-0.679 1.781,-0.68 2.461,0 4.054,4.054 9.4429998,6.286 15.1759998,6.286 5.733,0 11.122,-2.232 15.176,-6.286 4.054,-4.054 6.286,-9.443 6.286,-15.176 0,-5.733 -2.232,-11.1220001 -6.286,-15.1760001 -0.68,-0.68 -0.68,-1.781 0,-2.461 0.68,-0.67999995 1.782,-0.67899995 2.461,0 4.711,4.711 7.305,10.9740001 7.305,17.6370001 0,6.663 -2.594,12.926 -7.305,17.637 -4.711,4.711 -10.975,7.305 -17.637,7.305 z" - id="path2663" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<path - d="m 28.440202,28.441514 c -3.221,3.222 -7.105,5.373 -11.211,6.469 -2.025,0.54 -4.105,0.818 -6.187,0.842 3.95,1.775 8.379,2.142 12.515,1.038 3.074,-0.82 5.981,-2.431 8.392,-4.842 3.879,-3.879 5.699,-9.038 5.461,-14.117 -0.111,-2.361 -0.679,-4.7 -1.679,-6.891 -0.046,6.338 -2.454,12.664 -7.291,17.501 z" - id="path2665" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#1e1e1e" /> -<circle - cx="18.645201" - cy="27.095514" - r="2.904" - id="circle2667" - style="fill:#ffffff" /> -<polygon - points="19.213,9.379 19.988,22.846 21.383,22.846 22.25,22.846 23.646,22.846 24.421,9.379 22.25,9.379 21.383,9.379 " - id="polygon2669" - style="fill:#ffffff" - transform="translate(-3.1717978,-4.8605108e-4)" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="43.656" height="50"><path d="M20.987 40.35h-3.95c.957 5.788-2.336 6.618-7.968 6.618V50h19.15v-3.03c-5.63 0-8.2-.827-7.232-6.618" fill="#7a7a7a"/><path d="M9.07 46.968h19.15V50H9.07z" fill="#a0a1a2"/><path d="M31.948 5.48C28.778 2.3 24.753.517 20.616.097 15.214-.452 9.62 1.34 5.48 5.48S-.452 15.214.096 20.616c.42 4.138 2.213 8.162 5.383 11.332 4.898 4.898 11.833 6.508 18.077 4.842a18.62 18.62 0 0 0 8.392-4.842 18.67 18.67 0 0 0 5.461-14.117c-.21-4.49-2.03-8.92-5.46-12.35z" fill="#ec008c"/><path d="M18.714 43.656c-6.662 0-12.926-2.594-17.637-7.305a1.74 1.74 0 1 1 2.461-2.461 21.32 21.32 0 0 0 15.176 6.286A21.32 21.32 0 0 0 33.89 33.89a21.32 21.32 0 0 0 6.286-15.176A21.32 21.32 0 0 0 33.89 3.538a1.74 1.74 0 1 1 2.461-2.461c4.71 4.71 7.305 10.974 7.305 17.637S41.062 31.64 36.35 36.35s-10.975 7.305-17.637 7.305z" fill="#a0a1a2"/><path d="M28.44 28.442c-3.22 3.222-7.105 5.373-11.21 6.47a25.14 25.14 0 0 1-6.187.842c3.95 1.775 8.38 2.142 12.515 1.038a18.62 18.62 0 0 0 8.392-4.842 18.67 18.67 0 0 0 5.461-14.117 18.72 18.72 0 0 0-1.679-6.891c-.046 6.338-2.454 12.664-7.29 17.5z" opacity=".2" fill="#1e1e1e"/><g fill="#fff"><circle cx="18.645" cy="27.096" r="2.904"/><path d="M16.04 9.38l.775 13.467h3.658L21.25 9.38H18.21z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/GlobeSuccess.svg b/src/main/webapp/img/lib/mscae/GlobeSuccess.svg index 0a044f4bc30de181d1bcca2de48af2eb0f5193d6..eb95183df11b84d2c816aa8c5399bfe229a0c544 100644 --- a/src/main/webapp/img/lib/mscae/GlobeSuccess.svg +++ b/src/main/webapp/img/lib/mscae/GlobeSuccess.svg @@ -1,82 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="43.6562" - height="49.999516" - viewBox="0 0 43.6562 49.999516" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="GlobeSuccess.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata2761"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs2759" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview2757" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.020815" - inkscape:cx="29.700195" - inkscape:cy="19.371569" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 20.987202,40.350514 h -3.951 c 0.957,5.788 -2.336,6.618 -7.9679998,6.618 v 3.031 h 7.1629998 5.229 6.759 v -3.031 c -5.631,0 -8.19,-0.827 -7.232,-6.618" - id="path2744" - inkscape:connector-curvature="0" - style="fill:#7a7a7a" /> -<rect - x="9.0702019" - y="46.967514" - width="19.150999" - height="3.0320001" - id="rect2746" - style="fill:#a0a1a2" /> -<path - d="m 31.948202,5.4795139 c -3.17,-3.17 -7.195,-4.96299995 -11.332,-5.38299995 -5.402,-0.549 -10.9969998,1.24399995 -15.1359998,5.38299995 -4.139,4.139 -5.93200005,9.7340001 -5.38400005,15.1360001 0.42,4.138 2.21300005,8.162 5.38300005,11.332 4.8979998,4.898 11.8329998,6.508 18.0769998,4.842 3.074,-0.82 5.981,-2.431 8.392,-4.842 3.879,-3.879 5.699,-9.038 5.461,-14.117 -0.211,-4.491 -2.03,-8.9210001 -5.461,-12.3510001 z" - id="path2748" - inkscape:connector-curvature="0" - style="fill:#7fba00" /> -<path - d="m 18.714202,43.655514 c -6.662,0 -12.9259998,-2.594 -17.6369998,-7.305 -0.68000005,-0.68 -0.68000005,-1.781 0,-2.461 0.68,-0.679 1.781,-0.68 2.461,0 4.054,4.054 9.4429998,6.286 15.1759998,6.286 5.733,0 11.122,-2.232 15.176,-6.286 4.054,-4.054 6.286,-9.443 6.286,-15.176 0,-5.733 -2.232,-11.1220001 -6.286,-15.1760001 -0.68,-0.68 -0.68,-1.781 0,-2.461 0.68,-0.67999995 1.782,-0.67899995 2.461,0 4.711,4.711 7.305,10.9740001 7.305,17.6370001 0,6.663 -2.594,12.926 -7.305,17.637 -4.711,4.711 -10.975,7.305 -17.637,7.305 z" - id="path2750" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<polygon - points="13.85,16.034 13.85,16.034 13.85,16.034 19.208,21.392 29.925,10.676 29.925,10.676 29.925,10.676 32.6,13.355 32.6,13.355 32.6,13.355 19.208,26.751 11.175,18.713 " - id="polygon2752" - style="fill:#ffffff" - transform="translate(-3.1717978,-4.8605108e-4)" /> -<path - d="m 17.229202,34.910514 c -2.025,0.54 -4.105,0.818 -6.187,0.842 3.95,1.775 8.379,2.142 12.515,1.038 3.074,-0.82 5.981,-2.431 8.392,-4.842 3.879,-3.879 5.699,-9.038 5.461,-14.117 -0.111,-2.361 -0.679,-4.7 -1.679,-6.891 -0.045,6.339 -2.454,12.665 -7.29,17.501 -3.222,3.221 -7.106,5.373 -11.212,6.469 z" - id="path2754" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#1e1e1e" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="43.656" height="50"><path d="M20.987 40.35h-3.95c.957 5.788-2.336 6.618-7.968 6.618V50h19.15v-3.03c-5.63 0-8.2-.827-7.232-6.618" fill="#7a7a7a"/><path d="M9.07 46.968h19.15V50H9.07z" fill="#a0a1a2"/><path d="M31.948 5.48C28.778 2.3 24.753.517 20.616.097 15.214-.452 9.62 1.34 5.48 5.48S-.452 15.214.096 20.616c.42 4.138 2.213 8.162 5.383 11.332 4.898 4.898 11.833 6.508 18.077 4.842a18.62 18.62 0 0 0 8.392-4.842 18.67 18.67 0 0 0 5.461-14.117c-.21-4.49-2.03-8.92-5.46-12.35z" fill="#7fba00"/><path d="M18.714 43.656c-6.662 0-12.926-2.594-17.637-7.305a1.74 1.74 0 1 1 2.461-2.461 21.32 21.32 0 0 0 15.176 6.286A21.32 21.32 0 0 0 33.89 33.89a21.32 21.32 0 0 0 6.286-15.176A21.32 21.32 0 0 0 33.89 3.538a1.74 1.74 0 1 1 2.461-2.461c4.71 4.71 7.305 10.974 7.305 17.637S41.062 31.64 36.35 36.35s-10.975 7.305-17.637 7.305z" fill="#a0a1a2"/><path d="M10.678 16.034l5.358 5.358 10.717-10.716 2.675 2.68L16.036 26.75l-8.033-8.038z" fill="#fff"/><path d="M17.23 34.91a25.14 25.14 0 0 1-6.187.842c3.95 1.775 8.38 2.142 12.515 1.038a18.62 18.62 0 0 0 8.392-4.842 18.67 18.67 0 0 0 5.461-14.117 18.72 18.72 0 0 0-1.679-6.891c-.045 6.34-2.454 12.665-7.3 17.5a24.89 24.89 0 0 1-11.212 6.469z" opacity=".2" fill="#1e1e1e"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/GlobeWarning.svg b/src/main/webapp/img/lib/mscae/GlobeWarning.svg index 731b29fc47f6d182e0ff5e66f321ca925b4f2307..00af83b1fb4ca2fbbb30a55170a96920c9a928fe 100644 --- a/src/main/webapp/img/lib/mscae/GlobeWarning.svg +++ b/src/main/webapp/img/lib/mscae/GlobeWarning.svg @@ -1,82 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="43.6562" - height="49.999516" - viewBox="0 0 43.6562 49.999516" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="GlobeWarning.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata2869"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs2867" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview2865" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.020815" - inkscape:cx="12.715504" - inkscape:cy="20.468016" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 20.987202,40.350514 h -3.951 c 0.957,5.788 -2.336,6.618 -7.9679998,6.618 v 3.031 h 7.1629998 5.229 6.759 v -3.031 c -5.631,0 -8.19,-0.827 -7.232,-6.618" - id="path2852" - inkscape:connector-curvature="0" - style="fill:#7a7a7a" /> -<rect - x="9.0702019" - y="46.967514" - width="19.150999" - height="3.0320001" - id="rect2854" - style="fill:#a0a1a2" /> -<path - d="m 31.948202,5.4795139 c -3.17,-3.17 -7.195,-4.96299995 -11.332,-5.38299995 -5.402,-0.549 -10.9969998,1.24399995 -15.1359998,5.38299995 -4.139,4.139 -5.93200005,9.7340001 -5.38400005,15.1360001 0.42,4.138 2.21300005,8.162 5.38300005,11.332 4.8979998,4.898 11.8329998,6.508 18.0769998,4.842 3.074,-0.82 5.981,-2.431 8.392,-4.842 3.879,-3.879 5.699,-9.038 5.461,-14.117 -0.211,-4.491 -2.03,-8.9210001 -5.461,-12.3510001 z" - id="path2856" - inkscape:connector-curvature="0" - style="fill:#ff8c00" /> -<path - d="m 28.440202,28.441514 c -3.221,3.222 -7.105,5.373 -11.211,6.469 -2.025,0.54 -4.105,0.818 -6.187,0.842 3.95,1.775 8.378,2.142 12.515,1.038 3.074,-0.82 5.981,-2.431 8.392,-4.842 3.879,-3.879 5.699,-9.038 5.461,-14.117 -0.111,-2.361 -0.679,-4.7 -1.679,-6.891 -0.046,6.338 -2.454,12.664 -7.291,17.501 z" - id="path2858" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#1e1e1e" /> -<path - d="m 18.714202,43.655514 c -6.662,0 -12.9259998,-2.594 -17.6369998,-7.305 -0.68000005,-0.68 -0.68000005,-1.781 0,-2.461 0.68,-0.679 1.781,-0.68 2.461,0 4.054,4.054 9.4429998,6.286 15.1759998,6.286 5.733,0 11.122,-2.232 15.176,-6.286 4.054,-4.054 6.286,-9.443 6.286,-15.176 0,-5.733 -2.232,-11.1220001 -6.286,-15.1760001 -0.68,-0.68 -0.68,-1.781 0,-2.461 0.68,-0.67999995 1.782,-0.67899995 2.461,0 4.711,4.711 7.305,10.9740001 7.305,17.6370001 0,6.663 -2.594,12.926 -7.305,17.637 -4.711,4.711 -10.975,7.305 -17.637,7.305 z" - id="path2860" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<path - d="m 29.760202,24.445514 -4.743,-8.137 -4.808,-8.2500001 c -0.741,-1.275 -2.255,-1.257 -3.016,0.02 l -4.742,7.9280001 -4.7909998,8.419 c -0.746,1.275 0.051,2.845 1.562,2.845 h 9.4949998 9.49 c 1.547,0 2.308,-1.555 1.553,-2.825 z m -11.199,-11.217 h 0.464 1.159 l -0.416,7.182 h -0.743 -0.464 -0.743 l -0.413,-7.182 z m 0.153,11 c -0.856,0 -1.55,-0.694 -1.55,-1.55 0,-0.856 0.694,-1.55 1.55,-1.55 0.856,0 1.55,0.694 1.55,1.55 0,0.856 -0.694,1.55 -1.55,1.55 z" - id="path2862" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="43.656" height="50"><path d="M20.987 40.35h-3.95c.957 5.788-2.336 6.618-7.968 6.618V50h19.15v-3.03c-5.63 0-8.2-.827-7.232-6.618" fill="#7a7a7a"/><path d="M9.07 46.968h19.15V50H9.07z" fill="#a0a1a2"/><path d="M31.948 5.48C28.778 2.3 24.753.517 20.616.097 15.214-.452 9.62 1.34 5.48 5.48S-.452 15.214.096 20.616c.42 4.138 2.213 8.162 5.383 11.332 4.898 4.898 11.833 6.508 18.077 4.842a18.62 18.62 0 0 0 8.392-4.842 18.67 18.67 0 0 0 5.461-14.117c-.21-4.49-2.03-8.92-5.46-12.35z" fill="#ff8c00"/><path d="M28.44 28.442c-3.22 3.222-7.105 5.373-11.21 6.47a25.14 25.14 0 0 1-6.187.842c3.95 1.775 8.378 2.142 12.515 1.038a18.62 18.62 0 0 0 8.392-4.842 18.67 18.67 0 0 0 5.461-14.117 18.72 18.72 0 0 0-1.679-6.891c-.046 6.338-2.454 12.664-7.29 17.5z" opacity=".2" fill="#1e1e1e"/><path d="M18.714 43.656c-6.662 0-12.926-2.594-17.637-7.305a1.74 1.74 0 1 1 2.461-2.461 21.32 21.32 0 0 0 15.176 6.286A21.32 21.32 0 0 0 33.89 33.89a21.32 21.32 0 0 0 6.286-15.176A21.32 21.32 0 0 0 33.89 3.538a1.74 1.74 0 1 1 2.461-2.461c4.71 4.71 7.305 10.974 7.305 17.637S41.062 31.64 36.35 36.35s-10.975 7.305-17.637 7.305z" fill="#a0a1a2"/><path d="M29.76 24.446L20.21 8.06c-.74-1.275-2.255-1.257-3.016.02l-4.742 7.928-4.79 8.42c-.746 1.275.05 2.845 1.562 2.845h18.985c1.547 0 2.308-1.555 1.553-2.825zM18.56 13.23h1.623l-.416 7.182h-1.95l-.413-7.182zm.153 11a1.55 1.55 0 1 1 0-3.1 1.55 1.55 0 1 1 0 3.1z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Go.svg b/src/main/webapp/img/lib/mscae/Go.svg index e7a6db1bf6d2f2546a7b0f89dbbc27ae205bf55d..5b5047d4701106055f933f4e138cc870cdb473f9 100644 --- a/src/main/webapp/img/lib/mscae/Go.svg +++ b/src/main/webapp/img/lib/mscae/Go.svg @@ -1,11 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#59B4D9" d="M25.004,0C38.809,0,50,11.197,50,25c0,13.808-11.191,25-24.996,25C11.194,50,0,38.808,0,25 - C0,11.197,11.194,0,25.004,0 M25.004,3.179C12.974,3.179,3.181,12.967,3.181,25c0,12.033,9.792,21.825,21.823,21.825 - c12.026,0,21.817-9.792,21.817-21.825C46.821,12.967,37.03,3.179,25.004,3.179"/> -<polygon fill="#59B4D9" points="29.576,22.574 21.893,15.329 28.14,15.329 38.415,25.021 28.187,34.677 21.938,34.677 - 29.576,27.475 12.259,27.475 12.259,22.574 "/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" fill="#59b4d9"><path d="M25.004 0C38.8 0 50 11.197 50 25S38.8 50 25.004 50 0 38.808 0 25 11.194 0 25.004 0m0 3.18C12.974 3.18 3.18 12.967 3.18 25s9.792 21.825 21.823 21.825S46.82 37.033 46.82 25 37.03 3.18 25.004 3.18m4.572 19.394l-7.683-7.245h6.247l10.275 9.692-10.228 9.656h-6.25l7.638-7.202H12.26v-4.9z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/GreatScott.svg b/src/main/webapp/img/lib/mscae/GreatScott.svg index 09214bc43b591e6005bbf63b7221c01cc21fa157..311d7b76b744aa86e721619a73d1c31de0aecbc3 100644 --- a/src/main/webapp/img/lib/mscae/GreatScott.svg +++ b/src/main/webapp/img/lib/mscae/GreatScott.svg @@ -1,189 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - viewBox="0 0 50 44.051483" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="GreatScott.svg" - width="50" - height="44.051483" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata3118"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs3116" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview3114" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="25" - inkscape:cy="21.1" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 11.6,42.051484 c 0,1.1 -0.8,2 -1.7,2 H 6.3 c -0.9,0 -1.7,-0.9 -1.7,-2 v -9.3 c 0,-1.1 0.8,-2 1.7,-2 h 3.5 c 0.9,0 1.7,0.9 1.7,2 v 9.3 z" - id="path3055" - inkscape:connector-curvature="0" - style="fill:#1e1e1e" /> -<path - d="m 45.9,42.051484 c 0,1.1 -0.8,2 -1.7,2 h -3.5 c -0.9,0 -1.7,-0.9 -1.7,-2 v -9.3 c 0,-1.1 0.8,-2 1.7,-2 h 3.5 c 0.9,0 1.7,0.9 1.7,2 z" - id="path3057" - inkscape:connector-curvature="0" - style="fill:#1e1e1e" /> -<path - d="m 46.6,33.551484 c 0,0.4 -0.3,0.7 -0.6,0.7 H 4.8 c -0.3,0 -0.6,-0.3 -0.6,-0.7 l 0.7,-4.2 c 0,-0.4 0.3,-0.7 0.6,-0.7 h 39.9 c 0.3,0 0.6,0.3 0.6,0.7 z" - id="path3059" - inkscape:connector-curvature="0" - style="fill:#1e1e1e" /> -<path - d="m 45.9,28.051484 c 0,0.4 -0.3,0.7 -0.6,0.7 H 5.4 c -0.3,0 -0.6,-0.3 -0.6,-0.7 l 2.9,-4.5 c 0,-0.4 0.3,-0.7 0.6,-0.7 h 34.1 c 0.3,0 0.6,0.3 0.6,0.7 z" - id="path3061" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<path - d="m 42.6,22.451484 c 0,0.4 -0.3,0.7 -0.6,0.7 H 8.7 c -0.3,0 -0.6,-0.3 -0.6,-0.7 l 4.9,-5 c 0,-0.4 0.3,-0.7 0.6,-0.7 H 37 c 0.3,0 0.6,0.3 0.6,0.7 z" - id="path3063" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<path - d="m 42.2,22.251484 c 0,0.4 -0.3,0.6 -0.6,0.6 H 9.2 c -0.3,0 -0.6,-0.3 -0.6,-0.6 l 4.9,-4.5 c 0,-0.4 0.3,-0.6 0.6,-0.6 h 22.7 c 0.3,0 0.6,0.3 0.6,0.6 z" - id="path3065" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="m 45.7,36.951484 c 0,0.2 -0.3,0.4 -0.6,0.4 H 5.7 c -0.3,0 -0.6,-0.2 -0.6,-0.4 l -0.9,-2.5 c 0,-0.2 0.3,-0.4 0.6,-0.4 H 46 c 0.3,0 0.6,0.2 0.6,0.4 z" - id="path3067" - inkscape:connector-curvature="0" - style="fill:#7a7a7a" /> -<path - d="m 45.7,37.951484 c 0,0.2 -0.3,0.4 -0.6,0.4 H 5.7 c -0.3,0 -0.6,-0.2 -0.6,-0.4 l -0.9,-2.5 c 0,-0.2 0.3,-0.4 0.6,-0.4 H 46 c 0.3,0 0.6,0.2 0.6,0.4 z" - id="path3069" - inkscape:connector-curvature="0" - style="fill:#1e1e1e" /> -<path - d="m 45.3,39.151484 c 0,0.1 -0.3,0.3 -0.6,0.3 H 6.1 c -0.3,0 -0.6,-0.1 -0.6,-0.3 l -0.2,-1.6 c 0,-0.1 0.3,-0.3 0.6,-0.3 h 38.9 c 0.3,0 0.6,0.1 0.6,0.3 z" - id="path3071" - inkscape:connector-curvature="0" - style="fill:#7a7a7a" /> -<path - d="m 11.3,32.551484 c 0,0.4 -0.3,0.7 -0.6,0.7 H 6.4 c -0.3,0 -0.6,-0.3 -0.6,-0.7 v -2.2 c 0,-0.4 0.3,-0.7 0.6,-0.7 h 4.3 c 0.3,0 0.6,0.3 0.6,0.7 z" - id="path3073" - inkscape:connector-curvature="0" - style="fill:#e5e5e5" /> -<path - d="m 18.4,32.551484 c 0,0.4 -0.3,0.7 -0.6,0.7 h -4.3 c -0.3,0 -0.6,-0.3 -0.6,-0.7 v -2.2 c 0,-0.4 0.3,-0.7 0.6,-0.7 h 4.3 c 0.3,0 0.6,0.3 0.6,0.7 z" - id="path3075" - inkscape:connector-curvature="0" - style="fill:#e5e5e5" /> -<path - d="m 28.2,32.051484 c 0,0.1 -0.3,0.3 -0.6,0.3 h -4.3 c -0.3,0 -0.6,-0.1 -0.6,-0.3 v -0.9 c 0,-0.1 0.3,-0.2 0.6,-0.2 h 4.3 c 0.3,0 0.6,0.1 0.6,0.2 z" - id="path3077" - inkscape:connector-curvature="0" - style="fill:#e5e5e5" /> -<path - d="m 14.1,36.351484 c 0,0.1 -0.2,0.1 -0.6,0.1 H 9.2 c -0.3,0 -0.7,0 -0.7,-0.1 v -0.7 c 0,-0.1 0.3,-0.1 0.7,-0.1 h 4.3 c 0.3,0 0.6,0 0.6,0.1 z" - id="path3079" - inkscape:connector-curvature="0" - style="fill:#ff8c00" /> -<path - d="m 42.6,36.351484 c 0,0.1 -0.3,0.1 -0.6,0.1 h -4.3 c -0.3,0 -0.6,0 -0.6,-0.1 v -0.7 c 0,-0.1 0.3,-0.1 0.6,-0.1 H 42 c 0.3,0 0.6,0 0.6,0.1 z" - id="path3081" - inkscape:connector-curvature="0" - style="fill:#ff8c00" /> -<path - d="m 38,32.551484 c 0,0.4 -0.3,0.7 -0.6,0.7 h -4.3 c -0.3,0 -0.6,-0.3 -0.6,-0.7 v -2.2 c 0,-0.4 0.3,-0.7 0.6,-0.7 h 4.3 c 0.3,0 0.6,0.3 0.6,0.7 z" - id="path3083" - inkscape:connector-curvature="0" - style="fill:#e5e5e5" /> -<path - d="m 44.9,32.551484 c 0,0.4 -0.3,0.7 -0.6,0.7 H 40 c -0.3,0 -0.6,-0.3 -0.6,-0.7 v -2.2 c 0,-0.4 0.3,-0.7 0.6,-0.7 h 4.3 c 0.3,0 0.6,0.3 0.6,0.7 z" - id="path3085" - inkscape:connector-curvature="0" - style="fill:#e5e5e5" /> -<g - id="g3091" - transform="translate(0,-2.0485163)"> - <g - id="g3089"> - <path - d="M 22,17.8 21,13.1 C 20.6,12.5 17.5,7.8 11.4,7.1 4.6,6.4 0.9,11 0.9,11.1 L 0,10.5 C 0.2,10.3 4.1,5.3 11.5,6.1 18.6,6.9 21.9,12.4 22,12.7 l 0.1,0.2 1,4.7 z" - id="path3087" - inkscape:connector-curvature="0" - style="fill:#1e1e1e" /> - </g> -</g> -<path - d="m 21.5,10.851484 c 0,0 -2.3,-4.0000003 -7.2,-5.7000003 0.2,-0.3 0.2,-0.7 0.1,-1.1 L 13.6,0.95148372 c -0.2,-0.7 -0.9,-1.1 -1.5,-0.9 l -0.7,0.3 c -0.6,0.2 -1,0.99999998 -0.8,1.69999998 l 0.4,2.5 c -7,-0.5 -10,3.6 -10,3.6 l 1,2.8000003 9.8,-4.0000003 c 0,0 2.2,0.3 4.2,1.6 1.8,1.1 3.5,3.1000003 3.5,3.1000003 l 1,3.9 h 2.1 z" - id="path3093" - inkscape:connector-curvature="0" - style="clip-rule:evenodd;fill:#a0a1a2;fill-rule:evenodd" /> -<path - d="m 7.5,7.3514837 c 0,0.4 -3.8,2 -4.1,2 -0.3,0 -0.6,-0.3 -0.6,-0.7 0,-0.4 3.8,-2 4.1,-2 0.4,0 0.6,0.3 0.6,0.7 z" - id="path3095" - inkscape:connector-curvature="0" - style="clip-rule:evenodd;fill:#1e1e1e;fill-rule:evenodd" /> -<g - id="g3101" - transform="translate(0,-2.0485163)"> - <g - id="g3099"> - <path - d="M 28,17.8 26.9,17.6 28,12.7 C 28.1,12.5 31.4,6.9 38.5,6.1 46,5.3 49.8,10.3 50,10.5 l -0.9,0.7 c 0,0 -3.7,-4.7 -10.5,-4 -6.1,0.7 -9.2,5.4 -9.6,6 z" - id="path3097" - inkscape:connector-curvature="0" - style="fill:#1e1e1e" /> - </g> -</g> -<path - d="m 28.5,10.851484 c 0,0 2.3,-4.0000003 7.2,-5.7000003 -0.2,-0.3 -0.2,-0.7 -0.1,-1.1 l 0.8,-3.09999998 c 0.2,-0.7 0.9,-1.1 1.5,-0.9 l 0.7,0.3 c 0.6,0.2 1,0.99999998 0.8,1.69999998 l -0.4,2.5 c 7,-0.5 10,3.6 10,3.6 L 48,10.951484 38.2,6.9514837 c 0,0 -2.2,0.3 -4.2,1.6 -1.8,1.1 -3.5,3.1000003 -3.5,3.1000003 l -1,3.9 h -2.1 z" - id="path3103" - inkscape:connector-curvature="0" - style="clip-rule:evenodd;fill:#a0a1a2;fill-rule:evenodd" /> -<path - d="m 42.7,7.3514837 c 0,0.4 3.6,1.9 3.9,1.9 0.3,0 0.6,-0.3 0.6,-0.7 0,-0.4 -3.6,-1.9 -3.9,-1.9 -0.3,0.1 -0.6,0.4 -0.6,0.7 z" - id="path3105" - inkscape:connector-curvature="0" - style="clip-rule:evenodd;fill:#1e1e1e;fill-rule:evenodd" /> -<path - d="m 24.1,23.051484 c 0,0.1 -0.1,0.1 -0.2,0.1 l -9.9,-1.1 c -0.1,0 -0.1,0 -0.1,-0.1 v -0.1 c 0,-0.1 0.1,-0.2 0.2,-0.2 l 9.9,1.1 c 0,0 0.1,0.1 0.1,0.3 z" - id="path3107" - inkscape:connector-curvature="0" - style="fill:#1e1e1e" /> -<path - d="m 35.4,23.051484 c 0,0.1 -0.1,0.1 -0.2,0.1 l -9.9,-1.1 c -0.1,0 -0.1,0 -0.1,-0.1 v -0.1 c 0,-0.1 0.1,-0.2 0.2,-0.2 l 9.9,1.1 c 0.1,0 0.2,0.1 0.1,0.3 z" - id="path3109" - inkscape:connector-curvature="0" - style="fill:#1e1e1e" /> -<path - d="m 37.6,16.751484 c 0,0.1 -0.2,0.1 -0.5,0.1 H 13.6 c -0.3,0 -0.5,0 -0.5,-0.1 l 2.5,-1 c 0,-0.1 0.2,-0.1 0.5,-0.1 h 18.5 c 0.3,0 0.5,0 0.5,0.1 z" - id="path3111" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="44.051"><g fill="#1e1e1e"><path d="M11.6 42.05c0 1.1-.8 2-1.7 2H6.3c-.9 0-1.7-.9-1.7-2v-9.3c0-1.1.8-2 1.7-2h3.5c.9 0 1.7.9 1.7 2v9.3zm34.3 0c0 1.1-.8 2-1.7 2h-3.5c-.9 0-1.7-.9-1.7-2v-9.3c0-1.1.8-2 1.7-2h3.5c.9 0 1.7.9 1.7 2z"/><path d="M46.6 33.55c0 .4-.3.7-.6.7H4.8c-.3 0-.6-.3-.6-.7l.7-4.2c0-.4.3-.7.6-.7h39.9c.3 0 .6.3.6.7z"/></g><g fill="#a0a1a2"><path d="M45.9 28.05c0 .4-.3.7-.6.7H5.4c-.3 0-.6-.3-.6-.7l2.9-4.5c0-.4.3-.7.6-.7h34.1c.3 0 .6.3.6.7z"/><path d="M42.6 22.45c0 .4-.3.7-.6.7H8.7c-.3 0-.6-.3-.6-.7l4.9-5c0-.4.3-.7.6-.7H37c.3 0 .6.3.6.7z"/></g><path d="M42.2 22.25c0 .4-.3.6-.6.6H9.2a.65.65 0 0 1-.6-.6l4.9-4.5c0-.4.3-.6.6-.6h22.7a.65.65 0 0 1 .6.6z" fill="#59b4d9"/><path d="M45.7 36.95c0 .2-.3.4-.6.4H5.7c-.3 0-.6-.2-.6-.4l-.9-2.5c0-.2.3-.4.6-.4H46c.3 0 .6.2.6.4z" fill="#7a7a7a"/><path d="M45.7 37.95c0 .2-.3.4-.6.4H5.7c-.3 0-.6-.2-.6-.4l-.9-2.5c0-.2.3-.4.6-.4H46c.3 0 .6.2.6.4z" fill="#1e1e1e"/><path d="M45.3 39.15c0 .1-.3.3-.6.3H6.1c-.3 0-.6-.1-.6-.3l-.2-1.6c0-.1.3-.3.6-.3h38.9c.3 0 .6.1.6.3z" fill="#7a7a7a"/><path d="M11.3 32.55c0 .4-.3.7-.6.7H6.4c-.3 0-.6-.3-.6-.7v-2.2c0-.4.3-.7.6-.7h4.3c.3 0 .6.3.6.7zm7.1 0c0 .4-.3.7-.6.7h-4.3c-.3 0-.6-.3-.6-.7v-2.2c0-.4.3-.7.6-.7h4.3c.3 0 .6.3.6.7zm9.8-.5c0 .1-.3.3-.6.3h-4.3c-.3 0-.6-.1-.6-.3v-.9c0-.1.3-.2.6-.2h4.3c.3 0 .6.1.6.2z" fill="#e5e5e5"/><path d="M14.1 36.35c0 .1-.2.1-.6.1H9.2c-.3 0-.7 0-.7-.1v-.7c0-.1.3-.1.7-.1h4.3c.3 0 .6 0 .6.1zm28.5 0c0 .1-.3.1-.6.1h-4.3c-.3 0-.6 0-.6-.1v-.7c0-.1.3-.1.6-.1H42c.3 0 .6 0 .6.1z" fill="#ff8c00"/><path d="M38 32.55c0 .4-.3.7-.6.7h-4.3c-.3 0-.6-.3-.6-.7v-2.2c0-.4.3-.7.6-.7h4.3c.3 0 .6.3.6.7zm6.9 0c0 .4-.3.7-.6.7H40c-.3 0-.6-.3-.6-.7v-2.2c0-.4.3-.7.6-.7h4.3c.3 0 .6.3.6.7z" fill="#e5e5e5"/><path d="M22 15.75l-1-4.7c-.4-.6-3.5-5.3-9.6-6-6.8-.7-10.5 3.9-10.5 4l-.9-.6c.2-.2 4.1-5.2 11.5-4.4 7.1.8 10.4 6.3 10.5 6.6l.1.2 1 4.7z" fill="#1e1e1e"/><g fill-rule="evenodd"><path d="M21.5 10.85s-2.3-4-7.2-5.7c.2-.3.2-.7.1-1.1l-.8-3.1c-.2-.7-.9-1.1-1.5-.9l-.7.3c-.6.2-1 1-.8 1.7l.4 2.5c-7-.5-10 3.6-10 3.6l1 2.8 9.8-4s2.2.3 4.2 1.6c1.8 1.1 3.5 3.1 3.5 3.1l1 3.9h2.1z" fill="#a0a1a2"/><path d="M7.5 7.35c0 .4-3.8 2-4.1 2s-.6-.3-.6-.7 3.8-2 4.1-2c.4 0 .6.3.6.7z" fill="#1e1e1e"/></g><path d="M28 15.75l-1.1-.2 1.1-4.9c.1-.2 3.4-5.8 10.5-6.6 7.5-.8 11.3 4.2 11.5 4.4l-.9.7s-3.7-4.7-10.5-4c-6.1.7-9.2 5.4-9.6 6z" fill="#1e1e1e"/><g fill-rule="evenodd"><path d="M28.5 10.85s2.3-4 7.2-5.7c-.2-.3-.2-.7-.1-1.1l.8-3.1c.2-.7.9-1.1 1.5-.9l.7.3c.6.2 1 1 .8 1.7l-.4 2.5c7-.5 10 3.6 10 3.6l-1 2.8-9.8-4s-2.2.3-4.2 1.6c-1.8 1.1-3.5 3.1-3.5 3.1l-1 3.9h-2.1z" fill="#a0a1a2"/><path d="M42.7 7.35c0 .4 3.6 1.9 3.9 1.9s.6-.3.6-.7-3.6-1.9-3.9-1.9c-.3.1-.6.4-.6.7z" fill="#1e1e1e"/></g><path d="M24.1 23.05c0 .1-.1.1-.2.1l-9.9-1.1c-.1 0-.1 0-.1-.1v-.1c0-.1.1-.2.2-.2l9.9 1.1s.1.1.1.3zm11.3 0c0 .1-.1.1-.2.1l-9.9-1.1c-.1 0-.1 0-.1-.1v-.1c0-.1.1-.2.2-.2l9.9 1.1c.1 0 .2.1.1.3z" fill="#1e1e1e"/><path d="M37.6 16.75c0 .1-.2.1-.5.1H13.6c-.3 0-.5 0-.5-.1l2.5-1c0-.1.2-.1.5-.1h18.5c.3 0 .5 0 .5.1z" fill="#a0a1a2"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Grid.svg b/src/main/webapp/img/lib/mscae/Grid.svg index ccbb9144294f26000bbf7d77d67a835fa5ff5c10..8a5e5155a8ced7578eea5452d5fbf6723208bee2 100644 --- a/src/main/webapp/img/lib/mscae/Grid.svg +++ b/src/main/webapp/img/lib/mscae/Grid.svg @@ -1,162 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="40" - height="40" - viewBox="0 0 40 40" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Grid.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata3243"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs3241" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview3239" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="20" - inkscape:cy="20" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<rect - x="0" - y="0" - width="8.868" - height="8.7919998" - id="rect3206" - style="fill:#b8d432" /> -<rect - x="10.377" - y="0" - width="8.868" - height="8.7919998" - id="rect3208" - style="fill:#b8d432" /> -<rect - x="20.728001" - y="0" - width="8.8950005" - height="8.7919998" - id="rect3210" - style="fill:#b8d432" /> -<rect - x="31.132" - y="0" - width="8.868" - height="8.7919998" - id="rect3212" - style="fill:#b8d432" /> -<rect - x="0" - y="10.402" - width="8.868" - height="8.7919998" - id="rect3214" - style="fill:#b8d432" /> -<rect - x="10.377" - y="10.402" - width="8.868" - height="8.7919998" - id="rect3216" - style="fill:#b8d432" /> -<rect - x="20.728001" - y="10.402" - width="8.8950005" - height="8.7919998" - id="rect3218" - style="fill:#b8d432" /> -<rect - x="31.132" - y="10.402" - width="8.868" - height="8.7919998" - id="rect3220" - style="fill:#b8d432" /> -<rect - x="0" - y="20.804001" - width="8.868" - height="8.9169998" - id="rect3222" - style="fill:#b8d432" /> -<rect - x="10.377" - y="20.804001" - width="8.868" - height="8.9169998" - id="rect3224" - style="fill:#b8d432" /> -<rect - x="20.728001" - y="20.804001" - width="8.8950005" - height="8.9169998" - id="rect3226" - style="fill:#b8d432" /> -<rect - x="31.132" - y="20.804001" - width="8.868" - height="8.9169998" - id="rect3228" - style="fill:#b8d432" /> -<rect - x="0" - y="31.208" - width="8.868" - height="8.7919998" - id="rect3230" - style="fill:#b8d432" /> -<rect - x="10.377" - y="31.208" - width="8.868" - height="8.7919998" - id="rect3232" - style="fill:#b8d432" /> -<rect - x="20.728001" - y="31.208" - width="8.8950005" - height="8.7919998" - id="rect3234" - style="fill:#b8d432" /> -<rect - x="31.132" - y="31.208" - width="8.868" - height="8.7919998" - id="rect3236" - style="fill:#b8d432" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" fill="#b8d432"><path d="M0 0h8.868v8.792H0zm10.377 0h8.868v8.792h-8.868zm10.35 0h8.895v8.792h-8.895zm10.404 0H40v8.792h-8.868zM0 10.402h8.868v8.792H0zm10.377 0h8.868v8.792h-8.868zm10.35 0h8.895v8.792h-8.895zm10.404 0H40v8.792h-8.868zM0 20.804h8.868v8.917H0zm10.377 0h8.868v8.917h-8.868zm10.35 0h8.895v8.917h-8.895zm10.404 0H40v8.917h-8.868zM0 31.208h8.868V40H0zm10.377 0h8.868V40h-8.868zm10.35 0h8.895V40h-8.895zm10.404 0H40V40h-8.868z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Grid3x3.svg b/src/main/webapp/img/lib/mscae/Grid3x3.svg index f424651b6177556852e446309a13a591b054828d..eaafa997501f4de50512e418dcce2a37f44efdf4 100644 --- a/src/main/webapp/img/lib/mscae/Grid3x3.svg +++ b/src/main/webapp/img/lib/mscae/Grid3x3.svg @@ -1,113 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="40" - height="40" - viewBox="-454 256 40 40" - enable-background="new -454 256 50 50" - xml:space="preserve" - sodipodi:docname="Grid3x3.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata3388"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs3386" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview3384" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="20" - inkscape:cy="20" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<rect - x="-454" - y="256" - width="12" - height="12" - id="rect3365" - style="fill:#b8d432" /> -<rect - x="-440" - y="256" - width="12" - height="12" - id="rect3367" - style="fill:#b8d432" /> -<rect - x="-426" - y="256" - width="12" - height="12" - id="rect3369" - style="fill:#b8d432" /> -<rect - x="-454" - y="270" - width="12" - height="12" - id="rect3371" - style="fill:#b8d432" /> -<rect - x="-440" - y="270" - width="12" - height="12" - id="rect3373" - style="fill:#b8d432" /> -<rect - x="-426" - y="270" - width="12" - height="12" - id="rect3375" - style="fill:#b8d432" /> -<rect - x="-454" - y="284" - width="12" - height="12" - id="rect3377" - style="fill:#b8d432" /> -<rect - x="-440" - y="284" - width="12" - height="12" - id="rect3379" - style="fill:#b8d432" /> -<rect - x="-426" - y="284" - width="12" - height="12" - id="rect3381" - style="fill:#b8d432" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="-454 256 40 40" fill="#b8d432"><path d="M-454 256h12v12h-12zm14 0h12v12h-12zm14 0h12v12h-12zm-28 14h12v12h-12zm14 0h12v12h-12zm14 0h12v12h-12zm-28 14h12v12h-12zm14 0h12v12h-12zm14 0h12v12h-12z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Guest_Assignments.svg b/src/main/webapp/img/lib/mscae/Guest_Assignments.svg new file mode 100644 index 0000000000000000000000000000000000000000..b099caf22c2133ddf8669d0b832a1162d4ebe2ad --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Guest_Assignments.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="42" height="48"><path d="M40 6.8L33.2 0H0v48h42V8.8z" fill="#59b4d9"/><path d="M33 2H2v44h38V9h-7z" opacity=".8" fill="#fff"/><path d="M25.347 27.61c-1.176 1.03-2.72 1.69-4.412 1.69s-3.235-.662-4.412-1.69l-.662 13.235 5-5.074 5 5.074z" fill="#ba141a"/><ellipse cx="21.025" cy="22" rx="7.875" ry="7.9" fill="#dd5900"/><ellipse cx="21.025" cy="22" rx="5.974" ry="5.993" fill="#ff8c00"/><path d="M15.39 27.653c-3.055-3.065-3.055-8.104 0-11.17s8.078-3.065 11.133 0z" opacity=".15" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Guide.svg b/src/main/webapp/img/lib/mscae/Guide.svg index e12baff3d397cfd2fe1793d5b25c86eff65271a8..999387da8c973fce74517d49fa4971a17387abd1 100644 --- a/src/main/webapp/img/lib/mscae/Guide.svg +++ b/src/main/webapp/img/lib/mscae/Guide.svg @@ -1,21 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#59B4D9" d="M49.859,22.381c-0.728-6.937-4.271-12.883-9.273-16.928c-0.971-0.786-2.018-1.472-3.1-2.1L35.523,7.13 - c0.83,0.493,1.636,1.024,2.385,1.632c4.196,3.395,7.116,8.312,7.723,14.063c0.602,5.706-1.165,11.093-4.504,15.226 - c-3.349,4.131-8.25,6.98-13.955,7.581c-3.82,0.4-7.489-0.277-10.744-1.761l-1.961,3.774c3.976,1.851,8.479,2.708,13.151,2.214 - c6.862-0.719,12.796-4.164,16.814-9.133C48.453,35.763,50.587,29.239,49.859,22.381"/> -<path fill="#59B4D9" d="M11.951,41.123c-4.133-3.346-6.978-8.247-7.581-13.949C3.771,21.466,5.532,16.08,8.878,11.946 - c3.343-4.13,8.246-6.977,13.951-7.578c4.613-0.484,9.016,0.574,12.694,2.76l1.963-3.776c-4.416-2.564-9.661-3.787-15.105-3.214 - C15.522,0.861,9.588,4.305,5.569,9.27L5.562,9.279c-4.018,4.965-6.144,11.484-5.423,18.338c0.723,6.859,4.164,12.796,9.135,16.815 - c1.582,1.282,3.335,2.346,5.194,3.212l1.961-3.774C14.826,43.14,13.315,42.227,11.951,41.123"/> -<path fill="#59B4D9" d="M27.834,12.422h-1.433l-2.596-3.959c-0.154-0.231-0.258-0.406-0.318-0.523h-0.016 - c0.022,0.234,0.035,0.574,0.035,1.019v3.463h-1.341V6.12h1.529l2.5,3.837l0.318,0.514h0.016c-0.022-0.153-0.035-0.442-0.035-0.865 - V6.12h1.341C27.834,6.12,27.834,12.422,27.834,12.422z"/> -<polygon opacity="0.8" fill="#59B4D9" points="20.322,27.103 25,41.406 25,27.103 "/> -<polygon fill="#59B4D9" points="20.322,27.104 25,27.104 25,27.103 25,12.803 "/> -<polygon opacity="0.8" fill="#59B4D9" points="25,12.803 25,27.103 29.678,27.103 "/> -<polygon opacity="0.6" fill="#59B4D9" points="25,27.103 25,41.406 29.678,27.103 "/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" fill="#59b4d9"><path d="M49.86 22.38c-.728-6.937-4.27-12.883-9.273-16.928-.97-.786-2.018-1.472-3.1-2.1L35.523 7.13c.83.493 1.636 1.024 2.385 1.632 4.196 3.395 7.116 8.312 7.723 14.063.602 5.706-1.165 11.093-4.504 15.226-3.35 4.13-8.25 6.98-13.955 7.58-3.82.4-7.5-.277-10.744-1.76l-1.96 3.774c3.976 1.85 8.48 2.708 13.15 2.214 6.862-.72 12.796-4.164 16.814-9.133 4.02-4.963 6.155-11.487 5.427-18.345M11.95 41.123c-4.133-3.346-6.978-8.247-7.58-13.95a20.66 20.66 0 0 1 4.508-15.228c3.346-4.134 8.246-6.977 13.95-7.578 4.613-.484 9.016.574 12.694 2.76l1.963-3.776C33.07.788 27.825-.435 22.38.138A24.94 24.94 0 0 0 5.57 9.27l-.007.01A24.94 24.94 0 0 0 .139 27.617c.723 6.86 4.164 12.796 9.135 16.815 1.582 1.282 3.335 2.346 5.194 3.212l1.96-3.774c-1.603-.73-3.114-1.643-4.478-2.747"/><path d="M27.834 12.422H26.4l-2.596-3.96-.318-.523h-.016c.022.234.035.574.035 1.02v3.463h-1.34V6.12h1.53l2.5 3.837.318.514h.016c-.022-.153-.035-.442-.035-.865V6.12h1.34v6.302z"/><path opacity=".8" d="M20.322 27.103L25 41.406V27.103z"/><path d="M20.322 27.104L25 27.103v-14.3z"/><path opacity=".8" d="M25 12.803v14.3h4.678z"/><path opacity=".6" d="M25 27.103v14.303l4.678-14.303z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Guide_2.svg b/src/main/webapp/img/lib/mscae/Guide_2.svg index ba1f476a0193a9ae6e140959484a89a8dce6af2b..e330c4214ffabedb7b706a2d4b58b7f2738e46cd 100644 --- a/src/main/webapp/img/lib/mscae/Guide_2.svg +++ b/src/main/webapp/img/lib/mscae/Guide_2.svg @@ -1,31 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#FFFFFF" d="M22.83,4.368C17.124,4.97,12.221,7.816,8.877,11.947c-3.345,4.134-5.106,9.52-4.508,15.227 - c0.604,5.703,3.449,10.604,7.581,13.949c4.134,3.346,9.52,5.109,15.222,4.509c5.705-0.601,10.606-3.451,13.955-7.581 - c3.34-4.132,5.106-9.519,4.505-15.225c-0.608-5.751-3.528-10.669-7.724-14.064c-3.531-2.859-8.032-4.51-12.856-4.51 - C24.319,4.252,23.578,4.29,22.83,4.368"/> -<path fill="#A0A1A2" d="M49.859,22.381c-0.728-6.937-4.271-12.883-9.273-16.928c-0.971-0.786-2.018-1.472-3.1-2.1L35.523,7.13 - c0.83,0.493,1.636,1.024,2.385,1.632c4.196,3.395,7.116,8.312,7.723,14.063c0.602,5.706-1.165,11.093-4.504,15.226 - c-3.349,4.131-8.25,6.98-13.955,7.581c-3.82,0.4-7.489-0.277-10.744-1.761l-1.961,3.774c3.976,1.851,8.479,2.708,13.151,2.214 - c6.862-0.719,12.796-4.164,16.814-9.133C48.453,35.763,50.587,29.239,49.859,22.381"/> -<path fill="#A0A1A2" d="M11.951,41.123c-4.133-3.346-6.978-8.247-7.581-13.949C3.771,21.466,5.532,16.08,8.878,11.946 - c3.343-4.13,8.246-6.977,13.951-7.578c4.613-0.484,9.016,0.574,12.694,2.76l1.963-3.776c-4.416-2.564-9.661-3.787-15.105-3.214 - C15.522,0.861,9.588,4.305,5.569,9.27L5.562,9.279c-4.018,4.965-6.144,11.484-5.423,18.338c0.723,6.859,4.164,12.796,9.135,16.815 - c1.582,1.282,3.335,2.346,5.194,3.212l1.961-3.774C14.826,43.14,13.315,42.227,11.951,41.123"/> -<path opacity="0.2" fill="#FFFFFF" enable-background="new " d="M11.951,41.123c-4.133-3.346-6.978-8.247-7.581-13.949 - C3.771,21.466,5.532,16.08,8.878,11.946c3.343-4.13,8.246-6.977,13.951-7.578c4.613-0.484,9.016,0.574,12.694,2.76l1.963-3.776 - c-4.416-2.564-9.661-3.787-15.105-3.214C15.522,0.861,9.588,4.305,5.569,9.27L5.562,9.279c-4.018,4.965-6.144,11.484-5.423,18.338 - c0.723,6.859,4.164,12.796,9.135,16.815c1.582,1.282,3.335,2.346,5.194,3.212l1.961-3.774C14.826,43.14,13.315,42.227,11.951,41.123 - "/> -<polygon fill="#BA141A" points="29.678,27.103 25,12.803 25,12.802 25,12.802 25,12.801 25,12.803 20.322,27.104 25,27.104 - 25,27.103 "/> -<polygon fill="#3E3E3E" points="25,27.103 25,27.103 20.322,27.103 25,41.406 25,41.406 29.678,27.103 "/> -<path d="M27.834,12.422h-1.433l-2.596-3.959c-0.154-0.231-0.258-0.406-0.318-0.523h-0.016c0.022,0.234,0.035,0.574,0.035,1.019 - v3.463h-1.341V6.12h1.529l2.5,3.837l0.318,0.514h0.016c-0.022-0.153-0.035-0.442-0.035-0.865V6.12h1.341 - C27.834,6.12,27.834,12.422,27.834,12.422z"/> -<polygon opacity="0.3" fill="#FFFFFF" enable-background="new " points="29.678,27.103 29.678,27.103 29.678,27.103 25,12.801 - 25,27.103 25,27.103 25,41.406 29.678,27.103 "/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="50"><path fill="#fff" d="M22.83 4.368a20.66 20.66 0 0 0-13.953 7.579 20.67 20.67 0 0 0-4.508 15.227c.604 5.703 3.45 10.604 7.58 13.95s9.52 5.11 15.222 4.51a20.68 20.68 0 0 0 13.955-7.581 20.67 20.67 0 0 0 4.505-15.225c-.608-5.75-3.528-10.67-7.724-14.064-3.53-2.86-8.032-4.5-12.856-4.5-.733 0-1.474.038-2.222.116"/><g fill="#a0a1a2"><path d="M49.86 22.38c-.728-6.937-4.27-12.883-9.273-16.928-.97-.786-2.018-1.472-3.1-2.1L35.523 7.13c.83.493 1.636 1.024 2.385 1.632 4.196 3.395 7.116 8.312 7.723 14.063.602 5.706-1.165 11.093-4.504 15.226-3.35 4.13-8.25 6.98-13.955 7.58-3.82.4-7.49-.277-10.744-1.76l-1.96 3.774c3.976 1.85 8.48 2.708 13.15 2.214 6.862-.72 12.796-4.164 16.814-9.133 4.02-4.963 6.155-11.487 5.427-18.345"/><use xlink:href="#B"/></g><use xlink:href="#B" opacity=".2" fill="#fff"/><path fill="#ba141a" d="M29.678 27.103L25 12.803l-4.678 14.3L25 27.103z"/><path fill="#3e3e3e" d="M25 27.103h-4.678L25 41.406l4.678-14.303z"/><path d="M27.834 12.422H26.4l-2.596-3.96-.318-.523h-.016c.022.234.035.574.035 1.02v3.463h-1.34V6.12h1.53l2.5 3.837.318.514h.016c-.022-.153-.035-.442-.035-.865V6.12h1.34v6.302z"/><path opacity=".3" fill="#fff" d="M29.678 27.103L25 12.8v28.605l4.678-14.303z"/><defs ><path id="B" d="M11.95 41.123c-4.133-3.346-6.978-8.247-7.58-13.95-.6-5.708 1.162-11.094 4.508-15.228s8.246-6.977 13.95-7.578c4.613-.484 9.016.574 12.694 2.76l1.963-3.776C33.07.788 27.825-.435 22.38.138 15.522.86 9.588 4.305 5.57 9.27l-.007.01A24.94 24.94 0 0 0 .139 27.617c.723 6.86 4.164 12.796 9.135 16.815 1.582 1.282 3.335 2.346 5.194 3.212l1.96-3.774c-1.603-.73-3.114-1.643-4.478-2.747"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/HDInsight.svg b/src/main/webapp/img/lib/mscae/HDInsight.svg index 80d70edea2f37bccbfe5ffaf3d0e6bbebbb2ae06..8789cee4b8910d85ba7d9479c84e645e855195e3 100644 --- a/src/main/webapp/img/lib/mscae/HDInsight.svg +++ b/src/main/webapp/img/lib/mscae/HDInsight.svg @@ -1,87 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50.200001" - height="38.77597" - viewBox="0 0 50.200001 38.77597" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure HDInsight_COLOR.svg"><metadata - id="metadata27"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs25" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview23" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="14.656481" - inkscape:cx="16.072365" - inkscape:cy="21.245451" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><polygon - points="7.9,17.7 5.3,20.8 3.9,22.3 2.5,22.8 2.1,21.9 2.8,21 2.9,19.7 3.4,19.7 3.8,20.1 3.7,18.8 3.2,18.4 3.2,17.9 2,18.6 0.8,19.9 0.6,21.1 1.1,22.1 1.5,23.7 2.4,24.1 3.4,24.1 4.3,23.5 3.7,26.6 4.3,30 3.6,31.6 1.5,33.9 1.8,35.4 2.9,37 4.8,38.3 5.9,38.5 7,38.5 6.3,41.5 8.9,42.6 12.2,43 13.3,42.2 13.4,40.3 14.7,38.2 14.8,36.5 17.8,36.8 20.6,36.5 17.8,38.2 18.3,40.2 20,43 21.8,43.7 23.1,43.2 23.7,42 26.6,39.8 27.2,40.3 31.7,40.5 32.6,39.7 32.7,38.4 32.4,37.9 32.2,34.4 30.7,31.4 30.9,30 31.8,30.5 34.4,32.9 35.6,33 37,32.4 38.4,31.4 39.1,29.1 43.1,29.4 45.6,28.4 47.6,26.6 49,23.9 49.4,20.7 49.1,17.1 48.3,13.8 47.5,12.7 46.4,12.4 44.5,14.5 42.8,15.1 41.3,12.6 39.8,11.2 38.9,10.7 35.7,7.9 33,6.5 30.4,6.3 27.3,6.8 24.6,7.8 22.8,9.3 21.3,11.1 19.8,11.5 17.2,14 13.7,14.6 10.6,16 " - id="polygon3" - style="clip-rule:evenodd;fill:#fcd116;fill-rule:evenodd" - transform="translate(0,-5.4873818)" /><polygon - points="3.9,20.7 3.7,20.8 4.1,21.3 4.2,20.7 " - id="polygon5" - style="fill:#1e1e1e" - transform="translate(0,-5.4873818)" /><path - d="M 49.7,11.412618 C 49.5,9.9126182 49.1,8.4126182 48.5,7.4126182 48.4,7.3126182 48.3,7.1126182 48.2,7.0126182 47.9,6.7126182 47.5,6.5126182 47.1,6.3126182 46.7,6.1126182 46.2,6.1126182 45.8,6.3126182 45.7,6.4126182 45.6,6.4126182 45.5,6.5126182 45.3,6.7126182 45.1,7.0126182 44.9,7.3126182 44.7,7.6126182 44.4,8.0126182 44.2,8.2126182 43.9,8.5126182 43.5,8.6126182 43.1,8.8126182 42.9,8.4126182 42.8,8.0126182 42.5,7.7126182 42.2,7.3126182 42,6.9126182 41.6,6.5126182 41.3,6.2126182 41.1,6.0126182 40.8,5.7126182 40.5,5.5126182 40.2,5.3126182 39.9,5.1126182 39,4.5126182 38.3,3.9126182 37.5,3.2126182 37.2,2.9126182 36.8,2.6126182 36.5,2.3126182 34.7,0.81261822 33,0.11261822 31.2,0.01261822 29.4,-0.08738178 27.5,0.41261822 25.2,1.3126182 24.1,1.8126182 23.3,2.3126182 22.6,2.9126182 21.9,3.5126182 21.4,4.2126182 20.7,5.1126182 20.3,5.1126182 20,5.2126182 19.7,5.3126182 19.3,5.4126182 19,5.7126182 18.5,6.1126182 18.2,6.4126182 17.9,6.7126182 17.6,6.9126182 L 17.6,6.9126182 C 17.3,7.2126182 17.1,7.4126182 16.8,7.7126182 14.7,8.0126182 13.1,8.4126182 11.6,9.0126182 10.1,9.6126182 8.7,10.412618 7.3,11.612618 6.7,12.112618 6.2,12.612618 5.8,13.212618 5.4,13.812618 5,14.312618 4.7,14.912618 4.4,15.212618 4.1,15.512618 3.8,15.812618 3.5,16.112618 3.2,16.312618 2.8,16.412618 L 2.8,16.412618 C 2.6,16.512618 2.5,16.512618 2.5,16.512618 2.5,16.512618 2.5,16.412618 2.5,16.412618 3,15.912618 3.1,15.212618 3.1,14.512618 3.2,14.612618 3.2,14.712618 3.3,14.812618 3.4,14.912618 3.4,15.012618 3.5,15.112618 L 3.7,14.912618 4,15.012618 C 4.1,14.512618 4.2,14.012618 4.1,13.412618 4,13.112618 3.9,12.812618 3.6,12.612618 3.6,12.512618 3.7,12.512618 3.7,12.412618 3.8,12.212618 3.9,12.012618 3.9,11.712618 L 3.7,11.612618 3.7,11.612618 3.9,11.712618 4.2,11.512618 3.8,11.612618 C 3.2,11.712618 2,12.412618 1.1,13.312618 0.8,13.612618 0.5,14.012618 0.3,14.412618 0,14.912618 0,15.312618 0,15.712618 0.1,16.112618 0.3,16.412618 0.6,16.812618 0.7,17.112618 0.7,17.312618 0.8,17.512618 0.9,17.712618 1,17.912618 1,18.112618 1.3,18.612618 1.7,19.012618 2.1,19.112618 2.5,19.212618 2.9,19.212618 3.3,19.112618 3.2,19.612618 3.2,20.112618 3.1,20.612618 3.1,21.312618 3.1,22.112618 3.2,23.012618 3.2,23.212618 3.2,23.412618 3.3,23.612618 3.3,23.812618 3.4,24.012618 3.4,24.212618 3.3,24.412618 3.2,24.612618 3.2,24.812618 3.1,25.112618 3,25.512618 2.8,25.812618 2.5,26.112618 2.3,26.312618 2,26.612618 1.8,26.812618 1.5,27.112618 1.3,27.312618 1.3,27.312618 1.2,27.412618 1.1,27.512618 0.6,28.012618 0.5,28.112618 0.6,28.912618 0.7,29.412618 0.9,29.912618 1.1,30.512618 1.3,31.012618 1.7,31.412618 2.1,31.912618 2.8,32.512618 3.7,33.112618 4.6,33.512618 5.1,33.712618 5.7,33.812618 6.2,33.712618 6.2,33.812618 6.2,33.912618 6.1,33.912618 6,34.112618 5.9,34.312618 5.8,34.612618 5.2,36.012618 5.8,36.712618 6.8,37.112618 7.3,37.312618 7.9,37.512618 8.4,37.612618 8.5,37.612618 8.6,37.712618 8.8,37.712618 9.4,37.912618 10.6,38.212618 11.6,38.312618 12.7,38.412618 13.7,38.112618 14,37.112618 14.1,36.712618 14.2,36.412618 14.2,36.112618 14.2,35.812618 14.2,35.512618 14.2,35.212618 14.5,34.512618 14.7,34.312618 14.9,34.012618 14.9,33.912618 15,33.912618 15,33.812618 15.2,33.412618 15.4,33.212618 15.4,32.912618 15.4,32.612618 15.4,32.312618 15.4,31.912618 15.4,31.912618 15.4,31.812618 15.4,31.712618 16,31.812618 16.7,31.812618 17.3,31.812618 17.6,31.812618 17.9,31.812618 18.3,31.812618 18.2,31.812618 18.1,31.912618 18,31.912618 18,31.912618 17.9,31.912618 17.9,32.012618 17,32.412618 17,33.312618 17.3,34.112618 17.5,34.912618 18,35.712618 18.4,36.112618 19.1,37.112618 19.7,38.012618 20.4,38.412618 21.2,38.912618 22.1,38.912618 23.3,38.312618 23.9,38.012618 24.1,37.612618 24.3,37.212618 24.4,37.112618 24.5,36.912618 24.6,36.812618 24.8,36.612618 25.4,36.112618 26.1,35.612618 26.3,35.412618 26.5,35.312618 26.8,35.112618 27,35.212618 27.1,35.312618 27.4,35.412618 27.7,35.512618 28.1,35.512618 28.5,35.512618 28.8,35.512618 29.9,35.512618 30.6,35.512618 30.8,35.512618 31,35.512618 31.1,35.512618 31.8,35.512618 32.4,35.512618 32.8,35.212618 33.3,34.912618 33.5,34.512618 33.6,33.712618 33.6,33.312618 33.6,33.112618 33.6,32.912618 33.6,32.712618 33.5,32.512618 33.3,32.212618 33.3,31.812618 33.3,31.512618 33.3,31.112618 33.3,30.712618 33.3,30.312618 33.3,30.012618 33.3,29.612618 33.2,29.212618 33.1,28.812618 33,28.412618 32.9,28.112618 32.7,27.712618 32.6,27.412618 32.5,27.212618 32.4,26.912618 L 32.2,27.012618 32.2,27.012618 32.4,26.912618 32.4,26.912618 C 32.3,26.512618 32.1,26.112618 31.9,25.712618 31.9,25.612618 31.9,25.512618 31.9,25.412618 32,25.512618 32.2,25.712618 32.3,25.812618 L 32.9,26.412618 C 33.3,26.812618 33.7,27.212618 34.2,27.512618 34.7,27.812618 35.2,28.012618 35.9,27.912618 36.6,27.912618 37.4,27.612618 38.1,27.112618 38.7,26.612618 39.2,26.012618 39.5,25.312618 39.6,25.112618 39.6,24.912618 39.7,24.712618 39.7,24.512618 39.8,24.412618 39.8,24.212618 40.8,24.412618 42,24.412618 43,24.312618 44,24.212618 45.1,23.912618 45.9,23.512618 47.2,22.812618 48.1,21.812618 48.8,20.612618 L 48.8,20.612618 C 49.6,19.312618 50,17.712618 50.2,16.112618 50.1,14.912618 50,13.112618 49.7,11.412618 Z M 34.7,23.512618 C 34.4,24.512618 33.9,26.212618 35.3,26.512618 35.8,26.612618 36.1,26.612618 36.8,26.212618 36.2,26.312618 35.9,26.312618 35.5,26.212618 35.1,26.112618 34.9,25.912618 34.8,25.612618 34.9,25.712618 35.1,25.712618 35.5,25.812618 36.5,26.012618 37.5,25.612618 37.7,24.812618 37.8,24.412618 37.8,24.212618 38,23.612618 38.2,23.712618 38.4,23.712618 38.7,23.812618 38.6,24.212618 38.4,24.612618 38.3,25.112618 38,26.212618 36.7,27.112618 35.5,27.012618 34.4,27.012618 33.8,26.312618 33,25.712618 32.5,25.312618 32,24.812618 31.5,24.412618 30.2,24.012618 29.1,23.512618 27.9,22.612618 28.8,23.612618 29.4,24.212618 30.6,24.712618 30.4,26.512618 29.8,27.812618 29.3,29.512618 29.1,30.312618 27.2,33.412618 26.6,33.712618 26.2,33.912618 23.9,35.912618 23.4,36.212618 23.1,36.612618 22.8,37.212618 22.3,37.512618 20.8,38.312618 19.8,36.812618 19,35.512618 18.6,34.912618 17.6,33.212618 18.5,32.712618 19.3,32.312618 19.8,31.912618 20.7,31.412618 20.8,31.612618 21,31.912618 21.2,32.112618 21.2,31.812618 21.1,31.612618 21.1,31.312618 21,30.812618 21,30.512618 21.1,30.012618 21.1,29.612618 21.2,29.112618 21.2,28.712618 21.1,29.212618 20.8,29.612618 20.7,30.112618 20.6,30.312618 20.6,30.412618 20.6,30.612618 18.7,31.012618 16.7,31.012618 14.8,30.712618 14.7,30.012618 14.5,29.212618 14.4,28.712618 14.4,29.312618 14.4,31.012618 14.4,31.912618 14.4,32.612618 14.4,32.912618 14,33.512618 13.7,34.112618 13.5,34.212618 13,35.212618 13,35.812618 13,36.212618 12.9,36.812618 12.6,37.812618 9.9,37.012618 9.2,36.812618 8.3,36.612618 6.5,36.212618 6.9,35.012618 7.3,34.012618 7.6,32.912618 7.8,31.412618 6.2,29.112618 4.7,25.912618 4.4,23.012618 4.2,20.812618 4.3,19.412618 4.8,18.112618 5.6,16.012618 6.6,14.112618 8.3,12.612618 10.6,10.612618 12.7,9.8126182 16.1,9.3126182 15.3,10.212618 14.5,11.212618 13.6,12.212618 12.7,13.212618 12.2,14.312618 11.6,15.412618 10.8,17.012618 10.8,17.612618 11.9,18.912618 12.8,20.112618 13.3,20.612618 13.6,21.812618 13.3,22.512618 13.2,23.012618 13.1,23.912618 14.2,25.112618 15,25.912618 16,26.112618 17,26.312618 17.9,26.312618 18.8,25.812618 20.8,24.812618 22.7,23.412618 25,23.312618 26.1,20.712618 26,18.512618 25.4,15.912618 25.1,14.212618 24.9,12.512618 24.8,10.812618 24.4,12.612618 24.3,14.212618 24.6,16.012618 25,18.212618 25.3,20.612618 24.2,22.512618 22.1,22.712618 20.3,23.912618 18.4,24.912618 17.6,25.312618 16.9,25.312618 16,25.112618 15.4,25.012618 14.9,24.512618 14,23.512618 14,22.512618 14.2,22.112618 14.6,21.212618 15.3,19.812618 16.1,18.512618 17,17.112618 16,18.412618 15,19.512618 14.2,20.712618 13.9,19.812618 13.4,19.312618 12.7,18.312618 12,17.312618 11.9,16.912618 12.4,15.712618 13,14.512618 13.4,13.512618 14.4,12.512618 16,10.712618 17.5,8.8126182 19.3,7.0126182 20.3,6.1126182 20.7,6.1126182 21.9,5.9126182 23.1,5.7126182 24.2,5.5126182 25.4,5.2126182 24.2,5.4126182 23.1,5.5126182 22,5.5126182 22,5.5126182 22,5.5126182 22,5.5126182 23.1,4.1126182 23.7,3.3126182 25.5,2.5126182 29.9,0.61261822 32.7,0.41261822 36.1,3.3126182 37,4.1126182 37.8,4.8126182 38.7,5.4126182 38.4,5.4126182 38.1,5.5126182 37.7,5.6126182 38.2,5.5126182 38.7,5.6126182 39.2,5.7126182 39.3,5.8126182 39.5,5.9126182 39.6,6.0126182 40.2,6.4126182 40.6,6.6126182 41,7.2126182 41.5,7.8126182 41.8,8.5126182 42.2,9.2126182 42,9.1126182 41.8,9.1126182 41.6,9.0126182 41.5,8.9126182 41.3,8.9126182 41.2,8.9126182 40.9,8.9126182 40.7,8.9126182 40.4,9.1126182 40.4,9.1126182 40.4,9.1126182 40.4,9.1126182 40,9.3126182 39.5,9.5126182 39.1,9.5126182 39.3,9.6126182 39.7,9.6126182 39.9,9.5126182 39.9,9.5126182 40,9.5126182 40,9.5126182 39.9,9.6126182 39.9,9.8126182 39.8,10.012618 39.8,10.212618 39.8,10.512618 39.9,10.712618 39.9,10.712618 39.9,10.712618 39.9,10.712618 39.9,10.812618 40,10.812618 40,10.912618 39.8,11.012618 39.7,11.012618 39.5,11.112618 40.3,11.012618 41.1,11.012618 41.9,11.112618 42,11.412618 42,11.612618 42.1,11.912618 42,11.912618 41.9,11.912618 41.8,11.912618 41.8,11.912618 41.8,11.912618 41.8,11.912618 41.4,11.612618 41,11.612618 40.4,11.812618 38.7,12.212618 39.1,13.212618 38.3,14.712618 39.1,13.712618 39.1,12.612618 40.4,12.312618 40.7,12.212618 40.9,12.112618 41.1,12.212618 40.7,12.412618 40.4,12.712618 40.2,13.112618 39.8,14.212618 40.1,15.012618 39.6,16.012618 40.1,15.112618 40.1,14.312618 40.6,13.312618 40.8,13.012618 41.4,12.412618 41.7,12.412618 41.8,12.412618 41.9,12.412618 42,12.412618 42.1,13.012618 42.1,13.612618 42.1,14.012618 42,14.912618 41.8,16.212618 41.7,16.712618 42.2,16.112618 42.4,14.912618 42.6,14.012618 42.8,13.112618 42.8,12.012618 42.6,11.012618 42.3,9.6126182 43.7,9.9126182 44.5,9.2126182 45.1,8.7126182 45.5,8.0126182 46,7.5126182 46.5,7.0126182 47.4,7.7126182 47.6,8.3126182 48.5,10.512618 48.9,14.012618 48.7,16.312618 48.4,18.812618 47.2,21.612618 45,22.812618 42.2,24.412618 38.8,23.412618 36,22.512618 35.4,22.312618 35,22.012618 34.5,21.712618 34.8,22.212618 34.9,22.912618 34.7,23.512618 Z M 32.2,33.612618 C 32.1,34.612618 31.8,34.712618 30.8,34.712618 30.4,34.712618 28.7,34.712618 28.3,34.612618 27.7,34.512618 27.4,34.512618 27.2,34.412618 28.1,33.712618 29.7,30.912618 30,29.912618 30.3,28.912618 30.7,28.012618 30.9,27.012618 31,27.412618 31.1,27.812618 31.3,28.212618 31.6,28.912618 31.7,29.312618 31.8,30.112618 31.8,30.912618 31.8,31.712618 31.9,32.512618 32.2,33.012618 32.2,33.112618 32.2,33.612618 Z M 3,12.812618 C 2.8,13.112618 2.7,13.412618 2.7,13.612618 2.4,14.712618 2.8,15.712618 1.8,16.512618 2.3,17.412618 2.2,17.812618 3.3,17.412618 3.7,17.212618 4.1,17.012618 4.4,16.712618 4.3,17.112618 4.1,17.512618 4,17.912618 4,18.012618 4,18.012618 3.9,18.112618 3.1,18.412618 2.1,18.612618 1.7,17.812618 1.5,17.412618 1.4,17.012618 1.3,16.512618 0,15.212618 1.9,13.412618 3,12.812618 Z M 3.1,14.012618 C 3.1,13.912618 3.1,13.712618 3.2,13.612618 3.2,13.512618 3.2,13.512618 3.3,13.412618 3.6,13.612618 3.6,13.812618 3.7,14.212618 3.5,14.012618 3.3,13.912618 3.1,14.012618 Z M 4.1,25.712618 C 4.7,27.712618 5.7,29.812618 6.8,31.512618 6.8,31.512618 6.8,31.512618 6.8,31.512618 6.7,31.812618 6.6,32.112618 6.5,32.312618 5.7,33.412618 3.7,31.812618 3.1,31.212618 2.4,30.512618 2,29.712618 1.9,29.012618 1.8,28.512618 1.9,28.512618 2.3,28.112618 2.8,27.612618 3.3,27.112618 3.8,26.612618 3.9,26.312618 4,26.012618 4.1,25.712618 Z M 42.2,9.2126182 C 42.2,9.3126182 42.3,9.4126182 42.3,9.5126182 42.3,9.5126182 42.2,9.6126182 42.2,9.6126182 42.1,9.5126182 42,9.3126182 41.9,9.2126182 42,9.2126182 42.1,9.2126182 42.2,9.2126182 Z M 5,15.312618 5,15.312618 5,15.312618 5,15.312618 5,15.312618 Z M 3.4,12.912618 3.4,12.912618 3.4,12.912618 3.4,12.912618 3.4,12.912618 Z M 0.9,16.712618 0.9,16.712618 0.9,16.712618 0.9,16.712618 0.9,16.712618 Z M 14.9,31.412618 14.9,31.412618 14.9,31.412618 14.9,31.412618 14.9,31.412618 Z M 39.3,24.012618 39.3,24.012618 39.3,24.012618 39.3,24.012618 39.3,24.012618 39.3,24.012618 39.3,24.012618 Z M 48.3,20.612618 48.3,20.612618 48.3,20.612618 48.3,20.612618 48.3,20.612618 Z" - id="path7" - inkscape:connector-curvature="0" - style="fill:#1e1e1e" /><path - d="M 44.7,10.412618 C 46.1,9.9126182 46.8,8.8126182 47.1,7.4126182 46.5,8.5126182 45.7,9.5126182 44.5,10.012618 43.9,10.312618 43.5,10.212618 42.8,10.112618 43.5,10.412618 44,10.612618 44.7,10.412618 Z" - id="path9" - inkscape:connector-curvature="0" - style="fill:#1e1e1e" /><path - d="M 36.7,11.812618 C 36.3,11.812618 35.8,11.912618 35.2,12.012618 35.2,11.812618 35.1,11.712618 35.1,11.512618 34.9,11.112618 34.6,10.812618 34.2,10.712618 34.5,10.512618 34.9,10.312618 35.2,10.112618 34.4,10.512618 33.5,10.412618 32.8,10.812618 32.2,11.212618 31.4,12.512618 30.8,13.012618 31.2,12.812618 31.6,12.512618 32,12.212618 32,12.412618 32.1,12.712618 32.2,12.912618 32.4,13.212618 32.6,13.512618 32.9,13.612618 32.7,13.912618 32.5,14.212618 32.4,14.612618 33.5,13.312618 35.1,12.212618 36.7,11.812618 Z" - id="path11" - inkscape:connector-curvature="0" - style="fill:#1e1e1e" /><path - d="M 29.5,10.312618 C 29.8,9.1126182 30.2,8.0126182 32,7.2126182 29.6,7.8126182 29.2,8.8126182 29.5,10.312618 Z" - id="path13" - inkscape:connector-curvature="0" - style="fill:#1e1e1e" /><path - d="M 33.4,21.712618 C 33.3,22.012618 33.3,22.512618 33.2,22.812618 33.3,22.412618 33.5,21.912618 33.7,21.612618 33.9,21.212618 34,21.212618 34.4,21.012618 34.7,20.912618 35.2,20.612618 35.4,20.512618 35.1,20.512618 34.6,20.712618 34.3,20.712618 33.6,20.812618 33.5,21.012618 33.4,21.712618 Z" - id="path15" - inkscape:connector-curvature="0" - style="fill:#1e1e1e" /><path - d="M 20.6,8.2126182 C 19.7,9.1126182 18.9,12.012618 18.6,13.212618 19,12.212618 20.1,9.5126182 20.9,8.8126182 21.1,8.6126182 21.3,8.5126182 21.5,8.4126182 20.9,9.4126182 21,9.6126182 21.2,10.912618 21.4,9.6126182 21.8,9.0126182 22.6,8.0126182 23.4,7.8126182 24.2,7.5126182 25.1,7.2126182 24.1,7.3126182 23.2,7.4126182 22.2,7.5126182 21.3,7.7126182 21.1,7.7126182 20.6,8.2126182 Z" - id="path17" - inkscape:connector-curvature="0" - style="fill:#1e1e1e" /><path - d="M 32.5,13.312618 C 32.3,13.012618 32.5,12.612618 32.8,12.412618 33.1,12.212618 33.5,12.412618 33.7,12.712618 33.7,12.712618 33.7,12.812618 33.7,12.812618 33.4,13.012618 33.1,13.312618 32.8,13.612618 32.7,13.612618 32.5,13.512618 32.5,13.312618" - id="path19" - inkscape:connector-curvature="0" - style="clip-rule:evenodd;fill:#fffacb;fill-rule:evenodd" /><path - d="M 39.9,10.412618 C 39.9,10.112618 40.2,9.9126182 40.4,9.9126182 40.7,9.9126182 40.9,10.212618 40.9,10.412618 40.9,10.512618 40.9,10.512618 40.9,10.612618 40.6,10.612618 40.4,10.712618 40.1,10.812618 40,10.812618 39.9,10.612618 39.9,10.412618" - id="path21" - inkscape:connector-curvature="0" - style="clip-rule:evenodd;fill:#fffacb;fill-rule:evenodd" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50.2" height="38.776"><path d="M7.9 12.213l-2.6 3.1-1.4 1.5-1.4.5-.4-.9.7-.9.1-1.3h.5l.4.4-.1-1.3-.5-.4v-.5l-1.2.7-1.2 1.3-.2 1.2.5 1 .4 1.6.9.4h1l.9-.6-.6 3.1.6 3.4-.7 1.6-2.1 2.3.3 1.5 1.1 1.6 1.9 1.3 1.1.2H7l-.7 3 2.6 1.1 3.3.4 1.1-.8.1-1.9 1.3-2.1.1-1.7 3 .3 2.8-.3-2.8 1.7.5 2 1.7 2.8 1.8.7 1.3-.5.6-1.2 2.9-2.2.6.5 4.5.2.9-.8.1-1.3-.3-.5-.2-3.5-1.5-3 .2-1.4.9.5 2.6 2.4 1.2.1 1.4-.6 1.4-1 .7-2.3 4 .3 2.5-1 2-1.8 1.4-2.7.4-3.2-.3-3.6-.8-3.3-.8-1.1-1.1-.3-1.9 2.1-1.7.6-1.5-2.5-1.5-1.4-.9-.5-3.2-2.8-2.7-1.4-2.6-.2-3.1.5-2.7 1-1.8 1.5-1.5 1.8-1.5.4-2.6 2.5-3.5.6-3.1 1.4z" fill="#fcd116" fill-rule="evenodd"/><g fill="#1e1e1e"><path d="M3.9 15.213l-.2.1.4.5.1-.6z"/><path d="M49.7 11.413c-.2-1.5-.6-3-1.2-4-.1-.1-.2-.3-.3-.4-.3-.3-.7-.5-1.1-.7s-.9-.2-1.3 0c-.1.1-.2.1-.3.2-.2.2-.4.5-.6.8s-.5.7-.7.9c-.3.3-.7.4-1.1.6-.2-.4-.3-.8-.6-1.1-.3-.4-.5-.8-.9-1.2l-.8-.8-.9-.6c-.9-.6-1.6-1.2-2.4-1.9-.3-.3-.7-.6-1-.9-1.8-1.5-3.5-2.2-5.3-2.3s-3.7.4-6 1.3c-1.1.5-1.9 1-2.6 1.6s-1.2 1.3-1.9 2.2c-.4 0-.7.1-1 .2-.4.1-.7.4-1.2.8-.3.3-.6.6-.9.8l-.8.8c-2.1.3-3.7.7-5.2 1.3a14.98 14.98 0 0 0-4.3 2.6c-.6.5-1.1 1-1.5 1.6s-.8 1.1-1.1 1.7l-.9.9c-.3.3-.6.5-1 .6-.2.1-.3.1-.3.1v-.1c.5-.5.6-1.2.6-1.9.1.1.1.2.2.3s.1.2.2.3l.2-.2.3.1c.1-.5.2-1 .1-1.6-.1-.3-.2-.6-.5-.8 0-.1.1-.1.1-.2.1-.2.2-.4.2-.7l-.2-.1.2.1.3-.2-.4.1c-.6.1-1.8.8-2.7 1.7a4.44 4.44 0 0 0-.8 1.1c-.3.5-.3.9-.3 1.3.1.4.3.7.6 1.1.1.3.1.5.2.7s.2.4.2.6c.3.5.7.9 1.1 1s.8.1 1.2 0c-.1.5-.1 1-.2 1.5l.1 2.4c0 .2 0 .4.1.6 0 .2.1.4.1.6-.1.2-.2.4-.2.6-.1.3-.2.7-.4 1l-1.7 1.7c-.5.5-.6.6-.5 1.4.1.5.3 1 .5 1.6.2.5.6.9 1 1.4a10.68 10.68 0 0 0 2.5 1.6c.5.2 1.1.3 1.6.2 0 .1 0 .2-.1.2-.1.2-.2.4-.3.7-.6 1.4 0 2.1 1 2.5a9.83 9.83 0 0 0 1.6.5c.1 0 .2.1.4.1.6.2 1.8.5 2.8.6 1.1.1 2.1-.2 2.4-1.2.1-.4.2-.7.2-1v-.9c.3-.7.5-.9.7-1.2 0-.1.1-.1.1-.2.2-.4.4-.6.4-.9v-1.2c.6.1 1.3.1 1.9.1h1c-.1 0-.2.1-.3.1 0 0-.1 0-.1.1-.9.4-.9 1.3-.6 2.1.2.8.7 1.6 1.1 2 .7 1 1.3 1.9 2 2.3.8.5 1.7.5 2.9-.1.6-.3.8-.7 1-1.1.1-.1.2-.3.3-.4.2-.2.8-.7 1.5-1.2.2-.2.4-.3.7-.5.2.1.3.2.6.3s.7.1 1.1.1h2.6c.7 0 1.3 0 1.7-.3.5-.3.7-.7.8-1.5v-.8c0-.2-.1-.4-.3-.7v-2.2c0-.4-.1-.8-.2-1.2s-.2-.7-.4-1.1l-.3-.8-.2.1.2-.1c-.1-.4-.3-.8-.5-1.2v-.3l1 1c.4.4.8.8 1.3 1.1s1 .5 1.7.4c.7 0 1.5-.3 2.2-.8.6-.5 1.1-1.1 1.4-1.8.1-.2.1-.4.2-.6 0-.2.1-.3.1-.5 1 .2 2.2.2 3.2.1s2.1-.4 2.9-.8c1.3-.7 2.2-1.7 2.9-2.9.8-1.3 1.2-2.9 1.4-4.5l-.5-4.7zm-15 12.1c-.3 1-.8 2.7.6 3 .5.1.8.1 1.5-.3-.6.1-.9.1-1.3 0s-.6-.3-.7-.6c.1.1.3.1.7.2 1 .2 2-.2 2.2-1 .1-.4.1-.6.3-1.2.2.1.4.1.7.2-.1.4-.3.8-.4 1.3-.3 1.1-1.6 2-2.8 1.9-1.1 0-1.7-.7-2.5-1.3l-1.5-1.3c-1.3-.4-2.4-.9-3.6-1.8.9 1 1.5 1.6 2.7 2.1-.2 1.8-.8 3.1-1.3 4.8-.2.8-2.1 3.9-2.7 4.2-.4.2-2.7 2.2-3.2 2.5-.3.4-.6 1-1.1 1.3-1.5.8-2.5-.7-3.3-2-.4-.6-1.4-2.3-.5-2.8.8-.4 1.3-.8 2.2-1.3a3.04 3.04 0 0 0 .5.7c0-.3-.1-.5-.1-.8a2.85 2.85 0 0 1 0-1.3c0-.4.1-.9.1-1.3-.1.5-.4.9-.5 1.4-.1.2-.1.3-.1.5-1.9.4-3.9.4-5.8.1-.1-.7-.3-1.5-.4-2v3.2c0 .7 0 1-.4 1.6-.3.6-.5.7-1 1.7 0 .6 0 1-.1 1.6-.3 1-3 .2-3.7 0-.9-.2-2.7-.6-2.3-1.8.4-1 .7-2.1.9-3.6-1.6-2.3-3.1-5.5-3.4-8.4-.2-2.2-.1-3.6.4-4.9.8-2.1 1.8-4 3.5-5.5 2.3-2 4.4-2.8 7.8-3.3l-2.5 2.9c-.9 1-1.4 2.1-2 3.2-.8 1.6-.8 2.2.3 3.5.9 1.2 1.4 1.7 1.7 2.9-.3.7-.4 1.2-.5 2.1 1.1 1.2 1.9 2 2.9 2.2s1.9.2 2.8-.3c2-1 3.9-2.4 6.2-2.5 1.1-2.6 1-4.8.4-7.4a44.29 44.29 0 0 1-.6-5.1c-.4 1.8-.5 3.4-.2 5.2.4 2.2.7 4.6-.4 6.5-2.1.2-3.9 1.4-5.8 2.4-.8.4-1.5.4-2.4.2-.6-.1-1.1-.6-2-1.6 0-1 .2-1.4.6-2.3.7-1.4 1.5-2.7 2.4-4.1l-2.8 3.6c-.3-.9-.8-1.4-1.5-2.4s-.8-1.4-.3-2.6c.6-1.2 1-2.2 2-3.2l4.9-5.5c1-.9 1.4-.9 2.6-1.1l3.5-.7c-1.2.2-2.3.3-3.4.3 1.1-1.4 1.7-2.2 3.5-3 4.4-1.9 7.2-2.1 10.6.8.9.8 1.7 1.5 2.6 2.1-.3 0-.6.1-1 .2.5-.1 1 0 1.5.1.1.1.3.2.4.3.6.4 1 .6 1.4 1.2.5.6.8 1.3 1.2 2-.2-.1-.4-.1-.6-.2-.1-.1-.3-.1-.4-.1-.3 0-.5 0-.8.2-.4.2-.9.4-1.3.4.2.1.6.1.8 0h.1c-.1.1-.1.3-.2.5 0 .2 0 .5.1.7 0 .1.1.1.1.2-.2.1-.3.1-.5.2.8-.1 1.6-.1 2.4 0 .1.3.1.5.2.8h-.3c-.4-.3-.8-.3-1.4-.1-1.7.4-1.3 1.4-2.1 2.9.8-1 .8-2.1 2.1-2.4.3-.1.5-.2.7-.1a1.96 1.96 0 0 0-.9.9c-.4 1.1-.1 1.9-.6 2.9.5-.9.5-1.7 1-2.7.2-.3.8-.9 1.1-.9h.3c.1.6.1 1.2.1 1.6-.1.9-.3 2.2-.4 2.7.5-.6.7-1.8.9-2.7s.2-2 0-3c-.3-1.4 1.1-1.1 1.9-1.8.6-.5 1-1.2 1.5-1.7s1.4.2 1.6.8c.9 2.2 1.3 5.7 1.1 8-.3 2.5-1.5 5.3-3.7 6.5-2.8 1.6-6.2.6-9-.3-.6-.2-1-.5-1.5-.8a2.25 2.25 0 0 1 .2 1.8zm-2.5 10.1c-.1 1-.4 1.1-1.4 1.1-.4 0-2.1 0-2.5-.1-.6-.1-.9-.1-1.1-.2.9-.7 2.5-3.5 2.8-4.5s.7-1.9.9-2.9c.1.4.2.8.4 1.2.3.7.4 1.1.5 1.9 0 .8 0 1.6.1 2.4.3.5.3.6.3 1.1zM3 12.813c-.2.3-.3.6-.3.8-.3 1.1.1 2.1-.9 2.9.5.9.4 1.3 1.5.9.4-.2.8-.4 1.1-.7-.1.4-.3.8-.4 1.2 0 .1 0 .1-.1.2-.8.3-1.8.5-2.2-.3-.2-.4-.3-.8-.4-1.3-1.3-1.3.6-3.1 1.7-3.7zm.1 1.2c0-.1 0-.3.1-.4 0-.1 0-.1.1-.2.3.2.3.4.4.8-.2-.2-.4-.3-.6-.2zm1 11.7c.6 2 1.6 4.1 2.7 5.8-.1.3-.2.6-.3.8-.8 1.1-2.8-.5-3.4-1.1-.7-.7-1.1-1.5-1.2-2.2-.1-.5 0-.5.4-.9l1.5-1.5.3-.9zm38.1-16.5c0 .1.1.2.1.3l-.1.1c-.1-.1-.2-.3-.3-.4h.3zM5 15.313zm-1.6-2.4zm-2.5 3.8zm14 14.7zm24.4-7.4zm9-3.4z"/><path d="M44.7 10.413c1.4-.5 2.1-1.6 2.4-3-.6 1.1-1.4 2.1-2.6 2.6-.6.3-1 .2-1.7.1.7.3 1.2.5 1.9.3zm-8 1.4c-.4 0-.9.1-1.5.2 0-.2-.1-.3-.1-.5-.2-.4-.5-.7-.9-.8l1-.6c-.8.4-1.7.3-2.4.7-.6.4-1.4 1.7-2 2.2.4-.2.8-.5 1.2-.8 0 .2.1.5.2.7.2.3.4.6.7.7-.2.3-.4.6-.5 1 1.1-1.3 2.7-2.4 4.3-2.8zm-7.2-1.5c.3-1.2.7-2.3 2.5-3.1-2.4.6-2.8 1.6-2.5 3.1zm3.9 11.4c-.1.3-.1.8-.2 1.1.1-.4.3-.9.5-1.2.2-.4.3-.4.7-.6.3-.1.8-.4 1-.5-.3 0-.8.2-1.1.2-.7.1-.8.3-.9 1zm-12.8-13.5c-.9.9-1.7 3.8-2 5 .4-1 1.5-3.7 2.3-4.4.2-.2.4-.3.6-.4-.6 1-.5 1.2-.3 2.5.2-1.3.6-1.9 1.4-2.9.8-.2 1.6-.5 2.5-.8l-2.9.3c-.9.2-1.1.2-1.6.7z"/></g><path d="M32.5 13.313c-.2-.3 0-.7.3-.9s.7 0 .9.3v.1c-.3.2-.6.5-.9.8-.1 0-.3-.1-.3-.3m7.4-2.9c0-.3.3-.5.5-.5.3 0 .5.3.5.5v.2c-.3 0-.5.1-.8.2-.1 0-.2-.2-.2-.4" fill-rule="evenodd" fill="#fffacb"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/HDInsightClusters.svg b/src/main/webapp/img/lib/mscae/HDInsightClusters.svg new file mode 100644 index 0000000000000000000000000000000000000000..06528e1bbe2ceea757257c762c95159c2b7a8359 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/HDInsightClusters.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="43.402" height="42.283" fill="none"><path d="M35.785 14.6c2.777 0 5.316.714 7.617 2.063v-.08l-6.823-11.9h-5.395c0 2.222-.793 4.443-2.3 6.1l2.54 4.364c1.35-.397 2.856-.555 4.364-.555zM7.537 20.307a4.8 4.8 0 0 1 1.507 0l2.3-3.967 3.253-5.712c-1.507-1.666-2.3-3.808-2.3-6.03H6.823L0 16.498l2.936 5.078c1.428-.793 3.015-1.27 4.602-1.27zm10.395-7.065l-4.998 8.728c2.142 1.508 3.65 3.808 3.967 6.427h3.73c.397-4.84 3.094-8.966 6.982-11.425l-2.142-3.73a8.94 8.94 0 0 1-7.537 0zm2.938 19.203h-4.284c-.714 2.3-2.222 4.205-4.284 5.395l2.54 4.443H27.22c-3.253-2.222-5.633-5.713-6.347-9.838z" fill="#59b3d8"/><path d="M24.97 8a4.681 4.681 0 1 0-6.62-6.62 4.681 4.681 0 1 0 6.62 6.62zm11.893 26.305a4.681 4.681 0 1 0-2.151-9.111 4.681 4.681 0 1 0 2.151 9.111zm-26-1.222a4.681 4.681 0 1 0-6.62-6.62 4.681 4.681 0 1 0 6.62 6.62z" fill="#414141"/><use xlink:href="#B" fill="#59b3d8"/><use xlink:href="#B" fill="#8bc9e0"/><use xlink:href="#C" fill="#59b3d8"/><use xlink:href="#C" fill="#8bc9e0"/><use xlink:href="#D" fill="#59b3d8"/><use xlink:href="#D" fill="#8bc9e0"/><defs ><path id="B" d="M31.34 15.228l.793 1.35 2.3 3.967c.476-.08.952-.08 1.428 0 1.666 0 3.253.476 4.68 1.27l2.777-5.157c-2.222-1.27-4.84-2.063-7.617-2.063-1.428 0-2.936.16-4.364.635z"/><path id="C" d="M27.216 42.283h1.2l2.54-4.364c-2.063-1.2-3.57-3.174-4.205-5.475h-5.95c.793 4.126 3.174 7.617 6.427 9.838z"/><path id="D" d="M20.633 28.397h5.792a9.4 9.4 0 0 1 4.046-6.427l-2.936-4.998c-3.808 2.46-6.427 6.585-6.903 11.425z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Hammer.svg b/src/main/webapp/img/lib/mscae/Hammer.svg index f0672cf687ca1d396cfd3fea0f590c7db7ba03d1..24c686b638f300fa0358c3a56cb05f428df79a56 100644 --- a/src/main/webapp/img/lib/mscae/Hammer.svg +++ b/src/main/webapp/img/lib/mscae/Hammer.svg @@ -1,11 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="17 -17 50 50" enable-background="new 17 -17 50 50" xml:space="preserve"> -<path fill="#3999C6" d="M59.78-2.597L24.775,32.408c-0.828,0.828-2.172,0.828-3,0l-4.154-4.154c-0.828-0.828-0.828-2.172,0-3 - L52.626-9.75c0.828-0.828,2.172-0.828,3,0l4.154,4.154C60.608-4.768,60.608-3.425,59.78-2.597z"/> -<rect x="38.629" y="0.943" transform="matrix(0.7071 -0.7071 0.7071 0.7071 8.6522 32.8904)" opacity="0.6" fill="#0072C6" width="10.8" height="10.117"/> -<rect x="34.727" y="-8.938" transform="matrix(0.7071 0.7071 -0.7071 0.7071 14.9421 -34.6789)" fill="#7A7A7A" width="29.211" height="19.271"/> -<polygon fill="#A0A1A2" points="32.191,-2.817 31.635,-7.758 40.877,-17 45.818,-16.444 "/> -<polygon fill="#A0A1A2" points="66.473,4.212 67.03,9.153 57.788,18.395 52.847,17.838 "/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="17 -17 50 50"><path fill="#3999c6" d="M59.78-2.597L24.775 32.408c-.828.828-2.172.828-3 0l-4.154-4.154c-.828-.828-.828-2.172 0-3L52.626-9.75c.828-.828 2.172-.828 3 0l4.154 4.154a2.12 2.12 0 0 1 0 2.999z"/><path opacity=".6" fill="#0072c6" d="M36.634 6.243l7.637-7.637 7.154 7.154-7.637 7.637z"/><path fill="#7a7a7a" d="M45.818-16.443L66.473 4.212 52.846 17.838 32.19-2.817z"/><path d="M32.2-2.817l-.556-4.94L40.877-17l4.94.556zm34.283 7.03l.557 4.94-9.242 9.242-4.94-.557z" fill="#a0a1a2"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Heart.svg b/src/main/webapp/img/lib/mscae/Heart.svg index af978c33a4d0f8d90f3b119609fc534e1006a3d7..46705e2e73e72b2ba26f0463be713f190dcc03f6 100644 --- a/src/main/webapp/img/lib/mscae/Heart.svg +++ b/src/main/webapp/img/lib/mscae/Heart.svg @@ -1,61 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="45.000565" - height="38.306068" - viewBox="0 0 45.000565 38.306068" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Heart.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata3884"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs3882" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview3880" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.020815" - inkscape:cx="12.62041" - inkscape:cy="16.138485" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 41.701114,2.7900673 c -0.8,-0.872 -1.755,-1.513 -2.807,-1.95 -4.855,-2.022 -11.869,0.495 -16.261,6.731 -6.757,-8.151 -14.8349997,-9.681 -19.3309997,-4.781 -8.986,9.7839997 2.267,22.6399997 11.1429997,29.9379997 3.498,2.877 6.627,4.891 8.003,5.514 v 0.064 c 0.012,-0.002 0.038,-0.023 0.047,-0.025 0,0 0.049,0.023 0.066,0.025 v -0.064 c 4.856,-2.202 31.661,-21.81 19.14,-35.4519997" - id="path3875" - inkscape:connector-curvature="0" - style="fill:#ba141a" /> -<path - enable-background="new " - d="m 22.632114,7.5720673 c -6.756,-8.151 -14.8319997,-9.683 -19.3299997,-4.78 -8.986,9.7829997 2.268,22.6379997 11.1429997,29.9369997 l 24.449,-31.8879997 c -4.856,-2.022 -11.869,0.495 -16.262,6.731" - id="path3877" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#ffffff" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="45.001" height="38.306"><path d="M41.7 2.8c-.8-.872-1.755-1.513-2.807-1.95-4.855-2.022-11.87.495-16.26 6.73C15.876-.58 7.798-2.1 3.302 2.8-5.684 12.574 5.57 25.43 14.445 32.728c3.498 2.877 6.627 4.89 8.003 5.514v.064c.012-.002.038-.023.047-.025a.39.39 0 0 0 .066.025v-.064c4.856-2.202 31.66-21.8 19.14-35.452" fill="#ba141a"/><path d="M22.632 7.572C15.876-.58 7.8-2.11 3.302 2.792-5.684 12.575 5.57 25.43 14.445 32.73L38.894.84c-4.856-2.022-11.87.495-16.262 6.73" opacity=".2" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/HeartPulse.svg b/src/main/webapp/img/lib/mscae/HeartPulse.svg index 2c2fadff2a00a90ac9b907fa5cb1febb263bbfff..b3a8a983d7cff91d832ff325a9834ac35f47e71e 100644 --- a/src/main/webapp/img/lib/mscae/HeartPulse.svg +++ b/src/main/webapp/img/lib/mscae/HeartPulse.svg @@ -1,55 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - viewBox="0 0 48.062035 40.83913" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="HeartPulse.svg" - width="48.062035" - height="40.83913" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata3950"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs3948" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview3946" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="24.054189" - inkscape:cy="20.2" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 44.454189,2.9391304 c -4.8,-5.2 -14.6,-2.99999997 -20.4,5.1 -7.2,-8.59999997 -15.8000001,-10.3 -20.7000001,-5.1 -5,5.4 -3.69999999,11.6999996 -0.7,16.8999996 l 5.1,-0.1 4.9000001,-0.2 3.7,-9.7999996 c 0.2,-0.6 0.6,-1.7 2.1,-1.7 1.6,0 1.7,1.2 1.7,1.8 l 0.1,16.2999996 2.6,-5.5 c 0.2,-0.5 0.7,-0.8 1.2,-0.8 h 15.6 c 0.7,0 1.3,0.7 1.3,1.4 0,0.7 -0.6,1.7 -1.3,1.7 h -14 l -5,10 c -0.3,1 -0.8,1.3 -1.9,1.2 v 0 c -0.6,-0.1 -1.1,-1 -1.1,-1.6 l -0.2,-15 -1.5,4.1 c -0.1,0.5 -0.6,1.3 -1.1,1.4 h -4.6 -6.2000001 c 6.1000001,8.9 16.6000001,16.4 19.6000001,17.7 v 0.1 0 0 -0.1 c 6,-2.2 34.3,-23.2 20.8,-37.7999996 z" - id="path3943" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="48.062" height="40.839"><path d="M44.454 2.94c-4.8-5.2-14.6-3-20.4 5.1-7.2-8.6-15.8-10.3-20.7-5.1-5 5.4-3.7 11.7-.7 16.9l5.1-.1 4.9-.2 3.7-9.8c.2-.6.6-1.7 2.1-1.7 1.6 0 1.7 1.2 1.7 1.8l.1 16.3 2.6-5.5a1.3 1.3 0 0 1 1.2-.8h15.6c.7 0 1.3.7 1.3 1.4s-.6 1.7-1.3 1.7h-14l-5 10c-.3 1-.8 1.3-1.9 1.2-.6-.1-1.1-1-1.1-1.6l-.2-15-1.5 4.1c-.1.5-.6 1.3-1.1 1.4h-10.8c6.1 8.9 16.6 16.4 19.6 17.7v.1-.1c6-2.2 34.3-23.2 20.8-37.8z" fill="#59b4d9"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Home.svg b/src/main/webapp/img/lib/mscae/Home.svg index 5fa083151ee19ce3e34a10cd840231a966027512..c381ffeb73824b2a8b79438f85994b5d0b199a43 100644 --- a/src/main/webapp/img/lib/mscae/Home.svg +++ b/src/main/webapp/img/lib/mscae/Home.svg @@ -1,78 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="49.999344" - height="45.487804" - viewBox="0 0 49.999344 45.487804" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Home.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata4018"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs4016" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview4014" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="8.5" - inkscape:cx="19.056702" - inkscape:cy="9.6334249" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<polygon - points="6.62,26.094 25.117,7.471 43.848,26.094 43.848,47.744 6.62,47.744 " - id="polygon4005" - style="fill:#a0a1a2" - transform="translate(8.6202621e-6,-2.2561984)" /> -<rect - x="17.677546" - y="-17.677546" - transform="rotate(45)" - width="35.35466" - height="6.0879416" - id="rect4007" - style="fill:#ba141a;stroke-width:0.9999904" /> -<rect - x="-17.677219" - y="-23.765383" - transform="rotate(135)" - width="35.35466" - height="6.0879416" - id="rect4009" - style="fill:#ba141a;stroke-width:0.9999904" /> -<rect - x="19.85601" - y="29.304802" - width="10.755" - height="16.183001" - id="rect4011" - style="fill:#7a7a7a" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="49.999" height="45.488"><path d="M6.62 23.838L25.117 5.215l18.73 18.623v21.65H6.62z" fill="#a0a1a2"/><g fill="#ba141a"><path d="M25 0l25 25-4.305 4.305-25-25z"/><path d="M29.304 4.305l-25 25L0 25 25 0z"/></g><path d="M19.856 29.305H30.61v16.183H19.856z" fill="#7a7a7a"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/HybridConnectionEndpoint.svg b/src/main/webapp/img/lib/mscae/HybridConnectionEndpoint.svg index 281147d361f257393025c48bb946f8caa3f51f04..7fa2c0064101b2cbdffcd3bc33699d8ad8aa8752 100644 --- a/src/main/webapp/img/lib/mscae/HybridConnectionEndpoint.svg +++ b/src/main/webapp/img/lib/mscae/HybridConnectionEndpoint.svg @@ -1,71 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="32.900002" - viewBox="0 0 50 32.900002" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="HybridConnectionEndpoint.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata4108"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs4106" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview4104" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.020815" - inkscape:cx="18.22639" - inkscape:cy="11.356341" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 37,13.5 h 10.3 c 1.5,0 2.7,1.2 2.7,2.7 0,1.5 -1.2,2.7 -2.7,2.7 H 37 c -1.5,0 -2.7,-1.2 -2.7,-2.7 -0.1,-1.5 1.2,-2.7 2.7,-2.7 z" - id="path4095" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="m 2.7,13.5 h 7.7 c 1.5,0 2.7,1.2 2.7,2.7 0,1.5 -1.2,2.7 -2.7,2.7 H 2.7 C 1.2,18.9 0,17.7 0,16.2 0,14.7 1.2,13.5 2.7,13.5 Z" - id="path4097" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="m 23,0 c 4.4,0 8.5,1.7 11.7,4.8 6.4,6.4 6.4,16.9 0,23.3 -3.1,3.1 -7.3,4.8 -11.7,4.8 -4.4,0 -8.5,-1.7 -11.7,-4.8 -1.1,-1.1 -1.1,-2.8 0,-3.9 1.1,-1.1 2.8,-1.1 3.9,0 2.1,2.1 4.8,3.3 7.8,3.3 3,0 5.7,-1.1 7.8,-3.2 C 35.1,20 35.1,13 30.8,8.8 28.7,6.7 25.9,5.5 23,5.5 20.1,5.5 17.3,6.6 15.2,8.7 14.1,9.8 12.4,9.8 11.3,8.7 10.2,7.6 10.2,5.9 11.3,4.8 14.4,1.7 18.6,0 23,0 Z" - id="path4099" - inkscape:connector-curvature="0" - style="fill:#0072c6" /> -<circle - cx="22.799999" - cy="16.5" - r="6" - id="circle4101" - style="fill:#7fba00" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="32.9"><path d="M37 13.5h10.3a2.69 2.69 0 0 1 2.7 2.7 2.69 2.69 0 0 1-2.7 2.7H37a2.69 2.69 0 0 1-2.7-2.7c-.1-1.5 1.2-2.7 2.7-2.7zm-34.3 0h7.7a2.69 2.69 0 0 1 2.7 2.7 2.69 2.69 0 0 1-2.7 2.7H2.7A2.69 2.69 0 0 1 0 16.2a2.69 2.69 0 0 1 2.7-2.7z" fill="#59b4d9"/><path d="M23 0c4.4 0 8.5 1.7 11.7 4.8 6.4 6.4 6.4 16.9 0 23.3-3.1 3.1-7.3 4.8-11.7 4.8s-8.5-1.7-11.7-4.8c-1.1-1.1-1.1-2.8 0-3.9s2.8-1.1 3.9 0c2.1 2.1 4.8 3.3 7.8 3.3s5.7-1.1 7.8-3.2c4.3-4.3 4.3-11.3 0-15.5-2.1-2.1-4.9-3.3-7.8-3.3s-5.7 1.1-7.8 3.2c-1.1 1.1-2.8 1.1-3.9 0s-1.1-2.8 0-3.9C14.4 1.7 18.6 0 23 0z" fill="#0072c6"/><circle cx="22.8" cy="16.5" r="6" fill="#7fba00"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/IOT_edge.svg b/src/main/webapp/img/lib/mscae/IOT_edge.svg index 345f76a33eb5676b6425ed97d60eb64032d4a9ae..d9d70ffe0261ae3858c5f8a3b5b55a9439db4454 100644 --- a/src/main/webapp/img/lib/mscae/IOT_edge.svg +++ b/src/main/webapp/img/lib/mscae/IOT_edge.svg @@ -1,81 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="48" - height="49.900002" - viewBox="0 0 48 49.900002" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="IOT_edge_50.svg"><metadata - id="metadata21"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs19" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview17" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="10.363697" - inkscape:cx="21.968041" - inkscape:cy="23.519012" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 46.677,34.9 1.323,34.9 C 0.592,34.9 0,35.492 0,36.223 L 0,48.577 C 0,49.308 0.592,49.9 1.323,49.9 L 46.677,49.9 C 47.408,49.9 48,49.308 48,48.577 L 48,36.223 C 48,35.495 47.405,34.9 46.677,34.9 Z" - id="path3" - inkscape:connector-curvature="0" - style="fill:#7a7a7a" /><rect - x="41" - y="37.900002" - width="3" - height="3" - id="rect5" - style="fill:#b8d432" /><rect - x="41" - y="43.900002" - width="3" - height="3" - id="rect7" - style="fill:#b8d432" /><path - d="M 41.492,14.737 C 41.864,13.628 42.073,12.446 42.073,11.215 42.073,5.021 36.98,0 30.697,0 25.947,0 21.889,2.876 20.186,6.954 18.676,5.359 16.527,4.391 14.139,4.391 9.572,4.391 5.901,8.01 5.901,12.514 5.901,13.314 6.02,14.118 6.238,14.849 2.678,16.179 0.1,19.563 0.1,23.562 0.1,28.712 4.305,32.9 9.499,32.9 L 38.499,32.9 C 43.707,32.9 47.901,28.718 47.901,23.562 47.912,19.451 45.227,15.972 41.492,14.737 Z" - id="path9" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><path - enable-background="new " - d="M 3.325,28.792 C 3.325,24.726 6.028,21.285 9.761,19.933 9.532,19.19 9.408,18.373 9.408,17.559 9.408,12.98 13.257,9.3 18.047,9.3 20.55,9.3 22.805,10.284 24.388,11.906 26.173,7.76 30.428,4.836 35.41,4.836 37.406,4.836 39.286,5.307 40.939,6.135 39.095,2.504 35.202,0 30.697,0 25.947,0 21.889,2.789 20.186,6.742 18.676,5.195 16.527,4.257 14.139,4.257 9.572,4.257 5.901,7.766 5.901,12.133 5.901,12.909 6.02,13.688 6.238,14.397 2.677,15.687 0.1,18.968 0.1,22.846 0.1,25.587 1.369,28.045 3.371,29.707 3.341,29.406 3.325,29.101 3.325,28.792 Z" - id="path11" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#ffffff" /><path - enable-background="new " - d="M 40.433,24.996 C 39.87,23.557 38.506,22.626 36.96,22.626 36.495,22.626 36.038,22.712 35.603,22.883 35.483,22.93 35.379,22.998 35.266,23.056 L 31.578,19.508 C 31.849,18.858 32,18.147 32,17.4 32,14.367 29.532,11.9 26.5,11.9 25.033,11.9 23.701,12.481 22.713,13.421 L 20.711,12.174 C 20.76,11.61 20.695,11.039 20.482,10.497 19.919,9.058 18.556,8.127 17.01,8.127 16.545,8.127 16.088,8.213 15.653,8.384 13.739,9.133 12.792,11.3 13.54,13.213 14.103,14.652 15.467,15.583 17.012,15.583 17.013,15.583 17.013,15.583 17.013,15.583 17.478,15.583 17.935,15.497 18.37,15.326 18.668,15.209 18.936,15.047 19.188,14.865 L 21.163,16.095 C 21.06,16.514 21,16.949 21,17.4 21,17.997 21.099,18.571 21.276,19.11 L 17.421,21.534 C 16.946,21.257 16.4,21.096 15.82,21.096 15.423,21.096 15.033,21.17 14.661,21.316 13.027,21.956 12.219,23.805 12.857,25.439 13.338,26.668 14.502,27.461 15.82,27.461 15.82,27.461 15.82,27.461 15.821,27.461 16.217,27.461 16.608,27.387 16.98,27.241 18.259,26.74 19.02,25.497 18.989,24.197 L 23.027,21.658 C 23.526,22.066 24.1,22.384 24.722,22.597 L 22.116,38.139 C 20.314,38.729 19,40.405 19,42.4 19,44.881 21.019,46.9 23.5,46.9 25.981,46.9 28,44.881 28,42.4 28,40.487 26.795,38.86 25.108,38.21 L 27.704,22.763 C 28.406,22.605 29.057,22.315 29.63,21.917 L 33.342,25.489 C 33.17,26.205 33.202,26.977 33.49,27.713 34.053,29.152 35.417,30.082 36.962,30.083 37.427,30.083 37.884,29.997 38.319,29.826 40.233,29.076 41.181,26.91 40.433,24.996 Z" - id="path13" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#00188f" /><path - d="M 39.501,25.36 C 38.952,23.957 37.37,23.265 35.967,23.814 35.652,23.937 35.379,24.119 35.142,24.332 L 30.346,19.704 C 30.752,19.028 31,18.246 31,17.4 31,14.915 28.985,12.9 26.5,12.9 25.024,12.9 23.725,13.621 22.905,14.719 L 19.604,12.664 C 19.783,12.093 19.787,11.463 19.552,10.862 19.003,9.459 17.421,8.767 16.018,9.316 14.615,9.865 13.923,11.447 14.472,12.85 15.021,14.253 16.603,14.945 18.006,14.396 18.44,14.226 18.795,13.95 19.078,13.619 L 22.352,15.658 C 22.125,16.193 22,16.782 22,17.4 22,18.161 22.207,18.868 22.541,19.496 L 17.372,22.746 C 16.778,22.145 15.862,21.919 15.025,22.247 13.902,22.686 13.349,23.951 13.788,25.074 14.227,26.197 15.492,26.75 16.615,26.311 17.668,25.899 18.209,24.761 17.911,23.695 L 23.163,20.393 C 23.851,21.16 24.792,21.682 25.861,21.836 L 23.297,38.92 C 21.46,39.028 20,40.537 20,42.4 20,44.333 21.567,45.9 23.5,45.9 25.433,45.9 27,44.333 27,42.4 27,40.738 25.839,39.354 24.286,38.996 L 26.856,21.864 C 27.957,21.776 28.952,21.314 29.687,20.576 L 34.49,25.211 C 34.189,25.862 34.14,26.627 34.422,27.348 34.971,28.751 36.553,29.443 37.956,28.894 39.359,28.345 40.05,26.763 39.501,25.36 Z" - id="path15" - inkscape:connector-curvature="0" - style="fill:#ffffff" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="48" height="49.9"><path d="M46.677 34.9H1.323C.592 34.9 0 35.492 0 36.223v12.354c0 .73.592 1.323 1.323 1.323h45.354c.73 0 1.323-.592 1.323-1.323V36.223c0-.728-.595-1.323-1.323-1.323z" fill="#7a7a7a"/><path d="M41 37.9h3v3h-3zm0 6h3v3h-3z" fill="#b8d432"/><path d="M41.492 14.737a11.05 11.05 0 0 0 .581-3.522C42.073 5.02 36.98 0 30.697 0c-4.75 0-8.808 2.876-10.51 6.954-1.5-1.595-3.66-2.563-6.047-2.563C9.572 4.39 5.9 8 5.9 12.514c0 .8.12 1.604.337 2.335C2.678 16.18.1 19.563.1 23.562c0 5.15 4.205 9.338 9.4 9.338h29c5.208 0 9.402-4.182 9.402-9.338.01-4.11-2.674-7.6-6.41-8.825z" fill="#59b4d9"/><path d="M3.325 28.792c0-4.066 2.703-7.507 6.436-8.86-.23-.743-.353-1.56-.353-2.374 0-4.58 3.85-8.26 8.64-8.26 2.503 0 4.758.984 6.34 2.606 1.785-4.146 6.04-7.07 11.022-7.07 1.996 0 3.876.47 5.53 1.3C39.095 2.504 35.202 0 30.697 0c-4.75 0-8.808 2.79-10.51 6.742-1.5-1.547-3.66-2.485-6.047-2.485-4.567 0-8.238 3.51-8.238 7.876 0 .776.12 1.555.337 2.264-3.56 1.3-6.138 4.57-6.138 8.45 0 2.74 1.27 5.2 3.27 6.86a9.22 9.22 0 0 1-.046-.915z" opacity=".2" fill="#fff"/><path d="M40.433 24.996a3.71 3.71 0 0 0-3.473-2.37c-.465 0-.922.086-1.357.257-.12.047-.224.115-.337.173l-3.688-3.548A5.46 5.46 0 0 0 32 17.4a5.51 5.51 0 0 0-5.5-5.5 5.48 5.48 0 0 0-3.787 1.521l-2.002-1.247c.05-.564-.016-1.135-.23-1.677-.563-1.44-1.926-2.37-3.472-2.37-.465 0-.922.086-1.357.257-1.914.75-2.86 2.916-2.113 4.83.563 1.44 1.927 2.37 3.472 2.37.466 0 .923-.086 1.358-.257.298-.117.566-.28.818-.46l1.975 1.23A5.45 5.45 0 0 0 21 17.4a5.47 5.47 0 0 0 .276 1.71l-3.855 2.424a3.17 3.17 0 0 0-1.601-.438 3.16 3.16 0 0 0-1.159.22 3.19 3.19 0 0 0-1.804 4.123c.48 1.23 1.645 2.022 2.963 2.022.397 0 .788-.074 1.16-.22 1.28-.5 2.04-1.744 2.01-3.044l4.038-2.54a5.48 5.48 0 0 0 1.695.939L22.116 38.14C20.314 38.73 19 40.405 19 42.4c0 2.48 2.02 4.5 4.5 4.5s4.5-2.02 4.5-4.5c0-1.913-1.205-3.54-2.892-4.2l2.596-15.447a5.48 5.48 0 0 0 1.926-.846l3.712 3.572c-.172.716-.14 1.488.148 2.224a3.71 3.71 0 0 0 3.472 2.37c.465 0 .922-.086 1.357-.257 1.914-.75 2.862-2.916 2.114-4.83z" opacity=".2" fill="#00188f"/><path d="M39.5 25.36a2.73 2.73 0 0 0-3.534-1.546 2.71 2.71 0 0 0-.825.518l-4.796-4.628c.406-.676.654-1.458.654-2.304a4.5 4.5 0 0 0-4.5-4.5c-1.476 0-2.775.72-3.595 1.82l-3.3-2.055a2.7 2.7 0 0 0-.052-1.802 2.73 2.73 0 0 0-3.534-1.546 2.73 2.73 0 0 0-1.546 3.534 2.73 2.73 0 0 0 3.534 1.546 2.71 2.71 0 0 0 1.072-.777l3.274 2.04A4.45 4.45 0 0 0 22 17.4c0 .76.207 1.468.54 2.096l-5.17 3.25a2.18 2.18 0 0 0-3.584 2.328 2.18 2.18 0 0 0 2.827 1.237c1.053-.412 1.594-1.55 1.296-2.616l5.252-3.302c.688.767 1.63 1.29 2.698 1.443L23.297 38.92C21.46 39.028 20 40.537 20 42.4a3.5 3.5 0 1 0 7 0c0-1.662-1.16-3.046-2.714-3.404l2.57-17.132c1.1-.088 2.096-.55 2.83-1.288L34.5 25.21c-.3.65-.35 1.416-.068 2.137a2.73 2.73 0 0 0 3.534 1.546c1.403-.55 2.094-2.13 1.545-3.534z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Identity_Governance.svg b/src/main/webapp/img/lib/mscae/Identity_Governance.svg new file mode 100644 index 0000000000000000000000000000000000000000..544531b1a31ec3dfe03ee4128587b373456e35a7 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Identity_Governance.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="47.733" height="47.743"><path d="M39.705 39.715c-4.232 4.23-9.856 6.56-15.84 6.56a22.26 22.26 0 0 1-15.839-6.56c-4.23-4.232-6.56-9.856-6.56-15.84s2.33-11.61 6.56-15.84 9.855-6.56 15.84-6.56 11.61 2.33 15.84 6.56a22.25 22.25 0 0 1 6.56 15.839c-.001 5.982-2.33 11.608-6.56 15.84z" fill="#e5e5e5"/><path d="M8.027 39.716c-4.23-4.232-6.56-9.856-6.56-15.84s2.33-11.61 6.56-15.84 9.855-6.56 15.84-6.56 11.61 2.33 15.84 6.56z" opacity=".5" fill="#fff"/><g fill="#2999c6"><path d="M4.477 31.64c-.98-2.438-1.5-5.057-1.5-7.763a20.72 20.72 0 0 1 4.24-12.586 5.85 5.85 0 0 1-1.218-1.12 5.95 5.95 0 0 1-.762-1.226c-5.605 6.985-6.693 16.373-3.3 24.316.763-.687 1.62-1.237 2.55-1.62zM15.205 1.628c.75.763 1.326 1.628 1.746 2.548 2.195-.77 4.518-1.2 6.914-1.2a20.67 20.67 0 0 1 12.25 4 5.85 5.85 0 0 1 1.555-1.96 6.18 6.18 0 0 1 .435-.319c-6.7-4.974-15.38-5.98-22.9-3.058zm28.05 14.484a20.77 20.77 0 0 1 1.511 7.764c-.001 4.608-1.503 8.976-4.24 12.585a5.86 5.86 0 0 1 1.219 1.121c.312.383.56.796.762 1.225 5.605-6.985 6.693-16.372 3.3-24.315-.765.687-1.623 1.237-2.552 1.62zM30.778 43.575c-2.195.77-4.517 1.2-6.912 1.2a20.74 20.74 0 0 1-12.249-3.99 5.85 5.85 0 0 1-1.555 1.96l-.417.305c6.688 4.97 15.37 5.986 22.882 3.074a8.86 8.86 0 0 1-1.749-2.55z"/><path d="M13.045 3.705a5.91 5.91 0 0 1-.005 8.348c-2.302 2.298-6.046 2.297-8.348-.005A5.91 5.91 0 0 1 4.697 3.7a5.91 5.91 0 0 1 8.344.001z"/></g><path d="M10.912 9.92a2.89 2.89 0 0 0 .002-4.089c-1.128-1.13-2.96-1.13-4.09-.002a2.89 2.89 0 0 0-.002 4.089l.001.001a2.89 2.89 0 0 0 4.088.001" fill="#fff"/><path d="M35.693 3.7a5.91 5.91 0 0 1 8.348.005c2.298 2.302 2.297 6.046-.005 8.348a5.91 5.91 0 0 1-8.348-.005 5.91 5.91 0 0 1 .001-8.344z" fill="#2999c6"/><path d="M41.9 5.834a2.89 2.89 0 1 0-4.091 4.087 2.89 2.89 0 0 0 4.089.002l.001-.001c1.128-1.128 1.128-2.96.001-4.088" fill="#fff"/><path d="M34.688 44.046a5.91 5.91 0 0 1 .005-8.348c2.302-2.298 6.046-2.297 8.348.005a5.91 5.91 0 0 1-.005 8.348 5.91 5.91 0 0 1-8.344-.001z" fill="#2999c6"/><path d="M36.82 37.83a2.89 2.89 0 1 0 4.087 4.091 2.89 2.89 0 1 0-4.087-4.091" fill="#fff"/><path d="M12.04 44.05a5.91 5.91 0 0 1-8.348-.005c-2.298-2.302-2.297-6.046.005-8.348a5.91 5.91 0 0 1 8.348.005 5.91 5.91 0 0 1-.001 8.344z" fill="#2999c6"/><path d="M5.822 41.917a2.891 2.891 0 1 0 4.091-4.087 2.89 2.89 0 0 0-4.089-.002c-1.13 1.13-1.13 2.96-.002 4.1m21.044-21.042h-6l3 9z" fill="#fff"/><g fill="#804998"><path d="M33.896 31.654c-.57-5.082-2.936-9.342-7.03-10.778l-3 9-3-9c-3.996 1.343-6.534 5.177-7.032 10.795-.102 1.1.615 2.08 1.602 2.194a1.81 1.81 0 0 0 .18.011h16.5c.986.004 1.79-.883 1.792-1.982a2.41 2.41 0 0 0-.012-.24z"/><circle cx="23.866" cy="15.876" r="5.9"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Image.svg b/src/main/webapp/img/lib/mscae/Image.svg index acf98c78f6fa5d6325aab46de7297a498f16e307..4aab5fc7e3efdb570a14c132a816c03843666ef4 100644 --- a/src/main/webapp/img/lib/mscae/Image.svg +++ b/src/main/webapp/img/lib/mscae/Image.svg @@ -1,96 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="39" - width="50" - viewBox="0 0 50 39" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Image.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata4275"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs4273" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview4271" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="25" - inkscape:cy="19" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<rect - y="0" - width="50" - height="39" - id="rect4254" - x="0" - style="fill:#7a7a7a" /> -<rect - x="2.2" - y="2.1999998" - width="45.700001" - height="34.799999" - id="rect4256" - style="fill:#59b4d9" /> -<rect - x="2.2" - y="2.1999998" - width="45.700001" - height="34.799999" - id="rect4258" - style="fill:#59b4d9" /> -<path - d="M 47.8,22.3 44.5,19 c -1.3,-1.3 -3.4,-1.3 -4.8,0 L 21.9,37 h 26 V 22.3 Z" - id="path4260" - inkscape:connector-curvature="0" - style="fill:#b8d432" /> -<path - d="M 47.8,22.3 44.5,19 c -1.3,-1.3 -3.4,-1.3 -4.8,0 L 21.9,37 h 26 V 22.3 Z" - id="path4262" - inkscape:connector-curvature="0" - style="opacity:0.25;fill:#ffffff" /> -<path - d="m 43.1,37 -14,-14 c -1,-1 -2.7,-1 -3.7,0 l -14,14 z" - id="path4264" - inkscape:connector-curvature="0" - style="fill:#7fba00" /> -<path - d="m 43.1,37 -14,-14 c -1,-1 -2.7,-1 -3.7,0 l -14,14 z" - id="path4266" - inkscape:connector-curvature="0" - style="opacity:0.25;fill:#ffffff" /> -<path - d="m 27.6,17.3 c 0,-1.4 -1.1,-2.5 -2.4,-2.5 -0.1,0 -0.2,0 -0.3,0 0.1,-0.6 0.2,-1.1 0.2,-1.7 0,-3.6 -2.9,-6.6 -6.5,-6.6 -2.9,0 -5.3,1.9 -6.2,4.5 -0.5,-0.2 -0.9,-0.3 -1.5,-0.3 -2.5,0 -4.4,2 -4.4,4.5 0,2.5 2,4.5 4.4,4.5 0,0 0,0 0,0 v 0 h 14.4 v 0 c 1.3,-0.1 2.3,-1.1 2.3,-2.4" - id="path4268" - inkscape:connector-curvature="0" - style="opacity:0.62999998;fill:#ffffff" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" height="39" width="50"><path d="M0 0h50v39H0z" fill="#7a7a7a"/><path d="M2.2 2.2h45.7V37H2.2z" fill="#59b4d9"/><path d="M47.8 22.3L44.5 19c-1.3-1.3-3.4-1.3-4.8 0L21.9 37h26V22.3z" fill="#b8d432"/><path d="M47.8 22.3L44.5 19c-1.3-1.3-3.4-1.3-4.8 0L21.9 37h26V22.3z" opacity=".25" fill="#fff"/><path d="M43.1 37l-14-14a2.66 2.66 0 0 0-3.7 0l-14 14z" fill="#7fba00"/><g fill="#fff"><path d="M43.1 37l-14-14a2.66 2.66 0 0 0-3.7 0l-14 14z" opacity=".25"/><path d="M27.6 17.3c0-1.4-1.1-2.5-2.4-2.5h-.3c.1-.6.2-1.1.2-1.7 0-3.6-2.9-6.6-6.5-6.6-2.9 0-5.3 1.9-6.2 4.5-.5-.2-.9-.3-1.5-.3-2.5 0-4.4 2-4.4 4.5s2 4.5 4.4 4.5h14.4c1.3-.1 2.3-1.1 2.3-2.4" opacity=".63"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Image_Definitions.svg b/src/main/webapp/img/lib/mscae/Image_Definitions.svg new file mode 100644 index 0000000000000000000000000000000000000000..e7d4e8bf2ff56061b6291b19ee349e7f9282470d --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Image_Definitions.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="49" height="48"><path d="M38 48H0V0h38zM2 45.97L36 46V2L2 2.03z" fill="#3999c6"/><path d="M2 2.03h34v43.94H2z" fill="#59b4d9"/><path d="M2 2.03h34v43.94H2z" opacity=".4" fill="#fff"/><path d="M29.524 13.963L20.1 8.556c-.694-.4-1.526-.393-2.256.008L8.467 13.93C7.766 14.338 6 15 6 18.247v10.797c0 .836.457 1.604 1.152 1.98l9.33 5.346c.357.22 1.52.63 2.52.63s2.144-.402 2.5-.61l9.335-5.353A2.28 2.28 0 0 0 32 29.044V18.316c0-3.316-1.772-3.955-2.476-4.353z" opacity=".5" fill="#3999c6"/><path d="M19.03 21.59c-.05-.001-.1-.015-.143-.04L9.47 16.15c-.087-.05-.14-.144-.14-.245s.053-.194.14-.245l9.36-5.362a.29.29 0 0 1 .282 0l9.42 5.4c.088.05.14.143.14.244a.28.28 0 0 1-.14.244l-9.356 5.36c-.044.027-.094.04-.145.042" fill="#fff"/><path d="M17.677 34.707c-.05.001-.1-.012-.143-.038l-9.387-5.38c-.09-.048-.147-.142-.147-.245V18.247c0-.102.055-.194.145-.246s.198-.052.287 0l9.386 5.378c.086.053.138.147.14.248v10.797c-.001.1-.053.193-.14.246a.3.3 0 0 1-.141.037m2.657 0c-.05 0-.102-.013-.147-.038-.086-.052-.138-.145-.138-.246V23.695c0-.1.055-.193.138-.246l9.386-5.378a.28.28 0 0 1 .283 0c.088.05.143.143.144.245v10.728a.28.28 0 0 1-.144.246l-9.383 5.38c-.042.025-.1.038-.14.037" fill="#3999c6"/><g fill="#fff"><path d="M17.677 34.707c-.05.001-.1-.012-.143-.038l-9.387-5.38c-.09-.048-.147-.142-.147-.245V18.247c0-.102.055-.194.145-.246s.198-.052.287 0l9.386 5.378c.086.053.138.147.14.248v10.797c-.001.1-.053.193-.14.246a.3.3 0 0 1-.141.037" opacity=".8"/><path d="M20.334 34.707c-.05 0-.102-.013-.147-.038-.086-.052-.138-.145-.138-.246V23.695c0-.1.055-.193.138-.246l9.386-5.378a.28.28 0 0 1 .283 0c.088.05.143.143.144.245v10.728a.28.28 0 0 1-.144.246l-9.383 5.38c-.042.025-.1.038-.14.037" opacity=".6"/></g><path d="M41 29l8 6-8 6z" fill="#804998"/><path d="M36 39.087l2-.37V31.76a19.8 19.8 0 0 0-2 .411z" opacity=".4" fill="#fff"/><path d="M41 37.506c-8 0-13 3.994-14 5.494 0-6.735 7-10.475 14-10.475z" fill="#804998"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Image_Versions.svg b/src/main/webapp/img/lib/mscae/Image_Versions.svg new file mode 100644 index 0000000000000000000000000000000000000000..df224f48a8f97b3adb68c27fb9ee48e6f0493fb2 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Image_Versions.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="48"><path d="M34 43H0V0h34zM2 41l30 .027" fill="#7fba00"/><path d="M2 41V2h30v39z" opacity=".6" fill="#fff"/><path d="M39 48H5V5h34zM7 46l30 .027V7L7 7.027z" fill="#3999c6"/><path d="M7 7h30v39H7z" fill="#59b4d9"/><path d="M7 7h30v39H7z" opacity=".4" fill="#fff"/><path d="M30.905 17.967l-7.982-4.575a1.94 1.94 0 0 0-1.909.007l-7.926 4.54c-.594.344-2.088.904-2.088 3.652v9.136c0 .708.387 1.357.975 1.676l7.894 4.523c.302.186 1.285.533 2.13.533s1.814-.34 2.107-.515l7.9-4.53A1.93 1.93 0 0 0 33 30.728V21.65c0-2.806-1.5-3.346-2.095-3.683z" opacity=".5" fill="#3999c6"/><path d="M22.025 24.42c-.043-.001-.084-.012-.12-.034l-7.967-4.567a.24.24 0 0 1 0-.415l7.92-4.537c.074-.04.164-.04.238 0l7.97 4.568c.074.043.12.122.118.207s-.044.164-.118.207l-7.916 4.536a.25.25 0 0 1-.123.035" fill="#fff"/><path d="M20.88 35.52a.22.22 0 0 1-.121-.032l-7.943-4.552c-.077-.04-.124-.12-.124-.208v-9.136a.24.24 0 0 1 .123-.208.24.24 0 0 1 .243 0L21 25.935a.25.25 0 0 1 .117.21v9.136c0 .085-.045.164-.117.208a.27.27 0 0 1-.12.031m2.25 0c-.044 0-.087-.01-.125-.032a.24.24 0 0 1-.116-.208v-9.078a.25.25 0 0 1 .116-.208l7.942-4.55c.074-.043.165-.043.24 0s.122.12.122.207v9.077c0 .086-.047.166-.122.208l-7.94 4.552a.22.22 0 0 1-.117.032" fill="#3999c6"/><g fill="#fff"><path d="M20.88 35.52a.22.22 0 0 1-.121-.032l-7.943-4.552c-.077-.04-.124-.12-.124-.208v-9.136a.24.24 0 0 1 .123-.208.24.24 0 0 1 .243 0L21 25.935a.25.25 0 0 1 .117.21v9.136c0 .085-.045.164-.117.208a.27.27 0 0 1-.12.031" opacity=".8"/><path d="M23.13 35.52c-.044 0-.087-.01-.125-.032a.24.24 0 0 1-.116-.208v-9.078a.25.25 0 0 1 .116-.208l7.942-4.55c.074-.043.165-.043.24 0s.122.12.122.207v9.077c0 .086-.047.166-.122.208l-7.94 4.552a.22.22 0 0 1-.117.032" opacity=".6"/></g><path d="M42 29l8 6-8 6z" fill="#804998"/><path d="M37 39.087l2-.37V31.76a19.8 19.8 0 0 0-2 .411z" opacity=".4" fill="#fff"/><path d="M42 37.506c-8 0-13 3.994-14 5.494 0-6.735 7-10.475 14-10.475z" fill="#804998"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/InboundNAT.svg b/src/main/webapp/img/lib/mscae/InboundNAT.svg index a71793dcac5da5fc22cb05f36d60417efb9170a2..fde8e1c1e3162f37d24aa9dca3e70f0ce4c318ca 100644 --- a/src/main/webapp/img/lib/mscae/InboundNAT.svg +++ b/src/main/webapp/img/lib/mscae/InboundNAT.svg @@ -1,25 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#A0A1A2" d="M48,0H2C0.9,0,0,0.9,0,2v7.3v0.3V48c0,1.1,0.9,2,2,2h46c1.1,0,2-0.9,2-2V9.6V9.3V2C50,0.9,49.1,0,48,0z"/> -<g> - <path fill="#0072C6" d="M25,21.9c3.3,0,6.5,1.3,8.9,3.7c4.9,4.9,4.9,12.8,0,17.7C31.5,45.7,28.4,47,25,47c-3.3,0-6.5-1.3-8.9-3.7 - c-0.8-0.8-0.8-2.1,0-3c0.8-0.8,2.1-0.8,3,0c1.6,1.6,3.7,2.4,5.9,2.4s4.3-0.9,5.9-2.4c3.3-3.3,3.3-8.6,0-11.8 - c-1.6-1.6-3.7-2.4-5.9-2.4s-4.3,0.9-5.9,2.4c-0.8,0.8-2.1,0.8-3,0c-0.8-0.8-0.8-2.1,0-3C18.5,23.2,21.7,21.9,25,21.9z"/> -</g> -<g> - <circle fill="#68217A" cx="24.9" cy="34.5" r="4.5"/> -</g> -<polygon fill="#FFFFFF" points="26.3,13.6 33.2,7 33.2,10.6 24.9,19.4 16.6,10.6 16.6,7.1 23.4,13.6 23.4,0 26.3,0 "/> -<path fill="#68217A" d="M23.5,32.2H0v4.2h23.5c1.2,0,2.1-0.9,2.1-2.1S24.7,32.2,23.5,32.2z"/> -<path fill="#0072C6" d="M50,32.2H35.7c-1.2,0-2.1,0.9-2.1,2.1s0.9,2.1,2.1,2.1H50V32.2z"/> -<g opacity="0.2"> - <g> - <g> - <path fill="#FFFFFF" d="M2,0C0.9,0,0,0.9,0,2v7.3V20v28c0,1.1,0.9,2,2,2h2.2L43.6,0H2z"/> - </g> - </g> -</g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path fill="#a0a1a2" d="M48 0H2C.9 0 0 .9 0 2v46c0 1.1.9 2 2 2h46c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2z"/><path fill="#0072c6" d="M25 21.9c3.3 0 6.5 1.3 8.9 3.7 4.9 4.9 4.9 12.8 0 17.7-2.4 2.4-5.5 3.7-8.9 3.7-3.3 0-6.5-1.3-8.9-3.7-.8-.8-.8-2.1 0-3 .8-.8 2.1-.8 3 0 1.6 1.6 3.7 2.4 5.9 2.4s4.3-.9 5.9-2.4c3.3-3.3 3.3-8.6 0-11.8-1.6-1.6-3.7-2.4-5.9-2.4s-4.3.9-5.9 2.4c-.8.8-2.1.8-3 0-.8-.8-.8-2.1 0-3 2.4-2.3 5.6-3.6 8.9-3.6z"/><circle fill="#68217a" cx="24.9" cy="34.5" r="4.5"/><path fill="#fff" d="M26.3 13.6L33.2 7v3.6l-8.3 8.8-8.3-8.8V7.1l6.8 6.5V0h2.9z"/><path fill="#68217a" d="M23.5 32.2H0v4.2h23.5c1.2 0 2.1-.9 2.1-2.1s-.9-2.1-2.1-2.1z"/><path fill="#0072c6" d="M50 32.2H35.7c-1.2 0-2.1.9-2.1 2.1s.9 2.1 2.1 2.1H50v-4.2z"/><path fill="#fff" d="M2 0C.9 0 0 .9 0 2v46c0 1.1.9 2 2 2h2.2L43.6 0H2z" opacity=".2"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/InboundRule.svg b/src/main/webapp/img/lib/mscae/InboundRule.svg index f6ca6c3d8a3d398afa1c2f13287c4d7edaca62f7..85d1fa9e0971faf6364893963ea15ab6ba570a4b 100644 --- a/src/main/webapp/img/lib/mscae/InboundRule.svg +++ b/src/main/webapp/img/lib/mscae/InboundRule.svg @@ -1,75 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="50" - viewBox="0 0 50 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="InboundRule.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata4468"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs4466" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview4464" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.020815" - inkscape:cx="19.431975" - inkscape:cy="19.176645" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="M 47.6,31.8 H 16.8 c -1.3,0 -2.4,-1.1 -2.4,-2.1 0,-1 1.1,-1.9 2.4,-1.9 h 30.8 c 1.4,0 2.4,0.8 2.4,1.9 0,1 -1.1,2.1 -2.4,2.1 z" - id="path4453" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<path - d="M 47.6,47.4 H 16.8 c -1.3,0 -2.4,-1.1 -2.4,-2.1 0,-1 1.1,-1.9 2.4,-1.9 h 30.8 c 1.3,0 2.4,0.8 2.4,1.9 0,1 -1.1,2.1 -2.4,2.1 z" - id="path4455" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<polygon - points="2.2,27.4 2.2,27.4 2.2,27.4 5.7,30.9 12.8,23.9 12.8,23.9 12.8,23.9 14.5,25.7 14.5,25.7 14.5,25.7 5.7,34.4 0.5,29.2 " - id="polygon4457" - style="fill:#b8d432" - transform="translate(-0.5)" /> -<polygon - points="2.2,43 2.2,43 2.2,43 5.7,46.5 12.8,39.5 12.8,39.5 12.8,39.5 14.5,41.2 14.5,41.2 14.5,41.2 5.7,50 0.5,44.7 " - id="polygon4459" - style="fill:#b8d432" - transform="translate(-0.5)" /> -<polygon - points="33.2,10.6 24.9,19.4 16.6,10.6 16.6,7.1 23.4,13.6 23.4,0 26.3,0 26.3,13.6 33.2,7 " - id="polygon4461" - style="fill:#0072c6" - transform="translate(-0.5)" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path d="M47.6 31.8H16.8c-1.3 0-2.4-1.1-2.4-2.1s1.1-1.9 2.4-1.9h30.8c1.4 0 2.4.8 2.4 1.9 0 1-1.1 2.1-2.4 2.1zm0 15.6H16.8c-1.3 0-2.4-1.1-2.4-2.1s1.1-1.9 2.4-1.9h30.8c1.3 0 2.4.8 2.4 1.9 0 1-1.1 2.1-2.4 2.1z" fill="#a0a1a2"/><path d="M1.7 27.4l3.5 3.5 7.1-7 1.7 1.8-8.8 8.7L0 29.2zm0 15.6l3.5 3.5 7.1-7 1.7 1.7L5.2 50 0 44.7z" fill="#b8d432"/><path d="M32.7 10.6l-8.3 8.8-8.3-8.8V7.1l6.8 6.5V0h2.9v13.6L32.7 7z" fill="#0072c6"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Info.svg b/src/main/webapp/img/lib/mscae/Info.svg index 3db70dd9368b451eaaa910013ed85162a53eb8bf..1ae9d3e5dace41ad7dc19fa936cae60f6d77fa1f 100644 --- a/src/main/webapp/img/lib/mscae/Info.svg +++ b/src/main/webapp/img/lib/mscae/Info.svg @@ -1,55 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="44.493999" - height="44.493" - viewBox="0 0 44.493999 44.493" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Info.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata4607"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs4605" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview4603" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="22.247" - inkscape:cy="22.246" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="M 22.247,0 C 9.96,0 0,9.96 0,22.247 0,34.534 9.96,44.493 22.247,44.493 34.534,44.493 44.494,34.534 44.494,22.247 44.494,9.961 34.533,0 22.247,0 Z m -1.543,7.913 c 0.652,-0.659 1.441,-0.989 2.369,-0.989 0.94,0 1.737,0.33 2.39,0.989 0.651,0.659 0.976,1.451 0.976,2.378 0,0.927 -0.329,1.717 -0.987,2.369 -0.659,0.651 -1.453,0.977 -2.379,0.977 -0.928,0 -1.717,-0.326 -2.369,-0.977 -0.652,-0.652 -0.978,-1.442 -0.978,-2.369 0,-0.927 0.326,-1.719 0.978,-2.378 z m 7.865,29.165 H 17.597 v -0.782 c 0.898,-0.029 1.564,-0.29 1.999,-0.782 0.289,-0.333 0.434,-1.217 0.434,-2.651 V 21.001 c 0,-1.433 -0.166,-2.349 -0.498,-2.748 -0.334,-0.398 -0.979,-0.627 -1.935,-0.684 v -0.804 h 8.517 v 16.098 c 0,1.434 0.166,2.35 0.499,2.749 0.333,0.398 0.985,0.626 1.956,0.684 z" - id="path4600" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="44.494" height="44.493"><path d="M22.247 0A22.25 22.25 0 0 0 0 22.247a22.25 22.25 0 0 0 22.247 22.246 22.25 22.25 0 0 0 22.247-22.246C44.494 9.96 34.533 0 22.247 0zm-1.543 7.913c.652-.66 1.44-.99 2.37-.99.94 0 1.737.33 2.4.99a3.26 3.26 0 0 1 .976 2.378 3.21 3.21 0 0 1-.987 2.369c-.66.65-1.453.977-2.38.977s-1.717-.326-2.37-.977-.978-1.442-.978-2.37.326-1.72.978-2.378zm7.865 29.165H17.597v-.782c.898-.03 1.564-.3 2-.782.29-.333.434-1.217.434-2.65V21c0-1.433-.166-2.35-.498-2.748s-.98-.627-1.935-.684v-.804h8.517v16.098c0 1.434.166 2.35.5 2.75s.985.626 1.956.684z" fill="#59b4d9"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Info_2.svg b/src/main/webapp/img/lib/mscae/Info_2.svg index 223c494c8e59d87c3fd9d729ebff524d174cd965..df6a5b141ce80467a2fac11033d547173585a43a 100644 --- a/src/main/webapp/img/lib/mscae/Info_2.svg +++ b/src/main/webapp/img/lib/mscae/Info_2.svg @@ -1,70 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="44.493999" - height="44.493" - viewBox="0 0 44.493999 44.493" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Info_2.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata4554"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs4552" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview4550" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="22.247" - inkscape:cy="22.246" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 44.494,22.247 c 0,12.287 -9.96,22.246 -22.247,22.246 C 9.96,44.493 0,34.534 0,22.247 0,9.96 9.96,0 22.247,0 34.533,0 44.494,9.961 44.494,22.247" - id="path4541" - inkscape:connector-curvature="0" - style="fill:#3999c6" /> -<path - d="M 22.247,0 C 9.96,0 0,9.961 0,22.247 0,27.513 1.84,32.343 4.897,36.153 L 37.667,6.233 C 33.667,2.382 28.239,0 22.247,0" - id="path4543" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="m 26.114,16.765 v 16.098 c 0,1.434 0.166,2.35 0.499,2.749 0.333,0.398 0.985,0.626 1.956,0.684 v 0.782 H 17.597 v -0.782 c 0.898,-0.029 1.564,-0.29 1.999,-0.782 0.289,-0.333 0.434,-1.217 0.434,-2.651 V 21.001 c 0,-1.433 -0.166,-2.349 -0.498,-2.748 -0.334,-0.398 -0.979,-0.627 -1.935,-0.684 v -0.804 z" - id="path4545" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -<path - d="m 23.073,6.924 c 0.94,0 1.737,0.33 2.39,0.989 0.651,0.659 0.976,1.451 0.976,2.378 0,0.927 -0.329,1.717 -0.987,2.369 -0.659,0.651 -1.453,0.977 -2.379,0.977 -0.928,0 -1.717,-0.326 -2.369,-0.977 -0.652,-0.652 -0.978,-1.442 -0.978,-2.369 0,-0.927 0.326,-1.719 0.978,-2.378 0.652,-0.659 1.441,-0.989 2.369,-0.989" - id="path4547" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="44.494" height="44.493"><path d="M44.494 22.247a22.25 22.25 0 0 1-22.247 22.246A22.25 22.25 0 0 1 0 22.247 22.25 22.25 0 0 1 22.247 0c12.286 0 22.247 9.96 22.247 22.247" fill="#3999c6"/><path d="M22.247 0C9.96 0 0 9.96 0 22.247c0 5.266 1.84 10.096 4.897 13.906l32.77-29.92C33.667 2.382 28.24 0 22.247 0" fill="#59b4d9"/><path d="M26.114 16.765v16.098c0 1.434.166 2.35.5 2.75s.985.626 1.956.684v.782H17.597v-.782c.898-.03 1.564-.3 2-.782.3-.333.434-1.217.434-2.65V21c0-1.433-.166-2.35-.498-2.748s-.98-.627-1.935-.684v-.804zm-3.04-9.84a3.27 3.27 0 0 1 2.4.99 3.26 3.26 0 0 1 .976 2.378 3.21 3.21 0 0 1-.987 2.369 3.27 3.27 0 0 1-2.38.977 3.23 3.23 0 0 1-2.37-.977 3.22 3.22 0 0 1-.978-2.37c0-.928.326-1.72.978-2.378a3.21 3.21 0 0 1 2.37-.99" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Input.svg b/src/main/webapp/img/lib/mscae/Input.svg index 0b164a83422d88ed806205d690f57b32dc347eae..68fc573b81f1cebe895f4f4b792006f24192872f 100644 --- a/src/main/webapp/img/lib/mscae/Input.svg +++ b/src/main/webapp/img/lib/mscae/Input.svg @@ -1,60 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - viewBox="0 0 42.400002 38" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Input.svg" - width="42.400002" - height="38" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata4658"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs4656" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview4654" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="8.1345322" - inkscape:cy="20.527701" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<polygon - points="28.1,17.8 35.6,25.6 28.1,33.3 23.5,33.3 29.1,27.4 3.8,27.4 3.8,23.8 29.1,23.8 23.5,17.8 " - id="polygon4649" - style="fill:#804998" - transform="translate(-3.8,-6)" /> -<polygon - points="15.4,32.1 10.2,32.1 10.2,44 46.2,44 46.2,6 10.2,6 10.2,19.2 15.4,19.2 15.4,11.1 41,11.1 41,38.9 15.4,38.9 " - id="polygon4651" - style="fill:#a0a1a2" - transform="translate(-3.8,-6)" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="42.4" height="38"><path d="M24.3 11.8l7.5 7.8-7.5 7.7h-4.6l5.6-5.9H0v-3.6h25.3l-5.6-6z" fill="#804998"/><path d="M11.6 26.1H6.4V38h36V0h-36v13.2h5.2V5.1h25.6v27.8H11.6z" fill="#a0a1a2"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/InputOutput.svg b/src/main/webapp/img/lib/mscae/InputOutput.svg index da9e196ac7f3ec075ce13f79ad1f7f410dad3e4e..3ae87308a22b0b2b2d9ca746a4665ce629b3900a 100644 --- a/src/main/webapp/img/lib/mscae/InputOutput.svg +++ b/src/main/webapp/img/lib/mscae/InputOutput.svg @@ -1,70 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="32.889" - viewBox="0 0 50 32.889" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="InputOutput.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata4725"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs4723" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview4721" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.020815" - inkscape:cx="22.149236" - inkscape:cy="7.5559978" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<polygon - points="16.789,18.256 23.333,24.978 16.822,31.667 12.844,31.667 17.7,26.511 0,26.511 0,23.411 17.7,23.411 12.811,18.256 " - id="polygon4712" - style="fill:#804998" - transform="translate(0,-8)" /> -<polygon - points="43.456,18.256 50,24.978 43.489,31.667 39.511,31.667 44.367,26.511 26.667,26.511 26.667,23.411 44.367,23.411 39.478,18.256 " - id="polygon4714" - style="fill:#59b4d9" - transform="translate(0,-8)" /> -<polygon - points="5.556,30.556 10,30.556 10,36.444 32.222,36.444 32.222,30.556 36.667,30.556 36.667,40.889 5.556,40.889 " - id="polygon4716" - style="fill:#a0a1a2" - transform="translate(0,-8)" /> -<polygon - points="32.222,12.444 10,12.444 10,19.444 5.556,19.444 5.556,8 36.667,8 36.667,19.444 32.222,19.444 " - id="polygon4718" - style="fill:#a0a1a2" - transform="translate(0,-8)" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="32.889"><path d="M16.79 10.256l6.544 6.722-6.51 6.69h-3.978L17.7 18.51H0v-3.1h17.7l-4.89-5.155z" fill="#804998"/><path d="M43.456 10.256L50 16.978l-6.51 6.69H39.51l4.856-5.156h-17.7v-3.1h17.7l-4.89-5.155z" fill="#59b4d9"/><path d="M5.556 22.556H10v5.888h22.222v-5.888h4.445V32.9H5.556zM32.222 4.444H10v7H5.556V0h31.1v11.444H32.22z" fill="#a0a1a2"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/InstallVisualStudio.svg b/src/main/webapp/img/lib/mscae/InstallVisualStudio.svg index 76e7565e1e681aae70cb887cafa95dcc0e0bfdb9..89c731174df61f8987dd3131a6e2c8cf79d91b86 100644 --- a/src/main/webapp/img/lib/mscae/InstallVisualStudio.svg +++ b/src/main/webapp/img/lib/mscae/InstallVisualStudio.svg @@ -1,13 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill-rule="evenodd" clip-rule="evenodd" fill="#59B4D9" d="M13.796,14.204l7.511-5.841v11.682L13.796,14.204z M2.841,18.466 - V9.943l4.261,4.261L2.841,18.466z M21.307,0L10.034,11.273L2.841,5.682L0,7.102v14.205l2.841,1.42l7.193-5.591l11.273,11.273 - l7.102-2.841V2.841L21.307,0z"/> -<path fill="#59B4D9" d="M45.694,25.261l-3.977-1.068l-1.057-3.977l4.057-4.057c-2.398-0.648-5.068-0.034-6.943,1.852 - c-1.898,1.886-2.5,4.568-1.841,6.977L24.989,35.932c-2.409-0.659-5.091-0.045-6.989,1.841c-1.875,1.875-2.489,4.546-1.841,6.943 - l4.057-4.057l3.977,1.057l1.057,3.977l-4.057,4.057c2.398,0.648,5.068,0.034,6.943-1.852c1.977-1.966,2.557-4.807,1.739-7.296 - l10.727-10.727c2.489,0.818,5.33,0.239,7.307-1.739c1.875-1.875,2.489-4.546,1.841-6.943L45.694,25.261z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" fill="#59b4d9"><path fill-rule="evenodd" d="M13.796 14.204l7.51-5.84v11.682l-7.51-5.84zM2.84 18.466V9.943l4.26 4.26-4.26 4.262zM21.307 0L10.034 11.273 2.84 5.682 0 7.102v14.205l2.84 1.42 7.193-5.59L21.307 28.41l7.102-2.84V2.84L21.307 0z"/><path d="M45.694 25.26l-3.977-1.068-1.057-3.977 4.057-4.057c-2.398-.648-5.068-.034-6.943 1.852-1.898 1.886-2.5 4.568-1.84 6.977L24.99 35.932c-2.41-.66-5.09-.045-6.99 1.84-1.875 1.875-2.49 4.546-1.84 6.943l4.057-4.057 3.977 1.057 1.057 3.977-4.057 4.057c2.398.648 5.068.034 6.943-1.852 1.977-1.966 2.557-4.807 1.74-7.296l10.727-10.727c2.49.818 5.33.24 7.307-1.74 1.875-1.875 2.49-4.546 1.84-6.943l-4.056 4.068z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Integration_Accounts.svg b/src/main/webapp/img/lib/mscae/Integration_Accounts.svg new file mode 100644 index 0000000000000000000000000000000000000000..802e60e2906d0d70402906111c853d26f97f666e --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Integration_Accounts.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path d="M0 0h50v50H0z" fill="#fff"/><path d="M0 0v50h50V0zm45.5 45.5h-41v-41h41z" fill="#3999c6"/><path d="M8 8h9v9H8z" fill="#fcd116"/><path d="M8 20.5h9v9H8z" fill="#dd5900"/><path d="M20.5 20.5h9v9h-9z" fill="#3999c6"/><path d="M8 33h9v9H8z" fill="#804998"/><path d="M20.5 33h9v9h-9z" fill="#dd5900"/><path d="M33 33h9v9h-9z" fill="#804998"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Integration_Service_Environments.svg b/src/main/webapp/img/lib/mscae/Integration_Service_Environments.svg new file mode 100644 index 0000000000000000000000000000000000000000..b8e718037078f11cee1a3727f95617e1fde2898f --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Integration_Service_Environments.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="47.8" height="47.8"><circle cx="23.9" cy="23.9" r="23.9" fill="#0072c6"/><circle cx="23.9" cy="23.9" r="21" opacity=".8" fill="#fff"/><g fill="#3999c6"><path d="M24.8 19.3v-5h-2.5v5c0 .9-.8 1.7-2.1 2.1l-3.4.7c-2.3.7-3.9 2.5-3.9 4.5v5.7h2.5v-5.7c0-.9.8-1.7 2.1-2.1l3.4-.8c2.3-.6 3.9-2.4 3.9-4.4z"/><path d="M23 19.3v-5h2.5v5c0 .9.8 1.7 2.1 2.1l3.4.7c2.3.7 3.9 2.5 3.9 4.5v5.7h-2.5v-5.7c0-.9-.8-1.7-2.1-2.1l-3.4-.8c-2.3-.6-3.9-2.4-3.9-4.4z"/></g><path d="M18.5 34.9v-4.6c0-1.1-.9-2-2-2h-4.6c-1.1 0-2 .9-2 2v4.6c0 1.1.9 2 2 2h4.6c1.1 0 2-.9 2-2zm10.8.2v-4.6c0-1.1.9-2 2-2h4.6c1.1 0 2 .9 2 2v4.6c0 1.1-.9 2-2 2h-4.6c-1.1 0-2-.9-2-2z" fill="#7fba00"/><path d="M25.89 9.91v3.978H21.91V9.91h3.978m.86-3.01h-5.7a2.16 2.16 0 0 0-2.15 2.151v5.7a2.16 2.16 0 0 0 2.151 2.15h5.7a2.16 2.16 0 0 0 2.15-2.151v-5.7a2.16 2.16 0 0 0-2.151-2.15z" fill="#804998"/><path d="M21.9 9.9h4v4h-4z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Intune_App_Protection.svg b/src/main/webapp/img/lib/mscae/Intune_App_Protection.svg new file mode 100644 index 0000000000000000000000000000000000000000..32f171209660c4525070b88ce2fc6311fb2883d3 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Intune_App_Protection.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="40" fill="#0072c6"><path d="M38 29l7-4.5-7-5.5zM19.5 17.9c-2.4 0-4.4-2-4.4-4.4s2-4.4 4.4-4.4 4.4 2 4.4 4.4-2 4.4-4.4 4.4z"/><path d="M4 22V4h31v6h4V2c0-1-1-2-2-2H2C1 0 0 1 0 2v22c0 1 1 2 2 2h38v-4zm44.4-10H20v3h27v21H36v-8h-3v10.4a1.58 1.58 0 0 0 1.6 1.6h13.8a1.58 1.58 0 0 0 1.6-1.6V13.6a1.58 1.58 0 0 0-1.6-1.6zM43 38h-3v-1h3z"/><path d="M23 25h-7c0 5 0 8-8 8v2h23v-2c-8 0-8-3-8-8z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Job.svg b/src/main/webapp/img/lib/mscae/Job.svg index b82bd290d27bcd5525e024186097489533054c20..ba59069437848b3f6ca3a66116751b7395d84eed 100644 --- a/src/main/webapp/img/lib/mscae/Job.svg +++ b/src/main/webapp/img/lib/mscae/Job.svg @@ -1,17 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#7A7A7A" d="M48,0H2C0.9,0,0,0.9,0,2v6.6v0.7V48c0,1.1,0.9,2,2,2h46c1.1,0,2-0.9,2-2V9.3V8.6V2C50,0.9,49.1,0,48,0z"/> -<path opacity="0.1" fill="#FFFFFF" d="M2,0C0.9,0,0,0.9,0,2v7.3v3.3V48c0,1.1,0.9,2,2,2h19.2L43.6,0H2z"/> -<path fill-rule="evenodd" clip-rule="evenodd" fill="#E5E5E5" d="M34.6,23.8H15.4c-0.8,0-1.5,0.7-1.5,1.7v7.2l2.6,0.7v-7h16.9v7 - l2.6-0.7v-7.2C36.1,24.5,35.4,23.8,34.6,23.8z"/> -<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#E5E5E5" points="26.3,26.2 23.7,26.2 23.7,19.1 26.3,19.1 "/> -<path fill-rule="evenodd" clip-rule="evenodd" fill="#59B4D9" d="M29.3,8h-8.5c-0.9,0-1.7,0.7-1.7,1.7v8c0,0.9,0.7,1.7,1.7,1.7h8.5 - c0.9,0,1.7-0.7,1.7-1.7v-8C30.9,8.7,30.2,8,29.3,8z"/> -<path fill-rule="evenodd" clip-rule="evenodd" fill="#59B4D9" d="M19.4,30.7h-8.5c-0.9,0-1.7,0.7-1.7,1.7v8c0,0.9,0.7,1.7,1.7,1.7 - h8.5c0.9,0,1.7-0.7,1.7-1.7v-8C21.1,31.5,20.3,30.7,19.4,30.7z"/> -<path fill-rule="evenodd" clip-rule="evenodd" fill="#59B4D9" d="M39.1,30.7h-8.5c-0.9,0-1.7,0.7-1.7,1.7v8c0,0.9,0.7,1.7,1.7,1.7 - h8.5c0.9,0,1.7-0.7,1.7-1.7v-8C40.7,31.5,40,30.7,39.1,30.7z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path fill="#7a7a7a" d="M48 0H2C.9 0 0 .9 0 2v46c0 1.1.9 2 2 2h46c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2z"/><path opacity=".1" fill="#fff" d="M2 0C.9 0 0 .9 0 2v46c0 1.1.9 2 2 2h19.2L43.6 0H2z"/><g fill-rule="evenodd"><g fill="#e5e5e5"><path d="M34.6 23.8H15.4c-.8 0-1.5.7-1.5 1.7v7.2l2.6.7v-7h16.9v7l2.6-.7v-7.2c.1-1-.6-1.7-1.4-1.7z"/><path d="M26.3 26.2h-2.6v-7.1h2.6z"/></g><path d="M29.3 8h-8.5c-.9 0-1.7.7-1.7 1.7v8c0 .9.7 1.7 1.7 1.7h8.5c.9 0 1.7-.7 1.7-1.7v-8c-.1-1-.8-1.7-1.7-1.7zm-9.9 22.7h-8.5c-.9 0-1.7.7-1.7 1.7v8c0 .9.7 1.7 1.7 1.7h8.5c.9 0 1.7-.7 1.7-1.7v-8c0-.9-.8-1.7-1.7-1.7zm19.7 0h-8.5c-.9 0-1.7.7-1.7 1.7v8c0 .9.7 1.7 1.7 1.7h8.5c.9 0 1.7-.7 1.7-1.7v-8c-.1-.9-.8-1.7-1.7-1.7z" fill="#59b4d9"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/JourneyHub.svg b/src/main/webapp/img/lib/mscae/JourneyHub.svg index 8634151789b72742820ccd3fa27cd4cd4adedcd7..25963a39a9c30b014e752e2307ec8a3bb70bd659 100644 --- a/src/main/webapp/img/lib/mscae/JourneyHub.svg +++ b/src/main/webapp/img/lib/mscae/JourneyHub.svg @@ -1,93 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - viewBox="0 0 46 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="JourneyHub.svg" - width="46" - height="50" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata4965"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs4963" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview4961" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="23" - inkscape:cy="25" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<rect - x="0" - width="14" - height="50" - id="rect4948" - y="0" - style="fill:#fcd116" /> -<rect - x="16" - width="14" - height="50" - id="rect4950" - y="0" - style="fill:#b8d432" /> -<rect - x="32" - width="14" - height="50" - id="rect4952" - y="0" - style="fill:#59b4d9" /> -<rect - x="0" - y="0" - enable-background="new " - width="14" - height="8.5" - id="rect4954" - style="opacity:0.6;fill:#ff8c00" /> -<rect - x="16" - y="0" - width="14" - height="8.5" - id="rect4956" - style="fill:#7fba00" /> -<rect - x="32" - y="0" - width="14" - height="8.5" - id="rect4958" - style="fill:#3999c6" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="46" height="50"><path d="M0 0h14v50H0z" fill="#fcd116"/><path d="M16 0h14v50H16z" fill="#b8d432"/><path d="M32 0h14v50H32z" fill="#59b4d9"/><path d="M0 0h14v8.5H0z" opacity=".6" fill="#ff8c00"/><path d="M16 0h14v8.5H16z" fill="#7fba00"/><path d="M32 0h14v8.5H32z" fill="#3999c6"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Key.svg b/src/main/webapp/img/lib/mscae/Key.svg index 27a2788b03e32afdeb5b73cab549f6f593466f01..18a59450a9139dff9542f1652f45858309295fc5 100644 --- a/src/main/webapp/img/lib/mscae/Key.svg +++ b/src/main/webapp/img/lib/mscae/Key.svg @@ -1,77 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="31.00325" - height="50.0005" - viewBox="0 0 31.00325 50.0005" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Key.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata5040"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs5038" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview5036" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.020815" - inkscape:cx="7.5926369" - inkscape:cy="21.63856" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 29.33675,19.5245 c 2.222,-2.22 2.222,-5.824 0,-8.045 l -9.812,-9.813 c -2.222,-2.222 -5.824,-2.222 -8.046,0 l -9.813,9.813 c -2.221,2.221 -2.221,5.825 0,8.045 l 8.633,8.633 v 16.641 l 5.202,5.202 4.519,-4.519 v -0.033 l 2.652,-2.653 -2.629,-2.629 2.629,-2.629 -2.629,-2.629 2.629,-2.629 -2.652,-2.653 v -0.784 z m -13.835,-15.486 c 1.783,0 3.229,1.446 3.229,3.229 0,1.784 -1.446,3.229 -3.229,3.229 -1.783,0 -3.229,-1.445 -3.229,-3.229 0,-1.784 1.446,-3.229 3.229,-3.229 z" - id="path5027" - inkscape:connector-curvature="0" - style="fill:#fcd116" /> -<polygon - enable-background="new " - points="24.758,30.008 22.728,29.008 22.728,43.961 24.758,45.961 " - id="polygon5029" - style="opacity:0.4;fill:#ff8c00" - transform="translate(-10.00025,-5e-4)" /> -<rect - x="5.8677502" - y="13.6165" - enable-background="new " - width="18.639999" - height="2.6789999" - id="rect5031" - style="opacity:0.5;fill:#ffffff" /> -<rect - x="5.8677502" - y="17.9755" - enable-background="new " - width="18.639999" - height="2.6789999" - id="rect5033" - style="opacity:0.5;fill:#ffffff" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="31.003" height="50.001"><path d="M29.337 19.525a5.69 5.69 0 0 0 0-8.045l-9.812-9.813a5.69 5.69 0 0 0-8.046 0L1.666 11.48a5.69 5.69 0 0 0 0 8.045l8.633 8.633V44.8L15.5 50l4.52-4.52v-.033l2.652-2.653-2.63-2.63 2.63-2.63-2.63-2.63 2.63-2.63-2.652-2.653v-.784zM15.502 4.04a3.23 3.23 0 0 1 3.229 3.229 3.23 3.23 0 0 1-3.229 3.229 3.23 3.23 0 0 1-3.229-3.229 3.23 3.23 0 0 1 3.229-3.229z" fill="#fcd116"/><path d="M14.758 30.008l-2.03-1V43.96l2.03 2z" opacity=".4" fill="#ff8c00"/><path d="M5.868 13.616h18.64v2.68H5.868zm0 4.36h18.64v2.68H5.868z" opacity=".5" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/KeyVault.svg b/src/main/webapp/img/lib/mscae/KeyVault.svg index 0b7518aa6881606d1f76d285807c68a96efab046..a06e7ffac688f25cce73e3d7f61e7f3972404c3c 100644 --- a/src/main/webapp/img/lib/mscae/KeyVault.svg +++ b/src/main/webapp/img/lib/mscae/KeyVault.svg @@ -1,57 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="44.799999" - height="50" - viewBox="0 0 44.799999 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure KeyVault_COLOR.svg"><metadata - id="metadata3393"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs3391" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview3389" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17.02" - inkscape:cx="22.4" - inkscape:cy="25" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 44.8,27.6 C 44.8,20.3 41.3,13.9 36,9.8 36,10 36,10.3 36,10.5 36,12.7 35.4,14.8 34.5,16.6 37.1,19.5 38.7,23.3 38.7,27.5 38.7,36.5 31.4,43.8 22.4,43.8 13.4,43.8 6.1,36.5 6.1,27.5 6.1,23 7.9,19 10.8,16 10,14.3 9.5,12.4 9.5,10.4 9.5,10 9.5,9.5 9.6,9.1 3.8,13.1 0,19.9 0,27.5 0,40 10,50 22.4,50 34.8,50 44.8,40 44.8,27.6 Z" - id="path3383" - inkscape:connector-curvature="0" - style="fill:#7fba00" /><g - id="g3385" - transform="translate(-2.6,0)"><path - d="M 25.3,0 C 19.6,0 15,4.6 15,10.3 15,15 18.1,18.9 22.4,20.2 L 22.4,30.4 17.6,30.4 17.6,35.6 22.4,35.6 22.4,39.4 28.1,39.4 28.1,20.1 C 32.4,18.9 35.5,14.9 35.5,10.2 35.6,4.6 31,0 25.3,0 Z M 25.3,5.4 C 28,5.4 30.2,7.6 30.2,10.3 30.2,13 28,15.2 25.3,15.2 22.6,15.2 20.4,13 20.4,10.3 20.4,7.6 22.6,5.4 25.3,5.4 Z" - id="path3387" - inkscape:connector-curvature="0" - style="fill:#fcd116" /></g></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="44.8" height="50"><path d="M44.8 27.6c0-7.3-3.5-13.7-8.8-17.8v.7c0 2.2-.6 4.3-1.5 6.1 2.6 2.9 4.2 6.7 4.2 10.9 0 9-7.3 16.3-16.3 16.3S6.1 36.5 6.1 27.5C6.1 23 7.9 19 10.8 16c-.8-1.7-1.3-3.6-1.3-5.6 0-.4 0-.9.1-1.3C3.8 13.1 0 19.9 0 27.5 0 40 10 50 22.4 50s22.4-10 22.4-22.4z" fill="#7fba00"/><path d="M22.7 0C17 0 12.4 4.6 12.4 10.3c0 4.7 3.1 8.6 7.4 9.9v10.2H15v5.2h4.8v3.8h5.7V20.1c4.3-1.2 7.4-5.2 7.4-9.9C33 4.6 28.4 0 22.7 0zm0 5.4a4.91 4.91 0 0 1 4.9 4.9 4.91 4.91 0 0 1-4.9 4.9 4.91 4.91 0 0 1-4.9-4.9 4.91 4.91 0 0 1 4.9-4.9z" fill="#fcd116"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Key_Vaults.svg b/src/main/webapp/img/lib/mscae/Key_Vaults.svg new file mode 100644 index 0000000000000000000000000000000000000000..58ce23b647b4b0f5d1f0b215798039f70be391b8 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Key_Vaults.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="21" height="22"><path d="M10.5 0C7.5 0 5 2.5 5 5.5 5 8 6.6 10 8.7 10.7L7.5 12 9 13.3l-1.5 1.4L9 16l-1.5 1.5 3 2.8 2.5-2.6v-7.3c1.8-1 3-2.8 3-5 0-3-2.5-5.4-5.5-5.4zm1 4s-.2 0-.3.2-.2.2-.3.2H10l-.2-.2-.2-.3V3l.2-.2.3-.2h.9l.2.2.2.3V4z" fill="#fcd116"/><path d="M11 11v7.2l1-1v-6.4a5.5 5.5 0 0 1-1 .2z" opacity=".4" fill="#ff8c00"/><path d="M10.5 9A3.5 3.5 0 0 0 14 6H7a3.5 3.5 0 0 0 3.5 3z" opacity=".4" fill="#fff"/><path d="M16.4 2.8c.3.6.4 1 .5 1.7a9.5 9.5 0 0 1 3 7c0 5.2-4.3 9.5-9.5 9.5S1 16.7 1 11.5a9.5 9.5 0 0 1 3-7l.6-1.7A10.5 10.5 0 0 0 0 11.5a10.5 10.5 0 1 0 21 0c0-3.6-1.8-6.8-4.6-8.7z" fill="#7fba00"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/KeyboardShortcuts.svg b/src/main/webapp/img/lib/mscae/KeyboardShortcuts.svg index c8545b592e5f7502f037615b90eb425ebaed9646..5be245a55bad8d71cd35ef06145918409e4996ee 100644 --- a/src/main/webapp/img/lib/mscae/KeyboardShortcuts.svg +++ b/src/main/webapp/img/lib/mscae/KeyboardShortcuts.svg @@ -1,131 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - viewBox="0 0 50 30.299999" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="KeyboardShortcuts.svg" - width="50" - height="30.299999" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata5157"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs5155" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview5153" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="8.5" - inkscape:cx="11.234721" - inkscape:cy="4.67521" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<polygon - points="6.2,11.9 26.7,11.9 50,11.9 50,34.6 6.2,34.6 " - id="polygon5126" - style="fill:#7a7a7a" - transform="translate(0,-11.9)" /> -<rect - x="10.3" - y="3.7999997" - width="35.700001" - height="3.8" - id="rect5128" - style="opacity:0.6;fill:#e5e5e5" /> -<rect - x="41.299999" - y="9.7000008" - width="4.5" - height="3.8" - id="rect5130" - style="opacity:0.6;fill:#e5e5e5" /> -<rect - x="16.799999" - y="9.7000008" - width="22.299999" - height="3.8" - id="rect5132" - style="opacity:0.6;fill:#e5e5e5" /> -<rect - x="19.799999" - y="15.800001" - width="16.5" - height="3.8" - id="rect5134" - style="opacity:0.6;fill:#e5e5e5" /> -<rect - x="38.700001" - y="15.800001" - width="7.3000002" - height="3.8" - id="rect5136" - style="opacity:0.6;fill:#e5e5e5" /> -<rect - x="10.3" - y="15.800001" - width="7.3000002" - height="3.8" - id="rect5138" - style="opacity:0.6;fill:#e5e5e5" /> -<rect - x="10.3" - y="9.7000008" - width="4.3000002" - height="3.8" - id="rect5140" - style="opacity:0.6;fill:#e5e5e5" /> -<polygon - enable-background="new " - points="26.7,11.9 50,11.9 6.2,34.6 6.2,11.9 " - id="polygon5142" - style="opacity:0.25;fill:#ffffff" - transform="translate(0,-11.9)" /> -<g - id="g5148" - transform="translate(0,-11.9)"> - <rect - x="0.80000001" - y="26.200001" - width="15.2" - height="15.2" - id="rect5144" - style="fill:#7fba00" /> - <path - d="M 15.2,27.1 V 40.6 H 1.7 V 27.1 h 13.5 m 1.6,-1.7 H 0 v 16.8 h 16.8 z" - id="path5146" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -</g> -<polygon - points="12.5,36.4 5.8,29.6 12.5,29.6 " - id="polygon5150" - style="fill:#ffffff" - transform="translate(0,-11.9)" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="30.3"><path d="M6.2 0H50v22.7H6.2z" fill="#7a7a7a"/><path d="M10.3 3.8H46v3.8H10.3zm31 5.9h4.5v3.8h-4.5zm-24.5 0h22.3v3.8H16.8zm3 6.1h16.5v3.8H19.8zm18.9 0H46v3.8h-7.3zm-28.4 0h7.3v3.8h-7.3zm0-6.1h4.3v3.8h-4.3z" opacity=".6" fill="#e5e5e5"/><path d="M26.7 0H50L6.2 22.7V0z" opacity=".25" fill="#fff"/><path d="M.8 14.3H16v15.2H.8z" fill="#7fba00"/><path d="M15.2 15.2v13.5H1.7V15.2h13.5m1.6-1.7H0v16.8h16.8zm-4.3 11l-6.7-6.8h6.7z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Kubernetes.svg b/src/main/webapp/img/lib/mscae/Kubernetes.svg index 0ec148df3d96742249e186ee08e4122d1651aee1..c6b926f5447d78f1303814fa3cac8906160ebb84 100644 --- a/src/main/webapp/img/lib/mscae/Kubernetes.svg +++ b/src/main/webapp/img/lib/mscae/Kubernetes.svg @@ -1,85 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - viewBox="0 174.7524 722.84631 701.96637" - id="svg2" - version="1.1" - sodipodi:docname="Kubernetes.svg" - inkscape:export-filename="/home/thockin/src/kubernetes/new.png" - inkscape:export-xdpi="460.95001" - inkscape:export-ydpi="460.95001" - width="722.84631" - height="701.96637" - inkscape:version="0.92.3 (2405546, 2018-03-11)"> - <defs - id="defs4" /> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="1.0119068" - inkscape:cx="616.35487" - inkscape:cy="295.37316" - inkscape:document-units="px" - inkscape:current-layer="g3052" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:snap-global="false" - fit-margin-top="10" - fit-margin-left="10" - fit-margin-right="10" - fit-margin-bottom="10" /> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-6.3259079,1.2304783e-5)"> - <g - id="g3052"> - <path - style="fill:#326ce5;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 365.14317,175.03119 a 48.051867,47.65863 0 0 0 -18.41489,4.65996 L 95.443773,299.75752 a 48.051867,47.65863 0 0 0 -25.999381,32.3305 L 7.4508108,601.78742 a 48.051867,47.65863 0 0 0 6.5239482,36.54054 48.051867,47.65863 0 0 0 2.731703,3.79224 L 190.63558,858.37464 a 48.051867,47.65863 0 0 0 37.56894,17.93282 l 278.92291,-0.0643 A 48.051867,47.65863 0 0 0 544.69638,858.3425 L 718.56121,642.05593 A 48.051867,47.65863 0 0 0 727.849,601.72314 L 665.75901,332.02375 A 48.051867,47.65863 0 0 0 639.75963,299.69324 L 388.44298,179.69115 a 48.051867,47.65863 0 0 0 -23.29981,-4.65996 z" - id="path3055" - inkscape:connector-curvature="0" - inkscape:export-filename="new.png" - inkscape:export-xdpi="250.55" - inkscape:export-ydpi="250.55" /> - <path - inkscape:connector-curvature="0" - id="path3059" - d="m 367.6331,266.81344 c -8.30639,8.4e-4 -15.04142,7.48258 -15.04043,16.71159 10e-6,0.14164 0.029,0.27699 0.0321,0.41779 -0.0122,1.254 -0.0728,2.76472 -0.0321,3.85652 0.19809,5.32303 1.35842,9.39705 2.05681,14.30127 1.26523,10.49658 2.3254,19.19762 1.67116,27.28489 -0.63626,3.04963 -2.8825,5.83868 -4.88493,7.77731 l -0.35351,6.36326 c -9.02613,0.74783 -18.11264,2.11722 -27.18848,4.1779 -39.0533,8.8671 -72.67751,28.98363 -98.27702,56.14453 -1.6611,-1.13324 -4.56718,-3.21803 -5.43132,-3.85653 -2.68534,0.36264 -5.39934,1.1912 -8.93427,-0.86771 -6.73082,-4.53078 -12.86111,-10.78482 -20.27888,-18.31848 -3.39886,-3.60373 -5.86018,-7.03533 -9.8984,-10.50902 -0.91705,-0.78886 -2.31657,-1.85581 -3.34232,-2.66743 -3.15708,-2.51709 -6.88075,-3.8298 -10.47688,-3.95293 -4.6236,-0.15831 -9.07459,1.64941 -11.98736,5.30272 -5.17823,6.49477 -3.52035,16.42163 3.69584,22.17499 0.0732,0.0583 0.15119,0.10365 0.22496,0.16069 0.99161,0.80382 2.20589,1.83378 3.11736,2.50674 4.28523,3.16394 8.19968,4.78358 12.46942,7.29525 8.99546,5.55526 16.45281,10.16154 22.36782,15.71533 2.30982,2.46218 2.71353,6.80076 3.02094,8.67717 l 4.82065,4.30645 c -25.80621,38.83638 -37.74954,86.80717 -30.69143,135.68528 l -6.29898,1.83184 c -1.66016,2.14383 -4.00607,5.51713 -6.45973,6.52395 -7.73888,2.43754 -16.44857,3.33264 -26.96351,4.435 -4.93667,0.41049 -9.19619,0.16552 -14.42982,1.15696 -1.15189,0.21821 -2.75687,0.63635 -4.01721,0.93199 -0.0438,0.009 -0.0847,0.0222 -0.12855,0.0321 -0.0687,0.0159 -0.15895,0.0493 -0.22496,0.0643 -8.865,2.14196 -14.5599,10.29023 -12.72652,18.31848 1.83381,8.03013 10.49296,12.91345 19.41116,10.99109 0.0644,-0.0147 0.15786,-0.0172 0.22496,-0.0321 0.10068,-0.023 0.18932,-0.0719 0.28924,-0.0964 1.24319,-0.2729 2.80114,-0.57653 3.88866,-0.86772 5.14546,-1.37768 8.87199,-3.40192 13.49782,-5.17417 9.95182,-3.56936 18.19428,-6.55117 26.22435,-7.71304 3.35381,-0.26267 6.88734,2.06932 8.64503,3.05308 l 6.55609,-1.12482 c 15.0869,46.77479 46.70418,84.58125 86.73959,108.30398 l -2.7317,6.55608 c 0.98462,2.54574 2.0706,5.99016 1.33715,8.50422 -2.91931,7.5703 -7.91972,15.56078 -13.61374,24.46904 -2.757,4.1156 -5.57862,7.30951 -8.06656,12.01949 -0.59534,1.12702 -1.35357,2.85827 -1.92826,4.04935 -3.86561,8.27081 -1.03009,17.79677 6.3954,21.37156 7.47214,3.59724 16.74704,-0.19678 20.76094,-8.48435 0.006,-0.0117 0.0264,-0.0204 0.0321,-0.0321 0.004,-0.009 -0.004,-0.0231 0,-0.0321 0.57172,-1.17501 1.3817,-2.71949 1.86399,-3.82439 2.13099,-4.88186 2.84005,-9.06545 4.33858,-13.78706 3.97954,-9.99625 6.16599,-20.48484 11.64421,-27.02044 1.50012,-1.78967 3.9458,-2.47795 6.48145,-3.15684 l 3.40659,-6.17043 c 34.90228,13.39683 73.96979,16.99179 112.99608,8.13083 8.90287,-2.02141 17.49774,-4.63755 25.80655,-7.77732 0.95743,1.69824 2.73672,4.96278 3.21377,5.78478 2.57676,0.83834 5.3893,1.27126 7.6809,4.65997 4.0986,7.00239 6.90153,15.28638 10.3162,25.29235 1.49878,4.72152 2.23948,8.9053 4.37072,13.78706 0.48576,1.11269 1.29168,2.67886 1.86399,3.85652 4.00545,8.3145 13.30975,12.12148 20.79308,8.51649 7.42457,-3.57669 10.26322,-13.10179 6.39539,-21.37156 -0.57476,-1.19104 -1.365,-2.92236 -1.96039,-4.04935 -2.48819,-4.70985 -5.30935,-7.87191 -8.06656,-11.98735 -5.6945,-8.90797 -10.41742,-16.30815 -13.33714,-23.87829 -1.22083,-3.90442 0.20597,-6.33266 1.15696,-8.87 -0.56951,-0.6528 -1.7882,-4.33997 -2.50674,-6.07402 41.60662,-24.56672 72.29544,-63.78305 86.70745,-109.07528 1.94616,0.30586 5.32873,0.90434 6.42754,1.12481 2.26202,-1.4919 4.34187,-3.43849 8.42007,-3.11735 8.03012,1.16145 16.27234,4.1442 26.22435,7.71304 4.62592,1.77201 8.3523,3.82889 13.49782,5.20631 1.08753,0.29113 2.64545,0.56274 3.88866,0.83558 0.1,0.0245 0.18851,0.0734 0.28924,0.0964 0.0672,0.015 0.16059,0.0174 0.22496,0.0321 8.91871,1.91999 17.57941,-2.96048 19.41116,-10.99108 1.83133,-8.02872 -3.86094,-16.17889 -12.72652,-18.31848 -1.28955,-0.29323 -3.11838,-0.79123 -4.37072,-1.0284 -5.23368,-0.99116 -9.49313,-0.74673 -14.42982,-1.15696 -10.515,-1.10181 -19.2245,-1.99787 -26.96351,-4.435 -3.15542,-1.22409 -5.40019,-4.97876 -6.49186,-6.52395 l -6.07403,-1.76757 c 3.14925,-22.78373 2.30008,-46.4956 -3.14949,-70.22083 -5.50031,-23.94613 -15.22078,-45.84719 -28.18474,-65.14307 1.55808,-1.41641 4.5005,-4.022 5.33485,-4.78852 0.2439,-2.69871 0.0344,-5.52822 2.82812,-8.51648 5.91471,-5.5541 13.37266,-10.1596 22.36782,-15.71532 4.2696,-2.51191 8.21649,-4.13109 12.50156,-7.29526 0.96901,-0.71552 2.29221,-1.84865 3.31018,-2.66742 7.21466,-5.7553 8.87574,-15.68157 3.69583,-22.175 -5.1799,-6.49344 -15.21744,-7.10508 -22.4321,-1.34979 -1.02692,0.81332 -2.42038,1.87429 -3.34232,2.66743 -4.03803,3.47392 -6.53186,6.90512 -9.93054,10.50902 -7.41736,7.53405 -13.54829,13.81948 -20.27887,18.35062 -2.91657,1.69796 -7.18852,1.11045 -9.12715,0.99627 l -5.72051,4.08148 c -32.6198,-34.20536 -77.03238,-56.07429 -124.85468,-60.32247 -0.13375,-2.00408 -0.30898,-5.62659 -0.35351,-6.71678 -1.95779,-1.87339 -4.32282,-3.47278 -4.91706,-7.52021 -0.65425,-8.08727 0.43807,-16.78831 1.70329,-27.28489 0.69839,-4.90422 1.85872,-8.97824 2.05681,-14.30127 0.0451,-1.21005 -0.0272,-2.96593 -0.0321,-4.27431 -9.9e-4,-9.22901 -6.73404,-16.71244 -15.04044,-16.71159 z m -18.83268,116.65977 -4.46713,78.898 -0.32138,0.16069 c -0.29962,7.0583 -6.10869,12.69438 -13.24072,12.69438 -2.92151,0 -5.61812,-0.93821 -7.80946,-2.53888 l -0.12855,0.0643 -64.69315,-45.86047 c 19.88284,-19.55117 45.31455,-33.99949 74.62369,-40.65416 5.35387,-1.21561 10.70536,-2.11759 16.0367,-2.76384 z m 37.6975,0 c 34.21863,4.20856 65.86425,19.70304 90.11405,43.45014 l -64.27536,45.57123 -0.22496,-0.0964 c -5.70503,4.16679 -13.74303,3.13293 -18.18993,-2.44246 -1.82163,-2.28405 -2.77743,-4.96966 -2.89239,-7.6809 l -0.0643,-0.0321 z m -151.81839,72.88825 59.06905,52.83434 -0.0643,0.32138 c 5.33163,4.635 6.11786,12.67813 1.67115,18.2542 -1.82151,2.28414 -4.25973,3.81615 -6.87746,4.53142 l -0.0643,0.2571 -75.71637,21.85362 c -3.85373,-35.2385 4.4515,-69.49312 21.98217,-98.05206 z m 265.48936,0.0321 c 8.77651,14.22548 15.42254,30.11392 19.37902,47.3388 3.90903,17.01834 4.89006,34.00626 3.27804,50.42402 l -76.10202,-21.9179 -0.0643,-0.32138 c -6.81473,-1.86248 -11.00284,-8.79453 -9.41634,-15.74746 0.64999,-2.84829 2.16194,-5.25787 4.21004,-7.03815 l -0.0321,-0.16069 58.74768,-52.57724 z M 355.5172,513.27724 h 24.19967 l 15.04043,18.80054 -5.39913,23.46051 -21.72507,10.44474 -21.78934,-10.47688 -5.39913,-23.46051 z m 77.58035,64.33963 c 1.02838,-0.0519 2.05227,0.0407 3.05308,0.22496 l 0.12855,-0.16068 78.31953,13.24072 c -11.4621,32.20257 -33.39523,60.10021 -62.70061,78.76945 l -30.40225,-73.4346 0.0964,-0.12855 c -2.79275,-6.48923 0.002,-14.09899 6.42754,-17.19366 1.64509,-0.79229 3.3638,-1.23101 5.07775,-1.31764 z m -131.53951,0.32138 c 5.97682,0.0838 11.33778,4.23214 12.72652,10.31619 0.65015,2.84825 0.33371,5.67037 -0.73917,8.16297 l 0.22496,0.28924 -30.08086,72.69543 C 255.56551,651.355 233.16467,624.3332 221.1817,591.17902 l 77.64463,-13.17645 0.12855,0.16069 c 0.8685,-0.15982 1.74932,-0.23694 2.60316,-0.22496 z m 65.593,31.84849 c 2.08195,-0.0765 4.1945,0.35066 6.20257,1.31764 2.63221,1.26754 4.6656,3.26333 5.94547,5.65623 h 0.28924 l 38.27597,69.16029 c -4.96749,1.66522 -10.07435,3.08838 -15.29753,4.27431 -29.27309,6.64648 -58.45316,4.63263 -84.87561,-4.37073 l 38.17956,-69.03173 h 0.0643 c 2.29095,-4.2827 6.63576,-6.83773 11.21605,-7.00601 z" - style="font-style:normal;font-variant:normal;font-stretch:normal;font-size:medium;line-height:normal;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;visibility:visible;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.25710142;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" - sodipodi:nodetypes="ccccccccsccccscssccsccccccccscccsccccccccccccccscccscsccsccccscscsccccccccscccscsccccsccccscscscccccccccccccccscccsccccccccccccscccccscccccccccccccccccccccccscccscccccccccscccscccc" - inkscape:export-filename="./path3059.png" - inkscape:export-xdpi="250.55" - inkscape:export-ydpi="250.55" /> - </g> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 174.752 722.846 701.966" width="722.846" height="701.966"><path d="M358.817 175.03a48.37 48.37 0 0 0-18.415 4.66L89.118 299.758c-13.175 6.292-22.744 18.19-26 32.33l-61.994 269.7c-2.892 12.554-.54 25.735 6.524 36.54.848 1.308 1.76 2.573 2.732 3.792L184.3 858.375c9.12 11.335 22.947 17.936 37.57 17.933l278.923-.064c14.616.01 28.443-6.577 37.57-17.9l173.865-216.287c9.125-11.34 12.543-26.187 9.288-40.333l-62.1-269.7c-3.255-14.14-12.825-26.04-26-32.33L382.117 179.69a48.39 48.39 0 0 0-23.3-4.66z" fill="#326ce5"/><path d="M361.307 266.813c-8.306.001-15.04 7.483-15.04 16.712 0 .142.03.277.032.418-.012 1.254-.073 2.765-.032 3.857.198 5.323 1.358 9.397 2.057 14.3 1.265 10.497 2.325 19.198 1.67 27.285-.636 3.05-2.883 5.84-4.885 7.777l-.354 6.363c-9.026.748-18.113 2.117-27.188 4.178-39.053 8.867-72.678 28.984-98.277 56.145-1.66-1.133-4.567-3.218-5.43-3.857-2.685.363-5.4 1.19-8.934-.868-6.73-4.53-12.86-10.785-20.28-18.318-3.4-3.604-5.86-7.035-9.898-10.51-.917-.79-2.317-1.856-3.342-2.667-3.157-2.517-6.88-3.83-10.477-3.953-4.624-.158-9.075 1.65-11.987 5.303-5.178 6.495-3.52 16.422 3.696 22.175.073.058.15.104.225.16.992.804 2.206 1.834 3.117 2.507 4.285 3.164 8.2 4.784 12.47 7.295 8.995 5.555 16.453 10.162 22.368 15.715 2.3 2.462 2.714 6.8 3.02 8.677l4.82 4.306c-25.806 38.836-37.75 86.807-30.69 135.685l-6.3 1.832c-1.66 2.144-4.006 5.517-6.46 6.524-7.74 2.438-16.45 3.333-26.964 4.435-4.937.4-9.196.166-14.43 1.157-1.152.218-2.757.636-4.017.932-.044.01-.085.022-.13.032-.07.016-.16.05-.225.064-8.865 2.142-14.56 10.3-12.727 18.318s10.493 12.913 19.41 10.99c.064-.015.158-.017.225-.032.1-.023.19-.072.29-.096 1.243-.273 2.8-.577 3.89-.868 5.145-1.378 8.872-3.402 13.498-5.174 9.952-3.57 18.194-6.55 26.224-7.713 3.354-.263 6.887 2.07 8.645 3.053l6.556-1.125c15.087 46.775 46.704 84.58 86.74 108.304l-2.732 6.556c.985 2.546 2.07 6 1.337 8.504-2.92 7.57-7.92 15.56-13.614 24.47-2.757 4.116-5.58 7.3-8.067 12.02-.595 1.127-1.354 2.858-1.928 4.05-3.866 8.27-1.03 17.797 6.395 21.372 7.472 3.597 16.747-.197 20.76-8.484.006-.012.026-.02.032-.032s-.004-.023 0-.032c.572-1.175 1.382-2.72 1.864-3.824 2.13-4.882 2.84-9.065 4.34-13.787 3.98-9.996 6.166-20.485 11.644-27.02 1.5-1.8 3.946-2.478 6.48-3.157l3.407-6.17c34.902 13.397 73.97 16.992 112.996 8.13 8.903-2.02 17.498-4.638 25.807-7.777l3.214 5.785c2.577.838 5.39 1.27 7.68 4.66 4.1 7.002 6.902 15.286 10.316 25.292 1.5 4.722 2.24 8.905 4.37 13.787.486 1.113 1.292 2.68 1.864 3.857 4.005 8.314 13.3 12.12 20.793 8.516 7.425-3.577 10.263-13.102 6.395-21.372l-1.96-4.05c-2.488-4.7-5.31-7.872-8.067-11.987-5.695-8.908-10.417-16.308-13.337-23.878-1.22-3.904.206-6.333 1.157-8.87-.57-.653-1.788-4.34-2.507-6.074 41.607-24.567 72.295-63.783 86.707-109.075 1.946.306 5.33.904 6.428 1.125 2.262-1.492 4.342-3.438 8.42-3.117 8.03 1.16 16.272 4.144 26.224 7.713 4.626 1.772 8.352 3.83 13.498 5.206 1.088.29 2.645.563 3.89.836.1.024.19.073.29.096.067.015.16.017.225.032 8.92 1.92 17.58-2.96 19.41-10.99s-3.86-16.18-12.727-18.318c-1.3-.293-3.118-.79-4.37-1.028-5.234-.99-9.493-.747-14.43-1.157-10.515-1.102-19.225-1.998-26.964-4.435-3.155-1.224-5.4-4.98-6.492-6.524l-6.074-1.768c3.15-22.784 2.3-46.496-3.15-70.22-5.5-23.946-15.22-45.847-28.185-65.143l5.335-4.79c.244-2.7.034-5.528 2.828-8.516 5.915-5.554 13.373-10.16 22.368-15.715 4.27-2.512 8.216-4.13 12.502-7.295.97-.716 2.292-1.85 3.3-2.667 7.215-5.755 8.876-15.682 3.696-22.175s-15.217-7.105-22.432-1.35c-1.027.813-2.42 1.874-3.342 2.667-4.038 3.474-6.532 6.905-9.93 10.51-7.417 7.534-13.548 13.82-20.28 18.35-2.917 1.698-7.19 1.1-9.127.996l-5.72 4.08c-32.62-34.205-77.032-56.074-124.855-60.322l-.354-6.717c-1.958-1.873-4.323-3.473-4.917-7.52-.654-8.087.438-16.788 1.703-27.285.698-4.904 1.86-8.978 2.057-14.3.045-1.2-.027-2.966-.032-4.274-.001-9.23-6.734-16.712-15.04-16.712zm-18.833 116.66l-4.467 78.898-.32.16c-.3 7.058-6.11 12.694-13.24 12.694-2.922 0-5.618-.938-7.81-2.54l-.13.064-64.693-45.86c19.883-19.55 45.315-34 74.624-40.654 5.354-1.216 10.705-2.118 16.037-2.764zm37.698 0c34.22 4.21 65.864 19.703 90.114 43.45l-64.275 45.57-.225-.096c-5.705 4.167-13.743 3.133-18.2-2.442a13.17 13.17 0 0 1-2.892-7.681l-.064-.032zM228.354 456.36l59.07 52.834-.064.32c5.332 4.635 6.118 12.678 1.67 18.254a13.26 13.26 0 0 1-6.877 4.531l-.064.257-75.716 21.854c-3.854-35.238 4.45-69.493 21.982-98.052zm265.49.032c8.777 14.225 15.423 30.114 19.38 47.34 3.91 17.018 4.9 34.006 3.278 50.424l-76.102-21.918-.064-.32a13.27 13.27 0 0 1-9.416-15.747 13.15 13.15 0 0 1 4.21-7.038l-.032-.16 58.748-52.577zM349.19 513.277h24.2l15.04 18.8-5.4 23.46-21.725 10.445-21.79-10.477-5.4-23.46zm77.58 64.34c1.028-.052 2.052.04 3.053.225l.13-.16 78.32 13.24c-11.462 32.203-33.395 60.1-62.7 78.77l-30.402-73.435.096-.13a13.28 13.28 0 0 1 6.428-17.194c1.645-.792 3.364-1.23 5.078-1.318zm-131.54.32c5.977.084 11.338 4.232 12.727 10.316.65 2.848.334 5.67-.74 8.163l.225.29-30.08 72.695c-28.124-18.047-50.525-45.07-62.508-78.223l77.645-13.176.13.16c.868-.16 1.75-.237 2.603-.225zm65.593 31.848c2.082-.077 4.195.35 6.203 1.318 2.632 1.268 4.666 3.263 5.945 5.656h.29l38.276 69.16a158.64 158.64 0 0 1-15.298 4.274c-29.273 6.646-58.453 4.633-84.876-4.37l38.18-69.032h.064c2.29-4.283 6.636-6.838 11.216-7.006z" fill="#fff" stroke="#fff" stroke-width=".257"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Kubernetes_Services.svg b/src/main/webapp/img/lib/mscae/Kubernetes_Services.svg new file mode 100644 index 0000000000000000000000000000000000000000..129506f01e92781f1060315d0eafd3e8136ef210 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Kubernetes_Services.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="49.992" height="36.926"><style><![CDATA[.B{fill:#804998}.C{fill:#68217a}]]></style><path d="M22.883 9.412l-7.647 2.92V0l7.647 2.708z" class="B"/><path d="M8.28 2.028v8.1l5.728 2.18V0zM8.91 9.54l-.312-.097V2.737l.312-.088.328-.092.35-.098V9.75l-.35-.108zm1.436.445l-.392-.12v-7.5l1.25-.352v8.25l-.444-.138zm1.84.57l-.508-.157V1.87l.508-.143 1.128-.318v9.496l-.586-.18z" class="C"/><path d="M40.783 9.412l-7.648 2.92V0l7.648 2.708z" class="B"/><path d="M26.18 2.028v8.1l5.728 2.18V0zm.627 7.513l-.312-.097V2.737l.312-.088.328-.092.35-.098V9.75l-.35-.108zm1.436.445l-.392-.12v-7.5l1.25-.352v8.25l-.444-.138zm1.84.57l-.508-.157V1.87l.508-.143 1.128-.318v9.496l-.586-.18z" class="C"/><path d="M22.883 34.006l-7.647 2.92V24.593l7.647 2.71z" class="B"/><path d="M8.28 26.622v8.1l5.728 2.18V24.593zm.628 7.513l-.312-.097V27.33l.312-.088.328-.092.35-.098v7.292l-.35-.108zm1.436.444l-.392-.12v-7.51l.392-.11.86-.242v8.25l-.444-.138zm1.84.57l-.508-.157v-8.53l.508-.143 1.128-.318v9.496l-.586-.18z" class="C"/><path d="M40.783 34.006l-7.648 2.92V24.593l7.648 2.71z" class="B"/><path d="M26.18 26.622v8.1l5.728 2.18V24.593zm.627 7.513l-.312-.097V27.33l.312-.088.328-.092.35-.098v7.292l-.35-.108zm1.436.444l-.392-.12v-7.51l.392-.11.86-.242v8.25l-.444-.138zm1.84.57l-.508-.157v-8.53l.508-.143 1.128-.318v9.496l-.586-.18z" class="C"/><path d="M32.41 21.673l-7.648 2.92V12.26l7.648 2.708z" class="B"/><use xlink:href="#B" class="C"/><path d="M14.602 21.673l-7.648 2.92V12.26l7.648 2.708z" class="B"/><path d="M0 14.29v8.1l5.728 2.18V12.26zm.627 7.513l-.312-.097v-6.707l.312-.088.328-.092.35-.098v7.292l-.35-.108zm1.436.445l-.392-.12v-7.51l.807-.227.445-.127v8.25l-.444-.138zm1.84.57l-.508-.157V14.13l.508-.143 1.128-.318v9.496l-.586-.18z" class="C"/><path d="M49.992 21.673l-7.648 2.92V12.26l7.648 2.708z" class="B"/><use xlink:href="#B" x="17.593" class="C"/><defs ><path id="B" d="M17.807 14.29v8.1l5.728 2.18V12.26zm.627 7.513l-.312-.097v-6.707l.312-.088.328-.092.35-.098v7.292l-.35-.108zm1.436.445l-.392-.12v-7.51l1.25-.352v8.25l-.444-.138zm1.84.57l-.508-.157V14.13l.508-.143 1.128-.318v9.496l-.586-.18z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/KuduKnife.svg b/src/main/webapp/img/lib/mscae/KuduKnife.svg index c97d4859cbf41faac9bd0e6468e306f4238ab15a..ce23b99896c5a5df11de88c6c93dce4a306f3b44 100644 --- a/src/main/webapp/img/lib/mscae/KuduKnife.svg +++ b/src/main/webapp/img/lib/mscae/KuduKnife.svg @@ -1,115 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="40.933495" - height="50" - viewBox="0 0 40.933495 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="KuduKnife.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata5267"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs5265" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview5263" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.020815" - inkscape:cx="24.56084" - inkscape:cy="28.485086" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 9.5,14.8 25.6,25.6 c 4,4 3.8,9.5 3.8,9.5 0,0 -5.9,-0.2 -9.5,-3.8 L 3.8,20.5 Z" - id="path5236" - inkscape:connector-curvature="0" - style="fill:#afafaf" /> -<path - d="m 40.7,0.2 c -0.4,1.4 -1.5,2.6 -3,3.1 -0.4,0.1 -0.9,0.2 -1.3,0.2 L 33.9,2.8 31.7,2.2 31.2,2.1 c -0.7,-0.2 -1.5,0.2 -1.7,1 -0.2,0.7 0.2,1.5 1,1.7 l 4.2,1.1 0.9,0.2 c 0.7,0.1 1.5,0.1 2.2,-0.2 0.6,-0.2 1.1,-0.5 1.6,-0.9 1.3,-1.1 1.9,-3 1.3,-4.8 z" - id="path5238" - inkscape:connector-curvature="0" - style="fill:#999999" /> -<path - d="m 33.1,11.9 c -0.7,0.2 -1.5,-0.2 -1.7,-1 L 29.5,3.8 c -0.2,-0.7 0.2,-1.5 1,-1.7 v 0 c 0.7,-0.2 1.5,0.2 1.7,1 l 1.9,7.1 c 0.2,0.7 -0.3,1.5 -1,1.7 z" - id="path5240" - inkscape:connector-curvature="0" - style="fill:#e5e5e5" /> -<path - d="M 24.2,8.3 C 24,9 24.4,9.8 25.2,10 l 7.1,1.9 c 0.7,0.2 1.5,-0.2 1.7,-1 v 0 C 34.2,10.2 33.8,9.4 33,9.2 L 25.9,7.3 c -0.7,-0.2 -1.5,0.3 -1.7,1 z" - id="path5242" - inkscape:connector-curvature="0" - style="fill:#999999" /> -<path - d="m 27.8,17.1 c -0.7,0.2 -1.5,-0.2 -1.7,-1 L 24.2,9 C 24,8.3 24.4,7.5 25.2,7.3 v 0 c 0.7,-0.2 1.5,0.2 1.7,1 l 1.9,7.1 c 0.2,0.8 -0.2,1.5 -1,1.7 z" - id="path5244" - inkscape:connector-curvature="0" - style="fill:#e5e5e5" /> -<path - d="m 19,13.5 c -0.2,0.7 0.2,1.5 1,1.7 l 7.1,1.9 c 0.7,0.2 1.5,-0.2 1.7,-1 v 0 c 0.2,-0.7 -0.2,-1.5 -1,-1.7 l -7.1,-1.9 c -0.7,-0.1 -1.5,0.3 -1.7,1 z" - id="path5246" - inkscape:connector-curvature="0" - style="fill:#999999" /> -<path - d="m 22.6,22.4 c -0.7,0.2 -1.5,-0.2 -1.7,-1 L 19,14.3 c -0.2,-0.7 0.2,-1.5 1,-1.7 v 0 c 0.7,-0.2 1.5,0.2 1.7,1 l 1.9,7.1 c 0.2,0.7 -0.3,1.5 -1,1.7 z" - id="path5248" - inkscape:connector-curvature="0" - style="fill:#e5e5e5" /> -<path - d="m 13.7,18.8 c -0.2,0.7 0.2,1.5 1,1.7 l 7.1,1.9 c 0.7,0.2 1.5,-0.2 1.7,-1 v 0 c 0.2,-0.7 -0.2,-1.5 -1,-1.7 l -7.1,-1.9 c -0.7,-0.2 -1.5,0.2 -1.7,1 z" - id="path5250" - inkscape:connector-curvature="0" - style="fill:#999999" /> -<path - d="m 17.4,27.6 c -0.7,0.2 -1.5,-0.2 -1.7,-1 l -1.9,-7.1 c -0.2,-0.7 0.2,-1.5 1,-1.7 v 0 c 0.7,-0.2 1.5,0.2 1.7,1 l 1.9,7.1 c 0.2,0.8 -0.3,1.5 -1,1.7 z" - id="path5252" - inkscape:connector-curvature="0" - style="fill:#e5e5e5" /> -<path - d="m 8.5,24 c -0.2,0.7 0.2,1.5 1,1.7 l 7.1,1.9 c 0.7,0.2 1.5,-0.2 1.7,-1 v 0 c 0.2,-0.7 -0.2,-1.5 -1,-1.7 L 10.2,23 C 9.5,22.8 8.7,23.3 8.5,24 Z" - id="path5254" - inkscape:connector-curvature="0" - style="fill:#999999" /> -<path - d="m 14.8,42.6 c 0,4.1 -3.3,7.4 -7.4,7.4 v 0 C 3.3,50 0,46.7 0,42.6 V 7.4 C 0,3.3 3.3,0 7.4,0 v 0 c 4.1,0 7.4,3.3 7.4,7.4 z" - id="path5256" - inkscape:connector-curvature="0" - style="fill:#0072c6" /> -<path - d="M 0,32.6 V 7.4 C 0,3.3 3.3,0 7.4,0 v 0 c 4.1,0 7.4,3.3 7.4,7.4 v 12.2 z" - id="path5258" - inkscape:connector-curvature="0" - style="opacity:0.1;fill:#ffffff" /> -<path - d="m 12.4,27.7 c 0,-0.6 -0.5,-1.2 -1.2,-1.2 0,0 -0.1,0 -0.1,0 0.1,-0.3 0.1,-0.5 0.1,-0.8 0,-1.7 -1.4,-3.1 -3.1,-3.1 -1.4,0 -2.5,0.9 -2.9,2.1 C 5,24.6 4.8,24.6 4.5,24.6 c -1.2,0 -2.1,1 -2.1,2.1 0,1.2 0.9,2.1 2.1,2.1 0,0 0,0 0,0 v 0 h 6.8 v 0 c 0.6,0 1.1,-0.5 1.1,-1.1" - id="path5260" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="40.933" height="50"><path d="M9.5 14.8l25.6 25.6c4 4 3.8 9.5 3.8 9.5s-5.9-.2-9.5-3.8L3.8 20.5z" fill="#afafaf"/><path d="M40.7.2c-.4 1.4-1.5 2.6-3 3.1-.4.1-.9.2-1.3.2l-2.5-.7-2.2-.6-.5-.1a1.37 1.37 0 0 0-1.7 1 1.37 1.37 0 0 0 1 1.7l4.2 1.1.9.2c.7.1 1.5.1 2.2-.2.6-.2 1.1-.5 1.6-.9 1.3-1.1 1.9-3 1.3-4.8z" fill="#999"/><path d="M33.1 11.9a1.37 1.37 0 0 1-1.7-1l-1.9-7.1a1.37 1.37 0 0 1 1-1.7 1.37 1.37 0 0 1 1.7 1l1.9 7.1c.2.7-.3 1.5-1 1.7z" fill="#e5e5e5"/><path d="M24.2 8.3a1.37 1.37 0 0 0 1 1.7l7.1 1.9a1.37 1.37 0 0 0 1.7-1 1.37 1.37 0 0 0-1-1.7l-7.1-1.9c-.7-.2-1.5.3-1.7 1z" fill="#999"/><path d="M27.8 17.1a1.37 1.37 0 0 1-1.7-1L24.2 9a1.37 1.37 0 0 1 1-1.7 1.37 1.37 0 0 1 1.7 1l1.9 7.1c.2.8-.2 1.5-1 1.7z" fill="#e5e5e5"/><path d="M19 13.5a1.37 1.37 0 0 0 1 1.7l7.1 1.9a1.37 1.37 0 0 0 1.7-1 1.37 1.37 0 0 0-1-1.7l-7.1-1.9c-.7-.1-1.5.3-1.7 1z" fill="#999"/><path d="M22.6 22.4a1.37 1.37 0 0 1-1.7-1L19 14.3a1.37 1.37 0 0 1 1-1.7 1.37 1.37 0 0 1 1.7 1l1.9 7.1c.2.7-.3 1.5-1 1.7z" fill="#e5e5e5"/><path d="M13.7 18.8a1.37 1.37 0 0 0 1 1.7l7.1 1.9a1.37 1.37 0 0 0 1.7-1 1.37 1.37 0 0 0-1-1.7l-7.1-1.9a1.37 1.37 0 0 0-1.7 1z" fill="#999"/><path d="M17.4 27.6a1.37 1.37 0 0 1-1.7-1l-1.9-7.1a1.37 1.37 0 0 1 1-1.7 1.37 1.37 0 0 1 1.7 1l1.9 7.1c.2.8-.3 1.5-1 1.7z" fill="#e5e5e5"/><path d="M8.5 24a1.37 1.37 0 0 0 1 1.7l7.1 1.9a1.37 1.37 0 0 0 1.7-1 1.37 1.37 0 0 0-1-1.7L10.2 23c-.7-.2-1.5.3-1.7 1z" fill="#999"/><path d="M14.8 42.6c0 4.1-3.3 7.4-7.4 7.4S0 46.7 0 42.6V7.4C0 3.3 3.3 0 7.4 0s7.4 3.3 7.4 7.4z" fill="#0072c6"/><g fill="#fff"><path d="M0 32.6V7.4C0 3.3 3.3 0 7.4 0s7.4 3.3 7.4 7.4v12.2z" opacity=".1"/><path d="M12.4 27.7c0-.6-.5-1.2-1.2-1.2h-.1c.1-.3.1-.5.1-.8a3.12 3.12 0 0 0-3.1-3.1c-1.4 0-2.5.9-2.9 2.1-.2-.1-.4-.1-.7-.1-1.2 0-2.1 1-2.1 2.1 0 1.2.9 2.1 2.1 2.1h6.8a1.11 1.11 0 0 0 1.1-1.1"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/LaunchPortal.svg b/src/main/webapp/img/lib/mscae/LaunchPortal.svg index 8cdc723c247784e27aa44ff22e8e3eac65891d56..7e30cafe8d7d1e482991eda271d7d1809e9ce550 100644 --- a/src/main/webapp/img/lib/mscae/LaunchPortal.svg +++ b/src/main/webapp/img/lib/mscae/LaunchPortal.svg @@ -1,9 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve"> -<path fill-rule="evenodd" clip-rule="evenodd" fill="#B8D432" d="M20.4,19.2v7.2H3.6V9.6h7.198V6H2.4C1.075,6,0,7.075,0,8.4v19.2 - C0,28.925,1.075,30,2.4,30h19.2c1.325,0,2.4-1.075,2.4-2.4v-8.4H20.4z"/> -<polygon fill="#FCD116" points="30,0 19.2,0 23.221,4.021 7.835,19.406 10.629,22.2 26.015,6.815 30,10.8 "/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30"><path fill-rule="evenodd" fill="#b8d432" d="M20.4 19.2v7.2H3.6V9.6h7.198V6H2.4A2.4 2.4 0 0 0 0 8.4v19.2A2.4 2.4 0 0 0 2.4 30h19.2a2.4 2.4 0 0 0 2.4-2.4v-8.4h-3.6z"/><path fill="#fcd116" d="M30 0H19.2l4.02 4.02L7.835 19.406 10.63 22.2 26.015 6.815 30 10.8z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/LoadTest.svg b/src/main/webapp/img/lib/mscae/LoadTest.svg index 78df76038494fda052bc2c6000f165aff0d62f84..1c9fddd25849899f3d4c71db7286f85e9e885155 100644 --- a/src/main/webapp/img/lib/mscae/LoadTest.svg +++ b/src/main/webapp/img/lib/mscae/LoadTest.svg @@ -1,15 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#59B4D9" d="M48.288,44.623L32.72,17.659V6.743h0.281c1.862,0,3.372-1.51,3.372-3.372S34.863,0,33.001,0H16.016 - c-1.862,0-3.372,1.51-3.372,3.372s1.51,3.372,3.372,3.372h0.281v10.915L0.729,44.623C-0.979,47.58,0.418,50,3.833,50h41.351 - C48.598,50,49.995,47.58,48.288,44.623z"/> -<polygon fill="#B8D432" points="13.551,33.017 7.127,44.143 41.889,44.143 35.466,33.017 "/> -<path fill="#7FBA00" d="M25.334,37.532c1.735,0,3.141-1.406,3.141-3.141c0-0.493-0.117-0.958-0.32-1.374h-5.643 - c-0.203,0.415-0.32,0.88-0.32,1.374C22.193,36.126,23.599,37.532,25.334,37.532z"/> -<circle fill="#7FBA00" cx="29.232" cy="39.956" r="1.541"/> -<path opacity="0.25" fill="#FFFFFF" d="M0.729,44.623l15.568-26.965V6.743h-0.281c-1.862,0-3.372-1.51-3.372-3.372 - S14.153,0,16.016,0l7.319,0v17.572L15.13,50H3.833C0.418,50-0.979,47.58,0.729,44.623z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path fill="#59b4d9" d="M48.288 44.623L32.72 17.66V6.743H33c1.862 0 3.372-1.5 3.372-3.372S34.863 0 33 0H16.016c-1.862 0-3.372 1.5-3.372 3.372s1.5 3.372 3.372 3.372h.28V17.66L.73 44.623C-.98 47.58.418 50 3.833 50h41.35c3.414 0 4.81-2.42 3.104-5.377z"/><path fill="#b8d432" d="M13.55 33.017L7.127 44.143H41.89l-6.423-11.126z"/><g fill="#7fba00"><path d="M25.334 37.532a3.14 3.14 0 0 0 3.141-3.141c0-.493-.117-.958-.32-1.374h-5.643c-.203.415-.32.88-.32 1.374.001 1.735 1.407 3.14 3.142 3.14z"/><circle cx="29.232" cy="39.956" r="1.541"/></g><path opacity=".25" fill="#fff" d="M.73 44.623l15.568-26.965V6.743h-.28c-1.862 0-3.372-1.5-3.372-3.372A3.37 3.37 0 0 1 16.016 0h7.32v17.572L15.13 50H3.833C.418 50-.98 47.58.73 44.623z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Load_Balancer_feature.svg b/src/main/webapp/img/lib/mscae/Load_Balancer_feature.svg index c0a861f820c614776661f869f8b374bca1cc8974..92b658f2e69267cc94c2d7f54b2dab300793d0c9 100644 --- a/src/main/webapp/img/lib/mscae/Load_Balancer_feature.svg +++ b/src/main/webapp/img/lib/mscae/Load_Balancer_feature.svg @@ -1,15 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#7FBA00" d="M25.001,50c-1.232,0-2.392-0.48-3.261-1.352L1.351,28.26C0.492,27.401,0,26.214,0,24.999 - c0-1.214,0.492-2.402,1.351-3.26L21.74,1.351c0.871-0.872,2.029-1.352,3.261-1.352c1.231,0,2.39,0.48,3.261,1.352l20.386,20.388 - C49.521,22.607,50,23.766,50,24.999c0,1.233-0.479,2.392-1.353,3.263L28.262,48.648C27.392,49.52,26.232,50,25.001,50"/> -<path fill="#FFFFFF" d="M45.613,24.66L39,18.048v4.668l-7.016-0.006c-0.677-2.418-2.573-4.328-4.984-5.02V11h4.613L25,4.387 - L18.388,11H23v6.689c-2.407,0.692-4.301,2.596-4.981,5.008L11,22.691v-4.618l-6.613,6.613L11,31.298V26.63l7.022,0.006 - c0.683,2.407,2.574,4.305,4.978,4.996v4.636c-1,0.728-2.528,2.258-2.528,4.04c0,2.481,2.033,4.5,4.514,4.5s4.51-2.019,4.51-4.5 - c0-1.762-1.496-3.274-2.496-4.013v-4.663c2.399-0.689,4.289-2.583,4.975-4.983L39,26.655v4.618L45.613,24.66z"/> -<path fill="#59B4D9" d="M25,19.402c-2.899,0-5.258,2.359-5.258,5.258s2.359,5.258,5.258,5.258s5.258-2.358,5.258-5.258 - S27.899,19.402,25,19.402z"/> -<path opacity="0.15" fill="#FFFFFF" d="M28.262,1.351c-0.871-0.872-2.029-1.352-3.261-1.352c-1.231,0-2.389,0.48-3.26,1.352 - L1.352,21.739C0.492,22.597,0,23.785,0,24.999c0,1.215,0.492,2.403,1.352,3.261l11.543,11.544L34.61,7.698L28.262,1.351z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path fill="#7fba00" d="M25 50c-1.232 0-2.392-.48-3.26-1.352L1.35 28.26A4.64 4.64 0 0 1 0 24.999a4.64 4.64 0 0 1 1.351-3.26L21.74 1.35a4.58 4.58 0 0 1 6.522 0L48.648 21.74C49.52 22.607 50 23.766 50 25s-.48 2.392-1.353 3.263L28.262 48.648A4.58 4.58 0 0 1 25.001 50"/><path fill="#fff" d="M45.613 24.66L39 18.048v4.668l-7.016-.006c-.677-2.418-2.573-4.328-4.984-5.02V11h4.613L25 4.387 18.388 11H23v6.69a7.28 7.28 0 0 0-4.981 5.008L11 22.69v-4.618l-6.613 6.613L11 31.298V26.63l7.022.006A7.28 7.28 0 0 0 23 31.632v4.636c-1 .728-2.528 2.258-2.528 4.04a4.52 4.52 0 0 0 4.514 4.5c2.48 0 4.5-2.02 4.5-4.5 0-1.762-1.496-3.274-2.496-4.013v-4.663a7.28 7.28 0 0 0 4.975-4.983l7.025.006v4.618l6.613-6.613z"/><path fill="#59b4d9" d="M25 19.402c-2.9 0-5.258 2.36-5.258 5.258S22.1 29.918 25 29.918s5.258-2.358 5.258-5.258S27.9 19.402 25 19.402z"/><path opacity=".15" fill="#fff" d="M28.262 1.35a4.58 4.58 0 0 0-3.261-1.352c-1.23 0-2.39.48-3.26 1.352L1.352 21.74C.492 22.597 0 23.785 0 25s.492 2.403 1.352 3.26l11.543 11.544L34.6 7.698 28.262 1.35z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/LocalNetwork.svg b/src/main/webapp/img/lib/mscae/LocalNetwork.svg index 51e07016f81a48cf415c632eb91f19e5770ae304..a2100a9d9cfb275772d809ab9495296d5acd4e19 100644 --- a/src/main/webapp/img/lib/mscae/LocalNetwork.svg +++ b/src/main/webapp/img/lib/mscae/LocalNetwork.svg @@ -1,118 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="50" - width="29.9" - viewBox="0 0 29.9 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="LocalNetwork.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata5461"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs5459" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview5457" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.020815" - inkscape:cx="7.0539346" - inkscape:cy="24.416272" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 29.9,47.5 c 0,1.4 -1.1,2.5 -2.5,2.5 H 2.5 C 1.1,50 0,48.9 0,47.5 V 2.5 C 0,1.1 1.1,0 2.5,0 h 24.9 c 1.4,0 2.5,1.1 2.5,2.5 z" - id="path5436" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<rect - x="4" - y="5" - width="6" - height="7" - id="rect5438" - style="fill:#7a7a7a" /> -<rect - x="12" - y="5" - width="6" - height="7" - id="rect5440" - style="fill:#7a7a7a" /> -<rect - x="20" - y="5" - width="6" - height="7" - id="rect5442" - style="fill:#7a7a7a" /> -<rect - x="4" - y="16" - width="6" - height="7" - id="rect5444" - style="fill:#7a7a7a" /> -<rect - x="12" - y="16" - width="6" - height="7" - id="rect5446" - style="fill:#7a7a7a" /> -<rect - x="20" - y="16" - width="6" - height="7" - id="rect5448" - style="fill:#7a7a7a" /> -<rect - x="4" - y="27" - width="6" - height="7" - id="rect5450" - style="fill:#7a7a7a" /> -<rect - x="12" - y="27" - width="6" - height="7" - id="rect5452" - style="fill:#7a7a7a" /> -<rect - x="20" - y="27" - width="6" - height="7" - id="rect5454" - style="fill:#7a7a7a" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" height="50" width="29.9"><path d="M29.9 47.5c0 1.4-1.1 2.5-2.5 2.5H2.5C1.1 50 0 48.9 0 47.5v-45C0 1.1 1.1 0 2.5 0h24.9c1.4 0 2.5 1.1 2.5 2.5z" fill="#a0a1a2"/><path d="M4 5h6v7H4zm8 0h6v7h-6zm8 0h6v7h-6zM4 16h6v7H4zm8 0h6v7h-6zm8 0h6v7h-6zM4 27h6v7H4zm8 0h6v7h-6zm8 0h6v7h-6z" fill="#7a7a7a"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Local_Network_Gateways.svg b/src/main/webapp/img/lib/mscae/Local_Network_Gateways.svg new file mode 100644 index 0000000000000000000000000000000000000000..0f53b7c8a8f07533f0a052e79f33d383c4769769 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Local_Network_Gateways.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="50.1" height="50"><path d="M25 50c-1.2 0-2.4-.5-3.3-1.4L1.4 28.3C.5 27.4 0 26.2 0 25s.5-2.4 1.4-3.3L21.7 1.4C22.6.5 23.8 0 25 0s2.4.5 3.3 1.4l20.4 20.4c.9.9 1.4 2 1.4 3.3 0 1.2-.5 2.4-1.4 3.3L28.3 48.6c-.9.9-2.1 1.4-3.3 1.4" fill="#7fba00"/><g fill="#fff"><path d="M28.3 1.4C27.4.5 26.2 0 25 0s-2.4.5-3.3 1.4L1.4 21.7C.5 22.6 0 23.8 0 25s.5 2.4 1.4 3.3l11.5 11.5L34.6 7.7z" opacity=".15"/><path d="M23.1 11v9.6H27V11h4.6L25 4.4 18.4 11zm3.8 28v-9.4H23V39h-4.6l6.6 6.6 6.6-6.6zm7.8-12h8.9v-4h-8.9v-4.6L28.1 25l6.6 6.6zm-19.3-4h-9v4h9v4.6L22 25l-6.6-6.6z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Location.svg b/src/main/webapp/img/lib/mscae/Location.svg index 6e908ab7fb04e1aefbde8cfcdde69ae703e205ab..e15ade07476780ce1b79924ca1c9946b9cc48b8b 100644 --- a/src/main/webapp/img/lib/mscae/Location.svg +++ b/src/main/webapp/img/lib/mscae/Location.svg @@ -1,75 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="23.156" - height="50.000999" - viewBox="0 0 23.156 50.000999" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Location.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata5634"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs5632" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview5630" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="11" - inkscape:cy="25.001" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 7.666,38.421 c 0,2.161 1.752,3.914 3.913,3.914 2.162,0 3.914,-1.753 3.914,-3.914 0,-1.43 -0.775,-2.666 -1.92,-3.35 -0.662,1.107 -1.106,1.822 -1.193,1.96 l -0.801,1.286 -0.801,-1.286 c -0.086,-0.138 -0.531,-0.853 -1.193,-1.96 -1.146,0.684 -1.919,1.92 -1.919,3.35" - id="path5619" - inkscape:connector-curvature="0" - style="opacity:0.8;fill:#3e3e3e" /> -<path - d="m 3.668,38.421 c 0,4.363 3.549,7.911 7.909,7.911 4.363,0 7.912,-3.548 7.912,-7.911 0,-2.896 -1.569,-5.426 -3.895,-6.804 -0.238,0.416 -0.471,0.82 -0.693,1.2 1.913,1.138 3.203,3.221 3.203,5.604 0,3.599 -2.928,6.525 -6.527,6.525 -3.598,0 -6.524,-2.926 -6.524,-6.525 0,-2.383 1.289,-4.466 3.201,-5.604 -0.221,-0.38 -0.453,-0.784 -0.69,-1.2 -2.328,1.378 -3.896,3.908 -3.896,6.804" - id="path5621" - inkscape:connector-curvature="0" - style="opacity:0.5;fill:#3e3e3e" /> -<path - d="m 17.381,28.417 c -0.227,0.413 -0.448,0.816 -0.668,1.214 3.02,1.77 5.058,5.044 5.058,8.79 0,5.62 -4.574,10.192 -10.193,10.192 -5.621,0 -10.192,-4.572 -10.192,-10.192 0,-3.747 2.038,-7.02 5.057,-8.79 C 6.224,29.233 6,28.83 5.776,28.417 2.328,30.424 0,34.151 0,38.421 c 0,6.385 5.193,11.58 11.578,11.58 6.385,0 11.578,-5.195 11.578,-11.58 0,-4.27 -2.328,-7.996 -5.775,-10.004" - id="path5623" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#3e3e3e" /> -<path - d="m 15.492,10.553 c 0,2.161 -1.752,3.914 -3.914,3.914 -2.161,0 -3.914,-1.753 -3.914,-3.914 0,-2.161 1.753,-3.914 3.914,-3.914 2.162,0 3.914,1.753 3.914,3.914 M 11.579,0 C 5.186,0 0.006,5.183 0.006,11.574 c 0,6.393 11.573,24.958 11.573,24.958 0,0 11.574,-18.565 11.574,-24.958 C 23.152,5.183 17.97,0 11.579,0" - id="path5625" - inkscape:connector-curvature="0" - style="fill:#b8d432" /> -<path - d="m 11.579,14.466 c -2.161,0 -3.913,-1.752 -3.913,-3.913 0,-2.162 1.752,-3.914 3.913,-3.914 1.484,0 2.761,0.837 3.425,2.056 L 17.362,1.56 C 15.661,0.573 13.688,0.001 11.579,0.001 5.186,0.001 0.005,5.182 0.005,11.573 c 0,3.98 4.484,12.673 7.87,18.672 l 5.342,-16.148 c -0.501,0.231 -1.051,0.369 -1.638,0.369" - id="path5627" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#ffffff" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="23.156" height="50.001"><g fill="#3e3e3e"><path d="M7.666 38.42c0 2.16 1.752 3.914 3.913 3.914s3.914-1.753 3.914-3.914c0-1.43-.775-2.666-1.92-3.35l-1.193 1.96-.8 1.286-.8-1.286-1.193-1.96c-1.146.684-1.92 1.92-1.92 3.35" opacity=".8"/><path d="M3.668 38.42a7.92 7.92 0 0 0 7.909 7.911c4.363 0 7.912-3.548 7.912-7.91 0-2.896-1.57-5.426-3.895-6.804l-.693 1.2c1.913 1.138 3.203 3.22 3.203 5.604 0 3.6-2.928 6.525-6.527 6.525S5.053 42.02 5.053 38.42c0-2.383 1.29-4.466 3.2-5.604l-.7-1.2c-2.328 1.378-3.896 3.908-3.896 6.804" opacity=".5"/><path d="M17.38 28.417l-.668 1.214c3.02 1.77 5.058 5.044 5.058 8.8 0 5.62-4.574 10.192-10.193 10.192S1.386 44.04 1.386 38.42c0-3.747 2.038-7.02 5.057-8.8l-.667-1.214C2.328 30.424 0 34.15 0 38.42 0 44.806 5.193 50 11.578 50s11.578-5.195 11.578-11.58c0-4.27-2.328-7.996-5.775-10.004" opacity=".2"/></g><path d="M15.492 10.553c0 2.16-1.752 3.914-3.914 3.914s-3.914-1.753-3.914-3.914S9.417 6.64 11.578 6.64s3.914 1.753 3.914 3.914M11.58 0C5.186 0 .006 5.183.006 11.574S11.58 36.532 11.58 36.532s11.574-18.565 11.574-24.958A11.58 11.58 0 0 0 11.579 0" fill="#b8d432"/><path d="M11.58 14.466c-2.16 0-3.913-1.752-3.913-3.913S9.418 6.64 11.58 6.64c1.484 0 2.76.837 3.425 2.056l2.358-7.135C15.66.573 13.688.001 11.58.001 5.186.001.005 5.182.005 11.573c0 3.98 4.484 12.673 7.87 18.672l5.342-16.148c-.5.23-1.05.37-1.638.37" opacity=".2" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Log.svg b/src/main/webapp/img/lib/mscae/Log.svg index 2a927f56efc957842ab7bc386a4284e42402703a..c0691ed5f014d8f062d812dbd634c4f2b16c42e1 100644 --- a/src/main/webapp/img/lib/mscae/Log.svg +++ b/src/main/webapp/img/lib/mscae/Log.svg @@ -1,71 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="44.992001" - height="50" - viewBox="-10.5 -9.5 44.992001 50" - enable-background="new -10.5 -9.5 50 50" - xml:space="preserve" - sodipodi:docname="Log.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata5727"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs5725" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview5723" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.020815" - inkscape:cx="19.874043" - inkscape:cy="25.393188" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 32.492,35.865 h 2 V -9.5 H -3.841 -6.508 c -1.293,0.167 -3.992,3.3 -3.992,3.751 0,0.187 0.059,43.882 0.059,43.882 0,1.307 1.06,2.367 2.368,2.367 h 37.565 v -0.729 z" - id="path5714" - inkscape:connector-curvature="0" - style="fill:#0072c6" /> -<path - d="m -4.726,-7.5 c -1.105,0 -1.58,0.185 -2.507,1 -2.275,2 0.39,2 1.495,2 h 35.23 v 44.271 l 3,-3.906 V -7.5 Z" - id="path5716" - inkscape:connector-curvature="0" - style="fill:#e5e5e5" /> -<polygon - enable-background="new " - points="34.492,-7.5 31.492,-4.5 31.492,39.771 34.492,35.865 " - id="polygon5718" - style="opacity:0.5;fill:#a0a1a2" - transform="translate(-2)" /> -<path - d="m 20.492,10.5 c 0,1.105 -0.895,2 -2,2 h -17 c -1.105,0 -2,-0.895 -2,-2 v -5 c 0,-1.105 0.895,-2 2,-2 h 17 c 1.105,0 2,0.895 2,2 z" - id="path5720" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="44.992" height="50" viewBox="-10.5 -9.5 44.992 50"><path d="M32.492 35.865h2V-9.5h-41C-7.8-9.333-10.5-6.2-10.5-5.75l.06 43.882A2.37 2.37 0 0 0-8.073 40.5h37.565v-.73z" fill="#0072c6"/><path d="M-4.726-7.5c-1.105 0-1.58.185-2.507 1-2.275 2 .4 2 1.495 2h35.23v44.27l3-3.906V-7.5z" fill="#e5e5e5"/><path d="M32.492-7.5l-3 3v44.27l3-3.906z" opacity=".5" fill="#a0a1a2"/><path d="M20.492 10.5a2 2 0 0 1-2 2h-17a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h17a2 2 0 0 1 2 2z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/LogDiagnostics.svg b/src/main/webapp/img/lib/mscae/LogDiagnostics.svg index 62ba85c473135e4675cbc16d1ab6eeab2832a357..000ae69c0b94a2ba1c1490ea9fa3f3edd0a0d94c 100644 --- a/src/main/webapp/img/lib/mscae/LogDiagnostics.svg +++ b/src/main/webapp/img/lib/mscae/LogDiagnostics.svg @@ -1,75 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="44.992001" - height="50" - viewBox="-10.5 -9.5 44.992001 50" - enable-background="new -10.5 -9.5 50 50" - xml:space="preserve" - sodipodi:docname="LogDiagnostics.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata5792"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs5790" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview5788" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="23" - inkscape:cy="25" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 32.492,35.865 h 2 V -9.5 H -3.841 -6.508 c -1.293,0.167 -3.992,3.3 -3.992,3.751 0,0.187 0.059,43.882 0.059,43.882 0,1.307 1.06,2.367 2.368,2.367 h 37.565 v -0.729 z" - id="path5777" - inkscape:connector-curvature="0" - style="fill:#7fba00" /> -<path - d="m -4.726,-7.5 c -1.105,0 -1.58,0.185 -2.507,1 -2.275,2 0.39,2 1.495,2 h 35.23 v 44.271 l 3,-3.906 V -7.5 Z" - id="path5779" - inkscape:connector-curvature="0" - style="fill:#e5e5e5" /> -<polygon - enable-background="new " - points="34.492,-7.5 31.492,-4.5 31.492,39.771 34.492,35.865 " - id="polygon5781" - style="opacity:0.5;fill:#a0a1a2" - transform="translate(-2)" /> -<g - id="g5785" - transform="translate(-2)"> - <path - d="M 15.417,29.203 11.115,11.622 8.874,17.698 H 0.492 c -0.828,0 -1.5,-0.671 -1.5,-1.5 0,-0.829 0.672,-1.5 1.5,-1.5 h 6.29 l 4.915,-13.32 4.507,18.419 2.197,-5.099 h 7.091 c 0.828,0 1.5,0.671 1.5,1.5 0,0.829 -0.672,1.5 -1.5,1.5 h -5.116 z" - id="path5783" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -</g> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="44.992" height="50" viewBox="-10.5 -9.5 44.992 50"><path d="M32.492 35.865h2V-9.5h-41C-7.8-9.333-10.5-6.2-10.5-5.75l.06 43.882A2.37 2.37 0 0 0-8.073 40.5h37.565v-.73z" fill="#7fba00"/><path d="M-4.726-7.5c-1.105 0-1.58.185-2.507 1-2.275 2 .4 2 1.495 2h35.23v44.27l3-3.906V-7.5z" fill="#e5e5e5"/><path d="M32.492-7.5l-3 3v44.27l3-3.906z" opacity=".5" fill="#a0a1a2"/><path d="M13.417 29.203l-4.302-17.58-2.24 6.076h-8.382a1.5 1.5 0 1 1 0-3h6.3l4.915-13.32 4.507 18.42 2.197-5.1h7.09a1.5 1.5 0 1 1 0 3h-5.116z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/LogStreaming.svg b/src/main/webapp/img/lib/mscae/LogStreaming.svg index 777d4ded83b42b0079b83503f694da1ec31a49b1..5f36c22f5a833fa5a057a0fe8a6138852245c865 100644 --- a/src/main/webapp/img/lib/mscae/LogStreaming.svg +++ b/src/main/webapp/img/lib/mscae/LogStreaming.svg @@ -1,140 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="44.992001" - height="50" - viewBox="-10.5 -9.5 44.992001 50" - enable-background="new -10.5 -9.5 50 50" - xml:space="preserve" - sodipodi:docname="LogStreaming.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata6005"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs6003" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview6001" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="8.5" - inkscape:cx="-1.0073126" - inkscape:cy="7.0652999" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 32.492,35.865 h 2 V -9.5 H -3.841 -6.508 c -1.293,0.167 -3.992,3.3 -3.992,3.751 0,0.187 0.059,43.882 0.059,43.882 0,1.307 1.06,2.367 2.368,2.367 h 37.565 v -0.729 z" - id="path5964" - inkscape:connector-curvature="0" - style="fill:#ff8c00" /> -<path - d="m -4.726,-7.5 c -1.105,0 -1.58,0.185 -2.507,1 -2.275,2 0.39,2 1.495,2 h 35.23 v 44.271 l 3,-3.906 V -7.5 Z" - id="path5966" - inkscape:connector-curvature="0" - style="fill:#e5e5e5" /> -<polygon - enable-background="new " - points="34.5,-7.5 31.5,-4.5 31.5,39.771 34.5,35.865 " - id="polygon5968" - style="opacity:0.5;fill:#a0a1a2" - transform="translate(-2.008)" /> -<g - id="g5980" - transform="translate(-2.008)"> - <path - d="m 7.048,17.125 c 0,-1.332 0.533,-2.542 1.396,-3.428 L 6.548,11.8 c -1.349,1.373 -2.183,3.253 -2.183,5.325 0,2.096 0.853,3.996 2.229,5.373 L 8.49,20.602 C 7.6,19.71 7.048,18.481 7.048,17.125 Z" - id="path5970" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="m 16.886,17.125 c 0,1.356 -0.552,2.586 -1.442,3.477 l 1.896,1.896 c 1.377,-1.377 2.229,-3.277 2.229,-5.373 0,-2.072 -0.834,-3.952 -2.183,-5.325 l -1.896,1.896 c 0.863,0.887 1.396,2.096 1.396,3.429 z" - id="path5972" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="m 21.134,17.125 c 0,2.527 -1.028,4.819 -2.688,6.479 l 1.896,1.896 c 2.146,-2.146 3.475,-5.108 3.475,-8.375 0,-3.243 -1.311,-6.185 -3.429,-8.327 l -1.896,1.896 c 1.633,1.656 2.642,3.927 2.642,6.431 z" - id="path5974" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="m 2.8,17.125 c 0,-2.503 1.01,-4.775 2.642,-6.431 L 3.546,8.797 c -2.118,2.142 -3.429,5.084 -3.429,8.327 0,3.267 1.329,6.23 3.475,8.375 L 5.488,23.603 C 3.828,21.944 2.8,19.652 2.8,17.125 Z" - id="path5976" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="m 14.225,14.961 c -0.57,-0.594 -1.37,-0.966 -2.258,-0.966 -0.888,0 -1.688,0.372 -2.258,0.966 -0.539,0.562 -0.872,1.324 -0.872,2.164 0,0.864 0.35,1.647 0.917,2.213 0.566,0.567 1.349,0.917 2.213,0.917 0.864,0 1.647,-0.35 2.213,-0.917 0.567,-0.566 0.917,-1.349 0.917,-2.213 0,-0.841 -0.333,-1.602 -0.872,-2.164 z" - id="path5978" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -</g> -<path - d="m 32.492,35.865 h 2 V -9.5 H -3.841 -6.508 c -1.293,0.167 -3.992,3.3 -3.992,3.751 0,0.187 0.059,43.882 0.059,43.882 0,1.307 1.06,2.367 2.368,2.367 h 37.565 v -0.729 z" - id="path5982" - inkscape:connector-curvature="0" - style="fill:#ff8c00" /> -<path - d="m -4.726,-7.5 c -1.105,0 -1.58,0.185 -2.507,1 -2.275,2 0.39,2 1.495,2 h 35.23 v 44.271 l 3,-3.906 V -7.5 Z" - id="path5984" - inkscape:connector-curvature="0" - style="fill:#e5e5e5" /> -<polygon - enable-background="new " - points="34.5,-7.5 31.5,-4.5 31.5,39.771 34.5,35.865 " - id="polygon5986" - style="opacity:0.5;fill:#a0a1a2" - transform="translate(-2.008)" /> -<g - id="g5998" - transform="translate(-2.008)"> - <path - d="m 7.048,17.125 c 0,-1.332 0.533,-2.542 1.396,-3.428 L 6.548,11.8 c -1.349,1.373 -2.183,3.253 -2.183,5.325 0,2.096 0.853,3.996 2.229,5.373 L 8.49,20.602 C 7.6,19.71 7.048,18.481 7.048,17.125 Z" - id="path5988" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="m 16.886,17.125 c 0,1.356 -0.552,2.586 -1.442,3.477 l 1.896,1.896 c 1.377,-1.377 2.229,-3.277 2.229,-5.373 0,-2.072 -0.834,-3.952 -2.183,-5.325 l -1.896,1.896 c 0.863,0.887 1.396,2.096 1.396,3.429 z" - id="path5990" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="m 21.134,17.125 c 0,2.527 -1.028,4.819 -2.688,6.479 l 1.896,1.896 c 2.146,-2.146 3.475,-5.108 3.475,-8.375 0,-3.243 -1.311,-6.185 -3.429,-8.327 l -1.896,1.896 c 1.633,1.656 2.642,3.927 2.642,6.431 z" - id="path5992" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="m 2.8,17.125 c 0,-2.503 1.01,-4.775 2.642,-6.431 L 3.546,8.797 c -2.118,2.142 -3.429,5.084 -3.429,8.327 0,3.267 1.329,6.23 3.475,8.375 L 5.488,23.603 C 3.828,21.944 2.8,19.652 2.8,17.125 Z" - id="path5994" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="m 14.225,14.961 c -0.57,-0.594 -1.37,-0.966 -2.258,-0.966 -0.888,0 -1.688,0.372 -2.258,0.966 -0.539,0.562 -0.872,1.324 -0.872,2.164 0,0.864 0.35,1.647 0.917,2.213 0.566,0.567 1.349,0.917 2.213,0.917 0.864,0 1.647,-0.35 2.213,-0.917 0.567,-0.566 0.917,-1.349 0.917,-2.213 0,-0.841 -0.333,-1.602 -0.872,-2.164 z" - id="path5996" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -</g> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="44.992" height="50" viewBox="-10.5 -9.5 44.992 50"><g fill="#fff"><use xlink:href="#B"/><use xlink:href="#C"/><use xlink:href="#D"/><use xlink:href="#E"/><use xlink:href="#F"/></g><path d="M32.492 35.865h2V-9.5h-41C-7.8-9.333-10.5-6.2-10.5-5.75l.06 43.882A2.37 2.37 0 0 0-8.073 40.5h37.565v-.73z" fill="#ff8c00"/><path d="M-4.726-7.5c-1.105 0-1.58.185-2.507 1-2.275 2 .4 2 1.495 2h35.23v44.27l3-3.906V-7.5z" fill="#e5e5e5"/><path d="M32.492-7.5l-3 3v44.27l3-3.906z" opacity=".5" fill="#a0a1a2"/><g fill="#fff"><use xlink:href="#B"/><use xlink:href="#C"/><use xlink:href="#D"/><use xlink:href="#E"/><use xlink:href="#F"/></g><defs ><path id="B" d="M5.04 17.125a4.9 4.9 0 0 1 1.396-3.428L4.54 11.8c-1.35 1.373-2.183 3.253-2.183 5.325a7.58 7.58 0 0 0 2.229 5.373l1.896-1.896a4.91 4.91 0 0 1-1.442-3.477z"/><path id="C" d="M14.878 17.125c0 1.356-.552 2.586-1.442 3.477l1.896 1.896c1.377-1.377 2.23-3.277 2.23-5.373 0-2.072-.834-3.952-2.183-5.325l-1.896 1.896c.863.887 1.396 2.096 1.396 3.43z"/><path id="D" d="M19.126 17.125a9.14 9.14 0 0 1-2.688 6.479l1.896 1.896c2.146-2.146 3.475-5.108 3.475-8.375a11.81 11.81 0 0 0-3.429-8.327l-1.896 1.896c1.633 1.656 2.642 3.927 2.642 6.43z"/><path id="E" d="M.792 17.125c0-2.503 1-4.775 2.642-6.43L1.538 8.797a11.81 11.81 0 0 0 .046 16.702l1.896-1.896c-1.66-1.66-2.688-3.95-2.688-6.478z"/><path id="F" d="M12.217 14.96a3.12 3.12 0 0 0-4.516 0c-.54.562-.872 1.324-.872 2.164 0 .864.35 1.647.917 2.213s1.35.917 2.213.917 1.647-.35 2.213-.917.917-1.35.917-2.213c0-.84-.333-1.602-.872-2.164z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Log_Analytics_Workspaces.svg b/src/main/webapp/img/lib/mscae/Log_Analytics_Workspaces.svg new file mode 100644 index 0000000000000000000000000000000000000000..4835e1ce45097f218cac2926557b4a80c0a87ff4 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Log_Analytics_Workspaces.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48"><path d="M0 25h10v10H0zm0-13h10v10H0zm0 26h10v10H0zm13 0h10v10H13zm13 0h10v10H26z" fill="#a0a1a2" fill-rule="evenodd"/><path d="M30.5 0C20.705 0 13 7.705 13 17.5V35h17.5C40.295 35 48 27.295 48 17.5S40.295 0 30.5 0z" fill="#0072c6" fill-rule="evenodd"/><path d="M20 15h3v11h-3zm7 3h3v8h-3zm7-7h3v15h-3z" fill-rule="evenodd" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Logic_Apps.svg b/src/main/webapp/img/lib/mscae/Logic_Apps.svg index 4da1849b74115dbf4999fad36d25628c465ad352..9cdf5ca7cfbc6ba11c0e09ed2ef28786460a4d71 100644 --- a/src/main/webapp/img/lib/mscae/Logic_Apps.svg +++ b/src/main/webapp/img/lib/mscae/Logic_Apps.svg @@ -1,98 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="38.799999" - viewBox="0 0 50 38.799999" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure Logic Apps_COLOR.svg"><metadata - id="metadata29"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs27" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview25" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="10.363697" - inkscape:cx="25.794187" - inkscape:cy="14.543704" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><style - type="text/css" - id="style3"> - .st0{fill:#59B4D9;} - .st1{fill:#7FBA00;} - .st2{fill:#0072C6;} -</style><path - class="st0" - d="M 26,15.7 26,10.7 23.5,10.7 23.5,15.7 C 23.5,16.6 22.7,17.4 21.4,17.8 L 18,18.5 C 15.7,19.2 14.1,21 14.1,23 L 14.1,28.7 16.6,28.7 16.6,23 C 16.6,22.1 17.4,21.3 18.7,20.9 L 22.1,20.1 C 24.4,19.5 26,17.7 26,15.7 Z" - id="path5" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><g - id="g7" - transform="translate(0,-5.6)"><path - class="st1" - d="M 19.6,36.9 19.6,32.3 C 19.6,31.2 18.7,30.3 17.6,30.3 L 13,30.3 C 11.9,30.3 11,31.2 11,32.3 L 11,36.9 C 11,38 11.9,38.9 13,38.9 L 17.6,38.9 C 18.7,38.9 19.6,38 19.6,36.9 Z" - id="path9" - inkscape:connector-curvature="0" - style="fill:#7fba00" /></g><path - class="st0" - d="M 23.2,15.7 23.2,10.7 25.7,10.7 25.7,15.7 C 25.7,16.6 26.5,17.4 27.8,17.8 L 32,18.7 C 34.3,19.4 35.9,21.2 35.9,23.2 L 35.9,28.9 33.4,28.9 33.4,23.2 C 33.4,22.3 32.6,21.5 31.3,21.1 L 27.1,20.2 C 24.8,19.5 23.2,17.7 23.2,15.7 Z" - id="path11" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><g - id="g13" - transform="translate(0,-5.6)"><path - class="st1" - d="M 30.4,37.1 30.4,32.5 C 30.4,31.4 31.3,30.5 32.4,30.5 L 37,30.5 C 38.1,30.5 39,31.4 39,32.5 L 39,37.1 C 39,38.2 38.1,39.1 37,39.1 L 32.4,39.1 C 31.3,39.1 30.4,38.2 30.4,37.1 Z" - id="path15" - inkscape:connector-curvature="0" - style="fill:#7fba00" /></g><rect - x="23.200001" - y="10.699999" - class="st0" - width="2.8" - height="4.8000002" - id="rect17" - style="fill:#59b4d9" /><path - class="st2" - d="M 26.5,6.1 26.5,9.8 22.8,9.8 22.8,6.1 26.5,6.1 M 27.3,3.3 22,3.3 C 20.9,3.3 20,4.2 20,5.3 L 20,10.6 C 20,11.7 20.9,12.6 22,12.6 L 27.3,12.6 C 28.4,12.6 29.3,11.7 29.3,10.6 L 29.3,5.3 C 29.3,4.2 28.4,3.3 27.3,3.3 L 27.3,3.3 Z" - id="path19" - inkscape:connector-curvature="0" - style="fill:#0072c6" /><path - class="st0" - d="M 7.9,38.8 C 5.8,38.8 4.3,38.4 3.4,37.7 2.5,36.9 2.1,35.6 2.1,33.7 L 2.1,23.3 C 2.1,21.6 1.4,20.7 0,20.7 L 0,18.1 C 1.4,18.1 2.1,17.2 2.1,15.4 L 2.1,5.2 C 2.1,3.3 2.5,1.9 3.4,1.1 4.3,0.3 5.8,0 7.9,0 L 7.9,2.6 C 6.4,2.6 5.6,3.4 5.6,5.1 L 5.6,15.1 C 5.6,17.4 4.9,18.8 3.4,19.4 L 3.4,19.4 C 4.8,20 5.6,21.4 5.6,23.7 L 5.6,33.6 C 5.6,34.5 5.8,35.2 6.1,35.6 6.5,36 7,36.2 7.8,36.2 L 7.9,38.8 C 7.8,38.8 7.9,38.8 7.9,38.8 Z" - id="path21" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><path - class="st0" - d="M 42.1,0 C 44.2,0 45.7,0.4 46.6,1.1 47.5,1.9 47.9,3.2 47.9,5.1 L 47.9,15.5 C 47.9,17.2 48.6,18.1 50,18.1 L 50,20.7 C 48.6,20.7 47.9,21.6 47.9,23.4 L 47.9,33.5 C 47.9,35.4 47.5,36.8 46.6,37.6 45.7,38.4 44.2,38.8 42.1,38.8 L 42.1,36.2 C 43.6,36.2 44.4,35.4 44.4,33.7 L 44.4,23.7 C 44.4,21.4 45.1,20 46.6,19.4 L 46.6,19.4 C 45.2,18.8 44.4,17.4 44.4,15.1 L 44.4,5.2 C 44.4,4.3 44.2,3.6 43.9,3.2 43.5,2.8 43,2.6 42.2,2.6 L 42.1,0 42.1,0 Z" - id="path23" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="38.8"><path d="M26 15.7v-5h-2.5v5c0 .9-.8 1.7-2.1 2.1l-3.4.7c-2.3.7-3.9 2.5-3.9 4.5v5.7h2.5V23c0-.9.8-1.7 2.1-2.1l3.4-.8c2.3-.6 3.9-2.4 3.9-4.4z" fill="#59b4d9"/><path d="M19.6 31.3v-4.6c0-1.1-.9-2-2-2H13c-1.1 0-2 .9-2 2v4.6c0 1.1.9 2 2 2h4.6c1.1 0 2-.9 2-2z" fill="#7fba00"/><path d="M23.2 15.7v-5h2.5v5c0 .9.8 1.7 2.1 2.1l4.2.9c2.3.7 3.9 2.5 3.9 4.5v5.7h-2.5v-5.7c0-.9-.8-1.7-2.1-2.1l-4.2-.9c-2.3-.7-3.9-2.5-3.9-4.5z" fill="#59b4d9"/><path d="M30.4 31.5v-4.6c0-1.1.9-2 2-2H37c1.1 0 2 .9 2 2v4.6c0 1.1-.9 2-2 2h-4.6c-1.1 0-2-.9-2-2z" fill="#7fba00"/><path d="M23.2 10.7H26v4.8h-2.8z" fill="#59b4d9"/><path d="M26.5 6.1v3.7h-3.7V6.1h3.7m.8-2.8H22c-1.1 0-2 .9-2 2v5.3c0 1.1.9 2 2 2h5.3c1.1 0 2-.9 2-2V5.3c0-1.1-.9-2-2-2z" fill="#0072c6"/><path d="M7.9 38.8c-2.1 0-3.6-.4-4.5-1.1-.9-.8-1.3-2.1-1.3-4V23.3c0-1.7-.7-2.6-2.1-2.6v-2.6c1.4 0 2.1-.9 2.1-2.7V5.2c0-1.9.4-3.3 1.3-4.1S5.8 0 7.9 0v2.6c-1.5 0-2.3.8-2.3 2.5v10c0 2.3-.7 3.7-2.2 4.3 1.4.6 2.2 2 2.2 4.3v9.9c0 .9.2 1.6.5 2 .4.4.9.6 1.7.6l.1 2.6c-.1 0 0 0 0 0zM42.1 0c2.1 0 3.6.4 4.5 1.1.9.8 1.3 2.1 1.3 4v10.4c0 1.7.7 2.6 2.1 2.6v2.6c-1.4 0-2.1.9-2.1 2.7v10.1c0 1.9-.4 3.3-1.3 4.1s-2.4 1.2-4.5 1.2v-2.6c1.5 0 2.3-.8 2.3-2.5v-10c0-2.3.7-3.7 2.2-4.3-1.4-.6-2.2-2-2.2-4.3V5.2c0-.9-.2-1.6-.5-2-.4-.4-.9-.6-1.7-.6L42.1 0z" fill="#59b4d9"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Logic_Apps_Custom_Connector.svg b/src/main/webapp/img/lib/mscae/Logic_Apps_Custom_Connector.svg new file mode 100644 index 0000000000000000000000000000000000000000..06095ae583ff93a0741d3d741774be7003310b07 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Logic_Apps_Custom_Connector.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path d="M22.95 39.344L12.295 50 0 37.705 10.656 27.05V16.393H4.1V0h16.393v16.393h-6.558V27.05l9.017 9.016h10.656v-6.557H50V45.9H33.607v-6.557z" fill="#59b4d9"/><path d="M20.492 16.393V0H4.1v16.393z" fill="#7fba00"/><path d="M12.295 30.328l-7.377 7.377 7.377 7.377 7.377-7.377z" fill="#0072c6"/><path d="M33.607 29.508V45.9H50V29.508z" fill="#7fba00"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/MD_snapshot.svg b/src/main/webapp/img/lib/mscae/MD_snapshot.svg index a0a86689e071500bd9a120e12194d1ced652c031..cbc52cb9a76199fa9d66e4224eff5758f7e93046 100644 --- a/src/main/webapp/img/lib/mscae/MD_snapshot.svg +++ b/src/main/webapp/img/lib/mscae/MD_snapshot.svg @@ -1,111 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_2" - x="0px" - y="0px" - width="50" - height="42" - viewBox="0 0 50 42" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="MD_snapshot.svg"><metadata - id="metadata37"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs35" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview33" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="10.363697" - inkscape:cx="21.300615" - inkscape:cy="16.099375" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_2" /><polygon - points="3,14 3,7 10,7 10,4 0,4 0,14 " - id="polygon3" - style="fill:#7a7a7a" - transform="translate(0,-4)" /><polygon - points="10,43 3,43 3,36 0,36 0,46 10,46 " - id="polygon5" - style="fill:#7a7a7a" - transform="translate(0,-4)" /><polygon - points="47,36 47,43 40,43 40,46 50,46 50,36 " - id="polygon7" - style="fill:#7a7a7a" - transform="translate(0,-4)" /><polygon - points="40,7 47,7 47,14 50,14 50,4 40,4 " - id="polygon9" - style="fill:#7a7a7a" - transform="translate(0,-4)" /><path - d="M 45,30.757 C 45,34.757 36.046,38 25.002,38 13.958,38 5.004,34.758 5.004,30.757 L 5.004,26.853 45,26.853 45,30.757 Z" - id="path11" - inkscape:connector-curvature="0" - style="fill:#7fba00" /><path - d="M 45,26.854 C 45,30.854 36.046,34.097 25.002,34.097 13.958,34.097 5.004,30.854 5.004,26.854 5.004,22.854 13.958,19.611 25.002,19.611 36.046,19.611 45,22.854 45,26.854" - id="path13" - inkscape:connector-curvature="0" - style="fill:#b8d432" /><path - d="M 31.412,26.437 C 31.412,27.501 28.542,28.362 25.001,28.362 21.46,28.362 18.59,27.5 18.59,26.437 18.59,25.373 21.461,24.512 25.001,24.512 28.541,24.512 31.412,25.374 31.412,26.437" - id="path15" - inkscape:connector-curvature="0" - style="fill:#7fba00" /><path - d="M 31.412,26.437 C 31.412,27.501 28.542,28.362 25.001,28.362 21.46,28.362 18.59,27.5 18.59,26.437 18.59,25.373 21.461,24.512 25.001,24.512 28.541,24.512 31.412,25.374 31.412,26.437" - id="path17" - inkscape:connector-curvature="0" - style="opacity:0.25;fill:#00188f" /><path - enable-background="new " - d="M 39.457,21.892 C 36.656,20.831 32.974,20.077 28.835,19.786 L 26.24,24.589 C 27.517,24.664 28.658,24.852 29.541,25.119 L 39.457,21.892 Z" - id="path19" - inkscape:connector-curvature="0" - style="opacity:0.25;fill:#ffffff" /><path - enable-background="new " - d="M 9.725,31.565 C 12.606,32.799 16.603,33.679 21.154,34.001 L 24.188,28.386 C 22.925,28.338 21.777,28.18 20.854,27.944 L 9.725,31.565 Z" - id="path21" - inkscape:connector-curvature="0" - style="opacity:0.25;fill:#ffffff" /><path - d="M 45,15.146 C 45,19.146 36.046,22.389 25.002,22.389 13.958,22.389 5.004,19.146 5.004,15.146 L 5.004,11.242 45,11.242 45,15.146 Z" - id="path23" - inkscape:connector-curvature="0" - style="fill:#0072c6" /><path - d="M 45,11.243 C 45,15.243 36.046,18.486 25.002,18.486 13.958,18.486 5.004,15.242 5.004,11.243 5.004,7.244 13.957,4 25.002,4 36.047,4 45,7.242 45,11.243" - id="path25" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><path - d="M 31.412,10.826 C 31.412,11.89 28.542,12.751 25.001,12.751 21.46,12.751 18.59,11.889 18.59,10.826 18.59,9.763 21.461,8.901 25.001,8.901 28.541,8.901 31.412,9.762 31.412,10.826" - id="path27" - inkscape:connector-curvature="0" - style="fill:#0072c6" /><path - enable-background="new " - d="M 39.457,6.241 C 36.656,5.179 32.974,4.426 28.835,4.135 L 26.24,8.938 C 27.517,9.013 28.658,9.201 29.541,9.468 L 39.457,6.241 Z" - id="path29" - inkscape:connector-curvature="0" - style="opacity:0.25;fill:#ffffff" /><path - enable-background="new " - d="M 9.725,15.914 C 12.606,17.148 16.603,18.028 21.154,18.35 L 24.188,12.735 C 22.925,12.687 21.777,12.529 20.854,12.293 L 9.725,15.914 Z" - id="path31" - inkscape:connector-curvature="0" - style="opacity:0.25;fill:#ffffff" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="42"><path d="M3 10V3h7V0H0v10zm7 29H3v-7H0v10h10zm37-7v7h-7v3h10V32zM40 3h7v7h3V0H40z" fill="#7a7a7a"/><path d="M45 30.757c0 4-8.954 7.243-19.998 7.243S5.004 34.758 5.004 30.757v-3.904H45v3.904z" fill="#7fba00"/><path d="M45 26.854c0 4-8.954 7.243-19.998 7.243S5.004 30.854 5.004 26.854s8.954-7.243 19.998-7.243S45 22.854 45 26.854" fill="#b8d432"/><use xlink:href="#B" fill="#7fba00"/><use xlink:href="#B" opacity=".25" fill="#00188f"/><g fill="#fff"><path d="M39.457 21.892c-2.8-1.06-6.483-1.815-10.622-2.106L26.24 24.59c1.277.075 2.418.263 3.3.53l9.916-3.227z" opacity=".25"/><use xlink:href="#C" opacity=".25"/></g><path d="M45 15.146c0 4-8.954 7.243-19.998 7.243S5.004 19.146 5.004 15.146v-3.904H45v3.904z" fill="#0072c6"/><path d="M45 11.243c0 4-8.954 7.243-19.998 7.243S5.004 15.242 5.004 11.243 13.957 4 25.002 4 45 7.242 45 11.243" fill="#59b4d9"/><path d="M31.412 10.826c0 1.064-2.87 1.925-6.41 1.925s-6.41-.862-6.41-1.925S21.46 8.9 25 8.9s6.41.86 6.41 1.925" fill="#0072c6"/><g fill="#fff"><path d="M39.457 6.24c-2.8-1.062-6.483-1.815-10.622-2.106L26.24 8.938c1.277.075 2.418.263 3.3.53l9.916-3.227z" opacity=".25"/><use xlink:href="#C" y="-15.651" opacity=".25"/></g><defs ><path id="B" d="M31.412 26.437c0 1.064-2.87 1.925-6.41 1.925s-6.41-.862-6.41-1.925 2.87-1.925 6.41-1.925 6.41.862 6.41 1.925"/><path id="C" d="M9.725 31.565c2.88 1.234 6.878 2.114 11.43 2.436l3.034-5.615c-1.263-.048-2.41-.206-3.334-.442l-11.13 3.62z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/MachineLearningServicePlans.svg b/src/main/webapp/img/lib/mscae/MachineLearningServicePlans.svg index 2c306e9e6913af90a14e0198643a7f6b25f1874d..84bf47731be8fd496e5cbdc519bfe8583823cf9b 100644 --- a/src/main/webapp/img/lib/mscae/MachineLearningServicePlans.svg +++ b/src/main/webapp/img/lib/mscae/MachineLearningServicePlans.svg @@ -1,99 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="23.525227" - height="24" - viewBox="0 0 23.525227 24" - enable-background="new 0 0 24 24" - xml:space="preserve" - sodipodi:docname="MachineLearningServicePlans.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata5987"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs5985" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview5983" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="35.416667" - inkscape:cx="11.525227" - inkscape:cy="12" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<g - id="g5972" - transform="translate(-0.47477273)"> - <path - d="m 17.148,6.148 0.008,0.008 C 16.948,6.052 16.729,6 16.5,6 16.292,6 16.097,6.039 15.914,6.117 15.731,6.195 15.573,6.302 15.437,6.437 15.301,6.573 15.195,6.731 15.117,6.914 15.039,7.097 15,7.292 15,7.5 c 0,0.208 0.039,0.404 0.117,0.586 0.078,0.183 0.185,0.341 0.32,0.477 0.136,0.136 0.294,0.242 0.477,0.32 C 16.097,8.961 16.292,9 16.5,9 16.708,9 16.903,8.961 17.086,8.883 17.269,8.805 17.427,8.698 17.563,8.563 17.699,8.428 17.805,8.269 17.883,8.086 17.961,7.904 18,7.708 18,7.5 18,7.271 17.948,7.052 17.844,6.844 L 17.852,6.852 20.727,3.977 20.024,3.274 Z M 16.852,7.852 C 16.753,7.951 16.636,8 16.5,8 16.364,8 16.247,7.951 16.148,7.852 16.05,7.753 16,7.636 16,7.5 16,7.365 16.05,7.248 16.148,7.148 16.247,7.05 16.364,7 16.5,7 16.636,7 16.753,7.05 16.852,7.148 16.95,7.248 17,7.365 17,7.5 17,7.636 16.95,7.753 16.852,7.852 Z" - id="path5962" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> - <path - d="m 19.68,10.68 0.711,0.711 c 0.516,-0.516 0.91,-1.11 1.184,-1.785 0.273,-0.674 0.41,-1.376 0.41,-2.105 0,-0.391 -0.04,-0.774 -0.121,-1.152 C 21.782,5.97 21.661,5.604 21.5,5.25 L 20.594,5.656 C 20.864,6.255 21,6.878 21,7.523 21,8.122 20.886,8.692 20.656,9.234 20.427,9.776 20.102,10.258 19.68,10.68 Z" - id="path5964" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> - <path - d="M 23.73,5.512 C 23.55,4.874 23.297,4.277 22.972,3.719 22.647,3.162 22.256,2.656 21.8,2.199 21.344,1.743 20.838,1.353 20.28,1.027 19.722,0.702 19.125,0.449 18.487,0.269 17.849,0.089 17.188,0 16.5,0 15.812,0 15.149,0.09 14.512,0.27 13.875,0.45 13.277,0.703 12.719,1.028 12.161,1.354 11.656,1.744 11.199,2.2 10.743,2.656 10.352,3.162 10.027,3.72 9.702,4.276 9.449,4.874 9.27,5.512 9.134,5.992 9.067,6.491 9.033,7 h 1 C 10.065,6.581 10.122,6.169 10.234,5.773 10.39,5.221 10.609,4.704 10.89,4.222 11.171,3.741 11.51,3.302 11.906,2.906 12.302,2.51 12.741,2.172 13.222,1.89 13.703,1.608 14.221,1.39 14.773,1.234 15.325,1.078 15.901,1 16.5,1 c 0.599,0 1.175,0.078 1.727,0.234 0.552,0.156 1.069,0.375 1.551,0.656 0.482,0.281 0.921,0.62 1.316,1.016 0.396,0.396 0.734,0.835 1.016,1.316 0.281,0.482 0.5,0.999 0.656,1.551 C 22.922,6.326 23,6.901 23,7.5 c 0,0.599 -0.078,1.175 -0.234,1.727 -0.156,0.552 -0.375,1.069 -0.656,1.551 -0.281,0.482 -0.62,0.921 -1.016,1.316 -0.396,0.396 -0.835,0.734 -1.316,1.016 -0.481,0.282 -0.999,0.5 -1.551,0.656 C 17.675,13.922 17.099,14 16.5,14 15.901,14 15.325,13.922 14.773,13.766 14.221,13.61 13.704,13.391 13.222,13.11 12.777,12.85 12.371,12.535 11.999,12.177 v 0.53 l 0.712,1.262 c 0.002,0.001 0.004,0.003 0.006,0.004 0.558,0.326 1.155,0.578 1.793,0.758 0.638,0.18 1.302,0.269 1.99,0.269 0.688,0 1.351,-0.09 1.988,-0.27 0.637,-0.18 1.235,-0.432 1.793,-0.758 0.558,-0.325 1.063,-0.716 1.52,-1.172 0.456,-0.456 0.847,-0.962 1.172,-1.52 0.325,-0.557 0.578,-1.155 0.758,-1.793 C 23.91,8.851 24,8.188 24,7.5 24,6.812 23.91,6.15 23.73,5.512 Z" - id="path5966" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> - <path - d="m 12,10.651 c 0.182,0.259 0.379,0.51 0.609,0.74 L 13.32,10.68 C 13.109,10.469 12.923,10.243 12.76,10 H 12 Z" - id="path5968" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> - <path - d="m 16.5,2.016 c -0.511,0 -1,0.065 -1.469,0.195 -0.469,0.13 -0.906,0.314 -1.312,0.551 C 13.313,2.999 12.943,3.284 12.61,3.617 12.277,3.95 11.99,4.32 11.751,4.726 11.512,5.132 11.326,5.57 11.196,6.038 11.109,6.35 11.062,6.673 11.033,7 H 12 12.033 c 0.026,-0.235 0.064,-0.466 0.127,-0.691 0.106,-0.383 0.258,-0.741 0.453,-1.074 0.195,-0.333 0.429,-0.637 0.699,-0.91 0.27,-0.273 0.573,-0.509 0.906,-0.707 0.333,-0.198 0.69,-0.35 1.07,-0.457 C 15.669,3.054 16.065,3 16.477,3 c 0.646,0 1.269,0.136 1.867,0.406 L 18.75,2.5 C 18.396,2.339 18.03,2.218 17.652,2.137 17.274,2.056 16.891,2.016 16.5,2.016 Z" - id="path5970" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -</g> -<path - d="M 11.525227,8 H 4.5252273 v 1 h 1 v 3.969 l -5.28000003,9.255 c -0.576,0.96 -0.096,1.776 1.00800003,1.776 H 14.741227 c 1.152,0 1.584,-0.768 1.008,-1.776 l -5.224,-9.255 V 9 h 1 z" - id="path5974" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="M 11.652227,17 H 4.3762273 l -3.263,5.72 c -0.072,0.12 -0.098,0.201 -0.108,0.246 0.043,0.015 0.121,0.034 0.248,0.034 H 14.741227 c 0.114,0 0.196,-0.012 0.25,-0.025 -0.015,-0.058 -0.047,-0.143 -0.11,-0.254 z" - id="path5976" - inkscape:connector-curvature="0" - style="fill:#0072c6" /> -<path - enable-background="new " - d="m 4.5252273,9 h 1 v 3.969 l -5.28000003,9.255 c -0.576,0.96 -0.096,1.776 1.00800003,1.776 h 1.454 l 3.818,-7 2,-3.667 V 8 h -4 z" - id="path5978" - inkscape:connector-curvature="0" - style="opacity:0.25;fill:#ecf0f1" /> -<path - enable-background="new " - d="m 3.2522273,23 3.273,-6 h -2.149 l -3.263,5.72 c -0.072,0.12 -0.098,0.201 -0.108,0.246 0.043,0.015 0.121,0.034 0.248,0.034 z" - id="path5980" - inkscape:connector-curvature="0" - style="opacity:0.25;fill:#ecf0f1" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="23.525" height="24"><g fill="#a0a1a2"><path d="M16.673 6.148l.008.008A1.45 1.45 0 0 0 16.025 6c-.208 0-.403.04-.586.117a1.51 1.51 0 0 0-.477.32c-.136.136-.242.294-.32.477s-.117.378-.117.586a1.49 1.49 0 0 0 .117.586 1.51 1.51 0 0 0 .32.477c.136.136.294.242.477.32s.378.117.586.117.403-.04.586-.117a1.51 1.51 0 0 0 .477-.32 1.48 1.48 0 0 0 .32-.477c.078-.182.117-.378.117-.586a1.45 1.45 0 0 0-.156-.656l.008.008 2.875-2.875-.703-.703zm-.296 1.704a.48.48 0 0 1-.352.148.48.48 0 0 1-.352-.148c-.098-.1-.148-.216-.148-.352s.05-.252.148-.352S15.9 7 16.025 7s.253.05.352.148a.48.48 0 0 1 .148.352c0 .135-.05.253-.148.352zm2.828 2.828l.7.7c.516-.516.9-1.1 1.184-1.785s.4-1.376.4-2.105a5.55 5.55 0 0 0-.12-1.152 5.41 5.41 0 0 0-.364-1.099l-.906.406a4.5 4.5 0 0 1 .406 1.867c0 .6-.114 1.17-.344 1.7a4.51 4.51 0 0 1-.976 1.446zm4.05-5.168a7.7 7.7 0 0 0-.758-1.793 7.48 7.48 0 0 0-1.172-1.52c-.456-.456-.962-.846-1.52-1.172a7.7 7.7 0 0 0-1.793-.758 7.28 7.28 0 0 0-1.987-.27c-.687 0-1.35.1-1.988.27s-1.235.433-1.793.758a7.49 7.49 0 0 0-1.52 1.172c-.456.456-.847.962-1.172 1.52a7.61 7.61 0 0 0-.757 1.792c-.136.48-.203.98-.237 1.488h1a6.4 6.4 0 0 1 .2-1.227 6.62 6.62 0 0 1 .656-1.55 6.47 6.47 0 0 1 1.016-1.316c.396-.396.835-.734 1.316-1.016s1-.5 1.55-.656A6.32 6.32 0 0 1 16.025 1a6.32 6.32 0 0 1 1.727.234 6.62 6.62 0 0 1 1.55.656 6.5 6.5 0 0 1 1.316 1.016c.396.396.734.835 1.016 1.316s.5 1 .656 1.55a6.31 6.31 0 0 1 .234 1.727 6.32 6.32 0 0 1-.234 1.727 6.62 6.62 0 0 1-.656 1.55 6.5 6.5 0 0 1-1.016 1.316c-.396.396-.835.734-1.316 1.016s-1 .5-1.55.656a6.32 6.32 0 0 1-1.727.234 6.32 6.32 0 0 1-1.727-.234 6.62 6.62 0 0 1-1.55-.656 6.51 6.51 0 0 1-1.223-.933v.53l.712 1.262a7.65 7.65 0 0 0 1.799.762c.638.18 1.302.27 2 .27s1.35-.1 1.988-.27 1.235-.432 1.793-.758a7.49 7.49 0 0 0 1.52-1.172c.457-.456.847-.962 1.172-1.52a7.68 7.68 0 0 0 .758-1.793 7.27 7.27 0 0 0 .27-1.987c0-.687-.1-1.35-.27-1.988zm-11.73 5.138a6.17 6.17 0 0 0 .61.74l.7-.7a4.53 4.53 0 0 1-.56-.68h-.76z"/><path d="M16.025 2.016a5.47 5.47 0 0 0-1.469.195 5.51 5.51 0 0 0-1.312.551 5.44 5.44 0 0 0-1.109.855c-.333.333-.62.703-.86 1.11s-.425.844-.555 1.312c-.087.312-.134.635-.163.962h1c.026-.235.064-.466.127-.69.106-.383.258-.74.453-1.074a4.59 4.59 0 0 1 .699-.91c.27-.273.573-.51.906-.707s.7-.35 1.07-.457S15.6 3 16.002 3a4.49 4.49 0 0 1 1.867.406l.406-.906c-.354-.16-.72-.282-1.098-.363s-.76-.12-1.152-.12z"/></g><path d="M11.525 8h-7v1h1v3.97l-5.28 9.255C-.33 23.184.15 24 1.253 24H14.74c1.152 0 1.584-.768 1.008-1.776l-5.224-9.255V9h1z" fill="#59b4d9"/><path d="M11.652 17H4.376l-3.263 5.72c-.072.12-.098.2-.108.246.043.015.12.034.248.034H14.74c.114 0 .196-.012.25-.025a1.08 1.08 0 0 0-.11-.254z" fill="#0072c6"/><g fill="#ecf0f1"><path d="M4.525 9h1v3.97l-5.28 9.255C-.33 23.184.15 24 1.253 24h1.454l5.818-10.667V8h-4z" opacity=".25"/><path d="M3.252 23l3.273-6h-2.15l-3.263 5.72c-.072.12-.098.2-.108.246.043.015.12.034.248.034z" opacity=".25"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/MachineLearningWebServices.svg b/src/main/webapp/img/lib/mscae/MachineLearningWebServices.svg index 7b18b8c0ac0cbb99063b3128e967a551672c41be..925fcd8bbf57fe9ffe4857f2ab31aba49bdfc93c 100644 --- a/src/main/webapp/img/lib/mscae/MachineLearningWebServices.svg +++ b/src/main/webapp/img/lib/mscae/MachineLearningWebServices.svg @@ -1,69 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="23.525227" - height="24" - viewBox="0 0 23.525227 24" - enable-background="new 0 0 24 24" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="MachineLearningWebServices-color.svg"><metadata - id="metadata17"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs15" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview13" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="21.591036" - inkscape:cx="11.29599" - inkscape:cy="9.6477001" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 15.525227,0 C 11.446227,0 8.0872273,3.055 7.5942273,7 L 8.6062273,7 C 8.7212273,6.224 8.9602273,5.488 9.3082273,4.815 9.6722273,5.588 10.170227,6.312 10.744227,7 L 12.525227,7 12.525227,7.092 C 12.682227,7.036 12.849227,7 13.025227,7 13.852227,7 14.525227,7.673 14.525227,8.5 14.525227,9.327 13.852227,10 13.025227,10 12.849227,10 12.682227,9.964 12.525227,9.908 L 12.525227,10 11.525227,10 11.525227,10.461 C 11.640227,10.548 11.750227,10.642 11.878227,10.709 11.751227,11.2 11.633227,11.697 11.525227,12.199 L 11.525227,12.706 12.218227,13.934 C 12.380227,12.925 12.597227,11.944 12.846227,10.982 L 12.846227,10.982 C 12.906227,10.986 12.963227,11 13.025227,11 13.709227,11 14.329227,10.724 14.780227,10.278 15.630227,10.744 16.555227,11.137 17.527227,11.477 17.527227,11.485 17.525227,11.492 17.525227,11.5 17.525227,12.328 18.197227,13 19.025227,13 19.585227,13 20.067227,12.69 20.325227,12.235 20.545227,12.279 20.754227,12.341 20.978227,12.378 19.694227,13.974 17.728227,15 15.525227,15 14.398227,15 13.339227,14.723 12.395227,14.248 L 13.187227,15.651 C 13.927227,15.877 14.711227,16 15.525227,16 19.943227,16 23.525227,12.418 23.525227,8 23.525227,3.582 19.943227,0 15.525227,0 Z M 22.511227,7.714 C 21.802227,7.445 21.129227,7.136 20.496227,6.795 20.514227,6.699 20.525227,6.601 20.525227,6.5 20.525227,5.672 19.853227,5 19.025227,5 18.717227,5 18.430227,5.094 18.192227,5.253 17.393227,4.595 16.702227,3.871 16.150227,3.091 16.543227,2.456 16.960227,1.846 17.397227,1.264 20.259227,2.061 22.385227,4.63 22.511227,7.714 Z M 19.525227,6.5 C 19.525227,6.776 19.301227,7 19.025227,7 18.749227,7 18.525227,6.776 18.525227,6.5 18.525227,6.224 18.749227,6 19.025227,6 19.301227,6 19.525227,6.224 19.525227,6.5 Z M 15.525227,1 C 15.796227,1 16.063227,1.019 16.327227,1.049 16.067227,1.409 15.812227,1.777 15.568227,2.156 15.368227,1.787 15.199227,1.41 15.059227,1.023 15.213227,1.013 15.367227,1 15.525227,1 Z M 13.503227,6.048 C 13.348227,6.018 13.189227,6 13.025227,6 12.483227,6 11.985227,6.177 11.576227,6.469 L 11.577227,6.468 C 10.873227,5.634 10.314227,4.734 9.9572273,3.774 10.951227,2.467 12.395227,1.529 14.054227,1.172 14.282227,1.847 14.585227,2.5 14.972227,3.123 14.429227,4.048 13.950227,5.035 13.503227,6.048 Z M 19.025227,12 C 18.749227,12 18.525227,11.776 18.525227,11.5 18.525227,11.224 18.749227,11 19.025227,11 19.301227,11 19.525227,11.224 19.525227,11.5 19.525227,11.776 19.301227,12 19.025227,12 Z M 21.592227,11.473 C 21.224227,11.421 20.862227,11.358 20.504227,11.287 20.504227,11.287 20.504227,11.287 20.503227,11.287 20.399227,10.56 19.780227,10 19.025227,10 18.553227,10 18.137227,10.223 17.862227,10.564 16.967227,10.25 16.117227,9.883 15.334227,9.457 L 15.334227,9.457 C 15.456227,9.162 15.525227,8.839 15.525227,8.5 15.525227,7.633 15.083227,6.87 14.413227,6.422 14.777227,5.596 15.165227,4.792 15.595227,4.029 16.159227,4.758 16.835227,5.435 17.600227,6.055 L 17.600227,6.055 C 17.556227,6.196 17.525227,6.344 17.525227,6.5 17.525227,7.328 18.197227,8 19.025227,8 19.397227,8 19.732227,7.86 19.994227,7.636 20.767227,8.054 21.588227,8.428 22.460227,8.744 22.354227,9.728 22.064227,10.654 21.592227,11.473 Z" - id="path3" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /><path - d="M 11.525227,8 4.5252273,8 4.5252273,9 5.5252273,9 5.5252273,12.969 0.24522727,22.224 C -0.33077273,23.184 0.14922727,24 1.2532273,24 L 14.741227,24 C 15.893227,24 16.325227,23.232 15.749227,22.224 L 10.525227,12.969 10.525227,9 11.525227,9 11.525227,8 11.525227,8 Z" - id="path5" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><path - d="M 11.652227,17 4.3762273,17 1.1132273,22.72 C 1.0412273,22.84 1.0152273,22.921 1.0052273,22.966 1.0482273,22.981 1.1262273,23 1.2532273,23 L 14.741227,23 C 14.855227,23 14.937227,22.988 14.991227,22.975 14.976227,22.917 14.944227,22.832 14.881227,22.721 L 11.652227,17 Z" - id="path7" - inkscape:connector-curvature="0" - style="fill:#0072c6" /><path - enable-background="new " - d="M 4.5252273,9 5.5252273,9 5.5252273,12.969 0.24522727,22.224 C -0.33077273,23.184 0.14922727,24 1.2532273,24 L 2.7072273,24 6.5252273,17 8.5252273,13.333 8.5252273,8 4.5252273,8 4.5252273,9 Z" - id="path9" - inkscape:connector-curvature="0" - style="opacity:0.25;fill:#ecf0f1" /><path - enable-background="new " - d="M 3.2522273,23 6.5252273,17 4.3762273,17 1.1132273,22.72 C 1.0412273,22.84 1.0152273,22.921 1.0052273,22.966 1.0482273,22.981 1.1262273,23 1.2532273,23 L 3.2522273,23 Z" - id="path11" - inkscape:connector-curvature="0" - style="opacity:0.25;fill:#ecf0f1" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="23.525" height="24"><path d="M15.525 0c-4.08 0-7.438 3.055-7.93 7h1.012c.115-.776.354-1.512.702-2.185.364.773.862 1.497 1.436 2.185h1.78v.092c.157-.056.324-.092.5-.092a1.5 1.5 0 1 1 0 3c-.176 0-.343-.036-.5-.092V10h-1v.46c.115.087.225.18.353.248a37.18 37.18 0 0 0-.353 1.49v.507l.693 1.228a32.02 32.02 0 0 1 .628-2.952c.06.004.117.018.18.018a2.49 2.49 0 0 0 1.755-.722c.85.466 1.775.86 2.747 1.2 0 .008-.002.015-.002.023a1.5 1.5 0 0 0 1.5 1.5c.56 0 1.042-.3 1.3-.765.22.044.43.106.653.143C19.694 13.974 17.728 15 15.525 15c-1.127 0-2.186-.277-3.13-.752l.792 1.403a7.99 7.99 0 0 0 2.338.349 8 8 0 1 0 0-16zm6.986 7.714a16.86 16.86 0 0 1-2.015-.919c.018-.096.03-.194.03-.295a1.5 1.5 0 0 0-1.5-1.5c-.308 0-.595.094-.833.253-.8-.658-1.5-1.382-2.042-2.162a24.64 24.64 0 0 1 1.247-1.827c2.862.797 4.988 3.366 5.114 6.45zM19.525 6.5a.5.5 0 1 1-1 0 .5.5 0 1 1 1 0zm-4-5.5a7.09 7.09 0 0 1 .802.049c-.26.36-.515.728-.76 1.107a8.29 8.29 0 0 1-.509-1.133c.154-.01.308-.023.466-.023zm-2.022 5.048c-.155-.03-.314-.048-.478-.048-.542 0-1.04.177-1.45.47l.001-.001c-.704-.834-1.263-1.734-1.62-2.694.994-1.307 2.438-2.245 4.097-2.602.228.675.53 1.328.918 1.95-.543.925-1.022 1.912-1.47 2.925zM19.025 12a.5.5 0 1 1 0-1 .5.5 0 1 1 0 1zm2.567-.527a19.9 19.9 0 0 1-1.088-.186C20.4 10.56 19.78 10 19.025 10a1.49 1.49 0 0 0-1.163.564c-.895-.314-1.745-.68-2.528-1.107a2.5 2.5 0 0 0 .191-.957c0-.867-.442-1.63-1.112-2.078.364-.826.752-1.63 1.182-2.393.564.73 1.24 1.406 2.005 2.026-.044.14-.075.29-.075.445a1.5 1.5 0 0 0 1.5 1.5c.372 0 .707-.14.97-.364.773.418 1.594.792 2.466 1.108-.106.984-.396 1.9-.868 2.73z" fill="#a0a1a2"/><path d="M11.525 8h-7v1h1v3.97l-5.28 9.255C-.33 23.184.15 24 1.253 24H14.74c1.152 0 1.584-.768 1.008-1.776l-5.224-9.255V9h1V8z" fill="#59b4d9"/><path d="M11.652 17H4.376l-3.263 5.72c-.072.12-.098.2-.108.246.043.015.12.034.248.034H14.74c.114 0 .196-.012.25-.025a1.08 1.08 0 0 0-.11-.254L11.652 17z" fill="#0072c6"/><g fill="#ecf0f1"><path d="M4.525 9h1v3.97l-5.28 9.255C-.33 23.184.15 24 1.253 24h1.454l5.818-10.667V8h-4v1z" opacity=".25"/><path d="M3.252 23l3.273-6h-2.15l-3.263 5.72c-.072.12-.098.2-.108.246.043.015.12.034.248.034h2z" opacity=".25"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/MachineLearningWorkspaces.svg b/src/main/webapp/img/lib/mscae/MachineLearningWorkspaces.svg index 97dedd19c66533b188a8174633a771715d028bf7..c86f48c382f386d7572946658a2a2ce7d8eb5b4d 100644 --- a/src/main/webapp/img/lib/mscae/MachineLearningWorkspaces.svg +++ b/src/main/webapp/img/lib/mscae/MachineLearningWorkspaces.svg @@ -1,69 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="23.525227" - height="24" - viewBox="0 0 23.525227 24" - enable-background="new 0 0 24 24" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="MachineLearningWorkspaces-color.svg"><metadata - id="metadata17"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs15" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview13" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="21.591036" - inkscape:cx="14.255128" - inkscape:cy="10.339541" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 11.525227,8 4.5252273,8 4.5252273,9 5.5252273,9 5.5252273,12.969 0.24522727,22.224 C -0.33077273,23.184 0.14922727,24 1.2532273,24 L 14.741227,24 C 15.893227,24 16.325227,23.232 15.749227,22.224 L 10.525227,12.969 10.525227,9 11.525227,9 11.525227,8 11.525227,8 Z" - id="path3" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><path - d="M 11.652227,17 4.3762273,17 1.1132273,22.72 C 1.0412273,22.84 1.0152273,22.921 1.0052273,22.966 1.0482273,22.981 1.1262273,23 1.2532273,23 L 14.741227,23 C 14.855227,23 14.937227,22.988 14.991227,22.975 14.976227,22.917 14.944227,22.832 14.881227,22.721 L 11.652227,17 Z" - id="path5" - inkscape:connector-curvature="0" - style="fill:#0072c6" /><path - enable-background="new " - d="M 4.5252273,9 5.5252273,9 5.5252273,12.969 0.24522727,22.224 C -0.33077273,23.184 0.14922727,24 1.2532273,24 L 2.7072273,24 6.5252273,17 8.5252273,13.333 8.5252273,8 4.5252273,8 4.5252273,9 Z" - id="path7" - inkscape:connector-curvature="0" - style="opacity:0.25;fill:#ecf0f1" /><path - enable-background="new " - d="M 3.2522273,23 6.5252273,17 4.3762273,17 1.1132273,22.72 C 1.0412273,22.84 1.0152273,22.921 1.0052273,22.966 1.0482273,22.981 1.1262273,23 1.2532273,23 L 3.2522273,23 Z" - id="path9" - inkscape:connector-curvature="0" - style="opacity:0.25;fill:#ecf0f1" /><path - d="M 10.525227,6 8.5252273,6 8.5252273,4 10.525227,4 10.525227,6 Z M 10.525227,3 8.5252273,3 8.5252273,1 10.525227,1 10.525227,3 Z M 13.525227,6 11.525227,6 11.525227,4 13.525227,4 13.525227,6 Z M 13.525227,3 11.525227,3 11.525227,1 13.525227,1 13.525227,3 Z M 16.525227,12 14.525227,12 14.525227,10 16.525227,10 16.525227,12 Z M 16.525227,9 14.525227,9 14.525227,7 16.525227,7 16.525227,9 Z M 16.525227,6 14.525227,6 14.525227,4 16.525227,4 16.525227,6 Z M 16.525227,3 14.525227,3 14.525227,1 16.525227,1 16.525227,3 Z M 19.525227,12 17.525227,12 17.525227,10 19.525227,10 19.525227,12 Z M 19.525227,9 17.525227,9 17.525227,7 19.525227,7 19.525227,9 Z M 19.525227,6 17.525227,6 17.525227,4 19.525227,4 19.525227,6 Z M 19.525227,3 17.525227,3 17.525227,1 19.525227,1 19.525227,3 Z M 20.525227,13 22.525227,13 23.525227,13 23.525227,0 7.5252273,0 7.5252273,7 8.5252273,7 10.525227,7 11.525227,7 12.525227,7 13.525227,7 13.525227,9 12.525227,9 12.525227,10 13.525227,10 13.525227,12 11.525227,12 11.525227,12.707 11.691227,13 13.525227,13 20.525227,13 Z M 22.525227,12 20.525227,12 20.525227,10 22.525227,10 22.525227,12 Z M 22.525227,9 20.525227,9 20.525227,7 22.525227,7 22.525227,9 Z M 22.525227,6 20.525227,6 20.525227,4 22.525227,4 22.525227,6 Z M 22.525227,3 20.525227,3 20.525227,1 22.525227,1 22.525227,3 Z" - id="path11" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="23.525" height="24"><path d="M11.525 8h-7v1h1v3.97l-5.28 9.255C-.33 23.184.15 24 1.253 24H14.74c1.152 0 1.584-.768 1.008-1.776l-5.224-9.255V9h1V8z" fill="#59b4d9"/><path d="M11.652 17H4.376l-3.263 5.72c-.072.12-.098.2-.108.246.043.015.12.034.248.034H14.74c.114 0 .196-.012.25-.025a1.08 1.08 0 0 0-.11-.254L11.652 17z" fill="#0072c6"/><g fill="#ecf0f1"><path d="M4.525 9h1v3.97l-5.28 9.255C-.33 23.184.15 24 1.253 24h1.454l5.818-10.667V8h-4v1z" opacity=".25"/><path d="M3.252 23l3.273-6h-2.15l-3.263 5.72c-.072.12-.098.2-.108.246.043.015.12.034.248.034h2z" opacity=".25"/></g><path d="M10.525 6h-2V4h2v2zm0-3h-2V1h2v2zm3 3h-2V4h2v2zm0-3h-2V1h2v2zm3 9h-2v-2h2v2zm0-3h-2V7h2v2zm0-3h-2V4h2v2zm0-3h-2V1h2v2zm3 9h-2v-2h2v2zm0-3h-2V7h2v2zm0-3h-2V4h2v2zm0-3h-2V1h2v2zm1 10h3V0h-16v7h6v2h-1v1h1v2h-2v.707l.166.293h8.834zm2-1h-2v-2h2v2zm0-3h-2V7h2v2zm0-3h-2V4h2v2zm0-3h-2V1h2v2z" fill="#a0a1a2"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Machine_Learning.svg b/src/main/webapp/img/lib/mscae/Machine_Learning.svg index 8ada82de3efe693a5fc0657e2c2b25fbcf91ab0b..7b53b26f129d88ad91680689138c8dc3fa89d3d0 100644 --- a/src/main/webapp/img/lib/mscae/Machine_Learning.svg +++ b/src/main/webapp/img/lib/mscae/Machine_Learning.svg @@ -1,68 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="49.016544" - height="50" - viewBox="0 0 49.016544 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure Machine Learning_COLOR.svg"><metadata - id="metadata17"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs15" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview13" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="10.363697" - inkscape:cx="17.541921" - inkscape:cy="24.25381" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 48.28808,44.623 32.72008,17.659 32.72008,6.743 33.00108,6.743 C 34.86308,6.743 36.37308,5.233 36.37308,3.371 36.37308,1.509 34.86308,0 33.00108,0 L 16.01608,0 C 14.15408,0 12.64408,1.51 12.64408,3.372 12.64408,5.234 14.15408,6.744 16.01608,6.744 L 16.29708,6.744 16.29708,17.659 0.72907993,44.623 C -0.97892007,47.58 0.41807993,50 3.8330799,50 L 45.18408,50 C 48.59808,50 49.99508,47.58 48.28808,44.623 Z" - id="path3" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><polygon - points="35.466,33.017 13.551,33.017 7.127,44.143 41.889,44.143 " - id="polygon5" - style="fill:#b8d432" - transform="translate(7.9934474e-5,0)" /><path - d="M 25.33408,37.532 C 27.06908,37.532 28.47508,36.126 28.47508,34.391 28.47508,33.898 28.35808,33.433 28.15508,33.017 L 22.51208,33.017 C 22.30908,33.432 22.19208,33.897 22.19208,34.391 22.19308,36.126 23.59908,37.532 25.33408,37.532 Z" - id="path7" - inkscape:connector-curvature="0" - style="fill:#7fba00" /><circle - cx="29.23208" - cy="39.956001" - r="1.541" - id="circle9" - style="fill:#7fba00" /><path - d="M 0.72907993,44.623 16.29708,17.658 16.29708,6.743 16.01608,6.743 C 14.15408,6.743 12.64408,5.233 12.64408,3.371 12.64408,1.509 14.15308,0 16.01608,0 L 23.33508,0 23.33508,17.572 15.13008,50 3.8330799,50 C 0.41807993,50 -0.97892007,47.58 0.72907993,44.623 Z" - id="path11" - inkscape:connector-curvature="0" - style="opacity:0.25;fill:#ffffff" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="49.017" height="50"><path d="M48.288 44.623L32.72 17.66V6.743H33c1.862 0 3.372-1.5 3.372-3.372S34.863 0 33 0H16.016c-1.862 0-3.372 1.5-3.372 3.372s1.5 3.372 3.372 3.372h.28V17.66L.73 44.623C-.98 47.58.418 50 3.833 50h41.35c3.414 0 4.81-2.42 3.104-5.377z" fill="#59b4d9"/><path d="M35.466 33.017H13.55L7.127 44.143H41.89z" fill="#b8d432"/><g fill="#7fba00"><path d="M25.334 37.532a3.14 3.14 0 0 0 3.141-3.141c0-.493-.117-.958-.32-1.374h-5.643c-.203.415-.32.88-.32 1.374.001 1.735 1.407 3.14 3.142 3.14z"/><circle cx="29.232" cy="39.956" r="1.541"/></g><path d="M.73 44.623l15.568-26.965V6.743h-.28c-1.862 0-3.372-1.5-3.372-3.372A3.37 3.37 0 0 1 16.016 0h7.32v17.572L15.13 50H3.833C.418 50-.98 47.58.73 44.623z" opacity=".25" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Machine_Learning_Service_Workspaces.svg b/src/main/webapp/img/lib/mscae/Machine_Learning_Service_Workspaces.svg new file mode 100644 index 0000000000000000000000000000000000000000..f0296a032dd28048478f5e5b7eadc663bf6d60c9 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Machine_Learning_Service_Workspaces.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="950.857" height="1024"><path d="M347.43 0h256v384h-256z" fill="#046eab"/><path d="M886.857 1024H64L0 777.143h950.857z" fill="#19457a"/><path d="M64 1024L0 777.143 347.43 384h256z" fill="#1590cf"/><path d="M886.857 1024L512 640l155.43-182.857 283.428 320z" fill="#046eab"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Machine_Learning_Studio_Web_Service_Plans.svg b/src/main/webapp/img/lib/mscae/Machine_Learning_Studio_Web_Service_Plans.svg new file mode 100644 index 0000000000000000000000000000000000000000..b3b2340d425696b88895e7734c36f8ddfc05bcac --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Machine_Learning_Studio_Web_Service_Plans.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="18.007" height="18"><g fill="#a0a1a2"><path d="M2.95 4.205l.177-.177 1.046 1.047-.176.177zm12.1 5.525h1.67v.3h-1.67zm.055-2.687l1.3-.462.08.226-1.3.462zm-3.463-3.76l.4-1.4.24.07-.4 1.4zM5.4 2.338l.2-.11.585 1.06-.202.1zm3.1-.838h.3v1.67h-.3z"/><path d="M2.95 4.205l.177-.177 1.046 1.047-.176.177zm12.1 5.525h1.67v.3h-1.67zm.055-2.687l1.3-.462.08.226-1.3.462zm-3.463-3.76l.4-1.4.24.07-.4 1.4zM5.4 2.338l.2-.11.585 1.06-.202.1zM10.74 7.2c-.44.52-.64.57-1.65 1.74a2.67 2.67 0 0 1 1.31 1.25l1.67-1.78 3-4.83zm-2.4 3.4l.76 1.26a1.21 1.21 0 0 0 .64-1.07 1.31 1.31 0 0 0-1.4-1.24v1z"/><path d="M15.3 2.58A9.1 9.1 0 0 0 8.94 0 8.94 8.94 0 0 0 0 8.92v1.27A2.15 2.15 0 0 0 1.72 12l.48-.85A1.22 1.22 0 0 1 .81 9.88v-1.6l.3-1.25A8 8 0 0 1 9 .72a8.18 8.18 0 0 1 8.24 8.11V9.9c0 1.3-.85 1.3-1.7 1.3h-5.12c-.1.8-.43.8-.43.8h6.07A1.68 1.68 0 0 0 18 10.19V8.83a8.68 8.68 0 0 0-2.71-6.25z"/></g><path d="M8 11V8.3h.1c.42-.02.6-.3.6-.9a.7.7 0 0 0-.84-.79h-5a.7.7 0 0 0-.72.74v.26a.72.72 0 0 0 .84.68V11l-2.9 5.4 1 1.6h8.36l1.18-1.6zm-3.4 3.2l-1.26 2.1H1.6l3-5.3V8.3h1.7V11l1.78 3.2z" fill="#59b4d9"/><path d="M4.6 14.2l-1.26 2.1H1.6L4.64 11V8.3h1.68V11l1.78 3.2z" fill="#d5ecf6"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Machine_Learning_Studio_Web_Services.svg b/src/main/webapp/img/lib/mscae/Machine_Learning_Studio_Web_Services.svg new file mode 100644 index 0000000000000000000000000000000000000000..e75ddb288491c146aaa563e557d50d36cb531678 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Machine_Learning_Studio_Web_Services.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18"><path d="M8.77 10.25v-3h.1c.47 0 .66-.33.66-1a.78.78 0 0 0-.93-.87H3.08a.78.78 0 0 0-.8.75v.36a.8.8 0 0 0 .83.76h.1v3L0 16.23 1.1 18h9.26l1.3-1.77zM5 13.8l-1.4 2.34H1.7L5 10.25v-3h1.9v3l2 3.54z" fill="#59b4d9"/><path d="M5 13.8l-1.4 2.34H1.7l3.36-5.88v-3H6.9v3l1.97 3.54z" fill="#e5e5e5"/><path d="M11.76 0h-.26a6.85 6.85 0 0 0-5.87 4l-.17.5h1l.17-.5h1.44L8 4.5h1V4h2v2h-.6a3.54 3.54 0 0 1 0 .44 2.9 2.9 0 0 1-.05.56H11v2h-1v1h1v2h-.32l.53 1h.54A6.43 6.43 0 0 0 18 6.5 6.51 6.51 0 0 0 11.76 0zm-4.6 3a5.91 5.91 0 0 1 2.4-2 4.84 4.84 0 0 0-1.27 2zM11 3H9.2A3.7 3.7 0 0 1 11 .83zm6.23 3h-1.76a5.87 5.87 0 0 0-.29-2h1.4a4.82 4.82 0 0 1 .66 2zm-1-3h-1.3a4.82 4.82 0 0 0-1.13-1.94A6.21 6.21 0 0 1 16.22 3zM12 .83A3.26 3.26 0 0 1 13.94 3H12zM12 4h2.3a7 7 0 0 1 .32 2H12zm0 3h2.62a7.14 7.14 0 0 1-.32 2H12zm0 5v-2h2a3.72 3.72 0 0 1-2 2zm1.52 0A6 6 0 0 0 15 10h1.16a6.63 6.63 0 0 1-2.64 2zm3.14-3h-1.48a7.69 7.69 0 0 0 .35-2h1.7a5.94 5.94 0 0 1-.58 2z" fill="#a0a1a2"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Machine_Learning_Studio_Workspaces.svg b/src/main/webapp/img/lib/mscae/Machine_Learning_Studio_Workspaces.svg new file mode 100644 index 0000000000000000000000000000000000000000..1ce98f13154e144c812b07a218b57be08c9aa380 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Machine_Learning_Studio_Workspaces.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18"><path d="M3.25 2h.3v10h-.3zm11.5 0h.3v10h-.3zM9 2h.3v2H9zm2.88 0h.3v2h-.3zM6.13 2h.3v2h-.3z" fill="#c9c9c9"/><path d="M0 0v13h3.2l.5-1H1V2h16v10h-3.3l.5 1H18V0z" fill="#a0a1a2"/><path d="M11.7 6.94a.78.78 0 0 0 1-.73v-.46a.86.86 0 0 0-.93-.67H6a.83.83 0 0 0-1 .67v.5a.77.77 0 0 0 1 .68V10l-3.22 6.2L4 18h9.5l1.25-1.8L11.7 10z" fill="#59b4d9"/><path d="M12 13.8H8l-1.44 2.37H4.62l3.42-6.1V6.95h1.98v3.12z" fill="#d5ecf6"/><path d="M1 4h16v.3H1zm3.36 3.15H1v-.3h3.07zm12.64 0h-3.74l.32-.3H17zM1 9.71l4-.004v.3l-4 .004zm11.725.29v-.3l4.27.005v.3z" fill="#c9c9c9"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/ManagePortal.svg b/src/main/webapp/img/lib/mscae/ManagePortal.svg index 163fbb6fb0bc4cd41b26eb5ad6dd5c1a54be0111..adf6f163f6bdf8f27e7ae4ce744865b19bfd5ff7 100644 --- a/src/main/webapp/img/lib/mscae/ManagePortal.svg +++ b/src/main/webapp/img/lib/mscae/ManagePortal.svg @@ -1,16 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<polygon fill="#7A7A7A" points="50,27.7 50,22 49.2,21.8 43.1,19.8 41.5,15.9 44.6,9.3 40.6,5.2 39.8,5.6 34.1,8.5 30.2,6.9 27.7,0 - 22,0 21.8,0.8 19.8,6.9 15.9,8.5 9.3,5.4 5.2,9.4 5.6,10.2 8.5,15.9 6.9,19.8 0,22.3 0,28 0.8,28.2 6.9,30.2 8.5,34.1 5.4,40.8 - 9.4,44.8 10.2,44.4 15.9,41.5 19.8,43.1 22.3,50 28,50 28.2,49.2 30.2,43.1 34.1,41.5 40.8,44.6 44.8,40.6 44.4,39.8 41.5,34.1 - 43.1,30.2 "/> -<path opacity="0.2" fill="#FFFFFF" enable-background="new " d="M39.7,5.6l-5.6,2.9l-3.9-1.6L27.7,0H22l-0.3,0.8l-2,6.1l-3.9,1.6 - L9.2,5.4l-4,4l0.4,0.8l2.9,5.7l-1.6,3.9L0,22.3V28l0.8,0.3l6.1,2l1.6,3.9l-3.1,6.6l4,4l0.8-0.4l2.4-1.2l3.5-4.8l0,0l19-26.3l0,0 - L39.7,5.6z"/> -<path fill="#FFFFFF" d="M29.3,27.4v5H17.5V20.7h5v-2.5h-5.9c-0.9,0-1.7,0.8-1.7,1.7v13.4c0,0.9,0.8,1.7,1.7,1.7H30 - c0.9,0,1.7-0.8,1.7-1.7v-5.9C31.7,27.4,29.3,27.4,29.3,27.4z"/> -<polygon fill="#FFFFFF" points="36,14 28.4,14 31.3,16.8 20.5,27.6 22.4,29.5 33.2,18.8 36,21.6 "/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path fill="#7a7a7a" d="M50 27.7V22l-.8-.2-6.1-2-1.6-3.9 3.1-6.6-4-4.1-.8.4-5.7 2.9-3.9-1.6L27.7 0H22l-.2.8-2 6.1-3.9 1.6-6.6-3.1-4.1 4 .4.8 2.9 5.7-1.6 3.9L0 22.3V28l.8.2 6.1 2 1.6 3.9-3.1 6.7 4 4 .8-.4 5.7-2.9 3.9 1.6 2.5 6.9H28l.2-.8 2-6.1 3.9-1.6 6.7 3.1 4-4-.4-.8-2.9-5.7 1.6-3.9z"/><g fill="#fff"><path opacity=".2" d="M39.7 5.6l-5.6 2.9-3.9-1.6L27.7 0H22l-.3.8-2 6.1-3.9 1.6-6.6-3.1-4 4 .4.8 2.9 5.7-1.6 3.9L0 22.3V28l.8.3 6.1 2 1.6 3.9-3.1 6.6 4 4 3.2-1.6 3.5-4.8 19-26.3 4.6-6.5z"/><path d="M29.3 27.4v5H17.5V20.7h5v-2.5h-5.9c-.9 0-1.7.8-1.7 1.7v13.4c0 .9.8 1.7 1.7 1.7H30c.9 0 1.7-.8 1.7-1.7v-5.9h-2.4zM36 14h-7.6l2.9 2.8-10.8 10.8 1.9 1.9 10.8-10.7 2.8 2.8z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/ManagedApplications.svg b/src/main/webapp/img/lib/mscae/ManagedApplications.svg index b399ca88ed12b6a50629db28310695d2a83ae4ea..e8fd9639f5e3c86b5d80e3e16f7135dec85a1cce 100644 --- a/src/main/webapp/img/lib/mscae/ManagedApplications.svg +++ b/src/main/webapp/img/lib/mscae/ManagedApplications.svg @@ -1,101 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="21" - height="24" - viewBox="0 0 21 24" - enable-background="new 0 0 24 24" - xml:space="preserve" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="ManagedApplications.svg"><metadata - id="metadata29"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs27" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview25" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="21.591036" - inkscape:cx="10.580845" - inkscape:cy="6.7582484" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 2.5,23 C 2.224,23 2,22.776 2,22.5 2,22.224 2.224,22 2.5,22 L 21,22 21,0 3,0 C 1.895,0 1,0.895 1,2 L 1,22.5 C 1,23.328 1.672,24 2.5,24 L 21,24 21,23 2.5,23 Z" - id="path3" - inkscape:connector-curvature="0" - style="fill:#0072c6" /><path - d="M 1,22.5 C 1,23.328 1.672,24 2.5,24 L 21,24 21,23 2.5,23 C 2.224,23 2,22.776 2,22.5 2,22.224 2.224,22 2.5,22 L 21,22 21,21 2.5,21 C 1.672,21 1,21.672 1,22.5 Z" - id="path5" - inkscape:connector-curvature="0" - style="opacity:0.5;fill:#000c82" /><path - d="M 2.5,23 C 2.224,23 2,22.776 2,22.5 2,22.224 2.224,22 2.5,22 L 21,22 C 20.724,22 20.5,22.224 20.5,22.5 20.5,22.776 20.724,23 21,23 L 2.5,23 Z" - id="path7" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /><rect - x="0" - y="3" - width="3" - height="1" - id="rect9" - style="fill:#a0a1a2" /><rect - x="0" - y="7" - width="3" - height="1" - id="rect11" - style="fill:#a0a1a2" /><rect - x="0" - y="11" - width="3" - height="1" - id="rect13" - style="fill:#a0a1a2" /><rect - x="0" - y="15" - width="3" - height="1" - id="rect15" - style="fill:#a0a1a2" /><rect - x="0" - y="19" - width="3" - height="1" - id="rect17" - style="fill:#a0a1a2" /><polygon - points="12,10.141 9,8.641 9,12.86 12,14.352 " - id="polygon19" - style="fill:#ffffff" - transform="translate(-1,0)" /><polygon - points="12.5,9.273 15.383,7.836 12.5,6.398 9.617,7.836 " - id="polygon21" - style="fill:#ffffff" - transform="translate(-1,0)" /><polygon - points="13,10.141 13,14.352 16,12.86 16,8.641 " - id="polygon23" - style="fill:#ffffff" - transform="translate(-1,0)" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="21" height="24"><path d="M2.5 23a.5.5 0 1 1 0-1H21V0H3a2 2 0 0 0-2 2v20.5A1.5 1.5 0 0 0 2.5 24H21v-1H2.5z" fill="#0072c6"/><path d="M1 22.5A1.5 1.5 0 0 0 2.5 24H21v-1H2.5a.5.5 0 1 1 0-1H21v-1H2.5A1.5 1.5 0 0 0 1 22.5z" opacity=".5" fill="#000c82"/><path d="M2.5 23a.5.5 0 1 1 0-1H21a.5.5 0 1 0 0 1H2.5zM0 3h3v1H0zm0 4h3v1H0zm0 4h3v1H0zm0 4h3v1H0zm0 4h3v1H0z" fill="#a0a1a2"/><path d="M11 10.14l-3-1.5v4.22l3 1.492zm.5-.867l2.883-1.437L11.5 6.398 8.617 7.836zm.5.867v4.2l3-1.492V8.64z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Managed_Applications.svg b/src/main/webapp/img/lib/mscae/Managed_Applications.svg new file mode 100644 index 0000000000000000000000000000000000000000..4474b3dc12b159ca9143ea9ba4c524251a703819 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Managed_Applications.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="47" height="49.851"><path d="M28.194 32.022c.044 0 .087-.01.125-.03l8.08-4.476a.23.23 0 0 0 .125-.204V18.33c-.001-.086-.05-.165-.125-.206s-.17-.04-.247 0l-8.08 4.476c-.074.042-.12.12-.12.205v8.983c0 .086.046.16.12.204.04.02.08.03.12.03m0 11.83c.044 0 .087-.01.125-.03l8.08-4.476a.23.23 0 0 0 .125-.204v-8.982c-.001-.086-.05-.165-.125-.206s-.17-.04-.247 0l-8.08 4.476c-.074.042-.12.12-.12.205v8.983c0 .086.046.16.12.204.04.02.08.03.12.03M38.67 26.107c.044 0 .087-.01.125-.03l8.08-4.476a.23.23 0 0 0 .124-.204v-8.982c-.001-.086-.05-.165-.125-.206s-.17-.04-.247 0l-8.08 4.476c-.074.042-.12.12-.12.205v8.983c0 .086.046.16.12.204a.25.25 0 0 0 .122.031m0 11.83c.044 0 .087-.01.125-.03l8.08-4.476c.076-.04.124-.118.124-.204v-8.982c-.001-.086-.05-.165-.125-.206s-.17-.04-.247 0l-8.08 4.476c-.074.042-.12.12-.12.205V37.7c0 .086.046.16.12.204a.25.25 0 0 0 .122.031" fill="#3999c6"/><path d="M28.194 43.85c.044 0 .087-.01.125-.03l8.08-4.476a.23.23 0 0 0 .125-.204v-8.982c-.001-.086-.05-.165-.125-.206s-.17-.04-.247 0l-8.08 4.476c-.074.042-.12.12-.12.205v8.983c0 .086.046.16.12.204.04.02.08.03.12.03m10.476-5.915c.044 0 .087-.01.125-.03l8.08-4.476c.076-.04.124-.118.124-.204v-8.982c-.001-.086-.05-.165-.125-.206s-.17-.04-.247 0l-8.08 4.476c-.074.042-.12.12-.12.205V37.7c0 .086.046.16.12.204a.25.25 0 0 0 .122.031m-10.476-5.914c.044 0 .087-.01.125-.03l8.08-4.476a.23.23 0 0 0 .125-.204V18.33c-.001-.086-.05-.165-.125-.206s-.17-.04-.247 0l-8.08 4.476c-.074.042-.12.12-.12.205v8.983c0 .086.046.16.12.204.04.02.08.03.12.03m10.476-5.915c.044 0 .087-.01.125-.03l8.08-4.476a.23.23 0 0 0 .124-.204v-8.982c-.001-.086-.05-.165-.125-.206s-.17-.04-.247 0l-8.08 4.476c-.074.042-.12.12-.12.205v8.983c0 .086.046.16.12.204a.25.25 0 0 0 .122.031" opacity=".15" fill="#62117a"/><path d="M25.806 32.022c-.044 0-.087-.01-.125-.03l-8.08-4.476a.23.23 0 0 1-.125-.204V18.33c0-.084.046-.16.125-.206s.17-.04.247 0l8.08 4.476c.075.043.12.12.12.205v8.983c0 .085-.046.163-.12.204-.037.02-.08.03-.12.03m0 11.83c-.044 0-.087-.01-.125-.03l-8.08-4.476a.23.23 0 0 1-.125-.204v-8.982c0-.084.046-.16.125-.206s.17-.04.247 0l8.08 4.476c.075.043.12.12.12.205v8.983c0 .085-.046.163-.12.204-.037.02-.08.03-.12.03M15.33 26.107c-.044 0-.087-.01-.125-.03L7.124 21.6A.23.23 0 0 1 7 21.396v-8.982c0-.084.046-.16.125-.206s.17-.04.247 0l8.08 4.476c.075.043.12.12.12.205v8.983c0 .085-.046.163-.12.204a.25.25 0 0 1-.122.031m0 11.83c-.044 0-.087-.01-.125-.03l-8.08-4.476C7.048 33.4 7 33.31 7 33.225v-8.982c0-.084.046-.16.125-.206s.17-.04.247 0l8.08 4.476c.075.043.12.12.12.205V37.7c0 .085-.046.163-.12.204a.25.25 0 0 1-.122.031m3.5-22.3c.022-.036.053-.065.1-.085l8.03-4.364a.25.25 0 0 1 .243-.002l7.95 4.327c.074.04.12.116.12.2a.24.24 0 0 1-.124.199l-8.03 4.363c-.076.04-.167.04-.242-.002l-7.95-4.328c-.073-.038-.12-.113-.12-.195.001-.04.013-.08.034-.113m-10.47-5.7c.022-.036.052-.065.09-.085L16.4 5.488c.074-.043.166-.043.24-.002l7.862 4.327c.073.04.12.117.118.2s-.05.16-.123.2l-7.942 4.363a.25.25 0 0 1-.239-.002l-7.863-4.328c-.072-.04-.118-.113-.12-.195.001-.04.013-.08.034-.113m21.16.096c.022-.036.052-.065.09-.085l7.942-4.364c.074-.043.166-.043.24-.002l7.862 4.327c.073.04.12.117.118.2s-.05.16-.123.2l-7.942 4.363a.25.25 0 0 1-.239-.002l-7.863-4.328c-.072-.04-.118-.113-.12-.195.001-.04.013-.08.034-.113M18.88 4.41c.022-.035.053-.064.1-.084L27 .032c.075-.042.167-.043.243-.002l7.95 4.257a.22.22 0 0 1 .119.196c-.004.083-.05.157-.124.196L27.16 8.97c-.076.04-.166.038-.242-.002l-7.95-4.257c-.073-.037-.12-.11-.12-.192a.23.23 0 0 1 .034-.111" fill="#59b4d9"/><path d="M18.84 15.636c.022-.036.053-.065.1-.085l8.03-4.364a.25.25 0 0 1 .243-.002l7.95 4.327c.074.04.12.116.12.2a.24.24 0 0 1-.124.199l-8.03 4.363c-.076.04-.167.04-.242-.002l-7.95-4.328c-.073-.038-.12-.113-.12-.195.001-.04.013-.08.034-.113m-10.47-5.7c.022-.036.052-.065.09-.085L16.4 5.488c.074-.043.166-.043.24-.002l7.862 4.327c.073.04.12.117.118.2s-.05.16-.123.2l-7.942 4.363a.25.25 0 0 1-.239-.002l-7.863-4.328c-.072-.04-.118-.113-.12-.195.001-.04.013-.08.034-.113m21.16.096c.022-.036.052-.065.09-.085l7.942-4.364c.074-.043.166-.043.24-.002l7.862 4.327c.073.04.12.117.118.2s-.05.16-.123.2l-7.942 4.363a.25.25 0 0 1-.239-.002l-7.863-4.328c-.072-.04-.118-.113-.12-.195.001-.04.013-.08.034-.113M18.88 4.41c.022-.035.053-.064.1-.084L27 .032c.075-.042.167-.043.243-.002l7.95 4.257a.22.22 0 0 1 .119.196c-.004.083-.05.157-.124.196L27.16 8.97c-.076.04-.166.038-.242-.002l-7.95-4.257c-.073-.037-.12-.11-.12-.192a.23.23 0 0 1 .034-.111M7.125 33.43l8.08 4.476c.077.042.17.042.246 0s.12-.12.12-.204v-6.766c-.355-.054-.713-.082-1.072-.084-2.196 0-3.833.355-5.152.642-.924.2-1.654.358-2.348.358v1.374c0 .086.046.163.125.204zm18.68 10.422c.04 0 .08-.01.12-.03.074-.04.12-.12.12-.204v-7.223l-2.254.03c-.932 0-1.328-.026-1.49-.044-.233-.168-.686-.802-.994-1.234-.793-1.1-1.956-2.736-3.834-3.635v7.63c0 .086.046.162.125.204l8.08 4.476c.037.02.08.03.124.03zm10.718-4.71v-.963l-3.053 1.306c-.367-2.963-3.394-3.088-4.402-3.13l-.436-.008-.68.007v7.263c0 .086.046.16.12.204s.17.042.246.001l8.08-4.476a.23.23 0 0 0 .124-.204zm3.03-2.31l-1.126.515v.358c0 .086.046.16.12.204s.17.042.246 0l3.302-1.83c-.883.108-1.742.362-2.542.752z" opacity=".2" fill="#fff"/><path d="M18.81 49.35c-2.676 0-6.01-2.854-7.317-4.08l-.857-.79c-2.05-1.795-4.16-2.63-6.637-2.63-2.272 0-3.5-.01-3.5-.01v-8.49H7c.858 0 1.698-.183 2.67-.394 1.245-.27 2.795-.606 4.83-.606 2.975 0 4.426 2.035 5.592 3.67.66.924 1.23 1.722 1.91 1.83.306.05.87.072 1.774.072l2.91-.044 1.958-.034.357.006c2.07.087 2.9.647 3 2 .023.36-.016.7-.117 1.04l-.313 1.023.985-.416 7.65-3.32c1.225-.59 2.52-.916 3.65-.916 1.193 0 2.073.367 2.414 1.008.01.02.942 1.85-2.093 3.628l-5.263 3.043-5.67 3.34c-.887.59-2.11.664-3.076.664-.523 0-1.058-.025-1.588-.05l-1.58-.052c-1.288 0-3.22.146-5.266.3l-2.734.2-.186.006z" fill="#804998"/><path d="M32.75 41.96l7.674-3.33c1.158-.56 2.377-.866 3.433-.866.988 0 1.726.277 1.973.742.022.05.66 1.46-1.904 2.962l-5.26 3.04-5.697 3.357c-.776.515-1.904.58-2.8.58-.5 0-1.01-.023-1.516-.047L27 48.344c-1.296 0-3.218.145-5.253.3l-2.78.202-.157.006c-2.567 0-5.988-3.02-6.976-3.945l-.87-.8C8.82 42.226 6.605 41.35 4 41.35c-1.43 0-2.443-.004-3-.006V33.85h6c.9 0 1.772-.188 2.77-.404 1.236-.268 2.753-.596 4.73-.596 2.717 0 4.027 1.838 5.185 3.46.725 1.016 1.35 1.893 2.237 2.034.34.054.912.078 1.854.078l2.764-.04.31-.007 1.793-.03.336.006c2.245.094 2.47.75 2.522 1.533.02.3-.013.59-.096.86l-.665 1.808s1.318-.3 2.01-.592" opacity=".2" fill="#fff"/><g fill="#68217a"><path d="M18.81 49.85c-2.622 0-5.762-2.436-7.66-4.215l-.846-.778C8.354 43.148 6.35 42.35 4 42.35c-2.275 0-3.504-.01-3.504-.01a.5.5 0 0 1-.496-.5v-8.49a.5.5 0 0 1 .5-.5H7c.803 0 1.62-.177 2.563-.382 1.27-.275 2.848-.618 4.937-.618 3.23 0 4.83 2.242 6 3.88.57.798 1.107 1.55 1.58 1.626.686.1 2.987.058 4.666.02l2.275-.026c1.644.07 3.343.416 3.48 2.467.03.464-.03.872-.138 1.22L40 37.73c2.846-1.374 5.87-1.29 6.72.307.274.514.734 2.53-2.28 4.295l-5.267 3.045-5.645 3.324c-1.313.87-3.183.78-4.99.695L27 49.346c-1.266 0-3.2.146-5.228.3l-2.74.2-.22.006zM1 41.345l3 .006c2.57 0 4.85.9 6.964 2.755l.87.8c1.713 1.605 4.924 4.118 7.132 3.94l2.73-.198L27 48.345l1.576.05c1.646.08 3.35.16 4.39-.53.965-.638 3.054-1.838 5.7-3.357l5.26-3.04c1.516-.888 2.353-2.12 1.905-2.962-.537-1.006-2.898-1.084-5.406.124l-9.086 3.924a.5.5 0 0 1-.821-.396.5.5 0 0 1 .306-.448c.028-.024.755-.67.678-1.825-.06-.907-.492-1.45-2.52-1.533-.354-.017-1.216.004-2.213.026-1.908.044-4.07.09-4.846-.032-.886-.142-1.51-1.02-2.235-2.034-1.1-1.542-2.47-3.46-5.186-3.46-1.98 0-3.438.316-4.725.596-1 .217-1.865.404-2.775.404H1z"/><path d="M23.644 43.368c-1.974 0-3.384-.236-4.177-.932L16.4 39.74l.658-.752 3.078 2.696c1.05.92 5.578.575 7.284.463 2.714-.18 2.996-.314 4.64-.98a.5.5 0 0 1 .375.927c-1.74.702-2.145.864-4.95 1.05l-3.833.224z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Managed_Databases.svg b/src/main/webapp/img/lib/mscae/Managed_Databases.svg new file mode 100644 index 0000000000000000000000000000000000000000..514b8fced077514d5e83c9025dee86b57d372e8a --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Managed_Databases.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="16000" height="16999"><path d="M12000 3499V2499C12000 1119 9314 0 6000 0S0 1119 0 2499v1000c0 1380 2686 2499 6000 2499s6000-1119 6000-2499z" fill="#fff"/><path d="M6000 16999c-3281 0-5960-1047-6000-2500V3499c41 1454 2720 2500 6000 2500s5960-1046 6001-2500v11000c-42 1453-2721 2500-6001 2500z" fill="#2687ce"/><ellipse cx="6000" cy="2749" rx="4500" ry="1750" fill="#d6e86c"/><path d="M2422 3810c822-418 2119-688 3578-688s2756 270 3578 688c-822 419-2119 689-3578 689s-2756-270-3578-689z" fill="#bad80a"/><path d="M6000 5999v11000C2686 16999 0 15971 0 14499V3499c0 1473 2686 2500 6000 2500z" fill="#0072c6"/><path d="M14000 16999c1105 0 2000-895 2000-2000 0-1192-1031-2112-2211-1989 636-3085-1716-6011-4897-6011-2083 0-3869 1274-4620 3085C2097 9595 0 11244 0 13499c0 1933 1567 3500 3500 3500z" fill="#c0ecfc"/><path d="M13790 10989c-467-2277-2483-3990-4898-3990-2083 0-3869 1274-4620 3085-248-56-507-85-772-85C1567 9999 0 11566 0 13499s1567 3500 3500 3500h2353c-1569 0-2841-1272-2841-2841s1272-2842 2841-2842c216 0 425 24 627 70 610-1470 2059-2505 3750-2505 1534 0 2870 852 3560 2108z" fill="#66d7f7"/><path d="M6000 15999h1000v-3000l1500 1500 1500-1500v3000h1000v-5000h-1000v500l-1500 1500-1500-1500v-500H6000z" fill="#005e79"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Managed_Desktop.svg b/src/main/webapp/img/lib/mscae/Managed_Desktop.svg new file mode 100644 index 0000000000000000000000000000000000000000..6312ccea8cec8ab89168ac169aa55fea3c4a4e53 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Managed_Desktop.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="49.376" height="35.9"><path d="M49.188 34.32l-3.5-7.42V2.4A2.41 2.41 0 0 0 43.278 0L6.098.026a2.41 2.41 0 0 0-2.41 2.41V26.9l-3.5 7.42a1 1 0 0 0 .814 1.581h47.372a1 1 0 0 0 .814-1.581z" fill="#3e3e3e"/><path d="M29.284 32.9h-9.19c-.3 0-.495-.26-.36-.482l.808-1.333c.067-.114.207-.185.36-.185h7.576c.153 0 .293.07.36.184l.808 1.333c.134.222-.06.483-.36.483z" opacity=".6" fill="#fff"/><path d="M6.688 2.9h36v24h-36z" fill="#59b4d9"/><path d="M6.688 2.9h36v24h-36z" opacity=".8" fill="#fff"/><use xlink:href="#B" fill="#7fba00"/><use xlink:href="#B" opacity=".15"/><defs ><path id="B" d="M15.027 14.828l-.632-.73c-.164-.193-.164-.498.026-.682l1.824-1.798c.087-.084.2-.128.303-.128.128 0 .243.056.328.156l5.017 5.734 8.632-11.784c.087-.12.216-.184.354-.184a.42.42 0 0 1 .277.103L33.13 7.14c.096.075.155.184.172.314.008.128-.018.26-.096.35L22.12 22.932z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Managed_Identities.svg b/src/main/webapp/img/lib/mscae/Managed_Identities.svg new file mode 100644 index 0000000000000000000000000000000000000000..5887b1cc9903551c99169717cc78c5ddb6d7bc42 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Managed_Identities.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="76.032" height="100"><path d="M28.284 81.85a5.07 5.07 0 0 1 0-7.172L39.412 63.55V53.6l16.433-16.434a10.83 10.83 0 0 0 0-15.314l-18.68-18.68a10.831 10.831 0 0 0-15.316 0L3.172 21.852a10.828 10.828 0 0 0 0 15.314L20.908 54.9v1.5l-5.05 5.05 5.005 5.005-5.005 5 5.005 5.005-5.005 5 5.05 5.05v.063l8.6 8.6 6.05-6.05zM23.36 13.834a6.147 6.147 0 1 1 6.147 6.147 6.148 6.148 0 0 1-6.147-6.147z" fill="#fcd116"/><path d="M12.364 25.92h35.482v5.1H12.364zm0 8.297h35.482v5.1H12.364z" opacity=".5" fill="#fff"/><path d="M54.3 100a3.978 3.978 0 0 1-2.835-1.175L33.735 81.1a4.008 4.008 0 0 1 0-5.67L51.46 57.7a4.005 4.005 0 0 1 5.67 0l17.724 17.73a4.006 4.006 0 0 1 0 5.672L57.13 98.825A3.978 3.978 0 0 1 54.3 100" fill="#59b4d9"/><g fill="#fff"><path d="M66.132 74.867a3.393 3.393 0 0 0-2.839 5.262L56.56 86.86a3.991 3.991 0 0 0-.57-.324V69.36a3.4 3.4 0 1 0-3.388 0v17.176a3.929 3.929 0 0 0-.55.307l-6.74-6.74a3.493 3.493 0 1 0-1.744 1.361l7.085 7.086a3.957 3.957 0 1 0 7.292.028l7.106-7.105a3.356 3.356 0 0 0 1.079.191 3.4 3.4 0 0 0 0-6.8z"/><path d="M53.484 67.092l1.55-1.552 12.714 12.7-1.552 1.55z" opacity=".5"/><path d="M40.86 78.262L53.57 65.55l1.552 1.55L42.4 79.813z" opacity=".5"/></g><path d="M56.612 90.1a2.356 2.356 0 1 1-2.356-2.355 2.355 2.355 0 0 1 2.356 2.355m-.427-23.67a1.89 1.89 0 1 1-1.89-1.89 1.889 1.889 0 0 1 1.89 1.89M44.352 78.265a1.89 1.89 0 1 1-1.89-1.89 1.891 1.891 0 0 1 1.89 1.89m23.67 0a1.891 1.891 0 1 1-1.891-1.89 1.891 1.891 0 0 1 1.891 1.89" fill="#b8d432"/><path d="M57.13 57.7a4 4 0 0 0-5.669 0L33.735 75.43a4.008 4.008 0 0 0 0 5.67L43.77 91.135l18.88-27.913z" opacity=".1" fill="#fff"/><path d="M34.788 68.137v-12.92l-3.864 1.903V72z" opacity=".4" fill="#ff8c00"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Management_Groups.svg b/src/main/webapp/img/lib/mscae/Management_Groups.svg new file mode 100644 index 0000000000000000000000000000000000000000..8be70afedeadcafcd4faf43242a419a287f37b72 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Management_Groups.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="40.4"><path d="M35 16.4l-.288.692L25.768 6.36 25 7l-.768-.64-8.944 10.732L15 16.4 9.077 30.615l1.846.77L15 21.6l4.077 9.785 1.846-.77-4.767-11.44L25 8.562l8.844 10.613-4.767 11.44 1.846.77L35 21.6l4.077 9.785 1.846-.77z" fill="#7fba00"/><g fill="#3999c6"><circle cx="40" cy="31" r="3"/><circle cx="30" cy="31" r="3"/></g><circle cx="25" cy="7" r="5" fill="#804998"/><g fill="#0072c6"><circle cx="15" cy="19" r="4"/><circle cx="35" cy="19" r="4"/></g><g fill="#3999c6"><circle cx="20" cy="31" r="3"/><circle cx="10" cy="31" r="3"/></g><path d="M9.5 40.4c-.244-.02-.482-.088-.7-.2l-6.8-4c-1.2-.72-1.954-2-2-3.4V7.6c.02-1.406.78-2.698 2-3.4l6.8-4a1.46 1.46 0 0 1 1.977.514A1.46 1.46 0 0 1 10.3 2.7l-6.8 4c-.28.222-.46.546-.5.9v25.2c.04.354.22.678.5.9l6.8 4c.332.2.57.52.665.896S11 39.37 10.8 39.7a1.71 1.71 0 0 1-1.3.7zM40.5 0c.244.02.482.088.7.2l6.8 4c1.2.72 1.954 2 2 3.4v25.2c-.02 1.406-.78 2.698-2 3.4l-6.8 4a1.46 1.46 0 0 1-1.977-.514A1.46 1.46 0 0 1 39.7 37.7l6.8-4c.28-.222.46-.546.5-.9V7.6c-.04-.354-.22-.678-.5-.9l-6.8-4c-.332-.2-.57-.52-.665-.896S39 1.03 39.2.7a1.89 1.89 0 0 1 1.3-.7z" fill="#7a7a7a"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Management_Portal.svg b/src/main/webapp/img/lib/mscae/Management_Portal.svg index ab66d9c35fc5de17f024ac2622693eddfb9ba1b1..51479a46fdb32aa51bf6fc98ae2788c10b921870 100644 --- a/src/main/webapp/img/lib/mscae/Management_Portal.svg +++ b/src/main/webapp/img/lib/mscae/Management_Portal.svg @@ -1,80 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="42.599998" - width="50" - viewBox="0 0 50 42.599998" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure Management Portal_COLOR.svg"><metadata - id="metadata25"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs23" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview21" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="10.363697" - inkscape:cx="22.318028" - inkscape:cy="15.52327" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 0,40.6 C 0,41.7 0.9,42.6 2,42.6 L 48,42.6 C 49.1,42.6 50,41.7 50,40.6 L 50,6.3 0,6.3 0,40.6 Z" - id="path3" - inkscape:connector-curvature="0" - style="fill:#1e1e1e" /><path - d="M 0,40.6 C 0,41.7 0.9,42.6 2,42.6 L 48,42.6 C 49.1,42.6 50,41.7 50,40.6 L 50,6 0,6 0,40.6 Z" - id="path5" - inkscape:connector-curvature="0" - style="opacity:0.25;fill:#0072c6" /><path - d="M 48,0 2,0 C 0.9,0 0,0.9 0,2 L 0,8 50,8 50,2 C 50,0.9 49.1,0 48,0" - id="path7" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /><rect - x="12" - y="12" - width="38" - height="26" - id="rect9" - style="fill:#e5e5e5" /><rect - x="0" - y="12" - width="12" - height="26" - id="rect11" - style="fill:#59b4d9" /><g - id="g13" - style="opacity:0.2" - transform="translate(0,-3.7)"><g - id="g15"><g - id="g17"><path - d="M 2,3.7 C 0.9,3.7 0,4.6 0,5.7 L 0,13 0,16.3 0,44.3 C 0,45.4 0.9,46.3 2,46.3 L 4.2,46.3 43.6,3.7 2,3.7 Z" - id="path19" - inkscape:connector-curvature="0" - style="fill:#ffffff" /></g></g></g></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" height="42.6" width="50"><path d="M0 40.6c0 1.1.9 2 2 2h46c1.1 0 2-.9 2-2V6.3H0v34.3z" fill="#1e1e1e"/><path d="M0 40.6c0 1.1.9 2 2 2h46c1.1 0 2-.9 2-2V6H0v34.6z" opacity=".25" fill="#0072c6"/><path d="M48 0H2C.9 0 0 .9 0 2v6h50V2c0-1.1-.9-2-2-2" fill="#a0a1a2"/><path d="M12 12h38v26H12z" fill="#e5e5e5"/><path d="M0 12h12v26H0z" fill="#59b4d9"/><path d="M2 0C.9 0 0 .9 0 2v38.6c0 1.1.9 2 2 2h2.2L43.6 0H2z" fill="#fff" opacity=".2"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/MediaFile.svg b/src/main/webapp/img/lib/mscae/MediaFile.svg index a053da192b7c54394b51d05c5decafe6644fd48d..f7a69a7d20a9f0eb8618d50d6ffd1bbdfa67168a 100644 --- a/src/main/webapp/img/lib/mscae/MediaFile.svg +++ b/src/main/webapp/img/lib/mscae/MediaFile.svg @@ -1,85 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="44" - height="50" - viewBox="0 0 44 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="MediaFile.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata6346"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs6344" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview6342" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="22" - inkscape:cy="25" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<polygon - points="38.239,0 38,0 3,0 3,50 47,50 47,9 47,8.761 45,6.761 40.239,2 " - id="polygon6327" - style="fill:#59b4d9" - transform="translate(-3)" /> -<polygon - points="5,48 45,48 45,9 38,9 38,2 5,2 " - id="polygon6329" - style="opacity:0.8;fill:#ffffff" - transform="translate(-3)" /> -<path - d="m 35.857,24.738 c 0,0.618 -0.501,1.119 -1.119,1.119 H 19.637 c -0.618,0 -1.119,-0.501 -1.119,-1.119 0,-0.618 0.501,-1.119 1.119,-1.119 h 15.101 c 0.618,0 1.119,0.501 1.119,1.119" - id="path6331" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<polygon - points="11.509,26.485 11.509,11.203 24.765,18.844 " - id="polygon6333" - style="fill:#59b4d9" - transform="translate(-3)" /> -<path - d="m 35.857,29.89 c 0,0.618 -0.501,1.118 -1.119,1.118 H 9.628 c -0.617,0 -1.118,-0.5 -1.118,-1.118 0,-0.618 0.501,-1.119 1.118,-1.119 h 25.11 c 0.618,0 1.119,0.501 1.119,1.119" - id="path6335" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="m 35.857,35.042 c 0,0.618 -0.501,1.119 -1.119,1.119 H 9.628 c -0.617,0 -1.118,-0.501 -1.118,-1.119 0,-0.617 0.501,-1.119 1.118,-1.119 h 25.11 c 0.618,0 1.119,0.502 1.119,1.119" - id="path6337" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="m 35.857,40.194 c 0,0.618 -0.501,1.119 -1.119,1.119 H 9.628 c -0.617,0 -1.118,-0.501 -1.118,-1.119 0,-0.618 0.501,-1.119 1.118,-1.119 h 25.11 c 0.618,0 1.119,0.501 1.119,1.119" - id="path6339" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="44" height="50"><path d="M35.24 0H0v50h44V8.76L37.24 2z" fill="#59b4d9"/><path d="M2 48h40V9h-7V2H2z" opacity=".8" fill="#fff"/><g fill="#59b4d9"><path d="M35.857 24.738a1.12 1.12 0 0 1-1.119 1.119h-15.1a1.12 1.12 0 0 1-1.119-1.119 1.12 1.12 0 0 1 1.119-1.119h15.1a1.12 1.12 0 0 1 1.119 1.119M8.5 26.485V11.203l13.256 7.64zM35.857 29.9a1.12 1.12 0 0 1-1.119 1.118h-25.1a1.12 1.12 0 1 1-.01-2.247h25.1a1.12 1.12 0 0 1 1.119 1.119"/><use xlink:href="#B"/><use xlink:href="#B" y="5.152"/></g><defs ><path id="B" d="M35.857 35.042a1.12 1.12 0 0 1-1.119 1.119h-25.1a1.12 1.12 0 0 1-1.118-1.119 1.12 1.12 0 0 1 1.118-1.119h25.1a1.12 1.12 0 0 1 1.119 1.119"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Media_Encoding.svg b/src/main/webapp/img/lib/mscae/Media_Encoding.svg new file mode 100644 index 0000000000000000000000000000000000000000..4f979a4b3fa6bf5f1bc12cb039cb7f9826d2d90c --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Media_Encoding.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="42.542" height="50"><g fill="#3e3e3e"><path d="M30.96 41.507H12.063a3.521 3.521 0 1 1 0-7.042H30.96c2.503 0 4.54-2.036 4.54-4.54V11.58c0-2.503-2.036-4.54-4.54-4.54H12.063a3.521 3.521 0 1 1 0-7.042H30.96c6.386 0 11.58 5.195 11.58 11.58v18.346c0 6.385-5.195 11.58-11.58 11.58zM6.315 45.77H25.37v1.76H6.315z"/><path d="M12.323 47.53h7.042V50h-7.042z"/><path d="M14.963 7.042h1.76v40.49h-1.76z"/></g><path d="M0 20.364h28.166v7.922H0z" fill="#5b8ed8"/><path d="M5.28 12.443h19.364v7.922H5.28z" fill="#59b4d9"/><path d="M12.323 9.802h7.042v2.64h-7.042zm0 18.484h7.042v2.47h-7.042z" fill="#666"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Media_On_Demand.svg b/src/main/webapp/img/lib/mscae/Media_On_Demand.svg new file mode 100644 index 0000000000000000000000000000000000000000..cb7c5c2587c2ce50d691aa2755d0308abf594abe --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Media_On_Demand.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path d="M50 44a6 6 0 0 1-6 6H6a6 6 0 0 1-6-6V6a6 6 0 0 1 6-6h38a6 6 0 0 1 6 6z" fill="#59b4d9"/><g fill="#fff"><path d="M14 50H6a6 6 0 0 1-6-6V6a6 6 0 0 1 6-6h34z" opacity=".15"/><path d="M16 38.333V11.667l21.302 13.347z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Media_Services.svg b/src/main/webapp/img/lib/mscae/Media_Services.svg index 02c85fbe50cb7ecad0bac64e11c14d070547f04a..f5cf6e98125e04f2c53c24891455bded63314963 100644 --- a/src/main/webapp/img/lib/mscae/Media_Services.svg +++ b/src/main/webapp/img/lib/mscae/Media_Services.svg @@ -1,73 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="43.300999" - height="50" - viewBox="0 0 43.300999 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure Media Services _COLOR.svg"><metadata - id="metadata19"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs17" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview15" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="10.363697" - inkscape:cx="24.037692" - inkscape:cy="17.979766" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><polygon - points="24.65,0 46.301,12.5 46.301,37.5 24.65,50 3,37.5 3,12.5 " - id="polygon3" - style="fill:#3e3e3e" - transform="translate(-3,0)" /><path - enable-background="new " - d="M 21.651,50 43.3,37.5 43.3,12.5 C 43.3,12.5 25.413,26.12 21.651,50" - id="path5" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#ffffff" /><path - d="M 31.172,14.958 C 25.622,9.432 16.654,9.432 11.098,14.958 5.549,20.507 5.549,29.493 11.098,35.042 16.647,40.567 25.622,40.567 31.172,35.042 36.715,29.497 36.715,20.511 31.172,14.958" - id="path7" - inkscape:connector-curvature="0" - style="fill:#ffffff" /><path - d="M 29.227,16.903 C 24.753,12.447 17.522,12.447 13.042,16.903 8.569,21.377 8.569,28.622 13.042,33.095 17.517,37.551 24.753,37.551 29.227,33.095 33.697,28.626 33.697,21.38 29.227,16.903" - id="path9" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><polygon - points="30.986,25.015 31.029,24.986 20.127,17.816 20.127,25.015 " - id="polygon11" - style="fill:#ffffff" - transform="translate(-3,0)" /><polygon - enable-background="new " - points="30.986,25.015 20.127,25.015 20.127,32.213 " - id="polygon13" - style="opacity:0.8;fill:#ffffff" - transform="translate(-3,0)" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="43.301" height="50"><path d="M21.65 0L43.3 12.5v25L21.65 50 0 37.5v-25z" fill="#3e3e3e"/><g fill="#fff"><path d="M21.65 50L43.3 37.5v-25S25.413 26.12 21.65 50" opacity=".2"/><path d="M31.172 14.958a14.23 14.23 0 0 0-20.074 0 14.2 14.2 0 0 0 0 20.084 14.23 14.23 0 0 0 20.074 0 14.21 14.21 0 0 0 0-20.084"/></g><path d="M29.227 16.903a11.47 11.47 0 0 0-16.185 0 11.45 11.45 0 0 0 0 16.192 11.47 11.47 0 0 0 16.185 0c4.47-4.47 4.47-11.715 0-16.192" fill="#59b4d9"/><g fill="#fff"><path d="M27.986 25.015l.043-.03-10.902-7.17v7.2z"/><path d="M27.986 25.015h-10.86v7.198z" opacity=".8"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Migration_Projects.svg b/src/main/webapp/img/lib/mscae/Migration_Projects.svg new file mode 100644 index 0000000000000000000000000000000000000000..85e0815eba12f7fb206828c6ab1e799b1cab3d26 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Migration_Projects.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="31.8"><path d="M6.7 20.2c0 2.4 2 4.5 4.6 4.8h29.6c5 0 9.1-3.8 9.1-8.5 0-4.8-4.1-8.5-9.1-8.5-1.1 0-2 .3-3 .5-1.8-5-6.8-8.5-12.6-8.5h-.1c-7.4 0-13.3 5.6-13.3 12.4 0 1.1.3 2.3.5 3.3h-.7c-2.7-.2-5 1.8-5 4.5" fill="#0072c6"/><path d="M0 26.5c0 2.7 2.2 5 5.1 5.3H38c5.6 0 10.1-4.2 10.1-9.5s-4.5-9.5-10.1-9.5c-1.2 0-2.3.3-3.3.6-2-5.6-7.5-9.5-14-9.5h-.1c-8.2 0-14.8 6.2-14.8 13.8 0 1.3.3 2.5.6 3.6h-.8c-3 0-5.6 2.2-5.6 5.2" fill="#59b4d9"/><g fill="#fff"><path d="M20.7 3.9h-.1c-8.2 0-14.8 6.2-14.8 13.8 0 1.3.3 2.5.6 3.6h-.8c-3 0-5.6 2.2-5.6 5.2 0 2.7 2.2 5 5.1 5.3h.8c-3-6.8 4.4-8.2 4.4-8.2C9.6 6.9 25.3 5 25.7 4.8c-1.5-.6-3.2-.9-5-.9z" opacity=".2"/><path d="M16.3 15.2h4.9l7.2 7.2-9.5 9.4h-4.8l9.3-9.4zm11-10.7h5l5.7 5.8-7.1 6.9h-4.6l6.7-7zm5.8 12.9H38l4.8 4.8-6.6 6.5h-4.8l6.4-6.5z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Mobile_Engagement.svg b/src/main/webapp/img/lib/mscae/Mobile_Engagement.svg index 1a407f40128f6f6a780403e2f40dbb591884cc20..ddcb8b69ec67a06e75e4f4cfe3554b9ca8a07f49 100644 --- a/src/main/webapp/img/lib/mscae/Mobile_Engagement.svg +++ b/src/main/webapp/img/lib/mscae/Mobile_Engagement.svg @@ -1,100 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="34.400002" - height="50" - viewBox="0 0 34.400002 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure Mobile Engagement_COLOR.svg"><metadata - id="metadata29"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs27" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview25" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="7.3282407" - inkscape:cx="27.159554" - inkscape:cy="21.418689" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 34.4,47 C 34.4,48.7 33.1,50 31.4,50 L 3,50 C 1.3,50 0,48.7 0,47 L 0,3 C 0,1.3 1.3,0 3,0 L 31.4,0 C 33.1,0 34.4,1.3 34.4,3 L 34.4,47 Z" - id="path3" - inkscape:connector-curvature="0" - style="fill:#3e3e3e" /><rect - x="2.1999998" - y="5" - width="30" - height="35.200001" - id="rect5" - style="fill:#59b4d9" /><path - d="M 20.1,45.1 C 20.1,46.7 18.8,48 17.2,48 15.6,48 14.3,46.7 14.3,45.1 14.3,43.5 15.6,42.2 17.2,42.2 18.8,42.2 20.1,43.5 20.1,45.1" - id="path7" - inkscape:connector-curvature="0" - style="fill:#ffffff" /><path - d="M 19.1,45.1 C 19.1,46.1 18.3,47 17.2,47 16.2,47 15.3,46.2 15.3,45.1 15.3,44 16.1,43.2 17.2,43.2 18.3,43.2 19.1,44.1 19.1,45.1" - id="path9" - inkscape:connector-curvature="0" - style="fill:#b8d432" /><path - enable-background="new " - d="M 2.2,40.2 2.2,5 25,5 27,0 3,0 C 1.3,0 0,1.3 0,3 L 0,47 C 0,48.7 1.3,50 3,50 L 6.7,50 10.7,40.2 2.2,40.2 Z" - id="path11" - inkscape:connector-curvature="0" - style="opacity:0.15;fill:#ffffff" /><path - d="M 22.3,2.8 C 22.3,3.2 22,3.5 21.6,3.5 L 12.9,3.5 C 12.5,3.5 12.2,3.2 12.2,2.8 12.2,2.4 12.5,2.1 12.9,2.1 L 21.6,2.1 C 22,2.1 22.3,2.4 22.3,2.8" - id="path13" - inkscape:connector-curvature="0" - style="fill:#1e1e1e" /><path - d="M 22.3,2.8 C 22.3,3.2 22,3.5 21.6,3.5 L 12.9,3.5 C 12.5,3.5 12.2,3.2 12.2,2.8 12.2,2.4 12.5,2.1 12.9,2.1 L 21.6,2.1 C 22,2.1 22.3,2.4 22.3,2.8" - id="path15" - inkscape:connector-curvature="0" - style="fill:#ffffff" /><rect - x="5.3000002" - y="32.299999" - width="6" - height="6" - id="rect17" - style="clip-rule:evenodd;opacity:0.75;fill:#ffffff;fill-rule:evenodd" /><rect - x="14" - y="27.799999" - width="6" - height="10.5" - id="rect19" - style="clip-rule:evenodd;opacity:0.75;fill:#ffffff;fill-rule:evenodd" /><rect - x="22.700001" - y="23.299999" - width="6" - height="15" - id="rect21" - style="clip-rule:evenodd;opacity:0.75;fill:#ffffff;fill-rule:evenodd" /><path - d="M 25.9,7 8.1,7 C 6.5,7 5.3,8.3 5.3,9.8 L 5.3,18.4 C 5.3,20 6.6,21.2 8.1,21.2 L 11.6,21.2 11.6,24.9 15.3,21.2 25.9,21.2 C 27.5,21.2 28.7,19.9 28.7,18.4 L 28.7,9.8 C 28.7,8.3 27.5,7 25.9,7 Z" - id="path23" - inkscape:connector-curvature="0" - style="opacity:0.75;fill:#ffffff" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="34.4" height="50"><path d="M34.4 47c0 1.7-1.3 3-3 3H3c-1.7 0-3-1.3-3-3V3c0-1.7 1.3-3 3-3h28.4c1.7 0 3 1.3 3 3v44z" fill="#3e3e3e"/><path d="M2.2 5h30v35.2h-30z" fill="#59b4d9"/><path d="M20.1 45.1c0 1.6-1.3 2.9-2.9 2.9s-2.9-1.3-2.9-2.9 1.3-2.9 2.9-2.9 2.9 1.3 2.9 2.9" fill="#fff"/><path d="M19.1 45.1c0 1-.8 1.9-1.9 1.9-1 0-1.9-.8-1.9-1.9s.8-1.9 1.9-1.9 1.9.9 1.9 1.9" fill="#b8d432"/><path d="M2.2 40.2V5H25l2-5H3C1.3 0 0 1.3 0 3v44c0 1.7 1.3 3 3 3h3.7l4-9.8H2.2z" opacity=".15" fill="#fff"/><path d="M22.3 2.8a.68.68 0 0 1-.7.7h-8.7a.68.68 0 0 1-.7-.7.68.68 0 0 1 .7-.7h8.7a.68.68 0 0 1 .7.7" fill="#1e1e1e"/><g fill="#fff"><path d="M22.3 2.8a.68.68 0 0 1-.7.7h-8.7a.68.68 0 0 1-.7-.7.68.68 0 0 1 .7-.7h8.7a.68.68 0 0 1 .7.7"/><path d="M5.3 32.3h6v6h-6zm8.7-4.5h6v10.5h-6zm8.7-4.5h6v15h-6z" opacity=".75" fill-rule="evenodd"/><path d="M25.9 7H8.1C6.5 7 5.3 8.3 5.3 9.8v8.6c0 1.6 1.3 2.8 2.8 2.8h3.5v3.7l3.7-3.7h10.6c1.6 0 2.8-1.3 2.8-2.8V9.8c0-1.5-1.2-2.8-2.8-2.8z" opacity=".75"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Module.svg b/src/main/webapp/img/lib/mscae/Module.svg index 73bf2addfb771d3baefe6ec5f3ef0bd2dae9b12f..edfcd42b1f007f910d297483fe69e0e846487aea 100644 --- a/src/main/webapp/img/lib/mscae/Module.svg +++ b/src/main/webapp/img/lib/mscae/Module.svg @@ -1,113 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="44" - height="44" - viewBox="0 0 44 44" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Module.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata6440"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs6438" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview6436" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.020815" - inkscape:cx="22.073097" - inkscape:cy="17.71167" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<rect - x="0" - y="0" - width="11.704" - height="11.541" - id="rect6417" - style="fill:#804998" /> -<rect - x="16.107" - y="0" - width="11.746" - height="11.541" - id="rect6419" - style="fill:#804998" /> -<rect - x="32.296001" - y="0" - width="11.704" - height="11.541" - id="rect6421" - style="fill:#804998" /> -<rect - x="0" - y="16.132999" - width="27.853001" - height="11.541" - id="rect6423" - style="fill:#804998" /> -<rect - x="32.296001" - y="16.132999" - width="11.704" - height="11.541" - id="rect6425" - style="fill:#804998" /> -<rect - x="0" - y="16.132999" - width="27.853001" - height="11.541" - id="rect6427" - style="opacity:0.2;fill:#ffffff" /> -<rect - x="32.296001" - y="16.132999" - width="11.704" - height="11.541" - id="rect6429" - style="opacity:0.2;fill:#ffffff" /> -<rect - x="0" - y="32.265999" - width="44" - height="11.734" - id="rect6431" - style="fill:#804998" /> -<rect - x="0" - y="32.265999" - width="44" - height="11.734" - id="rect6433" - style="opacity:0.4;fill:#ffffff" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="44" height="44"><path d="M0 0h11.704v11.54H0zm16.107 0h11.746v11.54H16.107zm16.19 0H44v11.54H32.296zM0 16.133h27.853v11.54H0zm32.296 0H44v11.54H32.296z" fill="#804998"/><path d="M0 16.133h27.853v11.54H0zm32.296 0H44v11.54H32.296z" opacity=".2" fill="#fff"/><path d="M0 32.266h44V44H0z" fill="#804998"/><path d="M0 32.266h44V44H0z" opacity=".4" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Monitor.svg b/src/main/webapp/img/lib/mscae/Monitor.svg new file mode 100644 index 0000000000000000000000000000000000000000..052e33e87585e3f6dbb766913ce6443f9c02d7df --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Monitor.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="49.95" height="50.019"><style><![CDATA[.J{enable-background:new}]]></style><path d="M22.805 4.4c-11.4 1.2-19.6 11.4-18.4 22.8s11.4 19.7 22.8 18.5 19.7-11.4 18.5-22.8c-.6-5.5-3.4-10.6-7.7-14.1-3.8-3-8.3-4.6-13-4.5-.7 0-1.4 0-2.2.1" fill="#fff"/><g fill="#7fba00" class="J"><path d="M16.405 19.5l-5-4.1c-2.1 3-3.1 6.6-3 10.2l6.4-.7c.1-1.9.6-3.8 1.6-5.4" opacity=".4"/><path d="M30.605 16.3l4.1-5c-3-2.1-6.6-3.1-10.2-3l.7 6.5c1.8-.1 3.7.4 5.4 1.5" opacity=".8"/><path d="M22.805 15l-.7-6.5c-3.6.6-6.9 2.4-9.3 5.1l5 4.1c1.4-1.4 3.2-2.3 5-2.7" opacity=".6"/><path d="M15.105 27.2l-6.5.7c.6 3.6 2.4 6.9 5.1 9.4l4.1-5c-1.3-1.5-2.3-3.2-2.7-5.1" opacity=".25"/></g><g fill="#a0a1a2"><path d="M49.805 22.4a24.67 24.67 0 0 0-9.3-16.9c-1-.8-2-1.5-3.1-2.1l-2 3.8 2.4 1.6c9 7.1 10.5 20.2 3.3 29.2-3.5 4.4-8.5 7.1-14.1 7.7-3.7.4-7.4-.2-10.7-1.8l-2 3.8c12.5 5.8 27.3.4 33.2-12.1 2-4.1 2.8-8.7 2.3-13.2"/><use xlink:href="#B"/></g><use xlink:href="#B" opacity=".2" fill="#fff" class="J"/><path d="M36.405 12.6l-4.1 5c1 1 1.8 2.2 2.3 3.4h6.8c-.8-3.1-2.5-6.1-5-8.4z" fill="#7fba00"/><path d="M23.105 27c-1.1-1.1-1.2-3 0-4.1.6-.6 1.3-.9 2.1-.9s1.5.3 2.1.8h14.9c1.2 0 2.1.9 2.1 2.1s-.9 2.1-2.1 2.1h-15.2c-.5.5-1.2.8-1.9.8-.8.1-1.5-.2-2-.8" fill="#dd5900"/><defs ><path id="B" d="M11.905 41.1c-8.9-7.2-10.2-20.2-3-29.1 6.5-8 17.8-10 26.6-4.8l2-3.8c-10.7-6.2-24.2-3.7-31.9 5.9-8.7 10.7-7.1 26.4 3.6 35.1 1.6 1.3 3.4 2.4 5.3 3.3l2-3.8c-1.7-.7-3.2-1.7-4.6-2.8"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Monitoring.svg b/src/main/webapp/img/lib/mscae/Monitoring.svg index ab2cfa711b900f3c5b43e6228d45ea8d491ee9a4..20a12e34b160a7e2813f20121ddaa132b05b583b 100644 --- a/src/main/webapp/img/lib/mscae/Monitoring.svg +++ b/src/main/webapp/img/lib/mscae/Monitoring.svg @@ -1,22 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path opacity="0.4" fill="#59B4D9" d="M16.456,19.473l-5.048-4.086c-2.158,3.088-3.137,6.688-2.991,10.232l6.454-0.679 - C14.871,23.05,15.392,21.152,16.456,19.473"/> -<path opacity="0.8" fill="#59B4D9" d="M30.575,16.279l4.087-5.049c-3.09-2.156-6.693-3.13-10.238-2.982l0.679,6.453 - C26.994,14.699,28.894,15.217,30.575,16.279"/> -<path opacity="0.6" fill="#59B4D9" d="M22.853,14.956l-0.68-6.46c-3.49,0.623-6.795,2.35-9.348,5.123l5.044,4.084 - C19.274,16.294,21.012,15.371,22.853,14.956"/> -<path opacity="0.25" fill="#59B4D9" d="M15.121,27.189l-6.46,0.682c0.62,3.492,2.345,6.801,5.121,9.357l4.083-5.044 - C16.455,30.775,15.534,29.034,15.121,27.189"/> -<path fill="#59B4D9" d="M36.43,12.647l-4.084,5.045c1.008,1.002,1.759,2.178,2.264,3.437h6.775 - C40.643,17.958,38.977,14.985,36.43,12.647z"/> -<path fill="#59B4D9" d="M44.261,24.978c0-0.003,0.002-0.005,0.002-0.008c-0.008-1.17-0.96-2.113-2.133-2.113l-0.004-0.005 - l-0.621,0.005H34.82h-7.601c-0.009-0.008-0.012,0.007-0.019,0c-0.57-0.565-1.314-0.813-2.057-0.813 - c-0.752,0-1.506,0.288-2.079,0.866c-1.136,1.145-1.129,2.995,0.018,4.131c0.57,0.565,1.312,0.845,2.052,0.845 - c0.688,0,1.373-0.298,1.923-0.779h15.085c1.172-0.004,2.114-0.952,2.118-2.124h0.002C44.262,24.981,44.261,24.98,44.261,24.978z"/> -<path fill="#59B4D9" d="M25,4.2c11.469,0,20.8,9.331,20.8,20.8S36.469,45.8,25,45.8S4.2,36.469,4.2,25S13.531,4.2,25,4.2 M25,0 - C11.193,0,0,11.193,0,25s11.193,25,25,25s25-11.193,25-25S38.807,0,25,0L25,0z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" fill="#59b4d9"><path opacity=".4" d="M16.456 19.473l-5.048-4.086C9.25 18.475 8.27 22.075 8.417 25.62l6.454-.68c0-1.9.52-3.788 1.585-5.467"/><path opacity=".8" d="M30.575 16.28l4.087-5.05c-3.1-2.156-6.693-3.13-10.238-2.982l.68 6.453c1.89-.002 3.79.516 5.472 1.578"/><path opacity=".6" d="M22.853 14.956l-.68-6.46a16.65 16.65 0 0 0-9.348 5.123l5.044 4.084c1.405-1.41 3.143-2.332 4.984-2.747"/><path opacity=".25" d="M15.12 27.19l-6.46.682c.62 3.492 2.345 6.8 5.12 9.357l4.083-5.044a10.19 10.19 0 0 1-2.744-4.995"/><path d="M36.43 12.647l-4.084 5.045a10.16 10.16 0 0 1 2.264 3.437h6.775c-.742-3.17-2.408-6.144-4.955-8.482zm7.83 12.33a2.13 2.13 0 0 0-2.131-2.121l-.004-.005-.62.005H27.22c-.6-.565-1.333-.813-2.076-.813a2.92 2.92 0 0 0-2.061 4.997c.57.565 1.312.845 2.052.845.688 0 1.373-.298 1.923-.78h15.085c1.172-.004 2.114-.952 2.118-2.124h.002zM25 4.2c11.47 0 20.8 9.33 20.8 20.8S36.47 45.8 25 45.8 4.2 36.47 4.2 25 13.53 4.2 25 4.2M25 0C11.193 0 0 11.193 0 25s11.193 25 25 25 25-11.193 25-25S38.807 0 25 0z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Multi_Factor_Authentication.svg b/src/main/webapp/img/lib/mscae/Multi_Factor_Authentication.svg index 808d0aeab81f04be1e47119b07e5040153899355..38ac5821d6e5ba4867373355e8933a4a3c208959 100644 --- a/src/main/webapp/img/lib/mscae/Multi_Factor_Authentication.svg +++ b/src/main/webapp/img/lib/mscae/Multi_Factor_Authentication.svg @@ -1,62 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="23.238693" - height="50.117889" - viewBox="0 0 23.238693 50.117889" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure Multi-Factor Authentication_COLOR.svg"><metadata - id="metadata13"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs11" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview9" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="10.363697" - inkscape:cx="1.0609861" - inkscape:cy="24.535692" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><ellipse - cx="8.4279051" - cy="3.7094495" - rx="2.8" - ry="1.6" - id="ellipse3" - style="fill:#b8d432" /><path - d="M 18.427906,22.30945 4.7279057,24.00945 2.9279057,9.6094496 C 2.8279057,8.4094496 3.6279057,7.4094496 4.8279057,7.3094496 L 12.727906,6.3094496 C 13.927906,6.2094496 14.927906,6.9094496 15.127906,8.1094496 L 16.427906,18.50945 C 16.527906,19.10945 17.027906,19.50945 17.627906,19.40945 18.227906,19.30945 18.627906,18.80945 18.527906,18.20945 L 16.527906,1.8094496 C 16.427906,0.60944956 15.327906,-0.09055044 14.127906,0.00944956 L 1.9279057,1.6094496 C 0.72790572,1.7094496 -0.17209428,2.7094496 0.02790572,3.9094496 L 2.5279057,24.00945 C 2.5279057,24.20945 2.6279057,24.30945 2.6279057,24.50945 2.0279057,24.90945 1.7279057,25.60945 1.8279057,26.30945 L 4.6279057,48.30945 C 4.7279057,49.40945 5.8279057,50.20945 6.8279057,50.10945 L 21.627906,48.10945 C 22.727906,48.00945 23.327906,46.90945 23.227906,45.80945 L 20.427906,23.80945 C 20.327906,22.80945 19.427906,22.20945 18.427906,22.30945 Z M 7.5279057,3.0094496 9.2279057,2.8094496 C 9.6279057,2.7094496 10.027906,3.0094496 10.027906,3.4094496 10.127906,3.8094496 9.8279057,4.2094496 9.4279057,4.2094496 L 7.7279057,4.4094496 C 7.3279057,4.5094496 6.9279057,4.2094496 6.9279057,3.8094496 6.8279057,3.4094496 7.1279057,3.1094496 7.5279057,3.0094496 Z M 13.627906,34.60945 14.027906,38.10945 11.427906,38.40945 10.927906,34.80945 C 10.127906,34.40945 9.3279057,33.60945 9.1279057,32.50945 8.9279057,30.90945 10.027906,29.50945 11.627906,29.30945 13.227906,29.10945 14.627906,30.20945 14.827906,31.80945 15.027906,33.00945 14.727906,34.00945 13.627906,34.60945 Z" - id="path5" - inkscape:connector-curvature="0" - style="fill:#3e3e3e" /><path - enable-background="new " - d="M 2.5279057,23.90945 C 2.5279057,24.10945 2.6279057,24.20945 2.6279057,24.40945 2.0279057,24.80945 1.7279057,25.50945 1.8279057,26.20945 L 3.5279057,39.70945 10.127906,23.40945 4.7279057,24.00945 2.9279057,9.6094496 C 2.8279057,8.4094496 3.6279057,7.4094496 4.8279057,7.3094496 L 12.727906,6.3094496 C 13.927906,6.2094496 14.927906,6.9094496 15.127906,8.1094496 L 15.427906,10.30945 17.127906,6.2094496 16.627906,1.9094496 C 16.527906,0.70944956 15.427906,0.00944956 14.227906,0.10944956 L 1.9279057,1.6094496 C 0.72790572,1.7094496 -0.17209428,2.7094496 0.02790572,3.9094496 L 2.5279057,23.90945 Z M 7.5279057,3.0094496 9.2279057,2.8094496 C 9.6279057,2.7094496 10.027906,3.0094496 10.027906,3.4094496 10.127906,3.8094496 9.8279057,4.2094496 9.4279057,4.2094496 L 7.7279057,4.4094496 C 7.3279057,4.5094496 6.9279057,4.2094496 6.9279057,3.8094496 6.8279057,3.4094496 7.1279057,3.1094496 7.5279057,3.0094496 Z" - id="path7" - inkscape:connector-curvature="0" - style="opacity:0.15;fill:#ffffff" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="23.239" height="50.118"><ellipse cx="8.428" cy="3.709" rx="2.8" ry="1.6" fill="#b8d432"/><path d="M18.428 22.31l-13.7 1.7-1.8-14.4c-.1-1.2.7-2.2 1.9-2.3l7.9-1c1.2-.1 2.2.6 2.4 1.8l1.3 10.4c.1.6.6 1 1.2.9s1-.6.9-1.2l-2-16.4c-.1-1.2-1.2-1.9-2.4-1.8l-12.2 1.6c-1.2.1-2.1 1.1-1.9 2.3l2.5 20.1c0 .2.1.3.1.5a1.84 1.84 0 0 0-.8 1.8l2.8 22c.1 1.1 1.2 1.9 2.2 1.8l14.8-2c1.1-.1 1.7-1.2 1.6-2.3l-2.8-22c-.1-1-1-1.6-2-1.5zm-10.9-19.3l1.7-.2c.4-.1.8.2.8.6.1.4-.2.8-.6.8l-1.7.2c-.4.1-.8-.2-.8-.6-.1-.4.2-.7.6-.8zm6.1 31.6l.4 3.5-2.6.3-.5-3.6c-.8-.4-1.6-1.2-1.8-2.3-.2-1.6.9-3 2.5-3.2s3 .9 3.2 2.5c.2 1.2-.1 2.2-1.2 2.8z" fill="#3e3e3e"/><path d="M2.528 23.91c0 .2.1.3.1.5a1.84 1.84 0 0 0-.8 1.8l1.7 13.5 6.6-16.3-5.4.6-1.8-14.4c-.1-1.2.7-2.2 1.9-2.3l7.9-1c1.2-.1 2.2.6 2.4 1.8l.3 2.2 1.7-4.1-.5-4.3c-.1-1.2-1.2-1.9-2.4-1.8l-12.3 1.5c-1.2.1-2.1 1.1-1.9 2.3l2.5 20zm5-20.9l1.7-.2c.4-.1.8.2.8.6.1.4-.2.8-.6.8l-1.7.2c-.4.1-.8-.2-.8-.6-.1-.4.2-.7.6-.8z" opacity=".15" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/MySQL_ClearDB_database.svg b/src/main/webapp/img/lib/mscae/MySQL_ClearDB_database.svg index 8bbcebbcaed50893421aaad5ff96d3c3aea23ec7..f9db7ddcba478c76dbcb7c88b395b4a42007e244 100644 --- a/src/main/webapp/img/lib/mscae/MySQL_ClearDB_database.svg +++ b/src/main/webapp/img/lib/mscae/MySQL_ClearDB_database.svg @@ -1,80 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="38" - height="50" - viewBox="0 0 38 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure MySQL ClearDB database_COLOR.svg"><metadata - id="metadata23"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs21" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview19" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="10.363697" - inkscape:cx="14.000588" - inkscape:cy="15.266665" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 0,6.831 0,43.169 C 0,46.941 8.507,50 19,50 L 19,6.831 0,6.831 Z" - id="path3" - inkscape:connector-curvature="0" - style="fill:#0072c6" /><path - d="M 18.74,49.999 19,49.999 C 29.493,49.999 38,46.942 38,43.168 L 38,6.831 18.74,6.831 18.74,49.999 Z" - id="path5" - inkscape:connector-curvature="0" - style="fill:#0072c6" /><path - enable-background="new " - d="M 18.74,49.999 19,49.999 C 29.493,49.999 38,46.942 38,43.168 L 38,6.831 18.74,6.831 18.74,49.999 Z" - id="path7" - inkscape:connector-curvature="0" - style="opacity:0.15;fill:#ffffff" /><path - d="M 38,6.831 C 38,10.604 29.493,13.662 19,13.662 8.507,13.662 0,10.603 0,6.831 0,3.058 8.507,0 19,0 29.493,0 38,3.058 38,6.831" - id="path9" - inkscape:connector-curvature="0" - style="fill:#ffffff" /><path - d="M 34.115,6.438 C 34.115,8.929 27.347,10.945 19,10.945 10.653,10.945 3.884,8.928 3.884,6.438 3.884,3.948 10.652,1.931 19,1.931 27.348,1.931 34.115,3.948 34.115,6.438" - id="path11" - inkscape:connector-curvature="0" - style="fill:#dd5900" /><path - d="M 30.949,9.191 C 32.928,8.429 34.117,7.475 34.117,6.439 34.117,3.948 27.349,1.931 19.001,1.931 10.653,1.931 3.886,3.949 3.886,6.439 3.886,7.475 5.075,8.429 7.054,9.191 9.816,8.126 14.134,7.439 19,7.439 23.867,7.439 28.183,8.126 30.949,9.191" - id="path13" - inkscape:connector-curvature="0" - style="fill:#ff8c00" /><path - d="M 3.947,33.582 6.35,33.582 6.35,24.092 10.07,32.365 C 10.509,33.366 11.11,33.721 12.288,33.721 13.466,33.721 14.044,33.367 14.483,32.365 L 18.203,24.092 18.203,33.582 20.606,33.582 20.606,24.108 C 20.606,23.184 20.236,22.737 19.474,22.506 17.649,21.936 16.424,22.429 15.869,23.661 L 12.218,31.826 8.683,23.661 C 8.152,22.429 6.904,21.936 5.078,22.506 4.315,22.737 3.946,23.184 3.946,24.108 L 3.946,33.582 3.947,33.582 Z" - id="path15" - inkscape:connector-curvature="0" - style="fill:#ffffff" /><path - d="M 22.605,25.858 25.007,25.858 25.007,31.086 C 24.985,31.37 25.098,32.037 26.414,32.057 27.086,32.068 31.598,32.057 31.64,32.057 L 31.64,25.832 34.048,25.832 C 34.059,25.832 34.046,34.321 34.046,34.357 34.059,36.451 31.448,36.905 30.245,36.941 L 22.657,36.941 22.657,35.324 C 22.67,35.324 30.239,35.326 30.258,35.324 31.805,35.161 31.622,34.392 31.622,34.133 L 31.622,33.503 26.514,33.503 C 24.138,33.481 22.624,32.444 22.606,31.251 22.605,31.14 22.658,25.91 22.605,25.858 L 22.605,25.858 Z" - id="path17" - inkscape:connector-curvature="0" - style="fill:#ffffff" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="38" height="50"><g fill="#0072c6"><path d="M0 6.83V43.17C0 46.94 8.507 50 19 50V6.83H0z"/><path d="M18.74 50H19c10.493 0 19-3.057 19-6.83V6.83H18.74V50z"/></g><g fill="#fff"><path d="M18.74 50H19c10.493 0 19-3.057 19-6.83V6.83H18.74V50z" opacity=".15"/><path d="M38 6.83c0 3.773-8.507 6.83-19 6.83S0 10.603 0 6.83 8.507 0 19 0s19 3.058 19 6.83"/></g><path d="M34.115 6.438c0 2.49-6.768 4.507-15.115 4.507S3.884 8.928 3.884 6.438 10.652 1.93 19 1.93s15.115 2.017 15.115 4.507" fill="#dd5900"/><path d="M30.95 9.19c1.98-.762 3.168-1.716 3.168-2.752 0-2.49-6.768-4.508-15.116-4.508S3.886 3.95 3.886 6.44c0 1.036 1.19 2 3.168 2.752C9.816 8.126 14.134 7.44 19 7.44s9.183.687 11.95 1.752" fill="#ff8c00"/><path d="M3.947 33.582H6.35v-9.5l3.72 8.273c.44 1 1.04 1.356 2.218 1.356s1.756-.354 2.195-1.356l3.72-8.273v9.5h2.403v-9.474c0-.924-.37-1.37-1.132-1.602-1.825-.57-3.05-.077-3.605 1.155l-3.65 8.165-3.535-8.165c-.53-1.232-1.78-1.725-3.605-1.155-.763.23-1.132.678-1.132 1.602l.001 9.474zm18.658-7.724h2.402v5.228c-.022.284.1.95 1.407.97h5.226V25.83h2.408c.01 0-.002 8.5-.002 8.525.013 2.094-2.598 2.548-3.8 2.584h-7.588v-1.617h7.6c1.547-.163 1.364-.932 1.364-1.2v-.63h-5.108c-2.376-.022-3.9-1.06-3.908-2.252l-.001-5.393z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/NSG.svg b/src/main/webapp/img/lib/mscae/NSG.svg index 7c087af3a2915d8144e8dd70623b4909f43d7e8c..382eb13333cecec67f10a8d0d6d62bc434bb7666 100644 --- a/src/main/webapp/img/lib/mscae/NSG.svg +++ b/src/main/webapp/img/lib/mscae/NSG.svg @@ -1,92 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="36.599998" - height="49.900002" - viewBox="0 0 36.599998 49.900002" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="NSG.svg"><metadata - id="metadata29"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs27" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview25" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="10.363697" - inkscape:cx="12.520143" - inkscape:cy="21.384187" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 31.2,6 31.2,6 C 20.2,4.8 18.3,0 18.3,0 18.3,0 15.8,6.2 0,6.2 L 0,31.8 C 0,34.9 1.7,37.8 4.1,40.3 L 4.1,40.3 C 9.5,46 18.3,49.9 18.3,49.9 18.3,49.9 36.6,41.9 36.6,31.8 L 36.6,6.2 C 34.6,6.2 32.8,6.1 31.2,6 Z" - id="path3" - inkscape:connector-curvature="0" - style="fill:#3999c6" /><path - enable-background="new " - d="M 22.9,16.5 31.2,6 C 20.2,4.8 18.3,0 18.3,0 18.3,0 15.8,6.2 0,6.2 L 0,31.8 C 0,34.9 1.7,37.8 4.1,40.3 L 10.3,32.5 22.9,16.5 Z" - id="path5" - inkscape:connector-curvature="0" - style="opacity:0.4;fill:#59b4d9" /><g - id="g7" - transform="translate(-7,0)"><path - enable-background="new " - d="M 10.8,24.4 10.8,30.5 C 10.8,33 12.2,35.3 14.1,37.3 18.4,41.9 25.4,44.9 25.4,44.9 L 25.4,24.4 10.8,24.4 Z" - id="path9" - inkscape:connector-curvature="0" - style="opacity:0.3;fill:#ffffff" /><path - enable-background="new " - d="M 25.3,44.9 C 25.3,44.9 39.9,38.5 39.9,30.5 L 39.9,24.4 25.3,24.4 25.3,44.9 Z" - id="path11" - inkscape:connector-curvature="0" - style="opacity:0.7;fill:#ffffff" /><path - enable-background="new " - d="M 25.3,5.1 25.3,5.1 C 25.3,5.1 23.3,10.1 10.7,10.1 L 10.7,24.4 25.3,24.4 25.3,5.1 Z" - id="path13" - inkscape:connector-curvature="0" - style="opacity:0.7;fill:#ffffff" /><path - enable-background="new " - d="M 35.5,9.9 C 26.8,8.9 25.3,5.2 25.3,5.2 L 25.3,24.4 39.9,24.4 39.9,10.1 C 38.3,10.1 36.8,10 35.5,9.9 Z" - id="path15" - inkscape:connector-curvature="0" - style="opacity:0.3;fill:#ffffff" /></g><g - id="g17" - transform="translate(-7,0)"><path - d="M 20.322,29.25 18.545,29.25 13.862,22.045 C 13.743,21.863 13.646,21.673 13.568,21.478 L 13.527,21.478 C 13.564,21.687 13.582,22.137 13.582,22.825 L 13.582,29.251 12.01,29.251 12.01,19.448 13.904,19.448 18.429,26.482 C 18.62,26.774 18.743,26.974 18.798,27.084 L 18.825,27.084 C 18.78,26.824 18.757,26.384 18.757,25.765 L 18.757,19.449 20.322,19.449 20.322,29.25 Z" - id="path19" - inkscape:connector-curvature="0" - style="fill:#3e3e3e" /><path - d="M 22.298,28.86 22.298,27.185 C 22.448,27.322 22.627,27.445 22.835,27.554 23.043,27.663 23.262,27.755 23.495,27.831 23.727,27.905 23.96,27.964 24.192,28.005 24.424,28.046 24.639,28.067 24.835,28.067 25.519,28.067 26.028,27.953 26.363,27.725 26.698,27.497 26.865,27.167 26.865,26.734 26.865,26.502 26.809,26.3 26.698,26.129 26.586,25.959 26.43,25.802 26.229,25.661 26.029,25.52 25.792,25.384 25.521,25.254 25.25,25.124 24.959,24.988 24.649,24.847 24.316,24.669 24.006,24.489 23.719,24.307 23.432,24.125 23.182,23.923 22.97,23.702 22.758,23.481 22.592,23.231 22.471,22.953 22.35,22.675 22.29,22.349 22.29,21.975 22.29,21.515 22.394,21.115 22.601,20.775 22.808,20.435 23.082,20.155 23.421,19.934 23.76,19.713 24.147,19.549 24.58,19.442 25.013,19.335 25.455,19.281 25.906,19.281 26.931,19.281 27.678,19.397 28.148,19.63 L 28.148,21.236 C 27.592,20.835 26.877,20.634 26.002,20.634 25.76,20.634 25.52,20.657 25.281,20.702 25.042,20.747 24.827,20.823 24.638,20.928 24.449,21.033 24.295,21.167 24.177,21.331 24.059,21.495 24,21.696 24,21.929 24,22.148 24.045,22.337 24.137,22.496 24.229,22.655 24.362,22.801 24.537,22.934 24.712,23.067 24.927,23.195 25.18,23.32 25.433,23.445 25.726,23.581 26.058,23.727 26.4,23.905 26.722,24.092 27.025,24.288 27.329,24.484 27.595,24.701 27.825,24.937 28.055,25.174 28.238,25.437 28.372,25.727 28.507,26.017 28.574,26.346 28.574,26.715 28.574,27.212 28.473,27.631 28.273,27.973 28.073,28.315 27.802,28.593 27.462,28.807 27.123,29.021 26.733,29.176 26.29,29.272 25.848,29.368 25.381,29.416 24.889,29.416 24.725,29.416 24.523,29.403 24.284,29.379 24.045,29.354 23.8,29.317 23.549,29.27 23.299,29.221 23.061,29.164 22.838,29.095 22.615,29.026 22.435,28.947 22.298,28.86 Z" - id="path21" - inkscape:connector-curvature="0" - style="fill:#3e3e3e" /><path - d="M 38.021,28.58 C 37,29.137 35.863,29.414 34.61,29.414 33.161,29.414 31.987,28.963 31.089,28.06 30.191,27.157 29.742,25.964 29.742,24.478 29.742,22.96 30.233,21.715 31.216,20.742 32.197,19.769 33.445,19.283 34.958,19.283 36.047,19.283 36.963,19.443 37.706,19.762 L 37.706,21.437 C 36.954,20.936 36.059,20.685 35.019,20.685 33.975,20.685 33.12,21.029 32.452,21.717 31.785,22.405 31.451,23.296 31.451,24.39 31.451,25.515 31.738,26.401 32.312,27.045 32.886,27.691 33.666,28.013 34.65,28.013 35.325,28.013 35.908,27.883 36.4,27.623 L 36.4,25.292 34.336,25.292 34.336,23.925 38.021,23.925 C 38.021,23.925 38.021,28.58 38.021,28.58 Z" - id="path23" - inkscape:connector-curvature="0" - style="fill:#3e3e3e" /></g></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="36.6" height="49.9"><path d="M31.2 6c-11-1.2-12.9-6-12.9-6S15.8 6.2 0 6.2v25.6c0 3.1 1.7 6 4.1 8.5 5.4 5.7 14.2 9.6 14.2 9.6s18.3-8 18.3-18.1V6.2c-2 0-3.8-.1-5.4-.2z" fill="#3999c6"/><path d="M22.9 16.5L31.2 6c-11-1.2-12.9-6-12.9-6S15.8 6.2 0 6.2v25.6c0 3.1 1.7 6 4.1 8.5l6.2-7.8 12.6-16z" opacity=".4" fill="#59b4d9"/><g fill="#fff"><path d="M3.8 24.4v6.1c0 2.5 1.4 4.8 3.3 6.8 4.3 4.6 11.3 7.6 11.3 7.6V24.4H3.8z" opacity=".3"/><path d="M18.3 44.9s14.6-6.4 14.6-14.4v-6.1H18.3v20.5z" opacity=".7"/><path d="M18.3 5.1s-2 5-14.6 5v14.3h14.6V5.1z" opacity=".7"/><path d="M28.5 9.9c-8.7-1-10.2-4.7-10.2-4.7v19.2h14.6V10.1c-1.6 0-3.1-.1-4.4-.2z" opacity=".3"/></g><path d="M13.322 29.25h-1.777l-4.683-7.205a3.15 3.15 0 0 1-.294-.567h-.04c.037.2.055.66.055 1.347v6.426H5v-9.803h1.894l4.525 7.034.37.602h.027c-.045-.26-.068-.7-.068-1.32V19.45h1.565v9.8zm1.976-.4v-1.675c.15.137.33.26.537.37s.427.2.66.277a5.38 5.38 0 0 0 .697.174c.232.04.447.062.643.062.684 0 1.193-.114 1.528-.342s.502-.558.502-1c0-.232-.056-.434-.167-.605s-.268-.327-.47-.468-.437-.277-.708-.407l-.872-.407-.93-.54a4 4 0 0 1-.749-.605c-.212-.22-.378-.47-.5-.75s-.18-.604-.18-.978c0-.46.104-.86.3-1.2a2.59 2.59 0 0 1 .82-.84c.34-.22.726-.385 1.16-.492s.875-.16 1.326-.16c1.025 0 1.772.116 2.242.35v1.606c-.556-.4-1.27-.602-2.146-.602a3.87 3.87 0 0 0-.72.068 2.11 2.11 0 0 0-.643.226c-.19.106-.343.24-.46.403a1 1 0 0 0-.177.598 1.11 1.11 0 0 0 .137.567 1.5 1.5 0 0 0 .4.438c.175.133.4.26.643.386l.878.407.967.56c.304.196.57.413.8.65a2.84 2.84 0 0 1 .547.79 2.35 2.35 0 0 1 .202.988c0 .497-.1.916-.3 1.258a2.41 2.41 0 0 1-.81.834 3.6 3.6 0 0 1-1.172.465c-.442.095-.9.144-1.4.144-.164 0-.366-.013-.605-.037l-.735-.1-.7-.175c-.223-.07-.403-.148-.54-.235zm15.722-.28c-1.02.557-2.158.834-3.4.834-1.45 0-2.623-.45-3.52-1.354s-1.347-2.096-1.347-3.582c0-1.518.5-2.763 1.474-3.736s2.23-1.46 3.742-1.46c1.1 0 2.005.16 2.748.48v1.675c-.752-.5-1.647-.752-2.687-.752s-1.9.344-2.567 1.032-1 1.58-1 2.673c0 1.125.287 2 .86 2.655s1.354.968 2.338.968c.675 0 1.258-.13 1.75-.4v-2.33h-2.064v-1.367h3.685v4.655z" fill="#3e3e3e"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/NetworkInterfaceCard.svg b/src/main/webapp/img/lib/mscae/NetworkInterfaceCard.svg index 046542142bfbf7d35eac82fc09e55849b329959f..61cb1d8f29ac8cd361977abafaba0975a28f0fa7 100644 --- a/src/main/webapp/img/lib/mscae/NetworkInterfaceCard.svg +++ b/src/main/webapp/img/lib/mscae/NetworkInterfaceCard.svg @@ -1,116 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="44.706001" - height="50" - viewBox="0 0 44.706001 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="NetworkInterfaceCard.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata6682"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs6680" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview6678" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="22" - inkscape:cy="25" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<rect - x="0" - width="40.205002" - height="50" - id="rect6655" - y="0" - style="fill:#7fba00" /> -<rect - x="16.190001" - y="4.915" - width="18.921" - height="11.888" - id="rect6657" /> -<rect - x="40.205002" - y="3.846" - width="4.5009999" - height="8.5769997" - id="rect6659" - style="fill:#fcd116" /> -<rect - x="40.205002" - y="16.084" - width="4.5009999" - height="22.825001" - id="rect6661" - style="fill:#fcd116" /> -<rect - x="17.809" - y="31.718" - width="3.243" - height="13.391" - id="rect6663" /> -<rect - x="12.565" - y="31.718" - width="3.243" - height="13.391" - id="rect6665" /> -<polygon - points="11.492,11.908 19.734,11.908 19.734,14.006 13.59,14.006 13.59,35.267 17.636,35.267 17.636,37.365 11.492,37.365 " - id="polygon6667" - style="opacity:0.2" - transform="translate(-3)" /> -<polygon - points="7.296,7.713 20.783,7.713 20.783,9.811 9.394,9.811 9.394,40.512 15.538,40.512 15.538,42.61 7.296,42.61 " - id="polygon6669" - style="opacity:0.2" - transform="translate(-3)" /> -<polygon - points="27.058,22.834 31.798,22.834 31.798,15.035 33.896,15.035 33.896,24.932 29.156,24.932 29.156,38.046 33.12,38.046 33.12,40.144 27.058,40.144 " - id="polygon6671" - style="opacity:0.2" - transform="translate(-3)" /> -<path - d="m 20.003,24.11 c 0,1.343 -1.089,2.431 -2.431,2.431 v 0 c -1.343,0 -2.431,-1.089 -2.431,-2.431 v 0 c 0,-1.343 1.089,-2.431 2.431,-2.431 v 0 c 1.343,-10e-4 2.431,1.088 2.431,2.431 z" - id="path6673" - inkscape:connector-curvature="0" - style="fill:#e5e5e5" /> -<rect - x="29.846001" - y="32.342999" - width="4.322" - height="12.365" - id="rect6675" - style="fill:#e5e5e5" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="44.706" height="50"><path d="M0 0h40.205v50H0z" fill="#7fba00"/><path d="M16.2 4.915h18.92v11.888H16.2z"/><path d="M40.205 3.846h4.5v8.577h-4.5zm0 12.238h4.5V38.9h-4.5z" fill="#fcd116"/><path d="M17.8 31.718h3.243v13.4H17.8zm-5.245 0h3.243v13.4h-3.243z"/><path d="M8.492 11.908h8.242v2.098H10.6v21.26h4.046v2.098H8.492zM4.296 7.713h13.487V9.8H6.394v30.7h6.144v2.1H4.296zm19.762 15.12h4.74v-7.8h2.098v9.897h-4.74v13.114h3.964v2.098h-6.062z" opacity=".2"/><path d="M20.003 24.1a2.431 2.431 0 1 1-4.862 0 2.431 2.431 0 1 1 4.862 0zm9.843 8.243h4.322v12.365h-4.322z" fill="#e5e5e5"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Network_Security_Groups_Classic.svg b/src/main/webapp/img/lib/mscae/Network_Security_Groups_Classic.svg new file mode 100644 index 0000000000000000000000000000000000000000..a89982490fb55d4a71bb2c0999f3eb3f36f2d322 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Network_Security_Groups_Classic.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="36.6" height="49.9"><path d="M31.2 6c-11-1.2-12.9-6-12.9-6S15.8 6.2 0 6.2v25.6c0 3.1 1.7 6 4.1 8.5 5.4 5.7 14.2 9.6 14.2 9.6s18.3-8 18.3-18.1V6.2c-2 0-3.8-.1-5.4-.2z" fill="#0072c6"/><path d="M22.9 16.5L31.2 6c-11-1.2-12.9-6-12.9-6S15.8 6.2 0 6.2v25.6c0 3.1 1.7 6 4.1 8.5l6.2-7.8z" opacity=".4" fill="#3999c6"/><g fill="#fff"><path d="M3.8 24.4v6.1c0 2.5 1.4 4.8 3.3 6.8 4.3 4.6 11.3 7.6 11.3 7.6V24.4z" opacity=".3"/><path d="M18.3 44.9s14.6-6.4 14.6-14.4v-6.1H18.3zm0-39.8s-2 5-14.6 5v14.3h14.6z" opacity=".7"/><path d="M28.5 9.9c-8.7-1-10.2-4.7-10.2-4.7v19.2h14.6V10.1c-1.6 0-3.1-.1-4.4-.2z" opacity=".3"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Network_watcher.svg b/src/main/webapp/img/lib/mscae/Network_watcher.svg index 01e59bddfbbb1473373dbace83d1a3a322823f1f..26ed958254dc43411b0e050881b5361ce8b13a41 100644 --- a/src/main/webapp/img/lib/mscae/Network_watcher.svg +++ b/src/main/webapp/img/lib/mscae/Network_watcher.svg @@ -1,37 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<g> - <path fill="#FFFFFF" d="M31.9,1.1c-9.174,0-16.65,7.354-16.878,16.475C16.81,16.637,18.841,16.1,21,16.1 - c7.124,0,12.9,5.776,12.9,12.9c0,2.117-0.52,4.108-1.423,5.871C41.527,34.563,48.8,27.125,48.8,18C48.8,8.682,41.218,1.1,31.9,1.1z - "/> - <g> - <path fill="#3898C5" d="M32.867,35.601c3.674-3.221,7.594-8.33,7.594-17.589S36.604,3.441,32.832,0.399l-1.529,1.502 - c3.531,2.846,6.796,6.768,6.796,16.111c0,9.375-3.375,13.113-6.829,16.139L32.867,35.601z"/> - <rect x="16.112" y="16.941" fill="#3898C5" width="31.775" height="2.118"/> - <path fill="#3898C5" d="M32,10.084c-5.212,0-9.918-1.453-12.729-3.618l-1.27,1.27C21.134,10.254,26.23,11.9,32,11.9 - s10.866-1.646,13.999-4.165l-1.27-1.27C41.919,8.631,37.212,10.084,32,10.084z"/> - </g> - <path fill="#7A7B7B" d="M10.925,35.075l-10,10l0.002,0.002C0.416,45.589,0.1,46.295,0.1,47.075c0,1.56,1.265,2.825,2.825,2.825 - c0.78,0,1.486-0.316,1.998-0.827l0.002,0.002l10-10L10.925,35.075z"/> - <path opacity="0.4" fill="#1D1D1D" d="M7,39c1.047,1.591,2.409,2.953,4,4l2.615-2.615l-4-4L7,39z"/> - <circle fill="#FFFFFF" cx="20.725" cy="28.9" r="9"/> - <circle fill="#FFFFFF" cx="21" cy="29" r="11"/> - <path fill="#3898C5" d="M25.921,17.077c0.215-8.663,3.367-12.428,6.775-15.176l-1.529-1.502c-3.541,2.856-7.156,7.715-7.585,15.96 - C24.393,16.524,25.174,16.768,25.921,17.077z"/> - <path fill="#3898C5" d="M32.943,24.133c0.241,0.591,0.432,1.205,0.584,1.836c4.594,0.253,8.67,1.614,11.202,3.565l1.27-1.27 - C43.039,25.885,38.32,24.303,32.943,24.133z"/> - <path fill="#3898C5" d="M32,0.1c-9.869,0-17.9,8.031-17.9,17.9c0,0.037,0.005,0.073,0.006,0.11 - c0.721-0.457,1.489-0.842,2.297-1.151C16.943,8.815,23.722,2.35,32,2.35c8.629,0,15.65,7.021,15.65,15.65 - c0,8.278-6.465,15.057-14.609,15.597c-0.309,0.808-0.694,1.576-1.151,2.297c0.037,0,0.073,0.006,0.11,0.006 - c9.869,0,17.9-8.029,17.9-17.9C49.9,8.131,41.869,0.1,32,0.1z"/> - <path fill="#7FBA00" d="M19.581,35l-2.068-6.107l-1.588,3.131H13v-1.569h1.941l2.865-5.646l1.766,5.215l2.525-7.539l2.07,6.097 - l1.932-3.687l2.9,0v1.588l-1.988-0.002l-3.136,6.181l-1.768-5.208L19.581,35z"/> - <path opacity="0.2" fill="#3898C5" d="M13.49,32.49c0-6.501,4.53-11,11-11c2.01,0,3.889,0.548,5.51,1.49 - c-1.904-3.279-5.445-5.49-9.51-5.49c-6.075,0-11,4.925-11,11c0,4.065,2.211,7.606,5.49,9.51C14.038,36.378,13.49,34.5,13.49,32.49z - "/> - <path fill="#7A7B7B" d="M21,15.1c-7.677,0-13.9,6.223-13.9,13.9c0,7.677,6.223,13.9,13.9,13.9S34.9,36.677,34.9,29 - C34.9,21.323,28.677,15.1,21,15.1z M21,39.3c-5.689,0-10.3-4.611-10.3-10.3S15.311,18.7,21,18.7S31.3,23.312,31.3,29 - S26.689,39.3,21,39.3z"/> -</g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path fill="#fff" d="M31.9 1.1c-9.174 0-16.65 7.354-16.878 16.475C16.8 16.637 18.84 16.1 21 16.1c7.124 0 12.9 5.776 12.9 12.9 0 2.117-.52 4.108-1.423 5.87C41.527 34.563 48.8 27.125 48.8 18c0-9.318-7.582-16.9-16.9-16.9z"/><g fill="#3898c5"><path d="M32.867 35.6c3.674-3.22 7.594-8.33 7.594-17.59S36.604 3.44 32.832.4L31.303 1.9c3.53 2.846 6.796 6.768 6.796 16.11 0 9.375-3.375 13.113-6.83 16.14l1.597 1.45z"/><path d="M16.112 16.94h31.775v2.118H16.112zM32 10.084c-5.212 0-9.918-1.453-12.73-3.618L18 7.736c3.133 2.518 8.23 4.164 14 4.164s10.866-1.646 14-4.165l-1.27-1.27c-2.8 2.166-7.517 3.62-12.73 3.62z"/></g><path fill="#7a7b7b" d="M10.925 35.075L.927 45.077A2.82 2.82 0 0 0 .1 47.075c0 1.56 1.265 2.825 2.825 2.825a2.82 2.82 0 0 0 1.998-.827l.002.002 10-10-4-4z"/><path opacity=".4" fill="#1d1d1d" d="M7 39a14.01 14.01 0 0 0 4 4l2.615-2.615-4-4L7 39z"/><g fill="#fff"><circle cx="20.725" cy="28.9" r="9"/><circle cx="21" cy="29" r="11"/></g><g fill="#3898c5"><path d="M25.92 17.077C26.136 8.414 29.288 4.65 32.696 1.9L31.167.4c-3.54 2.856-7.156 7.715-7.585 15.96a12.92 12.92 0 0 1 2.34.718zm7.023 7.056c.24.6.432 1.205.584 1.836 4.594.253 8.67 1.614 11.202 3.565l1.27-1.27c-2.96-2.38-7.68-3.96-13.056-4.13z"/><path d="M32 .1C22.13.1 14.1 8.13 14.1 18c0 .037.005.073.006.1.72-.457 1.49-.842 2.297-1.15.54-8.144 7.32-14.61 15.597-14.61 8.63 0 15.65 7.02 15.65 15.65 0 8.278-6.465 15.057-14.61 15.597-.31.808-.694 1.576-1.15 2.297.037 0 .073.006.1.006 9.87 0 17.9-8.03 17.9-17.9S41.87.1 32 .1z"/></g><path fill="#7fba00" d="M19.58 35l-2.068-6.107-1.588 3.13H13v-1.57h1.94l2.865-5.646 1.766 5.215 2.525-7.54 2.07 6.097 1.932-3.687H29v1.588l-1.988-.002-3.136 6.18-1.768-5.208L19.58 35z"/><path opacity=".2" fill="#3898c5" d="M13.5 32.5c0-6.5 4.53-11 11-11A10.93 10.93 0 0 1 30 22.98c-1.904-3.28-5.445-5.5-9.5-5.5-6.075 0-11 4.925-11 11 0 4.065 2.21 7.606 5.5 9.5-.942-1.622-1.5-3.5-1.5-5.5z"/><path fill="#7a7b7b" d="M21 15.1c-7.677 0-13.9 6.223-13.9 13.9S13.323 42.9 21 42.9 34.9 36.677 34.9 29 28.677 15.1 21 15.1zm0 24.2a10.3 10.3 0 0 1 0-20.6c5.69 0 10.3 4.612 10.3 10.3S26.69 39.3 21 39.3z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/New.svg b/src/main/webapp/img/lib/mscae/New.svg index 58a2058e705e397814fd2fdd88bfea3e8dbfcf6e..d48f3732501c3cb9de3685cd34b76431e06d3db6 100644 --- a/src/main/webapp/img/lib/mscae/New.svg +++ b/src/main/webapp/img/lib/mscae/New.svg @@ -1,125 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - x="0px" - y="0px" - viewBox="0 0 16 16.1" - enable-background="new 0 0 16 16" - xml:space="preserve" - id="svg6831" - sodipodi:docname="New.svg" - width="16" - height="16.1" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata6837"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs6835" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview6833" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="53.125" - inkscape:cx="8" - inkscape:cy="8" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="svg6831" /> -<g - id="outline" - transform="translate(0,0.1)"> -</g> -<g - id="icon_x5F_bg" - transform="translate(0,0.1)"> - <g - id="g6822"> - <path - d="M 3.8,8.7 C 3.8,8.5 3.7,8.3 3.7,8 3.7,7.8 3.7,7.6 3.8,7.3 V 7 H 0 v 1.8 h 3.9 z" - id="path6806" - inkscape:connector-curvature="0" - style="fill:#fcd116" /> - <path - d="m 12.1,7.1 v 0.3 c 0,0.2 0.1,0.4 0.1,0.7 0,0.2 0,0.4 -0.1,0.7 V 9.1 H 16 v -2 z" - id="path6808" - inkscape:connector-curvature="0" - style="fill:#fcd116" /> - <path - d="M 4.6,10.5 4.4,10.3 1.3,13.4 2.6,14.7 5.7,11.6 5.5,11.4 C 5.2,11.1 4.9,10.8 4.6,10.5 Z" - id="path6810" - inkscape:connector-curvature="0" - style="fill:#fcd116" /> - <path - d="m 11.4,5.5 0.2,0.2 3.1,-3.1 -1.3,-1.3 -3.1,3.1 0.2,0.2 c 0.3,0.3 0.6,0.6 0.9,0.9 z" - id="path6812" - inkscape:connector-curvature="0" - style="fill:#fcd116" /> - <path - d="M 7.3,12.2 H 7 V 16 H 8.8 V 12.1 H 8.5 c -0.3,0.1 -0.7,0.1 -1.2,0.1 z" - id="path6814" - inkscape:connector-curvature="0" - style="fill:#fcd116" /> - <path - d="M 8.7,3.8 H 9 V -0.1 H 7.1 v 3.9 h 0.3 c 0.4,0 0.8,0 1.3,0 z" - id="path6816" - inkscape:connector-curvature="0" - style="fill:#fcd116" /> - <path - d="m 11.4,10.5 c -0.3,0.4 -0.6,0.7 -0.9,0.9 l -0.2,0.2 3.1,3.1 1.3,-1.3 -3.1,-3.1 z" - id="path6818" - inkscape:connector-curvature="0" - style="fill:#fcd116" /> - <path - d="M 1.3,2.6 4.4,5.7 4.6,5.5 C 4.9,5.1 5.2,4.8 5.5,4.6 L 5.7,4.4 2.6,1.3 Z" - id="path6820" - inkscape:connector-curvature="0" - style="fill:#fcd116" /> - </g> -</g> -<g - id="color_x5F_action" - transform="translate(0,0.1)"> -</g> -<g - id="color_x5F_decoration" - transform="translate(0,0.1)"> -</g> -<g - id="color_x5F_importance" - transform="translate(0,0.1)"> -</g> -<g - id="icon_x5F_fg" - transform="translate(0,0.1)"> -</g> -<g - id="not_x5F_bg" - transform="translate(0,0.1)"> -</g> -<g - id="not_x5F_fg" - transform="translate(0,0.1)"> -</g> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16.1" fill="#fcd116"><path d="M3.8 8.8c0-.2-.1-.4-.1-.7 0-.2 0-.4.1-.7v-.3H0v1.8h3.9zm8.3-1.6v.3c0 .2.1.4.1.7 0 .2 0 .4-.1.7v.3H16v-2zm-7.5 3.4l-.2-.2-3.1 3.1 1.3 1.3 3.1-3.1-1.1-1.1zm6.8-5l.2.2 3.1-3.1-1.3-1.3-3.1 3.1 1.1 1.1zm-4.1 6.7H7v3.8h1.8v-3.9h-.3c-.3.1-.7.1-1.2.1zm1.4-8.4H9V0H7.1v3.9h1.6zm2.7 6.7c-.3.4-.6.7-.9.9l-.2.2 3.1 3.1 1.3-1.3-3.1-3.1zM1.3 2.7l3.1 3.1.2-.2c.3-.4.6-.7.9-.9l.2-.2-3.1-3.1z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/NextBill.svg b/src/main/webapp/img/lib/mscae/NextBill.svg index 190e1334612a2d7b731fa673dc9ebc36c9b47aa9..29799b0318cfab113431385a0213f6557e8d49d8 100644 --- a/src/main/webapp/img/lib/mscae/NextBill.svg +++ b/src/main/webapp/img/lib/mscae/NextBill.svg @@ -1,125 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50.00037" - height="50" - viewBox="0 0 50.00037 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="NextBill.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata6953"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs6951" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview6949" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="25" - inkscape:cy="25" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="M 47.285,0 H 2.997 C 1.332,0 0,1.333 0,3 V 46.667 C 0,48.667 1.332,50 2.997,50 h 43.955 c 1.665,0 2.997,-1.333 2.997,-3 V 3 C 50.282,1.333 48.95,0 47.285,0 Z M 46.619,46.667 H 3.33 V 13.333 h 43.289 z" - id="path6926" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<rect - x="16.65" - y="16.667" - width="6.6599998" - height="6.6669998" - id="rect6928" - style="fill:#a0a1a2" /> -<rect - x="26.639" - y="16.667" - width="6.6599998" - height="6.6669998" - id="rect6930" - style="fill:#a0a1a2" /> -<rect - x="6.6599998" - y="26.667" - width="6.6599998" - height="6.6669998" - id="rect6932" - style="fill:#a0a1a2" /> -<rect - x="16.65" - y="26.667" - width="6.6599998" - height="6.6669998" - id="rect6934" - style="fill:#a0a1a2" /> -<rect - x="26.639" - y="26.667" - width="6.6599998" - height="6.6669998" - id="rect6936" - style="fill:#ba141a" /> -<rect - x="36.629002" - y="26.667" - width="6.6599998" - height="6.6669998" - id="rect6938" - style="fill:#a0a1a2" /> -<rect - x="6.6599998" - y="36.667" - width="6.6599998" - height="6.6669998" - id="rect6940" - style="fill:#a0a1a2" /> -<rect - x="16.65" - y="36.667" - width="6.6599998" - height="6.6669998" - id="rect6942" - style="fill:#a0a1a2" /> -<rect - x="26.639" - y="36.667" - width="6.6599998" - height="6.6669998" - id="rect6944" - style="fill:#a0a1a2" /> -<rect - x="36.629002" - y="16.667" - width="6.6599998" - height="6.6669998" - id="rect6946" - style="fill:#a0a1a2" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path d="M47.285 0H2.997C1.332 0 0 1.333 0 3v43.667C0 48.667 1.332 50 2.997 50h43.955c1.665 0 2.997-1.333 2.997-3V3c.333-1.667-1-3-2.664-3zm-.666 46.667H3.33V13.333h43.29z" fill="#59b4d9"/><path d="M16.65 16.667h6.66v6.667h-6.66zm10 0h6.66v6.667h-6.66zm-19.98 10h6.66v6.667H6.66zm10 0h6.66v6.667h-6.66z" fill="#a0a1a2"/><path d="M26.64 26.667h6.66v6.667h-6.66z" fill="#ba141a"/><path d="M36.63 26.667h6.66v6.667h-6.66zm-29.97 10h6.66v6.667H6.66zm10 0h6.66v6.667h-6.66zm10 0h6.66v6.667h-6.66zm10-20h6.66v6.667h-6.66z" fill="#a0a1a2"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Non_Azure_Machine.svg b/src/main/webapp/img/lib/mscae/Non_Azure_Machine.svg new file mode 100644 index 0000000000000000000000000000000000000000..da58a49d338749d4183c402d2f3e79bc6fc65c8b --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Non_Azure_Machine.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="10" height="16"><path d="M8 0H2C.9 0 0 .9 0 2v14h10V2c0-1.1-.9-2-2-2z" fill="#804998"/><path d="M7.5 4h-5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h5c.28 0 .5.22.5.5s-.22.5-.5.5zm0 4h-5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h5c.28 0 .5.22.5.5s-.22.5-.5.5z" fill="#e5e5e5"/><circle cx="5" cy="13" r="1" fill="#b8d432"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Notification.svg b/src/main/webapp/img/lib/mscae/Notification.svg index 323e04a40ed7035a1ca5737d3f640167258962ec..7fc894319f7012d0b133ddc9dace29cbefa6e61b 100644 --- a/src/main/webapp/img/lib/mscae/Notification.svg +++ b/src/main/webapp/img/lib/mscae/Notification.svg @@ -1,12 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#B8D432" d="M43.327,0H6.275C2.611-0.02,0,2.188,0,5.839v26.218c0,3.706,2.661,6.985,6.329,7.029l13.383,0.025 - L30.702,49.9l0.082-10.758h12.441c3.661,0.03,6.664-2.933,6.664-6.594l0.056-26.317C49.97,2.59,46.993,0,43.327,0"/> -<path fill="#FFFFFF" d="M28.611,27.92c0,2.025-1.642,3.666-3.666,3.666c-2.024,0-3.667-1.641-3.667-3.666 - c0-2.025,1.643-3.666,3.667-3.666C26.969,24.254,28.611,25.895,28.611,27.92"/> -<polygon fill="#FFFFFF" points="25.636,6.305 24.607,6.305 22.039,6.305 22.957,22.237 24.607,22.237 25.636,22.237 27.283,22.237 - 28.202,6.305 "/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path fill="#b8d432" d="M43.327 0H6.275C2.61-.02 0 2.188 0 5.84v26.218c0 3.706 2.66 6.985 6.33 7.03l13.383.025 11 10.79.082-10.758h12.44c3.66.03 6.664-2.933 6.664-6.594l.056-26.317C49.97 2.6 46.993 0 43.327 0"/><path d="M28.6 27.92c0 2.025-1.642 3.666-3.666 3.666a3.67 3.67 0 0 1-3.667-3.666 3.67 3.67 0 0 1 3.667-3.666c2.024 0 3.666 1.64 3.666 3.666M25.636 6.305H22.04l.918 15.932h4.326l.92-15.932z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Notification_Hubs.svg b/src/main/webapp/img/lib/mscae/Notification_Hubs.svg index 6fa365293bfb4b72c0e50ee1ef4fda0dacf21553..fe152a56b9ae9e46001b6e7ce0cbf5733515a3be 100644 --- a/src/main/webapp/img/lib/mscae/Notification_Hubs.svg +++ b/src/main/webapp/img/lib/mscae/Notification_Hubs.svg @@ -1,10 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - height="50px" width="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#FF8C00" d="M13.7,27.8v5.4L1,22.4h49l0-16.2C50,2.6,47,0,43.4,0H6.3C2.6,0,0,2.2,0,5.9v5.9h36.6V6.4l12.7,10.8H0v14.9 - c0,3.7,2.7,7,6.3,7l13.4,0l11,10.8l0.1-10.8h12.5c3.7,0,6.7-2.9,6.7-6.6l0-4.8H13.7z"/> -<g opacity="0.2"> - <path fill="#FFFFFF" d="M6.3,39.2h9.7l5.7-11.3h-8.1v5.4L1,22.4h23.3l2.8-5.2H0v14.9C0,35.8,2.7,39.1,6.3,39.2z"/> - <path fill="#FFFFFF" d="M35.6,0H6.3C2.6,0,0,2.2,0,5.9v5.9h29.7L35.6,0z"/> -</g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" height="50" width="50"><path fill="#ff8c00" d="M13.7 27.8v5.4L1 22.4h49V6.2C50 2.6 47 0 43.4 0H6.3C2.6 0 0 2.2 0 5.9v5.9h36.6V6.4l12.7 10.8H0v14.9c0 3.7 2.7 7 6.3 7h13.4l11 10.8.1-10.8h12.5c3.7 0 6.7-2.9 6.7-6.6v-4.8H13.7z"/><path d="M6.3 39.2H16l5.7-11.3h-8.1v5.4L1 22.4h23.3l2.8-5.2H0v14.9c0 3.7 2.7 7 6.3 7.1zM35.6 0H6.3C2.6 0 0 2.2 0 5.9v5.9h29.7L35.6 0z" opacity=".2" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/OS_Images_Classic.svg b/src/main/webapp/img/lib/mscae/OS_Images_Classic.svg new file mode 100644 index 0000000000000000000000000000000000000000..901c86ce0ae17a550290cabf2ca523f4b4b038a0 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/OS_Images_Classic.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="46.1"><path d="M47 0H2.7A2.775 2.775 0 0 0 0 2.8v30.9a2.775 2.775 0 0 0 2.7 2.8h16.1c1.6 5.8-.6 6.6-10.2 6.6v3h32.6v-3c-9.6 0-10.6-.8-8.9-6.6H47a3.045 3.045 0 0 0 3-2.8V2.8A3.045 3.045 0 0 0 47 0z" fill="#59b4d9"/><path d="M46.1 3.8v28.9H3.8V3.8z" fill="#fff"/><path d="M25.5 17.4h-.1l-8.8-5.1c-.1 0-.1-.1-.1-.2a.349.349 0 0 1 .1-.2l8.8-5h.3l8.8 5.1c.1 0 .1.1.1.2s0 .2-.1.2l-8.7 5h-.3m-1.2 12.3h-.1l-8.8-5.1c-.1 0-.1-.1-.1-.2V14.2a.349.349 0 0 1 .1-.2h.3l8.8 5.1c.1 0 .1.1.1.2v10.2a.349.349 0 0 1-.1.2h-.2m2.5 0h-.1c-.1 0-.1-.1-.1-.2V19.4a.349.349 0 0 1 .1-.2l8.8-5.1h.3c.1 0 .1.1.1.2v10.1a.349.349 0 0 1-.1.2L27 29.7h-.2M15 6.3H6v9h3v-6h6zm-9 15v9h9v-3H9v-6zm29 9h9v-9h-3v6h-6zm9-15v-9h-9v3h6v6z" fill="#0072c6"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Offer.svg b/src/main/webapp/img/lib/mscae/Offer.svg index 1123093875ba4ea8eedfd2cc87adeccdf66af8fd..4ce3c1d0bdb70910513f11ecf60584105dede336 100644 --- a/src/main/webapp/img/lib/mscae/Offer.svg +++ b/src/main/webapp/img/lib/mscae/Offer.svg @@ -1,124 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="49.5" - width="50" - viewBox="0 0 50 49.5" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Offer.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata7290"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs7288" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview7286" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="25" - inkscape:cy="24.5" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="M 42.3,0 28.6,0.5 0,29.1 20.3,49.4 48.9,20.8 50,7.7 Z m 1.1,10.6 c -1.1,1.1 -2.9,1.1 -4,0 -1.1,-1.1 -1.1,-2.9 0,-4 1.1,-1.1 2.9,-1.1 4,0 1.1,1.1 1.1,2.9 0,4 z" - id="path7257" - inkscape:connector-curvature="0" - style="fill:#3999c6" /> -<polygon - points="24.4,14.4 23,13 25.4,10.5 27.9,13 26.5,14.4 25.4,13.3 " - id="polygon7259" - style="fill:#ffffff" /> -<polygon - points="15,20.9 15.7,21.6 15,20.9 16.4,22.3 13.3,25.4 11.9,24 " - id="polygon7261" - style="fill:#ffffff" /> -<rect - x="25.426245" - y="-3.589062" - transform="rotate(45)" - width="1.9999808" - height="4.2999592" - id="rect7263" - style="fill:#ffffff;stroke-width:0.9999904" /> -<polygon - points="9.5,26.5 10.9,27.9 9.8,28.9 10.9,30 9.5,31.4 7,28.9 " - id="polygon7265" - style="fill:#ffffff" /> -<rect - x="32.598953" - y="13.523177" - transform="rotate(45)" - width="4.6999545" - height="1.9999808" - id="rect7267" - style="fill:#ffffff;stroke-width:0.9999904" /> -<polygon - points="19.5,38.6 20.5,39.6 21.6,38.6 23,40 20.5,42.5 18,40 " - id="polygon7269" - style="fill:#ffffff" /> -<rect - x="42.555851" - y="4.187499" - transform="rotate(45)" - width="1.9999808" - height="4.2999592" - id="rect7271" - style="fill:#ffffff;stroke-width:0.9999904" /> -<polygon - points="32.6,27.5 34,28.9 31,32 30.3,31.3 31,32 29.5,30.6 " - id="polygon7273" - style="fill:#ffffff" /> -<polygon - points="35.1,25.1 36.5,26.5 35.1,25.1 " - id="polygon7275" - style="fill:#ffffff" /> -<polygon - points="36.1,24 35.1,23 36.5,21.5 39,24 36.5,26.5 35.1,25.1 " - id="polygon7277" - style="fill:#ffffff" /> -<rect - x="32.68314" - y="-10.52479" - transform="rotate(45)" - width="4.6999545" - height="1.9999808" - id="rect7279" - style="fill:#ffffff;stroke-width:0.9999904" /> -<polygon - points="24.9,44.9 24.9,4.3 0,29.1 20.3,49.5 " - id="polygon7281" - style="opacity:0.1;fill:#ffffff" /> -<path - d="m 45.1,4.9 c -2,-2 -5.3,-2 -7.3,0 -2,2 -2,5.3 0,7.3 2,2 5.3,2 7.3,0 2,-2 2,-5.2 0,-7.3 z m -1.7,5.7 c -1.1,1.1 -2.9,1.1 -4,0 -1.1,-1.1 -1.1,-2.9 0,-4 1.1,-1.1 2.9,-1.1 4,0 1.1,1.1 1.1,2.9 0,4 z" - id="path7283" - inkscape:connector-curvature="0" - style="opacity:0.3;fill:#1e1e1e" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" height="49.5" width="50"><path d="M42.3 0L28.6.5 0 29.1l20.3 20.3 28.6-28.6L50 7.7zm1.1 10.6a2.84 2.84 0 0 1-4 0 2.84 2.84 0 0 1 0-4 2.84 2.84 0 0 1 4 0 2.84 2.84 0 0 1 0 4z" fill="#3999c6"/><g fill="#fff"><path d="M24.4 14.4L23 13l2.4-2.5 2.5 2.5-1.4 1.4-1.1-1.1zM15 20.9l.7.7-.7-.7 1.4 1.4-3.1 3.1-1.4-1.4zm5.517-5.46l1.414 1.414-3.04 3.04-1.414-1.414zM9.5 26.5l1.4 1.4-1.1 1 1.1 1.1-1.4 1.4L7 28.9zm4 6.113l3.323 3.323L15.4 37.35l-3.323-3.323zm6 5.987l1 1 1.1-1L23 40l-2.5 2.5L18 40zm7.63-5.547l1.414 1.414-3.04 3.04-1.414-1.414zM32.6 27.5l1.4 1.4-3 3.1-.7-.7.7.7-1.5-1.4zm2.5-2.4l1.4 1.4-1.4-1.4z"/><path d="M36.1 24l-1-1 1.4-1.5L39 24l-2.5 2.5-1.4-1.4zm-5.547-8.332l3.323 3.323-1.414 1.414-3.323-3.323z"/><path d="M24.9 44.9V4.3L0 29.1l20.3 20.4z" opacity=".1"/></g><path d="M45.1 4.9c-2-2-5.3-2-7.3 0s-2 5.3 0 7.3 5.3 2 7.3 0 2-5.2 0-7.3zm-1.7 5.7a2.84 2.84 0 0 1-4 0 2.84 2.84 0 0 1 0-4 2.84 2.84 0 0 1 4 0 2.84 2.84 0 0 1 0 4z" opacity=".3" fill="#1e1e1e"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/OnPremiseSetup.svg b/src/main/webapp/img/lib/mscae/OnPremiseSetup.svg index d5053106efe9f6fc5f060592da12531c25ccc539..7c5a5a30ddce2070f707a56e5d1fdaa352d3422a 100644 --- a/src/main/webapp/img/lib/mscae/OnPremiseSetup.svg +++ b/src/main/webapp/img/lib/mscae/OnPremiseSetup.svg @@ -1,123 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - viewBox="0 0 44.5 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="OnPremiseSetup.svg" - width="44.5" - height="50" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata7409"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs7407" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview7405" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="22.3" - inkscape:cy="25" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="M 30,47.5 C 30,48.9 28.9,50 27.5,50 H 2.5 C 1.1,50 0,48.9 0,47.5 V 2.5 C 0,1.1 1.1,0 2.5,0 h 24.9 c 1.4,0 2.5,1.1 2.5,2.5 v 45 z" - id="path7382" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<rect - x="3.9999998" - y="5" - width="6" - height="7" - id="rect7384" - style="fill:#7a7a7a" /> -<rect - x="12" - y="5" - width="6" - height="7" - id="rect7386" - style="fill:#7a7a7a" /> -<rect - x="20" - y="5" - width="6" - height="7" - id="rect7388" - style="fill:#7a7a7a" /> -<rect - x="3.9999998" - y="16" - width="6" - height="7" - id="rect7390" - style="fill:#7a7a7a" /> -<rect - x="12" - y="16" - width="6" - height="7" - id="rect7392" - style="fill:#7a7a7a" /> -<rect - x="20" - y="16" - width="6" - height="7" - id="rect7394" - style="fill:#7a7a7a" /> -<rect - x="3.9999998" - y="27" - width="6" - height="7" - id="rect7396" - style="fill:#7a7a7a" /> -<rect - x="12" - y="27" - width="6" - height="7" - id="rect7398" - style="fill:#7a7a7a" /> -<rect - x="20" - y="27" - width="6" - height="7" - id="rect7400" - style="fill:#7a7a7a" /> -<path - d="m 29.8,49.1 2.1,0.9 0.2,-0.3 1.7,-2 h 1.7 l 2,2.3 2.1,-0.9 v -0.3 l -0.2,-2.6 1.2,-1.2 3,0.2 0.9,-2.2 -0.2,-0.3 -2,-1.7 v -1.8 l 2.2,-2 -0.8,-2.2 h -0.3 l -2.6,0.2 -1.2,-1.2 0.2,-3 -2.2,-1 -0.2,0.3 -1.7,2 H 34 L 32,30 29.9,30.9 v 0.4 l 0.2,2.6 -1.2,1.2 -3,-0.2 -0.9,2.2 0.3,0.2 2,1.7 v 1.8 l -2.2,2 0.9,2.2 h 0.3 l 2.6,-0.2 1.2,1.3 z m 0.7,-11 c 1,-2.5 3.8,-3.6 6.2,-2.6 2.4,1 3.5,3.9 2.5,6.3 -1,2.5 -3.8,3.6 -6.2,2.6 -2.4,-1 -3.6,-3.8 -2.5,-6.3" - id="path7402" - inkscape:connector-curvature="0" - style="fill:#3e3e3e" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="44.5" height="50"><path d="M30 47.5c0 1.4-1.1 2.5-2.5 2.5h-25C1.1 50 0 48.9 0 47.5v-45C0 1.1 1.1 0 2.5 0h24.9c1.4 0 2.5 1.1 2.5 2.5v45z" fill="#a0a1a2"/><path d="M4 5h6v7H4zm8 0h6v7h-6zm8 0h6v7h-6zM4 16h6v7H4zm8 0h6v7h-6zm8 0h6v7h-6zM4 27h6v7H4zm8 0h6v7h-6zm8 0h6v7h-6z" fill="#7a7a7a"/><path d="M29.8 49.1l2.1.9.2-.3 1.7-2h1.7l2 2.3 2.1-.9v-.3l-.2-2.6 1.2-1.2 3 .2.9-2.2-.2-.3-2-1.7v-1.8l2.2-2-.8-2.2h-.3l-2.6.2-1.2-1.2.2-3-2.2-1-.2.3-1.7 2H34L32 30l-2.1.9v.4l.2 2.6-1.2 1.2-3-.2-.9 2.2.3.2 2 1.7v1.8l-2.2 2L26 45h.3l2.6-.2 1.2 1.3zm.7-11c1-2.5 3.8-3.6 6.2-2.6s3.5 3.9 2.5 6.3c-1 2.5-3.8 3.6-6.2 2.6s-3.6-3.8-2.5-6.3" fill="#3e3e3e"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/On_Premises_Data_Gateways.svg b/src/main/webapp/img/lib/mscae/On_Premises_Data_Gateways.svg new file mode 100644 index 0000000000000000000000000000000000000000..68f108ec13e1b3306b49685beccac3f76db5457b --- /dev/null +++ b/src/main/webapp/img/lib/mscae/On_Premises_Data_Gateways.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path d="M44 14.2c0-.4.1-.9.1-1.3 0-7.1-5.8-12.8-13-12.8a12.62 12.62 0 0 0-10.5 5.2c-1.5-1-3.3-1.5-5.2-1.5-5.4 0-9.8 4.4-9.8 9.7v.8C2 16.2 0 19.3 0 23.1c0 6 4.9 10.7 11.2 10.7h27.6c6.3 0 11.2-4.7 11.2-10.7 0-4-2.2-7.2-6-8.9z" fill="#59b4d9"/><path d="M7 28c0-4.1 2.1-7.3 6-9.3v-.8c0-5.7 4.7-10.3 10.4-10.3 2 0 3.9.5 5.5 1.5 2.5-3.5 6.7-5.7 11.2-5.7-2.4-2.1-5.5-3.4-9-3.4-4.2 0-8.1 2-10.5 5.3-1.5-1-3.3-1.5-5.2-1.5-5.4 0-9.8 4.4-9.8 9.7v.8C2 16.2 0 19.3 0 23.1c0 5.1 3.5 9.3 8.4 10.4C7.5 31.9 7 30 7 28z" opacity=".2" fill="#fff"/><path d="M33.833 41.25L25.504 50l-8.337-8.72v-3.542l6.865 6.506V32.646h2.9v11.598l6.902-6.548z" fill="#804998"/><path d="M17.167 25.397l8.33-8.75 8.337 8.72v3.542l-6.865-6.506V34h-2.9V22.402l-6.902 6.548z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/OpenShift.svg b/src/main/webapp/img/lib/mscae/OpenShift.svg index 207669927ceae2e5092e70b87628ded5e5a1055e..b4e614b94e816812f7909d3e2ce0773a5e9aa5a6 100644 --- a/src/main/webapp/img/lib/mscae/OpenShift.svg +++ b/src/main/webapp/img/lib/mscae/OpenShift.svg @@ -1,112 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_2_1_" - x="0px" - y="0px" - width="50.001999" - height="45.557266" - viewBox="0 0 50.001999 45.557266" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Azure OpenShift.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata6595"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs6593" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview6591" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.020815" - inkscape:cx="22.481001" - inkscape:cy="15.81429" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_2_1_" /> -<g - id="g6568" - transform="translate(-0.111,-2.2218527)"> - <path - d="m 6.76,24.653 c 0.045,1.402 0.223,2.814 0.538,4.221 l 7.677,-2.632 c -0.237,-1.48 -0.242,-2.958 -0.036,-4.393 z" - id="path6564" - inkscape:connector-curvature="0" - style="fill:#ba141a" /> - <path - d="m 47.948,10.534 -8.179,2.804 c 1.043,1.007 1.946,2.178 2.667,3.491 l 7.677,-2.632 c -0.616,-1.304 -1.341,-2.529 -2.165,-3.663 z" - id="path6566" - inkscape:connector-curvature="0" - style="fill:#ba141a" /> -</g> -<g - id="g6574" - transform="translate(-0.111,-2.2218527)"> - <path - d="m 36.279,21.614 c 0.668,1.95 0.903,3.944 0.757,5.877 l 8.019,-2.749 c -0.14,-1.911 -0.523,-3.836 -1.174,-5.734 -0.277,-0.809 -0.6,-1.591 -0.956,-2.347 l -7.677,2.632 c 0.403,0.731 0.751,1.505 1.031,2.321 z" - id="path6570" - inkscape:connector-curvature="0" - style="fill:#ba141a" /> - <path - d="M 8.4,31.171 C 8.12,30.354 7.92,29.53 7.788,28.706 l -7.677,2.632 c 0.183,0.816 0.408,1.631 0.685,2.44 0.651,1.898 1.529,3.653 2.591,5.248 l 8.019,-2.749 C 10.107,34.839 9.069,33.121 8.4,31.171 Z" - id="path6572" - inkscape:connector-curvature="0" - style="fill:#ba141a" /> -</g> -<path - d="m 40.883,23.876147 c -0.429,5.698 -4.17,10.87 -9.918,12.841 -5.748,1.971 -11.876,0.182 -15.71,-4.055 l -8.019,2.749 c 5.595,8.405 16.336,12.337 26.336,8.91 10,-3.427 16.07,-13.123 15.331,-23.193 z" - id="path6576" - inkscape:connector-curvature="0" - style="fill:#ba141a" /> -<path - d="m 11.601,20.697147 c 0.76,-5.303 4.391,-10.002 9.807,-11.8579997 5.416,-1.856 11.166,-0.374 15.019,3.3479997 l 8.178,-2.8029997 c -5.724,-7.877 -16.112,-11.47 -25.804,-8.148 C 9.109,4.5581473 3.11,13.768147 3.423,23.500147 Z" - id="path6578" - inkscape:connector-curvature="0" - style="fill:#ba141a" /> -<path - d="m 14.692,21.402147 c 0.012,-0.597 0.052,-1.19 0.136,-1.775 l -8.179,2.804 c 0.018,0.559 0.073,1.121 0.134,1.682 z" - id="path6580" - inkscape:connector-curvature="0" - style="opacity:0.4;fill:#1e1e1e" /> -<path - d="m 48.763,9.7231473 c -0.297,-0.481 -0.598,-0.958 -0.927,-1.411 l -8.179,2.8039997 c 0.425,0.411 0.82,0.855 1.196,1.319 z" - id="path6582" - inkscape:connector-curvature="0" - style="opacity:0.4;fill:#1e1e1e" /> -<g - id="g6588" - transform="translate(-0.111,-2.2218527)"> - <path - d="m 49.037,25.922 c 0.035,-0.853 0.04,-1.71 -0.024,-2.573 l -8.02,2.749 c -0.071,0.938 -0.24,1.86 -0.484,2.758 z" - id="path6584" - inkscape:connector-curvature="0" - style="opacity:0.4;fill:#1e1e1e" /> - <path - d="M 17.467,36.786 C 16.712,36.222 16.004,35.59 15.365,34.884 l -8.02,2.749 c 0.489,0.735 1.031,1.423 1.595,2.087 z" - id="path6586" - inkscape:connector-curvature="0" - style="opacity:0.4;fill:#1e1e1e" /> -</g> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50.002" height="45.557"><g fill="#ba141a"><path d="M6.65 22.43c.045 1.402.223 2.814.538 4.22l7.677-2.632c-.237-1.48-.242-2.958-.036-4.393zM47.837 8.312l-8.18 2.804a14.65 14.65 0 0 1 2.667 3.491L50 11.975c-.616-1.304-1.34-2.53-2.165-3.663z"/><path d="M36.168 19.392c.668 1.95.903 3.944.757 5.877l8.02-2.75a22.79 22.79 0 0 0-1.174-5.734c-.277-.8-.6-1.6-.956-2.347l-7.677 2.632a14.66 14.66 0 0 1 1.031 2.321zM8.3 28.95a14.8 14.8 0 0 1-.612-2.465L0 29.116a23.19 23.19 0 0 0 .685 2.44c.65 1.898 1.53 3.653 2.6 5.248l8.02-2.75a14.71 14.71 0 0 1-3.006-5.106z"/><path d="M40.883 23.876c-.43 5.698-4.17 10.87-9.918 12.84s-11.876.182-15.7-4.055l-8.02 2.75c5.595 8.405 16.336 12.337 26.336 8.9s16.07-13.123 15.33-23.193zM11.6 20.697c.76-5.303 4.4-10.002 9.807-11.858s11.166-.374 15.02 3.348l8.178-2.803C38.88 1.507 28.493-2.086 18.8 1.236S3.1 13.768 3.423 23.5z"/></g><path d="M14.692 21.402a14.39 14.39 0 0 1 .136-1.775L6.65 22.43l.134 1.682zm34.07-11.68l-.927-1.4-8.18 2.804a14.71 14.71 0 0 1 1.196 1.319zm.163 13.977c.035-.853.04-1.7-.024-2.573l-8.02 2.75c-.07.938-.24 1.86-.484 2.758zm-31.57 10.864c-.755-.564-1.463-1.196-2.102-1.902l-8.02 2.75c.5.735 1.03 1.423 1.595 2.087z" opacity=".4" fill="#1e1e1e"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Operations_Management_Suite.svg b/src/main/webapp/img/lib/mscae/Operations_Management_Suite.svg index dc54ff63e6c47d4609e4bee26615f15403e5e211..ea75a2201beb48c271ed9d7e833c55f53832e141 100644 --- a/src/main/webapp/img/lib/mscae/Operations_Management_Suite.svg +++ b/src/main/webapp/img/lib/mscae/Operations_Management_Suite.svg @@ -1,207 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="48.400002" - height="48.400002" - viewBox="0 0 48.400002 48.400002" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Operations Management Suite (OMS)_COLOR.svg"><metadata - id="metadata65"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs63" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview61" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="14.656481" - inkscape:cx="8.177891" - inkscape:cy="26.110122" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><rect - x="4.9000001" - y="21" - width="3.2" - height="3.2" - id="rect3" - style="clip-rule:evenodd;fill:#59b4d9;fill-rule:evenodd" /><rect - x="4.9000001" - y="25.799999" - width="3.2" - height="3.2" - id="rect5" - style="clip-rule:evenodd;fill:#59b4d9;fill-rule:evenodd" /><path - d="M 4.9,19.4 8.1,19.4 8.1,16.5 C 6.9,17.1 5.9,17.8 4.9,18.6 L 4.9,19.4 Z" - id="path7" - inkscape:connector-curvature="0" - style="clip-rule:evenodd;fill:#59b4d9;fill-rule:evenodd" /><rect - x="9.6999998" - y="35.5" - width="3.2" - height="3.2" - id="rect9" - style="clip-rule:evenodd;fill:#59b4d9;fill-rule:evenodd" /><rect - x="9.6999998" - y="40.299999" - width="3.2" - height="3.2" - id="rect11" - style="clip-rule:evenodd;fill:#59b4d9;fill-rule:evenodd" /><rect - x="9.6999998" - y="45.200001" - width="3.2" - height="3.2" - id="rect13" - style="clip-rule:evenodd;fill:#59b4d9;fill-rule:evenodd" /><rect - x="9.6999998" - y="30.700001" - width="3.2" - height="3.2" - id="rect15" - style="clip-rule:evenodd;fill:#59b4d9;fill-rule:evenodd" /><rect - x="0" - y="25.799999" - width="3.2" - height="3.2" - id="rect17" - style="clip-rule:evenodd;fill:#59b4d9;fill-rule:evenodd" /><rect - x="4.9000001" - y="40.299999" - width="3.2" - height="3.2" - id="rect19" - style="clip-rule:evenodd;fill:#59b4d9;fill-rule:evenodd" /><rect - x="0" - y="35.5" - width="3.2" - height="3.2" - id="rect21" - style="clip-rule:evenodd;fill:#59b4d9;fill-rule:evenodd" /><rect - x="0" - y="30.700001" - width="3.2" - height="3.2" - id="rect23" - style="clip-rule:evenodd;fill:#59b4d9;fill-rule:evenodd" /><path - d="M 4.9,45.9 C 5.9,46.7 7,47.4 8.1,48 L 8.1,45.1 4.9,45.1 4.9,45.9 Z" - id="path25" - inkscape:connector-curvature="0" - style="clip-rule:evenodd;fill:#59b4d9;fill-rule:evenodd" /><path - d="M 0.39999998,24.2 3.3,24.2 3.3,21 2.5,21 C 1.6,22 0.89999998,23 0.39999998,24.2 Z" - id="path27" - inkscape:connector-curvature="0" - style="clip-rule:evenodd;fill:#59b4d9;fill-rule:evenodd" /><rect - x="4.9000001" - y="35.5" - width="3.2" - height="3.2" - id="rect29" - style="clip-rule:evenodd;fill:#59b4d9;fill-rule:evenodd" /><path - d="M 29,43.5 29.8,43.5 C 30.6,42.5 31.3,41.4 31.9,40.3 L 29,40.3 29,43.5 Z" - id="path31" - inkscape:connector-curvature="0" - style="clip-rule:evenodd;fill:#59b4d9;fill-rule:evenodd" /><rect - x="9.6999998" - y="25.799999" - width="3.2" - height="3.2" - id="rect33" - style="clip-rule:evenodd;fill:#59b4d9;fill-rule:evenodd" /><rect - x="24.199999" - y="40.299999" - width="3.2" - height="3.2" - id="rect35" - style="clip-rule:evenodd;fill:#59b4d9;fill-rule:evenodd" /><path - d="M 31.5,0 C 22.2,0 14.6,7.6 14.6,16.9 14.6,21.9 14.6,33.8 14.6,33.8 14.6,33.8 27.2,33.8 31.5,33.8 40.8,33.8 48.4,26.2 48.4,16.9 48.4,7.6 40.8,0 31.5,0 Z" - id="path37" - inkscape:connector-curvature="0" - style="fill:#7fba00" /><rect - x="22.6" - y="14.5" - width="3.2" - height="9.6999998" - id="rect39" - style="fill:#68217a" /><rect - x="29" - y="17.700001" - width="3.2" - height="6.5" - id="rect41" - style="fill:#68217a" /><rect - x="35.5" - y="11.3" - width="3.2" - height="12.9" - id="rect43" - style="fill:#68217a" /><path - d="M 24.2,48 C 25.4,47.4 26.4,46.7 27.4,45.9 L 27.4,45.1 24.2,45.1 24.2,48 Z" - id="path45" - inkscape:connector-curvature="0" - style="clip-rule:evenodd;fill:#59b4d9;fill-rule:evenodd" /><rect - x="29" - y="35.5" - width="3.2" - height="3.2" - id="rect47" - style="clip-rule:evenodd;fill:#59b4d9;fill-rule:evenodd" /><rect - x="24.199999" - y="35.5" - width="3.2" - height="3.2" - id="rect49" - style="clip-rule:evenodd;fill:#59b4d9;fill-rule:evenodd" /><rect - x="14.5" - y="40.299999" - width="3.2" - height="3.2" - id="rect51" - style="clip-rule:evenodd;fill:#59b4d9;fill-rule:evenodd" /><polygon - points="11.3,16.1 11.3,19.4 14.5,19.4 14.5,16.1 " - id="polygon53" - style="clip-rule:evenodd;fill:#59b4d9;fill-rule:evenodd" - transform="translate(-1.6,0)" /><rect - x="19.4" - y="40.299999" - width="3.2" - height="3.2" - id="rect55" - style="clip-rule:evenodd;fill:#59b4d9;fill-rule:evenodd" /><rect - x="19.4" - y="45.200001" - width="3.2" - height="3.2" - id="rect57" - style="clip-rule:evenodd;fill:#59b4d9;fill-rule:evenodd" /><rect - x="14.5" - y="35.5" - width="3.2" - height="3.2" - id="rect59" - style="clip-rule:evenodd;fill:#59b4d9;fill-rule:evenodd" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="48.4" height="48.4"><path d="M4.9 21h3.2v3.2H4.9zm0 4.8h3.2V29H4.9zm0-6.4h3.2v-2.9c-1.2.6-2.2 1.3-3.2 2.1v.8zm4.8 16.1h3.2v3.2H9.7zm0 4.8h3.2v3.2H9.7zm0 4.9h3.2v3.2H9.7zm0-14.5h3.2v3.2H9.7zM0 25.8h3.2V29H0zm4.9 14.5h3.2v3.2H4.9zM0 35.5h3.2v3.2H0zm0-4.8h3.2v3.2H0zm4.9 15.2c1 .8 2.1 1.5 3.2 2.1v-2.9H4.9v.8zM.4 24.2h2.9V21h-.8c-.9 1-1.6 2-2.1 3.2zm4.5 11.3h3.2v3.2H4.9zm24.1 8h.8c.8-1 1.5-2.1 2.1-3.2H29v3.2zM9.7 25.8h3.2V29H9.7zm14.5 14.5h3.2v3.2h-3.2z" fill="#59b4d9" fill-rule="evenodd"/><path d="M31.5 0c-9.3 0-16.9 7.6-16.9 16.9v16.9h16.9c9.3 0 16.9-7.6 16.9-16.9S40.8 0 31.5 0z" fill="#7fba00"/><path d="M22.6 14.5h3.2v9.7h-3.2zm6.4 3.2h3.2v6.5H29zm6.5-6.4h3.2v12.9h-3.2z" fill="#68217a"/><path d="M24.2 48c1.2-.6 2.2-1.3 3.2-2.1v-.8h-3.2V48zM29 35.5h3.2v3.2H29zm-4.8 0h3.2v3.2h-3.2zm-9.7 4.8h3.2v3.2h-3.2zM9.7 16.1v3.3h3.2v-3.3zm9.7 24.2h3.2v3.2h-3.2zm0 4.9h3.2v3.2h-3.2zm-4.9-9.7h3.2v3.2h-3.2z" fill="#59b4d9" fill-rule="evenodd"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/OutboundNAT.svg b/src/main/webapp/img/lib/mscae/OutboundNAT.svg index 33b8d773a81e18f9d5866bea904b7af168285930..d60dab9508884187e4f65f99ad15563f98dfb712 100644 --- a/src/main/webapp/img/lib/mscae/OutboundNAT.svg +++ b/src/main/webapp/img/lib/mscae/OutboundNAT.svg @@ -1,25 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#A0A1A2" d="M48,0H2C0.9,0,0,0.9,0,2v7.3v0.3V48c0,1.1,0.9,2,2,2h46c1.1,0,2-0.9,2-2V9.6V9.3V2C50,0.9,49.1,0,48,0z"/> -<g> - <path fill="#0072C6" d="M25,21.9c3.3,0,6.5,1.3,8.9,3.7c4.9,4.9,4.9,12.8,0,17.7C31.5,45.7,28.4,47,25,47c-3.3,0-6.5-1.3-8.9-3.7 - c-0.8-0.8-0.8-2.1,0-3c0.8-0.8,2.1-0.8,3,0c1.6,1.6,3.7,2.4,5.9,2.4s4.3-0.9,5.9-2.4c3.3-3.3,3.3-8.6,0-11.8 - c-1.6-1.6-3.7-2.4-5.9-2.4s-4.3,0.9-5.9,2.4c-0.8,0.8-2.1,0.8-3,0c-0.8-0.8-0.8-2.1,0-3C18.5,23.2,21.7,21.9,25,21.9z"/> -</g> -<g> - <circle fill="#68217A" cx="24.9" cy="34.5" r="4.5"/> -</g> -<polygon fill="#FFFFFF" points="23.5,5.8 16.6,12.3 16.6,8.8 24.9,0 33.2,8.7 33.2,12.3 26.4,5.8 26.4,19.4 23.5,19.4 "/> -<path fill="#68217A" d="M23.5,32.2H0v4.2h23.5c1.2,0,2.1-0.9,2.1-2.1S24.7,32.2,23.5,32.2z"/> -<path fill="#0072C6" d="M50,32.2H35.7c-1.2,0-2.1,0.9-2.1,2.1s0.9,2.1,2.1,2.1H50V32.2z"/> -<g opacity="0.2"> - <g> - <g> - <path fill="#FFFFFF" d="M2,0C0.9,0,0,0.9,0,2v7.3V20v28c0,1.1,0.9,2,2,2h2.2L43.6,0H2z"/> - </g> - </g> -</g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path fill="#a0a1a2" d="M48 0H2C.9 0 0 .9 0 2v46c0 1.1.9 2 2 2h46c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2z"/><path fill="#0072c6" d="M25 21.9c3.3 0 6.5 1.3 8.9 3.7 4.9 4.9 4.9 12.8 0 17.7-2.4 2.4-5.5 3.7-8.9 3.7-3.3 0-6.5-1.3-8.9-3.7-.8-.8-.8-2.1 0-3 .8-.8 2.1-.8 3 0 1.6 1.6 3.7 2.4 5.9 2.4s4.3-.9 5.9-2.4c3.3-3.3 3.3-8.6 0-11.8-1.6-1.6-3.7-2.4-5.9-2.4s-4.3.9-5.9 2.4c-.8.8-2.1.8-3 0-.8-.8-.8-2.1 0-3 2.4-2.3 5.6-3.6 8.9-3.6z"/><circle fill="#68217a" cx="24.9" cy="34.5" r="4.5"/><path fill="#fff" d="M23.5 5.8l-6.9 6.5V8.8L24.9 0l8.3 8.7v3.6l-6.8-6.5v13.6h-2.9z"/><path fill="#68217a" d="M23.5 32.2H0v4.2h23.5c1.2 0 2.1-.9 2.1-2.1s-.9-2.1-2.1-2.1z"/><path fill="#0072c6" d="M50 32.2H35.7c-1.2 0-2.1.9-2.1 2.1s.9 2.1 2.1 2.1H50v-4.2z"/><path fill="#fff" d="M2 0C.9 0 0 .9 0 2v46c0 1.1.9 2 2 2h2.2L43.6 0H2z" opacity=".2"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/OutboundRule.svg b/src/main/webapp/img/lib/mscae/OutboundRule.svg index 5c14c7f8343a2e008ab7840c81644fa761980867..a96c80299439c8463b3046239246eede15108840 100644 --- a/src/main/webapp/img/lib/mscae/OutboundRule.svg +++ b/src/main/webapp/img/lib/mscae/OutboundRule.svg @@ -1,75 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="50" - viewBox="0 0 50 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="OutboundRule.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata955"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs953" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview951" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.020815" - inkscape:cx="27.131474" - inkscape:cy="20.248727" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="M 47.6,31.8 H 16.8 c -1.3,0 -2.4,-1.1 -2.4,-2.1 0,-1 1.1,-1.9 2.4,-1.9 h 30.8 c 1.4,0 2.4,0.8 2.4,1.9 0,1 -1.1,2.1 -2.4,2.1 z" - id="path940" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<path - d="M 47.6,47.4 H 16.8 c -1.3,0 -2.4,-1.1 -2.4,-2.1 0,-1 1.1,-1.9 2.4,-1.9 h 30.8 c 1.3,0 2.4,0.8 2.4,1.9 0,1 -1.1,2.1 -2.4,2.1 z" - id="path942" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<polygon - points="2.2,27.4 2.2,27.4 2.2,27.4 5.7,30.9 12.8,23.9 12.8,23.9 12.8,23.9 14.5,25.7 14.5,25.7 14.5,25.7 5.7,34.4 0.5,29.2 " - id="polygon944" - style="fill:#b8d432" - transform="translate(-0.5)" /> -<polygon - points="2.2,43 2.2,43 2.2,43 5.7,46.5 12.8,39.5 12.8,39.5 12.8,39.5 14.5,41.2 14.5,41.2 14.5,41.2 5.7,50 0.5,44.7 " - id="polygon946" - style="fill:#b8d432" - transform="translate(-0.5)" /> -<polygon - points="16.6,8.8 24.9,0 33.2,8.8 33.2,12.3 26.4,5.8 26.4,19.4 23.5,19.4 23.5,5.8 16.6,12.4 " - id="polygon948" - style="fill:#0072c6" - transform="translate(-0.5)" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path d="M47.6 31.8H16.8c-1.3 0-2.4-1.1-2.4-2.1s1.1-1.9 2.4-1.9h30.8c1.4 0 2.4.8 2.4 1.9 0 1-1.1 2.1-2.4 2.1zm0 15.6H16.8c-1.3 0-2.4-1.1-2.4-2.1s1.1-1.9 2.4-1.9h30.8c1.3 0 2.4.8 2.4 1.9 0 1-1.1 2.1-2.4 2.1z" fill="#a0a1a2"/><path d="M1.7 27.4l3.5 3.5 7.1-7 1.7 1.8-8.8 8.7L0 29.2zm0 15.6l3.5 3.5 7.1-7 1.7 1.7L5.2 50 0 44.7z" fill="#b8d432"/><path d="M16.1 8.8L24.4 0l8.3 8.8v3.5l-6.8-6.5v13.6H23V5.8l-6.9 6.6z" fill="#0072c6"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Output.svg b/src/main/webapp/img/lib/mscae/Output.svg index 56775b443542556ad41e0fc9e2c8340c8f620ec4..14a1ffd234787195dc6d6a3f821812181245f09a 100644 --- a/src/main/webapp/img/lib/mscae/Output.svg +++ b/src/main/webapp/img/lib/mscae/Output.svg @@ -1,60 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - viewBox="0 0 50 38" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Output.svg" - width="50" - height="38" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata1083"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs1081" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview1079" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="8.5" - inkscape:cx="37.664027" - inkscape:cy="21.395535" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<polygon - points="42.4,16.5 50,24.3 42.5,32 37.9,32 43.5,26 17,26 17,22.5 43.5,22.5 37.8,16.5 " - id="polygon1074" - style="fill:#59b4d9" - transform="translate(0,-6)" /> -<polygon - points="30.8,17.9 35.9,17.9 35.9,6 0,6 0,44 35.9,44 35.9,30.8 30.8,30.8 30.8,38.9 5.1,38.9 5.1,11.1 30.8,11.1 " - id="polygon1076" - style="fill:#a0a1a2" - transform="translate(0,-6)" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="38"><path d="M42.4 10.5l7.6 7.8-7.5 7.7h-4.6l5.6-6H17v-3.5h26.5l-5.7-6z" fill="#59b4d9"/><path d="M30.8 11.9h5.1V0H0v38h35.9V24.8h-5.1v8.1H5.1V5.1h25.7z" fill="#a0a1a2"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Paused.svg b/src/main/webapp/img/lib/mscae/Paused.svg index 48b8164dfebf6b15cef8c14d9b227136d424c8f8..72ae8661193f1b94429480501e959a11c3fecec9 100644 --- a/src/main/webapp/img/lib/mscae/Paused.svg +++ b/src/main/webapp/img/lib/mscae/Paused.svg @@ -1,64 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="10" - height="12" - viewBox="-0.5 0.5 10 12" - enable-background="new -0.5 0.5 16 16" - xml:space="preserve" - sodipodi:docname="Paused.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata1335"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs1333" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview1331" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="53.125" - inkscape:cx="5" - inkscape:cy="6" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<rect - x="-0.5" - y="0.5" - width="4" - height="12" - id="rect1326" - style="fill:#7a7a7a" /> -<rect - x="5.5" - y="0.5" - width="4" - height="12" - id="rect1328" - style="fill:#7a7a7a" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="10" height="12" viewBox="-0.5 0.5 10 12" fill="#7a7a7a"><path d="M-.5.5h4v12h-4zm6 0h4v12h-4z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Peerings.svg b/src/main/webapp/img/lib/mscae/Peerings.svg index 2f103d39f9fdfa5ed6739cab0715df3570596000..d5be4197ffcaa5e1908bf1fc3ba07f46f4fc558d 100644 --- a/src/main/webapp/img/lib/mscae/Peerings.svg +++ b/src/main/webapp/img/lib/mscae/Peerings.svg @@ -1,21 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="-774 1476 50 50" enable-background="new -774 1476 50 50" xml:space="preserve"> -<rect x="-750.9" y="1485.2" fill="#68217A" width="3.8" height="31"/> -<rect x="-769" y="1509.141" transform="matrix(0.7071 0.7071 -0.7071 0.7071 846.3374 978.8433)" fill="#68217A" width="21.2" height="3.8"/> -<rect x="-768.975" y="1488.969" transform="matrix(-0.7071 0.7071 -0.7071 -0.7071 -240.4243 3081.3254)" fill="#68217A" width="21.2" height="3.8"/> -<path fill="#7FBA00" d="M-774,1501c0,3.1,2.5,5.6,5.6,5.6c3.1,0,5.6-2.5,5.6-5.6s-2.5-5.6-5.6-5.6 - C-771.5,1495.4-774,1497.9-774,1501z M-766.6,1501c0,1-0.8,1.8-1.8,1.8s-1.8-0.8-1.8-1.8s0.8-1.8,1.8-1.8S-766.6,1500-766.6,1501z" - /> -<rect x="-750.2" y="1488.969" transform="matrix(-0.7071 -0.7071 0.7071 -0.7071 -2316.7805 2022.0966)" fill="#68217A" width="21.2" height="3.8"/> -<rect x="-750.224" y="1509.141" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -1285.0985 -80.4197)" fill="#68217A" width="21.2" height="3.8"/> -<path fill="#7FBA00" d="M-724,1500.911c0-3.1-2.5-5.6-5.6-5.6c-3.1,0-5.6,2.5-5.6,5.6c0,3.1,2.5,5.6,5.6,5.6 - C-726.5,1506.51-724,1504.01-724,1500.911z M-731.4,1500.911c0-1,0.8-1.8,1.8-1.8s1.8,0.8,1.8,1.8s-0.8,1.8-1.8,1.8 - S-731.4,1501.911-731.4,1500.911z"/> -<path fill="#7FBA00" d="M-754.6,1520.4c0,3.1,2.5,5.6,5.6,5.6s5.6-2.5,5.6-5.6s-2.5-5.6-5.6-5.6S-754.6,1517.3-754.6,1520.4z - M-747.2,1520.4c0,1-0.8,1.8-1.8,1.8s-1.8-0.8-1.8-1.8s0.8-1.8,1.8-1.8S-747.2,1519.4-747.2,1520.4z"/> -<path fill="#7FBA00" d="M-754.6,1481.6c0,3.1,2.5,5.6,5.6,5.6s5.6-2.5,5.6-5.6s-2.5-5.6-5.6-5.6S-754.6,1478.5-754.6,1481.6z - M-747.2,1481.6c0,1-0.8,1.8-1.8,1.8s-1.8-0.8-1.8-1.8s0.8-1.8,1.8-1.8S-747.2,1480.6-747.2,1481.6z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="50" viewBox="-774 1476 50 50"><g fill="#68217a"><path d="M-750.9 1485.2h3.8v31h-3.8z"/><path d="M-764.536 1502.197l15 15-2.687 2.687-15-15zm15.004-17.464l-15 15-2.687-2.687 15-15z"/></g><use xlink:href="#B" fill="#7fba00"/><path d="M-733.464 1499.713l-15-15 2.687-2.687 15 15zm-15.004 17.464l15-15 2.687 2.687-15 15z" fill="#68217a"/><g fill="#7fba00"><path d="M-724 1500.91a5.59 5.59 0 1 0-11.2 0 5.59 5.59 0 0 0 5.6 5.6c3.1-.001 5.6-2.5 5.6-5.6zm-7.4 0a1.79 1.79 0 1 1 3.6 0 1.79 1.79 0 1 1-3.6 0z"/><use xlink:href="#B" x="19.4" y="19.4"/><use xlink:href="#B" x="19.4" y="-19.4"/></g><defs ><path id="B" d="M-774 1501a5.59 5.59 0 1 0 11.2 0 5.59 5.59 0 1 0-11.2 0zm7.4 0a1.79 1.79 0 1 1-3.6 0 1.79 1.79 0 1 1 3.6 0z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Pending.svg b/src/main/webapp/img/lib/mscae/Pending.svg index dce18dbc3443fc42eb9e749e7c1c7e19328ad68b..1f25fed2e8f10382e4eacccd9f87856f3897bc17 100644 --- a/src/main/webapp/img/lib/mscae/Pending.svg +++ b/src/main/webapp/img/lib/mscae/Pending.svg @@ -1,10 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="16px" height="16px" viewBox="0 0 16 16" enable-background="new 0 0 16 16" xml:space="preserve"> -<path fill="#0072C6" d="M16,8.175c0-3.916-3.027-7.152-6.831-7.497v2.246c2.582,0.315,4.619,2.526,4.619,5.213 - c0,1.669-0.794,3.137-2.022,4.063L9.135,9.726V16h6.673l-2.406-2.262C14.983,12.41,16,10.426,16,8.175z"/> -<path fill="#0072C6" d="M2.212,7.864c0-1.669,0.794-3.137,2.023-4.063l2.631,2.474V0H0.192l2.406,2.262C1.017,3.59,0,5.574,0,7.825 - c0,3.928,3.046,7.171,6.865,7.499v-2.244C4.267,12.782,2.212,10.563,2.212,7.864z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="#0072c6"><path d="M16 8.175C16 4.26 12.973 1.023 9.17.678v2.246c2.582.315 4.62 2.526 4.62 5.213 0 1.67-.794 3.137-2.022 4.063l-2.63-2.474V16h6.673l-2.406-2.262A7.23 7.23 0 0 0 16 8.175zm-13.788-.31c0-1.67.794-3.137 2.023-4.063l2.63 2.474V0H.192l2.406 2.262A7.23 7.23 0 0 0 0 7.825c0 3.928 3.046 7.17 6.865 7.5V13.08a5.27 5.27 0 0 1-4.653-5.216z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Person.svg b/src/main/webapp/img/lib/mscae/Person.svg index b4f7d0e1680306f24acc16d80f98bb9f26442253..75d9cea65d94c3c86e2c8ac958e847281f72283b 100644 --- a/src/main/webapp/img/lib/mscae/Person.svg +++ b/src/main/webapp/img/lib/mscae/Person.svg @@ -1,60 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="36.999001" - height="50" - viewBox="0 0 36.999001 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Person.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata1552"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs1550" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview1548" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.020815" - inkscape:cx="24.577686" - inkscape:cy="22.027409" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 28.858,10.269 c 0,5.671 -4.638,10.269 -10.359,10.269 C 12.778,20.538 8.141,15.94 8.141,10.269 8.141,4.598 12.778,0 18.499,0 24.22,0 28.858,4.598 28.858,10.269" - id="path1543" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<polygon - points="17.926,24.058 7.001,24.058 7.001,50 44,50 44,24.058 33.074,24.058 25.5,34.578 " - id="polygon1545" - style="fill:#59b4d9" - transform="translate(-7.001)" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="36.999" height="50" fill="#59b4d9"><path d="M28.858 10.27c0 5.67-4.638 10.27-10.36 10.27S8.14 15.94 8.14 10.27 12.778 0 18.5 0s10.36 4.598 10.36 10.27M10.925 24.058H0V50h37V24.058H26.073L18.5 34.578z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/PersonWithFriend.svg b/src/main/webapp/img/lib/mscae/PersonWithFriend.svg index 8fb3bbf681d8f015bc1105795ea748a517455551..b0ac813bc07ea644c8ea59240716e2d1c840a9e8 100644 --- a/src/main/webapp/img/lib/mscae/PersonWithFriend.svg +++ b/src/main/webapp/img/lib/mscae/PersonWithFriend.svg @@ -1,70 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="49.709" - viewBox="0 0 50 49.709" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="PersonWithFriend.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata1613"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs1611" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview1609" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.020815" - inkscape:cx="27.192895" - inkscape:cy="17.056846" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 44.977,10.209 c 0,5.638 -4.571,10.209 -10.21,10.209 -5.639,0 -10.209,-4.571 -10.209,-10.209 C 24.558,4.571 29.128,0 34.767,0 c 5.639,0 10.21,4.571 10.21,10.209" - id="path1600" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<polygon - points="27.302,24.209 19.534,24.209 19.534,50 50,50 50,24.209 42.232,24.209 34.767,34.668 " - id="polygon1602" - style="fill:#59b4d9" - transform="translate(0,-0.291)" /> -<path - d="m 14.294,27.345 c 0,3.168 -2.568,5.734 -5.736,5.734 -3.168,0 -5.736,-2.566 -5.736,-5.734 0,-3.168 2.568,-5.735 5.736,-5.735 3.168,0 5.736,2.567 5.736,5.735" - id="path1604" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<polygon - points="4.364,35.512 0,35.512 0,50 17.115,50 17.115,35.512 12.751,35.512 8.558,41.388 " - id="polygon1606" - style="fill:#59b4d9" - transform="translate(0,-0.291)" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="49.709" fill="#59b4d9"><path d="M44.977 10.2a10.21 10.21 0 0 1-20.419 0 10.21 10.21 0 0 1 20.419 0M27.302 23.918h-7.768v25.8H50v-25.8h-7.768l-7.465 10.46zm-13.008 3.427c0 3.168-2.568 5.734-5.736 5.734s-5.736-2.566-5.736-5.734S5.4 21.6 8.558 21.6s5.736 2.567 5.736 5.735m-9.93 7.885H0v14.5h17.115v-14.5H12.75l-4.193 5.876z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Phone.svg b/src/main/webapp/img/lib/mscae/Phone.svg index e4ec89ebdf74ff275b247a83a067f0d77b37807c..cffaf29a84ba9686c82bd3dcbe9a4f78a765aa69 100644 --- a/src/main/webapp/img/lib/mscae/Phone.svg +++ b/src/main/webapp/img/lib/mscae/Phone.svg @@ -1,11 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#59B4D9" d="M25,4.2c11.5,0,20.8,9.3,20.8,20.8S36.5,45.8,25,45.8S4.2,36.5,4.2,25S13.5,4.2,25,4.2 M25,0 - C11.2,0,0,11.2,0,25s11.2,25,25,25s25-11.2,25-25S38.8,0,25,0L25,0z"/> -<path fill="#59B4D9" d="M37,33c-1-1-2-2-3-3c-0.6-0.6-1.2-1-2-1s-1.5,0.4-2,1s-1.2,1-2,1s-1.4-0.4-2-1c-1-1-4-4-5-5 - c-0.6-0.6-1-1.2-1-2s0.4-1.5,1-2s1-1.2,1-2s-0.4-1.4-1-2c-1-1-2-2-3-3c-0.6-0.6-1.2-1-2-1c-0.8,0-1.4,0.4-2,1l-1,1 - c-0.6,0.6-1,1.2-1,2c0,5.5,3,10,7,14c0,0,0,0,1,1c4,4,8.5,7,14,7c0.8,0,1.4-0.4,2-1l1-1c0.6-0.6,1-1.2,1-2S37.6,33.6,37,33z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50" fill="#59b4d9"><path d="M25 4.2c11.5 0 20.8 9.3 20.8 20.8S36.5 45.8 25 45.8 4.2 36.5 4.2 25 13.5 4.2 25 4.2M25 0C11.2 0 0 11.2 0 25s11.2 25 25 25 25-11.2 25-25S38.8 0 25 0zm12 33l-3-3c-.6-.6-1.2-1-2-1s-1.5.4-2 1-1.2 1-2 1-1.4-.4-2-1l-5-5c-.6-.6-1-1.2-1-2s.4-1.5 1-2 1-1.2 1-2-.4-1.4-1-2l-3-3c-.6-.6-1.2-1-2-1s-1.4.4-2 1l-1 1c-.6.6-1 1.2-1 2 0 5.5 3 10 7 14l1 1c4 4 8.5 7 14 7 .8 0 1.4-.4 2-1l1-1c.6-.6 1-1.2 1-2s-.4-1.4-1-2z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/PluralSight_mono.svg b/src/main/webapp/img/lib/mscae/PluralSight_mono.svg index 46a4dd6c0fc5b07d99fa6f23ed6e9782f4ae9b5c..e42194ead7d8032b9cd8e32b8379da40c7d95229 100644 --- a/src/main/webapp/img/lib/mscae/PluralSight_mono.svg +++ b/src/main/webapp/img/lib/mscae/PluralSight_mono.svg @@ -1,64 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Icons" - x="0px" - y="0px" - width="64px" - height="64px" - viewBox="0 0 64 64" - enable-background="new 0 0 64 64" - xml:space="preserve" - sodipodi:docname="logo_pluralsight_mono.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata667"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs665" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview663" - showgrid="false" - inkscape:zoom="9.3912619" - inkscape:cx="44.324377" - inkscape:cy="26.548789" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Icons" /> - - -<g - id="g675" - transform="matrix(1.0309142,0,0,1.0309142,-0.98925178,-0.98925178)"><path - id="path654" - d="M 1,32 C 1,49.121 14.879,63 32,63 49.121,63 63,49.121 63,32 63,14.879 49.121,1 32,1 14.879,1 1,14.879 1,32" - inkscape:connector-curvature="0" - style="fill:#ec008c" /><path - id="path656" - d="M 1,32 C 1,49.121 14.879,63 32,63 49.121,63 63,49.121 63,32 63,14.879 49.121,1 32,1 14.879,1 1,14.879 1,32" - inkscape:connector-curvature="0" - style="opacity:0.4;fill:#f05a28" /><path - style="fill:#ffffff" - id="path658" - d="M 24,15 24.01563,22.554688 18,19 V 45 L 24.054688,41.421875 24.070312,49 51,32 Z M 27,20.439453 45.380859,32 27,43.570312 V 39.681641 L 40,32 27,24.318359 Z m -6,3.820313 3.023438,1.785156 0.02344,11.894531 L 21,39.740234 Z M 27,27.804688 34.099609,32 27,36.195312 Z" - inkscape:connector-curvature="0" /></g> - -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><use xlink:href="#B" fill="#ec008c"/><use xlink:href="#B" opacity=".4" fill="#f05a28"/><path d="M23.753 14.474l.016 7.788-6.202-3.665v26.804l6.242-3.69.016 7.812L51.587 32zm3.093 5.608L45.795 32l-18.95 11.928v-4.01L40.247 32l-13.402-7.92zM20.66 24.02l3.117 1.84.024 12.262-3.14 1.856zm6.185 3.655L34.165 32l-7.32 4.325z" fill="#fff"/><defs ><path id="B" d="M.042 32C.042 49.65 14.35 63.958 32 63.958S63.958 49.65 63.958 32 49.65.042 32 .042.042 14.35.042 32"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Policy.svg b/src/main/webapp/img/lib/mscae/Policy.svg new file mode 100644 index 0000000000000000000000000000000000000000..b3f188b76020859c91b6b74fcec0f2eba5ddc357 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Policy.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="16.044" height="18"><g fill="#59b4d9"><circle cx="8" cy="9.004" r="2.5"/><circle cx="12.16" cy="6.664" r="1.224"/><circle cx="12.16" cy="11.344" r="1.224"/><circle cx="15" cy="13.011" r="1.044"/><circle cx="15" cy="5.011" r="1"/><circle cx="15" cy="9.004" r="1"/></g><g fill="#3999c6"><circle cx="11.688" cy="2.884" r=".72"/><path d="M8.02 16.344l-6.58-3.682V5.338l6.58-3.682 3.284 1.838.726-1.244-4-2.25L0 4.5v9L8.02 18l4-2.25-.726-1.244z"/><circle cx="11.688" cy="15.116" r=".72"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/PortalCurrent.svg b/src/main/webapp/img/lib/mscae/PortalCurrent.svg index e34a5903acab215f761169a83d0cf734bf3104b5..d977e4a62e02604604335b48f67d3fe962675fd9 100644 --- a/src/main/webapp/img/lib/mscae/PortalCurrent.svg +++ b/src/main/webapp/img/lib/mscae/PortalCurrent.svg @@ -1,112 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="42.599998" - width="50" - viewBox="0 0 50 42.599998" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="PortalCurrent.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata1799"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs1797" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview1795" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="25" - inkscape:cy="21.3" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 0,40.6 c 0,1.1 0.9,2 2,2 h 46 c 1.1,0 2,-0.9 2,-2 V 9.3 H 0 Z" - id="path1770" - inkscape:connector-curvature="0" - style="fill:#1e1e1e" /> -<path - d="m 0,40.6 c 0,1.1 0.9,2 2,2 h 46 c 1.1,0 2,-0.9 2,-2 V 9.3 H 0 Z" - id="path1772" - inkscape:connector-curvature="0" - style="opacity:0.25;fill:#0072c6" /> -<path - d="M 48,0 H 2 C 0.9,0 0,0.9 0,2 V 12.6 H 50 V 2 C 50,0.9 49.1,0 48,0" - id="path1774" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<rect - x="12.9" - y="4.8000002" - width="33.700001" - height="3.9000001" - id="rect1776" - style="fill:#ffffff" /> -<path - d="m 11.3,6.7 c 0,2.7 -2.2,4.9 -4.9,4.9 C 3.7,11.6 1.5,9.4 1.5,6.7 1.5,4 3.7,1.8 6.4,1.8 c 2.7,0 4.9,2.2 4.9,4.9" - id="path1778" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<polygon - points="6.9,13.3 4,10.4 6.9,7.6 8.1,7.6 5.9,9.9 11.3,9.9 11.3,10.9 5.9,10.9 8.1,13.3 " - id="polygon1780" - style="fill:#ffffff" - transform="translate(0,-3.7)" /> -<rect - x="12" - y="19" - width="38" - height="20" - id="rect1782" - style="fill:#e5e5e5" /> -<rect - x="0" - y="19" - width="12" - height="20" - id="rect1784" - style="fill:#59b4d9" /> -<g - id="g1792" - style="opacity:0.2" - transform="translate(0,-3.7)"> - <g - id="g1790"> - <g - id="g1788"> - <path - d="m 2,3.7 c -1.1,0 -2,0.9 -2,2 v 7.3 3.3 28 c 0,1.1 0.9,2 2,2 H 4.2 L 43.6,3.7 Z" - id="path1786" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - </g> - </g> -</g> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" height="42.6" width="50"><path d="M0 40.6c0 1.1.9 2 2 2h46c1.1 0 2-.9 2-2V9.3H0z" fill="#1e1e1e"/><path d="M0 40.6c0 1.1.9 2 2 2h46c1.1 0 2-.9 2-2V9.3H0z" opacity=".25" fill="#0072c6"/><path d="M48 0H2C.9 0 0 .9 0 2v10.6h50V2c0-1.1-.9-2-2-2" fill="#a0a1a2"/><path d="M12.9 4.8h33.7v3.9H12.9z" fill="#fff"/><path d="M11.3 6.7a4.91 4.91 0 0 1-4.9 4.9 4.91 4.91 0 0 1-4.9-4.9 4.91 4.91 0 0 1 4.9-4.9 4.91 4.91 0 0 1 4.9 4.9" fill="#59b4d9"/><path d="M6.9 9.6L4 6.7l2.9-2.8h1.2L5.9 6.2h5.4v1H5.9l2.2 2.4z" fill="#fff"/><path d="M12 19h38v20H12z" fill="#e5e5e5"/><path d="M0 19h12v20H0z" fill="#59b4d9"/><path d="M2 0C.9 0 0 .9 0 2v38.6c0 1.1.9 2 2 2h2.2L43.6 0z" fill="#fff" opacity=".2"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Postpone.svg b/src/main/webapp/img/lib/mscae/Postpone.svg index 054a57fc2a50e27457cd0ccef49c8bfc6f9b0343..a403da6dc851eab55ae05c6f7fcec2c6db13cfb9 100644 --- a/src/main/webapp/img/lib/mscae/Postpone.svg +++ b/src/main/webapp/img/lib/mscae/Postpone.svg @@ -1,69 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="20" - height="20" - viewBox="0.5 0.5 20 20" - enable-background="new 0.5 0.5 24 24" - xml:space="preserve" - sodipodi:docname="Postpone.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata1854"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs1852" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview1850" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="35.416667" - inkscape:cx="10" - inkscape:cy="10" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 10.5,0.5 c -5.523,0 -10,4.477 -10,10 0,5.523 4.477,10 10,10 5.523,0 10,-4.477 10,-10 0,-5.523 -4.477,-10 -10,-10 z m 0,16.875 c -3.797,0 -6.875,-3.078 -6.875,-6.875 0,-3.797 3.078,-6.875 6.875,-6.875 3.797,0 6.875,3.078 6.875,6.875 0,3.797 -3.078,6.875 -6.875,6.875 z" - id="path1843" - inkscape:connector-curvature="0" - style="fill:#7a7a7a" /> -<rect - x="9.25" - y="4.25" - width="1.25" - height="6.25" - id="rect1845" - style="fill:#7a7a7a" /> -<rect - x="9.25" - y="10.5" - width="6.25" - height="1.25" - id="rect1847" - style="fill:#7a7a7a" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0.5 0.5 20 20" fill="#7a7a7a"><path d="M10.5.5a10 10 0 1 0 0 20 10 10 0 1 0 0-20zm0 16.875c-3.797 0-6.875-3.078-6.875-6.875S6.703 3.625 10.5 3.625s6.875 3.078 6.875 6.875-3.078 6.875-6.875 6.875zM9.25 4.25h1.25v6.25H9.25z"/><path d="M9.25 10.5h6.25v1.25H9.25z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Power.svg b/src/main/webapp/img/lib/mscae/Power.svg index 40afaabaf72cf3b6c41f78e014fe070c968353d8..31c74da4d71e0f8051f1a2adff46e2cc37df25f6 100644 --- a/src/main/webapp/img/lib/mscae/Power.svg +++ b/src/main/webapp/img/lib/mscae/Power.svg @@ -1,76 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="49.820141" - width="30.79566" - viewBox="0 0 30.79566 49.820141" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Power.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata1996"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs1994" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview1992" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.020815" - inkscape:cx="8.7331457" - inkscape:cy="16.924312" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<g - id="g1989" - transform="translate(-9.5382955)"> - <g - id="g1981"> - <path - d="M 36.4,0 H 17.6 l -8,25.2 c -0.2,0.6 0.1,1 0.7,1 h 8.8 c 0.3,0 0.5,0.1 0.6,0.2 0.2,0.2 0.2,0.5 0.1,0.8 L 10.7,49.3 C 10.5,49.9 10.6,50 11,49.5 L 40.1,17 c 0.4,-0.5 0.2,-0.9 -0.4,-0.9 h -9.5 -1.7 c -0.6,0 -0.9,-0.4 -0.6,-1 z" - id="path1979" - inkscape:connector-curvature="0" - style="fill:#fcd116" /> - </g> - <path - d="M 39.7,16.1 H 33.9 L 12.3,48.5 40.1,17 c 0.4,-0.5 0.3,-0.9 -0.4,-0.9 z" - id="path1983" - inkscape:connector-curvature="0" - style="opacity:0.3;fill:#ff8c00" /> - <g - id="g1987" - style="opacity:0.3"> - <path - d="m 36.4,0 h -5.5 l -7.8,16.1 h 5.2 c -0.5,-0.1 -0.7,-0.5 -0.4,-1 z" - id="path1985" - inkscape:connector-curvature="0" - style="fill:#ff8c00" /> - </g> -</g> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" height="49.82" width="30.796"><path d="M26.862 0h-18.8l-8 25.2c-.2.6.1 1 .7 1h8.8c.3 0 .5.1.6.2.2.2.2.5.1.8l-9.1 22.1c-.2.6-.1.7.3.2l29.1-32.5c.4-.5.2-.9-.4-.9h-11.2c-.6 0-.9-.4-.6-1z" fill="#fcd116"/><path d="M30.162 16.1h-5.8l-21.6 32.4 27.8-31.5c.4-.5.3-.9-.4-.9zM26.862 0h-5.5l-7.8 16.1h5.2c-.5-.1-.7-.5-.4-1z" opacity=".3" fill="#ff8c00"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/PowerUp.svg b/src/main/webapp/img/lib/mscae/PowerUp.svg index b75e78504744df7b57c6d8c7e8e244d532fae4a7..bf8bf818472e75eea1f4770985c54a3c8f7acaa5 100644 --- a/src/main/webapp/img/lib/mscae/PowerUp.svg +++ b/src/main/webapp/img/lib/mscae/PowerUp.svg @@ -1,19 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path opacity="0.5" fill="#59B4D9" d="M41.386,50c-6.829,0-16.33-5.585-26.069-15.323C1.768,21.125-3.448,8.134,2.338,2.348 - C3.875,0.811,6.039,0,8.599,0c6.829,0,16.331,5.585,26.069,15.325c6.637,6.638,11.379,13.177,13.715,18.916 - c2.365,5.811,2.104,10.572-0.736,13.413C46.111,49.189,43.946,50,41.386,50 M8.599,3.078c-1.75,0-3.124,0.486-4.083,1.445 - C0.791,8.249,4.052,19.056,17.495,32.498c9.031,9.032,17.962,14.424,23.892,14.424c1.75,0,3.123-0.486,4.082-1.446 - c1.908-1.908,1.932-5.486,0.063-10.074C43.35,30.04,38.84,23.85,32.49,17.502C23.459,8.471,14.528,3.078,8.599,3.078"/> -<path fill="#59B4D9" d="M8.599,50c-2.56,0-4.724-0.811-6.261-2.346c-2.84-2.841-3.101-7.602-0.735-13.413 - c2.336-5.739,7.078-12.278,13.715-18.916C25.056,5.585,34.558,0,41.387,0c2.56,0,4.724,0.811,6.26,2.347 - c5.786,5.787,0.57,18.778-12.979,32.33C24.929,44.415,15.427,50,8.599,50 M41.387,3.078c-5.93,0-14.861,5.393-23.893,14.424 - C11.146,23.85,6.634,30.04,4.453,35.402c-1.869,4.588-1.845,8.166,0.063,10.074c0.959,0.96,2.332,1.446,4.083,1.446 - c5.93,0,14.86-5.392,23.892-14.424C45.933,19.056,49.194,8.249,45.468,4.522C44.509,3.564,43.137,3.078,41.387,3.078"/> -<path fill="#59B4D9" d="M31.914,20.031c-0.291-0.318-0.639-0.551-1.022-0.71c-1.768-0.736-4.322,0.18-5.922,2.451 - c-2.46-2.968-5.402-3.526-7.039-1.741c-3.272,3.563,0.826,8.244,4.058,10.902c1.274,1.048,2.413,1.781,2.914,2.008v0.023 - c0.004-0.001,0.014-0.008,0.017-0.009c0,0,0.018,0.008,0.024,0.009v-0.023C26.713,32.139,36.473,24.998,31.914,20.031"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" fill="#59b4d9"><path opacity=".5" d="M41.386 50c-6.83 0-16.33-5.585-26.07-15.323C1.768 21.125-3.448 8.134 2.338 2.348 3.875.81 6.04 0 8.6 0c6.83 0 16.33 5.585 26.07 15.325 6.637 6.638 11.38 13.177 13.715 18.916 2.365 5.81 2.104 10.572-.736 13.413C46.11 49.19 43.946 50 41.386 50M8.6 3.078c-1.75 0-3.124.486-4.083 1.445C.79 8.25 4.052 19.056 17.495 32.498c9.03 9.032 17.962 14.424 23.892 14.424 1.75 0 3.123-.486 4.082-1.446 1.908-1.908 1.932-5.486.063-10.074C43.35 30.04 38.84 23.85 32.5 17.502 23.46 8.47 14.528 3.078 8.6 3.078"/><path d="M8.6 50c-2.56 0-4.724-.8-6.26-2.346-2.84-2.84-3.1-7.602-.735-13.413C3.94 28.5 8.683 21.963 15.32 15.325 25.056 5.585 34.558 0 41.387 0c2.56 0 4.724.8 6.26 2.347 5.786 5.787.57 18.778-12.98 32.33C24.93 44.415 15.427 50 8.6 50M41.387 3.078c-5.93 0-14.86 5.393-23.893 14.424-6.348 6.348-10.86 12.538-13.04 17.9-1.87 4.588-1.845 8.166.063 10.074.96.96 2.332 1.446 4.083 1.446 5.93 0 14.86-5.392 23.892-14.424C45.933 19.056 49.194 8.25 45.468 4.522c-.96-.958-2.33-1.444-4.08-1.444M31.914 20.03a2.72 2.72 0 0 0-1.022-.7c-1.768-.736-4.322.18-5.922 2.45-2.46-2.968-5.402-3.526-7.04-1.74-3.272 3.563.826 8.244 4.058 10.902 1.274 1.048 2.413 1.78 2.914 2.008v.023c.017-.01.035-.001.04 0v-.023c1.77-.802 11.53-7.943 6.97-12.9"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/PowerUp_2.svg b/src/main/webapp/img/lib/mscae/PowerUp_2.svg index 8c03e7f0783784c5e7e737fc5927e9727c85a7a4..84f7052d1badab986491dc56852f70b8cc55d249 100644 --- a/src/main/webapp/img/lib/mscae/PowerUp_2.svg +++ b/src/main/webapp/img/lib/mscae/PowerUp_2.svg @@ -1,24 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#FFFFFF" d="M23.844,21.87c0.132-0.091,0.264-0.182,0.395-0.263C24.107,21.688,23.976,21.779,23.844,21.87L23.844,21.87z - "/> -<polygon fill="#FFFFFF" points="25.134,23.341 25.122,23.328 25.135,23.341 "/> -<path fill="#A0A1A2" d="M41.386,50c-6.829,0-16.33-5.585-26.069-15.323C1.768,21.125-3.448,8.134,2.338,2.348 - C3.875,0.811,6.039,0,8.599,0c6.829,0,16.331,5.585,26.069,15.325c6.637,6.638,11.379,13.177,13.715,18.916 - c2.365,5.811,2.104,10.572-0.736,13.413C46.111,49.189,43.946,50,41.386,50 M8.599,3.078c-1.75,0-3.124,0.486-4.083,1.445 - C0.791,8.249,4.052,19.056,17.495,32.498c9.031,9.032,17.962,14.424,23.892,14.424c1.75,0,3.123-0.486,4.082-1.446 - c1.908-1.908,1.932-5.486,0.063-10.074C43.35,30.04,38.84,23.85,32.49,17.502C23.459,8.471,14.528,3.078,8.599,3.078"/> -<path fill="#0F0F0F" d="M8.599,50c-2.56,0-4.724-0.811-6.261-2.346c-2.84-2.841-3.101-7.602-0.735-13.413 - c2.336-5.739,7.078-12.278,13.715-18.916C25.056,5.585,34.558,0,41.387,0c2.56,0,4.724,0.811,6.26,2.347 - c5.786,5.787,0.57,18.778-12.979,32.33C24.929,44.415,15.427,50,8.599,50 M41.387,3.078c-5.93,0-14.861,5.393-23.893,14.424 - c-6.348,6.348-10.86,12.538-13.041,17.9c-1.869,4.588-1.845,8.166,0.063,10.074c0.959,0.96,2.332,1.446,4.083,1.446 - c5.93,0,14.86-5.392,23.892-14.424C45.933,19.056,49.194,8.249,45.468,4.522C44.509,3.564,43.137,3.078,41.387,3.078"/> -<path fill="#BA141A" d="M32.273,20.801c-0.303-0.33-0.665-0.573-1.063-0.739c-1.839-0.766-4.496,0.188-6.16,2.55 - c-2.559-3.088-5.619-3.668-7.323-1.811c-3.404,3.706,0.859,8.576,4.221,11.341c1.325,1.09,2.51,1.853,3.032,2.089v0.024 - c0.005-0.001,0.014-0.009,0.018-0.009c0,0,0.018,0.009,0.025,0.009v-0.024C26.863,33.397,37.017,25.969,32.273,20.801"/> -<path opacity="0.2" fill="#FFFFFF" d="M25.05,22.613c-2.559-3.088-5.619-3.668-7.323-1.811c-3.404,3.706,0.859,8.576,4.221,11.341 - l9.262-12.08C29.371,19.297,26.714,20.25,25.05,22.613"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path d="M23.844 21.87l.395-.263-.395.263zm1.3 1.47l-.012-.013.013.013z" fill="#fff"/><path fill="#a0a1a2" d="M41.386 50c-6.83 0-16.33-5.585-26.07-15.323C1.768 21.125-3.448 8.134 2.338 2.348 3.875.81 6.04 0 8.6 0c6.83 0 16.33 5.585 26.07 15.325 6.637 6.638 11.38 13.177 13.715 18.916 2.365 5.81 2.104 10.572-.736 13.413C46.11 49.19 43.946 50 41.386 50M8.6 3.078c-1.75 0-3.124.486-4.083 1.445C.79 8.25 4.052 19.056 17.495 32.498c9.03 9.032 17.962 14.424 23.892 14.424 1.75 0 3.123-.486 4.082-1.446 1.908-1.908 1.932-5.486.063-10.074C43.35 30.04 38.84 23.85 32.5 17.502 23.46 8.47 14.528 3.078 8.6 3.078"/><path fill="#0f0f0f" d="M8.6 50c-2.56 0-4.724-.81-6.26-2.346-2.84-2.84-3.1-7.602-.735-13.413 2.336-5.74 7.078-12.278 13.715-18.916C25.056 5.585 34.558 0 41.387 0c2.56 0 4.724.81 6.26 2.347 5.786 5.787.57 18.778-12.98 32.33C24.93 44.415 15.427 50 8.6 50M41.387 3.078c-5.93 0-14.86 5.393-23.893 14.424-6.348 6.348-10.86 12.538-13.04 17.9-1.87 4.588-1.845 8.166.063 10.074.96.96 2.332 1.446 4.083 1.446 5.93 0 14.86-5.392 23.892-14.424C45.933 19.056 49.194 8.25 45.468 4.522c-.96-.958-2.33-1.444-4.08-1.444"/><path fill="#ba141a" d="M32.273 20.8c-.303-.33-.665-.573-1.063-.74-1.84-.766-4.496.188-6.16 2.55-2.56-3.088-5.62-3.668-7.323-1.81-3.404 3.706.86 8.576 4.22 11.34 1.325 1.1 2.5 1.853 3.032 2.09v.024c.005-.001.014-.01.018-.01s.018.01.025.01v-.024c1.84-.834 11.994-8.262 7.25-13.43"/><path opacity=".2" fill="#fff" d="M25.05 22.613c-2.56-3.088-5.62-3.668-7.323-1.81-3.404 3.706.86 8.576 4.22 11.34l9.262-12.08c-1.84-.766-4.496.187-6.16 2.55"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Powershell.svg b/src/main/webapp/img/lib/mscae/Powershell.svg index 3a24ef6f21fcf7f37433877d5e67350c5cc3272a..5a5fc67fb2e311cf92cc90aeca21c6ad12de08c8 100644 --- a/src/main/webapp/img/lib/mscae/Powershell.svg +++ b/src/main/webapp/img/lib/mscae/Powershell.svg @@ -1,84 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="42.633999" - viewBox="0 0 50 42.633999" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Powershell.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata2089"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs2087" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview2085" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="8.5" - inkscape:cx="12.99208" - inkscape:cy="13.588753" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 0,40.627 c 0,1.108 0.898,2.007 2.007,2.007 H 47.993 C 49.102,42.634 50,41.735 50,40.627 V 8.634 H 0 Z" - id="path2072" - inkscape:connector-curvature="0" - style="fill:#3999c6" /> -<path - d="M 47.993,0 H 2.007 C 0.898,0 0,0.898 0,2.007 V 9.298 H 50 V 2.007 C 50,0.898 49.101,0 47.993,0 Z" - id="path2074" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<rect - y="9.2980003" - width="50" - height="3.336" - id="rect2076" - x="0" - style="opacity:0.15;fill:#ffffff" /> -<path - d="M 2.014,0 C 0.906,0 0.007,0.898 0.007,2.007 v 7.291 3.336 27.993 c 0,1.108 0.899,2.007 2.007,2.007 H 21.202 L 43.62,0 Z" - id="path2078" - inkscape:connector-curvature="0" - style="opacity:0.1;fill:#ffffff" /> -<polygon - points="16.343,31.637 16.343,31.584 7.363,26.563 7.363,25.317 18.397,31.505 18.397,31.743 7.363,37.334 7.363,36.062 " - id="polygon2080" - style="fill:#ffffff" - transform="translate(0,-4)" /> -<rect - x="17.621" - y="37.785" - width="11.262" - height="1.576" - id="rect2082" - style="fill:#ffffff" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="42.634"><path d="M0 40.627c0 1.108.898 2.007 2.007 2.007h45.986c1.11 0 2.007-.9 2.007-2.007V8.634H0z" fill="#3999c6"/><path d="M47.993 0H2.007C.898 0 0 .898 0 2.007v7.29h50v-7.29C50 .898 49.1 0 47.993 0z" fill="#a0a1a2"/><g fill="#fff"><path d="M0 9.298h50v3.336H0z" opacity=".15"/><path d="M2.014 0C.906 0 .007.898.007 2.007v38.62a2.01 2.01 0 0 0 2.007 2.007h19.188L43.62 0z" opacity=".1"/><path d="M16.343 27.637v-.053l-8.98-5.02v-1.246l11.034 6.188v.238l-11.034 5.6v-1.272zm1.277 10.148h11.262v1.576H17.62z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/PreviewRight.svg b/src/main/webapp/img/lib/mscae/PreviewRight.svg index 966518c0f53c100738340cb222cf211d01b1f3a2..12883ccc393303184ddba48a18db0ab830bcb14b 100644 --- a/src/main/webapp/img/lib/mscae/PreviewRight.svg +++ b/src/main/webapp/img/lib/mscae/PreviewRight.svg @@ -1,46 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - height="40px" width="40px" viewBox="0 0 40 40" enable-background="new 0 0 40 40" xml:space="preserve"> -<polygon fill="#B8D432" points="40,20.4 40,17.5 22.5,0 19.6,0 1.8,0 40,38.1 "/> -<path fill="#7FBA00" d="M15.1,4.6l-1.3,1.3l-0.6-0.6l3.6-3.6l1.1,1.1c0.4,0.4,0.6,0.8,0.7,1.2c0,0.4-0.1,0.8-0.5,1.2 - c-0.3,0.3-0.8,0.5-1.2,0.5c-0.5,0-0.9-0.2-1.3-0.6L15.1,4.6z M16.9,2.8l-1.3,1.3L16,4.5c0.3,0.3,0.5,0.4,0.8,0.4 - c0.3,0,0.5-0.1,0.7-0.3c0.4-0.4,0.4-0.9-0.1-1.4L16.9,2.8z"/> -<path fill="#7FBA00" d="M19.1,11.2l-0.7-0.7l0.4-1.5c0-0.1,0.1-0.3,0.1-0.4c0-0.1,0-0.2,0-0.3c0-0.1,0-0.2-0.1-0.3 - c0-0.1-0.1-0.2-0.2-0.2l-0.2-0.2L16.9,9l-0.6-0.6l3.6-3.6L21.1,6c0.2,0.2,0.3,0.3,0.4,0.5c0.1,0.2,0.2,0.4,0.2,0.6 - c0,0.2,0,0.4-0.1,0.6c-0.1,0.2-0.2,0.4-0.3,0.5c-0.1,0.1-0.3,0.2-0.4,0.3c-0.1,0.1-0.3,0.1-0.4,0.1c-0.2,0-0.3,0-0.5,0 - c-0.2,0-0.3-0.1-0.5-0.2l0,0c0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3c0,0.1,0,0.2-0.1,0.3L19.1,11.2z M20,5.9 - l-1.2,1.2l0.5,0.5c0.1,0.1,0.2,0.2,0.3,0.2c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.2-0.1,0.3-0.2 - c0.2-0.2,0.3-0.4,0.2-0.6c0-0.2-0.1-0.4-0.3-0.6L20,5.9z"/> -<path fill="#7FBA00" d="M21.6,13.7l-2-2l3.6-3.6l1.9,1.9l-0.5,0.5l-1.3-1.3l-1,1l1.2,1.2L23,12l-1.2-1.2l-1.1,1.1l1.4,1.4L21.6,13.7 - z"/> -<path fill="#7FBA00" d="M28.8,13.7L23.9,16l-0.7-0.7l2.3-4.9l0.7,0.7l-1.8,3.6c-0.1,0.1-0.1,0.2-0.2,0.4l0,0 - c0.1-0.1,0.2-0.2,0.4-0.2l3.6-1.8L28.8,13.7z"/> -<path fill="#7FBA00" d="M26.4,18.5l-0.6-0.6l3.6-3.6l0.6,0.6L26.4,18.5z"/> -<path fill="#7FBA00" d="M29.4,21.5l-2-2l3.6-3.6l1.9,1.9l-0.5,0.5L31.1,17l-1,1l1.2,1.2l-0.5,0.5l-1.2-1.2l-1.1,1.1l1.4,1.4 - L29.4,21.5z"/> -<path fill="#7FBA00" d="M38.3,23.2l-4.6,2.6L33,25.1l1.8-3.2c0.1-0.1,0.2-0.3,0.3-0.4l0,0c-0.1,0.1-0.3,0.2-0.4,0.3l-3.2,1.8 - l-0.7-0.7l2.6-4.6l0.7,0.7l-2,3.3c-0.1,0.1-0.2,0.3-0.3,0.4l0,0c0.1-0.1,0.2-0.2,0.4-0.3l3.4-1.9l0.6,0.6l-2,3.3 - c-0.1,0.1-0.2,0.2-0.3,0.4l0,0c0.1-0.1,0.2-0.2,0.4-0.3l3.3-2L38.3,23.2z"/> -<path opacity="0.35" fill="#1E1E1E" enable-background="new " d="M15.1,4.6l-1.3,1.3l-0.6-0.6l3.6-3.6l1.1,1.1 - c0.4,0.4,0.6,0.8,0.7,1.2c0,0.4-0.1,0.8-0.5,1.2c-0.3,0.3-0.8,0.5-1.2,0.5c-0.5,0-0.9-0.2-1.3-0.6L15.1,4.6z M16.9,2.8l-1.3,1.3 - L16,4.5c0.3,0.3,0.5,0.4,0.8,0.4c0.3,0,0.5-0.1,0.7-0.3c0.4-0.4,0.4-0.9-0.1-1.4L16.9,2.8z"/> -<path opacity="0.35" fill="#1E1E1E" enable-background="new " d="M19.1,11.2l-0.7-0.7l0.4-1.5c0-0.1,0.1-0.3,0.1-0.4 - c0-0.1,0-0.2,0-0.3c0-0.1,0-0.2-0.1-0.3c0-0.1-0.1-0.2-0.2-0.2l-0.2-0.2L16.9,9l-0.6-0.6l3.6-3.6L21.1,6c0.2,0.2,0.3,0.3,0.4,0.5 - c0.1,0.2,0.2,0.4,0.2,0.6c0,0.2,0,0.4-0.1,0.6c-0.1,0.2-0.2,0.4-0.3,0.5c-0.1,0.1-0.3,0.2-0.4,0.3c-0.1,0.1-0.3,0.1-0.4,0.1 - c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3-0.1-0.5-0.2l0,0c0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3c0,0.1,0,0.2-0.1,0.3 - L19.1,11.2z M20,5.9l-1.2,1.2l0.5,0.5c0.1,0.1,0.2,0.2,0.3,0.2c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.2-0.1,0.3-0.2 - c0.2-0.2,0.3-0.4,0.2-0.6c0-0.2-0.1-0.4-0.3-0.6L20,5.9z"/> -<path opacity="0.35" fill="#1E1E1E" enable-background="new " d="M21.6,13.7l-2-2l3.6-3.6l1.9,1.9l-0.5,0.5l-1.3-1.3l-1,1 - l1.2,1.2L23,12l-1.2-1.2l-1.1,1.1l1.4,1.4L21.6,13.7z"/> -<path opacity="0.35" fill="#1E1E1E" enable-background="new " d="M28.8,13.7L23.9,16l-0.7-0.7l2.3-4.9l0.7,0.7l-1.8,3.6 - c-0.1,0.1-0.1,0.2-0.2,0.4l0,0c0.1-0.1,0.2-0.2,0.4-0.2l3.6-1.8L28.8,13.7z"/> -<path opacity="0.35" fill="#1E1E1E" enable-background="new " d="M26.4,18.5l-0.6-0.6l3.6-3.6l0.6,0.6L26.4,18.5z"/> -<path opacity="0.35" fill="#1E1E1E" enable-background="new " d="M29.4,21.5l-2-2l3.6-3.6l1.9,1.9l-0.5,0.5L31.1,17l-1,1l1.2,1.2 - l-0.5,0.5l-1.2-1.2l-1.1,1.1l1.4,1.4L29.4,21.5z"/> -<path opacity="0.35" fill="#1E1E1E" enable-background="new " d="M38.3,23.2l-4.6,2.6L33,25.1l1.8-3.2c0.1-0.1,0.2-0.3,0.3-0.4 - l0,0c-0.1,0.1-0.3,0.2-0.4,0.3l-3.2,1.8l-0.7-0.7l2.6-4.6l0.7,0.7l-2,3.3c-0.1,0.1-0.2,0.3-0.3,0.4l0,0c0.1-0.1,0.2-0.2,0.4-0.3 - l3.4-1.9l0.6,0.6l-2,3.3c-0.1,0.1-0.2,0.2-0.3,0.4l0,0c0.1-0.1,0.2-0.2,0.4-0.3l3.3-2L38.3,23.2z"/> -<polygon opacity="0.6" fill="#1E1E1E" enable-background="new " points="40,38.1 1.8,0 0,0 40,40 "/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="40" width="40"><path fill="#b8d432" d="M40 20.4v-2.9L22.5 0H1.8L40 38.1z"/><g fill="#7fba00"><use xlink:href="#B"/><use xlink:href="#C"/><use xlink:href="#D"/><use xlink:href="#E"/><path d="M26.4 18.5l-.6-.6 3.6-3.6.6.6-3.6 3.6z"/><use xlink:href="#F"/><use xlink:href="#G"/></g><g fill="#1e1e1e"><use xlink:href="#B" opacity=".35"/><use xlink:href="#C" opacity=".35"/><use xlink:href="#D" opacity=".35"/><use xlink:href="#E" opacity=".35"/><path opacity=".35" d="M26.4 18.5l-.6-.6 3.6-3.6.6.6-3.6 3.6z"/><use xlink:href="#F" opacity=".35"/><use xlink:href="#G" opacity=".35"/><path opacity=".6" d="M40 38.1L1.8 0H0l40 40z"/></g><defs ><path id="B" d="M15.1 4.6l-1.3 1.3-.6-.6 3.6-3.6 1.1 1.1c.4.4.6.8.7 1.2a1.58 1.58 0 0 1-.5 1.2c-.3.3-.8.5-1.2.5-.5 0-.9-.2-1.3-.6l-.5-.5zm1.8-1.8l-1.3 1.3.4.4c.3.3.5.4.8.4s.5-.1.7-.3c.4-.4.4-.9-.1-1.4l-.5-.4z"/><path id="C" d="M19.1 11.2l-.7-.7.4-1.5c0-.1.1-.3.1-.4v-.3c0-.1 0-.2-.1-.3 0-.1-.1-.2-.2-.2l-.2-.2L16.9 9l-.6-.6 3.6-3.6L21.1 6c.2.2.3.3.4.5s.2.4.2.6 0 .4-.1.6-.2.4-.3.5-.3.2-.4.3-.3.1-.4.1H20c-.2 0-.3-.1-.5-.2v.9c0 .1 0 .2-.1.3l-.3 1.6zm.9-5.3l-1.2 1.2.5.5c.1.1.2.2.3.2s.2.1.3.1.2 0 .3-.1c.1 0 .2-.1.3-.2.2-.2.3-.4.2-.6 0-.2-.1-.4-.3-.6l-.4-.5z"/><path id="D" d="M21.6 13.7l-2-2 3.6-3.6 1.9 1.9-.5.5-1.3-1.3-1 1 1.2 1.2-.5.6-1.2-1.2-1.1 1.1 1.4 1.4-.5.4z"/><path id="E" d="M28.8 13.7L23.9 16l-.7-.7 2.3-4.9.7.7-1.8 3.6c-.1.1-.1.2-.2.4.1-.1.2-.2.4-.2l3.6-1.8.6.6z"/><path id="F" d="M29.4 21.5l-2-2 3.6-3.6 1.9 1.9-.5.5-1.3-1.3-1 1 1.2 1.2-.5.5-1.2-1.2-1.1 1.1 1.4 1.4-.5.5z"/><path id="G" d="M38.3 23.2l-4.6 2.6-.7-.7 1.8-3.2c.1-.1.2-.3.3-.4-.1.1-.3.2-.4.3l-3.2 1.8-.7-.7 2.6-4.6.7.7-2 3.3c-.1.1-.2.3-.3.4.1-.1.2-.2.4-.3l3.4-1.9.6.6-2 3.3c-.1.1-.2.2-.3.4.1-.1.2-.2.4-.3l3.3-2 .7.7z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Probe.svg b/src/main/webapp/img/lib/mscae/Probe.svg index 8eedcc32195843bfb1c8dac9726047df24d0cb90..961965d1383d37d8fc4db810ec11e28140ea09e3 100644 --- a/src/main/webapp/img/lib/mscae/Probe.svg +++ b/src/main/webapp/img/lib/mscae/Probe.svg @@ -1,71 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="45" - height="50" - viewBox="0 0 45 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Probe.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata2503"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs2501" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview2499" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.020815" - inkscape:cx="16.24408" - inkscape:cy="23.070155" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<polygon - points="19.7,50 30.3,50 27.1,21.8 22.9,21.8 " - id="polygon2490" - style="fill:#59b4d9" - transform="translate(-2.5)" /> -<path - d="M 37.8,22.5 C 37.8,14 31,7.1 22.5,7.1 14,7.1 7.2,14 7.2,22.5 c 0,5.6 3,10.5 7.6,13.2 0.5,-0.8 0.9,-1.6 1.3,-2.3 -3.7,-2.2 -6.2,-6.2 -6.2,-10.9 0,-7 5.7,-12.7 12.7,-12.7 7,0 12.7,5.7 12.7,12.7 0,4.6 -2.5,8.7 -6.2,10.9 0.4,0.7 0.9,1.5 1.3,2.3 4.4,-2.7 7.4,-7.6 7.4,-13.2" - id="path2492" - inkscape:connector-curvature="0" - style="opacity:0.5;fill:#3e3e3e" /> -<path - d="m 11.2,41.9 c 0.4,-0.8 0.9,-1.6 1.3,-2.4 C 6.6,36.1 2.7,29.7 2.7,22.4 2.7,11.6 11.6,2.7 22.5,2.7 c 10.9,0 19.8,8.9 19.8,19.8 0,7.3 -4,13.6 -9.8,17.1 0.4,0.8 0.9,1.6 1.3,2.4 C 40.5,38.1 45,30.9 45,22.6 45,10.1 34.9,0 22.5,0 10.1,0 0,10.1 0,22.5 0,30.7 4.6,38 11.2,41.9" - id="path2494" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#3e3e3e" /> -<circle - cx="22.5" - cy="22.6" - r="6.8000002" - id="circle2496" - style="fill:#0072c6" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="45" height="50"><path d="M17.2 50h10.6l-3.2-28.2h-4.2z" fill="#59b4d9"/><g fill="#3e3e3e"><path d="M37.8 22.5C37.8 14 31 7.1 22.5 7.1S7.2 14 7.2 22.5c0 5.6 3 10.5 7.6 13.2.5-.8.9-1.6 1.3-2.3-3.7-2.2-6.2-6.2-6.2-10.9 0-7 5.7-12.7 12.7-12.7s12.7 5.7 12.7 12.7a12.73 12.73 0 0 1-6.2 10.9c.4.7.9 1.5 1.3 2.3 4.4-2.7 7.4-7.6 7.4-13.2" opacity=".5"/><path d="M11.2 41.9l1.3-2.4c-5.9-3.4-9.8-9.8-9.8-17.1 0-10.8 8.9-19.7 19.8-19.7s19.8 8.9 19.8 19.8c0 7.3-4 13.6-9.8 17.1.4.8.9 1.6 1.3 2.4C40.5 38.1 45 30.9 45 22.6 45 10.1 34.9 0 22.5 0S0 10.1 0 22.5C0 30.7 4.6 38 11.2 41.9" opacity=".2"/></g><circle cx="22.5" cy="22.6" r="6.8" fill="#0072c6"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/ProcessExplorer.svg b/src/main/webapp/img/lib/mscae/ProcessExplorer.svg index ee52fe7d2d400891d8465cbe54a4041a4870b4d9..f6f51d29d7fbcd89fc92f8a9373e8b2e2fae2dd5 100644 --- a/src/main/webapp/img/lib/mscae/ProcessExplorer.svg +++ b/src/main/webapp/img/lib/mscae/ProcessExplorer.svg @@ -1,101 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="46" - width="50" - viewBox="0 0 50 46" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="ProcessExplorer.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata2592"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs2590" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview2588" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.020815" - inkscape:cx="26.388834" - inkscape:cy="21.854821" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="M 32.4,36.4 H 31.2 19.4 18.8 C 20.4,42.1 18.2,43 8.6,43 v 3 h 12.2 8.9 11.5 v -3 c -9.5,0 -10.4,-0.8 -8.8,-6.6" - id="path2567" - inkscape:connector-curvature="0" - style="fill:#7a7a7a" /> -<path - d="M 47,0 H 2.7 C 1.2,0 0,1.3 0,2.8 v 30.8 c 0,1.5 1.2,2.8 2.7,2.8 H 47 c 1.5,0 3,-1.3 3,-2.8 V 2.8 C 50,1.3 48.5,0 47,0 M 46.2,3.8 V 32.5 H 3.8 V 3.8 L 46.2,3.7 Z" - id="path2569" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<polygon - points="3.8,34.6 3.8,5.8 46.2,5.8 46.1,5.8 46.1,34.6 " - id="polygon2571" - style="fill:#59b4d9" - transform="translate(0,-2)" /> -<path - d="m 3.8,32.6 v 0 V 3.8 L 42.5,3.7 47,0 c 0,0 0,0 0,0 H 2.7 C 1.2,0 0,1.3 0,2.8 v 30.8 c 0,1.5 1.2,2.8 2.7,2.8 h 1.1 l 4.6,-3.8 z" - id="path2573" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#ffffff" /> -<polygon - points="3.8,5.8 42.5,5.8 42.5,5.8 3.8,5.8 3.8,34.6 " - id="polygon2575" - style="fill:#59b4d9" - transform="translate(0,-2)" /> -<rect - x="8.6999998" - y="43" - width="32.700001" - height="3" - id="rect2577" - style="fill:#a0a1a2" /> -<path - d="m 25.5,2.1 c 0,0.4 -0.3,0.7 -0.7,0.7 -0.4,0 -0.7,-0.3 -0.7,-0.7 0,-0.4 0.3,-0.7 0.7,-0.7 0.4,0 0.7,0.3 0.7,0.7" - id="path2579" - inkscape:connector-curvature="0" - style="fill:#b8d432" /> -<polygon - points="16.2,24.9 21.5,18.8 25.1,22.2 31.3,10.6 35,27.1 38.6,18.9 46.2,21.9 46.2,34.6 3.8,34.6 3.8,20.7 12.5,18.8 " - id="polygon2581" - style="fill:#0072c6" - transform="translate(0,-2)" /> -<g - id="g2585" - transform="translate(0,-2)"> - <path - d="M 38.1,17.4 35.3,23.7 31.7,7.5 24.9,20.3 21.4,17.1 16.3,23 13,17.4 l -9.2,2 v 2 c 0.1,0 0.1,0 0.2,0 l 8,-1.8 4,6.7 5.6,-6.4 3.8,3.6 5.5,-10.4 3.7,16.8 4.5,-9.9 6.7,2.6 c 0.1,0 0.2,0 0.3,0 v -2.1 z" - id="path2583" - inkscape:connector-curvature="0" - style="fill:#b8d432" /> -</g> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" height="46" width="50"><path d="M32.4 36.4H18.8c1.6 5.7-.6 6.6-10.2 6.6v3h32.6v-3c-9.5 0-10.4-.8-8.8-6.6" fill="#7a7a7a"/><path d="M47 0H2.7C1.2 0 0 1.3 0 2.8v30.8c0 1.5 1.2 2.8 2.7 2.8H47c1.5 0 3-1.3 3-2.8V2.8C50 1.3 48.5 0 47 0m-.8 3.8v28.7H3.8V3.8l42.4-.1z" fill="#a0a1a2"/><path d="M3.8 32.6V3.8h42.3v28.8z" fill="#59b4d9"/><path d="M3.8 32.6V3.8l38.7-.1L47 0H2.7C1.2 0 0 1.3 0 2.8v30.8c0 1.5 1.2 2.8 2.7 2.8h1.1l4.6-3.8z" opacity=".2" fill="#fff"/><path d="M3.8 3.8v28.8z" fill="#59b4d9"/><path d="M8.7 43h32.7v3H8.7z" fill="#a0a1a2"/><path d="M25.5 2.1a.68.68 0 0 1-.7.7.68.68 0 0 1-.7-.7.68.68 0 0 1 .7-.7.68.68 0 0 1 .7.7" fill="#b8d432"/><path d="M16.2 22.9l5.3-6.1 3.6 3.4 6.2-11.6L35 25.1l3.6-8.2 7.6 3v12.7H3.8V18.7l8.7-1.9z" fill="#0072c6"/><path d="M38.1 15.4l-2.8 6.3-3.6-16.2-6.8 12.8-3.5-3.2-5.1 5.9-3.3-5.6-9.2 2v2H4l8-1.8 4 6.7 5.6-6.4 3.8 3.6 5.5-10.4 3.7 16.8 4.5-9.9 6.7 2.6h.3v-2.1z" fill="#b8d432"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/ProductionReadyDB.svg b/src/main/webapp/img/lib/mscae/ProductionReadyDB.svg index 2c4cdb9a57b282e321dcb54730579eee39ee4811..fb9a4344068d5c506f366594bae3a2072c830907 100644 --- a/src/main/webapp/img/lib/mscae/ProductionReadyDB.svg +++ b/src/main/webapp/img/lib/mscae/ProductionReadyDB.svg @@ -1,80 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="37.722" - height="50" - viewBox="0 0 37.722 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="ProductionReadyDB.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata2665"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs2663" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview2661" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="18.861" - inkscape:cy="25" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="M 0,6.831 V 43.169 C 0,46.941 8.445,50 18.861,50 V 6.831 Z" - id="path2648" - inkscape:connector-curvature="0" - style="fill:#3999c6" /> -<path - d="m 18.603,49.999 h 0.258 c 10.416,0 18.861,-3.057 18.861,-6.831 V 6.831 H 18.603 Z" - id="path2650" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="m 37.722,6.831 c 0,3.773 -8.445,6.831 -18.861,6.831 C 8.445,13.662 0,10.603 0,6.831 0,3.058 8.445,0 18.861,0 29.277,0 37.722,3.058 37.722,6.831" - id="path2652" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -<path - d="m 33.866,6.438 c 0,2.491 -6.718,4.507 -15.005,4.507 -8.287,0 -15.006,-2.017 -15.006,-4.507 0,-2.49 6.719,-4.507 15.006,-4.507 8.287,0 15.005,2.017 15.005,4.507" - id="path2654" - inkscape:connector-curvature="0" - style="fill:#7fba00" /> -<path - d="m 30.722,9.191 c 1.964,-0.762 3.145,-1.716 3.145,-2.752 0,-2.491 -6.718,-4.508 -15.006,-4.508 -8.287,0 -15.005,2.018 -15.005,4.508 0,1.036 1.18,1.99 3.145,2.752 2.743,-1.065 7.03,-1.752 11.86,-1.752 4.831,0 9.116,0.687 11.861,1.752" - id="path2656" - inkscape:connector-curvature="0" - style="fill:#b8d432" /> -<polygon - points="17.325,26.483 17.325,26.483 17.325,26.483 23.112,32.271 34.689,20.694 34.689,20.694 34.689,20.694 37.579,23.589 37.579,23.589 37.579,23.589 23.112,38.06 14.435,29.376 " - id="polygon2658" - style="fill:#ffffff" - transform="translate(-6.139)" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="37.722" height="50"><path d="M0 6.83V43.17C0 46.94 8.445 50 18.86 50V6.83z" fill="#3999c6"/><path d="M18.603 50h.258c10.416 0 18.86-3.057 18.86-6.83V6.83h-19.12z" fill="#59b4d9"/><path d="M37.722 6.83c0 3.773-8.445 6.83-18.86 6.83S0 10.603 0 6.83 8.445 0 18.86 0s18.86 3.058 18.86 6.83" fill="#fff"/><path d="M33.866 6.438c0 2.49-6.718 4.507-15.005 4.507S3.855 8.928 3.855 6.438 10.574 1.93 18.86 1.93s15.005 2.017 15.005 4.507" fill="#7fba00"/><path d="M30.722 9.19c1.964-.762 3.145-1.716 3.145-2.752 0-2.49-6.718-4.508-15.006-4.508S3.856 3.95 3.856 6.44c0 1.036 1.18 2 3.145 2.752C9.744 8.126 14.03 7.44 18.86 7.44s9.116.687 11.86 1.752" fill="#b8d432"/><path d="M11.186 26.483l5.787 5.788L28.55 20.694l2.9 2.895-14.467 14.47-8.677-8.684z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Publish.svg b/src/main/webapp/img/lib/mscae/Publish.svg index 77007670ef2c47ea53d3635f5ac0cbaba8699ff8..04de5fff80434847c4c0e0aa268b78757fdad6be 100644 --- a/src/main/webapp/img/lib/mscae/Publish.svg +++ b/src/main/webapp/img/lib/mscae/Publish.svg @@ -1,60 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="45.137001" - viewBox="0.5 0.5 50 45.137001" - enable-background="new 0.5 0.5 50 50" - xml:space="preserve" - sodipodi:docname="Publish.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata2712"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs2710" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview2708" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="25" - inkscape:cy="22.137" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 45.636,23.068 c 0,-0.326 -0.007,-0.65 -0.021,-0.973 h -4.288 c 0.017,0.322 0.029,0.646 0.029,0.973 0,0.458 -0.021,0.912 -0.054,1.362 -0.283,3.821 -1.744,7.319 -4.023,10.131 -1.325,-0.697 -2.826,-1.296 -4.46,-1.78 0.739,-2.513 1.203,-5.342 1.311,-8.351 0.016,-0.451 0.027,-0.904 0.027,-1.362 0,-0.326 -0.005,-0.65 -0.013,-0.973 -0.077,-3.011 -0.507,-5.85 -1.217,-8.381 1.682,-0.504 3.22,-1.132 4.57,-1.863 1.364,-0.739 2.534,-1.582 3.471,-2.505 C 40.491,8.725 39.981,8.131 39.444,7.563 35.328,3.219 29.511,0.5 23.068,0.5 16.625,0.5 10.808,3.219 6.692,7.563 6.154,8.131 5.645,8.725 5.168,9.346 2.244,13.152 0.5,17.909 0.5,23.068 c 0,5.261 1.814,10.103 4.843,13.945 0.483,0.612 0.995,1.199 1.537,1.758 4.104,4.23 9.842,6.866 16.187,6.866 6.345,0 12.084,-2.637 16.188,-6.867 0.542,-0.559 1.055,-1.145 1.537,-1.758 2.766,-3.508 4.514,-7.85 4.798,-12.583 0.028,-0.45 0.046,-0.903 0.046,-1.361 z M 10.507,36.341 c 1.094,-0.53 2.29,-0.983 3.563,-1.355 0.838,2.143 1.893,3.98 3.11,5.389 -2.515,-0.858 -4.784,-2.245 -6.673,-4.034 z M 4.834,24.43 h 7.172 c 0.108,3.01 0.571,5.838 1.311,8.351 -1.633,0.483 -3.134,1.082 -4.46,1.78 C 6.578,31.749 5.117,28.251 4.834,24.43 Z M 8.639,11.852 c 1.35,0.731 2.888,1.359 4.57,1.863 -0.71,2.531 -1.14,5.37 -1.217,8.381 H 4.809 c 0.203,-3.849 1.602,-7.384 3.83,-10.244 z m 8.543,-6.094 c -1.284,1.485 -2.39,3.444 -3.25,5.74 -1.326,-0.396 -2.567,-0.879 -3.694,-1.447 1.942,-1.914 4.31,-3.394 6.944,-4.293 z m 4.524,6.97 c -1.91,-0.072 -3.76,-0.293 -5.5,-0.656 0.32,-0.824 0.676,-1.607 1.072,-2.335 1.278,-2.354 2.839,-3.923 4.428,-4.506 z m 0,9.367 h -7.38 c 0.074,-2.77 0.466,-5.417 1.14,-7.801 1.95,0.425 4.048,0.69 6.24,0.769 z m 0,9.366 c -2.153,0.077 -4.214,0.335 -6.133,0.747 C 14.868,29.841 14.446,27.2 14.342,24.43 h 7.364 z m 0,9.444 c -1.589,-0.583 -3.15,-2.151 -4.428,-4.506 -0.338,-0.622 -0.648,-1.283 -0.93,-1.976 1.698,-0.346 3.5,-0.556 5.358,-0.627 z m 2.335,-7.123 c 1.997,0.053 3.931,0.271 5.747,0.641 -0.283,0.693 -0.593,1.354 -0.93,1.976 -1.382,2.546 -3.095,4.174 -4.817,4.628 z M 28.858,9.737 c 0.395,0.728 0.752,1.511 1.072,2.335 -1.858,0.388 -3.84,0.616 -5.889,0.671 V 5.109 c 1.721,0.454 3.434,2.082 4.817,4.628 z m 3.345,1.761 c -0.859,-2.296 -1.965,-4.254 -3.25,-5.74 2.634,0.899 5.002,2.379 6.944,4.293 -1.127,0.568 -2.368,1.051 -3.694,1.447 z M 31.81,22.095 h -7.769 v -7.017 c 2.334,-0.06 4.564,-0.334 6.629,-0.784 0.673,2.384 1.066,5.032 1.14,7.801 z m -0.016,2.335 c -0.104,2.771 -0.526,5.412 -1.231,7.778 -2.035,-0.437 -4.228,-0.703 -6.522,-0.761 V 24.43 Z m 3.835,11.911 c -1.891,1.79 -4.162,3.181 -6.677,4.039 1.219,-1.41 2.275,-3.249 3.114,-5.395 1.274,0.372 2.47,0.825 3.563,1.356 z" - id="path2703" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<polygon - points="36.785,26.43 50.5,26.43 43.642,14.552 " - id="polygon2705" - style="fill:#59b4d9" - transform="translate(0,-2)" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="45.137" viewBox="0.5 0.5 50 45.137" fill="#59b4d9"><path d="M45.636 23.068l-.02-.973h-4.288l.03.973-.054 1.362c-.283 3.82-1.744 7.32-4.023 10.13-1.325-.697-2.826-1.296-4.46-1.78.74-2.513 1.203-5.342 1.31-8.35a38.34 38.34 0 0 0 .027-1.362l-.013-.973c-.077-3.01-.507-5.85-1.217-8.38 1.682-.504 3.22-1.132 4.57-1.863 1.364-.74 2.534-1.582 3.47-2.505-.477-.62-.987-1.215-1.524-1.783C35.328 3.22 29.51.5 23.068.5S10.808 3.22 6.692 7.563a22.71 22.71 0 0 0-1.524 1.783A22.45 22.45 0 0 0 .5 23.068a22.45 22.45 0 0 0 4.843 13.945c.483.612.995 1.2 1.537 1.758 4.104 4.23 9.842 6.866 16.187 6.866S35.15 43 39.255 38.77c.542-.56 1.055-1.145 1.537-1.758a22.45 22.45 0 0 0 4.798-12.583c.028-.45.046-.903.046-1.36zM10.507 36.34a22.95 22.95 0 0 1 3.563-1.355c.838 2.143 1.893 3.98 3.1 5.39-2.515-.858-4.784-2.245-6.673-4.034zM4.834 24.43h7.172c.108 3 .57 5.838 1.31 8.35-1.633.483-3.134 1.082-4.46 1.78-2.28-2.812-3.74-6.3-4.023-10.13zM8.64 11.852c1.35.73 2.888 1.36 4.57 1.863-.7 2.53-1.14 5.37-1.217 8.38H4.81a18.19 18.19 0 0 1 3.83-10.244zm8.543-6.094c-1.284 1.485-2.4 3.444-3.25 5.74-1.326-.396-2.567-.88-3.694-1.447 1.942-1.914 4.3-3.394 6.944-4.293zm4.524 6.97c-1.9-.072-3.76-.293-5.5-.656a20.18 20.18 0 0 1 1.072-2.335c1.278-2.354 2.84-3.923 4.428-4.506zm0 9.367h-7.38c.074-2.77.466-5.417 1.14-7.8 1.95.425 4.048.7 6.24.77zm0 9.366a35.31 35.31 0 0 0-6.133.747c-.705-2.367-1.127-5.008-1.23-7.778h7.364zm0 9.444c-1.59-.583-3.15-2.15-4.428-4.506-.338-.622-.648-1.283-.93-1.976 1.698-.346 3.5-.556 5.358-.627zm2.335-7.123c1.997.053 3.93.27 5.747.64a20.11 20.11 0 0 1-.93 1.976c-1.382 2.546-3.095 4.174-4.817 4.628zm4.817-24.045a20.35 20.35 0 0 1 1.072 2.335c-1.858.388-3.84.616-5.89.67V5.11c1.72.454 3.434 2.082 4.817 4.628zm3.345 1.76c-.86-2.296-1.965-4.254-3.25-5.74 2.634.9 5.002 2.38 6.944 4.293-1.127.568-2.368 1.05-3.694 1.447zM31.8 22.095h-7.77v-7.017c2.334-.06 4.564-.334 6.63-.784.673 2.384 1.066 5.032 1.14 7.8zm-.016 2.335c-.104 2.77-.526 5.412-1.23 7.778-2.035-.437-4.228-.703-6.522-.76V24.43zm3.835 11.91c-1.89 1.8-4.162 3.18-6.677 4.04 1.22-1.4 2.275-3.25 3.114-5.395 1.274.372 2.47.825 3.563 1.356z"/><path d="M36.785 24.43H50.5l-6.858-11.878z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/PullRequest.svg b/src/main/webapp/img/lib/mscae/PullRequest.svg index 08552e171c110524c51f220f221205d36f21ec62..a484f52af75212cc2dc2f2cf84cdc3663e09c1a9 100644 --- a/src/main/webapp/img/lib/mscae/PullRequest.svg +++ b/src/main/webapp/img/lib/mscae/PullRequest.svg @@ -1,60 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="50" - width="41.400002" - viewBox="0 0 41.400002 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="PullRequest.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata2856"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs2854" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview2852" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="21" - inkscape:cy="25" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="M 4.8,33.6 C 2.2,33.8 0,36 0,38.8 v 6 C 0,47.7 2.4,50 5.2,50 h 6 c 2.9,0 5.2,-2.4 5.2,-5.2 v -6 c 0,-2.6 -2.1,-5 -4.8,-5.2 V 16.4 c 2.6,-0.2 4.8,-2.4 4.8,-5.2 v -6 C 16.4,2.3 14,0 11.2,0 h -6 C 2.4,0 0.1,2.4 0.1,5.2 v 6 c 0,2.6 2.1,5 4.8,5.2 v 0.6 0 16.1 0 0.5 M 12,11.2 c 0,0.2 -0.2,0.5 -0.5,0.5 h -6 C 5.3,11.7 5,11.5 5,11.2 v -6 C 5,5 5.2,4.7 5.5,4.7 h 6 C 11.7,4.8 12,5 12,5.2 v 6 M 4.8,39.3 c 0,-0.2 0.2,-0.5 0.5,-0.5 h 6 c 0.2,0 0.5,0.2 0.5,0.5 v 6 c 0,0.2 -0.2,0.5 -0.5,0.5 h -6 c -0.2,0 -0.5,-0.2 -0.5,-0.5 z" - id="path2847" - inkscape:connector-curvature="0" - style="clip-rule:evenodd;fill:#194f7a;fill-rule:evenodd" /> -<path - d="M 36.7,33.6 H 36.6 V 23.3 c 0,-1 -0.5,-1.9 -1,-2.6 l -4,-3.9 4.4,-4.4 H 21.5 v 14.5 l 5.1,-5.1 2.8,2.8 v 9.1 C 27,34 25,36.1 25,38.8 v 6 c 0,2.9 2.4,5.2 5.2,5.2 h 6 c 2.9,0 5.2,-2.4 5.2,-5.2 v -6 c 0,-2.6 -2.1,-5 -4.7,-5.2 z m 0,11.6 c 0,0.2 -0.2,0.5 -0.5,0.5 h -6 c -0.2,0 -0.5,-0.2 -0.5,-0.5 v -6 c 0,-0.2 0.2,-0.5 0.5,-0.5 h 6 c 0.2,0 0.5,0.2 0.5,0.5 z" - id="path2849" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" height="50" width="41.4"><path d="M4.8 33.6C2.2 33.8 0 36 0 38.8v6C0 47.7 2.4 50 5.2 50h6c2.9 0 5.2-2.4 5.2-5.2v-6c0-2.6-2.1-5-4.8-5.2V16.4c2.6-.2 4.8-2.4 4.8-5.2v-6C16.4 2.3 14 0 11.2 0h-6C2.4 0 .1 2.4.1 5.2v6c0 2.6 2.1 5 4.8 5.2v17.2M12 11.2c0 .2-.2.5-.5.5h-6c-.2 0-.5-.2-.5-.5v-6c0-.2.2-.5.5-.5h6c.2.1.5.3.5.5v6M4.8 39.3c0-.2.2-.5.5-.5h6c.2 0 .5.2.5.5v6c0 .2-.2.5-.5.5h-6c-.2 0-.5-.2-.5-.5z" fill="#194f7a" fill-rule="evenodd"/><path d="M36.7 33.6h-.1V23.3c0-1-.5-1.9-1-2.6l-4-3.9 4.4-4.4H21.5v14.5l5.1-5.1 2.8 2.8v9.1C27 34 25 36.1 25 38.8v6c0 2.9 2.4 5.2 5.2 5.2h6c2.9 0 5.2-2.4 5.2-5.2v-6c0-2.6-2.1-5-4.7-5.2zm0 11.6c0 .2-.2.5-.5.5h-6c-.2 0-.5-.2-.5-.5v-6c0-.2.2-.5.5-.5h6c.2 0 .5.2.5.5z" fill="#59b4d9"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/QSDiagnostics.svg b/src/main/webapp/img/lib/mscae/QSDiagnostics.svg index 81e00f685d79e87a1f9785c8564ebc5c3a459418..d4a93598580ecb7ea06020a24376fa52a50b9e49 100644 --- a/src/main/webapp/img/lib/mscae/QSDiagnostics.svg +++ b/src/main/webapp/img/lib/mscae/QSDiagnostics.svg @@ -1,55 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="39.5" - width="49.900002" - viewBox="0 0 49.900002 39.5" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="QSDiagnostics.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata2933"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs2931" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview2929" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.020815" - inkscape:cx="13.426386" - inkscape:cy="14.830452" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 44.7,34.2 v -9.7 c -2.1,1.2 -5,2.3 -5.2,2.3 -0.9,0 -2.3,-1.8 -3.5,-3 -1.8,1.8 -5.2,5.4 -5.8,5.4 -1.5,0 -4.1,-7.8 -4.9,-9.6 -1.7,1.5 -4.9,4.8 -5.5,4.8 -0.6,0 -1.2,-0.8 -2.5,-1.6 V 34.3 H 44.7 Z M 44.7,22 V 12 H 17.3 v 8.2 c 1,0.4 1.2,1.2 2.2,1.8 2,-2.1 5.2,-5.7 6.1,-5.7 1.2,0 4.4,8.7 4.9,9.6 1.7,-1.5 4.9,-4.8 5.5,-4.8 0.9,0 2.6,2.1 3.8,3.3 z M 5.5,9.2 H 44.8 V 5.3 H 5.5 Z m 8.9,25 V 12 h -9 v 22.2 z m -2.5,-5.8 c 0,1.1 -0.9,2 -2,2 -1.1,0 -1.9,-0.9 -1.9,-2 0,-1.1 0.9,-2 1.9,-2 1,0 2,0.9 2,2 z m 0,-5.4 c 0,1.1 -0.9,2 -2,2 C 8.8,25 8,24.1 8,23 c 0,-1.1 0.9,-2 1.9,-2 1,0 2,0.8 2,2 z m 0,-5.6 c 0,1.1 -0.9,2 -2,2 -1.1,0 -1.9,-0.9 -1.9,-2 0,-1.1 0.9,-2 1.9,-2 1,0 2,0.9 2,2 z M 2.3,0 C 1.2,0 0,1.2 0,2.4 v 34.7 c 0,1.2 1.2,2.4 2.3,2.4 h 45.3 c 1.2,0 2.3,-1.2 2.3,-2.4 V 2.4 C 49.9,1.2 48.7,0 47.6,0 Z m 0,2.4 H 47.6 V 9.6 37.1 H 3.5 2.3 Z" - id="path2926" - inkscape:connector-curvature="0" - style="clip-rule:evenodd;fill:#59b4d9;fill-rule:evenodd" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" height="39.5" width="49.9"><path d="M44.7 34.2v-9.7c-2.1 1.2-5 2.3-5.2 2.3-.9 0-2.3-1.8-3.5-3-1.8 1.8-5.2 5.4-5.8 5.4-1.5 0-4.1-7.8-4.9-9.6-1.7 1.5-4.9 4.8-5.5 4.8s-1.2-.8-2.5-1.6v11.5h27.4zm0-12.2V12H17.3v8.2c1 .4 1.2 1.2 2.2 1.8 2-2.1 5.2-5.7 6.1-5.7 1.2 0 4.4 8.7 4.9 9.6 1.7-1.5 4.9-4.8 5.5-4.8.9 0 2.6 2.1 3.8 3.3zM5.5 9.2h39.3V5.3H5.5zm8.9 25V12h-9v22.2zm-2.5-5.8c0 1.1-.9 2-2 2s-1.9-.9-1.9-2 .9-2 1.9-2 2 .9 2 2zm0-5.4c0 1.1-.9 2-2 2S8 24.1 8 23s.9-2 1.9-2 2 .8 2 2zm0-5.6c0 1.1-.9 2-2 2s-1.9-.9-1.9-2 .9-2 1.9-2 2 .9 2 2zM2.3 0C1.2 0 0 1.2 0 2.4v34.7c0 1.2 1.2 2.4 2.3 2.4h45.3c1.2 0 2.3-1.2 2.3-2.4V2.4c0-1.2-1.2-2.4-2.3-2.4zm0 2.4h45.3v34.7H2.3z" fill="#59b4d9" fill-rule="evenodd"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/QSFile.svg b/src/main/webapp/img/lib/mscae/QSFile.svg index 937125e5038cb9b33cb71647d99819bf92597823..973c5b50d29e90ec9c00e4381545984c6bd4a260 100644 --- a/src/main/webapp/img/lib/mscae/QSFile.svg +++ b/src/main/webapp/img/lib/mscae/QSFile.svg @@ -1,75 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="49.799999" - width="44.400002" - viewBox="0 0 44.400002 49.799999" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="QSFile.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata3007"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs3005" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview3003" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="22.2" - inkscape:cy="24.8" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 27.6,39 c 0,0.8 -0.6,1.4 -1.4,1.4 H 10.4 C 9.6,40.4 9,39.8 9,39 9,38.2 9.6,37.6 10.4,37.6 h 15.8 c 0.8,0 1.4,0.6 1.4,1.4" - id="path2992" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="m 35.3,22.9 c 0,0.8 -0.6,1.4 -1.4,1.4 H 10.4 C 9.6,24.3 9,23.7 9,22.9 9,22.1 9.6,21.5 10.4,21.5 H 34 c 0.7,0.1 1.3,0.7 1.3,1.4" - id="path2994" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="m 35.3,31 c 0,0.8 -0.6,1.4 -1.4,1.4 H 10.4 C 9.6,32.4 9,31.8 9,31 9,30.3 9.6,29.6 10.4,29.6 H 34 c 0.7,0 1.3,0.6 1.3,1.4" - id="path2996" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="M 3.4,46.4 V 3.5 H 32.1 L 28.6,0 H 2.3 C 1.2,0 0,1.2 0,2.4 v 45 c 0,1.2 1.2,2.4 2.3,2.4 H 42 c 1.2,0 2.3,-1.2 2.3,-2.4 V 15.8 l -3.4,-3.4 v 34 z" - id="path2998" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="m 28.7,0.1 v 13.3 c 0,1.2 1.2,2.4 2.3,2.4 h 13.4 z" - id="path3000" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" height="49.8" width="44.4" fill="#59b4d9"><path d="M27.6 39c0 .8-.6 1.4-1.4 1.4H10.4c-.8 0-1.4-.6-1.4-1.4s.6-1.4 1.4-1.4h15.8c.8 0 1.4.6 1.4 1.4m7.7-16.1c0 .8-.6 1.4-1.4 1.4H10.4c-.8 0-1.4-.6-1.4-1.4s.6-1.4 1.4-1.4H34c.7.1 1.3.7 1.3 1.4"/><path d="M35.3 31c0 .8-.6 1.4-1.4 1.4H10.4c-.8 0-1.4-.6-1.4-1.4 0-.7.6-1.4 1.4-1.4H34c.7 0 1.3.6 1.3 1.4M3.4 46.4V3.5h28.7L28.6 0H2.3C1.2 0 0 1.2 0 2.4v45c0 1.2 1.2 2.4 2.3 2.4H42c1.2 0 2.3-1.2 2.3-2.4V15.8l-3.4-3.4v34z"/><path d="M28.7.1v13.3c0 1.2 1.2 2.4 2.3 2.4h13.4z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/QSMail.svg b/src/main/webapp/img/lib/mscae/QSMail.svg index 9d4263e8a00e0876a2c12868472d9e48fd54b5b2..dc1a4a14369827b3d1cbe45eca78a0148e4101b9 100644 --- a/src/main/webapp/img/lib/mscae/QSMail.svg +++ b/src/main/webapp/img/lib/mscae/QSMail.svg @@ -1,64 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="38" - width="50" - viewBox="0 0 50 38" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="QSMail.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata3061"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs3059" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview3057" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="25" - inkscape:cy="19" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<g - id="g3052" - transform="translate(0,-6)"> - <path - d="M 24.6,30.2 C 24,30.2 23.5,30 23,29.7 L 1,12.4 l 3.1,-3 20.5,16 21.3,-16.5 3.1,3 -22.8,17.7 c -0.5,0.4 -1,0.6 -1.6,0.6 z" - id="path3050" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -</g> -<path - d="M 4.4,34.3 H 46.1 L 46,4 H 3.8 L 3.9,33.7 Z M 48,38 H 2.6 C 1.1,38 0,36.9 0,35.5 V 2.6 C 0,1.1 1.1,0 2.6,0 H 47.5 C 48.9,0 50,1.1 50,2.6 v 32.9 c 0,1.4 -1.1,2.5 -2.6,2.5 z" - id="path3054" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" height="38" width="50" fill="#59b4d9"><path d="M24.6 24.2c-.6 0-1.1-.2-1.6-.5L1 6.4l3.1-3 20.5 16L45.9 2.9l3.1 3-22.8 17.7c-.5.4-1 .6-1.6.6z"/><path d="M4.4 34.3h41.7L46 4H3.8l.1 29.7zM48 38H2.6C1.1 38 0 36.9 0 35.5V2.6C0 1.1 1.1 0 2.6 0h44.9C48.9 0 50 1.1 50 2.6v32.9c0 1.4-1.1 2.5-2.6 2.5z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/QSWarning.svg b/src/main/webapp/img/lib/mscae/QSWarning.svg index 80176fb44d8e1bce40c56c710e0dca9de970f212..0f73a14e7adb47bf6290ff74533e926d5d05bebc 100644 --- a/src/main/webapp/img/lib/mscae/QSWarning.svg +++ b/src/main/webapp/img/lib/mscae/QSWarning.svg @@ -1,55 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="40.950001" - width="45.955994" - viewBox="0 0 45.955994 40.950001" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="QSWarning.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata3104"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs3102" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview3100" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.020815" - inkscape:cx="13.759285" - inkscape:cy="13.528928" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 45.369446,35.15 -9.6,-16.5 -9.8,-16.7 c -1.5,-2.6 -4.6,-2.6 -6.1,0 l -9.6,16.1 -9.70000028,17.1 c -1.5,2.6 0.1,5.8 3.19999998,5.8 h 19.2000003 19.3 c 3.1,-0.1 4.6,-3.2 3.1,-5.8 z m -22.7,-22.7 h 0.9 2.4 l -0.8,14.6 h -1.5 -0.9 -1.5 l -0.8,-14.6 z m 0.3,22.3 c -1.7,0 -3.1,-1.4 -3.1,-3.1 0,-1.7 1.4,-3.1 3.1,-3.1 1.7,0 3.1,1.4 3.1,3.1 0,1.7 -1.4,3.1 -3.1,3.1 z" - id="path3097" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" height="40.95" width="45.956"><path d="M45.37 35.15l-9.6-16.5-9.8-16.7c-1.5-2.6-4.6-2.6-6.1 0l-9.6 16.1-9.7 17.1c-1.5 2.6.1 5.8 3.2 5.8h38.5c3.1-.1 4.6-3.2 3.1-5.8zm-22.7-22.7h3.3l-.8 14.6h-3.9l-.8-14.6zm.3 22.3a3.12 3.12 0 0 1-3.1-3.1 3.12 3.12 0 0 1 3.1-3.1 3.12 3.12 0 0 1 3.1 3.1 3.12 3.12 0 0 1-3.1 3.1z" fill="#59b4d9"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Queued.svg b/src/main/webapp/img/lib/mscae/Queued.svg index 8a7590492d15722373031eba60dba2858b2400e1..225e484b826c7f48d45b5326fa3f7f84261353ca 100644 --- a/src/main/webapp/img/lib/mscae/Queued.svg +++ b/src/main/webapp/img/lib/mscae/Queued.svg @@ -1,71 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="16" - height="12" - viewBox="0 0 16 12" - enable-background="new 0 0 16 16" - xml:space="preserve" - sodipodi:docname="Queued.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata3156"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs3154" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview3152" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="37.565048" - inkscape:cx="6.8070649" - inkscape:cy="6.1959185" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<rect - y="0" - width="4" - height="12" - id="rect3145" - x="0" - style="fill:#7a7a7a" /> -<rect - x="6" - y="0" - width="4" - height="12" - id="rect3147" - style="fill:#7a7a7a" /> -<rect - x="12" - y="0" - width="4" - height="12" - id="rect3149" - style="fill:#7a7a7a" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="16" height="12" fill="#7a7a7a"><path d="M0 0h4v12H0zm6 0h4v12H6zm6 0h4v12h-4z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Queues_Storage.svg b/src/main/webapp/img/lib/mscae/Queues_Storage.svg new file mode 100644 index 0000000000000000000000000000000000000000..d160233114c92ac7cb9e9af3754bcaedaec240ad --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Queues_Storage.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="49" height="43"><path d="M44 43H6c-3.314 0-6-3.686-6-7V0h49v37c0 3.314-1.686 6-5 6z" fill="#3e3e3e"/><path d="M19 0h11v39H19z" fill="#fff"/><path d="M19 0h11v39H19z" fill="#59b4d9"/><path d="M34 0h11v39H34z" fill="#804998"/><path d="M4 0h11v39H4z" fill="#59b4d9"/><g fill="#fff"><path d="M19 39V0h2v39zM4 39V0h2v39z" opacity=".4"/><path d="M34 39V0h2v39z" opacity=".3"/><path d="M4.934 42.9H8L40 0H0v36c0 2.95 2.13 6.396 4.934 6.9z" opacity=".15"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Quick_Start_Center.svg b/src/main/webapp/img/lib/mscae/Quick_Start_Center.svg new file mode 100644 index 0000000000000000000000000000000000000000..ad51b0b5b71f9ce41ec67662a25f9c3e6e531782 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Quick_Start_Center.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="31.34" height="31.57"><path d="M6.77 17.92s-3.83-2.8-6.77-1.8c.94-2.92 5.1-6.36 8.72-7.17 4.2.3 4.9 1 4.9 1l-6.86 7.97z" fill="#ff8c00"/><g fill="#dd5900"><path d="M13.67 24.8l7.97-6.86s.7.7 1 4.9c-.8 3.63-4.25 7.78-7.17 8.7 1-2.93-1.8-6.76-1.8-6.76z"/><path d="M31.34 0S15.88 2.73 6.6 17.68l7.07 7.07C28.6 15.45 31.34 0 31.34 0z"/><path d="M31.34 0L10.12 21.2l3.54 3.54C28.6 15.45 31.34 0 31.34 0z"/></g><path d="M7.55 18.64C14.8 7.5 25.3 3.17 29.27 2.06c-1.1 4-5.43 14.46-16.58 21.72z" fill="#ff8c00"/><path d="M31.34 0s-3.86.68-8.9 3.23L28.1 8.9C30.65 3.86 31.34 0 31.34 0z" fill="#0072c6"/><path d="M1.05 30.28s.6-9.07 5.54-12.6l7.07 7.07c-3.54 4.96-12.6 5.54-12.6 5.54z" fill="#ff8c00"/><path d="M2.65 28.7c-.17-1.64 2.1-7.44 4.93-10.03l5.1 5.1c-2.6 2.85-8.4 5.1-10.03 4.93z" fill="#fcd116"/><g fill="#fff"><path d="M4.3 27.02c.02-1.57 2.47-5.85 3.98-7.64l3.66 3.66c-2 1.72-6.5 3.97-7.64 3.98z" opacity=".6"/><circle cx="20.02" cy="11.31" r="4"/></g><circle cx="20.02" cy="11.31" r="3" fill="#fcd116"/><path d="M17.3 12.58c-.7-1.5-.05-3.28 1.45-3.98s3.28-.05 3.98 1.45z" opacity=".4" fill="#fff"/><path d="M12.243 17.673l1.414 1.414L8 24.744 6.586 23.33z" fill="#dd5900"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Quickstart.svg b/src/main/webapp/img/lib/mscae/Quickstart.svg index 1fd2a98b56df72583cdae16d351a22552ae34f36..00a908fc96fa340d95d12e14a3c73d422f928d2a 100644 --- a/src/main/webapp/img/lib/mscae/Quickstart.svg +++ b/src/main/webapp/img/lib/mscae/Quickstart.svg @@ -1,55 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="49.999043" - height="34.001999" - viewBox="-0.5 0.5 49.999043 34.001999" - enable-background="new -0.5 0.5 50 50" - xml:space="preserve" - sodipodi:docname="Quickstart.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata3210"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs3208" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview3206" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="25" - inkscape:cy="16" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 42.63,15.174 c 0.249,-0.976 0.386,-1.985 0.386,-3.006 0,-4.03 -1.973,-7.582 -5.021,-9.731 l -4.781,8.054 c -0.196,0.303 -0.045,0.555 0.32,0.555 l 6.134,-0.039 c 0.353,-0.012 0.442,0.208 0.205,0.472 L 24.041,29.537 c -0.234,0.27 -0.329,0.226 -0.187,-0.104 l 4.997,-12.202 c 0.116,-0.323 -0.05,-0.591 -0.41,-0.591 h -4.864 c -0.347,0 -0.537,-0.252 -0.401,-0.599 L 29.001,0.5 c -3.935,0.742 -7.17,3.448 -8.677,7.054 -1.525,-1.804 -3.81,-2.959 -6.359,-2.959 -4.597,0 -8.342,3.76 -8.342,8.404 0,0.813 0.116,1.57 0.32,2.297 -3.754,1.395 -6.443,5.036 -6.443,9.3 0,5.463 4.398,9.906 9.831,9.906 h 30.334 c 5.448,0 9.834,-4.436 9.834,-9.906 0.013,-4.424 -2.875,-8.163 -6.869,-9.422 z" - id="path3203" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="49.999" height="34.002" viewBox="-0.5 0.5 49.999 34.002"><path d="M42.63 15.174c.25-.976.386-1.985.386-3.006 0-4.03-1.973-7.582-5.02-9.73l-4.78 8.054c-.196.303-.045.555.32.555l6.134-.04c.353-.012.442.208.205.472L24.04 29.537c-.234.27-.33.226-.187-.104L28.85 17.23c.116-.323-.05-.59-.4-.59h-4.864c-.347 0-.537-.252-.4-.6L29 .5c-3.935.742-7.17 3.448-8.677 7.054-1.525-1.804-3.8-2.96-6.36-2.96-4.597 0-8.342 3.76-8.342 8.404a8.42 8.42 0 0 0 .32 2.297C2.19 16.69-.5 20.332-.5 24.596c0 5.463 4.398 9.906 9.83 9.906h30.334c5.448 0 9.834-4.436 9.834-9.906a9.84 9.84 0 0 0-6.869-9.422z" fill="#59b4d9"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Quota.svg b/src/main/webapp/img/lib/mscae/Quota.svg index 840f7016e1a6eb336f387b6d04ebd948cb7d9ae5..42d0bb6458ad97f593df596d15d86ec0708e9777 100644 --- a/src/main/webapp/img/lib/mscae/Quota.svg +++ b/src/main/webapp/img/lib/mscae/Quota.svg @@ -1,73 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="46" - height="46" - viewBox="-774 256 46 46" - enable-background="new -774 256 50 50" - xml:space="preserve" - sodipodi:docname="Quota.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata3265"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs3263" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview3261" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="21" - inkscape:cy="21" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<circle - cx="-753" - cy="281" - r="21" - id="circle3252" - style="fill:#7fba00" /> -<path - enable-background="new " - d="m -732,281 c 0,-11.598 -9.402,-21 -21,-21 -11.598,0 -21,9.402 -21,21 z" - id="path3254" - inkscape:connector-curvature="0" - style="opacity:0.3;fill:#ffffff" /> -<path - enable-background="new " - d="m -774,281 c 0,11.598 9.402,21 21,21 v -21 z" - id="path3256" - inkscape:connector-curvature="0" - style="opacity:0.15;fill:#ffffff" /> -<path - d="m -728,281 c 0,-13.807 -11.193,-25 -25,-25 v 25 z" - id="path3258" - inkscape:connector-curvature="0" - style="fill:#fcd116" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="46" height="46" viewBox="-774 256 46 46"><circle cx="-753" cy="281" r="21" fill="#7fba00"/><g fill="#fff"><path d="M-732 281c0-11.598-9.402-21-21-21s-21 9.402-21 21z" opacity=".3"/><path d="M-774 281c0 11.598 9.402 21 21 21v-21z" opacity=".15"/></g><path d="M-728 281c0-13.807-11.193-25-25-25v25z" fill="#fcd116"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/RDMA.svg b/src/main/webapp/img/lib/mscae/RDMA.svg index 77d765f98de3d781b5fc4b165644eba4dd82c11c..ab6ec665435e3423b44189857e9283e529972adb 100644 --- a/src/main/webapp/img/lib/mscae/RDMA.svg +++ b/src/main/webapp/img/lib/mscae/RDMA.svg @@ -1,152 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="48.799999" - width="50" - viewBox="0 0 50 48.799999" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="RDMA.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata3459"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs3457" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview3455" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.020815" - inkscape:cx="25.048731" - inkscape:cy="18.853803" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<rect - x="15.9" - y="0" - width="3.9000001" - height="4.3000002" - id="rect3420" - style="fill:#fcd116" /> -<rect - x="24.4" - y="0" - width="3.9000001" - height="4.3000002" - id="rect3422" - style="fill:#fcd116" /> -<rect - x="33" - y="0" - width="3.9000001" - height="4.3000002" - id="rect3424" - style="fill:#fcd116" /> -<rect - x="41.5" - y="0" - width="3.9000001" - height="4.3000002" - id="rect3426" - style="fill:#fcd116" /> -<rect - x="33" - y="18" - width="3.9000001" - height="4.3000002" - id="rect3428" - style="fill:#fcd116" /> -<rect - x="41.5" - y="18" - width="3.9000001" - height="4.3000002" - id="rect3430" - style="fill:#fcd116" /> -<rect - x="3.5999999" - y="26.5" - width="3.9000001" - height="4.3000002" - id="rect3432" - style="fill:#fcd116" /> -<rect - x="12.1" - y="26.5" - width="3.9000001" - height="4.3000002" - id="rect3434" - style="fill:#fcd116" /> -<rect - x="3.5999999" - y="44.5" - width="3.9000001" - height="4.3000002" - id="rect3436" - style="fill:#fcd116" /> -<rect - x="12.1" - y="44.5" - width="3.9000001" - height="4.3000002" - id="rect3438" - style="fill:#fcd116" /> -<rect - x="20.6" - y="44.5" - width="3.9000001" - height="4.3000002" - id="rect3440" - style="fill:#fcd116" /> -<rect - x="29.1" - y="44.5" - width="3.9000001" - height="4.3000002" - id="rect3442" - style="fill:#fcd116" /> -<g - id="g3450"> - <g - id="g3448"> - <polygon - points="22.4,8.2 24.4,6.2 26.5,8.2 31.7,13.4 32.5,14.3 32.5,15.5 32.5,18 50,18 50,4.3 12.4,4.3 12.4,18 16.4,18 16.4,15.5 16.4,14.3 17.2,13.4 " - id="polygon3444" - style="fill:#7fba00" /> - <polygon - points="26.5,39.9 24.4,42 22.4,39.9 17.2,34.8 16.4,33.9 16.4,32.7 16.4,30.8 0,30.8 0,44.5 37.6,44.5 37.6,30.8 32.5,30.8 32.5,32.7 32.5,33.9 31.7,34.8 " - id="polygon3446" - style="fill:#7fba00" /> - </g> -</g> -<polygon - points="22.7,17.2 22.7,31 19.3,27.5 19.3,32.7 24.4,37.9 29.6,32.7 29.6,27.5 26.2,31 26.2,17.2 29.6,20.6 29.6,15.5 24.4,10.3 19.3,15.5 19.3,20.6 " - id="polygon3452" - style="fill:#0072c6" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" height="48.8" width="50"><path d="M15.9 0h3.9v4.3h-3.9zm8.5 0h3.9v4.3h-3.9zM33 0h3.9v4.3H33zm8.5 0h3.9v4.3h-3.9zM33 18h3.9v4.3H33zm8.5 0h3.9v4.3h-3.9zM3.6 26.5h3.9v4.3H3.6zm8.5 0H16v4.3h-3.9zm-8.5 18h3.9v4.3H3.6zm8.5 0H16v4.3h-3.9zm8.5 0h3.9v4.3h-3.9zm8.5 0H33v4.3h-3.9z" fill="#fcd116"/><path d="M22.4 8.2l2-2 2.1 2 5.2 5.2.8.9V18H50V4.3H12.4V18h4v-3.7l.8-.9zm4.1 31.7L24.4 42l-2-2.1-5.2-5.1-.8-.9v-3.1H0v13.7h37.6V30.8h-5.1v3.1l-.8.9z" fill="#7fba00"/><path d="M22.7 17.2V31l-3.4-3.5v5.2l5.1 5.2 5.2-5.2v-5.2L26.2 31V17.2l3.4 3.4v-5.1l-5.2-5.2-5.1 5.2v5.1z" fill="#0072c6"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Rain.svg b/src/main/webapp/img/lib/mscae/Rain.svg index f46d6f21f4ef373c73fe99ecc757385967755302..23a9a02a10eb5369e23266b6a4a9bb3f6a6acf01 100644 --- a/src/main/webapp/img/lib/mscae/Rain.svg +++ b/src/main/webapp/img/lib/mscae/Rain.svg @@ -1,15 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - height="50px" width="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#7A7A7A" d="M50,25.5c0-3.2-2.6-5.8-5.8-5.8c-0.2,0-0.5,0-0.7,0c0.4-1.3,0.5-2.7,0.5-4.1C44.1,7,37.1,0,28.6,0 - C21.8,0,16,4.4,14,10.6c-1.1-0.4-2.2-0.6-3.4-0.6C4.7,10,0,14.8,0,20.7c0,5.9,4.7,10.6,10.5,10.6c0,0,0,0,0,0v0h34.1l0,0 - C47.7,31,50,28.5,50,25.5"/> -<path opacity="0.2" fill="#FFFFFF" enable-background="new " d="M16.2,31.3c-1.4-1.4-2.4-3.1-2.9-5.2c-1.3-5.7,2.2-11.4,7.9-12.7 - c1.2-0.3,2.4-0.3,3.5-0.2c0.5-5.4,3.8-10.1,8.6-12.5C31.8,0.3,30.3,0,28.6,0C21.8,0,16,4.4,14,10.6c-1.1-0.4-2.2-0.6-3.4-0.6 - C4.7,10,0,14.8,0,20.7c0,5.9,4.7,10.6,10.5,10.6c0,0,0,0,0,0v0H16.2z"/> -<path fill="#59B4D9" d="M38.1,44.8c0,2.9-2.3,5.2-5.2,5.2s-5.2-2.3-5.2-5.2s5.2-12.7,5.2-12.7S38.1,41.9,38.1,44.8z"/> -<path opacity="0.3" fill="#FFFFFF" d="M30.5,46.4c-0.5-2.5,1.3-9.8,2.5-14.1c-0.1-0.1-0.1-0.2-0.1-0.2s-5.2,9.8-5.2,12.7 - c0,2.7,2.1,5,4.8,5.2C31.5,49.1,30.8,47.8,30.5,46.4z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" height="50" width="50"><path fill="#7a7a7a" d="M50 25.5c0-3.2-2.6-5.8-5.8-5.8h-.7c.4-1.3.5-2.7.5-4.1C44.1 7 37.1 0 28.6 0 21.8 0 16 4.4 14 10.6c-1.1-.4-2.2-.6-3.4-.6C4.7 10 0 14.8 0 20.7s4.7 10.6 10.5 10.6h34.1c3.1-.3 5.4-2.8 5.4-5.8"/><path opacity=".2" fill="#fff" d="M16.2 31.3a10.69 10.69 0 0 1-2.9-5.2c-1.3-5.7 2.2-11.4 7.9-12.7 1.2-.3 2.4-.3 3.5-.2.5-5.4 3.8-10.1 8.6-12.5-1.5-.4-3-.7-4.7-.7C21.8 0 16 4.4 14 10.6c-1.1-.4-2.2-.6-3.4-.6C4.7 10 0 14.8 0 20.7s4.7 10.6 10.5 10.6h5.7z"/><path fill="#59b4d9" d="M38.1 44.8c0 2.9-2.3 5.2-5.2 5.2s-5.2-2.3-5.2-5.2 5.2-12.7 5.2-12.7 5.2 9.8 5.2 12.7z"/><path opacity=".3" fill="#fff" d="M30.5 46.4c-.5-2.5 1.3-9.8 2.5-14.1-.1-.1-.1-.2-.1-.2s-5.2 9.8-5.2 12.7c0 2.7 2.1 5 4.8 5.2-1-.9-1.7-2.2-2-3.6z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Recommendation.svg b/src/main/webapp/img/lib/mscae/Recommendation.svg index 85584ae9dad3d1ec5c33a43c459ffd90496c4890..fc6d289d2a81d062a7a8c060100b2902d2c85ca8 100644 --- a/src/main/webapp/img/lib/mscae/Recommendation.svg +++ b/src/main/webapp/img/lib/mscae/Recommendation.svg @@ -1,103 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50.025116" - height="34.141811" - viewBox="0 0 50.025116 34.141811" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Recommendation.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata3549"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs3547" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview3545" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="8.5" - inkscape:cx="-13.128877" - inkscape:cy="12.525999" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 10.212558,11.541811 v 12.7 c 0,3 6.6,5.3 14.8,5.3 v -18 z" - id="path3522" - inkscape:connector-curvature="0" - style="fill:#0072c6" /> -<path - d="m 24.812558,29.641811 h 0.2 c 8.1,0 14.8,-2.4 14.8,-5.3 v -12.8 h -15 z" - id="path3524" - inkscape:connector-curvature="0" - style="fill:#0072c6" /> -<path - d="m 24.812558,29.641811 h 0.2 c 8.1,0 14.8,-2.4 14.8,-5.3 v -12.8 h -15 z" - id="path3526" - inkscape:connector-curvature="0" - style="opacity:0.15;fill:#ffffff" /> -<g - id="g3530" - transform="translate(0.054153,-7.875)"> - <path - d="m 48.6,16.6 c 1.8,0.7 1.8,2 0,2.7 l -20.3,8.3 c -1.8,0.7 -4.8,0.7 -6.6,0 L 1.4,19.4 c -1.8,-0.7 -1.8,-2 0,-2.7 L 21.7,8.4 c 1.8,-0.7 4.8,-0.7 6.6,0 z" - id="path3528" - inkscape:connector-curvature="0" - style="fill:#0072c6" /> -</g> -<path - d="m 0.01255848,11.741811 c -0.1,0.5 0.4,1.1 1.40000002,1.5 l 20.2999995,8.3 c 1.8,0.7 4.8,0.7 6.6,0 l 20.3,-8.3 c 1,-0.4 1.4,-1 1.4,-1.5 v -1.8 c 0.1,0.5 -0.4,1.1 -1.4,1.5 l -20.3,8.3 c -1.8,0.7 -4.8,0.7 -6.6,0 l -20.2999995,-8.3 c -1.10000002,-0.4 -1.50000002,-1 -1.30000002,-1.6 z" - id="path3532" - inkscape:connector-curvature="0" - style="fill:#0072c6" /> -<path - d="m 0.01255848,11.741811 c -0.1,0.5 0.4,1.1 1.40000002,1.5 l 20.2999995,8.3 c 1.8,0.7 4.8,0.7 6.6,0 l 20.3,-8.3 c 1,-0.4 1.4,-1 1.4,-1.5 v -1.8 c 0.1,0.5 -0.4,1.1 -1.4,1.5 l -20.3,8.3 c -1.8,0.7 -4.8,0.7 -6.6,0 l -20.2999995,-8.3 c -1.10000002,-0.4 -1.50000002,-1 -1.30000002,-1.6 z" - id="path3534" - inkscape:connector-curvature="0" - style="opacity:0.25;fill:#1e1e1e" /> -<circle - cx="25.012558" - cy="9.041811" - r="1.9" - id="circle3536" - style="opacity:0.25;fill:#1e1e1e" /> -<g - id="g3540" - transform="translate(0.01255848,-7.958189)"> - <polygon - points="10,22.6 23.1,17.3 23.5,18.2 11,23.3 11,41.3 10,41.3 " - id="polygon3538" - style="fill:#fcd116" /> -</g> -<path - d="m 9.1125585,34.141811 v -12.5 c 0,-0.7 0.6,-1.4 1.3999995,-1.4 v 0 c 0.7,0 1.4,0.6 1.4,1.4 v 12.4 H 9.1125585 Z" - id="path3542" - inkscape:connector-curvature="0" - style="fill:#ff8c00" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50.025" height="34.142"><g fill="#0072c6"><path d="M10.213 11.542v12.7c0 3 6.6 5.3 14.8 5.3v-18z"/><path d="M24.813 29.642h.2c8.1 0 14.8-2.4 14.8-5.3v-12.8h-15z"/></g><path d="M24.813 29.642h.2c8.1 0 14.8-2.4 14.8-5.3v-12.8h-15z" opacity=".15" fill="#fff"/><g fill="#0072c6"><path d="M48.654 8.725c1.8.7 1.8 2 0 2.7l-20.3 8.3c-1.8.7-4.8.7-6.6 0l-20.3-8.2c-1.8-.7-1.8-2 0-2.7l20.3-8.3c1.8-.7 4.8-.7 6.6 0z"/><use xlink:href="#B"/></g><g fill="#1e1e1e"><use xlink:href="#B" opacity=".25"/><circle cx="25.013" cy="9.042" r="1.9" opacity=".25"/></g><path d="M10.013 14.642l13.1-5.3.4.9-12.5 5.1v18h-1z" fill="#fcd116"/><path d="M9.113 34.142v-12.5c0-.7.6-1.4 1.4-1.4.7 0 1.4.6 1.4 1.4v12.4h-2.8z" fill="#ff8c00"/><defs ><path id="B" d="M.013 11.742c-.1.5.4 1.1 1.4 1.5l20.3 8.3c1.8.7 4.8.7 6.6 0l20.3-8.3c1-.4 1.4-1 1.4-1.5v-1.8c.1.5-.4 1.1-1.4 1.5l-20.3 8.3c-1.8.7-4.8.7-6.6 0l-20.3-8.3c-1.1-.4-1.5-1-1.3-1.6z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/RemoteApp.svg b/src/main/webapp/img/lib/mscae/RemoteApp.svg index 5a9c21491c31bf81f1097907ed5bf5498ee54083..72fc007154584a9ae281e72d305659b31d8e2931 100644 --- a/src/main/webapp/img/lib/mscae/RemoteApp.svg +++ b/src/main/webapp/img/lib/mscae/RemoteApp.svg @@ -1,8 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<polygon fill="#B8D432" points="37.8,13.1 34.5,9.8 23.8,20.6 34.5,31.4 37.8,28.3 30.5,20.9 "/> -<polygon fill="#B8D432" points="12.2,22.2 19.5,29.5 12.2,36.9 15.5,40.2 26.2,29.4 15.5,18.6 "/> -<path fill="#59B4D9" d="M25,0C11.1,0,0,11.4,0,25c0,13.9,11.4,25,25,25s25-11.4,25-25S38.9,0,25,0z M25,3.3C37,3.3,46.7,13,46.7,25 - S36.9,46.7,25,46.7S3.3,36.9,3.3,25S13,3.3,25,3.3z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path d="M37.8 13.1l-3.3-3.3-10.7 10.8 10.7 10.8 3.3-3.1-7.3-7.4zm-25.6 9.1l7.3 7.3-7.3 7.4 3.3 3.3 10.7-10.8-10.7-10.8z" fill="#b8d432"/><path fill="#59b4d9" d="M25 0C11.1 0 0 11.4 0 25c0 13.9 11.4 25 25 25s25-11.4 25-25S38.9 0 25 0zm0 3.3C37 3.3 46.7 13 46.7 25S36.9 46.7 25 46.7 3.3 36.9 3.3 25 13 3.3 25 3.3z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Reservations.svg b/src/main/webapp/img/lib/mscae/Reservations.svg new file mode 100644 index 0000000000000000000000000000000000000000..74fcbc542c9529da25af17919abeea24619debdd --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Reservations.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="47.81" height="47.806"><circle cx="23.905" cy="23.9" r="21.756" fill="#fff"/><path d="M43.853 32.583a21.76 21.76 0 0 1-28.632 11.265L32.588 3.952c11.018 4.795 16.06 17.614 11.265 28.63z" fill="#e5e5e5"/><path d="M23.905 2.97c11.54 0 20.93 9.39 20.93 20.93s-9.39 20.93-20.93 20.93-20.93-9.39-20.93-20.93 9.39-20.93 20.93-20.93m0-2C11.24.97.975 11.236.975 23.9s10.266 22.93 22.93 22.93 22.93-10.266 22.93-22.93S36.57.97 23.905.97z" fill="#a0a1a2"/><g fill="#7a7a7a"><use xlink:href="#B"/><use xlink:href="#C"/><path d="M15.167 38.097l1.683-2.915.94.543-1.682 2.915zM7.102 23.344h3.367v1.086H7.102z"/></g><g fill="#1e1e1e"><use xlink:href="#B" opacity=".5"/><use xlink:href="#C" opacity=".5"/><path d="M15.167 38.097l1.683-2.915.94.543-1.682 2.915z" opacity=".5"/></g><g fill="#7a7a7a"><use xlink:href="#D"/><use xlink:href="#E"/><path d="M9.2 31.846l2.914-1.683.543.94-2.914 1.683z"/></g><g fill="#1e1e1e"><use xlink:href="#D" opacity=".5"/><use xlink:href="#E" opacity=".5"/><path d="M9.2 31.846l2.914-1.683.543.94-2.914 1.683zm-2.098-8.502h3.367v1.086H7.102z" opacity=".5"/></g><g fill="#7a7a7a"><path d="M34.672 28.983l-9.31-2.53c-.994-.286-1.574-1.317-1.302-2.315s1.293-1.594 2.295-1.338l9.31 2.53c.994.286 1.574 1.317 1.302 2.315s-1.293 1.594-2.295 1.338z"/><path d="M24 26.523c-.94 0-1.703-.848-1.703-1.893V8.518c0-1.045.763-1.893 1.703-1.893s1.703.848 1.703 1.893V24.63c0 1.046-.762 1.893-1.703 1.893z"/></g><circle cx="23.905" cy="23.9" r="3.235" fill="#1e1e1e"/><path d="M23.905 46.83c12.664 0 22.93-10.266 22.93-22.93S36.57.97 23.905.97c-.176 0-.35.01-.523.013l-.084 4.022 1 .02c8.613.182 16.015 6.15 18 14.512 2.404 10.14-3.89 20.346-14.028 22.75a18.93 18.93 0 0 1-4.362.513h-.002A18.84 18.84 0 0 1 5.515 28.261c-1.448-6.105.276-12.467 4.41-17.034l4.037 4.11L16.378 2.24C7.413 5.356.975 13.874.975 23.9c0 12.664 10.266 22.93 22.93 22.93z" opacity=".5" fill="#fff"/><g fill="#804998"><path d="M13.328 13.263L3.516 3.277 15.55 1.225z"/><path d="M24.402 0l-.084 4.027c8.844.187 16.815 6.283 18.95 15.28 2.532 10.677-4.094 21.423-14.77 23.955S7.074 39.17 4.542 28.492C2.674 20.615 5.8 12.712 11.85 8.086L8.987 5.224C1.995 10.817-1.553 20.125.65 29.416 3.696 42.26 16.577 50.2 29.42 47.155s20.785-15.927 17.74-28.77C44.592 7.557 35.034.214 24.402 0z"/></g><defs ><path id="B" d="M9.036 15.85l.543-.94 2.915 1.683-.543.94zM23.448 6.94h1.085v3.366h-1.085zm6.817 5.005l1.683-2.915.94.543-1.683 2.915zm7.04 11.4h3.366v1.086h-3.366zM35.2 30.96l.543-.94 2.914 1.682-.543.94z"/><path id="C" d="M35.2 30.96l.543-.94 2.914 1.682-.543.94zm-11.753 6.19h1.085v3.366h-1.085zM9.036 15.85l.543-.94 2.915 1.683-.543.94zm6.13 22.246l1.683-2.915.94.543-1.682 2.915z"/><path id="D" d="M15.013 9.514l.94-.543 1.683 2.915-.94.543zm20.338 7.23l2.915-1.683.543.94-2.915 1.683zM30.12 35.68l.94-.543 1.683 2.914-.94.543z"/><path id="E" d="M30.12 35.68l.94-.543 1.683 2.914-.94.543zM15.013 9.514l.94-.543 1.683 2.915-.94.543zM9.2 31.846l2.914-1.683.543.94-2.914 1.683z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/ResourceDefault.svg b/src/main/webapp/img/lib/mscae/ResourceDefault.svg index f610a889972a48b6d4936572a94b7eae66fe5162..4e36b5b3e07c4bd9720df4529a1eb97a1f5cf691 100644 --- a/src/main/webapp/img/lib/mscae/ResourceDefault.svg +++ b/src/main/webapp/img/lib/mscae/ResourceDefault.svg @@ -1,70 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="45" - height="50" - viewBox="0 0 45 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="ResourceDefault.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata3727"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs3725" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview3723" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="8.5" - inkscape:cx="22.534802" - inkscape:cy="5.824811" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 22.561,23.167 c -0.103,0 -0.197,-0.03 -0.288,-0.083 L 3.011,12.045 C 2.828,11.942 2.719,11.748 2.719,11.539 c 0,-0.203 0.108,-0.395 0.292,-0.496 L 22.149,0.075 c 0.182,-0.1 0.405,-0.1 0.579,0 L 41.994,11.12 c 0.174,0.102 0.29,0.291 0.29,0.496 0,0.212 -0.116,0.4 -0.29,0.504 L 22.853,23.084 c -0.091,0.053 -0.188,0.083 -0.292,0.083" - id="path3714" - inkscape:connector-curvature="0" - style="fill:#3999c6" /> -<path - d="m 19.792,50 c -0.104,0 -0.207,-0.024 -0.295,-0.077 L 0.295,38.917 C 0.11,38.814 0,38.626 0,38.416 V 16.331 c 0,-0.207 0.11,-0.397 0.295,-0.506 0.176,-0.1 0.401,-0.1 0.586,0 L 20.08,26.831 c 0.178,0.107 0.286,0.297 0.286,0.504 v 22.086 c 0,0.212 -0.108,0.397 -0.286,0.502 C 19.985,49.976 19.888,50 19.792,50" - id="path3716" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="M 25.225,50 C 25.127,50 25.026,49.976 24.93,49.923 24.752,49.818 24.642,49.634 24.642,49.421 V 27.478 c 0,-0.207 0.11,-0.397 0.288,-0.504 L 44.126,15.972 c 0.185,-0.102 0.403,-0.102 0.587,0 0.176,0.103 0.287,0.295 0.287,0.5 v 21.943 c 0,0.211 -0.111,0.398 -0.287,0.502 L 25.511,49.923 C 25.429,49.976 25.325,50 25.225,50" - id="path3718" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="M 25.225,50 C 25.127,50 25.026,49.976 24.93,49.923 24.752,49.818 24.642,49.634 24.642,49.421 V 27.478 c 0,-0.207 0.11,-0.397 0.288,-0.504 L 44.126,15.972 c 0.185,-0.102 0.403,-0.102 0.587,0 0.176,0.103 0.287,0.295 0.287,0.5 v 21.943 c 0,0.211 -0.111,0.398 -0.287,0.502 L 25.511,49.923 C 25.429,49.976 25.325,50 25.225,50" - id="path3720" - inkscape:connector-curvature="0" - style="opacity:0.5;fill:#ffffff" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="45" height="50"><path d="M22.56 23.167c-.103 0-.197-.03-.288-.083L3.01 12.045c-.183-.103-.292-.297-.292-.506 0-.203.108-.395.292-.496L22.15.075c.182-.1.405-.1.58 0L41.994 11.12c.174.102.3.29.3.496a.59.59 0 0 1-.29.504l-19.14 10.964c-.09.053-.188.083-.292.083" fill="#3999c6"/><g fill="#59b4d9"><path d="M19.792 50a.57.57 0 0 1-.295-.077L.295 38.917c-.185-.103-.295-.29-.295-.5V16.33c0-.207.1-.397.295-.506a.61.61 0 0 1 .586 0l19.2 11.006c.178.107.286.297.286.504V49.42c0 .212-.108.397-.286.502-.095.053-.192.077-.288.077"/><use xlink:href="#B"/></g><use xlink:href="#B" opacity=".5" fill="#fff"/><defs ><path id="B" d="M25.225 50c-.098 0-.2-.024-.295-.077-.178-.105-.288-.29-.288-.502V27.478a.59.59 0 0 1 .288-.504l19.196-11.002a.6.6 0 0 1 .587 0c.176.103.287.295.287.5v21.943a.58.58 0 0 1-.287.502L25.51 49.923c-.082.053-.186.077-.286.077"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/ResourceGroup.svg b/src/main/webapp/img/lib/mscae/ResourceGroup.svg index 28e127d91cc965c40ae5b2012e8cac54461c1dc2..e8cad14876976cab1817200dfe30277b11dbeb85 100644 --- a/src/main/webapp/img/lib/mscae/ResourceGroup.svg +++ b/src/main/webapp/img/lib/mscae/ResourceGroup.svg @@ -1,71 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="40.341999" - viewBox="0 0 50 40.341999" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="ResourceGroup_COLOR.svg"><metadata - id="metadata19"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs17" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview15" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="16.059062" - inkscape:cx="25" - inkscape:cy="20.171" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 25.047,17.818 C 24.969,17.818 24.897,17.795 24.827,17.754 L 10.116,9.264 C 9.976,9.184 9.893,9.036 9.893,8.875 9.893,8.719 9.976,8.571 10.116,8.493 L 24.732,0.058 C 24.871,-0.019 25.041,-0.019 25.174,0.058 L 39.888,8.553 C 40.021,8.631 40.109,8.777 40.109,8.935 40.109,9.098 40.021,9.243 39.888,9.322 L 25.269,17.755 C 25.2,17.795 25.126,17.818 25.047,17.818" - id="path3" - inkscape:connector-curvature="0" - style="fill:#3999c6" /><path - d="M 22.932,38.455 C 22.852,38.455 22.774,38.436 22.706,38.396 L 8.042,29.932 C 7.9,29.853 7.816,29.708 7.816,29.546 L 7.816,12.561 C 7.816,12.402 7.9,12.256 8.042,12.172 8.176,12.095 8.348,12.095 8.49,12.172 L 23.152,20.636 C 23.288,20.718 23.37,20.864 23.37,21.023 L 23.37,38.01 C 23.37,38.173 23.287,38.315 23.152,38.396 23.079,38.437 23.006,38.455 22.932,38.455" - id="path5" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><path - d="M 27.081,38.455 C 27.006,38.455 26.929,38.436 26.855,38.396 26.719,38.315 26.635,38.173 26.635,38.01 L 26.635,21.133 C 26.635,20.974 26.719,20.828 26.855,20.746 L 41.515,12.285 C 41.657,12.207 41.823,12.207 41.963,12.285 42.097,12.365 42.183,12.512 42.183,12.67 L 42.183,29.547 C 42.183,29.709 42.098,29.853 41.963,29.933 L 27.298,38.397 C 27.237,38.437 27.158,38.455 27.081,38.455" - id="path7" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><path - d="M 27.081,38.455 C 27.006,38.455 26.929,38.436 26.855,38.396 26.719,38.315 26.635,38.173 26.635,38.01 L 26.635,21.133 C 26.635,20.974 26.719,20.828 26.855,20.746 L 41.515,12.285 C 41.657,12.207 41.823,12.207 41.963,12.285 42.097,12.365 42.183,12.512 42.183,12.67 L 42.183,29.547 C 42.183,29.709 42.098,29.853 41.963,29.933 L 27.298,38.397 C 27.237,38.437 27.158,38.455 27.081,38.455" - id="path9" - inkscape:connector-curvature="0" - style="opacity:0.5;fill:#ffffff" /><path - d="M 9.558,40.342 C 9.311,40.342 9.061,40.279 8.832,40.147 L 1.987,36.195 C 0.835,35.529 0,34.082 0,32.753 L 0,7.589 C 0,6.26 0.835,4.812 1.987,4.148 L 8.832,0.196 C 9.529,-0.205 10.418,0.033 10.819,0.728 11.221,1.424 10.982,2.313 10.287,2.715 L 3.442,6.667 C 3.199,6.808 2.91,7.308 2.91,7.589 L 2.91,32.753 C 2.91,33.034 3.199,33.535 3.442,33.675 L 10.287,37.627 C 10.983,38.029 11.221,38.918 10.819,39.614 10.55,40.081 10.061,40.342 9.558,40.342 Z" - id="path11" - inkscape:connector-curvature="0" - style="fill:#7a7a7a" /><path - d="M 40.442,0 C 40.689,0 40.939,0.063 41.168,0.195 L 48.013,4.147 C 49.165,4.813 50,6.26 50,7.589 L 50,32.753 C 50,34.082 49.165,35.53 48.013,36.194 L 41.168,40.146 C 40.471,40.547 39.582,40.309 39.181,39.614 38.779,38.918 39.018,38.029 39.713,37.627 L 46.558,33.675 C 46.801,33.534 47.09,33.034 47.09,32.753 L 47.09,7.589 C 47.09,7.308 46.801,6.807 46.558,6.667 L 39.713,2.715 C 39.017,2.313 38.779,1.424 39.181,0.728 39.45,0.261 39.939,0 40.442,0 Z" - id="path13" - inkscape:connector-curvature="0" - style="fill:#7a7a7a" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="40.342"><path d="M25.047 17.818a.43.43 0 0 1-.22-.064l-14.71-8.5c-.14-.08-.223-.228-.223-.39s.083-.304.223-.382L24.732.058a.45.45 0 0 1 .442 0l14.714 8.495c.133.078.22.224.22.382a.45.45 0 0 1-.221.387l-14.62 8.433a.44.44 0 0 1-.222.063" fill="#3999c6"/><g fill="#59b4d9"><path d="M22.932 38.455c-.08 0-.158-.02-.226-.06L8.042 29.932c-.142-.08-.226-.224-.226-.386V12.56a.45.45 0 0 1 .226-.389c.134-.077.306-.077.448 0l14.662 8.464a.45.45 0 0 1 .218.387V38c0 .163-.083.305-.218.386a.44.44 0 0 1-.22.059"/><use xlink:href="#B"/></g><use xlink:href="#B" opacity=".5" fill="#fff"/><path d="M9.558 40.342a1.45 1.45 0 0 1-.726-.195l-6.845-3.952C.835 35.53 0 34.082 0 32.753V7.6a4.21 4.21 0 0 1 1.987-3.441L8.832.196c.697-.4 1.586-.163 1.987.532s.163 1.585-.532 1.987L3.442 6.667c-.243.14-.532.64-.532.922v25.164c0 .28.3.782.532.922l6.845 3.952c.696.402.934 1.3.532 1.987-.27.467-.758.728-1.26.728zM40.442 0a1.45 1.45 0 0 1 .726.195l6.845 3.952C49.165 4.813 50 6.26 50 7.6v25.164a4.21 4.21 0 0 1-1.987 3.441l-6.845 3.952c-.697.4-1.586.163-1.987-.532s-.163-1.585.532-1.987l6.845-3.952c.243-.14.532-.64.532-.922V7.6c0-.28-.3-.782-.532-.922l-6.845-3.952c-.696-.402-.934-1.3-.532-1.987A1.45 1.45 0 0 1 40.442 0z" fill="#7a7a7a"/><defs ><path id="B" d="M27.08 38.455c-.075 0-.152-.02-.226-.06-.136-.08-.22-.223-.22-.386V21.133a.45.45 0 0 1 .22-.387l14.66-8.46a.46.46 0 0 1 .448 0 .45.45 0 0 1 .22.385v16.877c0 .162-.085.306-.22.386l-14.665 8.464a.4.4 0 0 1-.217.058"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/ResourceLinked.svg b/src/main/webapp/img/lib/mscae/ResourceLinked.svg index 7a7ef6850183159fc775ccdcab1a723f970c7e6a..d1913e768ff4a2e2d1733b3d1d4b1290bca975da 100644 --- a/src/main/webapp/img/lib/mscae/ResourceLinked.svg +++ b/src/main/webapp/img/lib/mscae/ResourceLinked.svg @@ -1,28 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#A0A1A2" d="M25.001,50c-1.232,0-2.392-0.48-3.261-1.352L1.351,28.26C0.492,27.401,0,26.214,0,24.999 - c0-1.214,0.492-2.402,1.351-3.26L21.74,1.351c0.871-0.872,2.029-1.352,3.261-1.352c1.231,0,2.39,0.48,3.261,1.352l20.386,20.388 - C49.521,22.607,50,23.766,50,24.999c0,1.233-0.479,2.392-1.353,3.263L28.262,48.648C27.392,49.52,26.232,50,25.001,50"/> -<path opacity="0.15" fill="#FFFFFF" d="M28.262,1.351c-0.871-0.872-2.029-1.352-3.261-1.352c-1.231,0-2.389,0.48-3.26,1.352 - L1.352,21.739C0.492,22.597,0,23.785,0,24.999c0,1.215,0.492,2.403,1.352,3.261l11.543,11.544L34.61,7.698L28.262,1.351z"/> -<path fill="#FFFFFF" d="M18.269,27.734h1.893l0.086-0.266l0.663-2.025l1.304-0.539l2.198,1.04l1.337-1.336l-0.127-0.251 - l-0.962-1.899l0.541-1.305l2.289-0.818l0.002-1.891l-0.269-0.087l-2.023-0.663l-0.539-1.304l1.039-2.198l-1.337-1.337l-0.251,0.127 - l-1.9,0.962l-1.302-0.54l-0.819-2.29l-1.891-0.001l-0.088,0.267l-0.661,2.025l-1.306,0.539l-2.196-1.04l-1.34,1.336l0.128,0.251 - l0.964,1.901l-0.541,1.302l-2.289,0.819l-0.001,1.891l0.266,0.087l2.025,0.663l0.539,1.305l-1.04,2.196l1.336,1.339l0.251-0.127 - l1.899-0.964l1.305,0.542L18.269,27.734z M15.309,19.421c0.001-2.138,1.736-3.869,3.874-3.869c2.139,0.002,3.87,1.736,3.869,3.875 - c-0.001,2.139-1.735,3.871-3.874,3.869C17.04,23.294,15.308,21.559,15.309,19.421"/> -<path fill="#B8D432" d="M19.18,21.937c-1.389-0.001-2.514-1.128-2.513-2.515c0.001-1.388,1.127-2.512,2.516-2.511 - c1.388,0.001,2.513,1.127,2.512,2.513C21.694,20.813,20.568,21.938,19.18,21.937"/> -<path fill="#FFFFFF" d="M40.918,28.692l-2.788,2.889c-1.033,1.063-2.23,1.16-3.607,0.835l4.881-5.054 - c0.722-0.745,0.271-2.213-0.52-2.905c-0.782-0.692-2.279-0.945-3.01-0.19l-4.872,5.053c-0.453-1.278-0.444-2.431,0.58-3.484 - l2.788-2.889c1.49-1.549,4.41-1.469,6.022-0.049s2.064,4.271,0.565,5.82L40.918,28.692z"/> -<path fill="#FFFFFF" d="M28.252,38.919l4.881-5.054c0.444,1.278,0.444,2.431-0.59,3.485l-2.778,2.889 - c-1.499,1.549-4.37,1.286-5.992-0.134c-1.612-1.42-2.055-4.062-0.556-5.611l2.788-2.889c1.024-1.062,2.23-1.16,3.597-0.844 - l-4.881,5.054c-0.722,0.754-0.34,2.159,0.451,2.851c0.782,0.692,2.245,1.051,2.977,0.296L28.252,38.919z"/> -<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M27.794,34.505l6.965-7.218c0.384-0.397,1.23-1.307,1.979-0.558 - c0.645,0.645-0.082,1.481-0.465,1.888l-6.975,7.218c-0.384,0.397-1.461,1.621-2.154,0.928C26.274,35.894,27.4,34.903,27.794,34.505z - "/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path fill="#a0a1a2" d="M25 50c-1.232 0-2.392-.48-3.26-1.352L1.35 28.26A4.64 4.64 0 0 1 0 24.999a4.64 4.64 0 0 1 1.351-3.26L21.74 1.35a4.58 4.58 0 0 1 6.522 0L48.648 21.74C49.52 22.607 50 23.766 50 25s-.48 2.392-1.353 3.263L28.262 48.648A4.58 4.58 0 0 1 25.001 50"/><g fill="#fff"><path opacity=".15" d="M28.262 1.35a4.58 4.58 0 0 0-3.261-1.352c-1.23 0-2.39.48-3.26 1.352L1.352 21.74C.492 22.597 0 23.785 0 25s.492 2.403 1.352 3.26l11.543 11.544L34.6 7.698 28.262 1.35z"/><path d="M18.27 27.734h1.893l.086-.266.663-2.025 1.304-.54 2.198 1.04 1.337-1.336-.127-.25-.962-1.9.54-1.305 2.29-.818.002-1.89-.27-.087-2.023-.663-.54-1.304 1.04-2.198-1.337-1.337-2.15 1.09-1.302-.54-.82-2.3-1.89-.001-.088.267-.66 2.025-1.306.54-2.196-1.04-1.34 1.336.128.25.964 1.9-.54 1.302-2.29.82-.001 1.89 2.29.75.54 1.305-1.04 2.196 1.336 1.34.25-.127 1.9-.964 1.305.542.817 2.29zm-2.96-8.313c.001-2.138 1.736-3.87 3.874-3.87s3.87 1.736 3.87 3.875a3.87 3.87 0 0 1-3.874 3.869c-2.138-.002-3.87-1.737-3.87-3.875"/></g><path fill="#b8d432" d="M19.18 21.937c-1.39-.001-2.514-1.128-2.513-2.515s1.127-2.512 2.516-2.51 2.513 1.127 2.512 2.513-1.127 2.514-2.515 2.513"/><g fill="#fff"><path d="M40.918 28.692l-2.788 2.9c-1.033 1.063-2.23 1.16-3.607.835l4.88-5.054c.722-.745.27-2.213-.52-2.905-.782-.692-2.28-.945-3-.2L31.01 29.31c-.453-1.278-.444-2.43.58-3.484l2.788-2.9c1.5-1.55 4.4-1.47 6.022-.05s2.064 4.27.565 5.82l-.04-.026zM28.252 38.92l4.88-5.054c.444 1.278.444 2.43-.6 3.485l-2.778 2.9c-1.5 1.55-4.37 1.286-5.992-.134-1.612-1.42-2.055-4.062-.556-5.6l2.788-2.9c1.024-1.062 2.23-1.16 3.597-.844l-4.88 5.054c-.722.754-.34 2.16.45 2.85.782.692 2.245 1.05 2.977.296l.103-.043z"/><path fill-rule="evenodd" d="M27.794 34.505l6.965-7.218c.384-.397 1.23-1.307 1.98-.558.645.645-.082 1.48-.465 1.888l-6.975 7.218c-.384.397-1.46 1.62-2.154.928-.87-.87.256-1.86.65-2.258z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/ResourceProvider.svg b/src/main/webapp/img/lib/mscae/ResourceProvider.svg index e3b507ee879b6ecce3edf5c07ca4bbce1adf1fb4..211b927ae0de80eee0f2c3d701bff266098fbbdc 100644 --- a/src/main/webapp/img/lib/mscae/ResourceProvider.svg +++ b/src/main/webapp/img/lib/mscae/ResourceProvider.svg @@ -1,19 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - height="50px" width="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#3999C6" d="M17.2,17.8c-0.1,0-0.1,0-0.2-0.1L2.3,9.3C2.2,9.2,2.1,9,2.1,8.9c0-0.2,0.1-0.3,0.2-0.4l14.6-8.4 - c0.1-0.1,0.3-0.1,0.4,0l14.7,8.5c0.1,0.1,0.2,0.2,0.2,0.4c0,0.2-0.1,0.3-0.2,0.4l-14.6,8.4C17.4,17.8,17.3,17.8,17.2,17.8"/> -<path fill="#59B4D9" d="M15.1,38.5c-0.1,0-0.2,0-0.2-0.1L0.2,29.9C0.1,29.9,0,29.7,0,29.5v-17c0-0.2,0.1-0.3,0.2-0.4 - c0.1-0.1,0.3-0.1,0.4,0l14.7,8.5c0.1,0.1,0.2,0.2,0.2,0.4v17c0,0.2-0.1,0.3-0.2,0.4C15.3,38.4,15.2,38.5,15.1,38.5"/> -<path fill="#59B4D9" d="M19.3,38.5c-0.1,0-0.2,0-0.2-0.1c-0.1-0.1-0.2-0.2-0.2-0.4V21.1c0-0.2,0.1-0.3,0.2-0.4l14.7-8.5 - c0.1-0.1,0.3-0.1,0.4,0c0.1,0.1,0.2,0.2,0.2,0.4v16.9c0,0.2-0.1,0.3-0.2,0.4l-14.7,8.5C19.4,38.4,19.3,38.5,19.3,38.5"/> -<path opacity="0.5" fill="#FFFFFF" enable-background="new " d="M19.3,38.5c-0.1,0-0.2,0-0.2-0.1c-0.1-0.1-0.2-0.2-0.2-0.4V21.1 - c0-0.2,0.1-0.3,0.2-0.4l14.7-8.5c0.1-0.1,0.3-0.1,0.4,0c0.1,0.1,0.2,0.2,0.2,0.4v16.9c0,0.2-0.1,0.3-0.2,0.4l-14.7,8.5 - C19.4,38.4,19.3,38.5,19.3,38.5"/> -<path fill="#FCD116" d="M42.5,28.3c-0.4,0-0.6-0.3-0.4-0.6l5.5-9.2H36.3l-5.9,15.6c-0.2,0.4,0.1,0.7,0.5,0.7h5.7 - c0.4,0,0.6,0.3,0.5,0.7l-5.8,14.2c-0.2,0.4-0.1,0.4,0.2,0.1l18.4-21c0.3-0.3,0.2-0.6-0.2-0.5L42.5,28.3z"/> -<path opacity="0.3" fill="#FF8C00" d="M36.6,34.8c0.4,0,0.6,0.3,0.5,0.7l-5.8,14.2c-0.2,0.4-0.1,0.4,0.2,0.1l8.1-15H36.6z"/> -<path opacity="0.3" fill="#FF8C00" d="M30.9,34.8h1.7l7.6-16.3h-3.9l-5.9,15.6C30.3,34.5,30.5,34.8,30.9,34.8z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="50" width="50"><path fill="#3999c6" d="M17.2 17.8c-.1 0-.1 0-.2-.1L2.3 9.3a.76.76 0 0 1-.2-.4c0-.2.1-.3.2-.4L16.9.1c.1-.1.3-.1.4 0L32 8.6c.1.1.2.2.2.4s-.1.3-.2.4l-14.6 8.4h-.2"/><g fill="#59b4d9"><path d="M15.1 38.5c-.1 0-.2 0-.2-.1L.2 29.9c-.1 0-.2-.2-.2-.4v-17c0-.2.1-.3.2-.4s.3-.1.4 0l14.7 8.5c.1.1.2.2.2.4v17c0 .2-.1.3-.2.4 0 0-.1.1-.2.1"/><use xlink:href="#B"/></g><use xlink:href="#B" opacity=".5" fill="#fff"/><path fill="#fcd116" d="M42.5 28.3c-.4 0-.6-.3-.4-.6l5.5-9.2H36.3l-5.9 15.6c-.2.4.1.7.5.7h5.7c.4 0 .6.3.5.7l-5.8 14.2c-.2.4-.1.4.2.1l18.4-21c.3-.3.2-.6-.2-.5h-7.2z"/><path opacity=".3" d="M36.6 34.8c.4 0 .6.3.5.7l-5.8 14.2c-.2.4-.1.4.2.1l8.1-15h-3zm-5.7 0h1.7l7.6-16.3h-3.9l-5.9 15.6c-.1.4.1.7.5.7z" fill="#ff8c00"/><defs ><path id="B" d="M19.3 38.5c-.1 0-.2 0-.2-.1-.1-.1-.2-.2-.2-.4V21.1c0-.2.1-.3.2-.4l14.7-8.5c.1-.1.3-.1.4 0s.2.2.2.4v16.9c0 .2-.1.3-.2.4l-14.7 8.5c-.1 0-.2.1-.2.1"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/ResourceRole.svg b/src/main/webapp/img/lib/mscae/ResourceRole.svg index a745c6f56f6c821a93a43d98ca45d2f746490769..96b4bb313d8059f5be3454fc413c9854ee9074d6 100644 --- a/src/main/webapp/img/lib/mscae/ResourceRole.svg +++ b/src/main/webapp/img/lib/mscae/ResourceRole.svg @@ -1,90 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="49.700001" - width="48.200001" - viewBox="0 0 48.200001 49.700001" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="ResourceRole.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata3992"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs3990" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview3988" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.020815" - inkscape:cx="24.537055" - inkscape:cy="19.880706" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 28.4,10.2 c 0,5.6 -4.6,10.2 -10.2,10.2 C 12.6,20.4 8,15.9 8,10.2 8,4.6 12.6,0 18.2,0 23.9,0 28.4,4.6 28.4,10.2" - id="path3971" - inkscape:connector-curvature="0" - style="fill:#b8d432" /> -<polygon - points="10.8,24.1 0,24.1 0,49.9 36.5,49.9 36.5,24.1 25.7,24.1 18.2,34.6 " - id="polygon3973" - style="fill:#b8d432" - transform="translate(0,-0.2)" /> -<path - d="m 8,10.2 c 0,5.6 4.4,10.1 10,10.2 L 20.6,0.3 C 19.9,0.1 19.1,0 18.3,0 12.6,0 8,4.6 8,10.2" - id="path3975" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#ffffff" /> -<polygon - points="0,49.9 14.3,49.9 16.6,32.3 10.8,24.1 0,24.1 " - id="polygon3977" - style="opacity:0.2;fill:#ffffff" - transform="translate(0,-0.2)" /> -<path - d="m 37.7,37.1 c 0,0 -0.1,0 -0.1,0 l -9,-5.2 c -0.1,0 -0.1,-0.1 -0.1,-0.2 0,-0.1 0.1,-0.2 0.1,-0.2 l 9,-5.2 c 0.1,0 0.2,0 0.3,0 l 9,5.2 c 0.1,0 0.1,0.1 0.1,0.2 0,0.1 -0.1,0.2 -0.1,0.2 l -9,5.2 c -0.1,-0.1 -0.2,0 -0.2,0" - id="path3979" - inkscape:connector-curvature="0" - style="fill:#3999c6" /> -<path - d="m 36.4,49.7 c 0,0 -0.1,0 -0.1,0 l -9,-5.2 c -0.1,0 -0.1,-0.1 -0.1,-0.2 V 33.8 c 0,-0.1 0.1,-0.2 0.1,-0.2 0.1,0 0.2,0 0.3,0 l 9,5.2 c 0.1,0.1 0.1,0.1 0.1,0.2 v 10.4 c 0,0.1 -0.1,0.2 -0.1,0.2 -0.1,0.1 -0.2,0.1 -0.2,0.1" - id="path3981" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="m 38.9,49.7 c 0,0 -0.1,0 -0.1,0 -0.1,0 -0.1,-0.1 -0.1,-0.2 V 39.1 c 0,-0.1 0.1,-0.2 0.1,-0.2 l 9,-5.2 c 0.1,0 0.2,0 0.3,0 0.1,0 0.1,0.1 0.1,0.2 v 10.4 c 0,0.1 -0.1,0.2 -0.1,0.2 l -9,5.2 c -0.1,0 -0.1,0 -0.2,0" - id="path3983" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="m 38.9,49.7 c 0,0 -0.1,0 -0.1,0 -0.1,0 -0.1,-0.1 -0.1,-0.2 V 39.1 c 0,-0.1 0.1,-0.2 0.1,-0.2 l 9,-5.2 c 0.1,0 0.2,0 0.3,0 0.1,0 0.1,0.1 0.1,0.2 v 10.4 c 0,0.1 -0.1,0.2 -0.1,0.2 l -9,5.2 c -0.1,0 -0.1,0 -0.2,0" - id="path3985" - inkscape:connector-curvature="0" - style="opacity:0.5;fill:#ffffff" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="49.7" width="48.2"><path d="M28.4 10.2c0 5.6-4.6 10.2-10.2 10.2A10.18 10.18 0 0 1 8 10.2C8 4.6 12.6 0 18.2 0a10.18 10.18 0 0 1 10.2 10.2M10.8 23.9H0v25.8h36.5V23.9H25.7l-7.5 10.5z" fill="#b8d432"/><path d="M8 10.2c0 5.6 4.4 10.1 10 10.2L20.6.3c-.7-.2-1.5-.3-2.3-.3C12.6 0 8 4.6 8 10.2M0 49.7h14.3l2.3-17.6-5.8-8.2H0z" opacity=".2" fill="#fff"/><path d="M37.7 37.1h-.1l-9-5.2c-.1 0-.1-.1-.1-.2s.1-.2.1-.2l9-5.2h.3l9 5.2c.1 0 .1.1.1.2s-.1.2-.1.2l-9 5.2c-.1-.1-.2 0-.2 0" fill="#3999c6"/><g fill="#59b4d9"><path d="M36.4 49.7h-.1l-9-5.2c-.1 0-.1-.1-.1-.2V33.8c0-.1.1-.2.1-.2h.3l9 5.2c.1.1.1.1.1.2v10.4c0 .1-.1.2-.1.2-.1.1-.2.1-.2.1"/><use xlink:href="#B"/></g><use xlink:href="#B" opacity=".5" fill="#fff"/><defs ><path id="B" d="M38.9 49.7h-.1c-.1 0-.1-.1-.1-.2V39.1c0-.1.1-.2.1-.2l9-5.2h.3c.1 0 .1.1.1.2v10.4c0 .1-.1.2-.1.2l-9 5.2h-.2"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Resource_Explorer.svg b/src/main/webapp/img/lib/mscae/Resource_Explorer.svg new file mode 100644 index 0000000000000000000000000000000000000000..aa9dba0e4f26070fbe243126be2f43e9fda3f55f --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Resource_Explorer.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="46.149"><path d="M48.066 9.912V5.935H21.898L15.964 0H.001v43.708a2.37 2.37 0 0 0 2.37 2.372H47.63c1.3-.001 2.37-1.062 2.37-2.372V9.912z" fill="#fee087"/><path d="M26.177 25.945a.32.32 0 0 1-.155-.044l-10.175-5.873a.31.31 0 0 1 0-.533L25.96 13.66c.095-.053.21-.053.306 0l10.178 5.876c.094.055.152.156.152.265s-.057.212-.152.267L26.332 25.9c-.047.028-.1.044-.155.044" fill="#dd5900"/><g fill="#ff8c00"><path d="M24.715 40.22c-.054.001-.108-.013-.155-.04l-10.144-5.855c-.097-.054-.157-.156-.156-.267V22.31a.31.31 0 0 1 .156-.269c.097-.053.213-.053.3 0l10.143 5.855a.32.32 0 0 1 .15.268v11.75c0 .113-.06.21-.15.267-.047.027-.1.04-.154.04"/><path d="M27.586 40.22c-.055 0-.11-.014-.157-.04a.31.31 0 0 1-.152-.267V28.24c0-.1.06-.21.152-.268l10.14-5.853a.31.31 0 0 1 .462.266v11.674c0 .11-.06.213-.156.267l-10.14 5.855c-.045.028-.097.042-.15.04" opacity=".5"/></g><path d="M4.743 9.912v33.796a2.37 2.37 0 0 1-3.577 2.112 2.37 2.37 0 0 1-1.165-2.112V0h15.963l5.934 5.935h26.168v3.977H4.743z" opacity=".2" fill="#1e1e1e"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Resource_Graph_Explorer.svg b/src/main/webapp/img/lib/mscae/Resource_Graph_Explorer.svg new file mode 100644 index 0000000000000000000000000000000000000000..ec599c9e6796f70c2155542d3e249133dc4bd28b --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Resource_Graph_Explorer.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="48.8" height="47.8"><g fill="#a0a1a2"><path d="M5.35 10.163l3.1-2.527 22 27-3.1 2.526z"/><path d="M6.9 6.9h33v4h-33z"/></g><circle cx="6.9" cy="8.9" r="6.9" fill="#804998"/><circle cx="6.9" cy="8.9" r="6.9" opacity=".2" fill="#fff"/><circle cx="39.9" cy="8.9" r="8.9" fill="#804998"/><circle cx="39.9" cy="8.9" r="8.9" opacity=".1" fill="#fff"/><circle cx="28.9" cy="35.9" r="11.9" fill="#804998"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Resource_Groups.svg b/src/main/webapp/img/lib/mscae/Resource_Groups.svg new file mode 100644 index 0000000000000000000000000000000000000000..e8cad14876976cab1817200dfe30277b11dbeb85 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Resource_Groups.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="40.342"><path d="M25.047 17.818a.43.43 0 0 1-.22-.064l-14.71-8.5c-.14-.08-.223-.228-.223-.39s.083-.304.223-.382L24.732.058a.45.45 0 0 1 .442 0l14.714 8.495c.133.078.22.224.22.382a.45.45 0 0 1-.221.387l-14.62 8.433a.44.44 0 0 1-.222.063" fill="#3999c6"/><g fill="#59b4d9"><path d="M22.932 38.455c-.08 0-.158-.02-.226-.06L8.042 29.932c-.142-.08-.226-.224-.226-.386V12.56a.45.45 0 0 1 .226-.389c.134-.077.306-.077.448 0l14.662 8.464a.45.45 0 0 1 .218.387V38c0 .163-.083.305-.218.386a.44.44 0 0 1-.22.059"/><use xlink:href="#B"/></g><use xlink:href="#B" opacity=".5" fill="#fff"/><path d="M9.558 40.342a1.45 1.45 0 0 1-.726-.195l-6.845-3.952C.835 35.53 0 34.082 0 32.753V7.6a4.21 4.21 0 0 1 1.987-3.441L8.832.196c.697-.4 1.586-.163 1.987.532s.163 1.585-.532 1.987L3.442 6.667c-.243.14-.532.64-.532.922v25.164c0 .28.3.782.532.922l6.845 3.952c.696.402.934 1.3.532 1.987-.27.467-.758.728-1.26.728zM40.442 0a1.45 1.45 0 0 1 .726.195l6.845 3.952C49.165 4.813 50 6.26 50 7.6v25.164a4.21 4.21 0 0 1-1.987 3.441l-6.845 3.952c-.697.4-1.586.163-1.987-.532s-.163-1.585.532-1.987l6.845-3.952c.243-.14.532-.64.532-.922V7.6c0-.28-.3-.782-.532-.922l-6.845-3.952c-.696-.402-.934-1.3-.532-1.987A1.45 1.45 0 0 1 40.442 0z" fill="#7a7a7a"/><defs ><path id="B" d="M27.08 38.455c-.075 0-.152-.02-.226-.06-.136-.08-.22-.223-.22-.386V21.133a.45.45 0 0 1 .22-.387l14.66-8.46a.46.46 0 0 1 .448 0 .45.45 0 0 1 .22.385v16.877c0 .162-.085.306-.22.386l-14.665 8.464a.4.4 0 0 1-.217.058"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Route_Filter.svg b/src/main/webapp/img/lib/mscae/Route_Filter.svg index 9bd210e31fd84cebb7675d943c51dbaf73a685e5..40aad89d6b8f1f773e53ba0b168bfb83aa9c5a08 100644 --- a/src/main/webapp/img/lib/mscae/Route_Filter.svg +++ b/src/main/webapp/img/lib/mscae/Route_Filter.svg @@ -1,100 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50.042999" - height="42.007999" - viewBox="0 0 50.042999 42.007999" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="azure_route_filter.svg"><metadata - id="metadata29"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs27" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview25" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="10.363697" - inkscape:cx="25.25722" - inkscape:cy="13.584105" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><polygon - points="41.681,36.313 39.199,46 30.594,40.905 " - id="polygon3" - style="fill:#804998" - transform="translate(0,-3.992)" /><path - d="M 24.025,22.004 C 24.025,22.004 23.55,22.866 23.025,23.004 29.619,23.004 33.927,33.954 36.494,40.344 L 39.825,39.382 C 37.202,32.443 34.025,22.004 24.025,22.004 Z" - id="path5" - inkscape:connector-curvature="0" - style="fill:#804998" /><polygon - points="41.681,13.679 39.199,3.992 30.594,9.087 " - id="polygon7" - style="fill:#804998" - transform="translate(0,-3.992)" /><path - d="M 24.025,20.004 C 24.025,20.004 23.55,19.142 23.025,19.004 29.619,19.004 33.927,8.054 36.494,1.664 L 39.825,2.626 C 37.202,9.565 34.025,20.004 24.025,20.004 Z" - id="path9" - inkscape:connector-curvature="0" - style="fill:#804998" /><polygon - points="42.043,18.996 50.043,24.996 42.043,30.996 " - id="polygon11" - style="fill:#804998" - transform="translate(0,-3.992)" /><rect - x="19.004" - y="-45.203999" - transform="matrix(0,1,-1,0,0,0)" - width="4.0040002" - height="24.204" - id="rect13" - style="fill:#804998" /><path - d="M 4.754,34.008 19,34.008 C 21.625,34.008 23.754,31.88 23.754,29.254 L 23.754,12.758 C 23.754,10.133 21.626,8.004 19,8.004 L 4.754,8.004 C 2.128,8.004 0,10.132 0,12.758 L 0,29.255 C 0,31.88 2.128,34.008 4.754,34.008 Z" - id="path15" - inkscape:connector-curvature="0" - style="fill:#7fba00" /><path - d="M 4.754,34.008 19,8.004 4.754,8.004 C 2.128,8.004 0,10.132 0,12.758 L 0,29.255 C 0,31.88 2.128,34.008 4.754,34.008 Z" - id="path17" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#ffffff" /><rect - x="14" - y="18.004" - width="6" - height="6" - id="rect19" - style="fill:#ffffff" /><rect - x="4" - y="12.008" - width="6" - height="6" - id="rect21" - style="fill:#ffffff" /><rect - x="4" - y="24.007999" - width="6" - height="6" - id="rect23" - style="fill:#ffffff" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50.043" height="42.008"><g fill="#804998"><path d="M41.68 32.32L39.2 42.008l-8.605-5.095z"/><path d="M24.025 22.004s-.475.862-1 1c6.594 0 10.902 10.95 13.47 17.34l3.33-.962c-2.623-6.94-5.8-17.378-15.8-17.378zM41.68 9.687L39.2 0l-8.605 5.095z"/><path d="M24.025 20.004s-.475-.862-1-1c6.594 0 10.902-10.95 13.47-17.34l3.33.962c-2.623 6.94-5.8 17.378-15.8 17.378zm18.018-5l8 6-8 6z"/><path d="M45.204 19.004v4.004H21v-4.004z"/></g><path d="M4.754 34.008H19c2.625 0 4.754-2.128 4.754-4.754V12.758c0-2.625-2.128-4.754-4.754-4.754H4.754C2.128 8.004 0 10.132 0 12.758v16.497c0 2.625 2.128 4.753 4.754 4.753z" fill="#7fba00"/><g fill="#fff"><path d="M4.754 34.008L19 8.004H4.754C2.128 8.004 0 10.132 0 12.758v16.497c0 2.625 2.128 4.753 4.754 4.753z" opacity=".2"/><path d="M14 18.004h6v6h-6zM4 12.008h6v6H4zm0 12h6v6H4z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Rule.svg b/src/main/webapp/img/lib/mscae/Rule.svg index 32bf39d5b96054377416b7bce1a428ec3d20e9b9..90f87c69d7fac119e3dee98f7c280815459ed1c2 100644 --- a/src/main/webapp/img/lib/mscae/Rule.svg +++ b/src/main/webapp/img/lib/mscae/Rule.svg @@ -1,72 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - viewBox="0 0 32.424999 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Rule.svg" - width="32.424999" - height="50" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata4072"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs4070" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview4068" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="16.225" - inkscape:cy="25" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 24.525,24.9 c -2.2,2 -5.1,3.2 -8.3,3.2 -3.2,0 -6.1,-1.2 -8.3,-3.2 l -1.2,25.1 9.5,-9.6 9.5,9.6 z" - id="path4059" - inkscape:connector-curvature="0" - style="fill:#ba141a" /> -<circle - cx="16.225" - cy="16.200001" - r="16.200001" - id="circle4061" - style="fill:#dd5900" /> -<circle - cx="16.225" - cy="16.200001" - r="12.2" - id="circle4063" - style="fill:#ff8c00" /> -<path - d="m 4.725,27.7 c -6.3,-6.3 -6.3,-16.6 0,-22.9 6.3,-6.3 16.6,-6.3 22.9,0 z" - id="path4065" - inkscape:connector-curvature="0" - style="opacity:0.15;fill:#ffffff" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="32.425" height="50"><path d="M24.525 24.9c-2.2 2-5.1 3.2-8.3 3.2s-6.1-1.2-8.3-3.2L6.725 50l9.5-9.6 9.5 9.6z" fill="#ba141a"/><circle cx="16.225" cy="16.2" r="16.2" fill="#dd5900"/><circle cx="16.225" cy="16.2" r="12.2" fill="#ff8c00"/><path d="M4.725 27.7c-6.3-6.3-6.3-16.6 0-22.9s16.6-6.3 22.9 0z" opacity=".15" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/RunbookSource.svg b/src/main/webapp/img/lib/mscae/RunbookSource.svg index 786e1cfbc7030be1e4d52e31135c491a52e8e1a5..51a71620cecd3a931c94e0a989909d031f6b3799 100644 --- a/src/main/webapp/img/lib/mscae/RunbookSource.svg +++ b/src/main/webapp/img/lib/mscae/RunbookSource.svg @@ -1,18 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#0072C6" d="M0,48c0,1.1,0.9,2,2,2h46c1.1,0,2-0.9,2-2V8.6H0V48z"/> -<path fill="#A0A1A2" d="M48,0H2C0.9,0,0,0.9,0,2v7.3h50V2C50,0.9,49.1,0,48,0z"/> -<path opacity="0.1" fill="#FFFFFF" d="M2,0C0.9,0,0,0.9,0,2v7.3v3.3V48c0,1.1,0.9,2,2,2h19.2L43.6,0H2z"/> -<path fill-rule="evenodd" clip-rule="evenodd" fill="#E5E5E5" d="M34.6,28.8H15.4c-0.8,0-1.5,0.7-1.5,1.7v7.2l2.6,0.7v-7h16.9v7 - l2.6-0.7v-7.2C36.1,29.5,35.4,28.8,34.6,28.8z"/> -<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#E5E5E5" points="26.3,31.2 23.7,31.2 23.7,24.1 26.3,24.1 "/> -<path fill-rule="evenodd" clip-rule="evenodd" fill="#59B4D9" d="M29.3,13h-8.5c-0.9,0-1.7,0.7-1.7,1.7v8c0,0.9,0.7,1.7,1.7,1.7h8.5 - c0.9,0,1.7-0.7,1.7-1.7v-8C30.9,13.7,30.2,13,29.3,13z"/> -<path fill-rule="evenodd" clip-rule="evenodd" fill="#59B4D9" d="M19.4,35.7h-8.5c-0.9,0-1.7,0.7-1.7,1.7v8c0,0.9,0.7,1.7,1.7,1.7 - h8.5c0.9,0,1.7-0.7,1.7-1.7v-8C21.1,36.5,20.3,35.7,19.4,35.7z"/> -<path fill-rule="evenodd" clip-rule="evenodd" fill="#59B4D9" d="M39.1,35.7h-8.5c-0.9,0-1.7,0.7-1.7,1.7v8c0,0.9,0.7,1.7,1.7,1.7 - h8.5c0.9,0,1.7-0.7,1.7-1.7v-8C40.7,36.5,40,35.7,39.1,35.7z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path fill="#0072c6" d="M0 48c0 1.1.9 2 2 2h46c1.1 0 2-.9 2-2V8.6H0V48z"/><path fill="#a0a1a2" d="M48 0H2C.9 0 0 .9 0 2v7.3h50V2c0-1.1-.9-2-2-2z"/><path opacity=".1" fill="#fff" d="M2 0C.9 0 0 .9 0 2v46c0 1.1.9 2 2 2h19.2L43.6 0H2z"/><g fill-rule="evenodd"><g fill="#e5e5e5"><path d="M34.6 28.8H15.4c-.8 0-1.5.7-1.5 1.7v7.2l2.6.7v-7h16.9v7l2.6-.7v-7.2c.1-1-.6-1.7-1.4-1.7z"/><path d="M26.3 31.2h-2.6v-7.1h2.6z"/></g><path d="M29.3 13h-8.5c-.9 0-1.7.7-1.7 1.7v8c0 .9.7 1.7 1.7 1.7h8.5c.9 0 1.7-.7 1.7-1.7v-8c-.1-1-.8-1.7-1.7-1.7zm-9.9 22.7h-8.5c-.9 0-1.7.7-1.7 1.7v8c0 .9.7 1.7 1.7 1.7h8.5c.9 0 1.7-.7 1.7-1.7v-8c0-.9-.8-1.7-1.7-1.7zm19.7 0h-8.5c-.9 0-1.7.7-1.7 1.7v8c0 .9.7 1.7 1.7 1.7h8.5c.9 0 1.7-.7 1.7-1.7v-8c-.1-.9-.8-1.7-1.7-1.7z" fill="#59b4d9"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Runbooks.svg b/src/main/webapp/img/lib/mscae/Runbooks.svg index 5814417cbcb1b030419cea5dfc13e8dfc9f470c0..afeb9407f33d8ca8c9843e5e2012e74af0212b58 100644 --- a/src/main/webapp/img/lib/mscae/Runbooks.svg +++ b/src/main/webapp/img/lib/mscae/Runbooks.svg @@ -1,69 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="49.900002" - width="46.206318" - viewBox="0 0 46.206318 49.900002" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure Automation - Runbooks_COLOR.svg"><metadata - id="metadata17"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs15" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview13" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="16.059063" - inkscape:cx="23.1" - inkscape:cy="24.9" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 37.2,23.2 9,23.2 C 7.8,23.2 6.7,24.2 6.7,25.7 L 6.7,36.4 10.6,37.5 10.6,27.1 35.5,27.1 35.5,37.4 39.4,36.3 39.4,25.7 C 39.4,24.2 38.3,23.2 37.2,23.2 Z" - id="path3" - inkscape:connector-curvature="0" - style="clip-rule:evenodd;fill:#7a7a7a;fill-rule:evenodd" /><rect - x="21.1" - y="16.4" - width="3.9000001" - height="10.4" - id="rect5" - style="clip-rule:evenodd;fill:#7a7a7a;fill-rule:evenodd" /><path - d="M 29.4,0 16.8,0 C 15.5,0 14.4,1.1 14.4,2.4 L 14.4,14.1 C 14.4,15.4 15.5,16.5 16.8,16.5 L 29.3,16.5 C 30.6,16.5 31.7,15.4 31.7,14.1 L 31.7,2.4 C 31.8,1.1 30.7,0 29.4,0 Z" - id="path7" - inkscape:connector-curvature="0" - style="clip-rule:evenodd;fill:#59b4d9;fill-rule:evenodd" /><path - d="M 14.9,33.4 2.4,33.4 C 1.1,33.4 0,34.5 0,35.8 L 0,47.5 C 0,48.8 1.1,49.9 2.4,49.9 L 14.9,49.9 C 16.2,49.9 17.3,48.8 17.3,47.5 L 17.3,35.8 C 17.3,34.5 16.2,33.4 14.9,33.4 Z" - id="path9" - inkscape:connector-curvature="0" - style="clip-rule:evenodd;fill:#59b4d9;fill-rule:evenodd" /><path - d="M 43.8,33.4 31.3,33.4 C 30,33.4 28.9,34.5 28.9,35.8 L 28.9,47.5 C 28.9,48.8 30,49.9 31.3,49.9 L 43.8,49.9 C 45.1,49.9 46.2,48.8 46.2,47.5 L 46.2,35.8 C 46.3,34.5 45.2,33.4 43.8,33.4 Z" - id="path11" - inkscape:connector-curvature="0" - style="clip-rule:evenodd;fill:#59b4d9;fill-rule:evenodd" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" height="49.9" width="46.206"><g fill="#7a7a7a" fill-rule="evenodd"><path d="M37.2 23.2H9c-1.2 0-2.3 1-2.3 2.5v10.7l3.9 1.1V27.1h24.9v10.3l3.9-1.1V25.7c0-1.5-1.1-2.5-2.2-2.5z"/><path d="M21.1 16.4H25v10.4h-3.9z"/></g><path d="M29.4 0H16.8c-1.3 0-2.4 1.1-2.4 2.4v11.7c0 1.3 1.1 2.4 2.4 2.4h12.5c1.3 0 2.4-1.1 2.4-2.4V2.4c.1-1.3-1-2.4-2.3-2.4zM14.9 33.4H2.4c-1.3 0-2.4 1.1-2.4 2.4v11.7c0 1.3 1.1 2.4 2.4 2.4h12.5c1.3 0 2.4-1.1 2.4-2.4V35.8c0-1.3-1.1-2.4-2.4-2.4zm28.9 0H31.3c-1.3 0-2.4 1.1-2.4 2.4v11.7c0 1.3 1.1 2.4 2.4 2.4h12.5c1.3 0 2.4-1.1 2.4-2.4V35.8c.1-1.3-1-2.4-2.4-2.4z" fill-rule="evenodd" fill="#59b4d9"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/SAP_HANA_on_Azure.svg b/src/main/webapp/img/lib/mscae/SAP_HANA_on_Azure.svg new file mode 100644 index 0000000000000000000000000000000000000000..5833a12ee962f536fc6b1a6f54cc4dca38355fea --- /dev/null +++ b/src/main/webapp/img/lib/mscae/SAP_HANA_on_Azure.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="48" height="24.005"><path d="M0 24h24.26L48 0H0v24" fill="#0072c6"/><path d="M27.703 4.992H23.19v10.73L19.245 4.99h-3.91l-3.367 8.98c-.36-2.263-2.7-3.045-4.542-3.63-1.216-.39-2.507-.965-2.494-1.6.01-.522.692-1.006 2.043-.932a7.38 7.38 0 0 1 3.304.89l1.568-2.73a12.18 12.18 0 0 0-5.113-1.215h-.01a6.21 6.21 0 0 0-4.517 1.649c-.687.705-1.074 1.65-1.08 2.633-.08 1.25.51 2.45 1.55 3.153a10.54 10.54 0 0 0 3.069 1.404C7 13.98 8.023 14.317 8 15.037a1.05 1.05 0 0 1-.295.703 1.99 1.99 0 0 1-1.455.456c-1.328.05-2.637-.324-3.736-1.07l-1.394 2.77c1.558.885 3.318 1.354 5.1 1.36h.234a6.16 6.16 0 0 0 3.884-1.302l.165-.142-.453 1.21h4.1l.69-2.093a7.45 7.45 0 0 0 2.41.382c.798.004 1.592-.118 2.352-.362l.663 2.073h6.687v-4.336h1.46c3.525 0 5.6-1.796 5.6-4.804.001-3.353-2.025-4.89-6.337-4.89zM17.27 14.176c-.493.004-.983-.082-1.446-.253l1.433-4.514h.028l1.405 4.527a4.27 4.27 0 0 1-1.42.24zm10.7-2.594h-.997V7.945h.994c1.326 0 2.388.44 2.388 1.795 0 1.4-1.058 1.842-2.388 1.842" fill="#fff"/><g fill="#0072c6"><path d="M31.162 20.875a1.44 1.44 0 1 1 0 2.88 1.44 1.44 0 1 1 0-2.88m0-.25a1.69 1.69 0 0 0-1.464 2.535 1.69 1.69 0 0 0 3.154-.845 1.69 1.69 0 0 0-1.69-1.69z"/><path d="M31.473 22.42a.46.46 0 0 0 .463-.457l-.001-.03c0-.347-.208-.5-.625-.5h-.674v1.77h.267l.003-.768h.31l.465.766h.3zm-.568-.215v-.55h.362c.185 0 .383.04.383.26 0 .275-.2.29-.427.29z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/SDK.svg b/src/main/webapp/img/lib/mscae/SDK.svg index d323e362bccd2a7045784d2c945e2177da0201c3..181df839113ffade0d76a44315c84c13ae7d4e17 100644 --- a/src/main/webapp/img/lib/mscae/SDK.svg +++ b/src/main/webapp/img/lib/mscae/SDK.svg @@ -1,22 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - height="50px" width="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#59B4D9" d="M30.9,46.7L29,43.6l1.8-3.2H36c-1.1-1.9-3.2-3.2-5.5-3.2c-2.4,0-4.5,1.3-5.6,3.2H11.1 - c-1.1-1.9-3.2-3.2-5.6-3.2c-2.4,0-4.4,1.3-5.5,3.2h5.1L7,43.6l-1.8,3.2H0c1.1,1.9,3.2,3.2,5.5,3.2c2.5,0,4.6-1.4,5.7-3.5l13.5,0 - c1.1,2.1,3.2,3.5,5.7,3.5c2.4,0,4.4-1.3,5.5-3.2L30.9,46.7z"/> -<g> - <g> - <path fill="#59B4D9" d="M29.7,18.4c-1.3,0-2.4,0.8-2.9,1.9H8.2v0c-3.1,0-5.7-2.6-5.7-5.7s2.6-5.7,5.7-5.7v0h0.1h0h2.6 - C11,8.2,11.2,7.6,11.4,7c0.1-0.2,0.2-0.4,0.3-0.7c1.3-2.3,3.8-3.8,6.6-3.8c2.5,0,4.7,1.2,6.1,3.1c0.8-0.4,1.6-0.6,2.5-0.8 - C25.2,1.9,22,0,18.4,0C14.1,0,10.5,2.6,9,6.4c0,0,0,0,0,0l0,0c0,0,0,0,0,0H8.2C3.7,6.4,0,10,0,14.6c0,4.5,3.7,8.2,8.2,8.2h18.6 - c0.5,1.1,1.6,1.9,2.9,1.9c1.7,0,3.2-1.4,3.2-3.2S31.5,18.4,29.7,18.4z"/> - <path fill="#59B4D9" d="M40,12.1c-1.9-3.8-5.7-6.3-10.2-6.3c-5.4,0-10,3.8-11.1,8.9c-2.6,0.3-4.9,1.7-6.4,3.7h13.6 - c0.9-1.2,2.4-1.9,3.9-1.9c2.8,0,5.1,2.3,5.1,5.1s-2.3,5.1-5.1,5.1c-1.6,0-3-0.7-3.9-1.9H10.7c0.6,4.3,4.3,7.6,8.8,7.6c0,0,0,0,0,0 - v0h20.3v0c0,0,0,0,0,0c5.6,0,10.1-4.5,10.1-10.1C50,16.6,45.5,12.1,40,12.1z"/> - </g> -</g> -<path fill="#59B4D9" d="M50,44.4V43l-0.2-0.1l-1.5-0.5l-0.4-1l0.8-1.7l-1-1l-0.2,0.1L46,39.6l-1-0.4l-0.6-1.7H43l-0.1,0.2l-0.5,1.5 - l-1,0.4l-1.7-0.8l-1,1l0.1,0.2l0.7,1.4l-0.4,1l-1.7,0.6v1.4l0.2,0.1l1.5,0.5l0.4,1l-0.8,1.7l1,1l0.2-0.1l1.4-0.7l1,0.4l0.6,1.7h1.4 - l0.1-0.2l0.5-1.5l1-0.4l1.7,0.8l1-1l-0.1-0.2L47.9,46l0.4-1L50,44.4z M43.8,45.7c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2 - C45.7,44.8,44.8,45.7,43.8,45.7"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" height="50" width="50" fill="#59b4d9"><path d="M30.9 46.7L29 43.6l1.8-3.2H36c-1.1-1.9-3.2-3.2-5.5-3.2-2.4 0-4.5 1.3-5.6 3.2H11.1c-1.1-1.9-3.2-3.2-5.6-3.2S1.1 38.5 0 40.4h5.1L7 43.6l-1.8 3.2H0C1.1 48.7 3.2 50 5.5 50c2.5 0 4.6-1.4 5.7-3.5h13.5c1.1 2.1 3.2 3.5 5.7 3.5 2.4 0 4.4-1.3 5.5-3.2l-5-.1zm-1.2-28.3c-1.3 0-2.4.8-2.9 1.9H8.2c-3.1 0-5.7-2.6-5.7-5.7s2.6-5.7 5.7-5.7h2.7c.1-.7.3-1.3.5-1.9.1-.2.2-.4.3-.7C13 4 15.5 2.5 18.3 2.5c2.5 0 4.7 1.2 6.1 3.1.8-.4 1.6-.6 2.5-.8C25.2 1.9 22 0 18.4 0 14.1 0 10.5 2.6 9 6.4h-.8C3.7 6.4 0 10 0 14.6a8.24 8.24 0 0 0 8.2 8.2h18.6c.5 1.1 1.6 1.9 2.9 1.9 1.7 0 3.2-1.4 3.2-3.2s-1.4-3.1-3.2-3.1zM40 12.1c-1.9-3.8-5.7-6.3-10.2-6.3-5.4 0-10 3.8-11.1 8.9-2.6.3-4.9 1.7-6.4 3.7h13.6c.9-1.2 2.4-1.9 3.9-1.9 2.8 0 5.1 2.3 5.1 5.1s-2.3 5.1-5.1 5.1c-1.6 0-3-.7-3.9-1.9H10.7c.6 4.3 4.3 7.6 8.8 7.6h20.3a10.07 10.07 0 0 0 10.1-10.1c.1-5.7-4.4-10.2-9.9-10.2zm10 32.3V43l-.2-.1-1.5-.5-.4-1 .8-1.7-1-1-.2.1-1.5.8-1-.4-.6-1.7H43l-.1.2-.5 1.5-1 .4-1.7-.8-1 1 .8 1.6-.4 1-1.7.6v1.4l.2.1 1.5.5.4 1-.8 1.7 1 1 1.6-.8 1 .4.6 1.7h1.4l.1-.2.5-1.5 1-.4 1.7.8 1-1-.1-.2-.6-1.5.4-1 1.7-.6zm-6.2 1.3c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2c-.1 1.1-1 2-2 2"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/SQLQueryPerformanceCheck.svg b/src/main/webapp/img/lib/mscae/SQLQueryPerformanceCheck.svg index 9da4b607c4a0d77ca4b7941875c286cd26c2408e..b9888864ab681535b45c4f003f72e9bb52381fdf 100644 --- a/src/main/webapp/img/lib/mscae/SQLQueryPerformanceCheck.svg +++ b/src/main/webapp/img/lib/mscae/SQLQueryPerformanceCheck.svg @@ -1,29 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" style="enable-background:new 0 0 50 50;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#59B4D9;} - .st1{fill:#3999C6;} - .st2{fill:#FFFFFF;} - .st3{fill:#7FBA00;} - .st4{fill:#B8D432;} - .st5{fill:#A0A1A2;} - .st6{fill:#7A7A7A;} - .st7{fill:#804998;} -</style> -<path class="st0" d="M18.5,50h0.3c10.4,0,18.8-3,18.8-6.8V6.9H18.5V50L18.5,50z"/> -<path class="st1" d="M0,6.9v36.3C0,47,8.4,50,18.8,50V6.9H0L0,6.9z"/> -<path class="st2" d="M37.6,6.8c0,3.8-8.4,6.8-18.8,6.8S0,10.6,0,6.8S8.4,0,18.8,0S37.6,3,37.6,6.8"/> -<path class="st3" d="M33.7,6.4c0,2.5-6.7,4.5-14.9,4.5S3.9,8.9,3.9,6.4s6.7-4.5,14.9-4.5S33.7,3.9,33.7,6.4"/> -<path class="st4" d="M30.6,9.2c2-0.8,3.1-1.8,3.1-2.8c0-2.5-6.7-4.5-14.9-4.5S3.9,3.9,3.9,6.4c0,1,1.1,2,3.1,2.8 - c2.8-1,7-1.8,11.8-1.8S27.8,8.2,30.6,9.2"/> -<polygon class="st2" points="12.2,47.6 47.6,47.6 47.6,35.8 12.2,35.8 "/> -<path class="st5" d="M12.2,47.6h35.4V35.8H12.2V47.6z M9.9,50V33.5H50V50H9.9z"/> -<rect x="15.8" y="38.2" class="st6" width="2.4" height="7.1"/> -<circle class="st7" cx="9.9" cy="27" r="6.5"/> -<circle class="st7" cx="21.7" cy="15.2" r="6.5"/> -<circle class="st7" cx="31.1" cy="27" r="6.5"/> -<circle class="st7" cx="42.9" cy="15.2" r="6.5"/> -<polygon class="st7" points="31,29.6 21.5,17.8 11.1,28.2 8.6,25.7 21.8,12.5 31.3,24.3 41.7,13.9 44.2,16.4 "/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path d="M18.5 50h.3c10.4 0 18.8-3 18.8-6.8V6.9H18.5V50z" fill="#59b4d9"/><path d="M0 6.9v36.3C0 47 8.4 50 18.8 50V6.9H0z" fill="#3999c6"/><path d="M37.6,6.8c0,3.8-8.4,6.8-18.8,6.8S0,10.6,0,6.8S8.4,0,18.8,0S37.6,3,37.6,6.8" fill="#fff"/><path d="M33.7 6.4c0 2.5-6.7 4.5-14.9 4.5S3.9 8.9 3.9 6.4s6.7-4.5 14.9-4.5 14.9 2 14.9 4.5" fill="#7fba00"/><path d="M30.6 9.2c2-.8 3.1-1.8 3.1-2.8 0-2.5-6.7-4.5-14.9-4.5S3.9 3.9 3.9 6.4c0 1 1.1 2 3.1 2.8 2.8-1 7-1.8 11.8-1.8s9 .8 11.8 1.8" fill="#b8d432"/><path d="M12.2 47.6h35.4V35.8H12.2z" fill="#fff"/><path d="M12.2 47.6h35.4V35.8H12.2v11.8zM9.9 50V33.5H50V50H9.9z" fill="#a0a1a2"/><path d="M15.8 38.2h2.4v7.1h-2.4z" fill="#7a7a7a"/><g fill="#804998"><circle cx="9.9" cy="27" r="6.5"/><circle cx="21.7" cy="15.2" r="6.5"/><circle cx="31.1" cy="27" r="6.5"/><circle cx="42.9" cy="15.2" r="6.5"/><path d="M31 29.6l-9.5-11.8-10.4 10.4-2.5-2.5 13.2-13.2 9.5 11.8 10.4-10.4 2.5 2.5z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/SQL_DataWarehouse.svg b/src/main/webapp/img/lib/mscae/SQL_DataWarehouse.svg index f951874f426515224c000861adadd2fa1b8ac6c8..5314d24a087b04073bdf9475f5e7a362469d328c 100644 --- a/src/main/webapp/img/lib/mscae/SQL_DataWarehouse.svg +++ b/src/main/webapp/img/lib/mscae/SQL_DataWarehouse.svg @@ -1,175 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="372.89999" - height="362.60001" - viewBox="0 0 372.89999 362.60001" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure SQL DataWarehouse_COLOR.svg"><metadata - id="metadata78"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs76" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview74" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="1.2954622" - inkscape:cx="174.38363" - inkscape:cy="156.0587" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><g - id="Layer_4" - transform="translate(-17.5,-14.9)"><rect - x="107.3" - y="128.60001" - style="fill:#7fbb42" - width="35.700001" - height="35.700001" - id="rect4" /><rect - x="79" - y="225.39999" - style="fill:#7fbb42" - width="35.700001" - height="35.700001" - id="rect6" /><rect - x="129.8" - y="225.39999" - style="fill:#7fbb42" - width="35.700001" - height="35.700001" - id="rect8" /><rect - x="180.10001" - y="225.39999" - style="fill:#7fbb42" - width="35.700001" - height="35.700001" - id="rect10" /><rect - x="79" - y="177" - style="fill:#7fbb42" - width="35.700001" - height="35.700001" - id="rect12" /><rect - x="129.8" - y="177" - style="fill:#7fbb42" - width="35.700001" - height="35.700001" - id="rect14" /><polygon - style="fill:#3999c6" - points="46.2,111.4 46.2,262.3 70.2,262.3 70.2,111.4 245,111.4 245,252.7 271.4,252.7 271.4,111.4 297.7,111.4 297.7,89.6 158.1,14.9 17.5,89.6 17.5,111.4 " - id="polygon16" /><polygon - style="opacity:0.8;fill:#b8d433;enable-background:new" - points="107.3,133.2 107.3,128.6 143,128.6 143,164.3 138.9,164.3 138.9,133.2 " - id="polygon18" /><polygon - style="opacity:0.5;fill:#b8d433;enable-background:new" - points="143,159.8 143,164.3 107.3,164.3 107.3,128.6 111.4,128.6 111.4,159.8 " - id="polygon20" /><polygon - style="opacity:0.8;fill:#b8d433;enable-background:new" - points="79,181.6 79,177 114.7,177 114.7,212.7 110.7,212.7 110.7,181.6 " - id="polygon22" /><polygon - style="opacity:0.5;fill:#b8d433;enable-background:new" - points="114.7,208.1 114.7,212.7 79,212.7 79,177 83.1,177 83.1,208.1 " - id="polygon24" /><polygon - style="opacity:0.8;fill:#b8d433;enable-background:new" - points="129.8,181.6 129.8,177 165.7,177 165.7,212.7 161.4,212.7 161.4,181.6 " - id="polygon26" /><polygon - style="opacity:0.5;fill:#b8d433;enable-background:new" - points="165.7,208.1 165.7,212.7 129.8,212.7 129.8,177 134.1,177 134.1,208.1 " - id="polygon28" /><polygon - style="opacity:0.8;fill:#b8d433;enable-background:new" - points="79,229.9 79,225.4 114.7,225.4 114.7,261.1 110.7,261.1 110.7,229.9 " - id="polygon30" /><polygon - style="opacity:0.5;fill:#b8d433;enable-background:new" - points="114.7,256.5 114.7,261.1 79,261.1 79,225.4 83.1,225.4 83.1,256.5 " - id="polygon32" /><polygon - style="opacity:0.8;fill:#b8d433;enable-background:new" - points="129.8,229.9 129.8,225.4 165.7,225.4 165.7,261.1 161.4,261.1 161.4,229.9 " - id="polygon34" /><polygon - style="opacity:0.5;fill:#b8d433;enable-background:new" - points="165.7,256.5 165.7,261.1 129.8,261.1 129.8,225.4 134.1,225.4 134.1,256.5 " - id="polygon36" /><polygon - style="opacity:0.8;fill:#b8d433;enable-background:new" - points="180.1,229.9 180.1,225.4 215.8,225.4 215.8,261.1 211.7,261.1 211.7,229.9 " - id="polygon38" /><polygon - style="opacity:0.5;fill:#b8d433;enable-background:new" - points="215.8,256.5 215.8,261.1 180.1,261.1 180.1,225.4 184.2,225.4 184.2,256.5 " - id="polygon40" /><polygon - style="opacity:0.8;fill:#b8d433;enable-background:new" - points="138.2,128.6 143,128.6 143,132.2 112.6,164.3 107.3,164.3 107.3,160.2 " - id="polygon42" /><polygon - style="opacity:0.8;fill:#b8d433;enable-background:new" - points="161,177 165.7,177 165.7,180.6 135.1,212.7 129.8,212.7 129.8,208.6 " - id="polygon44" /><polygon - style="opacity:0.8;fill:#b8d433;enable-background:new" - points="109.9,177 114.7,177 114.7,180.6 84.3,212.7 79,212.7 79,208.6 " - id="polygon46" /><polygon - style="opacity:0.8;fill:#b8d433;enable-background:new" - points="109.9,225.4 114.7,225.4 114.7,229 84.3,261.1 79,261.1 79,257 " - id="polygon48" /><polygon - style="opacity:0.8;fill:#b8d433;enable-background:new" - points="161,225.4 165.7,225.4 165.7,229 135.1,261.1 129.8,261.1 129.8,257 " - id="polygon50" /><polygon - style="opacity:0.8;fill:#b8d433;enable-background:new" - points="211,225.4 215.8,225.4 215.8,229 185.4,261.1 180.1,261.1 180.1,257 " - id="polygon52" /><g - id="g54"><path - style="fill:#3999c6" - d="M 229,192.8 229,348.2 C 229,364.2 265.2,377.4 309.7,377.4 L 309.7,192.8 229,192.8 Z" - id="path56" - inkscape:connector-curvature="0" /><path - style="fill:#5ab4d9" - d="M 308.5,377.5 309.7,377.5 C 354.3,377.5 390.4,364.3 390.4,348.3 L 390.4,192.8 308.5,192.8 308.5,377.5 Z" - id="path58" - inkscape:connector-curvature="0" /><path - style="fill:#ffffff" - d="M 390.4,192.8 C 390.4,208.8 354.2,222 309.7,222 265.2,222 229,208.9 229,192.8 229,176.7 265.2,163.6 309.7,163.6 354.2,163.6 390.4,176.5 390.4,192.8" - id="path60" - inkscape:connector-curvature="0" /><path - style="fill:#7fbb42" - d="M 373.9,191.1 C 373.9,201.6 345.2,210.5 309.7,210.5 274.2,210.5 245.5,201.9 245.5,191.1 245.5,180.6 274.2,171.7 309.7,171.7 345.2,171.7 373.9,180.4 373.9,191.1" - id="path62" - inkscape:connector-curvature="0" /><path - style="fill:#b8d433" - d="M 360.5,202.9 C 368.9,199.5 373.9,195.5 373.9,191.2 373.9,180.7 345.2,171.8 309.7,171.8 274.2,171.8 245.5,180.4 245.5,191.2 245.5,195.8 250.5,199.8 258.9,202.9 270.6,198.3 289.1,195.5 309.7,195.5 330.3,195.2 348.7,198.3 360.5,202.9" - id="path64" - inkscape:connector-curvature="0" /><g - id="g66"><path - style="fill:#ffffff" - d="M 249.1,304.2 249.1,293.2 C 251,294.9 253.2,296.1 255.6,297 258,297.7 260.4,298.2 262.5,298.2 263.9,298.2 265.1,298 266.1,297.7 267.1,297.5 268,297.2 268.7,296.7 269.4,296.2 269.9,295.7 270.1,295 270.3,294.3 270.6,293.8 270.6,293.1 270.6,292.1 270.4,291.2 269.9,290.5 269.4,289.8 268.7,289.1 267.7,288.3 266.7,287.6 265.5,287.1 264.3,286.4 263.1,285.9 261.7,285.2 260,284.5 256.2,282.8 253.3,280.9 251.4,278.8 249.5,276.4 248.5,273.8 248.5,270.4 248.5,267.8 249,265.6 249.9,263.9 250.9,262 252.3,260.5 254,259.3 255.7,258.1 257.8,257.1 260.2,256.7 262.6,256.2 265,256 267.6,256 270.2,256 272.4,256.2 274.3,256.5 276.2,256.7 278.1,257.2 279.8,257.9 L 279.8,268.2 C 279.1,267.7 278.1,267.2 277.2,266.8 276.3,266.4 275.3,266.1 274.3,265.8 273.3,265.6 272.1,265.3 271.2,265.1 270.2,264.9 269.3,264.9 268.3,264.9 267.1,264.9 265.9,264.9 264.9,265.1 263.9,265.3 263,265.6 262.3,266.1 261.6,266.6 261.1,267.1 260.6,267.5 260.1,268.2 260.1,268.7 260.1,269.4 260.1,270.1 260.3,270.8 260.8,271.6 261.3,272.3 261.8,272.8 262.7,273.5 263.4,274 264.4,274.7 265.6,275.2 266.8,275.7 268,276.4 269.4,276.9 271.3,277.6 273.2,278.6 274.7,279.5 276.4,280.5 277.6,281.4 278.8,282.6 280,283.8 280.7,285 281.4,286.7 281.9,288.1 282.4,289.8 282.4,292 282.4,294.6 281.9,297 281,298.9 280,300.8 278.6,302.3 276.7,303.5 275,304.7 272.9,305.4 270.5,305.9 268.1,306.4 265.7,306.6 263.1,306.6 260.5,306.6 257.8,306.4 255.4,305.9 252.9,305.9 250.8,305.1 249.1,304.2 Z" - id="path68" - inkscape:connector-curvature="0" /><path - style="fill:#ffffff" - d="M 311.1,307.1 C 304.2,307.1 298.4,304.7 293.9,300.2 289.6,295.6 287.2,289.7 287.2,282.2 287.2,274.5 289.4,268.3 293.9,263.5 298.5,258.7 304.2,256.3 311.6,256.3 318.5,256.3 324.3,258.7 328.6,263.2 332.9,267.7 335.1,273.7 335.1,281.4 335.1,289.1 332.9,295.3 328.4,300.1 328.2,300.3 328.2,300.3 327.9,300.6 327.7,300.8 327.7,300.8 327.4,301.1 L 339.9,313.1 324.3,313.1 317.8,306.4 C 316.2,306.8 313.8,307.1 311.1,307.1 Z M 311.6,265.9 C 307.8,265.9 304.7,267.3 302.3,270.2 299.9,273.1 298.9,276.9 298.9,281.7 298.9,286.5 300.1,290.3 302.3,293.2 304.7,296.1 307.6,297.5 311.2,297.5 315,297.5 317.9,296.1 320.3,293.4 322.5,290.5 323.7,286.7 323.7,281.9 323.7,276.9 322.5,272.8 320.3,269.9 318.3,267.3 315.4,265.9 311.6,265.9 Z" - id="path70" - inkscape:connector-curvature="0" /><path - style="fill:#ffffff" - d="M 372.7,306.1 343.5,306.1 343.5,257 354.5,257 354.5,297 372.7,297 372.7,306.1 372.7,306.1 Z" - id="path72" - inkscape:connector-curvature="0" /></g></g></g></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="372.9" height="362.6"><path d="M89.8 113.7h35.7v35.7H89.8zm-28.3 96.8h35.7v35.7H61.5zm50.8 0H148v35.7h-35.7zm50.3 0h35.7v35.7h-35.7zM61.5 162.1h35.7v35.7H61.5zm50.8 0H148v35.7h-35.7z" fill="#7fbb42"/><path d="M28.7 96.5v150.9h24V96.5h174.8v141.3h26.4V96.5h26.3V74.7L140.6 0 0 74.7v21.8z" fill="#3999c6"/><g fill="#b8d433"><path d="M89.8 118.3v-4.6h35.7v35.7h-4.1v-31.1z" opacity=".8"/><path d="M125.5 144.9v4.5H89.8v-35.7h4.1v31.2z" opacity=".5"/><path d="M61.5 166.7v-4.6h35.7v35.7h-4v-31.1z" opacity=".8"/><path d="M97.2 193.2v4.6H61.5v-35.7h4.1v31.1z" opacity=".5"/><path d="M112.3 166.7v-4.6h35.9v35.7h-4.3v-31.1z" opacity=".8"/><path d="M148.2 193.2v4.6h-35.9v-35.7h4.3v31.1z" opacity=".5"/><path d="M61.5 215v-4.5h35.7v35.7h-4V215z" opacity=".8"/><path d="M97.2 241.6v4.6H61.5v-35.7h4.1v31.1z" opacity=".5"/><path d="M112.3 215v-4.5h35.9v35.7h-4.3V215z" opacity=".8"/><path d="M148.2 241.6v4.6h-35.9v-35.7h4.3v31.1z" opacity=".5"/><path d="M162.6 215v-4.5h35.7v35.7h-4.1V215z" opacity=".8"/><path d="M198.3 241.6v4.6h-35.7v-35.7h4.1v31.1z" opacity=".5"/><path d="M120.7 113.7h4.8v3.6l-30.4 32.1h-5.3v-4.1zm22.8 48.4h4.7v3.6l-30.6 32.1h-5.3v-4.1zm-51.1 0h4.8v3.6l-30.4 32.1h-5.3v-4.1zm0 48.4h4.8v3.6l-30.4 32.1h-5.3v-4.1zm51.1 0h4.7v3.6l-30.6 32.1h-5.3v-4.1zm50 0h4.8v3.6l-30.4 32.1h-5.3v-4.1z" opacity=".8"/></g><path d="M211.5 177.9v155.4c0 16 36.2 29.2 80.7 29.2V177.9h-80.7z" fill="#3999c6"/><path d="M291 362.6h1.2c44.6 0 80.7-13.2 80.7-29.2V177.9H291v184.7z" fill="#5ab4d9"/><path d="M372.9 177.9c0 16-36.2 29.2-80.7 29.2s-80.7-13.1-80.7-29.2 36.2-29.2 80.7-29.2 80.7 12.9 80.7 29.2" fill="#fff"/><path d="M356.4 176.2c0 10.5-28.7 19.4-64.2 19.4S228 187 228 176.2c0-10.5 28.7-19.4 64.2-19.4s64.2 8.7 64.2 19.4" fill="#7fbb42"/><path d="M343 188c8.4-3.4 13.4-7.4 13.4-11.7 0-10.5-28.7-19.4-64.2-19.4s-64.2 8.6-64.2 19.4c0 4.6 5 8.6 13.4 11.7 11.7-4.6 30.2-7.4 50.8-7.4 20.6-.3 39 2.8 50.8 7.4" fill="#b8d433"/><path d="M231.6 289.3v-11c1.9 1.7 4.1 2.9 6.5 3.8 2.4.7 4.8 1.2 6.9 1.2 1.4 0 2.6-.2 3.6-.5 1-.2 1.9-.5 2.6-1s1.2-1 1.4-1.7.5-1.2.5-1.9c0-1-.2-1.9-.7-2.6s-1.2-1.4-2.2-2.2c-1-.7-2.2-1.2-3.4-1.9l-4.3-1.9c-3.8-1.7-6.7-3.6-8.6-5.7-1.9-2.4-2.9-5-2.9-8.4 0-2.6.5-4.8 1.4-6.5 1-1.9 2.4-3.4 4.1-4.6s3.8-2.2 6.2-2.6c2.4-.5 4.8-.7 7.4-.7s4.8.2 6.7.5a20.21 20.21 0 0 1 5.5 1.4v10.3c-.7-.5-1.7-1-2.6-1.4s-1.9-.7-2.9-1c-1-.2-2.2-.5-3.1-.7-1-.2-1.9-.2-2.9-.2-1.2 0-2.4 0-3.4.2s-1.9.5-2.6 1-1.2 1-1.7 1.4c-.5.7-.5 1.2-.5 1.9s.2 1.4.7 2.2c.5.7 1 1.2 1.9 1.9.7.5 1.7 1.2 2.9 1.7s2.4 1.2 3.8 1.7c1.9.7 3.8 1.7 5.3 2.6 1.7 1 2.9 1.9 4.1 3.1s1.9 2.4 2.6 4.1c.5 1.4 1 3.1 1 5.3 0 2.6-.5 5-1.4 6.9-1 1.9-2.4 3.4-4.3 4.6-1.7 1.2-3.8 1.9-6.2 2.4s-4.8.7-7.4.7-5.3-.2-7.7-.7c-2.5 0-4.6-.8-6.3-1.7zm62 2.9c-6.9 0-12.7-2.4-17.2-6.9-4.3-4.6-6.7-10.5-6.7-18 0-7.7 2.2-13.9 6.7-18.7 4.6-4.8 10.3-7.2 17.7-7.2 6.9 0 12.7 2.4 17 6.9s6.5 10.5 6.5 18.2-2.2 13.9-6.7 18.7l-1 1 12.5 12h-15.6l-6.5-6.7c-1.6.4-4 .7-6.7.7zm.5-41.2c-3.8 0-6.9 1.4-9.3 4.3s-3.4 6.7-3.4 11.5 1.2 8.6 3.4 11.5c2.4 2.9 5.3 4.3 8.9 4.3 3.8 0 6.7-1.4 9.1-4.1 2.2-2.9 3.4-6.7 3.4-11.5 0-5-1.2-9.1-3.4-12-2-2.6-4.9-4-8.7-4zm61.1 40.2H326v-49.1h11v40h18.2v9.1z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/SQL_Database_generic.svg b/src/main/webapp/img/lib/mscae/SQL_Database_generic.svg index 4eccbd4bd87d60952795d711b643701ebe37a342..86fa3db077a8979540c843c5c876c99fea0e8c68 100644 --- a/src/main/webapp/img/lib/mscae/SQL_Database_generic.svg +++ b/src/main/webapp/img/lib/mscae/SQL_Database_generic.svg @@ -1,83 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="37.486" - height="49.688" - viewBox="-0.5 0.5 37.486 49.688" - enable-background="new -0.5 0.5 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure SQL Database (generic)_COLOR.svg"><metadata - id="metadata25"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs23" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview21" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="7.3282407" - inkscape:cx="30.021651" - inkscape:cy="16.6021" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M -0.5,7.288 -0.5,43.399 C -0.5,47.148 7.892,50.188 18.243,50.188 L 18.243,7.288 C 18.243,7.288 -0.5,7.288 -0.5,7.288 Z" - id="path3" - inkscape:connector-curvature="0" - style="fill:#0072c6" /><path - d="M 17.986,50.187 18.243,50.187 C 28.594,50.187 36.986,47.149 36.986,43.399 L 36.986,7.288 17.986,7.288 17.986,50.187 Z" - id="path5" - inkscape:connector-curvature="0" - style="fill:#0072c6" /><path - d="M 17.986,50.187 18.243,50.187 C 28.594,50.187 36.986,47.149 36.986,43.399 L 36.986,7.288 17.986,7.288 17.986,50.187 Z" - id="path7" - inkscape:connector-curvature="0" - style="opacity:0.15;fill:#ffffff" /><path - d="M 36.986,7.288 C 36.986,11.037 28.594,14.076 18.243,14.076 7.892,14.076 -0.5,11.037 -0.5,7.288 -0.5,3.539 7.892,0.5 18.243,0.5 28.594,0.5 36.986,3.539 36.986,7.288" - id="path9" - inkscape:connector-curvature="0" - style="fill:#ffffff" /><path - d="M 33.154,6.897 C 33.154,9.372 26.478,11.376 18.243,11.376 10.008,11.376 3.331,9.372 3.331,6.897 3.331,4.423 10.008,2.418 18.243,2.418 26.478,2.418 33.154,4.423 33.154,6.897" - id="path11" - inkscape:connector-curvature="0" - style="fill:#7fba00" /><path - d="M 30.03,9.634 C 31.982,8.877 33.155,7.929 33.155,6.899 33.155,4.424 26.479,2.419 18.243,2.419 10.008,2.419 3.332,4.424 3.332,6.899 3.332,7.929 4.505,8.877 6.457,9.634 9.183,8.576 13.443,7.893 18.243,7.893 23.044,7.893 27.302,8.576 30.03,9.634" - id="path13" - inkscape:connector-curvature="0" - style="fill:#b8d432" /><path - d="M 12.29,32.354 C 12.29,33.476 11.883,34.345 11.069,34.961 10.255,35.577 9.131,35.885 7.696,35.885 6.475,35.885 5.455,35.665 4.635,35.225 L 4.635,32.585 C 5.581,33.388 6.623,33.79 7.761,33.79 8.311,33.79 8.736,33.68 9.036,33.46 9.336,33.24 9.486,32.949 9.486,32.585 9.486,32.228 9.342,31.917 9.053,31.653 8.764,31.389 8.177,31.048 7.292,30.63 5.488,29.784 4.586,28.628 4.586,27.166 4.586,26.105 4.979,25.254 5.766,24.613 6.552,23.973 7.597,23.652 8.9,23.652 10.055,23.652 11.011,23.804 11.771,24.106 L 11.771,26.572 C 10.974,26.022 10.066,25.747 9.049,25.747 8.538,25.747 8.134,25.855 7.837,26.072 7.54,26.29 7.392,26.58 7.392,26.942 7.392,27.316 7.511,27.623 7.751,27.862 7.99,28.101 8.481,28.397 9.223,28.749 10.329,29.272 11.116,29.802 11.587,30.341 12.055,30.881 12.29,31.552 12.29,32.354 Z" - id="path15" - inkscape:connector-curvature="0" - style="fill:#ffffff" /><path - d="M 25.017,29.682 C 25.017,31.073 24.7,32.281 24.068,33.303 23.435,34.326 22.545,35.043 21.396,35.456 L 24.827,38.632 21.363,38.632 18.913,35.885 C 17.863,35.847 16.915,35.569 16.071,35.052 15.227,34.536 14.575,33.827 14.116,32.928 13.657,32.029 13.427,31.026 13.427,29.921 13.427,28.695 13.676,27.602 14.173,26.642 14.671,25.682 15.37,24.944 16.272,24.427 17.174,23.911 18.207,23.652 19.374,23.652 20.462,23.652 21.437,23.902 22.298,24.403 23.158,24.903 23.826,25.615 24.302,26.539 24.779,27.463 25.017,28.511 25.017,29.682 Z M 22.213,29.831 C 22.213,28.632 21.952,27.685 21.429,26.989 20.906,26.293 20.192,25.945 19.284,25.945 18.36,25.945 17.621,26.294 17.065,26.992 16.51,27.691 16.232,28.62 16.232,29.78 16.232,30.935 16.504,31.857 17.048,32.547 17.593,33.237 18.315,33.582 19.217,33.582 20.136,33.582 20.864,33.248 21.403,32.58 21.943,31.913 22.213,30.996 22.213,29.831 Z" - id="path17" - inkscape:connector-curvature="0" - style="fill:#ffffff" /><polygon - points="35.893,23.851 35.893,33.518 40.273,33.518 40.273,35.679 33.229,35.679 33.229,23.851 " - id="polygon19" - style="fill:#ffffff" - transform="translate(-6.257,0)" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="37.486" height="49.688" viewBox="-0.5 0.5 37.486 49.688"><g fill="#0072c6"><path d="M-.5 7.288V43.4c0 3.75 8.392 6.79 18.743 6.79v-42.9H-.5z"/><path d="M17.986 50.187h.257c10.35 0 18.743-3.038 18.743-6.788V7.288h-19v42.9z"/></g><g fill="#fff"><path d="M17.986 50.187h.257c10.35 0 18.743-3.038 18.743-6.788V7.288h-19v42.9z" opacity=".15"/><path d="M36.986 7.288c0 3.75-8.392 6.788-18.743 6.788S-.5 11.037-.5 7.288 7.892.5 18.243.5s18.743 3.04 18.743 6.788"/></g><path d="M33.154 6.897c0 2.475-6.676 4.48-14.91 4.48S3.33 9.372 3.33 6.897s6.677-4.48 14.912-4.48 14.91 2.005 14.91 4.48" fill="#7fba00"/><path d="M30.03 9.634c1.952-.757 3.125-1.705 3.125-2.735 0-2.475-6.676-4.48-14.912-4.48S3.332 4.424 3.332 6.9c0 1.03 1.173 1.978 3.125 2.735 2.726-1.058 6.986-1.74 11.786-1.74s9.06.683 11.787 1.74" fill="#b8d432"/><path d="M12.3 32.354c0 1.122-.407 2-1.22 2.607s-1.938.924-3.373.924c-1.22 0-2.24-.22-3.06-.66v-2.64c.946.803 1.988 1.205 3.126 1.205.55 0 .975-.1 1.275-.33a1.03 1.03 0 0 0 .45-.875c0-.357-.144-.668-.433-.932s-.876-.605-1.76-1.023C5.5 29.784 4.6 28.628 4.6 27.166c0-1.06.393-1.912 1.18-2.553s1.83-.96 3.134-.96c1.155 0 2.1.152 2.87.454v2.466c-.797-.55-1.705-.825-2.722-.825-.5 0-.915.108-1.212.325s-.445.508-.445.87c0 .374.12.68.36.92s.73.535 1.472.887c1.106.523 1.893 1.053 2.364 1.592s.703 1.2.703 2.013zm12.717-2.672c0 1.4-.317 2.6-.95 3.62s-1.523 1.74-2.672 2.153l3.43 3.176H21.36l-2.45-2.747c-1.05-.038-1.998-.316-2.842-.833a5.22 5.22 0 0 1-1.955-2.124c-.46-.9-.7-1.902-.7-3.007 0-1.226.25-2.32.746-3.28s1.197-1.698 2.1-2.215 1.935-.775 3.102-.775c1.088 0 2.063.25 2.924.75s1.528 1.212 2.004 2.136.715 1.972.715 3.143zm-2.804.15c0-1.2-.26-2.146-.784-2.842s-1.237-1.044-2.145-1.044a2.69 2.69 0 0 0-2.219 1.047c-.555.7-.833 1.628-.833 2.788s.272 2.077.816 2.767 1.267 1.035 2.17 1.035c.92 0 1.647-.334 2.186-1.002s.8-1.584.8-2.75zm7.423-5.982v9.667h4.38v2.16h-7.044V23.85z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/SQL_Managed_Instances.svg b/src/main/webapp/img/lib/mscae/SQL_Managed_Instances.svg new file mode 100644 index 0000000000000000000000000000000000000000..ff4c220ee3bf63196ea7a664d619190ad5767e70 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/SQL_Managed_Instances.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="47116" height="61538"><rect x="10578" width="36538" height="61538" rx="3846" fill="#777"/><path d="M18270 5770c-2124 0-3846 1722-3846 3846s1722 3846 3846 3846h21154c2124 0 3846-1722 3846-3846s-1722-3846-3846-3846z"/><circle cx="18270" cy="9616" r="1923" fill="#b8d432"/><path d="M18270 17309c-2124 0-3846 1722-3846 3845 0 2124 1722 3846 3846 3846h21154c2124 0 3846-1722 3846-3846 0-2123-1722-3845-3846-3845z"/><circle cx="18270" cy="21154" r="1923" fill="#b8d432"/><path d="M18270 28847c-2124 0-3846 1722-3846 3846s1722 3845 3846 3845h21154c2124 0 3846-1721 3846-3845s-1722-3846-3846-3846z"/><circle cx="18270" cy="32693" r="1923" fill="#b8d432"/><path d="M40384 59619c3186 0 5770-2583 5770-5770 0-3438-2975-6091-6378-5738 1833-8898-4950-17340-14127-17340-6009 0-11160 3676-13327 8901C6048 38260 0 43016 0 49522c0 5575 4520 10095 10096 10095z" fill="#fff"/><path d="M39778 42283c-1347-6570-7161-11512-14129-11512-6009 0-11160 3676-13327 8901-716-161-1461-246-2226-246C4520 39426 0 43946 0 49522c0 5575 4520 10095 10096 10095h6788c-4526 0-8195-3669-8195-8195s3669-8195 8195-8195c621 0 1226 68 1807 200 1760-4241 5940-7225 10818-7225 4426 0 8279 2457 10269 6081z" fill="#c0ecfc"/><path d="M27884 55768c564 0 1100-121 1583-339l340 340h1923v-1923l-339-340c219-483 339-1019 339-1584v-1922c0-2124-1721-3846-3846-3846-2124 0-3846 1722-3846 3846v1922c0 2125 1722 3846 3846 3846zm-10577-9614c-1592 0-2884 1292-2884 2884 0 1594 1292 2885 2884 2885h1923c532 0 962 430 962 962 0 530-430 961-962 961h-4807v1923h4807c1594 0 2885-1292 2885-2884 0-1593-1291-2885-2885-2885h-1923c-530 0-961-430-961-962 0-530 431-960 961-960h4808v-1924zm16347 0h1923v7692h3846v1924h-5769zm-3847 5768h-1923v1924c-1062 0-1922-862-1922-1924v-1922c0-1062 860-1922 1922-1922s1923 860 1923 1922z" fill="#8ba208"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/SQL_Servers.svg b/src/main/webapp/img/lib/mscae/SQL_Servers.svg new file mode 100644 index 0000000000000000000000000000000000000000..ae49089174f12f4038a6afd7046af46ae9832ddf --- /dev/null +++ b/src/main/webapp/img/lib/mscae/SQL_Servers.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" viewBox="-0.5 0.5 50 50" width="50" height="50"><g fill="#0072c6"><path d="M-.5 7.288V43.4c0 3.75 8.392 6.79 18.743 6.79v-42.9z"/><path d="M17.986 50.187h.257c10.35 0 18.743-3.038 18.743-6.788V7.288h-19z"/></g><g fill="#fff"><path d="M17.986 50.187h.257c10.35 0 18.743-3.038 18.743-6.788V7.288h-19z" opacity=".15"/><path d="M36.986 7.288c0 3.75-8.392 6.788-18.743 6.788S-.5 11.037-.5 7.288 7.892.5 18.243.5s18.743 3.04 18.743 6.788"/></g><path d="M33.154 6.897c0 2.475-6.676 4.48-14.91 4.48S3.33 9.372 3.33 6.897s6.677-4.48 14.912-4.48 14.91 2.005 14.91 4.48" fill="#7fba00"/><path d="M30.03 9.634c1.952-.757 3.125-1.705 3.125-2.735 0-2.475-6.676-4.48-14.912-4.48S3.332 4.424 3.332 6.9c0 1.03 1.173 1.978 3.125 2.735 2.726-1.058 6.986-1.74 11.786-1.74s9.06.683 11.787 1.74" fill="#b8d432"/><path d="M12.3 31.354c0 1.122-.407 1.99-1.22 2.607s-1.938.924-3.373.924c-1.22 0-2.24-.22-3.06-.66v-2.64c.946.803 1.988 1.205 3.126 1.205.55 0 .975-.1 1.275-.33a1.03 1.03 0 0 0 .45-.875c0-.357-.144-.668-.433-.932s-.876-.605-1.76-1.023c-1.804-.846-2.706-2.002-2.706-3.464 0-1.06.393-1.912 1.18-2.553s1.83-.96 3.134-.96c1.155 0 2.11.152 2.87.454v2.466c-.797-.55-1.705-.825-2.722-.825-.51 0-.915.108-1.212.325a1.026 1.026 0 0 0-.445.87c0 .374.12.68.36.92s.73.535 1.472.887c1.106.523 1.893 1.053 2.364 1.592s.703 1.21.703 2.013zm12.727-2.672c0 1.39-.317 2.6-.95 3.62s-1.523 1.74-2.672 2.153l3.43 3.176h-3.464l-2.45-2.747c-1.05-.038-1.998-.316-2.842-.833a5.22 5.22 0 0 1-1.955-2.124c-.46-.9-.69-1.902-.69-3.007 0-1.226.25-2.32.746-3.28s1.197-1.698 2.1-2.215 1.935-.775 3.102-.775c1.088 0 2.063.25 2.924.75s1.528 1.212 2.004 2.136.715 1.972.715 3.143zm-2.804.15c0-1.2-.26-2.146-.784-2.842s-1.237-1.044-2.145-1.044a2.69 2.69 0 0 0-2.219 1.047c-.555.7-.833 1.628-.833 2.788 0 1.155.272 2.077.816 2.767s1.267 1.035 2.17 1.035c.92 0 1.647-.334 2.186-1.002s.8-1.584.8-2.75zm11.803 5.848h-7.044V22.85h2.664v9.667h4.38z" fill="#fff"/><path d="M34.755 49.584l2.123.916.224-.265 1.7-2 1.72.01 1.973 2.254 2.135-.887-.023-.347-.185-2.643 1.225-1.234 2.957.168.897-2.167-2.218-1.967.012-1.756L49.5 37.65l-.866-2.18-.342.025-2.588.186-1.206-1.25.164-3.02-2.124-.914-.224.265-1.702 2-1.72-.01-1.975-2.25-2.134.884.026.35.18 2.64-1.224 1.234-2.955-.168-.896 2.167.26.23 1.96 1.736-.012 1.756-2.207 2.016.867 2.18.343-.025 2.587-.186 1.208 1.25zm.608-10.956c1.012-2.452 3.778-3.6 6.177-2.565s3.525 3.858 2.513 6.308-3.78 3.598-6.18 2.565-3.524-3.857-2.51-6.308" fill="#a0a1a2"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/SQL_Stretch_Database.svg b/src/main/webapp/img/lib/mscae/SQL_Stretch_Database.svg index 06143ea99f8c6a1867a82c14c4743d0bfc152b93..a059c442fb71e05063e4468881db0f8c237ce052 100644 --- a/src/main/webapp/img/lib/mscae/SQL_Stretch_Database.svg +++ b/src/main/webapp/img/lib/mscae/SQL_Stretch_Database.svg @@ -1,78 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - viewBox="-382 215 468.52722 324.20056" - enable-background="new -382 215 500 500" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure SQL Stretch Database_COLOR.svg" - width="468.52722" - height="324.20056"><metadata - id="metadata25"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs23" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview21" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="1.0363697" - inkscape:cx="181.2017" - inkscape:cy="144.89901" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M -259.9,517.10057 29.3,517.10057 C 29.3,517.10057 80.4,516.40057 85.7,483.80057 92.4,442.50057 56.2,438.90057 56.2,438.90057 56.2,438.90057 95.9,391.20057 65.6,341.60057 29,281.70057 -33.8,314.70057 -33.8,314.70057 -33.8,314.70057 -47.1,189.50057 -191.8,219.70057 -311.3,244.70057 -290.5,375.60057 -290.5,375.60057 -290.5,375.60057 -360.6,357.90057 -367.1,433.80057 -373.5,509.60057 -259.9,517.10057 -259.9,517.10057 Z" - id="path3" - inkscape:connector-curvature="0" - style="fill:#dddddd" /><path - d="M -282,310.10057 -282,310.10057 -382,310.10057 -382,502.80057 C -382,522.60057 -338,538.80057 -283,539.00057 L -283,539.20057 -282.8,539.20057 C -282.6,539.20057 -282,539.00057 -282,539.00057 L -282,539.20057 -281.8,539.20057 C -226.7,539.20057 -182,522.80057 -182,502.90057 L -182,310.10057 -282,310.10057 Z" - id="path5" - inkscape:connector-curvature="0" - style="fill:#edb51d" /><g - id="g7" - transform="translate(-27,-75.899429)"><polygon - points="0.4,485.4 -76,546.8 -76,507 -206,507 -206,464 -76,464 -76,426.2 " - id="polygon9" - style="fill:#edb51d" /><g - id="g11"><path - enable-background="new " - d="M -354.7,386.3 -354.7,578.6 C -354.7,598.6 -310,614.8 -254.9,614.8 L -254.9,386.3 -354.7,386.3 Z" - id="path13" - inkscape:connector-curvature="0" - style="opacity:0.3;fill:#ffffff" /><path - d="M -155,386.3 C -155,406.3 -199.7,422.5 -254.8,422.5 -309.9,422.5 -354.6,406.3 -354.6,386.3 -354.6,366.3 -309.9,350.1 -254.8,350.1 -199.7,350.2 -155,366.4 -155,386.3" - id="path15" - inkscape:connector-curvature="0" - style="fill:#ffffff" /><path - d="M -175.4,384.2 C -175.4,397.4 -211,408.1 -254.8,408.1 -298.7,408.1 -334.2,397.4 -334.2,384.2 -334.2,371 -298.6,360.3 -254.8,360.3 -211,360.4 -175.4,371.1 -175.4,384.2" - id="path17" - inkscape:connector-curvature="0" - style="fill:#7fba00" /><path - d="M -192,398.8 C -181.6,394.8 -175.4,389.7 -175.4,384.2 -175.4,371 -211,360.3 -254.8,360.3 -298.7,360.3 -334.2,371 -334.2,384.2 -334.2,389.7 -328,394.7 -317.5,398.8 -303,393.2 -280.3,389.5 -254.7,389.5 -229.3,389.5 -206.6,393.2 -192,398.8" - id="path19" - inkscape:connector-curvature="0" - style="fill:#b8d432" /></g></g></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" viewBox="-382 215 468.527 324.201" width="468.527" height="324.201"><path d="M-259.9 517.1H29.3s51.1-.7 56.4-33.3c6.7-41.3-29.5-44.9-29.5-44.9s39.7-47.7 9.4-97.3c-36.6-59.9-99.4-26.9-99.4-26.9s-13.3-125.2-158-95c-119.5 25-98.7 155.9-98.7 155.9s-70.1-17.7-76.6 58.2c-6.4 75.8 107.2 83.3 107.2 83.3z" fill="#ddd"/><g fill="#edb51d"><path d="M-282 310.1h-100v192.7c0 19.8 44 36 99 36.2v.2h.2c.2 0 .8-.2.8-.2v.2h.2c55.1 0 99.8-16.4 99.8-36.3V310.1h-100z"/><path d="M-26.6 409.5l-76.4 61.4v-39.8h-130v-43h130v-37.8z"/></g><g fill="#fff"><path d="M-381.7 310.4v192.3c0 20 44.7 36.2 99.8 36.2V310.4h-99.8z" opacity=".3"/><path d="M-182 310.4c0 20-44.7 36.2-99.8 36.2s-99.8-16.2-99.8-36.2 44.7-36.2 99.8-36.2c55.1.1 99.8 16.3 99.8 36.2"/></g><path d="M-202.4 308.3c0 13.2-35.6 23.9-79.4 23.9-43.9 0-79.4-10.7-79.4-23.9s35.6-23.9 79.4-23.9c43.8.1 79.4 10.8 79.4 23.9" fill="#7fba00"/><path d="M-219 322.9c10.4-4 16.6-9.1 16.6-14.6 0-13.2-35.6-23.9-79.4-23.9-43.9 0-79.4 10.7-79.4 23.9 0 5.5 6.2 10.5 16.7 14.6 14.5-5.6 37.2-9.3 62.8-9.3 25.4 0 48.1 3.7 62.7 9.3" fill="#b8d432"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/SSD.svg b/src/main/webapp/img/lib/mscae/SSD.svg index 92a3bae568d359cb7eb21926ef19ebf8e6b04f7d..f13c46d53c262d8acc4e80bbba72229c401cc505 100644 --- a/src/main/webapp/img/lib/mscae/SSD.svg +++ b/src/main/webapp/img/lib/mscae/SSD.svg @@ -1,85 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="40.200001" - width="50.091995" - viewBox="0 0 50.091995 40.200001" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="SSD.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata6325"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs6323" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview6321" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="25.045943" - inkscape:cy="18.7" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="M 50.045943,37.6 V 29.3 H 0.04594311 v 8.3 h 0.1 c -0.3,1.3 0.89999999,2.6 2.69999999,2.6 H 47.445943 c 1.7,0 2.9,-1.3 2.6,-2.6 z" - id="path6306" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<path - d="m 49.945943,29 c 0.3,1.3 -0.9,2.6 -2.7,2.6 H 2.7459431 C 0.94594311,31.6 -0.25405689,30.3 0.04594311,29 L 6.9459431,1.3 c 0.1,-0.6 1.3,-1.3 2.5,-1.3 H 40.545943 c 1.3,0 2.4,0.6 2.6,1.3 z" - id="path6308" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<path - d="m 49.945943,29 -6.8,-27.7 c -0.2,-0.7 -1.3,-1.3 -2.6,-1.3 H 9.4459431 c -1.2,0 -2.4,0.7 -2.5,1.3 L 0.14594311,29 c -0.3,1.3 0.89999999,2.6 2.69999999,2.6 H 47.445943 c 1.7,0 2.9,-1.3 2.5,-2.6 z m -6.6,-0.7 H 6.7459431 c -1.5,0 -2.4,-1 -2.2,-2.1 l 5.5999999,-22 c 0.1,-0.5 1.1,-1 2.1,-1 h 25.5 c 1,0 2,0.5 2.1,1 l 5.6,22 c 0.3,1.1 -0.6,2.1 -2.1,2.1 z" - id="path6310" - inkscape:connector-curvature="0" - style="opacity:0.4;fill:#ffffff" /> -<polygon - points="34,39.9 34,38.3 32.6,38.3 32.6,39.9 28.5,39.9 28.5,38.3 27,38.3 27,39.9 23,39.9 23,38.3 21.5,38.3 21.5,39.9 17.4,39.9 17.4,38.3 16,38.3 16,39.9 11.9,39.9 11.9,38.3 10.4,38.3 10.4,39.9 10.4,41 11.9,41 16,41 17.4,41 21.5,41 23,41 27,41 28.5,41 32.6,41 34,41 38.1,41 38.4,41 39.6,41 39.6,38.3 38.1,38.3 38.1,39.9 " - id="polygon6312" - style="opacity:0.75;fill:#1e1e1e" - transform="translate(0.04594311,-3.5)" /> -<path - d="m 30.545943,13.7 h -3.5 -0.7 c -0.2,0 -0.3,-0.2 -0.2,-0.4 l 3.4,-6 0.2,-0.4 h -7.2 l -3.2,10.2 c -0.1,0.2 0,0.4 0.3,0.4 h 3.3 c 0.1,0 0.2,0 0.2,0.1 0.1,0.1 0.1,0.2 0,0.3 l -3.4,8.3 c -0.1,0.2 0,0.3 0.1,0.1 l 10.8,-12.3 c 0.2,-0.2 0.2,-0.3 -0.1,-0.3 z" - id="path6314" - inkscape:connector-curvature="0" - style="fill:#fcd116" /> -<path - d="m 30.545943,13.7 h -2.2 l -8.1,12.1 10.4,-11.8 c 0.2,-0.2 0.2,-0.3 -0.1,-0.3 z" - id="path6316" - inkscape:connector-curvature="0" - style="opacity:0.3;fill:#ff8c00" /> -<path - d="m 29.545943,7.3 0.2,-0.4 h -2.1 l -3.3,6.8 h 2 c -0.2,0 -0.2,-0.2 -0.1,-0.4 z" - id="path6318" - inkscape:connector-curvature="0" - style="opacity:0.3;fill:#ff8c00" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" height="40.2" width="50.092"><g fill="#a0a1a2"><path d="M50.046 37.6v-8.3h-50v8.3h.1c-.3 1.3.9 2.6 2.7 2.6h44.6c1.7 0 2.9-1.3 2.6-2.6z"/><path d="M49.946 29c.3 1.3-.9 2.6-2.7 2.6h-44.5c-1.8 0-3-1.3-2.7-2.6l6.9-27.7c.1-.6 1.3-1.3 2.5-1.3h31.1c1.3 0 2.4.6 2.6 1.3z"/></g><path d="M49.946 29l-6.8-27.7c-.2-.7-1.3-1.3-2.6-1.3h-31.1c-1.2 0-2.4.7-2.5 1.3L.146 29c-.3 1.3.9 2.6 2.7 2.6h44.6c1.7 0 2.9-1.3 2.5-2.6zm-6.6-.7h-36.6c-1.5 0-2.4-1-2.2-2.1l5.6-22c.1-.5 1.1-1 2.1-1h25.5c1 0 2 .5 2.1 1l5.6 22c.3 1.1-.6 2.1-2.1 2.1z" opacity=".4" fill="#fff"/><path d="M34.046 36.4v-1.6h-1.4v1.6h-4.1v-1.6h-1.5v1.6h-4v-1.6h-1.5v1.6h-4.1v-1.6h-1.4v1.6h-4.1v-1.6h-1.5v2.7h29.2v-2.7h-1.5v1.6z" opacity=".75" fill="#1e1e1e"/><path d="M30.546 13.7h-4.2c-.2 0-.3-.2-.2-.4l3.4-6 .2-.4h-7.2l-3.2 10.2c-.1.2 0 .4.3.4h3.3c.1 0 .2 0 .2.1.1.1.1.2 0 .3l-3.4 8.3c-.1.2 0 .3.1.1l10.8-12.3c.2-.2.2-.3-.1-.3z" fill="#fcd116"/><path d="M30.546 13.7h-2.2l-8.1 12.1 10.4-11.8c.2-.2.2-.3-.1-.3zm-1-6.4l.2-.4h-2.1l-3.3 6.8h2c-.2 0-.2-.2-.1-.4z" opacity=".3" fill="#ff8c00"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Scale.svg b/src/main/webapp/img/lib/mscae/Scale.svg index 513ab60e2ece3d58b62676c8145f04e36afc9ad0..d3bff9af30d68130a96e27898e27a747ef9d5c16 100644 --- a/src/main/webapp/img/lib/mscae/Scale.svg +++ b/src/main/webapp/img/lib/mscae/Scale.svg @@ -1,23 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="-0.5 0.5 50 50" enable-background="new -0.5 0.5 50 50" xml:space="preserve"> -<path fill-rule="evenodd" clip-rule="evenodd" fill="#A0A1A2" d="M36.167,27.167v10H12.833V13.833h9.997v-5H11.167 - c-1.841,0-3.333,1.493-3.333,3.333v26.667c0,1.841,1.493,3.333,3.333,3.333h26.667c1.841,0,3.333-1.493,3.333-3.333V27.167H36.167z" - /> -<rect x="21.167" y="0.5" fill="#B8D432" width="6.667" height="5"/> -<rect x="11.167" y="0.5" fill="#B8D432" width="6.667" height="5"/> -<path fill="#B8D432" d="M44.5,45.5h-3.333v5h5c1.841,0,3.333-1.493,3.333-3.333v-5h-5V45.5z"/> -<rect x="-0.5" y="32.167" fill="#B8D432" width="5" height="6.667"/> -<rect x="21.167" y="45.5" fill="#B8D432" width="6.667" height="5"/> -<rect x="44.5" y="32.167" fill="#B8D432" width="5" height="6.667"/> -<rect x="31.167" y="45.5" fill="#B8D432" width="6.667" height="5"/> -<rect x="11.167" y="45.5" fill="#B8D432" width="6.667" height="5"/> -<path fill="#B8D432" d="M4.5,45.5v-3.333h-5v5c0,1.841,1.493,3.333,3.333,3.333h5v-5H4.5z"/> -<rect x="-0.5" y="12.167" fill="#B8D432" width="5" height="6.667"/> -<path fill="#B8D432" d="M4.5,5.5h3.333v-5h-5C0.993,0.5-0.5,1.993-0.5,3.833v5h5V5.5z"/> -<rect x="-0.5" y="22.167" fill="#B8D432" width="5" height="6.667"/> -<rect x="44.5" y="22.167" fill="#B8D432" width="5" height="6.667"/> -<polygon fill="#0F0F0F" points="49.5,0.5 34.5,0.5 40.084,6.084 18.715,27.453 22.597,31.333 43.965,9.965 49.5,15.5 "/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="-0.5 0.5 50 50"><path fill-rule="evenodd" fill="#a0a1a2" d="M36.167 27.167v10H12.833V13.833h9.997v-5H11.167c-1.84 0-3.333 1.493-3.333 3.333v26.667c0 1.84 1.493 3.333 3.333 3.333h26.667c1.84 0 3.333-1.493 3.333-3.333V27.167h-5z"/><path d="M21.167.5h6.667v5h-6.667zm-10 0h6.667v5h-6.667zm33.333 45h-3.333v5h5c1.84 0 3.333-1.493 3.333-3.333v-5h-5V45.5zm-45-13.333h5v6.667h-5zM21.167 45.5h6.667v5h-6.667zM44.5 32.167h5v6.667h-5zM31.167 45.5h6.667v5h-6.667zm-20 0h6.667v5h-6.667zm-6.667 0v-3.333h-5v5c0 1.84 1.493 3.333 3.333 3.333h5v-5H4.5zm-5-33.333h5v6.667h-5zm5-6.667h3.333v-5h-5C.993.5-.5 1.993-.5 3.833v5h5V5.5zm-5 16.667h5v6.667h-5zm45 0h5v6.667h-5z" fill="#b8d432"/><path fill="#0f0f0f" d="M49.5.5h-15l5.584 5.584-21.37 21.37 3.882 3.88L43.965 9.965 49.5 15.5z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/ScaleAlt.svg b/src/main/webapp/img/lib/mscae/ScaleAlt.svg index 815e202608246f9536adddf5a7549ada74b7836b..f8468180701360f6cf702f826759e38d62b2cbbd 100644 --- a/src/main/webapp/img/lib/mscae/ScaleAlt.svg +++ b/src/main/webapp/img/lib/mscae/ScaleAlt.svg @@ -1,26 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#A0A1A2" d="M35.7,0H2.1C0.9,0,0,1,0,2.2v23.4c0,1.1,0.9,2.1,2.1,2.1h33.7c1.1,0,2.3-1,2.3-2.1V2.2C38,1,36.9,0,35.7,0" - /> -<path opacity="0.2" fill="#FFFFFF" enable-background="new " d="M35.7,0C35.7,0,35.7,0,35.7,0L2.1,0C0.9,0,0,1,0,2.2v23.4 - c0,1.1,0.9,2.1,2.1,2.1h0.8L35.7,0z"/> -<polygon fill="#59B4D9" points="35.1,24.8 2.9,24.8 2.9,2.9 35.1,2.9 "/> -<path fill="#B8D432" d="M19.4,1.6c0,0.3-0.2,0.5-0.5,0.5c-0.3,0-0.5-0.2-0.5-0.5s0.2-0.5,0.5-0.5C19.2,1.1,19.4,1.3,19.4,1.6"/> -<path fill="#A0A1A2" d="M41.7,7.5H8c-1.1,0-2.1,1-2.1,2.2v23.4c0,1.1,0.9,2.1,2.1,2.1h33.7c1.1,0,2.3-1,2.3-2.1V9.6 - C44,8.5,42.8,7.5,41.7,7.5"/> -<path opacity="0.2" fill="#FFFFFF" enable-background="new " d="M41.7,7.5C41.7,7.5,41.7,7.5,41.7,7.5L8,7.5 - c-1.1,0-2.1,1-2.1,2.2v23.4c0,1.1,0.9,2.1,2.1,2.1h0.8L41.7,7.5z"/> -<polygon fill="#59B4D9" points="41.1,32.3 8.8,32.3 8.8,10.4 41.1,10.3 "/> -<path fill="#B8D432" d="M25.4,9c0,0.3-0.2,0.5-0.5,0.5c-0.3,0-0.5-0.2-0.5-0.5c0-0.3,0.2-0.5,0.5-0.5C25.1,8.5,25.4,8.7,25.4,9"/> -<path fill="#7A7A7A" d="M36.6,42.7h-0.9h-9h-0.5c1.2,4.4-0.4,5-7.7,5V50h9.3h6.8h8.8v-2.3C36.1,47.7,35.4,47.1,36.6,42.7"/> -<path fill="#A0A1A2" d="M47.7,15H14c-1.1,0-2.1,1-2.1,2.2v23.4c0,1.1,0.9,2.1,2.1,2.1h33.7c1.1,0,2.3-1,2.3-2.1V17.1 - C50,16,48.8,15,47.7,15"/> -<path opacity="0.2" fill="#FFFFFF" enable-background="new " d="M47.7,15C47.7,15,47.7,15,47.7,15L14,15c-1.1,0-2.1,1-2.1,2.2 - v23.4c0,1.1,0.9,2.1,2.1,2.1h0.8L47.7,15z"/> -<polygon fill="#59B4D9" points="47.1,39.8 14.9,39.8 14.9,17.9 47.1,17.8 "/> -<rect x="18.6" y="47.7" fill="#A0A1A2" width="24.9" height="2.3"/> -<path fill="#B8D432" d="M31.4,16.5c0,0.3-0.2,0.5-0.5,0.5c-0.3,0-0.5-0.2-0.5-0.5s0.2-0.5,0.5-0.5C31.1,16,31.4,16.2,31.4,16.5"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path fill="#a0a1a2" d="M35.7,0H2.1C0.9,0,0,1,0,2.2v23.4c0,1.1,0.9,2.1,2.1,2.1h33.7c1.1,0,2.3-1,2.3-2.1V2.2C38,1,36.9,0,35.7,0"/><path opacity=".2" fill="#fff" d="M35.7 0H2.1C.9 0 0 1 0 2.2v23.4c0 1.1.9 2.1 2.1 2.1h.8L35.7 0z"/><path fill="#59b4d9" d="M35.1 24.8H2.9V2.9h32.2z"/><path fill="#b8d432" d="M19.4 1.6a.47.47 0 0 1-.5.5.47.47 0 0 1-.5-.5.47.47 0 0 1 .5-.5.47.47 0 0 1 .5.5"/><path fill="#a0a1a2" d="M41.7 7.5H8c-1.1 0-2.1 1-2.1 2.2v23.4c0 1.1.9 2.1 2.1 2.1h33.7c1.1 0 2.3-1 2.3-2.1V9.6c0-1.1-1.2-2.1-2.3-2.1"/><path opacity=".2" fill="#fff" d="M41.7 7.5H8c-1.1 0-2.1 1-2.1 2.2v23.4c0 1.1.9 2.1 2.1 2.1h.8L41.7 7.5z"/><path fill="#59b4d9" d="M41.1 32.3H8.8V10.4l32.3-.1z"/><path fill="#b8d432" d="M25.4 9a.47.47 0 0 1-.5.5.47.47 0 0 1-.5-.5.47.47 0 0 1 .5-.5c.2 0 .5.2.5.5"/><path fill="#7a7a7a" d="M36.6 42.7H26.2c1.2 4.4-.4 5-7.7 5V50h24.9v-2.3c-7.3 0-8-.6-6.8-5"/><path fill="#a0a1a2" d="M47.7 15H14c-1.1 0-2.1 1-2.1 2.2v23.4c0 1.1.9 2.1 2.1 2.1h33.7c1.1 0 2.3-1 2.3-2.1V17.1c0-1.1-1.2-2.1-2.3-2.1"/><path opacity=".2" fill="#fff" d="M47.7 15H14c-1.1 0-2.1 1-2.1 2.2v23.4c0 1.1.9 2.1 2.1 2.1h.8L47.7 15z"/><path fill="#59b4d9" d="M47.1 39.8H14.9V17.9l32.2-.1z"/><path fill="#a0a1a2" d="M18.6 47.7h24.9V50H18.6z"/><path fill="#b8d432" d="M31.4 16.5a.47.47 0 0 1-.5.5.47.47 0 0 1-.5-.5.47.47 0 0 1 .5-.5c.2 0 .5.2.5.5"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/SchedulerJob.svg b/src/main/webapp/img/lib/mscae/SchedulerJob.svg index 09bf44d13136ff74b524086895eca1b7eb5e715a..d803a479e652ae3f6eff8bf5d7d4d060d619d72e 100644 --- a/src/main/webapp/img/lib/mscae/SchedulerJob.svg +++ b/src/main/webapp/img/lib/mscae/SchedulerJob.svg @@ -1,135 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="42.595165" - height="50" - viewBox="0 0 42.595165 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="SchedulerJob.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata4569"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs4567" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview4565" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.020815" - inkscape:cx="22.152793" - inkscape:cy="17.934004" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 24.2,6.2 c -4,0.4 -7.5,2.4 -9.9,5.4 -2.4,2.9 -3.6,6.7 -3.2,10.8 0.4,4 2.4,7.5 5.4,9.9 2.9,2.4 6.7,3.6 10.8,3.2 4,-0.4 7.5,-2.4 9.9,-5.4 2.4,-2.9 3.6,-6.7 3.2,-10.8 C 40,15.2 37.9,11.7 34.9,9.3 32.4,7.3 29.2,6.1 25.8,6.1 25.2,6.2 24.7,6.2 24.2,6.2" - id="path4530" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -<path - d="M 42.5,19.1 C 42,14.3 39.6,10.2 36.1,7.4 35.4,6.9 34.7,6.4 34,6 l -1.4,2.6 c 0.6,0.3 1.1,0.7 1.6,1.1 2.9,2.3 4.9,5.7 5.3,9.7 0.4,3.9 -0.8,7.6 -3.1,10.5 -2.3,2.8 -5.7,4.8 -9.6,5.2 -2.6,0.3 -5.2,-0.2 -7.4,-1.2 L 18,36.5 c 2.7,1.3 5.8,1.9 9.1,1.5 4.7,-0.5 8.8,-2.9 11.6,-6.3 2.8,-3.4 4.3,-7.9 3.8,-12.6" - id="path4532" - inkscape:connector-curvature="0" - style="fill:#3999c6" /> -<path - d="M 16.4,32 C 13.6,29.7 11.6,26.3 11.2,22.4 10.8,18.5 12,14.8 14.3,11.9 16.6,9.1 20,7.1 23.9,6.7 27.1,6.4 30.1,7.1 32.6,8.6 L 34,6 C 31,4.2 27.3,3.4 23.6,3.8 18.9,4.3 14.8,6.7 12,10.1 v 0 C 9.2,13.5 7.8,18 8.3,22.7 c 0.5,4.7 2.9,8.8 6.3,11.6 1.1,0.9 2.3,1.6 3.6,2.2 l 1.4,-2.6 C 18.4,33.4 17.3,32.7 16.4,32" - id="path4534" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<path - d="M 16.4,32 C 13.6,29.7 11.6,26.3 11.2,22.4 10.8,18.5 12,14.8 14.3,11.9 16.6,9.1 20,7.1 23.9,6.7 27.1,6.4 30.1,7.1 32.6,8.6 L 34,6 C 31,4.2 27.3,3.4 23.6,3.8 18.9,4.3 14.8,6.7 12,10.1 v 0 C 9.2,13.5 7.8,18 8.3,22.7 c 0.5,4.7 2.9,8.8 6.3,11.6 1.1,0.9 2.3,1.6 3.6,2.2 l 1.4,-2.6 C 18.4,33.4 17.3,32.7 16.4,32" - id="path4536" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="M 32.6,25.4 26,23 c -0.7,-0.3 -1.1,-1 -0.8,-1.8 0.3,-0.7 1,-1.1 1.8,-0.8 l 6.6,2.4 c 0.7,0.3 1.1,1 0.8,1.8 -0.3,0.7 -1.1,1 -1.8,0.8 z" - id="path4538" - inkscape:connector-curvature="0" - style="fill:#7a7a7a" /> -<path - d="m 25.2,22.8 c -0.8,0 -1.4,-0.6 -1.4,-1.4 V 9.7 c 0,-0.8 0.6,-1.4 1.4,-1.4 0.8,0 1.4,0.6 1.4,1.4 v 11.7 c 0,0.8 -0.6,1.4 -1.4,1.4 z" - id="path4540" - inkscape:connector-curvature="0" - style="fill:#7a7a7a" /> -<circle - cx="25.199999" - cy="21.4" - r="2" - id="circle4542" - style="fill:#1e1e1e" /> -<g - id="g4560" - transform="translate(-3.7)"> - <path - d="M 29.1,39.4" - id="path4544" - inkscape:connector-curvature="0" - style="fill:#bad80a" /> - <path - d="M 29.4,45" - id="path4546" - inkscape:connector-curvature="0" - style="fill:#bad80a" /> - <path - d="M 33.9,44.1" - id="path4548" - inkscape:connector-curvature="0" - style="fill:#bad80a" /> - <path - d="M 32.9,44.4" - id="path4550" - inkscape:connector-curvature="0" - style="fill:#bad80a" /> - <path - d="M 42.6,6.8" - id="path4552" - inkscape:connector-curvature="0" - style="fill:#bad80a" /> - <path - d="M 31.5,40.3" - id="path4554" - inkscape:connector-curvature="0" - style="fill:#bad80a" /> - <path - d="M 27.5,40.4" - id="path4556" - inkscape:connector-curvature="0" - style="fill:#bad80a" /> - <path - d="m 27.3,36.3 7,6.5 -6.3,7.2 0.1,-4.7 c -0.5,0 -1.2,0 -1.7,0 C 13.9,45.3 3.7,35.1 3.7,22.6 3.7,10.1 13.9,0 26.4,0 32.7,0 38.5,2.6 42.6,6.8 39,3.3 34.2,1.2 28.8,1.2 17.9,1.1 9.2,9.9 9.1,20.8 c 0,10.4 8.5,18.9 18.7,19.6 z" - id="path4558" - inkscape:connector-curvature="0" - style="fill:#b8d432" /> -</g> -<path - d="M 24.8,43.4 C 12.4,42.9 2.7,32.4 3.2,20 3.5,12.3 7.7,5.6 13.8,1.8 5.7,5.3 0,13.3 0,22.7 c 0,12.5 10.2,22.7 22.7,22.7 0.5,0 1.2,0 1.7,0 l -0.1,4.6 6.2,-7.1 c -1.8,0.4 -3.7,0.5 -5.7,0.5 z" - id="path4562" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#1e1e1e" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="42.595" height="50"><path d="M24.2 6.2c-4 .4-7.5 2.4-9.9 5.4-2.4 2.9-3.6 6.7-3.2 10.8.4 4 2.4 7.5 5.4 9.9 2.9 2.4 6.7 3.6 10.8 3.2 4-.4 7.5-2.4 9.9-5.4 2.4-2.9 3.6-6.7 3.2-10.8s-2.5-7.6-5.5-10a14.6 14.6 0 0 0-9.1-3.2c-.6.1-1.1.1-1.6.1" fill="#fff"/><path d="M42.5 19.1c-.5-4.8-2.9-8.9-6.4-11.7-.7-.5-1.4-1-2.1-1.4l-1.4 2.6c.6.3 1.1.7 1.6 1.1 2.9 2.3 4.9 5.7 5.3 9.7.4 3.9-.8 7.6-3.1 10.5-2.3 2.8-5.7 4.8-9.6 5.2-2.6.3-5.2-.2-7.4-1.2L18 36.5c2.7 1.3 5.8 1.9 9.1 1.5 4.7-.5 8.8-2.9 11.6-6.3s4.3-7.9 3.8-12.6" fill="#3999c6"/><use xlink:href="#B" fill="#a0a1a2"/><use xlink:href="#B" fill="#59b4d9"/><g fill="#7a7a7a"><path d="M32.6 25.4L26 23c-.7-.3-1.1-1-.8-1.8.3-.7 1-1.1 1.8-.8l6.6 2.4c.7.3 1.1 1 .8 1.8-.3.7-1.1 1-1.8.8z"/><path d="M25.2 22.8c-.8 0-1.4-.6-1.4-1.4V9.7c0-.8.6-1.4 1.4-1.4s1.4.6 1.4 1.4v11.7c0 .8-.6 1.4-1.4 1.4z"/></g><circle cx="25.2" cy="21.4" r="2" fill="#1e1e1e"/><path d="M23.6 36.3l7 6.5-6.3 7.2.1-4.7h-1.7C10.2 45.3 0 35.1 0 22.6S10.2 0 22.7 0a22.66 22.66 0 0 1 16.2 6.8c-3.6-3.5-8.4-5.6-13.8-5.6C14.2 1.1 5.5 9.9 5.4 20.8c0 10.4 8.5 18.9 18.7 19.6z" fill="#b8d432"/><path d="M24.8 43.4C12.4 42.9 2.7 32.4 3.2 20c.3-7.7 4.5-14.4 10.6-18.2C5.7 5.3 0 13.3 0 22.7c0 12.5 10.2 22.7 22.7 22.7h1.7l-.1 4.6 6.2-7.1c-1.8.4-3.7.5-5.7.5z" opacity=".2" fill="#1e1e1e"/><defs ><path id="B" d="M16.4 32c-2.8-2.3-4.8-5.7-5.2-9.6s.8-7.6 3.1-10.5c2.3-2.8 5.7-4.8 9.6-5.2 3.2-.3 6.2.4 8.7 1.9L34 6c-3-1.8-6.7-2.6-10.4-2.2-4.7.5-8.8 2.9-11.6 6.3S7.8 18 8.3 22.7s2.9 8.8 6.3 11.6c1.1.9 2.3 1.6 3.6 2.2l1.4-2.6c-1.2-.5-2.3-1.2-3.2-1.9"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/SchedulerJobCollection.svg b/src/main/webapp/img/lib/mscae/SchedulerJobCollection.svg index c9304cab890a073cb21c80d01fa313d87a130cdc..546cc0d8f3b866bb06f99d11c0d55a41359aa8e4 100644 --- a/src/main/webapp/img/lib/mscae/SchedulerJobCollection.svg +++ b/src/main/webapp/img/lib/mscae/SchedulerJobCollection.svg @@ -1,145 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="49.799999" - height="43.103867" - viewBox="0 0 49.799999 43.103867" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="SchedulerJobCollection.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata4723"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs4721" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview4719" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="8.5" - inkscape:cx="28.915062" - inkscape:cy="12.555471" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 27.3,6.3038672 c -3.4,0.4 -6.3,2 -8.3,4.4999998 -2,2.5 -3,5.7 -2.7,9 0.4,3.4 2,6.3 4.5,8.3 2.5,2 5.7,3 9,2.7 3.4,-0.4 6.3,-2.1 8.3,-4.5 2,-2.5 3,-5.7 2.7,-9 -0.4,-3.4 -2.1,-6.3 -4.6,-8.3999998 -2.1,-1.7 -4.8,-2.7 -7.6,-2.7 -0.4,0 -0.8,0 -1.3,0.1" - id="path4680" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -<path - d="m 42.7,17.003867 c -0.4,-4 -2.5,-7.4999998 -5.4,-9.7999998 -0.6,-0.5 -1.2,-0.9 -1.8,-1.2 l -1.1,2.2 c 0.5,0.3 0.9,0.6 1.4,0.9 2.4,1.9999998 4.1,4.7999998 4.5,8.0999998 0.3,3.3 -0.7,6.4 -2.6,8.8 -1.9,2.4 -4.8,4 -8.1,4.4 -2.2,0.2 -4.3,-0.2 -6.2,-1 l -1.1,2.2 c 2.3,1.1 4.9,1.6 7.6,1.3 4,-0.4 7.4,-2.4 9.7,-5.3 2.3,-2.8 3.5,-6.6 3.1,-10.6" - id="path4682" - inkscape:connector-curvature="0" - style="fill:#3999c6" /> -<path - d="m 20.8,27.903867 c -2.4,-1.9 -4,-4.8 -4.4,-8.1 -0.3,-3.3 0.7,-6.4 2.6,-8.8 1.9,-2.3999998 4.8,-3.9999998 8.1,-4.3999998 2.7,-0.3 5.2,0.3 7.3,1.6 l 1.1,-2.2 c -2.6,-1.5 -5.6,-2.2 -8.7,-1.9 -4,0.4 -7.4,2.4 -9.7,5.3 v 0 C 14.8,12.303867 13.5,16.003867 14,20.003867 c 0.4,4 2.4,7.4 5.3,9.7 0.9,0.7 1.9,1.4 3,1.9 l 1.1,-2.2 c -1,-0.4 -1.8,-0.9 -2.6,-1.5" - id="path4684" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<path - d="m 20.8,27.903867 c -2.4,-1.9 -4,-4.8 -4.4,-8.1 -0.3,-3.3 0.7,-6.4 2.6,-8.8 1.9,-2.3999998 4.8,-3.9999998 8.1,-4.3999998 2.7,-0.3 5.2,0.3 7.3,1.6 l 1.1,-2.2 c -2.6,-1.5 -5.6,-2.2 -8.7,-1.9 -4,0.4 -7.4,2.4 -9.7,5.3 v 0 C 14.8,12.303867 13.5,16.003867 14,20.003867 c 0.4,4 2.4,7.4 5.3,9.7 0.9,0.7 1.9,1.4 3,1.9 l 1.1,-2.2 c -1,-0.4 -1.8,-0.9 -2.6,-1.5" - id="path4686" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="m 34.4,22.303867 -5.6,-2 c -0.6,-0.2 -0.9,-0.9 -0.7,-1.5 0.2,-0.6 0.9,-0.9 1.5,-0.7 l 5.6,2 c 0.6,0.2 0.9,0.9 0.7,1.5 -0.2,0.6 -0.9,1 -1.5,0.7 z" - id="path4688" - inkscape:connector-curvature="0" - style="fill:#7a7a7a" /> -<path - d="m 28.2,20.103867 c -0.6,0 -1.2,-0.5 -1.2,-1.2 V 9.1038672 c 0,-0.6 0.5,-1.2 1.2,-1.2 0.6,0 1.2,0.5 1.2,1.2 v 9.7999998 c 0,0.7 -0.5,1.2 -1.2,1.2 z" - id="path4690" - inkscape:connector-curvature="0" - style="fill:#7a7a7a" /> -<circle - cx="28.199999" - cy="19.003868" - r="1.7" - id="circle4692" - style="fill:#1e1e1e" /> -<g - id="g4710" - transform="translate(-0.1,-3.4961328)"> - <path - d="M 28.4,37.6" - id="path4694" - inkscape:connector-curvature="0" - style="fill:#bad80a" /> - <path - d="M 28.7,42.3" - id="path4696" - inkscape:connector-curvature="0" - style="fill:#bad80a" /> - <path - d="M 32.5,41.6" - id="path4698" - inkscape:connector-curvature="0" - style="fill:#bad80a" /> - <path - d="M 31.6,41.8" - id="path4700" - inkscape:connector-curvature="0" - style="fill:#bad80a" /> - <path - d="M 39.8,10.2" - id="path4702" - inkscape:connector-curvature="0" - style="fill:#bad80a" /> - <path - d="M 30.5,38.3" - id="path4704" - inkscape:connector-curvature="0" - style="fill:#bad80a" /> - <path - d="M 27.1,38.4" - id="path4706" - inkscape:connector-curvature="0" - style="fill:#bad80a" /> - <path - d="m 26.9,35 5.9,5.5 -5.2,6 0.1,-3.9 c -0.4,0 -1,0 -1.4,0 -10.5,0 -19.1,-8.5 -19.1,-19.1 0,-10.6 8.4,-19 19,-19 5.3,0 10.1,2.2 13.6,5.7 -3,-2.9 -7.1,-4.7 -11.6,-4.8 -9.1,0 -16.5,7.4 -16.5,16.5 0,8.8 7.1,15.9 15.7,16.5 z" - id="path4708" - inkscape:connector-curvature="0" - style="fill:#b8d432" /> -</g> -<path - d="m 27.9,37.403867 c -10.5,-0.4 -18.6,-9.2 -18.2,-19.6 0.3,-6.5 3.8,-12.0999998 8.9,-15.2999998 -6.8,2.9 -11.6,9.6999998 -11.6,17.5999998 0,10.5 8.5,19.1 19.1,19.1 0.4,0 1,0 1.4,0 l -0.1,3.9 5.2,-6 c -1.5,0.3 -3.1,0.4 -4.7,0.3 z" - id="path4712" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#1e1e1e" /> -<path - d="m 9.5,40.403867 c -0.2,0 -0.5,-0.1 -0.7,-0.2 l -6.8,-4 c -1.2,-0.7 -2,-2.1 -2,-3.4 V 7.6038672 c 0,-1.3 0.8,-2.8 2,-3.4 l 6.8,-4 c 0.7,-0.4 1.6,-0.2 2,0.5 0.4,0.7 0.2,1.6 -0.5,2 l -6.8,4 c -0.2,0.1 -0.5,0.6 -0.5,0.9 V 32.803867 c 0,0.3 0.3,0.8 0.5,0.9 l 6.8,4 c 0.7,0.4 0.9,1.3 0.5,2 -0.3,0.4 -0.8,0.7 -1.3,0.7 z" - id="path4714" - inkscape:connector-curvature="0" - style="fill:#7a7a7a" /> -<path - d="m 40.3,0.0038672 c 0.2,0 0.5,0.1 0.7,0.2 l 6.8,4 c 1.2,0.7 2,2.1 2,3.4 V 32.803867 c 0,1.3 -0.8,2.8 -2,3.4 l -6.8,4 c -0.7,0.4 -1.6,0.2 -2,-0.5 -0.4,-0.7 -0.2,-1.6 0.5,-2 l 6.8,-4 c 0.2,-0.1 0.5,-0.6 0.5,-0.9 V 7.6038672 c 0,-0.3 -0.3,-0.8 -0.5,-0.9 l -6.8,-4 c -0.7,-0.4 -0.9,-1.3 -0.5,-2 0.4,-0.4 0.8,-0.7 1.3,-0.7 z" - id="path4716" - inkscape:connector-curvature="0" - style="fill:#7a7a7a" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="49.8" height="43.104"><path d="M27.3 6.304c-3.4.4-6.3 2-8.3 4.5a12.55 12.55 0 0 0-2.7 9c.4 3.4 2 6.3 4.5 8.3a12.55 12.55 0 0 0 9 2.7 12.7 12.7 0 0 0 8.3-4.5 12.55 12.55 0 0 0 2.7-9c-.4-3.4-2.1-6.3-4.6-8.4-2.1-1.7-4.8-2.7-7.6-2.7-.4 0-.8 0-1.3.1" fill="#fff"/><path d="M42.7 17.004c-.4-4-2.5-7.5-5.4-9.8-.6-.5-1.2-.9-1.8-1.2l-1.1 2.2c.5.3.9.6 1.4.9 2.4 2 4.1 4.8 4.5 8.1.3 3.3-.7 6.4-2.6 8.8s-4.8 4-8.1 4.4c-2.2.2-4.3-.2-6.2-1l-1.1 2.2a13.96 13.96 0 0 0 7.6 1.3c4-.4 7.4-2.4 9.7-5.3 2.3-2.8 3.5-6.6 3.1-10.6" fill="#3999c6"/><use xlink:href="#B" fill="#a0a1a2"/><use xlink:href="#B" fill="#59b4d9"/><g fill="#7a7a7a"><path d="M34.4 22.304l-5.6-2c-.6-.2-.9-.9-.7-1.5s.9-.9 1.5-.7l5.6 2c.6.2.9.9.7 1.5s-.9 1-1.5.7z"/><path d="M28.2 20.104c-.6 0-1.2-.5-1.2-1.2v-9.8c0-.6.5-1.2 1.2-1.2.6 0 1.2.5 1.2 1.2v9.8c0 .7-.5 1.2-1.2 1.2z"/></g><circle cx="28.2" cy="19.004" r="1.7" fill="#1e1e1e"/><path d="M26.8 31.504l5.9 5.5-5.2 6 .1-3.9h-1.4c-10.5 0-19.1-8.5-19.1-19.1s8.4-19 19-19c5.3 0 10.1 2.2 13.6 5.7-3-2.9-7.1-4.7-11.6-4.8a16.52 16.52 0 0 0-16.5 16.5c0 8.8 7.1 15.9 15.7 16.5z" fill="#b8d432"/><path d="M27.9 37.404c-10.5-.4-18.6-9.2-18.2-19.6.3-6.5 3.8-12.1 8.9-15.3A19.15 19.15 0 0 0 7 20.104c0 10.5 8.5 19.1 19.1 19.1h1.4l-.1 3.9 5.2-6c-1.5.3-3.1.4-4.7.3z" opacity=".2" fill="#1e1e1e"/><path d="M9.5 40.404c-.2 0-.5-.1-.7-.2l-6.8-4c-1.2-.7-2-2.1-2-3.4v-25.2c0-1.3.8-2.8 2-3.4l6.8-4c.7-.4 1.6-.2 2 .5s.2 1.6-.5 2l-6.8 4c-.2.1-.5.6-.5.9v25.2c0 .3.3.8.5.9l6.8 4c.7.4.9 1.3.5 2-.3.4-.8.7-1.3.7zM40.3.004c.2 0 .5.1.7.2l6.8 4c1.2.7 2 2.1 2 3.4v25.2c0 1.3-.8 2.8-2 3.4l-6.8 4c-.7.4-1.6.2-2-.5s-.2-1.6.5-2l6.8-4c.2-.1.5-.6.5-.9v-25.2c0-.3-.3-.8-.5-.9l-6.8-4c-.7-.4-.9-1.3-.5-2 .4-.4.8-.7 1.3-.7z" fill="#7a7a7a"/><defs ><path id="B" d="M20.8 27.904c-2.4-1.9-4-4.8-4.4-8.1-.3-3.3.7-6.4 2.6-8.8s4.8-4 8.1-4.4c2.7-.3 5.2.3 7.3 1.6l1.1-2.2a14.52 14.52 0 0 0-8.7-1.9c-4 .4-7.4 2.4-9.7 5.3s-3.6 6.6-3.1 10.6c.4 4 2.4 7.4 5.3 9.7.9.7 1.9 1.4 3 1.9l1.1-2.2c-1-.4-1.8-.9-2.6-1.5"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Search.svg b/src/main/webapp/img/lib/mscae/Search.svg index 7e49924242f6cb7b48cd5735ac426f87d8de741c..12b432ef9b93afeb041c1a88703a4f09c1c671e1 100644 --- a/src/main/webapp/img/lib/mscae/Search.svg +++ b/src/main/webapp/img/lib/mscae/Search.svg @@ -1,24 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#59B4D9" d="M44,14.2c0-0.4,0.1-0.9,0.1-1.3c0-7.1-5.8-12.8-13-12.8C26.9,0,23,2,20.6,5.3c-1.5-1-3.3-1.5-5.2-1.5 - c-5.4,0-9.8,4.4-9.8,9.7l0,0.8C2,16.2,0,19.3,0,23.1c0,6,4.9,10.7,11.2,10.7h27.6c6.3,0,11.2-4.7,11.2-10.7 - C50,19.1,47.8,15.9,44,14.2z"/> -<path opacity="0.2" fill="#FFFFFF" d="M7,28c0-4.1,2.1-7.3,6-9.3l0-0.8c0-5.7,4.7-10.3,10.4-10.3c2,0,3.9,0.5,5.5,1.5 - c2.5-3.5,6.7-5.7,11.2-5.7c0,0,0,0,0,0C37.7,1.3,34.6,0,31.1,0C26.9,0,23,2,20.6,5.3c-1.5-1-3.3-1.5-5.2-1.5c-5.4,0-9.8,4.4-9.8,9.7 - l0,0.8C2,16.2,0,19.3,0,23.1c0,5.1,3.5,9.3,8.4,10.4C7.5,31.9,7,30,7,28z"/> -<path fill="#FFFFFF" d="M34.3,31c-1,3.9-4.4,6.6-8.4,6.6c-0.7,0-1.4-0.1-2.1-0.3c-1-0.3-2-0.7-2.8-1.3c-0.9-0.6-1.6-1.4-2.2-2.2 - c-1.3-2-1.9-4.4-1.3-6.9c1-3.9,4.4-6.6,8.4-6.6c0.7,0,1.4,0.1,2.1,0.3c2.2,0.6,4.1,1.9,5.3,3.9C34.5,26.4,34.9,28.8,34.3,31"/> -<path opacity="0.1" fill="#59B4D9" d="M34.3,31c-1,3.9-4.4,6.6-8.4,6.6c-0.7,0-1.4-0.1-2.1-0.3c-1-0.3-2-0.7-2.8-1.3 - c-0.9-0.6-1.6-1.4-2.2-2.2c-1.3-2-1.9-4.4-1.3-6.9c1-3.9,4.4-6.6,8.4-6.6c0.7,0,1.4,0.1,2.1,0.3c2.2,0.6,4.1,1.9,5.3,3.9 - C34.5,26.4,34.9,28.8,34.3,31"/> -<path opacity="0.3" fill="#59B4D9" d="M30.6,21.7c-0.8-0.5-1.7-0.9-2.6-1.1c-0.7-0.2-1.4-0.3-2.1-0.3c-4,0-7.4,2.7-8.4,6.6 - c-0.6,2.5-0.1,5,1.3,6.9c0.2,0.3,0.5,0.7,0.8,1C21.4,29.1,25.4,24.4,30.6,21.7"/> -<path fill="#3E3E3E" d="M36.5,22.6c-1.7-2.8-4.4-4.8-7.6-5.6c-1-0.2-2-0.4-3-0.4c-5.7,0-10.6,3.9-12,9.4c-0.8,3.1-0.3,6.3,1.3,9.1 - l-9.4,9.5c-1.2,1.2-1.2,3.3,0,4.5C6.5,49.7,7.3,50,8.1,50c0.8,0,1.6-0.3,2.3-0.9l9.4-9.5c1,0.6,2.1,1,3.2,1.3c1,0.2,2,0.4,3,0.4 - c5.7,0,10.6-3.9,12-9.4C38.7,28.7,38.2,25.4,36.5,22.6z M34.3,31c-1,3.9-4.4,6.6-8.4,6.6c-0.7,0-1.4-0.1-2.1-0.3 - c-1-0.3-2-0.7-2.8-1.3c-0.9-0.6-1.6-1.4-2.2-2.2c-1.3-2-1.9-4.4-1.3-6.9c1-3.9,4.4-6.6,8.4-6.6c0.7,0,1.4,0.1,2.1,0.3 - c2.2,0.6,4.1,1.9,5.3,3.9C34.5,26.5,34.9,28.8,34.3,31z"/> -<path opacity="0.5" fill="#1E1E1E" d="M18.9,39.1c-1.3-0.9-2.3-1.9-3.2-3.2c-0.2-0.3-0.3-0.5-0.5-0.8L14.4,36l-0.1,0.1 - c0.1,0.2,0.2,0.4,0.4,0.6c1,1.4,2.1,2.6,3.5,3.6c0.1,0.1,0.4,0.2,0.7,0.3l0.9-0.9C19.4,39.4,19.2,39.3,18.9,39.1z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="50"><path fill="#59b4d9" d="M44 14.2c0-.4.1-.9.1-1.3 0-7.1-5.8-12.8-13-12.8a12.62 12.62 0 0 0-10.5 5.2c-1.5-1-3.3-1.5-5.2-1.5-5.4 0-9.8 4.4-9.8 9.7v.8C2 16.2 0 19.3 0 23.1c0 6 4.9 10.7 11.2 10.7h27.6c6.3 0 11.2-4.7 11.2-10.7 0-4-2.2-7.2-6-8.9z"/><g fill="#fff"><path opacity=".2" d="M7 28c0-4.1 2.1-7.3 6-9.3v-.8c0-5.7 4.7-10.3 10.4-10.3 2 0 3.9.5 5.5 1.5 2.5-3.5 6.7-5.7 11.2-5.7-2.4-2.1-5.5-3.4-9-3.4-4.2 0-8.1 2-10.5 5.3-1.5-1-3.3-1.5-5.2-1.5-5.4 0-9.8 4.4-9.8 9.7v.8C2 16.2 0 19.3 0 23.1c0 5.1 3.5 9.3 8.4 10.4C7.5 31.9 7 30 7 28z"/><use xlink:href="#B"/></g><g fill="#59b4d9"><use xlink:href="#B" opacity=".1"/><path opacity=".3" d="M30.6 21.7c-.8-.5-1.7-.9-2.6-1.1-.7-.2-1.4-.3-2.1-.3-4 0-7.4 2.7-8.4 6.6-.6 2.5-.1 5 1.3 6.9.2.3.5.7.8 1 1.8-5.7 5.8-10.4 11-13.1"/></g><path fill="#3e3e3e" d="M36.5 22.6a12.35 12.35 0 0 0-7.6-5.6c-1-.2-2-.4-3-.4-5.7 0-10.6 3.9-12 9.4-.8 3.1-.3 6.3 1.3 9.1l-9.4 9.5c-1.2 1.2-1.2 3.3 0 4.5.7.6 1.5.9 2.3.9s1.6-.3 2.3-.9l9.4-9.5c1 .6 2.1 1 3.2 1.3 1 .2 2 .4 3 .4 5.7 0 10.6-3.9 12-9.4.7-3.2.2-6.5-1.5-9.3zM34.3 31c-1 3.9-4.4 6.6-8.4 6.6-.7 0-1.4-.1-2.1-.3-1-.3-2-.7-2.8-1.3-.9-.6-1.6-1.4-2.2-2.2-1.3-2-1.9-4.4-1.3-6.9 1-3.9 4.4-6.6 8.4-6.6.7 0 1.4.1 2.1.3 2.2.6 4.1 1.9 5.3 3.9s1.6 4.3 1 6.5z"/><path opacity=".5" fill="#1e1e1e" d="M18.9 39.1a12.17 12.17 0 0 1-3.2-3.2l-.5-.8-.8.9-.1.1c.1.2.2.4.4.6 1 1.4 2.1 2.6 3.5 3.6.1.1.4.2.7.3l.9-.9c-.4-.3-.6-.4-.9-.6z"/><defs ><path id="B" d="M34.3 31c-1 3.9-4.4 6.6-8.4 6.6-.7 0-1.4-.1-2.1-.3-1-.3-2-.7-2.8-1.3-.9-.6-1.6-1.4-2.2-2.2-1.3-2-1.9-4.4-1.3-6.9 1-3.9 4.4-6.6 8.4-6.6.7 0 1.4.1 2.1.3 2.2.6 4.1 1.9 5.3 3.9 1.2 1.9 1.6 4.3 1 6.5"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/SearchGrid.svg b/src/main/webapp/img/lib/mscae/SearchGrid.svg index fb0450c3f3f8ecc7d3a8c20e416c5d3272814980..9bcb03859526be6a5a480dc18adfabaef56b7340 100644 --- a/src/main/webapp/img/lib/mscae/SearchGrid.svg +++ b/src/main/webapp/img/lib/mscae/SearchGrid.svg @@ -1,110 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="48.497051" - height="47.367001" - viewBox="0 0 48.497051 47.367001" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="SearchGrid.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata4885"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs4883" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview4881" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="6.0104076" - inkscape:cx="2.8614758" - inkscape:cy="7.8715329" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<rect - x="15.758049" - y="0" - width="9.802" - height="9.6949997" - id="rect4860" - style="fill:#b8d432" /> -<rect - x="27.199049" - y="0" - width="9.8310003" - height="9.6949997" - id="rect4862" - style="fill:#b8d432" /> -<rect - x="38.696053" - y="0" - width="9.8009996" - height="9.6949997" - id="rect4864" - style="fill:#b8d432" /> -<rect - x="38.696053" - y="11.469" - width="9.8009996" - height="9.6949997" - id="rect4866" - style="fill:#b8d432" /> -<rect - x="38.696053" - y="22.938" - width="9.8009996" - height="9.8310003" - id="rect4868" - style="fill:#b8d432" /> -<path - d="m 3.6180498,47.367 c -0.961,0 -1.865,-0.373 -2.546,-1.048 C 0.38604975,45.64 0.00404975,44.732 4.9754595e-5,43.766 -0.00495025,42.798 0.36704975,41.889 1.0480498,41.202 l 8.747,-8.83 c -1.479,-2.758 -1.888,-5.921 -1.145,-8.952 1.3990002,-5.652 6.4310002,-9.599 12.2360002,-9.599 1.01,0 2.026,0.124 3.022,0.368 3.269,0.805 6.029,2.836 7.771,5.718 1.742,2.882 2.258,6.272 1.45,9.541 -1.389,5.646 -6.421,9.589 -12.235,9.589 -1.017,0 -2.031,-0.124 -3.018,-0.367 -1.032,-0.254 -2.033,-0.643 -2.984,-1.16 l -8.7010002,8.784 c -0.687,0.693 -1.6,1.073 -2.573,1.073 M 20.88605,18.598 c -3.604,0 -6.728,2.452 -7.598,5.965 -0.525,2.141 -0.105,4.429 1.151,6.27 0.545,0.802 1.223,1.488 2.017,2.037 0.793,0.547 1.655,0.94 2.563,1.163 0.612,0.152 1.244,0.227 1.875,0.227 3.609,0 6.734,-2.448 7.597,-5.956 0.502,-2.028 0.182,-4.133 -0.901,-5.926 -1.081,-1.79 -2.795,-3.051 -4.823,-3.551 -0.619,-0.153 -1.252,-0.229 -1.881,-0.229" - id="path4870" - inkscape:connector-curvature="0" - style="fill:#3e3e3e" /> -<path - d="m 24.28905,13.08 c 0.432,0.106 0.854,0.234 1.271,0.379 v -1.991 h -9.802 v 2.284 c 1.631,-0.686 3.412,-1.068 5.27,-1.068 1.092,0 2.189,0.132 3.261,0.396" - id="path4872" - inkscape:connector-curvature="0" - style="fill:#b8d432" /> -<path - d="m 32.67205,19.249 c 0.372,0.617 0.679,1.26 0.946,1.915 h 3.41 v -9.696 h -9.83 v 2.704 c 2.245,1.137 4.139,2.869 5.474,5.077" - id="path4874" - inkscape:connector-curvature="0" - style="fill:#b8d432" /> -<path - d="m 34.23805,29.541 c -0.282,1.146 -0.704,2.227 -1.243,3.227 h 4.034 v -9.831 h -2.807 c 0.546,2.142 0.561,4.398 0.016,6.604" - id="path4876" - inkscape:connector-curvature="0" - style="fill:#b8d432" /> -<path - d="m 27.70505,26.414 c 0,3.703 -3.003,6.704 -6.705,6.704 -3.703,0 -6.705,-3.001 -6.705,-6.704 0,-3.703 3.002,-6.704 6.705,-6.704 3.701,0 6.705,3.001 6.705,6.704" - id="path4878" - inkscape:connector-curvature="0" - style="fill:#b8d432" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="48.497" height="47.367"><path d="M15.758 0h9.802v9.695h-9.802zM27.2 0h9.83v9.695H27.2zm11.496 0h9.8v9.695h-9.8zm0 11.47h9.8v9.695h-9.8zm0 11.468h9.8v9.83h-9.8z" fill="#b8d432"/><path d="M3.618 47.367c-.96 0-1.865-.373-2.546-1.048A3.59 3.59 0 0 1 0 43.766a3.59 3.59 0 0 1 1.048-2.564l8.747-8.83c-1.48-2.758-1.888-5.92-1.145-8.952 1.4-5.652 6.43-9.6 12.236-9.6a12.71 12.71 0 0 1 3.022.368 12.52 12.52 0 0 1 7.771 5.718 12.52 12.52 0 0 1 1.45 9.541c-1.39 5.646-6.42 9.59-12.235 9.59a12.63 12.63 0 0 1-3.018-.367 12.5 12.5 0 0 1-2.984-1.16l-8.7 8.784c-.687.693-1.6 1.073-2.573 1.073m17.268-28.77c-3.604 0-6.728 2.452-7.598 5.965a7.84 7.84 0 0 0 1.151 6.27c.545.802 1.223 1.488 2.017 2.037s1.655.94 2.563 1.163a7.79 7.79 0 0 0 1.875.227 7.81 7.81 0 0 0 7.597-5.956c.502-2.028.182-4.133-.9-5.926a7.77 7.77 0 0 0-4.823-3.551c-.62-.153-1.252-.23-1.88-.23" fill="#3e3e3e"/><path d="M24.3 13.08l1.27.38v-2h-9.802v2.284c1.63-.686 3.412-1.068 5.27-1.068a13.65 13.65 0 0 1 3.261.396m8.383 6.168c.372.617.68 1.26.946 1.915h3.4V11.47h-9.83v2.704c2.245 1.137 4.14 2.87 5.474 5.077m1.576 10.3a13.69 13.69 0 0 1-1.243 3.227h4.034v-9.83h-2.807a13.54 13.54 0 0 1 .016 6.604m-6.533-3.127c0 3.703-3.003 6.704-6.705 6.704s-6.705-3-6.705-6.704S17.297 19.7 21 19.7s6.705 3 6.705 6.704" fill="#b8d432"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Security_Baselines.svg b/src/main/webapp/img/lib/mscae/Security_Baselines.svg new file mode 100644 index 0000000000000000000000000000000000000000..8ca6b9527af52ab8e1c32dbbbe68fbd3b3d95bbd --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Security_Baselines.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="14" height="15.999"><path d="M8.508 1.55C5.503 1.234 5 0 5 0s-.677 1.623-5 1.623v6.66c0 .805.47 1.56 1.12 2.218C2.594 11.994 5 13 5 13s5-2.087 5-4.72V1.623a14.39 14.39 0 0 1-1.492-.073z" fill="#7fba00"/><path d="M6.237 4.3l2.27-2.752C5.503 1.234 5 0 5 0s-.677 1.623-5 1.623v6.66c0 .805.47 1.56 1.12 2.218L2.8 8.466z" opacity=".4" fill="#b8d432"/><path d="M6 7.998h7v7l-6.98.048z" fill="#fff"/><path d="M9 9h3v1H9zm0 2h3v1H9zm0 2h3v1H9zM7 9h1v1H7zm0 2h1v1H7zm0 2h1v1H7z" fill="#3898c6"/><path d="M13.653 6H5.347c-.092-.001-.18.036-.245.1S5 6.252 5 6.344v9.31c0 .2.155.344.347.344h8.305c.092.001.18-.036.246-.1s.102-.153.102-.245v-9.3c0-.092-.037-.18-.102-.245s-.153-.1-.245-.1zM6 15v-7h7v7z" fill="#3999c6"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Security_Center.svg b/src/main/webapp/img/lib/mscae/Security_Center.svg index b9bde41fecd51374912a983eb22f5fca9e65f81e..511959b99fb14d37932d2f86bda6258dbc2ecee4 100644 --- a/src/main/webapp/img/lib/mscae/Security_Center.svg +++ b/src/main/webapp/img/lib/mscae/Security_Center.svg @@ -1,73 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - viewBox="0 0 36.653999 50.000999" - role="img" - focusable="false" - id="svg2" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure Security Center _COLOR.svg" - width="36.653999" - height="50.000999" - style="fill:#ffffff"> - <metadata - id="metadata14"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <defs - id="defs12" /> - <sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview10" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="10.363697" - inkscape:cx="12.887542" - inkscape:cy="19.082963" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="svg2" /> - <path - d="M 31.185,5.96 31.185,5.96 C 20.169,4.745 18.326,0 18.326,0 18.326,0 15.847,6.242 0,6.242 L 0,31.853 C 0,34.95 1.721,37.85 4.104,40.385 L 4.104,40.385 C 9.506,46.133 18.327,50.001 18.327,50.001 18.327,50.001 36.654,41.972 36.654,31.852 L 36.654,6.242 C 34.616,6.242 32.803,6.139 31.185,5.96 Z" - id="path4" - inkscape:connector-curvature="0" - style="fill:#7fba00" /> - <path - d="M 22.86,16.543 31.185,5.96 C 20.169,4.745 18.326,0 18.326,0 18.326,0 15.847,6.242 0,6.242 L 0,31.853 C 0,34.95 1.721,37.85 4.104,40.385 L 10.258,32.563 22.86,16.543 Z" - id="path6" - inkscape:connector-curvature="0" - style="opacity:0.4;fill:#b8d432" /> - <path - d="M 25.595,24.46 24.529,24.46 24.529,20.908 C 24.529,19.199 23.9,17.632 22.86,16.458 L 22.86,16.458 C 22.821,16.415 22.786,16.368 22.748,16.325 21.641,15.139 20.065,14.377 18.326,14.378 16.59,14.377 15.014,15.139 13.907,16.325 12.797,17.512 12.124,19.136 12.124,20.907 L 12.124,24.46 11.059,24.46 C 10.616,24.46 10.258,24.819 10.258,25.261 L 10.258,32.478 10.258,32.479 10.258,34.653 C 10.258,35.095 10.617,35.454 11.059,35.454 L 25.595,35.454 C 26.037,35.454 26.396,35.095 26.396,34.653 L 26.396,25.262 C 26.396,24.818 26.037,24.46 25.595,24.46 Z M 21.584,24.461 16.564,24.461 16.565,24.46 15.07,24.46 15.07,20.908 C 15.07,19.886 15.456,18.981 16.058,18.338 16.663,17.695 17.453,17.325 18.326,17.325 19.2,17.325 19.991,17.695 20.596,18.338 20.739,18.491 20.867,18.661 20.985,18.842 L 20.984,18.843 C 21.357,19.422 21.584,20.131 21.584,20.907 L 21.584,24.461 Z" - id="path8" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="36.654" height="50.001" fill="#ffffff"><path d="M31.185 5.96C20.17 4.745 18.326 0 18.326 0S15.847 6.242 0 6.242v25.61c0 3.097 1.72 5.997 4.104 8.532C9.506 46.133 18.327 50 18.327 50s18.327-8.03 18.327-18.15v-25.6c-2.038 0-3.85-.103-5.47-.282z" fill="#7fba00"/><path d="M22.86 16.543L31.185 5.96C20.17 4.745 18.326 0 18.326 0S15.847 6.242 0 6.242v25.61c0 3.097 1.72 5.997 4.104 8.532L22.86 16.543z" opacity=".4" fill="#b8d432"/><path d="M25.595 24.46H24.53v-3.552c0-1.71-.63-3.276-1.67-4.45l-.112-.133c-1.107-1.186-2.683-1.948-4.422-1.947s-3.312.76-4.42 1.947-1.783 2.81-1.783 4.582v3.553H11.06a.8.8 0 0 0-.801.801v9.392a.8.8 0 0 0 .801.801h14.536a.8.8 0 0 0 .801-.801v-9.39a.8.8 0 0 0-.801-.802zm-4.01.001h-5.02.001-1.495v-3.552c0-1.022.386-1.927.988-2.57s1.395-1.013 2.268-1.013 1.665.37 2.27 1.013a3.67 3.67 0 0 1 .389.504l-.001.001a3.8 3.8 0 0 1 .6 2.064v3.554z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/SendGrid_Accounts.svg b/src/main/webapp/img/lib/mscae/SendGrid_Accounts.svg new file mode 100644 index 0000000000000000000000000000000000000000..8ecf29fc9bee60716e222342d1ece28d186ed9bb --- /dev/null +++ b/src/main/webapp/img/lib/mscae/SendGrid_Accounts.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="558.2" height="558.2"><path d="M371.1.1l183-.1c3.4 0 4.1.7 4.1 4.1l-.1 182c-58.9 0-117.8 0-176.8-.1-3.1 0-6.2 1.5-9.2.1-.3-.3-.6-.7-1-1z" fill="#0072c6"/><path d="M.1 186.1h185.8l.4-.1-.2 6.5v179.6l.1-.1H.2L.1 186.1z" fill="#59b4d9"/><path d="M.1 372.1h186v186l-182 .1c-3.4 0-4.1-.7-4.1-4.1l.1-182z" fill="#0072c6"/><path d="M186.1 558.1l-.1-185.9h179.6l6.5-.2-.1.4v185.8l-185.9-.1z" fill="#59b4d9"/><path d="M558.1 372.1h-180l-6 .2.1-.4-.1-185.8c3.1 1.5 6.2-.1 9.2-.1l176.8.1zm-372.2-186l.2-15.4V.1h185v185c-1.1 1.4-2.7 1-4.2 1z" fill="#3999c6"/><path d="M186.4 186H367c1.4 0 3 .4 4.2-1 .3.3.6.7 1 1l.1 185.8-6.5.2H186.2V192.4c-.1-2.1.1-4.2.2-6.4z" fill="#0072c6"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Server.svg b/src/main/webapp/img/lib/mscae/Server.svg index b374eba8a4ff6ddaadefb2b803c72823355ca5a4..2d9d07fb43f41d82db5a710d544bc9f9153a50db 100644 --- a/src/main/webapp/img/lib/mscae/Server.svg +++ b/src/main/webapp/img/lib/mscae/Server.svg @@ -1,92 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="50" - width="29.299999" - viewBox="0 0 29.299999 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Server.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata5184"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs5182" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview5180" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="14.6" - inkscape:cy="25" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<g - id="g5177" - transform="translate(-10.4)"> - <path - d="m 39.7,47.5 c 0,1.4 -1.1,2.5 -2.5,2.5 H 12.9 c -1.4,0 -2.5,-1.1 -2.5,-2.5 V 2.5 C 10.4,1.1 11.5,0 12.9,0 h 24.3 c 1.4,0 2.5,1.1 2.5,2.5 z" - id="path5163" - inkscape:connector-curvature="0" - style="fill:#3e3e3e" /> - <path - d="m 14.6,27 c 0,-1.8 1.4,-3.2 3.2,-3.2 h 14.6 c 1.8,0 3.2,1.4 3.2,3.2 v 0 c 0,1.8 -1.4,3.2 -3.2,3.2 H 17.8 c -1.7,0 -3.2,-1.4 -3.2,-3.2 z" - id="path5165" - inkscape:connector-curvature="0" - style="fill:#1e1e1e" /> - <circle - cx="18" - cy="27" - r="2.0999999" - id="circle5167" - style="fill:#b8d432" /> - <path - d="m 14.6,17.5 c 0,-1.8 1.4,-3.2 3.2,-3.2 h 14.6 c 1.8,0 3.2,1.4 3.2,3.2 v 0 c 0,1.8 -1.4,3.2 -3.2,3.2 H 17.8 c -1.7,0 -3.2,-1.4 -3.2,-3.2 z" - id="path5169" - inkscape:connector-curvature="0" - style="fill:#1e1e1e" /> - <circle - cx="18" - cy="17.5" - r="2.0999999" - id="circle5171" - style="fill:#b8d432" /> - <path - d="m 14.6,8.1 c 0,-1.8 1.4,-3.2 3.2,-3.2 h 14.6 c 1.8,0 3.2,1.4 3.2,3.2 v 0 c 0,1.8 -1.4,3.2 -3.2,3.2 H 17.8 c -1.7,0 -3.2,-1.5 -3.2,-3.2 z" - id="path5173" - inkscape:connector-curvature="0" - style="fill:#1e1e1e" /> - <circle - cx="18" - cy="8.1000004" - r="2.0999999" - id="circle5175" - style="fill:#b8d432" /> -</g> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" height="50" width="29.3"><path d="M29.3 47.5c0 1.4-1.1 2.5-2.5 2.5H2.5C1.1 50 0 48.9 0 47.5v-45C0 1.1 1.1 0 2.5 0h24.3c1.4 0 2.5 1.1 2.5 2.5z" fill="#3e3e3e"/><path d="M4.2 27c0-1.8 1.4-3.2 3.2-3.2H22c1.8 0 3.2 1.4 3.2 3.2s-1.4 3.2-3.2 3.2H7.4c-1.7 0-3.2-1.4-3.2-3.2z" fill="#1e1e1e"/><circle cx="7.6" cy="27" r="2.1" fill="#b8d432"/><path d="M4.2 17.5c0-1.8 1.4-3.2 3.2-3.2H22c1.8 0 3.2 1.4 3.2 3.2s-1.4 3.2-3.2 3.2H7.4c-1.7 0-3.2-1.4-3.2-3.2z" fill="#1e1e1e"/><circle cx="7.6" cy="17.5" r="2.1" fill="#b8d432"/><path d="M4.2 8.1c0-1.8 1.4-3.2 3.2-3.2H22c1.8 0 3.2 1.4 3.2 3.2s-1.4 3.2-3.2 3.2H7.4c-1.7 0-3.2-1.5-3.2-3.2z" fill="#1e1e1e"/><circle cx="7.6" cy="8.1" r="2.1" fill="#b8d432"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/ServerFarm.svg b/src/main/webapp/img/lib/mscae/ServerFarm.svg index 86847be275afb6baf2d9ed22a4df3c94cf0ffd70..01285efa28ad20f4f17e690983b131a5bf56d332 100644 --- a/src/main/webapp/img/lib/mscae/ServerFarm.svg +++ b/src/main/webapp/img/lib/mscae/ServerFarm.svg @@ -1,24 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#3E3E3E" d="M29.364,47.462c0,1.402-1.136,2.538-2.538,2.538H2.538C1.136,50,0,48.864,0,47.462V2.538 - C0,1.136,1.136,0,2.538,0h24.288c1.402,0,2.538,1.136,2.538,2.538V47.462z"/> -<path fill="#1E1E1E" d="M4.316,27.024c0-1.762,1.429-3.191,3.191-3.191h14.614c1.762,0,3.191,1.429,3.191,3.191l0,0 - c0,1.762-1.429,3.191-3.191,3.191H7.507C5.745,30.215,4.316,28.787,4.316,27.024L4.316,27.024z"/> -<circle fill="#B8D432" cx="7.643" cy="27.024" r="2.142"/> -<path fill="#1E1E1E" d="M4.316,17.545c0-1.762,1.429-3.191,3.191-3.191h14.614c1.762,0,3.191,1.429,3.191,3.191l0,0 - c0,1.762-1.429,3.191-3.191,3.191H7.507C5.745,20.736,4.316,19.307,4.316,17.545L4.316,17.545z"/> -<circle fill="#B8D432" cx="7.643" cy="17.545" r="2.142"/> -<path fill="#1E1E1E" d="M4.316,8.065c0-1.762,1.429-3.191,3.191-3.191h14.614c1.762,0,3.191,1.429,3.191,3.191l0,0 - c0,1.762-1.429,3.191-3.191,3.191H7.507C5.745,11.257,4.316,9.828,4.316,8.065L4.316,8.065z"/> -<circle fill="#B8D432" cx="7.643" cy="8.065" r="2.142"/> -<polygon fill="#BA141A" points="43.167,25.117 31.557,19.889 19.948,25.117 15.867,35.404 15.867,50 47.248,50 47.248,35.404 "/> -<polygon fill="#A0A1A2" points="47.111,37.362 42.247,26.523 31.557,21.709 20.868,26.523 16.004,37.362 13.784,36.365 - 19.027,24.684 31.557,19.042 44.088,24.684 49.331,36.365 "/> -<path fill="#FFFFFF" d="M39.369,50H23.561V37.812h15.808V50z M25.187,48.374h12.555v-8.935H25.187V48.374z"/> -<rect x="22.623" y="43.092" transform="matrix(-0.802 -0.5973 0.5973 -0.802 30.4733 97.9112)" fill="#FFFFFF" width="17.682" height="1.626"/> -<rect x="30.65" y="35.065" transform="matrix(-0.5972 -0.8021 0.8021 -0.5972 15.0365 95.3626)" fill="#FFFFFF" width="1.626" height="17.682"/> -<rect x="28.943" y="27.568" opacity="0.5" fill="#1E1E1E" enable-background="new " width="5.229" height="4.187"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="50"><path fill="#3e3e3e" d="M29.364 47.462A2.54 2.54 0 0 1 26.826 50H2.538A2.54 2.54 0 0 1 0 47.462V2.538A2.54 2.54 0 0 1 2.538 0h24.288a2.54 2.54 0 0 1 2.538 2.538v44.924z"/><use xlink:href="#B" fill="#1e1e1e"/><circle fill="#b8d432" cx="7.643" cy="27.024" r="2.142"/><use xlink:href="#B" y="-9.479" fill="#1e1e1e"/><circle fill="#b8d432" cx="7.643" cy="17.545" r="2.142"/><use xlink:href="#B" y="-18.959" fill="#1e1e1e"/><circle fill="#b8d432" cx="7.643" cy="8.065" r="2.142"/><path fill="#ba141a" d="M43.167 25.117l-11.6-5.228-11.61 5.228-4.08 10.287V50h31.38V35.404z"/><path fill="#a0a1a2" d="M47.11 37.362l-4.864-10.84-10.7-4.814-10.69 4.814-4.864 10.84-2.22-.997 5.243-11.68 12.53-5.642 12.53 5.642 5.243 11.68z"/><g fill="#fff"><path d="M39.37 50H23.56V37.812H39.37V50zm-14.182-1.626h12.555V39.44H25.187v8.935z"/><path d="M38.07 49.84l-14.18-10.56.97-1.304 14.18 10.56z"/><path d="M24.858 49.837l-.97-1.304 14.183-10.56.97 1.304z"/></g><path opacity=".5" fill="#1e1e1e" d="M28.943 27.568h5.23v4.187h-5.23z"/><defs ><path id="B" d="M4.316 27.024a3.19 3.19 0 0 1 3.191-3.191H22.12a3.19 3.19 0 1 1 0 6.382H7.507a3.19 3.19 0 0 1-3.191-3.191z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/ServerProxy.svg b/src/main/webapp/img/lib/mscae/ServerProxy.svg index 0de1afa8751e7a00279ebabd3d35149c41e9dc29..ee5e3598467dc53b64f2795a53b24621bf233405 100644 --- a/src/main/webapp/img/lib/mscae/ServerProxy.svg +++ b/src/main/webapp/img/lib/mscae/ServerProxy.svg @@ -1,102 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="50" - width="40" - viewBox="0 0 40 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="ServerProxy.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata5441"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs5439" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview5437" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="18" - inkscape:cy="25" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<g - id="g5430" - transform="translate(-7)"> - <path - d="m 36.4,47.5 c 0,1.4 -1.1,2.5 -2.5,2.5 H 9.5 C 8.1,50 7,48.9 7,47.5 V 2.5 C 7,1.1 8.1,0 9.5,0 h 24.3 c 1.4,0 2.5,1.1 2.5,2.5 v 45 z" - id="path5416" - inkscape:connector-curvature="0" - style="fill:#3e3e3e" /> - <path - d="m 11.3,27 c 0,-1.8 1.4,-3.2 3.2,-3.2 h 14.6 c 1.8,0 3.2,1.4 3.2,3.2 v 0 c 0,1.8 -1.4,3.2 -3.2,3.2 H 14.5 c -1.8,0 -3.2,-1.4 -3.2,-3.2 z" - id="path5418" - inkscape:connector-curvature="0" - style="fill:#1e1e1e" /> - <circle - cx="14.6" - cy="27" - r="2.0999999" - id="circle5420" - style="fill:#b8d432" /> - <path - d="m 11.3,17.5 c 0,-1.8 1.4,-3.2 3.2,-3.2 h 14.6 c 1.8,0 3.2,1.4 3.2,3.2 v 0 c 0,1.8 -1.4,3.2 -3.2,3.2 H 14.5 c -1.8,0 -3.2,-1.4 -3.2,-3.2 z" - id="path5422" - inkscape:connector-curvature="0" - style="fill:#1e1e1e" /> - <circle - cx="14.6" - cy="17.5" - r="2.0999999" - id="circle5424" - style="fill:#b8d432" /> - <path - d="m 11.3,8.1 c 0,-1.8 1.4,-3.2 3.2,-3.2 h 14.6 c 1.8,0 3.2,1.4 3.2,3.2 v 0 c 0,1.8 -1.4,3.2 -3.2,3.2 H 14.5 c -1.8,0 -3.2,-1.5 -3.2,-3.2 z" - id="path5426" - inkscape:connector-curvature="0" - style="fill:#1e1e1e" /> - <circle - cx="14.6" - cy="8.1000004" - r="2.0999999" - id="circle5428" - style="fill:#b8d432" /> -</g> -<polygon - points="41.2,27.5 47,33.5 41.2,39.4 37.7,39.4 42,34.8 26.4,34.8 26.4,32.1 42,32.1 37.7,27.5 " - id="polygon5432" - style="fill:#59b4d9" - transform="translate(-7)" /> -<polygon - points="32.2,50 26.4,44.1 32.1,38.1 35.6,38.1 31.3,42.7 47,42.7 47,45.4 31.3,45.4 35.7,50 " - id="polygon5434" - style="fill:#59b4d9" - transform="translate(-7)" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" height="50" width="40"><path d="M29.4 47.5c0 1.4-1.1 2.5-2.5 2.5H2.5C1.1 50 0 48.9 0 47.5v-45C0 1.1 1.1 0 2.5 0h24.3c1.4 0 2.5 1.1 2.5 2.5v45z" fill="#3e3e3e"/><path d="M4.3 27c0-1.8 1.4-3.2 3.2-3.2h14.6c1.8 0 3.2 1.4 3.2 3.2s-1.4 3.2-3.2 3.2H7.5c-1.8 0-3.2-1.4-3.2-3.2z" fill="#1e1e1e"/><circle cx="7.6" cy="27" r="2.1" fill="#b8d432"/><path d="M4.3 17.5c0-1.8 1.4-3.2 3.2-3.2h14.6c1.8 0 3.2 1.4 3.2 3.2s-1.4 3.2-3.2 3.2H7.5c-1.8 0-3.2-1.4-3.2-3.2z" fill="#1e1e1e"/><circle cx="7.6" cy="17.5" r="2.1" fill="#b8d432"/><path d="M4.3 8.1c0-1.8 1.4-3.2 3.2-3.2h14.6c1.8 0 3.2 1.4 3.2 3.2s-1.4 3.2-3.2 3.2H7.5c-1.8 0-3.2-1.5-3.2-3.2z" fill="#1e1e1e"/><circle cx="7.6" cy="8.1" r="2.1" fill="#b8d432"/><path d="M34.2 27.5l5.8 6-5.8 5.9h-3.5l4.3-4.6H19.4v-2.7H35l-4.3-4.6zm-9 22.5l-5.8-5.9 5.7-6h3.5l-4.3 4.6H40v2.7H24.3l4.4 4.6z" fill="#59b4d9"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/ServiceHealth.svg b/src/main/webapp/img/lib/mscae/ServiceHealth.svg index 2a5e0782a330277fa6b42ccf2412af482405898b..01c3caa2257e2727cf7df60e80f14599193e51c3 100644 --- a/src/main/webapp/img/lib/mscae/ServiceHealth.svg +++ b/src/main/webapp/img/lib/mscae/ServiceHealth.svg @@ -1,59 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="24" - height="21.011999" - viewBox="0 0 24 21.011999" - enable-background="new 0 0 24 24" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="ServiceHealth-color.svg"><metadata - id="metadata13"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs11" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview9" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="33.45638" - inkscape:cx="12" - inkscape:cy="10.012" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 17.625,0 C 16.977,0 16.398,0.074 15.891,0.223 15.383,0.371 14.912,0.577 14.479,0.838 14.045,1.1 13.631,1.414 13.237,1.781 12.842,2.148 12.43,2.551 12,2.988 11.57,2.55 11.158,2.148 10.764,1.781 10.369,1.414 9.955,1.1 9.521,0.838 9.088,0.576 8.617,0.371 8.109,0.223 7.602,0.074 7.023,0 6.375,0 5.492,0 4.664,0.168 3.891,0.504 3.117,0.84 2.441,1.295 1.863,1.869 1.285,2.443 0.83,3.119 0.498,3.896 0.166,4.674 0,5.5 0,6.375 0,7.227 0.162,8.043 0.486,8.824 0.81,9.605 1.269,10.293 1.863,10.886 L 12,21.012 22.137,10.887 C 22.731,10.293 23.19,9.606 23.514,8.825 23.838,8.044 24,7.227 24,6.375 24,5.5 23.834,4.674 23.502,3.896 23.17,3.119 22.715,2.443 22.137,1.869 21.559,1.295 20.883,0.84 20.11,0.504 19.336,0.168 18.508,0 17.625,0 L 17.625,0 Z" - id="path3" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><path - d="M 12,2.988 C 11.57,2.55 11.158,2.148 10.764,1.781 10.369,1.414 9.955,1.1 9.521,0.838 9.088,0.576 8.617,0.371 8.109,0.223 7.602,0.074 7.023,0 6.375,0 5.492,0 4.664,0.168 3.891,0.504 3.117,0.84 2.441,1.295 1.863,1.869 1.285,2.443 0.83,3.119 0.498,3.896 0.166,4.674 0,5.5 0,6.375 0,7.227 0.162,8.043 0.486,8.824 0.81,9.605 1.269,10.293 1.863,10.886 L 12,21.012 12,2.988 Z" - id="path5" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#ffffff" /><polygon - points="3,13 2,12 7.691,12 10.127,7.126 12.184,14.323 13.732,12 17,12 17,13 14.268,13 11.816,16.677 9.873,9.874 8.309,13 " - id="polygon7" - style="fill:#ffffff" - transform="translate(0,-1)" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="21.012"><path d="M17.625 0c-.648 0-1.227.074-1.734.223s-.98.354-1.412.615-.848.576-1.242.943L12 2.988 10.764 1.78c-.395-.367-.81-.68-1.243-.943S8.617.37 8.11.223 7.023 0 6.375 0c-.883 0-1.71.168-2.484.504s-1.45.79-2.028 1.365A6.33 6.33 0 0 0 .498 3.896C.166 4.674 0 5.5 0 6.375a6.33 6.33 0 0 0 .486 2.449 6.29 6.29 0 0 0 1.377 2.062L12 21.012l10.137-10.125a6.3 6.3 0 0 0 1.377-2.062c.324-.78.486-1.598.486-2.45 0-.875-.166-1.7-.498-2.48a6.33 6.33 0 0 0-1.365-2.027C21.56 1.295 20.883.84 20.1.504A6.17 6.17 0 0 0 17.625 0z" fill="#59b4d9"/><g fill="#fff"><path d="M12 2.988L10.764 1.78c-.395-.367-.81-.68-1.243-.943S8.617.37 8.11.223 7.023 0 6.375 0c-.883 0-1.71.168-2.484.504s-1.45.79-2.028 1.365A6.33 6.33 0 0 0 .498 3.896C.166 4.674 0 5.5 0 6.375a6.33 6.33 0 0 0 .486 2.449 6.29 6.29 0 0 0 1.377 2.062L12 21.012V2.988z" opacity=".2"/><path d="M3 12l-1-1h5.69l2.436-4.874 2.057 7.197L13.732 11H17v1h-2.732l-2.452 3.677-1.943-6.803L8.31 12z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Service_Bus.svg b/src/main/webapp/img/lib/mscae/Service_Bus.svg index aa00e10d49d6c7ce83178e2c1838257e5a9425b3..c1b35619c2ddd0ee4c1a261f9bbdd457299eb02b 100644 --- a/src/main/webapp/img/lib/mscae/Service_Bus.svg +++ b/src/main/webapp/img/lib/mscae/Service_Bus.svg @@ -1,13 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#0072C6" d="M0.833,0C0.333,0,0,0.333,0,0.833v10c0,0.5,0.333,0.833,0.833,0.833h5c0.5,0,0.833-0.333,0.833-0.833V6.667 - h36.667v4.167c0,0.5,0.333,0.833,1,0.833h4.833c0.5,0,0.833-0.333,0.833-0.833v-5v-5C50,0.333,49.667,0,49.167,0l0,0H0.833z"/> -<path fill="#0072C6" d="M49.167,50c0.5,0,0.833-0.333,0.833-0.833v-9.833c0-0.5-0.333-0.833-0.833-0.833h-4.833 - c-0.5,0-0.833,0.333-0.833,0.833v4H6.667v-4.167c0-0.5-0.333-0.833-1-0.833H0.833c-0.5,0-0.833,0.333-0.833,1v9.833 - C0,49.667,0.333,50,0.833,50H49.167z"/> -<path fill="#59B4D9" d="M29.857,26.098C28.56,27.395,26.835,28.11,25,28.11s-3.56-0.714-4.858-2.012l-9.309-9.309v18.923h28.333 - V16.788L29.857,26.098z"/> -<path fill="#59B4D9" d="M25,26.728c1.466,0,2.844-0.571,3.88-1.607l10.286-10.286V14.29H10.833v0.546L21.119,25.12 - C22.156,26.157,23.534,26.728,25,26.728z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path d="M.833 0C.333 0 0 .333 0 .833v10c0 .5.333.833.833.833h5c.5 0 .833-.333.833-.833V6.667h36.667v4.167c0 .5.333.833 1 .833h4.833c.5 0 .833-.333.833-.833v-10C50 .333 49.667 0 49.167 0H.833zm48.334 50c.5 0 .833-.333.833-.833v-9.833c0-.5-.333-.833-.833-.833h-4.833c-.5 0-.833.333-.833.833v4H6.667v-4.167c0-.5-.333-.833-1-.833H.833c-.5 0-.833.333-.833 1v9.833c0 .5.333.833.833.833h48.334z" fill="#0072c6"/><path d="M29.857 26.098C28.56 27.395 26.835 28.1 25 28.1s-3.56-.714-4.858-2.012l-9.3-9.3V35.7h28.333V16.788l-9.3 9.3zm-4.857.63a5.45 5.45 0 0 0 3.88-1.607l10.286-10.286V14.3H10.833v.546L21.12 25.12A5.45 5.45 0 0 0 25 26.728z" fill="#59b4d9"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Service_Bus_Queues.svg b/src/main/webapp/img/lib/mscae/Service_Bus_Queues.svg index a8249aa4f820f248566d7bca4f24499232c240ee..7b0c2847692e3bf6e07bddf3a7793a0c373a64da 100644 --- a/src/main/webapp/img/lib/mscae/Service_Bus_Queues.svg +++ b/src/main/webapp/img/lib/mscae/Service_Bus_Queues.svg @@ -1,19 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#0072C6" d="M0.833,0C0.333,0,0,0.333,0,0.833v10c0,0.5,0.333,0.833,0.833,0.833h5c0.5,0,0.833-0.333,0.833-0.833V6.667 - h36.667v4.167c0,0.5,0.333,0.833,1,0.833h4.833c0.5,0,0.833-0.333,0.833-0.833v-5v-5C50,0.333,49.667,0,49.167,0l0,0H0.833z"/> -<path fill="#0072C6" d="M49.167,50c0.5,0,0.833-0.333,0.833-0.833v-9.833c0-0.5-0.333-0.833-0.833-0.833h-4.833 - c-0.5,0-0.833,0.333-0.833,0.833v4H6.667v-4.167c0-0.5-0.333-0.833-1-0.833H0.833c-0.5,0-0.833,0.333-0.833,1v9.833 - C0,49.667,0.333,50,0.833,50H49.167z"/> -<path fill="#59B4D9" d="M12.324,25.711c-0.84,0.84-1.958,1.303-3.147,1.303s-2.306-0.463-3.147-1.303L0,19.681v12.258h18.354V19.681 - L12.324,25.711z"/> -<path fill="#59B4D9" d="M9.177,26.119c0.95,0,1.842-0.37,2.514-1.041l6.663-6.663v-0.353H0v0.354l6.663,6.663 - C7.335,25.75,8.227,26.119,9.177,26.119z"/> -<path fill="#59B4D9" d="M43.97,25.711c-0.84,0.84-1.958,1.303-3.147,1.303s-2.306-0.463-3.147-1.303l-6.03-6.03v12.258H50V19.681 - L43.97,25.711z"/> -<path fill="#59B4D9" d="M40.823,26.119c0.95,0,1.842-0.37,2.514-1.041L50,18.415v-0.353H31.646v0.354l6.663,6.663 - C38.981,25.75,39.873,26.119,40.823,26.119z"/> -<rect x="25.813" y="23.779" fill="#B8D432" width="3.084" height="2.434"/> -<rect x="21.042" y="23.779" fill="#B8D432" width="3.262" height="2.434"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path d="M.833 0C.333 0 0 .333 0 .833v10c0 .5.333.833.833.833h5c.5 0 .833-.333.833-.833V6.667h36.667v4.167c0 .5.333.833 1 .833h4.833c.5 0 .833-.333.833-.833v-10C50 .333 49.667 0 49.167 0H.833zm48.334 50c.5 0 .833-.333.833-.833v-9.833c0-.5-.333-.833-.833-.833h-4.833c-.5 0-.833.333-.833.833v4H6.667v-4.167c0-.5-.333-.833-1-.833H.833c-.5 0-.833.333-.833 1v9.833c0 .5.333.833.833.833h48.334z" fill="#0072c6"/><path d="M12.324 25.7a4.42 4.42 0 0 1-3.147 1.303A4.42 4.42 0 0 1 6.03 25.71L0 19.68v12.26h18.354V19.68l-6.03 6.03zm-3.147.4c.95 0 1.842-.37 2.514-1.04l6.663-6.663v-.353H0v.354l6.663 6.663c.672.67 1.564 1.04 2.514 1.04zm34.793-.4a4.42 4.42 0 0 1-3.147 1.303 4.42 4.42 0 0 1-3.147-1.303l-6.03-6.03v12.26H50V19.68l-6.03 6.03zm-3.147.4c.95 0 1.842-.37 2.514-1.04L50 18.415v-.353H31.646v.354l6.663 6.663c.672.67 1.564 1.04 2.514 1.04z" fill="#59b4d9"/><path d="M25.813 23.78h3.084v2.434h-3.084zm-4.77 0h3.262v2.434h-3.262z" fill="#b8d432"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Service_Bus_Relay.svg b/src/main/webapp/img/lib/mscae/Service_Bus_Relay.svg index adbbe8d8e92df0d8d05934d2dd24386ca6be07f6..692dc9f46d82cade8c1c9b720e63cb27beb9ea73 100644 --- a/src/main/webapp/img/lib/mscae/Service_Bus_Relay.svg +++ b/src/main/webapp/img/lib/mscae/Service_Bus_Relay.svg @@ -1,24 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" style="enable-background:new 0 0 50 50;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#0072C6;} - .st1{fill:#B8D432;} - .st2{fill:#59B4D9;} -</style> -<path class="st0" d="M0.8,0C0.3,0,0,0.3,0,0.8v10c0,0.5,0.3,0.8,0.8,0.8h5c0.5,0,0.8-0.3,0.8-0.8V6.7h36.7v4.2c0,0.5,0.3,0.8,1,0.8 - h4.8c0.5,0,0.8-0.3,0.8-0.8v-5v-5C50,0.3,49.7,0,49.2,0l0,0H0.8z"/> -<path class="st0" d="M49.2,50c0.5,0,0.8-0.3,0.8-0.8v-9.8c0-0.5-0.3-0.8-0.8-0.8h-4.8c-0.5,0-0.8,0.3-0.8,0.8v4H6.7v-4.2 - c0-0.5-0.3-0.8-1-0.8H0.8c-0.5,0-0.8,0.3-0.8,1v9.8C0,49.7,0.3,50,0.8,50H49.2z"/> -<g> - <rect x="29" y="15.2" transform="matrix(0.848 -0.53 0.53 0.848 -8.6583 19.8107)" class="st0" width="2.5" height="19.7"/> -</g> -<g> - <rect x="10.2" y="23.8" transform="matrix(0.5299 -0.848 0.848 0.5299 -11.7871 28.7355)" class="st0" width="19.7" height="2.5"/> -</g> -<circle class="st1" cx="25" cy="16.7" r="5.4"/> -<g> - <circle class="st2" cx="14.6" cy="33.3" r="5.4"/> - <circle class="st2" cx="35.4" cy="33.3" r="5.4"/> -</g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><g fill="#0072c6"><path d="M.8 0C.3 0 0 .3 0 .8v10c0 .5.3.8.8.8h5c.5 0 .8-.3.8-.8V6.7h36.7v4.2c0 .5.3.8 1 .8h4.8c.5 0 .8-.3.8-.8V.9c.1-.6-.2-.9-.7-.9H.8zm48.4 50c.5 0 .8-.3.8-.8v-9.8c0-.5-.3-.8-.8-.8h-4.8c-.5 0-.8.3-.8.8v4H6.7v-4.2c0-.5-.3-.8-1-.8H.8c-.5 0-.8.3-.8 1v9.8c0 .5.3.8.8.8h48.4zM24 17.33l2.12-1.325L36.55 32.7l-2.12 1.325z"/><path d="M13.8 32.698l10.44-16.706 2.12 1.325-10.44 16.706z"/></g><circle cx="25" cy="16.7" r="5.4" fill="#b8d432"/><g fill="#59b4d9"><circle cx="14.6" cy="33.3" r="5.4"/><circle cx="35.4" cy="33.3" r="5.4"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Service_Bus_Topics.svg b/src/main/webapp/img/lib/mscae/Service_Bus_Topics.svg index 61cc6f07b03aaf3b12dcac6a53a08a39e9534299..59c63bd8025f9b17b76a5d5c92501ba8cb4280cb 100644 --- a/src/main/webapp/img/lib/mscae/Service_Bus_Topics.svg +++ b/src/main/webapp/img/lib/mscae/Service_Bus_Topics.svg @@ -1,27 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#0072C6" d="M0.833,0C0.333,0,0,0.333,0,0.833v10c0,0.5,0.333,0.833,0.833,0.833h5c0.5,0,0.833-0.333,0.833-0.833V6.667 - h36.667v4.167c0,0.5,0.333,0.833,1,0.833h4.833c0.5,0,0.833-0.333,0.833-0.833v-5v-5C50,0.333,49.667,0,49.167,0l0,0H0.833z"/> -<path fill="#0072C6" d="M49.167,50c0.5,0,0.833-0.333,0.833-0.833v-9.833c0-0.5-0.333-0.833-0.833-0.833h-4.833 - c-0.5,0-0.833,0.333-0.833,0.833v4H6.667v-4.167c0-0.5-0.333-0.833-1-0.833H0.833c-0.5,0-0.833,0.333-0.833,1v9.833 - C0,49.667,0.333,50,0.833,50H49.167z"/> -<rect x="18.802" y="21.37" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -9.956 20.9636)" fill="#B8D432" width="3.051" height="2.259"/> -<rect x="21.932" y="18.238" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -6.8254 22.2618)" fill="#B8D432" width="3.055" height="2.263"/> -<polygon fill="#B8D432" points="26.31,18.11 24.71,16.52 26.85,14.38 28.45,15.97 "/> -<rect x="25.448" y="31.567" transform="matrix(0.7073 -0.7069 0.7069 0.7073 -15.6049 28.474)" fill="#B8D432" width="2.263" height="3.027"/> -<polygon fill="#B8D432" points="23.74,31.83 21.58,29.67 23.18,28.08 25.34,30.24 "/> -<polygon fill="#B8D432" points="20.61,28.7 18.45,26.54 20.05,24.95 22.2,27.1 "/> -<path fill="#59B4D9" d="M36.131,15.247c-0.527,0.527-1.229,0.818-1.974,0.818c-0.746,0-1.447-0.29-1.974-0.818l-3.783-3.783v7.691 - h11.515v-7.691L36.131,15.247z"/> -<path fill="#59B4D9" d="M34.156,15.503c0.596,0,1.156-0.232,1.577-0.653l4.181-4.181v-0.222H28.399v0.222l4.181,4.181 - C33,15.271,33.561,15.503,34.156,15.503z"/> -<path fill="#59B4D9" d="M36.131,34.971c-0.527,0.527-1.229,0.818-1.974,0.818c-0.746,0-1.447-0.29-1.974-0.818l-3.783-3.783v7.691 - h11.515v-7.691L36.131,34.971z"/> -<path fill="#59B4D9" d="M34.156,35.227c0.596,0,1.156-0.232,1.577-0.653l4.181-4.181v-0.222H28.399v0.222l4.181,4.181 - C33,34.995,33.561,35.227,34.156,35.227z"/> -<path fill="#59B4D9" d="M12.324,25.374c-0.84,0.84-1.958,1.303-3.147,1.303s-2.306-0.463-3.147-1.303L0,19.343v12.258h18.354V19.343 - L12.324,25.374z"/> -<path fill="#59B4D9" d="M9.177,25.782c0.95,0,1.842-0.37,2.514-1.041l6.663-6.663v-0.353H0v0.354l6.663,6.663 - C7.335,25.412,8.227,25.782,9.177,25.782z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path d="M.833 0C.333 0 0 .333 0 .833v10c0 .5.333.833.833.833h5c.5 0 .833-.333.833-.833V6.667h36.667v4.167c0 .5.333.833 1 .833h4.833c.5 0 .833-.333.833-.833v-10C50 .333 49.667 0 49.167 0H.833zm48.334 50c.5 0 .833-.333.833-.833v-9.833c0-.5-.333-.833-.833-.833h-4.833c-.5 0-.833.333-.833.833v4H6.667v-4.167c0-.5-.333-.833-1-.833H.833c-.5 0-.833.333-.833 1v9.833c0 .5.333.833.833.833h48.334z" fill="#0072c6"/><path d="M18.45 22.78l2.157-2.157 1.597 1.597-2.157 2.157zm3.13-3.13l2.16-2.16 1.6 1.6-2.16 2.16zm4.72-1.55l-1.6-1.6 2.14-2.14 1.6 1.6zm-1.6 14.712l1.6-1.6 2.14 2.14-1.6 1.6zm-.97-.982l-2.16-2.16 1.6-1.6 2.16 2.16zM20.6 28.7l-2.16-2.16 1.6-1.6 2.15 2.15z" fill="#b8d432"/><path d="M36.13 15.247c-.527.527-1.23.818-1.974.818a2.77 2.77 0 0 1-1.974-.818L28.4 11.464v7.7h11.515v-7.7l-3.784 3.783zm-1.974.256c.596 0 1.156-.232 1.577-.653l4.18-4.18v-.222H28.4v.222l4.18 4.18c.42.42.98.653 1.576.653zM36.13 34.97c-.527.527-1.23.818-1.974.818a2.77 2.77 0 0 1-1.974-.818L28.4 31.188v7.7h11.515v-7.7L36.13 34.97zm-1.974.257c.596 0 1.156-.232 1.577-.653l4.18-4.18v-.222H28.4v.222l4.18 4.18c.42.42.98.653 1.576.653zm-21.832-9.853a4.42 4.42 0 0 1-3.147 1.303 4.42 4.42 0 0 1-3.147-1.303L0 19.343V31.6h18.354V19.343l-6.03 6.03zm-3.147.408c.95 0 1.842-.37 2.514-1.04l6.663-6.663v-.353H0v.354l6.663 6.663c.672.67 1.564 1.04 2.514 1.04z" fill="#59b4d9"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Service_Catalog_Managed_Application_Definitions.svg b/src/main/webapp/img/lib/mscae/Service_Catalog_Managed_Application_Definitions.svg new file mode 100644 index 0000000000000000000000000000000000000000..17c644cfeaeda660604553ad890f3ab92542f4f1 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Service_Catalog_Managed_Application_Definitions.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="45" height="48"><g fill="#646565"><path d="M0 7h5.5v1H1S0 8 0 7z"/><use xlink:href="#B" opacity=".5"/><path d="M0 13h5.5v1H1s-1 0-1-1z"/><use xlink:href="#B" y="6" opacity=".5"/><path d="M0 19h5.5v1H1s-1 0-1-1z"/><use xlink:href="#B" y="12" opacity=".5"/><path d="M0 25h5.5v1H1s-1 0-1-1z"/><use xlink:href="#B" y="18" opacity=".5"/><path d="M0 31h5.5v1H1s-1 0-1-1z"/><use xlink:href="#B" y="24" opacity=".5"/><path d="M0 37h5.5v1H1s-1 0-1-1z"/><use xlink:href="#B" y="30" opacity=".5"/><path d="M0 43h5.5v1H1s-1 0-1-1z"/><use xlink:href="#B" y="36" opacity=".5"/></g><path d="M12 0C9 0 5 3 5 3h2v42h35v2l3-3V0z" fill="#0072c6"/><g fill="#fff"><path d="M10 1L6.5 3H8v43h34l2-2V1z" opacity=".75"/><path d="M10.5 1L7 3h35l2-2z" opacity=".8"/></g><path d="M4 48v-3h2l1-1v-1l-1-1H4v-3h2l1-1v-1l-1-1H4v-3h2l1-1v-1l-1-1H4v-3h2l1-1v-1l-1-1H4v-3h2l1-1v-1l-1-1H4v-3h2l1-1v-1l-1-1H4V9h2l1-1V7L6 6H4V3h38v45z" fill="#0072c6"/><path d="M26.657 29.053c.024 0 .047-.006.068-.017l4.445-2.462c.042-.022.068-.065.068-.112v-4.94a.13.13 0 0 0-.068-.113c-.043-.022-.093-.022-.136 0L26.6 23.87a.13.13 0 0 0-.066.113v4.94c0 .047.025.09.066.112.02.01.044.017.067.017m0 6.506c.024 0 .047-.006.068-.017l4.445-2.462c.042-.022.068-.065.068-.112v-4.94a.13.13 0 0 0-.068-.113c-.043-.022-.093-.022-.136 0L26.6 30.377a.13.13 0 0 0-.066.113v4.94c0 .035.014.068.04.093s.06.037.094.035m5.76-9.76a.15.15 0 0 0 .069-.017l4.445-2.462c.042-.022.068-.065.068-.112v-4.94c0-.048-.027-.09-.07-.113s-.093-.022-.136 0l-4.444 2.462a.13.13 0 0 0-.066.113v4.94c0 .047.025.09.066.112.02.01.044.016.067.016m0 6.506a.15.15 0 0 0 .069-.017l4.445-2.462c.042-.022.068-.065.068-.112v-4.94c0-.048-.027-.09-.07-.113s-.093-.022-.136 0l-4.444 2.462a.13.13 0 0 0-.066.113v4.94c0 .047.025.09.066.112.02.01.044.016.067.016m-7.075-3.253c-.024 0-.047-.006-.068-.017l-4.445-2.462c-.042-.022-.068-.065-.068-.112v-4.94a.13.13 0 0 1 .068-.113c.043-.022.093-.022.136 0L25.4 23.87a.13.13 0 0 1 .066.113v4.94c0 .035-.014.068-.04.093s-.06.037-.094.035m0 6.506c-.024 0-.047-.006-.068-.017L20.83 33.08c-.042-.022-.068-.065-.068-.112v-4.94a.13.13 0 0 1 .068-.113c.043-.022.093-.022.136 0l4.444 2.462a.13.13 0 0 1 .066.113v4.94c0 .035-.014.068-.04.093s-.06.037-.094.035m-5.76-9.76c-.024 0-.047-.006-.068-.017L15.07 23.32c-.042-.02-.07-.065-.07-.112v-4.94a.13.13 0 0 1 .068-.113c.043-.022.093-.022.136 0l4.444 2.462a.13.13 0 0 1 .066.113v4.94c0 .035-.014.068-.04.092s-.06.037-.093.036m0 6.506c-.024 0-.047-.006-.068-.017l-4.445-2.462c-.042-.02-.07-.065-.07-.112v-4.94a.13.13 0 0 1 .068-.113c.043-.022.093-.022.136 0l4.444 2.462a.13.13 0 0 1 .066.113v4.94c0 .035-.014.068-.04.092s-.06.037-.093.036m1.93-12.265c.012-.02.03-.036.05-.047l4.417-2.4c.04-.024.092-.024.134-.001l4.372 2.38c.04.02.066.064.066.1s-.028.088-.068.1l-4.417 2.4c-.042.022-.092.02-.133-.001l-4.373-2.38c-.03-.015-.052-.043-.06-.075s-.004-.067.013-.096m-5.76-3.135a.13.13 0 0 1 .049-.047l4.368-2.4c.04-.024.09-.024.132-.001l4.324 2.38c.04.022.065.063.065.1s-.028.088-.068.1l-4.368 2.4c-.04.022-.1.02-.13-.001l-4.325-2.38c-.04-.02-.065-.062-.065-.107.001-.023.008-.044.02-.064m11.64.053a.13.13 0 0 1 .049-.047l4.368-2.4c.04-.024.09-.024.132-.001l4.324 2.38c.04.022.065.063.065.1s-.028.088-.068.1l-4.368 2.4c-.04.022-.1.02-.13-.001l-4.325-2.38c-.04-.02-.065-.062-.065-.107.001-.023.008-.045.02-.064m-5.858-3.093a.13.13 0 0 1 .05-.046L26 11.46c.042-.023.092-.023.134-.001l4.372 2.34c.04.02.066.062.066.108s-.028.086-.068.108l-4.417 2.36c-.042.02-.09.02-.133-.001l-4.373-2.342c-.04-.02-.066-.06-.066-.106 0-.023.007-.043.018-.06" fill="#fff"/><path d="M21.136 41.167c-1.797 0-3.402-1.483-4.574-2.567l-.86-.75c-.772-.548-2.28-1.137-3.764-1.137l-1.375-.002c-.826-.004-1.493-.674-1.495-1.5V30.56a1.5 1.5 0 0 1 1.5-1.5h2.24l.11 1.002v-1c.644 0 1.647-.187 2.534-.352l1.938-.308.74-.033c.707 0 3.096.115 4.132 1.597.122.17.685.846.94 1.053.216.174.753.36 1.613.36l.157-.002c.067-.002.225-.017.434-.035l2.183-.13.438.015c1.308.097 2.016.987 2.14 1.827.047.32 0 .76-.175 1.164l.487-.238 4.876-2.207c.44-.153.904-.232 1.37-.236.99 0 1.81.4 2.19 1.097.206.37.458 1.14-.163 2.137-.322.518-.834 1.02-1.404 1.373l-3.273 2.006-1.408.894c-1.61 1.042-2.636 1.686-3.4 1.792-.35.04-.7.058-1.053.052-.342 0-.723-.01-1.106-.018L26 40.85a9.5 9.5 0 0 0-.713.021l-1.02.096-3.132.2z" fill="#0072c6"/><path d="M35.577 32.816c-1.698.574-5.42 2.522-6.273 2.885-1.004.428-2.997.686-5.222.645-1.23-.023-2.11-.156-2.603-.616l-2.118-1.78c-.603-.595.177-1.498.785-1.022l1.924 1.646c.728.545 3.297.29 4.36.217 1.225-.085 1.916-.323 2.19-.456.397-.193.497-.8.46-1.04-.053-.367-.4-.913-1.222-.974s-2.682.148-2.956.155c-1.28.03-2.038-.27-2.422-.578s-1.042-1.126-1.134-1.26c-.645-.923-2.435-1.28-3.962-1.14-1.274.117-3.435.696-4.675.66h-2.24a.5.5 0 0 0-.5.5v4.653a.5.5 0 0 0 .498.5l1.372.002c1.624 0 3.335.607 4.342 1.32s2.956 3.133 4.856 3.133c1.506 0 3.017-.216 4.076-.296s3.087.083 3.91-.03 2.773-1.537 4.422-2.54l3.278-2.01c.455-.283.85-.677 1.084-1.052.815-1.312-.59-2.08-2.23-1.524z" fill="#fff"/><defs ><path id="B" d="M4 4H3a3 3 0 0 0-3 3h1a2 2 0 0 1 2-2h1z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Service_Endpoint_Policies.svg b/src/main/webapp/img/lib/mscae/Service_Endpoint_Policies.svg new file mode 100644 index 0000000000000000000000000000000000000000..53862a45177ff7b31289b45b2d0c58faf3b6af75 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Service_Endpoint_Policies.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="46" height="47"><path d="M33.5 46c-2.236 0-4.5-1.717-4.5-5a5.82 5.82 0 0 1 1.547-4H8V8.9c-.05-2.136.78-4.2 2.3-5.7S13.864.85 16 .9h25.614l-1.707 1.707A8.66 8.66 0 0 0 38 7.9V40c0 2.768-1.18 6-4.5 6z" fill="#fff"/><path d="M41 0H17C11 0 7 3.9 7 9.9V36H5.5a5.5 5.5 0 1 0 0 11H34c4 0 5-4 5-6V7.9h6.6c.247-.743.382-1.518.4-2.3C46 2.5 43.8 0 41 0zm-4 7.9V41c0 2-.5 4-3.5 4-1.7 0-3.5-1.3-3.5-4a5.03 5.03 0 0 1 4-4.9V36H9V8.9c-.046-1.87.677-3.677 2-5s3.13-2.046 5-2h23.2a9.62 9.62 0 0 0-2.2 6z"/><path d="M19 17a2 2 0 1 1-4 0 2 2 0 1 1 4 0zm10-2a2 2 0 1 0 0 4 2 2 0 1 0 0-4zm-5.25 13.648v-9.8a2 2 0 0 0-.75-3.854 2 2 0 0 0-.75 3.854v9.8a2 2 0 0 0 .75 3.854 2 2 0 0 0 .75-3.854z" fill="#7fba00"/><path d="M18 25a1 1 0 0 1-.707-.293l-7-7a1 1 0 0 1 0-1.414l7-7a1 1 0 0 1 1.414 1.414L12.414 17l6.293 6.293A1 1 0 0 1 18 25zm10.707-.293l7-7a1 1 0 0 0 0-1.414l-7-7a1 1 0 0 0-1.414 1.414L33.586 17l-6.293 6.293a1 1 0 0 0 .441 1.687 1 1 0 0 0 .973-.273z" fill="#59b4d9"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Service_Fabric.svg b/src/main/webapp/img/lib/mscae/Service_Fabric.svg index 579c25e1f2bc33ec9ca1eb02156f4cd7ca7ba506..a7d8412dd79911fe5cfcfe2447d181c752e8f9c9 100644 --- a/src/main/webapp/img/lib/mscae/Service_Fabric.svg +++ b/src/main/webapp/img/lib/mscae/Service_Fabric.svg @@ -1,22 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#DD5900" d="M24.996,9.48l15.78,13.101l-5.321,18.032H14.197L9.18,22.61L24.996,9.48 M24.996,3.894L4.293,21.082 - l6.641,23.828h27.734l7.031-23.828L24.996,3.894L24.996,3.894z"/> -<path fill-rule="evenodd" clip-rule="evenodd" fill="#FF8C00" d="M25,0c4.315,0,7.813,3.498,7.813,7.813 - c0,4.315-3.498,7.812-7.813,7.812c-4.315,0-7.812-3.498-7.812-7.812C17.187,3.498,20.685,0,25,0z"/> -<path fill-rule="evenodd" clip-rule="evenodd" fill="#FF8C00" d="M42.188,13.281c4.315,0,7.812,3.498,7.812,7.812 - c0,4.315-3.498,7.812-7.812,7.812c-4.315,0-7.813-3.498-7.813-7.812C34.375,16.779,37.873,13.281,42.188,13.281z"/> -<path fill-rule="evenodd" clip-rule="evenodd" fill="#FF8C00" d="M36.328,34.375c4.315,0,7.813,3.498,7.813,7.812 - c0,4.315-3.498,7.812-7.813,7.812c-4.315,0-7.812-3.498-7.812-7.812C28.516,37.873,32.013,34.375,36.328,34.375z"/> -<path fill-rule="evenodd" clip-rule="evenodd" fill="#FF8C00" d="M13.662,34.375c4.315,0,7.813,3.498,7.813,7.812 - c0,4.315-3.498,7.813-7.813,7.813s-7.813-3.498-7.813-7.813C5.849,37.873,9.347,34.375,13.662,34.375z"/> -<path fill-rule="evenodd" clip-rule="evenodd" fill="#FF8C00" d="M7.813,13.281c4.315,0,7.812,3.498,7.812,7.812 - c0,4.315-3.498,7.812-7.812,7.812C3.498,28.906,0,25.409,0,21.094C0,16.779,3.498,13.281,7.813,13.281z"/> -<path opacity="0.25" fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M15.055,49.875l3.183-14.018 - c-1.286-0.931-2.866-1.481-4.576-1.481c-0.401,0-0.794,0.03-1.179,0.089l-1.711-6.139c2.847-1.167,4.853-3.964,4.853-7.231 - c0-1.159-0.254-2.258-0.707-3.248l4.972-4.127c0.859,0.744,1.882,1.304,3.007,1.619l3.455-15.219C25.912,0.042,25.461,0,25,0 - c-4.315,0-7.812,3.498-7.812,7.813c0,0.794,0.119,1.56,0.34,2.282l-5.402,4.485c-1.236-0.82-2.718-1.298-4.312-1.298 - C3.498,13.281,0,16.779,0,21.094c0,3.846,2.78,7.04,6.439,7.69l2.094,7.514c-1.644,1.432-2.684,3.539-2.684,5.89 - c0,4.315,3.498,7.813,7.813,7.813C14.137,50,14.603,49.956,15.055,49.875z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path fill="#dd5900" d="M24.996 9.48l15.78 13.1-5.32 18.032H14.197L9.18 22.6 24.996 9.48m0-5.586L4.293 21.082l6.64 23.828h27.734l7.03-23.828L24.996 3.894z"/><g fill-rule="evenodd"><path d="M25 0c4.315 0 7.813 3.498 7.813 7.813S29.315 15.625 25 15.625s-7.812-3.498-7.812-7.812S20.685 0 25 0zm17.188 13.28c4.315 0 7.812 3.498 7.812 7.812s-3.498 7.812-7.812 7.812-7.813-3.498-7.813-7.812 3.498-7.812 7.813-7.812zm-5.86 21.095c4.315 0 7.813 3.498 7.813 7.812S40.643 50 36.328 50s-7.812-3.498-7.812-7.812 3.497-7.812 7.812-7.812zm-22.666 0c4.315 0 7.813 3.498 7.813 7.812S17.977 50 13.662 50 5.85 46.502 5.85 42.187s3.498-7.812 7.813-7.812zM7.813 13.28c4.315 0 7.812 3.498 7.812 7.812s-3.498 7.812-7.812 7.812S0 25.4 0 21.094s3.498-7.813 7.813-7.813z" fill="#ff8c00"/><path opacity=".25" fill="#fff" d="M15.055 49.875l3.183-14.018c-1.286-.93-2.866-1.48-4.576-1.48-.4 0-.794.03-1.18.09l-1.71-6.14c2.847-1.167 4.853-3.964 4.853-7.23 0-1.16-.254-2.258-.707-3.248L19.9 13.72a7.81 7.81 0 0 0 3.007 1.619L26.352.12C25.912.042 25.46 0 25 0c-4.315 0-7.812 3.498-7.812 7.813 0 .794.12 1.56.34 2.282l-5.402 4.485c-1.236-.82-2.718-1.298-4.312-1.298C3.498 13.28 0 16.78 0 21.094c0 3.846 2.78 7.04 6.44 7.7l2.094 7.514a7.79 7.79 0 0 0-2.684 5.89C5.85 46.503 9.347 50 13.662 50a7.99 7.99 0 0 0 1.393-.126z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Shared_Dashboard.svg b/src/main/webapp/img/lib/mscae/Shared_Dashboard.svg new file mode 100644 index 0000000000000000000000000000000000000000..16ded3cc986a8cf07b2263f97535ff3be2e9a739 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Shared_Dashboard.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="17" height="14"><path d="M17 0v14H0V0z" fill="#3999c6"/><path d="M2 2h3v8H2zm4 0h7v4H6zm0 5h3v3H6zm4 0h3v3h-3z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Shared_Image_Galleries.svg b/src/main/webapp/img/lib/mscae/Shared_Image_Galleries.svg new file mode 100644 index 0000000000000000000000000000000000000000..e91af035dc83111b901d22ddefa7d76800e0bac7 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Shared_Image_Galleries.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48"><path d="M0 28h48v20H0z" fill="#0072c6"/><path d="M0 28v20h13.44l18.24-20z" opacity=".2" fill="#fff"/><path d="M1 0v27h3V3h26v24h3V0z" fill="#3999c6"/><path d="M41.5 9H44v18h3V6h-5.5z" fill="#804998"/><path d="M33.5 6H38v21h3V3h-7.5z" fill="#7fba00"/><path d="M4 3h26v24H4z" fill="#3999c6"/><path d="M4 3h26v24H4z" opacity=".5" fill="#fff"/><path d="M33.5 6H38v21h-4.5z" fill="#7fba00"/><path d="M45 9v18h-3.5V9" fill="#804998"/><path d="M41.5 9H44v18h-2.5zm-8-3H38v21h-4.5z" opacity=".6" fill="#fff"/><path d="M9.642 24.45l4.36 2.55h6.044l4.318-2.526c.562-.332.93-.614 1.175-.93A1.42 1.42 0 0 0 26 22.505v-8.93c0-.426-.194-.814-.505-1.075-.245-.292-.602-.558-1.137-.87l-6.672-3.9c-.214-.123-.457-.187-.704-.187a1.45 1.45 0 0 0-.716.191l-6.63 3.874c-.562.332-.93.614-1.175.93A1.41 1.41 0 0 0 8 13.574v8.93c0 .426.194.814.505 1.075.245.293.602.56 1.137.87z" opacity=".5" fill="#3999c6"/><g fill="#fff"><path d="M17.02 17.125c-.036-.001-.07-.01-.1-.03L10.257 13.2c-.062-.037-.1-.104-.1-.177s.038-.14.1-.177l6.622-3.87c.062-.035.137-.035.2 0l6.665 3.897c.062.037.1.104.1.176a.2.2 0 0 1-.099.176l-6.62 3.87c-.03.02-.066.03-.102.03"/><path d="M16.164 18.417l-6.642-3.882c-.062-.038-.14-.038-.203 0s-.103.104-.103.177v7.9c0 .074.04.14.098.18l6.642 3.882c.066.038.306.022.306-.177v-7.9c0-.072-.037-.14-.098-.18z" opacity=".8"/><path d="M17.836 18.417l6.642-3.882c.062-.038.14-.038.203 0s.103.104.103.177v7.9c0 .074-.04.14-.098.18l-6.642 3.882c-.066.038-.306.022-.306-.177v-7.9c0-.074.04-.14.098-.18z" opacity=".5"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/ShieldFirewall.svg b/src/main/webapp/img/lib/mscae/ShieldFirewall.svg index 7a54eb12adb2e14b4daa8332ba69a57db79eb3ba..3042796fe591d73e2a85f655f22a4d269b10bc6a 100644 --- a/src/main/webapp/img/lib/mscae/ShieldFirewall.svg +++ b/src/main/webapp/img/lib/mscae/ShieldFirewall.svg @@ -1,84 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="36.599998" - height="49.900002" - viewBox="0 0 36.599998 49.900002" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="ShieldFirewall.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata5845"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs5843" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview5841" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="18" - inkscape:cy="24.9" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="M 31.2,6 V 6 C 20.2,4.8 18.3,0 18.3,0 18.3,0 15.8,6.2 0,6.2 v 25.6 c 0,3.1 1.7,6 4.1,8.5 v 0 c 5.4,5.7 14.2,9.6 14.2,9.6 0,0 18.3,-8 18.3,-18.1 V 6.2 c -2,0 -3.8,-0.1 -5.4,-0.2 z" - id="path5826" - inkscape:connector-curvature="0" - style="fill:#3999c6" /> -<path - d="M 22.9,16.5 31.2,6 C 20.2,4.8 18.3,0 18.3,0 18.3,0 15.8,6.2 0,6.2 v 25.6 c 0,3.1 1.7,6 4.1,8.5 l 6.2,-7.8 z" - id="path5828" - inkscape:connector-curvature="0" - style="opacity:0.4;fill:#59b4d9" /> -<g - id="g5838" - transform="translate(-7)"> - <path - d="m 10.8,24.4 v 6.1 c 0,2.5 1.4,4.8 3.3,6.8 4.3,4.6 11.3,7.6 11.3,7.6 V 24.4 Z" - id="path5830" - inkscape:connector-curvature="0" - style="opacity:0.3;fill:#ffffff" /> - <path - d="m 25.3,44.9 c 0,0 14.6,-6.4 14.6,-14.4 V 24.4 H 25.3 Z" - id="path5832" - inkscape:connector-curvature="0" - style="opacity:0.7;fill:#ffffff" /> - <path - d="m 25.3,5.1 c 0,0 0,0 0,0 0,0 -2,5 -14.6,5 v 14.3 h 14.6 z" - id="path5834" - inkscape:connector-curvature="0" - style="opacity:0.7;fill:#ffffff" /> - <path - d="M 35.5,9.9 C 26.8,8.9 25.3,5.2 25.3,5.2 V 24.4 H 39.9 V 10.1 c -1.6,0 -3.1,-0.1 -4.4,-0.2 z" - id="path5836" - inkscape:connector-curvature="0" - style="opacity:0.3;fill:#ffffff" /> -</g> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="36.6" height="49.9"><path d="M31.2 6c-11-1.2-12.9-6-12.9-6S15.8 6.2 0 6.2v25.6c0 3.1 1.7 6 4.1 8.5 5.4 5.7 14.2 9.6 14.2 9.6s18.3-8 18.3-18.1V6.2c-2 0-3.8-.1-5.4-.2z" fill="#3999c6"/><path d="M22.9 16.5L31.2 6c-11-1.2-12.9-6-12.9-6S15.8 6.2 0 6.2v25.6c0 3.1 1.7 6 4.1 8.5l6.2-7.8z" opacity=".4" fill="#59b4d9"/><g fill="#fff"><path d="M3.8 24.4v6.1c0 2.5 1.4 4.8 3.3 6.8 4.3 4.6 11.3 7.6 11.3 7.6V24.4z" opacity=".3"/><path d="M18.3 44.9s14.6-6.4 14.6-14.4v-6.1H18.3z" opacity=".7"/><path d="M18.3 5.1s-2 5-14.6 5v14.3h14.6z" opacity=".7"/><path d="M28.5 9.9c-8.7-1-10.2-4.7-10.2-4.7v19.2h14.6V10.1c-1.6 0-3.1-.1-4.4-.2z" opacity=".3"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/SignalR.svg b/src/main/webapp/img/lib/mscae/SignalR.svg new file mode 100644 index 0000000000000000000000000000000000000000..723f2376a22958e3d3b12ff6f526523b8e30abc3 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/SignalR.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path d="M20.455 36.363l2.823-6.818h6.267a4.551 4.551 0 0 0 4.546-4.544 4.551 4.551 0 0 0-4.546-4.546H9.1L20.455 9.1v4.547h9.1C35.822 13.637 40.9 18.725 40.9 25c0 6.102-4.825 11.044-10.863 11.314l9.21 9.21C45.745 41.007 50 33.504 50 25 50 11.194 38.806 0 25 0S0 11.194 0 25s11.194 25 25 25c2.737 0 5.36-.455 7.825-1.265z" fill="#59b4d9" fill-rule="evenodd"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Site_Recovery.svg b/src/main/webapp/img/lib/mscae/Site_Recovery.svg index 77ea417ee5ae14618642ee0cc7309cfb167964aa..0a68c036c7ad5bb743412b26b5fe536ffa9e845e 100644 --- a/src/main/webapp/img/lib/mscae/Site_Recovery.svg +++ b/src/main/webapp/img/lib/mscae/Site_Recovery.svg @@ -1,55 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="49.900002" - height="41.799999" - viewBox="0 0 49.900002 41.799999" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure Site Recovery _COLOR.svg"><metadata - id="metadata11"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs9" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview7" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="7.3282407" - inkscape:cx="34.160361" - inkscape:cy="3.6407775" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 28.4,13.6 C 34.4,13.6 39.3,18.1 40,23.8 41.4,24.9 42.5,26.2 43.3,27.6 47.2,26.6 49.9,23.2 49.9,19.1 49.9,15.8 48.1,13.2 45,11.7 45,11.3 45,11 45,10.6 45,4.8 40.2,0 34.4,0 30.9,0 27.7,1.7 25.7,4.4 24.4,3.6 23,3.2 21.4,3.2 17.2,3.2 13.8,6.4 13.4,10.4 14,10.3 14.7,10.3 15.4,10.3 18.5,10.3 22,10.8 24.9,13.9 L 28.4,13.6 Z" - id="path3" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><path - d="M 36.5,25.8 36.5,25.2 C 36.5,20.8 32.9,17.2 28.5,17.2 27.1,17.2 25.8,17.6 24.6,18.2 L 24.6,18.3 24.6,18.2 C 24.5,18.3 24.3,18.3 24.2,18.4 24.2,18.4 24.2,18.4 24.1,18.3 21.8,20 20.8,22.6 20.7,25.4 L 24.2,25.4 18.9,31.7 13.5,25.4 17.1,25.4 C 17.2,21.6 18.7,18 21.3,15.7 19.6,14.6 17.6,14 15.5,14 9.6,14 4.8,18.7 4.8,24.5 4.8,24.9 4.8,25.2 4.8,25.6 1.8,27.1 0,29.7 0,33 0,38 4,41.8 9.2,41.8 L 31.9,41.8 C 37.1,41.8 41.1,37.9 41.1,33 41.1,29.8 39.5,27.3 36.5,25.8 Z" - id="path5" - inkscape:connector-curvature="0" - style="fill:#0072c6" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="49.9" height="41.8"><path d="M28.4 13.6c6 0 10.9 4.5 11.6 10.2a13.11 13.11 0 0 1 3.3 3.8 8.68 8.68 0 0 0 6.6-8.5c0-3.3-1.8-5.9-4.9-7.4v-1.1C45 4.8 40.2 0 34.4 0c-3.5 0-6.7 1.7-8.7 4.4-1.3-.8-2.7-1.2-4.3-1.2-4.2 0-7.6 3.2-8 7.2.6-.1 1.3-.1 2-.1 3.1 0 6.6.5 9.5 3.6l3.5-.3z" fill="#59b4d9"/><path d="M36.5 25.8v-.6c0-4.4-3.6-8-8-8-1.4 0-2.7.4-3.9 1v.1-.1c-.1.1-.3.1-.4.2l-.1-.1c-2.3 1.7-3.3 4.3-3.4 7.1h3.5l-5.3 6.3-5.4-6.3h3.6c.1-3.8 1.6-7.4 4.2-9.7-1.7-1.1-3.7-1.7-5.8-1.7-5.9 0-10.7 4.7-10.7 10.5v1.1C1.8 27.1 0 29.7 0 33c0 5 4 8.8 9.2 8.8h22.7c5.2 0 9.2-3.9 9.2-8.8 0-3.2-1.6-5.7-4.6-7.2z" fill="#0072c6"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Software_Update.svg b/src/main/webapp/img/lib/mscae/Software_Update.svg new file mode 100644 index 0000000000000000000000000000000000000000..1d7065c326c5e79d8bb8f393b96552ed3b4795d7 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Software_Update.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="49" height="44"><path d="M46 33c0 1.657-1.36 3-3.036 3H3.036C1.36 36 0 34.657 0 33V3c0-1.657 1.36-3 3.036-3h39.928C44.64 0 46 1.343 46 3z" fill="#3e3e3e"/><path d="M2.962 5H43v26H2.962z" fill="#3999c6"/><g fill="#fff"><path d="M26 2.69a.69.69 0 0 1-.688.688H20.9a.69.69 0 0 1-.69-.688.69.69 0 0 1 .69-.689h4.422a.69.69 0 0 1 .688.689"/><path d="M31 0H3a3 3 0 0 0-3 3v30a3 3 0 0 0 3 3h12z" opacity=".15"/></g><g fill-rule="evenodd"><path d="M33 44s11-1.063 11-14h5l-7.5-9-7.5 9h5c0 11.52-6 14-6 14z" fill="#b8d432"/><path d="M33 44s11-1.063 11-14h5l-7.5-9c1.628 10-.4 20.365-8.5 23zm1-25s-11 1.063-11 14h-5l7.5 9 7.5-9h-5c0-11.52 6-14 6-14z" fill="#7fba00"/><path d="M34 19s-11 1.063-11 14h-5l7.5 9c-1.628-10 .41-20.365 8.5-23z" fill="#b8d432"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Software_as_a_Service.svg b/src/main/webapp/img/lib/mscae/Software_as_a_Service.svg new file mode 100644 index 0000000000000000000000000000000000000000..a37a9167d0f9fbc811d46bc920c06ea68c23250b --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Software_as_a_Service.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="47.8" height="47.95"><path d="M40.165 14.155l.053-1.036C40.218 5.874 34.245 0 26.876 0c-5.948 0-10.982 3.83-12.704 9.115a12.12 12.12 0 0 0-2.222-.224C5.35 8.89 0 14.042 0 20.395S5.35 31.9 11.95 31.9h26.556c5.133 0 9.294-4.006 9.294-8.948.001-4.395-3.294-8.042-7.635-8.796z" fill="#59b4d9"/><path d="M13.8 31.95V16.028a2.08 2.08 0 0 1 2.078-2.078h17.844a2.08 2.08 0 0 1 2.078 2.078V31.95z" opacity=".4" fill="#fff"/><path d="M33.723 14.95H15.88a1.08 1.08 0 0 0-1.078 1.078V46.87a1.08 1.08 0 0 0 1.078 1.079h17.843a1.08 1.08 0 0 0 1.079-1.078V16.028a1.08 1.08 0 0 0-1.078-1.078z" fill="#7a7a7a"/><path d="M33.723 14.95H26.8l-12 27v4.922a1.08 1.08 0 0 0 1.078 1.078h17.843a1.08 1.08 0 0 0 1.079-1.078V16.028a1.08 1.08 0 0 0-1.078-1.078z" opacity=".4" fill="#1e1e1e"/><use xlink:href="#B" fill="#fff"/><use xlink:href="#B" opacity=".15" fill="#59b4d9"/><defs ><path id="B" d="M16.8 17.95h4v5h-4zm6 0h4v5h-4zm6 0h4v5h-4zm-12 8h4v5h-4zm6 0h4v5h-4zm6 0h4v5h-4zm-12 8h4v5h-4zm6 0h4v5h-4zm0 8h4v6h-4zm6-8h4v5h-4z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Solutions.svg b/src/main/webapp/img/lib/mscae/Solutions.svg new file mode 100644 index 0000000000000000000000000000000000000000..51a151fe7f4e783bba07bff31700a87ef6b59ad9 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Solutions.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><g fill-rule="evenodd"><path d="M0 18h15v15H0zm0 17h15v15H0zm17 0h15v15H17z" fill="#dd5900"/><path d="M33.5 0C24.265 0 17 7.265 17 16.5V33h16.5C42.735 33 50 25.735 50 16.5S42.735 0 33.5 0z" fill="#3999c6"/><g fill="#fff"><circle cx="23" cy="25" r="3"/><circle cx="37" cy="22" r="3"/><circle cx="30" cy="14" r="3"/></g></g><path stroke-miterlimit="10" d="M24 24l6-10" fill="none" stroke="#fff" stroke-width="2"/><circle cx="43" cy="11" r="3" fill="#fff" fill-rule="evenodd"/><path stroke-miterlimit="10" d="M42 12l-5 10m0 0l-7-8" fill="none" stroke="#fff" stroke-width="2"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Spatial_Anchor.svg b/src/main/webapp/img/lib/mscae/Spatial_Anchor.svg new file mode 100644 index 0000000000000000000000000000000000000000..df70dc744d3b76bcc5c144691c26452fcde463e9 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Spatial_Anchor.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="47.673" height="49.8"><path d="M1.193 31.9L21.9 17.193 42.607 31.9 21.9 47.607z" fill="#3999c6"/><path d="M37.538 31.98L21.9 43.84 6.262 31.98 21.9 20.873z" fill="#fff"/><path d="M37.538 31.98L21.9 43.84 6.262 31.98 21.9 20.873z" opacity=".4" fill="#59b4d9"/><circle cx="38.9" cy="31.9" r="6.9" fill="#fff"/><path d="M38.9 28c2.15 0 3.9 1.75 3.9 3.9s-1.75 3.9-3.9 3.9-3.9-1.75-3.9-3.9 1.75-3.9 3.9-3.9m0-3a6.9 6.9 0 0 0 0 13.8 6.9 6.9 0 1 0 0-13.8z" fill="#3999c6"/><path d="M47.673 9.45C47.673 4.288 43.745 0 38.9 0s-8.773 4.113-8.773 9.45S38.9 29.4 38.9 32.9c0-3.5 8.773-18.286 8.773-23.45z" fill="#804998"/><circle cx="38.9" cy="8.9" r="3.9" fill="#fff"/><g fill="#804998"><circle cx="21.9" cy="19.9" r="4.9"/><circle cx="4.9" cy="31.9" r="4.9"/><circle cx="21.9" cy="44.9" r="4.9"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/StackOverflow.svg b/src/main/webapp/img/lib/mscae/StackOverflow.svg index 22f55dd4989078a2a735d408fec01801ace0ba06..ea075fa8276be8bfe4a33b9e0007e82f7ec5e3f6 100644 --- a/src/main/webapp/img/lib/mscae/StackOverflow.svg +++ b/src/main/webapp/img/lib/mscae/StackOverflow.svg @@ -1,134 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="50.038441" - width="40.228359" - viewBox="0 0 40.228359 50.038441" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="StackOverflow.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata6737"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs6735" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview6733" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.020815" - inkscape:cx="18.613704" - inkscape:cy="16.447708" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<rect - x="6.5999999" - y="39.138439" - width="20.1" - height="4.5" - id="rect6710" - style="fill:#7a7a7a" /> -<polygon - points="9,45.9 9,28.3 4.9,28.3 4.9,50 4.9,50 8.9,50 34.8,50 38.1,50 38.7,50 38.7,28.3 34.7,28.3 34.7,45.9 " - id="polygon6712" - style="fill:#7a7a7a" - transform="translate(-4.9,0.03843925)" /> -<rect - x="9.5105925" - y="31.603878" - transform="rotate(4.1724194)" - width="20.099001" - height="4.4997764" - id="rect6714" - style="fill:#7a7a7a;stroke-width:0.99995023" /> -<rect - x="9.5105925" - y="31.603878" - transform="rotate(4.1724194)" - width="20.099001" - height="4.4997764" - id="rect6716" - style="opacity:0.1;fill:#ff8c00;stroke-width:0.99995023" /> -<rect - x="14.777545" - y="20.197138" - transform="rotate(14.654619)" - width="20.100657" - height="4.5001469" - id="rect6718" - style="fill:#7a7a7a;stroke-width:1.00003266" /> -<rect - x="14.777545" - y="20.197138" - transform="rotate(14.654619)" - width="20.100657" - height="4.5001469" - id="rect6720" - style="opacity:0.35;fill:#ff8c00;stroke-width:1.00003266" /> -<rect - x="18.694599" - y="4.5560169" - transform="rotate(30.40367)" - width="20.100437" - height="4.5000978" - id="rect6722" - style="fill:#7a7a7a;stroke-width:1.0000217" /> -<rect - x="18.694599" - y="4.5560169" - transform="rotate(30.40367)" - width="20.100437" - height="4.5000978" - id="rect6724" - style="opacity:0.75;fill:#ff8c00;stroke-width:1.0000217" /> -<rect - x="16.933674" - y="-17.580093" - transform="rotate(55.825235)" - width="20.099319" - height="4.4998474" - id="rect6726" - style="fill:#ff8c00;stroke-width:0.99996608" /> -<rect - x="5.9959831" - y="-36.478645" - transform="rotate(80.665776)" - width="20.100836" - height="4.5001869" - id="rect6728" - style="fill:#ff8c00;stroke-width:1.00004148" /> -<rect - x="5.9959831" - y="-36.478645" - transform="rotate(80.665776)" - width="20.100836" - height="4.5001869" - id="rect6730" - style="opacity:0.4;fill:#dd5900;stroke-width:1.00004148" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" height="50.038" width="40.228"><path d="M6.6 39.138h20.1v4.5H6.6zm-2.5 6.8v-17.6H0v21.7h33.8v-21.7h-4v17.6zm3.086-13.726l20.046 1.462-.327 4.488L6.86 36.7z" fill="#7a7a7a"/><path d="M7.186 32.212l20.046 1.462-.327 4.488L6.86 36.7z" opacity=".1" fill="#ff8c00"/><path d="M9.187 23.28l19.447 5.085-1.138 4.354L8.05 27.632z" fill="#7a7a7a"/><path d="M9.187 23.28l19.447 5.085-1.138 4.354L8.05 27.632z" opacity=".35" fill="#ff8c00"/><path d="M13.818 13.39l17.336 10.173-2.277 3.88L11.54 17.272z" fill="#7a7a7a"/><g fill="#ff8c00"><path d="M13.818 13.39l17.336 10.173-2.277 3.88L11.54 17.272z" opacity=".75"/><path d="M24.056 4.135l11.3 16.63-3.723 2.528-11.3-16.63zM36.968 0l3.26 19.835-4.44.73L32.528.73z"/></g><path d="M36.968 0l3.26 19.835-4.44.73L32.528.73z" opacity=".4" fill="#dd5900"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/StorSimple.svg b/src/main/webapp/img/lib/mscae/StorSimple.svg index a21b004f8043a7b84eb2fca89d79d2ff08799873..2c1f1494f6365e555920036606fa6bda0946e09e 100644 --- a/src/main/webapp/img/lib/mscae/StorSimple.svg +++ b/src/main/webapp/img/lib/mscae/StorSimple.svg @@ -1,74 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50.000523" - height="44.821999" - viewBox="0 0 50.000523 44.821999" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure StorSimple_COLOR.svg"><metadata - id="metadata19"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs17" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview15" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="10.363697" - inkscape:cx="24.805036" - inkscape:cy="17.849512" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 44.352,20.06 C 44.039,20.06 43.882,20.06 43.568,20.06 43.881,18.65 44.195,17.239 44.195,15.829 44.195,7.053 37.926,0 29.15,0 22.254,0 16.299,4.545 14.262,10.814 13.165,10.501 11.911,10.187 10.658,10.187 4.858,10.187 0,15.202 0,21.157 0,27.426 4.388,31.657 10.343,31.657 L 14.574,31.657 14.574,28.993 26.485,28.993 26.485,34.321 38.24,34.321 38.24,31.657 44.352,31.657 C 47.643,31.657 49.994,29.306 49.994,26.015 50.15,22.724 47.486,20.06 44.352,20.06 Z M 26.329,26.329 14.575,26.329 14.575,23.821 26.329,23.821 26.329,26.329 Z M 26.329,21.157 14.575,21.157 14.575,18.649 26.329,18.649 26.329,21.157 Z" - id="path3" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><rect - x="26.486" - y="36.986" - width="11.754" - height="2.5079999" - id="rect5" - style="fill:#59b4d9" /><rect - x="26.486" - y="42.313999" - width="11.754" - height="2.5079999" - id="rect7" - style="fill:#59b4d9" /><g - id="g9" - transform="translate(0,-2.589)"><path - d="M 19.594,16.391 C 20.794,16.091 21.994,16.091 23.094,16.191 23.593,10.798 27.846,5.399 32.639,2.995 31.529,2.738 30.366,2.59 29.15,2.59 22.254,2.59 16.299,7.135 14.262,13.404 13.165,13.091 11.911,12.777 10.658,12.777 4.858,12.776 0,17.791 0,23.746 0,30.015 4.388,34.246 10.343,34.246 L 14.555,34.246 C 13.177,32.854 12.189,31.169 11.694,29.09 10.394,23.391 13.894,17.691 19.594,16.391 Z" - id="path11" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#ffffff" /><path - enable-background="new " - d="M 32.656,2.985 C 32.65,2.988 32.645,2.991 32.639,2.994 32.642,2.995 32.646,2.996 32.649,2.997 L 32.656,2.985 Z" - id="path13" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#ffffff" /></g></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50.001" height="44.822"><path d="M44.352 20.06h-.784c.313-1.4.627-2.82.627-4.23C44.195 7.053 37.926 0 29.15 0 22.254 0 16.3 4.545 14.262 10.814c-1.097-.313-2.35-.627-3.604-.627C4.858 10.187 0 15.202 0 21.157c0 6.27 4.388 10.5 10.343 10.5h4.23v-2.664h11.9v5.328H38.24v-2.664h6.112c3.3 0 5.642-2.35 5.642-5.642.156-3.3-2.508-5.955-5.642-5.955zM26.33 26.33H14.575v-2.5H26.33v2.508zm0-5.172H14.575V18.65H26.33v2.508zm.156 15.828H38.24v2.508H26.486zm0 5.328H38.24v2.508H26.486z" fill="#59b4d9"/><path d="M19.594 13.802c1.2-.3 2.4-.3 3.5-.2C23.593 8.2 27.846 2.8 32.64.406a15.42 15.42 0 0 0-3.49-.405c-6.896 0-12.85 4.545-14.888 10.814-1.097-.313-2.35-.627-3.604-.627C4.858 10.187 0 15.202 0 21.157c0 6.27 4.388 10.5 10.343 10.5h4.212c-1.378-1.392-2.366-3.077-2.86-5.156-1.3-5.7 2.2-11.4 7.9-12.7zM32.656.396z" opacity=".2" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/StorSimple_Data_Managers.svg b/src/main/webapp/img/lib/mscae/StorSimple_Data_Managers.svg new file mode 100644 index 0000000000000000000000000000000000000000..6aedab28b17394caa07c41a597b1bd274ecf4873 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/StorSimple_Data_Managers.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="70.4" height="93.901"><path d="M20.6 93.6v.3h.3z" fill="#7ac3e0"/><path d="M0 12.9v67.7c0 7 15.5 12.7 34.4 12.9V25.4C15.7 25.4.4 19.9 0 12.9z" fill="#39c"/><path d="M35.2 25.6h-.8v67.9h.8c19.7 0 35.2-5.7 35.2-12.9v-68c0 7.4-15.9 13-35.2 13z" fill="#59b4d9"/><path d="M0 12.8v.4C.6 20 15.9 25.6 34.5 25.6h.8c19.2 0 35.1-5.6 35.1-12.8 0-5.5-9.5-10.2-22.7-11.9-4-.6-8.1-.9-12.5-.9C15.9-.1 0 5.8 0 12.8zm63.2-.6c0 1.7-1.7 3.2-4.4 4.4-5.1 2.5-13.8 4-23.7 4-14.2 0-26.3-3.2-28-7.6v-1c0-4.7 12.5-8.5 28-8.5 15.2.2 28.1 4 28.1 8.7z" fill="#fff"/><path d="M63.2 12.2c0-4.7-12.9-8.5-28-8.5 15.1 0 28 4.1 28 8.5zm-27.8 1.7c-9.1 0-17.2 1.3-22.3 3.4-3.2-1.1-5.3-2.5-5.9-4.2 1.5 4.4 13.6 7.6 28 7.6 9.8 0 18.5-1.7 23.7-4-.6.2-1.1.4-1.7.8-5.5-2.3-13.3-3.6-21.8-3.6z" fill="#7fbb42"/><path d="M35.2 3.7c-15.5 0-28 3.8-28 8.5v1c.6 1.7 2.8 3 5.9 4.2 5.1-2.1 13.2-3.4 22.3-3.4 8.5 0 16.3 1.3 21.6 3.4.6-.2 1.1-.4 1.7-.8 2.6-1.1 4.4-2.6 4.4-4.4.1-4.4-12.8-8.5-27.9-8.5z" fill="#b8d433"/><path d="M2.4 49.9c.2.3.1.6 0 .9z" fill="#9a9b9c"/><path d="M55.4 56.5c0-.5-.2-.6-.6-.8L50 54.2c-.3-.1-.5-.2-.6-.5l-1-2.5c-.1-.3-.1-.6 0-.9l2.2-4.5c.2-.4.2-.7-.2-1L48 42.4c-.4-.5-.8-.5-1.3-.1l-.1.1-4.1 2.1c-.3.1-.5.2-.8 0-.8-.4-1.6-.7-2.4-1-.3-.1-.5-.3-.6-.7L37 38c-.1-.3-.3-.5-.6-.5h-3.9c-.4 0-.5.1-.7.5l-1.6 4.8c-.1.3-.2.5-.5.6l-2.5 1c-.3.1-.6.1-.9 0l-4.7-2.3c-.3-.1-.4-.1-.7.1L18.1 45c-.3.3-.3.5-.1.8l2.3 4.5c.2.3.2.6.1.9-.3.8-.7 1.5-1 2.3-.1.4-.3.6-.7.7l-4.8 1.7c-.4.1-.5.3-.5.6v3.9c0 .4.1.6.5.7l4.8 1.6c.3.1.5.2.6.6l1 2.4c.1.3.1.6 0 .9L18 71.4a.47.47 0 0 0 .1.6l2.9 2.9c.1.1.2.3.5.1l2.8-1.5c.7-.3 1.3-.7 2-1 .3-.1.5-.2.8 0 .8.4 1.7.7 2.5 1 .3.1.4.3.5.6l1.7 4.9c.1.3.3.5.6.5h3.9c.4 0 .5-.2.7-.5l1.6-4.8c.1-.3.2-.5.5-.6l2.5-1c.3-.1.6-.1.8 0l4.7 2.3c.3.1.4.1.7-.1l2.8-2.8c.3-.3.3-.4.1-.8l-2.3-4.6c-.2-.3-.2-.6 0-.9.4-.8.7-1.6 1-2.4a.9.9 0 0 1 .6-.6l4.8-1.7c.4-.1.5-.3.5-.7l.1-3.8z" stroke-miterlimit="10" fill="#7c7b7b" stroke="#fff" stroke-width="2"/><path d="M39.3 51.2c.8-.7.8-.7 1.4-.1 4 3.8 3.9 10.4-.2 14-2.9 2.6-7.6 2.9-11 .7-.2-.1-.4-.3-.6-.4-2-1.6-3.3-3.5-3.7-6-.6-3.2.4-6 2.7-8.3.3-.3.3-.4 0-.7s-.5-.6-.8-.9h4.6c.2 0 .3.1.3.3v4.5c-.5-.5-.9-.8-1.3-1.2-.2-.2-.3-.3-.6 0-3.1 2.6-2.9 7.7.4 10.1.3 0 .5.2.7.3 1 .7 2.2 1 3.3 1 2.4-.1 4.3-1 5.5-3.2 1.4-2.6 1-5.6-1.1-7.8-.2-.2-.6-.4-.7-.8-.1-.1-.1-.2 0-.4.4-.4.8-.7 1.1-1.1z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Storage.svg b/src/main/webapp/img/lib/mscae/Storage.svg index 4a79a50b6330aafdb4a8eee91a6a662d98aaa96c..ac33203b97fbef6f09d92c8340b1a1e0b96814c6 100644 --- a/src/main/webapp/img/lib/mscae/Storage.svg +++ b/src/main/webapp/img/lib/mscae/Storage.svg @@ -1,87 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="43" - viewBox="0 0 50 43" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Storage.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata6857"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs6855" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview6853" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="8.5" - inkscape:cx="13.819073" - inkscape:cy="2.3423987" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 0,41.1 c 0,1 0.8,1.9 1.8,1.9 h 46.3 c 1,0 1.9,-0.8 1.9,-1.9 V 8 H 0 Z" - id="path6840" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<path - d="M 48.1,0.1 H 1.8 C 0.8,0.1 0,1 0,2 V 8 H 50 V 2 C 50,1 49.2,0.4 48.1,0.4" - id="path6842" - inkscape:connector-curvature="0" - style="fill:#7a7a7a" /> -<rect - x="4" - y="21.5" - width="42" - height="7" - id="rect6844" - style="fill:#b8d432" /> -<rect - x="4" - y="11" - width="42" - height="7" - id="rect6846" - style="fill:#ffffff" /> -<rect - x="4" - y="32" - width="42" - height="7" - id="rect6848" - style="fill:#b8d432" /> -<path - enable-background="new " - d="M 2,0 C 0.9,0 0,0.9 0,2 v 7.3 3.3 28 c 0,1.1 0.9,2 2,2 H 4.2 L 43.6,0 Z" - id="path6850" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#ffffff" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="43"><path d="M0 41.1c0 1 .8 1.9 1.8 1.9h46.3c1 0 1.9-.8 1.9-1.9V8H0z" fill="#a0a1a2"/><path d="M48.1.1H1.8C.8.1 0 1 0 2v6h50V2c0-1-.8-1.6-1.9-1.6" fill="#7a7a7a"/><path d="M4 21.5h42v7H4z" fill="#b8d432"/><path d="M4 11h42v7H4z" fill="#fff"/><path d="M4 32h42v7H4z" fill="#b8d432"/><path d="M2 0C.9 0 0 .9 0 2v38.6c0 1.1.9 2 2 2h2.2L43.6 0z" opacity=".2" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/StorageAzureFiles.svg b/src/main/webapp/img/lib/mscae/StorageAzureFiles.svg index 7962425f0fc78e47cca5284ac9673bf8e65752b3..ff3d36c24b8d233c97f299ea353c3a4837fcd24f 100644 --- a/src/main/webapp/img/lib/mscae/StorageAzureFiles.svg +++ b/src/main/webapp/img/lib/mscae/StorageAzureFiles.svg @@ -1,75 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="42.599998" - width="50" - viewBox="0 0 50 42.599998" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="StorageAzureFiles.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata7007"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs7005" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview7003" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="8.5" - inkscape:cx="27.877947" - inkscape:cy="16.941764" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 0,40.7 c 0,1 0.8,1.9 1.8,1.9 h 46.3 c 1,0 1.9,-0.8 1.9,-1.9 V 7.6 H 0 Z" - id="path6992" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<path - d="M 48.1,0 H 1.8 C 0.8,0 0,0.8 0,1.9 V 7.6 H 50 V 1.9 C 50,0.8 49.2,0 48.1,0" - id="path6994" - inkscape:connector-curvature="0" - style="fill:#7a7a7a" /> -<path - d="M 38,17.2 V 14.8 H 22.8 L 19.2,11.2 H 9.7 v 26.3 c 0,0.8 0.6,1.4 1.4,1.4 v 0 h 27.2 c 0.8,0 1.4,-0.6 1.4,-1.4 V 17.2 Z" - id="path6996" - inkscape:connector-curvature="0" - style="opacity:0.8;fill:#ffffff" /> -<path - d="m 12.5,17.2 v 20.3 c 0,0.8 -0.6,1.4 -1.4,1.4 -0.8,0 -1.4,-0.6 -1.4,-1.4 V 11.2 h 9.6 l 3.6,3.6 H 38 v 2.4 z" - id="path6998" - inkscape:connector-curvature="0" - style="fill:#0072c6" /> -<path - d="M 2,0 C 0.9,0 0,0.9 0,2 v 7.3 3.3 28 c 0,1.1 0.9,2 2,2 H 4.2 L 43.6,0 Z" - id="path7000" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#ffffff" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" height="42.6" width="50"><path d="M0 40.7c0 1 .8 1.9 1.8 1.9h46.3c1 0 1.9-.8 1.9-1.9V7.6H0z" fill="#a0a1a2"/><path d="M48.1 0H1.8C.8 0 0 .8 0 1.9v5.7h50V1.9C50 .8 49.2 0 48.1 0" fill="#7a7a7a"/><path d="M38 17.2v-2.4H22.8l-3.6-3.6H9.7v26.3c0 .8.6 1.4 1.4 1.4h27.2c.8 0 1.4-.6 1.4-1.4V17.2z" opacity=".8" fill="#fff"/><path d="M12.5 17.2v20.3c0 .8-.6 1.4-1.4 1.4s-1.4-.6-1.4-1.4V11.2h9.6l3.6 3.6H38v2.4z" fill="#0072c6"/><path d="M2 0C.9 0 0 .9 0 2v38.6c0 1.1.9 2 2 2h2.2L43.6 0z" opacity=".2" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/StorageContainer.svg b/src/main/webapp/img/lib/mscae/StorageContainer.svg index 19c4c001573691911a67ae75cbfff1712a2e7d21..ac60892a58fe88d68413f842ba25613d93e34a4a 100644 --- a/src/main/webapp/img/lib/mscae/StorageContainer.svg +++ b/src/main/webapp/img/lib/mscae/StorageContainer.svg @@ -1,75 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="42.700001" - viewBox="0 0 50 42.700001" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="StorageContainer.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata7128"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs7126" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview7124" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="25" - inkscape:cy="21.7" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 0,40.8 c 0,1 0.8,1.9 1.8,1.9 h 46.3 c 1,0 1.9,-0.8 1.9,-1.9 V 7.7 H 0 Z" - id="path7113" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<path - d="M 48.1,0 H 1.8 C 0.8,0 0,0.9 0,1.9 V 7.6 H 50 V 1.9 C 50,0.9 49.2,0 48.1,0" - id="path7115" - inkscape:connector-curvature="0" - style="fill:#7a7a7a" /> -<path - d="M 38,17.2 V 14.8 H 22.8 L 19.2,11.2 H 9.7 v 26.3 c 0,0.8 0.6,1.4 1.4,1.4 v 0 h 27.2 c 0.8,0 1.4,-0.6 1.4,-1.4 V 17.2 Z" - id="path7117" - inkscape:connector-curvature="0" - style="opacity:0.8;fill:#ffffff" /> -<path - d="m 12.5,17.2 v 20.3 c 0,0.8 -0.6,1.4 -1.4,1.4 -0.8,0 -1.4,-0.6 -1.4,-1.4 V 11.2 h 9.6 l 3.6,3.6 H 38 v 2.4 z" - id="path7119" - inkscape:connector-curvature="0" - style="fill:#ff8c00" /> -<path - d="M 2,0 C 0.9,0 0,0.9 0,2 v 7.3 3.3 28 c 0,1.1 0.9,2 2,2 H 4.2 L 43.6,0 Z" - id="path7121" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#ffffff" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="42.7"><path d="M0 40.8c0 1 .8 1.9 1.8 1.9h46.3c1 0 1.9-.8 1.9-1.9V7.7H0z" fill="#a0a1a2"/><path d="M48.1 0H1.8C.8 0 0 .9 0 1.9v5.7h50V1.9c0-1-.8-1.9-1.9-1.9" fill="#7a7a7a"/><path d="M38 17.2v-2.4H22.8l-3.6-3.6H9.7v26.3c0 .8.6 1.4 1.4 1.4h27.2c.8 0 1.4-.6 1.4-1.4V17.2z" opacity=".8" fill="#fff"/><path d="M12.5 17.2v20.3c0 .8-.6 1.4-1.4 1.4s-1.4-.6-1.4-1.4V11.2h9.6l3.6 3.6H38v2.4z" fill="#ff8c00"/><path d="M2 0C.9 0 0 .9 0 2v38.6c0 1.1.9 2 2 2h2.2L43.6 0z" opacity=".2" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/StorageQueue.svg b/src/main/webapp/img/lib/mscae/StorageQueue.svg index c8dd90d82d18c68b4e74bad329b8f973d6ad5737..f0990f1c04c4f4fe057aa5b945db4fbc4667ac71 100644 --- a/src/main/webapp/img/lib/mscae/StorageQueue.svg +++ b/src/main/webapp/img/lib/mscae/StorageQueue.svg @@ -1,86 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="42.700001" - viewBox="0 0 50 42.700001" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="StorageQueue.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata7255"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs7253" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview7251" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.020815" - inkscape:cx="21.735023" - inkscape:cy="14.609638" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 0,40.8 c 0,1 0.8,1.9 1.8,1.9 h 46.3 c 1,0 1.9,-0.8 1.9,-1.9 V 7.7 H 0 Z" - id="path7238" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<path - d="M 48.1,0 H 1.8 C 0.8,0 0,0.9 0,1.9 V 7.6 H 50 V 1.9 C 50,0.9 49.2,0 48.1,0" - id="path7240" - inkscape:connector-curvature="0" - style="fill:#7a7a7a" /> -<rect - x="3.7" - y="11.1" - width="12" - height="27.799999" - id="rect7242" - style="fill:#804998" /> -<rect - x="19" - y="11.1" - width="12" - height="27.799999" - id="rect7244" - style="fill:#804998" /> -<rect - x="34.299999" - y="11.1" - width="12" - height="27.799999" - id="rect7246" - style="fill:#804998" /> -<path - d="M 2,0 C 0.9,0 0,0.9 0,2 v 7.3 3.3 28 c 0,1.1 0.9,2 2,2 H 4.2 L 43.6,0 Z" - id="path7248" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#ffffff" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="42.7"><path d="M0 40.8c0 1 .8 1.9 1.8 1.9h46.3c1 0 1.9-.8 1.9-1.9V7.7H0z" fill="#a0a1a2"/><path d="M48.1 0H1.8C.8 0 0 .9 0 1.9v5.7h50V1.9c0-1-.8-1.9-1.9-1.9" fill="#7a7a7a"/><path d="M3.7 11.1h12v27.8h-12zm15.3 0h12v27.8H19zm15.3 0h12v27.8h-12z" fill="#804998"/><path d="M2 0C.9 0 0 .9 0 2v38.6c0 1.1.9 2 2 2h2.2L43.6 0z" opacity=".2" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/StorageReplica.svg b/src/main/webapp/img/lib/mscae/StorageReplica.svg index c4647b2c5f7d4d5fd494e7d681cb50b3e07bd182..f41e25fb00bcfaee5dfadea8f09bbb6079f9e34f 100644 --- a/src/main/webapp/img/lib/mscae/StorageReplica.svg +++ b/src/main/webapp/img/lib/mscae/StorageReplica.svg @@ -1,32 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<g> - <path fill="#3E3E3E" d="M21.364,47.462c0,1.402-1.136,2.538-2.538,2.538H2.538C1.136,50,0,48.864,0,47.462V18.538 - C0,17.136,1.136,16,2.538,16h16.288c1.402,0,2.538,1.136,2.538,2.538V47.462z"/> - <path fill="#1E1E1E" d="M3.316,33.545c0-1.762,1.429-3.191,3.191-3.191h8.614c1.762,0,3.191,1.429,3.191,3.191l0,0 - c0,1.762-1.429,3.191-3.191,3.191H6.507C4.745,36.736,3.316,35.307,3.316,33.545L3.316,33.545z"/> - <circle fill="#B8D432" cx="6.643" cy="33.545" r="2.142"/> - <path fill="#1E1E1E" d="M3.316,24.065c0-1.762,1.429-3.191,3.191-3.191h8.614c1.762,0,3.191,1.429,3.191,3.191l0,0 - c0,1.762-1.429,3.191-3.191,3.191H6.507C4.745,27.257,3.316,25.828,3.316,24.065L3.316,24.065z"/> - <circle fill="#B8D432" cx="6.643" cy="24.065" r="2.142"/> -</g> -<g> - <path fill="#3E3E3E" d="M50,47.462C50,48.864,48.864,50,47.462,50H31.174c-1.402,0-2.538-1.136-2.538-2.538V18.538 - c0-1.402,1.136-2.538,2.538-2.538h16.288C48.864,16,50,17.136,50,18.538V47.462z"/> - <path fill="#1E1E1E" d="M31.952,33.545c0-1.762,1.429-3.191,3.191-3.191h8.614c1.762,0,3.191,1.429,3.191,3.191l0,0 - c0,1.762-1.429,3.191-3.191,3.191h-8.614C33.381,36.736,31.952,35.307,31.952,33.545L31.952,33.545z"/> - <circle fill="#B8D432" cx="35.279" cy="33.545" r="2.142"/> - <path fill="#1E1E1E" d="M31.952,24.065c0-1.762,1.429-3.191,3.191-3.191h8.614c1.762,0,3.191,1.429,3.191,3.191l0,0 - c0,1.762-1.429,3.191-3.191,3.191h-8.614C33.381,27.257,31.952,25.828,31.952,24.065L31.952,24.065z"/> - <circle fill="#B8D432" cx="35.279" cy="24.065" r="2.142"/> -</g> -<polygon fill="#59B4D9" points="20.627,10.034 14.786,15.875 8.945,10.034 "/> -<polygon fill="#59B4D9" points="40.752,10.034 34.911,15.875 29.07,10.034 "/> -<g> - <path fill="#59B4D9" d="M13.382,11.426C13.382,5.125,18.509,0,24.81,0s11.554,4.784,11.554,11.084c0,0.864-0.699,1.563-1.563,1.563 - s-1.563-0.699-1.563-1.563c0-4.578-3.852-7.959-8.429-7.959s-8.302,3.723-8.302,8.301C16.507,11.426,13.382,11.426,13.382,11.426z" - /> -</g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="50"><path fill="#3e3e3e" d="M21.364 47.462A2.54 2.54 0 0 1 18.826 50H2.538A2.54 2.54 0 0 1 0 47.462V18.538A2.54 2.54 0 0 1 2.538 16h16.288a2.54 2.54 0 0 1 2.538 2.538v28.924z"/><use xlink:href="#B" fill="#1e1e1e"/><circle fill="#b8d432" cx="6.643" cy="33.545" r="2.142"/><use xlink:href="#B" y="-9.48" fill="#1e1e1e"/><circle fill="#b8d432" cx="6.643" cy="24.065" r="2.142"/><path fill="#3e3e3e" d="M50 47.462A2.54 2.54 0 0 1 47.462 50H31.174a2.54 2.54 0 0 1-2.538-2.538V18.538A2.54 2.54 0 0 1 31.174 16h16.288A2.54 2.54 0 0 1 50 18.538v28.924z"/><use xlink:href="#C" fill="#1e1e1e"/><circle fill="#b8d432" cx="35.279" cy="33.545" r="2.142"/><use xlink:href="#C" y="-9.48" fill="#1e1e1e"/><circle fill="#b8d432" cx="35.279" cy="24.065" r="2.142"/><g fill="#59b4d9"><path d="M20.627 10.034l-5.84 5.84-5.84-5.84zm20.125 0l-5.84 5.84-5.84-5.84z"/><path d="M13.382 11.426C13.382 5.125 18.51 0 24.8 0s11.554 4.784 11.554 11.084a1.56 1.56 0 1 1-3.126 0c0-4.578-3.852-7.96-8.43-7.96s-8.302 3.723-8.302 8.3h-3.125z"/></g><defs ><path id="B" d="M3.316 33.545a3.19 3.19 0 0 1 3.191-3.191h8.614a3.19 3.19 0 1 1 0 6.382H6.507a3.19 3.19 0 0 1-3.191-3.191z"/><path id="C" d="M31.952 33.545a3.19 3.19 0 0 1 3.191-3.191h8.614a3.19 3.19 0 1 1 0 6.382h-8.614a3.19 3.19 0 0 1-3.191-3.191z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Storage_Accounts.svg b/src/main/webapp/img/lib/mscae/Storage_Accounts.svg new file mode 100644 index 0000000000000000000000000000000000000000..896ea69a68496029801503b5a138e18286b397f0 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Storage_Accounts.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="45"><path d="M44 45H6a6 6 0 0 1-6-6V0h50v39a6 6 0 0 1-6 6z" fill="#3e3e3e"/><path d="M4 11h42v11H4z" opacity=".9" fill="#fcd116"/><path d="M4 26h42v15H4z" fill="#7fba00"/><g fill="#fff"><path d="M4 0h42v7H4z" opacity=".9"/><path d="M4 26h42v2H4zm0-15h42v2H4z" opacity=".3"/><path d="M0 0v42.693C0 43.907.985 44.9 2.188 44.9H8L40 0z" opacity=".15"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Storage_Explorer.svg b/src/main/webapp/img/lib/mscae/Storage_Explorer.svg new file mode 100644 index 0000000000000000000000000000000000000000..87767013eb388ab1fc28e2cb60dd725cedeac1d4 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Storage_Explorer.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48"><path d="M46 32v14H8v-6h20v-8zM32 10H18v8h14zM18 0H0v10h18zm0 18H6v8h12zm-8 10H2v6h8z" fill="#0072c6"/><path d="M46 16v14H28v-6h10v-8zM26 32h-8v6h8z" fill="#fff"/><path d="M36 14v8H26v8H16v8H6v8.5A1.5 1.5 0 0 0 7.5 48h39a1.5 1.5 0 0 0 1.5-1.5V14zm-8 10h8v6h-8zm8 14h-8v-6h8zm-18-6h8v6h-8zm-2 14H8v-6h8zm10 0h-8v-6h8zm10 0h-8v-6h8zm10 0h-8v-6h8zm0-8h-8v-6h8zm0-8h-8v-6h8zm-8-8v-6h8v6z" fill="#a0a1a2"/><path d="M48 14H36V8h10.5A1.5 1.5 0 0 1 48 9.5z" fill="#7a7a7a"/><g fill="#fff"><path d="M0 0h18v10H0z" opacity=".1"/><path d="M36 18V8h10zM26 28l6-6h-6zm-10 2v8l8-8zM6 38v10l10-10zm26-20H18v-8h14zm-14-8H0V0h18zm0 16H6v-8h12zm-8 8H2v-6h8z" opacity=".1"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Storage_sync_service.svg b/src/main/webapp/img/lib/mscae/Storage_sync_service.svg index be86206d44dc2fc5941c4f813059ae147898608a..a0056ee26b4ef612143db8156f56f949214efefb 100644 --- a/src/main/webapp/img/lib/mscae/Storage_sync_service.svg +++ b/src/main/webapp/img/lib/mscae/Storage_sync_service.svg @@ -1,104 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="49.800045" - height="49.900002" - viewBox="0 0 49.800045 49.900002" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="storage_sync_service.svg"><metadata - id="metadata33"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs31" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview29" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="16.059062" - inkscape:cx="24.9" - inkscape:cy="25" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 43.247,13.881 C 43.619,12.854 43.824,11.761 43.824,10.624 43.824,4.756 38.473,0 31.872,0 26.719,0 22.34,2.904 20.662,6.968 19.144,5.415 16.905,4.423 14.407,4.423 9.828,4.423 6.098,7.752 6.098,11.863 6.098,12.583 6.214,13.253 6.417,13.897 2.678,15.131 0,18.355 0,22.13 0,26.967 4.38,30.9 9.792,30.9 L 40.005,30.9 C 45.431,30.9 49.8,26.973 49.8,22.13 49.813,18.31 47.073,15.073 43.247,13.881 Z" - id="path3" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><path - enable-background="new " - d="M 8.349,19.86 C 8.117,19.125 7.985,18.36 7.985,17.539 7.985,12.845 12.243,9.045 17.47,9.045 20.321,9.045 22.877,10.178 24.61,11.951 26.526,7.313 31.524,3.997 37.407,3.997 38.923,3.997 40.376,4.226 41.739,4.632 39.586,1.836 35.972,0 31.873,0 26.72,0 22.341,2.904 20.663,6.968 19.145,5.415 16.905,4.423 14.408,4.423 9.829,4.423 6.099,7.752 6.099,11.863 6.099,12.583 6.215,13.253 6.418,13.897 2.678,15.131 0,18.355 0,22.13 0,23.786 0.523,25.33 1.416,26.653 2.364,23.511 4.974,20.975 8.349,19.86 Z" - id="path5" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#ffffff" /><path - enable-background="new " - d="M 37.899,15.4 15.9,14.9 15.9,12.338 C 15.9,11.689 15.131,11.346 14.648,11.781 L 7.905,17.4 14.648,23.019 C 15.131,23.452 15.9,23.11 15.9,22.461 L 15.9,19.9 20.9,19.9 20.9,47.022 C 20.9,48.059 21.751,48.9 22.801,48.9 L 37.899,48.9 C 38.949,48.9 39.8,48.059 39.8,47.022 L 39.8,17.278 C 39.8,16.241 38.949,15.4 37.899,15.4 Z M 20.9,15.9 21.13,15.9 C 20.988,16.163 20.9,16.459 20.9,16.778 L 20.9,15.9 Z" - id="path7" - inkscape:connector-curvature="0" - style="opacity:0.8;fill:#ffffff" /><path - d="M 39.9,48.022 C 39.9,49.059 39.049,49.9 37.999,49.9 L 22.801,49.9 C 21.751,49.9 20.9,49.059 20.9,48.022 L 20.9,17.778 C 20.9,16.741 21.751,15.9 22.801,15.9 L 37.999,15.9 C 39.049,15.9 39.9,16.741 39.9,17.778 L 39.9,48.022 Z" - id="path9" - inkscape:connector-curvature="0" - style="fill:#7a7a7a" /><path - d="M 22.95,44.293 C 22.95,42.972 24.025,41.9 25.351,41.9 L 35.348,41.9 C 36.674,41.9 37.749,42.972 37.749,44.293 L 37.749,44.293 C 37.749,45.614 36.674,46.686 35.348,46.686 L 25.351,46.686 C 24.025,46.686 22.95,45.615 22.95,44.293 L 22.95,44.293 Z" - id="path11" - inkscape:connector-curvature="0" - style="fill:#1e1e1e" /><circle - cx="25.581999" - cy="44.293003" - r="1.607" - id="circle13" - style="fill:#b8d432" /><path - d="M 22.95,37.293 C 22.95,35.972 24.025,34.9 25.351,34.9 L 35.348,34.9 C 36.674,34.9 37.749,35.972 37.749,37.293 L 37.749,37.293 C 37.749,38.614 36.674,39.686 35.348,39.686 L 25.351,39.686 C 24.025,39.686 22.95,38.615 22.95,37.293 L 22.95,37.293 Z" - id="path15" - inkscape:connector-curvature="0" - style="fill:#1e1e1e" /><circle - cx="25.581999" - cy="37.293003" - r="1.607" - id="circle17" - style="fill:#b8d432" /><path - d="M 22.95,21.4 C 22.95,20.078 24.025,19.007 25.351,19.007 L 35.348,19.007 C 36.674,19.007 37.749,20.079 37.749,21.4 L 37.749,21.4 C 37.749,22.722 36.674,23.793 35.348,23.793 L 25.351,23.793 C 24.025,23.794 22.95,22.722 22.95,21.4 L 22.95,21.4 Z" - id="path19" - inkscape:connector-curvature="0" - style="fill:#1e1e1e" /><circle - cx="25.581999" - cy="21.4" - r="1.607" - id="circle21" - style="fill:#b8d432" /><path - d="M 28.9,31.9 20.85,31.9 20.85,27.9 19.9,27.9 20.9,26.9 28.9,26.9 28.9,24.339 C 28.9,23.69 29.669,23.347 30.152,23.782 L 36.895,29.401 30.152,35.02 C 29.669,35.453 28.9,35.11 28.9,34.461 L 28.9,31.9 Z" - id="path23" - inkscape:connector-curvature="0" - style="opacity:0.9;fill:#ffffff" /><polygon - points="35.45,29.5 29.95,25 29.95,28 18.95,28 18.95,31 29.95,31 29.95,34 " - id="polygon25" - style="fill:#59b4d9" - transform="translate(-0.1,-0.1)" /><polygon - points="9.5,17.5 15,22 15,19 26,19 26,16 15,16 15,13 " - id="polygon27" - style="fill:#7a7a7a" - transform="translate(-0.1,-0.1)" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="49.8" height="49.9"><path d="M43.247 13.88c.372-1.027.577-2.12.577-3.257C43.824 4.756 38.473 0 31.872 0c-5.153 0-9.532 2.904-11.2 6.968-1.518-1.553-3.757-2.545-6.255-2.545-4.58 0-8.31 3.33-8.31 7.44 0 .72.116 1.4.32 2.034C2.678 15.13 0 18.355 0 22.13c0 4.837 4.38 8.77 9.792 8.77h30.213c5.426 0 9.795-3.927 9.795-8.77.013-3.82-2.727-7.057-6.553-8.25z" fill="#59b4d9"/><g fill="#fff"><path d="M8.35 19.86a7.63 7.63 0 0 1-.364-2.321c0-4.694 4.258-8.494 9.485-8.494 2.85 0 5.407 1.133 7.14 2.906 1.916-4.638 6.914-7.954 12.797-7.954a15.15 15.15 0 0 1 4.332.635C39.586 1.836 35.972 0 31.873 0c-5.153 0-9.532 2.904-11.2 6.968-1.518-1.553-3.758-2.545-6.255-2.545-4.58 0-8.31 3.33-8.31 7.44 0 .72.116 1.4.32 2.034C2.678 15.13 0 18.355 0 22.13c0 1.656.523 3.2 1.416 4.523.948-3.142 3.558-5.678 6.933-6.793z" opacity=".2"/><path d="M37.9 15.4l-22-.5v-2.562a.75.75 0 0 0-1.252-.557L7.905 17.4l6.743 5.62c.483.433 1.252.09 1.252-.558V19.9h5v27.122a1.89 1.89 0 0 0 1.901 1.878H37.9a1.89 1.89 0 0 0 1.901-1.878V17.278a1.89 1.89 0 0 0-1.901-1.878zm-17 .5h.23a1.84 1.84 0 0 0-.23.878V15.9z" opacity=".8"/></g><path d="M39.9 48.022a1.89 1.89 0 0 1-1.901 1.878H22.8a1.89 1.89 0 0 1-1.901-1.878V17.778a1.89 1.89 0 0 1 1.901-1.878H38a1.89 1.89 0 0 1 1.901 1.878v30.244z" fill="#7a7a7a"/><use xlink:href="#B" fill="#1e1e1e"/><circle cx="25.582" cy="44.293" r="1.607" fill="#b8d432"/><use xlink:href="#B" y="-7" fill="#1e1e1e"/><circle cx="25.582" cy="37.293" r="1.607" fill="#b8d432"/><path d="M22.95 21.4c0-1.322 1.075-2.393 2.4-2.393h9.997c1.326 0 2.4 1.072 2.4 2.393s-1.075 2.393-2.4 2.393H25.35c-1.326.001-2.4-1.07-2.4-2.393z" fill="#1e1e1e"/><circle cx="25.582" cy="21.4" r="1.607" fill="#b8d432"/><path d="M28.9 31.9h-8.05v-4h-.95l1-1h8v-2.56a.75.75 0 0 1 1.252-.557l6.743 5.62-6.743 5.62c-.483.433-1.252.1-1.252-.56V31.9z" opacity=".9" fill="#fff"/><path d="M35.35 29.4l-5.5-4.5v3h-11v3h11v3z" fill="#59b4d9"/><path d="M9.4 17.4l5.5 4.5v-3h11v-3h-11v-3z" fill="#7a7a7a"/><defs ><path id="B" d="M22.95 44.293c0-1.32 1.075-2.393 2.4-2.393h9.997c1.326 0 2.4 1.072 2.4 2.393s-1.075 2.393-2.4 2.393H25.35c-1.326 0-2.4-1.07-2.4-2.393z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Store_Marketplace.svg b/src/main/webapp/img/lib/mscae/Store_Marketplace.svg index 2dc0916ecc6bfc750901857a39d145f90dd61f98..122dfeb0cfc186aef45c5dbbb99eb6a050526fb1 100644 --- a/src/main/webapp/img/lib/mscae/Store_Marketplace.svg +++ b/src/main/webapp/img/lib/mscae/Store_Marketplace.svg @@ -1,71 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="43.334" - height="50" - viewBox="0 0 43.334 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure Store_Marketplace_COLOR.svg"><metadata - id="metadata19"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs17" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview15" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="10.363697" - inkscape:cx="17.367987" - inkscape:cy="14.984051" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><polygon - points="42.699,12.364 42.699,12.364 39.667,12.364 39.667,12.364 4.111,12.364 3,47.105 39.667,50 39.667,50 42.699,47.664 46.334,44.864 46.332,44.863 45.222,12.364 " - id="polygon3" - style="fill:#3999c6" - transform="translate(-3,0)" /><polygon - points="42.699,44.345 42.699,12.364 39.667,12.364 39.667,50 " - id="polygon5" - style="opacity:0.3;fill:#ffffff" - transform="translate(-3,0)" /><polygon - points="42.699,47.664 46.334,44.864 42.722,44.302 42.699,44.345 39.667,50 " - id="polygon7" - style="opacity:0.2;fill:#1e1e1e" - transform="translate(-3,0)" /><path - d="M 30.037,34.209 C 30.037,32.657 28.791,31.399 27.252,31.399 27.136,31.399 27.022,31.408 26.912,31.423 27.082,30.792 27.176,30.128 27.176,29.442 27.176,25.305 23.85,21.951 19.748,21.951 16.471,21.951 13.692,24.091 12.705,27.062 12.185,26.879 11.629,26.776 11.047,26.776 8.241,26.776 5.97,29.069 5.97,31.897 5.97,34.727 8.241,37.02 11.047,37.02 11.047,37.02 11.052,37.018 11.054,37.018 L 11.054,37.02 27.478,37.02 27.475,37.006 C 28.908,36.893 30.037,35.686 30.037,34.209" - id="path9" - inkscape:connector-curvature="0" - style="fill:#ffffff" /><path - d="M 20.406,6.76 C 20.406,4.309 22.55,2.314 25.185,2.314 27.82,2.314 29.962,4.309 29.962,6.76 L 29.962,12.364 32.258,12.364 32.258,6.76 C 32.258,3.032 29.085,0 25.185,0 21.284,0 18.112,3.032 18.112,6.76 L 18.112,12.364 20.406,12.364 20.406,6.76 Z" - id="path11" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /><path - d="M 13.369,6.76 C 13.369,4.309 15.513,2.314 18.148,2.314 20.783,2.314 22.927,4.309 22.927,6.76 L 22.927,12.364 25.221,12.364 25.221,6.76 C 25.221,3.032 22.048,0 18.148,0 14.248,0 11.075,3.032 11.075,6.76 L 11.075,12.364 13.369,12.364 13.369,6.76 Z" - id="path13" - inkscape:connector-curvature="0" - style="fill:#7a7a7a" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="43.334" height="50"><path d="M39.7 12.364H1.11L0 47.105 36.667 50l6.667-5.136-.002-.001-1.1-32.5z" fill="#3999c6"/><path d="M39.7 44.345v-31.98h-3.032V50z" opacity=".3" fill="#fff"/><path d="M39.7 47.664l3.635-2.8-3.612-.562-.023.043L36.667 50z" opacity=".2" fill="#1e1e1e"/><path d="M30.037 34.21c0-1.552-1.246-2.8-2.785-2.8a2.52 2.52 0 0 0-.34.024c.17-.63.264-1.295.264-1.98 0-4.137-3.326-7.49-7.428-7.49-3.277 0-6.056 2.14-7.043 5.11a4.98 4.98 0 0 0-1.658-.286c-2.806 0-5.077 2.293-5.077 5.12s2.27 5.123 5.077 5.123h16.43l-.003-.014c1.433-.113 2.562-1.32 2.562-2.797" fill="#fff"/><path d="M20.406 6.76c0-2.45 2.144-4.446 4.78-4.446s4.777 1.995 4.777 4.446v5.604h2.296V6.76c0-3.728-3.173-6.76-7.073-6.76s-7.073 3.032-7.073 6.76v5.604h2.294V6.76z" fill="#a0a1a2"/><path d="M13.37 6.76c0-2.45 2.144-4.446 4.78-4.446s4.78 1.995 4.78 4.446v5.604h2.294V6.76c0-3.728-3.173-6.76-7.073-6.76s-7.073 3.032-7.073 6.76v5.604h2.294V6.76z" fill="#7a7a7a"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Stream_Analytics.svg b/src/main/webapp/img/lib/mscae/Stream_Analytics.svg index 684ed7f41098a6bea65369ab61bd3508e08db1fb..f5be14ed0acfc3e563530c7c6f7b5dd3a78ceefb 100644 --- a/src/main/webapp/img/lib/mscae/Stream_Analytics.svg +++ b/src/main/webapp/img/lib/mscae/Stream_Analytics.svg @@ -1,75 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="38.799999" - viewBox="0 0 50 38.799999" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure Stream Analytics_COLOR.svg"><metadata - id="metadata21"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs19" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview17" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="10.363697" - inkscape:cx="19.944065" - inkscape:cy="11.40583" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 43.3,26.3 44.5,23.2 50,21.3 50,16.9 49.4,16.7 44.5,15.3 43.3,12.2 45.8,7.1 45.8,7.1 42.7,4 42.1,4.3 37.6,6.6 34.4,5.3 32.4,0 27.9,0 27.7,0.6 26.2,5.3 23.1,6.5 17.8,4.2 14.6,7.3 14.9,7.9 16.3,10.5 C 18.8,9.1 21.4,8.5 24.2,8.5 28.1,8.7 31.7,10.1 34.5,12.7 35.1,13.2 35.7,13.6 36.4,14.3 36.7,14.6 37,15.1 37.2,15.4 39.1,18.7 38.3,22.9 35.2,25.4 32.9,27.3 29.7,27.6 27.3,26.5 27,26.3 26.8,26.3 26.7,26.2 L 26.7,26.2 26.7,26.2 C 26.1,25.9 25.5,25.4 25,25 24.8,25 24.7,24.8 24.4,24.8 23.8,24.8 23.2,25.1 22.7,25.6 L 22.5,25.8 22.5,25.8 C 20.6,27.7 18.5,29.1 16.1,29.8 L 15.2,31.7 18.2,34.7 18.4,34.9 19,34.6 23.5,32.3 26.6,33.5 28.3,38.8 32.8,38.8 33,38.2 34.6,33.5 37.7,32.3 43,34.6 46,31.3 45.7,30.7 43.3,26.3 Z" - id="path3" - inkscape:connector-curvature="0" - style="fill:#7a7a7a" /><path - d="M 16.5,18.5 16.5,18.5 16.5,18.5 C 13.1,22.1 7.6,22.1 4.4,18.3 4.1,17.8 3.3,17.8 3,18.3 2.8,18.5 2.7,18.8 2.7,19.1 2.7,19.4 2.9,19.7 3,19.9 7,24.4 13.7,24.5 18,20.1 L 18,20.1 18,20.1 C 21.4,16.7 26.7,16.6 30,20.4 30.5,20.9 31.1,20.9 31.4,20.4 31.6,20.2 31.7,19.9 31.7,19.6 31.7,19.3 31.5,19 31.4,18.8 27.4,14.3 20.7,14.2 16.5,18.5 Z" - id="path5" - inkscape:connector-curvature="0" - style="fill:#48c8ef" /><path - d="M 24,20.4 C 22.1,20.4 20.6,21 19.2,22.4 L 19,22.6 18.8,22.8 C 16.5,25.3 13.3,26.5 10.1,26.4 6.8,26.4 3.9,24.8 1.5,22.4 1,21.9 0.4,21.9 0.1,22.4 0,22.4 0,22.6 0,22.9 0,23.2 0.3,23.7 0.5,23.8 3.1,26.8 6.7,28.5 10.5,28.5 14.2,28.7 17.8,27.1 20.6,24.1 L 20.8,23.9 21,23.7 C 21.9,22.8 23,22.3 24.3,22.3 25.5,22.3 26.6,22.9 27.6,23.9 28.1,24.4 28.7,24.4 29,23.9 29.2,23.7 29.3,23.4 29.3,23.1 29.3,22.8 29.1,22.5 29,22.3 27.6,21.2 25.9,20.4 24,20.4 Z" - id="path7" - inkscape:connector-curvature="0" - style="fill:#00abec" /><path - d="M 15.6,16.3 C 17.9,13.8 21.1,12.6 24.3,12.6 27.5,12.6 30.5,14.2 32.7,16.6 33.2,17.1 33.8,17.1 34.1,16.6 34.3,16.4 34.4,16.1 34.4,15.8 34.4,15.5 34.2,15.2 34.1,15 31.5,12 27.9,10.3 24.1,10.3 20.3,10.3 16.8,11.7 14,14.7 L 13.8,14.9 13.6,15.1 C 12.7,16 11.6,16.5 10.3,16.5 9,16.5 8,15.9 7,14.9 6.5,14.4 5.9,14.4 5.6,14.9 5.4,15.1 5.3,15.4 5.3,15.7 5.3,16 5.5,16.3 5.6,16.5 6.8,17.9 8.6,18.7 10.3,18.7 12.2,18.7 13.7,18.1 15.1,16.7 L 15.3,16.5 15.6,16.3 Z" - id="path9" - inkscape:connector-curvature="0" - style="fill:#84d6ef" /><g - enable-background="new " - id="g11" - style="opacity:0.2" - transform="translate(0,-5.7)"><path - d="M 24.9,30.6 C 24.7,30.6 24.6,30.4 24.3,30.4 23.7,30.4 23.1,30.7 22.6,31.2 L 22.4,31.4 C 20.5,33.3 18.4,34.7 16,35.4 L 15.1,37.3 16.7,38.9 24.9,30.6 C 24.9,30.6 24.9,30.6 24.9,30.6 Z" - id="path13" - inkscape:connector-curvature="0" - style="fill:#f1f1f1" /><path - d="M 16.4,16.3 C 18.9,14.9 21.5,14.3 24.3,14.3 28.2,14.5 31.8,15.9 34.6,18.5 35.1,18.9 35.5,19.2 36,19.6 L 44.3,11.3 42.6,9.6 42,9.9 37.5,12.2 34.4,11 32.4,5.7 27.9,5.7 27.7,6.3 26.2,11 23.1,12.2 17.8,9.9 14.6,13 14.9,13.6 16.4,16.3 Z" - id="path15" - inkscape:connector-curvature="0" - style="fill:#f1f1f1" /></g></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="38.8"><path d="M43.3 26.3l1.2-3.1 5.5-1.9v-4.4l-.6-.2-4.9-1.4-1.2-3.1 2.5-5.1L42.7 4l-.6.3-4.5 2.3-3.2-1.3-2-5.3h-4.5l-.2.6-1.5 4.7-3.1 1.2-5.3-2.3-3.2 3.1.3.6 1.4 2.6c2.5-1.4 5.1-2 7.9-2 3.9.2 7.5 1.6 10.3 4.2.6.5 1.2.9 1.9 1.6.3.3.6.8.8 1.1 1.9 3.3 1.1 7.5-2 10-2.3 1.9-5.5 2.2-7.9 1.1-.3-.2-.5-.2-.6-.3-.6-.3-1.2-.8-1.7-1.2-.2 0-.3-.2-.6-.2-.6 0-1.2.3-1.7.8l-.2.2c-1.9 1.9-4 3.3-6.4 4l-.9 1.9 3.2 3.2.6-.3 4.5-2.3 3.1 1.2 1.7 5.3h4.5l.2-.6 1.6-4.7 3.1-1.2 5.3 2.3 3-3.3-.3-.6-2.4-4.4z" fill="#7a7a7a"/><path d="M16.5 18.5c-3.4 3.6-8.9 3.6-12.1-.2-.3-.5-1.1-.5-1.4 0-.2.2-.3.5-.3.8s.2.6.3.8c4 4.5 10.7 4.6 15 .2 3.4-3.4 8.7-3.5 12 .3.5.5 1.1.5 1.4 0 .2-.2.3-.5.3-.8s-.2-.6-.3-.8c-4-4.5-10.7-4.6-14.9-.3z" fill="#48c8ef"/><path d="M24 20.4c-1.9 0-3.4.6-4.8 2l-.4.4c-2.3 2.5-5.5 3.7-8.7 3.6-3.3 0-6.2-1.6-8.6-4-.5-.5-1.1-.5-1.4 0-.1 0-.1.2-.1.5s.3.8.5.9c2.6 3 6.2 4.7 10 4.7 3.7.2 7.3-1.4 10.1-4.4l.4-.4c.9-.9 2-1.4 3.3-1.4 1.2 0 2.3.6 3.3 1.6.5.5 1.1.5 1.4 0 .2-.2.3-.5.3-.8s-.2-.6-.3-.8c-1.4-1.1-3.1-1.9-5-1.9z" fill="#00abec"/><path d="M15.6 16.3c2.3-2.5 5.5-3.7 8.7-3.7s6.2 1.6 8.4 4c.5.5 1.1.5 1.4 0 .2-.2.3-.5.3-.8s-.2-.6-.3-.8c-2.6-3-6.2-4.7-10-4.7s-7.3 1.4-10.1 4.4l-.4.4c-.9.9-2 1.4-3.3 1.4S8 15.9 7 14.9c-.5-.5-1.1-.5-1.4 0-.2.2-.3.5-.3.8s.2.6.3.8c1.2 1.4 3 2.2 4.7 2.2 1.9 0 3.4-.6 4.8-2l.2-.2.3-.2z" fill="#84d6ef"/><path d="M24.9 24.9c-.2 0-.3-.2-.6-.2-.6 0-1.2.3-1.7.8l-.2.2c-1.9 1.9-4 3.3-6.4 4l-.9 1.9 1.6 1.6 8.2-8.3zm-8.5-14.3c2.5-1.4 5.1-2 7.9-2 3.9.2 7.5 1.6 10.3 4.2l1.4 1.1 8.3-8.3-1.7-1.7-.6.3-4.5 2.3-3.1-1.2-2-5.3h-4.5l-.2.6-1.5 4.7-3.1 1.2-5.3-2.3-3.2 3.1.3.6 1.5 2.7z" opacity=".2" fill="#f1f1f1"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Subnet.svg b/src/main/webapp/img/lib/mscae/Subnet.svg index 2da3b84736b403722d4e1c1698e8bd6de5c828d1..9c8355cd09698906fab9848223bd36eed781df99 100644 --- a/src/main/webapp/img/lib/mscae/Subnet.svg +++ b/src/main/webapp/img/lib/mscae/Subnet.svg @@ -1,65 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50.077072" - height="28.713535" - viewBox="0 0 50.077072 28.713535" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Subnet.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata7572"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs7570" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview7568" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.020815" - inkscape:cx="27.231431" - inkscape:cy="6.8826912" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 49.738535,15.075 c 0.5,-0.5 0.4,-1.3 0,-1.8 l -2.4,-2.4 -10.8,-10.5 c -0.5,-0.5 -1.2,-0.5 -1.7,0 v 0 c -0.5,0.5 -0.6,1.3 0,1.8 l 11.3,11.1 c 0.5,0.5 0.5,1.3 0,1.8 l -11.5,11.5 c -0.5,0.5 -0.5,1.3 0,1.8 v 0 c 0.5,0.5 1.3,0.4 1.7,0 l 10.7,-10.6 c 0,0 0,0 0.1,-0.1 z" - id="path7561" - inkscape:connector-curvature="0" - style="fill:#3999c6" /> -<path - d="m 0.33853532,15.075 c -0.5,-0.5 -0.4,-1.3 0,-1.8 l 2.39999998,-2.4 10.7999997,-10.5 c 0.5,-0.5 1.2,-0.5 1.7,0 v 0 c 0.5,0.5 0.6,1.3 0,1.8 l -11.0999997,11.1 c -0.5,0.5 -0.5,1.3 0,1.8 l 11.2999997,11.5 c 0.5,0.5 0.5,1.3 0,1.8 v 0 c -0.5,0.5 -1.3,0.4 -1.7,0 L 2.8385353,17.875 c 0,0 0,0 -0.1,-0.1 z" - id="path7563" - inkscape:connector-curvature="0" - style="fill:#3999c6" /> -<path - d="m 28.438535,14.175 c 0,1.9 -1.6,3.3 -3.3,3.3 -1.7,0 -3.5,-1.6 -3.5,-3.3 0,-1.7 1.4,-3.3 3.5,-3.3 2,0 3.3,1.6 3.3,3.3 z" - id="path7565" - inkscape:connector-curvature="0" - style="fill:#7fba00" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50.077" height="28.714"><path d="M49.74 15.075c.5-.5.4-1.3 0-1.8l-2.4-2.4-10.8-10.5c-.5-.5-1.2-.5-1.7 0s-.6 1.3 0 1.8l11.3 11.1c.5.5.5 1.3 0 1.8l-11.5 11.5c-.5.5-.5 1.3 0 1.8s1.3.4 1.7 0l10.8-10.7zm-49.4 0c-.5-.5-.4-1.3 0-1.8l2.4-2.4 10.8-10.5c.5-.5 1.2-.5 1.7 0s.6 1.3 0 1.8l-11.1 11.1c-.5.5-.5 1.3 0 1.8l11.3 11.5c.5.5.5 1.3 0 1.8s-1.3.4-1.7 0l-11-10.6z" fill="#3999c6"/><path d="M28.44 14.175c0 1.9-1.6 3.3-3.3 3.3s-3.5-1.6-3.5-3.3 1.4-3.3 3.5-3.3c2 0 3.3 1.6 3.3 3.3z" fill="#7fba00"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Support.svg b/src/main/webapp/img/lib/mscae/Support.svg index 965d90757d4382bbccb62cca8a9235c295c0daf9..a5d6c0eaa0a50fc2186b165b3ab1a489f32fb511 100644 --- a/src/main/webapp/img/lib/mscae/Support.svg +++ b/src/main/webapp/img/lib/mscae/Support.svg @@ -1,65 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="32.379002" - height="50" - viewBox="0 0 32.379002 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Support.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata7880"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs7878" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview7876" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="15.999" - inkscape:cy="25" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 25.255,14.928 c 0,5.006 -4.059,9.065 -9.066,9.065 -5.007,0 -9.065,-4.059 -9.065,-9.065 0,-5.006 4.058,-9.065 9.065,-9.065 5.007,0 9.066,4.059 9.066,9.065" - id="path7869" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<polygon - points="18.562,27.1 9.001,27.1 9.001,50 41.38,50 41.38,27.1 31.818,27.1 25.19,36.387 " - id="polygon7871" - style="fill:#59b4d9" - transform="translate(-9.001)" /> -<path - d="m 30.965,24.14 h -6.881 v -3.33 h 3.552 V 14.983 C 27.636,8.557 22.408,3.329 15.982,3.329 9.556,3.329 4.328,8.557 4.328,14.983 v 1.665 H 0.998 V 14.983 C 0.998,6.722 7.72,0 15.981,0 24.242,0 30.964,6.722 30.964,14.983 Z" - id="path7873" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="32.379" height="50" fill="#59b4d9"><path d="M25.255 14.928a9.07 9.07 0 0 1-9.066 9.065 9.07 9.07 0 0 1-9.065-9.065 9.07 9.07 0 0 1 9.065-9.065 9.07 9.07 0 0 1 9.066 9.065M9.56 27.1H0V50h32.38V27.1h-9.562L16.2 36.387zm21.405-2.96h-6.88V20.8h3.552v-5.827A11.67 11.67 0 0 0 15.982 3.329 11.67 11.67 0 0 0 4.328 14.983v1.665H.998v-1.665C.998 6.722 7.72 0 15.98 0s14.983 6.722 14.983 14.983z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Support_2.svg b/src/main/webapp/img/lib/mscae/Support_2.svg index f44b8aefab36f28b558780e7517e2a039fe53b84..936b2ef90c52ca233f143b035e114cde5940b291 100644 --- a/src/main/webapp/img/lib/mscae/Support_2.svg +++ b/src/main/webapp/img/lib/mscae/Support_2.svg @@ -1,80 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="32.380001" - height="50" - viewBox="0 0 32.380001 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Support_2.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata7775"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs7773" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview7771" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="16" - inkscape:cy="25" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 25.256,14.928 c 0,5.006 -4.059,9.065 -9.066,9.065 -5.007,0 -9.065,-4.059 -9.065,-9.065 0,-5.006 4.058,-9.065 9.065,-9.065 5.007,0 9.066,4.059 9.066,9.065" - id="path7758" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<polygon - points="18.562,27.1 9.001,27.1 9.001,50 41.38,50 41.38,27.1 31.818,27.1 25.19,36.387 " - id="polygon7760" - style="fill:#59b4d9" - transform="translate(-9)" /> -<path - d="m 7.126,14.928 c 0,4.931 3.939,8.935 8.843,9.054 L 18.246,6.107 C 17.585,5.953 16.9,5.864 16.191,5.864 11.183,5.863 7.126,9.922 7.126,14.928" - id="path7762" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#ffffff" /> -<polygon - points="9,50 21.696,50 23.698,34.297 18.564,27.1 9,27.1 " - id="polygon7764" - style="opacity:0.2;fill:#ffffff" - transform="translate(-9)" /> -<path - d="m 30.966,24.14 h -6.881 v -3.33 h 3.552 V 14.983 C 27.637,8.557 22.409,3.329 15.983,3.329 9.557,3.329 4.329,8.557 4.329,14.983 v 1.665 H 0.999 V 14.983 C 0.999,6.722 7.721,0 15.982,0 24.243,0 30.965,6.722 30.965,14.983 v 9.157 z" - id="path7766" - inkscape:connector-curvature="0" - style="fill:#3e3e3e" /> -<path - d="M 15.982,0 C 7.721,0 0.999,6.722 0.999,14.983 v 1.665 h 3.33 v -1.665 c 0,-6.426 5.228,-11.654 11.654,-11.654 0.964,0 1.896,0.131 2.793,0.352 L 19.192,0.354 C 18.156,0.128 17.085,0 15.982,0 Z" - id="path7768" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#ffffff" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="32.38" height="50"><path d="M25.256 14.928a9.07 9.07 0 0 1-9.066 9.065 9.07 9.07 0 0 1-9.065-9.065 9.07 9.07 0 0 1 9.065-9.065 9.07 9.07 0 0 1 9.066 9.065M9.562 27.1H.001V50h32.38V27.1H22.82l-6.62 9.287z" fill="#59b4d9"/><path d="M7.126 14.928a9.06 9.06 0 0 0 8.843 9.054l2.277-17.875a9.03 9.03 0 0 0-2.055-.243c-5.008-.001-9.065 4.058-9.065 9.064M0 50h12.696l2.002-15.703L9.564 27.1H0z" opacity=".2" fill="#fff"/><path d="M30.966 24.14h-6.88V20.8h3.552v-5.827A11.67 11.67 0 0 0 15.983 3.329 11.67 11.67 0 0 0 4.329 14.983v1.665H1v-1.665C1 6.722 7.72 0 15.982 0s14.983 6.722 14.983 14.983v9.157z" fill="#3e3e3e"/><path d="M15.982 0C7.72 0 1 6.722 1 14.983v1.665h3.33v-1.665A11.67 11.67 0 0 1 15.983 3.329c.964 0 1.896.13 2.793.352l.416-3.327C18.156.128 17.085 0 15.982 0z" opacity=".2" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Support_Requests.svg b/src/main/webapp/img/lib/mscae/Support_Requests.svg new file mode 100644 index 0000000000000000000000000000000000000000..6218f7cca992e0091cb95b4e01de55655b0ab714 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Support_Requests.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="27" height="24.9"><style><![CDATA[.F{opacity:.2}.G{enable-background:new}]]></style><path d="M8.2 2.8c-2.4 0-4.3 1.9-4.3 4.3s1.9 4.3 4.3 4.3a4.26 4.26 0 0 0 3.256-1.5H11V8c0-1.25.2-2.446.564-3.53C10.764 3.457 9.54 2.8 8.2 2.8zM0 12.9v11h16v-11h-4.7l-3.1 4.4L5 12.9z" fill="#7a4d86"/><g fill="#fff" class="G"><use xlink:href="#B" class="F"/><path d="M5 12.9H0v11h6.5l.9-7.5z" class="F"/></g><path d="M8 .001c-3.9 0-7 3.2-7 7.1v1.8h2V7.1c0-3 2-5.5 5-5.5 1.677 0 3.023.797 3.9 2a8.82 8.82 0 0 1 .939-1.637C11.587.755 9.9.001 8 .001zm6.074 3.578C13.373 4.776 13 6.325 13 8V9.9h-1v2h3V7.1c0-1.28-.34-2.48-.926-3.52z" fill="#666"/><g fill="#fff"><path d="M8.1 0A7.13 7.13 0 0 0 1 7.1v1.8h2V7.1c0-3 2.2-5.5 5.3-5.5.5 0 .8.1 1.2.2L9.6.2C9.2.1 8.6 0 8.1 0z" class="F G"/><path d="M20.5 10.5c0 4.2-1.9 7.7-4.3 7.7s-4.3-3.4-4.3-7.7 1.9-7.7 4.3-7.7c2.3 0 4.3 3.4 4.3 7.7"/><path d="M10 12.9v11h16v-11h-4.7l-3.1 4.4-3.2-4.4z"/><use xlink:href="#B" x="10" y="-1" class="F G"/><path d="M15 12.9h-5v12h6.5l.9-8.2z" class="F G"/><path d="M11 9.8h1.7v.9H11z"/></g><path d="M23.5 7.1c0 2.4-1.9 4.3-4.3 4.3s-4.3-1.9-4.3-4.3 1.9-4.3 4.3-4.3c2.3 0 4.3 1.9 4.3 4.3M11 12.9v11h16v-11h-4.7l-3.1 4.4-3.2-4.4z" fill="#59b3d8"/><g fill="#fff" class="G"><use xlink:href="#B" x="11" class="F"/><path d="M16 12.9h-5v11h6.5l.9-7.5z" class="F"/></g><path d="M26 11.9h-3v-2h1V7.1c0-3-2-5.5-5-5.5s-5 2.5-5 5.5v1.8h-2V7.1C12 3.2 15.1 0 19 0s7 3.2 7 7.1z" fill="#3e3e3e"/><path d="M19.1 0A7.13 7.13 0 0 0 12 7.1v1.8h2V7.1c0-3 2.2-5.5 5.3-5.5.5 0 .8.1 1.2.2l.1-1.6c-.4-.1-1-.2-1.5-.2z" fill="#fff" class="F G"/><defs ><path id="B" d="M3.9 7.1c0 2.3 1.9 4.2 4.2 4.3l1-8.5c-.3-.1-.6-.1-1-.1-2.3 0-4.2 1.9-4.2 4.3"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/TFSVCRepository.svg b/src/main/webapp/img/lib/mscae/TFSVCRepository.svg index aabaaf7b10994ddf39b1e78962cd57ded7ed695e..8f45818eb0293ae27c3dfa3548453b1c7d7d0c0f 100644 --- a/src/main/webapp/img/lib/mscae/TFSVCRepository.svg +++ b/src/main/webapp/img/lib/mscae/TFSVCRepository.svg @@ -1,15 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0.5 0.5 50 50" enable-background="new 0.5 0.5 50 50" xml:space="preserve"> -<rect x="26.839" y="12.777" fill="#68217A" width="11.062" height="3.571"/> -<rect x="12.777" y="26.768" fill="#68217A" width="3.571" height="11.232"/> -<rect x="21.35" y="26.028" transform="matrix(0.7071 0.7071 -0.7071 0.7071 27.8135 -11.5206)" fill="#68217A" width="12.926" height="3.571"/> -<path fill="#804998" d="M14.562,28.625C6.808,28.625,0.5,22.317,0.5,14.563S6.808,0.5,14.562,0.5s14.062,6.308,14.062,14.062 - S22.316,28.625,14.562,28.625z M14.562,4.072c-5.784,0-10.491,4.706-10.491,10.491s4.707,10.491,10.491,10.491 - s10.491-4.706,10.491-10.491S20.347,4.072,14.562,4.072z"/> -<circle fill="#804998" cx="43.357" cy="14.563" r="7.143"/> -<circle fill="#804998" cx="14.563" cy="43.357" r="7.143"/> -<circle fill="#804998" cx="34.987" cy="34.987" r="7.143"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0.5 0.5 50 50"><path d="M26.84 12.777H37.9v3.57H26.84zm-14.063 13.99h3.57V38h-3.57zm11.73-4.788l9.14 9.14-2.525 2.525-9.14-9.14z" fill="#68217a"/><g fill="#804998"><path d="M14.562 28.625C6.808 28.625.5 22.317.5 14.563S6.808.5 14.562.5s14.062 6.308 14.062 14.062-6.308 14.063-14.062 14.063zm0-24.553c-5.784 0-10.49 4.706-10.49 10.49s4.707 10.49 10.49 10.49 10.49-4.706 10.49-10.49-4.706-10.49-10.49-10.49z"/><circle cx="43.357" cy="14.563" r="7.143"/><circle cx="14.563" cy="43.357" r="7.143"/><circle cx="34.987" cy="34.987" r="7.143"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Table_Storage.svg b/src/main/webapp/img/lib/mscae/Table_Storage.svg new file mode 100644 index 0000000000000000000000000000000000000000..f91551450ab2b958a651946867e4be9a482aed8d --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Table_Storage.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="49" height="47"><path d="M43 0H6a6 6 0 0 0-6 6v35a6 6 0 0 0 6 6h37a6 6 0 0 0 6-6V6a6 6 0 0 0-6-6z" fill="#3e3e3e"/><path d="M34 4h11v11H34zM19 4h11v11H19zM4 4h11v11H4zm30 14h11v11H34z" opacity=".9" fill="#fff"/><path d="M19 18h11v11H19z" fill="#fcd116"/><path d="M4 18h11v11H4z" opacity=".9" fill="#fff"/><path d="M34 32h11v11H34z" fill="#fcd116"/><path d="M34 32h11v2H34z" opacity=".3" fill="#fff"/><path d="M19 32h11v11H19zM4 32h11v11H4z" fill="#fcd116"/><g fill="#fff"><path d="M19 32h11v2H19zM4 32h11v2H4z" opacity=".3"/><path d="M4 18h11v2H4z" opacity=".6"/><path d="M19 18h11v2H19z" opacity=".3"/><path d="M34 18h11v2H34zm0-14h11v2H34zM19 4h11v2H19zM4 4h11v2H4z" opacity=".6"/><path d="M6 47h2.88L41.994 0H6a6 6 0 0 0-6 6v35a6 6 0 0 0 6 6z" opacity=".15"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Tag.svg b/src/main/webapp/img/lib/mscae/Tag.svg index 193b01d614cab04fa5d25a36e76f1704104bba20..db3c541fd0383fe879bb2668619e2f44923f6955 100644 --- a/src/main/webapp/img/lib/mscae/Tag.svg +++ b/src/main/webapp/img/lib/mscae/Tag.svg @@ -1,65 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="49.400002" - width="50" - viewBox="0 0 50 49.400002" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Tag.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata7963"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs7961" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview7959" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="25" - inkscape:cy="24.7" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="M 42.3,0 28.6,0.5 0,29.1 20.3,49.4 48.9,20.8 50,7.7 Z m 1.1,10.6 c -1.1,1.1 -2.9,1.1 -4,0 -1.1,-1.1 -1.1,-2.9 0,-4 1.1,-1.1 2.9,-1.1 4,0 1.1,1.1 1.1,2.9 0,4 z" - id="path7952" - inkscape:connector-curvature="0" - style="fill:#804998" /> -<polygon - points="24.9,45.2 24.9,4.5 0,29.4 20.3,49.7 " - id="polygon7954" - style="opacity:0.1;fill:#ffffff" - transform="translate(0,-0.3)" /> -<path - d="m 45.1,4.9 c -2,-2 -5.3,-2 -7.3,0 -2,2 -2,5.3 0,7.3 2,2 5.3,2 7.3,0 2,-2 2,-5.3 0,-7.3 z m -1.7,5.7 c -1.1,1.1 -2.9,1.1 -4,0 -1.1,-1.1 -1.1,-2.9 0,-4 1.1,-1.1 2.9,-1.1 4,0 1.1,1.1 1.1,2.9 0,4 z" - id="path7956" - inkscape:connector-curvature="0" - style="opacity:0.3;fill:#1e1e1e" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" height="49.4" width="50"><path d="M42.3 0L28.6.5 0 29.1l20.3 20.3 28.6-28.6L50 7.7zm1.1 10.6a2.84 2.84 0 0 1-4 0 2.84 2.84 0 0 1 0-4 2.84 2.84 0 0 1 4 0 2.84 2.84 0 0 1 0 4z" fill="#804998"/><path d="M24.9 44.9V4.2L0 29.1l20.3 20.3z" opacity=".1" fill="#fff"/><path d="M45.1 4.9c-2-2-5.3-2-7.3 0s-2 5.3 0 7.3 5.3 2 7.3 0 2-5.3 0-7.3zm-1.7 5.7a2.84 2.84 0 0 1-4 0 2.84 2.84 0 0 1 0-4 2.84 2.84 0 0 1 4 0 2.84 2.84 0 0 1 0 4z" opacity=".3" fill="#1e1e1e"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Tags.svg b/src/main/webapp/img/lib/mscae/Tags.svg index ecba0c80b9b766e697b83a86ea8adbc162de99f0..f045c435eef49807405ef8094a100877defc60fd 100644 --- a/src/main/webapp/img/lib/mscae/Tags.svg +++ b/src/main/webapp/img/lib/mscae/Tags.svg @@ -1,83 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="50" - width="42.200001" - viewBox="0 0 42.200001 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Tags.svg"><metadata - id="metadata25"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs23" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview21" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="16.059062" - inkscape:cx="21.1" - inkscape:cy="25" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 30.6,0 20.7,0.4 0,21.1 14.7,35.8 35.4,15.1 36.2,5.6 30.6,0 Z M 31.4,7.7 C 30.6,8.5 29.3,8.5 28.5,7.7 27.7,6.9 27.7,5.6 28.5,4.8 29.3,4 30.6,4 31.4,4.8 32.2,5.6 32.2,6.9 31.4,7.7 Z" - id="path3" - inkscape:connector-curvature="0" - style="fill:#7fba00" /><polygon - points="21.9,3.1 3.9,21.1 18.6,35.8 21.9,32.5 " - id="polygon5" - style="opacity:0.1;fill:#ffffff" - transform="translate(-3.9,0)" /><path - d="M 32.6,3.6 C 31.1,2.1 28.8,2.1 27.3,3.6 25.8,5.1 25.8,7.4 27.3,8.9 28.8,10.4 31.1,10.4 32.6,8.9 34.1,7.4 34.1,5 32.6,3.6 Z M 31.4,7.7 C 30.6,8.5 29.3,8.5 28.5,7.7 27.7,6.9 27.7,5.6 28.5,4.8 29.3,4 30.6,4 31.4,4.8 32.2,5.6 32.2,6.9 31.4,7.7 Z" - id="path7" - inkscape:connector-curvature="0" - style="opacity:0.3;fill:#1e1e1e" /><path - d="M 33.6,7.1 23.7,7.5 3,28.2 17.7,42.9 38.4,22.2 39.2,12.7 33.6,7.1 Z M 34.4,14.8 C 33.6,15.6 32.3,15.6 31.5,14.8 30.7,14 30.7,12.7 31.5,11.9 32.3,11.1 33.6,11.1 34.4,11.9 35.2,12.7 35.2,14 34.4,14.8 Z" - id="path9" - inkscape:connector-curvature="0" - style="fill:#3999c6" /><polygon - points="24.9,10.2 6.9,28.2 21.6,42.9 24.9,39.6 " - id="polygon11" - style="opacity:0.1;fill:#ffffff" - transform="translate(-3.9,0)" /><path - d="M 35.6,10.7 C 34.1,9.2 31.8,9.2 30.3,10.7 28.8,12.2 28.8,14.5 30.3,16 31.8,17.5 34.1,17.5 35.6,16 37.1,14.5 37.1,12.2 35.6,10.7 Z M 34.4,14.8 C 33.6,15.6 32.3,15.6 31.5,14.8 30.7,14 30.7,12.7 31.5,11.9 32.3,11.1 33.6,11.1 34.4,11.9 35.2,12.7 35.2,14 34.4,14.8 Z" - id="path13" - inkscape:connector-curvature="0" - style="opacity:0.3;fill:#1e1e1e" /><path - d="M 36.6,14.2 26.7,14.6 6,35.3 20.7,50 41.4,29.3 42.2,19.8 36.6,14.2 Z M 37.4,21.9 C 36.6,22.7 35.3,22.7 34.5,21.9 33.7,21.1 33.7,19.8 34.5,19 35.3,18.2 36.6,18.2 37.4,19 38.2,19.8 38.2,21.1 37.4,21.9 Z" - id="path15" - inkscape:connector-curvature="0" - style="fill:#804998" /><polygon - points="27.9,17.3 9.9,35.3 24.6,50 27.9,46.7 " - id="polygon17" - style="opacity:0.1;fill:#ffffff" - transform="translate(-3.9,0)" /><path - d="M 38.6,17.8 C 37.1,16.3 34.8,16.3 33.3,17.8 31.8,19.3 31.8,21.6 33.3,23.1 34.8,24.6 37.1,24.6 38.6,23.1 40.1,21.6 40.1,19.3 38.6,17.8 Z M 37.4,21.9 C 36.6,22.7 35.3,22.7 34.5,21.9 33.7,21.1 33.7,19.8 34.5,19 35.3,18.2 36.6,18.2 37.4,19 38.2,19.8 38.2,21.1 37.4,21.9 Z" - id="path19" - inkscape:connector-curvature="0" - style="opacity:0.3;fill:#1e1e1e" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="50" width="42.2"><path d="M30.6 0l-9.9.4L0 21.1l14.7 14.7 20.7-20.7.8-9.5L30.6 0zm.8 7.7c-.8.8-2.1.8-2.9 0s-.8-2.1 0-2.9 2.1-.8 2.9 0 .8 2.1 0 2.9z" fill="#7fba00"/><path d="M18 3.1l-18 18 14.7 14.7 3.3-3.3z" opacity=".1" fill="#fff"/><path d="M32.6 3.6a3.68 3.68 0 0 0-5.3 0 3.68 3.68 0 0 0 0 5.3 3.68 3.68 0 0 0 5.3 0c1.5-1.5 1.5-3.9 0-5.3zm-1.2 4.1c-.8.8-2.1.8-2.9 0s-.8-2.1 0-2.9 2.1-.8 2.9 0 .8 2.1 0 2.9z" opacity=".3" fill="#1e1e1e"/><path d="M33.6 7.1l-9.9.4L3 28.2l14.7 14.7 20.7-20.7.8-9.5-5.6-5.6zm.8 7.7c-.8.8-2.1.8-2.9 0s-.8-2.1 0-2.9 2.1-.8 2.9 0 .8 2.1 0 2.9z" fill="#3999c6"/><path d="M21 10.2l-18 18 14.7 14.7 3.3-3.3z" opacity=".1" fill="#fff"/><use xlink:href="#B" opacity=".3" fill="#1e1e1e"/><path d="M36.6 14.2l-9.9.4L6 35.3 20.7 50l20.7-20.7.8-9.5-5.6-5.6zm.8 7.7c-.8.8-2.1.8-2.9 0s-.8-2.1 0-2.9 2.1-.8 2.9 0 .8 2.1 0 2.9z" fill="#804998"/><path d="M24 17.3l-18 18L20.7 50l3.3-3.3z" opacity=".1" fill="#fff"/><use xlink:href="#B" x="3" y="7.1" opacity=".3" fill="#1e1e1e"/><defs ><path id="B" d="M35.6 10.7a3.68 3.68 0 0 0-5.3 0 3.68 3.68 0 0 0 0 5.3 3.68 3.68 0 0 0 5.3 0 3.68 3.68 0 0 0 0-5.3zm-1.2 4.1c-.8.8-2.1.8-2.9 0s-.8-2.1 0-2.9 2.1-.8 2.9 0 .8 2.1 0 2.9z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Task.svg b/src/main/webapp/img/lib/mscae/Task.svg index dd5703953e6cd6d6a78897de581c72767a1166e6..551fe2a34058c2e4337b57b9b8de5d1ae9c42605 100644 --- a/src/main/webapp/img/lib/mscae/Task.svg +++ b/src/main/webapp/img/lib/mscae/Task.svg @@ -1,96 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="44" - width="50" - viewBox="0 0 50 44" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Task.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata8072"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs8070" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview8068" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="25" - inkscape:cy="22" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 0,42 c 0,1.1 0.9,2 2,2 h 46 c 1.1,0 2,-0.9 2,-2 V 8.6 H 0 Z" - id="path8051" - inkscape:connector-curvature="0" - style="fill:#3999c6" /> -<path - d="M 48,0 H 2 C 0.9,0 0,0.9 0,2 V 9.3 H 50 V 2 C 50,0.9 49.1,0 48,0 Z" - id="path8053" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<rect - y="9.3000002" - width="50" - height="3.3" - id="rect8055" - x="0" - style="opacity:0.15;fill:#ffffff" /> -<path - d="M 2,0 C 0.9,0 0,0.9 0,2 V 9.3 12.6 42 c 0,1.1 0.9,2 2,2 H 21.2 L 43.6,0 Z" - id="path8057" - inkscape:connector-curvature="0" - style="opacity:0.1;fill:#ffffff" /> -<path - d="M 8.6,20.9 8.1,20.4 C 8,20.3 8,20.1 8.1,20 l 1.4,-1.2 c 0.1,-0.1 0.1,-0.1 0.2,-0.1 0.1,0 0.2,0 0.2,0.1 l 3.7,4 6.4,-8.1 c 0.1,-0.1 0.2,-0.1 0.3,-0.1 0.1,0 0.1,0 0.2,0.1 l 1.5,1.1 c 0.1,0.1 0.1,0.1 0.1,0.2 0,0.1 0,0.2 -0.1,0.2 l -8.3,10.5 z" - id="path8059" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -<rect - x="22" - y="20.9" - width="20" - height="3.3" - id="rect8061" - style="opacity:0.6;fill:#ffffff" /> -<path - d="M 8.6,34 8.1,33.5 C 8,33.4 8,33.2 8.1,33 l 1.4,-1.2 c 0.1,-0.1 0.1,-0.1 0.2,-0.1 0.1,0 0.2,0 0.2,0.1 l 3.7,4 6.4,-8.1 c 0.1,-0.1 0.2,-0.1 0.3,-0.1 0.1,0 0.1,0 0.2,0.1 l 1.5,1.1 c 0.1,0.1 0.1,0.1 0.1,0.2 0,0.1 0,0.2 -0.1,0.2 l -8.3,10.5 z" - id="path8063" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -<rect - x="22" - y="34" - width="20" - height="3.3" - id="rect8065" - style="opacity:0.6;fill:#ffffff" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" height="44" width="50"><path d="M0 42c0 1.1.9 2 2 2h46c1.1 0 2-.9 2-2V8.6H0z" fill="#3999c6"/><path d="M48 0H2C.9 0 0 .9 0 2v7.3h50V2c0-1.1-.9-2-2-2z" fill="#a0a1a2"/><g fill="#fff"><path d="M0 9.3h50v3.3H0z" opacity=".15"/><path d="M2 0C.9 0 0 .9 0 2v40c0 1.1.9 2 2 2h19.2L43.6 0z" opacity=".1"/><path d="M8.6 20.9l-.5-.5c-.1-.1-.1-.3 0-.4l1.4-1.2c.1-.1.1-.1.2-.1s.2 0 .2.1l3.7 4 6.4-8.1c.1-.1.2-.1.3-.1s.1 0 .2.1l1.5 1.1c.1.1.1.1.1.2s0 .2-.1.2l-8.3 10.5z"/><path d="M22 20.9h20v3.3H22z" opacity=".6"/><path d="M8.6 34l-.5-.5c-.1-.1-.1-.3 0-.5l1.4-1.2c.1-.1.1-.1.2-.1s.2 0 .2.1l3.7 4 6.4-8.1c.1-.1.2-.1.3-.1s.1 0 .2.1l1.5 1.1c.1.1.1.1.1.2s0 .2-.1.2l-8.3 10.5z"/><path d="M22 34h20v3.3H22z" opacity=".6"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/TaskVM.svg b/src/main/webapp/img/lib/mscae/TaskVM.svg index 95ed3f6749fe5bb6a2b45ea431a5691e1b149688..4fdeb8271338059f4607d405730aa233ba262281 100644 --- a/src/main/webapp/img/lib/mscae/TaskVM.svg +++ b/src/main/webapp/img/lib/mscae/TaskVM.svg @@ -1,106 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="47.299999" - width="50" - viewBox="0 0 50 47.299999" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="TaskVM.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata8328"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs8326" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview8324" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="8.5" - inkscape:cx="-9.7502166" - inkscape:cy="14.575715" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="M 32.4,37.7 H 31.2 19.4 18.8 c 1.6,5.8 -0.6,6.6 -10.2,6.6 v 3 h 12.2 8.9 11.5 v -3 c -9.5,0 -10.4,-0.8 -8.8,-6.6" - id="path8303" - inkscape:connector-curvature="0" - style="fill:#7a7a7a" /> -<path - d="M 47,0 H 2.7 C 1.2,0 0,1.4 0,2.9 v 32 c 0,1.5 1.2,2.8 2.7,2.8 H 47 c 1.5,0 3,-1.3 3,-2.8 V 2.9 C 50,1.4 48.5,0 47,0 M 46.2,3.9 V 33.8 H 3.8 V 3.9 L 46.2,3.8 Z" - id="path8305" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<polygon - points="3.8,4.6 46.2,4.5 46.2,34.5 3.8,34.5 " - id="polygon8307" - style="fill:#59b4d9" - transform="translate(0,-0.7)" /> -<path - d="m 3.8,33.8 v 0 V 3.9 L 42.5,3.8 47,0 c 0,0 0,0 0,0 H 2.7 C 1.2,0 0,1.4 0,2.9 v 32 c 0,1.5 1.2,2.8 2.7,2.8 H 3.8 L 8.4,33.9 H 3.8 Z" - id="path8309" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#ffffff" /> -<polygon - points="3.8,4.6 42.5,4.5 42.5,4.5 3.8,4.6 3.8,34.5 " - id="polygon8311" - style="fill:#59b4d9" - transform="translate(0,-0.7)" /> -<rect - x="8.6999998" - y="44.299999" - width="32.700001" - height="3" - id="rect8313" - style="fill:#a0a1a2" /> -<path - d="M 8.6,12.6 8.1,12.1 C 8,12 8,11.8 8.1,11.6 l 1.4,-1.2 c 0,-0.1 0.1,-0.1 0.2,-0.1 0.1,0 0.2,0 0.2,0.1 l 3.7,4 6.4,-8.1 c 0.1,-0.1 0.2,-0.1 0.3,-0.1 0.1,0 0.1,0 0.2,0.1 l 1.5,1 c 0.1,0.1 0.1,0.1 0.1,0.2 0,0.1 0,0.2 -0.1,0.2 l -8.3,10.5 z" - id="path8315" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -<rect - x="22" - y="12.6" - width="20" - height="3.3" - id="rect8317" - style="opacity:0.6;fill:#ffffff" /> -<path - d="M 8.6,25.7 8.1,25.2 C 8,25.1 8,24.9 8.1,24.7 l 1.4,-1.2 c 0.1,-0.1 0.1,-0.1 0.2,-0.1 0.1,0 0.2,0 0.2,0.1 l 3.7,4 6.4,-8.1 c 0.1,-0.1 0.2,-0.1 0.3,-0.1 0.1,0 0.1,0 0.2,0.1 l 1.5,1.1 c 0.1,0.1 0.1,0.1 0.1,0.2 0,0.1 0,0.2 -0.1,0.2 l -8.2,10.4 z" - id="path8319" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -<rect - x="22" - y="25.699999" - width="20" - height="3.3" - id="rect8321" - style="opacity:0.6;fill:#ffffff" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" height="47.3" width="50"><path d="M32.4 37.7H18.8c1.6 5.8-.6 6.6-10.2 6.6v3h32.6v-3c-9.5 0-10.4-.8-8.8-6.6" fill="#7a7a7a"/><path d="M47 0H2.7C1.2 0 0 1.4 0 2.9v32c0 1.5 1.2 2.8 2.7 2.8H47c1.5 0 3-1.3 3-2.8v-32C50 1.4 48.5 0 47 0m-.8 3.9v29.9H3.8V3.9l42.4-.1z" fill="#a0a1a2"/><path d="M3.8 3.9l42.4-.1v30H3.8z" fill="#59b4d9"/><path d="M3.8 33.8V3.9l38.7-.1L47 0H2.7C1.2 0 0 1.4 0 2.9v32c0 1.5 1.2 2.8 2.7 2.8h1.1l4.6-3.8H3.8z" opacity=".2" fill="#fff"/><path d="M3.8 3.9l38.7-.1-38.7.1v29.9z" fill="#59b4d9"/><path d="M8.7 44.3h32.7v3H8.7z" fill="#a0a1a2"/><g fill="#fff"><path d="M8.6 12.6l-.5-.5c-.1-.1-.1-.3 0-.5l1.4-1.2c0-.1.1-.1.2-.1s.2 0 .2.1l3.7 4L20 6.3c.1-.1.2-.1.3-.1s.1 0 .2.1l1.5 1c.1.1.1.1.1.2s0 .2-.1.2l-8.3 10.5z"/><path d="M22 12.6h20v3.3H22z" opacity=".6"/><path d="M8.6 25.7l-.5-.5c-.1-.1-.1-.3 0-.5l1.4-1.2c.1-.1.1-.1.2-.1s.2 0 .2.1l3.7 4 6.4-8.1c.1-.1.2-.1.3-.1s.1 0 .2.1l1.5 1.1c.1.1.1.1.1.2s0 .2-.1.2l-8.2 10.4z"/><path d="M22 25.7h20V29H22z" opacity=".6"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Tasks.svg b/src/main/webapp/img/lib/mscae/Tasks.svg index 7de9356c2926264d4a0aff5f1f51e162276fa281..97d9d2bf776faf7b184a278b4097d1bfcc0a4ae2 100644 --- a/src/main/webapp/img/lib/mscae/Tasks.svg +++ b/src/main/webapp/img/lib/mscae/Tasks.svg @@ -1,80 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="38.191002" - viewBox="0 0 50 38.191002" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Tasks.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata8144"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs8142" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview8140" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.020815" - inkscape:cx="29.556349" - inkscape:cy="12.938887" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="M 47.794,3.404 H 13.919 c -1.218,0 -2.206,0.988 -2.206,2.206 0,1.218 0.988,2.206 2.206,2.206 H 47.794 C 49.012,7.816 50,6.828 50,5.61 50,4.392 49.012,3.404 47.794,3.404 Z" - id="path8127" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="M 47.794,16.58 H 13.919 c -1.218,0 -2.206,0.988 -2.206,2.206 0,1.218 0.988,2.206 2.206,2.206 H 47.794 C 49.012,20.992 50,20.004 50,18.786 50,17.568 49.012,16.58 47.794,16.58 Z" - id="path8129" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="M 47.794,29.757 H 13.919 c -1.218,0 -2.206,0.988 -2.206,2.206 0,1.218 0.988,2.206 2.206,2.206 h 33.875 c 1.218,0 2.206,-0.988 2.206,-2.206 0,-1.219 -0.988,-2.206 -2.206,-2.206 z" - id="path8131" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="M 2.153,10.021 V 2.966 C 1.834,3.153 1.504,3.295 1.162,3.393 0.82,3.491 0.433,3.564 0,3.609 V 1.422 C 0.615,1.317 1.188,1.152 1.719,0.926 2.25,0.7 2.794,0.392 3.35,0 h 1.716 v 10.021 z" - id="path8133" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="m 0.068,24.021 v -0.786 c 0,-0.556 0.068,-1.039 0.205,-1.449 0.137,-0.41 0.352,-0.795 0.646,-1.155 0.293,-0.36 0.805,-0.822 1.534,-1.388 0.52,-0.41 0.864,-0.705 1.036,-0.885 0.17,-0.18 0.298,-0.354 0.383,-0.523 0.084,-0.168 0.126,-0.351 0.126,-0.547 0,-0.652 -0.392,-0.978 -1.176,-0.978 -0.798,0 -1.552,0.29 -2.263,0.868 V 14.792 C 1.101,14.519 1.608,14.33 2.08,14.225 2.551,14.12 3.035,14.068 3.532,14.068 c 1.066,0 1.892,0.253 2.475,0.759 0.583,0.506 0.875,1.219 0.875,2.14 0,0.707 -0.152,1.306 -0.458,1.797 -0.306,0.492 -0.873,1.005 -1.702,1.538 -0.634,0.41 -1.054,0.71 -1.261,0.898 -0.208,0.189 -0.313,0.351 -0.318,0.482 H 6.971 V 24.02 H 0.068 Z" - id="path8135" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="m 6.836,35.218 c 0,0.943 -0.342,1.675 -1.025,2.194 -0.683,0.519 -1.661,0.779 -2.933,0.779 -0.474,0 -0.943,-0.04 -1.408,-0.12 C 1.005,37.992 0.607,37.885 0.274,37.754 v -2.283 c 0.306,0.183 0.654,0.326 1.046,0.431 0.392,0.105 0.788,0.157 1.189,0.157 0.465,0 0.821,-0.083 1.069,-0.249 0.249,-0.167 0.373,-0.405 0.373,-0.715 0,-0.314 -0.152,-0.561 -0.458,-0.738 C 3.187,34.18 2.762,34.09 2.215,34.09 H 1.271 v -2.146 h 0.834 c 0.552,0 0.958,-0.085 1.221,-0.257 0.262,-0.17 0.393,-0.393 0.393,-0.666 0,-0.26 -0.1,-0.465 -0.297,-0.615 -0.199,-0.15 -0.503,-0.226 -0.913,-0.226 -0.634,0 -1.267,0.183 -1.9,0.547 v -2.181 c 0.793,-0.328 1.627,-0.492 2.502,-0.492 1.085,0 1.935,0.221 2.55,0.663 0.615,0.442 0.923,1.055 0.923,1.839 0,0.61 -0.165,1.123 -0.495,1.538 -0.331,0.415 -0.795,0.686 -1.392,0.813 v 0.034 c 0.661,0.091 1.183,0.343 1.565,0.755 0.383,0.414 0.574,0.92 0.574,1.522 z" - id="path8137" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="38.191"><g fill="#59b4d9"><path d="M47.794 3.404H13.92c-1.218 0-2.206.988-2.206 2.206s.988 2.206 2.206 2.206h33.875C49.012 7.816 50 6.828 50 5.6s-.988-2.206-2.206-2.206z"/><use xlink:href="#B"/><use xlink:href="#B" y="13.177"/><path d="M2.153 10.02V2.966a4.29 4.29 0 0 1-.991.427A6.77 6.77 0 0 1 0 3.609V1.422A7.67 7.67 0 0 0 1.719.926C2.25.7 2.794.392 3.35 0h1.716v10.02zm-2.085 14v-.786c0-.556.068-1.04.205-1.45s.352-.795.646-1.155.805-.822 1.534-1.388l1.036-.885c.17-.18.298-.354.383-.523a1.21 1.21 0 0 0 .126-.547c0-.652-.392-.978-1.176-.978-.798 0-1.552.3-2.263.868V14.8c.542-.273 1.05-.462 1.52-.567s.955-.157 1.452-.157c1.066 0 1.892.253 2.475.76s.875 1.22.875 2.14c0 .707-.152 1.306-.458 1.797S5.55 19.768 4.72 20.3l-1.26.898c-.208.2-.313.35-.318.482H6.97v2.338H.068zm6.768 11.198c0 .943-.342 1.675-1.025 2.194s-1.66.78-2.933.78c-.474 0-.943-.04-1.408-.12s-.863-.186-1.196-.317V35.47c.306.183.654.326 1.046.43a4.62 4.62 0 0 0 1.19.157c.465 0 .82-.083 1.07-.25s.373-.405.373-.715-.152-.56-.458-.738-.73-.267-1.278-.267H1.27V31.94h.834c.552 0 .958-.085 1.22-.257s.393-.393.393-.666a.73.73 0 0 0-.297-.615c-.2-.15-.503-.226-.913-.226-.634 0-1.267.183-1.9.547v-2.18a6.48 6.48 0 0 1 2.502-.492c1.085 0 1.935.22 2.55.663s.923 1.055.923 1.84c0 .6-.165 1.123-.495 1.538s-.795.686-1.392.813v.034c.66.1 1.183.343 1.565.755s.574.92.574 1.522z"/></g><defs ><path id="B" d="M47.794 16.58H13.92c-1.218 0-2.206.988-2.206 2.206s.988 2.206 2.206 2.206h33.875c1.218 0 2.206-.988 2.206-2.206s-.988-2.206-2.206-2.206z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/TasksPolychromatic.svg b/src/main/webapp/img/lib/mscae/TasksPolychromatic.svg index fd425f834c3997a7c64c45f3d52ba920aad7942e..d3afbefc96bea87e805ef6e8e6996c57e601a7e0 100644 --- a/src/main/webapp/img/lib/mscae/TasksPolychromatic.svg +++ b/src/main/webapp/img/lib/mscae/TasksPolychromatic.svg @@ -1,81 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="38.299999" - width="49.5" - viewBox="0 0 49.5 38.299999" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="TasksPolychromatic.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata8210"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs8208" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview8206" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="24.5" - inkscape:cy="20.4" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="M 47.3,3.5 H 13.4 c -1.2,0 -2.2,1 -2.2,2.2 0,1.2 1,2.2 2.2,2.2 h 33.9 c 1.2,0 2.2,-1 2.2,-2.2 0,-1.2 -1,-2.2 -2.2,-2.2 z" - id="path8191" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="M 47.3,16.6 H 13.4 c -1.2,0 -2.2,1 -2.2,2.2 0,1.2 1,2.2 2.2,2.2 h 33.9 c 1.2,0 2.2,-1 2.2,-2.2 0,-1.2 -1,-2.2 -2.2,-2.2 z" - id="path8193" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="M 47.3,29.8 H 13.4 c -1.2,0 -2.2,1 -2.2,2.2 0,1.2 1,2.2 2.2,2.2 h 33.9 c 1.2,0 2.2,-1 2.2,-2.2 0,-1.2 -1,-2.2 -2.2,-2.2 z" - id="path8195" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<g - id="g8203" - transform="translate(-0.5,-7.1)"> - <path - d="m 4.8,7.2 v 10 H 2.6 V 9.6 C 2.4,9.8 2.1,10 1.7,10.1 1.3,10.2 0.9,10.4 0.5,10.4 V 8.6 C 1.6,8.3 2.6,7.8 3.4,7.1 h 1.4 z" - id="path8197" - inkscape:connector-curvature="0" /> - <path - d="m 2.9,29.4 h 4.2 v 1.8 H 0.6 V 30.5 C 0.6,30 0.7,29.5 0.9,29.1 1.1,28.7 1.3,28.3 1.7,27.9 2,27.5 2.5,27.1 3.2,26.6 3.8,26.1 4.3,25.7 4.5,25.4 4.8,25.1 4.9,24.7 4.9,24.3 4.9,23.5 4.4,23 3.5,23 2.7,23 1.9,23.3 1.1,24 V 22 C 2,21.4 2.9,21.2 4,21.2 c 1,0 1.8,0.2 2.3,0.7 0.6,0.5 0.9,1.2 0.9,2 0,0.5 -0.1,0.9 -0.3,1.3 C 6.7,25.6 6.5,26 6.2,26.3 5.9,26.6 5.4,27.1 4.7,27.5 4,28 3.6,28.3 3.4,28.6 3,29 2.9,29.2 2.9,29.4 Z" - id="path8199" - inkscape:connector-curvature="0" /> - <path - d="m 7.3,42.4 c 0,0.9 -0.3,1.6 -1,2.2 -0.7,0.5 -1.6,0.8 -2.8,0.8 -1,0 -1.8,-0.2 -2.5,-0.5 V 43 c 0.6,0.5 1.4,0.7 2.3,0.7 0.6,0 1,-0.1 1.3,-0.4 C 4.9,43.1 5,42.7 5,42.3 5,41.9 4.8,41.5 4.4,41.3 4,41.1 3.6,41 2.9,41 H 2 v -1.7 h 0.8 c 1.3,0 1.9,-0.4 1.9,-1.3 0,-0.8 -0.5,-1.2 -1.5,-1.2 -0.7,0 -1.3,0.2 -1.9,0.6 v -1.8 c 0.7,-0.3 1.5,-0.5 2.4,-0.5 1,0 1.7,0.2 2.3,0.7 0.6,0.5 0.9,1 0.9,1.8 C 7,38.9 6.3,39.7 5,40 v 0 c 0.7,0.1 1.2,0.3 1.6,0.7 0.4,0.5 0.7,1.1 0.7,1.7 z" - id="path8201" - inkscape:connector-curvature="0" /> -</g> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="38.3" width="49.5"><g fill="#59b4d9"><use xlink:href="#B"/><use xlink:href="#B" y="13.1"/><use xlink:href="#B" y="26.3"/></g><path d="M4.3.1v10H2.1V2.5c-.2.2-.5.4-.9.5s-.8.3-1.2.3V1.5C1.1 1.2 2.1.7 2.9 0h1.4zM2.4 22.3h4.2v1.8H.1v-.7c0-.5.1-1 .3-1.4s.4-.8.8-1.2c.3-.4.8-.8 1.5-1.3.6-.5 1.1-.9 1.3-1.2.3-.3.4-.7.4-1.1 0-.8-.5-1.3-1.4-1.3-.8 0-1.6.3-2.4 1v-2c.9-.6 1.8-.8 2.9-.8 1 0 1.8.2 2.3.7.6.5.9 1.2.9 2 0 .5-.1.9-.3 1.3s-.4.8-.7 1.1-.8.8-1.5 1.2c-.7.5-1.1.8-1.3 1.1-.4.4-.5.6-.5.8zm4.4 13c0 .9-.3 1.6-1 2.2-.7.5-1.6.8-2.8.8-1 0-1.8-.2-2.5-.5v-1.9c.6.5 1.4.7 2.3.7.6 0 1-.1 1.3-.4.3-.2.4-.6.4-1a1.1 1.1 0 0 0-.6-1c-.4-.2-.8-.3-1.5-.3h-.9v-1.7h.8c1.3 0 1.9-.4 1.9-1.3 0-.8-.5-1.2-1.5-1.2-.7 0-1.3.2-1.9.6v-1.8c.7-.3 1.5-.5 2.4-.5 1 0 1.7.2 2.3.7s.9 1 .9 1.8c.1 1.3-.6 2.1-1.9 2.4.7.1 1.2.3 1.6.7.4.5.7 1.1.7 1.7z"/><defs ><path id="B" d="M47.3 3.5H13.4a2.22 2.22 0 0 0-2.2 2.2 2.22 2.22 0 0 0 2.2 2.2h33.9a2.22 2.22 0 0 0 2.2-2.2 2.22 2.22 0 0 0-2.2-2.2z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Tax.svg b/src/main/webapp/img/lib/mscae/Tax.svg index 1bc0d9d81c476b9e88728668ef5ce6c053c7eb20..bf5977e707e7370a0b9fe26404997186f3849d9b 100644 --- a/src/main/webapp/img/lib/mscae/Tax.svg +++ b/src/main/webapp/img/lib/mscae/Tax.svg @@ -1,19 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<circle fill="#0072C6" cx="25" cy="25" r="25"/> -<path opacity="0.2" fill="#FFFFFF" enable-background="new " d="M7.322,42.678c-9.762-9.763-9.762-25.594,0-35.356 - s25.594-9.762,35.356,0L7.322,42.678z"/> -<polygon fill="#FFFFFF" points="34.078,14.665 19.484,37.07 15.672,37.07 30.234,14.665 "/> -<path fill="#FFFFFF" d="M20.992,15.836c-0.933-0.989-2.227-1.484-3.883-1.484c-1.729,0-3.112,0.547-4.148,1.641 - c-1.037,1.094-1.555,2.573-1.555,4.437c0,1.708,0.487,3.068,1.461,4.078c0.974,1.01,2.258,1.515,3.852,1.515 - c1.719,0,3.094-0.541,4.125-1.625c1.031-1.083,1.547-2.547,1.547-4.391C22.391,18.217,21.924,16.826,20.992,15.836z M16.906,23.274 - c-1.448,0-2.172-1-2.172-3c0-2.114,0.76-3.172,2.281-3.172c1.406,0,2.109,1.016,2.109,3.047 - C19.125,22.232,18.385,23.274,16.906,23.274z"/> -<path fill="#FFFFFF" d="M36.953,27.18c-0.928-0.979-2.225-1.469-3.891-1.469c-1.729,0-3.112,0.547-4.148,1.641 - c-1.037,1.094-1.555,2.573-1.555,4.438c0,1.709,0.486,3.068,1.461,4.078c0.974,1.011,2.258,1.516,3.852,1.516 - c1.719,0,3.094-0.547,4.125-1.641s1.547-2.563,1.547-4.406C38.344,29.545,37.88,28.159,36.953,27.18z M32.859,34.633 - c-1.469,0-2.203-1-2.203-3c0-2.114,0.755-3.172,2.266-3.172c0.646,0,1.166,0.266,1.563,0.797c0.396,0.531,0.594,1.281,0.594,2.25 - C35.078,33.592,34.338,34.633,32.859,34.633z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><circle fill="#0072c6" cx="25" cy="25" r="25"/><g fill="#fff"><path opacity=".2" d="M7.322 42.678c-9.762-9.763-9.762-25.594 0-35.356s25.594-9.762 35.356 0L7.322 42.678z"/><path d="M34.078 14.665L19.484 37.07h-3.812l14.562-22.405zm-13.086 1.17c-.933-1-2.227-1.484-3.883-1.484-1.73 0-3.112.547-4.148 1.64s-1.555 2.573-1.555 4.437c0 1.708.487 3.068 1.46 4.078s2.258 1.515 3.852 1.515c1.72 0 3.094-.54 4.125-1.625s1.547-2.547 1.547-4.4c0-1.8-.467-3.18-1.4-4.17zm-4.086 7.438c-1.448 0-2.172-1-2.172-3 0-2.114.76-3.172 2.28-3.172 1.406 0 2.1 1.016 2.1 3.047.001 2.083-.74 3.125-2.218 3.125zm20.047 3.906c-.928-.98-2.225-1.47-3.9-1.47-1.73 0-3.112.547-4.148 1.64s-1.555 2.575-1.555 4.45c0 1.7.486 3.068 1.46 4.078s2.258 1.516 3.852 1.516c1.72 0 3.094-.547 4.125-1.64s1.547-2.563 1.547-4.406c0-1.792-.464-3.178-1.4-4.157zm-4.094 7.453c-1.47 0-2.203-1-2.203-3 0-2.114.755-3.172 2.266-3.172.646 0 1.166.266 1.563.797s.594 1.28.594 2.25c-.001 2.084-.74 3.125-2.22 3.125z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/TeamProject.svg b/src/main/webapp/img/lib/mscae/TeamProject.svg index b0ada9b46334731d8a5e7d2be78999e6453f21e3..9be8374d7d6e4d6d61521247973093912e84d8c8 100644 --- a/src/main/webapp/img/lib/mscae/TeamProject.svg +++ b/src/main/webapp/img/lib/mscae/TeamProject.svg @@ -1,20 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#804998" d="M44.977,10.5c0,5.638-4.571,10.209-10.21,10.209S24.558,16.138,24.558,10.5s4.57-10.209,10.209-10.209 - C40.406,0.291,44.977,4.862,44.977,10.5"/> -<polygon fill="#804998" points="42.232,24.209 34.767,34.668 27.302,24.209 19.534,24.209 19.534,50 50,50 50,24.209 "/> -<path fill="#804998" d="M14.294,27.636c0,3.168-2.568,5.734-5.736,5.734s-5.736-2.566-5.736-5.734s2.568-5.735,5.736-5.735 - S14.294,24.468,14.294,27.636"/> -<polygon fill="#804998" points="12.751,35.512 8.558,41.388 4.364,35.512 0,35.512 0,50 17.115,50 17.115,35.512 "/> -<path opacity="0.2" fill="#FFFFFF" enable-background="new " d="M24.558,10.5c0,5.554,4.437,10.063,9.959,10.197l2.564-20.132 - c-0.744-0.174-1.516-0.274-2.314-0.274C29.128,0.291,24.558,4.862,24.558,10.5"/> -<polygon opacity="0.2" fill="#FFFFFF" enable-background="new " points="27.304,24.209 19.533,24.209 19.533,50 30.832,50 - 33.086,32.314 "/> -<path opacity="0.2" fill="#FFFFFF" enable-background="new " d="M2.823,27.636c0,3.167,2.567,5.734,5.735,5.734 - c0.2,0,0.387-0.038,0.582-0.057l1.407-11.038c-0.622-0.23-1.286-0.374-1.989-0.374C5.39,21.901,2.823,24.469,2.823,27.636"/> -<polygon opacity="0.2" fill="#FFFFFF" enable-background="new " points="4.365,35.512 0.001,35.512 0.001,50 7.063,50 - 8.221,40.916 "/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path d="M44.977 10.5a10.21 10.21 0 0 1-20.419 0A10.21 10.21 0 0 1 34.767.291 10.21 10.21 0 0 1 44.977 10.5m-2.745 13.7l-7.465 10.46-7.465-10.46h-7.768V50H50V24.2zm-27.938 3.426c0 3.168-2.568 5.734-5.736 5.734s-5.736-2.566-5.736-5.734S5.4 21.9 8.558 21.9s5.736 2.567 5.736 5.735m-1.544 7.877l-4.193 5.876-4.194-5.876H0V50h17.115V35.512z" fill="#804998"/><path opacity=".2" d="M24.558 10.5c0 5.554 4.437 10.063 9.96 10.197L37.08.565C36.337.4 35.565.3 34.767.3A10.21 10.21 0 0 0 24.558 10.5m2.746 13.7h-7.77V50h11.3l2.254-17.686zm-24.48 3.426c0 3.167 2.567 5.734 5.735 5.734.2 0 .387-.038.582-.057l1.407-11.038a5.71 5.71 0 0 0-1.99-.374c-3.168 0-5.735 2.568-5.735 5.735m1.543 7.876H.001V50h7.062l1.158-9.084z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Templates.svg b/src/main/webapp/img/lib/mscae/Templates.svg new file mode 100644 index 0000000000000000000000000000000000000000..e5d8e28ca4e327509192369a991f7ffd71177f32 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Templates.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="44" height="50"><path d="M35.2 0H0v50h44V8.8L37.2 2z" fill="#59b4d9"/><path d="M2 48h40V9h-7V2H2z" opacity=".8" fill="#fff"/><path d="M10.243 26.675c0 1.08-.267 1.92-.8 2.52s-1.246.9-2.135.9c-.416 0-.756-.05-1.023-.146v-1.424c.242.165.553.248.935.248 1.008 0 1.512-.78 1.512-2.34v-5.605h1.512v5.847zM12 29.58v-1.557a2.42 2.42 0 0 0 .499.343c.193.102.397.188.613.258a4.95 4.95 0 0 0 .648.162c.216.038.415.057.597.057.636 0 1.1-.105 1.42-.317s.467-.52.467-.922c0-.216-.052-.403-.155-.563a1.61 1.61 0 0 0-.436-.435c-.186-.13-.406-.258-.658-.38l-.8-.377-.864-.503c-.267-.17-.5-.356-.696-.562a2.36 2.36 0 0 1-.464-.696 2.28 2.28 0 0 1-.168-.91c0-.428.096-.8.3-1.115a2.43 2.43 0 0 1 .763-.781c.315-.206.674-.358 1.077-.458a5.09 5.09 0 0 1 1.232-.15c.954 0 1.648.108 2.084.324v1.494c-.517-.373-1.182-.56-1.995-.56a3.51 3.51 0 0 0-.67.063c-.222.043-.422.112-.598.2s-.32.223-.43.375a.92.92 0 0 0-.166.553c0 .204.042.38.127.528s.208.284.372.406a3.95 3.95 0 0 0 .597.36l.817.378.9.52c.282.182.53.383.744.604a2.67 2.67 0 0 1 .508.733 2.16 2.16 0 0 1 .188.919c0 .462-.093.852-.28 1.17a2.26 2.26 0 0 1-.753.775 3.33 3.33 0 0 1-1.1.433 6.14 6.14 0 0 1-1.303.133 5.67 5.67 0 0 1-.563-.035l-.683-.102a6.33 6.33 0 0 1-.661-.162c-.208-.063-.372-.134-.5-.215zm11.262.514c-1.314 0-2.366-.426-3.156-1.277s-1.185-1.96-1.185-3.323c0-1.466.402-2.635 1.208-3.508s1.897-1.3 3.278-1.3c1.28 0 2.3.423 3.092 1.27s1.174 1.955 1.174 3.323c0 1.487-.4 2.663-1.2 3.527s-1.872 1.296-3.2 1.296zm.068-8.1c-.834 0-1.513.3-2.036.934s-.785 1.442-.785 2.46c0 1.012.254 1.827.763 2.446s1.173.928 1.996.928c.873 0 1.56-.295 2.064-.884s.756-1.413.756-2.472c0-1.1-.244-1.93-.732-2.523s-1.164-.9-2.026-.9zm13.74 7.946H35.4l-4.354-6.698a2.97 2.97 0 0 1-.273-.528h-.038c.034.195.05.612.05 1.252v5.974h-1.46v-9.113h1.76l4.207 6.54.344.56h.025c-.043-.24-.063-.65-.063-1.227v-5.872h1.455v9.113z" fill="#59b4d9"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Tenant_Status.svg b/src/main/webapp/img/lib/mscae/Tenant_Status.svg new file mode 100644 index 0000000000000000000000000000000000000000..64c18e9d0e6254a36c5111b61702d9a1be9771f6 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Tenant_Status.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="44.688" height="48.9"><path d="M22.9 8.4a8.4 8.4 0 0 1-12.6 7.275A8.4 8.4 0 0 1 14.5 0a8.4 8.4 0 0 1 8.4 8.4m-2.464 10.5L14.5 27.416 8.563 18.9H0v21h29v-21z" fill="#59b4d9"/><g fill="#fff"><path d="M38.824 35.9l-4.427-4.414-7.785-3-2.463 3.806-3.266 2.62h-4.006l1.24 2.548h4.76c3.458 5.392 8 9.7 8 9.7s4.53-2.997 8-8.258h1.592c.605-.83 1.08-1.746 1.408-2.72z"/><path d="M44.688 36.9H39.78l-1.24 2.548h4.867z"/></g><path d="M36.518 24.9c-2.42 0-4.494 1.52-5.518 3.718-1.024-2.197-3.098-3.718-5.518-3.718-3.43 0-6.208 3.022-6.208 6.75 0 .833.123 1.673.34 2.5H16.48l.822 1.644h6.402l3.565-5.51 4.142 8.56 3.93-5.5 2.9 3.544h3.39c.68-1.646 1.1-3.408 1.1-5.25-.002-3.728-2.78-6.75-6.2-6.75z" fill="#dd5900"/><path d="M43.877 38.544H37.46l-2.032-2.483-4.3 6.007-4.077-8.425-2.463 3.806h-3.69C24.13 43.623 31 48.9 31 48.9s5.39-3.45 8.862-8.712h3.192z" fill="#ba141a"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/TimeSeriesInsights.svg b/src/main/webapp/img/lib/mscae/TimeSeriesInsights.svg index 0bccf0c7aae9cb8fb8a6ac767149dd82189c7c64..4d53204b292e58d4cf8a42604016b9036a4492d7 100644 --- a/src/main/webapp/img/lib/mscae/TimeSeriesInsights.svg +++ b/src/main/webapp/img/lib/mscae/TimeSeriesInsights.svg @@ -1,59 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="23" - height="23" - viewBox="0 0 23 23" - enable-background="new 0 0 24 24" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="TimeSeriesInsights-color.svg"><metadata - id="metadata13"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs11" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview9" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="33.45638" - inkscape:cx="12" - inkscape:cy="11" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 12.661,15.093 10.661,4.093 8.15,11 0.025,11 C 0.018,11.167 0,11.331 0,11.5 0,11.669 0.018,11.833 0.025,12 L 8.85,12 10.338,7.907 12.338,18.907 14.851,12 22.975,12 C 22.982,11.833 23,11.669 23,11.5 23,11.331 22.982,11.167 22.975,11 L 14.15,11 12.661,15.093 Z" - id="path3" - inkscape:connector-curvature="0" - style="fill:#0072c6" /><path - d="M 1.12,10 C 1.852,4.92 6.221,1 11.5,1 16.779,1 21.148,4.92 21.88,10 L 22.891,10 C 22.154,4.359 17.342,0 11.5,0 5.658,0 0.846,4.359 0.109,10 L 1.12,10 Z" - id="path5" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><path - d="M 21.88,13 C 21.148,18.08 16.779,22 11.5,22 6.221,22 1.852,18.08 1.12,13 L 0.109,13 C 0.846,18.641 5.658,23 11.5,23 17.342,23 22.154,18.641 22.891,13 L 21.88,13 Z" - id="path7" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="23" height="23"><path d="M12.66 15.093l-2-11L8.15 11H.025L0 11.5c0 .17.018.333.025.5H8.85l1.488-4.093 2 11L14.85 12h8.124l.025-.5c0-.17-.018-.333-.025-.5H14.15l-1.49 4.093z" fill="#0072c6"/><path d="M1.12 10c.732-5.08 5.1-9 10.38-9s9.648 3.92 10.38 9h1c-.737-5.64-5.55-10-11.4-10S.846 4.36.1 10h1zm20.76 3c-.732 5.08-5.1 9-10.38 9s-9.648-3.92-10.38-9h-1c.737 5.64 5.55 10 11.4 10s10.654-4.36 11.4-10h-1z" fill="#59b4d9"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Time_Series_Insights_environments.svg b/src/main/webapp/img/lib/mscae/Time_Series_Insights_environments.svg new file mode 100644 index 0000000000000000000000000000000000000000..db31ad693774a10c943c5381fdd49164a3356655 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Time_Series_Insights_environments.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="63" height="64" fill="#00b294"><path d="M62.5 24.3C59 10 46.2 0 31.5 0 16.6 0 3.5 10.6.3 25.1L0 26.4h6.4l.2-.8C9.5 14.2 19.8 6.2 31.5 6.2c11.3 0 21.5 7.7 24.7 18.6l.2.7h6.4zM55.9 40l-.2.7C52 50.9 42.3 57.8 31.5 57.8c-10.6 0-20-6.4-23.9-16.3l-.3-.7H.8l.5 1.4C5.6 55.2 17.8 64 31.5 64c14.1 0 26.4-9.1 30.6-22.7l.4-1.3zm-21.3 9l-7-20.2-4 7.4H2.8a2.65 2.65 0 0 1-2.6-2.6A2.65 2.65 0 0 1 2.8 31h17.7l8.2-15L36 37.2l4.5-7h19.9a2.65 2.65 0 0 1 2.6 2.6 2.65 2.65 0 0 1-2.6 2.6H43.3z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Toolbox.svg b/src/main/webapp/img/lib/mscae/Toolbox.svg index 948882da4871461512c9bc788c8f6ce5ecdde7f7..e39eb7a8b7ea6070c4830879b39276267a8b0da6 100644 --- a/src/main/webapp/img/lib/mscae/Toolbox.svg +++ b/src/main/webapp/img/lib/mscae/Toolbox.svg @@ -1,104 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="45" - height="40.599998" - viewBox="0 0 45 40.599998" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Toolbox.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata991"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs989" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview987" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="23" - inkscape:cy="20.6" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="M 0,40.6 V 12.8 C 0,11.2 1.3,9.9 2.9,9.9 H 42 c 1.6,0 2.9,1.3 2.9,2.9 v 27.8 z" - id="path968" - inkscape:connector-curvature="0" - style="fill:#ba141a" /> -<path - d="m 42.3,26.6 c -2.9,0 -5.2,2.3 -5.2,5.2 0,2.9 2.3,5.2 5.2,5.2 1,0 1.9,-0.3 2.7,-0.8 v -8.8 c -0.8,-0.5 -1.7,-0.8 -2.7,-0.8 z" - id="path970" - inkscape:connector-curvature="0" - style="fill:#804998" /> -<path - d="M 35.1,9.9 H 31.7 V 5 C 31.7,4.1 31,3.4 30.1,3.4 H 14.9 C 14,3.4 13.3,4.1 13.3,5 V 9.9 H 9.9 V 5 c 0,-2.8 2.2,-5 5,-5 h 15.2 c 2.8,0 5,2.2 5,5 z" - id="path972" - inkscape:connector-curvature="0" - style="fill:#0f0f0f" /> -<polygon - enable-background="new " - points="2,38.3 17.6,42.1 19.1,35.8 2,31.7 " - id="polygon974" - style="opacity:0.6;fill:#fee087" - transform="translate(-2,-5)" /> -<path - enable-background="new " - d="m 14.8,14.3 c 0.3,1.7 -2.4,3.4 -6,4 -3.6,0.6 -6.7,-0.3 -7,-2 -0.3,-1.7 2.4,-3.4 6,-4 3.7,-0.5 6.8,0.4 7,2" - id="path976" - inkscape:connector-curvature="0" - style="opacity:0.8;fill:#ff8c00" /> -<path - enable-background="new " - d="m 42.3,28.3 c -2,0 -3.5,1.6 -3.5,3.5 0,1.9 1.6,3.5 3.5,3.5 1.1,0 2.1,-0.5 2.7,-1.3 v -4.4 c -0.6,-0.8 -1.6,-1.3 -2.7,-1.3 z" - id="path978" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#ffffff" /> -<rect - x="0" - y="22.1" - enable-background="new " - width="45" - height="2.0999999" - id="rect980" - style="opacity:0.3;fill:#1e1e1e" /> -<path - enable-background="new " - d="m 26.2,21 c 0.7,0 1.3,0.6 1.3,1.3 v 4 c 0,0.7 -0.6,1.3 -1.3,1.3 h -7.4 c -0.7,0 -1.3,-0.6 -1.3,-1.3 v -4 c 0,-0.7 0.6,-1.3 1.3,-1.3 z" - id="path982" - inkscape:connector-curvature="0" - style="opacity:0.3;fill:#1e1e1e" /> -<rect - x="0" - y="21" - width="45" - height="2.0999999" - id="rect984" - style="fill:#e5e5e5" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="45" height="40.6"><path d="M0 40.6V12.8c0-1.6 1.3-2.9 2.9-2.9H42c1.6 0 2.9 1.3 2.9 2.9v27.8z" fill="#ba141a"/><path d="M42.3 26.6c-2.9 0-5.2 2.3-5.2 5.2s2.3 5.2 5.2 5.2c1 0 1.9-.3 2.7-.8v-8.8c-.8-.5-1.7-.8-2.7-.8z" fill="#804998"/><path d="M35.1 9.9h-3.4V5a1.58 1.58 0 0 0-1.6-1.6H14.9A1.58 1.58 0 0 0 13.3 5v4.9H9.9V5a4.95 4.95 0 0 1 5-5h15.2a4.95 4.95 0 0 1 5 5z" fill="#0f0f0f"/><path d="M0 33.3l15.6 3.8 1.5-6.3L0 26.7z" opacity=".6" fill="#fee087"/><path d="M14.8 14.3c.3 1.7-2.4 3.4-6 4s-6.7-.3-7-2 2.4-3.4 6-4c3.7-.5 6.8.4 7 2" opacity=".8" fill="#ff8c00"/><path d="M42.3 28.3c-2 0-3.5 1.6-3.5 3.5s1.6 3.5 3.5 3.5c1.1 0 2.1-.5 2.7-1.3v-4.4c-.6-.8-1.6-1.3-2.7-1.3z" opacity=".2" fill="#fff"/><g fill="#1e1e1e"><path d="M0 22.1h45v2.1H0z" opacity=".3"/><path d="M26.2 21c.7 0 1.3.6 1.3 1.3v4c0 .7-.6 1.3-1.3 1.3h-7.4c-.7 0-1.3-.6-1.3-1.3v-4c0-.7.6-1.3 1.3-1.3z" opacity=".3"/></g><path d="M0 21h45v2.1H0z" fill="#e5e5e5"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Tools.svg b/src/main/webapp/img/lib/mscae/Tools.svg index 7943c2c13d4a944bfb27b1625669e62698209cd5..7568c6cdaadaad224a584c74e8452f17ccf56b47 100644 --- a/src/main/webapp/img/lib/mscae/Tools.svg +++ b/src/main/webapp/img/lib/mscae/Tools.svg @@ -1,65 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="46.799999" - height="50.035954" - viewBox="0 0 46.799999 50.035954" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Tools.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata1067"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs1065" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview1063" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="23.4" - inkscape:cy="25" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 39.6,11.235954 0.5,0.5 2.5,-2.1000004 4.2,-6.9 -1.1,-1.1 -6.6,4.4 -2,2.6 0.5,0.5 -13.1,13.5000004 -2.7,-2.8 -3,3.1 c 0.2,1.5 -0.3,3.1 -1.4,4.3 -1.1,1.2 -2.7,1.7 -4.1,1.5 l -13.3,13.6 7.4,7.7 13.2,-13.7 c -0.2,-1.5 0.3,-3.1 1.5,-4.3 1.1,-1.2 2.7,-1.7 4.1,-1.5 l 3,-3.1 -2.7,-2.8 z" - id="path1056" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="m 38.4,46.035954 c 1.9,2 5,2 6.9,0 1,-1 1.4,-2.3 1.4,-3.6 0,-1.3 -0.5,-2.6 -1.4,-3.6 l -14.8,-15.2 -1.4,1.5 2.7,2.8 -1.2,1.1 -3,3.1 -0.4,0.4 -0.6,-0.1 c -0.4,0 -0.9,0 -1.3,0.1 z" - id="path1058" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="M 18.7,3.1359536 C 16,0.33595355 12.1,-0.56404645 8.7,0.33595355 l 5.9,6.00000005 -1.5,5.9000004 -5.8,1.6 -5.8,-6.0000004 c -0.9,3.6000004 0,7.5000004 2.7,10.3000004 2.7,2.8 6.6,3.7 10.1,2.7 l 0.2,0.2 2.7,2.8 c 0.1,-0.3 0.1,-0.6 0.1,-0.9 0,-0.2 0,-0.3 0,-0.5 l -0.2,-0.4 4.5,-4.7 0.8,0.9 1.8,1.9 1.4,-1.5 -4.3,-4.6 v 0 c 1.1,-3.7 0.3,-7.9000004 -2.6,-10.9000004 z" - id="path1060" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="46.8" height="50.036" fill="#59b4d9"><path d="M39.6 11.236l.5.5 2.5-2.1 4.2-6.9-1.1-1.1-6.6 4.4-2 2.6.5.5-13.1 13.5-2.7-2.8-3 3.1c.2 1.5-.3 3.1-1.4 4.3s-2.7 1.7-4.1 1.5L0 42.336l7.4 7.7 13.2-13.7c-.2-1.5.3-3.1 1.5-4.3 1.1-1.2 2.7-1.7 4.1-1.5l3-3.1-2.7-2.8zm-1.2 34.8c1.9 2 5 2 6.9 0 1-1 1.4-2.3 1.4-3.6s-.5-2.6-1.4-3.6l-14.8-15.2-1.4 1.5 2.7 2.8-1.2 1.1-3 3.1-.4.4-.6-.1c-.4 0-.9 0-1.3.1zm-19.7-42.9c-2.7-2.8-6.6-3.7-10-2.8l5.9 6-1.5 5.9-5.8 1.6-5.8-6c-.9 3.6 0 7.5 2.7 10.3s6.6 3.7 10.1 2.7l.2.2 2.7 2.8c.1-.3.1-.6.1-.9v-.5l-.2-.4 4.5-4.7.8.9 1.8 1.9 1.4-1.5-4.3-4.6c1.1-3.7.3-7.9-2.6-10.9z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/TrafficManagerDisabled.svg b/src/main/webapp/img/lib/mscae/TrafficManagerDisabled.svg index 1a3d6e5674cb93f62a259fa0ded6a8abd1754a32..c83f385a05cabce367860ddf9753f3ca529fd992 100644 --- a/src/main/webapp/img/lib/mscae/TrafficManagerDisabled.svg +++ b/src/main/webapp/img/lib/mscae/TrafficManagerDisabled.svg @@ -1,15 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<polygon fill="#804998" points="50,35.5 50,14.588 35.368,0 14.662,0 0,15.029 0,35.426 14.632,50 35.368,50 "/> -<path opacity="0.8" fill="#FFFFFF" enable-background="new " d="M34.538,2h-19.05L2,15.827v18.765L15.462,48h19.077L48,34.66 - V15.421L34.538,2z M33.403,45.24h-0.152l-11.28-11.446l2.382-2.662h-8.177v8.382l2.677-2.882l8.868,8.608H16.602L4.76,33.446V16.95 - l3.322-3.406l8.829,7.955l-5.029,5.221h16.059V10.765L22.691,16l-8.885-8.323l2.846-2.917h16.745L45.24,16.567v14.745l-5.622-5.298 - l4.118-3.706H32.353v10.75l3.72-3.691l6.368,6.915L33.403,45.24z"/> -<polygon opacity="0.2" fill="#FFFFFF" enable-background="new " points="42.896,7.506 35.368,0 14.662,0 0,15.029 0,35.427 - 7.503,42.899 "/> -<circle fill="#7A7A7A" cx="8" cy="42" r="8"/> -<rect x="3" y="41" fill="#FFFFFF" width="10" height="2"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path fill="#804998" d="M50 35.5V14.588L35.368 0H14.662L0 15.03v20.397L14.632 50h20.736z"/><g fill="#fff"><path opacity=".8" d="M34.538 2h-19.05L2 15.827v18.765L15.462 48H34.54L48 34.66V15.42L34.538 2zm-1.135 43.24h-.152L21.97 33.794l2.382-2.662h-8.177v8.382l2.677-2.882 8.868 8.608h-11.12L4.76 33.446V16.95l3.322-3.406 8.83 7.955-5.03 5.22h16.06V10.765L22.69 16l-8.885-8.323 2.846-2.917h16.745L45.24 16.567v14.745l-5.622-5.298 4.118-3.706H32.353v10.75l3.72-3.69 6.368 6.915-9.038 8.958z"/><path opacity=".2" d="M42.896 7.506L35.368 0H14.662L0 15.03v20.398L7.503 42.9z"/></g><circle fill="#7a7a7a" cx="8" cy="42" r="8"/><path fill="#fff" d="M3 41h10v2H3z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/TrafficManagerEnabled.svg b/src/main/webapp/img/lib/mscae/TrafficManagerEnabled.svg index 734582883f9cba9d1f4212cb05149095eca24db2..6dfbbce6d836ea833a1bea7be23d5f5421c57b3c 100644 --- a/src/main/webapp/img/lib/mscae/TrafficManagerEnabled.svg +++ b/src/main/webapp/img/lib/mscae/TrafficManagerEnabled.svg @@ -1,76 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="50" - viewBox="0 0 50 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="TrafficManagerEnabled.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata1222"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs1220" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview1218" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="25" - inkscape:cy="25" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<polygon - points="35.368,0 14.662,0 0,15.029 0,35.426 14.632,50 35.368,50 50,35.5 50,14.588 " - id="polygon1207" - style="fill:#804998" /> -<path - enable-background="new " - d="M 34.538,2 H 15.488 L 2,15.827 V 34.592 L 15.462,48 H 34.539 L 48,34.66 V 15.421 Z m -1.135,43.24 h -0.152 l -11.28,-11.446 2.382,-2.662 h -8.177 v 8.382 l 2.677,-2.882 8.868,8.608 H 16.602 L 4.76,33.446 V 16.95 l 3.322,-3.406 8.829,7.955 -5.029,5.221 H 27.941 V 10.765 L 22.691,16 13.806,7.677 16.652,4.76 H 33.397 L 45.24,16.567 v 14.745 l -5.622,-5.298 4.118,-3.706 H 32.353 v 10.75 l 3.72,-3.691 6.368,6.915 z" - id="path1209" - inkscape:connector-curvature="0" - style="opacity:0.8;fill:#ffffff" /> -<polygon - enable-background="new " - points="14.662,0 0,15.029 0,35.427 7.503,42.899 42.896,7.506 35.368,0 " - id="polygon1211" - style="opacity:0.2;fill:#ffffff" /> -<circle - cx="8" - cy="42" - r="8" - id="circle1213" - style="fill:#7fba00" /> -<path - d="M 3.989,42.469 3.7,42.156 C 3.625,42.073 3.625,41.942 3.712,41.863 l 0.835,-0.772 c 0.04,-0.036 0.087,-0.055 0.139,-0.055 0.059,0 0.111,0.024 0.15,0.067 l 2.296,2.462 3.951,-5.06 c 0.04,-0.051 0.099,-0.079 0.162,-0.079 0.048,0 0.091,0.016 0.127,0.044 l 0.903,0.697 c 0.044,0.032 0.071,0.079 0.079,0.135 0.004,0.055 -0.008,0.111 -0.044,0.15 l -5.075,6.497 z" - id="path1215" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path d="M35.368 0H14.662L0 15.03v20.397L14.632 50h20.736L50 35.5V14.588z" fill="#804998"/><g fill="#fff"><path d="M34.538 2h-19.05L2 15.827v18.765L15.462 48H34.54L48 34.66V15.42zm-1.135 43.24h-.152L21.97 33.794l2.382-2.662h-8.177v8.382l2.677-2.882 8.868 8.608h-11.12L4.76 33.446V16.95l3.322-3.406 8.83 7.955-5.03 5.22h16.06V10.765L22.69 16l-8.885-8.323 2.846-2.917h16.745L45.24 16.567v14.745l-5.622-5.298 4.118-3.706H32.353v10.75l3.72-3.69 6.368 6.915z" opacity=".8"/><path d="M14.662 0L0 15.03v20.398L7.503 42.9 42.896 7.506 35.368 0z" opacity=".2"/></g><circle cx="8" cy="42" r="8" fill="#7fba00"/><path d="M3.99 42.47l-.29-.313c-.075-.083-.075-.214.012-.293l.835-.772c.04-.036.087-.055.14-.055.06 0 .11.024.15.067l2.296 2.462 3.95-5.06c.04-.05.1-.08.162-.08.048 0 .09.016.127.044l.903.697c.044.032.07.08.08.135s-.008.11-.044.15L7.235 45.95z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Traffic_Manager.svg b/src/main/webapp/img/lib/mscae/Traffic_Manager.svg index 6d521723b208d12ff15119efe0f484ca636177c7..6355507960b87d092f69cdf28efbcf29edf596b6 100644 --- a/src/main/webapp/img/lib/mscae/Traffic_Manager.svg +++ b/src/main/webapp/img/lib/mscae/Traffic_Manager.svg @@ -1,10 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<polygon fill="#804998" points="50,35.5 50,14.588 35.368,0 14.662,0 0,15.029 0,35.426 14.632,50 35.368,50 "/> -<path opacity="0.8" fill="#FFFFFF" d="M34.538,2h-19.05L2,15.827v18.765L15.462,48h19.077L48,34.66V15.421L34.538,2z M33.403,45.24 - h-0.152l-11.28-11.446l2.382-2.662h-8.177v8.382l2.677-2.882l8.868,8.608H16.602L4.76,33.446V16.95l3.322-3.406l8.829,7.955 - l-5.029,5.221h16.059V10.765L22.691,16l-8.885-8.323l2.846-2.917h16.745L45.24,16.567v14.745l-5.622-5.298l4.118-3.706H32.353v10.75 - l3.72-3.691l6.368,6.915L33.403,45.24z"/> -<polygon opacity="0.2" fill="#FFFFFF" points="42.896,7.506 35.368,0 14.662,0 0,15.029 0,35.427 7.503,42.899 "/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path fill="#804998" d="M50 35.5V14.588L35.368 0H14.662L0 15.03v20.397L14.632 50h20.736z"/><g fill="#fff"><path opacity=".8" d="M34.538 2h-19.05L2 15.827v18.765L15.462 48H34.54L48 34.66V15.42L34.538 2zm-1.135 43.24h-.152L21.97 33.794l2.382-2.662h-8.177v8.382l2.677-2.882 8.868 8.608h-11.12L4.76 33.446V16.95l3.322-3.406 8.83 7.955-5.03 5.22h16.06V10.765L22.69 16l-8.885-8.323 2.846-2.917h16.745L45.24 16.567v14.745l-5.622-5.298 4.118-3.706H32.353v10.75l3.72-3.69 6.368 6.915-9.038 8.958z"/><path opacity=".2" d="M42.896 7.506L35.368 0H14.662L0 15.03v20.398L7.503 42.9z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Two_User_Icon.svg b/src/main/webapp/img/lib/mscae/Two_User_Icon.svg new file mode 100644 index 0000000000000000000000000000000000000000..ae2767b1a78ebd51a328f622e47907dfa20f57ae --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Two_User_Icon.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="26.8" height="26.6"><path d="M24.1 5.5c0 3-2.4 5.5-5.5 5.5-3 0-5.5-2.4-5.5-5.5 0-3 2.4-5.5 5.5-5.5 3 0 5.5 2.4 5.5 5.5m-1.5 7.3l-4 5.6-4-5.6h-4.1v13.8h16.3V12.8zM7.7 14.6a3.12 3.12 0 0 1-3.1 3.1 3.12 3.12 0 0 1-3.1-3.1 3.12 3.12 0 0 1 3.1-3.1 3.12 3.12 0 0 1 3.1 3.1m-.9 4.3L4.6 22l-2.3-3.1H0v7.7h9.2v-7.7z" fill="#59b4d9"/><path d="M13.1 5.5c0 3 2.4 5.4 5.3 5.5L19.8.2c-.4-.1-.8-.1-1.2-.1-3-.1-5.5 2.3-5.5 5.4m1.5 7.3h-4.1v13.8h6l1.2-9.5zM1.5 14.6a3.12 3.12 0 0 0 3.1 3.1h.3l.8-5.9c-.3-.1-.7-.2-1.1-.2-1.7 0-3.1 1.3-3.1 3" opacity=".2" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Unidentified_Feature_Object.svg b/src/main/webapp/img/lib/mscae/Unidentified_Feature_Object.svg index 773b59df320a98e49bd6126fbbe1fb6a42e72dd0..5377595ddd0ecfdf81e9eaba48f0d5e45d40debe 100644 --- a/src/main/webapp/img/lib/mscae/Unidentified_Feature_Object.svg +++ b/src/main/webapp/img/lib/mscae/Unidentified_Feature_Object.svg @@ -1,134 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="49.168758" - viewBox="0 0 50 49.168758" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Unidentified feature object_COLOR.svg"><metadata - id="metadata49"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs47" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview45" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="16.059062" - inkscape:cx="25" - inkscape:cy="24.168999" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 23.614,18.374758 C 23.469,18.362758 23.366,18.311758 23.21,18.311758 14.918,18.311758 12.049,21.608758 12.049,21.608758 20.179,26.547758 23.21,37.017758 23.21,37.017758 23.21,37.017758 23.369,36.645758 23.614,36.041758 23.863,36.645758 24.023,37.017758 24.023,37.017758 24.023,37.017758 27.054,26.547758 35.184,21.608758 35.184,21.608758 32.313,18.311758 24.023,18.311758 23.868,18.311758 23.762,18.362758 23.614,18.374758" - id="path3" - inkscape:connector-curvature="0" - style="fill:#e5e5e5" /><path - d="M 47.111,41.045758 C 47.225,40.959758 47.291,40.910758 47.291,40.910758 47.291,40.910758 45.777,38.499758 42.412,35.896758 40.459,34.386758 37.89,32.810758 34.621,31.603758 L 34.621,31.543758 C 31.344,30.415758 27.613,29.769758 23.642,29.769758 19.675,29.769758 15.942,30.415758 12.666,31.543758 L 12.666,31.603758 C 9.399,32.810758 6.83,34.386758 4.877,35.896758 1.513,38.499758 0,40.910758 0,40.910758 0,40.910758 0.07,40.963758 0.201,41.061758 0.343,41.166758 0.564,41.325758 0.85,41.522758 3.429,43.286758 11.781,49.168758 23.642,49.168758 35.507,49.168758 43.859,43.286758 46.437,41.522758 46.742,41.314758 46.966,41.151758 47.111,41.045758" - id="path5" - inkscape:connector-curvature="0" - style="fill:#3999c6" /><path - enable-background="new " - d="M 38.025,35.011758 C 38.025,37.051758 31.552,38.707758 23.57,38.707758 15.584,38.707758 9.115,37.051758 9.115,35.011758 9.115,32.964758 15.584,31.306758 23.57,31.306758 31.552,31.306758 38.025,32.964758 38.025,35.011758" - id="path7" - inkscape:connector-curvature="0" - style="opacity:0.5;fill:#1e1e1e" /><path - d="M 23.521,31.306758 23.521,31.306758 23.506,31.306758 23.492,31.306758 C 15.492,31.539758 9.165,33.083758 8.956,34.886758 8.948,34.394758 8.942,33.912758 8.934,33.442758 8.909,31.591758 15.338,29.994758 23.492,29.760758 L 23.506,29.760758 23.521,29.760758 C 31.67,29.994758 38.102,31.591758 38.077,33.442758 38.067,33.912758 38.061,34.394758 38.055,34.886758 37.845,33.083758 31.517,31.539758 23.521,31.306758" - id="path9" - inkscape:connector-curvature="0" - style="fill:#7a7a7a" /><path - d="M 20.716,34.060758 C 20.414,33.998758 13.365,32.603758 11.82,26.619758 11.754,26.362758 11.859,26.088758 12.094,25.970758 12.318,25.825758 12.608,25.854758 12.795,26.035758 12.836,26.070758 16.463,29.543758 19.451,29.583758 19.697,29.575758 19.91,29.733758 20,29.941758 L 21.367,33.256758 C 21.455,33.446758 21.416,33.676758 21.283,33.855758 21.152,34.020758 20.929,34.100758 20.716,34.060758" - id="path11" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><path - d="M 33.392,25.630758 C 33.365,25.665758 30.405,29.302758 27.639,29.694758 27.412,29.713758 27.238,29.880758 27.186,30.097758 L 26.307,33.317758 C 26.248,33.520758 26.305,33.726758 26.452,33.860758 26.605,34.003758 26.816,34.053758 27.002,33.992758 27.273,33.908758 33.645,31.768758 34.363,26.033758 34.402,25.796758 34.262,25.562758 34.031,25.470758 33.812,25.366758 33.55,25.438758 33.392,25.630758" - id="path13" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><polygon - points="27.644,37.264 19.433,37.264 20.348,30.924 26.729,30.924 " - id="polygon15" - style="fill:#1e1e1e" - transform="translate(0,-2.4190656e-4)" /><path - d="M 23.197,37.481758 C 20.946,28.510758 17.651,25.274758 13.613,16.567758 9.691,8.1027581 15.972,-0.1732419 24.035,0.0027581 32.088,0.1897581 37.996,8.7377581 33.691,17.012758 29.27,25.543758 25.845,28.624758 23.197,37.481758" - id="path17" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><path - d="M 20.342,14.433758 C 20.325,15.179758 19.975,15.764758 19.561,15.759758 19.139,15.740758 18.823,15.144758 18.829,14.398758 18.846,13.661758 19.205,13.073758 19.61,13.085758 20.031,13.097758 20.355,13.705758 20.342,14.433758" - id="path19" - inkscape:connector-curvature="0" - style="fill:#1e1e1e" /><path - d="M 28.346,14.636758 C 28.323,15.363758 27.978,15.958758 27.561,15.948758 27.142,15.941758 26.821,15.338758 26.844,14.596758 26.85,13.859758 27.198,13.269758 27.623,13.277758 28.037,13.286758 28.364,13.890758 28.346,14.636758" - id="path21" - inkscape:connector-curvature="0" - style="fill:#1e1e1e" /><path - d="M 27.645,25.825758 C 25.292,28.483758 24.15,32.085758 23.614,34.516758 23.076,32.085758 21.933,28.483758 19.58,25.825758 19.58,25.825758 15.795,21.798758 12.129,21.762758 12.129,21.762758 22.092,31.233758 23.049,37.183758 L 23.169,37.183758 24.061,37.183758 24.18,37.183758 C 25.139,31.233758 35.097,21.762758 35.097,21.762758 31.429,21.798758 27.645,25.825758 27.645,25.825758 Z" - id="path23" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /><path - d="M 23.521,36.884758 23.521,36.884758 23.492,36.884758 C 15.492,36.655758 9.165,35.621758 8.956,33.817758 8.948,34.311758 8.942,34.791758 8.934,35.265758 8.909,37.114758 15.338,38.708758 23.492,38.944758 L 23.492,38.947758 C 23.496,38.947758 23.502,38.944758 23.506,38.944758 23.51,38.944758 23.514,38.947758 23.521,38.947758 L 23.521,38.944758 C 31.67,38.708758 38.102,37.114758 38.077,35.265758 38.067,34.791758 38.061,34.311758 38.055,33.817758 37.845,35.621758 31.517,36.655758 23.521,36.884758" - id="path25" - inkscape:connector-curvature="0" - style="fill:#e5e5e5" /><path - d="M 43.49,6.9047581 C 39.894,6.9047581 36.979,9.8187581 36.979,13.414758 36.979,14.689758 37.128,15.472758 37.762,16.476758 L 35.623,18.243758 39.135,18.243758 C 40.289,19.285758 41.812,19.924758 43.49,19.924758 47.086,19.924758 50,17.008758 50,13.414758 50,9.8187581 47.086,6.9047581 43.49,6.9047581" - id="path27" - inkscape:connector-curvature="0" - style="fill:#b8d432" /><path - d="M 46.812,10.701758 C 46.812,11.679758 46.324,12.564758 45.347,13.359758 44.939,13.687758 44.667,13.956758 44.529,14.166758 44.392,14.377758 44.322,14.655758 44.322,15.001758 L 44.322,15.387758 42.498,15.387758 42.498,14.798758 C 42.498,13.951758 42.836,13.243758 43.51,12.672758 43.93,12.326758 44.217,12.041758 44.369,11.817758 44.519,11.592758 44.596,11.321758 44.596,11.004758 44.596,10.709758 44.489,10.468758 44.27,10.281758 44.052,10.093758 43.773,9.9997581 43.431,9.9997581 42.663,9.9997581 41.933,10.306758 41.236,10.918758 L 41.236,8.8077581 C 41.957,8.3777581 42.765,8.1617581 43.664,8.1617581 44.65,8.1617581 45.422,8.3877581 45.978,8.8397581 46.535,9.2907581 46.812,9.9107581 46.812,10.701758 Z" - id="path29" - inkscape:connector-curvature="0" - style="fill:#ffffff" /><path - d="M 44.744,17.387758 C 44.744,17.724758 44.623,18.002758 44.383,18.222758 44.143,18.442758 43.834,18.551758 43.461,18.551758 43.106,18.551758 42.799,18.440758 42.541,18.218758 42.283,17.996758 42.154,17.719758 42.154,17.387758 42.154,17.055758 42.279,16.780758 42.527,16.563758 42.775,16.345758 43.086,16.237758 43.461,16.237758 43.83,16.237758 44.137,16.345758 44.379,16.563758 44.623,16.779758 44.744,17.055758 44.744,17.387758 Z" - id="path31" - inkscape:connector-curvature="0" - style="fill:#ffffff" /><path - enable-background="new " - d="M 23.643,49.168758 C 35.508,49.168758 43.86,43.286758 46.438,41.522758 46.743,41.314758 46.967,41.151758 47.112,41.045758 42.417,42.938758 33.514,46.374758 23.6,46.374758 13.688,46.374758 4.886,43.003758 0.202,41.061758 0.344,41.166758 0.565,41.325758 0.851,41.522758 3.429,43.286758 11.781,49.168758 23.643,49.168758" - id="path33" - inkscape:connector-curvature="0" - style="opacity:0.5;fill:#1e1e1e" /><path - enable-background="new " - d="M 30.983,18.228758 C 30.996,17.580758 16.591,17.258758 16.571,17.904758 16.562,18.356758 18.208,20.422758 20.551,21.668758 21.429,21.427758 22.496,21.352758 23.603,21.513758 24.561,21.653758 25.39,21.945758 26.03,22.321758 28.942,21.410758 30.976,18.756758 30.983,18.228758 Z" - id="path35" - inkscape:connector-curvature="0" - style="opacity:0.85;fill:#3e3e3e" /><path - d="M 24.415,18.920758 C 23.694,18.875758 23.645,19.431758 23.674,20.098758 23.706,20.765758 23.756,21.013758 23.458,21.018758 23.164,21.021758 22.736,20.852758 23.108,20.114758 23.486,19.376758 23.137,18.396758 21.649,19.266758 20.475,19.952758 20.622,21.150758 20.736,21.628758 21.578,21.424758 22.57,21.362758 23.604,21.513758 24.562,21.653758 25.391,21.945758 26.031,22.321758 26.142,22.286758 26.242,22.234758 26.351,22.194758 26.361,22.169758 26.371,22.152758 26.382,22.127758 27.207,20.164758 25.137,18.960758 24.415,18.920758 Z" - id="path37" - inkscape:connector-curvature="0" - style="fill:#1e1e1e" /><path - d="M 25.247,19.034758 C 25.984,19.029758 26.591,18.436758 26.669,17.681758 25.751,17.636758 24.762,17.601758 23.768,17.579758 23.799,18.392758 24.449,19.041758 25.247,19.034758 Z" - id="path39" - inkscape:connector-curvature="0" - style="fill:#ffffff" /><path - d="M 21.998,18.984758 C 22.794,19.016758 23.463,18.384758 23.519,17.574758 22.761,17.559758 22.007,17.550758 21.29,17.550758 21.059,17.550758 20.838,17.552758 20.615,17.554758 20.653,18.328758 21.249,18.956758 21.998,18.984758 Z" - id="path41" - inkscape:connector-curvature="0" - style="fill:#ffffff" /><path - d="M 20.552,21.667758 C 21.576,22.211758 22.731,22.601758 23.941,22.627758 24.674,22.644758 25.374,22.525758 26.031,22.320758 25.391,21.944758 24.562,21.652758 23.604,21.512758 22.496,21.351758 21.429,21.427758 20.552,21.667758 Z" - id="path43" - inkscape:connector-curvature="0" - style="fill:#dd5900" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="49.169"><path d="M23.614 18.375c-.145-.012-.248-.063-.404-.063-8.292 0-11.16 3.297-11.16 3.297 8.13 4.94 11.16 15.41 11.16 15.41l.404-.976.41.976s3.03-10.47 11.16-15.41c0 0-2.87-3.297-11.16-3.297-.155 0-.26.05-.41.063" fill="#e5e5e5"/><path d="M47.11 41.046l.18-.135s-1.514-2.41-4.88-5.014c-1.953-1.5-4.522-3.086-7.79-4.293v-.06c-3.277-1.128-7.008-1.774-10.98-1.774s-7.7.646-10.976 1.774v.06C9.4 32.81 6.83 34.387 4.877 35.897 1.513 38.5 0 40.91 0 40.91l.2.15a24.54 24.54 0 0 0 .649.461c2.58 1.764 10.93 7.646 22.792 7.646s20.217-5.882 22.795-7.646a24.05 24.05 0 0 0 .674-.477" fill="#3999c6"/><path d="M38.025 35.012c0 2.04-6.473 3.696-14.455 3.696S9.115 37.052 9.115 35.012c0-2.047 6.47-3.705 14.455-3.705s14.455 1.658 14.455 3.705" opacity=".5" fill="#1e1e1e"/><path d="M23.52 31.307h-.03c-8 .233-14.327 1.777-14.536 3.58l-.022-1.444c-.025-1.85 6.404-3.448 14.558-3.682h.03c8.15.234 14.58 1.83 14.556 3.682l-.022 1.444c-.2-1.803-6.538-3.347-14.534-3.58" fill="#7a7a7a"/><path d="M20.716 34.06c-.302-.062-7.35-1.457-8.896-7.44-.066-.257.04-.53.274-.65.224-.145.514-.116.7.065.04.035 3.668 3.508 6.656 3.548a.59.59 0 0 1 .55.358l1.367 3.315c.088.2.05.42-.084.6a.59.59 0 0 1-.567.205m12.676-8.43c-.027.035-2.987 3.672-5.753 4.064-.227.02-.4.186-.453.403l-.88 3.22c-.06.203-.002.4.145.543.153.143.364.193.55.132.27-.084 6.643-2.224 7.36-7.96a.52.52 0 0 0-.332-.563c-.22-.104-.48-.032-.64.16" fill="#59b4d9"/><path d="M27.644 37.264h-8.21l.915-6.34h6.38z" fill="#1e1e1e"/><path d="M23.197 37.482c-2.25-8.97-5.546-12.207-9.584-20.914C9.69 8.103 15.972-.173 24.035.003c8.053.187 13.96 8.735 9.656 17-4.42 8.53-7.846 11.612-10.494 20.47" fill="#59b4d9"/><path d="M20.342 14.434c-.017.746-.367 1.33-.78 1.326-.422-.02-.738-.615-.732-1.36.017-.737.376-1.325.78-1.313.42.012.745.62.732 1.348m8.004.202c-.023.727-.368 1.322-.785 1.312s-.74-.6-.717-1.352c.006-.737.354-1.327.78-1.32.414.01.74.613.723 1.36" fill="#1e1e1e"/><path d="M27.645 25.826c-2.353 2.658-3.495 6.26-4.03 8.69-.538-2.43-1.68-6.033-4.034-8.69 0 0-3.785-4.027-7.45-4.063 0 0 9.963 9.47 10.92 15.42h1.13c.96-5.95 10.917-15.42 10.917-15.42-3.668.036-7.452 4.063-7.452 4.063z" fill="#a0a1a2"/><path d="M23.52 36.885h-.03c-8-.23-14.327-1.263-14.536-3.067l-.022 1.448c-.025 1.85 6.404 3.443 14.558 3.68v.003c.018-.003.022 0 .03 0v-.003c8.15-.236 14.58-1.83 14.556-3.68l-.022-1.448c-.2 1.804-6.538 2.838-14.534 3.067" fill="#e5e5e5"/><path d="M43.5 6.905a6.51 6.51 0 0 0-6.511 6.51c0 1.275.15 2.058.783 3.062l-2.14 1.767h3.512c1.154 1.042 2.677 1.68 4.355 1.68a6.51 6.51 0 0 0 0-13.02" fill="#b8d432"/><path d="M46.812 10.702c0 .978-.488 1.863-1.465 2.658-.408.328-.68.597-.818.807s-.207.5-.207.835v.386h-1.824v-.6c0-.847.338-1.555 1.012-2.126.42-.346.707-.63.86-.855s.227-.496.227-.813c0-.295-.107-.536-.326-.723s-.498-.28-.84-.28c-.768 0-1.498.307-2.195.92V8.8c.72-.43 1.53-.646 2.428-.646.986 0 1.758.226 2.314.678s.834 1.07.834 1.862zm-2.068 6.686c0 .337-.12.615-.36.835s-.55.33-.922.33a1.36 1.36 0 0 1-.92-.333 1.05 1.05 0 0 1-.387-.831 1.05 1.05 0 0 1 .373-.824c.248-.218.56-.326.934-.326s.676.108.918.326a1.06 1.06 0 0 1 .365.824z" fill="#fff"/><path d="M23.643 49.17c11.865 0 20.217-5.882 22.795-7.646a24.05 24.05 0 0 0 .674-.477c-4.695 1.893-13.598 5.33-23.512 5.33S4.886 43.004.202 41.062a24.54 24.54 0 0 0 .649.461c2.578 1.764 10.93 7.646 22.792 7.646" opacity=".5" fill="#1e1e1e"/><path d="M30.983 18.23c.013-.648-14.392-.97-14.412-.324-.01.452 1.637 2.518 3.98 3.764.878-.24 1.945-.316 3.052-.155.958.14 1.787.432 2.427.808 2.912-.91 4.946-3.565 4.953-4.093z" opacity=".85" fill="#3e3e3e"/><path d="M24.415 18.92c-.72-.045-.77.51-.74 1.178s.082.915-.216.92-.722-.166-.35-.904c.378-.738.03-1.718-1.46-.848-1.174.686-1.027 1.884-.913 2.362a7.63 7.63 0 0 1 2.868-.115c.958.14 1.787.432 2.427.808.11-.035.21-.087.32-.127.01-.025.02-.042.03-.067.825-1.963-1.245-3.167-1.967-3.207z" fill="#1e1e1e"/><path d="M25.247 19.035c.737-.005 1.344-.598 1.422-1.353l-2.9-.102c.03.813.68 1.462 1.48 1.455zm-3.25-.05c.796.032 1.465-.6 1.52-1.4l-2.23-.024-.675.004c.038.774.634 1.402 1.383 1.43z" fill="#fff"/><path d="M20.552 21.668c1.024.544 2.18.934 3.39.96a6.49 6.49 0 0 0 2.09-.307c-.64-.376-1.47-.668-2.427-.808-1.108-.16-2.175-.085-3.052.155z" fill="#dd5900"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/UserDefinedRoute.svg b/src/main/webapp/img/lib/mscae/UserDefinedRoute.svg index 1dd69d2cee083b0107833a5ae84afec3e624039e..09a4097aa1d0fbe1fcac66b2e1c346256939d0ae 100644 --- a/src/main/webapp/img/lib/mscae/UserDefinedRoute.svg +++ b/src/main/webapp/img/lib/mscae/UserDefinedRoute.svg @@ -1,16 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" style="enable-background:new 0 0 50 50;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#59B4D9;} - .st1{opacity:0.2;fill:#FFFFFF;enable-background:new ;} - .st2{fill:#A0A1A2;} -</style> -<path class="st0" d="M43,15.9c0,4.9-3.9,8.8-8.8,8.8s-8.8-3.9-8.8-8.8c0.1-4.9,4-8.8,8.8-8.8C39.1,7.1,43,11,43,15.9"/> -<polygon class="st0" points="40.6,27.8 34.2,36.8 27.8,27.8 18.5,27.8 18.5,50 50,50 50,27.8 "/> -<path class="st1" d="M25.5,15.9c0,4.8,3.9,8.7,8.6,8.8l2.2-17.3c-0.7-0.3-1.4-0.3-2.1-0.3C29.4,7.1,25.5,11,25.5,15.9"/> -<polygon class="st1" points="27.8,27.8 18.5,27.8 18.5,50 30.9,50 32.8,34.7 "/> -<polygon class="st2" points="5.6,18.4 10.5,23.6 6.5,23.6 0,16.9 6.5,10.2 10.5,10.2 5.6,15.3 20,15.3 20,18.4 "/> -<polygon class="st2" points="20,0 20,18.4 16.9,18.4 16.9,0 "/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path d="M43 15.9a8.75 8.75 0 0 1-8.8 8.8 8.75 8.75 0 0 1-8.8-8.8c.1-4.9 4-8.8 8.8-8.8a8.75 8.75 0 0 1 8.8 8.8m-2.4 11.9l-6.4 9-6.4-9h-9.3V50H50V27.8z" fill="#59b4d9"/><path d="M25.5 15.9c0 4.8 3.9 8.7 8.6 8.8l2.2-17.3c-.7-.3-1.4-.3-2.1-.3-4.8 0-8.7 3.9-8.7 8.8m2.3 11.9h-9.3V50h12.4l1.9-15.3z" opacity=".2" enable-background="new" fill="#fff"/><g fill="#a0a1a2"><path d="M5.6 18.4l4.9 5.2h-4L0 16.9l6.5-6.7h4l-4.9 5.1H20v3.1z"/><path d="M20 0v18.4h-3.1V0z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/User_Health_Icon.svg b/src/main/webapp/img/lib/mscae/User_Health_Icon.svg new file mode 100644 index 0000000000000000000000000000000000000000..64c18e9d0e6254a36c5111b61702d9a1be9771f6 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/User_Health_Icon.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="44.688" height="48.9"><path d="M22.9 8.4a8.4 8.4 0 0 1-12.6 7.275A8.4 8.4 0 0 1 14.5 0a8.4 8.4 0 0 1 8.4 8.4m-2.464 10.5L14.5 27.416 8.563 18.9H0v21h29v-21z" fill="#59b4d9"/><g fill="#fff"><path d="M38.824 35.9l-4.427-4.414-7.785-3-2.463 3.806-3.266 2.62h-4.006l1.24 2.548h4.76c3.458 5.392 8 9.7 8 9.7s4.53-2.997 8-8.258h1.592c.605-.83 1.08-1.746 1.408-2.72z"/><path d="M44.688 36.9H39.78l-1.24 2.548h4.867z"/></g><path d="M36.518 24.9c-2.42 0-4.494 1.52-5.518 3.718-1.024-2.197-3.098-3.718-5.518-3.718-3.43 0-6.208 3.022-6.208 6.75 0 .833.123 1.673.34 2.5H16.48l.822 1.644h6.402l3.565-5.51 4.142 8.56 3.93-5.5 2.9 3.544h3.39c.68-1.646 1.1-3.408 1.1-5.25-.002-3.728-2.78-6.75-6.2-6.75z" fill="#dd5900"/><path d="M43.877 38.544H37.46l-2.032-2.483-4.3 6.007-4.077-8.425-2.463 3.806h-3.69C24.13 43.623 31 48.9 31 48.9s5.39-3.45 8.862-8.712h3.192z" fill="#ba141a"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/User_Privacy.svg b/src/main/webapp/img/lib/mscae/User_Privacy.svg new file mode 100644 index 0000000000000000000000000000000000000000..c670f486b102020362db37c9c0abafa9a9741f81 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/User_Privacy.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="35.5" height="49.9"><path d="M22.47 7.9c0 4.363-3.568 7.9-7.97 7.9s-7.968-3.537-7.968-7.9S10.1 0 14.5 0s7.97 3.537 7.97 7.9m-2.033 11L14.5 27l-5.936-8.1H.001v20h29v-20z" fill="#3999c6"/><g fill="#fff"><path d="M6.532 7.9c0 4.298 3.463 7.787 7.773 7.89l2-15.578A7.95 7.95 0 0 0 14.5 0c-4.4 0-7.968 3.537-7.968 7.9m2.034 11H0v20h11.37l1.793-13.716z" opacity=".2"/><path d="M29 38.9V25.582c-2.117-1.19-2.5-2.682-2.5-2.682s-1 4.12-9 4.12h-1V38.9z" opacity=".4"/></g><path d="M32.814 27.88c-5.41-.608-6.314-2.98-6.314-2.98s-1.217 3.12-9 3.12v12.805c0 1.548.845 2.998 2.015 4.266C22.168 47.966 26.5 49.9 26.5 49.9s9-4.014 9-9.074V28.02c-1 0-1.89-.052-2.686-.14z" fill="#7fba00"/><path d="M28.726 33.17l4.088-5.29c-5.41-.608-6.314-2.98-6.314-2.98s-1.217 3.12-9 3.12v12.805c0 1.548.845 2.998 2.015 4.266l3.022-3.91z" opacity=".4" fill="#b8d432"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/User_Resource.svg b/src/main/webapp/img/lib/mscae/User_Resource.svg new file mode 100644 index 0000000000000000000000000000000000000000..bed7eec79622955297261579299dc20514c665d3 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/User_Resource.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="48.2" height="49.7"><path d="M28.4 10.2c0 5.6-4.6 10.2-10.2 10.2A10.18 10.18 0 0 1 8 10.2C8 4.6 12.6 0 18.2 0a10.18 10.18 0 0 1 10.2 10.2m-2.7 13.7l-7.5 10.5-7.4-10.5H0v25.8h36.5V23.9z" fill="#b8d432"/><path d="M8 10.2c0 5.6 4.4 10.1 10 10.2L20.6.3c-.7-.2-1.5-.3-2.3-.3C12.6 0 8 4.6 8 10.2m2.8 13.7H0v25.8h14.3l2.3-17.6z" opacity=".2" fill="#fff"/><path d="M37.7 37.1h-.1l-9-5.2c-.1 0-.1-.1-.1-.2s.1-.2.1-.2l9-5.2h.3l9 5.2c.1 0 .1.1.1.2s-.1.2-.1.2l-9 5.2c-.1-.1-.2 0-.2 0" fill="#3999c6"/><path d="M36.4 49.7h-.1l-9-5.2c-.1 0-.1-.1-.1-.2V33.8c0-.1.1-.2.1-.2h.3l9 5.2c.1.1.1.1.1.2v10.4c0 .1-.1.2-.1.2-.1.1-.2.1-.2.1m2.5 0h-.1c-.1 0-.1-.1-.1-.2V39.1c0-.1.1-.2.1-.2l9-5.2h.3c.1 0 .1.1.1.2v10.4c0 .1-.1.2-.1.2l-9 5.2h-.2" fill="#59b4d9"/><path d="M38.9 49.7h-.1c-.1 0-.1-.1-.1-.2V39.1c0-.1.1-.2.1-.2l9-5.2h.3c.1 0 .1.1.1.2v10.4c0 .1-.1.2-.1.2l-9 5.2h-.2" opacity=".5" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/VMScale.svg b/src/main/webapp/img/lib/mscae/VMScale.svg index 1ca4cfa1801ca7328a92ceddcd27d022e064caa4..37b57c75c54d464f09741a2c840e3a6256fa6e25 100644 --- a/src/main/webapp/img/lib/mscae/VMScale.svg +++ b/src/main/webapp/img/lib/mscae/VMScale.svg @@ -1,38 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="-454 256 50 50" style="enable-background:new -454 256 50 50;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#7A7A7A;} - .st1{fill:#A0A1A2;} - .st2{opacity:0.2;fill:#FFFFFF;enable-background:new ;} - .st3{fill:#59B4D9;} - .st4{fill:#B8D432;} - .st5{fill:#FFFFFF;} - .st6{opacity:0.7;fill:#FFFFFF;enable-background:new ;} - .st7{opacity:0.4;fill:#FFFFFF;enable-background:new ;} - .st8{fill:#0F0F0F;} -</style> -<path class="st0" d="M-429.3,298.7h-0.9h-9h-0.5c1.2,4.4-0.4,5-7.7,5v2.3h9.3h6.8h8.8v-2.3C-429.9,303.7-430.6,303.1-429.3,298.7"/> -<path class="st1" d="M-418.3,271h-33.7c-1.1,0-2.1,1-2.1,2.2v23.4c0,1.1,0.9,2.1,2.1,2.1h33.7c1.1,0,2.3-1,2.3-2.1v-23.4 - C-416,272-417.1,271-418.3,271"/> -<path class="st2" d="M-418.3,271C-418.3,271-418.3,271-418.3,271l-33.7,0c-1.1,0-2.1,1-2.1,2.2v23.4c0,1.1,0.9,2.1,2.1,2.1h0.8 - L-418.3,271z"/> -<polygon class="st3" points="-418.9,295.8 -451.1,295.8 -451.1,273.9 -418.9,273.8 "/> -<rect x="-447.4" y="303.7" class="st1" width="24.9" height="2.3"/> -<path class="st4" d="M-434.6,272.5c0,0.3-0.2,0.5-0.5,0.5c-0.3,0-0.5-0.2-0.5-0.5s0.2-0.5,0.5-0.5 - C-434.8,272-434.6,272.2-434.6,272.5"/> -<path class="st5" d="M-434.6,284.2c0,0-0.1,0-0.1,0l-6.7-3.9c-0.1,0-0.1-0.1-0.1-0.2c0-0.1,0-0.1,0.1-0.2l6.7-3.8c0.1,0,0.1,0,0.2,0 - l6.7,3.9c0.1,0,0.1,0.1,0.1,0.2c0,0.1,0,0.1-0.1,0.2l-6.7,3.8C-434.5,284.2-434.5,284.2-434.6,284.2"/> -<path class="st6" d="M-435.5,293.5c0,0-0.1,0-0.1,0l-6.7-3.8c-0.1,0-0.1-0.1-0.1-0.2v-7.7c0-0.1,0-0.1,0.1-0.2c0.1,0,0.1,0,0.2,0 - l6.7,3.8c0.1,0,0.1,0.1,0.1,0.2v7.7c0,0.1,0,0.1-0.1,0.2C-435.5,293.5-435.5,293.5-435.5,293.5"/> -<path class="st7" d="M-433.6,293.5c0,0-0.1,0-0.1,0c-0.1,0-0.1-0.1-0.1-0.2v-7.7c0-0.1,0-0.1,0.1-0.2l6.7-3.8c0.1,0,0.1,0,0.2,0 - c0.1,0,0.1,0.1,0.1,0.2v7.7c0,0.1,0,0.1-0.1,0.2L-433.6,293.5C-433.6,293.5-433.6,293.5-433.6,293.5"/> -<rect x="-432.3" y="256" class="st4" width="6.7" height="5"/> -<rect x="-442.3" y="256" class="st4" width="6.7" height="5"/> -<path class="st4" d="M-409,301h-6.3v5h8c1.8,0,3.3-1.5,3.3-3.3v-5h-5V301z"/> -<rect x="-409" y="287.7" class="st4" width="5" height="6.7"/> -<path class="st4" d="M-449,261h3.3v-5h-5c-1.8,0-3.3,1.5-3.3,3.3v8h5V261z"/> -<rect x="-409" y="277.7" class="st4" width="5" height="6.7"/> -<polygon class="st8" points="-404,256 -419,256 -413.4,261.6 -418.4,266.5 -414.5,270.4 -409.5,265.5 -404,271 "/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="-454 256 50 50"><path d="M-429.3 298.7h-10.4c1.2 4.4-.4 5-7.7 5v2.3h24.9v-2.3c-7.4 0-8.1-.6-6.8-5" fill="#7a7a7a"/><path d="M-418.3 271H-452c-1.1 0-2.1 1-2.1 2.2v23.4c0 1.1.9 2.1 2.1 2.1h33.7c1.1 0 2.3-1 2.3-2.1v-23.4c0-1.2-1.1-2.2-2.3-2.2" fill="#a0a1a2"/><path d="M-418.3 271H-452c-1.1 0-2.1 1-2.1 2.2v23.4c0 1.1.9 2.1 2.1 2.1h.8l32.9-27.7z" opacity=".2" fill="#fff" enable-background="new"/><path d="M-418.9 295.8h-32.2v-21.9l32.2-.1z" fill="#59b4d9"/><path d="M-447.4 303.7h24.9v2.3h-24.9z" fill="#a0a1a2"/><path d="M-434.6 272.5a.47.47 0 1 1-1 0 .47.47 0 1 1 1 0" fill="#b8d432"/><g fill="#fff"><path d="M-434.6 284.2h-.1l-6.7-3.9c-.1 0-.1-.1-.1-.2s0-.1.1-.2l6.7-3.8h.2l6.7 3.9c.1 0 .1.1.1.2s0 .1-.1.2l-6.7 3.8h-.1"/><path d="M-435.5 293.5h-.1l-6.7-3.8c-.1 0-.1-.1-.1-.2v-7.7c0-.1 0-.1.1-.2h.2l6.7 3.8c.1 0 .1.1.1.2v7.7c0 .1 0 .1-.1.2h-.1" opacity=".7" enable-background="new"/><path d="M-433.6 293.5h-.1c-.1 0-.1-.1-.1-.2v-7.7c0-.1 0-.1.1-.2l6.7-3.8h.2c.1 0 .1.1.1.2v7.7c0 .1 0 .1-.1.2l-6.8 3.8" opacity=".4" enable-background="new"/></g><path d="M-432.3 256h6.7v5h-6.7zm-10 0h6.7v5h-6.7zm33.3 45h-6.3v5h8a3.33 3.33 0 0 0 3.3-3.3v-5h-5v3.3zm0-13.3h5v6.7h-5zm-40-26.7h3.3v-5h-5a3.33 3.33 0 0 0-3.3 3.3v8h5V261zm40 16.7h5v6.7h-5z" fill="#b8d432"/><path d="M-404 256h-15l5.6 5.6-5 4.9 3.9 3.9 5-4.9 5.5 5.5z" fill="#0f0f0f"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/VM_Images.svg b/src/main/webapp/img/lib/mscae/VM_Images.svg new file mode 100644 index 0000000000000000000000000000000000000000..de1abb23ccde770a98136b4fe394ce7b79be9c5b --- /dev/null +++ b/src/main/webapp/img/lib/mscae/VM_Images.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="50.001" height="46"><path d="M31 36H19c1.634 5.768-.386 7-10 7v3h32v-3c-9.614 0-11.636-1.23-10-7z" fill="#7a7a7a"/><path d="M46.98 0H2.718C1.214 0 .001 1.325.001 2.805v30.412C.001 34.688 1.214 36 2.718 36H46.98c1.5 0 3.02-1.3 3.02-2.782V2.805C50 1.32 48.48 0 46.98 0" fill="#a0a1a2"/><path d="M47.01.003l-.03-.002H2.717C1.213.001 0 1.325 0 2.806v30.41C0 34.7 1.213 36 2.717 36H3.77z" opacity=".2" fill="#fff"/><path d="M46 4v28H4V4z" fill="#59b4d9"/><path d="M9 42.98L41 43v3H9z" fill="#a0a1a2"/><path d="M25.518 2.095a.71.71 0 0 1-1.065.615.71.71 0 0 1 .355-1.325.71.71 0 0 1 .71.71" fill="#b8d432"/><g fill="#fff"><path d="M25.028 16.802a.27.27 0 0 1-.13-.036l-8.56-4.858c-.08-.046-.128-.13-.128-.22s.05-.175.128-.22l8.508-4.826c.08-.044.176-.044.256 0l8.563 4.86a.25.25 0 0 1 .127.22.25.25 0 0 1-.127.22l-8.505 4.825c-.04.023-.086.036-.132.037"/><path d="M23.798 28.608c-.046.001-.09-.01-.13-.034l-8.534-4.842a.25.25 0 0 1-.133-.221v-9.717c0-.092.05-.175.132-.22a.26.26 0 0 1 .261 0l8.533 4.84c.078.048.125.132.126.223v9.717a.26.26 0 0 1-.126.221c-.04.022-.084.033-.13.034" opacity=".7"/><path d="M26.214 28.608a.28.28 0 0 1-.134-.034c-.078-.047-.125-.13-.125-.22v-9.656c0-.1.05-.174.125-.22l8.533-4.84c.08-.046.177-.046.257 0s.13.128.13.22v9.655a.25.25 0 0 1-.131.221l-8.53 4.842c-.038.023-.082.035-.126.034" opacity=".4"/><path d="M15 6H6v9h3V9h6zM6 21v9h9v-3H9v-6zm29 9h9v-9h-3v6h-6zm9-15V6h-9v3h6v6z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/VM_Linux.svg b/src/main/webapp/img/lib/mscae/VM_Linux.svg new file mode 100644 index 0000000000000000000000000000000000000000..87a9247cacf0cae1f1751d34631c8edb7d2262a5 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/VM_Linux.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="46"><path d="M33 36H19.27c1.65 6-.566 6.86-10.27 6.86V46h33v-3.14c-9.705 0-10.656-.857-9.005-6.86" fill="#7a7a7a"/><path d="M46.98 0H2.718C1.214 0 .001 1.345.001 2.847v31.33C.001 35.67 1.214 37 2.718 37h44.26c1.5 0 3.02-1.33 3.02-2.823V2.847C50 1.34 48.48 0 46.98 0" fill="#a0a1a2"/><path d="M47 .003c-.01 0-.02-.002-.03-.002H2.717C1.213.001 0 1.345 0 2.848v31.328C0 35.67 1.213 37 2.717 37H3.77z" opacity=".2" fill="#fff"/><path d="M4 33V4h42v29z" fill="#59b4d9"/><path d="M9 43h33v3H9z" fill="#a0a1a2"/><path d="M25.517 2.095a.71.71 0 0 1-.71.71.71.71 0 0 1-.709-.71.71.71 0 0 1 .709-.71.71.71 0 0 1 .71.71" fill="#b8d432"/><g opacity=".85"><path d="M26.704 11.83l-.512.315-.443-.807c-.17-.308-.193-.57-.078-.846a.58.58 0 0 1 .556-.375l.06.002c.285.023.57.318.655.58.09.278.09.93-.238 1.13z" opacity=".4" fill="#fff"/><path d="M21.73 27.35c.001-.03-2.533-4.095-2.384-4.8 1.194-5.673 2.614-6.5 3.134-7.7s.22-2.305.842-2.32 2.443.123 2.887.27 1.074.595 1.423 1.574c.473.895.938 1.793 1.084 2.814.013.094.055.184.12.254 1.18 1.3 1.42 2.88 1.333 4.55-.022.423-.077 1.046-.134 1.264s-1.65 5.377-4.16 5.315-3.847-.998-4.143-1.224z" fill="#fbfbf9"/><path d="M35.228 26.146c-.92-.046-1.404-.598-1.408-1.126-.005-.618.255-1.395-.64-1.473l-3.217-.264c-1.07-.197-1.125.24-1.142.55-.008.146.127 1.597-.014 2.163.01.246-.008.49-.046.735l-.267 1.987-.017.97c.78 1.146 2.293 1.19 3.23.196.88-.894 1.94-1.51 3.057-2.052.316-.154.615-.385.783-.83s.01-.84-.32-.855z" fill="#ff8c00"/><path d="M23 25.593c-.126.618-.796 1.165-1.143 1.118-.215-.118-.8-.9-.925-1.08-.38-.577-2.044-2.962-2.53-2.78-.158.02-.248.13-.33.25l-.1.04a1.68 1.68 0 0 1 .05-1.58c.613-1.12.896-2.27 1.208-3.515.105-.418.36-.766.624-1.1.492-.625.48-1.253.982-1.87.32-.394.602-.823.572-1.333L21.21 9.47c.06-1.4 1.292-2.596 2.675-3.104 1.434-.527 2.8-.268 3.943.764.905.8 1.3 1.874 1.37 3.07l.015.658c-.103 2.247.842 4.076 2.274 5.7 1.374 1.566 1.912 3.443 2.036 5.47.032.53-.138 1.025-.355 1.502-.3.7-.73 1.12-1.124 1.297s-1.947.3-1.646-.72c.148-.502.172-.715-.447-.84l.134-1.264c.087-1.67-.206-3-1.472-4.177-.4-.367-.024-.427-.037-.757-.033-.9-.554-1.8-1.027-2.684a1.11 1.11 0 0 0-.228-.442c.035-.14-.053-.24-.1-.352.07-.283.2-.557.134-.86.004-.26-2.666-.372-3-.24-.14-.047-1.562-.108-1.558-.084-.192.143-.327.332-.387.56-.057.216.3.663.327.736l-.048.916-.1.32L21.9 16c-.197.32-.422.63-.45 1.023-.155.4.4.93-.105 1.396s-1 2.714-1.02 3.244c-.01.57 1.032 1.872 1.43 2.248.73.688 1.387.95 1.238 1.68zm-.505 2.145c1.076.304 4.105.395 5.576-1.08l.74-.675c.01.246-.008.5-.046.735l-.267 1.987-.017.97c-1.356-.373-3.4-.505-4-.473s-1.437.184-1.918.3z" fill="#1e1e1e"/><path d="M33.9 25.184l-.067-.096.067.096zm-.394-1.4l-.087-.083.087.083z" fill="#dda516"/><path d="M21.888 26.837l.043.07-.043-.07z" fill="#8c5f07"/><path d="M33.42 23.7h-.002.001z" fill="#e3a906"/><path d="M21.448 26.19c-.786-.815-1.39-1.804-1.942-2.91-.29-.582-1.18-1.044-1.512-.13s-.86 1.285-1.724 1.17c-.63-.084-1.223.4-.96 1.198.285.86.6 1.533-.014 2.135s-.37 1.225.508 1.344 3.2.645 4.523 1.35 2.398-.628 2.54-1.022c.352-.976-.632-2.32-1.42-3.135z" fill="#ff8c00"/><path d="M24.422 16.628c-.75 0-1.253-.71-1.607-1.33-.003 0-1.162-1.626-.74-2.524.06-.126.158-.338 1.35-1.075l.222-.188.212-.107.137-.054c.164-.052.35-.104.528-.104h.082l.158.037.355.12 2.897 1.07.08.434c.066.353-.022.66-.094.905l-.1.425-.248.09c-.22.08-.56.446-.836.74s-.53.568-.796.74l-.298.22c-.415.31-.806.603-1.295.603z" fill="#1e1e1e"/><path d="M26.355 13.07c-.513.443-1.1.824-1.828.844-.027.023-.027.023 0 0 .005-.166-.005-.325-.146-.446-.117-.1-.13-.248-.097-.378.137-.524.053-1.055.073-1.582-.137-.046-.45.07-.492.08l-.19.096-.218.182c-.093.058-1.078.66-1.18.873-.26.552.596 1.905.72 2.063 1 1.755 1.555.994 2.494.337.504-.326 1.16-1.32 1.73-1.53.07-.283.19-.557.134-.86-.36.02-.68.044-1 .32z" fill="#ff8c00"/><path d="M23.942 11.516z" fill="#e3a906"/><path d="M26.946 12.35c.217.11.415.233.41.518-.395.024-.746.05-1.096.353-.56.485-1.32 1.203-2.12 1.225.032-.262-.345-.64-.243-1.086.132-.577.153-1.272.175-1.85.365-.146.704-.013 1.046.094l.427.258.747.286c.196.134.43.15.652.202z" fill="#fcd116"/></g><path d="M23 10.554h1v1h-1zm3 0h1v1h-1z" opacity=".9" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/VM_Linux_Non_Azure.svg b/src/main/webapp/img/lib/mscae/VM_Linux_Non_Azure.svg new file mode 100644 index 0000000000000000000000000000000000000000..3ec1056bf0bcdf73ee28fb050fec0400e619e677 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/VM_Linux_Non_Azure.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="46"><path d="M46.98 0H2.718C1.214 0 .001 1.345.001 2.847v31.33C.001 35.67 1.214 37 2.718 37h44.26c1.5 0 3.02-1.33 3.02-2.823V2.847C50 1.34 48.48 0 46.98 0" fill="#804998"/><path d="M47 .003c-.01 0-.02-.002-.03-.002H2.717C1.213.001 0 1.345 0 2.848v31.328C0 35.67 1.213 37 2.717 37H3.77z" opacity=".2" fill="#fff"/><path d="M4 33V4h42v29z" fill="#804998"/><path d="M4 33V4h42v29z" opacity=".4" fill="#fff"/><g opacity=".8"><path d="M26.704 11.83l-.512.315-.443-.807c-.17-.308-.193-.57-.078-.846a.58.58 0 0 1 .556-.375l.06.002c.285.023.57.318.655.58.09.278.09.93-.238 1.13z" opacity=".4" fill="#fff"/><path d="M21.73 27.35c.001-.03-2.533-4.095-2.384-4.8 1.194-5.673 2.614-6.5 3.134-7.7s.22-2.305.842-2.32 2.443.123 2.887.27 1.074.595 1.423 1.574c.473.895.938 1.793 1.084 2.814.013.094.055.184.12.254 1.18 1.3 1.42 2.88 1.333 4.55-.022.423-.077 1.046-.134 1.264s-1.65 5.377-4.16 5.315-3.847-.998-4.143-1.224z" fill="#fbfbf9"/><path d="M35.228 26.146c-.92-.046-1.404-.598-1.408-1.126-.005-.618.255-1.395-.64-1.473l-3.217-.264c-1.07-.197-1.125.24-1.142.55-.008.146.127 1.597-.014 2.163.01.246-.008.49-.046.735l-.267 1.987-.017.97c.78 1.146 2.293 1.19 3.23.196.88-.894 1.94-1.51 3.057-2.052.316-.154.615-.385.783-.83s.01-.84-.32-.855z" fill="#ff8c00"/><path d="M23 25.593c-.126.618-.796 1.165-1.143 1.118-.215-.118-.8-.9-.925-1.08-.38-.577-2.044-2.962-2.53-2.78-.158.02-.248.13-.33.25l-.1.04a1.68 1.68 0 0 1 .05-1.58c.613-1.12.896-2.27 1.208-3.515.105-.418.36-.766.624-1.1.492-.625.48-1.253.982-1.87.32-.394.602-.823.572-1.333L21.21 9.47c.06-1.4 1.292-2.596 2.675-3.104 1.434-.527 2.8-.268 3.943.764.905.8 1.3 1.874 1.37 3.07l.015.658c-.103 2.247.842 4.076 2.274 5.7 1.374 1.566 1.912 3.443 2.036 5.47.032.53-.138 1.025-.355 1.502-.3.7-.73 1.12-1.124 1.297s-1.947.3-1.646-.72c.148-.502.172-.715-.447-.84l.134-1.264c.087-1.67-.206-3-1.472-4.177-.4-.367-.024-.427-.037-.757-.033-.9-.554-1.8-1.027-2.684a1.11 1.11 0 0 0-.228-.442c.035-.14-.053-.24-.1-.352.07-.283.2-.557.134-.86.004-.26-2.666-.372-3-.24-.14-.047-1.562-.108-1.558-.084-.192.143-.327.332-.387.56-.057.216.3.663.327.736l-.048.916-.1.32L21.9 16c-.197.32-.422.63-.45 1.023-.155.4.4.93-.105 1.396s-1 2.714-1.02 3.244c-.01.57 1.032 1.872 1.43 2.248.73.688 1.387.95 1.238 1.68zm-.505 2.145c1.076.304 4.105.395 5.576-1.08l.74-.675c.01.246-.008.5-.046.735l-.267 1.987-.017.97c-1.356-.373-3.4-.505-4-.473s-1.437.184-1.918.3z" fill="#1e1e1e"/><path d="M33.9 25.184l-.067-.096.067.096zm-.394-1.4l-.087-.083.087.083z" fill="#dda516"/><path d="M21.888 26.837l.043.07-.043-.07z" fill="#8c5f07"/><path d="M33.42 23.7h-.002.001z" fill="#e3a906"/><path d="M21.448 26.19c-.786-.815-1.39-1.804-1.942-2.91-.29-.582-1.18-1.044-1.512-.13s-.86 1.285-1.724 1.17c-.63-.084-1.223.4-.96 1.198.285.86.6 1.533-.014 2.135s-.37 1.225.508 1.344 3.2.645 4.523 1.35 2.398-.628 2.54-1.022c.352-.976-.632-2.32-1.42-3.135z" fill="#ff8c00"/><path d="M24.422 16.628c-.75 0-1.253-.71-1.607-1.33-.003 0-1.162-1.626-.74-2.524.06-.126.158-.338 1.35-1.075l.222-.188.212-.107.137-.054c.164-.052.35-.104.528-.104h.082l.158.037.355.12 2.897 1.07.08.434c.066.353-.022.66-.094.905l-.1.425-.248.09c-.22.08-.56.446-.836.74s-.53.568-.796.74l-.298.22c-.415.31-.806.603-1.295.603z" fill="#1e1e1e"/><path d="M26.355 13.07c-.513.443-1.1.824-1.828.844-.027.023-.027.023 0 0 .005-.166-.005-.325-.146-.446-.117-.1-.13-.248-.097-.378.137-.524.053-1.055.073-1.582-.137-.046-.45.07-.492.08l-.19.096-.218.182c-.093.058-1.078.66-1.18.873-.26.552.596 1.905.72 2.063 1 1.755 1.555.994 2.494.337.504-.326 1.16-1.32 1.73-1.53.07-.283.19-.557.134-.86-.36.02-.68.044-1 .32z" fill="#ff8c00"/><path d="M23.942 11.516z" fill="#e3a906"/><path d="M26.946 12.35c.217.11.415.233.41.518-.395.024-.746.05-1.096.353-.56.485-1.32 1.203-2.12 1.225.032-.262-.345-.64-.243-1.086.132-.577.153-1.272.175-1.85.365-.146.704-.013 1.046.094l.427.258.747.286c.196.134.43.15.652.202z" fill="#fcd116"/></g><path d="M23 10.554h1v1h-1zm3 0h1v1h-1z" opacity=".9" fill="#fff"/><path d="M21 37h8v5h-8z" fill="#68217a"/><path d="M38 46H12a4 4 0 0 1 4-4h18a4 4 0 0 1 4 4z" fill="#804998"/><path d="M25.517 2.095a.71.71 0 0 1-.71.71.71.71 0 0 1-.709-.71.71.71 0 0 1 .709-.71.71.71 0 0 1 .71.71" fill="#b8d432"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/VM_Scale_Set.svg b/src/main/webapp/img/lib/mscae/VM_Scale_Set.svg index 8158f1030b05b61516f2ac2c9e8ca700917e1bd4..c5fba28fd7a52b8afbc31113614c87dd06aa10f7 100644 --- a/src/main/webapp/img/lib/mscae/VM_Scale_Set.svg +++ b/src/main/webapp/img/lib/mscae/VM_Scale_Set.svg @@ -1,43 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#A0A1A2" d="M35.723,0H2.066C0.923,0,0.001,1.021,0.001,2.162v23.439c0,1.134,0.922,2.144,2.066,2.144h33.656 - c1.141,0,2.297-1.01,2.297-2.144V2.162C38.02,1.018,36.864,0,35.723,0"/> -<path opacity="0.2" fill="#FFFFFF" d="M35.746,0.002c-0.008,0-0.016-0.002-0.024-0.002H2.066C0.922,0.001,0,1.021,0,2.163v23.438 - c0,1.134,0.922,2.144,2.066,2.144h0.801L35.746,0.002z"/> -<polygon fill="#59B4D9" points="35.129,24.823 2.882,24.823 2.882,2.922 35.129,2.875 "/> -<path fill="#B8D432" d="M19.404,1.591c0,0.298-0.242,0.539-0.54,0.539c-0.299,0-0.539-0.241-0.539-0.539 - c0-0.298,0.24-0.539,0.539-0.539C19.162,1.052,19.404,1.293,19.404,1.591"/> -<path fill="#FFFFFF" d="M19.425,13.209c-0.035,0-0.069-0.011-0.102-0.029l-6.695-3.859c-0.061-0.036-0.1-0.104-0.1-0.175 - c0-0.072,0.039-0.139,0.1-0.175l6.654-3.834c0.062-0.035,0.138-0.035,0.2,0l6.697,3.861c0.062,0.036,0.1,0.103,0.1,0.175 - c0,0.073-0.037,0.139-0.1,0.175l-6.652,3.833C19.495,13.198,19.462,13.209,19.425,13.209"/> -<path fill="#A0A1A2" d="M41.671,7.456H8.015c-1.144,0-2.066,1.021-2.066,2.162v23.439c0,1.134,0.922,2.144,2.066,2.144h33.656 - c1.141,0,2.297-1.01,2.297-2.144V9.618C43.969,8.474,42.813,7.456,41.671,7.456"/> -<path opacity="0.2" fill="#FFFFFF" d="M41.695,7.458c-0.008,0-0.016-0.002-0.024-0.002H8.015c-1.144,0-2.066,1.021-2.066,2.162 - v23.438c0,1.134,0.922,2.144,2.066,2.144h0.801L41.695,7.458z"/> -<polygon fill="#59B4D9" points="41.078,32.279 8.83,32.279 8.83,10.378 41.078,10.331 "/> -<path fill="#B8D432" d="M25.352,9.047c0,0.298-0.242,0.539-0.54,0.539c-0.299,0-0.539-0.241-0.539-0.539 - c0-0.298,0.24-0.539,0.539-0.539C25.11,8.508,25.352,8.748,25.352,9.047"/> -<path fill="#FFFFFF" d="M25.374,20.664c-0.035,0-0.069-0.011-0.102-0.029l-6.695-3.859c-0.061-0.036-0.1-0.104-0.1-0.175 - c0-0.072,0.039-0.139,0.1-0.175l6.654-3.834c0.062-0.035,0.138-0.035,0.2,0l6.697,3.861c0.062,0.036,0.1,0.103,0.1,0.175 - c0,0.073-0.037,0.139-0.1,0.175l-6.652,3.833C25.443,20.654,25.411,20.664,25.374,20.664"/> -<path fill="#7A7A7A" d="M36.636,42.698h-0.906h-8.965h-0.468c1.242,4.38-0.427,5.008-7.737,5.008V50h9.297h6.788h8.773v-2.293 - C36.109,47.706,35.392,47.081,36.636,42.698"/> -<path fill="#A0A1A2" d="M47.703,14.955H14.047c-1.144,0-2.066,1.021-2.066,2.162v23.439c0,1.134,0.922,2.144,2.066,2.144h33.656 - c1.141,0,2.297-1.01,2.297-2.144V17.117C50,15.974,48.844,14.955,47.703,14.955"/> -<path opacity="0.2" fill="#FFFFFF" d="M47.727,14.958c-0.008,0-0.016-0.002-0.024-0.002H14.046c-1.144,0-2.066,1.021-2.066,2.162 - v23.438c0,1.134,0.922,2.144,2.066,2.144h0.801L47.727,14.958z"/> -<polygon fill="#59B4D9" points="47.109,39.779 14.862,39.779 14.862,17.878 47.109,17.83 "/> -<rect x="18.561" y="47.706" fill="#A0A1A2" width="24.858" height="2.294"/> -<path fill="#B8D432" d="M31.384,16.546c0,0.298-0.242,0.539-0.54,0.539c-0.299,0-0.539-0.241-0.539-0.539 - c0-0.298,0.24-0.539,0.539-0.539C31.142,16.007,31.384,16.248,31.384,16.546"/> -<path fill="#FFFFFF" d="M31.405,28.164c-0.035,0-0.069-0.011-0.102-0.029l-6.695-3.859c-0.061-0.036-0.1-0.104-0.1-0.175 - c0-0.072,0.039-0.139,0.1-0.175l6.654-3.834c0.062-0.035,0.138-0.035,0.2,0l6.697,3.861c0.062,0.036,0.1,0.103,0.1,0.175 - c0,0.073-0.037,0.139-0.1,0.175l-6.652,3.833C31.475,28.153,31.442,28.164,31.405,28.164"/> -<path opacity="0.7" fill="#FFFFFF" d="M30.443,37.544c-0.038,0-0.072-0.009-0.102-0.027l-6.675-3.847 - c-0.065-0.036-0.104-0.101-0.104-0.175v-7.72c0-0.073,0.039-0.139,0.104-0.175c0.062-0.037,0.137-0.037,0.204,0l6.674,3.846 - c0.059,0.038,0.099,0.104,0.099,0.177v7.72c0,0.074-0.039,0.139-0.099,0.175C30.511,37.535,30.476,37.544,30.443,37.544"/> -<path opacity="0.4" fill="#FFFFFF" d="M32.333,37.544c-0.037,0-0.071-0.009-0.105-0.027c-0.059-0.036-0.098-0.102-0.098-0.175V29.67 - c0-0.071,0.039-0.138,0.098-0.175l6.674-3.845c0.064-0.036,0.138-0.036,0.201,0c0.064,0.036,0.102,0.102,0.102,0.175v7.671 - c0,0.074-0.039,0.14-0.102,0.175l-6.672,3.847C32.403,37.535,32.367,37.544,32.333,37.544"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="50"><path fill="#a0a1a2" d="M35.723 0H2.066C.923 0 .001 1.02.001 2.162V25.6c0 1.134.922 2.144 2.066 2.144h33.656c1.14 0 2.297-1 2.297-2.144V2.162C38.02 1.018 36.864 0 35.723 0"/><path opacity=".2" fill="#fff" d="M35.746.002c-.008 0-.016-.002-.024-.002H2.066C.922.001 0 1.02 0 2.163V25.6c0 1.134.922 2.144 2.066 2.144h.8L35.746.002z"/><path fill="#59b4d9" d="M35.13 24.823H2.882v-21.9l32.247-.047z"/><use xlink:href="#B" fill="#b8d432"/><use xlink:href="#C" fill="#fff"/><path fill="#a0a1a2" d="M41.67 7.456H8.015c-1.144 0-2.066 1.02-2.066 2.162v23.44c0 1.134.922 2.144 2.066 2.144H41.67c1.14 0 2.297-1 2.297-2.144V9.618c.001-1.144-1.155-2.162-2.297-2.162"/><path opacity=".2" fill="#fff" d="M41.695 7.458c-.008 0-.016-.002-.024-.002H8.015c-1.144 0-2.066 1.02-2.066 2.162v23.438c0 1.134.922 2.144 2.066 2.144h.8l32.88-27.742z"/><path fill="#59b4d9" d="M41.078 32.28H8.83v-21.9l32.248-.047z"/><use xlink:href="#B" x="5.948" y="7.457" fill="#b8d432"/><path fill="#fff" d="M25.374 20.664c-.035 0-.07-.01-.102-.03l-6.695-3.86c-.06-.036-.1-.104-.1-.175s.04-.14.1-.175l6.654-3.834c.062-.035.138-.035.2 0l6.697 3.86c.062.036.1.103.1.175s-.037.14-.1.175l-6.652 3.833c-.033.018-.065.028-.102.028"/><path fill="#7a7a7a" d="M36.636 42.698h-10.34c1.242 4.38-.427 5.008-7.737 5.008V50h24.858v-2.293c-7.31-.001-8.026-.626-6.782-5.01"/><path fill="#a0a1a2" d="M47.703 14.955H14.047c-1.144 0-2.066 1.02-2.066 2.162v23.44c0 1.134.922 2.144 2.066 2.144h33.656c1.14 0 2.297-1 2.297-2.144v-23.44c0-1.143-1.156-2.162-2.297-2.162"/><path opacity=".2" fill="#fff" d="M47.727 14.958c-.008 0-.016-.002-.024-.002H14.046c-1.144 0-2.066 1.02-2.066 2.162v23.438c0 1.134.922 2.144 2.066 2.144h.8l32.88-27.742z"/><path fill="#59b4d9" d="M47.11 39.78H14.862v-21.9l32.247-.048z"/><path fill="#a0a1a2" d="M18.56 47.706H43.42V50H18.56z"/><use xlink:href="#B" x="11.98" y="14.956" fill="#b8d432"/><g fill="#fff"><use xlink:href="#C" x="11.98" y="14.954"/><path opacity=".7" d="M30.443 37.544c-.038 0-.072-.01-.102-.027l-6.675-3.847c-.065-.036-.104-.1-.104-.175v-7.72c0-.073.04-.14.104-.175s.137-.037.204 0l6.674 3.846c.06.038.1.104.1.177v7.72c0 .074-.04.14-.1.175-.033.017-.068.026-.1.026"/><path opacity=".4" d="M32.333 37.544c-.037 0-.07-.01-.105-.027-.06-.036-.098-.102-.098-.175V29.67a.21.21 0 0 1 .098-.175l6.674-3.845a.2.2 0 0 1 .201 0c.064.036.102.102.102.175v7.67c0 .074-.04.14-.102.175l-6.672 3.847c-.028.017-.064.026-.098.026"/></g><defs ><path id="B" d="M19.404 1.59a.54.54 0 0 1-.54.539.54.54 0 0 1-.539-.539.54.54 0 0 1 .539-.539.54.54 0 0 1 .54.539"/><path id="C" d="M19.425 13.21c-.035 0-.07-.01-.102-.03l-6.695-3.86c-.06-.036-.1-.104-.1-.175s.04-.14.1-.175l6.654-3.834c.062-.035.138-.035.2 0l6.697 3.86c.062.036.1.103.1.175s-.037.14-.1.175l-6.652 3.833c-.032.017-.065.028-.102.028"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/VM_Windows_Non_Azure.svg b/src/main/webapp/img/lib/mscae/VM_Windows_Non_Azure.svg new file mode 100644 index 0000000000000000000000000000000000000000..c8ae0425295e7eb39645cb7a0f6ed084e3e190ae --- /dev/null +++ b/src/main/webapp/img/lib/mscae/VM_Windows_Non_Azure.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="46"><path d="M46.98 0H2.718C1.214 0 .001 1.345.001 2.847v31.33C.001 35.67 1.214 37 2.718 37h44.26c1.5 0 3.02-1.33 3.02-2.823V2.847C50 1.34 48.48 0 46.98 0" fill="#804998"/><path d="M47 .003c-.01 0-.02-.002-.03-.002H2.717C1.213.001 0 1.345 0 2.848v31.328C0 35.67 1.213 37 2.717 37H3.77z" opacity=".2" fill="#fff"/><path d="M4 33V4h42v29z" fill="#804998"/><path d="M4 33V4h42v29z" opacity=".4" fill="#fff"/><path d="M35.433 28.997l-19.6-1.58a.9.9 0 0 1-.824-.894v-15.05c0-.464.362-.856.825-.894L35.44 9c.564 0 .962.4.962.894v18.2a.89.89 0 0 1-.264.636c-.17.167-.393.26-.63.26z" opacity=".2" fill="#804998"/><path d="M35.505 18.3V9.894l-9.805.8V18.3zm-11.205 0v-7.503l-8.405.677V18.3zm11.205 1.4v8.404l-9.805-.8V19.7zm-11.205 0v7.5l-8.405-.677V19.7z" opacity=".8" fill="#fff"/><path d="M38 46H12a4 4 0 0 1 4-4h18a4 4 0 0 1 4 4z" fill="#804998"/><path d="M21 37h8v5h-8z" fill="#68217a"/><path d="M25.517 2.095a.71.71 0 0 1-.71.71.71.71 0 0 1-.709-.71.71.71 0 0 1 .709-.71.71.71 0 0 1 .71.71" fill="#b8d432"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/VPNPointToSite.svg b/src/main/webapp/img/lib/mscae/VPNPointToSite.svg index 12a96552e9a23f34e2cf717bc04bfa0a5298b5c2..a6272b0305d5ede6f5ca2e7487fdf5ada1a34b39 100644 --- a/src/main/webapp/img/lib/mscae/VPNPointToSite.svg +++ b/src/main/webapp/img/lib/mscae/VPNPointToSite.svg @@ -1,24 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - height="50px" width="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#7A7A7A" d="M32.4,36.5h-1.2H19.4h-0.6c1.6,5.8-0.6,6.6-10.2,6.6v3h12.2h8.9h11.5v-3C31.7,43.1,30.8,42.3,32.4,36.5"/> -<path fill="#A0A1A2" d="M47,0H2.7C1.2,0,0,1.3,0,2.8v30.9c0,1.5,1.2,2.8,2.7,2.8H47c1.5,0,3-1.3,3-2.8V2.8C50,1.3,48.5,0,47,0 - M46.2,3.8v28.8H3.8V3.8l42.4-0.1L46.2,3.8z"/> -<polygon fill="#59B4D9" points="46.2,3.8 46.2,32.7 3.8,32.7 3.8,3.8 46.2,3.8 "/> -<path opacity="0.2" fill="#FFFFFF" d="M3.8,32.7L3.8,32.7L3.8,3.8l38.7-0.1L47,0c0,0,0,0,0,0H2.7C1.2,0,0,1.3,0,2.8v30.9 - c0,1.5,1.2,2.8,2.7,2.8h1.1l4.6-3.8H3.8z"/> -<polygon fill="#59B4D9" points="3.8,32.7 3.8,32.7 3.8,3.8 42.5,3.8 42.5,3.8 3.8,3.8 "/> -<rect x="8.7" y="43.1" fill="#A0A1A2" width="32.7" height="3"/> -<path fill="#B8D432" d="M25.5,3.9c0,0.4-0.3,0.7-0.7,0.7c-0.4,0-0.7-0.3-0.7-0.7c0-0.4,0.3-0.7,0.7-0.7C25.2,3.2,25.5,3.6,25.5,3.9" - /> -<g> - <path fill="#B8D432" d="M45.2,26.2c0,3.4-2.8,6.2-6.2,6.2c-3.4,0-6.2-2.8-6.2-6.2c0-3.4,2.8-6.2,6.2-6.2 - C42.4,20,45.2,22.8,45.2,26.2"/> - <polygon fill="#B8D432" points="43.5,34.4 39,40.7 34.5,34.4 28,34.4 28,50 50,50 50,34.4 "/> - <path opacity="0.2" fill="#FFFFFF" d="M32.8,26.2c0,3.4,2.7,6.1,6,6.2l1.5-12.1C39.9,20.1,39.5,20,39,20 - C35.6,20,32.8,22.8,32.8,26.2"/> - <polygon opacity="0.2" fill="#FFFFFF" points="34.5,34.4 28,34.4 28,50 36.6,50 38,39.3 "/> -</g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" height="50" width="50"><path fill="#7a7a7a" d="M32.4 36.5H18.8c1.6 5.8-.6 6.6-10.2 6.6v3h32.6v-3c-9.5 0-10.4-.8-8.8-6.6"/><path fill="#a0a1a2" d="M47 0H2.7C1.2 0 0 1.3 0 2.8v30.9c0 1.5 1.2 2.8 2.7 2.8H47c1.5 0 3-1.3 3-2.8V2.8C50 1.3 48.5 0 47 0m-.8 3.8v28.8H3.8V3.8l42.4-.1v.1z"/><path fill="#59b4d9" d="M46.2 3.8v28.9H3.8V3.8h42.4z"/><path opacity=".2" fill="#fff" d="M3.8 32.7V3.8l38.7-.1L47 0H2.7C1.2 0 0 1.3 0 2.8v30.9c0 1.5 1.2 2.8 2.7 2.8h1.1l4.6-3.8H3.8z"/><path fill="#59b4d9" d="M3.8 32.7V3.8z"/><path fill="#a0a1a2" d="M8.7 43.1h32.7v3H8.7z"/><path d="M25.5 3.9a.68.68 0 0 1-.7.7.68.68 0 0 1-.7-.7.68.68 0 0 1 .7-.7c.4 0 .7.4.7.7m19.7 22.3c0 3.4-2.8 6.2-6.2 6.2s-6.2-2.8-6.2-6.2S35.6 20 39 20s6.2 2.8 6.2 6.2m-1.7 8.2L39 40.7l-4.5-6.3H28V50h22V34.4z" fill="#b8d432"/><path opacity=".2" d="M32.8 26.2c0 3.4 2.7 6.1 6 6.2l1.5-12.1c-.4-.2-.8-.3-1.3-.3-3.4 0-6.2 2.8-6.2 6.2m1.7 8.2H28V50h8.6L38 39.3z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/VPNSiteToSite.svg b/src/main/webapp/img/lib/mscae/VPNSiteToSite.svg index f1cc55696eecca1589109a307786c270d941cac7..b3fb0f773ed5511e13f4eac19712d201b18bfd9e 100644 --- a/src/main/webapp/img/lib/mscae/VPNSiteToSite.svg +++ b/src/main/webapp/img/lib/mscae/VPNSiteToSite.svg @@ -1,144 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="47" - width="42" - viewBox="0 0 42 47" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="VPNSiteToSite.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata2716"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs2714" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview2712" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="21" - inkscape:cy="24" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="M 30,44.5 C 30,45.9 28.9,47 27.5,47 H 2.5 C 1.1,47 0,45.9 0,44.5 V 2.5 C 0,1.1 1.1,0 2.5,0 H 27.4 C 28.9,0 30,1.1 30,2.5 Z" - id="path2683" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<rect - x="4" - y="5" - width="6" - height="7" - id="rect2685" - style="fill:#0072c6" /> -<rect - x="12" - y="5" - width="6" - height="7" - id="rect2687" - style="fill:#0072c6" /> -<rect - x="20" - y="5" - width="6" - height="7" - id="rect2689" - style="fill:#0072c6" /> -<rect - x="4" - y="16" - width="6" - height="7" - id="rect2691" - style="fill:#0072c6" /> -<rect - x="12" - y="16" - width="6" - height="7" - id="rect2693" - style="fill:#0072c6" /> -<rect - x="4" - y="27" - width="6" - height="7" - id="rect2695" - style="fill:#0072c6" /> -<rect - x="12" - y="27" - width="6" - height="7" - id="rect2697" - style="fill:#0072c6" /> -<rect - x="20" - y="27" - width="6" - height="7" - id="rect2699" - style="fill:#777777" /> -<path - d="m 42,44.5 c 0,1.4 -1.1,2.5 -2.5,2.5 h -17 C 21.1,47 20,45.9 20,44.5 v -28 C 20,15.1 21.1,14 22.5,14 h 16.9 c 1.4,0 2.5,1.1 2.5,2.5 v 28 z" - id="path2701" - inkscape:connector-curvature="0" - style="fill:#7a7a7a" /> -<rect - x="24" - y="19" - width="6" - height="7" - id="rect2703" - style="fill:#59b4d9" /> -<rect - x="32" - y="19" - width="6" - height="7" - id="rect2705" - style="fill:#59b4d9" /> -<rect - x="24" - y="30" - width="6" - height="7" - id="rect2707" - style="fill:#59b4d9" /> -<rect - x="32" - y="30" - width="6" - height="7" - id="rect2709" - style="fill:#59b4d9" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" height="47" width="42"><path d="M30 44.5c0 1.4-1.1 2.5-2.5 2.5h-25C1.1 47 0 45.9 0 44.5v-42C0 1.1 1.1 0 2.5 0h24.9C28.9 0 30 1.1 30 2.5z" fill="#a0a1a2"/><path d="M4 5h6v7H4zm8 0h6v7h-6zm8 0h6v7h-6zM4 16h6v7H4zm8 0h6v7h-6zM4 27h6v7H4zm8 0h6v7h-6z" fill="#0072c6"/><path d="M20 27h6v7h-6z" fill="#777"/><path d="M42 44.5c0 1.4-1.1 2.5-2.5 2.5h-17c-1.4 0-2.5-1.1-2.5-2.5v-28c0-1.4 1.1-2.5 2.5-2.5h16.9c1.4 0 2.5 1.1 2.5 2.5v28z" fill="#7a7a7a"/><path d="M24 19h6v7h-6zm8 0h6v7h-6zm-8 11h6v7h-6zm8 0h6v7h-6z" fill="#59b4d9"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/VPN_Gateway.svg b/src/main/webapp/img/lib/mscae/VPN_Gateway.svg index 760350db4447efa4fa52abae472fa9c69db7bd66..eef337cdb460d8538eee5dfaad27f8b35a131159 100644 --- a/src/main/webapp/img/lib/mscae/VPN_Gateway.svg +++ b/src/main/webapp/img/lib/mscae/VPN_Gateway.svg @@ -1,63 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="44.799999" - height="50" - viewBox="0 0 44.799999 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure VPN Gateway_color.svg"><metadata - id="metadata15"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs13" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview11" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="10.363697" - inkscape:cx="20.057165" - inkscape:cy="17.047137" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 39.5,18.5 39.5,18.5 39.5,16.3 C 39.5,11.9 37.9,7.8 35.1,4.9 32.5,1.9 26.7,0 22.4,0 18.1,0 12.3,1.9 9.7,4.9 7,7.8 5.3,11.9 5.3,16.3 L 5.3,18.5 5.3,18.5 13.2,19.4 13.2,17.4 C 13.2,14.8 14.1,11.5 15.6,9.8 17.1,8.1 20.3,7.3 22.4,7.2 24.5,7.2 27.7,8.1 29.2,9.8 30.7,11.5 31.6,13.7 31.6,16.2 L 31.6,19.4 39.5,18.5 Z" - id="path3" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /><path - d="M 5.3,18.5 5.3,18.5 C 1.4,18.5 0,20.8 0,23.8 L 0,44.7 C 0,47.3 1.6,50 4.6,50 L 40.2,50 C 43.6,50 44.8,47.3 44.8,44.7 L 44.8,23.8 C 44.8,21.1 43.7,18.5 39.5,18.5 L 39.5,18.5 5.3,18.5 Z" - id="path5" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><path - d="M 31.5,18.5 31.5,18.5 5.3,18.5 5.3,18.5 C 1.4,18.5 0,20.8 0,23.8 L 0,44.7 C 0,47.3 1.6,50 4.6,50 L 11.3,50 31.5,18.5 Z" - id="path7" - inkscape:connector-curvature="0" - style="opacity:0.15;fill:#ffffff" /><path - d="M 16.4,27.1 22.2,21.3 28,27.1 23.9,27.1 23.9,31.3 20.4,31.3 20.4,27.1 C 20.4,27.1 16.4,27.1 16.4,27.1 Z M 5.7,35.9 5.7,32.5 11.7,32.5 11.7,28.5 17.3,34.1 11.7,39.7 11.7,35.8 5.7,35.8 5.7,35.9 Z M 22.2,47.2 16.3,41.3 20.4,41.3 20.4,37.2 23.9,37.2 23.9,41.3 28.1,41.3 22.2,47.2 Z M 38.7,35.9 32.7,35.9 32.7,39.9 27,34.2 32.7,28.5 32.7,32.5 38.7,32.5 38.7,35.9 Z" - id="path9" - inkscape:connector-curvature="0" - style="fill:#ffffff" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="44.8" height="50"><path d="M39.5 18.5v-2.2c0-4.4-1.6-8.5-4.4-11.4-2.6-3-8.4-4.9-12.7-4.9S12.3 1.9 9.7 4.9c-2.7 2.9-4.4 7-4.4 11.4v2.2l7.9.9v-2c0-2.6.9-5.9 2.4-7.6s4.7-2.5 6.8-2.6c2.1 0 5.3.9 6.8 2.6a9.55 9.55 0 0 1 2.4 6.4v3.2l7.9-.9z" fill="#a0a1a2"/><path d="M5.3 18.5c-3.9 0-5.3 2.3-5.3 5.3v20.9C0 47.3 1.6 50 4.6 50h35.6c3.4 0 4.6-2.7 4.6-5.3V23.8c0-2.7-1.1-5.3-5.3-5.3H5.3z" fill="#59b4d9"/><g fill="#fff"><path d="M31.5 18.5H5.3c-3.9 0-5.3 2.3-5.3 5.3v20.9C0 47.3 1.6 50 4.6 50h6.7l20.2-31.5z" opacity=".15"/><path d="M16.4 27.1l5.8-5.8 5.8 5.8h-4.1v4.2h-3.5v-4.2h-4zM5.7 35.9v-3.4h6v-4l5.6 5.6-5.6 5.6v-3.9h-6v.1zm16.5 11.3l-5.9-5.9h4.1v-4.1h3.5v4.1h4.2l-5.9 5.9zm16.5-11.3h-6v4L27 34.2l5.7-5.7v4h6v3.4z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Variables.svg b/src/main/webapp/img/lib/mscae/Variables.svg index 6ddcdc54a80cf1436bde58d5b97849be14e176bb..83b6da6503b78b22ef25360d1a66a37d411a1071 100644 --- a/src/main/webapp/img/lib/mscae/Variables.svg +++ b/src/main/webapp/img/lib/mscae/Variables.svg @@ -1,55 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="41.998001" - height="40.308998" - viewBox="0 0 41.998001 40.308998" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Variables.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata1398"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs1396" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview1394" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="20.546371" - inkscape:cy="19.994035" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 18.525,0.001 c 1.417,1.504 2.488,3.009 3.211,4.512 0.521,1.041 1.374,3.775 2.56,8.2 L 28.114,6.986 C 29.126,5.598 30.356,4.274 31.802,3.016 33.248,1.758 34.521,0.897 35.62,0.434 36.314,0.145 37.081,0 37.92,0 c 1.244,0 2.235,0.333 2.972,0.998 0.738,0.666 1.106,1.475 1.106,2.43 0,1.1 -0.217,1.851 -0.651,2.256 -0.81,0.723 -1.736,1.085 -2.777,1.085 -0.607,0 -1.258,-0.13 -1.952,-0.39 -1.36,-0.462 -2.271,-0.694 -2.733,-0.694 -0.694,0 -1.519,0.406 -2.473,1.215 -1.793,1.504 -3.934,4.411 -6.421,8.721 l 3.558,14.926 c 0.55,2.285 1.012,3.652 1.388,4.1 0.376,0.449 0.752,0.673 1.128,0.673 0.607,0 1.316,-0.332 2.126,-0.998 1.591,-1.33 2.95,-3.066 4.079,-5.207 l 1.519,0.781 c -1.822,3.413 -4.136,6.248 -6.942,8.504 -1.591,1.273 -2.936,1.909 -4.035,1.909 -1.62,0 -2.907,-0.911 -3.862,-2.733 C 23.343,36.448 22.084,31.588 20.175,22.997 15.663,30.836 12.047,35.883 9.328,38.14 7.564,39.586 5.857,40.309 4.208,40.309 3.051,40.309 1.995,39.89 1.041,39.051 0.347,38.415 0,37.561 0,36.491 0,35.536 0.318,34.741 0.955,34.105 1.591,33.469 2.372,33.15 3.298,33.15 c 0.926,0 1.909,0.463 2.95,1.388 0.752,0.666 1.331,0.998 1.736,0.998 0.347,0 0.795,-0.231 1.345,-0.694 1.36,-1.099 3.211,-3.471 5.554,-7.116 2.343,-3.645 3.876,-6.276 4.599,-7.897 C 17.689,12.8 16.72,9.084 16.575,8.678 15.91,6.798 15.042,5.467 13.972,4.686 12.902,3.905 11.325,3.515 9.243,3.515 c -0.665,0 -1.432,0.029 -2.3,0.087 V 2.04 Z" - id="path1391" - inkscape:connector-curvature="0" - style="fill:#3e3e3e" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="41.998" height="40.309"><path d="M18.525.001c1.417 1.504 2.488 3.01 3.21 4.512.52 1.04 1.374 3.775 2.56 8.2l3.818-5.727c1.012-1.388 2.242-2.712 3.688-3.97S34.52.897 35.62.434C36.314.145 37.08 0 37.92 0c1.244 0 2.235.333 2.972.998s1.106 1.475 1.106 2.43c0 1.1-.217 1.85-.65 2.256-.8.723-1.736 1.085-2.777 1.085-.607 0-1.258-.13-1.952-.4-1.36-.462-2.27-.694-2.733-.694-.694 0-1.52.406-2.473 1.215-1.793 1.504-3.934 4.41-6.42 8.72l3.558 14.926c.55 2.285 1.012 3.652 1.388 4.1s.752.673 1.128.673c.607 0 1.316-.332 2.126-.998 1.59-1.33 2.95-3.066 4.08-5.207l1.52.78c-1.822 3.413-4.136 6.248-6.942 8.504-1.59 1.273-2.936 1.91-4.035 1.91-1.62 0-2.907-.91-3.862-2.733-.607-1.128-1.866-5.988-3.775-14.58-4.512 7.84-8.128 12.886-10.847 15.143-1.764 1.446-3.47 2.17-5.12 2.17-1.157 0-2.213-.42-3.167-1.258C.347 38.415 0 37.56 0 36.49c0-.955.318-1.75.955-2.386s1.417-.955 2.343-.955 1.91.463 2.95 1.388c.752.666 1.33.998 1.736.998.347 0 .795-.23 1.345-.694 1.36-1.1 3.21-3.47 5.554-7.116s3.876-6.276 4.6-7.897l-2.907-11.15c-.665-1.88-1.533-3.21-2.603-3.992s-2.647-1.17-4.73-1.17a34.97 34.97 0 0 0-2.3.087V2.04z" fill="#3e3e3e"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Versions.svg b/src/main/webapp/img/lib/mscae/Versions.svg index 921001ab4f72d23b0b2046e175cf025dab756e7f..187e6edc01db4f8696947dabb73add356eda0d58 100644 --- a/src/main/webapp/img/lib/mscae/Versions.svg +++ b/src/main/webapp/img/lib/mscae/Versions.svg @@ -1,80 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="44.500999" - viewBox="0 0 50 44.500999" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="Versions.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata1492"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs1490" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview1488" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="8.5" - inkscape:cx="19.883686" - inkscape:cy="13.433967" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 0,31.283 c 0,0.853 0.691,1.545 1.545,1.545 h 35.41 c 0.854,0 1.545,-0.692 1.545,-1.545 V 7.16 H 0 Z" - id="path1475" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="M 36.955,0 H 1.545 C 0.691,0 0,0.691 0,1.545 V 7.418 H 38.501 V 1.545 C 38.501,0.691 37.808,0 36.955,0" - id="path1477" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<path - d="M 1.551,0 C 0.698,0 0.006,0.691 0.006,1.545 v 5.614 2.569 21.555 c 0,0.853 0.692,1.545 1.545,1.545 H 3.236 L 33.588,0 Z" - id="path1479" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#ffffff" /> -<path - d="m 11.499,42.956 c 0,0.853 0.691,1.545 1.545,1.545 h 35.41 c 0.854,0 1.545,-0.692 1.545,-1.545 V 18.832 h -38.5 z" - id="path1481" - inkscape:connector-curvature="0" - style="fill:#0072c6" /> -<path - d="m 48.455,11.673 h -35.41 c -0.854,0 -1.545,0.691 -1.545,1.545 v 5.873 H 50 v -5.873 c 0,-0.854 -0.692,-1.545 -1.545,-1.545" - id="path1483" - inkscape:connector-curvature="0" - style="fill:#3e3e3e" /> -<path - d="m 13.05,11.673 c -0.853,0 -1.545,0.691 -1.545,1.545 v 5.614 2.569 21.555 c 0,0.853 0.692,1.545 1.545,1.545 h 1.685 L 45.087,11.672 H 13.05 Z" - id="path1485" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#ffffff" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="44.501"><path d="M0 31.283c0 .853.69 1.545 1.545 1.545h35.4c.854 0 1.545-.692 1.545-1.545V7.16H0z" fill="#59b4d9"/><path d="M36.955 0h-35.4C.69 0 0 .69 0 1.545v5.873h38.5V1.545C38.5.69 37.808 0 36.955 0" fill="#a0a1a2"/><path d="M1.55 0C.698 0 .006.69.006 1.545v29.738c0 .853.692 1.545 1.545 1.545h1.685L33.588 0z" opacity=".2" fill="#fff"/><path d="M11.5 42.956c0 .853.69 1.545 1.545 1.545h35.4c.854 0 1.545-.692 1.545-1.545V18.832H11.5z" fill="#0072c6"/><path d="M48.455 11.673h-35.4c-.854 0-1.545.69-1.545 1.545v5.873H50v-5.873c0-.854-.692-1.545-1.545-1.545" fill="#3e3e3e"/><path d="M13.05 11.673c-.853 0-1.545.69-1.545 1.545v29.738c0 .853.692 1.545 1.545 1.545h1.685l30.352-32.83H13.05z" opacity=".2" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/VirtualMachineLinux.svg b/src/main/webapp/img/lib/mscae/VirtualMachineLinux.svg index 8e8724e996dfc368fff85d0fe2e8da24ca42c66a..9c3486083dfe72444a8c6e555f6ca849d84a4fc4 100644 --- a/src/main/webapp/img/lib/mscae/VirtualMachineLinux.svg +++ b/src/main/webapp/img/lib/mscae/VirtualMachineLinux.svg @@ -1,116 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="46.099998" - width="50" - viewBox="0 0 50 46.099998" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="VirtualMachineLinux.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata2018"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs2016" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview2014" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="6.0104076" - inkscape:cx="26.706578" - inkscape:cy="1.9030051" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<g - id="g1995" - transform="translate(0,-2)"> - <path - d="M 32.4,38.5 H 31.2 19.4 18.8 c 1.6,5.8 -0.6,6.6 -10.2,6.6 v 3 h 12.2 8.9 11.5 v -3 c -9.5,0 -10.4,-0.8 -8.8,-6.6" - id="path1983" - inkscape:connector-curvature="0" - style="fill:#7a7a7a" /> - <path - d="M 47,2 H 2.7 C 1.2,2 0,3.3 0,4.8 v 30.9 c 0,1.5 1.2,2.8 2.7,2.8 H 47 c 1.5,0 3,-1.3 3,-2.8 V 4.8 C 50,3.3 48.5,2 47,2 M 46.2,5.8 V 34.6 H 3.8 V 5.8 L 46.2,5.7 Z" - id="path1985" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> - <polygon - points="3.8,34.7 3.8,5.8 46.2,5.8 46.1,5.8 46.1,34.7 " - id="polygon1987" - style="fill:#59b4d9" /> - <path - d="m 3.8,34.7 v 0 V 5.8 L 42.5,5.7 47,2 c 0,0 0,0 0,0 H 2.7 C 1.2,2 0,3.3 0,4.8 v 30.9 c 0,1.5 1.2,2.8 2.7,2.8 h 1.1 l 4.6,-3.8 z" - id="path1989" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#ffffff" /> - <polygon - points="3.8,5.8 42.5,5.8 42.5,5.8 3.8,5.8 3.8,34.7 " - id="polygon1991" - style="fill:#59b4d9" /> - <path - d="m 25.5,4.1 c 0,0.4 -0.3,0.7 -0.7,0.7 -0.4,0 -0.7,-0.3 -0.7,-0.7 0,-0.4 0.3,-0.7 0.7,-0.7 0.4,0 0.7,0.3 0.7,0.7" - id="path1993" - inkscape:connector-curvature="0" - style="fill:#b8d432" /> -</g> -<g - id="g2011" - transform="translate(0,-2)"> - <polygon - points="18,27.8 19.7,25.1 18.8,21.2 18.2,18.4 19.6,15.5 26.3,13.8 28.5,15.4 30.3,18.7 29.3,25.6 32.6,34.1 32.9,34.7 14.2,34.7 15,32.7 " - id="polygon1997" - style="clip-rule:evenodd;fill:#ffffff;fill-rule:evenodd" /> - <g - id="g2009"> - <path - d="m 28.8,24.9 c 0,0 2.7,-0.5 2.4,-2.8 -0.3,-2 -2.5,-0.6 -3.6,-0.8 -1.1,-0.2 -1.6,-0.5 -1.6,-0.5 0,0 -0.8,-0.1 -1.2,-0.4 -0.4,-0.3 -0.5,-0.4 -0.7,-0.4 -0.2,0 -0.7,0.1 -0.9,0.1 -0.2,0.1 -1.1,0.7 -1.4,0.9 -0.3,0.2 -1.4,0.8 -1.6,0.9 -0.1,0.1 -1.4,1.1 -0.9,1.6 0.5,0.5 1.1,2.6 1.7,2.9 0.7,0.4 1.6,0.7 2.2,0.6 2.1,-0.1 3.3,-0.6 3.3,-0.6 0,0 1.8,-0.5 2.3,-1.5 z" - id="path1999" - inkscape:connector-curvature="0" - style="clip-rule:evenodd;fill:#fcd116;fill-rule:evenodd" /> - <g - id="g2007"> - <path - d="m 13,34.7 c 0.7,-1.6 1.5,-3.1 2.5,-4.4 1.4,-1.9 3.3,-3.6 2.9,-7.5 -0.1,-1.5 -0.8,-2.9 -0.9,-4.3 0,-2.2 1,-4.7 2.4,-5.8 3.1,-2.6 8.6,-1.7 10.6,1.2 0.7,1 1.2,2.8 1.4,4.1 0.4,3.9 0.4,7.6 2.4,10.8 1.2,1.9 2.9,3.6 3.9,6 h -7 c -0.4,-0.8 -0.8,-1.6 -1.1,-2.5 -0.4,-1 -0.8,-2.2 -1.2,-3.3 -0.5,-1.2 -0.7,-2.6 -1.2,-3.3 -0.2,-0.3 2.7,-1 2.7,-2.8 -0.3,-2 -2.3,-1.3 -3.1,-1.5 0.8,-0.7 2,-1.8 1.8,-3.1 -0.2,-1 -1.8,-2.3 -3.4,-1.6 -1.2,0.5 -1.1,2.5 -1.3,3.7 -0.7,-0.1 -1.5,0.1 -1.5,-0.2 -0.1,-1.5 -0.3,-3.1 -1.7,-3.2 -2.4,-0.2 -3.9,2.6 -0.9,4.9 -0.3,0.5 -1,0.5 -0.9,1.4 2.2,2.7 6.1,0.3 8.9,-0.3 -2,1.3 -5.1,2.5 -8.3,1.6 -0.2,1.8 1.9,2.7 2.8,2.6 1.5,0 3.6,-0.3 4.6,-1.2 -1.8,1.5 -4.6,2 -7.3,0.7 -1.1,3.2 -3.5,5.2 -5,8 z" - id="path2001" - inkscape:connector-curvature="0" - style="clip-rule:evenodd;fill:#1e1e1e;fill-rule:evenodd" /> - <path - d="m 27.2,19.3 c 0.2,1.1 -0.5,1.4 -0.8,1.9 -0.4,-0.1 -0.7,-0.3 -1.1,-0.4 -0.1,-1.2 1,-2.6 1.9,-1.5 z" - id="path2003" - inkscape:connector-curvature="0" - style="clip-rule:evenodd;fill:#1e1e1e;fill-rule:evenodd" /> - <path - d="m 22.2,20.8 c -0.3,0.2 -0.6,0.4 -0.9,0.5 -0.5,-0.4 -1,-0.8 -0.9,-1.4 0.3,-1.2 1.9,-0.6 1.8,0.9 z" - id="path2005" - inkscape:connector-curvature="0" - style="clip-rule:evenodd;fill:#1e1e1e;fill-rule:evenodd" /> - </g> - </g> -</g> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" height="46.1" width="50"><path d="M32.4 36.5H18.8c1.6 5.8-.6 6.6-10.2 6.6v3h32.6v-3c-9.5 0-10.4-.8-8.8-6.6" fill="#7a7a7a"/><path d="M47 0H2.7C1.2 0 0 1.3 0 2.8v30.9c0 1.5 1.2 2.8 2.7 2.8H47c1.5 0 3-1.3 3-2.8V2.8C50 1.3 48.5 0 47 0m-.8 3.8v28.8H3.8V3.8l42.4-.1z" fill="#a0a1a2"/><path d="M3.8 32.7V3.8h42.3v28.9z" fill="#59b4d9"/><path d="M3.8 32.7V3.8l38.7-.1L47 0H2.7C1.2 0 0 1.3 0 2.8v30.9c0 1.5 1.2 2.8 2.7 2.8h1.1l4.6-3.8z" opacity=".2" fill="#fff"/><path d="M3.8 3.8v28.9z" fill="#59b4d9"/><path d="M25.5 2.1a.68.68 0 0 1-.7.7.68.68 0 0 1-.7-.7.68.68 0 0 1 .7-.7.68.68 0 0 1 .7.7" fill="#b8d432"/><g fill-rule="evenodd"><path d="M18 25.8l1.7-2.7-.9-3.9-.6-2.8 1.4-2.9 6.7-1.7 2.2 1.6 1.8 3.3-1 6.9 3.3 8.5.3.6H14.2l.8-2z" fill="#fff"/><path d="M28.8 22.9s2.7-.5 2.4-2.8c-.3-2-2.5-.6-3.6-.8s-1.6-.5-1.6-.5-.8-.1-1.2-.4-.5-.4-.7-.4-.7.1-.9.1c-.2.1-1.1.7-1.4.9s-1.4.8-1.6.9c-.1.1-1.4 1.1-.9 1.6s1.1 2.6 1.7 2.9c.7.4 1.6.7 2.2.6 2.1-.1 3.3-.6 3.3-.6s1.8-.5 2.3-1.5z" fill="#fcd116"/><path d="M13 32.7c.7-1.6 1.5-3.1 2.5-4.4 1.4-1.9 3.3-3.6 2.9-7.5-.1-1.5-.8-2.9-.9-4.3 0-2.2 1-4.7 2.4-5.8C23 8.1 28.5 9 30.5 11.9c.7 1 1.2 2.8 1.4 4.1.4 3.9.4 7.6 2.4 10.8 1.2 1.9 2.9 3.6 3.9 6h-7c-.4-.8-.8-1.6-1.1-2.5-.4-1-.8-2.2-1.2-3.3-.5-1.2-.7-2.6-1.2-3.3-.2-.3 2.7-1 2.7-2.8-.3-2-2.3-1.3-3.1-1.5.8-.7 2-1.8 1.8-3.1-.2-1-1.8-2.3-3.4-1.6-1.2.5-1.1 2.5-1.3 3.7-.7-.1-1.5.1-1.5-.2-.1-1.5-.3-3.1-1.7-3.2-2.4-.2-3.9 2.6-.9 4.9-.3.5-1 .5-.9 1.4 2.2 2.7 6.1.3 8.9-.3-2 1.3-5.1 2.5-8.3 1.6-.2 1.8 1.9 2.7 2.8 2.6 1.5 0 3.6-.3 4.6-1.2-1.8 1.5-4.6 2-7.3.7-1.1 3.2-3.5 5.2-5 8zm14.2-15.4c.2 1.1-.5 1.4-.8 1.9-.4-.1-.7-.3-1.1-.4-.1-1.2 1-2.6 1.9-1.5zm-5 1.5c-.3.2-.6.4-.9.5-.5-.4-1-.8-.9-1.4.3-1.2 1.9-.6 1.8.9z" fill="#1e1e1e"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/VirtualMachineWindows.svg b/src/main/webapp/img/lib/mscae/VirtualMachineWindows.svg index 0b053b17cdb600224e5480e82382e6969f68c273..a675cd29ddcfe90e32701ec766e8b1177779be97 100644 --- a/src/main/webapp/img/lib/mscae/VirtualMachineWindows.svg +++ b/src/main/webapp/img/lib/mscae/VirtualMachineWindows.svg @@ -1,102 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="46.099998" - width="50" - viewBox="0 0 50 46.099998" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="VirtualMachineWindows.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata2266"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs2264" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview2262" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="25" - inkscape:cy="23.1" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<g - id="g2249" - transform="translate(0,-2)"> - <path - d="M 32.4,38.5 H 31.2 19.4 18.8 c 1.6,5.8 -0.6,6.6 -10.2,6.6 v 3 h 12.2 8.9 11.5 v -3 c -9.5,0 -10.4,-0.8 -8.8,-6.6" - id="path2237" - inkscape:connector-curvature="0" - style="fill:#7a7a7a" /> - <path - d="M 47,2 H 2.7 C 1.2,2 0,3.3 0,4.8 v 30.9 c 0,1.5 1.2,2.8 2.7,2.8 H 47 c 1.5,0 3,-1.3 3,-2.8 V 4.8 C 50,3.3 48.5,2 47,2 M 46.2,5.8 V 34.6 H 3.8 V 5.8 L 46.2,5.7 Z" - id="path2239" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> - <polygon - points="3.8,34.7 3.8,5.8 46.2,5.8 46.1,5.8 46.1,34.7 " - id="polygon2241" - style="fill:#59b4d9" /> - <path - d="m 3.8,34.7 v 0 V 5.8 L 42.5,5.7 47,2 c 0,0 0,0 0,0 H 2.7 C 1.2,2 0,3.3 0,4.8 v 30.9 c 0,1.5 1.2,2.8 2.7,2.8 h 1.1 l 4.6,-3.8 z" - id="path2243" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#ffffff" /> - <polygon - points="3.8,5.8 42.5,5.8 42.5,5.8 3.8,5.8 3.8,34.7 " - id="polygon2245" - style="fill:#59b4d9" /> - <path - d="m 25.5,4.1 c 0,0.4 -0.3,0.7 -0.7,0.7 -0.4,0 -0.7,-0.3 -0.7,-0.7 0,-0.4 0.3,-0.7 0.7,-0.7 0.4,0 0.7,0.3 0.7,0.7" - id="path2247" - inkscape:connector-curvature="0" - style="fill:#b8d432" /> -</g> -<g - id="g2259" - transform="translate(0,-2)"> - <polygon - points="35.7,9.3 25.9,11 25.9,19 35.7,19 " - id="polygon2251" - style="fill:#ffffff" /> - <polygon - points="13.7,12.4 13.7,19 23.5,19 23.5,11.1 " - id="polygon2253" - style="fill:#ffffff" /> - <polygon - points="13.7,28.2 23.5,29.5 23.5,21.5 13.7,21.5 " - id="polygon2255" - style="fill:#ffffff" /> - <polygon - points="35.7,31.3 35.7,21.5 25.9,21.5 25.9,29.6 " - id="polygon2257" - style="fill:#ffffff" /> -</g> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" height="46.1" width="50"><path d="M32.4 36.5H18.8c1.6 5.8-.6 6.6-10.2 6.6v3h32.6v-3c-9.5 0-10.4-.8-8.8-6.6" fill="#7a7a7a"/><path d="M47 0H2.7C1.2 0 0 1.3 0 2.8v30.9c0 1.5 1.2 2.8 2.7 2.8H47c1.5 0 3-1.3 3-2.8V2.8C50 1.3 48.5 0 47 0m-.8 3.8v28.8H3.8V3.8l42.4-.1z" fill="#a0a1a2"/><path d="M3.8 32.7V3.8h42.3v28.9z" fill="#59b4d9"/><path d="M3.8 32.7V3.8l38.7-.1L47 0H2.7C1.2 0 0 1.3 0 2.8v30.9c0 1.5 1.2 2.8 2.7 2.8h1.1l4.6-3.8z" opacity=".2" fill="#fff"/><path d="M3.8 3.8v28.9z" fill="#59b4d9"/><path d="M25.5 2.1a.68.68 0 0 1-.7.7.68.68 0 0 1-.7-.7.68.68 0 0 1 .7-.7.68.68 0 0 1 .7.7" fill="#b8d432"/><path d="M35.7 7.3L25.9 9v8h9.8zm-22 3.1V17h9.8V9.1zm0 15.8l9.8 1.3v-8h-9.8zm22 3.1v-9.8h-9.8v8.1z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Virtual_Clusters.svg b/src/main/webapp/img/lib/mscae/Virtual_Clusters.svg new file mode 100644 index 0000000000000000000000000000000000000000..0bd309ae7cdd519a83e2efe84a2c74fa2ac08890 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Virtual_Clusters.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="30032" height="31001"><path d="M9687 31000h10656c1066 0 1938-871 1938-1937V9688c0-1066-877-1937-1938-1937l-10656-1c-1061 0-1938 877-1938 1938v19374c0 1061 872 1938 1938 1938z" fill="#777"/><path d="M11625 9687c-1070 0-1938 868-1938 1938s868 1937 1938 1937h6781c1070 0 1937-867 1937-1937s-867-1937-1937-1937z"/><use xlink:href="#B" fill="#b8d432"/><path d="M11625 15501c-1070 0-1938 867-1938 1937s868 1937 1938 1937h6781c1070 0 1937-867 1937-1937s-867-1938-1937-1938z"/><use xlink:href="#B" y="5813" fill="#b8d432"/><path d="M23250 23250h4844c1066 0 1938-872 1938-1937V1938c0-1066-877-1938-1938-1938H17438c-1061 0-1938 877-1938 1938v4844h4844c1599 0 2906 1307 2906 2906z" fill="#777"/><use xlink:href="#C"/><use xlink:href="#D" fill="#b8d432"/><path d="M23250 11625h2907c1070 0 1937-868 1937-1938 0-1069-867-1937-1937-1937l-3652 1c463 515 745 1194 745 1937z"/><path d="M1938 23250h4843V9688c0-1599 1308-2906 2906-2906h4845V1938c0-1066-877-1938-1938-1938H1938C877 0 0 877 0 1938v19374c0 1061 872 1938 1938 1938z" fill="#777"/><use xlink:href="#C" x="-15500"/><use xlink:href="#D" x="-15500" fill="#b8d432"/><path d="M3875 7751c-1070 0-1937 867-1937 1937s867 1937 1937 1937h2906V9688c0-743 283-1423 745-1938z"/><use xlink:href="#B" x="-7750" y="-1937" fill="#b8d432"/><path d="M25187 31001c1606 0 2907-1301 2907-2907 0-1731-1498-3068-3213-2890 924-4482-2493-8735-7116-8735-3028 0-5622 1851-6714 4484-3161-712-6207 1684-6207 4962 0 2808 2277 5085 5085 5085z" fill="#c0ecfc"/><path d="M24882 22268c-678-3310-3607-5799-7117-5799-3028 0-5622 1851-6714 4484-361-81-736-124-1122-124-2808 0-5085 2277-5085 5086 0 2808 2277 5085 5085 5085h3420c-2280 0-4128-1848-4128-4128s1848-4129 4128-4129c313 0 618 35 911 101 886-2136 2992-3639 5449-3639 2230 0 4171 1237 5173 3063z" fill="#66d7f7"/><defs ><path id="B" d="M11625 12594c535 0 969-434 969-969s-434-969-969-969-969 434-969 969 434 969 969 969z"/><path id="C" d="M19375 1937c-1070 0-1937 868-1937 1938 0 1069 867 1937 1937 1937h6782c1070 0 1937-867 1937-1937s-867-1937-1937-1937z"/><path id="D" d="M19375 4843c535 0 969-434 969-968 0-535-434-969-969-969s-969 434-969 969c0 534 434 968 969 968z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Virtual_Datacenter.svg b/src/main/webapp/img/lib/mscae/Virtual_Datacenter.svg index 7681d9eb2c79e67251225336feb2ad7f3967b101..a50d3ee763248cfc49005a05ef19c4a8fe9472fd 100644 --- a/src/main/webapp/img/lib/mscae/Virtual_Datacenter.svg +++ b/src/main/webapp/img/lib/mscae/Virtual_Datacenter.svg @@ -1,36 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#59B4D9" d="M40.217,12.583c-0.012,0-0.023,0.002-0.035,0.002C39.821,5.631,34.1,0.1,27.075,0.1 - c-5.134,0-9.569,2.958-11.731,7.262c-0.899-0.207-1.832-0.327-2.794-0.327c-6.876,0-12.45,5.589-12.45,12.483 - C0.1,26.411,5.674,32,12.55,32h27.667c5.348,0,9.683-4.347,9.683-9.709C49.9,16.929,45.565,12.583,40.217,12.583z"/> -<path opacity="0.2" fill="#FFFFFF" d="M40.217,12.583c-0.012,0-0.023,0.002-0.035,0.002C39.821,5.631,34.1,0.1,27.075,0.1 - c-5.134,0-9.569,2.958-11.731,7.262c-0.899-0.207-1.832-0.327-2.794-0.327c-6.876,0-12.45,5.589-12.45,12.483 - C0.1,26.411,5.674,32,12.55,32h27.667c5.348,0,9.683-4.347,9.683-9.709C49.9,16.929,45.565,12.583,40.217,12.583z"/> -<g> - <path opacity="0.4" fill="#FFFFFF" d="M12.55,32H28V17.522C28,16.132,26.854,15,25.444,15H11.556C10.146,15,9,16.132,9,17.522 - v13.956C10.126,31.813,11.316,32,12.55,32z"/> - <path fill="#7A7A7A" d="M27,45.477C27,46.318,26.304,47,25.444,47H11.556C10.696,47,10,46.318,10,45.477V17.523 - C10,16.682,10.696,16,11.556,16h13.888C26.304,16,27,16.682,27,17.523V45.477z"/> - <g> - <path fill="#1E1E1E" d="M12.201,33c0-1.057,0.857-1.915,1.915-1.915h8.768c1.057,0,1.915,0.857,1.915,1.915l0,0 - c0,1.057-0.857,1.915-1.915,1.915h-8.768C13.059,34.915,12.201,34.058,12.201,33L12.201,33z"/> - <circle fill="#B8D432" cx="14.5" cy="33" r="1.285"/> - <path fill="#1E1E1E" d="M12.201,27c0-1.057,0.857-1.915,1.915-1.915h8.768c1.057,0,1.915,0.857,1.915,1.915l0,0 - c0,1.057-0.857,1.915-1.915,1.915h-8.768C13.059,28.915,12.201,28.057,12.201,27L12.201,27z"/> - <circle fill="#B8D432" cx="14.5" cy="27" r="1.285"/> - <path fill="#1E1E1E" d="M12.201,21c0-1.057,0.857-1.915,1.915-1.915h8.768c1.057,0,1.915,0.857,1.915,1.915l0,0 - c0,1.057-0.857,1.915-1.915,1.915h-8.768C13.059,22.915,12.201,22.058,12.201,21L12.201,21z"/> - <circle fill="#B8D432" cx="14.5" cy="21" r="1.285"/> - </g> -</g> -<g> - <path fill="#59B4D9" d="M33.5,27.808L33.5,27.808H24v18.386c0,1.893,4.184,3.429,9.37,3.454v0.002h0.113 - c0.006,0,0.011,0.001,0.017,0.001v-0.001l0,0c5.246,0,9.5-1.547,9.5-3.456V27.808H33.5z"/> - <path fill="#3999C6" d="M33.37,49.65c5.246,0,9.629-1.547,9.629-3.456V27.808l-9.63,0.25L33.37,49.65z"/> - <path fill="#FFFFFF" d="M43,27.808c0,1.909-4.254,3.706-9.5,3.706S24,29.716,24,27.808c0-1.909,4.254-3.456,9.5-3.456 - S43,25.899,43,27.808"/> - <path fill="#59B4D9" d="M41.058,27.764c0,1.174-3.384,2.125-7.558,2.125s-7.558-0.951-7.558-2.125c0-1.174,3.384-2.125,7.558-2.125 - S41.058,26.59,41.058,27.764"/> -</g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="50"><use xlink:href="#B" fill="#59b4d9"/><g fill="#fff"><use xlink:href="#B" opacity=".2"/><path opacity=".4" d="M12.55 32H28V17.522c0-1.4-1.146-2.522-2.556-2.522H11.556C10.146 15 9 16.132 9 17.522v13.956c1.126.335 2.316.522 3.55.522z"/></g><path fill="#7a7a7a" d="M27 45.477c0 .84-.696 1.523-1.556 1.523H11.556c-.86 0-1.556-.682-1.556-1.523V17.523c0-.84.696-1.523 1.556-1.523h13.888c.86 0 1.556.682 1.556 1.523v27.954z"/><use xlink:href="#C" fill="#1e1e1e"/><circle fill="#b8d432" cx="14.5" cy="33" r="1.285"/><path fill="#1e1e1e" d="M12.2 27c0-1.057.857-1.915 1.915-1.915h8.768c1.057 0 1.915.857 1.915 1.915s-.857 1.915-1.915 1.915h-8.768c-1.057 0-1.915-.858-1.915-1.915z"/><circle fill="#b8d432" cx="14.5" cy="27" r="1.285"/><use xlink:href="#C" y="-12" fill="#1e1e1e"/><circle fill="#b8d432" cx="14.5" cy="21" r="1.285"/><path fill="#59b4d9" d="M33.5 27.808H24v18.386c0 1.893 4.184 3.43 9.37 3.454v.002h.13c5.246 0 9.5-1.547 9.5-3.456V27.808h-9.5z"/><path fill="#3999c6" d="M33.37 49.65c5.246 0 9.63-1.547 9.63-3.456V27.808l-9.63.25V49.65z"/><path fill="#fff" d="M43 27.808c0 1.91-4.254 3.706-9.5 3.706S24 29.716 24 27.808s4.254-3.456 9.5-3.456S43 25.9 43 27.808"/><path fill="#59b4d9" d="M41.058 27.764c0 1.174-3.384 2.125-7.558 2.125s-7.558-.95-7.558-2.125 3.384-2.125 7.558-2.125 7.558.95 7.558 2.125"/><defs ><path id="B" d="M40.217 12.583c-.012 0-.023.002-.035.002C39.82 5.63 34.1.1 27.075.1c-5.134 0-9.57 2.958-11.73 7.262-.9-.207-1.832-.327-2.794-.327C5.674 7.035.1 12.624.1 19.518S5.674 32 12.55 32h27.667c5.348 0 9.683-4.347 9.683-9.71s-4.335-9.708-9.683-9.708z"/><path id="C" d="M12.2 33c0-1.057.857-1.915 1.915-1.915h8.768c1.057 0 1.915.857 1.915 1.915s-.857 1.915-1.915 1.915h-8.768c-1.057 0-1.915-.857-1.915-1.915z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Virtual_Machine.svg b/src/main/webapp/img/lib/mscae/Virtual_Machine.svg index c43cdcb176a32782e450425940ac1fd703123ecc..01b1a23a8de4a8cb83b59a9c9ea778b74eb791cf 100644 --- a/src/main/webapp/img/lib/mscae/Virtual_Machine.svg +++ b/src/main/webapp/img/lib/mscae/Virtual_Machine.svg @@ -1,92 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50.000999" - height="46.148998" - viewBox="0 0 50.000999 46.148998" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure Virtual Machine_COLOR.svg"><metadata - id="metadata27"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs25" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview23" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="10.363697" - inkscape:cx="21.046262" - inkscape:cy="17.626623" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 32.426,36.534 31.235,36.534 19.445,36.534 18.83,36.534 C 20.464,42.302 18.269,43.129 8.655,43.129 L 8.655,46.149 20.882,46.149 29.809,46.149 41.347,46.149 41.347,43.129 C 31.733,43.129 30.79,42.305 32.426,36.534" - id="path3" - inkscape:connector-curvature="0" - style="fill:#7a7a7a" /><path - d="M 46.98,0 2.718,0 C 1.214,0 0.001,1.345 0.001,2.847 L 0.001,33.713 C 0.001,35.206 1.214,36.536 2.718,36.536 L 46.98,36.536 C 48.481,36.536 50.001,35.206 50.001,33.713 L 50.001,2.847 C 50.001,1.341 48.481,0 46.98,0" - id="path5" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /><path - enable-background="new " - d="M 47.011,0.003 C 47,0.003 46.99,10e-4 46.98,10e-4 L 2.717,10e-4 C 1.213,10e-4 0,1.345 0,2.848 L 0,33.713 C 0,35.207 1.213,36.537 2.717,36.537 L 3.77,36.537 47.011,0.003 Z" - id="path7" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#ffffff" /><polygon - points="3.79,5.848 46.098,5.848 46.098,34.689 3.79,34.689 " - id="polygon9" - style="fill:#59b4d9" - transform="translate(0,-2)" /><polygon - points="42.528,5.791 42.53,5.791 3.79,5.849 3.79,34.689 3.848,34.689 3.848,5.849 " - id="polygon11" - style="fill:#59b4d9" - transform="translate(0,-2)" /><rect - x="8.6549997" - y="43.127998" - width="32.692001" - height="3.0209999" - id="rect13" - style="fill:#a0a1a2" /><path - d="M 25.518,2.095 C 25.518,2.487 25.2,2.805 24.808,2.805 24.415,2.805 24.099,2.487 24.099,2.095 24.099,1.702 24.415,1.385 24.808,1.385 25.2,1.385 25.518,1.702 25.518,2.095" - id="path15" - inkscape:connector-curvature="0" - style="fill:#b8d432" /><path - d="M 25.546,17.394 C 25.501,17.394 25.455,17.38 25.412,17.356 L 16.608,12.274 C 16.527,12.226 16.476,12.137 16.476,12.043 16.476,11.948 16.527,11.86 16.608,11.813 L 25.359,6.764 C 25.441,6.718 25.541,6.718 25.622,6.764 L 34.429,11.848 C 34.511,11.895 34.56,11.983 34.56,12.078 34.56,12.174 34.511,12.261 34.429,12.308 L 25.681,17.356 C 25.638,17.38 25.595,17.394 25.546,17.394" - id="path17" - inkscape:connector-curvature="0" - style="fill:#ffffff" /><path - enable-background="new " - d="M 24.281,29.746 C 24.231,29.746 24.186,29.734 24.147,29.71 L 15.369,24.644 C 15.284,24.597 15.233,24.511 15.233,24.413 L 15.233,14.247 C 15.233,14.151 15.284,14.064 15.369,14.016 15.45,13.967 15.55,13.967 15.637,14.016 L 24.414,19.08 C 24.492,19.13 24.544,19.217 24.544,19.313 L 24.544,29.479 C 24.544,29.576 24.492,29.662 24.414,29.71 24.37,29.734 24.324,29.746 24.281,29.746" - id="path19" - inkscape:connector-curvature="0" - style="opacity:0.7;fill:#ffffff" /><path - enable-background="new " - d="M 26.766,29.746 C 26.718,29.746 26.673,29.734 26.628,29.71 26.55,29.662 26.499,29.576 26.499,29.479 L 26.499,19.377 C 26.499,19.283 26.55,19.195 26.628,19.146 L 35.405,14.082 C 35.489,14.034 35.587,14.034 35.669,14.082 35.753,14.129 35.804,14.217 35.804,14.312 L 35.804,24.413 C 35.804,24.511 35.753,24.597 35.669,24.644 L 26.895,29.71 C 26.859,29.734 26.812,29.746 26.766,29.746" - id="path21" - inkscape:connector-curvature="0" - style="opacity:0.4;fill:#ffffff" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50.001" height="46.149"><path d="M32.426 36.534H18.83c1.634 5.768-.56 6.595-10.175 6.595v3.02h32.692v-3.02c-9.614 0-10.557-.824-8.92-6.595" fill="#7a7a7a"/><path d="M46.98 0H2.718C1.214 0 .001 1.345.001 2.847v30.866c0 1.493 1.213 2.823 2.717 2.823H46.98c1.5 0 3.02-1.33 3.02-2.823V2.847C50 1.34 48.48 0 46.98 0" fill="#a0a1a2"/><path d="M47.01.003c-.01 0-.02-.002-.03-.002H2.717C1.213.001 0 1.345 0 2.848v30.865c0 1.494 1.213 2.824 2.717 2.824H3.77L47.01.003z" opacity=".2" fill="#fff"/><g fill="#59b4d9"><path d="M3.8 3.848h42.308v28.84H3.8z"/><path d="M42.528 3.79h.002L3.8 3.85v28.84h.058V3.85z"/></g><path d="M8.655 43.128h32.692v3.02H8.655z" fill="#a0a1a2"/><path d="M25.518 2.095a.71.71 0 0 1-.71.71.71.71 0 0 1-.709-.71.71.71 0 0 1 .709-.71.71.71 0 0 1 .71.71" fill="#b8d432"/><g fill="#fff"><path d="M25.546 17.394c-.045 0-.09-.014-.134-.038l-8.804-5.082a.27.27 0 0 1-.132-.231c0-.095.05-.183.132-.23l8.75-5.05c.082-.046.182-.046.263 0l8.807 5.084c.082.047.13.135.13.23s-.05.183-.13.23l-8.748 5.048a.27.27 0 0 1-.135.038"/><path d="M24.28 29.746c-.05 0-.095-.012-.134-.036l-8.778-5.066a.26.26 0 0 1-.136-.231V14.247c0-.096.05-.183.136-.23s.18-.05.268 0l8.777 5.064a.28.28 0 0 1 .13.233V29.48c0 .097-.052.183-.13.23a.28.28 0 0 1-.133.036" opacity=".7"/><path d="M26.766 29.746c-.048 0-.093-.012-.138-.036a.27.27 0 0 1-.129-.231V19.377c0-.094.05-.182.13-.23l8.777-5.064a.26.26 0 0 1 .264 0c.084.047.135.135.135.23v10.1a.26.26 0 0 1-.135.231L26.895 29.7c-.036.024-.083.036-.13.036" opacity=".4"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Virtual_Machine_2.svg b/src/main/webapp/img/lib/mscae/Virtual_Machine_2.svg index ee953fd93e41b609003df81de2b9967552ed4bec..1cfe126e498b2456c9364c3a7d8d1fdb87966017 100644 --- a/src/main/webapp/img/lib/mscae/Virtual_Machine_2.svg +++ b/src/main/webapp/img/lib/mscae/Virtual_Machine_2.svg @@ -1,67 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="46.099998" - viewBox="0 0 50 46.099998" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure Virtual Machine 2_COLOR.svg"><metadata - id="metadata17"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs15" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview13" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="7.3282407" - inkscape:cx="54.783715" - inkscape:cy="36.556712" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 47,0 2.7,0 C 1.2,0 0,1.3 0,2.8 L 0,33.7 C 0,35.2 1.2,36.5 2.7,36.5 L 18.8,36.5 C 20.4,42.3 18.2,43.1 8.6,43.1 L 8.6,46.1 20.8,46.1 29.7,46.1 41.2,46.1 41.2,43.1 C 31.6,43.1 30.6,42.3 32.3,36.5 L 47,36.5 C 48.5,36.5 50,35.2 50,33.7 L 50,2.8 C 50,1.3 48.5,0 47,0 Z" - id="path3" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><polygon - points="3.8,5.8 46.1,5.8 46.1,34.7 3.8,34.7 " - id="polygon5" - style="fill:#ffffff" - transform="translate(0,-2)" /><path - d="M 25.5,17.4 C 25.5,17.4 25.4,17.4 25.4,17.4 L 16.6,12.3 C 16.5,12.3 16.5,12.2 16.5,12.1 16.5,12 16.6,11.9 16.6,11.9 L 25.4,6.9 C 25.5,6.9 25.6,6.9 25.7,6.9 L 34.5,12 C 34.6,12 34.6,12.1 34.6,12.2 34.6,12.3 34.6,12.4 34.5,12.4 L 25.8,17.4 C 25.6,17.4 25.6,17.4 25.5,17.4" - id="path7" - inkscape:connector-curvature="0" - style="fill:#0072c6" /><path - d="M 24.3,29.7 C 24.3,29.7 24.2,29.7 24.2,29.7 L 15.4,24.6 C 15.3,24.6 15.3,24.5 15.3,24.4 L 15.3,14.2 C 15.3,14.1 15.4,14 15.4,14 15.5,14 15.6,14 15.7,14 L 24.5,19.1 C 24.6,19.1 24.6,19.2 24.6,19.3 L 24.6,29.5 C 24.6,29.6 24.5,29.7 24.5,29.7 24.4,29.7 24.3,29.7 24.3,29.7" - id="path9" - inkscape:connector-curvature="0" - style="fill:#0072c6" /><path - d="M 26.8,29.7 C 26.8,29.7 26.7,29.7 26.7,29.7 26.6,29.7 26.6,29.6 26.6,29.5 L 26.6,19.4 C 26.6,19.3 26.7,19.2 26.7,19.2 L 35.5,14.1 C 35.6,14.1 35.7,14.1 35.8,14.1 35.9,14.1 35.9,14.2 35.9,14.3 L 35.9,24.4 C 35.9,24.5 35.8,24.6 35.8,24.6 L 27,29.7 C 26.9,29.7 26.8,29.7 26.8,29.7" - id="path11" - inkscape:connector-curvature="0" - style="fill:#0072c6" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="46.1"><path d="M47 0H2.7C1.2 0 0 1.3 0 2.8v30.9c0 1.5 1.2 2.8 2.7 2.8h16.1c1.6 5.8-.6 6.6-10.2 6.6v3h32.6v-3c-9.6 0-10.6-.8-8.9-6.6H47c1.5 0 3-1.3 3-2.8V2.8C50 1.3 48.5 0 47 0z" fill="#59b4d9"/><path d="M3.8 3.8h42.3v28.9H3.8z" fill="#fff"/><path d="M25.5 17.4h-.1l-8.8-5.1c-.1 0-.1-.1-.1-.2s.1-.2.1-.2l8.8-5h.3l8.8 5.1c.1 0 .1.1.1.2s0 .2-.1.2l-8.7 5h-.3m-1.2 12.3h-.1l-8.8-5.1c-.1 0-.1-.1-.1-.2V14.2c0-.1.1-.2.1-.2h.3l8.8 5.1c.1 0 .1.1.1.2v10.2c0 .1-.1.2-.1.2h-.2m2.5 0h-.1c-.1 0-.1-.1-.1-.2V19.4c0-.1.1-.2.1-.2l8.8-5.1h.3c.1 0 .1.1.1.2v10.1c0 .1-.1.2-.1.2L27 29.7h-.2" fill="#0072c6"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Virtual_Machines_Availability_Set.svg b/src/main/webapp/img/lib/mscae/Virtual_Machines_Availability_Set.svg index 942dcb8e2d3e4321953c930c5ad79cded3ff55a3..371b0a19a5e82d0e084ba1070be74c4cedb0d714 100644 --- a/src/main/webapp/img/lib/mscae/Virtual_Machines_Availability_Set.svg +++ b/src/main/webapp/img/lib/mscae/Virtual_Machines_Availability_Set.svg @@ -1,50 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<rect x="21.667" fill="#59B4D9" width="6.667" height="5"/> -<rect x="11.667" fill="#59B4D9" width="6.667" height="5"/> -<path fill="#59B4D9" d="M45,45h-3.333v5h5C48.508,50,50,48.507,50,46.667v-5h-5V45z"/> -<rect y="31.667" fill="#59B4D9" width="5" height="6.667"/> -<rect x="21.667" y="45" fill="#59B4D9" width="6.667" height="5"/> -<rect x="45" y="31.667" fill="#59B4D9" width="5" height="6.667"/> -<rect x="31.667" y="45" fill="#59B4D9" width="6.667" height="5"/> -<rect x="11.667" y="45" fill="#59B4D9" width="6.667" height="5"/> -<path fill="#59B4D9" d="M5,45v-3.333H0v5C0,48.508,1.493,50,3.333,50h5v-5H5z"/> -<rect y="11.667" fill="#59B4D9" width="5" height="6.667"/> -<path fill="#59B4D9" d="M5,5h3.333V0h-5C1.493,0,0,1.493,0,3.333v5h5V5z"/> -<rect y="21.667" fill="#59B4D9" width="5" height="6.667"/> -<rect x="45" y="21.667" fill="#59B4D9" width="5" height="6.667"/> -<rect x="45" y="11.666" fill="#59B4D9" width="5" height="6.667"/> -<rect x="31.666" y="0" fill="#59B4D9" width="6.667" height="5"/> -<path fill="#59B4D9" d="M45,5v3.333h5v-5C50,1.492,48.507,0,46.667,0l-5,0v5H45z"/> -<path fill="#A0A1A2" d="M35.328,8.959H9.949c-0.863,0-1.558,0.77-1.558,1.63v17.675c0,0.855,0.695,1.617,1.558,1.617h25.379 - c0.86,0,1.732-0.762,1.732-1.617V10.59C37.061,9.727,36.189,8.959,35.328,8.959"/> -<path opacity="0.2" fill="#FFFFFF" enable-background="new " d="M35.346,8.961c-0.006,0-0.012-0.002-0.018-0.002H9.949 - c-0.863,0-1.558,0.77-1.558,1.63v17.674c0,0.855,0.695,1.617,1.558,1.617h0.604L35.346,8.961z"/> -<polygon fill="#59B4D9" points="34.881,27.678 10.564,27.678 10.564,11.163 34.881,11.127 "/> -<path fill="#B8D432" d="M23.022,10.159c0,0.225-0.182,0.406-0.407,0.406c-0.225,0-0.406-0.182-0.406-0.406 - c0-0.225,0.181-0.406,0.406-0.406C22.84,9.752,23.022,9.933,23.022,10.159"/> -<path fill="#FFFFFF" d="M23.039,18.919c-0.026,0-0.052-0.008-0.077-0.022l-5.049-2.91c-0.046-0.027-0.075-0.078-0.075-0.132 - c0-0.054,0.029-0.105,0.075-0.132l5.018-2.891c0.047-0.026,0.104-0.026,0.151,0l5.05,2.912c0.047,0.027,0.075,0.078,0.075,0.132 - c0,0.055-0.028,0.105-0.075,0.132l-5.016,2.89C23.091,18.912,23.067,18.919,23.039,18.919"/> -<path fill="#7A7A7A" d="M31.531,35.535h-0.683h-6.76h-0.353c0.937,3.303-0.322,3.776-5.834,3.776v1.73h7.011h5.119h6.616v-1.729 - C31.134,39.311,30.593,38.84,31.531,35.535"/> -<path fill="#A0A1A2" d="M39.877,14.614H14.498c-0.863,0-1.558,0.77-1.558,1.63v17.675c0,0.855,0.695,1.617,1.558,1.617h25.379 - c0.86,0,1.732-0.762,1.732-1.617V16.244C41.609,15.382,40.737,14.614,39.877,14.614"/> -<path opacity="0.2" fill="#FFFFFF" enable-background="new " d="M39.895,14.616c-0.006,0-0.012-0.002-0.018-0.002h-25.38 - c-0.863,0-1.558,0.77-1.558,1.63v17.674c0,0.855,0.695,1.617,1.558,1.617h0.604L39.895,14.616z"/> -<polygon fill="#59B4D9" points="39.429,33.333 15.112,33.333 15.112,16.818 39.429,16.782 "/> -<rect x="17.901" y="39.311" fill="#A0A1A2" width="18.745" height="1.73"/> -<path fill="#B8D432" d="M27.571,15.814c0,0.225-0.182,0.406-0.407,0.406c-0.225,0-0.406-0.182-0.406-0.406s0.181-0.406,0.406-0.406 - C27.389,15.407,27.571,15.589,27.571,15.814"/> -<path fill="#FFFFFF" d="M27.587,24.575c-0.026,0-0.052-0.008-0.077-0.022l-5.049-2.91c-0.046-0.027-0.075-0.078-0.075-0.132 - c0-0.054,0.029-0.105,0.075-0.132l5.018-2.891c0.047-0.026,0.104-0.026,0.151,0l5.05,2.912c0.047,0.027,0.075,0.078,0.075,0.132 - c0,0.055-0.028,0.105-0.075,0.132l-5.016,2.89C27.64,24.566,27.615,24.575,27.587,24.575"/> -<path opacity="0.7" fill="#FFFFFF" enable-background="new " d="M26.861,31.648c-0.029,0-0.054-0.007-0.077-0.02l-5.033-2.901 - c-0.049-0.027-0.078-0.076-0.078-0.132v-5.822c0-0.055,0.029-0.105,0.078-0.132c0.047-0.028,0.103-0.028,0.154,0l5.033,2.9 - c0.044,0.029,0.075,0.078,0.075,0.133v5.822c0,0.056-0.029,0.105-0.075,0.132C26.913,31.641,26.886,31.648,26.861,31.648"/> -<path opacity="0.4" fill="#FFFFFF" enable-background="new " d="M28.287,31.648c-0.028,0-0.054-0.007-0.079-0.02 - c-0.044-0.027-0.074-0.077-0.074-0.132V25.71c0-0.054,0.029-0.104,0.074-0.132l5.033-2.899c0.048-0.027,0.104-0.027,0.152,0 - c0.048,0.027,0.077,0.077,0.077,0.132v5.785c0,0.056-0.029,0.106-0.077,0.132l-5.031,2.901 - C28.339,31.641,28.312,31.648,28.287,31.648"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path d="M21.667 0h6.667v5h-6.667zm-10 0h6.667v5h-6.667zM45 45h-3.333v5h5C48.508 50 50 48.507 50 46.667v-5h-5V45zM0 31.667h5v6.667H0zM21.667 45h6.667v5h-6.667zM45 31.667h5v6.667h-5zM31.667 45h6.667v5h-6.667zm-20 0h6.667v5h-6.667zM5 45v-3.333H0v5C0 48.508 1.493 50 3.333 50h5v-5H5zM0 11.667h5v6.667H0zM5 5h3.333V0h-5C1.493 0 0 1.493 0 3.333v5h5V5zM0 21.667h5v6.667H0zm45 0h5v6.667h-5zm0-10h5v6.667h-5zM31.666 0h6.667v5h-6.667zM45 5v3.333h5v-5C50 1.492 48.507 0 46.667 0h-5v5H45z" fill="#59b4d9"/><path fill="#a0a1a2" d="M35.328 8.96H9.95c-.863 0-1.558.77-1.558 1.63v17.675c0 .855.695 1.617 1.558 1.617h25.38c.86 0 1.732-.762 1.732-1.617V10.6c.001-.863-.87-1.63-1.732-1.63"/><path opacity=".2" fill="#fff" d="M35.346 8.96H9.95c-.863 0-1.558.77-1.558 1.63v17.674c0 .855.695 1.617 1.558 1.617h.604L35.346 8.96z"/><path fill="#59b4d9" d="M34.88 27.678H10.564V11.163l24.317-.036z"/><path fill="#b8d432" d="M23.022 10.16c0 .225-.182.406-.407.406s-.406-.182-.406-.406.18-.406.406-.406.407.18.407.406"/><path fill="#fff" d="M23.04 18.92c-.026 0-.052-.008-.077-.022l-5.05-2.9c-.046-.027-.075-.078-.075-.132s.03-.105.075-.132l5.018-2.89c.047-.026.104-.026.15 0l5.05 2.912c.047.027.075.078.075.132s-.028.105-.075.132l-5.016 2.9c-.025.014-.05.02-.077.02"/><path fill="#7a7a7a" d="M31.53 35.535h-7.796c.937 3.303-.322 3.776-5.834 3.776v1.73h18.746v-1.73c-5.513-.001-6.054-.472-5.116-3.777"/><path fill="#a0a1a2" d="M39.877 14.614h-25.38c-.863 0-1.558.77-1.558 1.63V33.92c0 .855.695 1.617 1.558 1.617h25.38c.86 0 1.732-.762 1.732-1.617V16.244c0-.862-.872-1.63-1.732-1.63"/><path opacity=".2" fill="#fff" d="M39.895 14.616l-25.398-.002c-.863 0-1.558.77-1.558 1.63v17.674c0 .855.695 1.617 1.558 1.617h.604l24.794-20.92z"/><path fill="#59b4d9" d="M39.43 33.333H15.112V16.818l24.317-.036z"/><path fill="#a0a1a2" d="M17.9 39.31h18.745v1.73H17.9z"/><path fill="#b8d432" d="M27.57 15.814c0 .225-.182.406-.407.406s-.406-.182-.406-.406.18-.406.406-.406.407.18.407.406"/><g fill="#fff"><path d="M27.587 24.575c-.026 0-.052-.008-.077-.022l-5.05-2.9c-.046-.027-.075-.078-.075-.132s.03-.105.075-.132l5.018-2.89c.047-.026.104-.026.15 0l5.05 2.912c.047.027.075.078.075.132s-.028.105-.075.132l-5.016 2.9a.17.17 0 0 1-.077.021"/><path opacity=".7" d="M26.86 31.648c-.03 0-.054-.007-.077-.02l-5.033-2.9c-.05-.027-.078-.076-.078-.132v-5.822a.15.15 0 0 1 .078-.132c.047-.028.103-.028.154 0l5.033 2.9c.044.03.075.078.075.133v5.822c0 .056-.03.105-.075.132a.17.17 0 0 1-.077.02"/><path opacity=".4" d="M28.287 31.648c-.028 0-.054-.007-.08-.02-.044-.027-.074-.077-.074-.132V25.7c0-.054.03-.104.074-.132l5.033-2.9c.048-.027.104-.027.152 0a.15.15 0 0 1 .077.132v5.785c0 .056-.03.106-.077.132l-5.03 2.9c-.023.012-.05.02-.075.02"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Virtual_Machines_Linux.svg b/src/main/webapp/img/lib/mscae/Virtual_Machines_Linux.svg index 25c9c3ae00ec48983bfe2a81e2f4959d5607a41d..9586c6a4c86bd5e1c67665d7ff51278d1982b1b5 100644 --- a/src/main/webapp/img/lib/mscae/Virtual_Machines_Linux.svg +++ b/src/main/webapp/img/lib/mscae/Virtual_Machines_Linux.svg @@ -1,172 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" - id="svg2" inkscape:version="0.91 r13725" sodipodi:docname="Virtual_Machines_Linux.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 544.2 659.6" - style="enable-background:new 0 0 544.2 659.6;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:url(#path113_1_);} - .st1{stroke:#000000;stroke-width:1.5625;} - .st2{fill:url(#path114_1_);} - .st3{fill:url(#path115_1_);} - .st4{fill:url(#path116_1_);} - .st5{fill:url(#path121_1_);} - .st6{fill:url(#path122_1_);} - .st7{fill:url(#path128_1_);} - .st8{fill:url(#path112_1_);} - .st9{fill:url(#path125_1_);} - .st10{fill:url(#path127_1_);} - .st11{fill:url(#path129_1_);} - .st12{fill:url(#path131_1_);} - .st13{fill:url(#path132_1_);stroke:#E68C3F;stroke-width:7.8125;} - .st14{fill:url(#path177_1_);} - .st15{fill:url(#path133_1_);stroke:#E68C3F;stroke-width:7.8125;} - .st16{fill:url(#path134_1_);} - .st17{fill:url(#path135_1_);} - .st18{fill:url(#path137_1_);} - .st19{fill:url(#path119_1_);stroke:#E68C3F;stroke-width:4.6875;} - .st20{fill:none;stroke:#E68C3F;stroke-width:3.125;} - .st21{fill:url(#path123_1_);} -</style> -<sodipodi:namedview bordercolor="#666666" borderopacity="1" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" gridtolerance="10" guidetolerance="10" id="namedview93" inkscape:current-layer="svg2" inkscape:cx="268.62938" inkscape:cy="315.41895" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-height="1018" inkscape:window-maximized="1" inkscape:window-width="1920" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="1.0706042" objecttolerance="10" pagecolor="#ffffff" showgrid="false"> - </sodipodi:namedview> -<path id="path106" inkscape:connector-curvature="0" d="M110.3,527.7c-28-40.3-33.4-171.2,31.9-251.8 - c32.4-38.6,40.6-65.6,43.2-101.7C187.1,133,156.2,9.9,272.7,0.5c118-9.4,111.7,107.1,111,168.7c-0.6,52,38.2,81.6,64.7,122.1 - c49.1,74.5,44.9,202.9-9.2,272.3c-68.6,87-127.4,49.2-166.5,52.4C199.6,620.1,197.2,659.1,110.3,527.7z"/> -<linearGradient id="path113_1_" gradientUnits="userSpaceOnUse" x1="2329.9666" y1="434.8407" x2="2330.2332" y2="500.292" gradientTransform="matrix(-0.9649 -1.291555e-02 3.671998e-02 -2.5569 2650.5928 1693.5665)"> - <stop offset="0" style="stop-color:#FFEED7"/> - <stop offset="1" style="stop-color:#BDBFC2"/> -</linearGradient> -<path id="path113" inkscape:connector-curvature="0" class="st0" d="M395.4,299c20.3,18.7,73,102.6-10.4,154.9 - c-29.4,18.2,26.2,87.9,52.9,54.1c47.1-60.6,17.1-157.1-11.2-191.7C407.5,291.8,378.2,282.3,395.4,299z"/> -<path id="path111" inkscape:connector-curvature="0" class="st1" d="M389.7,287.5c33.4,27,94.2,122,5.5,183.8 - c-29.1,19.2,25.8,79.9,56.7,48.9c107.3-107.9-2.8-232-40.7-274.7C377.3,208.5,347.3,254.3,389.7,287.5z"/> -<linearGradient id="path114_1_" gradientUnits="userSpaceOnUse" x1="579.1642" y1="718.4589" x2="573.2322" y2="626.295" gradientTransform="matrix(1.4132 -7.965030e-02 4.119768e-02 -1.0714 -573.8455 825.7845)"> - <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.8"/> - <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/> -</linearGradient> -<path id="path114" inkscape:connector-curvature="0" class="st2" d="M341.6,59.4c-1.2,30.9-35.2,57.9-76.1,60.2s-73-20.9-71.8-51.9 - S229,9.8,269.8,7.5C310.6,5.2,342.8,28.4,341.6,59.4z"/> -<linearGradient id="path115_1_" gradientUnits="userSpaceOnUse" x1="450.3291" y1="602.4435" x2="451.6646" y2="637.1295" gradientTransform="matrix(1.0651 -6.167214e-02 -9.445850e-02 -1.6443 -201.6021 1180.4465)"> - <stop offset="0" style="stop-color:#FFEED7"/> - <stop offset="1" style="stop-color:#BDBFC2"/> -</linearGradient> -<path id="path115" inkscape:connector-curvature="0" class="st3" d="M243.8,133c1.1,20.1-8.5,37-21.5,37.8 - c-13,0.7-24.5-14.9-25.7-35c-1.2-20.1,8.5-37,21.5-37.8C231.2,97.1,242.7,112.8,243.8,133C243.8,132.9,243.8,133,243.8,133z"/> -<linearGradient id="path116_1_" gradientUnits="userSpaceOnUse" x1="1964" y1="569.4852" x2="1963.1642" y2="601.2969" gradientTransform="matrix(-1.4785 4.042534e-02 -3.886407e-02 -1.9024 3226.1904 1167.5223)"> - <stop offset="0" style="stop-color:#FFEED7"/> - <stop offset="1" style="stop-color:#BDBFC2"/> -</linearGradient> -<path id="path116" inkscape:connector-curvature="0" class="st4" d="M267.5,134.5c0.5,23.3,15.5,41.7,33.6,41.2 - c18.1-0.5,32.4-19.8,31.9-43S317.5,91,299.4,91.5C281.3,92,267,111.2,267.5,134.5L267.5,134.5z"/> -<path id="path117" inkscape:connector-curvature="0" d="M282.5,139.8c-0.3,12.8,6.2,23.1,14.4,23.2c8.2,0,15.1-10.3,15.4-23.1 - s-6.2-23.1-14.4-23.2C289.6,116.7,282.7,127,282.5,139.8z"/> -<path id="path118" inkscape:connector-curvature="0" d="M230.3,139.9c1,10.6-3,19.7-8.9,20.4c-5.9,0.7-11.6-7.3-12.6-17.8 - c-1-10.6,2.9-19.7,8.9-20.5C223.6,121.3,229.3,129.3,230.3,139.9C230.3,139.9,230.3,139.9,230.3,139.9z"/> -<linearGradient id="path121_1_" gradientUnits="userSpaceOnUse" x1="3766.6814" y1="681.2397" x2="3764.3813" y2="641.1505" gradientTransform="matrix(-0.3922 -2.976458e-02 5.731006e-02 -0.5825 1733.4752 629.9621)"> - <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.65"/> - <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/> -</linearGradient> -<path id="path121" inkscape:connector-curvature="0" class="st5" d="M285.9,132.5c-0.7,7.1,2.6,13.2,7.4,13.6 - c4.8,0.4,9.3-5.1,10-12.2c0.7-7.1-2.6-13.2-7.4-13.6S286.6,125.3,285.9,132.5z"/> -<linearGradient id="path122_1_" gradientUnits="userSpaceOnUse" x1="-1817.2372" y1="1079.4309" x2="-1819.804" y2="1040.3879" gradientTransform="matrix(0.2914 -3.333031e-02 -5.061034e-02 -0.4881 802.4261 591.5436)"> - <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.65"/> - <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/> -</linearGradient> -<path id="path122" inkscape:connector-curvature="0" class="st6" d="M225.3,134.3c0.6,6-1.8,11.1-5.3,11.6c-3.6,0.4-7-4.1-7.6-10.1 - c-0.6-6,1.8-11.1,5.3-11.6C221.3,123.8,224.7,128.3,225.3,134.3L225.3,134.3z"/> -<linearGradient id="path128_1_" gradientUnits="userSpaceOnUse" x1="452.5136" y1="326.9225" x2="452.5136" y2="461.6907" gradientTransform="matrix(1.0161 0 0 -1.5378 -184.3696 1052.7535)"> - <stop offset="0" style="stop-color:#FFEED7"/> - <stop offset="1" style="stop-color:#BDBFC2"/> -</linearGradient> -<path id="path128" inkscape:connector-curvature="0" class="st7" d="M154.2,356c16-36.4,50.1-100.3,50.9-149.7 - c0-39.3,117.7-48.7,127.2-9.4c9.4,39.2,33.4,98.1,48.7,126.4c15.3,28.3,59.8,118.4,12.4,196.9c-42.7,69.6-172.2,124.6-241.3-9.4 - C128.7,464.3,132.9,406.6,154.2,356z"/> -<linearGradient id="path112_1_" gradientUnits="userSpaceOnUse" x1="302.6936" y1="445.6638" x2="305.0058" y2="541.4106" gradientTransform="matrix(0.9028 -7.217411e-02 -0.1573 -2.004 -37.9638 1467.9309)"> - <stop offset="0" style="stop-color:#FFEED7"/> - <stop offset="1" style="stop-color:#BDBFC2"/> -</linearGradient> -<path id="path112" inkscape:connector-curvature="0" class="st8" d="M139.7,329C126,355,97.4,423.2,167,460.5 - c74.8,39.6,74.5,121.2-15.4,82.4c-82.1-35.1-45.8-176.9-22.9-210.8C143.8,308.4,166.4,279.3,139.7,329z"/> -<path id="path109" inkscape:connector-curvature="0" class="st1" d="M151.4,299.6c-21.8,35.6-74.2,119.8-4.1,163.4 - c94.5,57.9,67.7,115.9-18.5,63.7c-121.4-72.8-14.8-219.5,33.9-275.4C218.3,188.5,173.4,262.7,151.4,299.6z"/> -<linearGradient id="path125_1_" gradientUnits="userSpaceOnUse" x1="590.5436" y1="398.2888" x2="591.1147" y2="281.9621" gradientTransform="matrix(1.3995 0 0 -1.14 -562.4822 773.3519)"> - <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.8"/> - <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/> -</linearGradient> -<path id="path125" inkscape:connector-curvature="0" class="st9" d="M364.2,369.8c0,39.7-38.1,91.3-103.6,90.8 - c-67.5,0.6-96.3-51.1-96.3-90.8s44.8-71.9,99.9-71.9C319.4,297.9,364.2,330.1,364.2,369.8z"/> -<linearGradient id="path127_1_" gradientUnits="userSpaceOnUse" x1="527.4523" y1="484.8629" x2="528.2211" y2="431.648" gradientTransform="matrix(1.2782 0 0 -0.9908 -407.1555 716.5407)"> - <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.65"/> - <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/> -</linearGradient> -<path id="path127" inkscape:connector-curvature="0" class="st10" d="M328.6,244.8c-0.7,41.2-27.5,50.9-61.4,50.9 - c-33.9,0-58.5-6.1-61.4-50.9c0-28.1,27.5-44.3,61.4-44.3C301.1,200.5,328.6,216.7,328.6,244.8z"/> -<linearGradient id="path129_1_" gradientUnits="userSpaceOnUse" x1="33.4406" y1="578.2723" x2="33.4406" y2="489.7674" gradientTransform="matrix(0.7146 0 0 -2.1864 100.78 1532.981)"> - <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.65"/> - <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/> -</linearGradient> -<path id="path129" inkscape:connector-curvature="0" class="st11" d="M123.7,308c22.1-33.7,68.8-85.5,8.7,7.3 - c-48.7,76.3-18,125.3-2.2,138.8c45.7,40.7,43.7,67.9,8,46.5C61.2,454.8,77.2,377.8,123.7,308z"/> -<linearGradient id="path131_1_" gradientUnits="userSpaceOnUse" x1="483.549" y1="586.6158" x2="483.5381" y2="506.5157" gradientTransform="matrix(0.7158 0 0 -2.1828 99.6449 1530.2706)"> - <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.65"/> - <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/> -</linearGradient> -<path id="path131" inkscape:connector-curvature="0" class="st12" d="M444.1,321.8C425,282.2,364,182,447,298.6 - c75.6,105.4,22.5,178.8,13.1,186c-9.4,7.3-41.4,21.8-32-3.6C437.6,455.6,484.7,407.3,444.1,321.8z"/> -<linearGradient id="path132_1_" gradientUnits="userSpaceOnUse" x1="422.2266" y1="230.6626" x2="398.4829" y2="150.3616" gradientTransform="matrix(1.2644 0 0 -1.2358 -419.2774 830.2147)"> - <stop offset="0" style="stop-color:#FFA63F"/> - <stop offset="1" style="stop-color:#FFFF00"/> -</linearGradient> -<path id="path132" inkscape:connector-curvature="0" class="st13" d="M106.9,633.6C56.4,606.8-17.1,638.8,9.6,566 - c5.3-16.5-8-41.3,0.7-57.4c10.2-19.6,32-15.3,45.1-28.3c12.9-13.6,21.1-37.1,45.1-33.4c24,3.6,39.9,33.1,56.7,69 - c12.4,25.8,56.2,62.1,53.3,90.9C207,651.2,156.6,659.6,106.9,633.6z"/> -<linearGradient id="path177_1_" gradientUnits="userSpaceOnUse" x1="-39.2394" y1="-281.1541" x2="-141.1624" y2="-12.0889" gradientTransform="matrix(0.6374 0.2862 0.2249 -0.5793 522.7173 382.1585)"> - <stop offset="0" style="stop-color:#FFEED7"/> - <stop offset="1" style="stop-color:#BDBFC2"/> -</linearGradient> -<path id="path177" inkscape:connector-curvature="0" class="st14" d="M475.4,462.9c-7.8,14.6-39.8,37.7-61.1,31.7 - c-21.8-5.9-31.6-38.9-27.3-63.8c4-28.1,27.3-29.5,56.6-15.6C475.1,430.4,484.6,443.6,475.4,462.9z"/> -<linearGradient id="path133_1_" gradientUnits="userSpaceOnUse" x1="1814.8386" y1="502.2204" x2="1799.848" y2="394.6715" gradientTransform="matrix(-1.18 0.4273 -0.4706 -1.1534 2783.8733 318.7924)"> - <stop offset="0" style="stop-color:#FFA63F"/> - <stop offset="1" style="stop-color:#FFFF00"/> -</linearGradient> -<path id="path133" inkscape:connector-curvature="0" class="st15" d="M457.7,621.1c37.1-45,119.4-35.7,63.9-97.4 - c-11.7-13.2-8.2-41.9-22.5-54c-17-14.8-35.7-2.7-52.9-10.4c-17.2-8.3-35.2-24.5-56.3-13c-21,11.5-23.3,41.4-25.3,80.6 - c-1.7,28.2-27.5,75.4-13.8,101.3C370.9,668.5,422.4,663.2,457.7,621.1z"/> -<linearGradient id="path134_1_" gradientUnits="userSpaceOnUse" x1="1903.4965" y1="657.7595" x2="1967.8521" y2="540.2648" gradientTransform="matrix(-0.9524 0.3464 -0.4208 -0.9487 2517.7109 393.5002)"> - <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.65"/> - <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/> -</linearGradient> -<path id="path134" inkscape:connector-curvature="0" class="st16" d="M441.6,561c57.4-84.7,14.6-84.1,0.3-90.5 - c-14.4-6.9-29.6-20.2-46.5-10.8c-16.9,9.4-17.9,33.9-18.3,66c-0.6,23.1-20,61.6-8.3,83C382.7,633.8,416.6,597.4,441.6,561z"/> -<linearGradient id="path135_1_" gradientUnits="userSpaceOnUse" x1="227.6153" y1="387.6447" x2="235.0495" y2="247.0856" gradientTransform="matrix(1.0038 -5.226007e-02 1.740863e-02 -1.0463 -126.9072 878.6035)"> - <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.65"/> - <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/> -</linearGradient> -<path id="path135" inkscape:connector-curvature="0" class="st17" d="M95.2,573.2C9.3,517.6,49.5,498.7,62.5,490 - c15.6-11.2,15.8-33,35-31c19.2,2,30.4,25.7,43.4,55.1c9.6,21.1,42.4,48.9,40,73.2C177.8,615.8,132.4,597,95.2,573.2z"/> -<path id="path136" inkscape:connector-curvature="0" d="M470.3,462.1c-6.7,11.7-34.3,30.2-52.7,25.4c-18.8-4.7-27.2-31.1-23.5-51.1 - c3.4-22.5,23.5-23.6,48.8-12.5C470,436.1,478.2,446.6,470.3,462.1z"/> -<linearGradient id="path137_1_" gradientUnits="userSpaceOnUse" x1="-1090.3762" y1="-341.5166" x2="-1035.7072" y2="-450.1339" gradientTransform="matrix(0.3742 0.1593 0.1209 -0.3224 872.4554 490.1294)"> - <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.65"/> - <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/> -</linearGradient> -<path id="path137" inkscape:connector-curvature="0" class="st18" d="M451.8,455.6c-4.3,8.1-22.5,21-34.9,17.6 - c-12.7-3.3-18.9-21.6-16.9-35.5c1.8-15.6,15.4-16.4,32.6-8.7C451,437.5,456.8,444.8,451.8,455.6z"/> -<linearGradient id="path119_1_" gradientUnits="userSpaceOnUse" x1="609.3845" y1="503.5204" x2="610.1572" y2="428.2843" gradientTransform="matrix(1.5234 0 0 -1.0257 -664.2492 674.9191)"> - <stop offset="0" style="stop-color:#FFA63F"/> - <stop offset="1" style="stop-color:#FFFF00"/> -</linearGradient> -<path id="path119" inkscape:connector-curvature="0" class="st19" d="M218.2,160.9c8.9-8.5,31-33.8,72.5-7.2c7.7,5,14,5.5,28.8,11.8 - c29.7,12.2,15.5,41.6-15.9,51.4c-13.4,4.4-25.7,20.7-50.2,19.3c-20.9-1.2-26.4-14.8-39.2-22.4c-22.8-12.9-26.2-30.3-13.9-39.6 - C212.6,165,217.4,161.6,218.2,160.9z"/> -<path id="path120" inkscape:connector-curvature="0" class="st20" d="M319.9,184.5c-12.4,0.7-39.2,27.6-67.6,27.6 - S207.2,186,202.9,186"/> -<linearGradient id="path123_1_" gradientUnits="userSpaceOnUse" x1="-3.3531" y1="708.0991" x2="-3.8004" y2="624.3939" gradientTransform="matrix(0.7672 0 0 -0.4875 257.9294 496.3678)"> - <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.65"/> - <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/> -</linearGradient> -<path id="path123" inkscape:connector-curvature="0" class="st21" d="M232.3,158.5c4.5-4,18.6-15.1,37.4-3.8c4,2.2,8,4.7,14.1,8 - c12,7,6.1,17.1-8.3,23.5c-6.5,2.7-17.3,8.6-25.5,8.2c-9.1-0.8-15-6.8-21.1-10.7c-11.1-7.3-10.4-13.2-5.3-18.2 - C227.5,162.2,231.9,158.9,232.3,158.5z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 544.2 659.6"><path d="M110.3 527.7c-28-40.3-33.4-171.2 31.9-251.8 32.4-38.6 40.6-65.6 43.2-101.7C187.1 133 156.2 9.9 272.7.5c118-9.4 111.7 107.1 111 168.7-.6 52 38.2 81.6 64.7 122.1 49.1 74.5 44.9 202.9-9.2 272.3-68.6 87-127.4 49.2-166.5 52.4-73.1 4.1-75.5 43.1-162.4-88.3z"/><linearGradient id="A" gradientUnits="userSpaceOnUse" x1="418.375" y1="551.63" x2="420.521" y2="384.274"><stop offset="0" stop-color="#ffeed7"/><stop offset="1" stop-color="#bdbfc2"/></linearGradient><path d="M395.4 299c20.3 18.7 73 102.6-10.4 154.9-29.4 18.2 26.2 87.9 52.9 54.1 47.1-60.6 17.1-157.1-11.2-191.7-19.2-24.5-48.5-34-31.3-17.3z" fill="url(#A)"/><path d="M389.7 287.5c33.4 27 94.2 122 5.5 183.8-29.1 19.2 25.8 79.9 56.7 48.9 107.3-107.9-2.8-232-40.7-274.7-33.9-37-63.9 8.8-21.5 42z" stroke="#000" stroke-width="1.563"/><linearGradient id="B" gradientUnits="userSpaceOnUse" x1="274.228" y1="9.897" x2="262.048" y2="109.114"><stop offset="0" stop-color="#fff" stop-opacity=".8"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><path d="M341.6 59.4c-1.2 30.9-35.2 57.9-76.1 60.2s-73-20.9-71.8-51.9S229 9.8 269.8 7.5s73 20.9 71.8 51.9z" fill="url(#B)"/><linearGradient id="C" gradientUnits="userSpaceOnUse" x1="221.138" y1="162.076" x2="219.284" y2="104.959"><stop offset="0" stop-color="#ffeed7"/><stop offset="1" stop-color="#bdbfc2"/></linearGradient><path d="M243.8 133c1.1 20.1-8.5 37-21.5 37.8-13 .7-24.5-14.9-25.7-35s8.5-37 21.5-37.8c13.1-.9 24.6 14.8 25.7 35 0-.1 0 0 0 0z" fill="url(#C)"/><linearGradient id="D" gradientUnits="userSpaceOnUse" x1="300.284" y1="163.529" x2="300.283" y2="102.977"><stop offset="0" stop-color="#ffeed7"/><stop offset="1" stop-color="#bdbfc2"/></linearGradient><path d="M267.5 134.5c.5 23.3 15.5 41.7 33.6 41.2s32.4-19.8 31.9-43-15.5-41.7-33.6-41.2-32.4 19.7-31.9 43z" fill="url(#D)"/><path d="M282.5 139.8c-.3 12.8 6.2 23.1 14.4 23.2 8.2 0 15.1-10.3 15.4-23.1s-6.2-23.1-14.4-23.2c-8.3 0-15.2 10.3-15.4 23.1zm-52.2.1c1 10.6-3 19.7-8.9 20.4s-11.6-7.3-12.6-17.8c-1-10.6 2.9-19.7 8.9-20.5 5.9-.7 11.6 7.3 12.6 17.9z"/><linearGradient id="E" gradientUnits="userSpaceOnUse" x1="295.225" y1="121.026" x2="293.829" y2="144.447"><stop offset="0" stop-color="#fff" stop-opacity=".65"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><path d="M285.9 132.5c-.7 7.1 2.6 13.2 7.4 13.6s9.3-5.1 10-12.2-2.6-13.2-7.4-13.6-9.3 5-10 12.2z" fill="url(#E)"/><linearGradient id="F" gradientUnits="userSpaceOnUse" x1="218.253" y1="125.242" x2="219.481" y2="144.385"><stop offset="0" stop-color="#fff" stop-opacity=".65"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><path d="M225.3 134.3c.6 6-1.8 11.1-5.3 11.6-3.6.4-7-4.1-7.6-10.1s1.8-11.1 5.3-11.6c3.6-.4 7 4.1 7.6 10.1z" fill="url(#F)"/><linearGradient id="G" gradientUnits="userSpaceOnUse" x1="275.429" y1="550.012" x2="275.429" y2="342.766"><stop offset="0" stop-color="#ffeed7"/><stop offset="1" stop-color="#bdbfc2"/></linearGradient><path d="M154.2 356c16-36.4 50.1-100.3 50.9-149.7 0-39.3 117.7-48.7 127.2-9.4 9.4 39.2 33.4 98.1 48.7 126.4s59.8 118.4 12.4 196.9c-42.7 69.6-172.2 124.6-241.3-9.4-23.4-46.5-19.2-104.2 2.1-154.8z" fill="url(#G)"/><linearGradient id="H" gradientUnits="userSpaceOnUse" x1="165.205" y1="552.974" x2="152.232" y2="360.931"><stop offset="0" stop-color="#ffeed7"/><stop offset="1" stop-color="#bdbfc2"/></linearGradient><path d="M139.7 329C126 355 97.4 423.2 167 460.5c74.8 39.6 74.5 121.2-15.4 82.4-82.1-35.1-45.8-176.9-22.9-210.8 15.1-23.7 37.7-52.8 11-3.1z" fill="url(#H)"/><path d="M151.4 299.6c-21.8 35.6-74.2 119.8-4.1 163.4 94.5 57.9 67.7 115.9-18.5 63.7C7.4 453.9 114 307.2 162.7 251.3c55.6-62.8 10.7 11.4-11.3 48.3z" stroke="#000" stroke-width="1.563"/><linearGradient id="I" gradientUnits="userSpaceOnUse" x1="263.984" y1="319.303" x2="264.783" y2="451.915"><stop offset="0" stop-color="#fff" stop-opacity=".8"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><path d="M364.2 369.8c0 39.7-38.1 91.3-103.6 90.8-67.5.6-96.3-51.1-96.3-90.8s44.8-71.9 99.9-71.9c55.2 0 100 32.2 100 71.9z" fill="url(#I)"/><linearGradient id="J" gradientUnits="userSpaceOnUse" x1="267.034" y1="236.139" x2="268.017" y2="288.864"><stop offset="0" stop-color="#fff" stop-opacity=".65"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><path d="M328.6 244.8c-.7 41.2-27.5 50.9-61.4 50.9s-58.5-6.1-61.4-50.9c0-28.1 27.5-44.3 61.4-44.3s61.4 16.2 61.4 44.3z" fill="url(#J)"/><linearGradient id="K" gradientUnits="userSpaceOnUse" x1="124.677" y1="268.646" x2="124.677" y2="462.154"><stop offset="0" stop-color="#fff" stop-opacity=".65"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><path d="M123.7 308c22.1-33.7 68.8-85.5 8.7 7.3-48.7 76.3-18 125.3-2.2 138.8 45.7 40.7 43.7 67.9 8 46.5-77-45.8-61-122.8-14.5-192.6z" fill="url(#K)"/><linearGradient id="L" gradientUnits="userSpaceOnUse" x1="445.769" y1="249.806" x2="445.761" y2="424.648"><stop offset="0" stop-color="#fff" stop-opacity=".65"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><path d="M444.1 321.8C425 282.2 364 182 447 298.6c75.6 105.4 22.5 178.8 13.1 186-9.4 7.3-41.4 21.8-32-3.6 9.5-25.4 56.6-73.7 16-159.2z" fill="url(#L)"/><linearGradient id="M" gradientUnits="userSpaceOnUse" x1="114.586" y1="542.839" x2="84.564" y2="646.721"><stop offset="0" stop-color="#ffa63f"/><stop offset="1" stop-color="#ff0"/></linearGradient><path d="M106.9 633.6c-50.5-26.8-124 5.2-97.3-67.6 5.3-16.5-8-41.3.7-57.4 10.2-19.6 32-15.3 45.1-28.3 12.9-13.6 21.1-37.1 45.1-33.4 24 3.6 39.9 33.1 56.7 69 12.4 25.8 56.2 62.1 53.3 90.9-3.5 44.4-53.9 52.8-103.6 26.8z" fill="url(#M)" stroke="#e68c3f" stroke-width="7.813"/><linearGradient id="N" gradientUnits="userSpaceOnUse" x1="434.475" y1="417.182" x2="430.022" y2="465.38"><stop offset="0" stop-color="#ffeed7"/><stop offset="1" stop-color="#bdbfc2"/></linearGradient><path d="M475.4 462.9c-7.8 14.6-39.8 37.7-61.1 31.7-21.8-5.9-31.6-38.9-27.3-63.8 4-28.1 27.3-29.5 56.6-15.6 31.5 15.2 41 28.4 31.8 47.7z" fill="url(#N)"/><linearGradient id="O" gradientUnits="userSpaceOnUse" x1="406.019" y1="509.116" x2="474.32" y2="638.549"><stop offset="0" stop-color="#ffa63f"/><stop offset="1" stop-color="#ff0"/></linearGradient><path d="M457.7 621.1c37.1-45 119.4-35.7 63.9-97.4-11.7-13.2-8.2-41.9-22.5-54-17-14.8-35.7-2.7-52.9-10.4-17.2-8.3-35.2-24.5-56.3-13-21 11.5-23.3 41.4-25.3 80.6-1.7 28.2-27.5 75.4-13.8 101.3 20.1 40.3 71.6 35 106.9-7.1z" fill="url(#O)" stroke="#e68c3f" stroke-width="7.813"/><linearGradient id="P" gradientUnits="userSpaceOnUse" x1="428.036" y1="455.276" x2="416.185" y2="536.194"><stop offset="0" stop-color="#fff" stop-opacity=".65"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><path d="M441.6 561c57.4-84.7 14.6-84.1.3-90.5-14.4-6.9-29.6-20.2-46.5-10.8s-17.9 33.9-18.3 66c-.6 23.1-20 61.6-8.3 83 13.9 25.1 47.8-11.3 72.8-47.7z" fill="url(#P)"/><linearGradient id="Q" gradientUnits="userSpaceOnUse" x1="108.321" y1="511.038" x2="113.337" y2="557.871"><stop offset="0" stop-color="#fff" stop-opacity=".65"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><path d="M95.2 573.2C9.3 517.6 49.5 498.7 62.5 490c15.6-11.2 15.8-33 35-31s30.4 25.7 43.4 55.1c9.6 21.1 42.4 48.9 40 73.2-3.1 28.5-48.5 9.7-85.7-14.1z" fill="url(#Q)"/><path d="M470.3 462.1c-6.7 11.7-34.3 30.2-52.7 25.4-18.8-4.7-27.2-31.1-23.5-51.1 3.4-22.5 23.5-23.6 48.8-12.5 27.1 12.2 35.3 22.7 27.4 38.2z"/><linearGradient id="R" gradientUnits="userSpaceOnUse" x1="423.147" y1="426.537" x2="430.473" y2="470.264"><stop offset="0" stop-color="#fff" stop-opacity=".65"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><path d="M451.8 455.6c-4.3 8.1-22.5 21-34.9 17.6-12.7-3.3-18.9-21.6-16.9-35.5 1.8-15.6 15.4-16.4 32.6-8.7 18.4 8.5 24.2 15.8 19.2 26.6z" fill="url(#R)"/><linearGradient id="S" gradientUnits="userSpaceOnUse" x1="264.087" y1="158.458" x2="265.264" y2="235.628"><stop offset="0" stop-color="#ffa63f"/><stop offset="1" stop-color="#ff0"/></linearGradient><g stroke="#e68c3f"><path d="M218.2 160.9c8.9-8.5 31-33.8 72.5-7.2 7.7 5 14 5.5 28.8 11.8 29.7 12.2 15.5 41.6-15.9 51.4-13.4 4.4-25.7 20.7-50.2 19.3-20.9-1.2-26.4-14.8-39.2-22.4-22.8-12.9-26.2-30.3-13.9-39.6l17.9-13.3z" fill="url(#S)" stroke-width="4.688"/><path d="M319.9 184.5c-12.4.7-39.2 27.6-67.6 27.6S207.2 186 202.9 186" fill="none" stroke-width="3.125"/></g><linearGradient id="T" gradientUnits="userSpaceOnUse" x1="255.357" y1="151.169" x2="255.014" y2="191.976"><stop offset="0" stop-color="#fff" stop-opacity=".65"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><path d="M232.3 158.5c4.5-4 18.6-15.1 37.4-3.8 4 2.2 8 4.7 14.1 8 12 7 6.1 17.1-8.3 23.5-6.5 2.7-17.3 8.6-25.5 8.2-9.1-.8-15-6.8-21.1-10.7-11.1-7.3-10.4-13.2-5.3-18.2 3.9-3.3 8.3-6.6 8.7-7z" fill="url(#T)"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Virtual_Network.svg b/src/main/webapp/img/lib/mscae/Virtual_Network.svg index 1717caebfcaaab6a784b3a46ba6e34e6449e809c..655b6f2459d8af7744bd87d7a14f751ca2ec2caa 100644 --- a/src/main/webapp/img/lib/mscae/Virtual_Network.svg +++ b/src/main/webapp/img/lib/mscae/Virtual_Network.svg @@ -1,68 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="28.713535" - width="50.077072" - viewBox="0 0 50.077072 28.713535" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Azure Virtual Network_COLOR.svg"><metadata - id="metadata17"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs15" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview13" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="10.363697" - inkscape:cx="20.067385" - inkscape:cy="9.8213773" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 49.738535,15.075 C 50.238535,14.575 50.138535,13.775 49.738535,13.275 L 47.338535,10.875 36.538535,0.375 C 36.038535,-0.125 35.338535,-0.125 34.838535,0.375 L 34.838535,0.375 C 34.338535,0.875 34.238535,1.675 34.838535,2.175 L 46.138535,13.275 C 46.638535,13.775 46.638535,14.575 46.138535,15.075 L 34.638535,26.575 C 34.138535,27.075 34.138535,27.875 34.638535,28.375 L 34.638535,28.375 C 35.138535,28.875 35.938535,28.775 36.338535,28.375 L 47.038535,17.775 C 47.038535,17.775 47.038535,17.775 47.138535,17.675 L 49.738535,15.075 Z" - id="path3" - inkscape:connector-curvature="0" - style="fill:#3999c6" /><path - d="M 0.33853532,15.075 C -0.16146468,14.575 -0.06146468,13.775 0.33853532,13.275 L 2.7385353,10.875 13.538535,0.375 C 14.038535,-0.125 14.738535,-0.125 15.238535,0.375 L 15.238535,0.375 C 15.738535,0.875 15.838535,1.675 15.238535,2.175 L 4.1385353,13.275 C 3.6385353,13.775 3.6385353,14.575 4.1385353,15.075 L 15.438535,26.575 C 15.938535,27.075 15.938535,27.875 15.438535,28.375 L 15.438535,28.375 C 14.938535,28.875 14.138535,28.775 13.738535,28.375 L 2.8385353,17.875 C 2.8385353,17.875 2.8385353,17.875 2.7385353,17.775 L 0.33853532,15.075 Z" - id="path5" - inkscape:connector-curvature="0" - style="fill:#3999c6" /><path - d="M 18.238535,14.175 C 18.238535,16.075 16.638535,17.475 14.938535,17.475 13.238535,17.475 11.438535,15.875 11.438535,14.175 11.438535,12.475 12.838535,10.875 14.938535,10.875 16.938535,10.875 18.238535,12.475 18.238535,14.175 Z" - id="path7" - inkscape:connector-curvature="0" - style="fill:#7fba00" /><path - d="M 28.338535,14.175 C 28.338535,16.075 26.738535,17.475 25.038535,17.475 23.338535,17.475 21.538535,15.875 21.538535,14.175 21.538535,12.475 23.138535,10.875 25.038535,10.875 26.938535,10.875 28.338535,12.475 28.338535,14.175 Z" - id="path9" - inkscape:connector-curvature="0" - style="fill:#7fba00" /><circle - cx="35.238537" - cy="14.174999" - r="3.3" - id="circle11" - style="fill:#7fba00" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" height="28.714" width="50.077"><path d="M49.74 15.075c.5-.5.4-1.3 0-1.8l-2.4-2.4-10.8-10.5c-.5-.5-1.2-.5-1.7 0s-.6 1.3 0 1.8l11.3 11.1c.5.5.5 1.3 0 1.8l-11.5 11.5c-.5.5-.5 1.3 0 1.8s1.3.4 1.7 0l10.8-10.7 2.6-2.6zm-49.4 0c-.5-.5-.4-1.3 0-1.8l2.4-2.4 10.8-10.5c.5-.5 1.2-.5 1.7 0s.6 1.3 0 1.8l-11.1 11.1c-.5.5-.5 1.3 0 1.8l11.3 11.5c.5.5.5 1.3 0 1.8s-1.3.4-1.7 0l-11-10.6-2.4-2.7z" fill="#3999c6"/><g fill="#7fba00"><path d="M18.24 14.175c0 1.9-1.6 3.3-3.3 3.3s-3.5-1.6-3.5-3.3 1.4-3.3 3.5-3.3c2 0 3.3 1.6 3.3 3.3zm10.1 0c0 1.9-1.6 3.3-3.3 3.3s-3.5-1.6-3.5-3.3 1.6-3.3 3.5-3.3 3.3 1.6 3.3 3.3z"/><circle cx="35.239" cy="14.175" r="3.3"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Virtual_Network_Classic.svg b/src/main/webapp/img/lib/mscae/Virtual_Network_Classic.svg new file mode 100644 index 0000000000000000000000000000000000000000..b9ef0f57f706f992c761f0308500f7a5965ba0b9 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Virtual_Network_Classic.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="50.077" height="28.714"><path d="M49.74 15.075c.5-.5.4-1.3 0-1.8l-2.4-2.4-10.8-10.5c-.5-.5-1.2-.5-1.7 0s-.6 1.3 0 1.8l11.3 11.1c.5.5.5 1.3 0 1.8l-11.5 11.5c-.5.5-.5 1.3 0 1.8s1.3.4 1.7 0l10.8-10.7zm-49.4 0c-.5-.5-.4-1.3 0-1.8l2.4-2.4 10.8-10.5c.5-.5 1.2-.5 1.7 0s.6 1.3 0 1.8l-11.1 11.1c-.5.5-.5 1.3 0 1.8l11.3 11.5c.5.5.5 1.3 0 1.8s-1.3.4-1.7 0l-11-10.6z" fill="#3999c6"/><g fill="#0072c6"><path d="M18.24 14.175c0 1.9-1.6 3.3-3.3 3.3s-3.5-1.6-3.5-3.3 1.4-3.3 3.5-3.3c2 0 3.3 1.6 3.3 3.3zm10.1 0c0 1.9-1.6 3.3-3.3 3.3s-3.5-1.6-3.5-3.3 1.6-3.3 3.5-3.3 3.3 1.6 3.3 3.3z"/><circle cx="35.239" cy="14.175" r="3.3"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Virtual_WANs.svg b/src/main/webapp/img/lib/mscae/Virtual_WANs.svg new file mode 100644 index 0000000000000000000000000000000000000000..0be4f458438d439fac55c78c89ba12fe426f18f4 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Virtual_WANs.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="47.8" height="47.8"><use xlink:href="#B" fill="#59b4d9"/><g fill="#fff"><use xlink:href="#B" opacity=".2"/><path d="M24.9 47.05c-8.905 0-16.15-7.245-16.15-16.15s7.245-16.15 16.15-16.15 16.15 7.245 16.15 16.15-7.245 16.15-16.15 16.15z"/></g><g fill="#804998"><path d="M24.9 15.5a15.42 15.42 0 0 1 15.4 15.4 15.42 15.42 0 0 1-15.4 15.4A15.42 15.42 0 0 1 9.5 30.9a15.42 15.42 0 0 1 15.4-15.4m0-1.5C15.566 14 8 21.566 8 30.9s7.566 16.9 16.9 16.9 16.9-7.566 16.9-16.9S34.234 14 24.9 14z"/><circle transform="matrix(.342004 -.939699 .939699 .342004 -8.951839 35.518621)" cx="22.223" cy="23.916" r="3.182"/><circle transform="matrix(.342004 -.939699 .939699 .342004 -9.033777 54.015603)" cx="35.39" cy="33.223" r="3.182"/><circle transform="matrix(.342004 -.939699 .939699 .342004 -24.56609 43.061572)" cx="19.802" cy="38.837" r="3.182"/><path d="M17.687 21.07a18.06 18.06 0 0 0-7.509 1.621c-.42.74-.782 1.512-1.085 2.308 2.598-1.553 5.568-2.373 8.594-2.374 9.28 0 16.83 7.55 16.83 16.83a16.74 16.74 0 0 1-1.072 5.905l-.032.085c.71-.422 1.4-.896 2.03-1.418.372-1.468.628-3.05.628-4.572a18.41 18.41 0 0 0-18.385-18.385z"/><path d="M32.173 15.825a16.74 16.74 0 0 0-2.447-.958 18.29 18.29 0 0 0-12.604 17.447c0 6.288 3.16 12.06 8.457 15.467a16.82 16.82 0 0 0 2.608-.317l-.084-.042c-5.814-2.86-9.425-8.65-9.425-15.108-.001-7.996 5.67-14.91 13.495-16.49z"/><path d="M41.085 35.332a16.65 16.65 0 0 0 .364-1.708 18.44 18.44 0 0 0-9.524-2.663c-8.002 0-15.175 5.07-17.85 12.827l-.016.05.038.034a17.65 17.65 0 0 0 1.139.891l.174.124.028-.1c2.33-7.374 8.956-12.187 16.486-12.187 3.263-.001 6.407.948 9.16 2.723z"/></g><defs ><path id="B" d="M38.506 11.7l-.033.002C38.126 5.184 32.635 0 25.892 0c-4.928 0-9.185 2.773-11.26 6.806-.88-.2-1.78-.303-2.682-.306C5.35 6.5 0 11.738 0 18.2s5.35 11.7 11.95 11.7h26.556c5.133 0 9.294-4.074 9.294-9.1s-4.16-9.1-9.294-9.1z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Visual_Studio_Team_Services_CodePlex_source.svg b/src/main/webapp/img/lib/mscae/Visual_Studio_Team_Services_CodePlex_source.svg index f9a3b25c4c7422e292f38f6fbca5ec886b92daaf..c29cc848e00f91cd7912909ae49724e7ab1565d1 100644 --- a/src/main/webapp/img/lib/mscae/Visual_Studio_Team_Services_CodePlex_source.svg +++ b/src/main/webapp/img/lib/mscae/Visual_Studio_Team_Services_CodePlex_source.svg @@ -1,59 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="30" - height="22.593" - viewBox="-0.5 0.5 30 22.593" - enable-background="new -0.5 0.5 30 30" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Visual Studio Team Services - CodePlex source_COLOR.svg"><metadata - id="metadata13"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs11" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview9" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="26.765104" - inkscape:cx="15" - inkscape:cy="11.001" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 29.5,23.092 16.441,23.092 23.932,15.648 23.932,8.074 16.441,0.547 29.5,0.547 29.5,23.092 Z" - id="path3" - inkscape:connector-curvature="0" - style="fill:#804998" /><path - d="M 29.5,23.092 16.441,23.092 23.932,15.648 23.932,8.074 16.441,0.547 29.5,0.547 29.5,23.092 Z" - id="path5" - inkscape:connector-curvature="0" - style="opacity:0.4;fill:#ffffff" /><path - d="M 10.754,15.613 C 8.676,15.613 6.991,13.927 6.991,11.849 L 6.991,11.742 C 6.991,9.664 8.677,7.979 10.754,7.979 L 14.517,7.979 14.517,0.5 10.647,0.5 C 4.486,0.5 -0.5,5.486 -0.5,11.636 L -0.5,11.957 C -0.5,18.106 4.486,23.093 10.648,23.093 L 14.518,23.093 14.518,15.614 10.754,15.614 10.754,15.613 Z" - id="path7" - inkscape:connector-curvature="0" - style="fill:#3e3e3e" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="30" height="22.593" viewBox="-0.5 0.5 30 22.593"><path d="M29.5 23.092H16.44l7.49-7.444V8.074L16.44.547H29.5v22.545z" fill="#804998"/><path d="M29.5 23.092H16.44l7.49-7.444V8.074L16.44.547H29.5v22.545z" opacity=".4" fill="#fff"/><path d="M10.754 15.613c-2.078 0-3.763-1.686-3.763-3.764v-.107c0-2.078 1.686-3.763 3.763-3.763h3.763V.5h-3.87A11.14 11.14 0 0 0-.5 11.636v.32c0 6.15 4.986 11.136 11.148 11.136h3.87v-7.48h-3.764v-.001z" fill="#3e3e3e"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/WebAppUmbraco.svg b/src/main/webapp/img/lib/mscae/WebAppUmbraco.svg index c9896e7e2e19cd677b2436e5e8126d016b49196b..3ece85c66a8d35e476cde38b2cad6d6faf19bbda 100644 --- a/src/main/webapp/img/lib/mscae/WebAppUmbraco.svg +++ b/src/main/webapp/img/lib/mscae/WebAppUmbraco.svg @@ -1,73 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="49.999664" - height="50" - viewBox="0 0 49.999664 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="WebAppUmbraco.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata914"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs912"> - - -</defs><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview910" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="24.999664" - inkscape:cy="25" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - style="fill:#59b4d9" - inkscape:connector-curvature="0" - id="path899" - d="m 31.389664,35.018 c -3.538,2.705 -7.706,4.023 -11.845,4.023 -5.873,0 -11.68,-2.637 -15.518,-7.656 -6.557,-8.561 -4.93900001,-20.804 3.637,-27.365 3.537,-2.721 7.71,-4.02 11.844,-4.02 5.873,0 11.682,2.637 15.518,7.661 6.559,8.558 4.924,20.804 -3.636,27.357" /><path - style="fill:#ffffff" - inkscape:connector-curvature="0" - id="path901" - d="m 27.802664,22.944 c 1.418,1.849 4.05,2.184 5.889,0.784 0.096,-0.073 0.17,-0.162 0.258,-0.241 1.881,1.325 3.188,2.2 3.924,2.701 0.218,-0.565 0.369,-1.107 0.523,-1.673 -0.778,-0.579 -1.83,-1.389 -3.35,-2.621 0.499,-1.312 0.341,-2.843 -0.57,-4.038 -1.303,-1.687 -3.613,-2.116 -5.417,-1.075 -1.988,-1.784 -4.173,-3.828 -6.477,-6.117 7.158,-3.849 12.243,-3.286 12.243,-3.286 -0.849,-1.082 -1.8,-2.031 -2.816,-2.887 -3.018,-0.466 -7.707,-0.414 -13.065,2.436 l -0.002,-0.002 h -0.001 c -1.785,-1.871 -3.602,-3.874 -5.453,-6.025 -0.886,0.283 -1.751,0.634 -2.587,1.052 1.366,2.235 3.204,4.49 5.275,6.689 v 0 c 0.004,0.005 0.009,0.009 0.013,0.013 -1.727,1.207 -3.65,2.822 -5.423,4.698 -0.226,0.241 -0.444,0.484 -0.658,0.727 -1.06,-0.222 -2.174,-0.157 -3.215,0.22 -1.768,-3.815 -1.626,-6.88 -1.346,-8.46 -0.768,0.806 -1.485,1.651 -2.102,2.553 -0.462,1.886 -0.593,4.606 0.769,7.884 -1.577,2.063 -1.651,4.99 -0.004,7.148 0.137,0.179 0.284,0.345 0.437,0.504 -0.719,2.45 -1.041,4.813 -1.14,6.842 0.185,0.251 0.185,0.455 0.369,0.7 0.936,1.201 2.113,2.213 3.249,3.13 -0.141,-2.148 0.011,-5.315 1.339,-8.881 0.916,0.07 1.848,-0.075 2.72,-0.442 0.5,0.44 1.023,0.884 1.581,1.336 1.916,1.517 3.827,2.697 5.689,3.626 -0.097,0.947 0.141,1.932 0.756,2.747 1.316,1.699 3.753,2.016 5.454,0.718 0.354,-0.271 0.633,-0.598 0.865,-0.95 3.037,0.676 5.691,0.796 7.658,0.796 0.301,0 1.7,-1.902 2.501,-3.082 -1.198,0.251 -4.751,0.739 -9.606,-0.656 -0.117,-0.545 -0.341,-1.075 -0.701,-1.546 -1.233,-1.617 -3.488,-1.967 -5.169,-0.885 -1.688,-0.915 -3.455,-2.063 -5.278,-3.507 -0.368,-0.291 -0.721,-0.582 -1.061,-0.873 1.114,-1.755 1.232,-4.004 0.248,-5.896 0.223,-0.223 0.443,-0.448 0.68,-0.669 1.805,-1.686 3.503,-3.036 5.091,-4.119 -0.064,-0.059 -0.122,-0.122 -0.184,-0.182 0.063,0.059 0.123,0.119 0.187,0.177 -0.001,0 -0.001,0.001 -0.002,0.001 2.437,2.254 5.022,4.39 7.469,6.299 -0.647,1.372 -0.545,3.044 0.44,4.332 z" /> -<circle - cx="34.937664" - cy="34.938" - r="15.062" - id="circle905" - style="fill:#ffffff" /> -<path - d="m 20.991664,34.955 c 0,-7.712 6.244,-13.963 13.946,-13.963 7.702,0 13.946,6.251 13.946,13.963 0,7.712 -6.244,13.963 -13.946,13.963 -7.702,10e-4 -13.946,-6.251 -13.946,-13.963 z m 13.663,4.776 c -1.371,10e-4 -2.447,-0.094 -3.222,-0.29 -0.852,-0.216 -1.439,-0.688 -1.762,-1.416 -0.323,-0.728 -0.476,-1.849 -0.46,-3.361 0.007,-0.815 0.056,-1.605 0.148,-2.37 0.091,-0.765 0.183,-1.396 0.274,-1.895 l 0.096,-0.495 c 0.002,-0.015 0.003,-0.03 0.003,-0.045 0,-0.14 -0.102,-0.256 -0.235,-0.279 l -1.802,-0.279 c -0.015,-0.003 -0.03,-0.004 -0.045,-0.004 -0.134,0 -0.246,0.093 -0.276,0.218 -0.03,0.116 -0.049,0.201 -0.103,0.476 -0.104,0.529 -0.198,1.045 -0.303,1.789 -0.105,0.744 -0.173,1.567 -0.203,2.468 0,0 -0.044,0.201 0,1.727 0.044,1.526 0.306,2.746 0.787,3.658 0.481,0.912 1.297,1.569 2.447,1.969 1.151,0.4 2.752,0.596 4.805,0.588 h 0.267 c 2.053,0.009 3.654,-0.188 4.805,-0.588 1.151,-0.4 1.966,-1.057 2.447,-1.969 0.481,-0.912 0.743,-2.131 0.787,-3.658 0.044,-1.527 0,-1.727 0,-1.727 -0.031,-0.901 -0.098,-1.724 -0.203,-2.468 -0.105,-0.745 -0.199,-1.26 -0.303,-1.789 -0.054,-0.275 -0.073,-0.36 -0.102,-0.476 -0.03,-0.125 -0.142,-0.218 -0.276,-0.218 -0.015,0 -0.03,10e-4 -0.045,0.004 l -1.802,0.279 c -0.134,0.023 -0.235,0.139 -0.235,0.279 0,0.015 10e-4,0.03 0.004,0.045 l 0.096,0.495 c 0.091,0.498 0.182,1.13 0.274,1.895 0.091,0.764 0.141,1.554 0.148,2.37 0.016,1.512 -0.137,2.633 -0.46,3.361 -0.322,0.728 -0.91,1.2 -1.762,1.416 -0.774,0.197 -1.851,0.292 -3.221,0.29 z" - id="path907" - inkscape:connector-curvature="0" - style="clip-rule:evenodd;fill:#ff6e00;fill-rule:evenodd" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path d="M31.4 35.018c-3.538 2.705-7.706 4.023-11.845 4.023-5.873 0-11.68-2.637-15.518-7.656C-2.53 22.824-.912 10.58 7.664 4.02 11.2 1.3 15.374 0 19.508 0 25.38 0 31.2 2.637 35.026 7.66a19.51 19.51 0 0 1-3.636 27.357" fill="#59b4d9"/><g fill="#fff"><path d="M27.803 22.944c1.418 1.85 4.05 2.184 5.89.784.096-.073.17-.162.258-.24l3.924 2.7c.218-.565.37-1.107.523-1.673l-3.35-2.62c.5-1.312.34-2.843-.57-4.038-1.303-1.687-3.613-2.116-5.417-1.075l-6.477-6.117c7.158-3.85 12.243-3.286 12.243-3.286-.85-1.082-1.8-2.03-2.816-2.887-3.018-.466-7.707-.414-13.065 2.436l-.002-.002h-.001A158.35 158.35 0 0 1 13.489.9c-.886.283-1.75.634-2.587 1.052 1.366 2.235 3.204 4.5 5.275 6.69-1.714 1.22-3.637 2.835-5.4 4.71-.226.24-.444.484-.658.727-1.06-.222-2.174-.157-3.215.22-1.768-3.815-1.626-6.88-1.346-8.46-.768.806-1.485 1.65-2.102 2.553-.462 1.886-.593 4.606.77 7.884-1.577 2.063-1.65 5-.004 7.148.137.18.284.345.437.504a29.58 29.58 0 0 0-1.14 6.842c.185.25.185.455.37.7.936 1.2 2.113 2.213 3.25 3.13-.14-2.148.01-5.315 1.34-8.88.916.07 1.848-.075 2.72-.442.5.44 1.023.884 1.58 1.336 1.916 1.517 3.827 2.697 5.69 3.626-.097.947.14 1.932.756 2.747 1.316 1.7 3.753 2.016 5.454.718.354-.27.633-.598.865-.95 3.037.676 5.69.796 7.658.796.3 0 1.7-1.902 2.5-3.082-1.198.25-4.75.74-9.606-.656a3.86 3.86 0 0 0-.701-1.546c-1.233-1.617-3.488-1.967-5.17-.885-1.688-.915-3.455-2.063-5.278-3.507a35.37 35.37 0 0 1-1.061-.873c1.114-1.755 1.232-4.004.248-5.896l.68-.67c1.805-1.686 3.503-3.036 5.09-4.12-.064-.06-.122-.122-.184-.182l.187.177c2.435 2.255 5.02 4.39 7.467 6.3-.647 1.372-.545 3.044.44 4.332z"/><circle cx="34.938" cy="34.938" r="15.062"/></g><path d="M20.992 34.955c0-7.712 6.244-13.963 13.946-13.963s13.946 6.25 13.946 13.963-6.244 13.963-13.946 13.963-13.946-6.25-13.946-13.963zm13.663 4.776c-1.37.001-2.447-.094-3.222-.3-.852-.216-1.44-.688-1.762-1.416s-.476-1.85-.46-3.36c.007-.815.056-1.605.148-2.37a31.77 31.77 0 0 1 .274-1.895l.096-.495a.34.34 0 0 0 .003-.045c0-.14-.102-.256-.235-.28l-1.802-.28c-.015-.003-.03-.004-.045-.004-.134 0-.246.093-.276.218a7.3 7.3 0 0 0-.103.476c-.104.53-.198 1.045-.303 1.79s-.173 1.567-.203 2.468c0 0-.044.2 0 1.727s.306 2.746.787 3.658 1.297 1.57 2.447 1.97 2.752.596 4.805.588h.267c2.053.01 3.654-.188 4.805-.588s1.966-1.057 2.447-1.97.743-2.13.787-3.658 0-1.727 0-1.727c-.03-.9-.098-1.724-.203-2.468s-.2-1.26-.303-1.79a8.36 8.36 0 0 0-.102-.476c-.03-.125-.142-.218-.276-.218-.015 0-.03.001-.045.004l-1.802.28c-.134.023-.235.14-.235.28 0 .015.001.03.004.045l.096.495a32.49 32.49 0 0 1 .274 1.895c.09.764.14 1.554.148 2.37.016 1.512-.137 2.633-.46 3.36s-.9 1.2-1.762 1.416c-.774.197-1.85.292-3.22.3z" fill="#ff6e00" fill-rule="evenodd"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/WebAppWordPress.svg b/src/main/webapp/img/lib/mscae/WebAppWordPress.svg index e129d949433e13726fcd1c41e3de28ff2cc60207..3c953f0e814b86add2a1be1d963df69e39a56e4c 100644 --- a/src/main/webapp/img/lib/mscae/WebAppWordPress.svg +++ b/src/main/webapp/img/lib/mscae/WebAppWordPress.svg @@ -1,102 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="49.999664" - height="50" - viewBox="0 0 49.999664 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="WebAppWordPress.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata1019"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs1017" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview1015" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.020815" - inkscape:cx="15.667676" - inkscape:cy="22.587815" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<g - id="g996" - transform="translate(-3.3601031e-4)"> - <path - d="m 31.39,35.018 c -3.538,2.705 -7.706,4.023 -11.845,4.023 -5.873,0 -11.68,-2.637 -15.518,-7.656 C -2.53,22.824 -0.912,10.581 7.664,4.02 11.201,1.299 15.374,0 19.508,0 25.381,0 31.19,2.637 35.026,7.661 41.585,16.219 39.95,28.465 31.39,35.018" - id="path992" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> - <path - d="m 27.803,22.944 c 1.418,1.849 4.05,2.184 5.889,0.784 0.096,-0.073 0.17,-0.162 0.258,-0.241 1.881,1.325 3.188,2.2 3.924,2.701 0.218,-0.565 0.369,-1.107 0.523,-1.673 -0.778,-0.579 -1.83,-1.389 -3.35,-2.621 0.499,-1.312 0.341,-2.843 -0.57,-4.038 C 33.174,16.169 30.864,15.74 29.06,16.781 27.072,14.997 24.887,12.953 22.583,10.664 29.741,6.815 34.826,7.378 34.826,7.378 33.977,6.296 33.026,5.347 32.01,4.491 28.992,4.025 24.303,4.077 18.945,6.927 L 18.943,6.925 H 18.942 C 17.157,5.054 15.34,3.051 13.489,0.9 c -0.886,0.283 -1.751,0.634 -2.587,1.052 1.366,2.235 3.204,4.49 5.275,6.689 v 0 c 0.004,0.005 0.009,0.009 0.013,0.013 -1.727,1.207 -3.65,2.822 -5.423,4.698 -0.226,0.241 -0.444,0.484 -0.658,0.727 C 9.049,13.857 7.935,13.922 6.894,14.299 5.126,10.484 5.268,7.419 5.548,5.839 4.78,6.645 4.063,7.49 3.446,8.392 c -0.462,1.886 -0.593,4.606 0.769,7.884 -1.577,2.063 -1.651,4.99 -0.004,7.148 0.137,0.179 0.284,0.345 0.437,0.504 -0.719,2.45 -1.041,4.813 -1.14,6.842 0.185,0.251 0.185,0.455 0.369,0.7 0.936,1.201 2.113,2.213 3.249,3.13 -0.141,-2.148 0.011,-5.315 1.339,-8.881 0.916,0.07 1.848,-0.075 2.72,-0.442 0.5,0.44 1.023,0.884 1.581,1.336 1.916,1.517 3.827,2.697 5.689,3.626 -0.097,0.947 0.141,1.932 0.756,2.747 1.316,1.699 3.753,2.016 5.454,0.718 0.354,-0.271 0.633,-0.598 0.865,-0.95 3.037,0.676 5.691,0.796 7.658,0.796 0.301,0 1.7,-1.902 2.501,-3.082 -1.198,0.251 -4.751,0.739 -9.606,-0.656 -0.117,-0.545 -0.341,-1.075 -0.701,-1.546 -1.233,-1.617 -3.488,-1.967 -5.169,-0.885 -1.688,-0.915 -3.455,-2.063 -5.278,-3.507 -0.368,-0.291 -0.721,-0.582 -1.061,-0.873 1.114,-1.755 1.232,-4.004 0.248,-5.896 0.223,-0.223 0.443,-0.448 0.68,-0.669 1.805,-1.686 3.503,-3.036 5.091,-4.119 -0.064,-0.059 -0.122,-0.122 -0.184,-0.182 0.063,0.059 0.123,0.119 0.187,0.177 -0.001,0 -0.001,0.001 -0.002,0.001 2.437,2.254 5.022,4.39 7.469,6.299 -0.647,1.372 -0.545,3.044 0.44,4.332 z" - id="path994" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -</g> -<circle - cx="34.937664" - cy="34.938" - r="15.062" - id="circle998" - style="fill:#ffffff" /> -<g - id="g1012" - transform="translate(-3.3601031e-4)"> - <g - id="g1010"> - <path - d="m 22.975,34.938 c 0,4.735 2.752,8.828 6.743,10.767 L 24.011,30.069 c -0.664,1.488 -1.036,3.134 -1.036,4.869 z" - id="path1000" - inkscape:connector-curvature="0" - style="fill:#464342" /> - <path - d="m 43.014,34.334 c 0,-1.479 -0.531,-2.503 -0.986,-3.299 -0.606,-0.986 -1.175,-1.82 -1.175,-2.806 0,-1.1 0.834,-2.123 2.009,-2.123 0.053,0 0.103,0.006 0.155,0.01 -2.128,-1.95 -4.964,-3.141 -8.079,-3.141 -4.18,0 -7.857,2.145 -9.996,5.392 0.281,0.009 0.545,0.015 0.77,0.015 1.251,0 3.188,-0.152 3.188,-0.152 0.645,-0.038 0.721,0.91 0.077,0.986 0,0 -0.648,0.076 -1.369,0.114 l 4.356,12.959 2.618,-7.852 -1.864,-5.107 c -0.645,-0.038 -1.255,-0.114 -1.255,-0.114 -0.645,-0.038 -0.569,-1.024 0.076,-0.986 0,0 1.975,0.152 3.151,0.152 1.251,0 3.189,-0.152 3.189,-0.152 0.645,-0.038 0.721,0.91 0.076,0.986 0,0 -0.649,0.076 -1.369,0.114 l 4.324,12.86 1.194,-3.987 c 0.517,-1.657 0.91,-2.845 0.91,-3.869 z" - id="path1002" - inkscape:connector-curvature="0" - style="fill:#464342" /> - <path - d="m 35.148,35.984 -3.59,10.43 c 1.072,0.315 2.206,0.487 3.38,0.487 1.393,0 2.729,-0.241 3.973,-0.678 -0.032,-0.051 -0.061,-0.106 -0.086,-0.165 z" - id="path1004" - inkscape:connector-curvature="0" - style="fill:#464342" /> - <path - d="m 45.436,29.198 c 0.051,0.381 0.08,0.79 0.08,1.23 0,1.214 -0.227,2.578 -0.91,4.285 l -3.654,10.565 c 3.557,-2.074 5.949,-5.927 5.949,-10.341 0,-2.079 -0.531,-4.035 -1.465,-5.739 z" - id="path1006" - inkscape:connector-curvature="0" - style="fill:#464342" /> - <path - d="m 34.938,20.992 c -7.69,0 -13.946,6.256 -13.946,13.946 0,7.69 6.256,13.946 13.946,13.946 7.69,0 13.946,-6.256 13.946,-13.946 0,-7.69 -6.256,-13.946 -13.946,-13.946 z m 0,27.253 c -7.337,0 -13.306,-5.97 -13.306,-13.307 0,-7.337 5.969,-13.306 13.306,-13.306 7.337,0 13.307,5.969 13.307,13.306 0,7.337 -5.97,13.307 -13.307,13.307 z" - id="path1008" - inkscape:connector-curvature="0" - style="fill:#464342" /> - </g> -</g> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path d="M31.4 35.018c-3.538 2.705-7.706 4.023-11.845 4.023-5.873 0-11.68-2.637-15.518-7.656C-2.53 22.824-.912 10.58 7.664 4.02 11.2 1.3 15.374 0 19.508 0 25.38 0 31.2 2.637 35.026 7.66a19.51 19.51 0 0 1-3.636 27.357" fill="#59b4d9"/><g fill="#fff"><path d="M27.803 22.944c1.418 1.85 4.05 2.184 5.89.784.096-.073.17-.162.258-.24l3.924 2.7c.218-.565.37-1.107.523-1.673l-3.35-2.62c.5-1.312.34-2.843-.57-4.038-1.303-1.687-3.613-2.116-5.417-1.075l-6.477-6.117c7.158-3.85 12.243-3.286 12.243-3.286-.85-1.082-1.8-2.03-2.816-2.887-3.018-.466-7.707-.414-13.065 2.436l-.002-.002h-.001A158.35 158.35 0 0 1 13.489.9c-.886.283-1.75.634-2.587 1.052 1.366 2.235 3.204 4.5 5.275 6.69-1.714 1.22-3.637 2.835-5.4 4.71-.226.24-.444.484-.658.727-1.06-.222-2.174-.157-3.215.22-1.768-3.815-1.626-6.88-1.346-8.46-.768.806-1.485 1.65-2.102 2.553-.462 1.886-.593 4.606.77 7.884-1.577 2.063-1.65 5-.004 7.148.137.18.284.345.437.504a29.58 29.58 0 0 0-1.14 6.842c.185.25.185.455.37.7.936 1.2 2.113 2.213 3.25 3.13-.14-2.148.01-5.315 1.34-8.88.916.07 1.848-.075 2.72-.442.5.44 1.023.884 1.58 1.336 1.916 1.517 3.827 2.697 5.69 3.626-.097.947.14 1.932.756 2.747 1.316 1.7 3.753 2.016 5.454.718.354-.27.633-.598.865-.95 3.037.676 5.69.796 7.658.796.3 0 1.7-1.902 2.5-3.082-1.198.25-4.75.74-9.606-.656a3.86 3.86 0 0 0-.701-1.546c-1.233-1.617-3.488-1.967-5.17-.885-1.688-.915-3.455-2.063-5.278-3.507a35.37 35.37 0 0 1-1.061-.873c1.114-1.755 1.232-4.004.248-5.896l.68-.67c1.805-1.686 3.503-3.036 5.09-4.12-.064-.06-.122-.122-.184-.182l.187.177c2.435 2.255 5.02 4.39 7.467 6.3-.647 1.372-.545 3.044.44 4.332z"/><circle cx="34.938" cy="34.938" r="15.062"/></g><path d="M22.975 34.938c0 4.735 2.752 8.828 6.743 10.767L24 30.07c-.664 1.488-1.036 3.134-1.036 4.87zm20.04-.604c0-1.48-.53-2.503-.986-3.3-.606-.986-1.175-1.82-1.175-2.806 0-1.1.834-2.123 2-2.123.053 0 .103.006.155.01a11.92 11.92 0 0 0-8.079-3.141c-4.18 0-7.857 2.145-9.996 5.392l.77.015c1.25 0 3.188-.152 3.188-.152.645-.038.72.9.077.986 0 0-.648.076-1.37.114l4.356 12.96 2.618-7.852-1.864-5.107c-.645-.038-1.255-.114-1.255-.114-.645-.038-.57-1.024.076-.986 0 0 1.975.152 3.15.152 1.25 0 3.2-.152 3.2-.152.645-.038.72.9.076.986 0 0-.65.076-1.37.114L40.9 42.2l1.194-3.987c.517-1.657.9-2.845.9-3.87zm-7.866 1.65l-3.6 10.43a11.97 11.97 0 0 0 3.38.487 11.96 11.96 0 0 0 3.973-.678 1.22 1.22 0 0 1-.086-.165zm10.288-6.786c.05.38.08.8.08 1.23 0 1.214-.227 2.578-.9 4.285l-3.654 10.565c3.557-2.074 5.95-5.927 5.95-10.34 0-2.08-.53-4.035-1.465-5.74zm-10.498-8.206a13.96 13.96 0 0 0-13.946 13.946c0 7.7 6.256 13.946 13.946 13.946s13.946-6.256 13.946-13.946-6.256-13.946-13.946-13.946zm0 27.253c-7.337 0-13.306-5.97-13.306-13.307s5.97-13.306 13.306-13.306 13.307 5.97 13.307 13.306-5.97 13.307-13.307 13.307z" fill="#464342"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/WebApp_WebJobs.svg b/src/main/webapp/img/lib/mscae/WebApp_WebJobs.svg index b8b69f647067f16fc573d48149b33951eaf6ebd4..d5875919a7743bffbf47e79ffcd6c2ab32b29ec7 100644 --- a/src/main/webapp/img/lib/mscae/WebApp_WebJobs.svg +++ b/src/main/webapp/img/lib/mscae/WebApp_WebJobs.svg @@ -1,42 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - height="50px" width="50px" viewBox="0 0 180 180" enable-background="new 0 0 180 180" xml:space="preserve"> -<path fill="#59B4D9" d="M118.8,132.5c-13.3,10.1-29.2,15.1-44.6,15.1c-22.3,0-44.3-10.1-58.7-28.8C-9.7,86.4-3.6,40,28.8,15.1 - C42.5,5,58,0,73.8,0c22.3,0,44.3,10.1,58.7,28.8C157.3,61.2,150.8,107.6,118.8,132.5"/> -<path fill="#FFFFFF" d="M132.5,82.8c1.8-5,1.4-10.8-2.2-15.1c-5-6.5-13.7-7.9-20.5-4c-7.6-6.8-15.8-14.4-24.5-23 - c26.3-14.4,45-13,46.1-13c-3.2-4-6.8-7.6-10.8-10.8c-11.5-1.8-29.2-1.4-49.3,9.4l0,0l0,0c-6.8-6.8-13.7-14.4-20.5-22.7 - c-3.2,1.1-6.5,2.5-9.7,4c5,8.3,11.9,16.9,19.8,25.2l0,0l0,0C54,37.4,47.2,43.2,40.3,50.4c-0.7,1.1-1.8,1.8-2.5,2.9 - c-4-0.7-8.3-0.7-12.2,0.7c-6.5-14.4-6.1-25.6-5-31.7c-2.5,3.2-5,6.5-7.6,9.7c-1.8,7.2-2.2,17.3,2.9,29.5c-6.1,7.9-6.1,18.7,0,27 - c0.4,0.7,1.1,1.4,1.8,1.8c-2.5,9-4,18-4.3,25.6c0.7,1.1,1.1,1.8,1.8,2.9c3.6,4.7,7.6,8.6,11.9,12.2c-0.4-8.3,0-20.2,5-33.5 - c3.6,0.4,6.8-0.4,10.4-1.8c1.8,1.8,4,3.2,6.1,5c7.2,5.8,14.4,10.1,21.6,13.7c-0.4,3.6,0.4,7.2,2.9,10.4c5,6.5,14,7.6,20.5,2.9 - c1.4-1.1,2.5-2.2,3.2-3.6c11.2,2.5,21.2,2.9,28.4,2.9c3.2-3.2,6.5-6.8,9-10.4l0,0c0.4-0.4,0.4-0.7,0.7-1.1c-4.7,1.1-18,2.9-36.4-2.5 - c-0.4-2.2-1.4-4-2.5-5.8c-4.7-6.1-13.3-7.6-19.4-3.2c-6.5-3.6-13-7.9-19.8-13.3c-1.4-1.1-2.9-2.2-4-3.2c4.3-6.5,4.7-15.1,1.1-22.3 - c0.7-0.7,1.8-1.8,2.5-2.5C63,56.9,70.2,51.1,76,47.2C85.3,55.8,95,63.7,104,70.9c-2.5,5-2.2,11.5,1.8,16.2 - c5.4,6.8,15.5,8.3,22.3,2.9c0.4-0.4,0.7-0.7,1.1-1.1c6.5,4.7,11.9,8.3,14.8,10.1c0.7-2.2,1.4-4.3,1.8-6.5 - C142.2,90.4,137.9,87.1,132.5,82.8z"/> -<g> - <path fill="#7A7A7A" d="M161.6,93.2l-1.4,0.7L149,99.7l-7.6-3.2l-4.7-13.3H126l-0.7,1.4l-4,11.9l-7.6,3.2l-12.6-6.1l-7.6,7.9 - l0.7,1.4l5.8,11.2l-3.2,7.6l-13.3,4.7v11.2l1.4,0.4l11.9,4l3.2,7.6L94,162l7.9,7.9l1.4-0.7l11.2-5.8l7.6,3.2l4.7,13.3h11.2l0.4-1.4 - l4-11.9l7.6-3.2l13,6.1l7.9-7.9l-7.2-12.6l3.2-7.6l13.3-4.7V126l-1.4-0.7l-11.9-4l-3.2-7.6l5.4-11.5L161.6,93.2z M131.8,147.2 - c-8.6,0-15.5-6.8-15.5-15.5c0-8.6,6.8-15.5,15.5-15.5s15.5,6.8,15.5,15.5C147.2,140.4,140.4,147.2,131.8,147.2z"/> -</g> -<g> - <path fill="none" d="M116.3,131.8c0,6.1,4,11.5,9.4,14l11.9-28.4c-1.8-0.7-3.6-1.1-5.8-1.1C123.1,116.3,116.3,123.1,116.3,131.8z" - /> - <path opacity="0.25" fill="#FFFFFF" enable-background="new " d="M116.3,131.8c0-8.6,6.8-15.5,15.5-15.5c2.2,0,4,0.4,5.8,1.1 - l7.9-19.1l-3.6-1.4l-5-13.7H126l-0.7,1.4l-4,11.9l-7.6,3.2l-12.6-6.1l-7.6,7.9l0.7,1.4l5.8,11.2l-3.2,7.6l-13.3,4.7v11.2l1.4,0.4 - l11.9,4l3.2,7.6L94,162l7.9,7.9l1.4-0.7l11.2-5.8l3.2,1.4l7.9-19.1C120.2,143.3,116.3,137.9,116.3,131.8z"/> -</g> -<g> - <path fill="#7A7A7A" d="M72.6,128.7l-0.9,0.4l-6.6,3.4l-4.5-1.9l-2.8-7.9h-6.4l-0.4,0.9l-2.3,7l-4.5,1.9l-7.4-3.6l-4.5,4.7l0.4,0.9 - l3.4,6.6l-1.9,4.5l-7.9,2.8v6.6l0.9,0.2l7,2.3l1.9,4.5l-3.6,7.4l4.7,4.7l0.9-0.4l6.6-3.4l4.5,1.9l2.8,7.9h6.6l0.2-0.9l2.3-7 - l4.5-1.9l7.7,3.6l4.7-4.7l-4.3-7.4l1.9-4.5l7.9-2.8v-6.4l-0.9-0.4l-7-2.3l-1.9-4.5l3.2-6.8L72.6,128.7z M54.9,160.6 - c-5.1,0-9.1-4-9.1-9.1c0-5.1,4-9.1,9.1-9.1s9.1,4,9.1,9.1C64,156.6,60,160.6,54.9,160.6z"/> -</g> -<g> - <path fill="none" d="M45.8,151.5c0,3.6,2.3,6.8,5.5,8.3l7-16.8c-1.1-0.4-2.1-0.6-3.4-0.6C49.8,142.3,45.8,146.4,45.8,151.5z"/> - <path opacity="0.25" fill="#FFFFFF" enable-background="new " d="M45.8,151.5c0-5.1,4-9.1,9.1-9.1c1.3,0,2.3,0.2,3.4,0.6 - l4.7-11.3l-2.1-0.9l-3-8.1h-6.4l-0.4,0.9l-2.3,7l-4.5,1.9l-7.4-3.6l-4.5,4.7l0.4,0.9l3.4,6.6l-1.9,4.5l-7.9,2.8v6.6l0.9,0.2l7,2.3 - l1.9,4.5l-3.6,7.4l4.7,4.7l0.9-0.4l6.6-3.4l1.9,0.9l4.7-11.3C48.1,158.3,45.8,155.1,45.8,151.5z"/> -</g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" height="50" width="50" viewBox="0 0 180 180"><path fill="#59b4d9" d="M118.8 132.5c-13.3 10.1-29.2 15.1-44.6 15.1-22.3 0-44.3-10.1-58.7-28.8C-9.7 86.4-3.6 40 28.8 15.1 42.5 5 58 0 73.8 0c22.3 0 44.3 10.1 58.7 28.8 24.8 32.4 18.3 78.8-13.7 103.7"/><path fill="#fff" d="M132.5 82.8c1.8-5 1.4-10.8-2.2-15.1-5-6.5-13.7-7.9-20.5-4-7.6-6.8-15.8-14.4-24.5-23 26.3-14.4 45-13 46.1-13-3.2-4-6.8-7.6-10.8-10.8-11.5-1.8-29.2-1.4-49.3 9.4-6.8-6.8-13.7-14.4-20.5-22.7-3.2 1.1-6.5 2.5-9.7 4 5 8.3 11.9 16.9 19.8 25.2-6.9 4.6-13.7 10.4-20.6 17.6-.7 1.1-1.8 1.8-2.5 2.9-4-.7-8.3-.7-12.2.7-6.5-14.4-6.1-25.6-5-31.7L13 32c-1.8 7.2-2.2 17.3 2.9 29.5-6.1 7.9-6.1 18.7 0 27 .4.7 1.1 1.4 1.8 1.8-2.5 9-4 18-4.3 25.6l1.8 2.9c3.6 4.7 7.6 8.6 11.9 12.2-.4-8.3 0-20.2 5-33.5 3.6.4 6.8-.4 10.4-1.8 1.8 1.8 4 3.2 6.1 5 7.2 5.8 14.4 10.1 21.6 13.7-.4 3.6.4 7.2 2.9 10.4 5 6.5 14 7.6 20.5 2.9 1.4-1.1 2.5-2.2 3.2-3.6 11.2 2.5 21.2 2.9 28.4 2.9 3.2-3.2 6.5-6.8 9-10.4.4-.4.4-.7.7-1.1-4.7 1.1-18 2.9-36.4-2.5-.4-2.2-1.4-4-2.5-5.8-4.7-6.1-13.3-7.6-19.4-3.2-6.5-3.6-13-7.9-19.8-13.3-1.4-1.1-2.9-2.2-4-3.2 4.3-6.5 4.7-15.1 1.1-22.3l2.5-2.5C63 56.9 70.2 51.1 76 47.2c9.3 8.6 19 16.5 28 23.7-2.5 5-2.2 11.5 1.8 16.2 5.4 6.8 15.5 8.3 22.3 2.9l1.1-1.1c6.5 4.7 11.9 8.3 14.8 10.1.7-2.2 1.4-4.3 1.8-6.5-3.6-2.1-7.9-5.4-13.3-9.7z"/><path fill="#7a7a7a" d="M161.6 93.2l-1.4.7-11.2 5.8-7.6-3.2-4.7-13.3H126l-.7 1.4-4 11.9-7.6 3.2-12.6-6.1-7.6 7.9.7 1.4 5.8 11.2-3.2 7.6-13.3 4.7v11.2l1.4.4 11.9 4 3.2 7.6-6 12.4 7.9 7.9 1.4-.7 11.2-5.8 7.6 3.2 4.7 13.3H138l.4-1.4 4-11.9 7.6-3.2 13 6.1 7.9-7.9-7.2-12.6 3.2-7.6 13.3-4.7V126l-1.4-.7-11.9-4-3.2-7.6 5.4-11.5-7.5-9zm-29.8 54c-8.6 0-15.5-6.8-15.5-15.5 0-8.6 6.8-15.5 15.5-15.5s15.5 6.8 15.5 15.5c-.1 8.7-6.9 15.5-15.5 15.5z"/><path opacity=".25" fill="#fff" d="M116.3 131.8c0-8.6 6.8-15.5 15.5-15.5 2.2 0 4 .4 5.8 1.1l7.9-19.1-3.6-1.4-5-13.7H126l-.7 1.4-4 11.9-7.6 3.2-12.6-6.1-7.6 7.9.7 1.4 5.8 11.2-3.2 7.6-13.3 4.7v11.2l1.4.4 11.9 4 3.2 7.6-6 12.4 7.9 7.9 1.4-.7 11.2-5.8 3.2 1.4 7.9-19.1c-5.4-2.4-9.3-7.8-9.3-13.9z"/><path fill="#7a7a7a" d="M72.6 128.7l-.9.4-6.6 3.4-4.5-1.9-2.8-7.9h-6.4l-.4.9-2.3 7-4.5 1.9-7.4-3.6-4.5 4.7.4.9 3.4 6.6-1.9 4.5-7.9 2.8v6.6l.9.2 7 2.3 1.9 4.5-3.6 7.4 4.7 4.7.9-.4 6.6-3.4 4.5 1.9 2.8 7.9h6.6l.2-.9 2.3-7 4.5-1.9 7.7 3.6 4.7-4.7-4.3-7.4 1.9-4.5 7.9-2.8v-6.4l-.9-.4-7-2.3-1.9-4.5 3.2-6.8-4.3-5.4zm-17.7 31.9c-5.1 0-9.1-4-9.1-9.1s4-9.1 9.1-9.1 9.1 4 9.1 9.1-4 9.1-9.1 9.1z"/><path opacity=".25" fill="#fff" d="M45.8 151.5c0-5.1 4-9.1 9.1-9.1a9.34 9.34 0 0 1 3.4.6l4.7-11.3-2.1-.9-3-8.1h-6.4l-.4.9-2.3 7-4.5 1.9-7.4-3.6-4.5 4.7.4.9 3.4 6.6-1.9 4.5-7.9 2.8v6.6l.9.2 7 2.3 1.9 4.5-3.6 7.4 4.7 4.7.9-.4 6.6-3.4 1.9.9 4.7-11.3c-3.3-1.6-5.6-4.8-5.6-8.4z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/WebEnvironment.svg b/src/main/webapp/img/lib/mscae/WebEnvironment.svg index 766f6f17b7cd533246ec8ab95626da2d9b8090b6..849dc71be8866077606f434e0dd10303e97d5ed9 100644 --- a/src/main/webapp/img/lib/mscae/WebEnvironment.svg +++ b/src/main/webapp/img/lib/mscae/WebEnvironment.svg @@ -1,79 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="41.611" - viewBox="0 0 50 41.611" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="WebEnvironment.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata2807"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs2805" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview2803" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="25" - inkscape:cy="21" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<polygon - points="6,32.012 44,32.012 50,43.012 0,43.012 " - id="polygon2792" - style="fill:#b8d432" - transform="translate(0,-4.389)" /> -<path - d="m 35.387,30.374 c -3.069,2.347 -6.684,3.489 -10.274,3.489 -5.094,0 -10.131,-2.287 -13.46,-6.64 C 5.966,19.797 7.37,9.177 14.809,3.487 17.876,1.126 21.496,0 25.082,0 c 5.094,0 10.132,2.287 13.46,6.645 5.688,7.423 4.27,18.045 -3.155,23.729" - id="path2794" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="m 32.276,19.9 c 1.23,1.604 3.513,1.894 5.108,0.68 0.083,-0.063 0.148,-0.141 0.224,-0.209 1.632,1.149 2.901,2.001 3.54,2.436 0.189,-0.49 0.315,-0.954 0.449,-1.445 C 40.922,20.86 39.879,20.059 38.56,18.99 38.993,17.852 38.856,16.525 38.066,15.487 36.936,14.024 34.933,13.652 33.368,14.554 31.643,13.007 29.749,11.234 27.751,9.248 33.959,5.909 38.37,6.398 38.37,6.398 37.634,5.459 36.808,4.637 35.927,3.894 33.309,3.49 29.242,3.535 24.595,6.007 L 24.593,6.005 h -0.001 c -1.549,-1.621 -3.125,-3.358 -4.73,-5.224 -0.768,0.246 -1.519,0.55 -2.244,0.912 1.185,1.939 2.779,3.894 4.575,5.802 v 0 c 0.007,0.007 0.014,0.014 0.021,0.021 -1.491,1.046 -3.188,2.452 -4.713,4.065 -0.196,0.209 -0.385,0.42 -0.571,0.631 -0.919,-0.192 -1.886,-0.136 -2.789,0.191 -1.534,-3.309 -1.411,-5.967 -1.168,-7.337 -0.666,0.698 -1.288,1.431 -1.824,2.213 -0.4,1.637 -0.514,3.996 0.667,6.839 -1.368,1.79 -1.432,4.328 -0.004,6.2 0.119,0.155 0.246,0.299 0.379,0.437 -0.624,2.125 -0.903,4.175 -0.989,5.935 0.161,0.218 0.161,0.394 0.32,0.607 0.812,1.042 1.839,2.027 2.824,2.822 -0.122,-1.862 0.003,-4.717 1.155,-7.81 0.795,0.06 1.603,-0.065 2.359,-0.383 0.434,0.382 0.887,0.767 1.372,1.159 1.661,1.315 3.319,2.339 4.935,3.145 -0.084,0.822 0.122,1.676 0.656,2.383 1.141,1.474 3.255,1.749 4.73,0.622 0.307,-0.235 0.549,-0.519 0.75,-0.824 2.635,0.587 4.936,0.69 6.643,0.69 0.261,0 1.475,-1.65 2.17,-2.673 -1.039,0.218 -4.121,0.641 -8.332,-0.569 -0.102,-0.472 -0.296,-0.932 -0.608,-1.341 -1.07,-1.402 -3.026,-1.705 -4.483,-0.767 -1.464,-0.794 -2.997,-1.789 -4.578,-3.041 -0.319,-0.252 -0.625,-0.505 -0.92,-0.757 0.966,-1.522 1.069,-3.473 0.216,-5.114 0.194,-0.194 0.384,-0.388 0.59,-0.581 1.565,-1.462 3.038,-2.633 4.416,-3.573 -0.042,-0.038 -0.078,-0.114 -0.118,-0.153 0.041,0.038 0.079,0.08 0.12,0.08 h -0.001 c 2.114,2 4.356,3.843 6.479,5.498 -0.563,1.189 -0.475,2.674 0.379,3.79 z" - id="path2796" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -<rect - y="38.611" - width="50" - height="3" - id="rect2798" - x="0" - style="fill:#7a7a7a" /> -<rect - y="38.611" - width="50" - height="3" - id="rect2800" - x="0" - style="opacity:0.5;fill:#dd5900" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="41.611"><path d="M6 27.623h38l6 11H0z" fill="#b8d432"/><path d="M35.387 30.374c-3.07 2.347-6.684 3.49-10.274 3.49-5.094 0-10.13-2.287-13.46-6.64a16.92 16.92 0 0 1 3.156-23.736C17.876 1.126 21.496 0 25.082 0c5.094 0 10.132 2.287 13.46 6.645 5.688 7.423 4.27 18.045-3.155 23.73" fill="#59b4d9"/><path d="M32.276 19.9a3.65 3.65 0 0 0 5.108.68c.083-.063.148-.14.224-.21l3.54 2.436c.19-.5.315-.954.45-1.445L38.56 19c.433-1.138.296-2.465-.494-3.503a3.63 3.63 0 0 0-4.698-.933L27.75 9.248c6.208-3.34 10.62-2.85 10.62-2.85-.736-.94-1.562-1.76-2.443-2.504-2.618-.404-6.685-.36-11.332 2.113l-.002-.002h-.001c-1.55-1.62-3.125-3.358-4.73-5.224a15.84 15.84 0 0 0-2.244.912c1.185 1.94 2.78 3.894 4.575 5.802l.02.02a31.72 31.72 0 0 0-4.713 4.065 27.57 27.57 0 0 0-.571.631c-.92-.192-1.886-.136-2.79.19-1.534-3.31-1.41-5.967-1.168-7.337a17.86 17.86 0 0 0-1.824 2.213c-.4 1.637-.514 3.996.667 6.84-1.368 1.8-1.432 4.328-.004 6.2a5.14 5.14 0 0 0 .379.437c-.624 2.125-.903 4.175-.99 5.935.16.218.16.394.32.607.812 1.042 1.84 2.027 2.824 2.822-.122-1.862.003-4.717 1.155-7.8a5.09 5.09 0 0 0 2.359-.383c.434.382.887.767 1.372 1.16 1.66 1.315 3.32 2.34 4.935 3.145-.084.822.122 1.676.656 2.383 1.14 1.474 3.255 1.75 4.73.622a3.32 3.32 0 0 0 .75-.824c2.635.587 4.936.7 6.643.7.26 0 1.475-1.65 2.17-2.673-1.04.218-4.12.64-8.332-.57-.102-.472-.296-.932-.608-1.34-1.07-1.402-3.026-1.705-4.483-.767-1.464-.794-2.997-1.79-4.578-3.04-.32-.252-.625-.505-.92-.757.966-1.522 1.07-3.473.216-5.114l.6-.58c1.565-1.462 3.038-2.633 4.416-3.573-.042-.038-.078-.114-.118-.153.04.038.08.08.12.08h-.001c2.114 2 4.356 3.843 6.48 5.498-.563 1.19-.475 2.674.38 3.8z" fill="#fff"/><path d="M0 38.61h50v3H0z" fill="#7a7a7a"/><path d="M0 38.61h50v3H0z" opacity=".5" fill="#dd5900"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/WebHosting.svg b/src/main/webapp/img/lib/mscae/WebHosting.svg index f65c7fc7ddca44c9d0fb6b4c950dc86009f37099..b7bf08a2d3828f1e2cb20994bf1aa7a4681b3db1 100644 --- a/src/main/webapp/img/lib/mscae/WebHosting.svg +++ b/src/main/webapp/img/lib/mscae/WebHosting.svg @@ -1,25 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#3E3E3E" d="M29.364,47.462c0,1.402-1.136,2.538-2.538,2.538H2.538C1.136,50,0,48.864,0,47.462V2.538 - C0,1.136,1.136,0,2.538,0h24.288c1.402,0,2.538,1.136,2.538,2.538V47.462z"/> -<path fill="#1E1E1E" d="M4.316,27.024c0-1.762,1.429-3.191,3.191-3.191h14.614c1.762,0,3.191,1.429,3.191,3.191l0,0 - c0,1.762-1.429,3.191-3.191,3.191H7.507C5.745,30.215,4.316,28.787,4.316,27.024L4.316,27.024z"/> -<circle fill="#B8D432" cx="7.643" cy="27.024" r="2.142"/> -<path fill="#1E1E1E" d="M4.316,17.545c0-1.762,1.429-3.191,3.191-3.191h14.614c1.762,0,3.191,1.429,3.191,3.191l0,0 - c0,1.762-1.429,3.191-3.191,3.191H7.507C5.745,20.736,4.316,19.307,4.316,17.545L4.316,17.545z"/> -<circle fill="#B8D432" cx="7.643" cy="17.545" r="2.142"/> -<path fill="#1E1E1E" d="M4.316,8.065c0-1.762,1.429-3.191,3.191-3.191h14.614c1.762,0,3.191,1.429,3.191,3.191l0,0 - c0,1.762-1.429,3.191-3.191,3.191H7.507C5.745,11.257,4.316,9.828,4.316,8.065L4.316,8.065z"/> -<circle fill="#B8D432" cx="7.643" cy="8.065" r="2.142"/> -<path fill="#59B4D9" d="M49.949,45.373c0-2.555-2.051-4.626-4.585-4.626c-0.191,0-0.379,0.015-0.559,0.04 - c0.28-1.039,0.434-2.132,0.434-3.261c0-6.81-5.475-12.331-12.227-12.331c-5.395,0-9.969,3.523-11.594,8.413 - c-0.856-0.301-1.772-0.471-2.73-0.471c-4.619,0-8.357,3.775-8.357,8.43c0,4.658,3.738,8.433,8.357,8.433 - c0,0,0.008-0.003,0.012-0.003V50h27.036l-0.005-0.023C48.09,49.791,49.949,47.804,49.949,45.373"/> -<path opacity="0.2" fill="#FFFFFF" d="M23.128,50c-1.099-1.092-1.918-2.496-2.29-4.123c-1.036-4.538,1.768-9.051,6.271-10.079 - c0.934-0.213,1.864-0.252,2.766-0.149c0.409-4.24,2.995-8.011,6.848-9.872c-1.171-0.376-2.417-0.583-3.712-0.583 - c-5.395,0-9.969,3.523-11.594,8.413c-0.856-0.301-1.771-0.471-2.73-0.471c-4.619,0-8.357,3.775-8.357,8.43 - c0,4.658,3.738,8.433,8.357,8.433c0,0,0.008-0.003,0.012-0.003V50H23.128z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="50"><path fill="#3e3e3e" d="M29.364 47.462A2.54 2.54 0 0 1 26.826 50H2.538A2.54 2.54 0 0 1 0 47.462V2.538A2.54 2.54 0 0 1 2.538 0h24.288a2.54 2.54 0 0 1 2.538 2.538v44.924z"/><use xlink:href="#B" fill="#1e1e1e"/><circle fill="#b8d432" cx="7.643" cy="27.024" r="2.142"/><use xlink:href="#B" y="-9.479" fill="#1e1e1e"/><circle fill="#b8d432" cx="7.643" cy="17.545" r="2.142"/><use xlink:href="#B" y="-18.959" fill="#1e1e1e"/><circle fill="#b8d432" cx="7.643" cy="8.065" r="2.142"/><path fill="#59b4d9" d="M49.95 45.373c0-2.555-2.05-4.626-4.585-4.626-.19 0-.38.015-.56.04.28-1.04.434-2.132.434-3.26 0-6.8-5.475-12.33-12.227-12.33-5.395 0-9.97 3.523-11.594 8.413-.856-.3-1.772-.47-2.73-.47-4.62 0-8.357 3.775-8.357 8.43S14.07 50 18.688 50h27.048l-.005-.023c2.36-.186 4.218-2.173 4.218-4.604"/><path opacity=".2" fill="#fff" d="M23.128 50c-1.1-1.092-1.918-2.496-2.3-4.123-1.036-4.538 1.768-9.05 6.27-10.08.934-.213 1.864-.252 2.766-.15.41-4.24 2.995-8.01 6.848-9.872-1.17-.376-2.417-.583-3.712-.583-5.395 0-9.97 3.523-11.594 8.413a8.2 8.2 0 0 0-2.73-.471c-4.62 0-8.357 3.775-8.357 8.43S14.068 50 18.687 50h.012 4.43z"/><defs ><path id="B" d="M4.316 27.024a3.19 3.19 0 0 1 3.191-3.191H22.12a3.19 3.19 0 1 1 0 6.382H7.507a3.19 3.19 0 0 1-3.191-3.191z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/WebNetwork.svg b/src/main/webapp/img/lib/mscae/WebNetwork.svg index 62036707f2f4504078881b7466e824ec994fd585..9ed464f57655da7fee5da056c082f5399dd3c2aa 100644 --- a/src/main/webapp/img/lib/mscae/WebNetwork.svg +++ b/src/main/webapp/img/lib/mscae/WebNetwork.svg @@ -1,70 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="45.705414" - width="50.14003" - viewBox="0 0 50.14003 45.705414" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="WebNetwork.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata3059"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs3057" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview3055" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="25.040029" - inkscape:cy="22.705413" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 33.140029,37 c -3.7,2.9 -8.1,4.2 -12.5,4.2 -6.2,0 -12.3000001,-2.8 -16.4000001,-8.1 -6.9,-9 -5.2,-22 3.8,-28.9 C 11.840029,1.4 16.240029,0 20.640029,0 c 6.2,0 12.3,2.8 16.4,8.1 6.9,9 5.2,22 -3.9,28.9" - id="path3046" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="m 29.440029,24.2 c 1.5,2 4.3,2.3 6.2,0.8 0.1,-0.1 0.2,-0.2 0.3,-0.3 2,1.4 3.5,2.4 4.3,3 0.2,-0.6 0.4,-1.2 0.5,-1.8 -0.8,-0.6 -2.1,-1.6 -3.7,-2.9 0.5,-1.4 0.4,-3 -0.6,-4.3 -1.4,-1.8 -3.8,-2.2 -5.7,-1.1 -2.1,-1.9 -4.4,-4 -6.8,-6.5 7.6,-4.1 12.9,-3.5 12.9,-3.5 -0.9,-1.1 -1.9,-2.1 -3,-3 -3.2,-0.4 -8.1,-0.3 -13.8,2.7 v 0 0 c -1.9,-2 -3.8,-4.1 -5.8,-6.4 -0.9,0.3 -1.8,0.7 -2.7,1.1 1.4,2.3 3.4,4.7 5.5,7 -1.8,1.3 -3.8,3 -5.7,5 -0.2,0.3 -0.5,0.5 -0.7,0.8 -1.1000001,-0.2 -2.3000001,-0.2 -3.4000001,0.2 -1.9,-4 -1.7,-7.3 -1.4,-8.9 -0.8,0.9 -1.5,1.8 -2.2,2.8 -0.5,2 -0.6,4.9 0.8,8.3 -1.7,2.2 -1.7,5.3 0,7.5 0.1,0.2 0.3,0.4 0.5,0.5 -0.8,2.6 -1.1,5.1 -1.2,7.2 0.2,0.3 0.2,0.5 0.4,0.7 1,1.3 2.2,2.5 3.4,3.4 -0.1,-2.3 0,-5.7 1.4,-9.5 1,0.1 2.0000001,-0.1 2.9000001,-0.5 0.5,0.5 1.1,0.9 1.7,1.4 2,1.6 4,2.8 6,3.8 -0.1,1 0.1,2 0.8,2.9 1.4,1.8 4,2.1 5.8,0.8 0.4,-0.3 0.7,-0.6 0.9,-1 3.2,0.7 6,0.8 8.1,0.8 0.3,0 1.8,-2 2.6,-3.3 -1.3,0.3 -5,0.8 -10.1,-0.7 -0.1,-0.6 -0.4,-1.1 -0.7,-1.6 -1.3,-1.7 -3.7,-2.1 -5.5,-0.9 -1.8,-1 -3.6,-2.2 -5.6,-3.7 -0.4,-0.3 -0.8,-0.6 -1.1,-0.9 1.2,-1.9 1.3,-4.2 0.3,-6.2 0.2,-0.2 0.5,-0.5 0.7,-0.7 1.9,-1.8 3.7,-3.2 5.4,-4.3 -0.1,-0.1 -0.1,-0.1 -0.2,-0.2 0.1,0.1 0.1,0.1 0.2,0.2 v 0 c 2.6,2.4 5.3,4.6 7.9,6.7 -0.8,1.5 -0.7,3.3 0.4,4.6 z" - id="path3048" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -<path - d="m 45.040029,43 v -3.1 c 0,-1.5 -1.3,-2.8 -2.8,-2.8 h -3.7 l -3.5,-3.5 v -5.4 h -3.8 v 6 c 0,0.5 0.3,1 0.5,1.4 l 4.5,4.4 v 2.9 c 0,1.5 1.3,2.8 2.8,2.8 h 3.2 c 1.5,0.1 2.8,-1.2 2.8,-2.7 m -6.1,0.3 c -0.1,0 -0.3,-0.1 -0.3,-0.3 v -3.1 c 0,-0.1 0.1,-0.3 0.3,-0.3 h 3.2 c 0.1,0 0.3,0.1 0.3,0.3 V 43 c 0,0.1 -0.1,0.3 -0.3,0.3 z" - id="path3050" - inkscape:connector-curvature="0" - style="fill:#804998" /> -<path - d="m 28.740029,28.2 h 0.3 v 0 h 12 v 0 h 0.3 c 0.1,1.4 1.4,2.5 2.8,2.5 h 3.2 c 1.5,0 2.8,-1.3 2.8,-2.8 v -3.1 c 0,-1.5 -1.3,-2.8 -2.8,-2.8 h -3.2 c -1.5,0 -2.6,1.1 -2.8,2.5 h -12.6 c -0.1,-1.4 -1.4,-2.5 -2.8,-2.5 h -3.2 c -1.5,0 -2.8,1.3 -2.8,2.8 v 3.1 c 0,1.5 1.3,2.8 2.8,2.8 h 3.2 c 1.5,0 2.7,-1.1 2.8,-2.5 m 15.4,-3.8 h 3.2 c 0.1,0 0.3,0.1 0.3,0.3 v 3.1 c 0,0.1 -0.1,0.3 -0.3,0.3 h -3.2 c -0.1,0 -0.3,-0.1 -0.3,-0.3 v -3.1 c 0,-0.2 0.2,-0.3 0.3,-0.3 m -21.6,3.8 c -0.1,0 -0.3,-0.1 -0.3,-0.3 v -3.1 c 0,-0.1 0.1,-0.3 0.3,-0.3 h 3.2 c 0.1,0 0.3,0.1 0.3,0.3 v 3.1 c 0,0.1 -0.1,0.3 -0.3,0.3 z" - id="path3052" - inkscape:connector-curvature="0" - style="fill:#68217a" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" height="45.705" width="50.14"><path d="M33.14 37c-3.7 2.9-8.1 4.2-12.5 4.2-6.2 0-12.3-2.8-16.4-8.1-6.9-9-5.2-22 3.8-28.9 3.8-2.8 8.2-4.2 12.6-4.2 6.2 0 12.3 2.8 16.4 8.1 6.9 9 5.2 22-3.9 28.9" fill="#59b4d9"/><path d="M29.44 24.2c1.5 2 4.3 2.3 6.2.8l.3-.3 4.3 3c.2-.6.4-1.2.5-1.8l-3.7-2.9c.5-1.4.4-3-.6-4.3-1.4-1.8-3.8-2.2-5.7-1.1l-6.8-6.5c7.6-4.1 12.9-3.5 12.9-3.5-.9-1.1-1.9-2.1-3-3-3.2-.4-8.1-.3-13.8 2.7-1.9-2-3.8-4.1-5.8-6.4-.9.3-1.8.7-2.7 1.1 1.4 2.3 3.4 4.7 5.5 7-1.8 1.3-3.8 3-5.7 5-.2.3-.5.5-.7.8-1.1-.2-2.3-.2-3.4.2-1.9-4-1.7-7.3-1.4-8.9-.8.9-1.5 1.8-2.2 2.8-.5 2-.6 4.9.8 8.3-1.7 2.2-1.7 5.3 0 7.5.1.2.3.4.5.5-.8 2.6-1.1 5.1-1.2 7.2.2.3.2.5.4.7 1 1.3 2.2 2.5 3.4 3.4-.1-2.3 0-5.7 1.4-9.5 1 .1 2-.1 2.9-.5.5.5 1.1.9 1.7 1.4 2 1.6 4 2.8 6 3.8-.1 1 .1 2 .8 2.9 1.4 1.8 4 2.1 5.8.8.4-.3.7-.6.9-1 3.2.7 6 .8 8.1.8.3 0 1.8-2 2.6-3.3-1.3.3-5 .8-10.1-.7-.1-.6-.4-1.1-.7-1.6a4.07 4.07 0 0 0-5.5-.9c-1.8-1-3.6-2.2-5.6-3.7-.4-.3-.8-.6-1.1-.9 1.2-1.9 1.3-4.2.3-6.2l.7-.7c1.9-1.8 3.7-3.2 5.4-4.3l-.2-.2.2.2c2.6 2.4 5.3 4.6 7.9 6.7-.8 1.5-.7 3.3.4 4.6z" fill="#fff"/><path d="M45.04 43v-3.1c0-1.5-1.3-2.8-2.8-2.8h-3.7l-3.5-3.5v-5.4h-3.8v6c0 .5.3 1 .5 1.4l4.5 4.4v2.9c0 1.5 1.3 2.8 2.8 2.8h3.2c1.5.1 2.8-1.2 2.8-2.7m-6.1.3c-.1 0-.3-.1-.3-.3v-3.1c0-.1.1-.3.3-.3h3.2c.1 0 .3.1.3.3V43c0 .1-.1.3-.3.3z" fill="#804998"/><path d="M28.74 28.2h12.6c.1 1.4 1.4 2.5 2.8 2.5h3.2c1.5 0 2.8-1.3 2.8-2.8v-3.1c0-1.5-1.3-2.8-2.8-2.8h-3.2c-1.5 0-2.6 1.1-2.8 2.5h-12.6c-.1-1.4-1.4-2.5-2.8-2.5h-3.2c-1.5 0-2.8 1.3-2.8 2.8v3.1c0 1.5 1.3 2.8 2.8 2.8h3.2c1.5 0 2.7-1.1 2.8-2.5m15.4-3.8h3.2c.1 0 .3.1.3.3v3.1c0 .1-.1.3-.3.3h-3.2c-.1 0-.3-.1-.3-.3v-3.1c0-.2.2-.3.3-.3m-21.6 3.8c-.1 0-.3-.1-.3-.3v-3.1c0-.1.1-.3.3-.3h3.2c.1 0 .3.1.3.3v3.1c0 .1-.1.3-.3.3z" fill="#68217a"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/WebSlots.svg b/src/main/webapp/img/lib/mscae/WebSlots.svg index 713bf14ae75c0a9dd815152de6d1d4c827db074e..707192b8afdd6cc795dd324152135ba7c6f9dafc 100644 --- a/src/main/webapp/img/lib/mscae/WebSlots.svg +++ b/src/main/webapp/img/lib/mscae/WebSlots.svg @@ -1,90 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="47.351002" - height="50" - viewBox="0 0 47.351002 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="WebSlots.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata3581"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs3579" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview3577" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.020815" - inkscape:cx="32.372485" - inkscape:cy="22.34416" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="M 41.418,50 H 5.93 C 2.66,50 0,47.34 0,44.07 v -9.863 c 0,-0.864 0.699,-1.563 1.563,-1.563 0.864,0 1.563,0.699 1.563,1.563 v 9.863 c 0,1.546 1.259,2.805 2.805,2.805 H 41.42 c 1.546,0 2.805,-1.259 2.805,-2.805 v -9.863 c 0,-0.864 0.699,-1.563 1.563,-1.563 0.864,0 1.563,0.699 1.563,1.563 V 44.07 C 47.348,47.34 44.688,50 41.418,50 Z" - id="path3562" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<rect - x="5.6799998" - y="16.691" - width="9.8699999" - height="27.614" - id="rect3564" - style="fill:#59b4d9" /> -<rect - x="18.739" - y="16.691" - width="9.8699999" - height="27.614" - id="rect3566" - style="fill:#59b4d9" /> -<rect - x="31.799" - y="16.691" - width="9.8690004" - height="27.614" - id="rect3568" - style="fill:#b8d432" /> -<g - id="g3572" - transform="translate(-1.326)"> - <path - d="M 16.908,11.426 C 16.908,5.125 22.035,0 28.336,0 34.637,0 39.89,4.784 39.89,11.084 c 0,0.864 -0.699,1.563 -1.563,1.563 -0.864,0 -1.563,-0.699 -1.563,-1.563 0,-4.578 -3.852,-7.959 -8.429,-7.959 -4.577,0 -8.302,3.723 -8.302,8.301 z" - id="path3570" - inkscape:connector-curvature="0" - style="fill:#b8d432" /> -</g> -<polygon - points="32.033,8.782 44.365,8.782 38.199,14.948 " - id="polygon3574" - style="fill:#b8d432" - transform="translate(-1.326)" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="47.351" height="50"><path d="M41.418 50H5.93A5.94 5.94 0 0 1 0 44.07v-9.863a1.56 1.56 0 0 1 1.563-1.563 1.56 1.56 0 0 1 1.563 1.563v9.863a2.81 2.81 0 0 0 2.805 2.805h35.49a2.81 2.81 0 0 0 2.805-2.805v-9.863a1.56 1.56 0 1 1 3.126 0v9.863c-.003 3.27-2.663 5.93-5.933 5.93z" fill="#a0a1a2"/><path d="M5.68 16.7h9.87v27.614H5.68zm13.06 0h9.87v27.614h-9.87z" fill="#59b4d9"/><g fill="#b8d432"><path d="M31.8 16.7h9.87v27.614H31.8zm-16.218-5.264C15.582 5.125 20.7 0 27 0s11.554 4.784 11.554 11.084a1.563 1.563 0 1 1-3.126 0c0-4.578-3.852-7.96-8.43-7.96s-8.302 3.723-8.302 8.3z"/><path d="M30.707 8.782H43.04l-6.166 6.166z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/WebTest.svg b/src/main/webapp/img/lib/mscae/WebTest.svg index 7951acaf4fe513951fb8020b2660fec5a22a0f7c..2b2516072ba8b3954d65f012386055cebdc841d5 100644 --- a/src/main/webapp/img/lib/mscae/WebTest.svg +++ b/src/main/webapp/img/lib/mscae/WebTest.svg @@ -1,91 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50.00024" - height="46" - viewBox="0 0 50.00024 46" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="WebTest.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata3731"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs3729" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview3727" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="25.000078" - inkscape:cy="23" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 33.143078,36.974 c -3.735,2.856 -8.137,4.248 -12.507,4.248 -6.201,0 -12.3330003,-2.784 -16.3850003,-8.084 -6.923,-9.039 -5.21400004,-21.967 3.842,-28.893 C 11.827078,1.371 16.233078,0 20.598078,0 c 6.201,0 12.334,2.784 16.385,8.089 6.924,9.036 5.199,21.966 -3.84,28.885" - id="path3710" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="m 33.143078,36.974 c -3.735,2.856 -8.137,4.248 -12.507,4.248 -6.201,0 -12.3330003,-2.784 -16.3850003,-8.084 -6.923,-9.039 -5.21400004,-21.967 3.842,-28.893 C 11.827078,1.371 16.233078,0 20.598078,0 c 6.201,0 12.334,2.784 16.385,8.089 6.924,9.036 5.199,21.966 -3.84,28.885" - id="path3712" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="m 29.356078,24.225 c 1.497,1.953 4.276,2.305 6.218,0.828 0.101,-0.077 0.18,-0.171 0.272,-0.255 1.986,1.399 3.532,2.436 4.309,2.965 0.23,-0.596 0.383,-1.161 0.547,-1.759 -0.821,-0.611 -2.092,-1.586 -3.698,-2.887 0.527,-1.385 0.361,-3.001 -0.602,-4.264 -1.376,-1.781 -3.814,-2.234 -5.719,-1.136 -2.1,-1.884 -4.406,-4.042 -6.838,-6.459 7.557,-4.064 12.927,-3.469 12.927,-3.469 -0.896,-1.143 -1.901,-2.144 -2.973,-3.049 -3.187,-0.492 -8.138,-0.437 -13.795,2.572 l -0.002,-0.003 h -0.001 c -1.885,-1.973 -3.804,-4.088 -5.758,-6.359 -0.935,0.299 -1.849,0.67 -2.731,1.111 1.442,2.36 3.383,4.741 5.57,7.063 v 0 c 0,0 0,0 0,0 -1.822,1.275 -3.841,2.994 -5.713,4.974 -0.239,0.255 -0.469,0.511 -0.695,0.768 -1.1180003,-0.234 -2.2940003,-0.166 -3.3930003,0.232 -1.868,-4.028 -1.718,-7.263 -1.423,-8.932 -0.811,0.849 -1.568,1.742 -2.22,2.694 -0.487,1.992 -0.626,4.864 0.812,8.325 -1.665,2.179 -1.743,5.269 -0.004,7.548 0.145,0.189 0.3,0.364 0.461,0.532 -0.76,2.587 -1.099,5.082 -1.204,7.225 0.195,0.266 0.195,0.48 0.389,0.739 0.989,1.268 2.238,2.467 3.438,3.435 -0.149,-2.267 0.003,-5.742 1.406,-9.507 0.967,0.073 1.9510003,-0.079 2.8720003,-0.467 0.528,0.465 1.08,0.934 1.67,1.411 2.022,1.601 4.041,2.847 6.007,3.829 -0.102,1.001 0.149,2.04 0.798,2.901 1.39,1.794 3.962,2.129 5.758,0.758 0.374,-0.286 0.669,-0.632 0.913,-1.003 3.207,0.714 6.009,0.84 8.086,0.84 0.318,0 1.795,-2.009 2.641,-3.254 -1.265,0.265 -5.016,0.78 -10.143,-0.693 -0.124,-0.575 -0.36,-1.134 -0.741,-1.633 -1.302,-1.707 -3.683,-2.076 -5.457,-0.934 -1.782,-0.967 -3.648,-2.178 -5.572,-3.702 -0.388,-0.307 -0.761,-0.615 -1.12,-0.922 1.176,-1.853 1.301,-4.228 0.262,-6.225 0.236,-0.236 0.468,-0.473 0.719,-0.707 1.906,-1.78 3.698,-3.205 5.376,-4.349 -0.066,-0.062 -0.126,-0.127 -0.192,-0.189 0.066,0.061 0.128,0.123 0.194,0.184 0,0 -0.001,10e-4 -0.002,10e-4 2.573,2.38 5.302,4.635 7.887,6.65 -0.683,1.448 -0.576,3.213 0.464,4.572 z" - id="path3714" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -<path - d="m 49.625078,43.229 -8.023,-13.897 v -5.625 h 0.145 c 0.96,0 1.738,-0.778 1.738,-1.738 0,-0.96 -0.778,-1.738 -1.738,-1.738 h -8.754 c -0.96,0 -1.738,0.778 -1.738,1.738 0,0.96 0.778,1.738 1.738,1.738 h 0.145 v 5.625 l -8.023,13.897 c -0.88,1.524 -0.16,2.771 1.6,2.771 h 21.311 c 1.759,0 2.478,-1.247 1.599,-2.771 z" - id="path3716" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<path - d="m 43.016078,37.247 h -3.767 c 0.104,0.214 0.165,0.454 0.165,0.708 0,0.894 -0.725,1.619 -1.619,1.619 -0.894,0 -1.619,-0.725 -1.619,-1.619 0,-0.254 0.06,-0.494 0.165,-0.708 h -4.619 l -3.31,5.734 h 17.915 z" - id="path3718" - inkscape:connector-curvature="0" - style="fill:#b8d432" /> -<path - d="m 37.795078,39.574 c 0.894,0 1.619,-0.725 1.619,-1.619 0,-0.254 -0.06,-0.494 -0.165,-0.708 h -2.908 c -0.104,0.214 -0.165,0.454 -0.165,0.708 0,0.895 0.725,1.619 1.619,1.619 z" - id="path3720" - inkscape:connector-curvature="0" - style="fill:#7fba00" /> -<circle - cx="39.804077" - cy="40.824001" - r="0.79400003" - id="circle3722" - style="fill:#7fba00" /> -<path - d="m 25.114078,43.229 8.023,-13.897 v -5.625 h -0.145 c -0.96,0 -1.738,-0.778 -1.738,-1.738 0,-0.96 0.778,-1.738 1.738,-1.738 h 3.772 v 9.056 L 32.536078,46 h -5.822 c -1.76,0 -2.48,-1.247 -1.6,-2.771 z" - id="path3724" - inkscape:connector-curvature="0" - style="opacity:0.25;fill:#ffffff" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="46"><path d="M33.143 36.974c-3.735 2.856-8.137 4.248-12.507 4.248-6.2 0-12.333-2.784-16.385-8.084C-2.672 24.1-.963 11.17 8.093 4.245A20.42 20.42 0 0 1 20.598 0c6.2 0 12.334 2.784 16.385 8.09a20.6 20.6 0 0 1-3.84 28.885" fill="#59b4d9"/><path d="M29.356 24.225c1.497 1.953 4.276 2.305 6.218.828.1-.077.18-.17.272-.255l4.31 2.965c.23-.596.383-1.16.547-1.76l-3.698-2.887c.527-1.385.36-3-.602-4.264a4.42 4.42 0 0 0-5.719-1.136l-6.838-6.46c7.557-4.064 12.927-3.47 12.927-3.47-.896-1.143-1.9-2.144-2.973-3.05-3.187-.492-8.138-.437-13.795 2.572l-.002-.003H20C18.116 5.336 16.197 3.22 14.243.95c-.935.3-1.85.67-2.73 1.11 1.442 2.36 3.383 4.74 5.57 7.063-1.822 1.275-3.84 2.994-5.713 4.974a32.57 32.57 0 0 0-.695.768 6.22 6.22 0 0 0-3.393.232C5.413 11.07 5.563 7.835 5.858 6.166c-.81.85-1.568 1.742-2.22 2.694-.487 1.992-.626 4.864.812 8.325-1.665 2.18-1.743 5.27-.004 7.548.145.19.3.364.46.532-.76 2.587-1.1 5.082-1.204 7.225.195.266.195.48.39.74.99 1.268 2.238 2.467 3.438 3.435-.15-2.267.003-5.742 1.406-9.507a6.19 6.19 0 0 0 2.872-.467c.528.465 1.08.934 1.67 1.41 2.022 1.6 4.04 2.847 6.007 3.83-.102 1 .15 2.04.798 2.9 1.4 1.794 3.962 2.13 5.758.758.374-.286.67-.632.913-1.003 3.207.714 6.01.84 8.086.84.318 0 1.795-2.01 2.64-3.254-1.265.265-5.016.78-10.143-.693-.124-.575-.36-1.134-.74-1.633-1.302-1.707-3.683-2.076-5.457-.934-1.782-.967-3.648-2.178-5.572-3.702a38.06 38.06 0 0 1-1.12-.922c1.176-1.853 1.3-4.228.262-6.225l.72-.707c1.906-1.78 3.698-3.205 5.376-4.35-.066-.062-.126-.127-.192-.19l.194.184c2.57 2.38 5.3 4.636 7.885 6.65-.683 1.448-.576 3.213.464 4.572z" fill="#fff"/><path d="M49.625 43.23l-8.023-13.897v-5.625h.145a1.74 1.74 0 0 0 1.738-1.738 1.74 1.74 0 0 0-1.738-1.738h-8.754a1.74 1.74 0 0 0-1.738 1.738 1.74 1.74 0 0 0 1.738 1.738h.145v5.625L25.115 43.23c-.88 1.524-.16 2.77 1.6 2.77h21.31c1.76 0 2.478-1.247 1.6-2.77z" fill="#a0a1a2"/><path d="M43.016 37.247H39.25c.104.214.165.454.165.708a1.62 1.62 0 0 1-1.619 1.619 1.62 1.62 0 0 1-1.619-1.619c0-.254.06-.494.165-.708h-4.62l-3.3 5.734h17.915z" fill="#b8d432"/><g fill="#7fba00"><path d="M37.795 39.574a1.62 1.62 0 0 0 1.619-1.619c0-.254-.06-.494-.165-.708H36.34c-.104.214-.165.454-.165.708a1.62 1.62 0 0 0 1.619 1.619z"/><circle cx="39.804" cy="40.824" r=".794"/></g><path d="M25.114 43.23l8.023-13.897v-5.625h-.145a1.74 1.74 0 0 1-1.738-1.738 1.74 1.74 0 0 1 1.738-1.738h3.772v9.056L32.536 46h-5.822c-1.76 0-2.48-1.247-1.6-2.77z" opacity=".25" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Web_App_Firewall.svg b/src/main/webapp/img/lib/mscae/Web_App_Firewall.svg new file mode 100644 index 0000000000000000000000000000000000000000..76a4e62dddfa8ba37bdf845a69fc5945383a8633 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Web_App_Firewall.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="49.9" height="49.897"><path d="M43.663 28.523a15.83 15.83 0 0 1-9.646 3.277c-4.783 0-9.512-2.148-12.637-6.236a15.89 15.89 0 0 1 2.962-22.289A15.75 15.75 0 0 1 33.987 0C38.77 0 43.5 2.148 46.624 6.24c5.34 6.97 4 16.946-2.96 22.283" fill="#59b4d9"/><path d="M40.742 18.688c1.155 1.506 3.298 1.78 4.796.64.078-.06.14-.132.2-.197l3.196 2.2c.177-.46.3-.9.426-1.363l-2.728-2.135c.406-1.07.278-2.316-.464-3.29a3.41 3.41 0 0 0-4.411-.876l-5.274-4.983c5.83-3.135 9.97-2.676 9.97-2.676-.693-.88-1.468-1.653-2.295-2.35-2.458-.38-6.277-.337-10.64 1.984h-.001c-1.455-1.522-2.935-3.154-4.442-4.906-.72.23-1.426.517-2.106.857 1.112 1.82 2.61 3.657 4.296 5.448a30.7 30.7 0 0 0-4.405 3.837c-.184.197-.362.394-.536.592-.863-.18-1.77-.128-2.618.18-1.44-3.107-1.324-5.604-1.096-6.89-.625.655-1.21 1.344-1.712 2.078-.376 1.536-.483 3.752.626 6.422-1.284 1.68-1.345 4.064-.003 5.822.112.146.232.28.356.4-.586 1.996-.848 3.92-.93 5.573.15.205.15.37.3.57.763.978 1.72 1.803 2.646 2.55-.114-1.75.01-4.33 1.1-7.234.746.057 1.505-.06 2.215-.36.407.358.833.72 1.288 1.088 1.56 1.235 3.116 2.197 4.633 2.954a3.16 3.16 0 0 0 .616 2.238 3.18 3.18 0 0 0 4.441.585c.288-.22.516-.487.705-.774 2.473.55 4.635.648 6.237.648.245 0 1.385-1.55 2.037-2.5-.976.204-3.87.602-7.823-.534-.095-.444-.278-.875-.57-1.26-1.004-1.317-2.84-1.602-4.21-.72-1.374-.746-2.814-1.68-4.298-2.856-.3-.237-.587-.474-.864-.71a4.82 4.82 0 0 0 .202-4.803l.554-.545c1.47-1.373 2.852-2.473 4.146-3.355-.052-.048-.1-.1-.15-.148l.152.144c1.984 1.837 4.088 3.577 6.082 5.13-.53 1.12-.447 2.483.355 3.53z" fill="#fff"/><path d="M42 28.147v-6.5a.75.75 0 0 0-.75-.75h-4.5a.75.75 0 0 0-.75.75.75.75 0 0 0-.75-.75h-10.5a.75.75 0 0 0-.75.75.75.75 0 0 0-.75-.75h-10.5a.75.75 0 0 0-.75.75.75.75 0 0 0-.75-.75H.75a.75.75 0 0 0-.75.75v6.5a.75.75 0 0 0 .75.75.75.75 0 0 0-.75.75v5.5a.75.75 0 0 0 .75.75.75.75 0 0 0-.75.75v5.5a.75.75 0 0 0 .75.75.75.75 0 0 0-.75.75v5.5a.75.75 0 0 0 .75.75h4.5a.75.75 0 0 0 .75-.75.75.75 0 0 0 .75.75h10.5a.75.75 0 0 0 .75-.75.75.75 0 0 0 .75.75h10.5a.75.75 0 0 0 .75-.75.75.75 0 0 0 .75.75h10.5a.75.75 0 0 0 .75-.75v-5.5a.75.75 0 0 0-.75-.75.75.75 0 0 0 .75-.75v-5.5a.75.75 0 0 0-.75-.75.75.75 0 0 0 .75-.75v-5.5a.75.75 0 0 0-.75-.75.75.75 0 0 0 .75-.75z" fill="#a0a1a2"/><path d="M13 22.897h10v5H13zm12 0h10v5H25z" fill="#ba141a"/><path d="M1 22.897h10v5H1zm18 7h10v5H19z" fill="#dd5900"/><path d="M31 29.897h10v5H31zm-30 0h4v5H1zm6 0h10v5H7zm6 7h10v5H13z" fill="#ba141a"/><path d="M25 36.897h10v5H25zm-24 0h10v5H1z" fill="#dd5900"/><path d="M31 43.897h10v5H31zm-12 0h10v5H19z" fill="#ba141a"/><path d="M1 43.897h4v5H1zm36-21h4v5h-4zm0 14h4v5h-4z" fill="#dd5900"/><path d="M7 43.897h10v5H7z" fill="#ba141a"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Webhooks.svg b/src/main/webapp/img/lib/mscae/Webhooks.svg index 1a7541e4551c89fea813fb1b86caabd2cc324c80..823d6481b94f57bbc4d66f5cef55933a022e332c 100644 --- a/src/main/webapp/img/lib/mscae/Webhooks.svg +++ b/src/main/webapp/img/lib/mscae/Webhooks.svg @@ -1,75 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="255.0695" - height="237.46112" - viewBox="0 0 255.0695 237.46112" - version="1.1" - preserveAspectRatio="xMidYMid" - id="svg2" - inkscape:version="0.91 r13725" - sodipodi:docname="webhooks color.svg"> - <metadata - id="metadata16"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <defs - id="defs14" /> - <sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview12" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="3.3596365" - inkscape:cx="127.99886" - inkscape:cy="118.93292" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="svg2" /> - <g - id="g4" - transform="translate(-0.00114474,-0.97179992)"> - <path - d="M 119.54043,100.50274 C 108.93012,118.33881 98.76463,135.61145 88.387602,152.75362 85.72267,157.15431 84.404042,160.73853 86.53322,166.33331 92.410702,181.78715 84.11936,196.82584 68.535038,200.90824 53.838368,204.75935 39.519295,195.09995 36.603289,179.36538 34.019411,165.43775 44.827415,151.78491 60.182411,149.60828 61.469407,149.42443 62.782104,149.40268 64.944891,149.24057 72.469175,136.62366 80.177316,123.70031 88.302593,110.07317 73.611854,95.465466 64.86779,78.388544 66.803227,57.229213 68.171279,42.271585 74.052715,29.346265 84.803386,18.751772 105.39335,-1.535722 136.80516,-4.8214183 161.04854,10.751042 184.3331,25.708671 194.99678,54.845007 185.90675,79.782296 179.05265,77.92396 172.15111,76.049808 164.56356,73.9918 167.41828,60.127427 165.3069,47.676575 155.95591,37.010912 149.77793,29.969005 141.85035,26.278033 132.83544,24.917889 114.76411,22.187717 97.020957,33.798363 91.756331,51.535588 85.780001,71.666903 94.824562,88.1112 119.54043,100.50274 L 119.54043,100.50274 Z" - id="path6" - inkscape:connector-curvature="0" - style="fill:#c73a63" /> - <path - d="M 149.84119,79.410629 C 157.31605,92.596907 164.90558,105.98286 172.42788,119.24624 210.44865,107.48337 239.11447,128.53001 249.39858,151.06332 261.81978,178.28201 253.32876,210.52019 228.93316,227.31243 203.89307,244.55146 172.22624,241.6058 150.04087,219.46195 155.69495,214.72912 161.37672,209.97455 167.44794,204.89576 189.36049,219.08831 208.52507,218.4201 222.75321,201.61402 234.88577,187.27715 234.62283,165.90036 222.13837,151.86399 207.73034,135.66681 188.43132,135.17257 165.10327,150.72131 155.42609,133.55345 145.58086,116.522 136.2101,99.229585 133.05093,93.401527 129.56161,90.020937 122.44062,88.787318 110.54727,86.725356 102.86879,76.512415 102.40815,65.06981 101.95543,53.753729 108.62172,43.524973 119.04224,39.539436 129.36391,35.59146 141.4767,38.778309 148.41976,47.554004 154.09362,54.724413 155.8966,62.794336 152.9114,71.637248 152.08108,74.102509 151.00562,76.488692 149.84119,79.410629 L 149.84119,79.410629 Z" - id="path8" - inkscape:connector-curvature="0" - style="fill:#4b4b4b" /> - <path - d="M 167.70692,187.20993 121.9365,187.20993 C 117.54964,205.25359 108.0741,219.82176 91.746446,229.08576 79.054406,236.28582 65.37389,238.72736 50.813629,236.37676 24.006143,232.05316 2.0856857,207.9205 0.15617931,180.7453 -2.028354,149.96216 19.130976,122.59915 47.334192,116.4528 49.28149,123.52436 51.248559,130.66314 53.195858,137.71691 27.319517,150.919 18.363919,167.55309 25.605498,188.35261 31.981173,206.65722 50.090064,216.69026 69.752841,212.8095 89.832755,208.84769 99.956733,192.16023 98.721137,165.37844 117.75722,165.37844 136.80912,165.18074 155.84718,165.47531 163.28052,165.59195 169.01962,164.82094 174.62033,158.26734 183.84084,147.48306 200.811,148.45572 210.74124,158.64098 220.88894,169.04964 220.40261,185.79839 209.6638,195.76817 199.30259,205.38802 182.93341,204.87401 173.24041,194.50885 171.24764,192.37176 169.67794,189.83533 167.70692,187.20993 L 167.70692,187.20993 Z" - id="path10" - inkscape:connector-curvature="0" - style="fill:#4a4a4a" /> - </g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="255.07" height="237.461" preserveAspectRatio="xMidYMid"><path d="M119.54 99.53l-31.153 52.25c-2.665 4.4-3.984 7.985-1.854 13.58 5.877 15.454-2.414 30.493-17.998 34.575-14.697 3.85-29.016-5.808-31.932-21.543-2.584-13.928 8.224-27.58 23.58-29.757 1.287-.184 2.6-.206 4.762-.368L88.302 109.1c-14.69-14.608-23.435-31.685-21.5-52.844 1.368-14.958 7.25-27.883 18-38.477 20.6-20.287 52.002-23.573 76.245-8 23.285 14.958 33.948 44.094 24.858 69.03l-21.343-5.8c2.855-13.864.743-26.315-8.608-36.98-6.178-7.042-14.106-10.733-23.12-12.093-18.07-2.73-35.814 8.88-41.08 26.618-5.976 20.13 3.068 36.576 27.784 48.967z" fill="#c73a63"/><path d="M149.84 78.44l22.587 39.836c38.02-11.763 66.687 9.284 76.97 31.817 12.42 27.22 3.93 59.457-20.465 76.25-25.04 17.24-56.707 14.293-78.892-7.85l17.407-14.566c21.913 14.193 41.077 13.524 55.305-3.282 12.133-14.337 11.87-35.714-.615-49.75-14.408-16.197-33.707-16.69-57.035-1.143L136.21 98.258c-3.16-5.828-6.648-9.21-13.77-10.442-11.893-2.062-19.572-12.275-20.032-23.718-.453-11.316 6.214-21.545 16.634-25.53 10.322-3.948 22.434-.76 29.378 8.015 5.674 7.17 7.477 15.24 4.492 24.083-.83 2.465-1.906 4.85-3.07 7.773z" fill="#4b4b4b"/><path d="M167.706 186.238h-45.77c-4.387 18.044-13.862 32.612-30.2 41.876-12.692 7.2-26.373 9.642-40.933 7.29C24.005 231.08 2.085 206.95.155 179.773-2.03 149 19.13 121.627 47.333 115.48l5.862 21.264c-25.876 13.202-34.832 29.836-27.6 50.636 6.376 18.305 24.485 28.338 44.147 24.457 20.08-3.962 30.204-20.65 28.968-47.43l57.126.097c7.433.117 13.172-.654 18.773-7.208 9.22-10.784 26.19-9.812 36.12.374 10.148 10.41 9.66 27.157-1.077 37.127-10.36 9.62-26.73 9.106-36.423-1.26-1.993-2.137-3.562-4.674-5.533-7.3z" fill="#4a4a4a"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/WebsitePower.svg b/src/main/webapp/img/lib/mscae/WebsitePower.svg index 6e96cb5daec4ea92353e53d1398d0b3acbff8d10..48c295de19bbdab8929107539fec889faf536f1c 100644 --- a/src/main/webapp/img/lib/mscae/WebsitePower.svg +++ b/src/main/webapp/img/lib/mscae/WebsitePower.svg @@ -1,42 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="50px" height="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#59B4D9" d="M29.833,31.322c-1.443,1.104-3.144,1.642-4.832,1.642c-2.396,0-4.765-1.076-6.331-3.123 - c-2.676-3.494-2.014-8.488,1.484-11.165c1.443-1.11,3.145-1.64,4.832-1.64c2.396,0,4.765,1.076,6.33,3.125 - C33.992,23.653,33.324,28.649,29.833,31.322"/> -<path fill="#59B4D9" d="M29.833,31.322c-1.443,1.104-3.144,1.642-4.832,1.642c-2.396,0-4.765-1.076-6.331-3.123 - c-2.676-3.494-2.014-8.488,1.484-11.165c1.443-1.11,3.145-1.64,4.832-1.64c2.396,0,4.765,1.076,6.33,3.125 - C33.992,23.653,33.324,28.649,29.833,31.322"/> -<path fill="#FFFFFF" d="M28.37,26.396c0.578,0.754,1.651,0.891,2.401,0.321c0.04-0.03,0.07-0.067,0.106-0.1 - c0.768,0.541,1.365,0.941,1.665,1.146c0.088-0.231,0.148-0.449,0.211-0.68c-0.315-0.235-0.813-0.618-1.428-1.117 - c0.203-0.535,0.138-1.159-0.234-1.646c-0.531-0.688-1.47-0.863-2.206-0.44c-0.814-0.73-1.7-1.555-2.644-2.494 - c2.92-1.57,4.993-1.34,4.993-1.34c-0.345-0.442-0.734-0.828-1.148-1.178c-1.231-0.189-3.145-0.169-5.33,0.994l0,0c0,0,0,0,0,0 - c-0.729-0.762-1.47-1.58-2.226-2.457c-0.361,0.116-0.713,0.258-1.055,0.429c0.557,0.912,1.307,1.831,2.152,2.729 - c0.022-0.016,0.044-0.028,0.066-0.044c-0.003,0.002-0.007,0.005-0.01,0.008c-0.018,0.013-0.036,0.023-0.054,0.036 - c0.001,0.001,0.001,0.001,0.002,0.002c-0.697,0.493-1.503,1.171-2.21,1.919c-0.095,0.101-0.177,0.204-0.267,0.306 - c-0.431-0.091-0.879-0.063-1.303,0.088c-0.724-1.558-0.674-2.813-0.559-3.459c-0.314,0.329-0.607,0.673-0.858,1.04 - c-0.189,0.772-0.241,1.885,0.317,3.225c-0.641,0.842-0.676,2.03-0.004,2.909c0.058,0.075,0.126,0.136,0.191,0.203 - c-0.293,0.999-0.439,1.966-0.479,2.793c0.075,0.103,0.075,0.185,0.15,0.284c0.382,0.491,0.864,0.955,1.329,1.329 - c-0.058-0.877,0.005-2.223,0.55-3.68c0.371,0.027,0.746-0.031,1.099-0.179c0.206,0.181,0.418,0.364,0.648,0.55 - c0.782,0.619,1.561,1.097,2.322,1.476c-0.04,0.388,0.056,0.791,0.307,1.125c0.537,0.693,1.531,0.822,2.226,0.292 - c0.147-0.113,0.263-0.25,0.359-0.396c1.232,0.273,2.318,0.333,3.117,0.333c0.123,0,0.694-0.776,1.022-1.257 - c-0.489,0.102-1.941,0.295-3.92-0.272c-0.048-0.22-0.139-0.435-0.285-0.625c-0.503-0.659-1.422-0.802-2.106-0.363 - c-0.689-0.374-1.411-0.84-2.155-1.43c-0.155-0.123-0.289-0.245-0.432-0.367c0.446-0.711,0.496-1.615,0.102-2.382 - c0.094-0.095,0.174-0.191,0.275-0.285c0.737-0.688,1.429-1.24,2.079-1.681c0,0,0,0-0.001-0.001c0.994,0.92,2.049,1.791,3.047,2.569 - C27.927,25.189,27.968,25.871,28.37,26.396z"/> -<path fill="#FFFFFF" d="M23.755,20.477c0.142-0.098,0.284-0.196,0.425-0.283C24.039,20.281,23.897,20.379,23.755,20.477 - C23.755,20.477,23.755,20.477,23.755,20.477z"/> -<polygon fill="#FFFFFF" points="25.144,22.06 25.131,22.046 25.145,22.06 "/> -<path fill="#A0A1A2" d="M41.386,50c-6.829,0-16.33-5.585-26.069-15.323C1.768,21.125-3.448,8.134,2.338,2.348 - C3.875,0.811,6.039,0,8.599,0c6.829,0,16.331,5.585,26.069,15.325c6.637,6.638,11.379,13.177,13.715,18.916 - c2.365,5.811,2.104,10.572-0.736,13.413C46.111,49.189,43.946,50,41.386,50 M8.599,3.078c-1.75,0-3.124,0.486-4.083,1.445 - C0.791,8.249,4.052,19.056,17.495,32.498c9.031,9.032,17.962,14.424,23.892,14.424c1.75,0,3.123-0.486,4.082-1.446 - c1.908-1.908,1.932-5.486,0.063-10.074C43.35,30.04,38.84,23.85,32.49,17.502C23.459,8.471,14.528,3.078,8.599,3.078"/> -<path fill="#0F0F0F" d="M8.599,50c-2.56,0-4.724-0.811-6.261-2.346c-2.84-2.841-3.101-7.602-0.735-13.413 - c2.336-5.739,7.078-12.278,13.715-18.916C25.056,5.585,34.558,0,41.387,0c2.56,0,4.724,0.811,6.26,2.347 - c5.786,5.787,0.57,18.778-12.979,32.33C24.929,44.415,15.427,50,8.599,50 M41.387,3.078c-5.93,0-14.861,5.393-23.893,14.424 - C11.146,23.85,6.634,30.04,4.453,35.402c-1.869,4.588-1.845,8.166,0.063,10.074c0.959,0.96,2.332,1.446,4.083,1.446 - c5.93,0,14.86-5.392,23.892-14.424C45.933,19.056,49.194,8.249,45.468,4.522C44.509,3.564,43.137,3.078,41.387,3.078"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path d="M29.833 31.322a7.93 7.93 0 0 1-4.832 1.642 7.95 7.95 0 0 1-6.331-3.123 7.96 7.96 0 0 1 1.484-11.165c1.443-1.1 3.145-1.64 4.832-1.64 2.396 0 4.765 1.076 6.33 3.125a7.96 7.96 0 0 1-1.483 11.161" fill="#59b4d9"/><g fill="#fff"><path d="M28.37 26.396c.578.754 1.65.89 2.4.32.04-.03.07-.067.106-.1l1.665 1.146a7.08 7.08 0 0 0 .211-.68l-1.428-1.117c.203-.535.138-1.16-.234-1.646-.53-.688-1.47-.863-2.206-.44l-2.644-2.494c2.92-1.57 4.993-1.34 4.993-1.34-.345-.442-.734-.828-1.148-1.178-1.23-.19-3.145-.17-5.33.994l-2.226-2.457a7.45 7.45 0 0 0-1.055.429c.557.912 1.307 1.83 2.152 2.73l.066-.044-.064.044c-.695.495-1.5 1.173-2.208 1.92l-.267.306c-.43-.09-.88-.063-1.303.088-.724-1.558-.674-2.813-.56-3.46a8.34 8.34 0 0 0-.858 1.04c-.19.772-.24 1.885.317 3.225-.64.842-.676 2.03-.004 2.91.058.075.126.136.19.203-.293 1-.44 1.966-.48 2.793.075.103.075.185.15.284.382.49.864.955 1.33 1.33-.058-.877.005-2.223.55-3.68.37.027.746-.03 1.1-.18l.648.55c.782.62 1.56 1.097 2.322 1.476a1.59 1.59 0 0 0 .307 1.125c.537.693 1.53.822 2.226.292a1.6 1.6 0 0 0 .359-.396c1.232.273 2.318.333 3.117.333.123 0 .694-.776 1.022-1.257-.49.102-1.94.295-3.92-.272-.048-.22-.14-.435-.285-.625-.503-.66-1.422-.802-2.106-.363a14.9 14.9 0 0 1-2.155-1.43l-.432-.367a2.41 2.41 0 0 0 .102-2.382l.275-.285c.737-.688 1.43-1.24 2.08-1.68l3.046 2.568a1.7 1.7 0 0 0 .178 1.767z"/><path d="M23.755 20.477l.425-.283-.425.283zm1.39 1.583l-.013-.014.014.014z"/></g><path fill="#a0a1a2" d="M41.386 50c-6.83 0-16.33-5.585-26.07-15.323C1.768 21.125-3.448 8.134 2.338 2.348 3.875.81 6.04 0 8.6 0c6.83 0 16.33 5.585 26.07 15.325 6.637 6.638 11.38 13.177 13.715 18.916 2.365 5.81 2.104 10.572-.736 13.413C46.11 49.19 43.946 50 41.386 50M8.6 3.078c-1.75 0-3.124.486-4.083 1.445C.79 8.25 4.052 19.056 17.495 32.498c9.03 9.032 17.962 14.424 23.892 14.424 1.75 0 3.123-.486 4.082-1.446 1.908-1.908 1.932-5.486.063-10.074C43.35 30.04 38.84 23.85 32.5 17.502 23.46 8.47 14.528 3.078 8.6 3.078"/><path fill="#0f0f0f" d="M8.6 50c-2.56 0-4.724-.81-6.26-2.346-2.84-2.84-3.1-7.602-.735-13.413 2.336-5.74 7.078-12.278 13.715-18.916C25.056 5.585 34.558 0 41.387 0c2.56 0 4.724.81 6.26 2.347 5.786 5.787.57 18.778-12.98 32.33C24.93 44.415 15.427 50 8.6 50M41.387 3.078c-5.93 0-14.86 5.393-23.893 14.424-6.348 6.348-10.86 12.538-13.04 17.9-1.87 4.588-1.845 8.166.063 10.074.96.96 2.332 1.446 4.083 1.446 5.93 0 14.86-5.392 23.892-14.424C45.933 19.056 49.194 8.25 45.468 4.522c-.96-.958-2.33-1.444-4.08-1.444"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/WebsiteReplicator.svg b/src/main/webapp/img/lib/mscae/WebsiteReplicator.svg index 3ddc31cb069cdc7ca9aeb2e286233d21fd273aa1..9f4f2e2562018ddfa0b089ae101caf62eaeec888 100644 --- a/src/main/webapp/img/lib/mscae/WebsiteReplicator.svg +++ b/src/main/webapp/img/lib/mscae/WebsiteReplicator.svg @@ -1,38 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#7A7A7A" d="M35.3,39.3c-4,3-8.7,4.5-13.3,4.5c-6.6,0-13.1-3-17.4-8.6C-2.8,25.6-1,11.9,8.6,4.5c4-3.1,8.7-4.5,13.3-4.5 - C28.5,0,35,3,39.3,8.6C46.7,18.2,44.9,32,35.3,39.3"/> -<g opacity="0.5"> - <path fill="#E5E5E5" d="M29.3,33.5c-0.1-0.6-0.4-1.2-0.8-1.7c-1.4-1.8-3.9-2.2-5.8-1c-1.9-1-3.9-2.3-5.9-3.9 - c-0.4-0.3-0.8-0.7-1.2-1c1.3-2,1.4-4.5,0.3-6.6c0.3-0.3,0.5-0.5,0.8-0.8c2-1.9,3.9-3.4,5.7-4.6c-1.5-1.4-2.9-2.7-4.2-4.1 - c-2,1.4-4,3.1-6.1,5.3c-0.3,0.3-0.5,0.5-0.7,0.8c-1.2-0.2-2.4-0.2-3.6,0.2c-2-4.3-1.8-7.7-1.5-9.5C5.4,7.5,4.6,8.4,3.9,9.4 - c-0.5,2.1-0.7,5.2,0.9,8.9c-1.8,2.3-1.9,5.6,0,8c0.2,0.2,0.3,0.4,0.5,0.6c-0.8,2.8-1.2,5.4-1.3,7.7c0.2,0.3,0.2,0.5,0.4,0.8 - C5.4,36.7,6.7,38,8,39c-0.2-2.4,0-6.1,1.5-10.1c1,0.1,2.1-0.1,3.1-0.5c0.6,0.5,1.1,1,1.8,1.5c2.2,1.7,4.3,3,6.4,4.1 - c-0.1,1.1,0.2,2.2,0.8,3.1c1.5,1.9,4.2,2.3,6.1,0.8c0.4-0.3,0.7-0.7,1-1.1c3.4,0.8,6.4,0.9,8.6,0.9c0.3,0,1.9-2.1,2.8-3.5 - C38.7,34.5,34.8,35.1,29.3,33.5z"/> - <path fill="#E5E5E5" d="M39.4,24.6c0.6-1.5,0.4-3.2-0.6-4.5c-1.5-1.9-4.1-2.4-6.1-1.2c-2.2-2-4.7-4.3-7.3-6.9 - c8-4.3,13.8-3.7,13.8-3.7c-1-1.2-2-2.3-3.2-3.2c-3.4-0.5-8.7-0.5-14.7,2.7l0,0l0,0c-2-2.1-4-4.3-6.1-6.8c-1,0.3-2,0.7-2.9,1.2 - c1.5,2.5,3.6,5,5.9,7.5h0c1.3,1.4,2.7,2.8,4.2,4.1c0,0,0,0,0,0c2.7,2.5,5.6,4.9,8.4,7.1c-0.7,1.5-0.6,3.4,0.5,4.9 - c1.6,2.1,4.5,2.5,6.6,0.9c0.1-0.1,0.2-0.2,0.3-0.3c2.1,1.5,3.8,2.6,4.6,3.2c0.2-0.6,0.4-1.2,0.6-1.9C42.4,27,41.1,26,39.4,24.6z"/> -</g> -<path opacity="0.3" fill="#1E1E1E" d="M40.6,43.9c-3.2,2.4-6.9,3.6-10.6,3.6c-5.3,0-10.5-2.4-13.9-6.9c-5.9-7.7-4.4-18.7,3.3-24.6 - c3.2-2.4,6.9-3.6,10.6-3.6c5.3,0,10.5,2.4,13.9,6.9C49.8,27,48.3,38,40.6,43.9"/> -<path fill="#59B4D9" d="M43.1,46.4c-3.2,2.4-6.9,3.6-10.6,3.6c-5.3,0-10.5-2.4-13.9-6.9c-5.9-7.7-4.4-18.7,3.3-24.6 - c3.2-2.4,6.9-3.6,10.6-3.6c5.3,0,10.5,2.4,13.9,6.9C52.3,29.5,50.8,40.5,43.1,46.4"/> -<g> - <path fill="#FFFFFF" d="M38.3,41.7c-0.1-0.5-0.3-1-0.6-1.4c-1.1-1.5-3.1-1.8-4.6-0.8c-1.5-0.8-3.1-1.9-4.7-3.2 - c-0.3-0.3-0.6-0.5-1-0.8c1-1.6,1.1-3.6,0.2-5.3c0.2-0.2,0.4-0.4,0.6-0.6c1.6-1.5,3.1-2.7,4.6-3.7c-1.2-1.1-2.3-2.2-3.3-3.3 - c-1.6,1.1-3.2,2.5-4.9,4.2c-0.2,0.2-0.4,0.4-0.6,0.7c-1-0.2-2-0.1-2.9,0.2c-1.6-3.4-1.5-6.2-1.2-7.6c-0.7,0.7-1.3,1.5-1.9,2.3 - c-0.4,1.7-0.5,4.1,0.7,7.1c-1.4,1.9-1.5,4.5,0,6.4c0.1,0.2,0.3,0.3,0.4,0.5c-0.6,2.2-0.9,4.3-1,6.1c0.2,0.2,0.2,0.4,0.3,0.6 - c0.8,1.1,1.9,2.1,2.9,2.9c-0.1-1.9,0-4.9,1.2-8.1c0.8,0.1,1.7-0.1,2.4-0.4c0.4,0.4,0.9,0.8,1.4,1.2c1.7,1.4,3.4,2.4,5.1,3.3 - c-0.1,0.9,0.1,1.7,0.7,2.5c1.2,1.5,3.4,1.8,4.9,0.6c0.3-0.2,0.6-0.5,0.8-0.9c2.7,0.6,5.1,0.7,6.9,0.7c0.3,0,1.5-1.7,2.2-2.8 - C45.9,42.5,42.7,43,38.3,41.7z"/> - <path fill="#FFFFFF" d="M46.4,34.6c0.4-1.2,0.3-2.6-0.5-3.6c-1.2-1.5-3.2-1.9-4.9-1c-1.8-1.6-3.7-3.4-5.8-5.5c6.4-3.5,11-3,11-3 - c-0.8-1-1.6-1.8-2.5-2.6c-2.7-0.4-6.9-0.4-11.7,2.2l0,0l0,0c-1.6-1.7-3.2-3.5-4.9-5.4c-0.8,0.3-1.6,0.6-2.3,0.9c1.2,2,2.9,4,4.7,6 - h0c1,1.1,2.2,2.2,3.3,3.3c0,0,0,0,0,0c2.2,2,4.5,3.9,6.7,5.7c-0.6,1.2-0.5,2.7,0.4,3.9c1.3,1.7,3.6,2,5.3,0.7 - c0.1-0.1,0.2-0.1,0.2-0.2c1.7,1.2,3,2.1,3.7,2.5c0.2-0.5,0.3-1,0.5-1.5C48.9,36.5,47.8,35.7,46.4,34.6z"/> -</g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 50 50"><path fill="#7a7a7a" d="M35.3,39.3c-4,3-8.7,4.5-13.3,4.5c-6.6,0-13.1-3-17.4-8.6C-2.8,25.6-1,11.9,8.6,4.5c4-3.1,8.7-4.5,13.3-4.5 C28.5,0,35,3,39.3,8.6C46.7,18.2,44.9,32,35.3,39.3"/><g opacity=".5" fill="#e5e5e5"><path d="M29.3 33.5c-.1-.6-.4-1.2-.8-1.7-1.4-1.8-3.9-2.2-5.8-1-1.9-1-3.9-2.3-5.9-3.9-.4-.3-.8-.7-1.2-1 1.3-2 1.4-4.5.3-6.6l.8-.8c2-1.9 3.9-3.4 5.7-4.6l-4.2-4.1c-2 1.4-4 3.1-6.1 5.3-.3.3-.5.5-.7.8-1.2-.2-2.4-.2-3.6.2-2-4.3-1.8-7.7-1.5-9.5-.9.9-1.7 1.8-2.4 2.8-.5 2.1-.7 5.2.9 8.9-1.8 2.3-1.9 5.6 0 8 .2.2.3.4.5.6-.8 2.8-1.2 5.4-1.3 7.7.2.3.2.5.4.8C5.4 36.7 6.7 38 8 39c-.2-2.4 0-6.1 1.5-10.1 1 .1 2.1-.1 3.1-.5.6.5 1.1 1 1.8 1.5 2.2 1.7 4.3 3 6.4 4.1-.1 1.1.2 2.2.8 3.1 1.5 1.9 4.2 2.3 6.1.8.4-.3.7-.7 1-1.1 3.4.8 6.4.9 8.6.9.3 0 1.9-2.1 2.8-3.5-1.4.3-5.3.9-10.8-.7z"/><path d="M39.4 24.6c.6-1.5.4-3.2-.6-4.5-1.5-1.9-4.1-2.4-6.1-1.2-2.2-2-4.7-4.3-7.3-6.9 8-4.3 13.8-3.7 13.8-3.7-1-1.2-2-2.3-3.2-3.2-3.4-.5-8.7-.5-14.7 2.7-2-2.1-4-4.3-6.1-6.8-1 .3-2 .7-2.9 1.2 1.5 2.5 3.6 5 5.9 7.5 1.3 1.4 2.7 2.8 4.2 4.1 2.7 2.5 5.6 4.9 8.4 7.1a4.85 4.85 0 0 0 .5 4.9c1.6 2.1 4.5 2.5 6.6.9l.3-.3 4.6 3.2c.2-.6.4-1.2.6-1.9-1-.7-2.3-1.7-4-3.1z"/></g><use xlink:href="#B" opacity=".3" fill="#1e1e1e"/><use xlink:href="#B" x="2.5" y="2.5" fill="#59b4d9"/><g fill="#fff"><path d="M38.3 41.7c-.1-.5-.3-1-.6-1.4-1.1-1.5-3.1-1.8-4.6-.8-1.5-.8-3.1-1.9-4.7-3.2-.3-.3-.6-.5-1-.8 1-1.6 1.1-3.6.2-5.3l.6-.6c1.6-1.5 3.1-2.7 4.6-3.7l-3.3-3.3c-1.6 1.1-3.2 2.5-4.9 4.2-.2.2-.4.4-.6.7-1-.2-2-.1-2.9.2-1.6-3.4-1.5-6.2-1.2-7.6-.7.7-1.3 1.5-1.9 2.3-.4 1.7-.5 4.1.7 7.1-1.4 1.9-1.5 4.5 0 6.4.1.2.3.3.4.5-.6 2.2-.9 4.3-1 6.1.2.2.2.4.3.6.8 1.1 1.9 2.1 2.9 2.9-.1-1.9 0-4.9 1.2-8.1.8.1 1.7-.1 2.4-.4.4.4.9.8 1.4 1.2 1.7 1.4 3.4 2.4 5.1 3.3-.1.9.1 1.7.7 2.5 1.2 1.5 3.4 1.8 4.9.6a2.36 2.36 0 0 0 .8-.9c2.7.6 5.1.7 6.9.7.3 0 1.5-1.7 2.2-2.8-1 .4-4.2.9-8.6-.4z"/><path d="M46.4 34.6c.4-1.2.3-2.6-.5-3.6-1.2-1.5-3.2-1.9-4.9-1l-5.8-5.5c6.4-3.5 11-3 11-3-.8-1-1.6-1.8-2.5-2.6-2.7-.4-6.9-.4-11.7 2.2-1.6-1.7-3.2-3.5-4.9-5.4l-2.3.9c1.2 2 2.9 4 4.7 6 1 1.1 2.2 2.2 3.3 3.3 2.2 2 4.5 3.9 6.7 5.7-.6 1.2-.5 2.7.4 3.9 1.3 1.7 3.6 2 5.3.7.1-.1.2-.1.2-.2 1.7 1.2 3 2.1 3.7 2.5.2-.5.3-1 .5-1.5-.7-.5-1.8-1.3-3.2-2.4z"/></g><defs ><path id="B" d="M40.6 43.9c-3.2 2.4-6.9 3.6-10.6 3.6-5.3 0-10.5-2.4-13.9-6.9-5.9-7.7-4.4-18.7 3.3-24.6 3.2-2.4 6.9-3.6 10.6-3.6 5.3 0 10.5 2.4 13.9 6.9 5.9 7.7 4.4 18.7-3.3 24.6"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/WebsiteSettings.svg b/src/main/webapp/img/lib/mscae/WebsiteSettings.svg index 36a29bef1f16fc55756e19f9a9940bd3cc656f19..256415e81764d76d0434c322297fb86bd2debaa8 100644 --- a/src/main/webapp/img/lib/mscae/WebsiteSettings.svg +++ b/src/main/webapp/img/lib/mscae/WebsiteSettings.svg @@ -1,24 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<path fill="#59B4D9" d="M34.9,38.9c-3.9,3-8.6,4.5-13.2,4.5c-6.5,0-13-2.9-17.2-8.5c-7.3-9.5-5.5-23.1,4-30.4 - c3.9-3,8.6-4.5,13.2-4.5c6.5,0,13,2.9,17.2,8.5C46.2,18,44.4,31.6,34.9,38.9"/> -<path fill="#59B4D9" d="M34.9,38.9c-3.9,3-8.6,4.5-13.2,4.5c-6.5,0-13-2.9-17.2-8.5c-7.3-9.5-5.5-23.1,4-30.4 - c3.9-3,8.6-4.5,13.2-4.5c6.5,0,13,2.9,17.2,8.5C46.2,18,44.4,31.6,34.9,38.9"/> -<path fill="#FFFFFF" d="M30.9,25.5c1.6,2.1,4.5,2.4,6.5,0.9c0.1-0.1,0.2-0.2,0.3-0.3c2.1,1.5,3.7,2.6,4.5,3.1 - c0.2-0.6,0.4-1.2,0.6-1.9c-0.9-0.6-2.2-1.7-3.9-3c0.6-1.5,0.4-3.2-0.6-4.5c-1.4-1.9-4-2.4-6-1.2c-2.2-2-4.6-4.3-7.2-6.8 - c8-4.3,13.6-3.7,13.6-3.7c-0.9-1.2-2-2.3-3.1-3.2C32.2,4.5,27,4.5,21.1,7.7l0,0l0,0c-2-2.1-4-4.3-6.1-6.7c-1,0.3-1.9,0.7-2.9,1.2 - c1.5,2.5,3.6,5,5.9,7.4h0c0.1,0.1,0.2,0.2,0.3,0.3c-0.1-0.1-0.2-0.2-0.3-0.3c-2,1.4-4,3.1-6,5.2c-0.3,0.3-0.5,0.5-0.7,0.8 - c-1.2-0.2-2.4-0.2-3.6,0.2c-2-4.2-1.8-7.6-1.5-9.4C5.3,7.4,4.5,8.3,3.8,9.3c-0.5,2.1-0.7,5.1,0.9,8.8c-1.8,2.3-1.8,5.5,0,7.9 - c0.2,0.2,0.3,0.4,0.5,0.6c-0.8,2.7-1.2,5.4-1.3,7.6c0.2,0.3,0.2,0.5,0.4,0.8c1,1.3,2.4,2.6,3.6,3.6c-0.2-2.4,0-6,1.5-10 - c1,0.1,2.1-0.1,3-0.5c0.6,0.5,1.1,1,1.8,1.5c2.1,1.7,4.3,3,6.3,4c-0.1,1.1,0.2,2.1,0.8,3.1c1.5,1.9,4.2,2.2,6.1,0.8 - c0.4-0.3,0.7-0.7,1-1.1c3.4,0.8,6.3,0.9,8.5,0.9c0.3,0,1.9-2.1,2.8-3.4c-1.3,0.3-5.3,0.8-10.7-0.7c-0.1-0.6-0.4-1.2-0.8-1.7 - c-1.4-1.8-3.9-2.2-5.7-1c-1.9-1-3.8-2.3-5.9-3.9c-0.4-0.3-0.8-0.6-1.2-1c1.2-2,1.4-4.5,0.3-6.6c0.2-0.2,0.5-0.5,0.8-0.7 - c1.9-1.8,4-3.4,5.7-4.5c2.7,2.5,5.6,4.9,8.3,7C29.7,22.2,29.8,24.1,30.9,25.5z"/> -<path fill="#7A7A7A" d="M50,38.4v-3l-0.4-0.1l-3.2-1l-0.8-2l1.6-3.4l-2.1-2.1l-0.4,0.2l-3,1.5l-2-0.8l-1.3-3.6h-3l-0.1,0.4l-1,3.2 - l-2,0.8l-3.4-1.6l-2.1,2.1l0.2,0.4l1.5,3l-0.8,2L24,35.6v3l0.4,0.1l3.2,1l0.8,2l-1.6,3.4l2.1,2.1l0.4-0.2l3-1.5l2,0.8l1.3,3.6h3 - l0.1-0.4l1-3.2l2-0.8l3.4,1.6l2.1-2.1l-0.2-0.4l-1.5-3l0.8-2L50,38.4z M37,41.7c-2.6,0-4.7-2.1-4.7-4.7c0-2.6,2.1-4.7,4.7-4.7 - c2.6,0,4.7,2.1,4.7,4.7C41.7,39.6,39.6,41.7,37,41.7z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M34.9 38.9a21.72 21.72 0 0 1-13.2 4.5c-6.5 0-13-2.9-17.2-8.5-7.3-9.5-5.5-23.1 4-30.4A21.72 21.72 0 0 1 21.7 0c6.5 0 13 2.9 17.2 8.5 7.3 9.5 5.5 23.1-4 30.4" fill="#59b4d9"/><path fill="#fff" d="M30.9 25.5c1.6 2.1 4.5 2.4 6.5.9l.3-.3 4.5 3.1.6-1.9c-.9-.6-2.2-1.7-3.9-3 .6-1.5.4-3.2-.6-4.5-1.4-1.9-4-2.4-6-1.2l-7.2-6.8c8-4.3 13.6-3.7 13.6-3.7a18.84 18.84 0 0 0-3.1-3.2c-3.4-.4-8.6-.4-14.5 2.8-2-2.1-4-4.3-6.1-6.7-1 .3-1.9.7-2.9 1.2 1.5 2.5 3.6 5 5.9 7.4l.3.3-.3-.3c-2 1.4-4 3.1-6 5.2-.3.3-.5.5-.7.8-1.2-.2-2.4-.2-3.6.2-2-4.2-1.8-7.6-1.5-9.4-.9 1-1.7 1.9-2.4 2.9-.5 2.1-.7 5.1.9 8.8-1.8 2.3-1.8 5.5 0 7.9.2.2.3.4.5.6-.8 2.7-1.2 5.4-1.3 7.6.2.3.2.5.4.8 1 1.3 2.4 2.6 3.6 3.6-.2-2.4 0-6 1.5-10 1 .1 2.1-.1 3-.5.6.5 1.1 1 1.8 1.5 2.1 1.7 4.3 3 6.3 4-.1 1.1.2 2.1.8 3.1 1.5 1.9 4.2 2.2 6.1.8.4-.3.7-.7 1-1.1 3.4.8 6.3.9 8.5.9.3 0 1.9-2.1 2.8-3.4-1.3.3-5.3.8-10.7-.7-.1-.6-.4-1.2-.8-1.7-1.4-1.8-3.9-2.2-5.7-1-1.9-1-3.8-2.3-5.9-3.9-.4-.3-.8-.6-1.2-1 1.2-2 1.4-4.5.3-6.6.2-.2.5-.5.8-.7 1.9-1.8 4-3.4 5.7-4.5 2.7 2.5 5.6 4.9 8.3 7-.8 1.4-.7 3.3.4 4.7z"/><path fill="#7a7a7a" d="M50 38.4v-3l-.4-.1-3.2-1-.8-2 1.6-3.4-2.1-2.1-3.4 1.7-2-.8-1.3-3.6h-3l-.1.4-1 3.2-2 .8-3.4-1.6-2.1 2.1 1.7 3.4-.8 2-3.7 1.2v3l.4.1 3.2 1 .8 2-1.6 3.4 2.1 2.1 3.4-1.7 2 .8 1.3 3.6h3l.1-.4 1-3.2 2-.8 3.4 1.6 2.1-2.1-1.7-3.4.8-2 3.7-1.2zm-13 3.3c-2.6 0-4.7-2.1-4.7-4.7s2.1-4.7 4.7-4.7 4.7 2.1 4.7 4.7-2.1 4.7-4.7 4.7z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/WebsiteStaging.svg b/src/main/webapp/img/lib/mscae/WebsiteStaging.svg index 32e887fffcd82e9d9ef66924b5e74bfac0ffa5f6..a6db8acd9cde0211b1b7aecac6158a4bb0ddc5a5 100644 --- a/src/main/webapp/img/lib/mscae/WebsiteStaging.svg +++ b/src/main/webapp/img/lib/mscae/WebsiteStaging.svg @@ -1,80 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="43.400002" - height="50" - viewBox="0 0 43.400002 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="WebsiteStaging.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata3481"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs3479" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview3477" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="12.020815" - inkscape:cx="26.239598" - inkscape:cy="24.756345" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 37.771,43.034 c 0,0.687 -0.557,1.243 -1.243,1.243 H 8.475 c -0.686,0 -1.243,-0.557 -1.243,-1.243 0,-0.687 0.557,-1.243 1.243,-1.243 h 28.053 c 0.686,0 1.243,0.557 1.243,1.243" - id="path3464" - inkscape:connector-curvature="0" - style="fill:#3e3e3e" /> -<path - d="M 25.683,48.758 C 25.683,49.445 25.126,50 24.44,50 H 8.474 c -0.686,0 -1.242,-0.555 -1.242,-1.242 0,-0.687 0.557,-1.243 1.242,-1.243 H 24.44 c 0.686,0 1.243,0.556 1.243,1.243" - id="path3466" - inkscape:connector-curvature="0" - style="fill:#3e3e3e" /> -<path - d="m 37.612,31.237 c 0,0.687 -0.557,1.243 -1.243,1.243 H 8.474 c -0.686,0 -1.242,-0.557 -1.242,-1.243 0,-0.685 0.557,-1.243 1.242,-1.243 h 27.895 c 0.686,0 1.243,0.558 1.243,1.243" - id="path3468" - inkscape:connector-curvature="0" - style="fill:#3e3e3e" /> -<path - d="m 32.349,36.961 c 0,0.687 -0.557,1.243 -1.243,1.243 H 8.474 c -0.686,0 -1.242,-0.557 -1.242,-1.243 0,-0.687 0.557,-1.243 1.242,-1.243 h 22.631 c 0.687,0 1.244,0.557 1.244,1.243" - id="path3470" - inkscape:connector-curvature="0" - style="fill:#3e3e3e" /> -<path - d="m 43.4,22.105 c 0,-2.799 -2.247,-5.067 -5.022,-5.067 -0.209,0 -0.415,0.016 -0.613,0.043 0.306,-1.138 0.476,-2.335 0.476,-3.572 C 38.24,6.048 32.243,0 24.846,0 18.936,0 13.925,3.859 12.146,9.217 11.208,8.887 10.205,8.701 9.156,8.701 4.095,8.701 0,12.836 0,17.936 c 0,5.103 4.095,9.238 9.155,9.238 0,0 0.009,-0.004 0.013,-0.004 v 0.004 H 38.785 L 38.78,27.149 c 2.584,-0.204 4.62,-2.381 4.62,-5.044" - id="path3472" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> -<path - d="m 14.019,27.174 c -1.204,-1.196 -2.101,-2.734 -2.508,-4.517 -1.135,-4.972 1.937,-9.915 6.87,-11.041 1.023,-0.234 2.042,-0.276 3.03,-0.163 C 21.859,6.808 24.692,2.677 28.913,0.638 27.629,0.226 26.264,0 24.846,0 18.936,0 13.925,3.859 12.146,9.217 11.208,8.887 10.205,8.701 9.156,8.701 4.095,8.701 0,12.836 0,17.936 c 0,5.103 4.095,9.238 9.155,9.238 0,0 0.009,-0.004 0.013,-0.004 v 0.004 z" - id="path3474" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#ffffff" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="43.4" height="50"><path d="M37.77 43.034c0 .687-.557 1.243-1.243 1.243H8.475c-.686 0-1.243-.557-1.243-1.243s.557-1.243 1.243-1.243h28.053c.686 0 1.243.557 1.243 1.243m-12.088 5.724c0 .687-.557 1.242-1.243 1.242H8.474a1.24 1.24 0 0 1-1.242-1.242c0-.687.557-1.243 1.242-1.243H24.44c.686 0 1.243.556 1.243 1.243m11.93-17.52c0 .687-.557 1.243-1.243 1.243H8.474c-.686 0-1.242-.557-1.242-1.243s.557-1.243 1.242-1.243H36.37c.686 0 1.243.558 1.243 1.243M32.35 36.96c0 .687-.557 1.243-1.243 1.243H8.474c-.686 0-1.242-.557-1.242-1.243s.557-1.243 1.242-1.243h22.63c.687 0 1.244.557 1.244 1.243" fill="#3e3e3e"/><path d="M43.4 22.105c0-2.8-2.247-5.067-5.022-5.067a4.55 4.55 0 0 0-.613.043 13.74 13.74 0 0 0 .476-3.572C38.24 6.048 32.243 0 24.846 0c-5.9 0-10.92 3.86-12.7 9.217-.938-.33-1.94-.516-3-.516C4.095 8.7 0 12.836 0 17.936s4.095 9.238 9.155 9.238h29.63l-.005-.025c2.584-.204 4.62-2.38 4.62-5.044" fill="#59b4d9"/><path d="M14.02 27.174c-1.204-1.196-2.1-2.734-2.508-4.517-1.135-4.972 1.937-9.915 6.87-11.04a8.97 8.97 0 0 1 3.03-.163c.448-4.645 3.28-8.776 7.502-10.815C27.63.226 26.264 0 24.846 0c-5.9 0-10.92 3.86-12.7 9.217-.938-.33-1.94-.516-3-.516C4.095 8.7 0 12.836 0 17.936s4.095 9.238 9.155 9.238h.013z" opacity=".2" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Windows_10_IoT_Core_Services.svg b/src/main/webapp/img/lib/mscae/Windows_10_IoT_Core_Services.svg new file mode 100644 index 0000000000000000000000000000000000000000..195d4f2ec05b676bd7cd495f42afaa69d6664101 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/Windows_10_IoT_Core_Services.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="107.34" height="107.591"><path d="M86.28 10.81l4.8-9.36a1 1 0 0 0-.94-1.45L55 1.78a1 1 0 0 0-.78 1.54l19.1 29.54a1 1 0 0 0 1.72-.09l4.2-8.2a1 1 0 0 1 1.57-.28c6.62 6.42 13.6 16.26 13.6 29.25a41.15 41.15 0 0 1-60.87 36.11 1 1 0 0 0-1.33.36l-5.46 9.46a1 1 0 0 0 .38 1.39 54.06 54.06 0 0 0 80.2-47.32c0-15.48-7.36-30-20.8-41.52a1 1 0 0 1-.25-1.2z"/><path d="M34 102.5l2.5-4.35A46.89 46.89 0 1 0 60.67 7.981v-5c0-.62-.64 0-1.14-.3l-3.4.1c-.77 0-.3 1 .1 1.6l10.83 18.8a34.33 34.33 0 0 1 9.61 6.5l2.63-5.13a1 1 0 0 1 .9-.55.93.93 0 0 1 .67.27c6.62 6.42 13.6 16.26 13.6 29.25a41.15 41.15 0 0 1-60.92 36.11.94.94 0 0 0-.48-.13 1 1 0 0 0-.85.49l-5.46 9.46a1 1 0 0 0-.11.71l4.94 2.85.34.14a1.64 1.64 0 0 0 2.07-.67zm-8.82-3.94l5.5-9.46a2.82 2.82 0 0 1 2.43-1.4 2.77 2.77 0 0 1 1.35.35 39.33 39.33 0 0 0 58.15-34.51c0-12.08-6.47-21.32-12.24-27.15l-2.4 4.7c11.746 12.7 12.175 32.166.998 45.37s-30.446 15.998-44.912 6.5S14.463 54.678 22.12 39.166 47.8 16.3 64.13 22L52.67 4.3a2.82 2.82 0 0 1-.15-2.81 1.73 1.73 0 0 1 .14-.2h-5.8a1.66 1.66 0 0 0-1.67 1.66v5a46.62 46.62 0 0 0-8.68 2.32L34 5.96a1.66 1.66 0 0 0-2.27-.61L21.2 11.42a1.67 1.67 0 0 0-.61 2.28l2.5 4.36a47.55 47.55 0 0 0-6.35 6.34l-4.35-2.5a1.67 1.67 0 0 0-2.28.61l-6.05 10.5a1.66 1.66 0 0 0 .61 2.27L9 37.8a46.62 46.62 0 0 0-2.34 8.68h-5A1.67 1.67 0 0 0 0 48.151V60.3a1.66 1.66 0 0 0 1.67 1.66h5a46.62 46.62 0 0 0 2.34 8.68l-4.34 2.5a1.67 1.67 0 0 0-.61 2.28l6.07 10.52a1.68 1.68 0 0 0 2.28.61l4.35-2.52a47.63 47.63 0 0 0 6.35 6.35l-2.5 4.36a1.66 1.66 0 0 0 .61 2.27l3.72 2.15a3 3 0 0 1 .25-.62zm47.77-59.27a.22.22 0 0 0-.17-.07h-.62c-8 0-15.4-3.27-18.3-8.14a.24.24 0 0 0-.4 0c-2.9 4.87-10.25 8.14-18.3 8.14h-.62a.25.25 0 0 0-.17.07.23.23 0 0 0-.06.16v19c-.06 5.47 2.34 15.6 19.25 22.45h.18c16.9-6.86 19.3-17 19.25-22.4V39.44a.23.23 0 0 0-.06-.16zm-3.88 3.74v15.5c0 4.17-1.85 12-15.08 18l-.32.1-.3-.14c-13.23-5.93-15.13-13.8-15.08-18V43.02l.67-.07a27.12 27.12 0 0 0 14.25-5.63l.48-.4.48.4a27.2 27.2 0 0 0 14.25 5.63zM48.23 53.37h2.3a.23.23 0 0 0 .23-.24V49.5a2.91 2.91 0 0 1 5.82 0v3.63a.23.23 0 0 0 .23.24h2.3a.24.24 0 0 0 .24-.24V49.5a5.68 5.68 0 1 0-11.36 0v3.63a.24.24 0 0 0 .24.24zm13.05.82a.24.24 0 0 0-.24-.24H46.3a.24.24 0 0 0-.24.24v10.23c0 1.55 4.34 3.63 7.6 3.65s7.6-2.1 7.6-3.68zm-6.17 9.24a.29.29 0 0 1 0 .2.25.25 0 0 1-.19.09h-2.45a.28.28 0 0 1-.19-.09.24.24 0 0 1 0-.2l.6-2.8a1.76 1.76 0 1 1 1.6 0z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Workflow.svg b/src/main/webapp/img/lib/mscae/Workflow.svg index 3e4c6d5829b5304a1e8fce3ec2bfb0dc97642352..476f8921b51b91113eb0ab707cc0f7e722c541e7 100644 --- a/src/main/webapp/img/lib/mscae/Workflow.svg +++ b/src/main/webapp/img/lib/mscae/Workflow.svg @@ -1,24 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - height="50px" width="50px" viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve"> -<polyline fill="none" stroke="#59B4D9" stroke-width="4.75" stroke-linejoin="round" stroke-miterlimit="10" points="6.4,39.8 - 6.4,25 43.6,25 43.6,39.8 "/> -<rect x="22.6" y="14" fill="#59B4D9" width="4.8" height="24.5"/> -<path fill="#59B4D9" d="M28.7,0h-7.3c-2.1,0-3.8,1.7-3.8,3.8v6.7c0,2.1,1.7,3.8,3.8,3.8h7.3c2.1,0,3.8-1.7,3.8-3.8V3.8 - C32.5,1.7,30.8,0,28.7,0z M29.1,10.2c0,0.4-0.3,0.7-0.7,0.7h-6.8c-0.4,0-0.7-0.3-0.7-0.7V4.1c0-0.4,0.3-0.7,0.7-0.7h6.8 - c0.4,0,0.7,0.3,0.7,0.7V10.2z"/> -<path fill="#0072C6" d="M28.7,0h-7.3c-2.1,0-3.8,1.7-3.8,3.8v6.7c0,2.1,1.7,3.8,3.8,3.8h7.3c2.1,0,3.8-1.7,3.8-3.8V3.8 - C32.5,1.7,30.8,0,28.7,0z M29.1,10.2c0,0.4-0.3,0.7-0.7,0.7h-6.8c-0.4,0-0.7-0.3-0.7-0.7V4.1c0-0.4,0.3-0.7,0.7-0.7h6.8 - c0.4,0,0.7,0.3,0.7,0.7V10.2z"/> -<path fill="#0072C6" d="M27.3,37.7h-4.6c-2.1,0-3.8,1.7-3.8,3.8v4.6c0,2.1,1.7,3.8,3.8,3.8h4.6c2.1,0,3.8-1.7,3.8-3.8v-4.6 - C31.1,39.4,29.4,37.7,27.3,37.7z M27.7,45.9c0,0.4-0.3,0.7-0.7,0.7H23c-0.4,0-0.7-0.3-0.7-0.7v-4.1c0-0.4,0.3-0.7,0.7-0.7H27 - c0.4,0,0.7,0.3,0.7,0.7V45.9z"/> -<path fill="#0072C6" d="M0,41.6v4.6C0,48.3,1.7,50,3.8,50h4.6c2.1,0,3.8-1.7,3.8-3.8v-4.6c0-2.1-1.7-3.8-3.8-3.8H3.8 - C1.7,37.7,0,39.4,0,41.6z M3.4,41.8c0-0.4,0.3-0.7,0.7-0.7h4.1c0.4,0,0.7,0.3,0.7,0.7v4.1c0,0.4-0.3,0.7-0.7,0.7H4.1 - c-0.4,0-0.7-0.3-0.7-0.7V41.8z"/> -<path fill="#0072C6" d="M46.2,37.7h-4.6c-2.1,0-3.8,1.7-3.8,3.8v4.6c0,2.1,1.7,3.8,3.8,3.8h4.6c2.1,0,3.8-1.7,3.8-3.8v-4.6 - C50,39.4,48.3,37.7,46.2,37.7z M46.6,45.9c0,0.4-0.3,0.7-0.7,0.7h-4.1c-0.4,0-0.7-0.3-0.7-0.7v-4.1c0-0.4,0.3-0.7,0.7-0.7h4.1 - c0.4,0,0.7,0.3,0.7,0.7V45.9z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="50" width="50"><path fill="none" stroke="#59b4d9" stroke-width="4.75" stroke-linejoin="round" stroke-miterlimit="10" d="M6.4 39.8V25h37.2v14.8"/><g fill="#59b4d9"><path d="M22.6 14h4.8v24.5h-4.8z"/><use xlink:href="#B"/></g><g fill="#0072c6"><use xlink:href="#B"/><path d="M27.3 37.7h-4.6a3.8 3.8 0 0 0-3.8 3.8v4.6a3.8 3.8 0 0 0 3.8 3.8h4.6a3.8 3.8 0 0 0 3.8-3.8v-4.6a3.8 3.8 0 0 0-3.8-3.8zm.4 8.2a.68.68 0 0 1-.7.7h-4a.68.68 0 0 1-.7-.7v-4.1a.68.68 0 0 1 .7-.7h4a.68.68 0 0 1 .7.7v4.1zM0 41.6v4.6A3.8 3.8 0 0 0 3.8 50h4.6a3.8 3.8 0 0 0 3.8-3.8v-4.6a3.8 3.8 0 0 0-3.8-3.8H3.8C1.7 37.7 0 39.4 0 41.6zm3.4.2a.68.68 0 0 1 .7-.7h4.1a.68.68 0 0 1 .7.7v4.1a.68.68 0 0 1-.7.7H4.1a.68.68 0 0 1-.7-.7v-4.1zm42.8-4.1h-4.6a3.8 3.8 0 0 0-3.8 3.8v4.6a3.8 3.8 0 0 0 3.8 3.8h4.6a3.8 3.8 0 0 0 3.8-3.8v-4.6a3.8 3.8 0 0 0-3.8-3.8zm.4 8.2a.68.68 0 0 1-.7.7h-4.1a.68.68 0 0 1-.7-.7v-4.1a.68.68 0 0 1 .7-.7h4.1a.68.68 0 0 1 .7.7v4.1z"/></g><defs ><path id="B" d="M28.7 0h-7.3a3.8 3.8 0 0 0-3.8 3.8v6.7a3.8 3.8 0 0 0 3.8 3.8h7.3a3.8 3.8 0 0 0 3.8-3.8V3.8A3.8 3.8 0 0 0 28.7 0zm.4 10.2a.68.68 0 0 1-.7.7h-6.8a.68.68 0 0 1-.7-.7V4.1a.68.68 0 0 1 .7-.7h6.8a.68.68 0 0 1 .7.7v6.1z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/Wrench.svg b/src/main/webapp/img/lib/mscae/Wrench.svg index adaf2ac30de734ae26a0429432d9f034608eebd0..f123de783b7724024a23001106578e2ddb305ab9 100644 --- a/src/main/webapp/img/lib/mscae/Wrench.svg +++ b/src/main/webapp/img/lib/mscae/Wrench.svg @@ -1,10 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - width="16px" height="16px" viewBox="-0.5 0.5 16 16" enable-background="new -0.5 0.5 16 16" xml:space="preserve"> -<path fill="#FFFFFF" d="M13.478,4.879l-1.865-0.496l-0.496-1.865l1.905-1.905c-1.128-0.304-2.377-0.016-3.257,0.864 - C8.877,2.366,8.588,3.623,8.901,4.759L3.763,9.897C2.626,9.585,1.37,9.873,0.481,10.761c-0.88,0.88-1.168,2.129-0.864,3.257 - l1.905-1.905l1.865,0.496l0.496,1.865l-1.905,1.905c1.128,0.304,2.377,0.016,3.257-0.864c0.928-0.928,1.2-2.257,0.824-3.425 - l5.034-5.034c1.168,0.376,2.497,0.104,3.425-0.824c0.88-0.88,1.168-2.129,0.864-3.257L13.478,4.879z"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="-0.5 0.5 16 16"><path fill="#fff" d="M13.478 4.88l-1.865-.496-.496-1.865L13.022.613a3.36 3.36 0 0 0-3.257.864c-.888.89-1.177 2.146-.864 3.282L3.763 9.897C2.626 9.585 1.37 9.873.48 10.76a3.36 3.36 0 0 0-.864 3.257l1.905-1.905 1.865.496.496 1.865-1.905 1.905a3.36 3.36 0 0 0 3.257-.864c.928-.928 1.2-2.257.824-3.425l5.034-5.034c1.168.376 2.497.104 3.425-.824a3.36 3.36 0 0 0 .864-3.257L13.478 4.88z"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/XboxController.svg b/src/main/webapp/img/lib/mscae/XboxController.svg index df01bc7797fee398745bcbf3ed46c411e5502563..6de6e01c2255b4b60243cb48b033c8326a4b08d8 100644 --- a/src/main/webapp/img/lib/mscae/XboxController.svg +++ b/src/main/webapp/img/lib/mscae/XboxController.svg @@ -1,89 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50.027298" - height="35" - viewBox="0 0 50.027298 35" - enable-background="new 0 0 50 50" - xml:space="preserve" - sodipodi:docname="XboxController.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata4013"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs4011" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview4009" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="25.056545" - inkscape:cy="17.6" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<path - d="m 36.056545,0 c 0,0 -0.5,0 -0.8,0.3 -0.3,0.3 -2,1.7 -3.3,2.3 -0.7,0.3 -1.2,0.7 -1.5,0.7 -0.7,0.1 -2.4,0.3 -5.4,0.3 -3,0 -4.7,-0.2 -5.3,-0.3 -0.3,-0.2 -0.8,-0.3 -1.5,-0.7 -1.2,-0.7 -3,-2.2 -3.3,-2.3 -0.3,-0.3 -0.8,-0.3 -0.8,-0.3 -1.3,0.2 -2.5,0.3 -3.7,0.7 -2.0000003,0.7 -3.5000003,1.7 -3.5000003,1.7 0,0 -4,9.1 -5,13.3 -1.30000001,6 -2.70000001,11.8 -1.50000001,16 0.3,1.5 1.20000001,3.3 3.80000001,3.3 v 0 c 2.3,0 7.6000003,-5.2 10.3000003,-7.5 2.3,-2 4.7,-2.3 10.5,-2.3 5.8,0 8.2,0.2 10.5,2.2 2.5,2.3 8,7.3 10.1,7.5 h 0.2 c 2.8,0 3.5,-1.8 3.8,-3.2 1,-4.2 -0.2,-10 -1.5,-16 -1,-4.2 -5,-13.3 -5,-13.3 0,0 -1.5,-1 -3.5,-1.7 -1.1,-0.4 -2.3,-0.6 -3.6,-0.7 z" - id="path3994" - inkscape:connector-curvature="0" - style="fill:#3e3e3e" /> -<path - d="m 14.156545,8.7 c -2.8,0 -5.0000003,2.2 -5.0000003,5 0,2.8 2.2000003,5 5.0000003,5 2.8,0 5,-2.2 5,-5 0,-2.8 -2.3,-5 -5,-5 z m 0,7.9 c -1.6,0 -2.9,-1.3 -2.9,-2.9 0,-1.6 1.3,-2.9 2.9,-2.9 1.6,0 2.9,1.3 2.9,2.9 0,1.5 -1.4,2.9 -2.9,2.9 z" - id="path3996" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /> -<circle - cx="32.156544" - cy="13.199999" - r="2.0999999" - id="circle3998" - style="fill:#0072c6" /> -<circle - cx="40.856544" - cy="13.199999" - r="2.0999999" - id="circle4000" - style="fill:#ba141a" /> -<circle - cx="36.456547" - cy="8.7999992" - r="2.0999999" - id="circle4002" - style="fill:#fcd116" /> -<circle - cx="36.456547" - cy="17.6" - r="2.0999999" - id="circle4004" - style="fill:#7fba00" /> -<path - d="m 14.156545,17.3 c -2,0 -3.7,-1.7 -3.7,-3.7 0,-2 1.7,-3.7 3.7,-3.7 2,0 3.7,1.7 3.7,3.7 0,2 -1.7,3.7 -3.7,3.7 z" - id="path4006" - inkscape:connector-curvature="0" - style="fill:#3e3e3e" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50.027" height="35"><path d="M36.057 0s-.5 0-.8.3-2 1.7-3.3 2.3c-.7.3-1.2.7-1.5.7-.7.1-2.4.3-5.4.3s-4.7-.2-5.3-.3c-.3-.2-.8-.3-1.5-.7-1.2-.7-3-2.2-3.3-2.3-.3-.3-.8-.3-.8-.3-1.3.2-2.5.3-3.7.7-2 .7-3.5 1.7-3.5 1.7s-4 9.1-5 13.3c-1.3 6-2.7 11.8-1.5 16 .3 1.5 1.2 3.3 3.8 3.3 2.3 0 7.6-5.2 10.3-7.5 2.3-2 4.7-2.3 10.5-2.3s8.2.2 10.5 2.2c2.5 2.3 8 7.3 10.1 7.5h.2c2.8 0 3.5-1.8 3.8-3.2 1-4.2-.2-10-1.5-16-1-4.2-5-13.3-5-13.3s-1.5-1-3.5-1.7c-1.1-.4-2.3-.6-3.6-.7z" fill="#3e3e3e"/><path d="M14.157 8.7a4.95 4.95 0 0 0-5 5 4.95 4.95 0 0 0 5 5 4.95 4.95 0 0 0 5-5c0-2.8-2.3-5-5-5zm0 7.9c-1.6 0-2.9-1.3-2.9-2.9s1.3-2.9 2.9-2.9 2.9 1.3 2.9 2.9c0 1.5-1.4 2.9-2.9 2.9z" fill="#a0a1a2"/><circle cx="32.157" cy="13.2" r="2.1" fill="#0072c6"/><circle cx="40.857" cy="13.2" r="2.1" fill="#ba141a"/><circle cx="36.457" cy="8.8" r="2.1" fill="#fcd116"/><circle cx="36.457" cy="17.6" r="2.1" fill="#7fba00"/><path d="M14.157 17.3a3.76 3.76 0 0 1-3.7-3.7 3.76 3.76 0 0 1 3.7-3.7 3.76 3.76 0 0 1 3.7 3.7 3.76 3.76 0 0 1-3.7 3.7z" fill="#3e3e3e"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/dataExport.svg b/src/main/webapp/img/lib/mscae/dataExport.svg index 5279d52b52b75a9ab14a3007c917956a8873f021..3af763ed2eb755e6a3ad71d6ed041afc91488918 100644 --- a/src/main/webapp/img/lib/mscae/dataExport.svg +++ b/src/main/webapp/img/lib/mscae/dataExport.svg @@ -1,242 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 18.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="50" - width="37.599998" - viewBox="275 1149 37.599998 50" - enable-background="new 275 1149 50 50" - xml:space="preserve" - sodipodi:docname="dataExport.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata2933"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs2931" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview2929" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="8.5" - inkscape:cx="-10.006566" - inkscape:cy="17.471624" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<g - id="Retention" - transform="translate(-6.7)"> - <path - d="m 300.2,1199 h 0.3 c 10.4,0 18.8,-3 18.8,-6.8 v -36.3 h -19.1 z" - id="path2862" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> - <g - id="arrow_copy"> - </g> - <path - d="m 281.7,1155.8 v 36.3 c 0,3.8 8.4,6.8 18.8,6.8 v -43.1 z" - id="path2865" - inkscape:connector-curvature="0" - style="fill:#3999c6" /> - <path - d="m 319.3,1155.8 c 0,3.8 -8.4,6.8 -18.8,6.8 -10.4,0 -18.8,-3 -18.8,-6.8 0,-3.8 8.4,-6.8 18.8,-6.8 10.4,0 18.8,3 18.8,6.8" - id="path2867" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="m 315.4,1155.4 c 0,2.5 -6.7,4.5 -14.9,4.5 -8.2,0 -14.9,-2 -14.9,-4.5 0,-2.5 6.7,-4.5 14.9,-4.5 8.2,0 14.9,2 14.9,4.5" - id="path2869" - inkscape:connector-curvature="0" - style="fill:#7fba00" /> - <path - d="m 312.3,1158.2 c 2,-0.8 3.1,-1.8 3.1,-2.8 0,-2.5 -6.7,-4.5 -14.9,-4.5 -8.2,0 -14.9,2 -14.9,4.5 0,1 1.1,2 3.1,2.8 2.8,-1 7,-1.8 11.8,-1.8 4.8,0 9,0.8 11.8,1.8" - id="path2871" - inkscape:connector-curvature="0" - style="fill:#b8d432" /> - <g - id="Arrow"> - <polygon - points="293.6,1178 300.5,1171.9 307.4,1178 307.4,1181.8 302.3,1177.2 302.3,1188.2 298.7,1188.2 298.7,1177.2 293.6,1181.8 " - id="polygon2873" - style="fill:#ffffff" /> - </g> -</g> -<g - id="_x31_" - display="none" - style="display:none" - transform="translate(-6.7)"> - <path - display="inline" - d="m 546.7,9122.4 h 28.8 c 1195.2,0 2160,-345.6 2160,-777.6 V 4183.2 H 546.7 Z" - id="path2877" - inkscape:connector-curvature="0" - style="display:inline;fill:#59b4d9" /> - <g - id="arrow" - display="inline" - style="display:inline"> - </g> - <g - display="inline" - id="g2882" - style="display:inline"> - <path - d="m 3383.5,8013.6 187.2,-1108.8 -388.8,230.4 c -331.2,-532.8 -849.6,-921.6 -1468.8,-1080 -633.6,-172.8 -1296,-72 -1857.6,259.2 -561.6,331.2 -964.8,864 -1137.6,1497.6 l 561.6,144 c 129.6,-489.6 432,-892.8 864,-1152 432,-259.2 936,-331.2 1425.6,-201.6 460.8,115.2 849.6,403.2 1108.8,820.8 l -374.4,216 z" - id="path2880" - inkscape:connector-curvature="0" - style="fill:#b8d432" /> - </g> - <path - display="inline" - d="m -1584.5,4168.8 v 4161.6 c 0,432 964.8,777.6 2160,777.6 V 4168.8 Z" - id="path2884" - inkscape:connector-curvature="0" - style="display:inline;fill:#3999c6" /> - <path - display="inline" - d="m 2735.5,4168.8 c 0,432 -964.8,777.6 -2160,777.6 -1195.2,0 -2160,-345.6 -2160,-777.6 0,-432 964.8,-777.6 2160,-777.6 1195.2,0 2160,345.6 2160,777.6" - id="path2886" - inkscape:connector-curvature="0" - style="display:inline;fill:#ffffff" /> - <path - display="inline" - d="m 2289.1,4125.6 c 0,288 -763.2,518.4 -1713.6,518.4 -950.4,0 -1713.6,-230.4 -1713.6,-518.4 0,-288 763.2,-518.4 1713.6,-518.4 950.4,0 1713.6,230.4 1713.6,518.4" - id="path2888" - inkscape:connector-curvature="0" - style="display:inline;fill:#7fba00" /> - <path - display="inline" - d="m 1929.1,4442.4 c 230.4,-86.4 360,-201.6 360,-316.8 0,-288 -763.2,-518.4 -1713.6,-518.4 -950.4,0 -1713.6,230.4 -1713.6,518.4 0,115.2 129.6,230.4 360,316.8 316.8,-115.2 806.4,-201.6 1353.6,-201.6 547.2,0 1036.8,86.4 1353.6,201.6" - id="path2890" - inkscape:connector-curvature="0" - style="display:inline;fill:#b8d432" /> -</g> -<g - id="_x32_" - display="none" - style="display:none" - transform="translate(-6.7)"> - <g - id="DB" - display="inline" - style="display:inline"> - <path - d="m 1833.1,9136.8 h 14.4 c 820.8,0 1483.2,-244.8 1483.2,-532.8 V 5738.4 h -1512 v 3398.4 z" - id="path2893" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> - <path - d="M 364.3,5738.4 V 8604 c 0,302.4 662.4,532.8 1483.2,532.8 V 5738.4 Z" - id="path2895" - inkscape:connector-curvature="0" - style="fill:#3999c6" /> - <path - d="m 3330.7,5738.4 c 0,302.4 -662.4,532.8 -1483.2,532.8 -820.8,0 -1483.2,-244.8 -1483.2,-532.8 0,-302.4 662.4,-532.8 1483.2,-532.8 820.8,0 1483.2,230.4 1483.2,532.8" - id="path2897" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="m 3028.3,5709.6 c 0,201.6 -532.8,360 -1180.8,360 -648,0 -1180.8,-158.4 -1180.8,-360 0,-201.6 532.8,-360 1180.8,-360 648,0 1180.8,158.4 1180.8,360" - id="path2899" - inkscape:connector-curvature="0" - style="fill:#7fba00" /> - <path - d="m 2783.5,5925.6 c 158.4,-57.6 244.8,-129.6 244.8,-216 0,-201.6 -532.8,-360 -1180.8,-360 -648,0 -1180.8,158.4 -1180.8,360 0,86.4 86.4,158.4 244.8,216 216,-86.4 547.2,-144 936,-144 374.4,0 720,57.6 936,144" - id="path2901" - inkscape:connector-curvature="0" - style="fill:#b8d432" /> - </g> - <path - display="inline" - d="m -427.7,6213.6 c 0,-43.2 0,-86.4 0,-129.6 0,-691.2 576,-1252.8 1267.2,-1252.8 417.6,0 792,201.6 1022.4,518.4 144,-86.4 331.2,-144 504,-144 532.8,0 964.8,432 964.8,950.4 v 72 c 360,187.2 547.2,475.2 547.2,849.6 0,590.4 -475.2,1051.2 -1094.4,1051.2 H 76.3 c -619.2,0 -1094.4,-460.8 -1094.4,-1051.2 0,-388.8 216,-691.2 590.4,-864 z" - id="path2904" - inkscape:connector-curvature="0" - style="display:inline;fill:#0072c6" /> - <path - display="inline" - d="m 3517.9,6501.6 v -72 c 0,-432 -288,-806.4 -691.2,-936 0,43.2 0,72 0,115.2 0,936 -748.8,1670.4 -1713.6,1670.4 H -946.1 c 0,28.8 -14.4,72 -14.4,100.8 0,604.8 489.6,1080 1123.2,1080 h 2793.6 c 633.6,0 1123.2,-475.2 1123.2,-1080 14.4,-388.8 -187.2,-691.2 -561.6,-878.4 z" - id="path2906" - inkscape:connector-curvature="0" - style="display:inline;fill:#0072c6" /> - <g - display="inline" - id="g2910" - style="display:inline"> - <path - d="m 2898.7,8172 720,-864 h -446.4 c -14.4,-633.6 -273.6,-1224 -720,-1670.4 -460.8,-460.8 -1080,-720 -1742.4,-720 -662.4,0 -1267.2,259.2 -1742.4,720 l 403.2,403.2 c 360,-360 820.8,-547.2 1324.8,-547.2 504,0 979.2,187.2 1324.8,547.2 345.6,345.6 532.8,792 547.2,1267.2 h -432 z" - id="path2908" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - </g> - <path - display="inline" - d="m -2011.7,4773.6 c 0,-43.2 0,-86.4 0,-129.6 0,-691.2 576,-1252.8 1267.2,-1252.8 417.6,0 792,201.6 1022.4,518.4 144,-86.4 331.2,-144 504,-144 532.8,0 964.8,432 964.8,950.4 v 72 c 360,187.2 547.2,475.2 547.2,849.6 0,590.4 -475.2,1051.2 -1094.4,1051.2 h -2707.2 c -619.2,0 -1094.4,-460.8 -1094.4,-1051.2 0,-388.8 216,-691.2 590.4,-864 z" - id="path2912" - inkscape:connector-curvature="0" - style="display:inline;fill:#59b4d9" /> -</g> -<g - id="_x33_" - display="none" - style="display:none" - transform="translate(-6.7)"> - <path - display="inline" - d="m -1594.1,5244 c 0,-57.6 0,-100.8 0,-158.4 0,-835.2 691.2,-1512 1526.4,-1512 504,0 964.8,244.8 1252.8,633.6 187.2,-115.2 388.8,-172.8 619.2,-172.8 633.6,0 1166.4,518.4 1166.4,1152 v 86.4 c 432,216 662.4,576 662.4,1036.8 0,705.6 -576,1267.2 -1324.8,1267.2 H -960.5 c -748.8,0 -1324.8,-561.6 -1324.8,-1267.2 -14.4,-489.6 244.8,-864 691.2,-1065.6 z" - id="path2915" - inkscape:connector-curvature="0" - style="display:inline;fill:#0072c6" /> - <path - display="inline" - d="m 2970.7,7893.6 c -28.8,-648 -302.4,-1267.2 -763.2,-1728 C 1717.9,5676 1069.9,5402.4 378.7,5402.4 v 0 0 144 0 c 43.2,0 86.4,0 129.6,0 -43.2,0 -86.4,0 -129.6,0 v 720 c 460.8,0 907.2,187.2 1224,504 302.4,302.4 475.2,691.2 504,1123.2 h -561.6 l 489.6,561.6 489.6,561.6 489.6,-561.6 489.6,-561.6 z" - id="path2917" - inkscape:connector-curvature="0" - style="display:inline;fill:#b8d432" /> - <g - display="inline" - id="g2925" - style="display:inline"> - <path - d="m 2783.5,7332 c -158.4,57.6 -316.8,86.4 -489.6,86.4 h -417.6 c 129.6,230.4 216,489.6 230.4,748.8 h -561.6 l 489.6,561.6 489.6,561.6 489.6,-561.6 489.6,-561.6 h -532.8 c -14.4,-288 -86.4,-561.6 -187.2,-835.2 z" - id="path2919" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> - <path - d="m 364.3,6554.4 v -720 c 43.2,0 86.4,0 129.6,0 -43.2,0 -86.4,0 -129.6,0 v 0 -144 0 0 c 691.2,0 1339.2,273.6 1828.8,763.2 259.2,259.2 446.4,561.6 576,892.8 489.6,-187.2 835.2,-633.6 835.2,-1180.8 0,-460.8 -230.4,-820.8 -662.4,-1036.8 v -86.4 c 0,-633.6 -518.4,-1152 -1152,-1152 -216,0 -432,57.6 -619.2,172.8 -288,-388.8 -748.8,-633.6 -1252.8,-633.6 -849.6,0 -1526.4,676.8 -1526.4,1512 0,57.6 0,100.8 0,158.4 -460.8,216 -705.6,590.4 -705.6,1065.6 0,705.6 576,1267.2 1324.8,1267.2 h 2851.2 c -72,-129.6 -172.8,-259.2 -273.6,-360 -316.8,-345.6 -748.8,-518.4 -1224,-518.4 z" - id="path2921" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> - <path - d="M 2783.5,7332 C 2653.9,7000.8 2466.7,6698.4 2207.5,6439.2 1717.9,5949.6 1069.9,5676 378.7,5676 v 0 0 144 0 c 43.2,0 86.4,0 129.6,0 -43.2,0 -86.4,0 -129.6,0 v 720 c 460.8,0 907.2,187.2 1224,504 115.2,115.2 201.6,230.4 273.6,360 h 417.6 c 172.8,14.4 345.6,-14.4 489.6,-72 z" - id="path2923" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - </g> -</g> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" height="50" width="37.6" viewBox="275 1149 37.6 50"><path d="M293.5 1199h.3c10.4 0 18.8-3 18.8-6.8v-36.3h-19.1z" fill="#59b4d9"/><path d="M275 1155.8v36.3c0 3.8 8.4 6.8 18.8 6.8v-43.1z" fill="#3999c6"/><path d="M312.6 1155.8c0 3.8-8.4 6.8-18.8 6.8s-18.8-3-18.8-6.8 8.4-6.8 18.8-6.8 18.8 3 18.8 6.8" fill="#fff"/><path d="M308.7 1155.4c0 2.5-6.7 4.5-14.9 4.5s-14.9-2-14.9-4.5 6.7-4.5 14.9-4.5 14.9 2 14.9 4.5" fill="#7fba00"/><path d="M305.6 1158.2c2-.8 3.1-1.8 3.1-2.8 0-2.5-6.7-4.5-14.9-4.5s-14.9 2-14.9 4.5c0 1 1.1 2 3.1 2.8 2.8-1 7-1.8 11.8-1.8s9 .8 11.8 1.8" fill="#b8d432"/><path d="M286.9 1178l6.9-6.1 6.9 6.1v3.8l-5.1-4.6v11H292v-11l-5.1 4.6z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/dataRetention.svg b/src/main/webapp/img/lib/mscae/dataRetention.svg index 881c619c7585bb34e88352d828ee84528f2585f3..aca9e56b233bf2996208507c0f7e21eb4e9e569b 100644 --- a/src/main/webapp/img/lib/mscae/dataRetention.svg +++ b/src/main/webapp/img/lib/mscae/dataRetention.svg @@ -1,247 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 18.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="50" - width="37.599998" - viewBox="275 1149 37.599998 50" - enable-background="new 275 1149 50 50" - xml:space="preserve" - sodipodi:docname="dataRetention.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata3132"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs3130" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview3128" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="8.5" - inkscape:cx="6.8778668" - inkscape:cy="11.717133" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<g - id="Retention" - transform="translate(-6.7)"> - <path - d="m 300.2,1199 h 0.3 c 10.4,0 18.8,-3 18.8,-6.8 v -36.3 h -19.1 z" - id="path3059" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> - <g - id="arrow_copy"> - </g> - <path - d="m 281.7,1155.8 v 36.3 c 0,3.8 8.4,6.8 18.8,6.8 v -43.1 z" - id="path3062" - inkscape:connector-curvature="0" - style="fill:#3999c6" /> - <path - d="m 319.3,1155.8 c 0,3.8 -8.4,6.8 -18.8,6.8 -10.4,0 -18.8,-3 -18.8,-6.8 0,-3.8 8.4,-6.8 18.8,-6.8 10.4,0 18.8,3 18.8,6.8" - id="path3064" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="m 315.4,1155.4 c 0,2.5 -6.7,4.5 -14.9,4.5 -8.2,0 -14.9,-2 -14.9,-4.5 0,-2.5 6.7,-4.5 14.9,-4.5 8.2,0 14.9,2 14.9,4.5" - id="path3066" - inkscape:connector-curvature="0" - style="fill:#7fba00" /> - <path - d="m 312.3,1158.2 c 2,-0.8 3.1,-1.8 3.1,-2.8 0,-2.5 -6.7,-4.5 -14.9,-4.5 -8.2,0 -14.9,2 -14.9,4.5 0,1 1.1,2 3.1,2.8 2.8,-1 7,-1.8 11.8,-1.8 4.8,0 9,0.8 11.8,1.8" - id="path3068" - inkscape:connector-curvature="0" - style="fill:#b8d432" /> - <g - id="Arrow"> - <path - d="m 309.9,1183.7 v 5 h -18.8 v -5 h -2.5 v 7.5 h 23.9 v -7.5 z" - id="path3070" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <polygon - points="307.4,1180 300.5,1186.2 293.6,1180 293.6,1176.3 298.7,1180.9 298.7,1169.9 302.3,1169.9 302.3,1180.9 307.4,1176.3 " - id="polygon3072" - style="fill:#ffffff" /> - </g> -</g> -<g - id="_x31_" - display="none" - style="display:none" - transform="translate(-6.7)"> - <path - display="inline" - d="m 546.7,9117.4 h 28.8 c 1195.2,0 2160,-345.6 2160,-777.6 V 4178.2 H 546.7 Z" - id="path3076" - inkscape:connector-curvature="0" - style="display:inline;fill:#59b4d9" /> - <g - id="arrow" - display="inline" - style="display:inline"> - </g> - <g - display="inline" - id="g3081" - style="display:inline"> - <path - d="m 3383.5,8008.6 187.2,-1108.8 -388.8,230.4 c -331.2,-532.8 -849.6,-921.6 -1468.8,-1080 -633.6,-172.8 -1296,-72 -1857.6,259.2 -561.6,331.2 -964.8,864 -1137.6,1497.6 l 561.6,144 c 129.6,-489.6 432,-892.8 864,-1152 432,-259.2 936,-331.2 1425.6,-201.6 460.8,115.2 849.6,403.2 1108.8,820.8 l -374.4,216 z" - id="path3079" - inkscape:connector-curvature="0" - style="fill:#b8d432" /> - </g> - <path - display="inline" - d="m -1584.5,4163.8 v 4161.6 c 0,432 964.8,777.6 2160,777.6 V 4163.8 Z" - id="path3083" - inkscape:connector-curvature="0" - style="display:inline;fill:#3999c6" /> - <path - display="inline" - d="m 2735.5,4163.8 c 0,432 -964.8,777.6 -2160,777.6 -1195.2,0 -2160,-345.6 -2160,-777.6 0,-432 964.8,-777.6 2160,-777.6 1195.2,0 2160,345.6 2160,777.6" - id="path3085" - inkscape:connector-curvature="0" - style="display:inline;fill:#ffffff" /> - <path - display="inline" - d="m 2289.1,4120.6 c 0,288 -763.2,518.4 -1713.6,518.4 -950.4,0 -1713.6,-230.4 -1713.6,-518.4 0,-288 763.2,-518.4 1713.6,-518.4 950.4,0 1713.6,230.4 1713.6,518.4" - id="path3087" - inkscape:connector-curvature="0" - style="display:inline;fill:#7fba00" /> - <path - display="inline" - d="m 1929.1,4437.4 c 230.4,-86.4 360,-201.6 360,-316.8 0,-288 -763.2,-518.4 -1713.6,-518.4 -950.4,0 -1713.6,230.4 -1713.6,518.4 0,115.2 129.6,230.4 360,316.8 316.8,-115.2 806.4,-201.6 1353.6,-201.6 547.2,0 1036.8,86.4 1353.6,201.6" - id="path3089" - inkscape:connector-curvature="0" - style="display:inline;fill:#b8d432" /> -</g> -<g - id="_x32_" - display="none" - style="display:none" - transform="translate(-6.7)"> - <g - id="DB" - display="inline" - style="display:inline"> - <path - d="m 1833.1,9131.8 h 14.4 c 820.8,0 1483.2,-244.8 1483.2,-532.8 V 5733.4 h -1512 v 3398.4 z" - id="path3092" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> - <path - d="M 364.3,5733.4 V 8599 c 0,302.4 662.4,532.8 1483.2,532.8 V 5733.4 Z" - id="path3094" - inkscape:connector-curvature="0" - style="fill:#3999c6" /> - <path - d="m 3330.7,5733.4 c 0,302.4 -662.4,532.8 -1483.2,532.8 -820.8,0 -1483.2,-244.8 -1483.2,-532.8 0,-302.4 662.4,-532.8 1483.2,-532.8 820.8,0 1483.2,230.4 1483.2,532.8" - id="path3096" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="m 3028.3,5704.6 c 0,201.6 -532.8,360 -1180.8,360 -648,0 -1180.8,-158.4 -1180.8,-360 0,-201.6 532.8,-360 1180.8,-360 648,0 1180.8,158.4 1180.8,360" - id="path3098" - inkscape:connector-curvature="0" - style="fill:#7fba00" /> - <path - d="m 2783.5,5920.6 c 158.4,-57.6 244.8,-129.6 244.8,-216 0,-201.6 -532.8,-360 -1180.8,-360 -648,0 -1180.8,158.4 -1180.8,360 0,86.4 86.4,158.4 244.8,216 216,-86.4 547.2,-144 936,-144 374.4,0 720,57.6 936,144" - id="path3100" - inkscape:connector-curvature="0" - style="fill:#b8d432" /> - </g> - <path - display="inline" - d="m -427.7,6208.6 c 0,-43.2 0,-86.4 0,-129.6 0,-691.2 576,-1252.8 1267.2,-1252.8 417.6,0 792,201.6 1022.4,518.4 144,-86.4 331.2,-144 504,-144 532.8,0 964.8,432 964.8,950.4 v 72 c 360,187.2 547.2,475.2 547.2,849.6 0,590.4 -475.2,1051.2 -1094.4,1051.2 H 76.3 c -619.2,0 -1094.4,-460.8 -1094.4,-1051.2 0,-388.8 216,-691.2 590.4,-864 z" - id="path3103" - inkscape:connector-curvature="0" - style="display:inline;fill:#0072c6" /> - <path - display="inline" - d="m 3517.9,6496.6 v -72 c 0,-432 -288,-806.4 -691.2,-936 0,43.2 0,72 0,115.2 0,936 -748.8,1670.4 -1713.6,1670.4 H -946.1 c 0,28.8 -14.4,72 -14.4,100.8 0,604.8 489.6,1080 1123.2,1080 h 2793.6 c 633.6,0 1123.2,-475.2 1123.2,-1080 14.4,-388.8 -187.2,-691.2 -561.6,-878.4 z" - id="path3105" - inkscape:connector-curvature="0" - style="display:inline;fill:#0072c6" /> - <g - display="inline" - id="g3109" - style="display:inline"> - <path - d="m 2898.7,8167 720,-864 h -446.4 c -14.4,-633.6 -273.6,-1224 -720,-1670.4 -460.8,-460.8 -1080,-720 -1742.4,-720 -662.4,0 -1267.2,259.2 -1742.4,720 l 403.2,403.2 c 360,-360 820.8,-547.2 1324.8,-547.2 504,0 979.2,187.2 1324.8,547.2 345.6,345.6 532.8,792 547.2,1267.2 h -432 z" - id="path3107" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - </g> - <path - display="inline" - d="m -2011.7,4768.6 c 0,-43.2 0,-86.4 0,-129.6 0,-691.2 576,-1252.8 1267.2,-1252.8 417.6,0 792,201.6 1022.4,518.4 144,-86.4 331.2,-144 504,-144 532.8,0 964.8,432 964.8,950.4 v 72 c 360,187.2 547.2,475.2 547.2,849.6 0,590.4 -475.2,1051.2 -1094.4,1051.2 h -2707.2 c -619.2,0 -1094.4,-460.8 -1094.4,-1051.2 0,-388.8 216,-691.2 590.4,-864 z" - id="path3111" - inkscape:connector-curvature="0" - style="display:inline;fill:#59b4d9" /> -</g> -<g - id="_x33_" - display="none" - style="display:none" - transform="translate(-6.7)"> - <path - display="inline" - d="m -1594.1,5239 c 0,-57.6 0,-100.8 0,-158.4 0,-835.2 691.2,-1512 1526.4,-1512 504,0 964.8,244.8 1252.8,633.6 187.2,-115.2 388.8,-172.8 619.2,-172.8 633.6,0 1166.4,518.4 1166.4,1152 v 86.4 c 432,216 662.4,576 662.4,1036.8 0,705.6 -576,1267.2 -1324.8,1267.2 H -960.5 c -748.8,0 -1324.8,-561.6 -1324.8,-1267.2 -14.4,-489.6 244.8,-864 691.2,-1065.6 z" - id="path3114" - inkscape:connector-curvature="0" - style="display:inline;fill:#0072c6" /> - <path - display="inline" - d="m 2970.7,7888.6 c -28.8,-648 -302.4,-1267.2 -763.2,-1728 C 1717.9,5671 1069.9,5397.4 378.7,5397.4 v 0 0 144 0 c 43.2,0 86.4,0 129.6,0 -43.2,0 -86.4,0 -129.6,0 v 720 c 460.8,0 907.2,187.2 1224,504 302.4,302.4 475.2,691.2 504,1123.2 h -561.6 l 489.6,561.6 489.6,561.6 489.6,-561.6 489.6,-561.6 z" - id="path3116" - inkscape:connector-curvature="0" - style="display:inline;fill:#b8d432" /> - <g - display="inline" - id="g3124" - style="display:inline"> - <path - d="m 2783.5,7327 c -158.4,57.6 -316.8,86.4 -489.6,86.4 h -417.6 c 129.6,230.4 216,489.6 230.4,748.8 h -561.6 l 489.6,561.6 489.6,561.6 489.6,-561.6 489.6,-561.6 h -532.8 c -14.4,-288 -86.4,-561.6 -187.2,-835.2 z" - id="path3118" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> - <path - d="m 364.3,6549.4 v -720 c 43.2,0 86.4,0 129.6,0 -43.2,0 -86.4,0 -129.6,0 v 0 -144 0 0 c 691.2,0 1339.2,273.6 1828.8,763.2 259.2,259.2 446.4,561.6 576,892.8 489.6,-187.2 835.2,-633.6 835.2,-1180.8 0,-460.8 -230.4,-820.8 -662.4,-1036.8 v -86.4 c 0,-633.6 -518.4,-1152 -1152,-1152 -216,0 -432,57.6 -619.2,172.8 -288,-388.8 -748.8,-633.6 -1252.8,-633.6 -849.6,0 -1526.4,676.8 -1526.4,1512 0,57.6 0,100.8 0,158.4 -460.8,216 -705.6,590.4 -705.6,1065.6 0,705.6 576,1267.2 1324.8,1267.2 h 2851.2 c -72,-129.6 -172.8,-259.2 -273.6,-360 -316.8,-345.6 -748.8,-518.4 -1224,-518.4 z" - id="path3120" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /> - <path - d="M 2783.5,7327 C 2653.9,6995.8 2466.7,6693.4 2207.5,6434.2 1717.9,5944.6 1069.9,5671 378.7,5671 v 0 0 144 0 c 43.2,0 86.4,0 129.6,0 -43.2,0 -86.4,0 -129.6,0 v 720 c 460.8,0 907.2,187.2 1224,504 115.2,115.2 201.6,230.4 273.6,360 h 417.6 c 172.8,14.4 345.6,-14.4 489.6,-72 z" - id="path3122" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - </g> -</g> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" height="50" width="37.6" viewBox="275 1149 37.6 50"><path d="M293.5 1199h.3c10.4 0 18.8-3 18.8-6.8v-36.3h-19.1z" fill="#59b4d9"/><path d="M275 1155.8v36.3c0 3.8 8.4 6.8 18.8 6.8v-43.1z" fill="#3999c6"/><path d="M312.6 1155.8c0 3.8-8.4 6.8-18.8 6.8s-18.8-3-18.8-6.8 8.4-6.8 18.8-6.8 18.8 3 18.8 6.8" fill="#fff"/><path d="M308.7 1155.4c0 2.5-6.7 4.5-14.9 4.5s-14.9-2-14.9-4.5 6.7-4.5 14.9-4.5 14.9 2 14.9 4.5" fill="#7fba00"/><path d="M305.6 1158.2c2-.8 3.1-1.8 3.1-2.8 0-2.5-6.7-4.5-14.9-4.5s-14.9 2-14.9 4.5c0 1 1.1 2 3.1 2.8 2.8-1 7-1.8 11.8-1.8s9 .8 11.8 1.8" fill="#b8d432"/><path d="M303.2 1183.7v5h-18.8v-5h-2.5v7.5h23.9v-7.5zm-2.5-3.7l-6.9 6.2-6.9-6.2v-3.7l5.1 4.6v-11h3.6v11l5.1-4.6z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/dep/App_Service_Logic_App.svg b/src/main/webapp/img/lib/mscae/dep/App_Service_Logic_App.svg index dfef1c686b6152cc5d2bcc9927abc8c66011474e..667fdf126cb1bd9834f186c4f1d39150eba9ce2a 100644 --- a/src/main/webapp/img/lib/mscae/dep/App_Service_Logic_App.svg +++ b/src/main/webapp/img/lib/mscae/dep/App_Service_Logic_App.svg @@ -1,81 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - viewBox="0 0 50.029896 49.986137" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="App_Service_Logic_App.svg" - width="50.029896" - height="49.986137"><metadata - id="metadata21"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs19" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview17" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="11.355472" - inkscape:cx="38.239116" - inkscape:cy="17.878386" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><polygon - points="18.5,34.8 18.5,17.3 1,17.3 1,29.7 6.1,34.8 " - id="polygon3" - style="fill:#3999c6" - transform="translate(0,-0.01386178)" /><polygon - points="15.3,31.6 32.8,31.6 32.8,49.1 20.5,49.1 15.3,44 " - id="polygon5" - style="fill:#3999c6" - transform="translate(0,-0.01386178)" /><rect - x="-20.301416" - y="25.087427" - transform="matrix(0.70710678,-0.70710678,0.70710678,0.70710678,0,0)" - width="34.999664" - height="20.399803" - id="rect7" - style="fill:#e5e5e5" /><polygon - points="3.4,32.1 17.9,46.6 8.9,50 0,41.1 " - id="polygon9" - style="fill:#59b4d9" - transform="translate(0,-0.01386178)" /><path - d="M 28.2,7.3861382 C 37.1,-1.5138618 49.9,0.18613822 49.9,0.18613822 49.9,0.18613822 51.6,12.886138 42.7,21.886138 L 28.2,7.3861382 Z" - id="path11" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><circle - cx="27.200001" - cy="22.786137" - r="3.9000001" - id="circle13" - style="fill:#0072c6" /><path - d="M 49.5,0.08613822 C 47.3,-0.11386178 36.2,-0.61386178 28.2,7.3861382 L 18.3,17.286138 1,17.286138 1,29.686138 3.5,32.186138 0,41.086138 4.2,45.286138 49.5,0.08613822 Z" - id="path15" - inkscape:connector-curvature="0" - style="opacity:0.15;fill:#ffffff" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50.03" height="49.986"><g fill="#3999c6"><path d="M18.5 34.786v-17.5H1v12.4l5.1 5.1z"/><path d="M15.3 31.586h17.5v17.5H20.5l-5.2-5.1z"/></g><path d="M3.384 32.095L28.133 7.346 42.558 21.77 17.81 46.52z" fill="#e5e5e5"/><path d="M3.4 32.086l14.5 14.5-9 3.4-8.9-8.9zm24.8-24.7c8.9-8.9 21.7-7.2 21.7-7.2s1.7 12.7-7.2 21.7l-14.5-14.5z" fill="#59b4d9"/><circle cx="27.2" cy="22.786" r="3.9" fill="#0072c6"/><path d="M49.5.086c-2.2-.2-13.3-.7-21.3 7.3l-9.9 9.9H1v12.4l2.5 2.5-3.5 8.9 4.2 4.2L49.5.086z" opacity=".15" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/dep/Application_Gateway.svg b/src/main/webapp/img/lib/mscae/dep/Application_Gateway.svg index 7ef5b253a38a10a27695690101e6aabdcb205bc3..78cbae7b9df5893ee7b9606e8a31573fae726ae1 100644 --- a/src/main/webapp/img/lib/mscae/dep/Application_Gateway.svg +++ b/src/main/webapp/img/lib/mscae/dep/Application_Gateway.svg @@ -1,69 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="50" - width="50.099998" - viewBox="0 0 50.099998 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Application_Gateway_v1.svg"><metadata - id="metadata19"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs17" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview15" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="16.059062" - inkscape:cx="25" - inkscape:cy="25" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 25,50 C 23.8,50 22.6,49.5 21.7,48.6 L 1.4,28.3 C 0.5,27.4 0,26.2 0,25 0,23.8 0.5,22.6 1.4,21.7 L 21.7,1.4 C 22.6,0.5 23.8,0 25,0 26.2,0 27.4,0.5 28.3,1.4 L 48.7,21.8 C 49.6,22.7 50.1,23.8 50.1,25.1 50.1,26.3 49.6,27.5 48.7,28.4 L 28.3,48.6 C 27.4,49.5 26.2,50 25,50" - id="path3" - inkscape:connector-curvature="0" - style="fill:#3999c6" /><path - d="M 28.3,1.4 C 27.4,0.5 26.2,0 25,0 23.8,0 22.6,0.5 21.7,1.4 L 1.4,21.7 C 0.5,22.6 0,23.8 0,25 0,26.2 0.5,27.4 1.4,28.3 L 12.9,39.8 34.6,7.7 28.3,1.4 Z" - id="path5" - inkscape:connector-curvature="0" - style="opacity:0.15;fill:#ffffff" /><polygon - points="23.1,20.6 27,20.6 27,11 31.6,11 25,4.4 18.4,11 23.1,11 " - id="polygon7" - style="fill:#ffffff" /><polygon - points="26.9,29.6 23,29.6 23,39 18.4,39 25,45.6 31.6,39 26.9,39 " - id="polygon9" - style="fill:#ffffff" /><polygon - points="43.6,27 43.6,23 34.7,23 34.7,18.4 28.1,25 34.7,31.6 34.7,27 " - id="polygon11" - style="fill:#ffffff" /><polygon - points="6.4,23 6.4,27 15.4,27 15.4,31.6 22,25 15.4,18.4 15.4,23 " - id="polygon13" - style="fill:#ffffff" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" height="50" width="50.1"><path d="M25 50c-1.2 0-2.4-.5-3.3-1.4L1.4 28.3C.5 27.4 0 26.2 0 25s.5-2.4 1.4-3.3L21.7 1.4C22.6.5 23.8 0 25 0s2.4.5 3.3 1.4l20.4 20.4c.9.9 1.4 2 1.4 3.3 0 1.2-.5 2.4-1.4 3.3L28.3 48.6c-.9.9-2.1 1.4-3.3 1.4" fill="#3999c6"/><g fill="#fff"><path d="M28.3 1.4C27.4.5 26.2 0 25 0s-2.4.5-3.3 1.4L1.4 21.7C.5 22.6 0 23.8 0 25s.5 2.4 1.4 3.3l11.5 11.5L34.6 7.7l-6.3-6.3z" opacity=".15"/><path d="M23.1 20.6H27V11h4.6L25 4.4 18.4 11h4.7zm3.8 9H23V39h-4.6l6.6 6.6 6.6-6.6h-4.7zM43.6 27v-4h-8.9v-4.6L28.1 25l6.6 6.6V27zM6.4 23v4h9v4.6L22 25l-6.6-6.6V23z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/dep/Content_Delivery_Network.svg b/src/main/webapp/img/lib/mscae/dep/Content_Delivery_Network.svg index 149b9af17575f58b244b92fa86673752ef23fb1f..c9bbf91350bc301c8c696da785c83e0caae453a4 100644 --- a/src/main/webapp/img/lib/mscae/dep/Content_Delivery_Network.svg +++ b/src/main/webapp/img/lib/mscae/dep/Content_Delivery_Network.svg @@ -1,95 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="33.799999" - viewBox="0 0 50 33.799999" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Content_Delivery_Network.svg"><metadata - id="metadata31"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs29" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview27" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="16.059062" - inkscape:cx="25" - inkscape:cy="16.900001" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 44,14.1 C 44,13.7 44.1,13.2 44.1,12.8 44.1,5.7 38.3,0 31.1,0 26.9,0 23,2 20.6,5.3 19.1,4.3 17.3,3.8 15.4,3.8 10,3.8 5.6,8.2 5.6,13.5 L 5.6,14.3 C 2,16.2 0,19.3 0,23.1 0,29.1 4.9,33.8 11.2,33.8 L 38.8,33.8 C 45.1,33.8 50,29.1 50,23.1 50,19.1 47.8,15.9 44,14.1 Z" - id="path3" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><g - id="g5" - transform="translate(0,-8.1)"><path - d="M 32.3,17.3 C 32.3,17.3 32.3,17.3 32.3,17.3 32.3,17.3 32.3,17.3 32.3,17.3 Z" - id="path7" - inkscape:connector-curvature="0" - style="fill:#fcd116" /><path - d="M 32.4,17 C 32.4,17.1 32.3,17.1 32.3,17.2 32.3,17.1 32.3,17.1 32.4,17 L 36.7,9.4 C 36.7,9.4 36.7,9.4 36.7,9.4 L 32.4,17 Z" - id="path9" - inkscape:connector-curvature="0" - style="fill:#fcd116" /><path - d="M 22.7,23.1 27.6,23.1 C 27.8,23.1 27.9,23.1 27.9,23.2 28,23.3 28,23.5 28,23.7 L 23,35.9 C 22.9,36.2 23,36.3 23.2,36 L 23.9,35.2 35.7,17.5 38.9,17.5 C 38.9,17.5 38.9,17.5 38.9,17.5 L 33.7,17.5 32.7,17.5 C 32.7,17.5 32.6,17.5 32.6,17.5 L 29.7,17.5 34.4,8.5 C 33.4,8.2 32.3,8.1 31.2,8.1 29.6,8.1 28.1,8.4 26.7,8.9 L 22.4,22.6 C 22.2,22.9 22.4,23.1 22.7,23.1 Z" - id="path11" - inkscape:connector-curvature="0" - style="fill:#fcd116" /><path - d="M 39.1,18 23.9,35.2 23.8,35.4 39.1,18 C 39.4,17.7 39.3,17.5 38.9,17.5 L 38.9,17.5 C 39.2,17.5 39.3,17.7 39.1,18 Z" - id="path13" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><path - d="M 39.1,18 23.9,35.2 23.8,35.4 39.1,18 C 39.4,17.7 39.3,17.5 38.9,17.5 L 38.9,17.5 C 39.2,17.5 39.3,17.7 39.1,18 Z" - id="path15" - inkscape:connector-curvature="0" - style="opacity:0.3;fill:#ff8c00" /><path - d="M 23.9,35.2 39.1,18 C 39.3,17.7 39.2,17.5 38.9,17.5 L 35.7,17.5 23.9,35.2 Z" - id="path17" - inkscape:connector-curvature="0" - style="fill:#fcd116" /><path - d="M 23.9,35.2 39.1,18 C 39.3,17.7 39.2,17.5 38.9,17.5 L 35.7,17.5 23.9,35.2 Z" - id="path19" - inkscape:connector-curvature="0" - style="opacity:0.3;fill:#ff8c00" /><path - d="M 32.6,17.5 32.6,17.5 C 32.5,17.5 32.4,17.4 32.4,17.3 32.3,17.4 32.4,17.5 32.6,17.5 Z" - id="path21" - inkscape:connector-curvature="0" - style="fill:#ff8c00" /><path - d="M 32.3,17.3 C 32.3,17.3 32.3,17.2 32.3,17.2 32.3,17.2 32.3,17.3 32.3,17.3 Z" - id="path23" - inkscape:connector-curvature="0" - style="fill:#ff8c00" /><path - d="M 32.4,17 36.7,9.4 C 36,9.1 35.2,8.8 34.4,8.6 L 29.7,17.6 32.6,17.6 C 32.5,17.6 32.4,17.5 32.4,17.4 32.4,17.4 32.4,17.4 32.4,17.4 32.4,17.4 32.4,17.3 32.4,17.3 32.3,17.1 32.3,17 32.4,17 Z" - id="path25" - inkscape:connector-curvature="0" - style="fill:#ff8c00" /></g></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="33.8"><path d="M44 14.1c0-.4.1-.9.1-1.3 0-7.1-5.8-12.8-13-12.8-4.2 0-8.1 2-10.5 5.3-1.5-1-3.3-1.5-5.2-1.5-5.4 0-9.8 4.4-9.8 9.7v.8C2 16.2 0 19.3 0 23.1c0 6 4.9 10.7 11.2 10.7h27.6c6.3 0 11.2-4.7 11.2-10.7 0-4-2.2-7.2-6-9z" fill="#59b4d9"/><path d="M32.3 9.2zm.1-.3c0 .1-.1.1-.1.2 0-.1 0-.1.1-.2l4.3-7.6-4.3 7.6zM22.7 15h4.9c.2 0 .3 0 .3.1.1.1.1.3.1.5l-5 12.2c-.1.3 0 .4.2.1l.7-.8L35.7 9.4h3.2-9.2l4.7-9c-1-.3-2.1-.4-3.2-.4a13.3 13.3 0 0 0-4.5.8l-4.3 13.7c-.2.3 0 .5.3.5z" fill="#fcd116"/><path d="M39.1 9.9L23.9 27.1l-.1.2L39.1 9.9c.3-.3.2-.5-.2-.5.3 0 .4.2.2.5z" fill="#59b4d9"/><path d="M39.1 9.9L23.9 27.1l-.1.2L39.1 9.9c.3-.3.2-.5-.2-.5.3 0 .4.2.2.5z" opacity=".3" fill="#ff8c00"/><path d="M23.9 27.1L39.1 9.9c.2-.3.1-.5-.2-.5h-3.2L23.9 27.1z" fill="#fcd116"/><g fill="#ff8c00"><path d="M23.9 27.1L39.1 9.9c.2-.3.1-.5-.2-.5h-3.2L23.9 27.1z" opacity=".3"/><path d="M32.6 9.4c-.1 0-.2-.1-.2-.2-.1.1 0 .2.2.2zm-.3-.2v-.1.1z"/><path d="M32.4 8.9l4.3-7.6C36 1 35.2.7 34.4.5l-4.7 9h2.9c-.1 0-.2-.1-.2-.2v-.1c-.1-.2-.1-.3 0-.3z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/dep/DataWarehouse.svg b/src/main/webapp/img/lib/mscae/dep/DataWarehouse.svg index d3076c5e8826b41fae71789565f9072434b5507b..cff6fd326946e3624aa21acfcd2f6b66464d2a97 100644 --- a/src/main/webapp/img/lib/mscae/dep/DataWarehouse.svg +++ b/src/main/webapp/img/lib/mscae/dep/DataWarehouse.svg @@ -1,114 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="49.400002" - viewBox="0 0 50 49.400002" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="DataWarehouse.svg"><metadata - id="metadata31"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs29" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview27" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="16.059062" - inkscape:cx="25" - inkscape:cy="25.000001" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><g - id="g3" - transform="translate(0,-0.6)"><polygon - points="24.9,5.9 4.5,17.3 4.5,50 0,50 0,14.6 24.9,0.6 50,14.6 50,50 45.5,50 45.5,17.3 " - id="polygon5" - style="fill:#3999c6" /></g><rect - x="20.799999" - y="34.700001" - width="8.3999996" - height="6" - id="rect7" - style="fill:#b8d432" /><rect - x="20.799999" - y="25.199999" - width="8.3999996" - height="6.9000001" - id="rect9" - style="fill:#b8d432" /><rect - x="20.799999" - y="16.5" - width="8.3999996" - height="6" - id="rect11" - style="fill:#b8d432" /><rect - x="20.799999" - y="43.300003" - width="8.3999996" - height="6.0999999" - id="rect13" - style="fill:#b8d432" /><rect - x="31.799999" - y="43.300003" - width="8.3999996" - height="6.0999999" - id="rect15" - style="fill:#b8d432" /><rect - x="31.799999" - y="34.700001" - width="8.3999996" - height="6" - id="rect17" - style="fill:#b8d432" /><rect - x="31.799999" - y="25.199999" - width="8.3999996" - height="6.9000001" - id="rect19" - style="fill:#b8d432" /><rect - x="9.8000002" - y="25.199999" - width="8.3999996" - height="6.9000001" - id="rect21" - style="fill:#b8d432" /><rect - x="9.8000002" - y="34.700001" - width="8.3999996" - height="6" - id="rect23" - style="fill:#b8d432" /><rect - x="9.8000002" - y="43.300003" - width="8.3999996" - height="6.0999999" - id="rect25" - style="fill:#b8d432" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="49.4"><path d="M24.9 5.3L4.5 16.7v32.7H0V14L24.9 0 50 14v35.4h-4.5V16.7z" fill="#3999c6"/><path d="M20.8 34.7h8.4v6h-8.4zm0-9.5h8.4v6.9h-8.4zm0-8.7h8.4v6h-8.4zm0 26.8h8.4v6.1h-8.4zm11 0h8.4v6.1h-8.4zm0-8.6h8.4v6h-8.4zm0-9.5h8.4v6.9h-8.4zm-22 0h8.4v6.9H9.8zm0 9.5h8.4v6H9.8zm0 8.6h8.4v6.1H9.8z" fill="#b8d432"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/dep/Data_Lake.svg b/src/main/webapp/img/lib/mscae/dep/Data_Lake.svg index f7acb5a37d465e7aebfd98d4619988f07822e35b..89beae045c7de8d1358e3425429631f9533299e7 100644 --- a/src/main/webapp/img/lib/mscae/dep/Data_Lake.svg +++ b/src/main/webapp/img/lib/mscae/dep/Data_Lake.svg @@ -1,93 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="37.799999" - height="50" - viewBox="0 0 37.799999 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Data_Lake.svg"><metadata - id="metadata31"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs29" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview27" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="16.059062" - inkscape:cx="18.9" - inkscape:cy="25" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><g - id="g3" - transform="translate(-6.1,0)"><path - d="M 6.1,6.8 6.1,43.1 C 6.1,46.9 14.5,49.9 25,49.9 L 25,6.8 6.1,6.8 Z" - id="path5" - inkscape:connector-curvature="0" - style="fill:#3e3e3e" /><path - d="M 24.7,50 25,50 C 35.4,50 43.9,46.9 43.9,43.2 L 43.9,6.8 24.7,6.8 24.7,50 Z" - id="path7" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /><path - d="M 43.9,6.8 C 43.9,10.6 35.5,13.6 25,13.6 14.5,13.6 6.1,10.6 6.1,6.8 6.1,3.1 14.6,0 25,0 35.4,0 43.9,3.1 43.9,6.8" - id="path9" - inkscape:connector-curvature="0" - style="fill:#ffffff" /><path - d="M 40,6.4 C 40,8.9 33.3,10.9 25,10.9 16.7,10.9 10,8.9 10,6.4 10,3.9 16.7,1.9 25,1.9 33.3,1.9 40,3.9 40,6.4" - id="path11" - inkscape:connector-curvature="0" - style="fill:#7fba00" /><path - d="M 36.9,9.2 C 38.9,8.4 40,7.5 40,6.4 40,3.9 33.3,1.9 25,1.9 16.7,1.9 10,3.9 10,6.4 10,7.4 11.2,8.4 13.1,9.2 15.8,8.1 20.1,7.4 25,7.4 29.8,7.4 34.1,8.1 36.9,9.2" - id="path13" - inkscape:connector-curvature="0" - style="fill:#b8d432" /></g><g - id="g15" - transform="translate(-6.1,0)"><path - d="M 24.7,50 24.7,32 C 21.9,32 19.5,30.5 18.1,28.3 16.7,30.5 14.4,32 11.6,32 9.4,32 7.5,31.1 6.1,29.6 L 6.1,43.2 C 6.1,46.9 14.4,49.9 24.7,50 Z" - id="path17" - inkscape:connector-curvature="0" - style="fill:#3999c6" /><path - d="M 25,50 25,50 25,50 C 25,50 25,50 25,50 Z" - id="path19" - inkscape:connector-curvature="0" - style="fill:#3999c6" /><path - d="M 24.7,50 25,50 C 24.9,50 24.8,50 24.7,50 L 24.7,50 Z" - id="path21" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><path - d="M 38.1,32 C 35.3,32 32.8,30.5 31.4,28.3 30.1,30.5 27.7,31.9 24.9,32 L 24.9,50 24.9,50 C 35.3,50 43.8,46.9 43.8,43.2 L 43.8,29.5 C 42.4,31 40.4,32 38.1,32 Z" - id="path23" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><path - d="M 24.8,32 C 24.8,32 24.8,32 24.8,32 L 24.7,50 C 24.8,50 24.8,50 24.9,50 L 24.9,50 24.9,32 C 24.9,32 24.9,32 24.8,32 Z" - id="path25" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /></g></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="37.8" height="50"><path d="M0 6.8v36.3c0 3.8 8.4 6.8 18.9 6.8V6.8H0z" fill="#3e3e3e"/><path d="M18.6 50h.3c10.4 0 18.9-3.1 18.9-6.8V6.8H18.6V50z" fill="#a0a1a2"/><path d="M37.8 6.8c0 3.8-8.4 6.8-18.9 6.8S0 10.6 0 6.8C0 3.1 8.5 0 18.9 0s18.9 3.1 18.9 6.8" fill="#fff"/><path d="M33.9 6.4c0 2.5-6.7 4.5-15 4.5s-15-2-15-4.5 6.7-4.5 15-4.5 15 2 15 4.5" fill="#7fba00"/><path d="M30.8 9.2c2-.8 3.1-1.7 3.1-2.8 0-2.5-6.7-4.5-15-4.5s-15 2-15 4.5c0 1 1.2 2 3.1 2.8 2.7-1.1 7-1.8 11.9-1.8 4.8 0 9.1.7 11.9 1.8" fill="#b8d432"/><path d="M18.6 50V32c-2.8 0-5.2-1.5-6.6-3.7-1.4 2.2-3.7 3.7-6.5 3.7-2.2 0-4.1-.9-5.5-2.4v13.6c0 3.7 8.3 6.7 18.6 6.8zm.3 0z" fill="#3999c6"/><g fill="#59b4d9"><path d="M18.6 50zM32 32c-2.8 0-5.3-1.5-6.7-3.7-1.3 2.2-3.7 3.6-6.5 3.7v18c10.4 0 18.9-3.1 18.9-6.8V29.5C36.3 31 34.3 32 32 32z"/><path d="M18.7 32l-.1 18h.2V32h-.1z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/dep/Data_Lake_Analytics.svg b/src/main/webapp/img/lib/mscae/dep/Data_Lake_Analytics.svg index 7097b2482ec01939f4760a26a6fcfc7c78bfc957..3e1de769645cfbb1318c01435957f65df66abc1d 100644 --- a/src/main/webapp/img/lib/mscae/dep/Data_Lake_Analytics.svg +++ b/src/main/webapp/img/lib/mscae/dep/Data_Lake_Analytics.svg @@ -1,147 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="50.000015" - viewBox="-162 256 50 50.000015" - enable-background="new -162 256 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Data_Lake_Analytics.svg"><metadata - id="metadata67"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs65" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview63" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="16.059062" - inkscape:cx="25" - inkscape:cy="25.000014" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><g - id="g3"><path - d="M -162,262.8 -162,299.1 C -162,302.9 -153.6,305.9 -143.1,305.9 L -143.1,262.8 -162,262.8 Z" - id="path5" - inkscape:connector-curvature="0" - style="fill:#3e3e3e" /><path - d="M -143.4,306 -143.1,306 C -132.7,306 -124.2,302.9 -124.2,299.2 L -124.2,262.8 -143.4,262.8 -143.4,306 Z" - id="path7" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /><path - d="M -124.2,262.8 C -124.2,266.6 -132.6,269.6 -143.1,269.6 -153.6,269.6 -162,266.6 -162,262.8 -162,259.1 -153.5,256 -143.1,256 -132.7,256 -124.2,259.1 -124.2,262.8" - id="path9" - inkscape:connector-curvature="0" - style="fill:#ffffff" /><path - d="M -128.1,262.4 C -128.1,264.9 -134.8,266.9 -143.1,266.9 -151.4,266.9 -158.1,264.9 -158.1,262.4 -158.1,259.9 -151.4,257.9 -143.1,257.9 -134.8,257.9 -128.1,259.9 -128.1,262.4" - id="path11" - inkscape:connector-curvature="0" - style="fill:#7fba00" /><path - d="M -131.2,265.2 C -129.2,264.4 -128.1,263.5 -128.1,262.4 -128.1,259.9 -134.8,257.9 -143.1,257.9 -151.4,257.9 -158.1,259.9 -158.1,262.4 -158.1,263.4 -156.9,264.4 -155,265.2 -152.3,264.1 -148,263.4 -143.1,263.4 -138.3,263.4 -134,264.1 -131.2,265.2" - id="path13" - inkscape:connector-curvature="0" - style="fill:#b8d432" /></g><g - id="g15"><path - d="M -143.4,306 -143.4,288 C -146.2,288 -148.6,286.5 -150,284.3 -151.4,286.5 -153.7,288 -156.5,288 -158.7,288 -160.6,287.1 -162,285.6 L -162,299.2 C -162,302.9 -153.7,305.9 -143.4,306 Z" - id="path17" - inkscape:connector-curvature="0" - style="fill:#3999c6" /><path - d="M -143.1,306 -143.1,306 -143.1,306 -143.1,306 Z" - id="path19" - inkscape:connector-curvature="0" - style="fill:#3999c6" /><path - d="M -143.4,306 -143.1,306 C -143.2,306 -143.3,306 -143.4,306 L -143.4,306 Z" - id="path21" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><path - d="M -130,288 C -132.8,288 -135.3,286.5 -136.7,284.3 -138,286.5 -140.4,287.9 -143.2,288 L -143.2,306 -143.2,306 C -132.8,306 -124.3,302.9 -124.3,299.2 L -124.3,285.5 C -125.7,287 -127.7,288 -130,288 Z" - id="path23" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><path - d="M -143.3,288 -143.3,288 -143.4,306 C -143.3,306 -143.3,306 -143.2,306 L -143.2,306 -143.2,288 C -143.2,288 -143.2,288 -143.3,288 Z" - id="path25" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /></g><g - id="g27"><rect - x="-139.084" - y="291.93301" - width="4.8899999" - height="14.067" - id="rect29" - style="fill:#68217a" /></g><g - id="g31"><rect - x="-131.806" - y="288.625" - width="4.8899999" - height="17.375" - id="rect33" - style="fill:#68217a" /></g><g - id="g35"><rect - x="-124.537" - y="294.19199" - width="4.9060001" - height="11.808" - id="rect37" - style="fill:#68217a" /></g><g - id="g39"><rect - x="-117.251" - y="289.97" - width="4.8899999" - height="16.030001" - id="rect41" - style="fill:#68217a" /></g><g - id="g43"><polygon - points="-138.111,287.473 -127.679,279.808 -122.307,287.628 -113.925,280.308 -113.396,280.915 -113.864,281.323 -113.576,281.653 -122.541,289.483 -127.977,281.569 -137.374,288.474 " - id="polygon45" - style="fill:#68217a" /></g><g - id="g47"><circle - cx="-137.96899" - cy="288.04999" - r="1.864" - id="circle49" - style="fill:#804998" /></g><g - id="g51"><circle - cx="-127.864" - cy="280.88" - r="1.864" - id="circle53" - style="fill:#804998" /></g><g - id="g55"><circle - cx="-122.552" - cy="288.556" - r="1.864" - id="circle57" - style="fill:#804998" /></g><g - id="g59"><circle - cx="-113.864" - cy="281.14099" - r="1.864" - id="circle61" - style="fill:#804998" /></g></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="-162 256 50 50"><path d="M-162 262.8v36.3c0 3.8 8.4 6.8 18.9 6.8v-43.1H-162z" fill="#3e3e3e"/><path d="M-143.4 306h.3c10.4 0 18.9-3.1 18.9-6.8v-36.4h-19.2V306z" fill="#a0a1a2"/><path d="M-124.2 262.8c0 3.8-8.4 6.8-18.9 6.8s-18.9-3-18.9-6.8c0-3.7 8.5-6.8 18.9-6.8s18.9 3.1 18.9 6.8" fill="#fff"/><path d="M-128.1 262.4c0 2.5-6.7 4.5-15 4.5s-15-2-15-4.5 6.7-4.5 15-4.5 15 2 15 4.5" fill="#7fba00"/><path d="M-131.2 265.2c2-.8 3.1-1.7 3.1-2.8 0-2.5-6.7-4.5-15-4.5s-15 2-15 4.5c0 1 1.2 2 3.1 2.8 2.7-1.1 7-1.8 11.9-1.8 4.8 0 9.1.7 11.9 1.8" fill="#b8d432"/><path d="M-143.4 306v-18c-2.8 0-5.2-1.5-6.6-3.7-1.4 2.2-3.7 3.7-6.5 3.7-2.2 0-4.1-.9-5.5-2.4v13.6c0 3.7 8.3 6.7 18.6 6.8zm.3 0z" fill="#3999c6"/><g fill="#59b4d9"><path d="M-143.4 306zm13.4-18c-2.8 0-5.3-1.5-6.7-3.7-1.3 2.2-3.7 3.6-6.5 3.7v18c10.4 0 18.9-3.1 18.9-6.8v-13.7c-1.4 1.5-3.4 2.5-5.7 2.5z"/><path d="M-143.3 288l-.1 18h.2v-18h-.1z"/></g><path d="M-139.084 291.933h4.9V306h-4.9zm7.278-3.308h4.9V306h-4.9zm7.27 5.567h4.906V306h-4.906zm7.287-4.222h4.9V306h-4.9zm-20.86-2.497l10.432-7.665 5.372 7.82 8.382-7.32.53.607-.468.408.288.33-8.965 7.83-5.436-7.914-9.397 6.905z" fill="#68217a"/><g fill="#804998"><circle cx="-137.969" cy="288.05" r="1.864"/><circle cx="-127.864" cy="280.88" r="1.864"/><circle cx="-122.552" cy="288.556" r="1.864"/><circle cx="-113.864" cy="281.141" r="1.864"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/dep/Data_Lake_Store.svg b/src/main/webapp/img/lib/mscae/dep/Data_Lake_Store.svg index 48119fcb6c207242936bfd98148f0d041ed909f6..6fe9f7545ea3930fcf08346aa4523979e3b5bd91 100644 --- a/src/main/webapp/img/lib/mscae/dep/Data_Lake_Store.svg +++ b/src/main/webapp/img/lib/mscae/dep/Data_Lake_Store.svg @@ -1,99 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="50" - viewBox="-162 256 50 50" - enable-background="new -162 256 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="Data_Lake_Store.svg"><metadata - id="metadata35"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs33" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview31" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="16.059062" - inkscape:cx="25" - inkscape:cy="25" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><g - id="g3"><path - d="M -162,262.8 -162,299.1 C -162,302.9 -153.6,305.9 -143.1,305.9 L -143.1,262.8 -162,262.8 Z" - id="path5" - inkscape:connector-curvature="0" - style="fill:#3e3e3e" /><path - d="M -143.4,306 -143.1,306 C -132.7,306 -124.2,302.9 -124.2,299.2 L -124.2,262.8 -143.4,262.8 -143.4,306 Z" - id="path7" - inkscape:connector-curvature="0" - style="fill:#a0a1a2" /><path - d="M -124.2,262.8 C -124.2,266.6 -132.6,269.6 -143.1,269.6 -153.6,269.6 -162,266.6 -162,262.8 -162,259.1 -153.5,256 -143.1,256 -132.7,256 -124.2,259.1 -124.2,262.8" - id="path9" - inkscape:connector-curvature="0" - style="fill:#ffffff" /><path - d="M -128.1,262.4 C -128.1,264.9 -134.8,266.9 -143.1,266.9 -151.4,266.9 -158.1,264.9 -158.1,262.4 -158.1,259.9 -151.4,257.9 -143.1,257.9 -134.8,257.9 -128.1,259.9 -128.1,262.4" - id="path11" - inkscape:connector-curvature="0" - style="fill:#7fba00" /><path - d="M -131.2,265.2 C -129.2,264.4 -128.1,263.5 -128.1,262.4 -128.1,259.9 -134.8,257.9 -143.1,257.9 -151.4,257.9 -158.1,259.9 -158.1,262.4 -158.1,263.4 -156.9,264.4 -155,265.2 -152.3,264.1 -148,263.4 -143.1,263.4 -138.3,263.4 -134,264.1 -131.2,265.2" - id="path13" - inkscape:connector-curvature="0" - style="fill:#b8d432" /></g><g - id="g15"><path - d="M -143.4,306 -143.4,288 C -146.2,288 -148.6,286.5 -150,284.3 -151.4,286.5 -153.7,288 -156.5,288 -158.7,288 -160.6,287.1 -162,285.6 L -162,299.2 C -162,302.9 -153.7,305.9 -143.4,306 Z" - id="path17" - inkscape:connector-curvature="0" - style="fill:#3999c6" /><path - d="M -143.1,306 -143.1,306 -143.1,306 -143.1,306 Z" - id="path19" - inkscape:connector-curvature="0" - style="fill:#3999c6" /><path - d="M -143.4,306 -143.1,306 C -143.2,306 -143.3,306 -143.4,306 L -143.4,306 Z" - id="path21" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><path - d="M -130,288 C -132.8,288 -135.3,286.5 -136.7,284.3 -138,286.5 -140.4,287.9 -143.2,288 L -143.2,306 -143.2,306 C -132.8,306 -124.3,302.9 -124.3,299.2 L -124.3,285.5 C -125.7,287 -127.7,288 -130,288 Z" - id="path23" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /><path - d="M -143.3,288 -143.3,288 -143.4,306 C -143.3,306 -143.3,306 -143.2,306 L -143.2,306 -143.2,288 C -143.2,288 -143.2,288 -143.3,288 Z" - id="path25" - inkscape:connector-curvature="0" - style="fill:#59b4d9" /></g><path - d="M -113.049,286.378 -113.049,284.22 -127.246,284.22 -130.465,281 -139.126,281 -139.126,304.713 C -139.126,305.423 -138.551,306 -137.84,306 L -137.84,306 -113.286,306 C -112.576,306 -112,305.424 -112,304.713 L -112,286.377 -113.049,286.377 Z" - id="path27" - inkscape:connector-curvature="0" - style="fill:#fee087" /><path - d="M -136.553,286.378 -136.553,304.713 C -136.553,305.424 -137.129,306 -137.839,306 -138.55,306 -139.125,305.424 -139.125,304.713 L -139.125,281 -130.464,281 -127.245,284.22 -113.048,284.22 -113.048,286.378 -136.553,286.378 Z" - id="path29" - inkscape:connector-curvature="0" - style="opacity:0.2;fill:#1e1e1e" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="-162 256 50 50"><path d="M-162 262.8v36.3c0 3.8 8.4 6.8 18.9 6.8v-43.1H-162z" fill="#3e3e3e"/><path d="M-143.4 306h.3c10.4 0 18.9-3.1 18.9-6.8v-36.4h-19.2V306z" fill="#a0a1a2"/><path d="M-124.2 262.8c0 3.8-8.4 6.8-18.9 6.8s-18.9-3-18.9-6.8c0-3.7 8.5-6.8 18.9-6.8s18.9 3.1 18.9 6.8" fill="#fff"/><path d="M-128.1 262.4c0 2.5-6.7 4.5-15 4.5s-15-2-15-4.5 6.7-4.5 15-4.5 15 2 15 4.5" fill="#7fba00"/><path d="M-131.2 265.2c2-.8 3.1-1.7 3.1-2.8 0-2.5-6.7-4.5-15-4.5s-15 2-15 4.5c0 1 1.2 2 3.1 2.8 2.7-1.1 7-1.8 11.9-1.8 4.8 0 9.1.7 11.9 1.8" fill="#b8d432"/><path d="M-143.4 306v-18c-2.8 0-5.2-1.5-6.6-3.7-1.4 2.2-3.7 3.7-6.5 3.7-2.2 0-4.1-.9-5.5-2.4v13.6c0 3.7 8.3 6.7 18.6 6.8zm.3 0z" fill="#3999c6"/><g fill="#59b4d9"><path d="M-143.4 306zm13.4-18c-2.8 0-5.3-1.5-6.7-3.7-1.3 2.2-3.7 3.6-6.5 3.7v18c10.4 0 18.9-3.1 18.9-6.8v-13.7c-1.4 1.5-3.4 2.5-5.7 2.5z"/><path d="M-143.3 288l-.1 18h.2v-18h-.1z"/></g><path d="M-113.05 286.378v-2.158h-14.197l-3.22-3.22h-8.66v23.713c0 .7.575 1.287 1.286 1.287h24.554c.7 0 1.286-.576 1.286-1.287v-18.336h-1.05z" fill="#fee087"/><path d="M-136.553 286.378v18.335c0 .71-.576 1.287-1.286 1.287s-1.286-.576-1.286-1.287V281h8.66l3.22 3.22h14.197v2.158h-23.505z" opacity=".2" fill="#1e1e1e"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/dep/SQL_Server_Stretch_DB.svg b/src/main/webapp/img/lib/mscae/dep/SQL_Server_Stretch_DB.svg index f70ee1e300145c073d9c148c088225575e67f692..5a688f6421e8cd4c66aceb2549c6703b3f41c06f 100644 --- a/src/main/webapp/img/lib/mscae/dep/SQL_Server_Stretch_DB.svg +++ b/src/main/webapp/img/lib/mscae/dep/SQL_Server_Stretch_DB.svg @@ -1,85 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - width="50" - height="50" - viewBox="0 0 50 50" - enable-background="new 0 0 50 50" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="SQL_Server_Stretch_DB.svg"><metadata - id="metadata25"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs23" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1018" - id="namedview21" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="16.059062" - inkscape:cx="25" - inkscape:cy="25" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /><path - d="M 45.302,25.945 C 45.302,18.865 47.08,12.409 50,7.516 L 50,6.831 24.657,6.831 24.657,49.999 25,49.999 C 25.426,49.999 25.85,49.996 26.271,49.99 26.402,49.988 26.531,49.984 26.662,49.982 26.952,49.977 27.242,49.972 27.529,49.964 27.685,49.96 27.839,49.953 27.994,49.948 28.251,49.94 28.509,49.932 28.763,49.921 28.94,49.914 29.114,49.904 29.289,49.896 29.519,49.885 29.751,49.875 29.979,49.862 30.168,49.852 30.355,49.839 30.543,49.827 30.752,49.814 30.963,49.802 31.17,49.788 31.366,49.774 31.559,49.759 31.753,49.744 31.951,49.729 32.149,49.714 32.345,49.698 32.536,49.682 32.725,49.664 32.914,49.647 33.107,49.629 33.302,49.612 33.493,49.593 33.688,49.574 33.88,49.553 34.073,49.532 34.252,49.513 34.432,49.494 34.61,49.474 34.807,49.452 35.001,49.427 35.195,49.404 35.366,49.383 35.537,49.363 35.706,49.341 35.902,49.316 36.095,49.289 36.289,49.262 36.449,49.24 36.61,49.218 36.768,49.195 36.965,49.166 37.158,49.136 37.352,49.106 37.502,49.083 37.653,49.06 37.802,49.035 38.001,49.003 38.196,48.969 38.391,48.935 38.527,48.911 38.665,48.888 38.799,48.864 38.998,48.828 39.193,48.791 39.388,48.753 39.515,48.729 39.643,48.704 39.768,48.679 39.964,48.64 40.156,48.599 40.347,48.559 40.466,48.534 40.585,48.509 40.702,48.483 40.894,48.441 41.082,48.397 41.27,48.353 41.38,48.327 41.491,48.301 41.599,48.275 41.789,48.229 41.975,48.182 42.16,48.134 42.259,48.108 42.358,48.083 42.455,48.057 42.644,48.007 42.829,47.955 43.012,47.903 43.099,47.878 43.186,47.854 43.271,47.829 43.459,47.774 43.642,47.718 43.823,47.662 43.898,47.639 43.972,47.615 44.046,47.592 44.229,47.533 44.409,47.473 44.585,47.413 44.652,47.39 44.719,47.367 44.785,47.344 44.962,47.281 45.135,47.218 45.305,47.154 45.363,47.132 45.421,47.11 45.478,47.088 45.649,47.021 45.816,46.954 45.979,46.885 46.029,46.864 46.079,46.843 46.128,46.822 46.292,46.752 46.451,46.68 46.605,46.608 46.648,46.588 46.69,46.568 46.732,46.548 46.887,46.474 47.038,46.398 47.183,46.322 47.219,46.303 47.254,46.284 47.289,46.265 47.435,46.187 47.576,46.108 47.711,46.028 47.74,46.011 47.768,45.993 47.797,45.976 47.933,45.894 48.064,45.811 48.188,45.726 48.211,45.71 48.234,45.694 48.257,45.678 48.382,45.592 48.501,45.505 48.613,45.417 48.631,45.403 48.647,45.389 48.665,45.375 48.778,45.285 48.884,45.194 48.983,45.102 48.996,45.09 49.008,45.078 49.021,45.065 49.12,44.971 49.213,44.876 49.298,44.78 49.307,44.77 49.315,44.759 49.324,44.749 49.409,44.651 49.487,44.553 49.556,44.453 49.562,44.445 49.567,44.436 49.573,44.428 49.642,44.326 49.704,44.224 49.757,44.121 49.76,44.115 49.763,44.108 49.766,44.102 49.779,44.075 49.787,44.048 49.8,44.021 46.998,39.171 45.302,32.857 45.302,25.945 Z" - id="path3" - inkscape:connector-curvature="0" - style="fill:#0072c6" /><path - enable-background="new " - d="M 45.302,25.945 C 45.302,18.865 47.08,12.409 50,7.516 L 50,6.831 24.657,6.831 24.657,49.999 25,49.999 C 37.75,49.999 48.26,47.391 49.796,44.02 46.998,39.171 45.302,32.857 45.302,25.945 Z" - id="path5" - inkscape:connector-curvature="0" - style="opacity:0.15;fill:#ffffff" /><path - d="M 0,6.831 0,7.322 C 0.096,7.587 0.182,7.87 0.274,8.143 2.978,12.955 4.61,19.163 4.61,25.945 4.61,32.818 2.933,39.1 0.164,43.938 1.564,47.348 12.147,50 25,50 L 25,6.831 0,6.831 Z" - id="path7" - inkscape:connector-curvature="0" - style="fill:#0072c6" /><path - d="M 50,6.831 C 50,10.604 38.806,13.662 25,13.662 11.194,13.662 0,10.603 0,6.831 0,3.059 11.193,0 25,0 38.807,0 50,3.058 50,6.831" - id="path9" - inkscape:connector-curvature="0" - style="fill:#ffffff" /><path - d="M 44.889,6.437 C 44.889,8.928 35.984,10.944 25,10.944 14.016,10.944 5.11,8.928 5.11,6.437 5.11,3.947 14.016,1.93 25,1.93 35.984,1.93 44.889,3.948 44.889,6.437" - id="path11" - inkscape:connector-curvature="0" - style="fill:#7fba00" /><path - d="M 40.722,9.191 C 43.326,8.429 44.89,7.475 44.89,6.439 44.89,3.948 35.985,1.931 25,1.931 14.016,1.931 5.111,3.949 5.111,6.439 5.111,7.475 6.676,8.429 9.279,9.191 12.915,8.127 18.598,7.439 25,7.439 31.404,7.439 37.083,8.127 40.722,9.191" - id="path13" - inkscape:connector-curvature="0" - style="fill:#b8d432" /><path - d="M 18.547,32.354 C 18.547,33.476 18.14,34.345 17.326,34.961 16.512,35.577 15.388,35.885 13.953,35.885 12.732,35.885 11.712,35.665 10.892,35.225 L 10.892,32.585 C 11.838,33.388 12.88,33.79 14.018,33.79 14.568,33.79 14.993,33.68 15.293,33.46 15.593,33.24 15.743,32.949 15.743,32.585 15.743,32.228 15.599,31.917 15.31,31.653 15.021,31.389 14.434,31.048 13.549,30.63 11.745,29.784 10.843,28.628 10.843,27.166 10.843,26.105 11.236,25.254 12.023,24.613 12.809,23.973 13.854,23.652 15.157,23.652 16.312,23.652 17.268,23.804 18.028,24.106 L 18.028,26.572 C 17.231,26.022 16.323,25.747 15.306,25.747 14.795,25.747 14.391,25.855 14.094,26.072 13.797,26.29 13.649,26.58 13.649,26.942 13.649,27.316 13.768,27.623 14.008,27.862 14.247,28.101 14.738,28.397 15.48,28.749 16.586,29.272 17.373,29.802 17.844,30.341 18.312,30.881 18.547,31.552 18.547,32.354 Z" - id="path15" - inkscape:connector-curvature="0" - style="fill:#ffffff" /><path - d="M 31.274,29.682 C 31.274,31.073 30.957,32.281 30.325,33.303 29.692,34.326 28.802,35.043 27.653,35.456 L 31.084,38.632 27.62,38.632 25.17,35.885 C 24.12,35.847 23.172,35.569 22.328,35.052 21.484,34.536 20.832,33.827 20.373,32.928 19.914,32.029 19.684,31.026 19.684,29.921 19.684,28.695 19.933,27.602 20.43,26.642 20.928,25.682 21.627,24.944 22.529,24.427 23.431,23.911 24.464,23.652 25.631,23.652 26.719,23.652 27.694,23.902 28.555,24.403 29.415,24.903 30.083,25.615 30.559,26.539 31.036,27.463 31.274,28.511 31.274,29.682 Z M 28.47,29.831 C 28.47,28.632 28.209,27.685 27.686,26.989 27.163,26.293 26.449,25.945 25.541,25.945 24.617,25.945 23.878,26.294 23.322,26.992 22.767,27.691 22.489,28.62 22.489,29.78 22.489,30.935 22.761,31.857 23.305,32.547 23.85,33.237 24.572,33.582 25.474,33.582 26.393,33.582 27.121,33.248 27.66,32.58 28.2,31.913 28.47,30.996 28.47,29.831 Z" - id="path17" - inkscape:connector-curvature="0" - style="fill:#ffffff" /><polygon - points="35.893,23.851 35.893,33.518 40.273,33.518 40.273,35.679 33.229,35.679 33.229,23.851 " - id="polygon19" - style="fill:#ffffff" /></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50"><path d="M45.302 25.945c0-7.08 1.778-13.536 4.698-18.43V6.83H24.657V50H25h1.27l.39-.008.867-.018.465-.016.77-.027.526-.025.7-.034 1.19-.074.583-.044.592-.046.57-.05.58-.054.58-.06.537-.058.585-.07.51-.063.583-.08.48-.067.584-.09.45-.07.59-.1.408-.07.59-.11.38-.074.58-.12.355-.076.568-.13.33-.078.56-.14.295-.077.557-.154.26-.074.552-.167.223-.07.54-.18.2-.07.52-.2.173-.066.5-.203.15-.063c.164-.07.323-.142.477-.214l.127-.06a13.53 13.53 0 0 0 .451-.226l.106-.057a10.95 10.95 0 0 0 .422-.237l.086-.052c.136-.082.267-.165.39-.25l.07-.048c.125-.086.244-.173.356-.26.018-.014.034-.028.052-.042.113-.1.22-.18.318-.273a1.31 1.31 0 0 0 .038-.037c.1-.094.192-.19.277-.285.01-.01.017-.02.026-.03a3.41 3.41 0 0 0 .232-.296c.006-.008.01-.017.017-.025a3 3 0 0 0 .184-.307c.003-.006.006-.013.01-.02.013-.027.02-.054.034-.08-2.802-4.85-4.498-11.164-4.498-18.076z" fill="#0072c6"/><path d="M45.302 25.945c0-7.08 1.778-13.536 4.698-18.43V6.83H24.657V50H25c12.75 0 23.26-2.608 24.796-5.98-2.798-4.85-4.494-11.163-4.494-18.075z" opacity=".15" fill="#fff"/><path d="M0 6.83v.49l.274.82C2.978 12.955 4.6 19.163 4.6 25.945 4.6 32.818 2.933 39.1.164 43.938 1.564 47.348 12.147 50 25 50V6.83H0z" fill="#0072c6"/><path d="M50 6.83c0 3.773-11.194 6.83-25 6.83S0 10.603 0 6.83 11.193 0 25 0s25 3.058 25 6.83" fill="#fff"/><path d="M44.89 6.437c0 2.49-8.905 4.507-19.89 4.507S5.1 8.928 5.1 6.437 14.016 1.93 25 1.93s19.89 2.018 19.89 4.507" fill="#7fba00"/><path d="M40.722 9.19C43.326 8.43 44.9 7.475 44.9 6.44c0-2.49-8.905-4.508-19.9-4.508S5.11 3.95 5.11 6.44c0 1.036 1.565 2 4.168 2.752C12.915 8.127 18.598 7.44 25 7.44s12.083.688 15.722 1.752" fill="#b8d432"/><path d="M18.547 32.354c0 1.122-.407 2-1.22 2.607s-1.938.924-3.373.924c-1.22 0-2.24-.22-3.06-.66v-2.64c.946.803 1.988 1.205 3.126 1.205.55 0 .975-.1 1.275-.33a1.03 1.03 0 0 0 .45-.875c0-.357-.144-.668-.433-.932s-.876-.605-1.76-1.023c-1.804-.846-2.706-2.002-2.706-3.464 0-1.06.393-1.912 1.18-2.553s1.83-.96 3.134-.96c1.155 0 2.1.152 2.87.454v2.466c-.797-.55-1.705-.825-2.722-.825-.5 0-.915.108-1.212.325s-.445.508-.445.87c0 .374.12.68.36.92s.73.535 1.472.887c1.106.523 1.893 1.053 2.364 1.592s.703 1.2.703 2.013zm12.727-2.672c0 1.4-.317 2.6-.95 3.62s-1.523 1.74-2.672 2.153l3.43 3.176H27.62l-2.45-2.747c-1.05-.038-1.998-.316-2.842-.833a5.22 5.22 0 0 1-1.955-2.124c-.46-.9-.7-1.902-.7-3.007 0-1.226.25-2.32.746-3.28s1.197-1.698 2.1-2.215 1.935-.775 3.102-.775c1.088 0 2.063.25 2.924.75s1.528 1.212 2.004 2.136.715 1.972.715 3.143zm-2.804.15c0-1.2-.26-2.146-.784-2.842s-1.237-1.044-2.145-1.044a2.69 2.69 0 0 0-2.219 1.047c-.555.7-.833 1.628-.833 2.788s.272 2.077.816 2.767 1.267 1.035 2.17 1.035c.92 0 1.647-.334 2.186-1.002s.8-1.584.8-2.75zm7.423-5.982v9.667h4.38v2.16H33.23V23.85z" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/eBooks.svg b/src/main/webapp/img/lib/mscae/eBooks.svg new file mode 100644 index 0000000000000000000000000000000000000000..b55c26ca955dc11eba6a60162b5cfbcf11c147b5 --- /dev/null +++ b/src/main/webapp/img/lib/mscae/eBooks.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="47" height="38.9"><path d="M0 2.9v33a1 1 0 0 0 1 1h13c3.956 0 5.33 1.057 5.787 1.634.186.236.47.366.77.366h5.885c.3 0 .584-.13.77-.366.455-.577 1.83-1.634 5.786-1.634h13a1 1 0 0 0 1-1v-33a1 1 0 0 0-1-1H1a1 1 0 0 0-1 1z" fill="#0072c6"/><path d="M4 4.9h39v29H4z" fill="#e5e5e5"/><path d="M44.646 4.076C44.448 3.91 39.736 0 32.642 0c-5.685 0-8.224 3.052-9.142 4.582C22.582 3.052 20.043 0 14.358 0 7.264 0 2.552 3.91 2.354 4.076l-.354.3v29.75h43V4.375z" fill="#7a7a7a"/><path d="M14.472 1C7.593 1 3 4.84 3 4.84V32.9s6.172-1.246 11.543-1.246c4.328 0 8.657 2.246 8.657 2.246V5.788S21.357 1 14.472 1zm18.056 0C39.407 1 44 4.84 44 4.84V32.9s-6.172-1.246-11.543-1.246c-4.328 0-8.657 2.246-8.657 2.246V5.788S25.643 1 32.528 1z" fill="#e5e5e5"/><path d="M5 7.127a19.01 19.01 0 0 1 9.358-2.075c3.115.12 5.235 1.15 6.642 2.284V8.68c-1.222-1.208-3.292-2.5-6.642-2.627C10.188 5.893 6.87 7.264 5 8.288zm0 4a19.01 19.01 0 0 1 9.358-2.075c3.115.12 5.235 1.15 6.642 2.284v1.343c-1.222-1.208-3.292-2.5-6.642-2.627-4.17-.16-7.487 1.212-9.358 2.236zm0 4a19.01 19.01 0 0 1 9.358-2.075c3.115.12 5.235 1.15 6.642 2.284v1.343c-1.222-1.208-3.292-2.5-6.642-2.627-4.17-.16-7.487 1.212-9.358 2.236zm0 4a19.01 19.01 0 0 1 9.358-2.075c3.115.12 5.235 1.15 6.642 2.284v1.343c-1.222-1.208-3.292-2.5-6.642-2.627-4.17-.16-7.487 1.212-9.358 2.236zm0 4a19.01 19.01 0 0 1 9.358-2.075c3.115.12 5.235 1.15 6.642 2.284v1.343c-1.222-1.208-3.292-2.5-6.642-2.627-4.17-.16-7.487 1.212-9.358 2.236zm0 4a19.01 19.01 0 0 1 9.358-2.075c3.115.12 5.235 1.15 6.642 2.284v1.343c-1.222-1.208-3.292-2.5-6.642-2.627-4.17-.16-7.487 1.212-9.358 2.236zm37-20a19.01 19.01 0 0 0-9.358-2.075C29.527 5.17 27.407 6.2 26 7.336V8.68c1.222-1.208 3.292-2.5 6.642-2.627 4.17-.16 7.487 1.212 9.358 2.236zm0 4a19.01 19.01 0 0 0-9.358-2.075c-3.115.12-5.235 1.15-6.642 2.284v1.343c1.222-1.208 3.292-2.5 6.642-2.627 4.17-.16 7.487 1.212 9.358 2.236zm0 4a19.01 19.01 0 0 0-9.358-2.075c-3.115.12-5.235 1.15-6.642 2.284v1.343c1.222-1.208 3.292-2.5 6.642-2.627 4.17-.16 7.487 1.212 9.358 2.236zm0 4a19.01 19.01 0 0 0-9.358-2.075c-3.115.12-5.235 1.15-6.642 2.284v1.343c1.222-1.208 3.292-2.5 6.642-2.627 4.17-.16 7.487 1.212 9.358 2.236zM39 21.9c-1.557-.396-4.357-.925-6.358-.848-3.115.12-5.235 1.15-6.642 2.284v1.343c1.222-1.208 3.292-2.5 6.642-2.627 1.808-.066 3.615.146 5.358.63z" opacity=".4" fill="#231f20"/><path d="M12 2.17c-4.082.57-7.02 2.456-8 3.163v26.362c1.65-.292 4.77-.777 8-.962zM33 2h-.358C27.227 2 25.36 5.25 25 5.997v26.35c1.687-.698 4.605-1.7 7.57-1.7l.43.008z" opacity=".2" fill="#fff"/></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/healthErrorBadge.svg b/src/main/webapp/img/lib/mscae/healthErrorBadge.svg index cda98e2dd96c0f042c2f17e9a0c9bf89e949cedc..5cc03898effe4630b6d183a1bfd6aeeacf9feb40 100644 --- a/src/main/webapp/img/lib/mscae/healthErrorBadge.svg +++ b/src/main/webapp/img/lib/mscae/healthErrorBadge.svg @@ -1,82 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="16.4" - width="21" - viewBox="0 0 21 16.4" - enable-background="new 0 0 21 21" - xml:space="preserve" - sodipodi:docname="healthErrorBadge.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata3728"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs3726" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview3724" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="40.47619" - inkscape:cx="10.5" - inkscape:cy="8.6" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<circle - cx="14" - cy="7" - r="6.5" - id="circle3711" - style="clip-rule:evenodd;fill:#ffffff;fill-rule:evenodd" /> -<path - d="M 14,14 C 10.1,14 7,10.9 7,7 7,3.1 10.1,0 14,0 c 3.9,0 7,3.1 7,7 0,3.9 -3.1,7 -7,7 z M 14,1 c -3.3,0 -6,2.7 -6,6 0,3.3 2.7,6 6,6 3.3,0 6,-2.7 6,-6 0,-3.3 -2.7,-6 -6,-6 z" - id="path3713" - inkscape:connector-curvature="0" - style="fill:#ec008c" /> -<path - d="M 6,15.9 C 3,15.9 0.5,13.4 0.5,10.4 0.5,7.4 3,4.9 6,4.9 c 3,0 5.5,2.5 5.5,5.5 0,3 -2.4,5.5 -5.5,5.5 z" - id="path3715" - inkscape:connector-curvature="0" - style="fill:#ec008c" /> -<path - d="m 6,5.4 c 2.8,0 5,2.2 5,5 0,2.8 -2.2,5 -5,5 -2.8,0 -5,-2.2 -5,-5 0,-2.8 2.3,-5 5,-5 m 0,-1 c -3.3,0 -6,2.7 -6,6 0,3.3 2.7,6 6,6 3.3,0 6,-2.7 6,-6 0,-3.3 -2.7,-6 -6,-6 z" - id="path3717" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -<circle - cx="6" - cy="13" - r="0.89999998" - id="circle3719" - style="fill:#ffffff" /> -<polygon - points="5.2,10 5.4,14.3 5.9,14.3 6.2,14.3 6.6,14.3 6.9,10 6.2,10 5.9,10 " - id="polygon3721" - style="fill:#ffffff" - transform="translate(0,-2.7)" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" height="16.4" width="21"><circle cx="14" cy="7" r="6.5" fill="#fff" fill-rule="evenodd"/><g fill="#ec008c"><path d="M14 14c-3.9 0-7-3.1-7-7s3.1-7 7-7 7 3.1 7 7-3.1 7-7 7zm0-13a6.02 6.02 0 0 0-6 6 6.02 6.02 0 0 0 6 6 6.02 6.02 0 0 0 6-6 6.02 6.02 0 0 0-6-6z"/><path d="M6 15.9c-3 0-5.5-2.5-5.5-5.5S3 4.9 6 4.9s5.5 2.5 5.5 5.5-2.4 5.5-5.5 5.5z"/></g><g fill="#fff"><path d="M6 5.4a4.95 4.95 0 0 1 5 5 4.95 4.95 0 0 1-5 5 4.95 4.95 0 0 1-5-5c0-2.8 2.3-5 5-5m0-1a6.02 6.02 0 0 0-6 6 6.02 6.02 0 0 0 6 6 6.02 6.02 0 0 0 6-6 6.02 6.02 0 0 0-6-6z"/><circle cx="6" cy="13" r=".9"/><path d="M5.2 7.3l.2 4.3h1.2l.3-4.3h-1z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/healthWarningBadge.svg b/src/main/webapp/img/lib/mscae/healthWarningBadge.svg index 8cfbc7e80791dde5ac99cde7a784896aa7945f44..24ac34cddefd9d04a9f5d64e6c44d302b5fb8b02 100644 --- a/src/main/webapp/img/lib/mscae/healthWarningBadge.svg +++ b/src/main/webapp/img/lib/mscae/healthWarningBadge.svg @@ -1,82 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="15.4" - width="20.955051" - viewBox="0 0 20.955051 15.4" - enable-background="new 0 0 21 21" - xml:space="preserve" - sodipodi:docname="healthWarningBadge.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata3816"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs3814" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview3812" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="20.238095" - inkscape:cx="8.9285117" - inkscape:cy="2.036975" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<circle - cx="14.055052" - cy="7.0999999" - r="6.5" - id="circle3799" - style="clip-rule:evenodd;fill:#ffffff;fill-rule:evenodd" /> -<path - d="m 14.055052,14 c -3.8,0 -6.9000002,-3.1 -6.9000002,-7 0,-3.9 3.1000002,-7 6.9000002,-7 3.8,0 6.9,3.1 6.9,7 0,3.9 -3.1,7 -6.9,7 z m 0,-12.9 c -3.3,0 -6.0000002,2.7 -6.0000002,6 0,3.3 2.7000002,6 6.0000002,6 3.3,0 6,-2.7 6,-6 -0.1,-3.3 -2.8,-6 -6,-6 z" - id="path3801" - inkscape:connector-curvature="0" - style="fill:#ff8c00" /> -<path - d="m 1.0550518,14.9 c -0.29999996,0 -0.39999996,-0.2 -0.49999996,-0.3 -0.1,-0.2 -0.1,-0.4 0,-0.6 l 2.69999996,-4.8 2.7,-4.4 c 0.1,-0.2 0.3,-0.3 0.4,-0.3 0.2,0 0.3,0.1 0.4,0.3 l 5.4000002,9.3 c 0.1,0.2 0.1,0.4 0,0.6 -0.1,0.2 -0.3,0.3 -0.5,0.3 H 1.0550518 Z" - id="path3803" - inkscape:connector-curvature="0" - style="fill:#ff8c00" /> -<path - d="m 6.4550518,5.1 2.7,4.7 2.7000002,4.6 c 0,0 0,0.1 0,0.1 v 0 c 0,0 0,0 -0.1,0 H 6.4550518 L 0.95505184,14.4 c 0,0 0,0 0,-0.1 l 2.69999996,-4.7 2.8,-4.5 c -0.1,0 0,0 0,0 m 0,-1.1 c -0.3,0 -0.7,0.2 -0.9,0.5 l -2.7,4.5 -2.69999996,4.8 c -0.4,0.7 0,1.6 0.89999996,1.6 h 5.4 5.4000002 c 0.9,0 1.3,-0.9 0.9,-1.6 l -2.8000002,-4.6 -2.7,-4.7 c -0.2,-0.3 -0.5,-0.5 -0.8,-0.5 z" - id="path3805" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> -<circle - cx="6.4550519" - cy="12.9" - r="0.89999998" - id="circle3807" - style="fill:#ffffff" /> -<polygon - points="5.7,10.1 5.9,14.2 6.4,14.2 6.6,14.2 7.1,14.2 7.3,10.1 6.6,10.1 6.4,10.1 " - id="polygon3809" - style="fill:#ffffff" - transform="translate(-0.04494816,-2.6)" /> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" height="15.4" width="20.955"><circle cx="14.055" cy="7.1" r="6.5" fill="#fff" fill-rule="evenodd"/><g fill="#ff8c00"><path d="M14.055 14c-3.8 0-6.9-3.1-6.9-7s3.1-7 6.9-7 6.9 3.1 6.9 7-3.1 7-6.9 7zm0-12.9a6.02 6.02 0 0 0-6 6 6.02 6.02 0 0 0 6 6 6.02 6.02 0 0 0 6-6c-.1-3.3-2.8-6-6-6z"/><path d="M1.055 14.9c-.3 0-.4-.2-.5-.3-.1-.2-.1-.4 0-.6l2.7-4.8 2.7-4.4c.1-.2.3-.3.4-.3.2 0 .3.1.4.3l5.4 9.3c.1.2.1.4 0 .6a.55.55 0 0 1-.5.3h-10.6z"/></g><g fill="#fff"><path d="M6.455 5.1l2.7 4.7 2.7 4.6v.1h-5.4l-5.5-.1v-.1l2.7-4.7 2.8-4.5c-.1 0 0 0 0 0m0-1.1c-.3 0-.7.2-.9.5L2.855 9l-2.7 4.8c-.4.7 0 1.6.9 1.6h10.8c.9 0 1.3-.9.9-1.6l-2.8-4.6-2.7-4.7c-.2-.3-.5-.5-.8-.5z"/><circle cx="6.455" cy="12.9" r=".9"/><path d="M5.655 7.5l.2 4.1h1.2l.2-4.1h-.9z"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/overageCosts.svg b/src/main/webapp/img/lib/mscae/overageCosts.svg index 61048a15365c5c18b92d2664920a3cad9193ce22..130c84788d08c26e521f0eeae10a2cf81f0bdf75 100644 --- a/src/main/webapp/img/lib/mscae/overageCosts.svg +++ b/src/main/webapp/img/lib/mscae/overageCosts.svg @@ -1,22 +1 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 18.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - height="50px" width="50px" viewBox="275 1149 50 50" enable-background="new 275 1149 50 50" xml:space="preserve"> -<path fill="#0F0F0F" d="M304.7,1177.4c0,1.1-0.3,2-1.1,2.7c-0.7,0.6-1.7,1.1-3.1,1.3v2.1H299v-2.1c-1.4,0-2.7-0.3-3.7-1v-2.8 - c0.3,0.3,1,0.5,1.7,0.9c0.7,0.3,1.5,0.4,2,0.4v-3.6c-1.5-0.5-2.6-1.2-3.1-1.8c-0.6-0.6-1-1.5-1-2.6s0.4-1.9,1.2-2.7 - c0.7-0.7,1.7-1.2,2.9-1.3v-1.8h1.5v1.8c1.4,0.1,2.4,0.3,3.2,0.6v2.7c-1-0.5-2-0.9-3.2-1.1v3.8c1.5,0.5,2.6,1.2,3.2,1.8 - C304.4,1175.6,304.7,1176.4,304.7,1177.4z M299.1,1172.6v-3.2c-1,0.2-1.4,0.6-1.4,1.5C297.8,1171.6,298.2,1172.1,299.1,1172.6z - M302,1177.5c0-0.6-0.4-1.2-1.4-1.6v3C301.6,1178.8,302,1178.4,302,1177.5z"/> -<g> - <path fill="#EC008C" d="M300,1187.8c-7.7,0-13.8-6.2-13.8-13.8s6.2-13.8,13.8-13.8l0,0c7.7,0,13.8,6.2,13.8,13.8H325 - c0-13.8-11.2-25-25-25l0,0c-13.8,0-25,11.2-25,25s11.2,25,25,25c6.4,0,12.2-2.4,16.6-6.4l-7.4-8.4 - C306.7,1186.4,303.5,1187.8,300,1187.8z"/> - <path opacity="0.1" fill="#FFFFFF" enable-background="new " d="M300,1187.8c-7.7,0-13.8-6.2-13.8-13.8s6.2-13.8,13.8-13.8l0,0 - c7.7,0,13.8,6.2,13.8,13.8H325c0-13.8-11.2-25-25-25l0,0c-13.8,0-25,11.2-25,25s11.2,25,25,25c6.4,0,12.2-2.4,16.6-6.4l-7.4-8.4 - C306.7,1186.4,303.5,1187.8,300,1187.8z"/> - <path fill="#FCD116" d="M325,1174h-11.2c0,4.1-1.8,7.8-4.6,10.3l7.4,8.4C321.8,1188,325,1181.4,325,1174"/> - <path opacity="0.9" fill="#F472D0" enable-background="new " d="M313.8,1174H325c0-13.8-11.2-25-25-25v11.2 - C307.7,1160.2,313.8,1166.3,313.8,1174"/> -</g> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="50" width="50" viewBox="275 1149 50 50"><path fill="#0f0f0f" d="M304.7 1177.4c0 1.1-.3 2-1.1 2.7-.7.6-1.7 1.1-3.1 1.3v2.1H299v-2.1c-1.4 0-2.7-.3-3.7-1v-2.8c.3.3 1 .5 1.7.9a5.44 5.44 0 0 0 2 .4v-3.6c-1.5-.5-2.6-1.2-3.1-1.8-.6-.6-1-1.5-1-2.6s.4-1.9 1.2-2.7c.7-.7 1.7-1.2 2.9-1.3v-1.8h1.5v1.8c1.4.1 2.4.3 3.2.6v2.7c-1-.5-2-.9-3.2-1.1v3.8c1.5.5 2.6 1.2 3.2 1.8.7.9 1 1.7 1 2.7zm-5.6-4.8v-3.2c-1 .2-1.4.6-1.4 1.5.1.7.5 1.2 1.4 1.7zm2.9 4.9c0-.6-.4-1.2-1.4-1.6v3c1-.1 1.4-.5 1.4-1.4z"/><use xlink:href="#B" fill="#ec008c"/><use xlink:href="#B" opacity=".1" fill="#fff"/><path fill="#fcd116" d="M325 1174h-11.2c0 4.1-1.8 7.8-4.6 10.3l7.4 8.4c5.2-4.7 8.4-11.3 8.4-18.7"/><path opacity=".9" fill="#f472d0" d="M313.8 1174H325c0-13.8-11.2-25-25-25v11.2c7.7 0 13.8 6.1 13.8 13.8"/><defs ><path id="B" d="M300 1187.8c-7.7 0-13.8-6.2-13.8-13.8s6.2-13.8 13.8-13.8c7.7 0 13.8 6.2 13.8 13.8H325c0-13.8-11.2-25-25-25s-25 11.2-25 25 11.2 25 25 25c6.4 0 12.2-2.4 16.6-6.4l-7.4-8.4c-2.5 2.2-5.7 3.6-9.2 3.6z"/></defs></svg> \ No newline at end of file diff --git a/src/main/webapp/img/lib/mscae/serversAndMobileDevices.svg b/src/main/webapp/img/lib/mscae/serversAndMobileDevices.svg index a42b3e1d6312b0816d8915c5446475150833bd45..c7a4570a1944b2a82d3fb3eafaa43e289c433583 100644 --- a/src/main/webapp/img/lib/mscae/serversAndMobileDevices.svg +++ b/src/main/webapp/img/lib/mscae/serversAndMobileDevices.svg @@ -1,156 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 18.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.1" - id="Layer_1" - x="0px" - y="0px" - height="48.900002" - width="44.903976" - viewBox="275 1149 44.903976 48.900002" - enable-background="new 275 1149 50 50" - xml:space="preserve" - sodipodi:docname="serversAndMobileDevices.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata - id="metadata5605"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs5603" /><sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1017" - id="namedview5601" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="17" - inkscape:cx="22.5" - inkscape:cy="24.5" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" /> -<g - id="g5575" - transform="translate(-2.5,-0.6)"> - <path - d="m 306.2,1196 c 0,1.4 -1.1,2.4 -2.4,2.4 H 280 c -1.4,0 -2.5,-1.1 -2.5,-2.4 v -44 c 0,-1.4 1.1,-2.4 2.5,-2.4 h 23.8 c 1.4,0 2.4,1.1 2.4,2.4 z" - id="path5561" - inkscape:connector-curvature="0" - style="fill:#3e3e3e" /> - <path - d="m 281.6,1175.9 c 0,-1.8 1.4,-3.1 3.1,-3.1 H 299 c 1.8,0 3.1,1.4 3.1,3.1 v 0 c 0,1.8 -1.4,3.1 -3.1,3.1 h -14.3 c -1.7,0 -3.1,-1.4 -3.1,-3.1 z" - id="path5563" - inkscape:connector-curvature="0" - style="fill:#1e1e1e" /> - <circle - cx="284.89999" - cy="1175.9" - r="2.0999999" - id="circle5565" - style="fill:#b8d432" /> - <path - d="m 281.6,1166.6 c 0,-1.8 1.4,-3.1 3.1,-3.1 H 299 c 1.8,0 3.1,1.4 3.1,3.1 v 0 c 0,1.8 -1.4,3.1 -3.1,3.1 h -14.3 c -1.7,0 -3.1,-1.4 -3.1,-3.1 z" - id="path5567" - inkscape:connector-curvature="0" - style="fill:#1e1e1e" /> - <circle - cx="284.89999" - cy="1166.6" - r="2.0999999" - id="circle5569" - style="fill:#b8d432" /> - <path - d="m 281.6,1157.3 c 0,-1.8 1.4,-3.1 3.1,-3.1 H 299 c 1.8,0 3.1,1.4 3.1,3.1 v 0 c 0,1.8 -1.4,3.1 -3.1,3.1 h -14.3 c -1.7,0.1 -3.1,-1.4 -3.1,-3.1 z" - id="path5571" - inkscape:connector-curvature="0" - style="fill:#1e1e1e" /> - <circle - cx="284.89999" - cy="1157.3" - r="2.0999999" - id="circle5573" - style="fill:#b8d432" /> -</g> -<g - id="Phone" - transform="translate(-2.5,-0.6)"> - <path - d="m 318.5,1162.4 c 1.2,0 2.1,0.9 2.1,2.1 v 30 c 0,1.2 -0.9,2.1 -2.1,2.1 H 301 c -1.2,0 -2.1,-0.9 -2.1,-2.1 v -30.1 c 0,-1.2 0.9,-2.1 2.1,-2.1 l 17.5,0.1 m 0,-1.9 H 301 c -2.3,0 -4,1.8 -4,4 v 30 c 0,2.3 1.8,4 4,4 h 17.4 c 2.3,0 4,-1.8 4,-4 v -30.1 c 0.1,-2.2 -1.7,-3.9 -3.9,-3.9 z" - id="path5577" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="m 320.5,1194.5 c 0,1.2 -0.9,2.1 -2.1,2.1 H 301 c -1.2,0 -2.1,-0.9 -2.1,-2.1 v -30.1 c 0,-1.2 0.9,-2.1 2.1,-2.1 h 17.4 c 1.2,0 2.1,0.9 2.1,2.1 z" - id="path5579" - inkscape:connector-curvature="0" - style="fill:#3e3e3e" /> - <rect - x="300.5" - y="1165.8" - width="18.5" - height="24" - id="rect5581" - style="fill:#59b4d9" /> - <path - d="m 312.7,1193.2 c 0,1.1 -0.9,2 -2,2 -1.1,0 -2,-0.9 -2,-2 0,-1.1 0.9,-2 2,-2 1.1,0 2,0.9 2,2" - id="path5583" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="m 312,1193.2 c 0,0.7 -0.6,1.3 -1.3,1.3 -0.7,0 -1.3,-0.6 -1.3,-1.3 0,-0.7 0.6,-1.3 1.3,-1.3 0.7,0 1.3,0.6 1.3,1.3" - id="path5585" - inkscape:connector-curvature="0" - style="fill:#b8d432" /> - <path - enable-background="new " - d="m 300.5,1189.9 v -24 h 15.6 l 1.4,-3.4 h -16.4 c -1.2,0 -2.1,0.9 -2.1,2.1 v 30 c 0,1.2 0.9,2.1 2.1,2.1 h 2.5 l 2.7,-6.7 z" - id="path5587" - inkscape:connector-curvature="0" - style="opacity:0.15;fill:#ffffff" /> - <path - d="m 314.3,1164.3 c 0,0.3 -0.2,0.5 -0.5,0.5 h -6 c -0.3,0 -0.5,-0.2 -0.5,-0.5 0,-0.3 0.2,-0.5 0.5,-0.5 h 6 c 0.2,0 0.5,0.2 0.5,0.5" - id="path5589" - inkscape:connector-curvature="0" - style="fill:#1e1e1e" /> - <path - d="m 314.3,1164.3 c 0,0.3 -0.2,0.5 -0.5,0.5 h -6 c -0.3,0 -0.5,-0.2 -0.5,-0.5 0,-0.3 0.2,-0.5 0.5,-0.5 h 6 c 0.2,0 0.5,0.2 0.5,0.5" - id="path5591" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - d="m 309.8,1176.9 v 0 l -6.1,-3.5 c -0.1,0 -0.1,-0.1 -0.1,-0.2 0,-0.1 0,-0.1 0.1,-0.2 l 6,-3.4 c 0.1,0 0.1,0 0.2,0 l 6,3.4 c 0.1,0 0.1,0.1 0.1,0.2 0,0.1 0,0.1 -0.1,0.2 l -6.1,3.5 c 0,0 0,0 0,0" - id="path5593" - inkscape:connector-curvature="0" - style="fill:#ffffff" /> - <path - enable-background="new " - d="m 308.9,1185.4 v 0 l -6.1,-3.5 c -0.1,0 -0.1,-0.1 -0.1,-0.2 v -7 c 0,-0.1 0,-0.1 0.1,-0.2 0.1,0 0.1,0 0.2,0 l 6,3.4 c 0.1,0 0.1,0.1 0.1,0.2 v 7 c 0,0.2 0,0.3 -0.2,0.3 0.1,0 0.1,0 0,0" - id="path5595" - inkscape:connector-curvature="0" - style="opacity:0.7;fill:#ffffff" /> - <path - enable-background="new " - d="m 310.6,1185.4 c -0.1,0 -0.1,0 0,0 -0.2,-0.1 -0.2,-0.1 -0.2,-0.2 v -6.9 c 0,-0.1 0,-0.1 0.1,-0.2 l 6,-3.4 c 0.1,0 0.1,0 0.2,0 0.1,0 0.1,0.1 0.1,0.2 v 6.9 c 0,0.1 0,0.1 -0.1,0.2 l -6.1,3.4 v 0" - id="path5597" - inkscape:connector-curvature="0" - style="opacity:0.4;fill:#ffffff" /> -</g> -</svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" height="48.9" width="44.904" viewBox="275 1149 44.904 48.9"><path d="M303.7 1195.4c0 1.4-1.1 2.4-2.4 2.4h-23.8c-1.4 0-2.5-1.1-2.5-2.4v-44c0-1.4 1.1-2.4 2.5-2.4h23.8c1.4 0 2.4 1.1 2.4 2.4z" fill="#3e3e3e"/><path d="M279.1 1175.3a3.05 3.05 0 0 1 3.1-3.1h14.3a3.05 3.05 0 1 1 0 6.2h-14.3a3.12 3.12 0 0 1-3.1-3.1z" fill="#1e1e1e"/><circle cx="282.4" cy="1175.3" r="2.1" fill="#b8d432"/><path d="M279.1 1166a3.05 3.05 0 0 1 3.1-3.1h14.3a3.05 3.05 0 1 1 0 6.2h-14.3a3.12 3.12 0 0 1-3.1-3.1z" fill="#1e1e1e"/><circle cx="282.4" cy="1166" r="2.1" fill="#b8d432"/><path d="M279.1 1156.7a3.05 3.05 0 0 1 3.1-3.1h14.3a3.05 3.05 0 1 1 0 6.2h-14.3c-1.7.1-3.1-1.4-3.1-3.1z" fill="#1e1e1e"/><circle cx="282.4" cy="1156.7" r="2.1" fill="#b8d432"/><path d="M316 1161.8c1.2 0 2.1.9 2.1 2.1v30c0 1.2-.9 2.1-2.1 2.1h-17.5c-1.2 0-2.1-.9-2.1-2.1v-30.1c0-1.2.9-2.1 2.1-2.1l17.5.1m0-1.9h-17.5c-2.3 0-4 1.8-4 4v30c0 2.3 1.8 4 4 4h17.4c2.3 0 4-1.8 4-4v-30.1c.1-2.2-1.7-3.9-3.9-3.9z" fill="#fff"/><path d="M318 1193.9c0 1.2-.9 2.1-2.1 2.1h-17.4c-1.2 0-2.1-.9-2.1-2.1v-30.1c0-1.2.9-2.1 2.1-2.1h17.4c1.2 0 2.1.9 2.1 2.1z" fill="#3e3e3e"/><path d="M298 1165.2h18.5v24H298z" fill="#59b4d9"/><path d="M310.2 1192.6c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2" fill="#fff"/><path d="M309.5 1192.6c0 .7-.6 1.3-1.3 1.3s-1.3-.6-1.3-1.3.6-1.3 1.3-1.3 1.3.6 1.3 1.3" fill="#b8d432"/><path d="M298 1189.3v-24h15.6l1.4-3.4h-16.4c-1.2 0-2.1.9-2.1 2.1v30c0 1.2.9 2.1 2.1 2.1h2.5l2.7-6.7z" opacity=".15" fill="#fff"/><path d="M311.8 1163.7a.47.47 0 0 1-.5.5h-6a.47.47 0 1 1 0-1h6c.2 0 .5.2.5.5" fill="#1e1e1e"/><g fill="#fff"><path d="M311.8 1163.7a.47.47 0 0 1-.5.5h-6a.5.5 0 1 1 0-1h6c.2 0 .5.2.5.5m-4.5 12.6l-6.1-3.5c-.1 0-.1-.1-.1-.2s0-.1.1-.2l6-3.4h.2l6 3.4c.1 0 .1.1.1.2s0 .1-.1.2l-6.1 3.5"/><path d="M306.4 1184.8l-6.1-3.5c-.1 0-.1-.1-.1-.2v-7c0-.1 0-.1.1-.2h.2l6 3.4c.1 0 .1.1.1.2v7c0 .2 0 .3-.2.3" opacity=".7"/><path d="M308.1 1184.8c-.1 0-.1 0 0 0-.2-.1-.2-.1-.2-.2v-6.9c0-.1 0-.1.1-.2l6-3.4h.2c.1 0 .1.1.1.2v6.9c0 .1 0 .1-.1.2l-6.1 3.4" opacity=".4"/></g></svg> \ No newline at end of file diff --git a/src/main/webapp/index.html b/src/main/webapp/index.html index 18849036058fee104d8661de06bf3ae12a837373..5116636fdd1cfb8c2f5b21f4ec88fdd243e5abbe 100644 --- a/src/main/webapp/index.html +++ b/src/main/webapp/index.html @@ -18,8 +18,12 @@ <meta name="theme-color" content="#d89000"> <script type="text/javascript"> var mxIsElectron = (window && window.process && window.process.type) || (navigator.userAgent.toLowerCase().indexOf(' electron/') > -1); - var mxIsElectron5 = mxIsElectron && parseInt(process.versions.electron) >= 5; + var hostName = window.location.hostname; + // Supported domains are *.draw.io that draw.io host, or the packaged version in Quip + var supportedDomain = (hostName.substring(hostName.length - 8, hostName.length) === '.draw.io') || + (hostName.substring(hostName.length - 17, hostName.length) === '.quipelements.com'); + /** * URL Parameters and protocol description are here: * @@ -347,6 +351,7 @@ var geBasePath = mxDevUrl + '/javascript/examples/grapheditor/www/js'; var mxBasePath = mxDevUrl + '/javascript/src'; + mxscript(drawDevUrl + 'js/PreConfig.js'); mxscript(drawDevUrl + 'js/diagramly/Init.js'); mxscript(geBasePath + '/Init.js'); mxscript(mxDevUrl + '/javascript/src/js/mxClient.js'); @@ -355,20 +360,33 @@ // 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'); + mxscript(drawDevUrl + 'js/PostConfig.js'); } else { + if (!supportedDomain) + { + mxscript('js/PreConfig.js'); + } + mxscript('js/app.min.js'); + + if (!supportedDomain) + { + mxscript('js/PostConfig.js'); + } } // Electron if (mxIsElectron) { + mxscript('js/PreConfig.js'); mxscript('js/diagramly/DesktopLibrary.js'); mxscript('js/diagramly/ElectronApp.js'); mxscript('js/extensions.min.js'); mxscript('js/stencils.min.js'); mxscript('js/shapes.min.js'); + mxscript('js/PostConfig.js'); } // Adds basic error handling diff --git a/src/main/webapp/js/PostConfig.js b/src/main/webapp/js/PostConfig.js new file mode 100644 index 0000000000000000000000000000000000000000..df894c282bc4568882a889498ada6a45cbcefd86 --- /dev/null +++ b/src/main/webapp/js/PostConfig.js @@ -0,0 +1,8 @@ +/** + * Copyright (c) 2006-2019, JGraph Ltd + * Copyright (c) 2006-2019, draw.io AG + */ +// null'ing of global vars need to be after init.js +window.VSD_CONVERT_URL = null; +window.EMF_CONVERT_URL = null; +window.ICONSEARCH_PATH = null; \ No newline at end of file diff --git a/src/main/webapp/js/PreConfig.js b/src/main/webapp/js/PreConfig.js new file mode 100644 index 0000000000000000000000000000000000000000..3236218feb61715207e6fc1e9c01fd0ddd9b1969 --- /dev/null +++ b/src/main/webapp/js/PreConfig.js @@ -0,0 +1,8 @@ +/** + * Copyright (c) 2006-2019, JGraph Ltd + * Copyright (c) 2006-2019, draw.io AG + */ +// Overrides of global vars need to be pre-loaded +window.EXPORT_URL = 'REPLACE_WITH_YOUR_IMAGE_SERVER'; +window.PLANT_URL = 'REPLACE_WITH_YOUR_PLANTUML_SERVER'; +window.DRAW_MATH_URL = 'math'; \ No newline at end of file diff --git a/src/main/webapp/js/app.min.js b/src/main/webapp/js/app.min.js index 11ec1b1930acebe5c1533762ffb58f1409c8180c..e17826c4820c45b4b9eefae3239e4f34149b9541 100644 --- a/src/main/webapp/js/app.min.js +++ b/src/main/webapp/js/app.min.js @@ -135,7 +135,7 @@ var Base64={_keyStr:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456 String.fromCharCode(d>>6|192):(b+=String.fromCharCode(d>>12|224),b+=String.fromCharCode(d>>6&63|128)),b+=String.fromCharCode(d&63|128))}return b},_utf8_decode:function(a){var b="",c=0,d;for(c1=c2=0;c<a.length;)d=a.charCodeAt(c),128>d?(b+=String.fromCharCode(d),c++):191<d&&224>d?(c2=a.charCodeAt(c+1),b+=String.fromCharCode((d&31)<<6|c2&63),c+=2):(c2=a.charCodeAt(c+1),c3=a.charCodeAt(c+2),b+=String.fromCharCode((d&15)<<12|(c2&63)<<6|c3&63),c+=3);return b}};window.urlParams=window.urlParams||{};window.isLocalStorage=window.isLocalStorage||!1;window.mxLoadSettings=window.mxLoadSettings||"1"!=urlParams.configure;window.isSvgBrowser=window.isSvgBrowser||0>navigator.userAgent.indexOf("MSIE")||9<=document.documentMode;window.EXPORT_URL=window.EXPORT_URL||"https://exp.draw.io/ImageExport4/export";window.PLANT_URL=window.PLANT_URL||"https://exp-plant.draw.io/plantuml4";window.DRAW_MATH_URL=window.DRAW_MATH_URL||"https://www.draw.io/math"; window.VSD_CONVERT_URL=window.VSD_CONVERT_URL||"https://convert.draw.io/VsdConverter/api/converter";window.EMF_CONVERT_URL=window.EMF_CONVERT_URL||"https://convert.draw.io/emf2png/convertEMF";window.DRAWIO_GITLAB_URL=window.DRAWIO_GITLAB_URL||"https://gitlab.com";window.DRAWIO_GITLAB_ID=window.DRAWIO_GITLAB_ID||"5cdc018a32acddf6eba37592d9374945241e644b8368af847422d74c8709bc44";window.SAVE_URL=window.SAVE_URL||"save";window.OPEN_URL=window.OPEN_URL||"open";window.PROXY_URL=window.PROXY_URL||"proxy"; window.VIEWER_URL=null;window.SHAPES_PATH=window.SHAPES_PATH||"shapes";window.GRAPH_IMAGE_PATH=window.GRAPH_IMAGE_PATH||"img";window.ICONSEARCH_PATH=window.ICONSEARCH_PATH||((0<=navigator.userAgent.indexOf("MSIE")||urlParams.dev)&&"file:"!=window.location.protocol?"iconSearch":"https://www.draw.io/iconSearch");window.TEMPLATE_PATH=window.TEMPLATE_PATH||"templates";window.NEW_DIAGRAM_CATS_PATH=window.NEW_DIAGRAM_CATS_PATH||"newDiagramCats";window.PLUGINS_BASE_PATH=window.PLUGINS_BASE_PATH||""; -window.RESOURCES_PATH=window.RESOURCES_PATH||"resources";window.RESOURCE_BASE=window.RESOURCE_BASE||RESOURCES_PATH+"/dia";window.mxLoadResources=window.mxLoadResources||!1;window.mxLanguage=window.mxLanguage||function(){var a="1"==urlParams.offline?"en":urlParams.lang;if(null==a&&"undefined"!=typeof JSON&&isLocalStorage)try{var b=localStorage.getItem(".drawio-config");null!=b&&(a=JSON.parse(b).language||null)}catch(c){isLocalStorage=!1}return a}(); +window.RESOURCES_PATH=window.RESOURCES_PATH||"resources";window.RESOURCE_BASE=window.RESOURCE_BASE||RESOURCES_PATH+"/dia";window.DRAWIO_CONFIG=window.DRAWIO_CONFIG||null;window.mxLoadResources=window.mxLoadResources||!1;window.mxLanguage=window.mxLanguage||function(){var a="1"==urlParams.offline?"en":urlParams.lang;if(null==a&&"undefined"!=typeof JSON&&isLocalStorage)try{var b=localStorage.getItem(".drawio-config");null!=b&&(a=JSON.parse(b).language||null)}catch(c){isLocalStorage=!1}return a}(); window.mxLanguageMap=window.mxLanguageMap||{i18n:"",id:"Bahasa Indonesia",ms:"Bahasa Melayu",bs:"Bosanski",bg:"Bulgarian",ca:"Català ",cs:"ÄŒeÅ¡tina",da:"Dansk",de:"Deutsch",et:"Eesti",en:"English",es:"Español",fil:"Filipino",fr:"Français",it:"Italiano",hu:"Magyar",nl:"Nederlands",no:"Norsk",pl:"Polski","pt-br":"Português (Brasil)",pt:"Português (Portugal)",ro:"Română",fi:"Suomi",sv:"Svenska",vi:"Tiếng Việt",tr:"Türkçe",el:"Ελληνικά",ru:"РуÑÑкий",sr:"СрпÑки",uk:"УкраїнÑька",he:"עברית",ar:"العربية",th:"ไทย", ko:"한êµì–´",ja:"日本語",zh:"ç®€ä½“ä¸æ–‡","zh-tw":"ç¹é«”䏿–‡"};"undefined"===typeof window.mxBasePath&&(window.mxBasePath="mxgraph");if(null==window.mxLanguages){window.mxLanguages=[];for(var lang in mxLanguageMap)"en"!=lang&&window.mxLanguages.push(lang)} window.uiTheme=window.uiTheme||function(){var a=urlParams.ui;if(null==a&&"undefined"!==typeof JSON&&isLocalStorage)try{var b=localStorage.getItem(".drawio-config");null!=b&&(a=JSON.parse(b).ui||null)}catch(c){isLocalStorage=!1}try{null==a&&414>=(window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth)&&(a="min")}catch(c){}return a}();function setCurrentXml(a,b){null!=window.parent&&null!=window.parent.openFile&&window.parent.openFile.setData(a,b)} @@ -3363,35 +3363,36 @@ Sidebar.prototype.aws2="Analytics;Application Services;Compute;Database;Develope Sidebar.prototype.aws4b="Arrows;General Resources;Illustrations;Groups Light;Groups Dark;Analytics;Application Integration;AR VR;Cost Management;Business Productivity;Compute;Customer Engagement;Database;Desktop App Streaming;Developer Tools;Game Development;Internet of Things;IoT Things;IoT Resources;Machine Learning;Management Tools;Media Services;Migration;Mobile Services;Network Content Delivery;Security Identity Compliance;Storage".split(";");Sidebar.prototype.aws4="Arrows;General Resources;Illustrations;Groups;Analytics;Application Integration;AR VR;Cost Management;Blockchain;Business Applications;EC2 Instance Types;Compute;Customer Engagement;Database;End User Computing;Developer Tools;Game Tech;Internet of Things;IoT Things;IoT Resources;Machine Learning;Management Governance;Media Services;Migration Transfer;Mobile;Network Content Delivery;Robotics;Satellite;Security Identity Compliance;Storage".split(";"); Sidebar.prototype.office="Clouds Communications Concepts Databases Devices Security Servers Services Sites Users".split(" ");Sidebar.prototype.veeam="Data Center;Misc;Software;Storage;UsersStatus;VASComponents;Backup Replication;Products;VMs and Tape;2D;3D".split(";");Sidebar.prototype.archimate3="Application;Business;Composite;Implementation and Migration;Motivation;Physical;Relationships;Strategy;Technology".split(";");Sidebar.prototype.electrical="LogicGates Resistors Capacitors Inductors SwitchesRelays Diodes Sources Transistors Misc Audio PlcLadder Abstract Optical VacuumTubes Waveforms Instruments RotMech Transmission".split(" "); Sidebar.prototype.customEntries=null;Sidebar.prototype.enabledLibraries=null;Sidebar.prototype.configuration=[{id:"general",libs:["general","misc","advanced"]},{id:"uml"},{id:"search"},{id:"er"},{id:"ios",prefix:"ios",libs:["","7icons","7ui"]},{id:"android",prefix:"android",libs:[""]},{id:"aws3d"},{id:"flowchart"},{id:"basic"},{id:"infographic"},{id:"arrows"},{id:"arrows2"},{id:"lean_mapping"},{id:"citrix"},{id:"azure"},{id:"network"},{id:"vvd"},{id:"sitemap"},{id:"dfd"},{id:"mscae",prefix:"mscae", -libs:"Companies;EnterpriseFlat;Cloud;Enterprise;General;General Symbols;Intune;OMS;OpsManager;Other;System Center;Virtual Machine;Deprecated;Cloud Color;Deprecated Color".split(";")},{id:"active_directory"},{id:"bpmn",prefix:"bpmn",libs:["","Gateways","Events"]},{id:"clipart",prefix:null,libs:"computer finance clipart networking people telco".split(" ")},{id:"ibm",prefix:"ibm",libs:Sidebar.prototype.ibm},{id:"allied_telesis",prefix:"allied_telesis",libs:Sidebar.prototype.allied_telesis},{id:"cumulus", -libs:["cumulus"]},{id:"eip",prefix:"eip",libs:Sidebar.prototype.eip},{id:"mockups",prefix:"mockup",libs:"Buttons Containers Forms Graphics Markup Misc Navigation Text".split(" ")},{id:"pid2",prefix:"pid2",libs:"Agitators;Apparatus Elements;Centrifuges;Compressors;Compressors ISO;Crushers Grinding;Driers;Engines;Feeders;Filters;Fittings;Flow Sensors;Heat Exchangers;Instruments;Misc;Mixers;Piping;Pumps;Pumps DIN;Pumps ISO;Separators;Shaping Machines;Valves;Vessels".split(";")},{id:"signs",prefix:"signs", -libs:Sidebar.prototype.signs},{id:"gcp",prefix:"gcp",libs:Sidebar.prototype.gcp},{id:"gcp2",prefix:"gcp2",libs:Sidebar.prototype.gcp2},{id:"rack",prefix:"rack",libs:Sidebar.prototype.rack},{id:"electrical",prefix:"electrical",libs:Sidebar.prototype.electrical},{id:"aws2",prefix:"aws2",libs:Sidebar.prototype.aws2},{id:"aws3",prefix:"aws3",libs:Sidebar.prototype.aws3},{id:"aws4b",prefix:"aws4b",libs:Sidebar.prototype.aws4b},{id:"aws4",prefix:"aws4",libs:Sidebar.prototype.aws4},{id:"pid",prefix:"pid", -libs:Sidebar.prototype.pids},{id:"cisco",prefix:"cisco",libs:Sidebar.prototype.cisco},{id:"cisco_safe",prefix:"cisco_safe",libs:Sidebar.prototype.cisco_safe},{id:"office",prefix:"office",libs:Sidebar.prototype.office},{id:"veeam",prefix:"veeam",libs:Sidebar.prototype.veeam},{id:"cabinets",libs:["cabinets"]},{id:"floorplan",libs:["floorplan"]},{id:"bootstrap",libs:["bootstrap"]},{id:"atlassian",libs:["atlassian"]},{id:"gmdl",prefix:"gmdl",libs:Sidebar.prototype.gmdl},{id:"archimate3",prefix:"archimate3", -libs:Sidebar.prototype.archimate3},{id:"archimate",libs:["archimate"]},{id:"webicons",libs:["webicons","weblogos"]},{id:"sysml",prefix:"sysml",libs:Sidebar.prototype.sysml}];var a=Sidebar.prototype.insertSearchHint;Sidebar.prototype.insertSearchHint=function(b,c,e,d,l,m,q,r){if(null!=r&&1==d){var f=null;if(0<=mxUtils.indexOf(r,"text"))f="Double click anywhere in the diagram to insert text.";else for(var g="line lines arrow arrows connect connection connections connector connectors curve curves link links directed directional bidirectional".split(" "), -h=0;h<g.length;h++)if(0<=mxUtils.indexOf(r,g[h])){f="Need help with connections?";break}if(null!=f&&!this.hideSearchHint){var k=document.createElement("a");k.setAttribute("href","https://youtu.be/Z0D96ZikMkc");k.setAttribute("target","_blank");k.className="geTitle";k.style.cssText="background-color:#ffd350;border-radius:6px;color:black;border:1px solid black !important;text-align:center;white-space:normal;padding:6px 0px 6px 0px !important;margin:4px 4px 8px 2px;";mxUtils.write(k,f);f=document.createElement("img"); -f.setAttribute("src",Dialog.prototype.closeImage);f.setAttribute("title",mxResources.get("hide"));f.className="geDialogClose";f.style.position="relative";f.style.cursor="default";f.style.top="1px";f.style.right="0px";mxEvent.addListener(f,"click",mxUtils.bind(this,function(a){k.parentNode.removeChild(k);this.hideSearchHint=!0;mxEvent.consume(a)}));k.appendChild(f);b.appendChild(k);this.hideSearchHint=!0}}a.apply(this,arguments)};Sidebar.prototype.togglePalettes=function(a,b){this.showPalettes(a,b)}; -Sidebar.prototype.togglePalette=function(a){this.showPalette(a)};Sidebar.prototype.showPalettes=function(a,b,c){for(var e=0;e<b.length;e++)this.showPalette(a+b[e],c)};Sidebar.prototype.showPalette=function(a,b){var c=this.palettes[a];if(null!=c)for(var e=null!=b?b?"block":"none":"none"==c[0].style.display?"block":"none",d=0;d<c.length;d++)c[d].style.display=e};Sidebar.prototype.isEntryVisible=function(a){for(var b=0;b<this.configuration.length;b++)if(this.configuration[b].id==a){var c=this.palettes[null!= -this.configuration[b].libs?(this.configuration[b].prefix||"")+this.configuration[b].libs[0]:a];if(null!=c)return"none"!=c[0].style.display;break}if(null!=this.customEntries)for(b=0;b<this.customEntries.length;b++)for(var c=this.customEntries[b],e=0;e<c.entries.length;e++){var d=c.entries[e];if(d.id==a){if(null!=d.libs&&0<d.libs.length&&(c=this.palettes[d.id+".0"],null!=c))return"none"!=c[0].style.display;break}}return!1};Sidebar.prototype.showEntries=function(a,b,c){this.libs=null!=a&&(c||0<a.length)? -a:null!=urlParams.libs&&0<urlParams.libs.length?decodeURIComponent(urlParams.libs):mxSettings.getLibraries();c=this.libs.split(";");for(var e=0;e<c.length;e++)c[e]=this.libAliases[c[e]]||c[e];for(e=0;e<this.configuration.length;e++)"search"!=this.configuration[e].id&&this.showPalettes(this.configuration[e].prefix||"",this.configuration[e].libs||[this.configuration[e].id],0<=mxUtils.indexOf(c,this.configuration[e].id));if(null!=this.customEntries)for(e=0;e<this.customEntries.length;e++)for(var d=this.customEntries[e], -f=0;f<d.entries.length;f++){var g=d.entries[f];if(null!=g.libs&&0<g.libs.length){for(var h=[],n=0;n<g.libs.length;n++)h.push(g.id+"."+n);this.showPalettes("",h,0<=mxUtils.indexOf(c,g.id))}}b&&(mxSettings.setLibraries(a),mxSettings.save())};Sidebar.prototype.init=function(){this.entries=[{title:mxResources.get("standard"),entries:[{title:mxResources.get("general"),id:"general",image:IMAGE_PATH+"/sidebar-general.png"},{title:mxResources.get("basic"),id:"basic",image:IMAGE_PATH+"/sidebar-basic.png"}, -{title:mxResources.get("arrows"),id:"arrows2",image:IMAGE_PATH+"/sidebar-arrows2.png"},{title:mxResources.get("clipart"),id:"clipart",image:IMAGE_PATH+"/sidebar-clipart.png"},{title:mxResources.get("flowchart"),id:"flowchart",image:IMAGE_PATH+"/sidebar-flowchart.png"}]},{title:mxResources.get("software"),entries:[{title:"Active Directory",id:"active_directory",image:IMAGE_PATH+"/sidebar-active_directory.png"},{title:mxResources.get("android"),id:"android",image:IMAGE_PATH+"/sidebar-android.png"}, -{title:"Atlassian",id:"atlassian",image:IMAGE_PATH+"/sidebar-atlassian.png"},{title:mxResources.get("bootstrap"),id:"bootstrap",image:IMAGE_PATH+"/sidebar-bootstrap.png"},{title:"Data Flow Diagram",id:"dfd",image:IMAGE_PATH+"/sidebar-dfd.png"},{title:mxResources.get("entityRelation"),id:"er",image:IMAGE_PATH+"/sidebar-er.png"},{title:mxResources.get("ios"),id:"ios",image:IMAGE_PATH+"/sidebar-ios.png"},{title:mxResources.get("mockups"),id:"mockups",image:IMAGE_PATH+"/sidebar-mockups.png"},{title:"Sitemap", -id:"sitemap",image:IMAGE_PATH+"/sidebar-sitemap.png"},{title:mxResources.get("uml"),id:"uml",image:IMAGE_PATH+"/sidebar-uml.png"}]},{title:mxResources.get("networking"),entries:[{title:"Allied Telesis",id:"allied_telesis",image:IMAGE_PATH+"/sidebar-allied_telesis.png"},{title:"AWS17",id:"aws3",image:IMAGE_PATH+"/sidebar-aws3.png"},{title:"AWS18",id:"aws4b",image:IMAGE_PATH+"/sidebar-aws4.png"},{title:"AWS19",id:"aws4",image:IMAGE_PATH+"/sidebar-aws4.png"},{title:mxResources.get("aws3d"),id:"aws3d", -image:IMAGE_PATH+"/sidebar-aws3d.png"},{title:mxResources.get("azure"),id:"azure",image:IMAGE_PATH+"/sidebar-azure.png"},{title:"Cloud & Enterprise",id:"mscae",image:IMAGE_PATH+"/sidebar-mscae.png"},{title:mxResources.get("cisco"),id:"cisco",image:IMAGE_PATH+"/sidebar-cisco.png"},{title:"Cisco Safe",id:"cisco_safe",image:IMAGE_PATH+"/sidebar-cisco_safe.png"},{title:"Cumulus",id:"cumulus",image:IMAGE_PATH+"/sidebar-cumulus.png"},{title:"Citrix",id:"citrix",image:IMAGE_PATH+"/sidebar-citrix.png"},{title:"Google Cloud Platform", -id:"gcp2",image:IMAGE_PATH+"/sidebar-gcp2.png"},{title:"IBM",id:"ibm",image:IMAGE_PATH+"/sidebar-ibm.png"},{title:"Network",id:"network",image:IMAGE_PATH+"/sidebar-network.png"},{title:"Office",id:"office",image:IMAGE_PATH+"/sidebar-office.png"},{title:mxResources.get("rack"),id:"rack",image:IMAGE_PATH+"/sidebar-rack.png"},{title:"Veeam",id:"veeam",image:IMAGE_PATH+"/sidebar-veeam.png"},{title:"VMware",id:"vvd",image:IMAGE_PATH+"/sidebar-vvd.png"}]},{title:mxResources.get("business"),entries:[{title:"ArchiMate 3.0", -id:"archimate3",image:IMAGE_PATH+"/sidebar-archimate3.png"},{title:mxResources.get("archiMate21"),id:"archimate",image:IMAGE_PATH+"/sidebar-archimate.png"},{title:mxResources.get("bpmn"),id:"bpmn",image:IMAGE_PATH+"/sidebar-bpmn.png"},{title:mxResources.get("leanMapping"),id:"lean_mapping",image:IMAGE_PATH+"/sidebar-leanmapping.png"},{title:mxResources.get("sysml"),id:"sysml",image:IMAGE_PATH+"/sidebar-sysml.png"}]},{title:mxResources.get("other"),entries:[{title:mxResources.get("cabinets"),id:"cabinets", -image:IMAGE_PATH+"/sidebar-cabinets.png"},{title:"Infographic",id:"infographic",image:IMAGE_PATH+"/sidebar-infographic.png"},{title:mxResources.get("eip"),id:"eip",image:IMAGE_PATH+"/sidebar-eip.png"},{title:mxResources.get("electrical"),id:"electrical",image:IMAGE_PATH+"/sidebar-electrical.png"},{title:mxResources.get("floorplans"),id:"floorplan",image:IMAGE_PATH+"/sidebar-floorplans.png"},{title:mxResources.get("gmdl"),id:"gmdl",image:IMAGE_PATH+"/sidebar-gmdl.png"},{title:mxResources.get("procEng"), -id:"pid",image:IMAGE_PATH+"/sidebar-pid.png"},{title:"Web Icons",id:"webicons",image:IMAGE_PATH+"/sidebar-webIcons.png"},{title:mxResources.get("signs"),id:"signs",image:IMAGE_PATH+"/sidebar-signs.png"}]}];this.addStencilsToIndex=!1;this.shapetags={};null!=this.tagIndex&&(this.addTagIndex(Graph.decompress(this.tagIndex)),this.tagIndex=null);this.initPalettes()};"1"==urlParams.savesidebar&&(Sidebar.prototype.addFoldingHandler=function(a,b,c){var e=!1;if(!mxClient.IS_IE||8<=document.documentMode)a.style.backgroundImage= -"none"==b.style.display?"url('"+this.collapsedImage+"')":"url('"+this.expandedImage+"')";a.style.backgroundRepeat="no-repeat";a.style.backgroundPosition="0% 50%";var d=document.createElement("button");d.style.marginLeft="4px";mxUtils.write(d,"Save");mxEvent.addListener(a,"click",mxUtils.bind(this,function(f){if("BUTTON"==mxEvent.getSource(f).nodeName){f=a.cloneNode(!0);f.style.backgroundImage="";f.style.textDecoration="none";f.style.fontWeight="bold";f.style.fontSize="14px";f.style.color="rgb(80, 80, 80)"; -f.style.width="456px";f.style.backgroundColor="#ffffff";f.style.paddingLeft="6px";var g=f.getElementsByTagName("button")[0];g.parentNode.removeChild(g);var h=b.cloneNode(!0);h.style.backgroundColor="#ffffff";h.style.borderColor="transparent";h.style.width="456px";f=(new DOMParser).parseFromString('<body style="background:#ffffff;font-family:Helvetica,Arial;">'+f.outerHTML+h.outerHTML+"</body>","text/html");this.editorUi.convertImages(f.documentElement,mxUtils.bind(this,function(a){var b='<!DOCTYPE html><html><head><link rel="stylesheet" type="text/css" href="https://www.draw.io/styles/grapheditor.css"></head>'+ -mxUtils.getXml(a)+"</html>";h.style.position="absolute";window.document.body.appendChild(h);var c=h.clientHeight+18;h.parentNode.removeChild(h);this.editorUi.confirm("Image data created",mxUtils.bind(this,function(){(new mxXmlRequest(EXPORT_URL,"w=456&h="+c+"&html="+encodeURIComponent(Graph.compress(b)))).simulate(document,"_blank")}),null,mxResources.get("save"),mxResources.get("cancel"))}))}else{if("none"==b.style.display){if(e)a.appendChild(d);else if(e=!0,null!=c){null!=d.parentNode&&d.parentNode.removeChild(d); -a.style.cursor="wait";var k=a.innerHTML;a.innerHTML=mxResources.get("loading")+"...";window.setTimeout(function(){c(b);a.style.cursor="";a.innerHTML=k;a.appendChild(d)},0)}else a.appendChild(d);a.style.backgroundImage="url('"+this.expandedImage+"')";b.style.display="block"}else a.style.backgroundImage="url('"+this.collapsedImage+"')",b.style.display="none",null!=d.parentNode&&d.parentNode.removeChild(d);mxEvent.consume(f)}}))});Sidebar.prototype.extractShapeStyle=function(a){if(null!=a&&"shape="== -a.substring(0,6)){var b=a.indexOf(";");0>b&&(b=a.length);return a.substring(6,b)}return null};var d=Sidebar.prototype.getTagsForStencil;Sidebar.prototype.getTagsForStencil=function(a,b,c){var e=d.apply(this,arguments);null!=this.shapetags&&(a=a.toLowerCase(),b=b.toLowerCase(),null!=this.shapetags[a]&&e.push(this.shapetags[a]),b=a+"."+b,null!=this.shapetags[b]&&e.push(this.shapetags[b]));return e};Sidebar.prototype.addTagIndex=function(a){a=a.split("\n");for(var b=0;b<a.length;b++)if(null!=a[b]){var c= -a[b].split("\t");if(1<c.length){var e=c[0].toLowerCase().replace(" ","_"),c=mxUtils.trim(c.slice(1,c.length).join(" ").toLowerCase());0<c.length&&(this.shapetags[e]=c)}}};Sidebar.prototype.addSearchFileData=function(a){if(null!=a){a=a.getElementsByTagName("shape");for(var b=0;b<a.length;b++){var c=a[b].getAttribute("style"),e=this.extractShapeStyle(c);if(null!=c&&null!=e){var d=e.lastIndexOf(".");if(0<d){var f=e.substring(0,d),e=e.substring(d+1,e.length),d=this.getTagsForStencil(f,e,a[b].getAttribute("tags")); -if(null!=d){var q=c.indexOf(";"),c="shape="+f+"."+e.toLowerCase()+";"+(0>q?"":c.substring(q+1));this.createVertexTemplateEntry(c,parseInt(a[b].getAttribute("w")),parseInt(a[b].getAttribute("h")),"",e.replace(/_/g," "),null,null,this.filterTags(d.join(" ")))}}}}}};Sidebar.prototype.initPalettes=function(){var a=GRAPH_IMAGE_PATH,b=STENCIL_PATH,c=this.signs,e=this.rack,d=this.pids,m=this.cisco,q=this.sysml,r=this.eip,n=this.gmdl;"1"==urlParams.createindex&&(mxLog.show(),mxLog.textarea.value="");this.addSearchPalette(!0); -if(null!=this.customEntries)for(var p=0;p<this.customEntries.length;p++)for(var u=this.customEntries[p],t=0;t<u.entries.length;t++)for(var y=u.entries[t],x=0;x<y.libs.length;x++)mxUtils.bind(this,function(a){this.addPalette(y.id+"."+x,this.editorUi.getResource(a.title),!1,mxUtils.bind(this,function(b,c){var e=mxUtils.bind(this,function(a){this.addEntries(a);this.editorUi.addLibraryEntries(a,b)}),d=mxUtils.bind(this,function(a){b.innerHTML="";var c=document.createElement("div");c.style.color="rgb(179, 179, 179)"; -c.style.textAlign="center";c.style.paddingTop="6px";mxUtils.write(c,a);b.appendChild(c)});if(a.data)e(a.data);else{b.style.display="none";c.innerHTML="";mxUtils.write(c,mxResources.get("loading")+"...");var f=a.url;this.editorUi.editor.isCorsEnabledForUrl(f)||(f=PROXY_URL+"?url="+encodeURIComponent(f));this.editorUi.loadUrl(f,mxUtils.bind(this,function(f){b.style.display="block";c.innerHTML="";mxUtils.write(c,this.editorUi.getResource(a.title));try{var g=mxUtils.parseXml(f);if("mxlibrary"==g.documentElement.nodeName){var h= -JSON.parse(mxUtils.getTextContent(g.documentElement));e(h)}else d(mxResources.get("notALibraryFile"))}catch(B){d(mxResources.get("error")+": "+B.message)}}))}}))})(y.libs[x]);this.addGeneralPalette(null==this.customEntries);this.addMiscPalette(!1);this.addAdvancedPalette(!1);this.addBasicPalette();this.addStencilPalette("arrows",mxResources.get("arrows"),b+"/arrows.xml",";html=1;"+mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;"+mxConstants.STYLE_STROKEWIDTH+ +libs:"Companies;EnterpriseFlat;IntuneFlat;OMSFlat;System CenterFlat;AI and ML Service;Analytics Service;Compute Service;Compute Service VM;Container Service;Databases Service;DevOps Service;General Service;Identity Service;Integration Service;Internet of Things Service;Intune Service;Management and Governance Service;Management and Governance Service Media;Migrate Service;Mixed Reality Service;Mobile Service;Networking Service;Other Category Service;Security Service;Storage Service;Web Service".split(";")}, +{id:"active_directory"},{id:"bpmn",prefix:"bpmn",libs:["","Gateways","Events"]},{id:"clipart",prefix:null,libs:"computer finance clipart networking people telco".split(" ")},{id:"ibm",prefix:"ibm",libs:Sidebar.prototype.ibm},{id:"allied_telesis",prefix:"allied_telesis",libs:Sidebar.prototype.allied_telesis},{id:"cumulus",libs:["cumulus"]},{id:"eip",prefix:"eip",libs:Sidebar.prototype.eip},{id:"mockups",prefix:"mockup",libs:"Buttons Containers Forms Graphics Markup Misc Navigation Text".split(" ")}, +{id:"pid2",prefix:"pid2",libs:"Agitators;Apparatus Elements;Centrifuges;Compressors;Compressors ISO;Crushers Grinding;Driers;Engines;Feeders;Filters;Fittings;Flow Sensors;Heat Exchangers;Instruments;Misc;Mixers;Piping;Pumps;Pumps DIN;Pumps ISO;Separators;Shaping Machines;Valves;Vessels".split(";")},{id:"signs",prefix:"signs",libs:Sidebar.prototype.signs},{id:"gcp",prefix:"gcp",libs:Sidebar.prototype.gcp},{id:"gcp2",prefix:"gcp2",libs:Sidebar.prototype.gcp2},{id:"rack",prefix:"rack",libs:Sidebar.prototype.rack}, +{id:"electrical",prefix:"electrical",libs:Sidebar.prototype.electrical},{id:"aws2",prefix:"aws2",libs:Sidebar.prototype.aws2},{id:"aws3",prefix:"aws3",libs:Sidebar.prototype.aws3},{id:"aws4b",prefix:"aws4b",libs:Sidebar.prototype.aws4b},{id:"aws4",prefix:"aws4",libs:Sidebar.prototype.aws4},{id:"pid",prefix:"pid",libs:Sidebar.prototype.pids},{id:"cisco",prefix:"cisco",libs:Sidebar.prototype.cisco},{id:"cisco_safe",prefix:"cisco_safe",libs:Sidebar.prototype.cisco_safe},{id:"office",prefix:"office", +libs:Sidebar.prototype.office},{id:"veeam",prefix:"veeam",libs:Sidebar.prototype.veeam},{id:"cabinets",libs:["cabinets"]},{id:"floorplan",libs:["floorplan"]},{id:"bootstrap",libs:["bootstrap"]},{id:"atlassian",libs:["atlassian"]},{id:"gmdl",prefix:"gmdl",libs:Sidebar.prototype.gmdl},{id:"archimate3",prefix:"archimate3",libs:Sidebar.prototype.archimate3},{id:"archimate",libs:["archimate"]},{id:"webicons",libs:["webicons","weblogos"]},{id:"sysml",prefix:"sysml",libs:Sidebar.prototype.sysml}];var a= +Sidebar.prototype.insertSearchHint;Sidebar.prototype.insertSearchHint=function(c,d,b,e,l,m,q,r){if(null!=r&&1==e){var f=null;if(0<=mxUtils.indexOf(r,"text"))f="Double click anywhere in the diagram to insert text.";else for(var g="line lines arrow arrows connect connection connections connector connectors curve curves link links directed directional bidirectional".split(" "),h=0;h<g.length;h++)if(0<=mxUtils.indexOf(r,g[h])){f="Need help with connections?";break}if(null!=f&&!this.hideSearchHint){var k= +document.createElement("a");k.setAttribute("href","https://youtu.be/Z0D96ZikMkc");k.setAttribute("target","_blank");k.className="geTitle";k.style.cssText="background-color:#ffd350;border-radius:6px;color:black;border:1px solid black !important;text-align:center;white-space:normal;padding:6px 0px 6px 0px !important;margin:4px 4px 8px 2px;";mxUtils.write(k,f);f=document.createElement("img");f.setAttribute("src",Dialog.prototype.closeImage);f.setAttribute("title",mxResources.get("hide"));f.className= +"geDialogClose";f.style.position="relative";f.style.cursor="default";f.style.top="1px";f.style.right="0px";mxEvent.addListener(f,"click",mxUtils.bind(this,function(a){k.parentNode.removeChild(k);this.hideSearchHint=!0;mxEvent.consume(a)}));k.appendChild(f);c.appendChild(k);this.hideSearchHint=!0}}a.apply(this,arguments)};Sidebar.prototype.togglePalettes=function(a,c){this.showPalettes(a,c)};Sidebar.prototype.togglePalette=function(a){this.showPalette(a)};Sidebar.prototype.showPalettes=function(a, +c,d){for(var b=0;b<c.length;b++)this.showPalette(a+c[b],d)};Sidebar.prototype.showPalette=function(a,c){var d=this.palettes[a];if(null!=d)for(var b=null!=c?c?"block":"none":"none"==d[0].style.display?"block":"none",e=0;e<d.length;e++)d[e].style.display=b};Sidebar.prototype.isEntryVisible=function(a){for(var c=0;c<this.configuration.length;c++)if(this.configuration[c].id==a){var d=this.palettes[null!=this.configuration[c].libs?(this.configuration[c].prefix||"")+this.configuration[c].libs[0]:a];if(null!= +d)return"none"!=d[0].style.display;break}if(null!=this.customEntries)for(c=0;c<this.customEntries.length;c++)for(var d=this.customEntries[c],b=0;b<d.entries.length;b++){var e=d.entries[b];if(e.id==a){if(null!=e.libs&&0<e.libs.length&&(d=this.palettes[e.id+".0"],null!=d))return"none"!=d[0].style.display;break}}return!1};Sidebar.prototype.showEntries=function(a,c,d){this.libs=null!=a&&(d||0<a.length)?a:null!=urlParams.libs&&0<urlParams.libs.length?decodeURIComponent(urlParams.libs):mxSettings.getLibraries(); +d=this.libs.split(";");for(var b=0;b<d.length;b++)d[b]=this.libAliases[d[b]]||d[b];for(b=0;b<this.configuration.length;b++)"search"!=this.configuration[b].id&&this.showPalettes(this.configuration[b].prefix||"",this.configuration[b].libs||[this.configuration[b].id],0<=mxUtils.indexOf(d,this.configuration[b].id));if(null!=this.customEntries)for(b=0;b<this.customEntries.length;b++)for(var e=this.customEntries[b],f=0;f<e.entries.length;f++){var g=e.entries[f];if(null!=g.libs&&0<g.libs.length){for(var h= +[],n=0;n<g.libs.length;n++)h.push(g.id+"."+n);this.showPalettes("",h,0<=mxUtils.indexOf(d,g.id))}}c&&(mxSettings.setLibraries(a),mxSettings.save())};Sidebar.prototype.init=function(){this.entries=[{title:mxResources.get("standard"),entries:[{title:mxResources.get("general"),id:"general",image:IMAGE_PATH+"/sidebar-general.png"},{title:mxResources.get("basic"),id:"basic",image:IMAGE_PATH+"/sidebar-basic.png"},{title:mxResources.get("arrows"),id:"arrows2",image:IMAGE_PATH+"/sidebar-arrows2.png"},{title:mxResources.get("clipart"), +id:"clipart",image:IMAGE_PATH+"/sidebar-clipart.png"},{title:mxResources.get("flowchart"),id:"flowchart",image:IMAGE_PATH+"/sidebar-flowchart.png"}]},{title:mxResources.get("software"),entries:[{title:"Active Directory",id:"active_directory",image:IMAGE_PATH+"/sidebar-active_directory.png"},{title:mxResources.get("android"),id:"android",image:IMAGE_PATH+"/sidebar-android.png"},{title:"Atlassian",id:"atlassian",image:IMAGE_PATH+"/sidebar-atlassian.png"},{title:mxResources.get("bootstrap"),id:"bootstrap", +image:IMAGE_PATH+"/sidebar-bootstrap.png"},{title:"Data Flow Diagram",id:"dfd",image:IMAGE_PATH+"/sidebar-dfd.png"},{title:mxResources.get("entityRelation"),id:"er",image:IMAGE_PATH+"/sidebar-er.png"},{title:mxResources.get("ios"),id:"ios",image:IMAGE_PATH+"/sidebar-ios.png"},{title:mxResources.get("mockups"),id:"mockups",image:IMAGE_PATH+"/sidebar-mockups.png"},{title:"Sitemap",id:"sitemap",image:IMAGE_PATH+"/sidebar-sitemap.png"},{title:mxResources.get("uml"),id:"uml",image:IMAGE_PATH+"/sidebar-uml.png"}]}, +{title:mxResources.get("networking"),entries:[{title:"Allied Telesis",id:"allied_telesis",image:IMAGE_PATH+"/sidebar-allied_telesis.png"},{title:"AWS17",id:"aws3",image:IMAGE_PATH+"/sidebar-aws3.png"},{title:"AWS18",id:"aws4b",image:IMAGE_PATH+"/sidebar-aws4.png"},{title:"AWS19",id:"aws4",image:IMAGE_PATH+"/sidebar-aws4.png"},{title:mxResources.get("aws3d"),id:"aws3d",image:IMAGE_PATH+"/sidebar-aws3d.png"},{title:mxResources.get("azure"),id:"azure",image:IMAGE_PATH+"/sidebar-azure.png"},{title:"Cloud & Enterprise", +id:"mscae",image:IMAGE_PATH+"/sidebar-mscae.png"},{title:mxResources.get("cisco"),id:"cisco",image:IMAGE_PATH+"/sidebar-cisco.png"},{title:"Cisco Safe",id:"cisco_safe",image:IMAGE_PATH+"/sidebar-cisco_safe.png"},{title:"Cumulus",id:"cumulus",image:IMAGE_PATH+"/sidebar-cumulus.png"},{title:"Citrix",id:"citrix",image:IMAGE_PATH+"/sidebar-citrix.png"},{title:"Google Cloud Platform",id:"gcp2",image:IMAGE_PATH+"/sidebar-gcp2.png"},{title:"IBM",id:"ibm",image:IMAGE_PATH+"/sidebar-ibm.png"},{title:"Network", +id:"network",image:IMAGE_PATH+"/sidebar-network.png"},{title:"Office",id:"office",image:IMAGE_PATH+"/sidebar-office.png"},{title:mxResources.get("rack"),id:"rack",image:IMAGE_PATH+"/sidebar-rack.png"},{title:"Veeam",id:"veeam",image:IMAGE_PATH+"/sidebar-veeam.png"},{title:"VMware",id:"vvd",image:IMAGE_PATH+"/sidebar-vvd.png"}]},{title:mxResources.get("business"),entries:[{title:"ArchiMate 3.0",id:"archimate3",image:IMAGE_PATH+"/sidebar-archimate3.png"},{title:mxResources.get("archiMate21"),id:"archimate", +image:IMAGE_PATH+"/sidebar-archimate.png"},{title:mxResources.get("bpmn"),id:"bpmn",image:IMAGE_PATH+"/sidebar-bpmn.png"},{title:mxResources.get("leanMapping"),id:"lean_mapping",image:IMAGE_PATH+"/sidebar-leanmapping.png"},{title:mxResources.get("sysml"),id:"sysml",image:IMAGE_PATH+"/sidebar-sysml.png"}]},{title:mxResources.get("other"),entries:[{title:mxResources.get("cabinets"),id:"cabinets",image:IMAGE_PATH+"/sidebar-cabinets.png"},{title:"Infographic",id:"infographic",image:IMAGE_PATH+"/sidebar-infographic.png"}, +{title:mxResources.get("eip"),id:"eip",image:IMAGE_PATH+"/sidebar-eip.png"},{title:mxResources.get("electrical"),id:"electrical",image:IMAGE_PATH+"/sidebar-electrical.png"},{title:mxResources.get("floorplans"),id:"floorplan",image:IMAGE_PATH+"/sidebar-floorplans.png"},{title:mxResources.get("gmdl"),id:"gmdl",image:IMAGE_PATH+"/sidebar-gmdl.png"},{title:mxResources.get("procEng"),id:"pid",image:IMAGE_PATH+"/sidebar-pid.png"},{title:"Web Icons",id:"webicons",image:IMAGE_PATH+"/sidebar-webIcons.png"}, +{title:mxResources.get("signs"),id:"signs",image:IMAGE_PATH+"/sidebar-signs.png"}]}];this.addStencilsToIndex=!1;this.shapetags={};null!=this.tagIndex&&(this.addTagIndex(Graph.decompress(this.tagIndex)),this.tagIndex=null);this.initPalettes()};"1"==urlParams.savesidebar&&(Sidebar.prototype.addFoldingHandler=function(a,c,d){var b=!1;if(!mxClient.IS_IE||8<=document.documentMode)a.style.backgroundImage="none"==c.style.display?"url('"+this.collapsedImage+"')":"url('"+this.expandedImage+"')";a.style.backgroundRepeat= +"no-repeat";a.style.backgroundPosition="0% 50%";var e=document.createElement("button");e.style.marginLeft="4px";mxUtils.write(e,"Save");mxEvent.addListener(a,"click",mxUtils.bind(this,function(f){if("BUTTON"==mxEvent.getSource(f).nodeName){f=a.cloneNode(!0);f.style.backgroundImage="";f.style.textDecoration="none";f.style.fontWeight="bold";f.style.fontSize="14px";f.style.color="rgb(80, 80, 80)";f.style.width="456px";f.style.backgroundColor="#ffffff";f.style.paddingLeft="6px";var g=f.getElementsByTagName("button")[0]; +g.parentNode.removeChild(g);var h=c.cloneNode(!0);h.style.backgroundColor="#ffffff";h.style.borderColor="transparent";h.style.width="456px";f=(new DOMParser).parseFromString('<body style="background:#ffffff;font-family:Helvetica,Arial;">'+f.outerHTML+h.outerHTML+"</body>","text/html");this.editorUi.convertImages(f.documentElement,mxUtils.bind(this,function(a){var c='<!DOCTYPE html><html><head><link rel="stylesheet" type="text/css" href="https://www.draw.io/styles/grapheditor.css"></head>'+mxUtils.getXml(a)+ +"</html>";h.style.position="absolute";window.document.body.appendChild(h);var d=h.clientHeight+18;h.parentNode.removeChild(h);this.editorUi.confirm("Image data created",mxUtils.bind(this,function(){(new mxXmlRequest(EXPORT_URL,"w=456&h="+d+"&html="+encodeURIComponent(Graph.compress(c)))).simulate(document,"_blank")}),null,mxResources.get("save"),mxResources.get("cancel"))}))}else{if("none"==c.style.display){if(b)a.appendChild(e);else if(b=!0,null!=d){null!=e.parentNode&&e.parentNode.removeChild(e); +a.style.cursor="wait";var k=a.innerHTML;a.innerHTML=mxResources.get("loading")+"...";window.setTimeout(function(){d(c);a.style.cursor="";a.innerHTML=k;a.appendChild(e)},0)}else a.appendChild(e);a.style.backgroundImage="url('"+this.expandedImage+"')";c.style.display="block"}else a.style.backgroundImage="url('"+this.collapsedImage+"')",c.style.display="none",null!=e.parentNode&&e.parentNode.removeChild(e);mxEvent.consume(f)}}))});Sidebar.prototype.extractShapeStyle=function(a){if(null!=a&&"shape="== +a.substring(0,6)){var c=a.indexOf(";");0>c&&(c=a.length);return a.substring(6,c)}return null};var b=Sidebar.prototype.getTagsForStencil;Sidebar.prototype.getTagsForStencil=function(a,c,d){var e=b.apply(this,arguments);null!=this.shapetags&&(a=a.toLowerCase(),c=c.toLowerCase(),null!=this.shapetags[a]&&e.push(this.shapetags[a]),c=a+"."+c,null!=this.shapetags[c]&&e.push(this.shapetags[c]));return e};Sidebar.prototype.addTagIndex=function(a){a=a.split("\n");for(var c=0;c<a.length;c++)if(null!=a[c]){var d= +a[c].split("\t");if(1<d.length){var b=d[0].toLowerCase().replace(" ","_"),d=mxUtils.trim(d.slice(1,d.length).join(" ").toLowerCase());0<d.length&&(this.shapetags[b]=d)}}};Sidebar.prototype.addSearchFileData=function(a){if(null!=a){a=a.getElementsByTagName("shape");for(var c=0;c<a.length;c++){var d=a[c].getAttribute("style"),b=this.extractShapeStyle(d);if(null!=d&&null!=b){var e=b.lastIndexOf(".");if(0<e){var f=b.substring(0,e),b=b.substring(e+1,b.length),e=this.getTagsForStencil(f,b,a[c].getAttribute("tags")); +if(null!=e){var q=d.indexOf(";"),d="shape="+f+"."+b.toLowerCase()+";"+(0>q?"":d.substring(q+1));this.createVertexTemplateEntry(d,parseInt(a[c].getAttribute("w")),parseInt(a[c].getAttribute("h")),"",b.replace(/_/g," "),null,null,this.filterTags(e.join(" ")))}}}}}};Sidebar.prototype.initPalettes=function(){var a=GRAPH_IMAGE_PATH,c=STENCIL_PATH,d=this.signs,b=this.rack,e=this.pids,m=this.cisco,q=this.sysml,r=this.eip,n=this.gmdl;"1"==urlParams.createindex&&(mxLog.show(),mxLog.textarea.value="");this.addSearchPalette(!0); +if(null!=this.customEntries)for(var p=0;p<this.customEntries.length;p++)for(var u=this.customEntries[p],t=0;t<u.entries.length;t++)for(var y=u.entries[t],x=0;x<y.libs.length;x++)mxUtils.bind(this,function(a){this.addPalette(y.id+"."+x,this.editorUi.getResource(a.title),!1,mxUtils.bind(this,function(c,d){var b=mxUtils.bind(this,function(a){this.addEntries(a);this.editorUi.addLibraryEntries(a,c)}),e=mxUtils.bind(this,function(a){c.innerHTML="";var d=document.createElement("div");d.style.color="rgb(179, 179, 179)"; +d.style.textAlign="center";d.style.paddingTop="6px";mxUtils.write(d,a);c.appendChild(d)});if(a.data)b(a.data);else{c.style.display="none";d.innerHTML="";mxUtils.write(d,mxResources.get("loading")+"...");var f=a.url;this.editorUi.editor.isCorsEnabledForUrl(f)||(f=PROXY_URL+"?url="+encodeURIComponent(f));this.editorUi.loadUrl(f,mxUtils.bind(this,function(f){c.style.display="block";d.innerHTML="";mxUtils.write(d,this.editorUi.getResource(a.title));try{var g=mxUtils.parseXml(f);if("mxlibrary"==g.documentElement.nodeName){var h= +JSON.parse(mxUtils.getTextContent(g.documentElement));b(h)}else e(mxResources.get("notALibraryFile"))}catch(B){e(mxResources.get("error")+": "+B.message)}}))}}))})(y.libs[x]);this.addGeneralPalette(null==this.customEntries);this.addMiscPalette(!1);this.addAdvancedPalette(!1);this.addBasicPalette();this.addStencilPalette("arrows",mxResources.get("arrows"),c+"/arrows.xml",";html=1;"+mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;"+mxConstants.STYLE_STROKEWIDTH+ "=2;strokeColor=#000000;");this.addArrows2Palette();this.addImagePalette("computer","Clipart / Computer",a+"/lib/clip_art/computers/","_128x128.png","Antivirus Data_Filtering Database Database_Add Database_Minus Database_Move_Stack Database_Remove Fujitsu_Tablet Harddrive IBM_Tablet iMac iPad Laptop MacBook Mainframe Monitor Monitor_Tower Monitor_Tower_Behind Netbook Network Network_2 Printer Printer_Commercial Secure_System Server Server_Rack Server_Rack_Empty Server_Rack_Partial Server_Tower Software Stylus Touch USB_Hub Virtual_Application Virtual_Machine Virus Workstation".split(" "), "Antivirus;Data Filtering;Database;Database Add;Database Minus;Database Move Stack;Database Remove;Fujitsu Tablet;Harddrive;IBMTablet;iMac;iPad;Laptop;MacBook;Mainframe;Monitor;Monitor Tower;Monitor Tower Behind;Netbook;Network;Network 2;Printer;Printer Commercial;Secure System;Server;Server Rack;Server Rack Empty;Server Rack Partial;Server Tower;Software;Stylus;Touch;USB Hub;Virtual Application;Virtual Machine;Virus;Workstation".split(";"));this.addImagePalette("finance","Clipart / Finance",a+"/lib/clip_art/finance/", "_128x128.png","Arrow_Down Arrow_Up Coins Credit_Card Dollar Graph Pie_Chart Piggy_Bank Safe Shopping_Cart Stock_Down Stock_Up".split(" "),"Arrow_Down;Arrow Up;Coins;Credit Card;Dollar;Graph;Pie Chart;Piggy Bank;Safe;Shopping Basket;Stock Down;Stock Up".split(";"));this.addImagePalette("clipart","Clipart / Various",a+"/lib/clip_art/general/","_128x128.png","Battery_0 Battery_100 Battery_50 Battery_75 Battery_allstates Bluetooth Earth_globe Empty_Folder Full_Folder Gear Keys Lock Mouse_Pointer Plug Ships_Wheel Star Tire".split(" "), @@ -3399,20 +3400,20 @@ JSON.parse(mxUtils.getTextContent(g.documentElement));e(h)}else d(mxResources.ge "Bridge;Certificate;Certificate Off;Cloud;Cloud Computer;Cloud Computer Private;Cloud Rack;Cloud Rack Private;Cloud Server;Cloud Server Private;Cloud Storage;Concentrator;Email;Firewall 1;Firewall 2;Firewall;Camera;Modem;Power Distribution Unit;Print Server;Print Server Wireless;Repeater;Router;Router Icon;Switch;UPS;Wireless Router;Wireless Router N".split(";"),{Wireless_Router:"wireless router switch wap wifi access point wlan",Wireless_Router_N:"wireless router switch wap wifi access point wlan", Router:"router switch",Router_Icon:"router switch"});this.addImagePalette("people","Clipart / People",a+"/lib/clip_art/people/","_128x128.png","Suit_Man Suit_Man_Black Suit_Man_Blue Suit_Man_Green Suit_Man_Green_Black Suit_Woman Suit_Woman_Black Suit_Woman_Blue Suit_Woman_Green Suit_Woman_Green_Black Construction_Worker_Man Construction_Worker_Man_Black Construction_Worker_Woman Construction_Worker_Woman_Black Doctor_Man Doctor_Man_Black Doctor_Woman Doctor_Woman_Black Farmer_Man Farmer_Man_Black Farmer_Woman Farmer_Woman_Black Nurse_Man Nurse_Man_Black Nurse_Woman Nurse_Woman_Black Military_Officer Military_Officer_Black Military_Officer_Woman Military_Officer_Woman_Black Pilot_Man Pilot_Man_Black Pilot_Woman Pilot_Woman_Black Scientist_Man Scientist_Man_Black Scientist_Woman Scientist_Woman_Black Security_Man Security_Man_Black Security_Woman Security_Woman_Black Tech_Man Tech_Man_Black Telesales_Man Telesales_Man_Black Telesales_Woman Telesales_Woman_Black Waiter Waiter_Black Waiter_Woman Waiter_Woman_Black Worker_Black Worker_Man Worker_Woman Worker_Woman_Black".split(" ")); this.addImagePalette("telco","Clipart / Telecommunication",a+"/lib/clip_art/telecommunication/","_128x128.png","BlackBerry Cellphone HTC_smartphone iPhone Palm_Treo Signal_tower_off Signal_tower_on".split(" "),"BlackBerry;Cellphone;HTC smartphone;iPhone;Palm Treo;Signaltower off;Signaltower on".split(";"));this.addFlowchartPalette();this.addActiveDirectoryPalette();this.addAndroidPalette();this.addAtlassianPalette();this.addBootstrapPalette();this.addDFDPalette();this.addErPalette();this.addIos7Palette(); -this.addIosPalette();this.addMockupPalette();this.addSitemapPalette();this.addUmlPalette(!1);this.addAlliedTelesisPalette();this.addAWS3Palette();this.addAWS4bPalette();this.addAWS4Palette();this.addAWS3DPalette();this.addAzurePalette();this.addMSCAEPalette();for(p=0;p<m.length;p++)this.addStencilPalette("cisco"+m[p],"Cisco / "+m[p],b+"/cisco/"+m[p].toLowerCase().replace(/ /g,"_")+".xml",";html=1;pointerEvents=1;dashed=0;fillColor=#036897;strokeColor=#ffffff;strokeWidth=2;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;", -null,null,1.6);this.addCiscoSafePalette();this.addCumulusPalette();this.addCitrixPalette();this.addGCP2Palette();this.addIBMPalette();this.addNetworkPalette();this.addOfficePalette();for(p=0;p<e.length;p++)"general"===e[p].toLowerCase()?this.addRackGeneralPalette():"f5"===e[p].toLowerCase()?this.addRackF5Palette():this.addStencilPalette("rack"+e[p],"Rack / "+e[p],b+"/rack/"+e[p].toLowerCase()+".xml",";html=1;labelPosition=right;align=left;spacingLeft=15;dashed=0;shadow=0;fillColor=#ffffff;");this.addVeeamPalette(); -this.addVVDPalette();this.addArchimate3Palette();this.addArchiMatePalette();this.addBpmnPalette(b,!1);this.addLeanMappingPalette();for(p=0;p<q.length;p++)"Model Elements"==q[p]?this.addSysMLModelElementsPalette():"Blocks"==q[p]?this.addSysMLBlocksPalette():"Ports and Flows"==q[p]?this.addSysMLPortsAndFlowsPalette():"Constraint Blocks"==q[p]?this.addSysMLConstraintBlocksPalette():"Activities"==q[p]?this.addSysMLActivitiesPalette():"Interactions"==q[p]?this.addSysMLInteractionsPalette():"State Machines"== +this.addIosPalette();this.addMockupPalette();this.addSitemapPalette();this.addUmlPalette(!1);this.addAlliedTelesisPalette();this.addAWS3Palette();this.addAWS4bPalette();this.addAWS4Palette();this.addAWS3DPalette();this.addAzurePalette();this.addMSCAEPalette();for(p=0;p<m.length;p++)this.addStencilPalette("cisco"+m[p],"Cisco / "+m[p],c+"/cisco/"+m[p].toLowerCase().replace(/ /g,"_")+".xml",";html=1;pointerEvents=1;dashed=0;fillColor=#036897;strokeColor=#ffffff;strokeWidth=2;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;", +null,null,1.6);this.addCiscoSafePalette();this.addCumulusPalette();this.addCitrixPalette();this.addGCP2Palette();this.addIBMPalette();this.addNetworkPalette();this.addOfficePalette();for(p=0;p<b.length;p++)"general"===b[p].toLowerCase()?this.addRackGeneralPalette():"f5"===b[p].toLowerCase()?this.addRackF5Palette():this.addStencilPalette("rack"+b[p],"Rack / "+b[p],c+"/rack/"+b[p].toLowerCase()+".xml",";html=1;labelPosition=right;align=left;spacingLeft=15;dashed=0;shadow=0;fillColor=#ffffff;");this.addVeeamPalette(); +this.addVVDPalette();this.addArchimate3Palette();this.addArchiMatePalette();this.addBpmnPalette(c,!1);this.addLeanMappingPalette();for(p=0;p<q.length;p++)"Model Elements"==q[p]?this.addSysMLModelElementsPalette():"Blocks"==q[p]?this.addSysMLBlocksPalette():"Ports and Flows"==q[p]?this.addSysMLPortsAndFlowsPalette():"Constraint Blocks"==q[p]?this.addSysMLConstraintBlocksPalette():"Activities"==q[p]?this.addSysMLActivitiesPalette():"Interactions"==q[p]?this.addSysMLInteractionsPalette():"State Machines"== q[p]?this.addSysMLStateMachinesPalette():"Use Cases"==q[p]?this.addSysMLUseCasesPalette():"Allocations"==q[p]?this.addSysMLAllocationsPalette():"Requirements"==q[p]?this.addSysMLRequirementsPalette():"Profiles"==q[p]?this.addSysMLProfilesPalette():"Stereotypes"==q[p]&&this.addSysMLStereotypesPalette();this.addCabinetsPalette();this.addInfographicPalette();for(p=0;p<r.length;p++)"Message Construction"==r[p]?this.addEipMessageConstructionPalette():"Message Routing"==r[p]?this.addEipMessageRoutingPalette(): "Message Transformation"==r[p]?this.addEipMessageTransformationPalette():"Messaging Channels"==r[p]?this.addEipMessagingChannelsPalette():"Messaging Endpoints"==r[p]?this.addEipMessagingEndpointsPalette():"Messaging Systems"==r[p]?this.addEipMessagingSystemsPalette():"System Management"==r[p]&&this.addEipSystemManagementPalette();this.addElectricalPalette();this.addFloorplanPalette();for(p=0;p<n.length;p++)"Bottom Navigation"==n[p]?this.addGMDLBottomNavigationPalette():"Bottom Sheets"==n[p]?this.addGMDLBottomSheetsPalette(): "Buttons"==n[p]?this.addGMDLButtonsPalette():"Cards"==n[p]?this.addGMDLCardsPalette():"Chips"==n[p]?this.addGMDLChipsPalette():"Dialogs"==n[p]?this.addGMDLDialogsPalette():"Dividers"==n[p]?this.addGMDLDividersPalette():"Grid Lists"==n[p]?this.addGMDLGridListsPalette():"Icons"==n[p]?this.addGMDLIconsPalette():"Lists"==n[p]?this.addGMDLListsPalette():"Menus"==n[p]?this.addGMDLMenusPalette():"Misc"==n[p]?this.addGMDLMiscPalette():"Pickers"==n[p]?this.addGMDLPickersPalette():"Selection Controls"==n[p]? -this.addGMDLSelectionControlsPalette():"Sliders"==n[p]?this.addGMDLSlidersPalette():"Steppers"==n[p]?this.addGMDLSteppersPalette():"Tabs"==n[p]?this.addGMDLTabsPalette():"Text Fields"==n[p]&&this.addGMDLTextFieldsPalette();for(p=0;p<d.length;p++)"Instruments"==d[p]?this.addPidInstrumentsPalette():"Misc"==d[p]?this.addPidMiscPalette():"Valves"==d[p]?this.addPidValvesPalette():"Compressors"==d[p]?this.addPidCompressorsPalette():"Engines"==d[p]?this.addPidEnginesPalette():"Filters"==d[p]?this.addPidFiltersPalette(): -"Flow Sensors"==d[p]?this.addPidFlowSensorsPalette():"Piping"==d[p]?this.addPidPipingPalette():this.addStencilPalette("pid"+d[p],"Proc. Eng. / "+d[p],b+"/pid/"+d[p].toLowerCase().replace(" ","_")+".xml",";html=1;pointerEvents=1;align=center;"+mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;dashed=0;");this.addWebIconsPalette();this.addWebLogosPalette();for(p=0;p<c.length;p++)this.addStencilPalette("signs"+c[p],"Signs / "+c[p],b+"/signs/"+c[p].toLowerCase()+ -".xml",";html=1;pointerEvents=1;fillColor=#000000;strokeColor=none;verticalLabelPosition=bottom;verticalAlign=top;align=center;");this.showEntries()};if("1"==urlParams.createindex){var e=Sidebar.prototype.addStencilPalette;Sidebar.prototype.addStencilPalette=function(a,b,c,d,l,m,q,r){e.apply(this,arguments);q=null!=q?q:1;mxStencilRegistry.loadStencilSet(c,mxUtils.bind(this,function(a,b,c,e,f){if(null==l||0>mxUtils.indexOf(l,b))c=null!=r?r[b]:null,mxLog.debug('<shape style="shape='+a+b+d+'" w="'+Math.round(e* -q)+'" h="'+Math.round(f*q)+'"'+(null!=c?' tags="'+c+'"':"")+"/>")}),!0)}}var b=Sidebar.prototype.searchEntries;Sidebar.prototype.searchEntries=function(a,c,e,d,l){var f=d;null!=this.searchFileData&&(this.addSearchFileData(mxUtils.parseXml(Graph.decompress(this.searchFileData)).documentElement),this.searchFileData=null);this.editorUi.isOffline()||0!=e||EditorUi.logEvent({category:"Shape",action:"search",label:a});null!=ICONSEARCH_PATH&&(d=mxUtils.bind(this,function(b,d,g,h){!this.editorUi.isOffline()&& -b.length<=c/4?(g=e-Math.ceil((d-c/4)/c),mxUtils.get(ICONSEARCH_PATH+"?q="+encodeURIComponent(a)+"&p="+g+"&c="+c,mxUtils.bind(this,function(a){try{if(200<=a.getStatus()&&299>=a.getStatus())if(null!=a.getText()&&0<a.getText().length)try{var g=JSON.parse(a.getText());if(null==g||null==g.icons)f(b,d,!1,h),this.editorUi.handleError(g);else{for(a=0;a<g.icons.length;a++){for(var k=g.icons[a].raster_sizes,l=k.length-1;0<l&&128<k[l].size;)l--;var m=k[l].size,q=k[l].formats[0].preview_url;null!=m&&null!=q&& -mxUtils.bind(this,function(a,c){b.push(mxUtils.bind(this,function(){return this.createVertexTemplate("shape=image;html=1;verticalAlign=top;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;imageAspect=0;aspect=fixed;image="+c,a,a,"")}))})(m,q)}f(b,(e-1)*c+b.length,g.icons.length==c,h)}}catch(z){f(b,d,!1,h),this.editorUi.handleError(z)}else f(b,d,!1,h);else f(b,d,!1,h),this.editorUi.handleError({message:mxResources.get("unknownError")})}catch(z){f(b,d,!1,h),this.editorUi.handleError(z)}},function(){f(b, -d,!1,h)}))):f(b,d,g||!this.editorUi.isOffline(),h)}));b.apply(this,arguments)};var c=Sidebar.prototype.itemClicked;Sidebar.prototype.itemClicked=function(a,b,e){var d=this.editorUi.editor.graph,f=!1;if(null!=a&&1==d.getSelectionCount()&&d.getModel().isVertex(a[0])){var g=d.cloneCell(a[0]);if(d.getModel().isEdge(d.getSelectionCell())&&null==d.getModel().getTerminal(d.getSelectionCell(),!1)&&d.getModel().isVertex(g)){d.getModel().beginUpdate();try{var h=d.view.getState(d.getSelectionCell());if(null!= -h){var r=d.view.translate,n=d.view.scale,p=h.absolutePoints[h.absolutePoints.length-1];g.geometry.x=p.x/n-r.x-g.geometry.width/2;g.geometry.y=p.y/n-r.y-g.geometry.height/2}d.addCell(g);d.getModel().setTerminal(d.getSelectionCell(),g,!1)}finally{d.getModel().endUpdate()}d.scrollCellToVisible(g);d.setSelectionCell(g);f=!0}}f||c.apply(this,arguments)}})();(function(){Sidebar.prototype.addActiveDirectoryPalette=function(){var a=[this.createVertexTemplateEntry("aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;shadow=0;dashed=0;spacingTop=3;image;image=img/lib/active_directory/active_directory.svg;",50,42.5,"","Active Directory",!1,null,this.getTagsForStencil("ms active directory ","active directory","ibm").join(" ")),this.createVertexTemplateEntry("aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;shadow=0;dashed=0;spacingTop=3;image;image=img/lib/active_directory/cd_dvd.svg;", +this.addGMDLSelectionControlsPalette():"Sliders"==n[p]?this.addGMDLSlidersPalette():"Steppers"==n[p]?this.addGMDLSteppersPalette():"Tabs"==n[p]?this.addGMDLTabsPalette():"Text Fields"==n[p]&&this.addGMDLTextFieldsPalette();for(p=0;p<e.length;p++)"Instruments"==e[p]?this.addPidInstrumentsPalette():"Misc"==e[p]?this.addPidMiscPalette():"Valves"==e[p]?this.addPidValvesPalette():"Compressors"==e[p]?this.addPidCompressorsPalette():"Engines"==e[p]?this.addPidEnginesPalette():"Filters"==e[p]?this.addPidFiltersPalette(): +"Flow Sensors"==e[p]?this.addPidFlowSensorsPalette():"Piping"==e[p]?this.addPidPipingPalette():this.addStencilPalette("pid"+e[p],"Proc. Eng. / "+e[p],c+"/pid/"+e[p].toLowerCase().replace(" ","_")+".xml",";html=1;pointerEvents=1;align=center;"+mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;dashed=0;");this.addWebIconsPalette();this.addWebLogosPalette();for(p=0;p<d.length;p++)this.addStencilPalette("signs"+d[p],"Signs / "+d[p],c+"/signs/"+d[p].toLowerCase()+ +".xml",";html=1;pointerEvents=1;fillColor=#000000;strokeColor=none;verticalLabelPosition=bottom;verticalAlign=top;align=center;");this.showEntries()};if("1"==urlParams.createindex){var e=Sidebar.prototype.addStencilPalette;Sidebar.prototype.addStencilPalette=function(a,c,d,b,l,m,q,r){e.apply(this,arguments);q=null!=q?q:1;mxStencilRegistry.loadStencilSet(d,mxUtils.bind(this,function(a,c,d,e,f){if(null==l||0>mxUtils.indexOf(l,c))d=null!=r?r[c]:null,mxLog.debug('<shape style="shape='+a+c+b+'" w="'+Math.round(e* +q)+'" h="'+Math.round(f*q)+'"'+(null!=d?' tags="'+d+'"':"")+"/>")}),!0)}}var c=Sidebar.prototype.searchEntries;Sidebar.prototype.searchEntries=function(a,d,b,e,l){var f=e;null!=this.searchFileData&&(this.addSearchFileData(mxUtils.parseXml(Graph.decompress(this.searchFileData)).documentElement),this.searchFileData=null);this.editorUi.isOffline()||0!=b||EditorUi.logEvent({category:"Shape",action:"search",label:a});null!=ICONSEARCH_PATH&&(e=mxUtils.bind(this,function(c,e,g,h){!this.editorUi.isOffline()&& +c.length<=d/4?(g=b-Math.ceil((e-d/4)/d),mxUtils.get(ICONSEARCH_PATH+"?q="+encodeURIComponent(a)+"&p="+g+"&c="+d,mxUtils.bind(this,function(a){try{if(200<=a.getStatus()&&299>=a.getStatus())if(null!=a.getText()&&0<a.getText().length)try{var g=JSON.parse(a.getText());if(null==g||null==g.icons)f(c,e,!1,h),this.editorUi.handleError(g);else{for(a=0;a<g.icons.length;a++){for(var k=g.icons[a].raster_sizes,l=k.length-1;0<l&&128<k[l].size;)l--;var m=k[l].size,q=k[l].formats[0].preview_url;null!=m&&null!=q&& +mxUtils.bind(this,function(a,d){c.push(mxUtils.bind(this,function(){return this.createVertexTemplate("shape=image;html=1;verticalAlign=top;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;imageAspect=0;aspect=fixed;image="+d,a,a,"")}))})(m,q)}f(c,(b-1)*d+c.length,g.icons.length==d,h)}}catch(z){f(c,e,!1,h),this.editorUi.handleError(z)}else f(c,e,!1,h);else f(c,e,!1,h),this.editorUi.handleError({message:mxResources.get("unknownError")})}catch(z){f(c,e,!1,h),this.editorUi.handleError(z)}},function(){f(c, +e,!1,h)}))):f(c,e,g||!this.editorUi.isOffline(),h)}));c.apply(this,arguments)};var d=Sidebar.prototype.itemClicked;Sidebar.prototype.itemClicked=function(a,c,b){var e=this.editorUi.editor.graph,f=!1;if(null!=a&&1==e.getSelectionCount()&&e.getModel().isVertex(a[0])){var g=e.cloneCell(a[0]);if(e.getModel().isEdge(e.getSelectionCell())&&null==e.getModel().getTerminal(e.getSelectionCell(),!1)&&e.getModel().isVertex(g)){e.getModel().beginUpdate();try{var h=e.view.getState(e.getSelectionCell());if(null!= +h){var r=e.view.translate,n=e.view.scale,p=h.absolutePoints[h.absolutePoints.length-1];g.geometry.x=p.x/n-r.x-g.geometry.width/2;g.geometry.y=p.y/n-r.y-g.geometry.height/2}e.addCell(g);e.getModel().setTerminal(e.getSelectionCell(),g,!1)}finally{e.getModel().endUpdate()}e.scrollCellToVisible(g);e.setSelectionCell(g);f=!0}}f||d.apply(this,arguments)}})();(function(){Sidebar.prototype.addActiveDirectoryPalette=function(){var a=[this.createVertexTemplateEntry("aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;shadow=0;dashed=0;spacingTop=3;image;image=img/lib/active_directory/active_directory.svg;",50,42.5,"","Active Directory",!1,null,this.getTagsForStencil("ms active directory ","active directory","ibm").join(" ")),this.createVertexTemplateEntry("aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;shadow=0;dashed=0;spacingTop=3;image;image=img/lib/active_directory/cd_dvd.svg;", 50,50,"","CD / DVD",!1,null,this.getTagsForStencil("ms active directory ","cd dvd compact digital video disc","ibm").join(" ")),this.createVertexTemplateEntry("aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;shadow=0;dashed=0;spacingTop=3;image;image=img/lib/active_directory/cell_phone.svg;",21,50,"","Cell Phone",!1,null,this.getTagsForStencil("ms active directory ","cell phone","ibm").join(" ")),this.createVertexTemplateEntry("aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;shadow=0;dashed=0;spacingTop=3;image;image=img/lib/active_directory/cluster_server.svg;", 50,50,"","Cluster Server",!1,null,this.getTagsForStencil("ms active directory ","active","ibm").join(" ")),this.createVertexTemplateEntry("aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;shadow=0;dashed=0;spacingTop=3;image;image=img/lib/active_directory/community_discussion.svg;",50,45,"","Community Discussion",!1,null,this.getTagsForStencil("ms active directory ","community discussion","ibm").join(" ")),this.createVertexTemplateEntry("aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;shadow=0;dashed=0;spacingTop=3;image;image=img/lib/active_directory/data_jack.svg;", 50*.55,50,"","Data Jack",!1,null,this.getTagsForStencil("ms active directory ","data jack","ibm").join(" ")),this.createVertexTemplateEntry("aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;shadow=0;dashed=0;spacingTop=3;image;image=img/lib/active_directory/database.svg;",50,37,"","Database",!1,null,this.getTagsForStencil("ms active directory ","database","ibm").join(" ")),this.createVertexTemplateEntry("aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;shadow=0;dashed=0;spacingTop=3;image;image=img/lib/active_directory/database_cube.svg;", @@ -3446,41 +3447,41 @@ h){var r=d.view.translate,n=d.view.scale,p=h.absolutePoints[h.absolutePoints.len 40,50,"","Windows Router",!1,null,this.getTagsForStencil("ms active directory ","windows router","ibm").join(" ")),this.createVertexTemplateEntry("aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;shadow=0;dashed=0;spacingTop=3;image;image=img/lib/active_directory/windows_server.svg;",41,50,"","Windows Server",!1,null,this.getTagsForStencil("ms active directory ","windows server","ibm").join(" ")),this.createVertexTemplateEntry("aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;shadow=0;dashed=0;spacingTop=3;image;image=img/lib/active_directory/windows_server_2.svg;", 40,50,"","Windows Server",!1,null,this.getTagsForStencil("ms active directory ","windows server","ibm").join(" ")),this.createVertexTemplateEntry("aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;shadow=0;dashed=0;spacingTop=3;image;image=img/lib/active_directory/wiring_hub.svg;",50,34,"","Wiring Hub",!1,null,this.getTagsForStencil("ms active directory ","wiring hub","ibm").join(" ")),this.createVertexTemplateEntry("aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;shadow=0;dashed=0;spacingTop=3;image;image=img/lib/active_directory/workspace_site.svg;", 50,48.5,"","Workspace Site",!1,null,this.getTagsForStencil("ms active directory ","workspace site","ibm").join(" ")),this.createVertexTemplateEntry("aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;shadow=0;dashed=0;spacingTop=3;image;image=img/lib/active_directory/workstation_client.svg;",42.5,50,"","Workstation Client",!1,null,this.getTagsForStencil("ms active directory ","workstation client","ibm").join(" ")),this.createVertexTemplateEntry("aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;shadow=0;dashed=0;spacingTop=3;image;image=img/lib/active_directory/writer.svg;", -48,50,"","Writer",!1,null,this.getTagsForStencil("ms active directory ","writer","ibm").join(" ")),this.createVertexTemplateEntry("aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;shadow=0;dashed=0;spacingTop=3;image;image=img/lib/active_directory/writing.svg;",49,50,"","Writing",!1,null,this.getTagsForStencil("ms active directory ","writing","ibm").join(" "))];this.addPalette("active_directory","Active Directory",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))}})();(function(){var a=Sidebar.prototype.createAdvancedShapes;Sidebar.prototype.createAdvancedShapes=function(){var d=a.apply(this,arguments),e=this,b=new mxCell("Vertical Flow Layout",new mxGeometry(0,0,270,280),"swimlane;html=1;startSize=20;horizontal=1;childLayout=flowLayout;flowOrientation=north;resizable=0;interRankCellSpacing=50;containerType=tree;");b.vertex=!0;var c=new mxCell("Start",new mxGeometry(20,20,100,40),"whiteSpace=wrap;html=1;");c.vertex=!0;b.insert(c);var f=new mxCell("Task",new mxGeometry(20, -20,100,40),"whiteSpace=wrap;html=1;");f.vertex=!0;b.insert(f);var g=new mxCell("",new mxGeometry(0,0,0,0),"html=1;curved=1;");g.geometry.relative=!0;g.edge=!0;c.insertEdge(g,!0);f.insertEdge(g,!1);b.insert(g);var h=new mxCell("Task",new mxGeometry(20,20,100,40),"whiteSpace=wrap;html=1;");h.vertex=!0;b.insert(h);g=g.clone();c.insertEdge(g,!0);h.insertEdge(g,!1);b.insert(g);c=new mxCell("End",new mxGeometry(20,20,100,40),"whiteSpace=wrap;html=1;");c.vertex=!0;b.insert(c);g=g.clone();f.insertEdge(g, -!0);c.insertEdge(g,!1);b.insert(g);g=g.clone();h.insertEdge(g,!0);c.insertEdge(g,!1);b.insert(g);return d.concat([this.addDataEntry("container swimlane pool horizontal",480,380,"Horizontal Pool 1","zZRLbsIwEIZP4709TlHXhJYNSEicwCIjbNWJkWNKwumZxA6IlrRUaisWlmb+eX8LM5mXzdyrnV66Ai2TL0zm3rkQrbLJ0VoG3BRMzhgAp8fgdSQq+ijfKY9VuKcAYsG7snuMyso5G8U6tDaJ9cGUVlXkTXUoacuZIHOjjS0WqnX7blYd1OZt8KYea3PE1bCI+CAtVUMq7/o5b46uCmroSn18WFMm+XCdse5GpLq0OPqAzejxvZQun6MrMfiWUg6mCDpmZM8RENdotjqVyUFUdRS259oLSzISztto5Se0i44gcHEn3i9A/IQB3GbQpmi69DskAn4BSTaGBB4Jicj+k8nTGBP5SExg8odMyL38eH3s6kM8AQ=="), +48,50,"","Writer",!1,null,this.getTagsForStencil("ms active directory ","writer","ibm").join(" ")),this.createVertexTemplateEntry("aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;shadow=0;dashed=0;spacingTop=3;image;image=img/lib/active_directory/writing.svg;",49,50,"","Writing",!1,null,this.getTagsForStencil("ms active directory ","writing","ibm").join(" "))];this.addPalette("active_directory","Active Directory",!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))}})();(function(){var a=Sidebar.prototype.createAdvancedShapes;Sidebar.prototype.createAdvancedShapes=function(){var b=a.apply(this,arguments),e=this,c=new mxCell("Vertical Flow Layout",new mxGeometry(0,0,270,280),"swimlane;html=1;startSize=20;horizontal=1;childLayout=flowLayout;flowOrientation=north;resizable=0;interRankCellSpacing=50;containerType=tree;");c.vertex=!0;var d=new mxCell("Start",new mxGeometry(20,20,100,40),"whiteSpace=wrap;html=1;");d.vertex=!0;c.insert(d);var f=new mxCell("Task",new mxGeometry(20, +20,100,40),"whiteSpace=wrap;html=1;");f.vertex=!0;c.insert(f);var g=new mxCell("",new mxGeometry(0,0,0,0),"html=1;curved=1;");g.geometry.relative=!0;g.edge=!0;d.insertEdge(g,!0);f.insertEdge(g,!1);c.insert(g);var h=new mxCell("Task",new mxGeometry(20,20,100,40),"whiteSpace=wrap;html=1;");h.vertex=!0;c.insert(h);g=g.clone();d.insertEdge(g,!0);h.insertEdge(g,!1);c.insert(g);d=new mxCell("End",new mxGeometry(20,20,100,40),"whiteSpace=wrap;html=1;");d.vertex=!0;c.insert(d);g=g.clone();f.insertEdge(g, +!0);d.insertEdge(g,!1);c.insert(g);g=g.clone();h.insertEdge(g,!0);d.insertEdge(g,!1);c.insert(g);return b.concat([this.addDataEntry("container swimlane pool horizontal",480,380,"Horizontal Pool 1","zZRLbsIwEIZP4709TlHXhJYNSEicwCIjbNWJkWNKwumZxA6IlrRUaisWlmb+eX8LM5mXzdyrnV66Ai2TL0zm3rkQrbLJ0VoG3BRMzhgAp8fgdSQq+ijfKY9VuKcAYsG7snuMyso5G8U6tDaJ9cGUVlXkTXUoacuZIHOjjS0WqnX7blYd1OZt8KYea3PE1bCI+CAtVUMq7/o5b46uCmroSn18WFMm+XCdse5GpLq0OPqAzejxvZQun6MrMfiWUg6mCDpmZM8RENdotjqVyUFUdRS259oLSzISztto5Se0i44gcHEn3i9A/IQB3GbQpmi69DskAn4BSTaGBB4Jicj+k8nTGBP5SExg8odMyL38eH3s6kM8AQ=="), this.addDataEntry("container swimlane pool horizontal",480,360,"Horizontal Pool 2","zZTBbsIwDIafJvfU6dDOlI0LSEg8QUQtEi1tUBJGy9PPbcJQWTsxaZs4VLJ//07sT1WYKKpm6eRBrW2JhokXJgpnbYhR1RRoDAOuSyYWDIDTx+B1opr1VX6QDutwTwPEhndpjhiVjbUmij60Jon+pCsja8rmKlQ05SKjcKe0KVeytcfuLh/k7u2SzR16fcbNZZDsRlrLhlTenWedPts6SJMEOseFLTkph6Fj212RbGlwdAGbyeV7KW2+RFthcC1ZTroMKjry5wiIK9R7ldrELInSR2H/2XtlSUHCOY5WfEG76ggCz+7E+w2InzCAcQapIf0fAySzESQZ/AKSfAoJPCKS9mbzf0H0NIVIPDAiyP8QEaXX97CvDZ7LDw=="),this.addDataEntry("container swimlane pool horizontal", 360,480,"Vertical Pool 1","xZRBbsIwEEVP4709ThFrQssGJKSewCIjbNXGyDEl4fSdxKa0NJFQVTULSzP/e+T5b2EmS9esgjrqja/QMvnMZBm8j6lyTYnWMuCmYnLJADgdBi8jruhdflQBD/GRAUgD78qeMClb720S69jaLNZn46w6ULfQ0dGWS0HlThtbrVXrT91bdVS7t2u3CFibC26vi4g7aaMaUjmpNBbiKxnUQyfkjTBEbEZT9VKOtELvMIaWrpxNFXW6IWcpOddo9jqPFfMsqjoJ+8/ZGyQqMqdhZvIHs3WHBrh4kNvvIsNw5Da7OdgXAgKGCMz+gEAxRgCmINDcxZ2CyNMYETkhESj+jwi1t1+r9759ah8="),this.addDataEntry("container swimlane pool vertical",380,480,"Vertical Pool 2","xZTPbsIwDMafJvf86dDOlI0LSEg8QUQtEi1pUBJGy9PPbdJ1G1TqhXGoZH/219g/RSGitM3ay5PaugoMEW9ElN65mCLblGAM4VRXRKwI5xQ/wt8nqqyv0pP0UMc5Bp4Mn9KcISk750wSQ2xNFsNFWyNrzJYqWpxyxTA8KG2qjWzduTsrRHn4GLKlh6CvsBsGYX+krWxQpaiizcc9FjDnnaCc11dXR2lyxyjsuyPy3/Lg4CM0k8v3Ut58Dc5C9C22XHQVVeoQrwkQVaCPKtuKQZQhCcdv78gSg4zzPlpxg3bTEeSUzcR7Q2bWyvz+ytmQr8NPAow/ikAxRYA/kQAr/hPByxQC8cxLsHggAkzH56uv/XrdvgA="), this.addDataEntry("vertical tree layout",280,190,"Vertical Tree Layout","5ZXNUoMwEICfhjuQWvVaqL3oxXa8p7ADmQmECUspfXo3JNgirdMZ7UE9MGT/s182E49FxX6leZW/qBSkx5Yei7RSaFfFPgIpvdAXqcdiLwx9+rzw6YI16K1+xTWUeE1AaAN2XDZgNW+gUSTcOG00AP2eeacatI41dtI51q0oJC9JWuRY0M7jgJY1co1rcTBOVJtsSouDKpEPHkkuZOpyshipxiCc+PalWWwSaKjFgW/lICfGQZSgN10FLgOpXSO0e9hfhNGrHIkVqAJQd+TSihRzB+TBAvNzEFk+hD06Ja+tIvuIPbKlhcN7HjWboH41x/wZa5sLhHXFEyO3NBhjvle1GZ5v0wW4kfC7sXgCIfDPQJj9AIPZhEFkpoFUwf8CcTcBMekf0gzWTgS5Ve3yqFj0CjLshts6YqNVU6aQugtjM5t0X3Oi6qrRCYzGla5zBnhyelOaGiRHsRtn/w6c+cUpmVL601Ny/xunZH6bKSHx+Cz2ttGr+Q4="), this.addDataEntry("horizontal tree layout",310,160,"Horizontal Tree Layout","5ZXNUoMwEMefJncgtd4LVQ96sX2BtOxAZgJhwlJKn94NSQWkdTqjHtQDQ/a/X+THZsJ4XBwfjajyF52CYnzNeGy0RrcqjjEoxaJApownLIoCelj0cMUb9t6gEgZKvCUhcgkHoRpwypM28qRLFDZsawDo9Sw63aALrbFTPrRuZaFESdYqx4K+PQlpWaMwuJEnG0TdyTdU5IkV9rlUqa/JE6QeZ2MU27d2FQ3U8iR2fds+3wbIEsy2q8BXINlvBQzC8SqOXvIsHkEXgKajkFammLsIHjpkQQ4yy89pSy+K2gnZe+5AlxYe8GXYfAb71f7oj1jbXCJsKrG3dkujMeV70zajy9v0CX4ogm5qjiCEwQUIi29gsJgxiO00kBT+LxB3MxCz/UOawcaboHa6XQ/CqhfIMT5dYzpGN2UKqT8yrrYt+Dkp6q8bs4fJwNKBzgBH/2/O04ASKA/T6l/Bs7w6J3NOf3pO7n/nnCx/Zk7IHC7H3je5O98A"), -this.addEntry("vertical flow layout",function(){return e.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Vertical Flow Layout",!0)}),this.addEntry("horizontal flow layout",function(){var a=e.graph.cloneCell(b);a.geometry=new mxGeometry(0,0,460,150);a.style="swimlane;html=1;startSize=20;horizontal=0;childLayout=flowLayout;flowOrientation=west;resizable=0;interRankCellSpacing=50;containerType=tree;";a.value="Horizontal Flow Layout";return e.createVertexTemplateFromCells([a],a.geometry.width, +this.addEntry("vertical flow layout",function(){return e.createVertexTemplateFromCells([c],c.geometry.width,c.geometry.height,"Vertical Flow Layout",!0)}),this.addEntry("horizontal flow layout",function(){var a=e.graph.cloneCell(c);a.geometry=new mxGeometry(0,0,460,150);a.style="swimlane;html=1;startSize=20;horizontal=0;childLayout=flowLayout;flowOrientation=west;resizable=0;interRankCellSpacing=50;containerType=tree;";a.value="Horizontal Flow Layout";return e.createVertexTemplateFromCells([a],a.geometry.width, a.geometry.height,"Horizontal Flow Layout",!0)})])}})();(function(){Sidebar.prototype.addAlliedTelesisPalette=function(){this.addAlliedTelesisBuildingsPalette(60,"allied telesis",this,"points=[];aspect=fixed;html=1;align=center;shadow=0;dashed=0;image;image=img/lib/allied_telesis/");this.addAlliedTelesisComputerTerminalsPalette(60,"allied telesis",this,"points=[];aspect=fixed;html=1;align=center;shadow=0;dashed=0;image;image=img/lib/allied_telesis/");this.addAlliedTelesisMediaConvertersPalette(60,"allied telesis",this,"points=[];aspect=fixed;html=1;align=center;shadow=0;dashed=0;image;image=img/lib/allied_telesis/"); this.addAlliedTelesisSecurityPalette(60,"allied telesis",this,"points=[];aspect=fixed;html=1;align=center;shadow=0;dashed=0;image;image=img/lib/allied_telesis/");this.addAlliedTelesisStoragePalette(60,"allied telesis",this,"points=[];aspect=fixed;html=1;align=center;shadow=0;dashed=0;image;image=img/lib/allied_telesis/");this.addAlliedTelesisSwitchPalette(60,"allied telesis",this,"points=[];aspect=fixed;html=1;align=center;shadow=0;dashed=0;image;image=img/lib/allied_telesis/");this.addAlliedTelesisWirelessPalette(60, -"allied telesis",this,"points=[];aspect=fixed;html=1;align=center;shadow=0;dashed=0;image;image=img/lib/allied_telesis/")};Sidebar.prototype.addAlliedTelesisBuildingsPalette=function(a,d,e,b){b+="buildings/";var c=[this.createVertexTemplateEntry(b+"Apartments.svg;",.9*a,1.75*a,"","Apartments",!1,null,this.getTagsForStencil("buildings","apartments",d).join(" ")),this.createVertexTemplateEntry(b+"Building_Cluster.svg;",2.02*a,1.85*a,"","Building Cluster",!1,null,this.getTagsForStencil("buildings","building cluster", -d).join(" ")),this.createVertexTemplateEntry(b+"Large_Building.svg;",1.25*a,1.25*a,"","Large Building",!1,null,this.getTagsForStencil("buildings","large building",d).join(" ")),this.createVertexTemplateEntry(b+"Long_Building.svg;",2.09*a,2.16*a,"","Long Building",!1,null,this.getTagsForStencil("buildings","long building",d).join(" ")),this.createVertexTemplateEntry(b+"Medium_Business_Building.svg;",.91*a,1.17*a,"","Medium Business Building",!1,null,this.getTagsForStencil("buildings","medium business building", -d).join(" ")),this.createVertexTemplateEntry(b+"School_Building.svg;",2.75*a,2.78*a,"","School Building",!1,null,this.getTagsForStencil("buildings","school building",d).join(" ")),this.createVertexTemplateEntry(b+"Secure_Building.svg;",2.72*a,1.86*a,"","Secure Building",!1,null,this.getTagsForStencil("buildings","secure building",d).join(" "))];this.addPalette("allied_telesisBuildings","Allied Telesis / Buildings",!1,mxUtils.bind(this,function(a){for(var b=0;b<c.length;b++)a.appendChild(c[b](a))}))}; -Sidebar.prototype.addAlliedTelesisComputerTerminalsPalette=function(a,d,e,b){b+="computer_and_terminals/";var c=[this.createVertexTemplateEntry(b+"IP_TV.svg;",.82*a,.84*a,"","IP TV",!1,null,this.getTagsForStencil("computer terminals","ip tv internet protocol television",d).join(" ")),this.createVertexTemplateEntry(b+"Keypad.svg;",.44*a,.8*a,"","Keypad",!1,null,this.getTagsForStencil("computer terminals","keypad",d).join(" ")),this.createVertexTemplateEntry(b+"Laptop.svg;",.7*a,.71*a,"","Laptop",!1, -null,this.getTagsForStencil("computer terminals","laptop",d).join(" ")),this.createVertexTemplateEntry(b+"Personal_Computer.svg;",.76*a,1.03*a,"","Personal Computer",!1,null,this.getTagsForStencil("computer terminals","personal computer",d).join(" ")),this.createVertexTemplateEntry(b+"Personal_Computer_Wireless.svg;",1.05*a,1.07*a,"","Personal Computer Wireless",!1,null,this.getTagsForStencil("computer terminals","personal computer wireless",d).join(" ")),this.createVertexTemplateEntry(b+"Personal_Computer_with_Server.svg;", -1.04*a,1.04*a,"","Personal Computer with Server",!1,null,this.getTagsForStencil("computer terminals","Personal Computer Server",d).join(" ")),this.createVertexTemplateEntry(b+"POS_keypad.svg;",.62*a,.46*a,"","POS Keypad",!1,null,this.getTagsForStencil("computer terminals","pos keypad",d).join(" ")),this.createVertexTemplateEntry(b+"POS_Printer.svg;",.62*a,.54*a,"","POS Printer",!1,null,this.getTagsForStencil("computer terminals","pos printer",d).join(" ")),this.createVertexTemplateEntry(b+"Server_Desktop.svg;", -.71*a,.9*a,"","Server Desktop",!1,null,this.getTagsForStencil("computer terminals","server desktop",d).join(" ")),this.createVertexTemplateEntry(b+"Smartphone.svg;",.33*a,.72*a,"","Smartphone",!1,null,this.getTagsForStencil("computer terminals","smartphone",d).join(" ")),this.createVertexTemplateEntry(b+"Tablet.svg;",.45*a,.95*a,"","Tablet",!1,null,this.getTagsForStencil("computer terminals","tablet",d).join(" ")),this.createVertexTemplateEntry(b+"Tablet_Alternative.svg;",.58*a,.8*a,"","Tablet Alternative", -!1,null,this.getTagsForStencil("computer terminals","tablet alternative",d).join(" ")),this.createVertexTemplateEntry(b+"Vdeo_Conference_Terminal.svg;",.53*a,.75*a,"","Vdeo Conference Terminal",!1,null,this.getTagsForStencil("computer terminals","vdeo conference terminal",d).join(" ")),this.createVertexTemplateEntry(b+"VOIP_IP_phone.svg;",.5*a,.76*a,"","VOIP IP Phone",!1,null,this.getTagsForStencil("computer terminals","voip ip phone voice over internet protocol",d).join(" "))];this.addPalette("allied_telesisComputer and Terminals", -"Allied Telesis / Computer and Terminals",!1,mxUtils.bind(this,function(a){for(var b=0;b<c.length;b++)a.appendChild(c[b](a))}))};Sidebar.prototype.addAlliedTelesisMediaConvertersPalette=function(a,d,e,b){b+="media_converters/";var c=[this.createVertexTemplateEntry(b+"Industrial_Media_Converter.svg;",.5*a,.95*a,"","Industrial Media Converter",!1,null,this.getTagsForStencil("media converters","industrial media converter",d).join(" ")),this.createVertexTemplateEntry(b+"Industrial_Media_Converter_POE.svg;", -.5*a,.95*a,"","Industrial Media Converter POE",!1,null,this.getTagsForStencil("media converters","industrial media converter poe",d).join(" ")),this.createVertexTemplateEntry(b+"Media_Converter_Modular.svg;",1.18*a,.91*a,"","Media Converter Modular",!1,null,this.getTagsForStencil("media converters","media converter modular",d).join(" ")),this.createVertexTemplateEntry(b+"Media_Converter_Standalone.svg;",.76*a,.62*a,"","Media Converter Standalone",!1,null,this.getTagsForStencil("media converters", -"media converter standalone",d).join(" ")),this.createVertexTemplateEntry(b+"Media_Converter_Standalone_POE.svg;",.76*a,.62*a,"","Media Converter Standalone POE",!1,null,this.getTagsForStencil("media converters","media converter standalone poe",d).join(" "))];this.addPalette("allied_telesisMedia Converters","Allied Telesis / Media Converters",!1,mxUtils.bind(this,function(a){for(var b=0;b<c.length;b++)a.appendChild(c[b](a))}))};Sidebar.prototype.addAlliedTelesisSecurityPalette=function(a,d,e,b){b+= -"security/";var c=[this.createVertexTemplateEntry(b+"DVS_Surveillance_Monitor.svg;",.7*a,1*a,"","DVS Surveillance Monitor",!1,null,this.getTagsForStencil("security","dvs surveillance monitor",d).join(" ")),this.createVertexTemplateEntry(b+"EtherGRID.svg;",1.49*a,1.08*a,"","EtherGRID",!1,null,this.getTagsForStencil("security","ethergrid",d).join(" ")),this.createVertexTemplateEntry(b+"POE_DVS_Camera.svg;",.85*a,.67*a,"","POE DVS Camera",!1,null,this.getTagsForStencil("security","poe dvs camera",d).join(" ")), -this.createVertexTemplateEntry(b+"POS.svg;",1.13*a,1.2*a,"","POS",!1,null,this.getTagsForStencil("security","pos",d).join(" ")),this.createVertexTemplateEntry(b+"Router_UTM.svg;",.93*a,.66*a,"","Router UTM",!1,null,this.getTagsForStencil("security","router utm",d).join(" ")),this.createVertexTemplateEntry(b+"Router_VPN.svg;",.93*a,.66*a,"","Router VPN",!1,null,this.getTagsForStencil("security","router vpn",d).join(" ")),this.createVertexTemplateEntry(b+"Surveillance_Camera_Ceiling.svg;",.62*a,.59* -a,"","Surveillance Camera Ceiling",!1,null,this.getTagsForStencil("security","surveillance camera ceiling",d).join(" "))];this.addPalette("allied_telesisSecurity","Allied Telesis / Security",!1,mxUtils.bind(this,function(a){for(var b=0;b<c.length;b++)a.appendChild(c[b](a))}))};Sidebar.prototype.addAlliedTelesisStoragePalette=function(a,d,e,b){b+="storage/";var c=[this.createVertexTemplateEntry(b+"Datacenter_Server_Half_Rack_ToR.svg;",1.47*a,1.91*a,"","Datacenter Server Half Rack ToR",!1,null,this.getTagsForStencil("storage", -"datacenter server half rack tor",d).join(" ")),this.createVertexTemplateEntry(b+"Datacenter_Server_Rack.svg;",1.47*a,2.98*a,"","Datacenter Server Rack",!1,null,this.getTagsForStencil("storage","datacenter server rack",d).join(" ")),this.createVertexTemplateEntry(b+"Datacenter_Server_Rack_EoR.svg;",1.43*a,2.89*a,"","Datacenter Server Rack EoR",!1,null,this.getTagsForStencil("storage","datacenter server rack eor",d).join(" ")),this.createVertexTemplateEntry(b+"Datacenter_Server_Rack_Storage_Unit_Small.svg;", -1.29*a,1.12*a,"","Datacenter Server Rack Storage Unit Small",!1,null,this.getTagsForStencil("storage","datacenter server rack storage unit small",d).join(" ")),this.createVertexTemplateEntry(b+"Datacenter_Server_Rack_ToR.svg;",1.47*a,2.98*a,"","Datacenter Server Rack ToR",!1,null,this.getTagsForStencil("storage","datacenter server rack tor",d).join(" ")),this.createVertexTemplateEntry(b+"Datacenter_Server_Storage_Unit_Large.svg;",1.28*a,1.32*a,"","Datacenter Server Storage Unit Large",!1,null,this.getTagsForStencil("storage", -"datacenter server storage unit large",d).join(" "))];this.addPalette("allied_telesisStorage","Allied Telesis / Storage",!1,mxUtils.bind(this,function(a){for(var b=0;b<c.length;b++)a.appendChild(c[b](a))}))};Sidebar.prototype.addAlliedTelesisSwitchPalette=function(a,d,e,b){b+="switch/";var c=[this.createVertexTemplateEntry(b+"Industrial_Ethernet_IE200.svg;",.67*a,.94*a,"","Industrial Ethernet IE200",!1,null,this.getTagsForStencil("switch","industrial ethernet ie200",d).join(" ")),this.createVertexTemplateEntry(b+ -"Industrial_Ethernet_IE200_POE.svg;",.67*a,.94*a,"","Industrial Ethernet IE200 POE",!1,null,this.getTagsForStencil("switch","industrial ethernet ie200 poe",d).join(" ")),this.createVertexTemplateEntry(b+"Industrial_Ethernet_IE300.svg;",1.16*a,1.29*a,"","Industrial_Ethernet_IE300",!1,null,this.getTagsForStencil("switch","industrial ethernet ie300",d).join(" ")),this.createVertexTemplateEntry(b+"Modular_Switch_SBx8106.svg;",1.43*a,1.23*a,"","Modular Switch SBx8106",!1,null,this.getTagsForStencil("switch", -"modular switch sbx8106",d).join(" ")),this.createVertexTemplateEntry(b+"Modular_Switch_SBx8112.svg;",1.49*a,1.53*a,"","Modular Switch SBx8112",!1,null,this.getTagsForStencil("switch","modular switch sbx8112",d).join(" ")),this.createVertexTemplateEntry(b+"Modular_Switch_SXx908GEN2.svg;",1.3*a,1.11*a,"","Modular Switch SXx908GEN2",!1,null,this.getTagsForStencil("switch","modular switch sxx908gen2",d).join(" ")),this.createVertexTemplateEntry(b+"Switch_24_port_L2.svg;",1.24*a,.85*a,"","Switch 24 port L2", -!1,null,this.getTagsForStencil("switch","switch 24 port l2",d).join(" ")),this.createVertexTemplateEntry(b+"Switch_24_port_L2_POE.svg;",1.24*a,.85*a,"","Switch 24 port L2 POE",!1,null,this.getTagsForStencil("switch","switch 24 port l2 poe",d).join(" ")),this.createVertexTemplateEntry(b+"Switch_24_port_L3.svg;",1.24*a,.85*a,"","Switch 24 port L3",!1,null,this.getTagsForStencil("switch","switch 24 port l3",d).join(" ")),this.createVertexTemplateEntry(b+"Switch_24_port_L3_Alternative.svg;",1.3*a,.88* -a,"","Switch 24 port L3 Alternative",!1,null,this.getTagsForStencil("switch","switch 24 port l3 alternative",d).join(" ")),this.createVertexTemplateEntry(b+"Switch_24_port_L3_POE.svg;",1.24*a,.85*a,"","Switch 24 port L3 POE",!1,null,this.getTagsForStencil("switch","switch 24 port l3 poe",d).join(" ")),this.createVertexTemplateEntry(b+"Switch_48_port_L2.svg;",1.3*a,.88*a,"","Switch 48 port L2",!1,null,this.getTagsForStencil("switch","switch 48 port l2",d).join(" ")),this.createVertexTemplateEntry(b+ -"Switch_48_port_L2_POE.svg;",1.3*a,.88*a,"","Switch 48 port L2 POE",!1,null,this.getTagsForStencil("switch","switch 48 port l2 poe",d).join(" ")),this.createVertexTemplateEntry(b+"Switch_48_port_L3.svg;",1.3*a,.88*a,"","Switch 48 port L3",!1,null,this.getTagsForStencil("switch","switch 48 port l3",d).join(" ")),this.createVertexTemplateEntry(b+"Switch_48_port_L3_POE.svg;",1.3*a,.88*a,"","Switch 48 port L3 POE",!1,null,this.getTagsForStencil("switch","switch 48 port l3 poe",d).join(" ")),this.createVertexTemplateEntry(b+ -"Switch_52_port_L3.svg;",1.3*a,.88*a,"","Switch 52 port L3",!1,null,this.getTagsForStencil("switch","switch 52 port l3",d).join(" "))];this.addPalette("allied_telesisSwitch","Allied Telesis / Switch",!1,mxUtils.bind(this,function(a){for(var b=0;b<c.length;b++)a.appendChild(c[b](a))}))};Sidebar.prototype.addAlliedTelesisWirelessPalette=function(a,d,e,b){b+="wireless/";var c=[this.createVertexTemplateEntry(b+"Access_Point_Indoor.svg;",.61*a,.91*a,"","Access Point Indoor",!1,null,this.getTagsForStencil("wireless", -"access point indoor",d).join(" ")),this.createVertexTemplateEntry(b+"Access_Point_Outdoor.svg;",.43*a,1.66*a,"","Access Point Outdoor",!1,null,this.getTagsForStencil("wireless","access point outdoor",d).join(" ")),this.createVertexTemplateEntry(b+"Laptop_Wireless.svg;",.96*a,.79*a,"","Laptop Wireless",!1,null,this.getTagsForStencil("wireless","laptop wireless",d).join(" "))];this.addPalette("allied_telesisWireless","Allied Telesis / Wireless",!1,mxUtils.bind(this,function(a){for(var b=0;b<c.length;b++)a.appendChild(c[b](a))}))}})();(function(){Sidebar.prototype.addAndroidPalette=function(){var a=this,d=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;html=1;shadow=0;dashed=0;strokeWidth=1;shape=mxgraph.android.",e=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;html=1;shadow=0;dashed=0;strokeWidth=1;strokeColor=none;shape=",b=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;html=1;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.android.", -c=[this.createVertexTemplateEntry(d+"phone2;fillColor=#ffffff;strokeColor=#c0c0c0;",200,390,"","Phone",null,null,"android phone mobile portrait"),this.createVertexTemplateEntry(d+"phone2;fillColor=#ffffff;strokeColor=#c0c0c0;direction=south;",390,200,"","Phone (landscape)",null,null,"android phone mobile landscape"),this.createVertexTemplateEntry(d+"tab2;fillColor=#ffffff;strokeColor=#c0c0c0;",472,686,"","Tab",null,null,"android tab tablet portrait"),this.createVertexTemplateEntry(d+"tab2;fillColor=#ffffff;strokeColor=#c0c0c0;direction=north;", +"allied telesis",this,"points=[];aspect=fixed;html=1;align=center;shadow=0;dashed=0;image;image=img/lib/allied_telesis/")};Sidebar.prototype.addAlliedTelesisBuildingsPalette=function(a,b,e,c){c+="buildings/";var d=[this.createVertexTemplateEntry(c+"Apartments.svg;",.9*a,1.75*a,"","Apartments",!1,null,this.getTagsForStencil("buildings","apartments",b).join(" ")),this.createVertexTemplateEntry(c+"Building_Cluster.svg;",2.02*a,1.85*a,"","Building Cluster",!1,null,this.getTagsForStencil("buildings","building cluster", +b).join(" ")),this.createVertexTemplateEntry(c+"Large_Building.svg;",1.25*a,1.25*a,"","Large Building",!1,null,this.getTagsForStencil("buildings","large building",b).join(" ")),this.createVertexTemplateEntry(c+"Long_Building.svg;",2.09*a,2.16*a,"","Long Building",!1,null,this.getTagsForStencil("buildings","long building",b).join(" ")),this.createVertexTemplateEntry(c+"Medium_Business_Building.svg;",.91*a,1.17*a,"","Medium Business Building",!1,null,this.getTagsForStencil("buildings","medium business building", +b).join(" ")),this.createVertexTemplateEntry(c+"School_Building.svg;",2.75*a,2.78*a,"","School Building",!1,null,this.getTagsForStencil("buildings","school building",b).join(" ")),this.createVertexTemplateEntry(c+"Secure_Building.svg;",2.72*a,1.86*a,"","Secure Building",!1,null,this.getTagsForStencil("buildings","secure building",b).join(" "))];this.addPalette("allied_telesisBuildings","Allied Telesis / Buildings",!1,mxUtils.bind(this,function(a){for(var c=0;c<d.length;c++)a.appendChild(d[c](a))}))}; +Sidebar.prototype.addAlliedTelesisComputerTerminalsPalette=function(a,b,e,c){c+="computer_and_terminals/";var d=[this.createVertexTemplateEntry(c+"IP_TV.svg;",.82*a,.84*a,"","IP TV",!1,null,this.getTagsForStencil("computer terminals","ip tv internet protocol television",b).join(" ")),this.createVertexTemplateEntry(c+"Keypad.svg;",.44*a,.8*a,"","Keypad",!1,null,this.getTagsForStencil("computer terminals","keypad",b).join(" ")),this.createVertexTemplateEntry(c+"Laptop.svg;",.7*a,.71*a,"","Laptop",!1, +null,this.getTagsForStencil("computer terminals","laptop",b).join(" ")),this.createVertexTemplateEntry(c+"Personal_Computer.svg;",.76*a,1.03*a,"","Personal Computer",!1,null,this.getTagsForStencil("computer terminals","personal computer",b).join(" ")),this.createVertexTemplateEntry(c+"Personal_Computer_Wireless.svg;",1.05*a,1.07*a,"","Personal Computer Wireless",!1,null,this.getTagsForStencil("computer terminals","personal computer wireless",b).join(" ")),this.createVertexTemplateEntry(c+"Personal_Computer_with_Server.svg;", +1.04*a,1.04*a,"","Personal Computer with Server",!1,null,this.getTagsForStencil("computer terminals","Personal Computer Server",b).join(" ")),this.createVertexTemplateEntry(c+"POS_keypad.svg;",.62*a,.46*a,"","POS Keypad",!1,null,this.getTagsForStencil("computer terminals","pos keypad",b).join(" ")),this.createVertexTemplateEntry(c+"POS_Printer.svg;",.62*a,.54*a,"","POS Printer",!1,null,this.getTagsForStencil("computer terminals","pos printer",b).join(" ")),this.createVertexTemplateEntry(c+"Server_Desktop.svg;", +.71*a,.9*a,"","Server Desktop",!1,null,this.getTagsForStencil("computer terminals","server desktop",b).join(" ")),this.createVertexTemplateEntry(c+"Smartphone.svg;",.33*a,.72*a,"","Smartphone",!1,null,this.getTagsForStencil("computer terminals","smartphone",b).join(" ")),this.createVertexTemplateEntry(c+"Tablet.svg;",.45*a,.95*a,"","Tablet",!1,null,this.getTagsForStencil("computer terminals","tablet",b).join(" ")),this.createVertexTemplateEntry(c+"Tablet_Alternative.svg;",.58*a,.8*a,"","Tablet Alternative", +!1,null,this.getTagsForStencil("computer terminals","tablet alternative",b).join(" ")),this.createVertexTemplateEntry(c+"Vdeo_Conference_Terminal.svg;",.53*a,.75*a,"","Vdeo Conference Terminal",!1,null,this.getTagsForStencil("computer terminals","vdeo conference terminal",b).join(" ")),this.createVertexTemplateEntry(c+"VOIP_IP_phone.svg;",.5*a,.76*a,"","VOIP IP Phone",!1,null,this.getTagsForStencil("computer terminals","voip ip phone voice over internet protocol",b).join(" "))];this.addPalette("allied_telesisComputer and Terminals", +"Allied Telesis / Computer and Terminals",!1,mxUtils.bind(this,function(a){for(var c=0;c<d.length;c++)a.appendChild(d[c](a))}))};Sidebar.prototype.addAlliedTelesisMediaConvertersPalette=function(a,b,e,c){c+="media_converters/";var d=[this.createVertexTemplateEntry(c+"Industrial_Media_Converter.svg;",.5*a,.95*a,"","Industrial Media Converter",!1,null,this.getTagsForStencil("media converters","industrial media converter",b).join(" ")),this.createVertexTemplateEntry(c+"Industrial_Media_Converter_POE.svg;", +.5*a,.95*a,"","Industrial Media Converter POE",!1,null,this.getTagsForStencil("media converters","industrial media converter poe",b).join(" ")),this.createVertexTemplateEntry(c+"Media_Converter_Modular.svg;",1.18*a,.91*a,"","Media Converter Modular",!1,null,this.getTagsForStencil("media converters","media converter modular",b).join(" ")),this.createVertexTemplateEntry(c+"Media_Converter_Standalone.svg;",.76*a,.62*a,"","Media Converter Standalone",!1,null,this.getTagsForStencil("media converters", +"media converter standalone",b).join(" ")),this.createVertexTemplateEntry(c+"Media_Converter_Standalone_POE.svg;",.76*a,.62*a,"","Media Converter Standalone POE",!1,null,this.getTagsForStencil("media converters","media converter standalone poe",b).join(" "))];this.addPalette("allied_telesisMedia Converters","Allied Telesis / Media Converters",!1,mxUtils.bind(this,function(a){for(var c=0;c<d.length;c++)a.appendChild(d[c](a))}))};Sidebar.prototype.addAlliedTelesisSecurityPalette=function(a,b,e,c){c+= +"security/";var d=[this.createVertexTemplateEntry(c+"DVS_Surveillance_Monitor.svg;",.7*a,1*a,"","DVS Surveillance Monitor",!1,null,this.getTagsForStencil("security","dvs surveillance monitor",b).join(" ")),this.createVertexTemplateEntry(c+"EtherGRID.svg;",1.49*a,1.08*a,"","EtherGRID",!1,null,this.getTagsForStencil("security","ethergrid",b).join(" ")),this.createVertexTemplateEntry(c+"POE_DVS_Camera.svg;",.85*a,.67*a,"","POE DVS Camera",!1,null,this.getTagsForStencil("security","poe dvs camera",b).join(" ")), +this.createVertexTemplateEntry(c+"POS.svg;",1.13*a,1.2*a,"","POS",!1,null,this.getTagsForStencil("security","pos",b).join(" ")),this.createVertexTemplateEntry(c+"Router_UTM.svg;",.93*a,.66*a,"","Router UTM",!1,null,this.getTagsForStencil("security","router utm",b).join(" ")),this.createVertexTemplateEntry(c+"Router_VPN.svg;",.93*a,.66*a,"","Router VPN",!1,null,this.getTagsForStencil("security","router vpn",b).join(" ")),this.createVertexTemplateEntry(c+"Surveillance_Camera_Ceiling.svg;",.62*a,.59* +a,"","Surveillance Camera Ceiling",!1,null,this.getTagsForStencil("security","surveillance camera ceiling",b).join(" "))];this.addPalette("allied_telesisSecurity","Allied Telesis / Security",!1,mxUtils.bind(this,function(a){for(var c=0;c<d.length;c++)a.appendChild(d[c](a))}))};Sidebar.prototype.addAlliedTelesisStoragePalette=function(a,b,e,c){c+="storage/";var d=[this.createVertexTemplateEntry(c+"Datacenter_Server_Half_Rack_ToR.svg;",1.47*a,1.91*a,"","Datacenter Server Half Rack ToR",!1,null,this.getTagsForStencil("storage", +"datacenter server half rack tor",b).join(" ")),this.createVertexTemplateEntry(c+"Datacenter_Server_Rack.svg;",1.47*a,2.98*a,"","Datacenter Server Rack",!1,null,this.getTagsForStencil("storage","datacenter server rack",b).join(" ")),this.createVertexTemplateEntry(c+"Datacenter_Server_Rack_EoR.svg;",1.43*a,2.89*a,"","Datacenter Server Rack EoR",!1,null,this.getTagsForStencil("storage","datacenter server rack eor",b).join(" ")),this.createVertexTemplateEntry(c+"Datacenter_Server_Rack_Storage_Unit_Small.svg;", +1.29*a,1.12*a,"","Datacenter Server Rack Storage Unit Small",!1,null,this.getTagsForStencil("storage","datacenter server rack storage unit small",b).join(" ")),this.createVertexTemplateEntry(c+"Datacenter_Server_Rack_ToR.svg;",1.47*a,2.98*a,"","Datacenter Server Rack ToR",!1,null,this.getTagsForStencil("storage","datacenter server rack tor",b).join(" ")),this.createVertexTemplateEntry(c+"Datacenter_Server_Storage_Unit_Large.svg;",1.28*a,1.32*a,"","Datacenter Server Storage Unit Large",!1,null,this.getTagsForStencil("storage", +"datacenter server storage unit large",b).join(" "))];this.addPalette("allied_telesisStorage","Allied Telesis / Storage",!1,mxUtils.bind(this,function(a){for(var c=0;c<d.length;c++)a.appendChild(d[c](a))}))};Sidebar.prototype.addAlliedTelesisSwitchPalette=function(a,b,e,c){c+="switch/";var d=[this.createVertexTemplateEntry(c+"Industrial_Ethernet_IE200.svg;",.67*a,.94*a,"","Industrial Ethernet IE200",!1,null,this.getTagsForStencil("switch","industrial ethernet ie200",b).join(" ")),this.createVertexTemplateEntry(c+ +"Industrial_Ethernet_IE200_POE.svg;",.67*a,.94*a,"","Industrial Ethernet IE200 POE",!1,null,this.getTagsForStencil("switch","industrial ethernet ie200 poe",b).join(" ")),this.createVertexTemplateEntry(c+"Industrial_Ethernet_IE300.svg;",1.16*a,1.29*a,"","Industrial_Ethernet_IE300",!1,null,this.getTagsForStencil("switch","industrial ethernet ie300",b).join(" ")),this.createVertexTemplateEntry(c+"Modular_Switch_SBx8106.svg;",1.43*a,1.23*a,"","Modular Switch SBx8106",!1,null,this.getTagsForStencil("switch", +"modular switch sbx8106",b).join(" ")),this.createVertexTemplateEntry(c+"Modular_Switch_SBx8112.svg;",1.49*a,1.53*a,"","Modular Switch SBx8112",!1,null,this.getTagsForStencil("switch","modular switch sbx8112",b).join(" ")),this.createVertexTemplateEntry(c+"Modular_Switch_SXx908GEN2.svg;",1.3*a,1.11*a,"","Modular Switch SXx908GEN2",!1,null,this.getTagsForStencil("switch","modular switch sxx908gen2",b).join(" ")),this.createVertexTemplateEntry(c+"Switch_24_port_L2.svg;",1.24*a,.85*a,"","Switch 24 port L2", +!1,null,this.getTagsForStencil("switch","switch 24 port l2",b).join(" ")),this.createVertexTemplateEntry(c+"Switch_24_port_L2_POE.svg;",1.24*a,.85*a,"","Switch 24 port L2 POE",!1,null,this.getTagsForStencil("switch","switch 24 port l2 poe",b).join(" ")),this.createVertexTemplateEntry(c+"Switch_24_port_L3.svg;",1.24*a,.85*a,"","Switch 24 port L3",!1,null,this.getTagsForStencil("switch","switch 24 port l3",b).join(" ")),this.createVertexTemplateEntry(c+"Switch_24_port_L3_Alternative.svg;",1.3*a,.88* +a,"","Switch 24 port L3 Alternative",!1,null,this.getTagsForStencil("switch","switch 24 port l3 alternative",b).join(" ")),this.createVertexTemplateEntry(c+"Switch_24_port_L3_POE.svg;",1.24*a,.85*a,"","Switch 24 port L3 POE",!1,null,this.getTagsForStencil("switch","switch 24 port l3 poe",b).join(" ")),this.createVertexTemplateEntry(c+"Switch_48_port_L2.svg;",1.3*a,.88*a,"","Switch 48 port L2",!1,null,this.getTagsForStencil("switch","switch 48 port l2",b).join(" ")),this.createVertexTemplateEntry(c+ +"Switch_48_port_L2_POE.svg;",1.3*a,.88*a,"","Switch 48 port L2 POE",!1,null,this.getTagsForStencil("switch","switch 48 port l2 poe",b).join(" ")),this.createVertexTemplateEntry(c+"Switch_48_port_L3.svg;",1.3*a,.88*a,"","Switch 48 port L3",!1,null,this.getTagsForStencil("switch","switch 48 port l3",b).join(" ")),this.createVertexTemplateEntry(c+"Switch_48_port_L3_POE.svg;",1.3*a,.88*a,"","Switch 48 port L3 POE",!1,null,this.getTagsForStencil("switch","switch 48 port l3 poe",b).join(" ")),this.createVertexTemplateEntry(c+ +"Switch_52_port_L3.svg;",1.3*a,.88*a,"","Switch 52 port L3",!1,null,this.getTagsForStencil("switch","switch 52 port l3",b).join(" "))];this.addPalette("allied_telesisSwitch","Allied Telesis / Switch",!1,mxUtils.bind(this,function(a){for(var c=0;c<d.length;c++)a.appendChild(d[c](a))}))};Sidebar.prototype.addAlliedTelesisWirelessPalette=function(a,b,e,c){c+="wireless/";var d=[this.createVertexTemplateEntry(c+"Access_Point_Indoor.svg;",.61*a,.91*a,"","Access Point Indoor",!1,null,this.getTagsForStencil("wireless", +"access point indoor",b).join(" ")),this.createVertexTemplateEntry(c+"Access_Point_Outdoor.svg;",.43*a,1.66*a,"","Access Point Outdoor",!1,null,this.getTagsForStencil("wireless","access point outdoor",b).join(" ")),this.createVertexTemplateEntry(c+"Laptop_Wireless.svg;",.96*a,.79*a,"","Laptop Wireless",!1,null,this.getTagsForStencil("wireless","laptop wireless",b).join(" "))];this.addPalette("allied_telesisWireless","Allied Telesis / Wireless",!1,mxUtils.bind(this,function(a){for(var c=0;c<d.length;c++)a.appendChild(d[c](a))}))}})();(function(){Sidebar.prototype.addAndroidPalette=function(){var a=this,b=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;html=1;shadow=0;dashed=0;strokeWidth=1;shape=mxgraph.android.",e=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;html=1;shadow=0;dashed=0;strokeWidth=1;strokeColor=none;shape=",c=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;html=1;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.android.", +d=[this.createVertexTemplateEntry(b+"phone2;fillColor=#ffffff;strokeColor=#c0c0c0;",200,390,"","Phone",null,null,"android phone mobile portrait"),this.createVertexTemplateEntry(b+"phone2;fillColor=#ffffff;strokeColor=#c0c0c0;direction=south;",390,200,"","Phone (landscape)",null,null,"android phone mobile landscape"),this.createVertexTemplateEntry(b+"tab2;fillColor=#ffffff;strokeColor=#c0c0c0;",472,686,"","Tab",null,null,"android tab tablet portrait"),this.createVertexTemplateEntry(b+"tab2;fillColor=#ffffff;strokeColor=#c0c0c0;direction=north;", 686,472,"","Tab (landscape)",null,null,"android tab tablet landscape"),this.createVertexTemplateEntry("strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.action_bar;fillColor=#1A1A1A;strokeColor=#c0c0c0;strokeWidth=2;fontColor=#FFFFFF;",185,30,"","Action Bar",null,null,"android action bar dark portrait"),this.createVertexTemplateEntry("strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.action_bar;fillColor=#E6E6E6;strokeColor=#c0c0c0;strokeWidth=2;",185,30,"","Action Bar (Bright)", null,null,"android action bar bright portrait"),this.createVertexTemplateEntry("strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.action_bar_landscape;fillColor=#1A1A1A;strokeColor=#c0c0c0;strokeWidth=2;fontColor=#FFFFFF;",320,30,"","Action Bar Landscape",null,null,"android action bar landscape dark"),this.createVertexTemplateEntry("strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.action_bar_landscape;fillColor=#E6E6E6;strokeColor=#c0c0c0;strokeWidth=2;",320,30,"","Action Bar Landscape (Bright)", null,null,"android action bar bright landscape"),this.createVertexTemplateEntry("rounded=1;html=1;shadow=0;dashed=0;whiteSpace=wrap;fontSize=10;fillColor=#666666;align=center;strokeColor=#4D4D4D;fontColor=#ffffff;",105.5,16.88,"Normal","Button (Normal)",null,null,"android button normal"),this.createVertexTemplateEntry("rounded=1;html=1;shadow=0;dashed=0;whiteSpace=wrap;fontSize=10;fillColor=#666666;align=center;strokeColor=#999999;fontColor=#ffffff;",105.5,16.88,"Focused","Button (Focused)",null, @@ -3488,67 +3489,67 @@ null,"android button focused"),this.createVertexTemplateEntry("rounded=1;html=1; null,null,"android button focused disabled"),this.createVertexTemplateEntry("rounded=1;html=1;shadow=0;dashed=0;whiteSpace=wrap;fontSize=10;fillColor=#333333;align=center;strokeColor=#333333;fontColor=#666666;",105.5,16.88,"Disabled","Button (Disabled)",null,null,"android button disabled"),this.createVertexTemplateEntry("rounded=1;html=1;shadow=0;dashed=0;whiteSpace=wrap;fontSize=10;fillColor=#E6E6E6;align=center;strokeColor=#E6E6E6;fontColor=#333333;",105.5,16.88,"Normal","Button (Normal, Bright)", null,null,"android button normal bright"),this.createVertexTemplateEntry("rounded=1;html=1;shadow=0;dashed=0;whiteSpace=wrap;fontSize=10;fillColor=#E6E6E6;align=center;strokeColor=#B3B3B3;fontColor=#333333;",105.5,16.88,"Focused","Button (Focused, Bright)",null,null,"android button focused bright"),this.createVertexTemplateEntry("rounded=1;html=1;shadow=0;dashed=0;whiteSpace=wrap;fontSize=10;fillColor=#B3B3B3;align=center;strokeColor=#E6E6E6;fontColor=#333333;strokeWidth=2;",105.5,16.88,"Pressed", "Button (Pressed, Bright)",null,null,"android button pressed bright"),this.createVertexTemplateEntry("rounded=1;html=1;shadow=0;dashed=0;whiteSpace=wrap;fontSize=10;fillColor=#F4F4F4;align=center;strokeColor=#E6E6E6;fontColor=#CCCCCC;",105.5,16.88,"Focused disabled","Button (Focused, Disabled, Bright)",null,null,"android button focused disabled bright"),this.createVertexTemplateEntry("rounded=1;html=1;shadow=0;dashed=0;whiteSpace=wrap;fontSize=10;fillColor=#F4F4F4;align=center;strokeColor=#F4F4F4;fontColor=#CCCCCC;", -105.5,16.88,"Disabled","Button (Disabled, Bright)",null,null,"android button disabled bright"),this.addEntry("android checkboxes checkbox",function(){var b=new mxCell("",new mxGeometry(0,0,165,50),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=transparent;strokeColor=#33b5e5;fillColor=#ffffff");b.vertex=!0;var c=new mxCell("Setting 1",new mxGeometry(0,0,165,12.5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=transparent;align=left;spacingLeft=10;fontSize=8;fontColor=#33b5e5;"); -c.vertex=!0;b.insert(c);var e=new mxCell("",new mxGeometry(0,6,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=transparent;");e.vertex=!0;c.insert(e);c=new mxCell("",new mxGeometry(2.5,-2.5,5,5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.rrect;rSize=0;resizable=0;");c.vertex=!0;e.insert(c);c=new mxCell("Setting 2",new mxGeometry(0,12.5,165,12.5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=transparent;align=left;spacingLeft=10;fontSize=8;fontColor=#33b5e5;"); -c.vertex=!0;b.insert(c);e=new mxCell("",new mxGeometry(0,6,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=transparent;");e.vertex=!0;c.insert(e);c=new mxCell("",new mxGeometry(2.5,-2.5,5,5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.rrect;rSize=0;resizable=0;");c.vertex=!0;e.insert(c);c=new mxCell("Setting 3",new mxGeometry(0,25,165,12.5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=transparent;align=left;spacingLeft=10;fontSize=8;fontColor=#33b5e5;"); -c.vertex=!0;b.insert(c);e=new mxCell("",new mxGeometry(0,6,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=transparent;");e.vertex=!0;c.insert(e);c=new mxCell("",new mxGeometry(2.5,-2.5,5,5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.checkbox;rSize=0;resizable=0;");c.vertex=!0;e.insert(c);c=new mxCell("Setting 4",new mxGeometry(0,37.5,165,12.5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=transparent;align=left;spacingLeft=10;fontSize=8;fontColor=#33b5e5;"); -c.vertex=!0;b.insert(c);e=new mxCell("",new mxGeometry(0,6,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=transparent;");e.vertex=!0;c.insert(e);c=new mxCell("",new mxGeometry(2.5,-2.5,5,5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.rrect;rSize=0;resizable=0;");c.vertex=!0;e.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Checkboxes")}),this.addEntry("android radiobuttons radiobutton", -function(){var b=new mxCell("",new mxGeometry(0,0,165,50),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=transparent;strokeColor=#33b5e5;fillColor=#ffffff;");b.vertex=!0;var c=new mxCell("Option 1",new mxGeometry(0,0,165,12.5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=transparent;align=left;spacingLeft=10;fontSize=8;fontColor=#33b5e5;");c.vertex=!0;b.insert(c);var e=new mxCell("",new mxGeometry(0,6,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=transparent;"); -e.vertex=!0;c.insert(e);c=new mxCell("",new mxGeometry(2.5,-2.5,5,5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=ellipse;resizable=0;html=1;");c.vertex=!0;e.insert(c);c=new mxCell("Option 2",new mxGeometry(0,12.5,165,12.5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=transparent;align=left;spacingLeft=10;fontSize=8;fontColor=#33b5e5;");c.vertex=!0;b.insert(c);e=new mxCell("",new mxGeometry(0,6,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=transparent;"); -e.vertex=!0;c.insert(e);c=new mxCell("",new mxGeometry(2.5,-2.5,5,5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=ellipse;resizable=0;html=1;");c.vertex=!0;e.insert(c);c=new mxCell("Option 3",new mxGeometry(0,25,165,12.5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=transparent;align=left;spacingLeft=10;fontSize=8;fontColor=#33b5e5;");c.vertex=!0;b.insert(c);e=new mxCell("",new mxGeometry(0,6,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=transparent;"); -e.vertex=!0;c.insert(e);c=new mxCell("",new mxGeometry(2.5,-2.5,5,5),"shape=ellipse;strokeColor=inherit;resizable=0;fillColor=#33b5e5;html=1;");c.vertex=!0;e.insert(c);c=new mxCell("Option 4",new mxGeometry(0,37.5,165,12.5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=transparent;align=left;spacingLeft=10;fontSize=8;fontColor=#33b5e5;");c.vertex=!0;b.insert(c);e=new mxCell("",new mxGeometry(0,6,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=transparent;"); -e.vertex=!0;c.insert(e);c=new mxCell("",new mxGeometry(2.5,-2.5,5,5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=ellipse;resizable=0;html=1;");c.vertex=!0;e.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Radiobuttons")}),this.createVertexTemplateEntry(d+"contact_badge_focused;",40,40,"","Contact Badge Focused",null,null,"android contact badge focused"),this.createVertexTemplateEntry(d+"contact_badge_focused;",60,60,"","Contact Badge Focused", -null,null,"android contact badge focused"),this.createVertexTemplateEntry(d+"contact_badge_normal;",40,40,"","Contact Badge Normal",null,null,"android contact badge normal"),this.createVertexTemplateEntry(d+"contact_badge_normal;",60,60,"","Contact Badge Normal",null,null,"android contact badge normal"),this.createVertexTemplateEntry(d+"contact_badge_pressed;",40,40,"","Contact Badge Pressed",null,null,"android contact badge pressed"),this.createVertexTemplateEntry(d+"contact_badge_pressed;",60,60, -"","Contact Badge Pressed",null,null,"android contact badge pressed"),this.addEntry("android contextual action bar dark portrait",function(){var b=new mxCell("",new mxGeometry(0,0,185,30),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.contextual_action_bar;fillColor=#002E3E;");b.vertex=!0;var c=new mxCell("Action",new mxGeometry(40,0,100,30),"shape=transparent;align=left;fontStyle=1;fontColor=#ffffff;");c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width, -b.geometry.height,"Contextual Action Bar")}),this.addEntry("android contextual action bar bright portrait",function(){var b=new mxCell("",new mxGeometry(0,0,185,30),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.contextual_action_bar_white;fillColor=#E6E6E6;");b.vertex=!0;var c=new mxCell("Action",new mxGeometry(40,0,100,30),"shape=transparent;align=left;fontStyle=1;");c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Contextual Action Bar (Bright)")}), -this.addEntry("android contextual action bar landscape dark",function(){var b=new mxCell("",new mxGeometry(0,0,320,30),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.contextual_action_bar_landscape;fillColor=#002E3E;");b.vertex=!0;var c=new mxCell("Action",new mxGeometry(40,0,100,30),"shape=transparent;align=left;fontStyle=1;fontColor=#ffffff;");c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Contextual Action Bar Landscape")}), -this.addEntry("android contextual action bar landscape bright",function(){var b=new mxCell("",new mxGeometry(0,0,320,30),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.contextual_action_bar_landscape_white;fillColor=#E6E6E6;");b.vertex=!0;var c=new mxCell("Action",new mxGeometry(40,0,100,30),"shape=transparent;align=left;fontStyle=1;");c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Contextual Action Bar Landscape (Bright)")}), -this.addEntry("android contextual split action bar dark",function(){var b=new mxCell("",new mxGeometry(0,0,185,70),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.contextual_split_action_bar;fillColor=#002E3E;fontColor=#FFFFFF;");b.vertex=!0;var c=new mxCell("Contextual",new mxGeometry(0,0,185,30),"shape=transparent;fontStyle=1;fontColor=#ffffff;");c.vertex=!0;b.insert(c);c=new mxCell("Action",new mxGeometry(0,40,185,30),"shape=transparent;fontStyle=1;fontColor=#ffffff;");c.vertex=!0; -b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Contextual Split Action Bar")}),this.addEntry("android contextual split action bar bright",function(){var b=new mxCell("",new mxGeometry(0,0,185,70),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.contextual_split_action_bar_white;fillColor=#E6E6E6;");b.vertex=!0;var c=new mxCell("Contextual",new mxGeometry(0,0,185,30),"shape=transparent;fontStyle=1;");c.vertex=!0;b.insert(c);c=new mxCell("Action", -new mxGeometry(0,40,185,30),"shape=transparent;fontStyle=1;");c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Contextual Split Action Bar (Bright)")}),this.addEntry("android contextual split action bar landscape dark",function(){var b=new mxCell("",new mxGeometry(0,0,320,70),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.contextual_split_action_bar_landscape;fillColor=#002E3E;fontColor=#FFFFFF;");b.vertex=!0;var c=new mxCell("Contextual", -new mxGeometry(0,0,320,30),"shape=transparent;fontStyle=1;fontColor=#ffffff;");c.vertex=!0;b.insert(c);c=new mxCell("Action",new mxGeometry(0,40,320,30),"shape=transparent;fontStyle=1;fontColor=#ffffff;");c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Contextual Split Action Bar Landscape")}),this.addEntry("android contextual split action bar landscape bright",function(){var b=new mxCell("",new mxGeometry(0,0,320,70),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.contextual_split_action_bar_landscape_white;fillColor=#E6E6E6;"); -b.vertex=!0;var c=new mxCell("Contextual",new mxGeometry(0,0,320,30),"shape=transparent;fontStyle=1;");c.vertex=!0;b.insert(c);c=new mxCell("Action",new mxGeometry(0,40,320,30),"shape=transparent;fontStyle=1;");c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Contextual Split Action Bar Landscape (Bright)")}),this.createVertexTemplateEntry(d+"indeterminate_progress_bar;strokeColor=#33B5E5;pointerEvents=1",149,5,"","Indeterminate Progress Bar", -null,null,"android indeterminate progress bar"),this.createVertexTemplateEntry(d+"indeterminateSpinner;",50,50,"","Indeterminate Spinner",null,null,"android indeterminate spinner"),this.createVertexTemplateEntry(d+"keyboard;",185,100,"","Keyboard",null,null,"android keyboard"),this.addEntry("android menu bar",function(){var b=new mxCell("",new mxGeometry(0,0,185,50),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.rrect;rSize=0;strokeColor=#888888;fillColor=#444444;");b.vertex=!0;var c= -new mxCell("Menu Item 1",new mxGeometry(0,0,185,12.5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.rrect;rSize=0;align=left;spacingLeft=10;fontSize=8;fontColor=#ffffff;");c.vertex=!0;b.insert(c);c=new mxCell("Menu Item 2",new mxGeometry(0,12.5,185,12.5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.rrect;rSize=0;align=left;spacingLeft=10;fontSize=8;fontColor=#ffffff;"); -c.vertex=!0;b.insert(c);c=new mxCell("Menu Item 3",new mxGeometry(0,25,185,12.5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.rrect;rSize=0;align=left;spacingLeft=10;fontSize=8;fontColor=#ffffff;");c.vertex=!0;b.insert(c);c=new mxCell("Menu Item 4",new mxGeometry(0,37.5,185,12.5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.rrect;rSize=0;align=left;spacingLeft=10;fontSize=8;fontColor=#ffffff;"); -c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Menu bar")}),this.addEntry("android menu bar",function(){var b=new mxCell("",new mxGeometry(0,0,185,50),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.rrect;rSize=0;strokeColor=#eeeeee;fillColor=#ffffff;gradientColor=none;");b.vertex=!0;var c=new mxCell("Menu Item 1",new mxGeometry(0,0,185,12.5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.rrect;rSize=0;align=left;spacingLeft=10;fontSize=8;fontColor=#333333;"); -c.vertex=!0;b.insert(c);c=new mxCell("Menu Item 2",new mxGeometry(0,12.5,185,12.5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.rrect;rSize=0;align=left;spacingLeft=10;fontSize=8;fontColor=#333333;");c.vertex=!0;b.insert(c);c=new mxCell("Menu Item 3",new mxGeometry(0,25,185,12.5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.rrect;rSize=0;align=left;spacingLeft=10;fontSize=8;fontColor=#333333;"); -c.vertex=!0;b.insert(c);c=new mxCell("Menu Item 4",new mxGeometry(0,37.5,185,12.5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.rrect;rSize=0;align=left;spacingLeft=10;fontSize=8;fontColor=#333333;");c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Menu bar")}),this.createVertexTemplateEntry(b+"navigation_bar_1;fillColor=#1A1A1A;strokeColor=#999999;",185,30,"","Navigation Bar", -null,null,"android navigation bar portrait horizontal"),this.createVertexTemplateEntry(b+"navigation_bar_1_landscape;fillColor=#1A1A1A;strokeColor=#999999;",320,30,"","Navigation Bar Landscape",null,null,"android navigation bar landscape horizontal"),this.createVertexTemplateEntry(b+"navigation_bar_1_vertical;fillColor=#1A1A1A;strokeColor=#999999;",30,320,"","Navigation Bar Vertical",null,null,"android navigation bar vertical"),this.createVertexTemplateEntry(b+"navigation_bar_2;fillColor=#1A1A1A;strokeColor=#999999;", -185,30,"","Navigation Bar",null,null,"android navigation bar horizontal"),this.createVertexTemplateEntry(b+"navigation_bar_3;fillColor=#1A1A1A;strokeColor=#999999;",185,30,"","Navigation Bar",null,null,"android navigation bar portrait horizontal"),this.createVertexTemplateEntry(b+"navigation_bar_3_landscape;fillColor=#1A1A1A;strokeColor=#999999;",320,30,"","Navigation Bar Landscape",null,null,"android navigation bar landscape horizontal"),this.createVertexTemplateEntry(b+"navigation_bar_4;fillColor=#1A1A1A;strokeColor=#999999;", -185,30,"","Navigation Bar",null,null,"android navigation bar horizontal"),this.createVertexTemplateEntry(b+"navigation_bar_5;fillColor=#1A1A1A;strokeColor=#999999;",185,30,"","Navigation Bar",null,null,"android navigation bar horizontal"),this.createVertexTemplateEntry(b+"navigation_bar_5_vertical;fillColor=#1A1A1A;strokeColor=#999999;",30,320,"","Navigation Bar Vertical",null,null,"android navigation bar vertical"),this.createVertexTemplateEntry(b+"navigation_bar_6;fillColor=#1A1A1A;strokeColor=#999999;", -185,30,"","Navigation Bar",null,null,"android navigation bar horizontal"),this.createVertexTemplateEntry(d+"progressBar;strokeColor=#33b5e5;dx1=0.8;dx2=0.6;strokeWidth=2;",185,5,"","Progress Bar",null,null,"android progress bar"),this.createVertexTemplateEntry(d+"progressScrubberDisabled;dx=0.3;fillColor=#33b5e5;",185,16,"","Progress Scrubber Disabled",null,null,"android progress scrubber disabled"),this.createVertexTemplateEntry(d+"progressScrubberFocused;dx=0.3;fillColor=#33b5e5;",185,16,"","Progress Scrubber Focused", -null,null,"android progress scrubber focused"),this.createVertexTemplateEntry(d+"progressScrubberPressed;dx=0.3;fillColor=#33b5e5;",185,16,"","Progress Scrubber Pressed",null,null,"android progress scrubber pressed"),this.createVertexTemplateEntry(d+"quickscroll2;dy=0.5;fillColor=#33b5e5;strokeColor=#66D5F5;",58,320,"","Quickscroll",null,null,"android quickscroll quick scroll"),this.createVertexTemplateEntry(d+"quickscroll3;dy=0.5;fillColor=#33b5e5;strokeColor=#66D5F5;",6,320,"","Quickscroll",null, -null,"android quickscroll quick scroll"),this.addEntry("android quick contact",function(){var b=new mxCell("",new mxGeometry(0,0,150,165),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.quick_contact;");b.vertex=!0;var c=new mxCell("Name",new mxGeometry(0,65,150,18),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.anchor;rSize=0;fontStyle=1;fontColor=#FFFFFF;");c.vertex=!0;b.insert(c);c=new mxCell("Item 1",new mxGeometry(0,108,120,28),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.anchor;rSize=0;align=left;spacingLeft=10;"); -c.vertex=!0;b.insert(c);c=new mxCell("Item 2",new mxGeometry(0,136,120,28),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.anchor;rSize=0;align=left;spacingLeft=10;");c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Quick Contact")}),this.addEntry("android scrollable tab scroll",function(){var b=new mxCell("",new mxGeometry(0,0,185,15),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.rrect;rSize=0;fillColor=#444444;strokeColor=none;"); -b.vertex=!0;var c=new mxCell("One",new mxGeometry(0,0,46.25,15),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.anchor;align=left;fontColor=#FFFFFF;");c.vertex=!0;b.insert(c);c=new mxCell("Tab Two",new mxGeometry(46.25,0,92.5,15),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.anchor;fontColor=#FFFFFF;");c.vertex=!0;b.insert(c);c=new mxCell("Tab",new mxGeometry(138.75,0,46.25,15),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.anchor;align=right;fontColor=#FFFFFF;"); -c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Scrollable Tab")}),this.createVertexTemplateEntry("strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.scrollbars2;fillColor=#999999;strokeColor=none;",56,56,"","Scrollbars",null,null,"android scrollbar scroll bar"),this.createVertexTemplateEntry("whiteSpace=wrap;html=1;shadow=0;dashed=0;fontSize=10;align=left;fillColor=#1A1A1A;strokeColor=#1A1A1A;fontColor=#FFFFFF;",168.8,16.88,"Normal", +105.5,16.88,"Disabled","Button (Disabled, Bright)",null,null,"android button disabled bright"),this.addEntry("android checkboxes checkbox",function(){var c=new mxCell("",new mxGeometry(0,0,165,50),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=transparent;strokeColor=#33b5e5;fillColor=#ffffff");c.vertex=!0;var d=new mxCell("Setting 1",new mxGeometry(0,0,165,12.5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=transparent;align=left;spacingLeft=10;fontSize=8;fontColor=#33b5e5;"); +d.vertex=!0;c.insert(d);var b=new mxCell("",new mxGeometry(0,6,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=transparent;");b.vertex=!0;d.insert(b);d=new mxCell("",new mxGeometry(2.5,-2.5,5,5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.rrect;rSize=0;resizable=0;");d.vertex=!0;b.insert(d);d=new mxCell("Setting 2",new mxGeometry(0,12.5,165,12.5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=transparent;align=left;spacingLeft=10;fontSize=8;fontColor=#33b5e5;"); +d.vertex=!0;c.insert(d);b=new mxCell("",new mxGeometry(0,6,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=transparent;");b.vertex=!0;d.insert(b);d=new mxCell("",new mxGeometry(2.5,-2.5,5,5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.rrect;rSize=0;resizable=0;");d.vertex=!0;b.insert(d);d=new mxCell("Setting 3",new mxGeometry(0,25,165,12.5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=transparent;align=left;spacingLeft=10;fontSize=8;fontColor=#33b5e5;"); +d.vertex=!0;c.insert(d);b=new mxCell("",new mxGeometry(0,6,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=transparent;");b.vertex=!0;d.insert(b);d=new mxCell("",new mxGeometry(2.5,-2.5,5,5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.checkbox;rSize=0;resizable=0;");d.vertex=!0;b.insert(d);d=new mxCell("Setting 4",new mxGeometry(0,37.5,165,12.5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=transparent;align=left;spacingLeft=10;fontSize=8;fontColor=#33b5e5;"); +d.vertex=!0;c.insert(d);b=new mxCell("",new mxGeometry(0,6,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=transparent;");b.vertex=!0;d.insert(b);d=new mxCell("",new mxGeometry(2.5,-2.5,5,5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.rrect;rSize=0;resizable=0;");d.vertex=!0;b.insert(d);return a.createVertexTemplateFromCells([c],c.geometry.width,c.geometry.height,"Checkboxes")}),this.addEntry("android radiobuttons radiobutton", +function(){var c=new mxCell("",new mxGeometry(0,0,165,50),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=transparent;strokeColor=#33b5e5;fillColor=#ffffff;");c.vertex=!0;var d=new mxCell("Option 1",new mxGeometry(0,0,165,12.5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=transparent;align=left;spacingLeft=10;fontSize=8;fontColor=#33b5e5;");d.vertex=!0;c.insert(d);var b=new mxCell("",new mxGeometry(0,6,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=transparent;"); +b.vertex=!0;d.insert(b);d=new mxCell("",new mxGeometry(2.5,-2.5,5,5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=ellipse;resizable=0;html=1;");d.vertex=!0;b.insert(d);d=new mxCell("Option 2",new mxGeometry(0,12.5,165,12.5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=transparent;align=left;spacingLeft=10;fontSize=8;fontColor=#33b5e5;");d.vertex=!0;c.insert(d);b=new mxCell("",new mxGeometry(0,6,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=transparent;"); +b.vertex=!0;d.insert(b);d=new mxCell("",new mxGeometry(2.5,-2.5,5,5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=ellipse;resizable=0;html=1;");d.vertex=!0;b.insert(d);d=new mxCell("Option 3",new mxGeometry(0,25,165,12.5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=transparent;align=left;spacingLeft=10;fontSize=8;fontColor=#33b5e5;");d.vertex=!0;c.insert(d);b=new mxCell("",new mxGeometry(0,6,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=transparent;"); +b.vertex=!0;d.insert(b);d=new mxCell("",new mxGeometry(2.5,-2.5,5,5),"shape=ellipse;strokeColor=inherit;resizable=0;fillColor=#33b5e5;html=1;");d.vertex=!0;b.insert(d);d=new mxCell("Option 4",new mxGeometry(0,37.5,165,12.5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=transparent;align=left;spacingLeft=10;fontSize=8;fontColor=#33b5e5;");d.vertex=!0;c.insert(d);b=new mxCell("",new mxGeometry(0,6,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=transparent;"); +b.vertex=!0;d.insert(b);d=new mxCell("",new mxGeometry(2.5,-2.5,5,5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=ellipse;resizable=0;html=1;");d.vertex=!0;b.insert(d);return a.createVertexTemplateFromCells([c],c.geometry.width,c.geometry.height,"Radiobuttons")}),this.createVertexTemplateEntry(b+"contact_badge_focused;",40,40,"","Contact Badge Focused",null,null,"android contact badge focused"),this.createVertexTemplateEntry(b+"contact_badge_focused;",60,60,"","Contact Badge Focused", +null,null,"android contact badge focused"),this.createVertexTemplateEntry(b+"contact_badge_normal;",40,40,"","Contact Badge Normal",null,null,"android contact badge normal"),this.createVertexTemplateEntry(b+"contact_badge_normal;",60,60,"","Contact Badge Normal",null,null,"android contact badge normal"),this.createVertexTemplateEntry(b+"contact_badge_pressed;",40,40,"","Contact Badge Pressed",null,null,"android contact badge pressed"),this.createVertexTemplateEntry(b+"contact_badge_pressed;",60,60, +"","Contact Badge Pressed",null,null,"android contact badge pressed"),this.addEntry("android contextual action bar dark portrait",function(){var c=new mxCell("",new mxGeometry(0,0,185,30),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.contextual_action_bar;fillColor=#002E3E;");c.vertex=!0;var d=new mxCell("Action",new mxGeometry(40,0,100,30),"shape=transparent;align=left;fontStyle=1;fontColor=#ffffff;");d.vertex=!0;c.insert(d);return a.createVertexTemplateFromCells([c],c.geometry.width, +c.geometry.height,"Contextual Action Bar")}),this.addEntry("android contextual action bar bright portrait",function(){var c=new mxCell("",new mxGeometry(0,0,185,30),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.contextual_action_bar_white;fillColor=#E6E6E6;");c.vertex=!0;var d=new mxCell("Action",new mxGeometry(40,0,100,30),"shape=transparent;align=left;fontStyle=1;");d.vertex=!0;c.insert(d);return a.createVertexTemplateFromCells([c],c.geometry.width,c.geometry.height,"Contextual Action Bar (Bright)")}), +this.addEntry("android contextual action bar landscape dark",function(){var c=new mxCell("",new mxGeometry(0,0,320,30),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.contextual_action_bar_landscape;fillColor=#002E3E;");c.vertex=!0;var d=new mxCell("Action",new mxGeometry(40,0,100,30),"shape=transparent;align=left;fontStyle=1;fontColor=#ffffff;");d.vertex=!0;c.insert(d);return a.createVertexTemplateFromCells([c],c.geometry.width,c.geometry.height,"Contextual Action Bar Landscape")}), +this.addEntry("android contextual action bar landscape bright",function(){var c=new mxCell("",new mxGeometry(0,0,320,30),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.contextual_action_bar_landscape_white;fillColor=#E6E6E6;");c.vertex=!0;var d=new mxCell("Action",new mxGeometry(40,0,100,30),"shape=transparent;align=left;fontStyle=1;");d.vertex=!0;c.insert(d);return a.createVertexTemplateFromCells([c],c.geometry.width,c.geometry.height,"Contextual Action Bar Landscape (Bright)")}), +this.addEntry("android contextual split action bar dark",function(){var c=new mxCell("",new mxGeometry(0,0,185,70),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.contextual_split_action_bar;fillColor=#002E3E;fontColor=#FFFFFF;");c.vertex=!0;var d=new mxCell("Contextual",new mxGeometry(0,0,185,30),"shape=transparent;fontStyle=1;fontColor=#ffffff;");d.vertex=!0;c.insert(d);d=new mxCell("Action",new mxGeometry(0,40,185,30),"shape=transparent;fontStyle=1;fontColor=#ffffff;");d.vertex=!0; +c.insert(d);return a.createVertexTemplateFromCells([c],c.geometry.width,c.geometry.height,"Contextual Split Action Bar")}),this.addEntry("android contextual split action bar bright",function(){var c=new mxCell("",new mxGeometry(0,0,185,70),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.contextual_split_action_bar_white;fillColor=#E6E6E6;");c.vertex=!0;var d=new mxCell("Contextual",new mxGeometry(0,0,185,30),"shape=transparent;fontStyle=1;");d.vertex=!0;c.insert(d);d=new mxCell("Action", +new mxGeometry(0,40,185,30),"shape=transparent;fontStyle=1;");d.vertex=!0;c.insert(d);return a.createVertexTemplateFromCells([c],c.geometry.width,c.geometry.height,"Contextual Split Action Bar (Bright)")}),this.addEntry("android contextual split action bar landscape dark",function(){var c=new mxCell("",new mxGeometry(0,0,320,70),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.contextual_split_action_bar_landscape;fillColor=#002E3E;fontColor=#FFFFFF;");c.vertex=!0;var d=new mxCell("Contextual", +new mxGeometry(0,0,320,30),"shape=transparent;fontStyle=1;fontColor=#ffffff;");d.vertex=!0;c.insert(d);d=new mxCell("Action",new mxGeometry(0,40,320,30),"shape=transparent;fontStyle=1;fontColor=#ffffff;");d.vertex=!0;c.insert(d);return a.createVertexTemplateFromCells([c],c.geometry.width,c.geometry.height,"Contextual Split Action Bar Landscape")}),this.addEntry("android contextual split action bar landscape bright",function(){var c=new mxCell("",new mxGeometry(0,0,320,70),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.contextual_split_action_bar_landscape_white;fillColor=#E6E6E6;"); +c.vertex=!0;var d=new mxCell("Contextual",new mxGeometry(0,0,320,30),"shape=transparent;fontStyle=1;");d.vertex=!0;c.insert(d);d=new mxCell("Action",new mxGeometry(0,40,320,30),"shape=transparent;fontStyle=1;");d.vertex=!0;c.insert(d);return a.createVertexTemplateFromCells([c],c.geometry.width,c.geometry.height,"Contextual Split Action Bar Landscape (Bright)")}),this.createVertexTemplateEntry(b+"indeterminate_progress_bar;strokeColor=#33B5E5;pointerEvents=1",149,5,"","Indeterminate Progress Bar", +null,null,"android indeterminate progress bar"),this.createVertexTemplateEntry(b+"indeterminateSpinner;",50,50,"","Indeterminate Spinner",null,null,"android indeterminate spinner"),this.createVertexTemplateEntry(b+"keyboard;",185,100,"","Keyboard",null,null,"android keyboard"),this.addEntry("android menu bar",function(){var c=new mxCell("",new mxGeometry(0,0,185,50),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.rrect;rSize=0;strokeColor=#888888;fillColor=#444444;");c.vertex=!0;var d= +new mxCell("Menu Item 1",new mxGeometry(0,0,185,12.5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.rrect;rSize=0;align=left;spacingLeft=10;fontSize=8;fontColor=#ffffff;");d.vertex=!0;c.insert(d);d=new mxCell("Menu Item 2",new mxGeometry(0,12.5,185,12.5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.rrect;rSize=0;align=left;spacingLeft=10;fontSize=8;fontColor=#ffffff;"); +d.vertex=!0;c.insert(d);d=new mxCell("Menu Item 3",new mxGeometry(0,25,185,12.5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.rrect;rSize=0;align=left;spacingLeft=10;fontSize=8;fontColor=#ffffff;");d.vertex=!0;c.insert(d);d=new mxCell("Menu Item 4",new mxGeometry(0,37.5,185,12.5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.rrect;rSize=0;align=left;spacingLeft=10;fontSize=8;fontColor=#ffffff;"); +d.vertex=!0;c.insert(d);return a.createVertexTemplateFromCells([c],c.geometry.width,c.geometry.height,"Menu bar")}),this.addEntry("android menu bar",function(){var c=new mxCell("",new mxGeometry(0,0,185,50),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.rrect;rSize=0;strokeColor=#eeeeee;fillColor=#ffffff;gradientColor=none;");c.vertex=!0;var d=new mxCell("Menu Item 1",new mxGeometry(0,0,185,12.5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.rrect;rSize=0;align=left;spacingLeft=10;fontSize=8;fontColor=#333333;"); +d.vertex=!0;c.insert(d);d=new mxCell("Menu Item 2",new mxGeometry(0,12.5,185,12.5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.rrect;rSize=0;align=left;spacingLeft=10;fontSize=8;fontColor=#333333;");d.vertex=!0;c.insert(d);d=new mxCell("Menu Item 3",new mxGeometry(0,25,185,12.5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.rrect;rSize=0;align=left;spacingLeft=10;fontSize=8;fontColor=#333333;"); +d.vertex=!0;c.insert(d);d=new mxCell("Menu Item 4",new mxGeometry(0,37.5,185,12.5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.rrect;rSize=0;align=left;spacingLeft=10;fontSize=8;fontColor=#333333;");d.vertex=!0;c.insert(d);return a.createVertexTemplateFromCells([c],c.geometry.width,c.geometry.height,"Menu bar")}),this.createVertexTemplateEntry(c+"navigation_bar_1;fillColor=#1A1A1A;strokeColor=#999999;",185,30,"","Navigation Bar", +null,null,"android navigation bar portrait horizontal"),this.createVertexTemplateEntry(c+"navigation_bar_1_landscape;fillColor=#1A1A1A;strokeColor=#999999;",320,30,"","Navigation Bar Landscape",null,null,"android navigation bar landscape horizontal"),this.createVertexTemplateEntry(c+"navigation_bar_1_vertical;fillColor=#1A1A1A;strokeColor=#999999;",30,320,"","Navigation Bar Vertical",null,null,"android navigation bar vertical"),this.createVertexTemplateEntry(c+"navigation_bar_2;fillColor=#1A1A1A;strokeColor=#999999;", +185,30,"","Navigation Bar",null,null,"android navigation bar horizontal"),this.createVertexTemplateEntry(c+"navigation_bar_3;fillColor=#1A1A1A;strokeColor=#999999;",185,30,"","Navigation Bar",null,null,"android navigation bar portrait horizontal"),this.createVertexTemplateEntry(c+"navigation_bar_3_landscape;fillColor=#1A1A1A;strokeColor=#999999;",320,30,"","Navigation Bar Landscape",null,null,"android navigation bar landscape horizontal"),this.createVertexTemplateEntry(c+"navigation_bar_4;fillColor=#1A1A1A;strokeColor=#999999;", +185,30,"","Navigation Bar",null,null,"android navigation bar horizontal"),this.createVertexTemplateEntry(c+"navigation_bar_5;fillColor=#1A1A1A;strokeColor=#999999;",185,30,"","Navigation Bar",null,null,"android navigation bar horizontal"),this.createVertexTemplateEntry(c+"navigation_bar_5_vertical;fillColor=#1A1A1A;strokeColor=#999999;",30,320,"","Navigation Bar Vertical",null,null,"android navigation bar vertical"),this.createVertexTemplateEntry(c+"navigation_bar_6;fillColor=#1A1A1A;strokeColor=#999999;", +185,30,"","Navigation Bar",null,null,"android navigation bar horizontal"),this.createVertexTemplateEntry(b+"progressBar;strokeColor=#33b5e5;dx1=0.8;dx2=0.6;strokeWidth=2;",185,5,"","Progress Bar",null,null,"android progress bar"),this.createVertexTemplateEntry(b+"progressScrubberDisabled;dx=0.3;fillColor=#33b5e5;",185,16,"","Progress Scrubber Disabled",null,null,"android progress scrubber disabled"),this.createVertexTemplateEntry(b+"progressScrubberFocused;dx=0.3;fillColor=#33b5e5;",185,16,"","Progress Scrubber Focused", +null,null,"android progress scrubber focused"),this.createVertexTemplateEntry(b+"progressScrubberPressed;dx=0.3;fillColor=#33b5e5;",185,16,"","Progress Scrubber Pressed",null,null,"android progress scrubber pressed"),this.createVertexTemplateEntry(b+"quickscroll2;dy=0.5;fillColor=#33b5e5;strokeColor=#66D5F5;",58,320,"","Quickscroll",null,null,"android quickscroll quick scroll"),this.createVertexTemplateEntry(b+"quickscroll3;dy=0.5;fillColor=#33b5e5;strokeColor=#66D5F5;",6,320,"","Quickscroll",null, +null,"android quickscroll quick scroll"),this.addEntry("android quick contact",function(){var c=new mxCell("",new mxGeometry(0,0,150,165),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.quick_contact;");c.vertex=!0;var d=new mxCell("Name",new mxGeometry(0,65,150,18),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.anchor;rSize=0;fontStyle=1;fontColor=#FFFFFF;");d.vertex=!0;c.insert(d);d=new mxCell("Item 1",new mxGeometry(0,108,120,28),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.anchor;rSize=0;align=left;spacingLeft=10;"); +d.vertex=!0;c.insert(d);d=new mxCell("Item 2",new mxGeometry(0,136,120,28),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.anchor;rSize=0;align=left;spacingLeft=10;");d.vertex=!0;c.insert(d);return a.createVertexTemplateFromCells([c],c.geometry.width,c.geometry.height,"Quick Contact")}),this.addEntry("android scrollable tab scroll",function(){var c=new mxCell("",new mxGeometry(0,0,185,15),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.rrect;rSize=0;fillColor=#444444;strokeColor=none;"); +c.vertex=!0;var d=new mxCell("One",new mxGeometry(0,0,46.25,15),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.anchor;align=left;fontColor=#FFFFFF;");d.vertex=!0;c.insert(d);d=new mxCell("Tab Two",new mxGeometry(46.25,0,92.5,15),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.anchor;fontColor=#FFFFFF;");d.vertex=!0;c.insert(d);d=new mxCell("Tab",new mxGeometry(138.75,0,46.25,15),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.anchor;align=right;fontColor=#FFFFFF;"); +d.vertex=!0;c.insert(d);return a.createVertexTemplateFromCells([c],c.geometry.width,c.geometry.height,"Scrollable Tab")}),this.createVertexTemplateEntry("strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.scrollbars2;fillColor=#999999;strokeColor=none;",56,56,"","Scrollbars",null,null,"android scrollbar scroll bar"),this.createVertexTemplateEntry("whiteSpace=wrap;html=1;shadow=0;dashed=0;fontSize=10;align=left;fillColor=#1A1A1A;strokeColor=#1A1A1A;fontColor=#FFFFFF;",168.8,16.88,"Normal", "Section Header (Normal)",null,null,"android section header normal dark"),this.createVertexTemplateEntry("whiteSpace=wrap;html=1;shadow=0;dashed=0;fontSize=10;align=left;fillColor=#4D4D4D;strokeColor=#4D4D4D;fontColor=#FFFFFF;",168.8,16.88,"Pressed","Section Header (Pressed)",null,null,"android section header pressed dark"),this.createVertexTemplateEntry("whiteSpace=wrap;html=1;shadow=0;dashed=0;fontSize=10;align=left;fillColor=#33b5e5;strokeColor=#33B5E5;fontColor=#FFFFFF;",168.8,16.88,"Activated", "Section Header (Activated)",null,null,"android section header activated dark"),this.createVertexTemplateEntry("whiteSpace=wrap;html=1;shadow=0;dashed=0;fontSize=10;align=left;fillColor=#006699;strokeColor=#33B5E5;fontColor=#FFFFFF;",168.8,16.88,"Focused","Section Header (Focused)",null,null,"android section header focused dark"),this.createVertexTemplateEntry("whiteSpace=wrap;html=1;shadow=0;dashed=0;fontSize=10;align=left;fillColor=#006699;strokeColor=#33B5E5;fontColor=#B3B3B3;",168.8,16.88,"Disabled focused", "Section Header (Disabled focused)",null,null,"android section header disabled focused dark"),this.createVertexTemplateEntry("whiteSpace=wrap;html=1;shadow=0;dashed=0;fontSize=10;align=left;fillColor=#1A1A1A;strokeColor=#1A1A1A;fontColor=#B3B3B3;",168.8,16.88,"Disabled","Section Header (Disabled)",null,null,"android section header disabled dark"),this.createVertexTemplateEntry("whiteSpace=wrap;html=1;shadow=0;dashed=0;fontSize=10;align=left;fillColor=#FFFFFF;strokeColor=#FFFFFF;fontColor=#4D4D4D;", 168.8,16.88,"Normal","Section Header (Normal, Bright)",null,null,"android section header normal bright"),this.createVertexTemplateEntry("whiteSpace=wrap;html=1;shadow=0;dashed=0;fontSize=10;align=left;fillColor=#f6f6f6;strokeColor=#f6f6f6;fontColor=#4D4D4D;",168.8,16.88,"Pressed","Section Header (Pressed, Bright)",null,null,"android section header pressed bright"),this.createVertexTemplateEntry("whiteSpace=wrap;html=1;shadow=0;dashed=0;fontSize=10;align=left;fillColor=#33b5e5;strokeColor=#33B5E5;fontColor=#4D4D4D;", 168.8,16.88,"Activated","Section Header (Activated, Bright)",null,null,"android section header activated bright"),this.createVertexTemplateEntry("whiteSpace=wrap;html=1;shadow=0;dashed=0;fontSize=10;align=left;fillColor=#99e5ff;strokeColor=#33B5E5;fontColor=#4D4D4D;",168.8,16.88,"Focused","Section Header (Focused, Bright)",null,null,"android section header focused bright"),this.createVertexTemplateEntry("whiteSpace=wrap;html=1;shadow=0;dashed=0;fontSize=10;align=left;fillColor=#99e5ff;strokeColor=#33B5E5;fontColor=#B3B3B3;", 168.8,16.88,"Disabled focused","Section Header (Disabled focused, Bright)",null,null,"android section header disabled focused bright"),this.createVertexTemplateEntry("whiteSpace=wrap;html=1;shadow=0;dashed=0;fontSize=10;align=left;fillColor=#FFFFFF;strokeColor=#FFFFFF;fontColor=#B3B3B3;",168.8,16.88,"Disabled","Section Header (Disabled, Bright)",null,null,"android section header disabled bright"),this.createVertexTemplateEntry("strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.spinner2;align=center;fillColor=#999999;strokeColor=#999999;verticalAlign=bottom", -110,10,"Item","Spinner Normal",null,null,"android spinner normal"),this.createVertexTemplateEntry("strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.spinner2;align=center;fillColor=#33b5e5;strokeColor=#33b5e5;verticalAlign=bottom",110,10,"Item","Spinner Focused",null,null,"android spinner focused"),this.addEntry("android spinner disabled focused",function(){var b=new mxCell("",new mxGeometry(0,0,117,28),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.rect;rounded=1;fillColor=#207585;strokeColor=#33b5e5;"); -b.vertex=!0;var c=new mxCell("Item",new mxGeometry(3,4,110,20),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.spinner2;fontStyle=1;fontColor=#ffffff;align=center;verticalAlign=middle;strokeColor=#999999;fillColor=#999999;");c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Spinner Disabled Focused")}),this.addEntry("android spinner disabled focused light bright",function(){var b=new mxCell("",new mxGeometry(0,0,117,28),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.rect;rounded=1;fillColor=#ccf2ff;strokeColor=#88c5f5;"); -b.vertex=!0;var c=new mxCell("Item",new mxGeometry(3,4,110,20),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.spinner2;fontStyle=0;fontColor=#666666;align=center;verticalAlign=middle;strokeColor=#cccccc;fillColor=#cccccc;");c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Spinner Disabled Focused Bright")}),this.addEntry("android spinner pressed",function(){var b=new mxCell("",new mxGeometry(0,0,117,28),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.rect;rounded=1;fillColor=#33b5e5;strokeColor=#33b5e5;"); -b.vertex=!0;var c=new mxCell("Item",new mxGeometry(3,4,110,20),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.spinner2;fontStyle=0;fontColor=#ffffff;align=center;verticalAlign=middle;strokeColor=#aaeeff;fillColor=#aaeeff;");c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Spinner Pressed")}),this.addEntry("android spinner pressed light bright",function(){var b=new mxCell("",new mxGeometry(0,0,117,28),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.rect;rounded=1;fillColor=#33b5e5;strokeColor=#33b5e5;"); -b.vertex=!0;var c=new mxCell("Item",new mxGeometry(3,4,110,20),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.spinner2;fontStyle=0;fontColor=#ffffff;align=center;verticalAlign=middle;strokeColor=#666666;fillColor=#666666;");c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Spinner Pressed Bright")}),this.addEntry("android split action bar dark",function(){var b=new mxCell("",new mxGeometry(0,0,185,70),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.split_action_bar;fillColor=#1A1A1A;"); -b.vertex=!0;var c=new mxCell("Split",new mxGeometry(0,0,185,30),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.anchor;fontStyle=1;fontColor=#ffffff;");c.vertex=!0;b.insert(c);c=new mxCell("Action",new mxGeometry(0,40,185,30),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.anchor;fontStyle=1;fontColor=#ffffff;");c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Split Action Bar")}),this.addEntry("android split action bar bright", -function(){var b=new mxCell("",new mxGeometry(0,0,185,70),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.split_action_bar;fillColor=#E6E6E6;");b.vertex=!0;var c=new mxCell("Split",new mxGeometry(0,0,185,30),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.anchor;fontStyle=1;");c.vertex=!0;b.insert(c);c=new mxCell("Action",new mxGeometry(0,40,185,30),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.anchor;fontStyle=1;");c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b], -b.geometry.width,b.geometry.height,"Split Action Bar (Bright)")}),this.addEntry("android split action bar landscape dark",function(){var b=new mxCell("",new mxGeometry(0,0,320,70),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.split_action_bar_landscape;fillColor=#1A1A1A;");b.vertex=!0;var c=new mxCell("Split",new mxGeometry(0,0,320,30),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.anchor;fontStyle=1;fontColor=#ffffff;");c.vertex=!0;b.insert(c);c=new mxCell("Action", -new mxGeometry(0,40,320,30),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.anchor;fontStyle=1;fontColor=#ffffff;");c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Split Action Bar Landscape")}),this.addEntry("android split action bar landscape bright",function(){var b=new mxCell("",new mxGeometry(0,0,320,70),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.split_action_bar_landscape;fillColor=#E6E6E6;");b.vertex=!0; -var c=new mxCell("Split",new mxGeometry(0,0,320,30),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.anchor;fontStyle=1;");c.vertex=!0;b.insert(c);c=new mxCell("Action",new mxGeometry(0,40,320,30),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.anchor;fontStyle=1;");c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Split Action Bar Landscape (Bright)")}),this.createVertexTemplateEntry("strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.statusBar;align=center;fillColor=#000000;strokeColor=#ffffff;fontColor=#ffffff;fontSize=10;", -183.57,15.825,"","Status bar (portrait)",null,null,"android status bar portrait"),this.createVertexTemplateEntry("strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.statusBar;align=center;fillColor=#000000;strokeColor=#ffffff;fontColor=#ffffff;fontSize=10;",320.087,15.825,"","Status bar (landscape)",null,null,"android status bar landscape"),this.createVertexTemplateEntry(d+"switch_off;fillColor=#666666;",80,20,"","Switch Off",null,null,"android switch off"),this.createVertexTemplateEntry(d+ -"switch_off;fillColor=#E6E6E6;",80,20,"","Switch Off",null,null,"android switch off"),this.createVertexTemplateEntry(d+"switch_on;fillColor=#666666;",80,20,"","Switch On",null,null,"android switch on"),this.createVertexTemplateEntry(d+"switch_on;fillColor=#E6E6E6;",80,20,"","Switch On",null,null,"android switch on"),this.addDataEntry("android tab tabulator bar dark",185,30,"Tab Bar Dark","3ZZfb8IgEMA/Da8NhdY/r+02n/bkkj1jQSGjxVCc7T79KMVpp81qnG6RhIS744D7cVwAOM2rmSZr/qwokwA/ApxqpUw7yquUSQkQFBTgB4AQtB2gpx5r6KxwTTQrzBAH1Dq8E7lhraZVlKaWXlEard7Yq6CGW0UIcMJNLv2w5ISqrRWgFSgpOaNesJZ1s0JerZroAlJQrQQNtGaZPVqi5+KD+blLIWWqpNJuRxy51qzhtt5ZClVYh8SfmGnDqt6oncqHPGMqZ0bXdsrWR9HMmMStG2dixb0bbmlBUrby6st1z9AOPMbTSPER0heysIrw2mRJkfEGVLJUhZn7bUIvH+BdujaUJPqRZDQK0JVYRj0s/yZLv2PtZi2E02mW9WXtNe6gOuJ/m1uJ/2PRwHgRs/iiohGdxlz7SxgPZnw54lFP4uO7KiLeYYqCm+bvuAdudI9wQzwJxjfFOxlQHjwgKdzr7D7ZQwBUNC9fqMLqS7VpTv87UMJdytWdmnb4QYDHeND5eKy4/845W+e39wk="), +110,10,"Item","Spinner Normal",null,null,"android spinner normal"),this.createVertexTemplateEntry("strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.spinner2;align=center;fillColor=#33b5e5;strokeColor=#33b5e5;verticalAlign=bottom",110,10,"Item","Spinner Focused",null,null,"android spinner focused"),this.addEntry("android spinner disabled focused",function(){var c=new mxCell("",new mxGeometry(0,0,117,28),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.rect;rounded=1;fillColor=#207585;strokeColor=#33b5e5;"); +c.vertex=!0;var d=new mxCell("Item",new mxGeometry(3,4,110,20),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.spinner2;fontStyle=1;fontColor=#ffffff;align=center;verticalAlign=middle;strokeColor=#999999;fillColor=#999999;");d.vertex=!0;c.insert(d);return a.createVertexTemplateFromCells([c],c.geometry.width,c.geometry.height,"Spinner Disabled Focused")}),this.addEntry("android spinner disabled focused light bright",function(){var c=new mxCell("",new mxGeometry(0,0,117,28),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.rect;rounded=1;fillColor=#ccf2ff;strokeColor=#88c5f5;"); +c.vertex=!0;var d=new mxCell("Item",new mxGeometry(3,4,110,20),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.spinner2;fontStyle=0;fontColor=#666666;align=center;verticalAlign=middle;strokeColor=#cccccc;fillColor=#cccccc;");d.vertex=!0;c.insert(d);return a.createVertexTemplateFromCells([c],c.geometry.width,c.geometry.height,"Spinner Disabled Focused Bright")}),this.addEntry("android spinner pressed",function(){var c=new mxCell("",new mxGeometry(0,0,117,28),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.rect;rounded=1;fillColor=#33b5e5;strokeColor=#33b5e5;"); +c.vertex=!0;var d=new mxCell("Item",new mxGeometry(3,4,110,20),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.spinner2;fontStyle=0;fontColor=#ffffff;align=center;verticalAlign=middle;strokeColor=#aaeeff;fillColor=#aaeeff;");d.vertex=!0;c.insert(d);return a.createVertexTemplateFromCells([c],c.geometry.width,c.geometry.height,"Spinner Pressed")}),this.addEntry("android spinner pressed light bright",function(){var c=new mxCell("",new mxGeometry(0,0,117,28),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.rect;rounded=1;fillColor=#33b5e5;strokeColor=#33b5e5;"); +c.vertex=!0;var d=new mxCell("Item",new mxGeometry(3,4,110,20),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.spinner2;fontStyle=0;fontColor=#ffffff;align=center;verticalAlign=middle;strokeColor=#666666;fillColor=#666666;");d.vertex=!0;c.insert(d);return a.createVertexTemplateFromCells([c],c.geometry.width,c.geometry.height,"Spinner Pressed Bright")}),this.addEntry("android split action bar dark",function(){var c=new mxCell("",new mxGeometry(0,0,185,70),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.split_action_bar;fillColor=#1A1A1A;"); +c.vertex=!0;var d=new mxCell("Split",new mxGeometry(0,0,185,30),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.anchor;fontStyle=1;fontColor=#ffffff;");d.vertex=!0;c.insert(d);d=new mxCell("Action",new mxGeometry(0,40,185,30),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.anchor;fontStyle=1;fontColor=#ffffff;");d.vertex=!0;c.insert(d);return a.createVertexTemplateFromCells([c],c.geometry.width,c.geometry.height,"Split Action Bar")}),this.addEntry("android split action bar bright", +function(){var c=new mxCell("",new mxGeometry(0,0,185,70),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.split_action_bar;fillColor=#E6E6E6;");c.vertex=!0;var d=new mxCell("Split",new mxGeometry(0,0,185,30),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.anchor;fontStyle=1;");d.vertex=!0;c.insert(d);d=new mxCell("Action",new mxGeometry(0,40,185,30),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.anchor;fontStyle=1;");d.vertex=!0;c.insert(d);return a.createVertexTemplateFromCells([c], +c.geometry.width,c.geometry.height,"Split Action Bar (Bright)")}),this.addEntry("android split action bar landscape dark",function(){var c=new mxCell("",new mxGeometry(0,0,320,70),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.split_action_bar_landscape;fillColor=#1A1A1A;");c.vertex=!0;var d=new mxCell("Split",new mxGeometry(0,0,320,30),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.anchor;fontStyle=1;fontColor=#ffffff;");d.vertex=!0;c.insert(d);d=new mxCell("Action", +new mxGeometry(0,40,320,30),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.anchor;fontStyle=1;fontColor=#ffffff;");d.vertex=!0;c.insert(d);return a.createVertexTemplateFromCells([c],c.geometry.width,c.geometry.height,"Split Action Bar Landscape")}),this.addEntry("android split action bar landscape bright",function(){var c=new mxCell("",new mxGeometry(0,0,320,70),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.split_action_bar_landscape;fillColor=#E6E6E6;");c.vertex=!0; +var d=new mxCell("Split",new mxGeometry(0,0,320,30),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.anchor;fontStyle=1;");d.vertex=!0;c.insert(d);d=new mxCell("Action",new mxGeometry(0,40,320,30),"strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.anchor;fontStyle=1;");d.vertex=!0;c.insert(d);return a.createVertexTemplateFromCells([c],c.geometry.width,c.geometry.height,"Split Action Bar Landscape (Bright)")}),this.createVertexTemplateEntry("strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.statusBar;align=center;fillColor=#000000;strokeColor=#ffffff;fontColor=#ffffff;fontSize=10;", +183.57,15.825,"","Status bar (portrait)",null,null,"android status bar portrait"),this.createVertexTemplateEntry("strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.statusBar;align=center;fillColor=#000000;strokeColor=#ffffff;fontColor=#ffffff;fontSize=10;",320.087,15.825,"","Status bar (landscape)",null,null,"android status bar landscape"),this.createVertexTemplateEntry(b+"switch_off;fillColor=#666666;",80,20,"","Switch Off",null,null,"android switch off"),this.createVertexTemplateEntry(b+ +"switch_off;fillColor=#E6E6E6;",80,20,"","Switch Off",null,null,"android switch off"),this.createVertexTemplateEntry(b+"switch_on;fillColor=#666666;",80,20,"","Switch On",null,null,"android switch on"),this.createVertexTemplateEntry(b+"switch_on;fillColor=#E6E6E6;",80,20,"","Switch On",null,null,"android switch on"),this.addDataEntry("android tab tabulator bar dark",185,30,"Tab Bar Dark","3ZZfb8IgEMA/Da8NhdY/r+02n/bkkj1jQSGjxVCc7T79KMVpp81qnG6RhIS744D7cVwAOM2rmSZr/qwokwA/ApxqpUw7yquUSQkQFBTgB4AQtB2gpx5r6KxwTTQrzBAH1Dq8E7lhraZVlKaWXlEard7Yq6CGW0UIcMJNLv2w5ISqrRWgFSgpOaNesJZ1s0JerZroAlJQrQQNtGaZPVqi5+KD+blLIWWqpNJuRxy51qzhtt5ZClVYh8SfmGnDqt6oncqHPGMqZ0bXdsrWR9HMmMStG2dixb0bbmlBUrby6st1z9AOPMbTSPER0heysIrw2mRJkfEGVLJUhZn7bUIvH+BdujaUJPqRZDQK0JVYRj0s/yZLv2PtZi2E02mW9WXtNe6gOuJ/m1uJ/2PRwHgRs/iiohGdxlz7SxgPZnw54lFP4uO7KiLeYYqCm+bvuAdudI9wQzwJxjfFOxlQHjwgKdzr7D7ZQwBUNC9fqMLqS7VpTv87UMJdytWdmnb4QYDHeND5eKy4/845W+e39wk="), this.addDataEntry("android tab tabulator bar dark",185,30,"Tab Bar Dark","3ZZRb4MgEIB/Da9GQdvuVbf1aU9dsmdaaCFDaZCuul8/1OtqV81cOrulJCbcHQfcx3k5RJK0mBu6FU+acYXIAyKJ0do2s7RIuFII+5Ihco8w9t2H8GOPNait/pYantkhDrhxeKNqxxtNo8htqUCRW6Nf+YtkVjhFgEgsbKpgmgvK9N4JvhMYzQVnIDjLttohLTZVdB7NmNGSecbwlbtabBbyncPatVQq0Uqb+kQS1qPaoz76YMl05hxiuDE3lhe9UdcqCHnOdcqtKd2SPURRrZhFjZvgciPAjTS0fJo38ubT9cjQTQBjN1JyhvSZLp0iGJsszVaiAhWvdWYXcEwAcgvvuh5DSeJvSYYTD4/EMuxh+TdZ+hVrK2shNzsTdgz8xRn66zxI9B/rBSHLiEcX1YuwG3MJjzAdzPhyxJOenCc3VT/A4Q57V83faQ/c8BbhBmTmTa+KdzagPAAgJTsqZhsAk9WfL3Xm9LneVbf/HSjBIeXKk5rW7g38czz453iceOzkattJo/cB"), this.addDataEntry("android tab tabulator bar bright",185,30,"Tab Bar Bright","3ZZfb4MgEMA/Da9GQdvutW7r0566ZM+0YCFDaJCuuk8/QLr+cWYuXbulJCbcHSfc784TgPKynmm8Zk+KUAHQA0C5Vsq0s7LOqRAAxpwAdA8gjO0D4GOPNfHWeI01lWaIA2wd3rDY0FbTKirTiKCojFav9IUTw6wiAWjKTCnCtGKYqK0VYisQXDFKgmAta/eGsl656CIsiVacRFrTpT3aVM/5Ow1rCy5EroTSfkdE/XDv8FvvLFJJpwwnptrQujdqrwohz6gqqdGNXbINUbgVk6x1Y5SvWHBDLa0YV628+nTdM7STgPFrpKiD9BkvrCK5NFksl8yBmhZKmnnYJgnyAd6RH0NJwm9JpqMIXohl2sPyb6r0FOtx1abpMiuyvqo9yUHhx5k5qDv8r5OV7D82DYQWGe3FPwhz+jXmJiRhPJjx+YhHPYWPbqqJBIc7GF21fsc9cNNbhJugSTS+Kt7JgPYQAAkuu//5QwCEuy+fK2n1ldq40/8OlGRXcs1RTzu8IMRdPPDneKy4v85529Ft7wM="), this.addDataEntry("android tab tabulator bar bright",185,30,"Tab Bar Bright","3Zbfb8IgEMf/Gl6bFlp1r3abT3tyyZ5RUMhoMRRnu79+0J6zzjbr4nSLJE2473H8+HC9gEialTNDN+JJM64QeUAkNVrbppeVKVcK4VAyRO4RxqH7EH7s8Ua1N9xQw3M7JAA3AW9UbXmjNEJhKwVCYY1+5S+SWeGECJGpsJmCbiEo0ztnhM5gtBCcgeE8Gz9DVq796QKaM6MlC4zhS7e1qZnLdw5jV1KpVCtt6hUJr5ufo15678l17kXYMTeWl72nriU48ozrjFtTuSE7OIUfMUmaMMHlWkAYaWiFtGjs9WfogaHrAMZupOQE6TNdOCG6NFmaL4UHNV3p3M5hmQjsFt5R3YaSxN+SjEcBvhDLuIfl32TpV6ytrIXc7EzYS+AvT9Bf50KS/1gvCFkkPDmrXsTdmCu4hPFgxucjHvXkPLmp+gEBdzi4av6Oe+DGtwg3IpNgfFW8kwHlAQAp2VEx2wCY9H++1LnTC731u/8dKNE+5aqjmtZ+G4SnePDP8Tjz8JKrfUcPvQ8="), this.createVertexTemplateEntry("strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.textfield;align=center;strokeColor=#4D4D4D;pointerEvents=1",174,30,"","Textfield Disabled",null,null,"android textfield disabled"),this.createVertexTemplateEntry("strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.textfield;align=center;strokeColor=#999999;pointerEvents=1",174,30,"","Textfield Normal",null,null,"android textfield normal"),this.createVertexTemplateEntry("strokeWidth=1;html=1;shadow=0;dashed=0;shape=mxgraph.android.textfield;align=center;strokeColor=#33b5e5;pointerEvents=1", -174,30,"","Textfield Activated",null,null,"android textfield activated"),this.createVertexTemplateEntry(d+"text_insertion_point;",20,30,"","Text Insertion Point",null,null,"android textfield insertion point"),this.createVertexTemplateEntry(d+"textSelHandles;fillColor=#33b5e5;strokeColor=#0099cc;",168.8,42.2,"","Text Selection Handles",null,null,"android text selection handle"),this.createVertexTemplateEntry(d+"time_picker;",150,230,"","Time Picker (Bright)",null,null,"android time picker bright"), -this.createVertexTemplateEntry(d+"time_picker_dark;",150,230,"","Time Picker (Dark)",null,null,"android time picker dark"),this.createVertexTemplateEntry(e+"rect;fillColor=#33b5e5;",50,50,"","Color",null,null,"android color"),this.createVertexTemplateEntry(e+"rect;fillColor=#0099cc;",50,50,"","Color",null,null,"android color"),this.createVertexTemplateEntry(e+"rect;fillColor=#aa66cc;",50,50,"","Color",null,null,"android color"),this.createVertexTemplateEntry(e+"rect;fillColor=#9933cc;",50,50,"","Color", +174,30,"","Textfield Activated",null,null,"android textfield activated"),this.createVertexTemplateEntry(b+"text_insertion_point;",20,30,"","Text Insertion Point",null,null,"android textfield insertion point"),this.createVertexTemplateEntry(b+"textSelHandles;fillColor=#33b5e5;strokeColor=#0099cc;",168.8,42.2,"","Text Selection Handles",null,null,"android text selection handle"),this.createVertexTemplateEntry(b+"time_picker;",150,230,"","Time Picker (Bright)",null,null,"android time picker bright"), +this.createVertexTemplateEntry(b+"time_picker_dark;",150,230,"","Time Picker (Dark)",null,null,"android time picker dark"),this.createVertexTemplateEntry(e+"rect;fillColor=#33b5e5;",50,50,"","Color",null,null,"android color"),this.createVertexTemplateEntry(e+"rect;fillColor=#0099cc;",50,50,"","Color",null,null,"android color"),this.createVertexTemplateEntry(e+"rect;fillColor=#aa66cc;",50,50,"","Color",null,null,"android color"),this.createVertexTemplateEntry(e+"rect;fillColor=#9933cc;",50,50,"","Color", null,null,"android color"),this.createVertexTemplateEntry(e+"rect;fillColor=#99cc00;",50,50,"","Color",null,null,"android color"),this.createVertexTemplateEntry(e+"rect;fillColor=#669900;",50,50,"","Color",null,null,"android color"),this.createVertexTemplateEntry(e+"rect;fillColor=#ffbb33;",50,50,"","Color",null,null,"android color"),this.createVertexTemplateEntry(e+"rect;fillColor=#ff8800;",50,50,"","Color",null,null,"android color"),this.createVertexTemplateEntry(e+"rect;fillColor=#ff4444;",50, -50,"","Color",null,null,"android color"),this.createVertexTemplateEntry(e+"rect;fillColor=#cc0000;",50,50,"","Color",null,null,"android color")];this.addPalette("android",mxResources.get("android"),!1,mxUtils.bind(this,function(a){for(var b=0;b<c.length;b++)a.appendChild(c[b](a))}))}})();(function(){Sidebar.prototype.addArchiMatePalette=function(){this.addPaletteFunctions("archimate",mxResources.get("archiMate21"),!1,[this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#ffff99;shape=mxgraph.archimate.application;appType=actor",100,75,"","Business Actor",null,null,this.getTagsForStencil("mxgraph.archimate","application","archimate business actor").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#ffff99;shape=mxgraph.archimate.application;appType=role", +50,"","Color",null,null,"android color"),this.createVertexTemplateEntry(e+"rect;fillColor=#cc0000;",50,50,"","Color",null,null,"android color")];this.addPalette("android",mxResources.get("android"),!1,mxUtils.bind(this,function(a){for(var c=0;c<d.length;c++)a.appendChild(d[c](a))}))}})();(function(){Sidebar.prototype.addArchiMatePalette=function(){this.addPaletteFunctions("archimate",mxResources.get("archiMate21"),!1,[this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#ffff99;shape=mxgraph.archimate.application;appType=actor",100,75,"","Business Actor",null,null,this.getTagsForStencil("mxgraph.archimate","application","archimate business actor").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#ffff99;shape=mxgraph.archimate.application;appType=role", 100,75,"","Business Role",null,null,this.getTagsForStencil("mxgraph.archimate","","archimate business role").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#ffff99;shape=mxgraph.archimate.application;appType=collab",100,75,"","Business Collaboration",null,null,this.getTagsForStencil("mxgraph.archimate","","archimate business collaboration").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#ffff99;shape=mxgraph.archimate.application;appType=interface", 100,75,"","Business Interface",null,null,this.getTagsForStencil("mxgraph.archimate","","archimate business interface").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#ffff99;shape=mxgraph.archimate.application;appType=interface2",100,75,"","Business Interface",null,null,this.getTagsForStencil("mxgraph.archimate","","archimate business interface").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#ffff99;shape=mxgraph.archimate.location", 100,75,"","Location",null,null,this.getTagsForStencil("mxgraph.archimate","","archimate location").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#ffff99;shape=mxgraph.archimate.business;busType=process",100,75,"","Business Process",null,null,this.getTagsForStencil("mxgraph.archimate","","archimate business process").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#ffff99;shape=mxgraph.archimate.business;busType=function", @@ -3586,7 +3587,7 @@ null,this.getTagsForStencil("mxgraph.archimate","","archimate plateau").join(" " 150,75,"","Application Interaction",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate application layer interaction").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#99ffff;strokeColor=#000000;shape=mxgraph.archimate3.interaction;",75,75,"","Interaction",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate application layer interaction").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#99ffff;strokeColor=#000000;shape=mxgraph.archimate3.application;appType=serv;archiType=rounded", 150,75,"","Application Service",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate application layer service").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#99ffff;strokeColor=#000000;shape=mxgraph.archimate3.service;",60,35,"","Service",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate application layer service").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#99ffff;strokeColor=#000000;shape=mxgraph.archimate3.application;appType=event;archiType=rounded", 150,75,"","Application Event",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate application layer event").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#99ffff;strokeColor=#000000;shape=mxgraph.archimate3.event;",60,35,"","Event",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate application layer event").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#99ffff;strokeColor=#000000;shape=mxgraph.archimate3.businessObject;overflow=fill", -150,75,'<table cellpadding="0" cellspacing="0" style="font-size:1em;width:100%;height:100%;"><tr style="height:20px;"><td align="center"></td></tr><tr><td align="left" valign="top" style="padding:4px;"></td></tr></table>',"Data Object",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate application layer data object").join(" "))];this.addPalette("archimate3Application","Archimate 3.0 / Application",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))}; +150,75,'<table cellpadding="0" cellspacing="0" style="font-size:1em;width:100%;height:100%;"><tr style="height:20px;"><td align="center"></td></tr><tr><td align="left" valign="top" style="padding:4px;"></td></tr></table>',"Data Object",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate application layer data object").join(" "))];this.addPalette("archimate3Application","Archimate 3.0 / Application",!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))}; Sidebar.prototype.addArchimate3BusinessPalette=function(){var a=[this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#ffff99;strokeColor=#000000;shape=mxgraph.archimate3.application;appType=actor;archiType=square;",150,75,"","Business Actor",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate business layer actor").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#ffff99;strokeColor=#000000;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.archimate3.actor;", 50,95,"","Actor",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate business layer actor").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#ffff99;strokeColor=#000000;shape=mxgraph.archimate3.application;appType=role;archiType=square;",150,75,"","Business Role",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate business layer role").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#ffff99;strokeColor=#000000;shape=mxgraph.archimate3.role;", 85,50,"","Role",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate business layer role").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#ffff99;strokeColor=#000000;shape=mxgraph.archimate3.application;appType=collab;archiType=square;",150,75,"","Business Collaboration",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate business layer collaboration").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#ffff99;strokeColor=#000000;shape=mxgraph.archimate3.collaboration;", @@ -3598,33 +3599,33 @@ Sidebar.prototype.addArchimate3BusinessPalette=function(){var a=[this.createVert 60,35,"","Service",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate business layer service").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#ffff99;strokeColor=#000000;shape=mxgraph.archimate3.application;appType=event;archiType=rounded;",150,75,"","Application Event",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate business layer event").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#ffff99;strokeColor=#000000;shape=mxgraph.archimate3.event;", 60,35,"","Event",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate business layer event").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#ffff99;strokeColor=#000000;shape=mxgraph.archimate3.businessObject;overflow=fill;",150,75,'<table cellpadding="0" cellspacing="0" style="font-size:1em;width:100%;height:100%;"><tr style="height:20px;"><td align="center"></td></tr><tr><td align="left" valign="top" style="padding:4px;"></td></tr></table>', "Business Object",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate business layer data object").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#ffff99;strokeColor=#000000;shape=mxgraph.archimate3.contract;",150,75,"","Contract",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate business layer contract").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#ffff99;strokeColor=#000000;shape=mxgraph.archimate3.product;", -150,75,"","Product",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate business layer product").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#ffff99;strokeColor=#000000;shape=mxgraph.archimate3.representation;",150,90,"","Representation",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate business layer representation").join(" "))];this.addPalette("archimate3Business","Archimate 3.0 / Business",!1,mxUtils.bind(this,function(d){for(var e= -0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addArchimate3CompositePalette=function(){var a=[this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#FFB973;strokeColor=#000000;shape=mxgraph.archimate3.application;appType=location;archiType=square;",150,75,"","Location",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate composite element location").join(" ")),this.createVertexTemplateEntry("shape=folder;spacingTop=10;tabWidth=100;tabHeight=25;tabPosition=left;html=1;dashed=1;", -150,105,"","Group",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate composite element actor").join(" "))];this.addPalette("archimate3Composite","Archimate 3.0 / Composite",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addArchimate3ImplementationAndMigrationPalette=function(){var a=[this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#FFE0E0;strokeColor=#000000;shape=mxgraph.archimate3.application;archiType=rounded;", +150,75,"","Product",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate business layer product").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#ffff99;strokeColor=#000000;shape=mxgraph.archimate3.representation;",150,90,"","Representation",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate business layer representation").join(" "))];this.addPalette("archimate3Business","Archimate 3.0 / Business",!1,mxUtils.bind(this,function(b){for(var e= +0;e<a.length;e++)b.appendChild(a[e](b))}))};Sidebar.prototype.addArchimate3CompositePalette=function(){var a=[this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#FFB973;strokeColor=#000000;shape=mxgraph.archimate3.application;appType=location;archiType=square;",150,75,"","Location",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate composite element location").join(" ")),this.createVertexTemplateEntry("shape=folder;spacingTop=10;tabWidth=100;tabHeight=25;tabPosition=left;html=1;dashed=1;", +150,105,"","Group",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate composite element actor").join(" "))];this.addPalette("archimate3Composite","Archimate 3.0 / Composite",!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))};Sidebar.prototype.addArchimate3ImplementationAndMigrationPalette=function(){var a=[this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#FFE0E0;strokeColor=#000000;shape=mxgraph.archimate3.application;archiType=rounded;", 150,75,"","Work Package",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate implementation migration element work package").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#FFE0E0;strokeColor=#000000;shape=mxgraph.archimate3.application;appType=event;archiType=rounded;",150,75,"","Implementation Event",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate implementation migration element implementation event").join(" ")), this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#FFE0E0;strokeColor=#000000;shape=mxgraph.archimate3.event;",60,35,"","Event",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate implementation migration element event").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#FFE0E0;strokeColor=#000000;shape=mxgraph.archimate3.deliverable;",150,60,"","Deliverable",null,null,this.getTagsForStencil("mxgraph.archimate3", "","archimate implementation migration element deliverable").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#E0FFE0;strokeColor=#000000;shape=mxgraph.archimate3.tech;techType=plateau;",150,75,"","Plateau",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate implementation migration element plateau").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#E0FFE0;strokeColor=#000000;shape=mxgraph.archimate3.gap;", -150,60,"","Gap",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate implementation migration element gap").join(" "))];this.addPalette("archimate3Implementation and Migration","Archimate 3.0 / Implementation and Migration",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addArchimate3MotivationPalette=function(){var a=[this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#CCCCFF;strokeColor=#000000;shape=mxgraph.archimate3.application;appType=role;archiType=oct;", +150,60,"","Gap",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate implementation migration element gap").join(" "))];this.addPalette("archimate3Implementation and Migration","Archimate 3.0 / Implementation and Migration",!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))};Sidebar.prototype.addArchimate3MotivationPalette=function(){var a=[this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#CCCCFF;strokeColor=#000000;shape=mxgraph.archimate3.application;appType=role;archiType=oct;", 150,75,"","Stakeholder",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate implementation motivation element stakeholder").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#CCCCFF;strokeColor=#000000;shape=mxgraph.archimate3.application;appType=driver;archiType=oct;",150,75,"","Driver",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate implementation motivation element driver").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#CCCCFF;strokeColor=#000000;shape=mxgraph.archimate3.application;appType=assess;archiType=oct;", 150,75,"","Assesment",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate implementation motivation element assessment").join(" ")),this.createVertexTemplateEntry("shape=ellipse;html=1;whiteSpace=wrap;fillColor=#CCCCFF;strokeColor=#000000;perimeter=ellipsePerimeter;",150,75,"","Value",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate implementation motivation element value").join(" ")),this.createVertexTemplateEntry("shape=cloud;html=1;whiteSpace=wrap;fillColor=#CCCCFF;strokeColor=#000000;", 150,75,"","Meaning",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate implementation motivation element meaning").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#CCCCFF;strokeColor=#000000;shape=mxgraph.archimate3.application;appType=goal;archiType=oct;",150,75,"","Goal",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate implementation motivation element goal").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#CCCCFF;strokeColor=#000000;shape=mxgraph.archimate3.application;appType=outcome;archiType=oct;", 150,75,"","Outcome",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate implementation motivation element outcome").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#CCCCFF;strokeColor=#000000;shape=mxgraph.archimate3.application;appType=principle;archiType=oct;",150,75,"","Principle",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate implementation motivation element principle").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#CCCCFF;strokeColor=#000000;shape=mxgraph.archimate3.application;appType=requirement;archiType=oct;", 150,75,"","Requirement",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate implementation motivation element requirement").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#CCCCFF;strokeColor=#000000;shape=mxgraph.archimate3.requirement;",100,50,"","Requirement",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate implementation motivation element requirement").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#CCCCFF;strokeColor=#000000;shape=mxgraph.archimate3.application;appType=constraint;archiType=oct;", 150,75,"","Constraint",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate implementation motivation element constraint").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#CCCCFF;strokeColor=#000000;shape=mxgraph.archimate3.constraint;",100,50,"","Constraint",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate implementation motivation element constraint").join(" "))];this.addPalette("archimate3Motivation","Archimate 3.0 / Motivation", -!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addArchimate3PhysicalPalette=function(){var a=[this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#AFFFAF;strokeColor=#000000;shape=mxgraph.archimate3.tech;techType=facility;",150,75,"","Facility",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate physical element facility").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#AFFFAF;strokeColor=#000000;shape=mxgraph.archimate3.tech;techType=equipment;", +!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))};Sidebar.prototype.addArchimate3PhysicalPalette=function(){var a=[this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#AFFFAF;strokeColor=#000000;shape=mxgraph.archimate3.tech;techType=facility;",150,75,"","Facility",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate physical element facility").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#AFFFAF;strokeColor=#000000;shape=mxgraph.archimate3.tech;techType=equipment;", 150,75,"","Equipment",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate physical element equipment").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#AFFFAF;strokeColor=#000000;shape=mxgraph.archimate3.application;appType=material;archiType=square;",150,75,"","Material",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate physical element material").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#AFFFAF;strokeColor=#000000;shape=mxgraph.archimate3.application;appType=distribution;archiType=square;", 150,75,"","Distribution Network",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate physical element distribution").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#AFFFAF;strokeColor=#000000;shape=mxgraph.archimate3.distribution;",90,40,"","Distribution Network",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate physical element distribution").join(" "))];this.addPalette("archimate3Physical","Archimate 3.0 / Physical", -!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addArchimate3RelationshipsPalette=function(){var a=this,d=[this.createEdgeTemplateEntry("html=1;endArrow=diamondThin;endFill=1;edgeStyle=elbowEdgeStyle;elbow=vertical;endSize=10;",160,0,"","Composition",null,this.getTagsForStencil("mxgraph.archimate3","","archimate relationship composition").join(" ")),this.createEdgeTemplateEntry("html=1;endArrow=diamondThin;endFill=0;edgeStyle=elbowEdgeStyle;elbow=vertical;endSize=10;", +!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))};Sidebar.prototype.addArchimate3RelationshipsPalette=function(){var a=this,b=[this.createEdgeTemplateEntry("html=1;endArrow=diamondThin;endFill=1;edgeStyle=elbowEdgeStyle;elbow=vertical;endSize=10;",160,0,"","Composition",null,this.getTagsForStencil("mxgraph.archimate3","","archimate relationship composition").join(" ")),this.createEdgeTemplateEntry("html=1;endArrow=diamondThin;endFill=0;edgeStyle=elbowEdgeStyle;elbow=vertical;endSize=10;", 160,0,"","Aggregation",null,this.getTagsForStencil("mxgraph.archimate3","","archimate relationship aggregation").join(" ")),this.createEdgeTemplateEntry("endArrow=block;html=1;endFill=1;startArrow=oval;startFill=1;edgeStyle=elbowEdgeStyle;elbow=vertical;",160,0,"","Assignment",null,this.getTagsForStencil("mxgraph.archimate3","","archimate relationship assignment").join(" ")),this.createEdgeTemplateEntry("edgeStyle=elbowEdgeStyle;html=1;endArrow=block;elbow=vertical;endFill=0;dashed=1;",160,0,"","Realization", null,this.getTagsForStencil("mxgraph.archimate3","","archimate relationship realization").join(" ")),this.createEdgeTemplateEntry("edgeStyle=elbowEdgeStyle;html=1;endArrow=open;elbow=vertical;endFill=1;",160,0,"","Serving",null,this.getTagsForStencil("mxgraph.archimate3","","archimate relationship serving").join(" ")),this.createEdgeTemplateEntry("edgeStyle=elbowEdgeStyle;html=1;endArrow=none;elbow=vertical;dashed=1;startFill=0;dashPattern=1 4;",160,0,"","Access",null,this.getTagsForStencil("mxgraph.archimate3", "","archimate relationship access").join(" ")),this.createEdgeTemplateEntry("edgeStyle=elbowEdgeStyle;html=1;endArrow=open;elbow=vertical;endFill=0;dashed=1;startArrow=open;startFill=0;dashPattern=1 4;",160,0,"","Access",null,this.getTagsForStencil("mxgraph.archimate3","","archimate relationship access").join(" ")),this.createEdgeTemplateEntry("edgeStyle=elbowEdgeStyle;html=1;endArrow=open;elbow=vertical;endFill=0;dashed=1;dashPattern=1 4;",160,0,"","Access",null,this.getTagsForStencil("mxgraph.archimate3", -"","archimate relationship access").join(" ")),this.addEntry("uml influence",function(){var e=new mxCell("+/-",new mxGeometry(0,0,0,0),"edgeStyle=elbowEdgeStyle;html=1;endArrow=open;elbow=vertical;endFill=0;dashed=1;dashPattern=6 4;");e.geometry.setTerminalPoint(new mxPoint(0,0),!0);e.geometry.setTerminalPoint(new mxPoint(160,0),!1);e.geometry.relative=!0;e.geometry.x=1;e.geometry.y=10;e.edge=!0;return a.createEdgeTemplateFromCells([e],160,0,"Influence")}),this.createEdgeTemplateEntry("edgeStyle=elbowEdgeStyle;html=1;endArrow=block;dashed=0;elbow=vertical;endFill=1;", +"","archimate relationship access").join(" ")),this.addEntry("uml influence",function(){var b=new mxCell("+/-",new mxGeometry(0,0,0,0),"edgeStyle=elbowEdgeStyle;html=1;endArrow=open;elbow=vertical;endFill=0;dashed=1;dashPattern=6 4;");b.geometry.setTerminalPoint(new mxPoint(0,0),!0);b.geometry.setTerminalPoint(new mxPoint(160,0),!1);b.geometry.relative=!0;b.geometry.x=1;b.geometry.y=10;b.edge=!0;return a.createEdgeTemplateFromCells([b],160,0,"Influence")}),this.createEdgeTemplateEntry("edgeStyle=elbowEdgeStyle;html=1;endArrow=block;dashed=0;elbow=vertical;endFill=1;", 160,0,"","Triggering",null,this.getTagsForStencil("mxgraph.archimate3","","archimate relationship triggering").join(" ")),this.createEdgeTemplateEntry("edgeStyle=elbowEdgeStyle;html=1;endArrow=block;dashed=1;elbow=vertical;endFill=1;dashPattern=6 4;",160,0,"","Flow",null,this.getTagsForStencil("mxgraph.archimate3","","archimate relationship flow").join(" ")),this.createEdgeTemplateEntry("endArrow=block;html=1;endFill=0;edgeStyle=elbowEdgeStyle;elbow=vertical;",160,0,"","Specialization",null,this.getTagsForStencil("mxgraph.archimate3", "","archimate relationship specialization").join(" ")),this.createEdgeTemplateEntry("edgeStyle=elbowEdgeStyle;html=1;endArrow=none;elbow=vertical;",160,0,"","Association",null,this.getTagsForStencil("mxgraph.archimate3","","archimate relationship association").join(" ")),this.createVertexTemplateEntry("ellipse;html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;fillColor=#000000;strokeColor=#000000;",10,10,"","And Junction",null,this.getTagsForStencil("mxgraph.archimate3", -"","archimate relationship junction").join(" ")),this.createVertexTemplateEntry("ellipse;html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;fillColor=#ffffff;strokeColor=#000000;",10,10,"","Or Junction",null,this.getTagsForStencil("mxgraph.archimate3","","archimate relationship junction").join(" "))];this.addPalette("archimate3Relationships","Archimate 3.0 / Relationships",!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addArchimate3StrategyPalette= +"","archimate relationship junction").join(" ")),this.createVertexTemplateEntry("ellipse;html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;fillColor=#ffffff;strokeColor=#000000;",10,10,"","Or Junction",null,this.getTagsForStencil("mxgraph.archimate3","","archimate relationship junction").join(" "))];this.addPalette("archimate3Relationships","Archimate 3.0 / Relationships",!1,mxUtils.bind(this,function(a){for(var c=0;c<b.length;c++)a.appendChild(b[c](a))}))};Sidebar.prototype.addArchimate3StrategyPalette= function(){var a=[this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#F5DEAA;strokeColor=#000000;shape=mxgraph.archimate3.application;appType=resource;archiType=square;",150,75,"","Resource",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate strategy resource").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#F5DEAA;strokeColor=#000000;shape=mxgraph.archimate3.application;appType=capability;archiType=rounded;", 150,75,"","Capability",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate strategy capability").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#F5DEAA;strokeColor=#000000;shape=mxgraph.archimate3.application;appType=course;archiType=rounded;",150,75,"","Course of Action",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate strategy course action").join(" "))];this.addPalette("archimate3Strategy","Archimate 3.0 / Strategy", -!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addArchimate3TechnologyPalette=function(){var a=[this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#AFFFAF;strokeColor=#000000;shape=mxgraph.archimate3.application;appType=node;archiType=square;",150,75,"","Node",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate technology node").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#AFFFAF;strokeColor=#000000;shape=mxgraph.archimate3.node;", +!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))};Sidebar.prototype.addArchimate3TechnologyPalette=function(){var a=[this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#AFFFAF;strokeColor=#000000;shape=mxgraph.archimate3.application;appType=node;archiType=square;",150,75,"","Node",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate technology node").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#AFFFAF;strokeColor=#000000;shape=mxgraph.archimate3.node;", 100,60,"","Node",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate technology node").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#AFFFAF;strokeColor=#000000;shape=mxgraph.archimate3.tech;techType=device;",150,75,"","Device",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate technology device").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#AFFFAF;strokeColor=#000000;shape=mxgraph.archimate3.device;", 80,65,"","Device",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate technology device").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#AFFFAF;strokeColor=#000000;shape=mxgraph.archimate3.application;appType=sysSw;archiType=square;",150,75,"","System Software",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate technology system software").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#AFFFAF;strokeColor=#000000;shape=mxgraph.archimate3.tech;techType=sysSw;", 120,75,"","System Software",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate technology system software").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#AFFFAF;strokeColor=#000000;shape=mxgraph.archimate3.application;appType=collab;archiType=square;",150,75,"","Technology Collaboration",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate technology collaboration").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#AFFFAF;strokeColor=#000000;shape=mxgraph.archimate3.collaboration;", @@ -3637,7 +3638,7 @@ function(){var a=[this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteS 60,35,"","Event",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate technology event").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#AFFFAF;strokeColor=#000000;shape=mxgraph.archimate3.application;appType=artifact;archiType=square;",150,75,"","Technology Artifact",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate technology artifact").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#AFFFAF;strokeColor=#000000;shape=mxgraph.archimate3.artifact;", 50,75,"","Artifact",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate technology artifact").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#AFFFAF;strokeColor=#000000;shape=mxgraph.archimate3.application;appType=netw;archiType=square;",150,75,"","Communication Network",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate technology communication network").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#AFFFAF;strokeColor=#000000;shape=mxgraph.archimate3.commNetw;strokeWidth=6;", 100,30,"","Communication Network",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate technology communication network").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#AFFFAF;strokeColor=#000000;shape=mxgraph.archimate3.application;appType=path;archiType=square;",150,75,"","Path",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate technology communication network").join(" ")),this.createVertexTemplateEntry("html=1;outlineConnect=0;whiteSpace=wrap;fillColor=#AFFFAF;strokeColor=#000000;shape=mxgraph.archimate3.path;strokeWidth=6;", -100,30,"","Path",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate technology path").join(" "))];this.addPalette("archimate3Technology","Archimate 3.0 / Technology",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))}})();(function(){Sidebar.prototype.addArrows2Palette=function(){var a=[this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.arrow;dy=0.6;dx=40;notch=0;",100,70,"","Arrow Right",null,null,this.getTagsForStencil("mxgraph.arrows2","arrow","arrow right").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.arrow;dy=0.6;dx=40;flipH=1;notch=0;",100,70,"","Arrow Left",null,null,this.getTagsForStencil("mxgraph.arrows2", +100,30,"","Path",null,null,this.getTagsForStencil("mxgraph.archimate3","","archimate technology path").join(" "))];this.addPalette("archimate3Technology","Archimate 3.0 / Technology",!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))}})();(function(){Sidebar.prototype.addArrows2Palette=function(){var a=[this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.arrow;dy=0.6;dx=40;notch=0;",100,70,"","Arrow Right",null,null,this.getTagsForStencil("mxgraph.arrows2","arrow","arrow right").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.arrow;dy=0.6;dx=40;flipH=1;notch=0;",100,70,"","Arrow Left",null,null,this.getTagsForStencil("mxgraph.arrows2", "arrow","arrow leftt").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.arrow;dy=0.6;dx=40;direction=north;notch=0;",70,100,"","Arrow Up",null,null,this.getTagsForStencil("mxgraph.arrows2","arrow","arrow up").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.arrow;dy=0.6;dx=40;direction=south;notch=0;",70,100,"","Arrow Down",null,null,this.getTagsForStencil("mxgraph.arrows2", "arrow","arrow down").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.arrow;dy=0;dx=30;notch=30;",100,60,"","Chevron Arrow",null,null,this.getTagsForStencil("mxgraph.arrows2","arrow","arrow chevron").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.arrow;dy=0.6;dx=40;notch=15;",100,70,"","Notched Arrow",null,null,this.getTagsForStencil("mxgraph.arrows2", "arrow","arrow notched").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.arrow;dy=0;dx=10;notch=10;",100,30,"","Notched Signal-In Arrow",null,null,this.getTagsForStencil("mxgraph.arrows2","arrow","arrow notched signal in").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.arrow;dy=0;dx=10;notch=0;",100,30,"","Signal-In Arrow",null,null,this.getTagsForStencil("mxgraph.arrows2", @@ -3651,8 +3652,8 @@ null,this.getTagsForStencil("mxgraph.arrows2","arrow","arrow stylised notch notc 100,100,"","Callout with Double Arrow 90"+String.fromCharCode(176),null,null,this.getTagsForStencil("mxgraph.arrows2","arrow","arrow callout double two way orthogonal").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.quadArrow;dy=10;dx=20;notch=24;arrowHead=10;",100,100,"","Quad Arrow",null,null,this.getTagsForStencil("mxgraph.arrows2","arrow","arrow four way quad").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.triadArrow;dy=10;dx=20;arrowHead=40;", 100,70,"","Triad Arrow",null,null,this.getTagsForStencil("mxgraph.arrows2","arrow","arrow three way triad").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.tailedArrow;dy1=10;dx1=20;notch=0;arrowHead=20;dx2=25;dy2=30;",100,60,"","Tailed Arrow",null,null,this.getTagsForStencil("mxgraph.arrows2","arrow","arrow tailed").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.tailedNotchedArrow;dy1=10;dx1=20;notch=20;arrowHead=20;dx2=25;dy2=30;", 100,60,"","Tailed Arrow with Notch",null,null,this.getTagsForStencil("mxgraph.arrows2","arrow","arrow tailed notch notched").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.stripedArrow;dy=0.6;dx=40;notch=25;",100,70,"","Striped Arrow",null,null,this.getTagsForStencil("mxgraph.arrows2","arrow","arrow striped").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.jumpInArrow;dy=15;dx=38;arrowHead=55;", -100,100,"","Jump-In Arrow",null,null,this.getTagsForStencil("mxgraph.arrows2","arrow","arrow jump in").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.uTurnArrow;dy=11;arrowHead=43;dx2=25;",100,100,"","U Turn Arrow",null,null,this.getTagsForStencil("mxgraph.arrows2","arrow","arrow u turn uturn").join(" "))];this.addPalette("arrows2",mxResources.get("arrows"),!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))}})();(function(){Sidebar.prototype.addAtlassianPalette=function(){var a=this,d=[this.addEntry("atlassian issue ticket bug jira task feature request",function(){var e=new mxCell("Task description",new mxGeometry(0,0,200,50),"html=1;shadow=0;dashed=0;shape=mxgraph.atlassian.issue;issueType=story;issuePriority=blocker;issueStatus=inProgress;verticalAlign=top;align=left;whiteSpace=wrap;overflow=hidden;spacingTop=25;strokeColor=#A8ADB0;fillColor=#EEEEEE;fontSize=12;backgroundOutline=1;");e.vertex=!0;var b= -new mxCell("ID",new mxGeometry(0,0,60,20),"strokeColor=none;fillColor=none;part=1;resizable=0;align=left;autosize=1;points=[];deletable=0;connectable=0;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(20,0);b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Issue")}),this.createVertexTemplateEntry("image;image=img/lib/atlassian/Atlassian_Logo.svg;",66,66,"","Atlassian",null,null,this.getTagsForStencil("mxgraph.atlassian","atlassian logo", +100,100,"","Jump-In Arrow",null,null,this.getTagsForStencil("mxgraph.arrows2","arrow","arrow jump in").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.uTurnArrow;dy=11;arrowHead=43;dx2=25;",100,100,"","U Turn Arrow",null,null,this.getTagsForStencil("mxgraph.arrows2","arrow","arrow u turn uturn").join(" "))];this.addPalette("arrows2",mxResources.get("arrows"),!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))}})();(function(){Sidebar.prototype.addAtlassianPalette=function(){var a=this,b=[this.addEntry("atlassian issue ticket bug jira task feature request",function(){var b=new mxCell("Task description",new mxGeometry(0,0,200,50),"html=1;shadow=0;dashed=0;shape=mxgraph.atlassian.issue;issueType=story;issuePriority=blocker;issueStatus=inProgress;verticalAlign=top;align=left;whiteSpace=wrap;overflow=hidden;spacingTop=25;strokeColor=#A8ADB0;fillColor=#EEEEEE;fontSize=12;backgroundOutline=1;");b.vertex=!0;var c= +new mxCell("ID",new mxGeometry(0,0,60,20),"strokeColor=none;fillColor=none;part=1;resizable=0;align=left;autosize=1;points=[];deletable=0;connectable=0;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(20,0);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Issue")}),this.createVertexTemplateEntry("image;image=img/lib/atlassian/Atlassian_Logo.svg;",66,66,"","Atlassian",null,null,this.getTagsForStencil("mxgraph.atlassian","atlassian logo", "atlassian ").join(" ")),this.createVertexTemplateEntry("image;image=img/lib/atlassian/Bamboo_Logo.svg;",64,74,"","Bamboo",null,null,this.getTagsForStencil("mxgraph.atlassian","bamboo logo","atlassian ").join(" ")),this.createVertexTemplateEntry("image;image=img/lib/atlassian/Bitbucket_Logo.svg;",57,50,"","Bitbucket",null,null,this.getTagsForStencil("mxgraph.atlassian","bitbucket logo atlassian","atlassian ").join(" ")),this.createVertexTemplateEntry("image;image=img/lib/atlassian/Clover_Logo.svg;", 71,71,"","Clover",null,null,this.getTagsForStencil("mxgraph.atlassian","clover logo","atlassian ").join(" ")),this.createVertexTemplateEntry("image;image=img/lib/atlassian/Confluence_Logo.svg;",63,57,"","Confluence",null,null,this.getTagsForStencil("mxgraph.atlassian","confluence logo","atlassian ").join(" ")),this.createVertexTemplateEntry("image;image=img/lib/atlassian/Crowd_Logo.svg;",66,65,"","Crowd",null,null,this.getTagsForStencil("mxgraph.atlassian","crowd logo","atlassian ").join(" ")),this.createVertexTemplateEntry("image;image=img/lib/atlassian/Crucible_Logo.svg;", 61,61,"","Crucible",null,null,this.getTagsForStencil("mxgraph.atlassian","crucible logo","atlassian ").join(" ")),this.createVertexTemplateEntry("image;image=img/lib/atlassian/Fisheye_Logo.svg;",71,59,"","Fisheye",null,null,this.getTagsForStencil("mxgraph.atlassian","fisheye logo","atlassian ").join(" ")),this.createVertexTemplateEntry("image;image=img/lib/atlassian/Hipchat_Logo.svg;",66,62,"","Hipchat",null,null,this.getTagsForStencil("mxgraph.atlassian","hipchat logo atlassian","atlassian ").join(" ")), @@ -3661,33 +3662,33 @@ null,null,this.getTagsForStencil("mxgraph.atlassian","jira service desk logo atl "atlassian ").join(" ")),this.createVertexTemplateEntry("image;image=img/lib/atlassian/Statuspage_Logo.svg;",75,52,"","Statuspage",null,null,this.getTagsForStencil("mxgraph.atlassian","statuspage logo","atlassian ").join(" ")),this.createVertexTemplateEntry("image;image=img/lib/atlassian/Stride_Logo.svg;",69,57,"","Stride",null,null,this.getTagsForStencil("mxgraph.atlassian","stride logo atlassian","atlassian ").join(" ")),this.createVertexTemplateEntry("image;image=img/lib/atlassian/Trello_Logo.svg;", 70,70,"","Trello",null,null,this.getTagsForStencil("mxgraph.atlassian","trello logo","atlassian ").join(" ")),this.createVertexTemplateEntry("shape=ellipse;fillColor=#6554C0;strokeColor=none;fontColor=#ffffff;align=center;verticalAlign=middle;whiteSpace=wrap;fontSize=46;fontStyle=1;html=1",96,96,"MM","Avatar (Large)",null,null,this.getTagsForStencil("mxgraph.atlassian","avatar","atlassian avatar").join(" ")),this.createVertexTemplateEntry("shape=ellipse;fillColor=#0065FF;strokeColor=none;fontColor=#ffffff;align=center;verticalAlign=middle;whiteSpace=wrap;fontSize=25;fontStyle=1;html=1", 48,48,"MM","Avatar (Main)",null,null,this.getTagsForStencil("mxgraph.atlassian","avatar","atlassian avatar").join(" ")),this.createVertexTemplateEntry("shape=ellipse;fillColor=#36B37E;strokeColor=none;fontColor=#ffffff;align=center;verticalAlign=middle;whiteSpace=wrap;fontSize=17;fontStyle=1;html=1",32,32,"MM","Avatar (Normal)",null,null,this.getTagsForStencil("mxgraph.atlassian","avatar","atlassian avatar").join(" ")),this.createVertexTemplateEntry("shape=ellipse;fillColor=#FFAB00;strokeColor=none;fontColor=#ffffff;align=center;verticalAlign=middle;whiteSpace=wrap;fontSize=12;fontStyle=1;html=1", -24,24,"MM","Avatar (Small)",null,null,this.getTagsForStencil("mxgraph.atlassian","avatar","atlassian avatar").join(" ")),this.createVertexTemplateEntry("shape=ellipse;fillColor=#FF5630;strokeColor=none;fontColor=#ffffff;align=center;verticalAlign=middle;whiteSpace=wrap;fontSize=10;fontStyle=1;html=1",16,16,"M","Avatar (Tiny)",null,null,this.getTagsForStencil("mxgraph.atlassian","avatar","atlassian avatar").join(" ")),this.addEntry("atlassian avatar available",function(){var e=new mxCell("MM",new mxGeometry(0, -0,32,32),"shape=ellipse;fillColor=#6554C0;strokeColor=none;fontColor=#ffffff;align=center;verticalAlign=middle;whiteSpace=wrap;fontSize=17;fontStyle=1;html=1");e.vertex=!0;var b=new mxCell("",new mxGeometry(1,1,10,10),"shape=ellipse;fillColor=#36B37E;strokeColor=#ffffff;strokeWidth=2;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(-10,-10);b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Avatar (Available)")}),this.addEntry("atlassian avatar away", -function(){var e=new mxCell("MM",new mxGeometry(0,0,32,32),"shape=ellipse;fillColor=#FFAB00;strokeColor=none;fontColor=#ffffff;align=center;verticalAlign=middle;whiteSpace=wrap;fontSize=17;fontStyle=1;html=1");e.vertex=!0;var b=new mxCell("",new mxGeometry(1,1,10,10),"html=1;shadow=0;dashed=0;shape=mxgraph.atlassian.away;fillColor=#7A869A;strokeColor=#ffffff;strokeWidth=2;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(-10,-10);b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e], -e.geometry.width,e.geometry.height,"Avatar (Away)")}),this.addEntry("atlassian avatar do not disturb unavailable",function(){var e=new mxCell("MM",new mxGeometry(0,0,32,32),"shape=ellipse;fillColor=#0065FF;strokeColor=none;fontColor=#ffffff;align=center;verticalAlign=middle;whiteSpace=wrap;fontSize=17;fontStyle=1;html=1");e.vertex=!0;var b=new mxCell("",new mxGeometry(1,1,10,10),"html=1;shadow=0;dashed=0;shape=mxgraph.atlassian.do_not_disturb;fillColor=#FF5630;strokeColor=#ffffff;strokeWidth=2;"); -b.geometry.relative=!0;b.geometry.offset=new mxPoint(-10,-10);b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Avatar (Do not disturb)")}),this.createVertexTemplateEntry("rounded=1;arcSize=5;fillColor=#0065FF;strokeColor=none;fontColor=#ffffff;align=center;verticalAlign=middle;whiteSpace=wrap;fontSize=14;fontStyle=1;html=1",40,40,"</>","Container Avatar (Large)",null,null,this.getTagsForStencil("mxgraph.atlassian","avatar","atlassian container avatar large").join(" ")), +24,24,"MM","Avatar (Small)",null,null,this.getTagsForStencil("mxgraph.atlassian","avatar","atlassian avatar").join(" ")),this.createVertexTemplateEntry("shape=ellipse;fillColor=#FF5630;strokeColor=none;fontColor=#ffffff;align=center;verticalAlign=middle;whiteSpace=wrap;fontSize=10;fontStyle=1;html=1",16,16,"M","Avatar (Tiny)",null,null,this.getTagsForStencil("mxgraph.atlassian","avatar","atlassian avatar").join(" ")),this.addEntry("atlassian avatar available",function(){var b=new mxCell("MM",new mxGeometry(0, +0,32,32),"shape=ellipse;fillColor=#6554C0;strokeColor=none;fontColor=#ffffff;align=center;verticalAlign=middle;whiteSpace=wrap;fontSize=17;fontStyle=1;html=1");b.vertex=!0;var c=new mxCell("",new mxGeometry(1,1,10,10),"shape=ellipse;fillColor=#36B37E;strokeColor=#ffffff;strokeWidth=2;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-10,-10);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Avatar (Available)")}),this.addEntry("atlassian avatar away", +function(){var b=new mxCell("MM",new mxGeometry(0,0,32,32),"shape=ellipse;fillColor=#FFAB00;strokeColor=none;fontColor=#ffffff;align=center;verticalAlign=middle;whiteSpace=wrap;fontSize=17;fontStyle=1;html=1");b.vertex=!0;var c=new mxCell("",new mxGeometry(1,1,10,10),"html=1;shadow=0;dashed=0;shape=mxgraph.atlassian.away;fillColor=#7A869A;strokeColor=#ffffff;strokeWidth=2;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-10,-10);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b], +b.geometry.width,b.geometry.height,"Avatar (Away)")}),this.addEntry("atlassian avatar do not disturb unavailable",function(){var b=new mxCell("MM",new mxGeometry(0,0,32,32),"shape=ellipse;fillColor=#0065FF;strokeColor=none;fontColor=#ffffff;align=center;verticalAlign=middle;whiteSpace=wrap;fontSize=17;fontStyle=1;html=1");b.vertex=!0;var c=new mxCell("",new mxGeometry(1,1,10,10),"html=1;shadow=0;dashed=0;shape=mxgraph.atlassian.do_not_disturb;fillColor=#FF5630;strokeColor=#ffffff;strokeWidth=2;"); +c.geometry.relative=!0;c.geometry.offset=new mxPoint(-10,-10);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Avatar (Do not disturb)")}),this.createVertexTemplateEntry("rounded=1;arcSize=5;fillColor=#0065FF;strokeColor=none;fontColor=#ffffff;align=center;verticalAlign=middle;whiteSpace=wrap;fontSize=14;fontStyle=1;html=1",40,40,"</>","Container Avatar (Large)",null,null,this.getTagsForStencil("mxgraph.atlassian","avatar","atlassian container avatar large").join(" ")), this.createVertexTemplateEntry("rounded=1;arcSize=5;fillColor=#0065FF;strokeColor=none;fontColor=#ffffff;align=center;verticalAlign=middle;whiteSpace=wrap;fontSize=12;fontStyle=1;html=1",32,32,"</>","Container Avatar (Medium)",null,null,this.getTagsForStencil("mxgraph.atlassian","avatar","atlassian container avatar medium").join(" ")),this.createVertexTemplateEntry("rounded=1;arcSize=5;fillColor=#0065FF;strokeColor=none;fontColor=#ffffff;align=center;verticalAlign=middle;whiteSpace=wrap;fontSize=10;fontStyle=1;html=1", 24,24,"</>","Container Avatar (Small)",null,null,this.getTagsForStencil("mxgraph.atlassian","avatar","atlassian container avatar small").join(" ")),this.createVertexTemplateEntry("shape=ellipse;fillColor=#0065FF;strokeColor=none;html=1",10,10,"","Dot Badge",null,null,this.getTagsForStencil("mxgraph.atlassian","","atlassian dot badge").join(" ")),this.createVertexTemplateEntry("rounded=1;fillColor=#0065FF;strokeColor=none;html=1;fontColor=#ffffff;align=center;verticalAlign=middle;whiteSpace=wrap;fontSize=18;fontStyle=1;arcSize=50", -40,25,"13","Bold Badge",null,null,this.getTagsForStencil("mxgraph.atlassian","","atlassian bold badge").join(" ")),this.createVertexTemplateEntry("rounded=1;fillColor=#E3FCEF;strokeColor=none;html=1;fontColor=#016745;align=center;verticalAlign=middle;whiteSpace=wrap;fontSize=18;fontStyle=0;arcSize=50",40,25,"+1","Subtle Badge",null,null,this.getTagsForStencil("mxgraph.atlassian","","atlassian subtle badge").join(" ")),this.addEntry("atlassian banner",function(){var e=new mxCell("",new mxGeometry(0, -0,625,50),"rounded=0;fillColor=#FFAB00;strokeColor=none;html=1");e.vertex=!0;var b=new mxCell("<b>More information?</b> See the <u>recovery process documentation</u>.",new mxGeometry(.15,.5,20,20),"shape=mxgraph.azure.azure_alert;fillColor=#172B4C;strokeColor=none;fontColor=#172B4C;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=middle;html=1;spacingLeft=5");b.geometry.relative=!0;b.geometry.offset=new mxPoint(0,-10);b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e], -e.geometry.width,e.geometry.height,"Banner")}),this.addEntry("atlassian banner",function(){var e=new mxCell("",new mxGeometry(0,0,625,50),"rounded=0;fillColor=#DE350A;strokeColor=none;html=1");e.vertex=!0;var b=new mxCell("A database error has occurred. Please reload the page.",new mxGeometry(.15,.5,20,20),"shape=mxgraph.azure.azure_alert;fillColor=#ffffff;strokeColor=none;fontColor=#ffffff;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=middle;html=1;spacingLeft=5");b.geometry.relative= -!0;b.geometry.offset=new mxPoint(0,-10);b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Banner")}),this.createVertexTemplateEntry("fillColor=none;strokeColor=none;html=1;fontColor=#596780;align=left;verticalAlign=middle;whiteSpace=wrap;fontSize=12;fontStyle=0",360,25,"Atlassian / Atlassian Connect / atlassian-connect-js-extra","Breadcrumb",null,null,this.getTagsForStencil("mxgraph.atlassian","","atlassian breadcrumb").join(" ")),this.addEntry("atlassian button primary", -function(){var e=new mxCell("Pay now",new mxGeometry(25,0,86,33),"rounded=1;fillColor=#0057D8;align=center;strokeColor=none;html=1;fontColor=#ffffff;fontSize=12");e.vertex=!0;var b=new mxCell("",new mxGeometry(0,9,14,14),"html=1;shadow=0;dashed=0;shape=mxgraph.atlassian.checkbox;fillColor=#008465;strokeColor=none;html=1");b.vertex=!0;return a.createVertexTemplateFromCells([e,b],111,33,"Button (Primary)")}),this.addEntry("atlassian button standard",function(){var e=new mxCell("Create Group",new mxGeometry(25, -0,115,33),"rounded=1;align=center;fillColor=#F1F2F4;strokeColor=none;html=1;fontColor=#596780;fontSize=12");e.vertex=!0;var b=new mxCell("",new mxGeometry(0,9,14,14),"html=1;shadow=0;dashed=0;shape=mxgraph.atlassian.checkbox;fillColor=#008465;strokeColor=none;html=1");b.vertex=!0;return a.createVertexTemplateFromCells([e,b],140,33,"Button (Standard)")}),this.addEntry("atlassian button link",function(){var e=new mxCell("Visit documentation",new mxGeometry(25,0,125,33),"fillColor=none;strokeColor=none;html=1;fontColor=#0057D8;align=left;fontSize=12"); -e.vertex=!0;var b=new mxCell("",new mxGeometry(0,9,14,14),"html=1;shadow=0;dashed=0;shape=mxgraph.atlassian.checkbox;fillColor=#008465;strokeColor=none;html=1");b.vertex=!0;return a.createVertexTemplateFromCells([e,b],150,33,"Button (Link)")}),this.addEntry("atlassian button primary",function(){var e=new mxCell("Submit",new mxGeometry(25,0,80,33),"rounded=1;fillColor=#0057D8;align=center;strokeColor=none;html=1;fontColor=#ffffff;fontSize=12");e.vertex=!0;var b=new mxCell("",new mxGeometry(0,9,14, -14),"html=1;shadow=0;dashed=0;shape=mxgraph.atlassian.close;fillColor=#BA3200;strokeColor=none;html=1");b.vertex=!0;return a.createVertexTemplateFromCells([e,b],105,33,"Button (Primary)")}),this.addEntry("atlassian button standard",function(){var e=new mxCell("Done",new mxGeometry(25,0,55,33),"rounded=1;align=center;fillColor=#F1F2F4;strokeColor=none;html=1;fontColor=#596780;fontSize=12");e.vertex=!0;var b=new mxCell("",new mxGeometry(0,9,14,14),"html=1;shadow=0;dashed=0;shape=mxgraph.atlassian.close;fillColor=#BA3200;strokeColor=none;html=1"); -b.vertex=!0;return a.createVertexTemplateFromCells([e,b],80,33,"Button (Standard)")}),this.addEntry("atlassian button link",function(){var e=new mxCell("Click here",new mxGeometry(25,0,75,33),"fillColor=none;strokeColor=none;html=1;fontColor=#0057D8;align=left;fontSize=12");e.vertex=!0;var b=new mxCell("",new mxGeometry(0,9,14,14),"html=1;shadow=0;dashed=0;shape=mxgraph.atlassian.close;fillColor=#BA3200;strokeColor=none;html=1");b.vertex=!0;return a.createVertexTemplateFromCells([e,b],100,33,"Button (Link)")}), +40,25,"13","Bold Badge",null,null,this.getTagsForStencil("mxgraph.atlassian","","atlassian bold badge").join(" ")),this.createVertexTemplateEntry("rounded=1;fillColor=#E3FCEF;strokeColor=none;html=1;fontColor=#016745;align=center;verticalAlign=middle;whiteSpace=wrap;fontSize=18;fontStyle=0;arcSize=50",40,25,"+1","Subtle Badge",null,null,this.getTagsForStencil("mxgraph.atlassian","","atlassian subtle badge").join(" ")),this.addEntry("atlassian banner",function(){var b=new mxCell("",new mxGeometry(0, +0,625,50),"rounded=0;fillColor=#FFAB00;strokeColor=none;html=1");b.vertex=!0;var c=new mxCell("<b>More information?</b> See the <u>recovery process documentation</u>.",new mxGeometry(.15,.5,20,20),"shape=mxgraph.azure.azure_alert;fillColor=#172B4C;strokeColor=none;fontColor=#172B4C;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=middle;html=1;spacingLeft=5");c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,-10);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b], +b.geometry.width,b.geometry.height,"Banner")}),this.addEntry("atlassian banner",function(){var b=new mxCell("",new mxGeometry(0,0,625,50),"rounded=0;fillColor=#DE350A;strokeColor=none;html=1");b.vertex=!0;var c=new mxCell("A database error has occurred. Please reload the page.",new mxGeometry(.15,.5,20,20),"shape=mxgraph.azure.azure_alert;fillColor=#ffffff;strokeColor=none;fontColor=#ffffff;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=middle;html=1;spacingLeft=5");c.geometry.relative= +!0;c.geometry.offset=new mxPoint(0,-10);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Banner")}),this.createVertexTemplateEntry("fillColor=none;strokeColor=none;html=1;fontColor=#596780;align=left;verticalAlign=middle;whiteSpace=wrap;fontSize=12;fontStyle=0",360,25,"Atlassian / Atlassian Connect / atlassian-connect-js-extra","Breadcrumb",null,null,this.getTagsForStencil("mxgraph.atlassian","","atlassian breadcrumb").join(" ")),this.addEntry("atlassian button primary", +function(){var b=new mxCell("Pay now",new mxGeometry(25,0,86,33),"rounded=1;fillColor=#0057D8;align=center;strokeColor=none;html=1;fontColor=#ffffff;fontSize=12");b.vertex=!0;var c=new mxCell("",new mxGeometry(0,9,14,14),"html=1;shadow=0;dashed=0;shape=mxgraph.atlassian.checkbox;fillColor=#008465;strokeColor=none;html=1");c.vertex=!0;return a.createVertexTemplateFromCells([b,c],111,33,"Button (Primary)")}),this.addEntry("atlassian button standard",function(){var b=new mxCell("Create Group",new mxGeometry(25, +0,115,33),"rounded=1;align=center;fillColor=#F1F2F4;strokeColor=none;html=1;fontColor=#596780;fontSize=12");b.vertex=!0;var c=new mxCell("",new mxGeometry(0,9,14,14),"html=1;shadow=0;dashed=0;shape=mxgraph.atlassian.checkbox;fillColor=#008465;strokeColor=none;html=1");c.vertex=!0;return a.createVertexTemplateFromCells([b,c],140,33,"Button (Standard)")}),this.addEntry("atlassian button link",function(){var b=new mxCell("Visit documentation",new mxGeometry(25,0,125,33),"fillColor=none;strokeColor=none;html=1;fontColor=#0057D8;align=left;fontSize=12"); +b.vertex=!0;var c=new mxCell("",new mxGeometry(0,9,14,14),"html=1;shadow=0;dashed=0;shape=mxgraph.atlassian.checkbox;fillColor=#008465;strokeColor=none;html=1");c.vertex=!0;return a.createVertexTemplateFromCells([b,c],150,33,"Button (Link)")}),this.addEntry("atlassian button primary",function(){var b=new mxCell("Submit",new mxGeometry(25,0,80,33),"rounded=1;fillColor=#0057D8;align=center;strokeColor=none;html=1;fontColor=#ffffff;fontSize=12");b.vertex=!0;var c=new mxCell("",new mxGeometry(0,9,14, +14),"html=1;shadow=0;dashed=0;shape=mxgraph.atlassian.close;fillColor=#BA3200;strokeColor=none;html=1");c.vertex=!0;return a.createVertexTemplateFromCells([b,c],105,33,"Button (Primary)")}),this.addEntry("atlassian button standard",function(){var b=new mxCell("Done",new mxGeometry(25,0,55,33),"rounded=1;align=center;fillColor=#F1F2F4;strokeColor=none;html=1;fontColor=#596780;fontSize=12");b.vertex=!0;var c=new mxCell("",new mxGeometry(0,9,14,14),"html=1;shadow=0;dashed=0;shape=mxgraph.atlassian.close;fillColor=#BA3200;strokeColor=none;html=1"); +c.vertex=!0;return a.createVertexTemplateFromCells([b,c],80,33,"Button (Standard)")}),this.addEntry("atlassian button link",function(){var b=new mxCell("Click here",new mxGeometry(25,0,75,33),"fillColor=none;strokeColor=none;html=1;fontColor=#0057D8;align=left;fontSize=12");b.vertex=!0;var c=new mxCell("",new mxGeometry(0,9,14,14),"html=1;shadow=0;dashed=0;shape=mxgraph.atlassian.close;fillColor=#BA3200;strokeColor=none;html=1");c.vertex=!0;return a.createVertexTemplateFromCells([b,c],100,33,"Button (Link)")}), this.createVertexTemplateEntry("rounded=1;fillColor=#0057D8;strokeColor=none;html=1;fontColor=#ffffff;align=center;verticalAlign=middle;fontStyle=0;fontSize=12",86,33,"Primary","Button (Primary)",null,null,this.getTagsForStencil("mxgraph.atlassian","","atlassian button primary").join(" ")),this.createVertexTemplateEntry("rounded=1;fillColor=#F1F2F4;strokeColor=none;html=1;fontColor=#596780;align=center;verticalAlign=middle;fontStyle=0;fontSize=12",86,33,"Standard","Button (Standard)",null,null,this.getTagsForStencil("mxgraph.atlassian", -"","atlassian button standard").join(" ")),this.createVertexTemplateEntry("fillColor=none;strokeColor=none;html=1;fontColor=#0057D8;align=center;verticalAlign=middle;fontStyle=0;fontSize=12",86,33,"Link button","Button (Link)",null,null,this.getTagsForStencil("mxgraph.atlassian","","atlassian button link").join(" ")),this.addEntry("atlassian dropdown button",function(){var e=new mxCell("Dropdown button",new mxGeometry(0,0,140,33),"rounded=1;fillColor=#F1F2F4;strokeColor=none;html=1;fontColor=#596780;align=left;fontSize=12;spacingLeft=10"); -e.vertex=!0;var b=new mxCell("",new mxGeometry(1,.5,12,6),"shape=triangle;direction=south;fillColor=#596780;strokeColor=none;html=1");b.geometry.relative=!0;b.geometry.offset=new mxPoint(-20,-3);b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Button (dropdown)")}),this.addEntry("atlassian button label only",function(){var e=new mxCell("Label only",new mxGeometry(0,0,80,33),"rounded=1;align=center;fillColor=#F1F2F4;strokeColor=none;html=1;fontColor=#596780;fontSize=12"); -e.vertex=!0;return a.createVertexTemplateFromCells([e],80,33,"Button (label only)")}),this.addEntry("atlassian button icon and label",function(){var e=new mxCell("Icon and label",new mxGeometry(0,0,120,33),"rounded=1;align=left;fillColor=#F1F2F4;strokeColor=none;html=1;fontColor=#596780;fontSize=12;spacingLeft=26;");e.vertex=!0;var b=new mxCell("",new mxGeometry(0,.5,12,12),"shape=mxgraph.mscae.intune.subscription_portal;fillColor=#596780;strokeColor=none;fontColor=#ffffff;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=middle;html=1;spacingLeft=5"); -b.geometry.relative=!0;b.geometry.offset=new mxPoint(10,-6);b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],120,33,"Button (icon and label)")}),this.addEntry("atlassian button icon only",function(){var e=new mxCell("",new mxGeometry(0,0,32,33),"rounded=1;align=left;fillColor=#F1F2F4;strokeColor=none;html=1;fontColor=#596780;fontSize=12;spacingLeft=26;");e.vertex=!0;var b=new mxCell("",new mxGeometry(0,.5,12,12),"shape=mxgraph.mscae.intune.subscription_portal;fillColor=#596780;strokeColor=none;fontColor=#ffffff;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=middle;html=1;spacingLeft=5"); -b.geometry.relative=!0;b.geometry.offset=new mxPoint(10,-6);b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],32,33,"Button (icon only)")}),this.addEntry("atlassian button subtle",function(){var e=new mxCell("Subtle",new mxGeometry(0,0,80,33),"rounded=1;align=left;fillColor=none;strokeColor=none;html=1;fontColor=#596780;fontSize=12;spacingLeft=26;");e.vertex=!0;var b=new mxCell("",new mxGeometry(0,.5,12,12),"shape=mxgraph.mscae.intune.subscription_portal;fillColor=#596780;strokeColor=none;fontColor=#ffffff;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=middle;html=1;spacingLeft=5"); -b.geometry.relative=!0;b.geometry.offset=new mxPoint(10,-6);b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],80,33,"Button (subtle)")}),this.addEntry("atlassian button disabled",function(){var e=new mxCell("Disabled button",new mxGeometry(0,0,110,33),"rounded=1;align=center;fillColor=#F1F2F4;strokeColor=none;html=1;fontColor=#A5ADBA;fontSize=12");e.vertex=!0;return a.createVertexTemplateFromCells([e],110,33,"Button (disabled)")}),this.addDataEntry("atlassian split button",80,33, +"","atlassian button standard").join(" ")),this.createVertexTemplateEntry("fillColor=none;strokeColor=none;html=1;fontColor=#0057D8;align=center;verticalAlign=middle;fontStyle=0;fontSize=12",86,33,"Link button","Button (Link)",null,null,this.getTagsForStencil("mxgraph.atlassian","","atlassian button link").join(" ")),this.addEntry("atlassian dropdown button",function(){var b=new mxCell("Dropdown button",new mxGeometry(0,0,140,33),"rounded=1;fillColor=#F1F2F4;strokeColor=none;html=1;fontColor=#596780;align=left;fontSize=12;spacingLeft=10"); +b.vertex=!0;var c=new mxCell("",new mxGeometry(1,.5,12,6),"shape=triangle;direction=south;fillColor=#596780;strokeColor=none;html=1");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-20,-3);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Button (dropdown)")}),this.addEntry("atlassian button label only",function(){var b=new mxCell("Label only",new mxGeometry(0,0,80,33),"rounded=1;align=center;fillColor=#F1F2F4;strokeColor=none;html=1;fontColor=#596780;fontSize=12"); +b.vertex=!0;return a.createVertexTemplateFromCells([b],80,33,"Button (label only)")}),this.addEntry("atlassian button icon and label",function(){var b=new mxCell("Icon and label",new mxGeometry(0,0,120,33),"rounded=1;align=left;fillColor=#F1F2F4;strokeColor=none;html=1;fontColor=#596780;fontSize=12;spacingLeft=26;");b.vertex=!0;var c=new mxCell("",new mxGeometry(0,.5,12,12),"shape=mxgraph.mscae.intune.subscription_portal;fillColor=#596780;strokeColor=none;fontColor=#ffffff;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=middle;html=1;spacingLeft=5"); +c.geometry.relative=!0;c.geometry.offset=new mxPoint(10,-6);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],120,33,"Button (icon and label)")}),this.addEntry("atlassian button icon only",function(){var b=new mxCell("",new mxGeometry(0,0,32,33),"rounded=1;align=left;fillColor=#F1F2F4;strokeColor=none;html=1;fontColor=#596780;fontSize=12;spacingLeft=26;");b.vertex=!0;var c=new mxCell("",new mxGeometry(0,.5,12,12),"shape=mxgraph.mscae.intune.subscription_portal;fillColor=#596780;strokeColor=none;fontColor=#ffffff;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=middle;html=1;spacingLeft=5"); +c.geometry.relative=!0;c.geometry.offset=new mxPoint(10,-6);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],32,33,"Button (icon only)")}),this.addEntry("atlassian button subtle",function(){var b=new mxCell("Subtle",new mxGeometry(0,0,80,33),"rounded=1;align=left;fillColor=none;strokeColor=none;html=1;fontColor=#596780;fontSize=12;spacingLeft=26;");b.vertex=!0;var c=new mxCell("",new mxGeometry(0,.5,12,12),"shape=mxgraph.mscae.intune.subscription_portal;fillColor=#596780;strokeColor=none;fontColor=#ffffff;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=middle;html=1;spacingLeft=5"); +c.geometry.relative=!0;c.geometry.offset=new mxPoint(10,-6);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],80,33,"Button (subtle)")}),this.addEntry("atlassian button disabled",function(){var b=new mxCell("Disabled button",new mxGeometry(0,0,110,33),"rounded=1;align=center;fillColor=#F1F2F4;strokeColor=none;html=1;fontColor=#A5ADBA;fontSize=12");b.vertex=!0;return a.createVertexTemplateFromCells([b],110,33,"Button (disabled)")}),this.addDataEntry("atlassian split button",80,33, "Button (split)","rZRfb4IwFMU/TR9doFXnXsXhy5Ys8WHPjVygWWlJuTrdp1+hBUV0kjgTk/bce/rndxoIi4rD2vAyf9cJSMJeCYuM1uhGxSECKQkNRELYilAa2D+h8Y1q2FSDkhtQOMZAnWHP5Q6csimlQKdWeJReNXqnEqhNIWHLVEgZaalNU2RxGNN4avUKjf6CtqK0su5ljoVsfVrhmW/2Mn9eBFbnUmTKahJS9G0b8VNvHdJ62ZJvhcremuoqDPyZwSAcbt67kfyl16ALQHO0Ld8iwdx1LPxCOYgs9y7GnMYrN8865wmiHXiO15myAdMBzirnZT1EI7jKanWZCANbFLrmUOldfchLzh2vvzmPoUOv0+kbjv4FPc3c/IxdSIfs5k4yIDmKPfSWusbTb/+hhT1Vt/fEv9h298lFIjpNK8BBHt0lRkU0HR+RFOpWPP0YbEBp8+u/edf06dHR/0vnThrtS340DjZ7nL+dnj5prv38i/cL"), this.addDataEntry("atlassian button grouped",320,33,"Button (grouped)","7ZZNb4JAEIZ/zR5rYFetvUqLvTRp0kPPGxlg48KSZVHsr+8AC37S0kQ9mJqY7MwwHzzviBDmJeVC8yx+UwFIwl4I87RSpjklpQdSEuqIgLBnQqmDX0L9nqhbR52Ma0jNkATaJKy5LKDxNI7cbKV15EarFXyKwMTocAmb5zEP1AYNB42A5zEE1uBSRCmel9geNDpik8hdVlaVTMqout1RoparIhtpDUscda4/xFcVdqs6oZDSU1LpegTmuz71x1WNepa9SFh/ukg7ZXtboA2UvWhql+WyAJWA0Vu8ZGOLYJRZfE4MIoptGmONj+eNHXWpO9B4sKzPc2cn3OeFMSpF36kCWhVp0DEOVWpaVtTae0QmT9PHWXedLXLMNFUp/Akn6gM5Nn1tOVSKDoJMf4U8+4GxBsmNWMNB+XPgbYd3JbAxdcrD0m2GCsMczIlQ3VyDtBv3a8f+tbuYdu70GuJN+sUb3/zRVzGz7Y8fgHexKIcJt1mbh6v85qf9a+Peem0khHe9NZfek57/ZDR371nNSuy/hn0D"), -this.addEntry("atlassian button compact",function(){var e=new mxCell("Compact",new mxGeometry(0,0,86,33),"rounded=1;fillColor=#F1F2F4;align=center;strokeColor=none;html=1;fontColor=#596780;fontSize=12");e.vertex=!0;var b=new mxCell("",new mxGeometry(107,13,6,6),"shape=ellipse;fillColor=#596780;strokeColor=none;html=1");b.vertex=!0;var c=new mxCell("",new mxGeometry(117,13,6,6),"shape=ellipse;fillColor=#596780;strokeColor=none;html=1");c.vertex=!0;var d=new mxCell("",new mxGeometry(127,13,6,6),"shape=ellipse;fillColor=#596780;strokeColor=none;html=1"); -d.vertex=!0;return a.createVertexTemplateFromCells([e,b,c,d],133,33,"Button (compact)")}),this.addDataEntry("atlassian button grouped group",556,33,"Button (grouped)","3Zhdb5swFIZ/DZeNDA4kuRxp003qpEq76LUVDFgxGNlOm+zXz8YmhTofVIM0W6RI+MCxj5/3+NjgwWWxe+Soyn+yBFMPPnhwyRmT5qrYLTGlXgBI4sF7LwiA+nvB6sRdv74LKsRxKfs4BMbhFdEtNpaHhEhjFHJPrZGzbZlg7eN7ME4JpUtGGa9vQgCicKUGiBElWalsazU4VjdjITnb4ObRkpWquziXBW06YqVsdZTWP2v/RX7rwf0mQswl3p2cZW2yU3zErMCS79UjbySRuXkiNCBAjkmWWy8IjQ0J084Onu/I1IWldpwgdAguWVHowD4FceWvgtV0AIjhIprNwZAQrUMYGo8W0/lITKcO029CaCz/GVJ/Chyms5GYhg5Th6bB8mJj0SBEjhL2php69gkSec0aHGPawqe8Kt1lsct0YZsUbL3ZVhPO8VpNKOYNQnBGs65E7eLQjXIIGQLfTe1gOpIOkaPDD5XX4JmzjGMhvloUN80vLAcb6Uct7aLqL6MKAQs16PeGtw66l7jhxdq/OKMlxxRJ8oo73R8T2I7wzIiu7U3uRKDrwdJUYOkkxCGuXjkyc3LkhfFNSpXqQ6QHxanslxwaV7yVkpXOur2ZHBEVWpMye6onZYL7m7TpOlwnie4WY2TRvEfFt7pLTlCZaWucEF0RiFb8XrCtnv3HIn0Q9/w+2keEWR8R9qYFJm6ZbrbhtijRMJrYk3Mz+h0cQaKFI9ET0pX7ypuALgi3vswH2gqiIVZx373eB5eX4D9+hA2Be4QNo3GOTr5/GWeT4cqTVAKPWryMvKerV9gpID50QB3hFA2AyX2pv2VMwVdhct/cbxkTvA4m1Xz/+mR2tPbHqT8="), +this.addEntry("atlassian button compact",function(){var b=new mxCell("Compact",new mxGeometry(0,0,86,33),"rounded=1;fillColor=#F1F2F4;align=center;strokeColor=none;html=1;fontColor=#596780;fontSize=12");b.vertex=!0;var c=new mxCell("",new mxGeometry(107,13,6,6),"shape=ellipse;fillColor=#596780;strokeColor=none;html=1");c.vertex=!0;var d=new mxCell("",new mxGeometry(117,13,6,6),"shape=ellipse;fillColor=#596780;strokeColor=none;html=1");d.vertex=!0;var f=new mxCell("",new mxGeometry(127,13,6,6),"shape=ellipse;fillColor=#596780;strokeColor=none;html=1"); +f.vertex=!0;return a.createVertexTemplateFromCells([b,c,d,f],133,33,"Button (compact)")}),this.addDataEntry("atlassian button grouped group",556,33,"Button (grouped)","3Zhdb5swFIZ/DZeNDA4kuRxp003qpEq76LUVDFgxGNlOm+zXz8YmhTofVIM0W6RI+MCxj5/3+NjgwWWxe+Soyn+yBFMPPnhwyRmT5qrYLTGlXgBI4sF7LwiA+nvB6sRdv74LKsRxKfs4BMbhFdEtNpaHhEhjFHJPrZGzbZlg7eN7ME4JpUtGGa9vQgCicKUGiBElWalsazU4VjdjITnb4ObRkpWquziXBW06YqVsdZTWP2v/RX7rwf0mQswl3p2cZW2yU3zErMCS79UjbySRuXkiNCBAjkmWWy8IjQ0J084Onu/I1IWldpwgdAguWVHowD4FceWvgtV0AIjhIprNwZAQrUMYGo8W0/lITKcO029CaCz/GVJ/Chyms5GYhg5Th6bB8mJj0SBEjhL2php69gkSec0aHGPawqe8Kt1lsct0YZsUbL3ZVhPO8VpNKOYNQnBGs65E7eLQjXIIGQLfTe1gOpIOkaPDD5XX4JmzjGMhvloUN80vLAcb6Uct7aLqL6MKAQs16PeGtw66l7jhxdq/OKMlxxRJ8oo73R8T2I7wzIiu7U3uRKDrwdJUYOkkxCGuXjkyc3LkhfFNSpXqQ6QHxanslxwaV7yVkpXOur2ZHBEVWpMye6onZYL7m7TpOlwnie4WY2TRvEfFt7pLTlCZaWucEF0RiFb8XrCtnv3HIn0Q9/w+2keEWR8R9qYFJm6ZbrbhtijRMJrYk3Mz+h0cQaKFI9ET0pX7ypuALgi3vswH2gqiIVZx373eB5eX4D9+hA2Be4QNo3GOTr5/GWeT4cqTVAKPWryMvKerV9gpID50QB3hFA2AyX2pv2VMwVdhct/cbxkTvA4m1Xz/+mR2tPbHqT8="), this.addDataEntry("atlassian button grouped group responsive",551,104,"Button (grouped, responsive)","7Vnfj6IwEP5reLwNbYXFx9PTvZdLLrmHeyYySrOFmrbu6v3110JB2S4urj9wjSaYzpRph+9rZ4bikXG2fhLxMv3FE2AemXhkLDhXZStbj4ExD/s08cgPD2NfXx6etvSiotdfxgJy1cUAlwYvMVtBqSkVUm2YVUgl+DP8pYlKtQJ5ZCTTOOGvWvC1kMQyhcQKMaOLXLdnenoQWpGqjG2tlmbIbL0wj/uQ8dnzavkgBMy0qyPxh/4z3ciMM6eMjTnjonCBTNEUTwdmjMKXnZ558at7Ki+rxwKhYN0KTaGyuDwBz0CJjb7l1Q5i4CElfH4KdJFaM0JKXSxLeVGbboHWDYv1+7gTB/fvUhrsLow+g7karZTiuUMBz1UlYyvvAB8Mw8eovs/6+5a6nOdwEGvaB5B60p8V3Mb1TlziD7kM91ApgMWKvkBj+GP4HbTy6yuu/zJwmBZ8lSc1lzcH//AU8NsZfnOqJ8b+uslsZcHncwnKoav2qxODgcPgmGeZeeBLB0iD1y3v0abBzpKJzrdkvkXnWDPhPZu2sYsD3+EXofA82fXxnl1Pu3PD68quUf/77GaCcgu1rUE52LNnjw3K1dgnDcrDDovFkqwN6VKCGzJr0pqMWJrq5dIF72g/3rbs2FiROPi/A3/YDnTXHYX8r4QS7gsl9JVQIn2hdD9UaOckCi9XBqH7KcOJkyW6smMG5J4z3FglpO8b4ACHk54Zvp16CLknG4cnsTfIH5PEyjV8fRVRl5f564Gpt5LIfde+Zph6q4ncV9ZJQs1ep1JqjZmDFEFzp9nXgWOH4ulTMfmDfFBbNvPB8UXXYBA2WCeRW4P5wTu8H068Frcf78rgvPtt7z8="), this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;shape=mxgraph.atlassian.checkbox_2;fillColor=#0057D8;strokeColor=none;fontColor=#000000;align=left;verticalAlign=middle;fontStyle=0;fontSize=12;labelPosition=right;verticalLabelPosition=middle;spacingLeft=10",12,12,"Text","Checkbox (on)",null,null,this.getTagsForStencil("mxgraph.atlassian","","atlassian checkbox on").join(" ")),this.createVertexTemplateEntry("rounded=1;fillColor=#F0F2F5;strokeColor=#D8DCE3;fontColor=#000000;align=left;verticalAlign=middle;fontStyle=0;fontSize=12;labelPosition=right;verticalLabelPosition=middle;spacingLeft=10;html=1;shadow=0;dashed=0", 12,12,"Text","Checkbox (off)",null,null,this.getTagsForStencil("mxgraph.atlassian","","atlassian checkbox on").join(" ")),this.addDataEntry("atlassian checkbox group",150,173,"Checkbox group","7VfdbpswFH4abisDIWGXLYTepNKkPsDk2AewYmxkOy3Z08+ASTOcTu2yRqtUJCSfX3O+7/iHIM6a7l7htn6QFHgQr4M4U1KacdR0GXAeRIjRIM6DKEL2DaLiFWs4WFGLFQjzloBoDHjCfA+j5hE4EAPUaoksSwA9umhz4M6lZJxnkktlRSGF1d5po+QOZspSCvPIfvZRYTjJLk0vY84qYcccSuPMU4YgipNvy1WK3PeBMtC9WuOgcgXeg2zAqIN1eWbU1M4jcZlqYFXtwhw2COtRro6hL4jZgQPtPICxB+Batwq0lh5sSu4FBeqKPwXRVlugIioSD0lrydM8W8c+Pmh4fBh7rBjB/NapG0Yphxn8aEaPhe+O4y3w71Izw2QfqEakjgk3M/sxsW4xYaLaDPPnYZ+7Ng13heoaU/ns5qRY1wMEFxE7BbgkB0eFE09pj3zWJ90lrC881jPctntiYfB5fwMWg6Xt/Zuu6jeDG2w41pphcUNqILut7H5EftcglKzy9E/r73M0zD/vhSS5Wi8kXi8UHJt+7poZ+OqG/6Ab0uvtDEuvGzZSVFaz5Zjsvs6EK58JIbreRrDyqL+l9H2Mv2sFl8NzQjaxGIH6W7oXH07RxMnCX47LM9ezOL6ck/TMQS2IvWdfcqf1L6mfhwMXsJotk4+jxIovvzOD7be/nV8="), @@ -3703,16 +3704,16 @@ this.addDataEntry("atlassian inline edit",350,55,"Inline edit","7ZbNbqMwEICfhmMi this.addDataEntry("atlassian inline edit",130,222,"Inline edit","7VnbbpswGH4aLouMHUJy2RzoLlqpUqXt2gomeAMcGadJ9vSzwSQBQ8sKqdItSK38+wT+Dr/BsdA82T9wvImeWEBiCy0tNOeMiaKU7Ockji0IaGChhQUhkH8W9FtanbwVbDAnqegyABYDXnG8JUXNM6eMU3EoGjJxiHVDSON4zmLGZZiyVNbOMsHZL1KrjEQil7FwZDFkqXihv9UEzjHWMwIZ45iuU1mOSSh0czmZBZE7HXsToB+QcEH2rYvMq/QKHwhLiOByAWBHAxHpHkjPFBG6jvQwDQ7AWRGvj0NPkMmCRq0ZQWQg+E3ewECPs20akEADg/lK4zJV6z5DVq4bumjiTjrAW7T/0IuEqmaDVzRdP+Z4LhAwQQ3zq459D4wPGkq3GPEe5MjtD/nIgNyAO4vwRhWT/Vp5y8acs10GbVnPN/cqUHAFB0cp0Z7kwV4FIxsUgfy/cO1p0Q3l3eA4b1GBZyNPBikTq0iLuZGtGrW+D+SlZqGcrARlad6VK8hmnVhAb7IA7AYaGlhwNIScxFjQV1K5XRM1+o7PjMoHgWBfnVrf/c6rTsDCMCPCYPb42J3IdruTnQmykTjuIirIi3SCqttJ+quuOTmxlTXTWAaP6pL1Ul0BJSeHlbRL0/k4obFC5jvhAU5xLR+OTG8CoNVRy4vnYsnYNhdLVkwD7LHbUzrVAX8pJG8QHd2Vli6FhC4gpPH7QmpL0shUwDGPVgUkWxb+0lm6horyhB3hgO3yoH/G9UC3jOu4sH/K9QzwnvBPueI6gjXlNuxHVfvVfTXyXd9rtWUJH6g6uuE1onQZNF123F45USY68dOFkvHHXjQQ6ueTQ0XCg9pico35NQx1Jvz0/Fpuxh/Ir94gW/MwGfUzdubpTTn/sHIGlUo56fn+QQK6TUzFNHzBdPzw/O+3BzS9BHWOQV2rzWPawE7+unw/A6DBvp3egsAg7ijrBk6s7iUgN09lHqWwb1YZzioevARv5llQq1Wu7GACLmbAm7d8a3azKRzGpl/nZMIxz6GeaDrwR9HNxW+42AEXSb9XeeR0dOhXOnIqLHJlb7YXzQkdTplu2vm62ukjFhmeftgrup//7vcH"), this.addDataEntry("atlassian inline edit",230,60,"Inline edit","vVZNb+MgEP01PtYiEMfJsXE2vXSlSpV2z8gmMSo2FpDG2V+/g8FJ/JHWVbZrKREzMAO892ZEQJKiflK0yn/KjImA/AhIoqQ0blTUCRMiwIhnAdkEGCP4BXh7Y3bWzKKKKlaaKQHYBbxTcWDO86K4VNyc3IQ2J+EndlyIRAqpwCxlCd61Nkq+sZ4zNwVcYzOD4U6W5pX/sQlmZ9tnRGBTwfcljAXbGT/dJgswiVaLeIn8AZkyrL55ycblb/jEZMGMggugI89M7lfEPlPO+D73YR4cRLWz9+fQC2Qw8KiNI0gGCD7L4wA8JQ9lxjKPC1Wph2Vlr30FLFx713wDdGFmnqwet9suxG7Rb39RbD0VTXm5f24w3RA0BBY1Xx//O3A+eTgjF/EZ7CS6H/b5APYB5jqnlR0W9d7WV0iVkkeNQ/Cr6tEaFq7sNLNqDJeNUVtjHiJnwP8mClduGWmW4UUzY404JDEYpTRp7gU9WhA9fvFmjeLEZuGKpYZLy4CWBwvZehIL5EMWUDhCwwgLMw+hYoIa/s46241R43d8kRwOglHdTe13f4i7CeRup5kZMHs+9iSyo+lka8MqwPGYc8NeoRKs7wj0d6vmUo43WRsWVo/HOY7wAo67BnVlnF0qrKUdim5LCy4sMr+YymhJez1xPrU2x8WiXRoULqI7pdMN+KKQ4n+io4e2pFshkW8Q0uJzIV331pxm0MudSDKq84ti+q3FCKo1p2WY5ix9G23erVz6wrqj77YBq24NkuUk3pb3d+H42/Gs/zOW5zdBi2U8rZl+/SUB5uWd57R8/Qz8Cw=="), this.addDataEntry("atlassian inline message",150,180,"Inline message","7VfbTuMwEP2avFa5kLY80paiXcFqBVrxiNxk2nhx7GA7tPD1O3bc9OKAQC2IlaiUynPx2D5zZpwEybhcXUhSFVciBxYk50EylkLoZlSuxsBYEIc0D5JJEMchPkE8fcEaWWtYEQlcv2VC3Ex4JKyGRnOWZaAU6hg8gnElVcVoRjQVXDXeSj8x5z2njI0FExJFLjhqR0pLcQ97yrng+oY+m1lRtJZdGCMTRhccxwzm2pnXEYI4SU/7g2HotgpSw+rF41qVO+sFiBK0fEKXp8aauCBLmuvCTUidrgC6KFwUh1pIVCMv2kgbLHHg4OyGNvGg/fnj+sxDsNAlcyCoguRiiUKIQk5UAbkT0FIZ/3K1MFTpEc2IUpTwXlZAdj8Tq7vYwLaVDYQtDNPBZPhaSnaczc9PhcEb08/OnLqkec5gL4XhXorNZhiZAfstFDXMQaVs4G0DXu7Z28CqIhnli0u7/iQ6KO/rCS6Io0G/gwaxz4K17hAWnHgsGAs+R4Fn8M2FL8CFYfppXEg9LoxIORPimwdfgAdR9HlNoe8TgepZnd2DNpGzTNRc//eXbZR0lNZH3bYDD9JfsERFrUAquwfrPgMDqTkALoePhIcalJE0lmH4V1DeOwrucUc1vI67K7Yj4N5xvbUYHxv3oYe7B5/XqJ5rCc3/HWF4Ur9LTafDkW08b+lS0SAenYwP6S5vbW/bfXmnIaWHpM1NaF9OX0vjB2XxtCOLfWawmOFgYQZXNdO0YrDToBofjN66Baa5JVG4O7yFTQmSWouSWICZOT7lj1TbsNyIfKdsbVVuNUc8SZhDBTxH8HGMeUTARC0327IFrjXaVa97N+t9Gx6hd9ZSqf9Qi+YQ9p7Mh9uq5nx/qpzY3bpF3VJbUDRR12iEwngdsqIEkuOcUkh4cZW9ipOIQ25fFGy7l5nrSolfaXP78yoNLZPpeXSetpZbx8Kdl5KO22SrRpYFJvYGC8WsvcTa9+omDjeqa0fp2H9xOEJxxR3FdNJRTVH6/vsdxc0Xu7XtfND/Aw=="), -this.addEntry("atlassian inline message subtitle",function(){var e=new mxCell("i",new mxGeometry(0,0,20,20),"shape=ellipse;fillColor=#403294;strokeColor=none;fontSize=14;fontStyle=1;align=center;fontColor=#ffffff");e.vertex=!0;var b=new mxCell('<font color="#0057d8">Log in</font> to learn about Confluence',new mxGeometry(0,30,230,33),"rounded=1;arcSize=3;fillColor=#ffffff;strokeColor=#DFE1E5;strokeWidth=1;shadow=1;align=left;html=1;whiteSpace=wrap;spacingLeft=20;spacingRight=20;fontSize=12;");b.vertex= -!0;var c=new mxCell("Want more information?",new mxGeometry(30,0,200,20),"fillColor=none;strokeColor=none;align=left;html=1;whiteSpace=wrap;fontSize=11;fontColor=#596780");c.vertex=!0;return a.createVertexTemplateFromCells([e,b,c],230,63,"Inline message with subtitle")}),this.createVertexTemplateEntry("dashed=0;html=1;rounded=1;fillColor=#FFFFFF;strokeColor=#DFE1E6;fontSize=12;align=center;fontStyle=1;strokeWidth=2;fontColor=#42526E",70,20,"DEFAULT","Lozenge (state, subtle)",null,null,this.getTagsForStencil("mxgraph.atlassian", +this.addEntry("atlassian inline message subtitle",function(){var b=new mxCell("i",new mxGeometry(0,0,20,20),"shape=ellipse;fillColor=#403294;strokeColor=none;fontSize=14;fontStyle=1;align=center;fontColor=#ffffff");b.vertex=!0;var c=new mxCell('<font color="#0057d8">Log in</font> to learn about Confluence',new mxGeometry(0,30,230,33),"rounded=1;arcSize=3;fillColor=#ffffff;strokeColor=#DFE1E5;strokeWidth=1;shadow=1;align=left;html=1;whiteSpace=wrap;spacingLeft=20;spacingRight=20;fontSize=12;");c.vertex= +!0;var d=new mxCell("Want more information?",new mxGeometry(30,0,200,20),"fillColor=none;strokeColor=none;align=left;html=1;whiteSpace=wrap;fontSize=11;fontColor=#596780");d.vertex=!0;return a.createVertexTemplateFromCells([b,c,d],230,63,"Inline message with subtitle")}),this.createVertexTemplateEntry("dashed=0;html=1;rounded=1;fillColor=#FFFFFF;strokeColor=#DFE1E6;fontSize=12;align=center;fontStyle=1;strokeWidth=2;fontColor=#42526E",70,20,"DEFAULT","Lozenge (state, subtle)",null,null,this.getTagsForStencil("mxgraph.atlassian", "lozenge","atlassian ").join(" ")),this.createVertexTemplateEntry("dashed=0;html=1;rounded=1;fillColor=#DFE1E6;strokeColor=#DFE1E6;fontSize=12;align=center;fontStyle=1;strokeWidth=2;fontColor=#42526E",70,20,"DEFAULT","Lozenge (state, bold)",null,null,this.getTagsForStencil("mxgraph.atlassian","lozenge","atlassian ").join(" ")),this.createVertexTemplateEntry("dashed=0;html=1;rounded=1;fillColor=#FFFFFF;strokeColor=#008364;fontSize=12;align=center;fontStyle=1;strokeWidth=2;fontColor=#008364",70,20, "SUCCESS","Lozenge (success, subtle)",null,null,this.getTagsForStencil("mxgraph.atlassian","lozenge","atlassian ").join(" ")),this.createVertexTemplateEntry("dashed=0;html=1;rounded=1;fillColor=#008364;strokeColor=#008364;fontSize=12;align=center;fontStyle=1;strokeWidth=2;fontColor=#ffffff",70,20,"SUCCESS","Lozenge (success, bold)",null,null,this.getTagsForStencil("mxgraph.atlassian","lozenge","atlassian ").join(" ")),this.createVertexTemplateEntry("dashed=0;html=1;rounded=1;fillColor=#FFFFFF;strokeColor=#BA3200;fontSize=12;align=center;fontStyle=1;strokeWidth=2;fontColor=#BA3200", 70,20,"REMOVED","Lozenge (problem, subtle)",null,null,this.getTagsForStencil("mxgraph.atlassian","lozenge","atlassian ").join(" ")),this.createVertexTemplateEntry("dashed=0;html=1;rounded=1;fillColor=#BA3200;strokeColor=#BA3200;fontSize=12;align=center;fontStyle=1;strokeWidth=2;fontColor=#ffffff",70,20,"REMOVED","Lozenge (problem, bold)",null,null,this.getTagsForStencil("mxgraph.atlassian","lozenge","atlassian ").join(" ")),this.createVertexTemplateEntry("dashed=0;html=1;rounded=1;fillColor=#FFFFFF;strokeColor=#0057D8;fontSize=12;align=center;fontStyle=1;strokeWidth=2;fontColor=#0057D8", 100,20,"IN PROGRESS","Lozenge (current, subtle)",null,null,this.getTagsForStencil("mxgraph.atlassian","lozenge","atlassian ").join(" ")),this.createVertexTemplateEntry("dashed=0;html=1;rounded=1;fillColor=#0057D8;strokeColor=#0057D8;fontSize=12;align=center;fontStyle=1;strokeWidth=2;fontColor=#ffffff",100,20,"IN PROGRESS","Lozenge (current, bold)",null,null,this.getTagsForStencil("mxgraph.atlassian","lozenge","atlassian ").join(" ")),this.createVertexTemplateEntry("dashed=0;html=1;rounded=1;fillColor=#FFFFFF;strokeColor=#6554C0;fontSize=12;align=center;fontStyle=1;strokeWidth=2;fontColor=#6554C0", 50,20,"NEW","Lozenge (new, subtle)",null,null,this.getTagsForStencil("mxgraph.atlassian","lozenge","atlassian ").join(" ")),this.createVertexTemplateEntry("dashed=0;html=1;rounded=1;fillColor=#6554C0;strokeColor=#6554C0;fontSize=12;align=center;fontStyle=1;strokeWidth=2;fontColor=#ffffff",50,20,"NEW","Lozenge (new, bold)",null,null,this.getTagsForStencil("mxgraph.atlassian","lozenge","atlassian ").join(" ")),this.createVertexTemplateEntry("dashed=0;html=1;rounded=1;fillColor=#FFFFFF;strokeColor=#FFAB00;fontSize=12;align=center;fontStyle=1;strokeWidth=2;fontColor=#42526E", -60,20,"MOVED","Lozenge (moved, subtle)",null,null,this.getTagsForStencil("mxgraph.atlassian","lozenge","atlassian ").join(" ")),this.createVertexTemplateEntry("dashed=0;html=1;rounded=1;fillColor=#FFAB00;strokeColor=#FFAB00;fontSize=12;align=center;fontStyle=1;strokeWidth=2;fontColor=#42526E",60,20,"MOVED","Lozenge (moved, bold)",null,null,this.getTagsForStencil("mxgraph.atlassian","lozenge","atlassian ").join(" ")),this.addEntry("atlassian inline message subtitle",function(){var e=new mxCell("Yeah, progress!", -new mxGeometry(0,0,120,20),"dashed=0;html=1;rounded=1;fillColor=#172B4D;strokeColor=#172B4D;fontSize=12;align=center;fontStyle=0;strokeWidth=2;fontColor=#ffffff");e.vertex=!0;var b=new mxCell("IN PROGRESS",new mxGeometry(10,30,100,20),"dashed=0;html=1;rounded=1;fillColor=#FFFFFF;strokeColor=#0057D8;fontSize=12;align=center;fontStyle=1;strokeWidth=2;fontColor=#0057D8");b.vertex=!0;return a.createVertexTemplateFromCells([e,b],120,50,"Lozenge (tooltip)")}),this.addEntry("atlassian inline message subtitle", -function(){var e=new mxCell("SUCCESS",new mxGeometry(25,0,70,20),"dashed=0;html=1;rounded=1;fillColor=#FFFFFF;strokeColor=#008364;fontSize=12;align=center;fontStyle=1;strokeWidth=2;fontColor=#008364");e.vertex=!0;var b=new mxCell("Don't stop believin'",new mxGeometry(0,30,120,20),"dashed=0;html=1;rounded=1;fillColor=#172B4D;strokeColor=#172B4D;fontSize=12;align=center;fontStyle=0;strokeWidth=2;fontColor=#ffffff");b.vertex=!0;return a.createVertexTemplateFromCells([e,b],120,50,"Lozenge (tooltip)")}), +60,20,"MOVED","Lozenge (moved, subtle)",null,null,this.getTagsForStencil("mxgraph.atlassian","lozenge","atlassian ").join(" ")),this.createVertexTemplateEntry("dashed=0;html=1;rounded=1;fillColor=#FFAB00;strokeColor=#FFAB00;fontSize=12;align=center;fontStyle=1;strokeWidth=2;fontColor=#42526E",60,20,"MOVED","Lozenge (moved, bold)",null,null,this.getTagsForStencil("mxgraph.atlassian","lozenge","atlassian ").join(" ")),this.addEntry("atlassian inline message subtitle",function(){var b=new mxCell("Yeah, progress!", +new mxGeometry(0,0,120,20),"dashed=0;html=1;rounded=1;fillColor=#172B4D;strokeColor=#172B4D;fontSize=12;align=center;fontStyle=0;strokeWidth=2;fontColor=#ffffff");b.vertex=!0;var c=new mxCell("IN PROGRESS",new mxGeometry(10,30,100,20),"dashed=0;html=1;rounded=1;fillColor=#FFFFFF;strokeColor=#0057D8;fontSize=12;align=center;fontStyle=1;strokeWidth=2;fontColor=#0057D8");c.vertex=!0;return a.createVertexTemplateFromCells([b,c],120,50,"Lozenge (tooltip)")}),this.addEntry("atlassian inline message subtitle", +function(){var b=new mxCell("SUCCESS",new mxGeometry(25,0,70,20),"dashed=0;html=1;rounded=1;fillColor=#FFFFFF;strokeColor=#008364;fontSize=12;align=center;fontStyle=1;strokeWidth=2;fontColor=#008364");b.vertex=!0;var c=new mxCell("Don't stop believin'",new mxGeometry(0,30,120,20),"dashed=0;html=1;rounded=1;fillColor=#172B4D;strokeColor=#172B4D;fontSize=12;align=center;fontStyle=0;strokeWidth=2;fontColor=#ffffff");c.vertex=!0;return a.createVertexTemplateFromCells([b,c],120,50,"Lozenge (tooltip)")}), this.addDataEntry("atlassian modal dialog",330,210,"Modal dialog","1VZtb5swEP41fGxlTJN2H9ukrTZp0rROmvbRhSN4NRyzTUj263cHhiSDbpGmTRoSfrmXx+d77hBRsip3j1bVxXvMwETJfZSsLKLvV+VuBcZEUugsStaRlILeSD68oo07raiVhcqf4yB7h60yDfSSSC4Nud4902LDi0GQI0FK4fze9KbLbw0Oigunv5P0lgziq3p3UA4oX7CxpMyUK55R2WxApdB64NPDSDwJINPbGbMZ6akokkksZiMQ2tHgC6Ax19b5bqerDc17bPiywLq2gGoUGWS1ri5p/NS5vnv7ke/9hLlvKfFzZxj9Aj0Ch5AqGpeqrCkqVaOjyR17MfRd47tjnAfFMJhzOAW2Y3iM5GoA1qqKx7wB5tbAlucV+/vgxfi6rNF6VfXAOdpSeY18M/WM3XEBtUX7QtPFJPDa4ldIvevBg1ClXm+11+DGQIJGO9eAu3yNLHlSTbLwJZX/OiadxabKIAu7XBuzQoO2s0vy7uGceYsvcKRZP9zH94tQkU9dQa5jyUk2elPRxkA+FOyRm+geBixUhm04Vdl0gKBdW2gPT7VKWdBSu7I5bZmNZC3ZewvW61SZ23CYx3q8Jutg92qPdqLQoI+AJXi7Zx505oveIkn6PhYF6E0R3GQchMr1gs3oe2h5WoSun/8CJJMvwG2WTcjh2uwI4Zuey5QQi+v1zYSpCiv4BUkppQXsYBBCECPK55AUOSUyVMY5GZe/zfhiJuFJSJYFQ62zhRP4ORLCCR9Qd10X4pEiYO8DwOInHjHPHfgJi2OgZxF7NSF2paqUvwx/zG1g8B/RunizvL4R/wGty79AK20PfwO9+fHPwg8="), this.addDataEntry("atlassian detailed modal dialog",330,210,"Modal dialog (detailed)","1Zdfb5swEMA/DY+JwBRIH7v86TZt0rROmvY0uWCCF8Mx2yTpPv3OYNIQ6JouSbVFCth3vvPZP98Bjj/Nt7eSltlHSJhw/LnjTyWAblr5dsqEcIjLE8efOYS4+HfI4gmtV2vdkkpW6GMMSGOwpqJijcQhoUDTN/fYWJpGK0gBXRJX6QfRDA1/VtAqRor/QukNDvCuyu2jsvXyDSqJyoSq7B6oTFqvGFrjuDsZinsBJHw9MGxA2hU5xPfcwQhcrvCiM4bXlEul6x4vlnh/gMoslhndJmPFTiTAqHkxxuuX2vT9u89m3XeQ6g1u/NAcgq9Y48GEEFO8hjQvMSpagsKb2rcyrt9Uup5GaUaNG0hNOBlsduEZT6pkzGhpYa5pxQxbwdbmPjX22loZ/zwvQWpaNI5TkDnVHMzK6D3U01mvG5ArvI16gZcSfrBYq8a5FdJY8zXXnKldIFbDlaqYGj8Fi3ROE8l0jsd/5qFOQlUkLLG9lAsxBQGyHuen9c/smZawYnua2WLuzQN7Iu/qAznziNlkwZcFdgRL2wO7Z+bWP+Mwowls7KxUxq0L7G0yrtldSWMj2GC6muHYNTT8GTHWayY1j6m4sZNpKG1yoYJtn0zQWmSz85ZBzrR8MBB4orNmhO83SexmjC8za0Y8K6SqESx3to/5jg2b8sPp7/fS/yZJemTMwaxpmGUei8l1g2g26WEqoGB/IBTjtjDZDrAhuDsvX+2mkD5FeyyO2XEyvONdg4dOb49GMADDtxspmcCcWrOO7RAgO/sn4HU62qlHXkvazj4KDyBDmiqme4h3qziK+lWP+pQWsakZJ4O3eF+JeXAdRhP3P2cevQbyoIf8Ay9W/xrwXmGuS8jZ8D4D1L4qnZ7EB0TbfDsr0HDgxe0cZXsRLSaL66Gn69ydk3nUeTJGF2HjuZessKQLxwsvACd6Hg6+a5SmmW+X5uV/zEFFYx5DocYCYIXvFd+Xgip1TLohHHLlR8F1l/Nh+TyGVfiCMumOgz470kfXyk5F1+bRrlBegNykR+5tEwRumn7Fcun9Rbk8/Wn4ouffmcrlQT6OgjM8/rD7+AndDN//wv4N"), this.addDataEntry("atlassian small modal dialog",410,410,"Modal dialog (small)","7Zndb9owEMD/mmhPrewECH1s+ehLq1brpD5ObnIQq06cOabA/vqdE0MTHFq0kolWQ4rA9vns3O/u/IEXjNLVtWJ5citjEF4w8YKRklJXv9LVCITwfMJjLxh7vk/w8fzpnlZatpKcKcj0IR38qsMLEwuoai7jGCsYPk+KZVFi1IFKeVFwmVXShV4LK53oFOc8pl5wpeQiiyG2pRkXYiSFVKVcMCs/WF9oJZ+h1jKeTuikb3rITD/w30YxTjq4YoLPMywImGnbXOtGyo9RmLBYLu2oTEVWhSktE67hIWeRqViijY04Fnk23wzyAkrziIlLO5iW+WYq9iWtSY0grPZauayyJr4GmYJWaxRZ8lgnlUSPViRIAnye6J1KVlQV823fV2j4w3JrZxg4DK825DKWgsMsZkVScjIGOAhgJjNw2NnKGjZK27G9mnKj49HaxXfB9i8G4ZAcZHT/XaNT0mJ0GxJEgWCav0BDfxsIO8S95DiyT1ZNNeuqONghKWezArTDcTvPg9D2HLQwP8eKOwQ8PwZZNPg0nA6nF22hOSETfxI2wip0CduIuilLY0o6RhqELUiDoAukwy6Q9h2kDyAgMrPQCdTT7louzKuzcoZalq+HjHgpy6IIisI2nEqAk68c4JQGHbjDwHGHR4WrVo3wqcD90tmb9ruI9dCB+2OdG7bfvB4+OFoWV3GfVV9cHW/R/p/a3+IddsF7uD+3LwpQJl0vE5PII2aAL22kl7ldJ7yoZ/8l14lclKk+z5VEnSeUC750ovdJF4n+wvGNOwx4Vc7+1wIX9hPC+6VTvd/rIvQ3B7ka3+9gAtwcNvG1eKGlPdbtOT9vD7KGdgM9tuRGPl3NzUXBOdOC4XGcZedRAtHzk1z99N3kT0g/HA/f8oa24/SOV+yej1MexwJaskHdu8xkBHsCcS8LNIA0HVWFdavwZqd9q9hZc47kYL7rX5u6I/tXJ0sLpY5/bU/5MS4yuu125u3NAZn6037rlcxwPJoEn8pJGvlxXyR9Nk8KyKALT3Lv/G5BHes24f2sU3eAjSNFaH9cC/9ik2EvFj+Attlh3SjVsA+625ue0V4T/Fknl0nUvSgcYQYB8Q83HseB/vGtx4HQ+x1CDztgjsXX/w4q8fpfC38A"), @@ -3734,20 +3735,20 @@ this.addDataEntry("atlassian table",630,230,"Table","7Zprj5s4FIZ/DdpPi3wJBD42yUy this.addDataEntry("atlassian table action",630,189,"Table with action","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"), this.addDataEntry("atlassian table action",350,30,"Table with action","3dbPb4IwFAfwv6b30oo/roJ42snDzs180GYPSko3dX/9iq2Kq0uWbbhkB5P2vX6h/YQghGf1fm1EKx/0FpDwFeGZ0dr6Ub3PAJEwqraE54Qx6n6EFZ90k2OXtsJAY78SYD7wKvAFfCUHKxR2vt7ZA4a6tLXbXZ4QviwVYqZRGzdvdOMWLDtr9DN8KJa6sRv11l8g6XMCVdW4CUJpQ/uUIIxzPp8UxSkWbtzHdlJZ2LTiqS/sHFXYMxgL+0/PfSyFQ69B12DNwS3Zqa2VfkXqaagEVcmQClxUdH5enZMXRDcIjrdNeWyqyvL+oOliOpvTsUFDYBbgBr6TkXwnkW+m61rZP3hm70qc8Nh4OpJxGhtLgQhNBf+dmdGYeTES8zRijnA7Kdp+iGqg+Ri25o6xHOhfUzu4vFglq9R1DHRO+xRLfsJ0uD7+QInfeqMmv8A0G5np/NdzF6Zb78VvKLnp5Tvh2Lv6jHgH"), this.createVertexTemplateEntry("dashed=0;html=1;fillColor=#F0F2F5;strokeColor=none;align=center;rounded=1;arcSize=10;fontColor=#596780;fontStyle=1;fontSize=11;shadow=0",60,20,"Tag text","Tag",null,null,this.getTagsForStencil("mxgraph.atlassian","tag","atlassian ").join(" ")),this.createVertexTemplateEntry("dashed=0;html=1;fillColor=#F0F2F5;strokeColor=none;align=center;rounded=1;arcSize=10;fontColor=#3384FF;fontStyle=1;fontSize=11;shadow=0",60,20,"Tag link","Tag link",null,null,this.getTagsForStencil("mxgraph.atlassian", -"tag","atlassian ").join(" ")),this.addEntry("atlassian tag removable",function(){var e=new mxCell("Removable tag",new mxGeometry(0,0,100,20),"dashed=0;html=1;fillColor=#F0F2F5;strokeColor=none;align=left;rounded=1;arcSize=10;fontColor=#596780;fontStyle=1;fontSize=11;shadow=0;spacingLeft=3");e.vertex=!0;var b=new mxCell("",new mxGeometry(1,.5,6,6),"html=1;shadow=0;dashed=0;shape=mxgraph.atlassian.x;strokeColor=#596780;strokeWidth=2");b.geometry.relative=!0;b.geometry.offset=new mxPoint(-11,-3);b.vertex= -!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Removable tag")}),this.addEntry("atlassian tag removable link",function(){var e=new mxCell("Removable tag link",new mxGeometry(0,0,130,20),"dashed=0;html=1;fillColor=#F0F2F5;strokeColor=none;align=left;rounded=1;arcSize=10;fontColor=#3384FF;fontStyle=1;fontSize=11;shadow=0;spacingLeft=3");e.vertex=!0;var b=new mxCell("",new mxGeometry(1,.5,6,6),"html=1;shadow=0;dashed=0;shape=mxgraph.atlassian.x;strokeColor=#596780;strokeWidth=2"); -b.geometry.relative=!0;b.geometry.offset=new mxPoint(-11,-3);b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Removable tag link")}),this.addEntry("atlassian text field",function(){var e=new mxCell('Name<sup><font color="#ff0000">*</font></sup>',new mxGeometry(0,0,240,20),"fillColor=none;strokeColor=none;html=1;fontSize=11;fontStyle=0;align=left;fontColor=#596780;fontStyle=1;fontSize=11");e.vertex=!0;var b=new mxCell("Messina Cake",new mxGeometry(0, -25,290,33),"rounded=1;arcSize=9;fillColor=#ffffff;align=left;spacingLeft=5;strokeColor=#4C9AFF;html=1;strokeWidth=2;fontColor=#000000;fontSize=12");b.vertex=!0;return a.createVertexTemplateFromCells([e,b],290,58,"Text field")}),this.addEntry("atlassian password field",function(){var e=new mxCell('Password<sup><font color="#ff0000">*</font></sup>',new mxGeometry(0,0,240,20),"fillColor=none;strokeColor=none;html=1;fontSize=11;fontStyle=0;align=left;fontColor=#596780;fontStyle=1;fontSize=11");e.vertex= -!0;var b=new mxCell("••••••••",new mxGeometry(0,25,290,33),"rounded=1;arcSize=9;fillColor=#ffffff;align=left;spacingLeft=5;strokeColor=#4C9AFF;html=1;strokeWidth=2;fontColor=#000000;fontSize=12");b.vertex=!0;return a.createVertexTemplateFromCells([e,b],290,58,"Password field")}),this.addEntry("atlassian text field",function(){var e=new mxCell("Project name",new mxGeometry(0,0,240,20),"fillColor=none;strokeColor=none;html=1;fontSize=11;fontStyle=0;align=left;fontColor=#596780;fontStyle=1;fontSize=11"); -e.vertex=!0;var b=new mxCell("Watermelon Squad",new mxGeometry(0,25,290,33),"rounded=1;arcSize=9;fillColor=#F7F8F9;align=left;spacingLeft=5;strokeColor=#DEE1E6;html=1;strokeWidth=2;fontColor=#000000;fontSize=12");b.vertex=!0;return a.createVertexTemplateFromCells([e,b],290,58,"Compact text field")}),this.addEntry("atlassian text field",function(){var e=new mxCell("Project name",new mxGeometry(0,0,240,20),"fillColor=none;strokeColor=none;html=1;fontSize=11;fontStyle=0;align=left;fontColor=#596780;fontStyle=1;fontSize=11"); -e.vertex=!0;var b=new mxCell("Watermelon Squad",new mxGeometry(0,25,290,40),"rounded=1;arcSize=9;fillColor=#F7F8F9;align=left;spacingLeft=5;strokeColor=#DEE1E6;html=1;strokeWidth=2;fontColor=#000000;fontSize=12");b.vertex=!0;return a.createVertexTemplateFromCells([e,b],290,65,"Text field")}),this.addEntry("atlassian text field",function(){var e=new mxCell("Location",new mxGeometry(0,0,240,20),"fillColor=none;strokeColor=none;html=1;fontSize=11;fontStyle=0;align=left;fontColor=#596780;fontStyle=1;fontSize=11"); -e.vertex=!0;var b=new mxCell("",new mxGeometry(0,25,290,33),"rounded=1;arcSize=9;fillColor=#ffffff;align=left;spacingLeft=5;strokeColor=#4C9AFF;html=1;strokeWidth=2;fontColor=#000000;fontSize=12");b.vertex=!0;return a.createVertexTemplateFromCells([e,b],290,58,"Compact text field")}),this.addEntry("atlassian text field",function(){var e=new mxCell("Location",new mxGeometry(0,0,240,20),"fillColor=none;strokeColor=none;html=1;fontSize=11;fontStyle=0;align=left;fontColor=#596780;fontStyle=1;fontSize=11"); -e.vertex=!0;var b=new mxCell("",new mxGeometry(0,25,290,40),"rounded=1;arcSize=9;fillColor=#ffffff;align=left;spacingLeft=5;strokeColor=#4C9AFF;html=1;strokeWidth=2;fontColor=#000000;fontSize=12");b.vertex=!0;return a.createVertexTemplateFromCells([e,b],290,65,"Text field")}),this.addEntry("atlassian text field",function(){var e=new mxCell("Details",new mxGeometry(0,0,240,20),"fillColor=none;strokeColor=none;html=1;fontSize=11;fontStyle=0;align=left;fontColor=#596780;fontStyle=1;fontSize=11");e.vertex= -!0;var b=new mxCell("eg. ATP, VOSS etc",new mxGeometry(0,25,290,33),"rounded=1;arcSize=9;fillColor=#F7F8F9;align=left;spacingLeft=5;strokeColor=#DEE1E6;html=1;strokeWidth=2;fontColor=#596780;fontSize=12");b.vertex=!0;return a.createVertexTemplateFromCells([e,b],290,58,"Compact text field")}),this.addEntry("atlassian text field",function(){var e=new mxCell("Details",new mxGeometry(0,0,240,20),"fillColor=none;strokeColor=none;html=1;fontSize=11;fontStyle=0;align=left;fontColor=#596780;fontStyle=1;fontSize=11"); -e.vertex=!0;var b=new mxCell("eg. ATP, VOSS etc",new mxGeometry(0,25,290,40),"rounded=1;arcSize=9;fillColor=#F7F8F9;align=left;spacingLeft=5;strokeColor=#DEE1E6;html=1;strokeWidth=2;fontColor=#596780;fontSize=12");b.vertex=!0;return a.createVertexTemplateFromCells([e,b],290,65,"Text field")}),this.addEntry("atlassian text field help",function(){var e=new mxCell("Form label",new mxGeometry(0,0,240,20),"fillColor=none;strokeColor=none;html=1;fontSize=11;fontStyle=0;align=left;fontColor=#596780;fontStyle=1;fontSize=11"); -e.vertex=!0;var b=new mxCell("Banana bread",new mxGeometry(0,25,290,33),"rounded=1;arcSize=9;fillColor=#F7F8F9;align=left;spacingLeft=5;strokeColor=#DEE1E6;html=1;strokeWidth=2;fontColor=#596780;fontSize=12");b.vertex=!0;return a.createVertexTemplateFromCells([e,b],290,58,"Text field with placeholder text")}),this.addEntry("atlassian text field tooltip",function(){var e=new mxCell("Selected help",new mxGeometry(0,0,240,20),"fillColor=none;strokeColor=none;html=1;fontSize=11;fontStyle=0;align=left;fontColor=#596780;fontStyle=1;fontSize=11"); -e.vertex=!0;var b=new mxCell("",new mxGeometry(0,25,290,33),"rounded=1;arcSize=9;fillColor=#ffffff;align=left;spacingLeft=5;strokeColor=#4C9AFF;html=1;strokeWidth=2;fontColor=#000000;fontSize=12");b.vertex=!0;var c=new mxCell("<b>Not great</b><div>The best password is hard to guess. Try again.</div>",new mxGeometry(300,0,180,80),"html=1;rounded=1;fillColor=#ffffff;strokeColor=#DFE1E5;fontSize=12;align=left;fontColor=#000000;shadow=1;arcSize=1;whiteSpace=wrap;verticalAlign=top;spacingLeft=15;spacingRight=15;spacingTop=10"); -c.vertex=!0;return a.createVertexTemplateFromCells([e,b,c],480,80,"Text field with tooltip")}),this.addDataEntry("atlassian text field tooltip",480,80,"Text field with tooltip","pVXbjpswEP0aHndlINDlcZckm0qtVDWV+uyCAauOTW2TS7++Y+wQiEmbKkghnsFnzJwzMwRxvju+S9w2n0VJWBCvgjiXQmi72h1zwlgQIVoG8TKIIgS/IFrfeBr2T1GLJeH6HkBkAXvMOmI9G7EnElwfC8Hhb0NYa/cofWJuT0UZywUTEkwuOHjflJbiJ7lyNnoHGS1DWFaC6y39bQKExsaM1hwMRirtHp/BQRQnWfrhBZ1h7mA/jH13IjU53sy/d7nk34nYES1PsOVAS904DhaWI9QQWjcO5nhDWFm7HqAXNmHhCJ0nN/bI3WLGzOkbzJWh94pXKTpektLlimXhUs1M5iPOgaGqv3wiVYsLyutPvbVMPGUAusiz1/V6Ko/d9N2REvmKoP66UiB6RIGTIzqxiLEg2Ywgcfy4IAtPEOppoBrcmiUgaatulvaVHGmSLHLk0zbI9LdCvo/GeJ7GKcCRip59VsMXn9SzTxKGNd2TSaw5pt35XwSF1xoOf4oXk+OfsmkEUVWKaE+pIYu7xEv8bgK42aBUR5Q5ThqTC/NmeI8pwz+Y8ZSduWthbo1ZBlHKzlMHzGLQK/3Vmcn7ZrqkyDAoN3KldY+hhJU9iFe07iTwJvjzOSIkYYPazV51jVpu2uy32tvr3uV6Fa4Sr4L+NVGH/oX6LsXBGzHGOjRUky0MEOM4wDcJfKYoaYHZq4uuRetNmTC5uL664hr7vhnMMkSPTAsHgDz8cYFmxkX6//MbzMuH1xbo+Lv8Bw=="), +"tag","atlassian ").join(" ")),this.addEntry("atlassian tag removable",function(){var b=new mxCell("Removable tag",new mxGeometry(0,0,100,20),"dashed=0;html=1;fillColor=#F0F2F5;strokeColor=none;align=left;rounded=1;arcSize=10;fontColor=#596780;fontStyle=1;fontSize=11;shadow=0;spacingLeft=3");b.vertex=!0;var c=new mxCell("",new mxGeometry(1,.5,6,6),"html=1;shadow=0;dashed=0;shape=mxgraph.atlassian.x;strokeColor=#596780;strokeWidth=2");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-11,-3);c.vertex= +!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Removable tag")}),this.addEntry("atlassian tag removable link",function(){var b=new mxCell("Removable tag link",new mxGeometry(0,0,130,20),"dashed=0;html=1;fillColor=#F0F2F5;strokeColor=none;align=left;rounded=1;arcSize=10;fontColor=#3384FF;fontStyle=1;fontSize=11;shadow=0;spacingLeft=3");b.vertex=!0;var c=new mxCell("",new mxGeometry(1,.5,6,6),"html=1;shadow=0;dashed=0;shape=mxgraph.atlassian.x;strokeColor=#596780;strokeWidth=2"); +c.geometry.relative=!0;c.geometry.offset=new mxPoint(-11,-3);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Removable tag link")}),this.addEntry("atlassian text field",function(){var b=new mxCell('Name<sup><font color="#ff0000">*</font></sup>',new mxGeometry(0,0,240,20),"fillColor=none;strokeColor=none;html=1;fontSize=11;fontStyle=0;align=left;fontColor=#596780;fontStyle=1;fontSize=11");b.vertex=!0;var c=new mxCell("Messina Cake",new mxGeometry(0, +25,290,33),"rounded=1;arcSize=9;fillColor=#ffffff;align=left;spacingLeft=5;strokeColor=#4C9AFF;html=1;strokeWidth=2;fontColor=#000000;fontSize=12");c.vertex=!0;return a.createVertexTemplateFromCells([b,c],290,58,"Text field")}),this.addEntry("atlassian password field",function(){var b=new mxCell('Password<sup><font color="#ff0000">*</font></sup>',new mxGeometry(0,0,240,20),"fillColor=none;strokeColor=none;html=1;fontSize=11;fontStyle=0;align=left;fontColor=#596780;fontStyle=1;fontSize=11");b.vertex= +!0;var c=new mxCell("••••••••",new mxGeometry(0,25,290,33),"rounded=1;arcSize=9;fillColor=#ffffff;align=left;spacingLeft=5;strokeColor=#4C9AFF;html=1;strokeWidth=2;fontColor=#000000;fontSize=12");c.vertex=!0;return a.createVertexTemplateFromCells([b,c],290,58,"Password field")}),this.addEntry("atlassian text field",function(){var b=new mxCell("Project name",new mxGeometry(0,0,240,20),"fillColor=none;strokeColor=none;html=1;fontSize=11;fontStyle=0;align=left;fontColor=#596780;fontStyle=1;fontSize=11"); +b.vertex=!0;var c=new mxCell("Watermelon Squad",new mxGeometry(0,25,290,33),"rounded=1;arcSize=9;fillColor=#F7F8F9;align=left;spacingLeft=5;strokeColor=#DEE1E6;html=1;strokeWidth=2;fontColor=#000000;fontSize=12");c.vertex=!0;return a.createVertexTemplateFromCells([b,c],290,58,"Compact text field")}),this.addEntry("atlassian text field",function(){var b=new mxCell("Project name",new mxGeometry(0,0,240,20),"fillColor=none;strokeColor=none;html=1;fontSize=11;fontStyle=0;align=left;fontColor=#596780;fontStyle=1;fontSize=11"); +b.vertex=!0;var c=new mxCell("Watermelon Squad",new mxGeometry(0,25,290,40),"rounded=1;arcSize=9;fillColor=#F7F8F9;align=left;spacingLeft=5;strokeColor=#DEE1E6;html=1;strokeWidth=2;fontColor=#000000;fontSize=12");c.vertex=!0;return a.createVertexTemplateFromCells([b,c],290,65,"Text field")}),this.addEntry("atlassian text field",function(){var b=new mxCell("Location",new mxGeometry(0,0,240,20),"fillColor=none;strokeColor=none;html=1;fontSize=11;fontStyle=0;align=left;fontColor=#596780;fontStyle=1;fontSize=11"); +b.vertex=!0;var c=new mxCell("",new mxGeometry(0,25,290,33),"rounded=1;arcSize=9;fillColor=#ffffff;align=left;spacingLeft=5;strokeColor=#4C9AFF;html=1;strokeWidth=2;fontColor=#000000;fontSize=12");c.vertex=!0;return a.createVertexTemplateFromCells([b,c],290,58,"Compact text field")}),this.addEntry("atlassian text field",function(){var b=new mxCell("Location",new mxGeometry(0,0,240,20),"fillColor=none;strokeColor=none;html=1;fontSize=11;fontStyle=0;align=left;fontColor=#596780;fontStyle=1;fontSize=11"); +b.vertex=!0;var c=new mxCell("",new mxGeometry(0,25,290,40),"rounded=1;arcSize=9;fillColor=#ffffff;align=left;spacingLeft=5;strokeColor=#4C9AFF;html=1;strokeWidth=2;fontColor=#000000;fontSize=12");c.vertex=!0;return a.createVertexTemplateFromCells([b,c],290,65,"Text field")}),this.addEntry("atlassian text field",function(){var b=new mxCell("Details",new mxGeometry(0,0,240,20),"fillColor=none;strokeColor=none;html=1;fontSize=11;fontStyle=0;align=left;fontColor=#596780;fontStyle=1;fontSize=11");b.vertex= +!0;var c=new mxCell("eg. ATP, VOSS etc",new mxGeometry(0,25,290,33),"rounded=1;arcSize=9;fillColor=#F7F8F9;align=left;spacingLeft=5;strokeColor=#DEE1E6;html=1;strokeWidth=2;fontColor=#596780;fontSize=12");c.vertex=!0;return a.createVertexTemplateFromCells([b,c],290,58,"Compact text field")}),this.addEntry("atlassian text field",function(){var b=new mxCell("Details",new mxGeometry(0,0,240,20),"fillColor=none;strokeColor=none;html=1;fontSize=11;fontStyle=0;align=left;fontColor=#596780;fontStyle=1;fontSize=11"); +b.vertex=!0;var c=new mxCell("eg. ATP, VOSS etc",new mxGeometry(0,25,290,40),"rounded=1;arcSize=9;fillColor=#F7F8F9;align=left;spacingLeft=5;strokeColor=#DEE1E6;html=1;strokeWidth=2;fontColor=#596780;fontSize=12");c.vertex=!0;return a.createVertexTemplateFromCells([b,c],290,65,"Text field")}),this.addEntry("atlassian text field help",function(){var b=new mxCell("Form label",new mxGeometry(0,0,240,20),"fillColor=none;strokeColor=none;html=1;fontSize=11;fontStyle=0;align=left;fontColor=#596780;fontStyle=1;fontSize=11"); +b.vertex=!0;var c=new mxCell("Banana bread",new mxGeometry(0,25,290,33),"rounded=1;arcSize=9;fillColor=#F7F8F9;align=left;spacingLeft=5;strokeColor=#DEE1E6;html=1;strokeWidth=2;fontColor=#596780;fontSize=12");c.vertex=!0;return a.createVertexTemplateFromCells([b,c],290,58,"Text field with placeholder text")}),this.addEntry("atlassian text field tooltip",function(){var b=new mxCell("Selected help",new mxGeometry(0,0,240,20),"fillColor=none;strokeColor=none;html=1;fontSize=11;fontStyle=0;align=left;fontColor=#596780;fontStyle=1;fontSize=11"); +b.vertex=!0;var c=new mxCell("",new mxGeometry(0,25,290,33),"rounded=1;arcSize=9;fillColor=#ffffff;align=left;spacingLeft=5;strokeColor=#4C9AFF;html=1;strokeWidth=2;fontColor=#000000;fontSize=12");c.vertex=!0;var d=new mxCell("<b>Not great</b><div>The best password is hard to guess. Try again.</div>",new mxGeometry(300,0,180,80),"html=1;rounded=1;fillColor=#ffffff;strokeColor=#DFE1E5;fontSize=12;align=left;fontColor=#000000;shadow=1;arcSize=1;whiteSpace=wrap;verticalAlign=top;spacingLeft=15;spacingRight=15;spacingTop=10"); +d.vertex=!0;return a.createVertexTemplateFromCells([b,c,d],480,80,"Text field with tooltip")}),this.addDataEntry("atlassian text field tooltip",480,80,"Text field with tooltip","pVXbjpswEP0aHndlINDlcZckm0qtVDWV+uyCAauOTW2TS7++Y+wQiEmbKkghnsFnzJwzMwRxvju+S9w2n0VJWBCvgjiXQmi72h1zwlgQIVoG8TKIIgS/IFrfeBr2T1GLJeH6HkBkAXvMOmI9G7EnElwfC8Hhb0NYa/cofWJuT0UZywUTEkwuOHjflJbiJ7lyNnoHGS1DWFaC6y39bQKExsaM1hwMRirtHp/BQRQnWfrhBZ1h7mA/jH13IjU53sy/d7nk34nYES1PsOVAS904DhaWI9QQWjcO5nhDWFm7HqAXNmHhCJ0nN/bI3WLGzOkbzJWh94pXKTpektLlimXhUs1M5iPOgaGqv3wiVYsLyutPvbVMPGUAusiz1/V6Ko/d9N2REvmKoP66UiB6RIGTIzqxiLEg2Ywgcfy4IAtPEOppoBrcmiUgaatulvaVHGmSLHLk0zbI9LdCvo/GeJ7GKcCRip59VsMXn9SzTxKGNd2TSaw5pt35XwSF1xoOf4oXk+OfsmkEUVWKaE+pIYu7xEv8bgK42aBUR5Q5ThqTC/NmeI8pwz+Y8ZSduWthbo1ZBlHKzlMHzGLQK/3Vmcn7ZrqkyDAoN3KldY+hhJU9iFe07iTwJvjzOSIkYYPazV51jVpu2uy32tvr3uV6Fa4Sr4L+NVGH/oX6LsXBGzHGOjRUky0MEOM4wDcJfKYoaYHZq4uuRetNmTC5uL664hr7vhnMMkSPTAsHgDz8cYFmxkX6//MbzMuH1xbo+Lv8Bw=="), this.addDataEntry("atlassian toggle subtle",30,16,"Subtle toggle","rVRrb8IgFP01fNRQsO673fTTkiX7BcTeCpGWBlDrfv0o4KOvaTKbNOHcJ/ccANGsbDaa1fxT5SAR/UA000rZsCqbDKREBIsc0XdECHY/IusJb+K9uGYaKvtMAgkJRyYPECzBYOxZRkMhpMyUVNpDSpcr+uZqrYzVag8XT6UqF7/S6lDl0BZPHGJ6+y1+2jopjo1AW2gmN+tNcacbUCVYfXYhJ5FbHiJoLMRB7PglaxlszAS8u2beJneLOPw4EfQxEYazul26RFEbmKKgx1fhv6emJ+PTdxPOUdZ5GvAdNwkZ4SbaNEhmxRE6tcYIi/2/lHDbujafJYtO+1mPclUUBuyA8OsUT2mweKwBt6WMh8vJkauTA9iBnBnujx0OHi9U2ezaizVnVjJjBKvmWw7b/UC4l6j0hy7LoSzpS1TpaUL/r4mDt8cnhN+/Tb8="), this.addDataEntry("atlassian toggle bold",40,20,"Bold toggle","rVRdb8IgFP01PGooWOez3ebTkiV72DOxt0KkpQHUul8/WrC1aztNtEkTzv3kngMgmuTVRrOSf6gUJKJviCZaKetXeZWAlIhgkSL6igjB7kfkfcIbNV5cMg2FvSeB+IQjkwfwFm8w9iyDIRNSJkoq3UBKl2v64mqtjdVqDxdPoQoXv9bqUKRQF48cYnr7JX7qOjEOjUBbqCY325jCTjegcrD67EJOIrXcRyxCIQ5ix0NWmBEz4/Guzewmd4sw/DgR9DYRhrOyXrpEURqYouAPX1nz3TU9GZ++n3AOss5jj6+4iZZDbi42DZJZcYRerTHCQv9PJdy22uazaNVrP1v1K6gsM2AHhLdT3KXB4rYG3OYyHC4nR6pODmAHUmZ4c+yw9zRC5dWuvlhzZiUzRrBivuWw3Q+E61S6eL4DqeQR3f5TauQUr54i1LIvU/y4TA5275EPv36ufgE="), this.addDataEntry("atlassian toggle bold tooltip",280,112,"Bold toggle with tooltip","7ZdNk6IwEIZ/DcexQhBljqPoXGarpnYPe47QQGoCcZM46v76DSSoGBitUrf2sFRp5as75HnpbvCCebl7FWRdfOMpMC9YeMFccK5Mq9zNgTEPI5p6QexhjPTPw8uBWb+ZRWsioFLXGGBj8EnYBszIC2N8W/vYNAsF/NqAVNKsk2rP7LqMMjbnjAvdrXilR2dSCf4BZ4OFKvWpYl83M16pH/R37cCv+4TRvNIdBpmy062xh4PweTKNUGtmN3bdmPsHoWA3yKAZsgBegZegxF4v2dJUFZbD2HBCBdC8sGaWHSLS9POD6ZGoblio/YADB/CXJPW5g8ksmC6GcAq+qVJILQoiEksiRLeQ2NsDh8biBMyjuIwvc5EFWddNbUjXcvABO8OXNddVMIJ+GF0DiwaNXDb+xGXTjglgRNFP6PjqA2b3f+dU39Zh8yc/6mz/FHU98CyToBzgh1NcpUF4WYOT6NVypDozBHEdkymRRfMUIjPTCFXu8jqRjYhiREpKqlFSQPLhCHdUqZ35aaHiW3T7Sqmepzi6i1CTrkzhA2SaODLFVJKVluhylh5KFz5yI8ef4tk4viGPJ1ohEG4mP4h9msnRPTO5NRiHHTV60pnvh4/JZ9PBQspVoaFgtJEgtEBIcf1Xgshr/VRB67GVIFVS1PaUOKr+I6X3roJZhdqqdVqJowdVnMhR6DtsBVW0yuvdqFTcOhwOoLOIWaIlXoZ9+S2O4vkicMmi5nIFqCnShLAXO1zSNGVwQQENdsbICtg7l/ocvDYUBtrB4dvZ/MGxXJNEH/2t2d/kgyuS/e0x2g3RaU+I4p6qim/X/9nRf9ZGnX7xhobPf/X/qvo+cuP/TvLr7vEryhTd04+sPw=="), @@ -3761,14 +3762,14 @@ this.addDataEntry("atlassian nested discussion",450,160,"Nested discussion","7Vf this.addDataEntry("atlassian comment",320,213,"Comment","7Zldj5s4FIZ/DZcTYRwIuWy+KlVdabWtVPXSDU6wBjCynUlmf32PwTAhdhKmIdPdaiKNBhvb4Od9feyTeHieHz4KUqZ/8YRmHl56eC44V/VVfpjTLPMCnyUeXnhB4MOfF6zO3EXVXb8kghaqT4eg7vBEsh2ta+Y8z3Xnql6q58zUpyqHt1sgD882LMvmPOMCygUvoMFMKsEf6UnlhhfqC/tXD4BCKJOMbQsoZHSjzO2mhxdgv/pA/T5lin4pyVp33AMa845UKHo4O8+qykzyI+U5VeIZmuxZotK6xbRG4aeUbVPTy+DxiazL27bnCzS4MNzcDLHF0IInU1Lqy4w5aMHcw2k0ifXcW8o3TPm5O7UjAjhwIEADIBj3R5AfttrtI8blZMTWvJCjnaTixFbAZFN9XLSCEMdhfAuiQxeRITZ2EbOBNXW3AAstYJ9YDhWzXVGwYiuHXn7Bb1p+pkN0FfS9FmdkgcYwKnTzP+y2Owlxzg98FL0973bJ34M3Cq8CR+hOxCcW8a8pKR7B0v4GJh/4KqX6VQRM+2FXjv5sq0c2+VaNocnHFvnvfOcFEclLzaTkMPbsScPXOzwDdEkrh6BEQixuRVqDZluIRG2DguR0VEUovWb2Kan+UUHPDpHyLKlHAPy8bQa1Zjgtu67POLTCq/+UETQoodiaZB/MEIrfwR5xaNsjctgjDG+3x9Syxz+0zPS7tR4BJrGOmfrK/8we6W/YiO4aGE/wI0dgvNvybALu//yUhOK3OyYhZCH7+lzWgQMGS6vwcoJQ8F2R0MR4lIi1sd70ArwTR0owHQz9uSotQhfdxXKJltHxib1p9M1gCS5Yu7sihre1QyJnWMF4AI3sHPJS0ACHJ3wPBc0hITKtpPLrOx3v/yCSrUdrwaXULJND0+5Ui3EQBtHSltfU98J75TzVweuP7KiNxjbdpk7QjCj2RDtjuZCb5//NmU7Am4c/NBu7efzDpDsC32wkVZZk7Sz6qdgjiz23siADPsfeuSMMEJLiruEbQkeCOKP4eAC7vyLXhZ6slLR31Db75eu+BMAXSbVeveBdh3UHci7qyvRwsiUM41w7l34X5GwoeQM97JT7XY8zekRvIIedj18J7L1PmIsVnIHC4z0ddQ9EL1vEuJ9UF5VC05PUGllCIeyI+pN4gKhv59bLhNnfkr+Q9G2Sq/EqXE3OmbpzMDqGaGdLx8lU96yKfPvUaRIBPBNUQsfmfNpz9UzcmlyD3pwsf3WBNBrfY0XYiTAEIqroK9S8lO6+C+kQEk9vVxKKL7+M1c2Pfzj7CQ=="), this.addDataEntry("atlassian date picker",150,53,"Date picker","pZRdb4IwFIZ/DZea0orC5QbqzZYs2cWyy0YO0Ky0pFSH+/UrtqKsmJl4QXI++p5ynjcQkLTutoo21avMgQdkHZBUSaltVHcpcB5gxPKAZAHGyDwB3tzohqcuaqgCoe8RYCs4UL4HW8lMgFFONdhWq4/ctQrGeSq5VCYVUpjqc6uV/II/xUrXZpEsNGEhhX5nP/2AcMjdRGRyylkpTMyh0K59HhZgEiXLVYz+yPyxdgVQGrqbGE4lx2ALsgatjubIN8t15VAsLCpUASsrJ3P4EG1tXg7SC1QTOK7TjInH+FPulakIWvuQldyLHHK3KFU7t2fSr31lgMGzWW3iTeJTbBu6Y6J8OWVZ5NlkpNl6Ha6XY6/soQ9HBP9nh8OPH8F/dJQjq7hyI4wm3CDkcTcWnhueBW1Fmz6su7L/MOdlnfP5jnIQOVW+DdHTMo7D6Y/hHjZkms1Y4Eih+QSq2Cd1ringVLMDjGZN4XP3v0lmXmu4fIaT0fWzZDxBFkUL2sM/bDHliEkv/zd7/Pr39ws="), this.addDataEntry("atlassian date picker",320,415,"Date picker","1Zxdb9owFIZ/DZdFthOH5HIl0E1au2lt1euMGIiaYBTSFvbrZ0igkGMqtvorSJXyUSfk8bHzvj5H9Lxhsb4pk+X8lqcs73mjnjcsOa/qrWI9ZHneIyhLe17cIwSJvx4ZnzmLd2fRMinZorqkAakbvCb5C6uPxGKDoDSpWH1qVW3y5tQ0y/Mhz3kpdhd8IY5er6qSP7PWwXlViAeJsdic8kV1n/3ZXgAf9psrIrGf5NlsIbZzNq2a0/uL9YhHo2AQolYzeNn6EVhZsfVZDLtDDYMbxgtWlRvxL29ZWs0bFH6NCs1ZNps3zRp8KFnV+7ND03eoYqPhKmfsAcYPPE02AG/JXxYpS5tHTMpJ84TR9oGP0Asw090H8lstk0m2mH3f7cUUdJBoihAdxOFpL9X/9NSwILAjCPVCGrbAk8+A3zR8ad3iqB8wlfSD532+H3zQD6ALVvNkud0s1rPtkOzPijTvT5KcLdKkhN1wwCIZBpew8eRsThs0pFBfgiqEpPbHSpYnVfbKTq4lw9fc/yfPxNc63PyKRCe3v4pOr8Cn0xWrAP7DU1zUI/Tfe6Tgk+eXZX/Ky2LVL0s22YZ92YSkNODj8QiP6AdjSNwi5W+7ofD5gA5gL3lEFtBUwcwSAH53/JUVv1kpjhKEKcQpm68l8/ol4z8AE/Ml+OiHMR+gk6jDAaBJkISmrwDmQBKMQb4NL60UI8nrTQHIPbnzIGXTrAqOoYzjrKscCfVtgYwAyPvHO1UMo90HvNHVj2hyOqIp5CfTXSr4YQQA3v7oHsDAHkAMAD48jjoHECN7BKG/ehrF3SPo2yMocU9fH7tHMLRHEPqe8a9vnSNo80UCfcr9l4fuEbT4JoFOxcNaAQYqgJ3yigzygmZEGS60+2jAFdjDBT2HZCXBMVxtWWKSF7QWnvu8fGu8CHQSvvu8Qnu8oHFQthSljZfF6X4/Wx3xCtznZW++l6RUBu7zai1tegZ5QQsQOs+rvRRskhcU/JHzvNp6wigwqO/3q28qiDUZy4+SD74Kgr5FghLF/x+SX+AaDUfxGF0ceN71ubzzYf1UpQoxyhTagv2CnMPj2OqLAhoD7L4zsPmq8KA1wO57g3aIDQwCg95AXZ7amBgxCQyaA+y+OwBqxCQxaA+w+/4AqA+TxKBBwO47BKAtTBKDFgG77xGsTvzQI+y/jcvEbM780BN0IA3QCjFZxYw2YJI8gPuCP7AIDOp9dZkAbXm5trYwScyHer8LuQDfIjEo+DuQDWhrC6PEoOLvQj7A4sTvQ8XfhYyAxZnfh4q/AzmBdogZLGHxoeDvQFKgHWEmgUlqftzX+0BbmCSmsepHnxhrSwuTwDTW/egD1lYWJoFpLPzRV4ZncdanUO4rU/v6gFmc9anG0h9ThZ4mS1ko1PrKpL42Xu34MslLY+mPuQULk8A01v6YExUmgWks/jEnKkwC01n8Y05VmCSmptjHtqzQR0zsvv8GSv3DAsc/kfIX"), -this.addEntry("atlassian text field",function(){var e=new mxCell("Your name",new mxGeometry(0,0,240,20),"fillColor=none;strokeColor=none;html=1;fontSize=11;fontStyle=0;align=left;fontColor=#596780;fontStyle=1;fontSize=11");e.vertex=!0;var b=new mxCell("Sally Lu",new mxGeometry(0,25,290,33),"rounded=1;arcSize=9;fillColor=#F7F8F9;align=left;spacingLeft=5;strokeColor=#DEE1E6;html=1;strokeWidth=2;fontColor=#596780;fontSize=12");b.vertex=!0;return a.createVertexTemplateFromCells([e,b],290,58,"Text field")}), -this.addEntry("atlassian text field required",function(){var e=new mxCell('Requirements<sup><font color="#ff0000">*</font></sup>',new mxGeometry(0,0,240,20),"fillColor=none;strokeColor=none;html=1;fontSize=11;fontStyle=0;align=left;fontColor=#596780;fontStyle=1;fontSize=11");e.vertex=!0;var b=new mxCell("Design, eating, drinking",new mxGeometry(0,25,290,33),"rounded=1;arcSize=9;fillColor=#F7F8F9;align=left;spacingLeft=5;strokeColor=#DEE1E6;html=1;strokeWidth=2;fontColor=#596780;fontSize=12");b.vertex= -!0;return a.createVertexTemplateFromCells([e,b],290,58,"Text field with required fields")}),this.addEntry("atlassian disabled text field",function(){var e=new mxCell("Guests",new mxGeometry(0,0,240,20),"fillColor=none;strokeColor=none;html=1;fontSize=11;fontStyle=0;align=left;fontColor=#B3BAC5;fontStyle=1;fontSize=11");e.vertex=!0;var b=new mxCell("Kris Wesley",new mxGeometry(0,25,290,33),"rounded=1;arcSize=9;fillColor=#F7F8F9;align=left;spacingLeft=5;strokeColor=#DEE1E6;html=1;strokeWidth=2;fontColor=#B3BAC5;fontSize=12"); -b.vertex=!0;return a.createVertexTemplateFromCells([e,b],290,58,"Disabled text field")}),this.addDataEntry("atlassian text field disabled",370,543,"Disabled text field","7Vlbc5s4FP41vOxDBxC+PcbY9KHdncymnT4rcGzUCokVch3vr68EggakOG6MnXZazxh0Owfzfecm2UNx8fBW4DL/m2dAPbT2UCw4l02reIiBUi/0SeahlReGvvp6YfLEbFDP+iUWwOQpAmEj8BXTHTQjsQAsQY1hrUjwz5DKZlElD9Qs2hBKY065UF3GmRpdVlLwLzAYzGWhXmkVqOaGM3lH/tcKgq5vNPqqjynZMtWmsJFmulXmhSiYhcsoHogN1c7Ny4CQ8PAkIPWQQeMt8AKkOKgle5LJ3IASNaD5OZBtbsQMkD6umv62E/0Or2oYhN1oIwvt2wbgSisWGvV9DvX9wHdC3QSUvCKSCwJ6DSVf4Y26f8jh0ImkCgJMGIiqkdNDmKnrVvBdqYkjBaHYoY7oVRuuZ+5BShC1tkwr5WKLGamwJJxVb04xgAGBTnsYsOrXnwGLYd9u9jmRcFfiVE/ulaOoMc0wSTG9MY+UvDyH+oNheNJIPLIENHNYQjQ53xKipyxBDTJcKAamtEZREzjd6mY7pLGqeWphnP63480CtNnUgD4aamT/aoXV72rk+zrVcO9Jr+3uk8V0NvefcfdgBM5bfq/h/ROL80/qdxZAObMQV57LMsjMW2ORmpdeaAwesVFzrj8OB1Q+Q9j2fd1bTSzOlGgUL26SpE9cs+iTwSM82WnP52Jh+1+4cPnfCFxMLS7e6Yj6x+mu4XRB5GD6Ul43s5herj/cHEVbYRHHa7/2jB+FvIU4VViofGqB3LnccZDRsh8BzkH9oU1vBs0jLFyKhLlFwp3EVX5O2EtmyTxZvCjsrdbrYD39wbDX944Rw17gykGXinsLi4gVVKkgpa7zfqMQ1Fn1NUJQ4NuZP8c6n5C6Ci9KLiSuE0xTjJfAS6qrcMnV5Qvjew8lJztL9NM6y8Uqd0coQ1MHm0EwQu3eGaCreC9BFKSq9K7p9d3ppF1zNAIBaH5Nd7IPLT5W9d4VpylUPyvul8gdkX9N3O3ji38BZ1or09e9IPrgaAB+leNSN5UuUlZwZP9ihR7fn8xWcyveREf2JANehuGmIFlG4Vli0JLie6C3+qxE50W0Eg2UncL3g/lOcT+idpH/nMKtjTct58jmPHDFujEot88pDOWc0cMJXPdz1DAr+UmYuJPOfBWv0S/Fcz9B5jjTSbt+ZqYq3RqCUYyhX8RHE4cxhA5jCEcwBvsA4x8dOP9YwatbgWMLcTErsI9Obnf3lDy7mxvQPgjuxw+KrTOubnv9Is6ji/NkiJkENjGuuhShEYixTzpizFKgL66HnirqfxUSjMCs7ywX5ER1v/91V8/1/tn7Bg=="), -this.addEntry("atlassian error message field",function(){var e=new mxCell("Email",new mxGeometry(0,0,240,20),"fillColor=none;strokeColor=none;html=1;fontSize=11;fontStyle=0;align=left;fontColor=#596780;fontStyle=1;fontSize=11");e.vertex=!0;var b=new mxCell("shrugg#atlassian.com",new mxGeometry(0,25,300,40),"rounded=1;arcSize=9;fillColor=#ffffff;align=left;spacingLeft=5;strokeColor=#FFAB00;html=1;strokeWidth=2;fontColor=#000000;fontSize=12");b.vertex=!0;var c=new mxCell("",new mxGeometry(1,.5,20,20), -"shape=mxgraph.azure.azure_alert;fillColor=#FFAB00;strokeColor=none;html=1");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-30,-10);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([e,b],290,58,"Error message field")}),this.addEntry("atlassian error message field",function(){var e=new mxCell("Email",new mxGeometry(0,0,240,20),"fillColor=none;strokeColor=none;html=1;fontSize=11;fontStyle=0;align=left;fontColor=#596780;fontStyle=1;fontSize=11");e.vertex=!0;var b=new mxCell("shrugg#atlassian.com", -new mxGeometry(0,25,300,40),"rounded=1;arcSize=9;fillColor=#ffffff;align=left;spacingLeft=5;strokeColor=#4C9AFF;html=1;strokeWidth=2;fontColor=#000000;fontSize=12");b.vertex=!0;var c=new mxCell("",new mxGeometry(1,.5,20,20),"shape=mxgraph.azure.azure_alert;fillColor=#FFAB00;strokeColor=none;html=1");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-30,-10);c.vertex=!0;b.insert(c);c=new mxCell("Please enter a valid address.",new mxGeometry(310,22,200,46),"rounded=1;arcSize=9;fillColor=#ffffff;align=center;strokeColor=#DFE1E5;html=1;strokeWidth=1;fontColor=#000000;fontSize=12;shadow=1"); -c.vertex=!0;return a.createVertexTemplateFromCells([e,b,c],290,58,"Error message field")})];this.addPalette("atlassian","Atlassian",!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))}})();(function(){Sidebar.prototype.addAWSPalette=function(){this.addAWSAnalyticsPalette();this.addAWSApplicationServicesPalette();this.addAWSComputePalette();this.addAWSDatabasePalette();this.addAWSDeveloperToolsPalette();this.addAWSEnterpriseApplicationsPalette();this.addAWSGameDevelopmentPalette();this.addAWSGeneralPalette();this.addAWSInternetOfThingsPalette();this.addAWSManagementToolsPalette();this.addAWSMobileServicesPalette();this.addAWSNetworkingPalette();this.addAWSOnDemandWorkforcePalette(); +this.addEntry("atlassian text field",function(){var b=new mxCell("Your name",new mxGeometry(0,0,240,20),"fillColor=none;strokeColor=none;html=1;fontSize=11;fontStyle=0;align=left;fontColor=#596780;fontStyle=1;fontSize=11");b.vertex=!0;var c=new mxCell("Sally Lu",new mxGeometry(0,25,290,33),"rounded=1;arcSize=9;fillColor=#F7F8F9;align=left;spacingLeft=5;strokeColor=#DEE1E6;html=1;strokeWidth=2;fontColor=#596780;fontSize=12");c.vertex=!0;return a.createVertexTemplateFromCells([b,c],290,58,"Text field")}), +this.addEntry("atlassian text field required",function(){var b=new mxCell('Requirements<sup><font color="#ff0000">*</font></sup>',new mxGeometry(0,0,240,20),"fillColor=none;strokeColor=none;html=1;fontSize=11;fontStyle=0;align=left;fontColor=#596780;fontStyle=1;fontSize=11");b.vertex=!0;var c=new mxCell("Design, eating, drinking",new mxGeometry(0,25,290,33),"rounded=1;arcSize=9;fillColor=#F7F8F9;align=left;spacingLeft=5;strokeColor=#DEE1E6;html=1;strokeWidth=2;fontColor=#596780;fontSize=12");c.vertex= +!0;return a.createVertexTemplateFromCells([b,c],290,58,"Text field with required fields")}),this.addEntry("atlassian disabled text field",function(){var b=new mxCell("Guests",new mxGeometry(0,0,240,20),"fillColor=none;strokeColor=none;html=1;fontSize=11;fontStyle=0;align=left;fontColor=#B3BAC5;fontStyle=1;fontSize=11");b.vertex=!0;var c=new mxCell("Kris Wesley",new mxGeometry(0,25,290,33),"rounded=1;arcSize=9;fillColor=#F7F8F9;align=left;spacingLeft=5;strokeColor=#DEE1E6;html=1;strokeWidth=2;fontColor=#B3BAC5;fontSize=12"); +c.vertex=!0;return a.createVertexTemplateFromCells([b,c],290,58,"Disabled text field")}),this.addDataEntry("atlassian text field disabled",370,543,"Disabled text field","7Vlbc5s4FP41vOxDBxC+PcbY9KHdncymnT4rcGzUCokVch3vr68EggakOG6MnXZazxh0Owfzfecm2UNx8fBW4DL/m2dAPbT2UCw4l02reIiBUi/0SeahlReGvvp6YfLEbFDP+iUWwOQpAmEj8BXTHTQjsQAsQY1hrUjwz5DKZlElD9Qs2hBKY065UF3GmRpdVlLwLzAYzGWhXmkVqOaGM3lH/tcKgq5vNPqqjynZMtWmsJFmulXmhSiYhcsoHogN1c7Ny4CQ8PAkIPWQQeMt8AKkOKgle5LJ3IASNaD5OZBtbsQMkD6umv62E/0Or2oYhN1oIwvt2wbgSisWGvV9DvX9wHdC3QSUvCKSCwJ6DSVf4Y26f8jh0ImkCgJMGIiqkdNDmKnrVvBdqYkjBaHYoY7oVRuuZ+5BShC1tkwr5WKLGamwJJxVb04xgAGBTnsYsOrXnwGLYd9u9jmRcFfiVE/ulaOoMc0wSTG9MY+UvDyH+oNheNJIPLIENHNYQjQ53xKipyxBDTJcKAamtEZREzjd6mY7pLGqeWphnP63480CtNnUgD4aamT/aoXV72rk+zrVcO9Jr+3uk8V0NvefcfdgBM5bfq/h/ROL80/qdxZAObMQV57LMsjMW2ORmpdeaAwesVFzrj8OB1Q+Q9j2fd1bTSzOlGgUL26SpE9cs+iTwSM82WnP52Jh+1+4cPnfCFxMLS7e6Yj6x+mu4XRB5GD6Ul43s5herj/cHEVbYRHHa7/2jB+FvIU4VViofGqB3LnccZDRsh8BzkH9oU1vBs0jLFyKhLlFwp3EVX5O2EtmyTxZvCjsrdbrYD39wbDX944Rw17gykGXinsLi4gVVKkgpa7zfqMQ1Fn1NUJQ4NuZP8c6n5C6Ci9KLiSuE0xTjJfAS6qrcMnV5Qvjew8lJztL9NM6y8Uqd0coQ1MHm0EwQu3eGaCreC9BFKSq9K7p9d3ppF1zNAIBaH5Nd7IPLT5W9d4VpylUPyvul8gdkX9N3O3ji38BZ1or09e9IPrgaAB+leNSN5UuUlZwZP9ihR7fn8xWcyveREf2JANehuGmIFlG4Vli0JLie6C3+qxE50W0Eg2UncL3g/lOcT+idpH/nMKtjTct58jmPHDFujEot88pDOWc0cMJXPdz1DAr+UmYuJPOfBWv0S/Fcz9B5jjTSbt+ZqYq3RqCUYyhX8RHE4cxhA5jCEcwBvsA4x8dOP9YwatbgWMLcTErsI9Obnf3lDy7mxvQPgjuxw+KrTOubnv9Is6ji/NkiJkENjGuuhShEYixTzpizFKgL66HnirqfxUSjMCs7ywX5ER1v/91V8/1/tn7Bg=="), +this.addEntry("atlassian error message field",function(){var b=new mxCell("Email",new mxGeometry(0,0,240,20),"fillColor=none;strokeColor=none;html=1;fontSize=11;fontStyle=0;align=left;fontColor=#596780;fontStyle=1;fontSize=11");b.vertex=!0;var c=new mxCell("shrugg#atlassian.com",new mxGeometry(0,25,300,40),"rounded=1;arcSize=9;fillColor=#ffffff;align=left;spacingLeft=5;strokeColor=#FFAB00;html=1;strokeWidth=2;fontColor=#000000;fontSize=12");c.vertex=!0;var d=new mxCell("",new mxGeometry(1,.5,20,20), +"shape=mxgraph.azure.azure_alert;fillColor=#FFAB00;strokeColor=none;html=1");d.geometry.relative=!0;d.geometry.offset=new mxPoint(-30,-10);d.vertex=!0;c.insert(d);return a.createVertexTemplateFromCells([b,c],290,58,"Error message field")}),this.addEntry("atlassian error message field",function(){var b=new mxCell("Email",new mxGeometry(0,0,240,20),"fillColor=none;strokeColor=none;html=1;fontSize=11;fontStyle=0;align=left;fontColor=#596780;fontStyle=1;fontSize=11");b.vertex=!0;var c=new mxCell("shrugg#atlassian.com", +new mxGeometry(0,25,300,40),"rounded=1;arcSize=9;fillColor=#ffffff;align=left;spacingLeft=5;strokeColor=#4C9AFF;html=1;strokeWidth=2;fontColor=#000000;fontSize=12");c.vertex=!0;var d=new mxCell("",new mxGeometry(1,.5,20,20),"shape=mxgraph.azure.azure_alert;fillColor=#FFAB00;strokeColor=none;html=1");d.geometry.relative=!0;d.geometry.offset=new mxPoint(-30,-10);d.vertex=!0;c.insert(d);d=new mxCell("Please enter a valid address.",new mxGeometry(310,22,200,46),"rounded=1;arcSize=9;fillColor=#ffffff;align=center;strokeColor=#DFE1E5;html=1;strokeWidth=1;fontColor=#000000;fontSize=12;shadow=1"); +d.vertex=!0;return a.createVertexTemplateFromCells([b,c,d],290,58,"Error message field")})];this.addPalette("atlassian","Atlassian",!1,mxUtils.bind(this,function(a){for(var c=0;c<b.length;c++)a.appendChild(b[c](a))}))}})();(function(){Sidebar.prototype.addAWSPalette=function(){this.addAWSAnalyticsPalette();this.addAWSApplicationServicesPalette();this.addAWSComputePalette();this.addAWSDatabasePalette();this.addAWSDeveloperToolsPalette();this.addAWSEnterpriseApplicationsPalette();this.addAWSGameDevelopmentPalette();this.addAWSGeneralPalette();this.addAWSInternetOfThingsPalette();this.addAWSManagementToolsPalette();this.addAWSMobileServicesPalette();this.addAWSNetworkingPalette();this.addAWSOnDemandWorkforcePalette(); this.addAWSSDKPalette();this.addAWSSecurityAndIdentityPalette();this.addAWSStorageAndContentDeliveryPalette();this.addAWSGroupPalette()};Sidebar.prototype.addAWSAnalyticsPalette=function(){var a="dashed=0;html=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws2.";this.addPaletteFunctions("aws2Analytics","AWS / Analytics",!1,[this.createVertexTemplateEntry(a+"analytics.data_pipeline;strokeColor=none;",60,72,"","Data Pipeline",null,null,this.getTagsForStencil("mxgraph.aws.analytics","data pipeline","aws group amazon web service analytics").join(" ")), this.createVertexTemplateEntry(a+"analytics.elasticsearch;strokeColor=none;",60,72,"","ElasticSearch",null,null,this.getTagsForStencil("mxgraph.aws.analytics","elasticsearch","aws group amazon web service analytics").join(" ")),this.createVertexTemplateEntry(a+"analytics.emr;strokeColor=none;",60,72,"","EMR",null,null,this.getTagsForStencil("mxgraph.aws.analytics","emr","aws group amazon web service analytics").join(" ")),this.createVertexTemplateEntry(a+"compute_and_networking.emr_cluster;strokeColor=none;", 49,55,"","EMR Cluster",null,null,this.getTagsForStencil("mxgraph.aws.analytics","emr cluster","aws group amazon web service analytics").join(" ")),this.createVertexTemplateEntry(a+"compute_and_networking.emr_engine;strokeColor=none;",74,53,"","EMR Engine",null,null,this.getTagsForStencil("mxgraph.aws.analytics","emr engine","aws group amazon web service analytics").join(" ")),this.createVertexTemplateEntry(a+"compute_and_networking.emr_hdfs_cluster;strokeColor=none;",54,56,"","EMR HDFS Cluster",null, @@ -3883,15 +3884,15 @@ this.createVertexTemplateEntry(a+"storage_and_content_delivery.s3_bucket_with_ob "aws group amazon web service storage content delivery").join(" ")),this.createVertexTemplateEntry(a+"storage_and_content_delivery.ebs_snapshot;strokeColor=none;",53,65,"","Snapshot",null,null,this.getTagsForStencil("mxgraph.aws.storageAndContentDelivery","snapshot","aws group amazon web service storage content delivery").join(" ")),this.createVertexTemplateEntry(a+"storage_and_content_delivery.aws_storage_gateway;strokeColor=none;",59,72,"","Storage Gateway",null,null,this.getTagsForStencil("mxgraph.aws.storageAndContentDelivery", "storage gateway","aws group amazon web service storage content delivery").join(" ")),this.createVertexTemplateEntry(a+"storage_and_content_delivery.storage_gateway_cached_volumn;strokeColor=none;",52,66,"","Storage Gateway Cached Volume",null,null,this.getTagsForStencil("mxgraph.aws.storageAndContentDelivery","storage gateway cached volume","aws group amazon web service storage content delivery").join(" ")),this.createVertexTemplateEntry(a+"storage_and_content_delivery.storage_gateway_non-cached_volumn;strokeColor=none;", 52,66,"","Storage Gateway Non-Cached Volume",null,null,this.getTagsForStencil("mxgraph.aws.storageAndContentDelivery","storage gateway non cached volume","aws group amazon web service storage content delivery").join(" ")),this.createVertexTemplateEntry(a+"storage_and_content_delivery.storage_gateway_virtual_tape_library;strokeColor=none;",52,66,"","Storage Gateway Virtual Tape Library",null,null,this.getTagsForStencil("mxgraph.aws.storageAndContentDelivery","storage gateway virtual tape library", -"aws group amazon web service storage content delivery").join(" ")),this.createVertexTemplateEntry(a+"storage_and_content_delivery.ebs_volume;strokeColor=none;",46,66,"","Volume",null,null,this.getTagsForStencil("mxgraph.aws.storageAndContentDelivery","volume","aws group amazon web service storage content delivery").join(" "))])};Sidebar.prototype.addAWSGroupPalette=function(){var a=this,d="dashed=0;html=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws.groups.";this.addPaletteFunctions("aws2Groups","AWS / Groups", -!1,[this.createVertexTemplateEntry(d+"auto_scaling_group;fillColor=none;strokeColor=#000000;gradientColor=none;",200,200,"","Auto Scaling Group",null,null,this.getTagsForStencil("mxgraph.aws.groups","auto_scaling_group","aws group amazon web service ").join(" ")),this.createVertexTemplateEntry(d+"availability_zone;strokeColor=#f69721;fillColor=none;gradientColor=none;",200,200,"","Availability Zone",null,null,this.getTagsForStencil("mxgraph.aws.groups","availability_zone","aws group amazon web service ").join(" ")), -this.addEntry("aws group amazon web service cloud",function(){var e=new mxCell("",new mxGeometry(0,30,200,200),d+"rrect;fillColor=none;strokeColor=#000000;gradientColor=none;");e.vertex=!0;var b=new mxCell("",new mxGeometry(10,0,70,40),d+"aws_cloud_icon;strokeColor=none;fillColor=#F69721;gradientColor=none;");b.vertex=!0;return a.createVertexTemplateFromCells([e,b],200,230,"AWS Cloud")}),this.addEntry("aws group amazon web service corporate data center",function(){var e=new mxCell("",new mxGeometry(0, -20,200,200),d+"rrect;fillColor=none;strokeColor=#000000;gradientColor=none;");e.vertex=!0;var b=new mxCell("",new mxGeometry(20,0,30,40),d+"corporate_data_center_icon;strokeColor=none;fillColor=#6D6F70;gradientColor=none;");b.vertex=!0;return a.createVertexTemplateFromCells([e,b],200,220,"Corporate Data Center")}),this.addEntry("aws group amazon web service ec2 instance content",function(){var e=new mxCell("",new mxGeometry(0,20,200,200),d+"rrect;fillColor=none;strokeColor=#000000;gradientColor=none;"); -e.vertex=!0;var b=new mxCell("",new mxGeometry(20,0,40,40),d+"rrect;strokeColor=none;fillColor=#F69721;gradientColor=none;");b.vertex=!0;return a.createVertexTemplateFromCells([e,b],200,220,"EC2 Instance Contents")}),this.addEntry("aws group amazon web service EC2 Spot Fleet",function(){var e=new mxCell("",new mxGeometry(0,30,200,200),d+"rrect;fillColor=none;strokeColor=#000000;gradientColor=none;");e.vertex=!0;var b=new mxCell("",new mxGeometry(20,0,43,40),d+"ec2_spot_instance;strokeColor=none;gradientColor=none;"); -b.vertex=!0;return a.createVertexTemplateFromCells([e,b],200,230,"EC2 Spot Fleet")}),this.addEntry("aws group amazon web service elastic beanstalk container",function(){var e=new mxCell("",new mxGeometry(0,20,200,200),d+"rrect;fillColor=none;strokeColor=#000000;gradientColor=none;");e.vertex=!0;var b=new mxCell("",new mxGeometry(20,0,40,40),d+"elastic_beanstalk_container_icon;strokeColor=none;fillColor=#2A6A35;gradientColor=none;");b.vertex=!0;return a.createVertexTemplateFromCells([e,b],200,220, -"Elastic Beanstalk Container")}),this.createVertexTemplateEntry(d+"region;strokeColor=#000000;fillColor=none;gradientColor=none;",200,200,"","Region",null,null,this.getTagsForStencil("mxgraph.aws.groups","region","aws group amazon web service ").join(" ")),this.createVertexTemplateEntry(d+"rrect;fillColor=none;strokeColor=#000000;gradientColor=none;",200,200,"","Security Group",null,null,this.getTagsForStencil("mxgraph.aws.groups","security","aws group amazon web service ").join(" ")),this.createVertexTemplateEntry(d+ -"rrect;fillColor=#F2F2F2;strokeColor=#000000;gradientColor=none;",200,200,"","Server Contents",null,null,this.getTagsForStencil("mxgraph.aws.groups","server content","aws group amazon web service ").join(" ")),this.addEntry("aws group amazon web service virtual private cloud",function(){var e=new mxCell("",new mxGeometry(0,30,200,200),d+"rrect;fillColor=none;strokeColor=#000000;gradientColor=none;");e.vertex=!0;var b=new mxCell("",new mxGeometry(10,0,70,40),d+"virtual_private_cloud_icon;strokeColor=none;fillColor=#282560;gradientColor=none;"); -b.vertex=!0;return a.createVertexTemplateFromCells([e,b],200,230,"Virtual Private Cloud")}),this.addEntry("aws group amazon web service virtual private cloud subnet vpc",function(){var e=new mxCell("",new mxGeometry(0,30,200,200),d+"rrect;fillColor=none;strokeColor=#000000;gradientColor=none;");e.vertex=!0;var b=new mxCell("",new mxGeometry(20,0,40,40),d+"vpc_subnet_icon;strokeColor=none;fillColor=#282560;gradientColor=none;");b.vertex=!0;return a.createVertexTemplateFromCells([e,b],200,230,"VPC Subnet")})])}})();(function(){Sidebar.prototype.addAWS3Palette=function(){this.addAWS3AnalyticsPalette();this.addAWS3ApplicationServicesPalette();this.addAWS3ArtificialIntelligencePalette();this.addAWS3BusinessProductivityPalette();this.addAWS3ComputePalette();this.addAWS3ContactCenterPalette();this.addAWS3DatabasePalette();this.addAWS3DesktopAndAppStreamingPalette();this.addAWS3DeveloperToolsPalette();this.addAWS3GameDevelopmentPalette();this.addAWS3GeneralPalette();this.addAWS3GroupsPalette();this.addAWS3InternetOfThingsPalette(); +"aws group amazon web service storage content delivery").join(" ")),this.createVertexTemplateEntry(a+"storage_and_content_delivery.ebs_volume;strokeColor=none;",46,66,"","Volume",null,null,this.getTagsForStencil("mxgraph.aws.storageAndContentDelivery","volume","aws group amazon web service storage content delivery").join(" "))])};Sidebar.prototype.addAWSGroupPalette=function(){var a=this,b="dashed=0;html=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws.groups.";this.addPaletteFunctions("aws2Groups","AWS / Groups", +!1,[this.createVertexTemplateEntry(b+"auto_scaling_group;fillColor=none;strokeColor=#000000;gradientColor=none;",200,200,"","Auto Scaling Group",null,null,this.getTagsForStencil("mxgraph.aws.groups","auto_scaling_group","aws group amazon web service ").join(" ")),this.createVertexTemplateEntry(b+"availability_zone;strokeColor=#f69721;fillColor=none;gradientColor=none;",200,200,"","Availability Zone",null,null,this.getTagsForStencil("mxgraph.aws.groups","availability_zone","aws group amazon web service ").join(" ")), +this.addEntry("aws group amazon web service cloud",function(){var e=new mxCell("",new mxGeometry(0,30,200,200),b+"rrect;fillColor=none;strokeColor=#000000;gradientColor=none;");e.vertex=!0;var c=new mxCell("",new mxGeometry(10,0,70,40),b+"aws_cloud_icon;strokeColor=none;fillColor=#F69721;gradientColor=none;");c.vertex=!0;return a.createVertexTemplateFromCells([e,c],200,230,"AWS Cloud")}),this.addEntry("aws group amazon web service corporate data center",function(){var e=new mxCell("",new mxGeometry(0, +20,200,200),b+"rrect;fillColor=none;strokeColor=#000000;gradientColor=none;");e.vertex=!0;var c=new mxCell("",new mxGeometry(20,0,30,40),b+"corporate_data_center_icon;strokeColor=none;fillColor=#6D6F70;gradientColor=none;");c.vertex=!0;return a.createVertexTemplateFromCells([e,c],200,220,"Corporate Data Center")}),this.addEntry("aws group amazon web service ec2 instance content",function(){var e=new mxCell("",new mxGeometry(0,20,200,200),b+"rrect;fillColor=none;strokeColor=#000000;gradientColor=none;"); +e.vertex=!0;var c=new mxCell("",new mxGeometry(20,0,40,40),b+"rrect;strokeColor=none;fillColor=#F69721;gradientColor=none;");c.vertex=!0;return a.createVertexTemplateFromCells([e,c],200,220,"EC2 Instance Contents")}),this.addEntry("aws group amazon web service EC2 Spot Fleet",function(){var e=new mxCell("",new mxGeometry(0,30,200,200),b+"rrect;fillColor=none;strokeColor=#000000;gradientColor=none;");e.vertex=!0;var c=new mxCell("",new mxGeometry(20,0,43,40),b+"ec2_spot_instance;strokeColor=none;gradientColor=none;"); +c.vertex=!0;return a.createVertexTemplateFromCells([e,c],200,230,"EC2 Spot Fleet")}),this.addEntry("aws group amazon web service elastic beanstalk container",function(){var e=new mxCell("",new mxGeometry(0,20,200,200),b+"rrect;fillColor=none;strokeColor=#000000;gradientColor=none;");e.vertex=!0;var c=new mxCell("",new mxGeometry(20,0,40,40),b+"elastic_beanstalk_container_icon;strokeColor=none;fillColor=#2A6A35;gradientColor=none;");c.vertex=!0;return a.createVertexTemplateFromCells([e,c],200,220, +"Elastic Beanstalk Container")}),this.createVertexTemplateEntry(b+"region;strokeColor=#000000;fillColor=none;gradientColor=none;",200,200,"","Region",null,null,this.getTagsForStencil("mxgraph.aws.groups","region","aws group amazon web service ").join(" ")),this.createVertexTemplateEntry(b+"rrect;fillColor=none;strokeColor=#000000;gradientColor=none;",200,200,"","Security Group",null,null,this.getTagsForStencil("mxgraph.aws.groups","security","aws group amazon web service ").join(" ")),this.createVertexTemplateEntry(b+ +"rrect;fillColor=#F2F2F2;strokeColor=#000000;gradientColor=none;",200,200,"","Server Contents",null,null,this.getTagsForStencil("mxgraph.aws.groups","server content","aws group amazon web service ").join(" ")),this.addEntry("aws group amazon web service virtual private cloud",function(){var e=new mxCell("",new mxGeometry(0,30,200,200),b+"rrect;fillColor=none;strokeColor=#000000;gradientColor=none;");e.vertex=!0;var c=new mxCell("",new mxGeometry(10,0,70,40),b+"virtual_private_cloud_icon;strokeColor=none;fillColor=#282560;gradientColor=none;"); +c.vertex=!0;return a.createVertexTemplateFromCells([e,c],200,230,"Virtual Private Cloud")}),this.addEntry("aws group amazon web service virtual private cloud subnet vpc",function(){var e=new mxCell("",new mxGeometry(0,30,200,200),b+"rrect;fillColor=none;strokeColor=#000000;gradientColor=none;");e.vertex=!0;var c=new mxCell("",new mxGeometry(20,0,40,40),b+"vpc_subnet_icon;strokeColor=none;fillColor=#282560;gradientColor=none;");c.vertex=!0;return a.createVertexTemplateFromCells([e,c],200,230,"VPC Subnet")})])}})();(function(){Sidebar.prototype.addAWS3Palette=function(){this.addAWS3AnalyticsPalette();this.addAWS3ApplicationServicesPalette();this.addAWS3ArtificialIntelligencePalette();this.addAWS3BusinessProductivityPalette();this.addAWS3ComputePalette();this.addAWS3ContactCenterPalette();this.addAWS3DatabasePalette();this.addAWS3DesktopAndAppStreamingPalette();this.addAWS3DeveloperToolsPalette();this.addAWS3GameDevelopmentPalette();this.addAWS3GeneralPalette();this.addAWS3GroupsPalette();this.addAWS3InternetOfThingsPalette(); this.addAWS3ManagementToolsPalette();this.addAWS3MessagingPalette();this.addAWS3MigrationPalette();this.addAWS3MobileServicesPalette();this.addAWS3NetworkAndContentDeliveryPalette();this.addAWS3OnDemandWorkforcePalette();this.addAWS3SDKPalette();this.addAWS3SecurityIdentityAndCompliancePalette();this.addAWS3StoragePalette()};Sidebar.prototype.addAWS3AnalyticsPalette=function(){var a="outlineConnect=0;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;"+mxConstants.STYLE_SHAPE+ "=mxgraph.aws3.";this.addPaletteFunctions("aws3Analytics","AWS17 / Analytics",!1,[this.createVertexTemplateEntry(a+"athena;fillColor=#F58534;gradientColor=none;",76.5,76.5,"","Athena",null,null,this.getTagsForStencil("mxgraph.aws3","athena","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(a+"cloudsearch;fillColor=#F58534;gradientColor=none;",76.5,93,"","CloudSearch",null,null,this.getTagsForStencil("mxgraph.aws3","cloudsearch cloud search","aws amazon web service analytics").join(" ")), this.createVertexTemplateEntry(a+"elasticsearch_service;fillColor=#F58534;gradientColor=none;",67.5,81,"","ElasticSearch Service",null,null,this.getTagsForStencil("mxgraph.aws3","elasticsearch elastic search service","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(a+"emr;fillColor=#F58534;gradientColor=none;",67.5,81,"","EMR",null,null,this.getTagsForStencil("mxgraph.aws3","emr","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(a+"kinesis;fillColor=#F58534;gradientColor=none;", @@ -3910,26 +3911,26 @@ Sidebar.prototype.addAWS3ArtificialIntelligencePalette=function(){var a="outline this.createVertexTemplateEntry(a+"machine_learning;fillColor=#2E73B8;gradientColor=none;",76.5,93,"","Machine Learning",null,null,this.getTagsForStencil("mxgraph.aws3","machine learning","aws amazon web service ai artificial intelligence").join(" ")),this.createVertexTemplateEntry(a+"polly;fillColor=#2E73B8;gradientColor=none;",76.5,93,"","Polly",null,null,this.getTagsForStencil("mxgraph.aws3","polly","aws amazon web service ai artificial intelligence").join(" ")),this.createVertexTemplateEntry(a+ "rekognition;fillColor=#2E73B8;gradientColor=none;",76.5,93,"","Rekognition",null,null,this.getTagsForStencil("mxgraph.aws3","rekognition","aws amazon web service ai artificial intelligence").join(" "))])};Sidebar.prototype.addAWS3BusinessProductivityPalette=function(){var a="outlineConnect=0;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws3.";this.addPaletteFunctions("aws3Business Productivity","AWS17 / Business Productivity",!1, [this.createVertexTemplateEntry(a+"chime;fillColor=#03B5BB;gradientColor=none;",99,99,"","Chime",null,null,this.getTagsForStencil("mxgraph.aws3","chime","aws amazon web service business productivity").join(" ")),this.createVertexTemplateEntry(a+"workdocs;fillColor=#D16A28;gradientColor=#F58435;gradientDirection=north;",82.5,94.5,"","WorkDocs",null,null,this.getTagsForStencil("mxgraph.aws3","workdocs work docs documents","aws amazon web service business productivity").join(" ")),this.createVertexTemplateEntry(a+ -"workmail;fillColor=#D16A28;gradientColor=#F58435;gradientDirection=north;",82.5,94.5,"","WorkMail",null,null,this.getTagsForStencil("mxgraph.aws3","workmail work mail","aws amazon web service business productivity").join(" "))])};Sidebar.prototype.addAWS3ComputePalette=function(){var a=this,d="outlineConnect=0;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws3.";this.addPaletteFunctions("aws3Compute","AWS17 / Compute",!1,[this.createVertexTemplateEntry(d+ -"ami;fillColor=#F58534;gradientColor=none;",60,63,"","AMI",null,null,this.getTagsForStencil("mxgraph.aws3","ami","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"ec2;fillColor=#F58534;gradientColor=none;",76.5,93,"","EC2",null,null,this.getTagsForStencil("mxgraph.aws3","ec2","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"elastic_load_balancing;fillColor=#F58534;gradientColor=none;",76.5,93,"","Elastic Load Balancing",null,null,this.getTagsForStencil("mxgraph.aws3", -"elastic load balancing","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"auto_scaling;fillColor=#F58534;gradientColor=none;",79.5,76.5,"","Auto Scaling",null,null,this.getTagsForStencil("mxgraph.aws3","auto scaling","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"elastic_ip;fillColor=#F58534;gradientColor=none;",76.5,21,"","Elastic IP",null,null,this.getTagsForStencil("mxgraph.aws3","elastic ip","aws amazon web service compute").join(" ")), -this.createVertexTemplateEntry(d+"elastic_beanstalk;fillColor=#F58534;gradientColor=none;",67.5,93,"","Elastic Beanstalk",null,null,this.getTagsForStencil("mxgraph.aws3","elastic beanstalk","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"lambda;fillColor=#F58534;gradientColor=none;",76.5,93,"","Lambda",null,null,this.getTagsForStencil("mxgraph.aws3","lambda","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"ecs;fillColor=#F58534;gradientColor=none;", -72,67.5,"","ECS",null,null,this.getTagsForStencil("mxgraph.aws3","ecs","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"db_on_instance;fillColor=#F58534;gradientColor=none;",60,64.5,"","DB on Instance",null,null,this.getTagsForStencil("mxgraph.aws3","db on instance database","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"instance;fillColor=#F58534;gradientColor=none;",60,63,"","Instance",null,null,this.getTagsForStencil("mxgraph.aws3", -"instance","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"lightsail;fillColor=#F58534;gradientColor=none;",76.5,82.5,"","Lightsail",null,null,this.getTagsForStencil("mxgraph.aws3","lightsail","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"endpoints;fillColor=#F58534;gradientColor=none;",69,72,"","Endpoints",null,null,this.getTagsForStencil("mxgraph.aws3","endpoints","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+ -"instances;fillColor=#F58534;gradientColor=none;",60,63,"","Instances",null,null,this.getTagsForStencil("mxgraph.aws3","instances","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"elastic_network_interface;fillColor=#F58534;gradientColor=none;",69,72,"","Elastic Network Interface",null,null,this.getTagsForStencil("mxgraph.aws3","elastic network interface","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"internet_gateway;fillColor=#F58534;gradientColor=none;", -69,72,"","Internet Gateway",null,null,this.getTagsForStencil("mxgraph.aws3","internet gateway","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"flow_logs;fillColor=#F58534;gradientColor=none;",69,72,"","Flow Logs",null,null,this.getTagsForStencil("mxgraph.aws3","flow logs","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"customer_gateway;fillColor=#F58534;gradientColor=none;",69,72,"","Customer Gateway",null,null,this.getTagsForStencil("mxgraph.aws3", -"customer gateway","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"instance_with_cloudwatch;fillColor=#F58534;gradientColor=none;",60,63,"","Instance with CloudWatch",null,null,this.getTagsForStencil("mxgraph.aws3","instance with cloudwatch","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"elastic_network_adapter;fillColor=#F58534;gradientColor=none;",75,90,"","Elastic Network Adapter",null,null,this.getTagsForStencil("mxgraph.aws3","elastic network adapter", -"aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"optimized_instance;fillColor=#F58534;gradientColor=none;",60,63,"","Optimized Instance",null,null,this.getTagsForStencil("mxgraph.aws3","optimized instance","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"rescue;fillColor=#F58534;gradientColor=none;",63,66,"","Rescue",null,null,this.getTagsForStencil("mxgraph.aws3","rescue","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+ -"spot_instance;fillColor=#F58534;gradientColor=none;",60,63,"","Spot Instance",null,null,this.getTagsForStencil("mxgraph.aws3","spot instance","aws amazon web service compute").join(" ")),this.addEntry("aws amazon web service computeSpot Fleet",function(){var e=new mxCell("",new mxGeometry(0,30,200,200),"rounded=1;fillColor=none;strokeColor=#000000;gradientColor=none;arcSize=10;dashed=1;");e.vertex=!0;var b=new mxCell("",new mxGeometry(20,0,43,40),d+"spot_instance;fillColor=#F58534;strokeColor=none;gradientColor=none;"); -b.vertex=!0;return a.createVertexTemplateFromCells([e,b],200,230,"Spot Fleet")}),this.createVertexTemplateEntry(d+"ecr;fillColor=#F58534;gradientColor=none;",69,72,"","ECR",null,null,this.getTagsForStencil("mxgraph.aws3","ecr","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"vpn_gateway;fillColor=#F58534;gradientColor=none;",69,72,"","VPN Gateway",null,null,this.getTagsForStencil("mxgraph.aws3","vpn gateway virtual private network","aws amazon web service compute").join(" ")), -this.createVertexTemplateEntry(d+"deployment;fillColor=#F58534;gradientColor=none;",55.5,73.5,"","Deployment",null,null,this.getTagsForStencil("mxgraph.aws3","deployment","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"vpn_connection;fillColor=#F58534;gradientColor=none;",58.5,48,"","VPN Connection",null,null,this.getTagsForStencil("mxgraph.aws3","vpn connection virtual private network","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"vpc_peering;fillColor=#F58534;gradientColor=none;", -69,72,"","VPC Peering",null,null,this.getTagsForStencil("mxgraph.aws3","vpc peering virtual private cloud","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"application;fillColor=#F58534;gradientColor=none;",34.5,64.5,"","Application",null,null,this.getTagsForStencil("mxgraph.aws3","application","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"ec2_compute_container;fillColor=#F58534;gradientColor=none;",60,34.5,"","EC2 Compute Container", -null,null,this.getTagsForStencil("mxgraph.aws3","ec2 compute container","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"ec2_compute_container_2;fillColor=#F58534;gradientColor=none;",60,34.5,"","EC2 Compute Container",null,null,this.getTagsForStencil("mxgraph.aws3","ec2 compute container","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"ec2_compute_container_3;fillColor=#F58534;gradientColor=none;",60,34.5,"","EC2 Compute Container",null, -null,this.getTagsForStencil("mxgraph.aws3","ec2 compute container","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"vpc_nat_gateway;fillColor=#F58534;gradientColor=none;",69,72,"","VPC NAT Gateway",null,null,this.getTagsForStencil("mxgraph.aws3","vpc nat gateway virtual private cloud","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"ecr_registry;fillColor=#F58534;gradientColor=none;",57,60,"","ECR Registry",null,null,this.getTagsForStencil("mxgraph.aws3", -"ecr registry","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"batch;fillColor=#F58534;gradientColor=none;",76.5,93,"","Batch",null,null,this.getTagsForStencil("mxgraph.aws3","batch","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"router;fillColor=#F58534;gradientColor=none;",69,72,"","Router",null,null,this.getTagsForStencil("mxgraph.aws3","router","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"vpc;fillColor=#F58534;gradientColor=none;", -67.5,81,"","VPC",null,null,this.getTagsForStencil("mxgraph.aws3","vpc virtual private cloud","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"network_access_controllist;fillColor=#F58534;gradientColor=none;",69,72,"","Network Access Controllist",null,null,this.getTagsForStencil("mxgraph.aws3","network access controllist","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"lambda_function;fillColor=#F58534;gradientColor=none;",69,72,"","Lambda Function", -null,null,this.getTagsForStencil("mxgraph.aws3","lambda function","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"classic_load_balancer;fillColor=#F58534;gradientColor=none;",69,72,"","Classic Load Balancer",null,null,this.getTagsForStencil("mxgraph.aws3","classic load balancer","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"application_load_balancer;fillColor=#F58534;gradientColor=none;",69,72,"","Application Load Balancer",null,null, -this.getTagsForStencil("mxgraph.aws3","application load balancer","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"x1_instance;fillColor=#F58534;gradientColor=none;",60,63,"","X1 Instance",null,null,this.getTagsForStencil("mxgraph.aws3","x1 instance","aws amazon web service compute").join(" "))])};Sidebar.prototype.addAWS3ContactCenterPalette=function(){this.addPaletteFunctions("aws3Contact Center","AWS17 / Contact Center",!1,[this.createVertexTemplateEntry("outlineConnect=0;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;"+ +"workmail;fillColor=#D16A28;gradientColor=#F58435;gradientDirection=north;",82.5,94.5,"","WorkMail",null,null,this.getTagsForStencil("mxgraph.aws3","workmail work mail","aws amazon web service business productivity").join(" "))])};Sidebar.prototype.addAWS3ComputePalette=function(){var a=this,b="outlineConnect=0;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws3.";this.addPaletteFunctions("aws3Compute","AWS17 / Compute",!1,[this.createVertexTemplateEntry(b+ +"ami;fillColor=#F58534;gradientColor=none;",60,63,"","AMI",null,null,this.getTagsForStencil("mxgraph.aws3","ami","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"ec2;fillColor=#F58534;gradientColor=none;",76.5,93,"","EC2",null,null,this.getTagsForStencil("mxgraph.aws3","ec2","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"elastic_load_balancing;fillColor=#F58534;gradientColor=none;",76.5,93,"","Elastic Load Balancing",null,null,this.getTagsForStencil("mxgraph.aws3", +"elastic load balancing","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"auto_scaling;fillColor=#F58534;gradientColor=none;",79.5,76.5,"","Auto Scaling",null,null,this.getTagsForStencil("mxgraph.aws3","auto scaling","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"elastic_ip;fillColor=#F58534;gradientColor=none;",76.5,21,"","Elastic IP",null,null,this.getTagsForStencil("mxgraph.aws3","elastic ip","aws amazon web service compute").join(" ")), +this.createVertexTemplateEntry(b+"elastic_beanstalk;fillColor=#F58534;gradientColor=none;",67.5,93,"","Elastic Beanstalk",null,null,this.getTagsForStencil("mxgraph.aws3","elastic beanstalk","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"lambda;fillColor=#F58534;gradientColor=none;",76.5,93,"","Lambda",null,null,this.getTagsForStencil("mxgraph.aws3","lambda","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"ecs;fillColor=#F58534;gradientColor=none;", +72,67.5,"","ECS",null,null,this.getTagsForStencil("mxgraph.aws3","ecs","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"db_on_instance;fillColor=#F58534;gradientColor=none;",60,64.5,"","DB on Instance",null,null,this.getTagsForStencil("mxgraph.aws3","db on instance database","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"instance;fillColor=#F58534;gradientColor=none;",60,63,"","Instance",null,null,this.getTagsForStencil("mxgraph.aws3", +"instance","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"lightsail;fillColor=#F58534;gradientColor=none;",76.5,82.5,"","Lightsail",null,null,this.getTagsForStencil("mxgraph.aws3","lightsail","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"endpoints;fillColor=#F58534;gradientColor=none;",69,72,"","Endpoints",null,null,this.getTagsForStencil("mxgraph.aws3","endpoints","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+ +"instances;fillColor=#F58534;gradientColor=none;",60,63,"","Instances",null,null,this.getTagsForStencil("mxgraph.aws3","instances","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"elastic_network_interface;fillColor=#F58534;gradientColor=none;",69,72,"","Elastic Network Interface",null,null,this.getTagsForStencil("mxgraph.aws3","elastic network interface","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"internet_gateway;fillColor=#F58534;gradientColor=none;", +69,72,"","Internet Gateway",null,null,this.getTagsForStencil("mxgraph.aws3","internet gateway","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"flow_logs;fillColor=#F58534;gradientColor=none;",69,72,"","Flow Logs",null,null,this.getTagsForStencil("mxgraph.aws3","flow logs","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"customer_gateway;fillColor=#F58534;gradientColor=none;",69,72,"","Customer Gateway",null,null,this.getTagsForStencil("mxgraph.aws3", +"customer gateway","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"instance_with_cloudwatch;fillColor=#F58534;gradientColor=none;",60,63,"","Instance with CloudWatch",null,null,this.getTagsForStencil("mxgraph.aws3","instance with cloudwatch","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"elastic_network_adapter;fillColor=#F58534;gradientColor=none;",75,90,"","Elastic Network Adapter",null,null,this.getTagsForStencil("mxgraph.aws3","elastic network adapter", +"aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"optimized_instance;fillColor=#F58534;gradientColor=none;",60,63,"","Optimized Instance",null,null,this.getTagsForStencil("mxgraph.aws3","optimized instance","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"rescue;fillColor=#F58534;gradientColor=none;",63,66,"","Rescue",null,null,this.getTagsForStencil("mxgraph.aws3","rescue","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+ +"spot_instance;fillColor=#F58534;gradientColor=none;",60,63,"","Spot Instance",null,null,this.getTagsForStencil("mxgraph.aws3","spot instance","aws amazon web service compute").join(" ")),this.addEntry("aws amazon web service computeSpot Fleet",function(){var e=new mxCell("",new mxGeometry(0,30,200,200),"rounded=1;fillColor=none;strokeColor=#000000;gradientColor=none;arcSize=10;dashed=1;");e.vertex=!0;var c=new mxCell("",new mxGeometry(20,0,43,40),b+"spot_instance;fillColor=#F58534;strokeColor=none;gradientColor=none;"); +c.vertex=!0;return a.createVertexTemplateFromCells([e,c],200,230,"Spot Fleet")}),this.createVertexTemplateEntry(b+"ecr;fillColor=#F58534;gradientColor=none;",69,72,"","ECR",null,null,this.getTagsForStencil("mxgraph.aws3","ecr","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"vpn_gateway;fillColor=#F58534;gradientColor=none;",69,72,"","VPN Gateway",null,null,this.getTagsForStencil("mxgraph.aws3","vpn gateway virtual private network","aws amazon web service compute").join(" ")), +this.createVertexTemplateEntry(b+"deployment;fillColor=#F58534;gradientColor=none;",55.5,73.5,"","Deployment",null,null,this.getTagsForStencil("mxgraph.aws3","deployment","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"vpn_connection;fillColor=#F58534;gradientColor=none;",58.5,48,"","VPN Connection",null,null,this.getTagsForStencil("mxgraph.aws3","vpn connection virtual private network","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"vpc_peering;fillColor=#F58534;gradientColor=none;", +69,72,"","VPC Peering",null,null,this.getTagsForStencil("mxgraph.aws3","vpc peering virtual private cloud","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"application;fillColor=#F58534;gradientColor=none;",34.5,64.5,"","Application",null,null,this.getTagsForStencil("mxgraph.aws3","application","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"ec2_compute_container;fillColor=#F58534;gradientColor=none;",60,34.5,"","EC2 Compute Container", +null,null,this.getTagsForStencil("mxgraph.aws3","ec2 compute container","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"ec2_compute_container_2;fillColor=#F58534;gradientColor=none;",60,34.5,"","EC2 Compute Container",null,null,this.getTagsForStencil("mxgraph.aws3","ec2 compute container","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"ec2_compute_container_3;fillColor=#F58534;gradientColor=none;",60,34.5,"","EC2 Compute Container",null, +null,this.getTagsForStencil("mxgraph.aws3","ec2 compute container","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"vpc_nat_gateway;fillColor=#F58534;gradientColor=none;",69,72,"","VPC NAT Gateway",null,null,this.getTagsForStencil("mxgraph.aws3","vpc nat gateway virtual private cloud","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"ecr_registry;fillColor=#F58534;gradientColor=none;",57,60,"","ECR Registry",null,null,this.getTagsForStencil("mxgraph.aws3", +"ecr registry","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"batch;fillColor=#F58534;gradientColor=none;",76.5,93,"","Batch",null,null,this.getTagsForStencil("mxgraph.aws3","batch","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"router;fillColor=#F58534;gradientColor=none;",69,72,"","Router",null,null,this.getTagsForStencil("mxgraph.aws3","router","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"vpc;fillColor=#F58534;gradientColor=none;", +67.5,81,"","VPC",null,null,this.getTagsForStencil("mxgraph.aws3","vpc virtual private cloud","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"network_access_controllist;fillColor=#F58534;gradientColor=none;",69,72,"","Network Access Controllist",null,null,this.getTagsForStencil("mxgraph.aws3","network access controllist","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"lambda_function;fillColor=#F58534;gradientColor=none;",69,72,"","Lambda Function", +null,null,this.getTagsForStencil("mxgraph.aws3","lambda function","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"classic_load_balancer;fillColor=#F58534;gradientColor=none;",69,72,"","Classic Load Balancer",null,null,this.getTagsForStencil("mxgraph.aws3","classic load balancer","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"application_load_balancer;fillColor=#F58534;gradientColor=none;",69,72,"","Application Load Balancer",null,null, +this.getTagsForStencil("mxgraph.aws3","application load balancer","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"x1_instance;fillColor=#F58534;gradientColor=none;",60,63,"","X1 Instance",null,null,this.getTagsForStencil("mxgraph.aws3","x1 instance","aws amazon web service compute").join(" "))])};Sidebar.prototype.addAWS3ContactCenterPalette=function(){this.addPaletteFunctions("aws3Contact Center","AWS17 / Contact Center",!1,[this.createVertexTemplateEntry("outlineConnect=0;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;"+ mxConstants.STYLE_SHAPE+"=mxgraph.aws3.connect;fillColor=#759C3E;gradientColor=none;",90,69,"","Connect",null,null,this.getTagsForStencil("mxgraph.aws3","connect","aws amazon web service contact center").join(" "))])};Sidebar.prototype.addAWS3DatabasePalette=function(){var a="outlineConnect=0;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws3.";this.addPaletteFunctions("aws3Database","AWS17 / Database",!1,[this.createVertexTemplateEntry(a+ "dynamo_db;fillColor=#2E73B8;gradientColor=none;",72,81,"","Dynamo DB",null,null,this.getTagsForStencil("mxgraph.aws3","dynamo","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(a+"elasticache;fillColor=#2E73B8;gradientColor=none;",67.5,81,"","ElastiCache",null,null,this.getTagsForStencil("mxgraph.aws3","elasticache elastic cache","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(a+"rds;fillColor=#2E73B8;gradientColor=none;",72,81,"","RDS", null,null,this.getTagsForStencil("mxgraph.aws3","rds","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(a+"redshift;fillColor=#2E73B8;gradientColor=none;",67.5,75,"","Redshift",null,null,this.getTagsForStencil("mxgraph.aws3","redshift","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(a+"redis;fillColor=#2E73B8;gradientColor=none;",60,63,"","Redis",null,null,this.getTagsForStencil("mxgraph.aws3","redis","aws amazon web service db database").join(" ")), @@ -3959,15 +3960,15 @@ null,null,this.getTagsForStencil("mxgraph.aws3","forums","aws amazon web service this.createVertexTemplateEntry(a+"disk;fillColor=#7D7C7C;gradientColor=none;",61.5,64.5,"","Disk",null,null,this.getTagsForStencil("mxgraph.aws3","disk","aws amazon web service general").join(" ")),this.createVertexTemplateEntry(a+"generic_database;fillColor=#7D7C7C;gradientColor=none;",49.5,64.5,"","Generic Database",null,null,this.getTagsForStencil("mxgraph.aws3","generic database","aws amazon web service general").join(" ")),this.createVertexTemplateEntry(a+"internet;fillColor=#D2D3D3;gradientColor=none;", 79.5,79.5,"","Internet",null,null,this.getTagsForStencil("mxgraph.aws3","internet","aws amazon web service general").join(" ")),this.createVertexTemplateEntry(a+"internet_2;fillColor=#D2D3D3;gradientColor=none;",79.5,54,"","Internet",null,null,this.getTagsForStencil("mxgraph.aws3","internet","aws amazon web service general").join(" ")),this.createVertexTemplateEntry(a+"internet_3;fillColor=#D2D3D3;gradientColor=none;",79.5,54,"","Internet",null,null,this.getTagsForStencil("mxgraph.aws3","internet", "aws amazon web service general").join(" ")),this.createVertexTemplateEntry(a+"office_building;fillColor=#7D7C7C;gradientColor=none;",33,79.5,"","Office Building",null,null,this.getTagsForStencil("mxgraph.aws3","office building","aws amazon web service general").join(" ")),this.createVertexTemplateEntry(a+"saml_token;fillColor=#D2D3D3;gradientColor=none;",69,72,"","SAML Token",null,null,this.getTagsForStencil("mxgraph.aws3","saml token","aws amazon web service general").join(" ")),this.createVertexTemplateEntry(a+ -"ssl_padlock;fillColor=#D2D3D3;gradientColor=none;",63,78,"","SSL Padlock",null,null,this.getTagsForStencil("mxgraph.aws3","ssl padlock","aws amazon web service general").join(" "))])};Sidebar.prototype.addAWS3GroupsPalette=function(){var a=this,d="dashed=0;html=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws3.";this.addPaletteFunctions("aws3Groups","AWS17 / Groups",!1,[this.createVertexTemplateEntry("rounded=1;arcSize=10;dashed=1;strokeColor=#000000;fillColor=none;gradientColor=none;dashPattern=8 3 1 3;strokeWidth=2;", +"ssl_padlock;fillColor=#D2D3D3;gradientColor=none;",63,78,"","SSL Padlock",null,null,this.getTagsForStencil("mxgraph.aws3","ssl padlock","aws amazon web service general").join(" "))])};Sidebar.prototype.addAWS3GroupsPalette=function(){var a=this,b="dashed=0;html=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws3.";this.addPaletteFunctions("aws3Groups","AWS17 / Groups",!1,[this.createVertexTemplateEntry("rounded=1;arcSize=10;dashed=1;strokeColor=#000000;fillColor=none;gradientColor=none;dashPattern=8 3 1 3;strokeWidth=2;", 199.5,199.5,"","Auto Scaling Group",null,null,this.getTagsForStencil("mxgraph.aws3","auto scaling group","aws group amazon web service group groups").join(" ")),this.createVertexTemplateEntry("rounded=1;arcSize=10;dashed=1;strokeColor=#F59D56;fillColor=none;gradientColor=none;dashPattern=8 4;strokeWidth=2;",199.5,199.5,"","Availability Zone",null,null,this.getTagsForStencil("mxgraph.aws3","availability zone","aws group amazon web service group groups").join(" ")),this.createVertexTemplateEntry("rounded=1;arcSize=10;dashed=1;strokeColor=#000000;fillColor=none;gradientColor=none;dashPattern=1 1;strokeWidth=2;", 199.5,199.5,"","Region",null,null,this.getTagsForStencil("mxgraph.aws3","region","aws group amazon web service group groups").join(" ")),this.createVertexTemplateEntry("rounded=1;arcSize=10;dashed=1;strokeColor=#ff0000;fillColor=none;gradientColor=none;dashPattern=8 4;strokeWidth=2;",199.5,199.5,"","Security Group",null,null,this.getTagsForStencil("mxgraph.aws3","security group","aws group amazon web service group groups").join(" ")),this.addEntry("aws group amazon web service group groupselastic beanstalk container", -function(){var e=new mxCell("",new mxGeometry(0,20,200,200),"rounded=1;arcSize=10;dashed=0;strokeColor=#000000;fillColor=none;gradientColor=none;strokeWidth=2;");e.vertex=!0;var b=new mxCell("",new mxGeometry(20,0,30,41),d+"elastic_beanstalk;fillColor=#F58536;gradientColor=none;dashed=0;");b.vertex=!0;return a.createVertexTemplateFromCells([e,b],200,220,"Elastic Beanstalk Container")}),this.addEntry("aws group amazon web service group groupsec2 instance container",function(){var e=new mxCell("",new mxGeometry(0, -20,200,200),"rounded=1;arcSize=10;dashed=0;strokeColor=#000000;fillColor=none;gradientColor=none;strokeWidth=2;");e.vertex=!0;var b=new mxCell("",new mxGeometry(20,0,40,41),d+"instance;fillColor=#F58536;gradientColor=none;dashed=0;");b.vertex=!0;return a.createVertexTemplateFromCells([e,b],200,220,"EC2 Instance Container")}),this.addEntry("aws group amazon web service group groupsvpc subnet",function(){var e=new mxCell("",new mxGeometry(0,20,200,200),"rounded=1;arcSize=10;dashed=0;strokeColor=#000000;fillColor=none;gradientColor=none;strokeWidth=2;"); -e.vertex=!0;var b=new mxCell("",new mxGeometry(20,0,30,35),d+"permissions;fillColor=#D9A741;gradientColor=none;dashed=0;");b.vertex=!0;return a.createVertexTemplateFromCells([e,b],200,220,"VPC Subnet")}),this.createVertexTemplateEntry("rounded=1;arcSize=10;strokeColor=none;fillColor=#DBDBDB;gradientColor=none;",199.5,199.5,"","Server Contents",null,null,this.getTagsForStencil("mxgraph.aws3","server contents","aws group amazon web service group groups").join(" ")),this.addEntry("aws group amazon web service group groupsvirtual private cloud", -function(){var e=new mxCell("",new mxGeometry(0,20,200,200),"rounded=1;arcSize=10;dashed=0;strokeColor=#000000;fillColor=none;gradientColor=none;strokeWidth=2;");e.vertex=!0;var b=new mxCell("",new mxGeometry(20,0,52,36),d+"virtual_private_cloud;fillColor=#F58536;gradientColor=none;dashed=0;");b.vertex=!0;return a.createVertexTemplateFromCells([e,b],200,220,"Virtual Private Cloud")}),this.addEntry("aws group amazon web service group groupscloud",function(){var e=new mxCell("",new mxGeometry(0,20, -200,200),"rounded=1;arcSize=10;dashed=0;strokeColor=#000000;fillColor=none;gradientColor=none;strokeWidth=2;");e.vertex=!0;var b=new mxCell("",new mxGeometry(20,0,52,36),d+"cloud;fillColor=#F58536;gradientColor=none;dashed=0;");b.vertex=!0;return a.createVertexTemplateFromCells([e,b],200,220,"AWS Cloud")}),this.addEntry("aws group amazon web service group groupscorporate data center",function(){var e=new mxCell("",new mxGeometry(0,20,200,200),"rounded=1;arcSize=10;dashed=0;strokeColor=#000000;fillColor=none;gradientColor=none;strokeWidth=2;"); -e.vertex=!0;var b=new mxCell("",new mxGeometry(20,0,30,42),d+"corporate_data_center;fillColor=#7D7C7C;gradientColor=none;dashed=0;");b.vertex=!0;return a.createVertexTemplateFromCells([e,b],200,220,"Corporate Data Center")})])};Sidebar.prototype.addAWS3InternetOfThingsPalette=function(){var a="outlineConnect=0;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws3.";this.addPaletteFunctions("aws3Internet of Things","AWS17 / Internet of Things", +function(){var e=new mxCell("",new mxGeometry(0,20,200,200),"rounded=1;arcSize=10;dashed=0;strokeColor=#000000;fillColor=none;gradientColor=none;strokeWidth=2;");e.vertex=!0;var c=new mxCell("",new mxGeometry(20,0,30,41),b+"elastic_beanstalk;fillColor=#F58536;gradientColor=none;dashed=0;");c.vertex=!0;return a.createVertexTemplateFromCells([e,c],200,220,"Elastic Beanstalk Container")}),this.addEntry("aws group amazon web service group groupsec2 instance container",function(){var e=new mxCell("",new mxGeometry(0, +20,200,200),"rounded=1;arcSize=10;dashed=0;strokeColor=#000000;fillColor=none;gradientColor=none;strokeWidth=2;");e.vertex=!0;var c=new mxCell("",new mxGeometry(20,0,40,41),b+"instance;fillColor=#F58536;gradientColor=none;dashed=0;");c.vertex=!0;return a.createVertexTemplateFromCells([e,c],200,220,"EC2 Instance Container")}),this.addEntry("aws group amazon web service group groupsvpc subnet",function(){var e=new mxCell("",new mxGeometry(0,20,200,200),"rounded=1;arcSize=10;dashed=0;strokeColor=#000000;fillColor=none;gradientColor=none;strokeWidth=2;"); +e.vertex=!0;var c=new mxCell("",new mxGeometry(20,0,30,35),b+"permissions;fillColor=#D9A741;gradientColor=none;dashed=0;");c.vertex=!0;return a.createVertexTemplateFromCells([e,c],200,220,"VPC Subnet")}),this.createVertexTemplateEntry("rounded=1;arcSize=10;strokeColor=none;fillColor=#DBDBDB;gradientColor=none;",199.5,199.5,"","Server Contents",null,null,this.getTagsForStencil("mxgraph.aws3","server contents","aws group amazon web service group groups").join(" ")),this.addEntry("aws group amazon web service group groupsvirtual private cloud", +function(){var e=new mxCell("",new mxGeometry(0,20,200,200),"rounded=1;arcSize=10;dashed=0;strokeColor=#000000;fillColor=none;gradientColor=none;strokeWidth=2;");e.vertex=!0;var c=new mxCell("",new mxGeometry(20,0,52,36),b+"virtual_private_cloud;fillColor=#F58536;gradientColor=none;dashed=0;");c.vertex=!0;return a.createVertexTemplateFromCells([e,c],200,220,"Virtual Private Cloud")}),this.addEntry("aws group amazon web service group groupscloud",function(){var e=new mxCell("",new mxGeometry(0,20, +200,200),"rounded=1;arcSize=10;dashed=0;strokeColor=#000000;fillColor=none;gradientColor=none;strokeWidth=2;");e.vertex=!0;var c=new mxCell("",new mxGeometry(20,0,52,36),b+"cloud;fillColor=#F58536;gradientColor=none;dashed=0;");c.vertex=!0;return a.createVertexTemplateFromCells([e,c],200,220,"AWS Cloud")}),this.addEntry("aws group amazon web service group groupscorporate data center",function(){var e=new mxCell("",new mxGeometry(0,20,200,200),"rounded=1;arcSize=10;dashed=0;strokeColor=#000000;fillColor=none;gradientColor=none;strokeWidth=2;"); +e.vertex=!0;var c=new mxCell("",new mxGeometry(20,0,30,42),b+"corporate_data_center;fillColor=#7D7C7C;gradientColor=none;dashed=0;");c.vertex=!0;return a.createVertexTemplateFromCells([e,c],200,220,"Corporate Data Center")})])};Sidebar.prototype.addAWS3InternetOfThingsPalette=function(){var a="outlineConnect=0;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws3.";this.addPaletteFunctions("aws3Internet of Things","AWS17 / Internet of Things", !1,[this.createVertexTemplateEntry(a+"aws_iot;fillColor=#5294CF;gradientColor=none;",67.5,81,"","AWS IoT",null,null,this.getTagsForStencil("mxgraph.aws3","iot internet of things","aws amazon web service iot internet of things").join(" ")),this.createVertexTemplateEntry(a+"greengrass;fillColor=#5294CF;gradientColor=none;",76.5,93,"","Greengrass",null,null,this.getTagsForStencil("mxgraph.aws3","greengrass","aws amazon web service iot internet of things").join(" ")),this.createVertexTemplateEntry(a+ "action;fillColor=#5294CF;gradientColor=none;",63,64.5,"","Action",null,null,this.getTagsForStencil("mxgraph.aws3","action","aws amazon web service iot internet of things").join(" ")),this.createVertexTemplateEntry(a+"actuator;fillColor=#5294CF;gradientColor=none;",76.5,90,"","Actuator",null,null,this.getTagsForStencil("mxgraph.aws3","actuator","aws amazon web service iot internet of things").join(" ")),this.createVertexTemplateEntry(a+"certificate;fillColor=#5294CF;gradientColor=none;",63,85.5,"", "Certificate",null,null,this.getTagsForStencil("mxgraph.aws3","certificate","aws amazon web service iot internet of things").join(" ")),this.createVertexTemplateEntry(a+"desired_state;fillColor=#5294CF;gradientColor=none;",60,63,"","Desired State",null,null,this.getTagsForStencil("mxgraph.aws3","desired state","aws amazon web service iot internet of things").join(" ")),this.createVertexTemplateEntry(a+"hardware_board;fillColor=#5294CF;gradientColor=none;",84,100.5,"","Hardware Board",null,null,this.getTagsForStencil("mxgraph.aws3", @@ -4065,8 +4066,8 @@ this.createVertexTemplateEntry(a+"ami2;aspect=fixed;fillColor=#FF9900;strokeColo 123,106,"","Data Server",null,null,this.getTagsForStencil("mxgraph.aws3d","data server","aws 3d amazon web service").join(" ")),this.createVertexTemplateEntry(a+"decider;fillColor=#ECECEC;strokeColor=#5E5E5E;aspect=fixed;",74,50,"","Decider",null,null,this.getTagsForStencil("mxgraph.aws3d","decider","aws 3d amazon web service").join(" ")),this.createVertexTemplateEntry(a+"dynamoDb;fillColor=#ECECEC;strokeColor=#5E5E5E;aspect=fixed;",181.5,210,"","DynamoDB",null,null,this.getTagsForStencil("mxgraph.aws3d", "dynamodb db database","aws 3d amazon web service").join(" ")),this.createVertexTemplateEntry(a+"ebs;fillColor=#ECECEC;strokeColor=#5E5E5E;aspect=fixed;",92,60,"","EBS",null,null,this.getTagsForStencil("mxgraph.aws3d","ebs","aws 3d amazon web service").join(" ")),this.createVertexTemplateEntry(a+"ebs2;fillColor=#ECECEC;strokeColor=#5E5E5E;aspect=fixed;",92,60,"","EBS",null,null,this.getTagsForStencil("mxgraph.aws3d","ebs","aws 3d amazon web service").join(" ")),this.createVertexTemplateEntry(a+"elasticBeanstalk;fillColor=#ECECEC;strokeColor=#5E5E5E;aspect=fixed;", 182,140,"","Elastic Beanstalk",null,null,this.getTagsForStencil("mxgraph.aws3d","elastic beanstalk","aws 3d amazon web service").join(" ")),this.createVertexTemplateEntry(a+"elasticLoadBalancing;fillColor=#ECECEC;strokeColor=#5E5E5E;aspect=fixed;",92,88.17,"","Elastic Load Balancing",null,null,this.getTagsForStencil("mxgraph.aws3d","elastic load balancing elb","aws 3d amazon web service").join(" ")),this.createVertexTemplateEntry(a+"elasticMapReduce;fillColor=#ECECEC;strokeColor=#5E5E5E;aspect=fixed;", -123,133,"","Elastic MapReduce",null,null,this.getTagsForStencil("mxgraph.aws3d","elastic mapreduce","aws 3d amazon web service").join(" ")),this.addEntry("aws 3d amazon web serviceelasticache",function(){var d=new mxCell("",new mxGeometry(70,0,123,124),a+"application_server;fillColor=#ECECEC;strokeColor=#5E5E5E;aspect=fixed;");d.vertex=!0;var e=new mxCell("",new mxGeometry(0,40,123,124),a+"application_server;fillColor=#ECECEC;strokeColor=#5E5E5E;aspect=fixed;");e.vertex=!0;var b=new mxCell("",new mxGeometry(140, -40,123,124),a+"application_server;fillColor=#ECECEC;strokeColor=#5E5E5E;aspect=fixed;");b.vertex=!0;var c=new mxCell("",new mxGeometry(70,80,123,124),a+"application_server;fillColor=#ECECEC;strokeColor=#5E5E5E;aspect=fixed;");c.vertex=!0;return sb.createVertexTemplateFromCells([d,e,b,c],264,204,"Elasticache")}),this.createVertexTemplateEntry(a+"email;aspect=fixed;strokeColor=#292929;fillColor=#ffffff;",43,100*.57,"","Email",null,null,this.getTagsForStencil("mxgraph.aws3d","email","aws 3d amazon web service").join(" ")), +123,133,"","Elastic MapReduce",null,null,this.getTagsForStencil("mxgraph.aws3d","elastic mapreduce","aws 3d amazon web service").join(" ")),this.addEntry("aws 3d amazon web serviceelasticache",function(){var b=new mxCell("",new mxGeometry(70,0,123,124),a+"application_server;fillColor=#ECECEC;strokeColor=#5E5E5E;aspect=fixed;");b.vertex=!0;var e=new mxCell("",new mxGeometry(0,40,123,124),a+"application_server;fillColor=#ECECEC;strokeColor=#5E5E5E;aspect=fixed;");e.vertex=!0;var c=new mxCell("",new mxGeometry(140, +40,123,124),a+"application_server;fillColor=#ECECEC;strokeColor=#5E5E5E;aspect=fixed;");c.vertex=!0;var d=new mxCell("",new mxGeometry(70,80,123,124),a+"application_server;fillColor=#ECECEC;strokeColor=#5E5E5E;aspect=fixed;");d.vertex=!0;return sb.createVertexTemplateFromCells([b,e,c,d],264,204,"Elasticache")}),this.createVertexTemplateEntry(a+"email;aspect=fixed;strokeColor=#292929;fillColor=#ffffff;",43,100*.57,"","Email",null,null,this.getTagsForStencil("mxgraph.aws3d","email","aws 3d amazon web service").join(" ")), this.createVertexTemplateEntry(a+"email_service;fillColor=#ECECEC;strokeColor=#5E5E5E;aspect=fixed;",151,192,"","Email Service",null,null,this.getTagsForStencil("mxgraph.aws3d","email service","aws 3d amazon web service").join(" ")),this.createVertexTemplateEntry(a+"file;aspect=fixed;strokeColor=#292929;fillColor=#ffffff;",30.8,70.6,"","File",null,null,this.getTagsForStencil("mxgraph.aws3d","file","aws 3d amazon web service").join(" ")),this.createVertexTemplateEntry(a+"glacier;fillColor=#ECECEC;strokeColor=#5E5E5E;aspect=fixed;", 181,192,"","Glacier",null,null,this.getTagsForStencil("mxgraph.aws3d","glacier","aws 3d amazon web service").join(" ")),this.createVertexTemplateEntry(a+"image;strokeColor=none;fillColor=#777777;aspect=fixed;",50,86,"","Image/Video",null,null,this.getTagsForStencil("mxgraph.aws3d","image video","aws 3d amazon web service").join(" ")),this.createVertexTemplateEntry(a+"internetGateway;fillColor=#ECECEC;strokeColor=#5E5E5E;aspect=fixed;",116.7,102.8,"","Internet Gateway",null,null,this.getTagsForStencil("mxgraph.aws3d", "internet gateway","aws 3d amazon web service").join(" ")),this.createVertexTemplateEntry(a+"lambda;fillColor=#ECECEC;strokeColor=#5E5E5E;aspect=fixed;",92,109.5,"","Lambda",null,null,this.getTagsForStencil("mxgraph.aws3d","lambda","aws 3d amazon web service").join(" ")),this.createVertexTemplateEntry(a+"mobile_worker;aspect=fixed;strokeColor=none;fillColor=#777777;",36,90,"","Mobile Worker",null,null,this.getTagsForStencil("mxgraph.aws3d","mobile worker","aws 3d amazon web service").join(" ")),this.createVertexTemplateEntry(a+ @@ -4090,400 +4091,400 @@ null,null,this.getTagsForStencil("mxgraph.aws3d","reference","aws 3d amazon web "mxgraph.aws4",this,"points=[[0,0],[0.25,0],[0.5,0],[0.75,0],[1,0],[1,0.25],[1,0.5],[1,0.75],[1,1],[0.75,1],[0.5,1],[0.25,1],[0,1],[0,0.75],[0,0.5],[0,0.25]];");this.addAWS4AnalyticsPalette(1,100,100,78,"mxgraph.aws4",this);this.addAWS4ApplicationIntegrationPalette(1,100,100,78,"mxgraph.aws4",this);this.addAWS4ARVRPalette(1,100,100,78,"mxgraph.aws4",this);this.addAWS4CostManagementPalette(1,100,100,78,"mxgraph.aws4",this);this.addAWS4BlockchainPalette(1,100,100,78,"mxgraph.aws4",this);this.addAWS4BusinessApplicationsPalette(1, 100,100,78,"mxgraph.aws4",this);this.addAWS4EC2InstanceTypePalette(1,100,100,78,"mxgraph.aws4",this);this.addAWS4ComputePalette(1,100,100,78,"mxgraph.aws4",this);this.addAWS4CustomerEngagementPalette(1,100,100,78,"mxgraph.aws4",this);this.addAWS4DatabasePalette(1,100,100,78,"mxgraph.aws4",this);this.addAWS4DeveloperToolsPalette(1,100,100,78,"mxgraph.aws4",this);this.addAWS4EndUserComputingPalette(1,100,100,78,"mxgraph.aws4",this);this.addAWS4GameTechPalette(1,100,100,78,"mxgraph.aws4",this);this.addAWS4InternetOfThingsPalette(1, 100,100,78,"mxgraph.aws4",this);this.addAWS4MachineLearningPalette(1,100,100,78,"mxgraph.aws4",this);this.addAWS4ManagementGovernancePalette(1,100,100,78,"mxgraph.aws4",this);this.addAWS4MediaServicesPalette(1,100,100,78,"mxgraph.aws4",this);this.addAWS4MigrationTransferPalette(1,100,100,78,"mxgraph.aws4",this);this.addAWS4MobilePalette(1,100,100,78,"mxgraph.aws4",this);this.addAWS4NetworkContentDeliveryPalette(1,100,100,78,"mxgraph.aws4",this);this.addAWS4RoboticsPalette(1,100,100,78,"mxgraph.aws4", -this);this.addAWS4SatellitePalette(1,100,100,78,"mxgraph.aws4",this);this.addAWS4SecurityIdentityCompliancePalette(1,100,100,78,"mxgraph.aws4",this);this.addAWS4StoragePalette(1,100,100,78,"mxgraph.aws4",this)};Sidebar.prototype.addAWS4ArrowsPalette=function(a,d,e){this.addPaletteFunctions("aws4Arrows","AWS / Arrows",!1,[this.createEdgeTemplateEntry("edgeStyle=orthogonalEdgeStyle;html=1;endArrow=none;elbow=vertical;startArrow=block;startFill=1;strokeColor=#545B64;rounded=0;",100*a,0*a,"","Default (left)", -null,this.getTagsForStencil(d,"","aws amazon web service arrowsdefault left").join(" ")),this.createEdgeTemplateEntry("edgeStyle=orthogonalEdgeStyle;html=1;endArrow=block;elbow=vertical;startArrow=none;endFill=1;strokeColor=#545B64;rounded=0;",100*a,0*a,"","Default (left)",null,this.getTagsForStencil(d,"","aws amazon web service arrowsdefault left").join(" ")),this.createEdgeTemplateEntry("edgeStyle=orthogonalEdgeStyle;html=1;endArrow=block;elbow=vertical;startArrow=block;startFill=1;endFill=1;strokeColor=#545B64;rounded=0;", -100*a,0*a,"","Default (double)",null,this.getTagsForStencil(d,"","aws amazon web service arrowsdefault double").join(" ")),this.createEdgeTemplateEntry("edgeStyle=orthogonalEdgeStyle;html=1;endArrow=none;elbow=vertical;startArrow=openThin;startFill=0;strokeColor=#545B64;rounded=0;",100*a,0*a,"","Open (thin, left)",null,this.getTagsForStencil(d,"","aws amazon web service arrowsopen thin left").join(" ")),this.createEdgeTemplateEntry("edgeStyle=orthogonalEdgeStyle;html=1;endArrow=openThin;elbow=vertical;startArrow=none;endFill=0;strokeColor=#545B64;rounded=0;", -100*a,0*a,"","Open (thin, left)",null,this.getTagsForStencil(d,"","aws amazon web service arrowsopen thin left").join(" ")),this.createEdgeTemplateEntry("edgeStyle=orthogonalEdgeStyle;html=1;endArrow=openThin;elbow=vertical;startArrow=openThin;startFill=0;endFill=0;strokeColor=#545B64;rounded=0;",100*a,0*a,"","Open (thin, double)",null,this.getTagsForStencil(d,"","aws amazon web service arrowsopen thin double").join(" ")),this.createEdgeTemplateEntry("edgeStyle=orthogonalEdgeStyle;html=1;endArrow=none;elbow=vertical;startArrow=open;startFill=0;strokeColor=#545B64;rounded=0;", -100*a,0*a,"","Open (left)",null,this.getTagsForStencil(d,"","aws amazon web service arrowsopen left").join(" ")),this.createEdgeTemplateEntry("edgeStyle=orthogonalEdgeStyle;html=1;endArrow=open;elbow=vertical;startArrow=none;endFill=0;strokeColor=#545B64;rounded=0;",100*a,0*a,"","Open (left)",null,this.getTagsForStencil(d,"","aws amazon web service arrowsopen left").join(" ")),this.createEdgeTemplateEntry("edgeStyle=orthogonalEdgeStyle;html=1;endArrow=open;elbow=vertical;startArrow=open;startFill=0;endFill=0;strokeColor=#545B64;rounded=0;", -100*a,0*a,"","Open (double)",null,this.getTagsForStencil(d,"","aws amazon web service arrowsopen double").join(" "))])};Sidebar.prototype.addAWS4GeneralResourcesPalette=function(a,d,e){e="outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#232F3E;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";var b="gradientDirection=north;outlineConnect=0;fontColor=#232F3E;gradientColor=#505863;fillColor=#1E262E;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+ -mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4General Resources","AWS / General Resources",!1,[this.createVertexTemplateEntry(b+"resourceIcon;resIcon="+d+".marketplace;",78*a,78*a,"","Marketplace",null,null,this.getTagsForStencil(d,"marketplace","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(b+"resourceIcon;resIcon="+d+".general;",78*a,78*a,"","General",null,null,this.getTagsForStencil(d,"general","aws amazon web service general resources").join(" ")), -this.createVertexTemplateEntry(e+"client;",78*a,76*a,"","Client",null,null,this.getTagsForStencil(d,"client","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(e+"corporate_data_center;",53*a,78*a,"","Corporate Data Center",null,null,this.getTagsForStencil(d,"corporate data center","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(e+"disk;",78*a,78*a,"","Disk",null,null,this.getTagsForStencil(d,"disk","aws amazon web service general resources").join(" ")), -this.createVertexTemplateEntry(e+"forums;",78*a,76*a,"","Forums",null,null,this.getTagsForStencil(d,"forums","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(e+"generic_database;",59*a,78*a,"","Generic Database",null,null,this.getTagsForStencil(d,"generic database","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(e+"internet;",78*a,48*a,"","Internet",null,null,this.getTagsForStencil(d,"internet","aws amazon web service general resources").join(" ")), -this.createVertexTemplateEntry(e+"internet_alt1;",78*a,48*a,"","Internet",null,null,this.getTagsForStencil(d,"internet","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(e+"internet_alt2;",78*a,78*a,"","Internet Gateway",null,null,this.getTagsForStencil(d,"internet gateway","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(e+"mobile_client;",41*a,78*a,"","Mobile Client",null,null,this.getTagsForStencil(d,"mobile client","aws amazon web service general resources").join(" ")), -this.createVertexTemplateEntry(e+"multimedia;",78*a,73*a,"","Multimedia",null,null,this.getTagsForStencil(d,"multimedia","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(e+"office_building;",50*a,78*a,"","Office Building",null,null,this.getTagsForStencil(d,"office building","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(e+"saml_token;",78*a,78*a,"","SAML Token",null,null,this.getTagsForStencil(d,"saml token","aws amazon web service general resources").join(" ")), -this.createVertexTemplateEntry(e+"ssl_padlock;",78*a,76*a,"","SSL Padlock",null,null,this.getTagsForStencil(d,"ssl padlock","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(e+"tape_storage;",78*a,38*a,"","Tape Storage",null,null,this.getTagsForStencil(d,"tape storage","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(e+"traditional_server;",45*a,78*a,"","Traditional Server",null,null,this.getTagsForStencil(d,"traditional server", -"aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(e+"user;",78*a,78*a,"","User",null,null,this.getTagsForStencil(d,"user","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(e+"users;",78*a,78*a,"","Users",null,null,this.getTagsForStencil(d,"users","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(e+"external_toolkit;",68*a,78*a,"","Toolkit",null,null,this.getTagsForStencil(d,"external toolkit", -"aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(e+"external_sdk;",68*a,78*a,"","SDK",null,null,this.getTagsForStencil(d,"external sdk software development kit","aws amazon web service general resources").join(" "))])};Sidebar.prototype.addAWS4IllustrationsPalette=function(a,d,e,b){this.addPaletteFunctions("aws4Illustrations","AWS / Illustrations",!1,[this.createVertexTemplateEntry(d+"illustration_users;pointerEvents=1",100*a,100*a,"users",null,null,null,this.getTagsForStencil(e, -"users","aws amazon web service illustrations").join(" ")),this.createVertexTemplateEntry(d+"illustration_notification;pointerEvents=1",100*a,81*a,"notification",null,null,null,this.getTagsForStencil(e,"users","aws amazon web service illustrations").join(" ")),this.createVertexTemplateEntry(d+"illustration_devices;pointerEvents=1",100*a,73*a,"devices",null,null,null,this.getTagsForStencil(e,"devices","aws amazon web service illustrations").join(" ")),this.createVertexTemplateEntry(d+"illustration_desktop;pointerEvents=1", -100*a,91*a,"desktop",null,null,null,this.getTagsForStencil(e,"desktop","aws amazon web service illustrations").join(" ")),this.createVertexTemplateEntry(d+"illustration_office_building;pointerEvents=1",100*a,71*a,"office building",null,null,null,this.getTagsForStencil(e,"office building","aws amazon web service illustrations").join(" "))])};Sidebar.prototype.addAWS4GroupsPalette=function(a,d,e,b){e=b+"outlineConnect=0;gradientColor=none;html=1;whiteSpace=wrap;fontSize=12;fontStyle=0;"+mxConstants.STYLE_SHAPE+ -"=mxgraph.aws4.";this.addPaletteFunctions("aws4Groups","AWS / Groups",!1,[this.createVertexTemplateEntry(e+"group;grIcon="+d+".group_aws_cloud_alt;strokeColor=#232F3E;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#232F3E;dashed=0;",130*a,130*a,"AWS Cloud",null,null,null,this.getTagsForStencil(d,"cloud","aws amazon web service groups group").join(" ")),this.createVertexTemplateEntry(e+"group;grIcon="+d+".group_aws_cloud;strokeColor=#232F3E;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#232F3E;dashed=0;", -130*a,130*a,"AWS Cloud",null,null,null,this.getTagsForStencil(d,"cloud","aws amazon web service groups group").join(" ")),this.createVertexTemplateEntry(e+"group;grIcon="+d+".group_region;strokeColor=#147EBA;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#147EBA;dashed=0;",130*a,130*a,"Region",null,null,null,this.getTagsForStencil(d,"region","aws amazon web service groups group").join(" ")),this.createVertexTemplateEntry("fillColor=none;strokeColor=#147EBA;dashed=1;verticalAlign=top;fontStyle=0;fontColor=#147EBA;", -130*a,130*a,"Availability Zone",null,null,null,this.getTagsForStencil(d,"availability zone","aws amazon web service groups group").join(" ")),this.createVertexTemplateEntry("fillColor=none;strokeColor=#DD3522;verticalAlign=top;fontStyle=0;fontColor=#DD3522;",130*a,130*a,"Security group",null,null,null,this.getTagsForStencil(d,"security","aws amazon web service groups group").join(" ")),this.createVertexTemplateEntry(e+"groupCenter;grIcon="+d+".group_auto_scaling_group;grStroke=1;strokeColor=#D86613;fillColor=none;verticalAlign=top;align=center;fontColor=#D86613;dashed=1;spacingTop=25;", -130*a,130*a,"Auto Scaling group",null,null,null,this.getTagsForStencil(d,"auto scaling","aws amazon web service groups group").join(" ")),this.createVertexTemplateEntry(e+"group;grIcon="+d+".group_vpc;strokeColor=#248814;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#AAB7B8;dashed=0;",130*a,130*a,"VPC",null,null,null,this.getTagsForStencil(d,"vpc virtual private cloud","aws amazon web service groups group").join(" ")),this.createVertexTemplateEntry(e+"group;grIcon="+d+".group_security_group;grStroke=0;strokeColor=#147EBA;fillColor=#E6F2F8;verticalAlign=top;align=left;spacingLeft=30;fontColor=#147EBA;dashed=0;", -130*a,130*a,"Private subnet",null,null,null,this.getTagsForStencil(d,"private subnet","aws amazon web service groups group").join(" ")),this.createVertexTemplateEntry(e+"group;grIcon="+d+".group_security_group;grStroke=0;strokeColor=#248814;fillColor=#E9F3E6;verticalAlign=top;align=left;spacingLeft=30;fontColor=#248814;dashed=0;",130*a,130*a,"Public subnet",null,null,null,this.getTagsForStencil(d,"public subnet","aws amazon web service groups group").join(" ")),this.createVertexTemplateEntry(e+"group;grIcon="+ -d+".group_on_premise;strokeColor=#5A6C86;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#5A6C86;dashed=0;",130*a,130*a,"Server contents",null,null,null,this.getTagsForStencil(d,"server contents","aws amazon web service groups group").join(" ")),this.createVertexTemplateEntry(e+"group;grIcon="+d+".group_corporate_data_center;strokeColor=#5A6C86;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#5A6C86;dashed=0;",130*a,130*a,"Corporate data center",null,null, -null,this.getTagsForStencil(d,"corporate data center","aws amazon web service groups group").join(" ")),this.createVertexTemplateEntry(e+"group;grIcon="+d+".group_elastic_beanstalk;strokeColor=#D86613;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#D86613;dashed=0;",130*a,130*a,"Elastic Beanstalk container",null,null,null,this.getTagsForStencil(d,"elastic beanstalk container","aws amazon web service groups group").join(" ")),this.createVertexTemplateEntry(e+"group;grIcon="+d+ -".group_ec2_instance_contents;strokeColor=#D86613;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#D86613;dashed=0;",130*a,130*a,"EC2 instance contents",null,null,null,this.getTagsForStencil(d,"ec2 instance contents","aws amazon web service groups group").join(" ")),this.createVertexTemplateEntry(e+"group;grIcon="+d+".group_spot_fleet;strokeColor=#D86613;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#D86613;dashed=0;",130*a,130*a,"Spot Fleet",null,null, -null,this.getTagsForStencil(d,"spot fleet","aws amazon web service groups group").join(" ")),this.createVertexTemplateEntry(e+"group;grIcon="+d+".group_aws_step_functions_workflow;strokeColor=#CD2264;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#CD2264;dashed=0;",130*a,130*a,"AWS Step Functions workflow",null,null,null,this.getTagsForStencil(d,"step function","aws amazon web service groups group").join(" ")),this.createVertexTemplateEntry("fillColor=none;strokeColor=#5A6C86;dashed=1;verticalAlign=top;fontStyle=0;fontColor=#5A6C86;", -130*a,130*a,"Generic group",null,null,null,this.getTagsForStencil(d,"generic","aws amazon web service groups group").join(" ")),this.createVertexTemplateEntry("fillColor=#EFF0F3;strokeColor=none;dashed=0;verticalAlign=top;fontStyle=0;fontColor=#232F3D;",130*a,130*a,"Generic group",null,null,null,this.getTagsForStencil(d,"generic","aws amazon web service groups group").join(" "))])};Sidebar.prototype.addAWS4AnalyticsPalette=function(a,d,e,b,c,f,g){d="outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#5A30B5;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;"+ -mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";e="outlineConnect=0;fontColor=#232F3E;gradientColor=#945DF2;gradientDirection=north;fillColor=#5A30B5;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4Analytics","AWS / Analytics",!1,[this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".athena;",b,b,"","Athena",null,null,this.getTagsForStencil(c, -"athena","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".cloudsearch;",b,b,"","CloudSearch",null,null,this.getTagsForStencil(c,"cloudsearch","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".elasticsearch_service;",b,b,"","ElasticSearch Service",null,null,this.getTagsForStencil(c,"elasticsearch service","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(e+ -"resourceIcon;resIcon="+c+".emr;",b,b,"","EMR",null,null,this.getTagsForStencil(c,"emr","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".kinesis;",b,b,"","Kinesis",null,null,this.getTagsForStencil(c,"kinesis","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".kinesis_data_analytics;",b,b,"","Kinesis Data Analytics",null,null,this.getTagsForStencil(c,"kinesis data analytics","aws amazon web service analytics").join(" ")), -this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".kinesis_data_firehose;",b,b,"","Kinesis Data Firehose",null,null,this.getTagsForStencil(c,"kinesis data firehose","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".kinesis_data_streams;",b,b,"","Kinesis Data Streams",null,null,this.getTagsForStencil(c,"kinesis data streams","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".kinesis_video_streams;", -b,b,"","Kinesis Video Streams",null,null,this.getTagsForStencil(c,"kinesis video streams","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".quicksight;",b,b,"","QuickSight",null,null,this.getTagsForStencil(c,"quicksight quick sight","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".redshift;",b,b,"","Redshift",null,null,this.getTagsForStencil(c,"redshift","aws amazon web service analytics").join(" ")), -this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".analytics;",b,b,"","Analytics",null,null,this.getTagsForStencil(c,"analytics","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".data_pipeline;",b,b,"","Data Pipeline",null,null,this.getTagsForStencil(c,"data pipeline","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".managed_streaming_for_kafka;",b,b,"","Managed Streaming for Kafka", -null,null,this.getTagsForStencil(c,"managed streaming for kafka","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".glue;",b,b,"","Glue",null,null,this.getTagsForStencil(c,"glue","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".lake_formation;",b,b,"","Lake Formation",null,null,this.getTagsForStencil(c,"lake formation","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(d+ -"search_documents;",68*a,78*a,"","Search Documents",null,null,this.getTagsForStencil(c,"search documents","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(d+"cluster;",78*a,78*a,"","HDFS Cluster",null,null,this.getTagsForStencil(c,"hdfs cluster","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(d+"data_lake_resource_icon;",78*a,78*a,"","Data Lake",null,null,this.getTagsForStencil(c,"data lake","aws amazon web service analytics").join(" ")), -this.createVertexTemplateEntry(d+"emr_engine;",78*a,59*a,"","EMR Engine",null,null,this.getTagsForStencil(c,"emr engine","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(d+"emr_engine_mapr_m3;",78*a,59*a,"","EMR Engine MapR M3",null,null,this.getTagsForStencil(c,"emr engine mapr m3","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(d+"emr_engine_mapr_m5;",78*a,59*a,"","EMR Engine MapR M5",null,null,this.getTagsForStencil(c,"emr engine mapr m5", -"aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(d+"emr_engine_mapr_m7;",78*a,59*a,"","EMR Engine MapR M7",null,null,this.getTagsForStencil(c,"emr engine mapr m7","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(d+"hdfs_cluster;",78*a,78*a,"","Cluster",null,null,this.getTagsForStencil(c,"cluster","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(d+"dense_compute_node;",78*a,78*a,"","Dense Compute Node",null,null, -this.getTagsForStencil(c,"dense compute node","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(d+"dense_storage_node;",78*a,78*a,"","Dense Storage Node",null,null,this.getTagsForStencil(c,"dense storage node","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(d+"glue_crawlers;",78*a,78*a,"","Crawler",null,null,this.getTagsForStencil(c,"crawler","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(d+"glue_data_catalog;", -72*a,78*a,"","Data Catalog",null,null,this.getTagsForStencil(c,"data catalog","aws amazon web service analytics").join(" "))])};Sidebar.prototype.addAWS4ApplicationIntegrationPalette=function(a,d,e,b,c,f){d="outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#BC1356;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";e="outlineConnect=0;fontColor=#232F3E;gradientColor=#F34482;gradientDirection=north;fillColor=#BC1356;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+ -mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4Application Integration","AWS / Application Integration",!1,[this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".mq;",b,b,"","MQ",null,null,this.getTagsForStencil(c,"mq","aws amazon web service application integration").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".sns;",b,b,"","Simple Notification System",null,null,this.getTagsForStencil(c,"sns simple notification system","aws amazon web service application integration").join(" ")), -this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".sqs;",b,b,"","Simple Queue System",null,null,this.getTagsForStencil(c,"sqs simple queue system","aws amazon web service application integration").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".application_integration;",b,b,"","Application Integration",null,null,this.getTagsForStencil(c,"application integration","aws amazon web service application integration").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+ -c+".appsync;",b,b,"","AppSync",null,null,this.getTagsForStencil(c,"appsync","aws amazon web service application integration").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".eventbridge;",b,b,"","EventBridge",null,null,this.getTagsForStencil(c,"eventbridge event bridge","aws amazon web service application integration").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".step_functions;",b,b,"","Step Functions",null,null,this.getTagsForStencil(c,"step functions", -"aws amazon web service application integration").join(" ")),this.createVertexTemplateEntry(d+"email_notification;",78*a,78*a,"","Email Notification",null,null,this.getTagsForStencil(c,"email notification","aws amazon web service application integration").join(" ")),this.createVertexTemplateEntry(d+"http_notification;",78*a,78*a,"","HTTP Notification",null,null,this.getTagsForStencil(c,"http notification","aws amazon web service application integration").join(" ")),this.createVertexTemplateEntry(d+ -"topic;",78*a,67*a,"","Topic",null,null,this.getTagsForStencil(c,"topic","aws amazon web service application integration").join(" ")),this.createVertexTemplateEntry(d+"message;",76*a,78*a,"","Message",null,null,this.getTagsForStencil(c,"message","aws amazon web service application integration").join(" ")),this.createVertexTemplateEntry(d+"queue;",78*a,47*a,"","Queue",null,null,this.getTagsForStencil(c,"queue","aws amazon web service application integration").join(" "))])};Sidebar.prototype.addAWS4ARVRPalette= -function(a,d,e,b,c,f){a="outlineConnect=0;fontColor=#232F3E;gradientColor=#F34482;gradientDirection=north;fillColor=#BC1356;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4AR VR","AWS / AR & VR",!1,[this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+c+".sumerian;",b,b,"","Sumerian",null,null,this.getTagsForStencil(c,"sumerian","aws amazon web service ar vr augmented virtual reality").join(" ")), -this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+c+".ar_vr;",b,b,"","AR VR",null,null,this.getTagsForStencil(c,"ar vr augmented virtual reality","aws amazon web service ar vr augmented virtual reality").join(" "))])};Sidebar.prototype.addAWS4CostManagementPalette=function(a,d,e,b,c,f){a="outlineConnect=0;fontColor=#232F3E;gradientColor=#60A337;gradientDirection=north;fillColor=#277116;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+ -mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4Cost Management","AWS / Cost Management",!1,[this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+c+".budgets;",b,b,"","Budgets",null,null,this.getTagsForStencil(c,"budgets","aws amazon web service cost management").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+c+".cost_and_usage_report;",b,b,"","Cost and Usage Report",null,null,this.getTagsForStencil(c,"cost and usage report","aws amazon web service cost management").join(" ")), -this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+c+".cost_explorer;",b,b,"","Cost Explorer",null,null,this.getTagsForStencil(c,"cost explorer","aws amazon web service cost management").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+c+".cost_management;",b,b,"","Cost Management",null,null,this.getTagsForStencil(c,"cost management","aws amazon web service cost management").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+c+".reserved_instance_reporting;", -b,b,"","Reserved Instance Reporting",null,null,this.getTagsForStencil(c,"reserved instance reporting","aws amazon web service cost management").join(" "))])};Sidebar.prototype.addAWS4BlockchainPalette=function(a,d,e,b,c,f){a="outlineConnect=0;fontColor=#232F3E;gradientColor=#F78E04;gradientDirection=north;fillColor=#D05C17;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4."; -this.addPaletteFunctions("aws4Blockchain","AWS / Blockchain",!1,[this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+c+".managed_blockchain;",b,b,"","Managed Blockchain",null,null,this.getTagsForStencil(c,"managed blockchain","aws amazon web service cost management").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+c+".quantum_ledger_database;",b,b,"","Quantum Ledger Database (QLDB)",null,null,this.getTagsForStencil(c,"quantum ledger database","aws amazon web service cost management").join(" ")), -this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+c+".blockchain;",b,b,"","Blockchain",null,null,this.getTagsForStencil(c,"blockchain","aws amazon web service cost management").join(" "))])};Sidebar.prototype.addAWS4BusinessApplicationsPalette=function(a,d,e,b,c,f){a="outlineConnect=0;fontColor=#232F3E;gradientColor=#F54749;gradientDirection=north;fillColor=#C7131F;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+ -mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4Business Applications","AWS / Business Applications",!1,[this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+c+".alexa_for_business;",b,b,"","Alexa for Business",null,null,this.getTagsForStencil(c,"alexa for business","aws amazon web service business applications").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+c+".chime;",b,b,"","Chime",null,null,this.getTagsForStencil(c,"chime","aws amazon web service business applications").join(" ")), -this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+c+".workmail;",b,b,"","WorkMail",null,null,this.getTagsForStencil(c,"workmail","aws amazon web service business applications").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+c+".business_application;",b,b,"","Business Application",null,null,this.getTagsForStencil(c,"business application","aws amazon web service business applications").join(" "))])};Sidebar.prototype.addAWS4EC2InstanceTypePalette=function(a,d,e,b,c,f){d= -"outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#D86613;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4EC2 Instance Types","AWS / EC2 Instance Types",!1,[this.createVertexTemplateEntry(d+"a1_instance;",48*a,48*a,"","A1 Instance",null,null,this.getTagsForStencil(c,"a1","aws amazon web service ec2 instance type").join(" ")), -this.createVertexTemplateEntry(d+"c4_instance;",48*a,48*a,"","C4 Instance",null,null,this.getTagsForStencil(c,"c4","aws amazon web service ec2 instance type").join(" ")),this.createVertexTemplateEntry(d+"c5_instance;",48*a,48*a,"","C5 Instance",null,null,this.getTagsForStencil(c,"c5","aws amazon web service ec2 instance type").join(" ")),this.createVertexTemplateEntry(d+"c5n_instance;",48*a,48*a,"","C5n Instance",null,null,this.getTagsForStencil(c,"c5n","aws amazon web service ec2 instance type").join(" ")), -this.createVertexTemplateEntry(d+"d2_instance;",48*a,48*a,"","D2 Instance",null,null,this.getTagsForStencil(c,"d2","aws amazon web service ec2 instance type").join(" ")),this.createVertexTemplateEntry(d+"db_on_instance2;",48*a,48*a,"","DB on Instance",null,null,this.getTagsForStencil(c,"db on database","aws amazon web service ec2 instance type").join(" ")),this.createVertexTemplateEntry(d+"f1_instance;",48*a,48*a,"","F1 Instance",null,null,this.getTagsForStencil(c,"f1","aws amazon web service ec2 instance type").join(" ")), -this.createVertexTemplateEntry(d+"g3_instance;",48*a,48*a,"","G3 Instance",null,null,this.getTagsForStencil(c,"g3","aws amazon web service ec2 instance type").join(" ")),this.createVertexTemplateEntry(d+"h1_instance;",48*a,48*a,"","H1 Instance",null,null,this.getTagsForStencil(c,"h1","aws amazon web service ec2 instance type").join(" ")),this.createVertexTemplateEntry(d+"high_memory_instance;",48*a,48*a,"","High Memory Instance",null,null,this.getTagsForStencil(c,"high memory instance","aws amazon web service ec2 instance type").join(" ")), -this.createVertexTemplateEntry(d+"i3_instance;",48*a,48*a,"","I3 Instance",null,null,this.getTagsForStencil(c,"i3","aws amazon web service ec2 instance type").join(" ")),this.createVertexTemplateEntry(d+"instance2;",48*a,48*a,"","Instance",null,null,this.getTagsForStencil(c,"","aws amazon web service ec2 instance type").join(" ")),this.createVertexTemplateEntry(d+"instances;",48*a,48*a,"","Instances",null,null,this.getTagsForStencil(c,"","aws amazon web service ec2 instance type").join(" ")),this.createVertexTemplateEntry(d+ -"instance_with_cloudwatch2;",48*a,48*a,"","Instance with CloudWatch",null,null,this.getTagsForStencil(c,"instance with cloudwatch","aws amazon web service ec2 instance type").join(" ")),this.createVertexTemplateEntry(d+"m4_instance;",48*a,48*a,"","M4 Instance",null,null,this.getTagsForStencil(c,"m4","aws amazon web service ec2 instance type").join(" ")),this.createVertexTemplateEntry(d+"m5a_instance;",48*a,48*a,"","M5a Instance",null,null,this.getTagsForStencil(c,"m5a","aws amazon web service ec2 instance type").join(" ")), -this.createVertexTemplateEntry(d+"m5_instance;",48*a,48*a,"","M5 Instance",null,null,this.getTagsForStencil(c,"m5","aws amazon web service ec2 instance type").join(" ")),this.createVertexTemplateEntry(d+"optimized_instance;",48*a,48*a,"","Optimized Instance",null,null,this.getTagsForStencil(c,"optimized instance","aws amazon web service ec2 instance type").join(" ")),this.createVertexTemplateEntry(d+"p2_instance;",48*a,48*a,"","P2 Instance",null,null,this.getTagsForStencil(c,"p2","aws amazon web service ec2 instance type").join(" ")), -this.createVertexTemplateEntry(d+"p3_instance;",48*a,48*a,"","P3 Instance",null,null,this.getTagsForStencil(c,"p3","aws amazon web service ec2 instance type").join(" ")),this.createVertexTemplateEntry(d+"r4_instance;",48*a,48*a,"","R4 Instance",null,null,this.getTagsForStencil(c,"r4","aws amazon web service ec2 instance type").join(" ")),this.createVertexTemplateEntry(d+"r5a_instance;",48*a,48*a,"","R5a Instance",null,null,this.getTagsForStencil(c,"r5a","aws amazon web service ec2 instance type").join(" ")), -this.createVertexTemplateEntry(d+"r5_instance;",48*a,48*a,"","R5 Instance",null,null,this.getTagsForStencil(c,"r5","aws amazon web service ec2 instance type").join(" ")),this.createVertexTemplateEntry(d+"spot_instance;",48*a,48*a,"","Spot Instance",null,null,this.getTagsForStencil(c,"spot","aws amazon web service ec2 instance type").join(" ")),this.createVertexTemplateEntry(d+"t2_instance;",48*a,48*a,"","T2 Instance",null,null,this.getTagsForStencil(c,"t2","aws amazon web service ec2 instance type").join(" ")), -this.createVertexTemplateEntry(d+"t3a_instance;",48*a,48*a,"","T3a Instance",null,null,this.getTagsForStencil(c,"t3a","aws amazon web service ec2 instance type").join(" ")),this.createVertexTemplateEntry(d+"t3_instance;",48*a,48*a,"","T3 Instance",null,null,this.getTagsForStencil(c,"t3","aws amazon web service ec2 instance type").join(" ")),this.createVertexTemplateEntry(d+"t3_instance;",48*a,48*a,"","T3 Instance",null,null,this.getTagsForStencil(c,"t3","aws amazon web service ec2 instance type").join(" ")), -this.createVertexTemplateEntry(d+"x1e_instance;",48*a,48*a,"","X1e Instance",null,null,this.getTagsForStencil(c,"x1e","aws amazon web service ec2 instance type").join(" ")),this.createVertexTemplateEntry(d+"x1_instance2;",48*a,48*a,"","X1 Instance",null,null,this.getTagsForStencil(c,"x1","aws amazon web service ec2 instance type").join(" ")),this.createVertexTemplateEntry(d+"z1d_instance;",48*a,48*a,"","z1d Instance",null,null,this.getTagsForStencil(c,"z1d","aws amazon web service ec2 instance type").join(" "))])}; -Sidebar.prototype.addAWS4ComputePalette=function(a,d,e,b,c,f){d="outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#D05C17;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";e="outlineConnect=0;fontColor=#232F3E;gradientColor=#F78E04;gradientDirection=north;fillColor=#D05C17;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+ -mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4Compute","AWS / Compute",!1,[this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".ec2;",b,b,"","EC2",null,null,this.getTagsForStencil(c,"ec2","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".auto_scaling2;",b,b,"","Auto Scaling",null,null,this.getTagsForStencil(c,"auto scaling","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+ -c+".ecr;",b,b,"","Elastic Container Registry",null,null,this.getTagsForStencil(c,"elastic container registry ecr","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".ecs;",b,b,"","Elastic Container Service",null,null,this.getTagsForStencil(c,"elastic container service ecs","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".eks;",b,b,"","Elastic Container Service for Kubernetes",null,null,this.getTagsForStencil(c, -"elastic container service eks for kubernetes","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".lightsail;",b,b,"","Lightsail",null,null,this.getTagsForStencil(c,"lightsail","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".batch;",b,b,"","Batch",null,null,this.getTagsForStencil(c,"batch","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+ -c+".elastic_beanstalk;",b,b,"","Elastic Beanstalk",null,null,this.getTagsForStencil(c,"elastic beanstalk","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".fargate;",b,b,"","Fargate",null,null,this.getTagsForStencil(c,"fargate","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".lambda;",b,b,"","Lambda",null,null,this.getTagsForStencil(c,"lambda","aws amazon web service compute").join(" ")), -this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".outposts;",b,b,"","Outposts",null,null,this.getTagsForStencil(c,"outposts","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".serverless_application_repository;",b,b,"","Serverless Application Repository",null,null,this.getTagsForStencil(c,"serverless application repository","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".thinkbox_deadline;", -b,b,"","Thinkbox Deadline",null,null,this.getTagsForStencil(c,"thinkbox deadline","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".thinkbox_draft;",b,b,"","Thinkbox Draft",null,null,this.getTagsForStencil(c,"thinkbox draft","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".thinkbox_frost;",b,b,"","Thinkbox Frost",null,null,this.getTagsForStencil(c,"thinkbox frost","aws amazon web service compute").join(" ")), -this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".thinkbox_krakatoa;",b,b,"","Thinkbox Krakatoa",null,null,this.getTagsForStencil(c,"thinkbox krakatoa","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".thinkbox_sequoia;",b,b,"","Thinkbox Sequoia",null,null,this.getTagsForStencil(c,"thinkbox sequoia","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".thinkbox_stoke;",b,b,"","Thinkbox Stoke", -null,null,this.getTagsForStencil(c,"thinkbox stoke","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".thinkbox_xmesh;",b,b,"","Thinkbox XMesh",null,null,this.getTagsForStencil(c,"thinkbox xmesh","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".compute;",b,b,"","Compute",null,null,this.getTagsForStencil(c,"compute","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(e+ -"resourceIcon;resIcon="+c+".elastic_load_balancing;",b,b,"","Elastic Load Balancing",null,null,this.getTagsForStencil(c,"elastic load balancing","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".vmware_cloud_on_aws;",b,b,"","VMware Cloud on AWS",null,null,this.getTagsForStencil(c,"vmware cloud on aws virtual machine vm","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"ami;",78*a,78*a,"","AMI",null,null,this.getTagsForStencil(c, -"ami","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"auto_scaling2;",78*a,78*a,"","Auto-Scaling",null,null,this.getTagsForStencil(c,"autoscaling auto scaling","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"elastic_ip_address;",78*a,33*a,"","Elastic IP Address",null,null,this.getTagsForStencil(c,"elastic ip itnernet protocol address","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"rescue;",78*a,78*a,"","Rescue", -null,null,this.getTagsForStencil(c,"rescue","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"registry;",78*a,78*a,"","Registry",null,null,this.getTagsForStencil(c,"registry","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"container_1;",78*a,50*a,"","Container",null,null,this.getTagsForStencil(c,"ecs elastic container service","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"container_2;",78*a,50*a,"","Container", -null,null,this.getTagsForStencil(c,"ecs elastic container service","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"container_3;",78*a,50*a,"","Container",null,null,this.getTagsForStencil(c,"ecs elastic container service","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"container_registry_image;",78*a,78*a,"","Image",null,null,this.getTagsForStencil(c,"image","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"ecs_service;", -64*a,78*a,"","Service",null,null,this.getTagsForStencil(c,"ecs elastic container service","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"ecs_task;",59*a,78*a,"","Task",null,null,this.getTagsForStencil(c,"ecs elastic container service task","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"application;",50*a,78*a,"","Application",null,null,this.getTagsForStencil(c,"elastic beanstalk application","aws amazon web service compute").join(" ")), -this.createVertexTemplateEntry(d+"deployment;",78*a,74*a,"","Deployment",null,null,this.getTagsForStencil(c,"elastic beanstalk deployment","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"lambda_function;",78*a,78*a,"","Lambda Function",null,null,this.getTagsForStencil(c,"lambda function","aws amazon web service compute").join(" "))])};Sidebar.prototype.addAWS4CustomerEngagementPalette=function(a,d,e,b,c,f){d="outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#3334B9;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;"+ -mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";e="outlineConnect=0;fontColor=#232F3E;gradientColor=#4D72F3;gradientDirection=north;fillColor=#3334B9;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4Customer Engagement","AWS / Customer Engagement",!1,[this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".connect;",b,b,"","Connect",null,null,this.getTagsForStencil(c, -"connect","aws amazon web service customer engagement").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".pinpoint;",b,b,"","Pinpoint",null,null,this.getTagsForStencil(c,"pinpoint","aws amazon web service customer engagement").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".simple_email_service;",b,b,"","Simple Email Service",null,null,this.getTagsForStencil(c,"simple email service","aws amazon web service customer engagement").join(" ")),this.createVertexTemplateEntry(e+ -"resourceIcon;resIcon="+c+".customer_engagement;",b,b,"","Customer Engagement",null,null,this.getTagsForStencil(c,"customer engagement","aws amazon web service customer engagement").join(" ")),this.createVertexTemplateEntry(d+"email;",78*a,69*a,"","Email",null,null,this.getTagsForStencil(c,"email","aws amazon web service customer engagement").join(" "))])};Sidebar.prototype.addAWS4DatabasePalette=function(a,d,e,b,c,f){d="outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#3334B9;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;"+ -mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";e="outlineConnect=0;fontColor=#232F3E;gradientColor=#4D72F3;gradientDirection=north;fillColor=#3334B9;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4Database","AWS / Database",!1,[this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".aurora;",b,b,"","Aurora",null,null,this.getTagsForStencil(c, -"aurora","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".documentdb_with_mongodb_compatibility;",b,b,"","DocumentDB (with MongoDB Compatibility)",null,null,this.getTagsForStencil(c,"documentdb with mongodb compatibility","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".dynamodb;",b,b,"","DynamoDB",null,null,this.getTagsForStencil(c,"dynamodb","aws amazon web service db database").join(" ")), -this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".elasticache;",b,b,"","ElastiCache",null,null,this.getTagsForStencil(c,"elasticache","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".neptune;",b,b,"","Neptune",null,null,this.getTagsForStencil(c,"neptune","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".quantum_ledger_database;",b,b,"","Quantum Ledger Database",null, -null,this.getTagsForStencil(c,"quantum ledger database db","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".rds;",b,b,"","RDS",null,null,this.getTagsForStencil(c,"rds","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".rds_on_vmware;",b,b,"","RDS on VMware",null,null,this.getTagsForStencil(c,"rds on vmware","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(e+ -"resourceIcon;resIcon="+c+".redshift;",b,b,"","Redshift",null,null,this.getTagsForStencil(c,"redshift","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".timestream;",b,b,"","Timestream",null,null,this.getTagsForStencil(c,"timestream","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".database_migration_service;",b,b,"","Database Migration Service",null,null,this.getTagsForStencil(c, -"database migration service","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".database;",b,b,"","Database",null,null,this.getTagsForStencil(c,"database","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"attribute;",78*a,78*a,"","Attribute",null,null,this.getTagsForStencil(c,"dynamodb dynamo db database attribute","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"attributes;", -78*a,78*a,"","Attributes",null,null,this.getTagsForStencil(c,"dynamodb dynamo db database attributes","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"aurora_instance;",78*a,78*a,"","Aurora Instance",null,null,this.getTagsForStencil(c,"aurora instance","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"aurora_instance_alt;",78*a,78*a,"","Aurora Instance",null,null,this.getTagsForStencil(c,"aurora instance","aws amazon web service db database").join(" ")), -this.createVertexTemplateEntry(d+"rds_instance;",78*a,78*a,"","RDS Instance",null,null,this.getTagsForStencil(c,"rds instance","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"rds_instance_alt;",78*a,78*a,"","RDS Instance",null,null,this.getTagsForStencil(c,"rds instance","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"rds_mariadb_instance;",78*a,78*a,"","RDS MariaDB Instance",null,null,this.getTagsForStencil(c,"rds mariadb maria db instance", -"aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"rds_mariadb_instance_alt;",78*a,78*a,"","RDS MariaDB Instance",null,null,this.getTagsForStencil(c,"rds mariadb maria db instance","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"rds_mysql_instance;",78*a,78*a,"","RDS MySQL Instance",null,null,this.getTagsForStencil(c,"rds mysql instance","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"rds_mysql_instance_alt;", -78*a,78*a,"","RDS MySQL Instance",null,null,this.getTagsForStencil(c,"rds mysql instance","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"rds_oracle_instance;",78*a,78*a,"","RDS Oracle Instance",null,null,this.getTagsForStencil(c,"rds oracle instance","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"rds_oracle_instance_alt;",78*a,78*a,"","RDS Oracle Instance",null,null,this.getTagsForStencil(c,"rds oracle instance","aws amazon web service db database").join(" ")), -this.createVertexTemplateEntry(d+"rds_piop;",78*a,78*a,"","RDS PIOP",null,null,this.getTagsForStencil(c,"rds piop","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"rds_postgresql_instance;",78*a,78*a,"","RDS PostgreSQL Instance",null,null,this.getTagsForStencil(c,"rds postgresql instance","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"rds_postgresql_instance_alt;",78*a,78*a,"","RDS PostgreSQL Instance",null,null,this.getTagsForStencil(c, -"rds postgresql instance","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"rds_sql_server_instance;",78*a,78*a,"","RDS SQL Server Instance",null,null,this.getTagsForStencil(c,"rds sql server instance","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"rds_sql_server_instance_alt;",78*a,78*a,"","RDS SQL Server Instance",null,null,this.getTagsForStencil(c,"rds sql server instance","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+ -"dynamodb_dax;",78*a,72*a,"","DAX",null,null,this.getTagsForStencil(c,"dynamodb dynamo db database dax","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"global_secondary_index;",78*a,78*a,"","Global Secondary Index",null,null,this.getTagsForStencil(c,"global secondary index","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"item;",78*a,78*a,"","Item",null,null,this.getTagsForStencil(c,"item","aws amazon web service db database").join(" ")), -this.createVertexTemplateEntry(d+"items;",78*a,78*a,"","Items",null,null,this.getTagsForStencil(c,"items","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"table;",78*a,78*a,"","Table",null,null,this.getTagsForStencil(c,"table","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"cache_node;",78*a,78*a,"","Cache Node",null,null,this.getTagsForStencil(c,"elasticache elastic cache node","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+ -"elasticache_for_memcached;",78*a,69*a,"","ElastiCache for Memcached",null,null,this.getTagsForStencil(c,"elasticache for memcached","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"elasticache_for_redis;",78*a,69*a,"","Elasticache for Redis",null,null,this.getTagsForStencil(c,"elasticache for redis","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"dense_compute_node;",78*a,78*a,"","Dense Compute Node",null,null,this.getTagsForStencil(c, -"dense compute node","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"dense_storage_node;",78*a,78*a,"","Dense Storage Node",null,null,this.getTagsForStencil(c,"dense storage node","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"database_migration_workflow_job;",50*a,78*a,"","Database Migration Workflow",null,null,this.getTagsForStencil(c,"database migration workflow","aws amazon web service db database").join(" "))])};Sidebar.prototype.addAWS4EndUserComputingPalette= -function(a,d,e,b,c,f){a="outlineConnect=0;fontColor=#232F3E;gradientColor=#4AB29A;gradientDirection=north;fillColor=#116D5B;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4End User Computing","AWS / End User Computing",!1,[this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+c+".appstream_20;",b,b,"","Appstream 2.0",null,null,this.getTagsForStencil(c, -"appstream","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+c+".workspaces;",b,b,"","Workspaces",null,null,this.getTagsForStencil(c,"workspaces","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+c+".worklink;",b,b,"","WorkLink",null,null,this.getTagsForStencil(c,"worklink","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+c+".workdocs;", -b,b,"","WorkDocs",null,null,this.getTagsForStencil(c,"workdocs","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+c+".desktop_and_app_streaming;",b,b,"","End User Computing",null,null,this.getTagsForStencil(c,"desktop and app streaming","aws amazon web service db database").join(" "))])};Sidebar.prototype.addAWS4DeveloperToolsPalette=function(a,d,e,b,c,f){d="outlineConnect=0;fontColor=#232F3E;gradientColor=#4D72F3;gradientDirection=north;fillColor=#3334B9;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+ -mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4Developer Tools","AWS / Developer Tools",!1,[this.createVertexTemplateEntry("outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#3334B9;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.dynamodb_dax;",78*a,72*a,"","DAX",null,null,this.getTagsForStencil(c,"dynamodb dynamo db database dax","aws amazon web service dev developer tools").join(" ")), -this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+c+".cloud9;",b,b,"","Cloud9",null,null,this.getTagsForStencil(c,"cloud9","aws amazon web service dev developer tools").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+c+".cloud_development_kit;",b,b,"","Cloud Development Kit",null,null,this.getTagsForStencil(c,"cloud development kit","aws amazon web service dev developer tools").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+c+".codebuild;",b,b,"","CodeBuild", -null,null,this.getTagsForStencil(c,"codebuild","aws amazon web service dev developer tools").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+c+".codecommit;",b,b,"","CodeCommit",null,null,this.getTagsForStencil(c,"codecommit","aws amazon web service dev developer tools").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+c+".codedeploy;",b,b,"","CodeDeploy",null,null,this.getTagsForStencil(c,"codedeploy","aws amazon web service dev developer tools").join(" ")), -this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+c+".codepipeline;",b,b,"","CodePipeline",null,null,this.getTagsForStencil(c,"codepipeline","aws amazon web service dev developer tools").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+c+".codestar;",b,b,"","CodeStar",null,null,this.getTagsForStencil(c,"codestar","aws amazon web service dev developer tools").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+c+".command_line_interface;",b,b,"","Command-Line Interface", -null,null,this.getTagsForStencil(c,"command line interface","aws amazon web service dev developer tools").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+c+".tools_and_sdks;",b,b,"","Tools and SDKs",null,null,this.getTagsForStencil(c,"tools and sdks software development kit","aws amazon web service dev developer tools").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+c+".xray;",b,b,"","X-Ray",null,null,this.getTagsForStencil(c,"ray xray","aws amazon web service dev developer tools").join(" ")), -this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+c+".developer_tools;",b,b,"","Developer Tools",null,null,this.getTagsForStencil(c,"developer tools","aws amazon web service dev developer tools").join(" "))])};Sidebar.prototype.addAWS4GameTechPalette=function(a,d,e,b,c,f){a="outlineConnect=0;fontColor=#232F3E;gradientColor=#945DF2;gradientDirection=north;fillColor=#5A30B5;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+ -mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4Game Tech","AWS / Game Tech",!1,[this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+c+".gamelift;",b,b,"","GameLift",null,null,this.getTagsForStencil(c,"gamelift","aws amazon web service game development").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+c+".game_tech;",b,b,"","Game Tech",null,null,this.getTagsForStencil(c,"game tech","aws amazon web service game development").join(" "))])};Sidebar.prototype.addAWS4InternetOfThingsPalette= -function(a,d,e,b,c,f){d="outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#277116;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";e="outlineConnect=0;fontColor=#232F3E;gradientColor=#60A337;gradientDirection=north;fillColor=#277116;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+ -mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4Internet of Things","AWS / Internet of Things",!1,[this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".freertos;",b,b,"","FreeRTOS",null,null,this.getTagsForStencil(c,"freertos","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".iot_1click;",b,b,"","1Click",null,null,this.getTagsForStencil(c,"1click","aws amazon web service internet of things iot").join(" ")), -this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".iot_analytics;",b,b,"","Analytics",null,null,this.getTagsForStencil(c,"analytics","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".iot_button;",b,b,"","Button",null,null,this.getTagsForStencil(c,"button","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".iot_core;",b,b,"","Core",null,null,this.getTagsForStencil(c, -"core","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".iot_device_defender;",b,b,"","Device Defender",null,null,this.getTagsForStencil(c,"device defender","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".iot_device_management;",b,b,"","Device Management",null,null,this.getTagsForStencil(c,"device management","aws amazon web service internet of things iot").join(" ")), -this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".iot_events;",b,b,"","Events",null,null,this.getTagsForStencil(c,"events","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".greengrass;",b,b,"","Greengrass",null,null,this.getTagsForStencil(c,"greengrass","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".iot_sitewise;",b,b,"","SiteWise",null,null,this.getTagsForStencil(c, -"sitewise","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".iot_things_graph;",b,b,"","Graph",null,null,this.getTagsForStencil(c,"graph","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".internet_of_things;",b,b,"","Internet of Things",null,null,this.getTagsForStencil(c,"","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+ -"iot_analytics_channel;",65*a,78*a,"","Channel",null,null,this.getTagsForStencil(c,"analytics channel","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"data_set;",63*a,78*a,"","Data Set",null,null,this.getTagsForStencil(c,"data set","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"iot_analytics_data_store;",54*a,78*a,"","Data Store",null,null,this.getTagsForStencil(c,"analytics data store","aws amazon web service internet of things iot").join(" ")), -this.createVertexTemplateEntry(d+"iot_analytics_pipeline;",78*a,42*a,"","Pipeline",null,null,this.getTagsForStencil(c,"analytics pipeline","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"notebook;",68*a,78*a,"","Notebook",null,null,this.getTagsForStencil(c,"notebook","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"connector;",78*a,29*a,"","Connector",null,null,this.getTagsForStencil(c,"notebook","aws amazon web service internet of things iot").join(" ")), -this.createVertexTemplateEntry(d+"action;",78*a,78*a,"","Action",null,null,this.getTagsForStencil(c,"action","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"actuator;",72*a,78*a,"","Actuator",null,null,this.getTagsForStencil(c,"actuator","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"alexa_enabled_device;",72*a,78*a,"","Alexa Enabled Device",null,null,this.getTagsForStencil(c,"alexa enabled device","aws amazon web service internet of things iot").join(" ")), -this.createVertexTemplateEntry(d+"alexa_skill;",78*a,78*a,"","Alexa Skill",null,null,this.getTagsForStencil(c,"alexa skill","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"alexa_skill;",78*a,78*a,"","Alexa Voice Service",null,null,this.getTagsForStencil(c,"alexa voice service","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"bank;",78*a,78*a,"","Bank",null,null,this.getTagsForStencil(c,"bank","aws amazon web service internet of things iot").join(" ")), -this.createVertexTemplateEntry(d+"bycicle;",78*a,78*a,"","Bycicle",null,null,this.getTagsForStencil(c,"bycicle","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"camera;",78*a,78*a,"","Camera",null,null,this.getTagsForStencil(c,"camera","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"car;",78*a,78*a,"","Car",null,null,this.getTagsForStencil(c,"car","aws amazon web service internet of things iot").join(" ")), -this.createVertexTemplateEntry(d+"cart;",78*a,78*a,"","Cart",null,null,this.getTagsForStencil(c,"cart","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"certificate_manager;",59*a,78*a,"","Certificate",null,null,this.getTagsForStencil(c,"certificate manager","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"coffee_pot;",78*a,78*a,"","Coffee Pot",null,null,this.getTagsForStencil(c,"coffee pot","aws amazon web service internet of things iot").join(" ")), -this.createVertexTemplateEntry(d+"desired_state;",78*a,78*a,"","Desired State",null,null,this.getTagsForStencil(c,"desired state","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"iot_device_gateway;",78*a,78*a,"","Device Gateway",null,null,this.getTagsForStencil(c,"device gateway","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"door_lock;",78*a,78*a,"","Door Lock",null,null,this.getTagsForStencil(c,"door lock", -"aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"echo;",41*a,78*a,"","Echo",null,null,this.getTagsForStencil(c,"echo","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"factory;",78*a,78*a,"","Factory",null,null,this.getTagsForStencil(c,"factory","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"firetv;",78*a,55*a,"","FireTV",null,null,this.getTagsForStencil(c,"firetv", -"aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"firetv_stick;",78*a,34*a,"","FireTV Stick",null,null,this.getTagsForStencil(c,"firetv stick","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"generic;",78*a,78*a,"","Generic",null,null,this.getTagsForStencil(c,"generic","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"hardware_board;",78*a,78*a,"","Hardware Board",null, -null,this.getTagsForStencil(c,"hardware board","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"house;",78*a,78*a,"","House",null,null,this.getTagsForStencil(c,"house","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"http2_protocol;",78*a,78*a,"","HTTP2 protocol",null,null,this.getTagsForStencil(c,"http2 protocol","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"http_protocol;", -78*a,78*a,"","HTTP protocol",null,null,this.getTagsForStencil(c,"http protocol","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"lambda_function;",78*a,78*a,"","Lambda Function",null,null,this.getTagsForStencil(c,"lambda function","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"lightbulb;",78*a,78*a,"","Lightbulb",null,null,this.getTagsForStencil(c,"lightbulb","aws amazon web service internet of things iot").join(" ")), -this.createVertexTemplateEntry(d+"medical_emergency;",78*a,78*a,"","Medical Emergency",null,null,this.getTagsForStencil(c,"medical emergency","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"mqtt_protocol;",78*a,78*a,"","MQTT Protocol",null,null,this.getTagsForStencil(c,"mqtt protocol","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"iot_over_the_air_update;",78*a,78*a,"","Over The Air Update",null,null,this.getTagsForStencil(c, -"over the air update","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"police_emergency;",78*a,78*a,"","Police Emergency",null,null,this.getTagsForStencil(c,"police emergency","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"policy;",78*a,67*a,"","Policy",null,null,this.getTagsForStencil(c,"policy","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"reported_state;", -78*a,78*a,"","Reported State",null,null,this.getTagsForStencil(c,"reported state","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"rule;",46*a,78*a,"","Rule",null,null,this.getTagsForStencil(c,"rule","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"sensor;",72*a,78*a,"","Sensor",null,null,this.getTagsForStencil(c,"sensor","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+ -"servo;",78*a,56*a,"","Servo",null,null,this.getTagsForStencil(c,"servo","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"shadow;",78*a,77*a,"","Shadow",null,null,this.getTagsForStencil(c,"shadow","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"simulator;",71*a,78*a,"","Simulator",null,null,this.getTagsForStencil(c,"simulator","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+ -"thermostat;",78*a,78*a,"","Thermostat",null,null,this.getTagsForStencil(c,"thermostat","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"topic_2;",53*a,78*a,"","Topic",null,null,this.getTagsForStencil(c,"topic","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"travel;",78*a,78*a,"","Travel",null,null,this.getTagsForStencil(c,"travel","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+ -"utility;",78*a,78*a,"","Utility",null,null,this.getTagsForStencil(c,"utility","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"windfarm;",78*a,78*a,"","Windfarm",null,null,this.getTagsForStencil(c,"windfarm","aws amazon web service internet of things iot").join(" "))])};Sidebar.prototype.addAWS4MachineLearningPalette=function(a,d,e,b,c,f){d="outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#116D5B;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;"+ -mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";e="outlineConnect=0;fontColor=#232F3E;gradientColor=#4AB29A;gradientDirection=north;fillColor=#116D5B;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4Machine Learning","AWS / Machine Learning",!1,[this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".comprehend;",b,b,"","Comprehend",null,null,this.getTagsForStencil(c, -"comprehend","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".elastic_inference;",b,b,"","Elastic Inference",null,null,this.getTagsForStencil(c,"elastic inference","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".forecast;",b,b,"","Forecast",null,null,this.getTagsForStencil(c,"forecast","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(e+ -"resourceIcon;resIcon="+c+".lex;",b,b,"","Lex",null,null,this.getTagsForStencil(c,"lex","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".personalize;",b,b,"","Personalize",null,null,this.getTagsForStencil(c,"personalize","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".polly;",b,b,"","Polly",null,null,this.getTagsForStencil(c,"polly","aws amazon web service machine learning").join(" ")), -this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".rekognition;",b,b,"","Rekognition",null,null,this.getTagsForStencil(c,"rekognition","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".sagemaker;",b,b,"","SageMaker",null,null,this.getTagsForStencil(c,"sagemaker","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".sagemaker_ground_truth;",b,b,"","SageMaker Ground Truth", -null,null,this.getTagsForStencil(c,"sagemaker ground truth","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".textract;",b,b,"","Textract",null,null,this.getTagsForStencil(c,"textract","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".transcribe;",b,b,"","Transcribe",null,null,this.getTagsForStencil(c,"transcribe","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(e+ -"resourceIcon;resIcon="+c+".translate;",b,b,"","Translate",null,null,this.getTagsForStencil(c,"translate","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".apache_mxnet_on_aws;",b,b,"","Apache MXNet on AWS",null,null,this.getTagsForStencil(c,"apache mxnet on aws","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".deep_learning_amis;",b,b,"","Deep Learning AMIs",null,null, -this.getTagsForStencil(c,"deep learning amis","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".deeplens;",b,b,"","DeepLens",null,null,this.getTagsForStencil(c,"deeplens","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".deepracer;",b,b,"","DeepRacer",null,null,this.getTagsForStencil(c,"deepracer","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(e+ -"resourceIcon;resIcon="+c+".machine_learning;",b,b,"","Machine Learning",null,null,this.getTagsForStencil(c,"machine learning","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".tensorflow_on_aws;",b,b,"","TensorFlow on AWS",null,null,this.getTagsForStencil(c,"tensorflow on aws","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".deep_learning_containers;",b,b,"","Deep Learning Containers", -null,null,this.getTagsForStencil(c,"deep learning containers","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(d+"rekognition_image;",77*a,78*a,"","Rekognition image",null,null,this.getTagsForStencil(c,"rekognition image","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(d+"rekognition_video;",77*a,78*a,"","Rekognition video",null,null,this.getTagsForStencil(c,"rekognition video","aws amazon web service machine learning").join(" ")), -this.createVertexTemplateEntry(d+"sagemaker_model;",78*a,78*a,"","Model",null,null,this.getTagsForStencil(c,"sagemaker model","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(d+"sagemaker_notebook;",68*a,78*a,"","Notebook",null,null,this.getTagsForStencil(c,"sagemaker notebook","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(d+"sagemaker_train;",78*a,65*a,"","Train",null,null,this.getTagsForStencil(c,"sagemaker train","aws amazon web service machine learning").join(" "))])}; -Sidebar.prototype.addAWS4ManagementGovernancePalette=function(a,d,e,b,c,f){d="outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#BC1356;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";e="outlineConnect=0;fontColor=#232F3E;gradientColor=#F34482;gradientDirection=north;fillColor=#BC1356;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+ -mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4Management Governance","AWS / Management & Governance",!1,[this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".cloudwatch;",b,b,"","CloudWatch",null,null,this.getTagsForStencil(c,"cloudwatch","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".autoscaling;",b,b,"","Auto Scaling",null,null,this.getTagsForStencil(c,"auto scaling","aws amazon web service management governance").join(" ")), -this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".cloudformation;",b,b,"","CloudFormation",null,null,this.getTagsForStencil(c,"cloudformation","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".cloudtrail;",b,b,"","CloudTrail",null,null,this.getTagsForStencil(c,"cloudtrail","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".command_line_interface;",b, -b,"","Command Line Interface",null,null,this.getTagsForStencil(c,"command line interface","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".config;",b,b,"","Config",null,null,this.getTagsForStencil(c,"config","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".license_manager;",b,b,"","License Manager",null,null,this.getTagsForStencil(c,"license manager","aws amazon web service management governance").join(" ")), -this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".managed_services;",b,b,"","Managed Services",null,null,this.getTagsForStencil(c,"managed services","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".management_console;",b,b,"","Management Console",null,null,this.getTagsForStencil(c,"management console","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+ -c+".opsworks;",b,b,"","OpsWorks",null,null,this.getTagsForStencil(c,"opsworks","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".personal_health_dashboard;",b,b,"","Personal Health Dashboard",null,null,this.getTagsForStencil(c,"personal health dashboard","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".service_catalog;",b,b,"","Service Catalog",null,null,this.getTagsForStencil(c, -"service catalog","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".systems_manager;",b,b,"","Systems Manager",null,null,this.getTagsForStencil(c,"systems manager","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".trusted_advisor;",b,b,"","Trusted Advisor",null,null,this.getTagsForStencil(c,"trusted advisor","aws amazon web service management governance").join(" ")), -this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".well_architected_tool;",b,b,"","Well-Architected Tool",null,null,this.getTagsForStencil(c,"well architected tool","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".control_tower;",b,b,"","Control Tower",null,null,this.getTagsForStencil(c,"control tower","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+ -c+".management_and_governance;",b,b,"","Management and Governance",null,null,this.getTagsForStencil(c,"management and governance","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(d+"alarm;",78*a,78*a,"","Alarm",null,null,this.getTagsForStencil(c,"cloudwatch alarm","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(d+"event_event_based;",78*a,78*a,"","Event (Event-Based)",null,null,this.getTagsForStencil(c,"cloudwatch event based", -"aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(d+"event_time_based;",78*a,78*a,"","Event (Time-Based)",null,null,this.getTagsForStencil(c,"cloudwatch event time based","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(d+"rule_2;",78*a,76*a,"","Rule",null,null,this.getTagsForStencil(c,"cloudwatch rule","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(d+"change_set;",65*a,78*a, -"","Change Set",null,null,this.getTagsForStencil(c,"cloudformation change set","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(d+"stack;",78*a,76*a,"","Stack",null,null,this.getTagsForStencil(c,"cloudformation stack","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(d+"template;",65*a,78*a,"","Template",null,null,this.getTagsForStencil(c,"cloudformation template","aws amazon web service management governance").join(" ")), -this.createVertexTemplateEntry(d+"opsworks_apps;",78*a,78*a,"","Apps",null,null,this.getTagsForStencil(c,"opsworks apps applications","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(d+"deployments;",65*a,78*a,"","Deployments",null,null,this.getTagsForStencil(c,"opsworks deployments","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(d+"instances_2;",78*a,78*a,"","Instances",null,null,this.getTagsForStencil(c,"opsworks instances", -"aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(d+"layers;",78*a,78*a,"","Layers",null,null,this.getTagsForStencil(c,"opsworks layers","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(d+"monitoring;",78*a,58*a,"","Monitoring",null,null,this.getTagsForStencil(c,"opsworks monitoring","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(d+"opsworks_permissions;",54*a,78*a,"","Permissions", -null,null,this.getTagsForStencil(c,"opsworks permissions","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(d+"resources;",68*a,78*a,"","Resources",null,null,this.getTagsForStencil(c,"opsworks resources","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(d+"stack2;",78*a,78*a,"","Stack",null,null,this.getTagsForStencil(c,"stack","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(d+ -"organizations_account;",74*a,78*a,"","Organizations Account",null,null,this.getTagsForStencil(c,"organizations account","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(d+"organizations_organizational_unit;",78*a,67*a,"","Organizations Organizational Unit",null,null,this.getTagsForStencil(c,"organizations organizational unit","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(d+"shield_shield_advanced;",70*a,78*a,"", -"Shield Advanced",null,null,this.getTagsForStencil(c,"shield advanced","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(d+"automation;",78*a,78*a,"","Automation",null,null,this.getTagsForStencil(c,"systems manager automation","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(d+"documents;",64*a,78*a,"","Documents",null,null,this.getTagsForStencil(c,"systems manager documents","aws amazon web service management governance").join(" ")), -this.createVertexTemplateEntry(d+"inventory;",78*a,78*a,"","Inventory",null,null,this.getTagsForStencil(c,"systems manager inventory","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(d+"maintenance_windows;",78*a,78*a,"","Maintenance Windows",null,null,this.getTagsForStencil(c,"systems manager maintenance windows","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(d+"parameter_store;",75*a,78*a,"","Parameter Store",null, -null,this.getTagsForStencil(c,"systems manager parameter store","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(d+"patch_manager;",78*a,78*a,"","Patch Manager",null,null,this.getTagsForStencil(c,"systems manager patch manager","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(d+"run_command;",78*a,55*a,"","Run Command",null,null,this.getTagsForStencil(c,"systems manager run command","aws amazon web service management governance").join(" ")), -this.createVertexTemplateEntry(d+"state_manager;",78*a,78*a,"","State Manager",null,null,this.getTagsForStencil(c,"systems manager state","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(d+"checklist;",66*a,78*a,"","Checklist",null,null,this.getTagsForStencil(c,"trusted advisor checklist","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(d+"checklist_cost;",78*a,78*a,"","Checklist Cost",null,null,this.getTagsForStencil(c, -"trusted advisor checklist cost","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(d+"checklist_fault_tolerant;",78*a,77*a,"","Checklist Fault Tolerant",null,null,this.getTagsForStencil(c,"trusted advisor fault tolerant","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(d+"checklist_performance;",78*a,78*a,"","Checklist Performance",null,null,this.getTagsForStencil(c,"trusted advisor checklist performance","aws amazon web service management governance").join(" ")), -this.createVertexTemplateEntry(d+"checklist_security;",78*a,78*a,"","Checklist Security",null,null,this.getTagsForStencil(c,"trusted advisor checklist security","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(d+"systems_manager_opscenter;",78*a,78*a,"","Systems Manager OpsCenter",null,null,this.getTagsForStencil(c,"systems manager opscenter","aws amazon web service management governance").join(" "))])};Sidebar.prototype.addAWS4MediaServicesPalette=function(a, -d,e,b,c,f){a="outlineConnect=0;fontColor=#232F3E;gradientColor=#F78E04;gradientDirection=north;fillColor=#D05C17;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4Media Services","AWS / Media Services",!1,[this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+c+".elastic_transcoder;",b,b,"","Elastic Transcoder",null,null,this.getTagsForStencil(c, -"elastic transcoder","aws amazon web service media services").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+c+".kinesis_video_streams;",b,b,"","Kinesis Video Streams",null,null,this.getTagsForStencil(c,"kinesis video streams","aws amazon web service media services").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+c+".elemental_mediaconnect;",b,b,"","Elemental MediaConnect",null,null,this.getTagsForStencil(c,"elemental mediaconnect","aws amazon web service media services").join(" ")), -this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+c+".elemental_mediaconvert;",b,b,"","Elemental MediaConvert",null,null,this.getTagsForStencil(c,"elemental mediaconvert","aws amazon web service media services").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+c+".elemental_medialive;",b,b,"","Elemental MediaLive",null,null,this.getTagsForStencil(c,"elemental medialive","aws amazon web service media services").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+ -c+".elemental_mediapackage;",b,b,"","Elemental MediaPackage",null,null,this.getTagsForStencil(c,"elemental mediapackage","aws amazon web service media services").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+c+".elemental_mediastore;",b,b,"","Elemental MediaStore",null,null,this.getTagsForStencil(c,"elemental mediastore","aws amazon web service media services").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+c+".elemental_mediatailor;",b,b,"","Elemental MediaTailor", -null,null,this.getTagsForStencil(c,"elemental mediatailor","aws amazon web service media services").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+c+".elemental;",b,b,"","Elemental Conductor",null,null,this.getTagsForStencil(c,"elemental conductor","aws amazon web service media services").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+c+".elemental;",b,b,"","Elemental Delta",null,null,this.getTagsForStencil(c,"elemental delta","aws amazon web service media services").join(" ")), -this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+c+".elemental;",b,b,"","Elemental Live",null,null,this.getTagsForStencil(c,"elemental live","aws amazon web service media services").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+c+".elemental;",b,b,"","Elemental Server",null,null,this.getTagsForStencil(c,"elemental server","aws amazon web service media services").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+c+".media_services;",b,b,"","Media Services", -null,null,this.getTagsForStencil(c,"media services","aws amazon web service media services").join(" "))])};Sidebar.prototype.addAWS4MigrationTransferPalette=function(a,d,e,b,c,f){d="outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#116D5B;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";e="outlineConnect=0;fontColor=#232F3E;gradientColor=#4AB29A;gradientDirection=north;fillColor=#116D5B;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+ -mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4Migration Transfer","AWS / Migration & Transfer",!1,[this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".application_discovery_service;",b,b,"","Application Discovery Service",null,null,this.getTagsForStencil(c,"application discovery service","aws amazon web service migration transfer").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".database_migration_service;",b,b,"","Database Migration Service", -null,null,this.getTagsForStencil(c,"db database migration service","aws amazon web service migration transfer").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".datasync;",b,b,"","DataSync",null,null,this.getTagsForStencil(c,"datasync","aws amazon web service migration transfer").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".migration_hub;",b,b,"","Migration Hub",null,null,this.getTagsForStencil(c,"migration hub","aws amazon web service migration transfer").join(" ")), -this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".server_migration_service;",b,b,"","Server Migration Service",null,null,this.getTagsForStencil(c,"server migration service","aws amazon web service migration transfer").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".snowball;",b,b,"","Snowball",null,null,this.getTagsForStencil(c,"snowball","aws amazon web service migration transfer").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".snowball_edge;", -b,b,"","Snowball Edge",null,null,this.getTagsForStencil(c,"snowball edge","aws amazon web service migration transfer").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".snowmobile;",b,b,"","Snowmobile",null,null,this.getTagsForStencil(c,"snowmobile","aws amazon web service migration transfer").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".transfer_for_sftp;",b,b,"","Transfer for SFTP",null,null,this.getTagsForStencil(c,"transfer for sftp","aws amazon web service migration transfer").join(" ")), -this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".migration_and_transfer;",b,b,"","Migration and Transfer",null,null,this.getTagsForStencil(c,"migration and transfer","aws amazon web service migration transfer").join(" ")),this.createVertexTemplateEntry(d+"agent2;",78*a,78*a,"","Agent",null,null,this.getTagsForStencil(c,"agent","aws amazon web service migration transfer").join(" "))])};Sidebar.prototype.addAWS4MobilePalette=function(a,d,e,b,c,f){d="outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#C7131F;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+ -mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";e="outlineConnect=0;fontColor=#232F3E;gradientColor=#F54749;gradientDirection=north;fillColor=#C7131F;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4Mobile","AWS / Mobile",!1,[this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".api_gateway;",b,b,"","API Gateway",null,null,this.getTagsForStencil(c, -"api application programming interface gateway","aws amazon web service mobile").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".pinpoint;",b,b,"","Pinpoint",null,null,this.getTagsForStencil(c,"pinpoint","aws amazon web service mobile").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".amplify;",b,b,"","Amplify",null,null,this.getTagsForStencil(c,"amplify","aws amazon web service mobile").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+ -c+".appsync;",b,b,"","AppSync",null,null,this.getTagsForStencil(c,"appsync","aws amazon web service mobile").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".device_farm;",b,b,"","Device Farm",null,null,this.getTagsForStencil(c,"device farm","aws amazon web service mobile").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".mobile;",b,b,"","Mobile",null,null,this.getTagsForStencil(c,"mobile","aws amazon web service mobile").join(" ")),this.createVertexTemplateEntry(d+ -"endpoint;",78*a,78*a,"","Endpoint",null,null,this.getTagsForStencil(c,"endpoint","aws amazon web service mobile").join(" "))])};Sidebar.prototype.addAWS4NetworkContentDeliveryPalette=function(a,d,e,b,c,f){d="outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#5A30B5;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";e="outlineConnect=0;fontColor=#232F3E;gradientColor=#945DF2;gradientDirection=north;fillColor=#5A30B5;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+ -mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4Network Content Delivery","AWS / Network & Content Delivery",!1,[this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".api_gateway;",b,b,"","API Gateway",null,null,this.getTagsForStencil(c,"api application programming interface gateway","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".cloudfront;",b,b,"","CloudFront",null,null,this.getTagsForStencil(c, -"cloudfront","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".route_53;",b,b,"","Route 53",null,null,this.getTagsForStencil(c,"route 53","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".vpc_privatelink;",b,b,"","VPC PrivateLink",null,null,this.getTagsForStencil(c,"vpc privatelink virtual private cloud","aws amazon web service netowrk content delivery").join(" ")), -this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".vpc;",b,b,"","VPC",null,null,this.getTagsForStencil(c,"vpc virtual private cloud","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".app_mesh;",b,b,"","App Mesh",null,null,this.getTagsForStencil(c,"app application mesh","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".client_vpn;",b,b,"","Client VPN", -null,null,this.getTagsForStencil(c,"client vpn virtual private network","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".site_to_site_vpn;",b,b,"","Site-to-Site VPN",null,null,this.getTagsForStencil(c,"site to site s2s vpn virtual private network","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".elastic_load_balancing;",b,b,"","Elastic Load Balancing", -null,null,this.getTagsForStencil(c,"elastic load balancing","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".cloud_map;",b,b,"","Cloud Map",null,null,this.getTagsForStencil(c,"cloud map","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".direct_connect;",b,b,"","Direct Connect",null,null,this.getTagsForStencil(c,"direct connect","aws amazon web service netowrk content delivery").join(" ")), -this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".global_accelerator;",b,b,"","Global Accelerator",null,null,this.getTagsForStencil(c,"global accelerator","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".transit_gateway;",b,b,"","Transit Gateway",null,null,this.getTagsForStencil(c,"transit gateway","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+ -c+".networking_and_content_delivery;",b,b,"","Networking and Content Delivery",null,null,this.getTagsForStencil(c,"networking and content delivery","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(d+"endpoint;",78*a,78*a,"","Endpoint",null,null,this.getTagsForStencil(c,"endpoint","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(d+"download_distribution;",78*a,78*a,"","Download Distribution",null,null,this.getTagsForStencil(c, -"download distribution","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(d+"edge_location;",78*a,78*a,"","Edge Location",null,null,this.getTagsForStencil(c,"edge location","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(d+"streaming_distribution;",78*a,78*a,"","Streaming Distribution",null,null,this.getTagsForStencil(c,"streaming distribution","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(d+ -"hosted_zone;",78*a,77*a,"","Hosted Zone",null,null,this.getTagsForStencil(c,"hosted zone","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(d+"route_table;",78*a,76*a,"","Route Table",null,null,this.getTagsForStencil(c,"route table","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(d+"customer_gateway;",78*a,78*a,"","Router",null,null,this.getTagsForStencil(c,"vpc virtual private cloud customer gateway","aws amazon web service netowrk content delivery").join(" ")), -this.createVertexTemplateEntry(d+"elastic_network_adapter;",78*a,78*a,"","Elastic Network Adapter",null,null,this.getTagsForStencil(c,"vpc virtual private cloud elastic network adapter","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(d+"elastic_network_interface;",78*a,78*a,"","Elastic Network Interface",null,null,this.getTagsForStencil(c,"vpc virtual private cloud elastic network interface","aws amazon web service netowrk content delivery").join(" ")), -this.createVertexTemplateEntry(d+"endpoints;",78*a,78*a,"","Endpoints",null,null,this.getTagsForStencil(c,"vpc virtual private cloud endpoints","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(d+"flow_logs;",78*a,78*a,"","Flow Logs",null,null,this.getTagsForStencil(c,"vpc virtual private cloud flow logs","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(d+"internet_gateway;",78*a,78*a,"","Internet Gateway",null, -null,this.getTagsForStencil(c,"vpc virtual private cloud internet gateway","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(d+"nat_gateway;",78*a,78*a,"","NAT Gateway",null,null,this.getTagsForStencil(c,"vpc virtual private cloud nat gateway","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(d+"network_access_control_list;",78*a,78*a,"","Network Access Control List",null,null,this.getTagsForStencil(c,"vpc virtual private cloud network access control list", -"aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(d+"peering;",78*a,78*a,"","Peering",null,null,this.getTagsForStencil(c,"vpc virtual private cloud network peering","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(d+"application_load_balancer;",78*a,78*a,"","Application Load Balancer",null,null,this.getTagsForStencil(c,"application load balancer","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(d+ -"classic_load_balancer;",78*a,78*a,"","Classic Load Balancer",null,null,this.getTagsForStencil(c,"classic load balancer","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(d+"network_load_balancer;",78*a,78*a,"","Network Load Balancer",null,null,this.getTagsForStencil(c,"network load balancer","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(d+"router;",78*a,78*a,"","Customer Gateway",null,null,this.getTagsForStencil(c, -"vpc virtual private cloud network router","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(d+"vpn_connection;",70*a,78*a,"","VPN Connection",null,null,this.getTagsForStencil(c,"vpc virtual private cloud vpn network connection","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(d+"vpn_gateway;",78*a,78*a,"","VPN Gateway",null,null,this.getTagsForStencil(c,"vpc virtual private cloud vpn network gateway","aws amazon web service netowrk content delivery").join(" ")), -this.createVertexTemplateEntry(d+"vpc_traffic_mirroring;",78*a,78*a,"","VPC Traffic Mirroring",null,null,this.getTagsForStencil(c,"vpc virtual private cloud traffic mirroring","aws amazon web service netowrk content delivery").join(" "))])};Sidebar.prototype.addAWS4RoboticsPalette=function(a,d,e,b,c,f){d="outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#BE0917;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;"+ -mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";e="outlineConnect=0;fontColor=#232F3E;gradientColor=#FE5151;gradientDirection=north;fillColor=#BE0917;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4Robotics","AWS / Robotics",!1,[this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".robotics;",b,b,"","Robotics",null,null,this.getTagsForStencil(c, -"robotics","aws amazon web service robotics").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".robomaker;",b,b,"","RoboMaker",null,null,this.getTagsForStencil(c,"robomaker","aws amazon web service robotics").join(" ")),this.createVertexTemplateEntry(d+"simulation;",78*a,64*a,"","Simulation",null,null,this.getTagsForStencil(c,"simulation","aws amazon web service robotics").join(" ")),this.createVertexTemplateEntry(d+"fleet_management;",78*a,78*a,"","Fleet Management",null,null, -this.getTagsForStencil(c,"fleet management","aws amazon web service robotics").join(" ")),this.createVertexTemplateEntry(d+"development_environment;",78*a,71*a,"","Development Environment",null,null,this.getTagsForStencil(c,"development environment","aws amazon web service robotics").join(" ")),this.createVertexTemplateEntry(d+"cloud_extension_ros;",78*a,78*a,"","Cloud Extensions ROS",null,null,this.getTagsForStencil(c,"cloud extension ros","aws amazon web service robotics").join(" "))])};Sidebar.prototype.addAWS4SatellitePalette= -function(a,d,e,b,c,f){a="outlineConnect=0;fontColor=#232F3E;gradientColor=#517DFD;gradientDirection=north;fillColor=#2F29AF;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4Satellite","AWS / Satellite",!1,[this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+c+".satellite;",b,b,"","Satellite",null,null,this.getTagsForStencil(c,"satellite", -"aws amazon web satellite").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+c+".ground_station;",b,b,"","Ground Station",null,null,this.getTagsForStencil(c,"ground station","aws amazon web satellite").join(" "))])};Sidebar.prototype.addAWS4SecurityIdentityCompliancePalette=function(a,d,e,b,c,f){d="outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#C7131F;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;"+ -mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";e="outlineConnect=0;fontColor=#232F3E;gradientColor=#F54749;gradientDirection=north;fillColor=#C7131F;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4Security Identity Compliance","AWS / Security, Identity & Compliance",!1,[this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".cloud_directory;", -b,b,"","Cloud Directory",null,null,this.getTagsForStencil(c,"cloud directory","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".cognito;",b,b,"","Cognito",null,null,this.getTagsForStencil(c,"cognito","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".guardduty;",b,b,"","GuardDuty",null,null,this.getTagsForStencil(c,"guardduty guard duty","aws amazon web service security identity compliance").join(" ")), -this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".inspector;",b,b,"","Inspector",null,null,this.getTagsForStencil(c,"inspector","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".macie;",b,b,"","Macie",null,null,this.getTagsForStencil(c,"macie","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".artifact;",b,b,"","Artifact",null,null,this.getTagsForStencil(c, -"artifact","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".certificate_manager_3;",b,b,"","Certificate Manager",null,null,this.getTagsForStencil(c,"certificate manager","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".cloudhsm;",b,b,"","CloudHSM",null,null,this.getTagsForStencil(c,"cloudhsm cloud hsm","aws amazon web service security identity compliance").join(" ")), -this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".directory_service;",b,b,"","Directory Service",null,null,this.getTagsForStencil(c,"directory service","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".firewall_manager;",b,b,"","Firewall Manager",null,null,this.getTagsForStencil(c,"firewall manager","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+ -c+".identity_and_access_management;",b,b,"","Identity and Access Management",null,null,this.getTagsForStencil(c,"identity and access management","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".key_management_service;",b,b,"","Key Management Service",null,null,this.getTagsForStencil(c,"key management service","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+ -c+".resource_access_manager;",b,b,"","Resource Access Manager",null,null,this.getTagsForStencil(c,"resource access manager","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".organizations;",b,b,"","Organizations",null,null,this.getTagsForStencil(c,"organizations","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".secrets_manager;",b,b,"","Secrets Manager", -null,null,this.getTagsForStencil(c,"secrets manager","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".security_hub;",b,b,"","Security Hub",null,null,this.getTagsForStencil(c,"security hub","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".shield;",b,b,"","Shield",null,null,this.getTagsForStencil(c,"shield","aws amazon web service security identity compliance").join(" ")), -this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".single_sign_on;",b,b,"","Single Sign-On",null,null,this.getTagsForStencil(c,"single sign on","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".waf;",b,b,"","WAF",null,null,this.getTagsForStencil(c,"waf","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".security_identity_and_compliance;", -b,b,"","Security Identity and Compliance",null,null,this.getTagsForStencil(c,"security identity and compliance","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(d+"ad_connector;",78*a,73*a,"","AD Connector",null,null,this.getTagsForStencil(c,"ad connector","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(d+"agent;",78*a,74*a,"","Inspector Agent",null,null,this.getTagsForStencil(c,"inspector agent","aws amazon web service security identity compliance").join(" ")), -this.createVertexTemplateEntry(d+"certificate_manager_2;",78*a,72*a,"","Certificate Manager",null,null,this.getTagsForStencil(c,"certificate manager","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(d+"addon;",78*a,40*a,"","Add-on",null,null,this.getTagsForStencil(c,"identity and access management iam addon add on","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(d+"sts;",78*a,50*a,"","STS",null,null,this.getTagsForStencil(c, -"identity and access management iam sts","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(d+"sts_alternate;",62*a,78*a,"","STS",null,null,this.getTagsForStencil(c,"identity and access management iam sts","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(d+"data_encryption_key;",62*a,78*a,"","Data Encryption Key",null,null,this.getTagsForStencil(c,"identity and access management iam data encryption key", -"aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(d+"encrypted_data;",62*a,78*a,"","Encrypted Data",null,null,this.getTagsForStencil(c,"identity and access management iam encrypted data","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(d+"long_term_security_credential;",78*a,69*a,"","Long Term Security Credential",null,null,this.getTagsForStencil(c,"identity and access management iam long term security credential", -"aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(d+"mfa_token;",78*a,78*a,"","MFA Token",null,null,this.getTagsForStencil(c,"identity and access management iam mfa token","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(d+"permissions;",62*a,78*a,"","Permissions",null,null,this.getTagsForStencil(c,"identity and access management iam permissions","aws amazon web service security identity compliance").join(" ")), -this.createVertexTemplateEntry(d+"role;",78*a,44*a,"","Role",null,null,this.getTagsForStencil(c,"identity and access management iam role","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(d+"temporary_security_credential;",77*a,78*a,"","Temporary Security Credential",null,null,this.getTagsForStencil(c,"identity and access management iam temporary security credential","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(d+ -"managed_ms_ad;",78*a,77*a,"","Managed MS AD",null,null,this.getTagsForStencil(c,"managed ms ad","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(d+"organizations_account;",74*a,78*a,"","Organizations Account",null,null,this.getTagsForStencil(c,"organizations account","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(d+"organizations_organizational_unit;",78*a,67*a,"","Organizations Organizational Unit", -null,null,this.getTagsForStencil(c,"organizations organizational unit","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(d+"shield_shield_advanced;",70*a,78*a,"","Shield Advanced",null,null,this.getTagsForStencil(c,"shield advanced","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(d+"filtering_rule;",78*a,78*a,"","Filtering Rule",null,null,this.getTagsForStencil(c,"filtering rule","aws amazon web service security identity compliance").join(" ")), -this.createVertexTemplateEntry(d+"simple_ad;",78*a,77*a,"","Simple AD",null,null,this.getTagsForStencil(c,"simple ad","aws amazon web service security identity compliance").join(" "))])};Sidebar.prototype.addAWS4StoragePalette=function(a,d,e,b,c,f){d="outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#277116;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4."; -e="outlineConnect=0;fontColor=#232F3E;gradientColor=#60A337;gradientDirection=north;fillColor=#277116;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4Storage","AWS / Storage",!1,[this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".elastic_block_store;",b,b,"","Elastic Block Store",null,null,this.getTagsForStencil(c,"elastic block store", -"aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".elastic_file_system;",b,b,"","Elastic File System",null,null,this.getTagsForStencil(c,"elastic file system","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".fsx;",b,b,"","FSx",null,null,this.getTagsForStencil(c,"fsx","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".fsx_for_lustre;", -b,b,"","FSx for Lustre",null,null,this.getTagsForStencil(c,"fsx for lustre","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".fsx_for_windows_file_server;",b,b,"","FSx for Windows File Server",null,null,this.getTagsForStencil(c,"fsx for windows file server","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".glacier;",b,b,"","S3 Glacier",null,null,this.getTagsForStencil(c,"s3 simple storage service glacier", -"aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".s3;",b,b,"","Simple Storage Service",null,null,this.getTagsForStencil(c,"s3 simple storage service","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".backup;",b,b,"","Backup",null,null,this.getTagsForStencil(c,"backup","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".snowball;",b,b, -"","Snowball",null,null,this.getTagsForStencil(c,"snowball","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".snowball_edge;",b,b,"","Snowball Edge",null,null,this.getTagsForStencil(c,"snowball edge","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".snowmobile;",b,b,"","Snowmobile",null,null,this.getTagsForStencil(c,"snowmobile","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(e+ -"resourceIcon;resIcon="+c+".storage_gateway;",b,b,"","Storage Gateway",null,null,this.getTagsForStencil(c,"storage gateway","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".efs_infrequentaccess;",b,b,"","EFS InfrequentAccess",null,null,this.getTagsForStencil(c,"efs infrequent access","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".efs_standard;",b,b,"","EFS Standard",null,null,this.getTagsForStencil(c, -"efs standard","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+c+".storage;",b,b,"","Storage",null,null,this.getTagsForStencil(c,"storage","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(d+"snapshot;",56*a,78*a,"","Snapshot",null,null,this.getTagsForStencil(c,"snapshot","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(d+"volume;",62*a,78*a,"","Volume",null,null,this.getTagsForStencil(c,"volume", -"aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(d+"file_system;",78*a,73*a,"","File System",null,null,this.getTagsForStencil(c,"file system","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(d+"archive;",63*a,78*a,"","Vault",null,null,this.getTagsForStencil(c,"s3 simple storage service glacier archive","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(d+"vault;",62*a,78*a,"","Archive",null,null,this.getTagsForStencil(c, -"s3 simple storage service glacier vault","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(d+"bucket;",75*a,78*a,"","Bucket",null,null,this.getTagsForStencil(c,"s3 simple storage service bucket","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(d+"bucket_with_objects;",75*a,78*a,"","Bucket with Objects",null,null,this.getTagsForStencil(c,"s3 simple storage service bucket with objects","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(d+ -"object;",78*a,78*a,"","Object",null,null,this.getTagsForStencil(c,"s3 simple storage service object","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(d+"import_export;",78*a,61*a,"","Snowball Import Export",null,null,this.getTagsForStencil(c,"snowball import export","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(d+"cached_volume;",62*a,78*a,"","Cached Volume",null,null,this.getTagsForStencil(c,"storage gateway cached volume","aws amazon web service storage").join(" ")), -this.createVertexTemplateEntry(d+"non_cached_volume;",62*a,78*a,"","Non-Cached Volume",null,null,this.getTagsForStencil(c,"storage gateway non cached volume","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(d+"virtual_tape_library;",62*a,78*a,"","Virtual Tape Library",null,null,this.getTagsForStencil(c,"storage gateway virtual tape library vtl","aws amazon web service storage").join(" "))])}})();(function(){Sidebar.prototype.addAWS4bPalette=function(){var a="outlineConnect=0;fontColor=#232F3E;gradientColor=none;strokeColor=#ffffff;fillColor=#232F3E;dashed=0;verticalLabelPosition=middle;verticalAlign=bottom;align=center;html=1;whiteSpace=wrap;fontSize=10;fontStyle=1;spacing=3;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.",d="outlineConnect=0;fontColor=#232F3E;gradientColor=none;strokeColor=#232F3E;fillColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+ -mxConstants.STYLE_SHAPE+"=mxgraph.aws4.",e="outlineConnect=0;gradientColor=none;fontColor=#545B64;strokeColor=none;fillColor=#879196;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.",b="outlineConnect=0;gradientColor=none;html=1;whiteSpace=wrap;fontSize=12;fontStyle=0;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addAWS4bArrowsPalette("mxgraph.aws4",this);this.addAWS4bGeneralResourcesPalette(80, -100,60,a,d,"mxgraph.aws4",this);this.addAWS4bIllustrationsPalette(e,"mxgraph.aws4",this);this.addAWS4bGroupsLightPalette(b,"mxgraph.aws4",this);this.addAWS4bGroupsDarkPalette(b,"mxgraph.aws4",this);this.addAWS4bAnalyticsPalette(80,100,60,a,d,"mxgraph.aws4",this);this.addAWS4bApplicationIntegrationPalette(80,100,60,a,d,"mxgraph.aws4",this);this.addAWS4bARVRPalette(80,100,60,a,d,"mxgraph.aws4",this);this.addAWS4bCostManagementPalette(80,100,60,a,d,"mxgraph.aws4",this);this.addAWS4bBusinessProductivityPalette(80, -100,60,a,d,"mxgraph.aws4",this);this.addAWS4bComputePalette(80,100,60,a,d,"mxgraph.aws4",this);this.addAWS4bCustomerEngagementPalette(80,100,60,a,d,"mxgraph.aws4",this);this.addAWS4bDatabasePalette(80,100,60,a,d,"mxgraph.aws4",this);this.addAWS4bDesktopAppStreamingPalette(80,100,60,a,d,"mxgraph.aws4",this);this.addAWS4bDeveloperToolsPalette(80,100,60,a,d,"mxgraph.aws4",this);this.addAWS4bGameDevelopmentPalette(80,100,60,a,d,"mxgraph.aws4",this);this.addAWS4bInternetOfThingsPalette(80,100,60,a,d,"mxgraph.aws4", -this);this.addAWS4bIOTThingsPalette(80,100,60,a,d,"mxgraph.aws4",this);this.addAWS4bIOTResourcesPalette(80,100,60,a,d,"mxgraph.aws4",this);this.addAWS4bMachineLearningPalette(80,100,60,a,d,"mxgraph.aws4",this);this.addAWS4bManagementToolsPalette(80,100,60,a,d,"mxgraph.aws4",this);this.addAWS4bMediaServicesPalette(80,100,60,a,d,"mxgraph.aws4",this);this.addAWS4bMigrationPalette(80,100,60,a,d,"mxgraph.aws4",this);this.addAWS4bMobileServicesPalette(80,100,60,a,d,"mxgraph.aws4",this);this.addAWS4bNetworkContentDeliveryPalette(80, -100,60,a,d,"mxgraph.aws4",this);this.addAWS4bSecurityIdentityCompliancePalette(80,100,60,a,d,"mxgraph.aws4",this);this.addAWS4bStoragePalette(80,100,60,a,d,"mxgraph.aws4",this)};Sidebar.prototype.addAWS4bArrowsPalette=function(a,d){this.addPaletteFunctions("aws4bArrows","AWS18 / Arrows",!1,[this.createEdgeTemplateEntry("edgeStyle=orthogonalEdgeStyle;html=1;endArrow=none;elbow=vertical;startArrow=block;startFill=1;strokeColor=#545B64;rounded=0;",100,0,"","Default (left)",null,this.getTagsForStencil(a, +this);this.addAWS4SatellitePalette(1,100,100,78,"mxgraph.aws4",this);this.addAWS4SecurityIdentityCompliancePalette(1,100,100,78,"mxgraph.aws4",this);this.addAWS4StoragePalette(1,100,100,78,"mxgraph.aws4",this)};Sidebar.prototype.addAWS4ArrowsPalette=function(a,b,e){this.addPaletteFunctions("aws4Arrows","AWS / Arrows",!1,[this.createEdgeTemplateEntry("edgeStyle=orthogonalEdgeStyle;html=1;endArrow=none;elbow=vertical;startArrow=block;startFill=1;strokeColor=#545B64;rounded=0;",100*a,0*a,"","Default (left)", +null,this.getTagsForStencil(b,"","aws amazon web service arrowsdefault left").join(" ")),this.createEdgeTemplateEntry("edgeStyle=orthogonalEdgeStyle;html=1;endArrow=block;elbow=vertical;startArrow=none;endFill=1;strokeColor=#545B64;rounded=0;",100*a,0*a,"","Default (left)",null,this.getTagsForStencil(b,"","aws amazon web service arrowsdefault left").join(" ")),this.createEdgeTemplateEntry("edgeStyle=orthogonalEdgeStyle;html=1;endArrow=block;elbow=vertical;startArrow=block;startFill=1;endFill=1;strokeColor=#545B64;rounded=0;", +100*a,0*a,"","Default (double)",null,this.getTagsForStencil(b,"","aws amazon web service arrowsdefault double").join(" ")),this.createEdgeTemplateEntry("edgeStyle=orthogonalEdgeStyle;html=1;endArrow=none;elbow=vertical;startArrow=openThin;startFill=0;strokeColor=#545B64;rounded=0;",100*a,0*a,"","Open (thin, left)",null,this.getTagsForStencil(b,"","aws amazon web service arrowsopen thin left").join(" ")),this.createEdgeTemplateEntry("edgeStyle=orthogonalEdgeStyle;html=1;endArrow=openThin;elbow=vertical;startArrow=none;endFill=0;strokeColor=#545B64;rounded=0;", +100*a,0*a,"","Open (thin, left)",null,this.getTagsForStencil(b,"","aws amazon web service arrowsopen thin left").join(" ")),this.createEdgeTemplateEntry("edgeStyle=orthogonalEdgeStyle;html=1;endArrow=openThin;elbow=vertical;startArrow=openThin;startFill=0;endFill=0;strokeColor=#545B64;rounded=0;",100*a,0*a,"","Open (thin, double)",null,this.getTagsForStencil(b,"","aws amazon web service arrowsopen thin double").join(" ")),this.createEdgeTemplateEntry("edgeStyle=orthogonalEdgeStyle;html=1;endArrow=none;elbow=vertical;startArrow=open;startFill=0;strokeColor=#545B64;rounded=0;", +100*a,0*a,"","Open (left)",null,this.getTagsForStencil(b,"","aws amazon web service arrowsopen left").join(" ")),this.createEdgeTemplateEntry("edgeStyle=orthogonalEdgeStyle;html=1;endArrow=open;elbow=vertical;startArrow=none;endFill=0;strokeColor=#545B64;rounded=0;",100*a,0*a,"","Open (left)",null,this.getTagsForStencil(b,"","aws amazon web service arrowsopen left").join(" ")),this.createEdgeTemplateEntry("edgeStyle=orthogonalEdgeStyle;html=1;endArrow=open;elbow=vertical;startArrow=open;startFill=0;endFill=0;strokeColor=#545B64;rounded=0;", +100*a,0*a,"","Open (double)",null,this.getTagsForStencil(b,"","aws amazon web service arrowsopen double").join(" "))])};Sidebar.prototype.addAWS4GeneralResourcesPalette=function(a,b,e){e="outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#232F3E;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";var c="gradientDirection=north;outlineConnect=0;fontColor=#232F3E;gradientColor=#505863;fillColor=#1E262E;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+ +mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4General Resources","AWS / General Resources",!1,[this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+b+".marketplace;",78*a,78*a,"","Marketplace",null,null,this.getTagsForStencil(b,"marketplace","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+b+".general;",78*a,78*a,"","General",null,null,this.getTagsForStencil(b,"general","aws amazon web service general resources").join(" ")), +this.createVertexTemplateEntry(e+"client;",78*a,76*a,"","Client",null,null,this.getTagsForStencil(b,"client","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(e+"corporate_data_center;",53*a,78*a,"","Corporate Data Center",null,null,this.getTagsForStencil(b,"corporate data center","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(e+"disk;",78*a,78*a,"","Disk",null,null,this.getTagsForStencil(b,"disk","aws amazon web service general resources").join(" ")), +this.createVertexTemplateEntry(e+"forums;",78*a,76*a,"","Forums",null,null,this.getTagsForStencil(b,"forums","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(e+"generic_database;",59*a,78*a,"","Generic Database",null,null,this.getTagsForStencil(b,"generic database","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(e+"internet;",78*a,48*a,"","Internet",null,null,this.getTagsForStencil(b,"internet","aws amazon web service general resources").join(" ")), +this.createVertexTemplateEntry(e+"internet_alt1;",78*a,48*a,"","Internet",null,null,this.getTagsForStencil(b,"internet","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(e+"internet_alt2;",78*a,78*a,"","Internet Gateway",null,null,this.getTagsForStencil(b,"internet gateway","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(e+"mobile_client;",41*a,78*a,"","Mobile Client",null,null,this.getTagsForStencil(b,"mobile client","aws amazon web service general resources").join(" ")), +this.createVertexTemplateEntry(e+"multimedia;",78*a,73*a,"","Multimedia",null,null,this.getTagsForStencil(b,"multimedia","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(e+"office_building;",50*a,78*a,"","Office Building",null,null,this.getTagsForStencil(b,"office building","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(e+"saml_token;",78*a,78*a,"","SAML Token",null,null,this.getTagsForStencil(b,"saml token","aws amazon web service general resources").join(" ")), +this.createVertexTemplateEntry(e+"ssl_padlock;",78*a,76*a,"","SSL Padlock",null,null,this.getTagsForStencil(b,"ssl padlock","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(e+"tape_storage;",78*a,38*a,"","Tape Storage",null,null,this.getTagsForStencil(b,"tape storage","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(e+"traditional_server;",45*a,78*a,"","Traditional Server",null,null,this.getTagsForStencil(b,"traditional server", +"aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(e+"user;",78*a,78*a,"","User",null,null,this.getTagsForStencil(b,"user","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(e+"users;",78*a,78*a,"","Users",null,null,this.getTagsForStencil(b,"users","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(e+"external_toolkit;",68*a,78*a,"","Toolkit",null,null,this.getTagsForStencil(b,"external toolkit", +"aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(e+"external_sdk;",68*a,78*a,"","SDK",null,null,this.getTagsForStencil(b,"external sdk software development kit","aws amazon web service general resources").join(" "))])};Sidebar.prototype.addAWS4IllustrationsPalette=function(a,b,e,c){this.addPaletteFunctions("aws4Illustrations","AWS / Illustrations",!1,[this.createVertexTemplateEntry(b+"illustration_users;pointerEvents=1",100*a,100*a,"users",null,null,null,this.getTagsForStencil(e, +"users","aws amazon web service illustrations").join(" ")),this.createVertexTemplateEntry(b+"illustration_notification;pointerEvents=1",100*a,81*a,"notification",null,null,null,this.getTagsForStencil(e,"users","aws amazon web service illustrations").join(" ")),this.createVertexTemplateEntry(b+"illustration_devices;pointerEvents=1",100*a,73*a,"devices",null,null,null,this.getTagsForStencil(e,"devices","aws amazon web service illustrations").join(" ")),this.createVertexTemplateEntry(b+"illustration_desktop;pointerEvents=1", +100*a,91*a,"desktop",null,null,null,this.getTagsForStencil(e,"desktop","aws amazon web service illustrations").join(" ")),this.createVertexTemplateEntry(b+"illustration_office_building;pointerEvents=1",100*a,71*a,"office building",null,null,null,this.getTagsForStencil(e,"office building","aws amazon web service illustrations").join(" "))])};Sidebar.prototype.addAWS4GroupsPalette=function(a,b,e,c){e=c+"outlineConnect=0;gradientColor=none;html=1;whiteSpace=wrap;fontSize=12;fontStyle=0;"+mxConstants.STYLE_SHAPE+ +"=mxgraph.aws4.";this.addPaletteFunctions("aws4Groups","AWS / Groups",!1,[this.createVertexTemplateEntry(e+"group;grIcon="+b+".group_aws_cloud_alt;strokeColor=#232F3E;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#232F3E;dashed=0;",130*a,130*a,"AWS Cloud",null,null,null,this.getTagsForStencil(b,"cloud","aws amazon web service groups group").join(" ")),this.createVertexTemplateEntry(e+"group;grIcon="+b+".group_aws_cloud;strokeColor=#232F3E;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#232F3E;dashed=0;", +130*a,130*a,"AWS Cloud",null,null,null,this.getTagsForStencil(b,"cloud","aws amazon web service groups group").join(" ")),this.createVertexTemplateEntry(e+"group;grIcon="+b+".group_region;strokeColor=#147EBA;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#147EBA;dashed=0;",130*a,130*a,"Region",null,null,null,this.getTagsForStencil(b,"region","aws amazon web service groups group").join(" ")),this.createVertexTemplateEntry("fillColor=none;strokeColor=#147EBA;dashed=1;verticalAlign=top;fontStyle=0;fontColor=#147EBA;", +130*a,130*a,"Availability Zone",null,null,null,this.getTagsForStencil(b,"availability zone","aws amazon web service groups group").join(" ")),this.createVertexTemplateEntry("fillColor=none;strokeColor=#DD3522;verticalAlign=top;fontStyle=0;fontColor=#DD3522;",130*a,130*a,"Security group",null,null,null,this.getTagsForStencil(b,"security","aws amazon web service groups group").join(" ")),this.createVertexTemplateEntry(e+"groupCenter;grIcon="+b+".group_auto_scaling_group;grStroke=1;strokeColor=#D86613;fillColor=none;verticalAlign=top;align=center;fontColor=#D86613;dashed=1;spacingTop=25;", +130*a,130*a,"Auto Scaling group",null,null,null,this.getTagsForStencil(b,"auto scaling","aws amazon web service groups group").join(" ")),this.createVertexTemplateEntry(e+"group;grIcon="+b+".group_vpc;strokeColor=#248814;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#AAB7B8;dashed=0;",130*a,130*a,"VPC",null,null,null,this.getTagsForStencil(b,"vpc virtual private cloud","aws amazon web service groups group").join(" ")),this.createVertexTemplateEntry(e+"group;grIcon="+b+".group_security_group;grStroke=0;strokeColor=#147EBA;fillColor=#E6F2F8;verticalAlign=top;align=left;spacingLeft=30;fontColor=#147EBA;dashed=0;", +130*a,130*a,"Private subnet",null,null,null,this.getTagsForStencil(b,"private subnet","aws amazon web service groups group").join(" ")),this.createVertexTemplateEntry(e+"group;grIcon="+b+".group_security_group;grStroke=0;strokeColor=#248814;fillColor=#E9F3E6;verticalAlign=top;align=left;spacingLeft=30;fontColor=#248814;dashed=0;",130*a,130*a,"Public subnet",null,null,null,this.getTagsForStencil(b,"public subnet","aws amazon web service groups group").join(" ")),this.createVertexTemplateEntry(e+"group;grIcon="+ +b+".group_on_premise;strokeColor=#5A6C86;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#5A6C86;dashed=0;",130*a,130*a,"Server contents",null,null,null,this.getTagsForStencil(b,"server contents","aws amazon web service groups group").join(" ")),this.createVertexTemplateEntry(e+"group;grIcon="+b+".group_corporate_data_center;strokeColor=#5A6C86;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#5A6C86;dashed=0;",130*a,130*a,"Corporate data center",null,null, +null,this.getTagsForStencil(b,"corporate data center","aws amazon web service groups group").join(" ")),this.createVertexTemplateEntry(e+"group;grIcon="+b+".group_elastic_beanstalk;strokeColor=#D86613;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#D86613;dashed=0;",130*a,130*a,"Elastic Beanstalk container",null,null,null,this.getTagsForStencil(b,"elastic beanstalk container","aws amazon web service groups group").join(" ")),this.createVertexTemplateEntry(e+"group;grIcon="+b+ +".group_ec2_instance_contents;strokeColor=#D86613;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#D86613;dashed=0;",130*a,130*a,"EC2 instance contents",null,null,null,this.getTagsForStencil(b,"ec2 instance contents","aws amazon web service groups group").join(" ")),this.createVertexTemplateEntry(e+"group;grIcon="+b+".group_spot_fleet;strokeColor=#D86613;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#D86613;dashed=0;",130*a,130*a,"Spot Fleet",null,null, +null,this.getTagsForStencil(b,"spot fleet","aws amazon web service groups group").join(" ")),this.createVertexTemplateEntry(e+"group;grIcon="+b+".group_aws_step_functions_workflow;strokeColor=#CD2264;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#CD2264;dashed=0;",130*a,130*a,"AWS Step Functions workflow",null,null,null,this.getTagsForStencil(b,"step function","aws amazon web service groups group").join(" ")),this.createVertexTemplateEntry("fillColor=none;strokeColor=#5A6C86;dashed=1;verticalAlign=top;fontStyle=0;fontColor=#5A6C86;", +130*a,130*a,"Generic group",null,null,null,this.getTagsForStencil(b,"generic","aws amazon web service groups group").join(" ")),this.createVertexTemplateEntry("fillColor=#EFF0F3;strokeColor=none;dashed=0;verticalAlign=top;fontStyle=0;fontColor=#232F3D;",130*a,130*a,"Generic group",null,null,null,this.getTagsForStencil(b,"generic","aws amazon web service groups group").join(" "))])};Sidebar.prototype.addAWS4AnalyticsPalette=function(a,b,e,c,d,f,g){b="outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#5A30B5;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;"+ +mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";e="outlineConnect=0;fontColor=#232F3E;gradientColor=#945DF2;gradientDirection=north;fillColor=#5A30B5;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4Analytics","AWS / Analytics",!1,[this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".athena;",c,c,"","Athena",null,null,this.getTagsForStencil(d, +"athena","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".cloudsearch;",c,c,"","CloudSearch",null,null,this.getTagsForStencil(d,"cloudsearch","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".elasticsearch_service;",c,c,"","ElasticSearch Service",null,null,this.getTagsForStencil(d,"elasticsearch service","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(e+ +"resourceIcon;resIcon="+d+".emr;",c,c,"","EMR",null,null,this.getTagsForStencil(d,"emr","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".kinesis;",c,c,"","Kinesis",null,null,this.getTagsForStencil(d,"kinesis","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".kinesis_data_analytics;",c,c,"","Kinesis Data Analytics",null,null,this.getTagsForStencil(d,"kinesis data analytics","aws amazon web service analytics").join(" ")), +this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".kinesis_data_firehose;",c,c,"","Kinesis Data Firehose",null,null,this.getTagsForStencil(d,"kinesis data firehose","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".kinesis_data_streams;",c,c,"","Kinesis Data Streams",null,null,this.getTagsForStencil(d,"kinesis data streams","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".kinesis_video_streams;", +c,c,"","Kinesis Video Streams",null,null,this.getTagsForStencil(d,"kinesis video streams","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".quicksight;",c,c,"","QuickSight",null,null,this.getTagsForStencil(d,"quicksight quick sight","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".redshift;",c,c,"","Redshift",null,null,this.getTagsForStencil(d,"redshift","aws amazon web service analytics").join(" ")), +this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".analytics;",c,c,"","Analytics",null,null,this.getTagsForStencil(d,"analytics","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".data_pipeline;",c,c,"","Data Pipeline",null,null,this.getTagsForStencil(d,"data pipeline","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".managed_streaming_for_kafka;",c,c,"","Managed Streaming for Kafka", +null,null,this.getTagsForStencil(d,"managed streaming for kafka","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".glue;",c,c,"","Glue",null,null,this.getTagsForStencil(d,"glue","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".lake_formation;",c,c,"","Lake Formation",null,null,this.getTagsForStencil(d,"lake formation","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(b+ +"search_documents;",68*a,78*a,"","Search Documents",null,null,this.getTagsForStencil(d,"search documents","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(b+"cluster;",78*a,78*a,"","HDFS Cluster",null,null,this.getTagsForStencil(d,"hdfs cluster","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(b+"data_lake_resource_icon;",78*a,78*a,"","Data Lake",null,null,this.getTagsForStencil(d,"data lake","aws amazon web service analytics").join(" ")), +this.createVertexTemplateEntry(b+"emr_engine;",78*a,59*a,"","EMR Engine",null,null,this.getTagsForStencil(d,"emr engine","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(b+"emr_engine_mapr_m3;",78*a,59*a,"","EMR Engine MapR M3",null,null,this.getTagsForStencil(d,"emr engine mapr m3","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(b+"emr_engine_mapr_m5;",78*a,59*a,"","EMR Engine MapR M5",null,null,this.getTagsForStencil(d,"emr engine mapr m5", +"aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(b+"emr_engine_mapr_m7;",78*a,59*a,"","EMR Engine MapR M7",null,null,this.getTagsForStencil(d,"emr engine mapr m7","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(b+"hdfs_cluster;",78*a,78*a,"","Cluster",null,null,this.getTagsForStencil(d,"cluster","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(b+"dense_compute_node;",78*a,78*a,"","Dense Compute Node",null,null, +this.getTagsForStencil(d,"dense compute node","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(b+"dense_storage_node;",78*a,78*a,"","Dense Storage Node",null,null,this.getTagsForStencil(d,"dense storage node","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(b+"glue_crawlers;",78*a,78*a,"","Crawler",null,null,this.getTagsForStencil(d,"crawler","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(b+"glue_data_catalog;", +72*a,78*a,"","Data Catalog",null,null,this.getTagsForStencil(d,"data catalog","aws amazon web service analytics").join(" "))])};Sidebar.prototype.addAWS4ApplicationIntegrationPalette=function(a,b,e,c,d,f){b="outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#BC1356;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";e="outlineConnect=0;fontColor=#232F3E;gradientColor=#F34482;gradientDirection=north;fillColor=#BC1356;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+ +mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4Application Integration","AWS / Application Integration",!1,[this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".mq;",c,c,"","MQ",null,null,this.getTagsForStencil(d,"mq","aws amazon web service application integration").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".sns;",c,c,"","Simple Notification System",null,null,this.getTagsForStencil(d,"sns simple notification system","aws amazon web service application integration").join(" ")), +this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".sqs;",c,c,"","Simple Queue System",null,null,this.getTagsForStencil(d,"sqs simple queue system","aws amazon web service application integration").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".application_integration;",c,c,"","Application Integration",null,null,this.getTagsForStencil(d,"application integration","aws amazon web service application integration").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+ +d+".appsync;",c,c,"","AppSync",null,null,this.getTagsForStencil(d,"appsync","aws amazon web service application integration").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".eventbridge;",c,c,"","EventBridge",null,null,this.getTagsForStencil(d,"eventbridge event bridge","aws amazon web service application integration").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".step_functions;",c,c,"","Step Functions",null,null,this.getTagsForStencil(d,"step functions", +"aws amazon web service application integration").join(" ")),this.createVertexTemplateEntry(b+"email_notification;",78*a,78*a,"","Email Notification",null,null,this.getTagsForStencil(d,"email notification","aws amazon web service application integration").join(" ")),this.createVertexTemplateEntry(b+"http_notification;",78*a,78*a,"","HTTP Notification",null,null,this.getTagsForStencil(d,"http notification","aws amazon web service application integration").join(" ")),this.createVertexTemplateEntry(b+ +"topic;",78*a,67*a,"","Topic",null,null,this.getTagsForStencil(d,"topic","aws amazon web service application integration").join(" ")),this.createVertexTemplateEntry(b+"message;",76*a,78*a,"","Message",null,null,this.getTagsForStencil(d,"message","aws amazon web service application integration").join(" ")),this.createVertexTemplateEntry(b+"queue;",78*a,47*a,"","Queue",null,null,this.getTagsForStencil(d,"queue","aws amazon web service application integration").join(" "))])};Sidebar.prototype.addAWS4ARVRPalette= +function(a,b,e,c,d,f){a="outlineConnect=0;fontColor=#232F3E;gradientColor=#F34482;gradientDirection=north;fillColor=#BC1356;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4AR VR","AWS / AR & VR",!1,[this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+d+".sumerian;",c,c,"","Sumerian",null,null,this.getTagsForStencil(d,"sumerian","aws amazon web service ar vr augmented virtual reality").join(" ")), +this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+d+".ar_vr;",c,c,"","AR VR",null,null,this.getTagsForStencil(d,"ar vr augmented virtual reality","aws amazon web service ar vr augmented virtual reality").join(" "))])};Sidebar.prototype.addAWS4CostManagementPalette=function(a,b,e,c,d,f){a="outlineConnect=0;fontColor=#232F3E;gradientColor=#60A337;gradientDirection=north;fillColor=#277116;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+ +mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4Cost Management","AWS / Cost Management",!1,[this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+d+".budgets;",c,c,"","Budgets",null,null,this.getTagsForStencil(d,"budgets","aws amazon web service cost management").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+d+".cost_and_usage_report;",c,c,"","Cost and Usage Report",null,null,this.getTagsForStencil(d,"cost and usage report","aws amazon web service cost management").join(" ")), +this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+d+".cost_explorer;",c,c,"","Cost Explorer",null,null,this.getTagsForStencil(d,"cost explorer","aws amazon web service cost management").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+d+".cost_management;",c,c,"","Cost Management",null,null,this.getTagsForStencil(d,"cost management","aws amazon web service cost management").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+d+".reserved_instance_reporting;", +c,c,"","Reserved Instance Reporting",null,null,this.getTagsForStencil(d,"reserved instance reporting","aws amazon web service cost management").join(" "))])};Sidebar.prototype.addAWS4BlockchainPalette=function(a,b,e,c,d,f){a="outlineConnect=0;fontColor=#232F3E;gradientColor=#F78E04;gradientDirection=north;fillColor=#D05C17;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4."; +this.addPaletteFunctions("aws4Blockchain","AWS / Blockchain",!1,[this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+d+".managed_blockchain;",c,c,"","Managed Blockchain",null,null,this.getTagsForStencil(d,"managed blockchain","aws amazon web service cost management").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+d+".quantum_ledger_database;",c,c,"","Quantum Ledger Database (QLDB)",null,null,this.getTagsForStencil(d,"quantum ledger database","aws amazon web service cost management").join(" ")), +this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+d+".blockchain;",c,c,"","Blockchain",null,null,this.getTagsForStencil(d,"blockchain","aws amazon web service cost management").join(" "))])};Sidebar.prototype.addAWS4BusinessApplicationsPalette=function(a,b,e,c,d,f){a="outlineConnect=0;fontColor=#232F3E;gradientColor=#F54749;gradientDirection=north;fillColor=#C7131F;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+ +mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4Business Applications","AWS / Business Applications",!1,[this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+d+".alexa_for_business;",c,c,"","Alexa for Business",null,null,this.getTagsForStencil(d,"alexa for business","aws amazon web service business applications").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+d+".chime;",c,c,"","Chime",null,null,this.getTagsForStencil(d,"chime","aws amazon web service business applications").join(" ")), +this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+d+".workmail;",c,c,"","WorkMail",null,null,this.getTagsForStencil(d,"workmail","aws amazon web service business applications").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+d+".business_application;",c,c,"","Business Application",null,null,this.getTagsForStencil(d,"business application","aws amazon web service business applications").join(" "))])};Sidebar.prototype.addAWS4EC2InstanceTypePalette=function(a,b,e,c,d,f){b= +"outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#D86613;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4EC2 Instance Types","AWS / EC2 Instance Types",!1,[this.createVertexTemplateEntry(b+"a1_instance;",48*a,48*a,"","A1 Instance",null,null,this.getTagsForStencil(d,"a1","aws amazon web service ec2 instance type").join(" ")), +this.createVertexTemplateEntry(b+"c4_instance;",48*a,48*a,"","C4 Instance",null,null,this.getTagsForStencil(d,"c4","aws amazon web service ec2 instance type").join(" ")),this.createVertexTemplateEntry(b+"c5_instance;",48*a,48*a,"","C5 Instance",null,null,this.getTagsForStencil(d,"c5","aws amazon web service ec2 instance type").join(" ")),this.createVertexTemplateEntry(b+"c5n_instance;",48*a,48*a,"","C5n Instance",null,null,this.getTagsForStencil(d,"c5n","aws amazon web service ec2 instance type").join(" ")), +this.createVertexTemplateEntry(b+"d2_instance;",48*a,48*a,"","D2 Instance",null,null,this.getTagsForStencil(d,"d2","aws amazon web service ec2 instance type").join(" ")),this.createVertexTemplateEntry(b+"db_on_instance2;",48*a,48*a,"","DB on Instance",null,null,this.getTagsForStencil(d,"db on database","aws amazon web service ec2 instance type").join(" ")),this.createVertexTemplateEntry(b+"f1_instance;",48*a,48*a,"","F1 Instance",null,null,this.getTagsForStencil(d,"f1","aws amazon web service ec2 instance type").join(" ")), +this.createVertexTemplateEntry(b+"g3_instance;",48*a,48*a,"","G3 Instance",null,null,this.getTagsForStencil(d,"g3","aws amazon web service ec2 instance type").join(" ")),this.createVertexTemplateEntry(b+"h1_instance;",48*a,48*a,"","H1 Instance",null,null,this.getTagsForStencil(d,"h1","aws amazon web service ec2 instance type").join(" ")),this.createVertexTemplateEntry(b+"high_memory_instance;",48*a,48*a,"","High Memory Instance",null,null,this.getTagsForStencil(d,"high memory instance","aws amazon web service ec2 instance type").join(" ")), +this.createVertexTemplateEntry(b+"i3_instance;",48*a,48*a,"","I3 Instance",null,null,this.getTagsForStencil(d,"i3","aws amazon web service ec2 instance type").join(" ")),this.createVertexTemplateEntry(b+"instance2;",48*a,48*a,"","Instance",null,null,this.getTagsForStencil(d,"","aws amazon web service ec2 instance type").join(" ")),this.createVertexTemplateEntry(b+"instances;",48*a,48*a,"","Instances",null,null,this.getTagsForStencil(d,"","aws amazon web service ec2 instance type").join(" ")),this.createVertexTemplateEntry(b+ +"instance_with_cloudwatch2;",48*a,48*a,"","Instance with CloudWatch",null,null,this.getTagsForStencil(d,"instance with cloudwatch","aws amazon web service ec2 instance type").join(" ")),this.createVertexTemplateEntry(b+"m4_instance;",48*a,48*a,"","M4 Instance",null,null,this.getTagsForStencil(d,"m4","aws amazon web service ec2 instance type").join(" ")),this.createVertexTemplateEntry(b+"m5a_instance;",48*a,48*a,"","M5a Instance",null,null,this.getTagsForStencil(d,"m5a","aws amazon web service ec2 instance type").join(" ")), +this.createVertexTemplateEntry(b+"m5_instance;",48*a,48*a,"","M5 Instance",null,null,this.getTagsForStencil(d,"m5","aws amazon web service ec2 instance type").join(" ")),this.createVertexTemplateEntry(b+"optimized_instance;",48*a,48*a,"","Optimized Instance",null,null,this.getTagsForStencil(d,"optimized instance","aws amazon web service ec2 instance type").join(" ")),this.createVertexTemplateEntry(b+"p2_instance;",48*a,48*a,"","P2 Instance",null,null,this.getTagsForStencil(d,"p2","aws amazon web service ec2 instance type").join(" ")), +this.createVertexTemplateEntry(b+"p3_instance;",48*a,48*a,"","P3 Instance",null,null,this.getTagsForStencil(d,"p3","aws amazon web service ec2 instance type").join(" ")),this.createVertexTemplateEntry(b+"r4_instance;",48*a,48*a,"","R4 Instance",null,null,this.getTagsForStencil(d,"r4","aws amazon web service ec2 instance type").join(" ")),this.createVertexTemplateEntry(b+"r5a_instance;",48*a,48*a,"","R5a Instance",null,null,this.getTagsForStencil(d,"r5a","aws amazon web service ec2 instance type").join(" ")), +this.createVertexTemplateEntry(b+"r5_instance;",48*a,48*a,"","R5 Instance",null,null,this.getTagsForStencil(d,"r5","aws amazon web service ec2 instance type").join(" ")),this.createVertexTemplateEntry(b+"spot_instance;",48*a,48*a,"","Spot Instance",null,null,this.getTagsForStencil(d,"spot","aws amazon web service ec2 instance type").join(" ")),this.createVertexTemplateEntry(b+"t2_instance;",48*a,48*a,"","T2 Instance",null,null,this.getTagsForStencil(d,"t2","aws amazon web service ec2 instance type").join(" ")), +this.createVertexTemplateEntry(b+"t3a_instance;",48*a,48*a,"","T3a Instance",null,null,this.getTagsForStencil(d,"t3a","aws amazon web service ec2 instance type").join(" ")),this.createVertexTemplateEntry(b+"t3_instance;",48*a,48*a,"","T3 Instance",null,null,this.getTagsForStencil(d,"t3","aws amazon web service ec2 instance type").join(" ")),this.createVertexTemplateEntry(b+"t3_instance;",48*a,48*a,"","T3 Instance",null,null,this.getTagsForStencil(d,"t3","aws amazon web service ec2 instance type").join(" ")), +this.createVertexTemplateEntry(b+"x1e_instance;",48*a,48*a,"","X1e Instance",null,null,this.getTagsForStencil(d,"x1e","aws amazon web service ec2 instance type").join(" ")),this.createVertexTemplateEntry(b+"x1_instance2;",48*a,48*a,"","X1 Instance",null,null,this.getTagsForStencil(d,"x1","aws amazon web service ec2 instance type").join(" ")),this.createVertexTemplateEntry(b+"z1d_instance;",48*a,48*a,"","z1d Instance",null,null,this.getTagsForStencil(d,"z1d","aws amazon web service ec2 instance type").join(" "))])}; +Sidebar.prototype.addAWS4ComputePalette=function(a,b,e,c,d,f){b="outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#D05C17;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";e="outlineConnect=0;fontColor=#232F3E;gradientColor=#F78E04;gradientDirection=north;fillColor=#D05C17;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+ +mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4Compute","AWS / Compute",!1,[this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".ec2;",c,c,"","EC2",null,null,this.getTagsForStencil(d,"ec2","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".auto_scaling2;",c,c,"","Auto Scaling",null,null,this.getTagsForStencil(d,"auto scaling","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+ +d+".ecr;",c,c,"","Elastic Container Registry",null,null,this.getTagsForStencil(d,"elastic container registry ecr","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".ecs;",c,c,"","Elastic Container Service",null,null,this.getTagsForStencil(d,"elastic container service ecs","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".eks;",c,c,"","Elastic Container Service for Kubernetes",null,null,this.getTagsForStencil(d, +"elastic container service eks for kubernetes","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".lightsail;",c,c,"","Lightsail",null,null,this.getTagsForStencil(d,"lightsail","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".batch;",c,c,"","Batch",null,null,this.getTagsForStencil(d,"batch","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+ +d+".elastic_beanstalk;",c,c,"","Elastic Beanstalk",null,null,this.getTagsForStencil(d,"elastic beanstalk","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".fargate;",c,c,"","Fargate",null,null,this.getTagsForStencil(d,"fargate","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".lambda;",c,c,"","Lambda",null,null,this.getTagsForStencil(d,"lambda","aws amazon web service compute").join(" ")), +this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".outposts;",c,c,"","Outposts",null,null,this.getTagsForStencil(d,"outposts","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".serverless_application_repository;",c,c,"","Serverless Application Repository",null,null,this.getTagsForStencil(d,"serverless application repository","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".thinkbox_deadline;", +c,c,"","Thinkbox Deadline",null,null,this.getTagsForStencil(d,"thinkbox deadline","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".thinkbox_draft;",c,c,"","Thinkbox Draft",null,null,this.getTagsForStencil(d,"thinkbox draft","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".thinkbox_frost;",c,c,"","Thinkbox Frost",null,null,this.getTagsForStencil(d,"thinkbox frost","aws amazon web service compute").join(" ")), +this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".thinkbox_krakatoa;",c,c,"","Thinkbox Krakatoa",null,null,this.getTagsForStencil(d,"thinkbox krakatoa","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".thinkbox_sequoia;",c,c,"","Thinkbox Sequoia",null,null,this.getTagsForStencil(d,"thinkbox sequoia","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".thinkbox_stoke;",c,c,"","Thinkbox Stoke", +null,null,this.getTagsForStencil(d,"thinkbox stoke","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".thinkbox_xmesh;",c,c,"","Thinkbox XMesh",null,null,this.getTagsForStencil(d,"thinkbox xmesh","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".compute;",c,c,"","Compute",null,null,this.getTagsForStencil(d,"compute","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(e+ +"resourceIcon;resIcon="+d+".elastic_load_balancing;",c,c,"","Elastic Load Balancing",null,null,this.getTagsForStencil(d,"elastic load balancing","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".vmware_cloud_on_aws;",c,c,"","VMware Cloud on AWS",null,null,this.getTagsForStencil(d,"vmware cloud on aws virtual machine vm","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"ami;",78*a,78*a,"","AMI",null,null,this.getTagsForStencil(d, +"ami","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"auto_scaling2;",78*a,78*a,"","Auto-Scaling",null,null,this.getTagsForStencil(d,"autoscaling auto scaling","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"elastic_ip_address;",78*a,33*a,"","Elastic IP Address",null,null,this.getTagsForStencil(d,"elastic ip itnernet protocol address","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"rescue;",78*a,78*a,"","Rescue", +null,null,this.getTagsForStencil(d,"rescue","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"registry;",78*a,78*a,"","Registry",null,null,this.getTagsForStencil(d,"registry","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"container_1;",78*a,50*a,"","Container",null,null,this.getTagsForStencil(d,"ecs elastic container service","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"container_2;",78*a,50*a,"","Container", +null,null,this.getTagsForStencil(d,"ecs elastic container service","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"container_3;",78*a,50*a,"","Container",null,null,this.getTagsForStencil(d,"ecs elastic container service","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"container_registry_image;",78*a,78*a,"","Image",null,null,this.getTagsForStencil(d,"image","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"ecs_service;", +64*a,78*a,"","Service",null,null,this.getTagsForStencil(d,"ecs elastic container service","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"ecs_task;",59*a,78*a,"","Task",null,null,this.getTagsForStencil(d,"ecs elastic container service task","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"application;",50*a,78*a,"","Application",null,null,this.getTagsForStencil(d,"elastic beanstalk application","aws amazon web service compute").join(" ")), +this.createVertexTemplateEntry(b+"deployment;",78*a,74*a,"","Deployment",null,null,this.getTagsForStencil(d,"elastic beanstalk deployment","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"lambda_function;",78*a,78*a,"","Lambda Function",null,null,this.getTagsForStencil(d,"lambda function","aws amazon web service compute").join(" "))])};Sidebar.prototype.addAWS4CustomerEngagementPalette=function(a,b,e,c,d,f){b="outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#3334B9;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;"+ +mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";e="outlineConnect=0;fontColor=#232F3E;gradientColor=#4D72F3;gradientDirection=north;fillColor=#3334B9;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4Customer Engagement","AWS / Customer Engagement",!1,[this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".connect;",c,c,"","Connect",null,null,this.getTagsForStencil(d, +"connect","aws amazon web service customer engagement").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".pinpoint;",c,c,"","Pinpoint",null,null,this.getTagsForStencil(d,"pinpoint","aws amazon web service customer engagement").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".simple_email_service;",c,c,"","Simple Email Service",null,null,this.getTagsForStencil(d,"simple email service","aws amazon web service customer engagement").join(" ")),this.createVertexTemplateEntry(e+ +"resourceIcon;resIcon="+d+".customer_engagement;",c,c,"","Customer Engagement",null,null,this.getTagsForStencil(d,"customer engagement","aws amazon web service customer engagement").join(" ")),this.createVertexTemplateEntry(b+"email;",78*a,69*a,"","Email",null,null,this.getTagsForStencil(d,"email","aws amazon web service customer engagement").join(" "))])};Sidebar.prototype.addAWS4DatabasePalette=function(a,b,e,c,d,f){b="outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#3334B9;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;"+ +mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";e="outlineConnect=0;fontColor=#232F3E;gradientColor=#4D72F3;gradientDirection=north;fillColor=#3334B9;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4Database","AWS / Database",!1,[this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".aurora;",c,c,"","Aurora",null,null,this.getTagsForStencil(d, +"aurora","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".documentdb_with_mongodb_compatibility;",c,c,"","DocumentDB (with MongoDB Compatibility)",null,null,this.getTagsForStencil(d,"documentdb with mongodb compatibility","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".dynamodb;",c,c,"","DynamoDB",null,null,this.getTagsForStencil(d,"dynamodb","aws amazon web service db database").join(" ")), +this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".elasticache;",c,c,"","ElastiCache",null,null,this.getTagsForStencil(d,"elasticache","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".neptune;",c,c,"","Neptune",null,null,this.getTagsForStencil(d,"neptune","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".quantum_ledger_database;",c,c,"","Quantum Ledger Database",null, +null,this.getTagsForStencil(d,"quantum ledger database db","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".rds;",c,c,"","RDS",null,null,this.getTagsForStencil(d,"rds","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".rds_on_vmware;",c,c,"","RDS on VMware",null,null,this.getTagsForStencil(d,"rds on vmware","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(e+ +"resourceIcon;resIcon="+d+".redshift;",c,c,"","Redshift",null,null,this.getTagsForStencil(d,"redshift","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".timestream;",c,c,"","Timestream",null,null,this.getTagsForStencil(d,"timestream","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".database_migration_service;",c,c,"","Database Migration Service",null,null,this.getTagsForStencil(d, +"database migration service","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".database;",c,c,"","Database",null,null,this.getTagsForStencil(d,"database","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(b+"attribute;",78*a,78*a,"","Attribute",null,null,this.getTagsForStencil(d,"dynamodb dynamo db database attribute","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(b+"attributes;", +78*a,78*a,"","Attributes",null,null,this.getTagsForStencil(d,"dynamodb dynamo db database attributes","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(b+"aurora_instance;",78*a,78*a,"","Aurora Instance",null,null,this.getTagsForStencil(d,"aurora instance","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(b+"aurora_instance_alt;",78*a,78*a,"","Aurora Instance",null,null,this.getTagsForStencil(d,"aurora instance","aws amazon web service db database").join(" ")), +this.createVertexTemplateEntry(b+"rds_instance;",78*a,78*a,"","RDS Instance",null,null,this.getTagsForStencil(d,"rds instance","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(b+"rds_instance_alt;",78*a,78*a,"","RDS Instance",null,null,this.getTagsForStencil(d,"rds instance","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(b+"rds_mariadb_instance;",78*a,78*a,"","RDS MariaDB Instance",null,null,this.getTagsForStencil(d,"rds mariadb maria db instance", +"aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(b+"rds_mariadb_instance_alt;",78*a,78*a,"","RDS MariaDB Instance",null,null,this.getTagsForStencil(d,"rds mariadb maria db instance","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(b+"rds_mysql_instance;",78*a,78*a,"","RDS MySQL Instance",null,null,this.getTagsForStencil(d,"rds mysql instance","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(b+"rds_mysql_instance_alt;", +78*a,78*a,"","RDS MySQL Instance",null,null,this.getTagsForStencil(d,"rds mysql instance","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(b+"rds_oracle_instance;",78*a,78*a,"","RDS Oracle Instance",null,null,this.getTagsForStencil(d,"rds oracle instance","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(b+"rds_oracle_instance_alt;",78*a,78*a,"","RDS Oracle Instance",null,null,this.getTagsForStencil(d,"rds oracle instance","aws amazon web service db database").join(" ")), +this.createVertexTemplateEntry(b+"rds_piop;",78*a,78*a,"","RDS PIOP",null,null,this.getTagsForStencil(d,"rds piop","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(b+"rds_postgresql_instance;",78*a,78*a,"","RDS PostgreSQL Instance",null,null,this.getTagsForStencil(d,"rds postgresql instance","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(b+"rds_postgresql_instance_alt;",78*a,78*a,"","RDS PostgreSQL Instance",null,null,this.getTagsForStencil(d, +"rds postgresql instance","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(b+"rds_sql_server_instance;",78*a,78*a,"","RDS SQL Server Instance",null,null,this.getTagsForStencil(d,"rds sql server instance","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(b+"rds_sql_server_instance_alt;",78*a,78*a,"","RDS SQL Server Instance",null,null,this.getTagsForStencil(d,"rds sql server instance","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(b+ +"dynamodb_dax;",78*a,72*a,"","DAX",null,null,this.getTagsForStencil(d,"dynamodb dynamo db database dax","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(b+"global_secondary_index;",78*a,78*a,"","Global Secondary Index",null,null,this.getTagsForStencil(d,"global secondary index","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(b+"item;",78*a,78*a,"","Item",null,null,this.getTagsForStencil(d,"item","aws amazon web service db database").join(" ")), +this.createVertexTemplateEntry(b+"items;",78*a,78*a,"","Items",null,null,this.getTagsForStencil(d,"items","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(b+"table;",78*a,78*a,"","Table",null,null,this.getTagsForStencil(d,"table","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(b+"cache_node;",78*a,78*a,"","Cache Node",null,null,this.getTagsForStencil(d,"elasticache elastic cache node","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(b+ +"elasticache_for_memcached;",78*a,69*a,"","ElastiCache for Memcached",null,null,this.getTagsForStencil(d,"elasticache for memcached","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(b+"elasticache_for_redis;",78*a,69*a,"","Elasticache for Redis",null,null,this.getTagsForStencil(d,"elasticache for redis","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(b+"dense_compute_node;",78*a,78*a,"","Dense Compute Node",null,null,this.getTagsForStencil(d, +"dense compute node","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(b+"dense_storage_node;",78*a,78*a,"","Dense Storage Node",null,null,this.getTagsForStencil(d,"dense storage node","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(b+"database_migration_workflow_job;",50*a,78*a,"","Database Migration Workflow",null,null,this.getTagsForStencil(d,"database migration workflow","aws amazon web service db database").join(" "))])};Sidebar.prototype.addAWS4EndUserComputingPalette= +function(a,b,e,c,d,f){a="outlineConnect=0;fontColor=#232F3E;gradientColor=#4AB29A;gradientDirection=north;fillColor=#116D5B;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4End User Computing","AWS / End User Computing",!1,[this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+d+".appstream_20;",c,c,"","Appstream 2.0",null,null,this.getTagsForStencil(d, +"appstream","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+d+".workspaces;",c,c,"","Workspaces",null,null,this.getTagsForStencil(d,"workspaces","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+d+".worklink;",c,c,"","WorkLink",null,null,this.getTagsForStencil(d,"worklink","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+d+".workdocs;", +c,c,"","WorkDocs",null,null,this.getTagsForStencil(d,"workdocs","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+d+".desktop_and_app_streaming;",c,c,"","End User Computing",null,null,this.getTagsForStencil(d,"desktop and app streaming","aws amazon web service db database").join(" "))])};Sidebar.prototype.addAWS4DeveloperToolsPalette=function(a,b,e,c,d,f){b="outlineConnect=0;fontColor=#232F3E;gradientColor=#4D72F3;gradientDirection=north;fillColor=#3334B9;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+ +mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4Developer Tools","AWS / Developer Tools",!1,[this.createVertexTemplateEntry("outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#3334B9;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.dynamodb_dax;",78*a,72*a,"","DAX",null,null,this.getTagsForStencil(d,"dynamodb dynamo db database dax","aws amazon web service dev developer tools").join(" ")), +this.createVertexTemplateEntry(b+"resourceIcon;resIcon="+d+".cloud9;",c,c,"","Cloud9",null,null,this.getTagsForStencil(d,"cloud9","aws amazon web service dev developer tools").join(" ")),this.createVertexTemplateEntry(b+"resourceIcon;resIcon="+d+".cloud_development_kit;",c,c,"","Cloud Development Kit",null,null,this.getTagsForStencil(d,"cloud development kit","aws amazon web service dev developer tools").join(" ")),this.createVertexTemplateEntry(b+"resourceIcon;resIcon="+d+".codebuild;",c,c,"","CodeBuild", +null,null,this.getTagsForStencil(d,"codebuild","aws amazon web service dev developer tools").join(" ")),this.createVertexTemplateEntry(b+"resourceIcon;resIcon="+d+".codecommit;",c,c,"","CodeCommit",null,null,this.getTagsForStencil(d,"codecommit","aws amazon web service dev developer tools").join(" ")),this.createVertexTemplateEntry(b+"resourceIcon;resIcon="+d+".codedeploy;",c,c,"","CodeDeploy",null,null,this.getTagsForStencil(d,"codedeploy","aws amazon web service dev developer tools").join(" ")), +this.createVertexTemplateEntry(b+"resourceIcon;resIcon="+d+".codepipeline;",c,c,"","CodePipeline",null,null,this.getTagsForStencil(d,"codepipeline","aws amazon web service dev developer tools").join(" ")),this.createVertexTemplateEntry(b+"resourceIcon;resIcon="+d+".codestar;",c,c,"","CodeStar",null,null,this.getTagsForStencil(d,"codestar","aws amazon web service dev developer tools").join(" ")),this.createVertexTemplateEntry(b+"resourceIcon;resIcon="+d+".command_line_interface;",c,c,"","Command-Line Interface", +null,null,this.getTagsForStencil(d,"command line interface","aws amazon web service dev developer tools").join(" ")),this.createVertexTemplateEntry(b+"resourceIcon;resIcon="+d+".tools_and_sdks;",c,c,"","Tools and SDKs",null,null,this.getTagsForStencil(d,"tools and sdks software development kit","aws amazon web service dev developer tools").join(" ")),this.createVertexTemplateEntry(b+"resourceIcon;resIcon="+d+".xray;",c,c,"","X-Ray",null,null,this.getTagsForStencil(d,"ray xray","aws amazon web service dev developer tools").join(" ")), +this.createVertexTemplateEntry(b+"resourceIcon;resIcon="+d+".developer_tools;",c,c,"","Developer Tools",null,null,this.getTagsForStencil(d,"developer tools","aws amazon web service dev developer tools").join(" "))])};Sidebar.prototype.addAWS4GameTechPalette=function(a,b,e,c,d,f){a="outlineConnect=0;fontColor=#232F3E;gradientColor=#945DF2;gradientDirection=north;fillColor=#5A30B5;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+ +mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4Game Tech","AWS / Game Tech",!1,[this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+d+".gamelift;",c,c,"","GameLift",null,null,this.getTagsForStencil(d,"gamelift","aws amazon web service game development").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+d+".game_tech;",c,c,"","Game Tech",null,null,this.getTagsForStencil(d,"game tech","aws amazon web service game development").join(" "))])};Sidebar.prototype.addAWS4InternetOfThingsPalette= +function(a,b,e,c,d,f){b="outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#277116;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";e="outlineConnect=0;fontColor=#232F3E;gradientColor=#60A337;gradientDirection=north;fillColor=#277116;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+ +mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4Internet of Things","AWS / Internet of Things",!1,[this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".freertos;",c,c,"","FreeRTOS",null,null,this.getTagsForStencil(d,"freertos","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".iot_1click;",c,c,"","1Click",null,null,this.getTagsForStencil(d,"1click","aws amazon web service internet of things iot").join(" ")), +this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".iot_analytics;",c,c,"","Analytics",null,null,this.getTagsForStencil(d,"analytics","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".iot_button;",c,c,"","Button",null,null,this.getTagsForStencil(d,"button","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".iot_core;",c,c,"","Core",null,null,this.getTagsForStencil(d, +"core","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".iot_device_defender;",c,c,"","Device Defender",null,null,this.getTagsForStencil(d,"device defender","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".iot_device_management;",c,c,"","Device Management",null,null,this.getTagsForStencil(d,"device management","aws amazon web service internet of things iot").join(" ")), +this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".iot_events;",c,c,"","Events",null,null,this.getTagsForStencil(d,"events","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".greengrass;",c,c,"","Greengrass",null,null,this.getTagsForStencil(d,"greengrass","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".iot_sitewise;",c,c,"","SiteWise",null,null,this.getTagsForStencil(d, +"sitewise","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".iot_things_graph;",c,c,"","Graph",null,null,this.getTagsForStencil(d,"graph","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".internet_of_things;",c,c,"","Internet of Things",null,null,this.getTagsForStencil(d,"","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+ +"iot_analytics_channel;",65*a,78*a,"","Channel",null,null,this.getTagsForStencil(d,"analytics channel","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+"data_set;",63*a,78*a,"","Data Set",null,null,this.getTagsForStencil(d,"data set","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+"iot_analytics_data_store;",54*a,78*a,"","Data Store",null,null,this.getTagsForStencil(d,"analytics data store","aws amazon web service internet of things iot").join(" ")), +this.createVertexTemplateEntry(b+"iot_analytics_pipeline;",78*a,42*a,"","Pipeline",null,null,this.getTagsForStencil(d,"analytics pipeline","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+"notebook;",68*a,78*a,"","Notebook",null,null,this.getTagsForStencil(d,"notebook","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+"connector;",78*a,29*a,"","Connector",null,null,this.getTagsForStencil(d,"notebook","aws amazon web service internet of things iot").join(" ")), +this.createVertexTemplateEntry(b+"action;",78*a,78*a,"","Action",null,null,this.getTagsForStencil(d,"action","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+"actuator;",72*a,78*a,"","Actuator",null,null,this.getTagsForStencil(d,"actuator","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+"alexa_enabled_device;",72*a,78*a,"","Alexa Enabled Device",null,null,this.getTagsForStencil(d,"alexa enabled device","aws amazon web service internet of things iot").join(" ")), +this.createVertexTemplateEntry(b+"alexa_skill;",78*a,78*a,"","Alexa Skill",null,null,this.getTagsForStencil(d,"alexa skill","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+"alexa_skill;",78*a,78*a,"","Alexa Voice Service",null,null,this.getTagsForStencil(d,"alexa voice service","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+"bank;",78*a,78*a,"","Bank",null,null,this.getTagsForStencil(d,"bank","aws amazon web service internet of things iot").join(" ")), +this.createVertexTemplateEntry(b+"bycicle;",78*a,78*a,"","Bycicle",null,null,this.getTagsForStencil(d,"bycicle","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+"camera;",78*a,78*a,"","Camera",null,null,this.getTagsForStencil(d,"camera","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+"car;",78*a,78*a,"","Car",null,null,this.getTagsForStencil(d,"car","aws amazon web service internet of things iot").join(" ")), +this.createVertexTemplateEntry(b+"cart;",78*a,78*a,"","Cart",null,null,this.getTagsForStencil(d,"cart","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+"certificate_manager;",59*a,78*a,"","Certificate",null,null,this.getTagsForStencil(d,"certificate manager","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+"coffee_pot;",78*a,78*a,"","Coffee Pot",null,null,this.getTagsForStencil(d,"coffee pot","aws amazon web service internet of things iot").join(" ")), +this.createVertexTemplateEntry(b+"desired_state;",78*a,78*a,"","Desired State",null,null,this.getTagsForStencil(d,"desired state","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+"iot_device_gateway;",78*a,78*a,"","Device Gateway",null,null,this.getTagsForStencil(d,"device gateway","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+"door_lock;",78*a,78*a,"","Door Lock",null,null,this.getTagsForStencil(d,"door lock", +"aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+"echo;",41*a,78*a,"","Echo",null,null,this.getTagsForStencil(d,"echo","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+"factory;",78*a,78*a,"","Factory",null,null,this.getTagsForStencil(d,"factory","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+"firetv;",78*a,55*a,"","FireTV",null,null,this.getTagsForStencil(d,"firetv", +"aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+"firetv_stick;",78*a,34*a,"","FireTV Stick",null,null,this.getTagsForStencil(d,"firetv stick","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+"generic;",78*a,78*a,"","Generic",null,null,this.getTagsForStencil(d,"generic","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+"hardware_board;",78*a,78*a,"","Hardware Board",null, +null,this.getTagsForStencil(d,"hardware board","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+"house;",78*a,78*a,"","House",null,null,this.getTagsForStencil(d,"house","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+"http2_protocol;",78*a,78*a,"","HTTP2 protocol",null,null,this.getTagsForStencil(d,"http2 protocol","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+"http_protocol;", +78*a,78*a,"","HTTP protocol",null,null,this.getTagsForStencil(d,"http protocol","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+"lambda_function;",78*a,78*a,"","Lambda Function",null,null,this.getTagsForStencil(d,"lambda function","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+"lightbulb;",78*a,78*a,"","Lightbulb",null,null,this.getTagsForStencil(d,"lightbulb","aws amazon web service internet of things iot").join(" ")), +this.createVertexTemplateEntry(b+"medical_emergency;",78*a,78*a,"","Medical Emergency",null,null,this.getTagsForStencil(d,"medical emergency","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+"mqtt_protocol;",78*a,78*a,"","MQTT Protocol",null,null,this.getTagsForStencil(d,"mqtt protocol","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+"iot_over_the_air_update;",78*a,78*a,"","Over The Air Update",null,null,this.getTagsForStencil(d, +"over the air update","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+"police_emergency;",78*a,78*a,"","Police Emergency",null,null,this.getTagsForStencil(d,"police emergency","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+"policy;",78*a,67*a,"","Policy",null,null,this.getTagsForStencil(d,"policy","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+"reported_state;", +78*a,78*a,"","Reported State",null,null,this.getTagsForStencil(d,"reported state","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+"rule;",46*a,78*a,"","Rule",null,null,this.getTagsForStencil(d,"rule","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+"sensor;",72*a,78*a,"","Sensor",null,null,this.getTagsForStencil(d,"sensor","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+ +"servo;",78*a,56*a,"","Servo",null,null,this.getTagsForStencil(d,"servo","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+"shadow;",78*a,77*a,"","Shadow",null,null,this.getTagsForStencil(d,"shadow","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+"simulator;",71*a,78*a,"","Simulator",null,null,this.getTagsForStencil(d,"simulator","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+ +"thermostat;",78*a,78*a,"","Thermostat",null,null,this.getTagsForStencil(d,"thermostat","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+"topic_2;",53*a,78*a,"","Topic",null,null,this.getTagsForStencil(d,"topic","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+"travel;",78*a,78*a,"","Travel",null,null,this.getTagsForStencil(d,"travel","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+ +"utility;",78*a,78*a,"","Utility",null,null,this.getTagsForStencil(d,"utility","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+"windfarm;",78*a,78*a,"","Windfarm",null,null,this.getTagsForStencil(d,"windfarm","aws amazon web service internet of things iot").join(" "))])};Sidebar.prototype.addAWS4MachineLearningPalette=function(a,b,e,c,d,f){b="outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#116D5B;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;"+ +mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";e="outlineConnect=0;fontColor=#232F3E;gradientColor=#4AB29A;gradientDirection=north;fillColor=#116D5B;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4Machine Learning","AWS / Machine Learning",!1,[this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".comprehend;",c,c,"","Comprehend",null,null,this.getTagsForStencil(d, +"comprehend","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".elastic_inference;",c,c,"","Elastic Inference",null,null,this.getTagsForStencil(d,"elastic inference","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".forecast;",c,c,"","Forecast",null,null,this.getTagsForStencil(d,"forecast","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(e+ +"resourceIcon;resIcon="+d+".lex;",c,c,"","Lex",null,null,this.getTagsForStencil(d,"lex","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".personalize;",c,c,"","Personalize",null,null,this.getTagsForStencil(d,"personalize","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".polly;",c,c,"","Polly",null,null,this.getTagsForStencil(d,"polly","aws amazon web service machine learning").join(" ")), +this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".rekognition;",c,c,"","Rekognition",null,null,this.getTagsForStencil(d,"rekognition","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".sagemaker;",c,c,"","SageMaker",null,null,this.getTagsForStencil(d,"sagemaker","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".sagemaker_ground_truth;",c,c,"","SageMaker Ground Truth", +null,null,this.getTagsForStencil(d,"sagemaker ground truth","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".textract;",c,c,"","Textract",null,null,this.getTagsForStencil(d,"textract","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".transcribe;",c,c,"","Transcribe",null,null,this.getTagsForStencil(d,"transcribe","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(e+ +"resourceIcon;resIcon="+d+".translate;",c,c,"","Translate",null,null,this.getTagsForStencil(d,"translate","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".apache_mxnet_on_aws;",c,c,"","Apache MXNet on AWS",null,null,this.getTagsForStencil(d,"apache mxnet on aws","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".deep_learning_amis;",c,c,"","Deep Learning AMIs",null,null, +this.getTagsForStencil(d,"deep learning amis","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".deeplens;",c,c,"","DeepLens",null,null,this.getTagsForStencil(d,"deeplens","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".deepracer;",c,c,"","DeepRacer",null,null,this.getTagsForStencil(d,"deepracer","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(e+ +"resourceIcon;resIcon="+d+".machine_learning;",c,c,"","Machine Learning",null,null,this.getTagsForStencil(d,"machine learning","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".tensorflow_on_aws;",c,c,"","TensorFlow on AWS",null,null,this.getTagsForStencil(d,"tensorflow on aws","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".deep_learning_containers;",c,c,"","Deep Learning Containers", +null,null,this.getTagsForStencil(d,"deep learning containers","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(b+"rekognition_image;",77*a,78*a,"","Rekognition image",null,null,this.getTagsForStencil(d,"rekognition image","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(b+"rekognition_video;",77*a,78*a,"","Rekognition video",null,null,this.getTagsForStencil(d,"rekognition video","aws amazon web service machine learning").join(" ")), +this.createVertexTemplateEntry(b+"sagemaker_model;",78*a,78*a,"","Model",null,null,this.getTagsForStencil(d,"sagemaker model","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(b+"sagemaker_notebook;",68*a,78*a,"","Notebook",null,null,this.getTagsForStencil(d,"sagemaker notebook","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(b+"sagemaker_train;",78*a,65*a,"","Train",null,null,this.getTagsForStencil(d,"sagemaker train","aws amazon web service machine learning").join(" "))])}; +Sidebar.prototype.addAWS4ManagementGovernancePalette=function(a,b,e,c,d,f){b="outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#BC1356;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";e="outlineConnect=0;fontColor=#232F3E;gradientColor=#F34482;gradientDirection=north;fillColor=#BC1356;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+ +mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4Management Governance","AWS / Management & Governance",!1,[this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".cloudwatch;",c,c,"","CloudWatch",null,null,this.getTagsForStencil(d,"cloudwatch","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".autoscaling;",c,c,"","Auto Scaling",null,null,this.getTagsForStencil(d,"auto scaling","aws amazon web service management governance").join(" ")), +this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".cloudformation;",c,c,"","CloudFormation",null,null,this.getTagsForStencil(d,"cloudformation","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".cloudtrail;",c,c,"","CloudTrail",null,null,this.getTagsForStencil(d,"cloudtrail","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".command_line_interface;",c, +c,"","Command Line Interface",null,null,this.getTagsForStencil(d,"command line interface","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".config;",c,c,"","Config",null,null,this.getTagsForStencil(d,"config","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".license_manager;",c,c,"","License Manager",null,null,this.getTagsForStencil(d,"license manager","aws amazon web service management governance").join(" ")), +this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".managed_services;",c,c,"","Managed Services",null,null,this.getTagsForStencil(d,"managed services","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".management_console;",c,c,"","Management Console",null,null,this.getTagsForStencil(d,"management console","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+ +d+".opsworks;",c,c,"","OpsWorks",null,null,this.getTagsForStencil(d,"opsworks","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".personal_health_dashboard;",c,c,"","Personal Health Dashboard",null,null,this.getTagsForStencil(d,"personal health dashboard","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".service_catalog;",c,c,"","Service Catalog",null,null,this.getTagsForStencil(d, +"service catalog","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".systems_manager;",c,c,"","Systems Manager",null,null,this.getTagsForStencil(d,"systems manager","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".trusted_advisor;",c,c,"","Trusted Advisor",null,null,this.getTagsForStencil(d,"trusted advisor","aws amazon web service management governance").join(" ")), +this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".well_architected_tool;",c,c,"","Well-Architected Tool",null,null,this.getTagsForStencil(d,"well architected tool","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".control_tower;",c,c,"","Control Tower",null,null,this.getTagsForStencil(d,"control tower","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+ +d+".management_and_governance;",c,c,"","Management and Governance",null,null,this.getTagsForStencil(d,"management and governance","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(b+"alarm;",78*a,78*a,"","Alarm",null,null,this.getTagsForStencil(d,"cloudwatch alarm","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(b+"event_event_based;",78*a,78*a,"","Event (Event-Based)",null,null,this.getTagsForStencil(d,"cloudwatch event based", +"aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(b+"event_time_based;",78*a,78*a,"","Event (Time-Based)",null,null,this.getTagsForStencil(d,"cloudwatch event time based","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(b+"rule_2;",78*a,76*a,"","Rule",null,null,this.getTagsForStencil(d,"cloudwatch rule","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(b+"change_set;",65*a,78*a, +"","Change Set",null,null,this.getTagsForStencil(d,"cloudformation change set","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(b+"stack;",78*a,76*a,"","Stack",null,null,this.getTagsForStencil(d,"cloudformation stack","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(b+"template;",65*a,78*a,"","Template",null,null,this.getTagsForStencil(d,"cloudformation template","aws amazon web service management governance").join(" ")), +this.createVertexTemplateEntry(b+"opsworks_apps;",78*a,78*a,"","Apps",null,null,this.getTagsForStencil(d,"opsworks apps applications","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(b+"deployments;",65*a,78*a,"","Deployments",null,null,this.getTagsForStencil(d,"opsworks deployments","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(b+"instances_2;",78*a,78*a,"","Instances",null,null,this.getTagsForStencil(d,"opsworks instances", +"aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(b+"layers;",78*a,78*a,"","Layers",null,null,this.getTagsForStencil(d,"opsworks layers","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(b+"monitoring;",78*a,58*a,"","Monitoring",null,null,this.getTagsForStencil(d,"opsworks monitoring","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(b+"opsworks_permissions;",54*a,78*a,"","Permissions", +null,null,this.getTagsForStencil(d,"opsworks permissions","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(b+"resources;",68*a,78*a,"","Resources",null,null,this.getTagsForStencil(d,"opsworks resources","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(b+"stack2;",78*a,78*a,"","Stack",null,null,this.getTagsForStencil(d,"stack","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(b+ +"organizations_account;",74*a,78*a,"","Organizations Account",null,null,this.getTagsForStencil(d,"organizations account","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(b+"organizations_organizational_unit;",78*a,67*a,"","Organizations Organizational Unit",null,null,this.getTagsForStencil(d,"organizations organizational unit","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(b+"shield_shield_advanced;",70*a,78*a,"", +"Shield Advanced",null,null,this.getTagsForStencil(d,"shield advanced","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(b+"automation;",78*a,78*a,"","Automation",null,null,this.getTagsForStencil(d,"systems manager automation","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(b+"documents;",64*a,78*a,"","Documents",null,null,this.getTagsForStencil(d,"systems manager documents","aws amazon web service management governance").join(" ")), +this.createVertexTemplateEntry(b+"inventory;",78*a,78*a,"","Inventory",null,null,this.getTagsForStencil(d,"systems manager inventory","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(b+"maintenance_windows;",78*a,78*a,"","Maintenance Windows",null,null,this.getTagsForStencil(d,"systems manager maintenance windows","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(b+"parameter_store;",75*a,78*a,"","Parameter Store",null, +null,this.getTagsForStencil(d,"systems manager parameter store","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(b+"patch_manager;",78*a,78*a,"","Patch Manager",null,null,this.getTagsForStencil(d,"systems manager patch manager","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(b+"run_command;",78*a,55*a,"","Run Command",null,null,this.getTagsForStencil(d,"systems manager run command","aws amazon web service management governance").join(" ")), +this.createVertexTemplateEntry(b+"state_manager;",78*a,78*a,"","State Manager",null,null,this.getTagsForStencil(d,"systems manager state","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(b+"checklist;",66*a,78*a,"","Checklist",null,null,this.getTagsForStencil(d,"trusted advisor checklist","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(b+"checklist_cost;",78*a,78*a,"","Checklist Cost",null,null,this.getTagsForStencil(d, +"trusted advisor checklist cost","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(b+"checklist_fault_tolerant;",78*a,77*a,"","Checklist Fault Tolerant",null,null,this.getTagsForStencil(d,"trusted advisor fault tolerant","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(b+"checklist_performance;",78*a,78*a,"","Checklist Performance",null,null,this.getTagsForStencil(d,"trusted advisor checklist performance","aws amazon web service management governance").join(" ")), +this.createVertexTemplateEntry(b+"checklist_security;",78*a,78*a,"","Checklist Security",null,null,this.getTagsForStencil(d,"trusted advisor checklist security","aws amazon web service management governance").join(" ")),this.createVertexTemplateEntry(b+"systems_manager_opscenter;",78*a,78*a,"","Systems Manager OpsCenter",null,null,this.getTagsForStencil(d,"systems manager opscenter","aws amazon web service management governance").join(" "))])};Sidebar.prototype.addAWS4MediaServicesPalette=function(a, +b,e,c,d,f){a="outlineConnect=0;fontColor=#232F3E;gradientColor=#F78E04;gradientDirection=north;fillColor=#D05C17;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4Media Services","AWS / Media Services",!1,[this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+d+".elastic_transcoder;",c,c,"","Elastic Transcoder",null,null,this.getTagsForStencil(d, +"elastic transcoder","aws amazon web service media services").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+d+".kinesis_video_streams;",c,c,"","Kinesis Video Streams",null,null,this.getTagsForStencil(d,"kinesis video streams","aws amazon web service media services").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+d+".elemental_mediaconnect;",c,c,"","Elemental MediaConnect",null,null,this.getTagsForStencil(d,"elemental mediaconnect","aws amazon web service media services").join(" ")), +this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+d+".elemental_mediaconvert;",c,c,"","Elemental MediaConvert",null,null,this.getTagsForStencil(d,"elemental mediaconvert","aws amazon web service media services").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+d+".elemental_medialive;",c,c,"","Elemental MediaLive",null,null,this.getTagsForStencil(d,"elemental medialive","aws amazon web service media services").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+ +d+".elemental_mediapackage;",c,c,"","Elemental MediaPackage",null,null,this.getTagsForStencil(d,"elemental mediapackage","aws amazon web service media services").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+d+".elemental_mediastore;",c,c,"","Elemental MediaStore",null,null,this.getTagsForStencil(d,"elemental mediastore","aws amazon web service media services").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+d+".elemental_mediatailor;",c,c,"","Elemental MediaTailor", +null,null,this.getTagsForStencil(d,"elemental mediatailor","aws amazon web service media services").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+d+".elemental;",c,c,"","Elemental Conductor",null,null,this.getTagsForStencil(d,"elemental conductor","aws amazon web service media services").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+d+".elemental;",c,c,"","Elemental Delta",null,null,this.getTagsForStencil(d,"elemental delta","aws amazon web service media services").join(" ")), +this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+d+".elemental;",c,c,"","Elemental Live",null,null,this.getTagsForStencil(d,"elemental live","aws amazon web service media services").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+d+".elemental;",c,c,"","Elemental Server",null,null,this.getTagsForStencil(d,"elemental server","aws amazon web service media services").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+d+".media_services;",c,c,"","Media Services", +null,null,this.getTagsForStencil(d,"media services","aws amazon web service media services").join(" "))])};Sidebar.prototype.addAWS4MigrationTransferPalette=function(a,b,e,c,d,f){b="outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#116D5B;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";e="outlineConnect=0;fontColor=#232F3E;gradientColor=#4AB29A;gradientDirection=north;fillColor=#116D5B;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+ +mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4Migration Transfer","AWS / Migration & Transfer",!1,[this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".application_discovery_service;",c,c,"","Application Discovery Service",null,null,this.getTagsForStencil(d,"application discovery service","aws amazon web service migration transfer").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".database_migration_service;",c,c,"","Database Migration Service", +null,null,this.getTagsForStencil(d,"db database migration service","aws amazon web service migration transfer").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".datasync;",c,c,"","DataSync",null,null,this.getTagsForStencil(d,"datasync","aws amazon web service migration transfer").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".migration_hub;",c,c,"","Migration Hub",null,null,this.getTagsForStencil(d,"migration hub","aws amazon web service migration transfer").join(" ")), +this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".server_migration_service;",c,c,"","Server Migration Service",null,null,this.getTagsForStencil(d,"server migration service","aws amazon web service migration transfer").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".snowball;",c,c,"","Snowball",null,null,this.getTagsForStencil(d,"snowball","aws amazon web service migration transfer").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".snowball_edge;", +c,c,"","Snowball Edge",null,null,this.getTagsForStencil(d,"snowball edge","aws amazon web service migration transfer").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".snowmobile;",c,c,"","Snowmobile",null,null,this.getTagsForStencil(d,"snowmobile","aws amazon web service migration transfer").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".transfer_for_sftp;",c,c,"","Transfer for SFTP",null,null,this.getTagsForStencil(d,"transfer for sftp","aws amazon web service migration transfer").join(" ")), +this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".migration_and_transfer;",c,c,"","Migration and Transfer",null,null,this.getTagsForStencil(d,"migration and transfer","aws amazon web service migration transfer").join(" ")),this.createVertexTemplateEntry(b+"agent2;",78*a,78*a,"","Agent",null,null,this.getTagsForStencil(d,"agent","aws amazon web service migration transfer").join(" "))])};Sidebar.prototype.addAWS4MobilePalette=function(a,b,e,c,d,f){b="outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#C7131F;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+ +mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";e="outlineConnect=0;fontColor=#232F3E;gradientColor=#F54749;gradientDirection=north;fillColor=#C7131F;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4Mobile","AWS / Mobile",!1,[this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".api_gateway;",c,c,"","API Gateway",null,null,this.getTagsForStencil(d, +"api application programming interface gateway","aws amazon web service mobile").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".pinpoint;",c,c,"","Pinpoint",null,null,this.getTagsForStencil(d,"pinpoint","aws amazon web service mobile").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".amplify;",c,c,"","Amplify",null,null,this.getTagsForStencil(d,"amplify","aws amazon web service mobile").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+ +d+".appsync;",c,c,"","AppSync",null,null,this.getTagsForStencil(d,"appsync","aws amazon web service mobile").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".device_farm;",c,c,"","Device Farm",null,null,this.getTagsForStencil(d,"device farm","aws amazon web service mobile").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".mobile;",c,c,"","Mobile",null,null,this.getTagsForStencil(d,"mobile","aws amazon web service mobile").join(" ")),this.createVertexTemplateEntry(b+ +"endpoint;",78*a,78*a,"","Endpoint",null,null,this.getTagsForStencil(d,"endpoint","aws amazon web service mobile").join(" "))])};Sidebar.prototype.addAWS4NetworkContentDeliveryPalette=function(a,b,e,c,d,f){b="outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#5A30B5;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";e="outlineConnect=0;fontColor=#232F3E;gradientColor=#945DF2;gradientDirection=north;fillColor=#5A30B5;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+ +mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4Network Content Delivery","AWS / Network & Content Delivery",!1,[this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".api_gateway;",c,c,"","API Gateway",null,null,this.getTagsForStencil(d,"api application programming interface gateway","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".cloudfront;",c,c,"","CloudFront",null,null,this.getTagsForStencil(d, +"cloudfront","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".route_53;",c,c,"","Route 53",null,null,this.getTagsForStencil(d,"route 53","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".vpc_privatelink;",c,c,"","VPC PrivateLink",null,null,this.getTagsForStencil(d,"vpc privatelink virtual private cloud","aws amazon web service netowrk content delivery").join(" ")), +this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".vpc;",c,c,"","VPC",null,null,this.getTagsForStencil(d,"vpc virtual private cloud","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".app_mesh;",c,c,"","App Mesh",null,null,this.getTagsForStencil(d,"app application mesh","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".client_vpn;",c,c,"","Client VPN", +null,null,this.getTagsForStencil(d,"client vpn virtual private network","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".site_to_site_vpn;",c,c,"","Site-to-Site VPN",null,null,this.getTagsForStencil(d,"site to site s2s vpn virtual private network","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".elastic_load_balancing;",c,c,"","Elastic Load Balancing", +null,null,this.getTagsForStencil(d,"elastic load balancing","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".cloud_map;",c,c,"","Cloud Map",null,null,this.getTagsForStencil(d,"cloud map","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".direct_connect;",c,c,"","Direct Connect",null,null,this.getTagsForStencil(d,"direct connect","aws amazon web service netowrk content delivery").join(" ")), +this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".global_accelerator;",c,c,"","Global Accelerator",null,null,this.getTagsForStencil(d,"global accelerator","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".transit_gateway;",c,c,"","Transit Gateway",null,null,this.getTagsForStencil(d,"transit gateway","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+ +d+".networking_and_content_delivery;",c,c,"","Networking and Content Delivery",null,null,this.getTagsForStencil(d,"networking and content delivery","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(b+"endpoint;",78*a,78*a,"","Endpoint",null,null,this.getTagsForStencil(d,"endpoint","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(b+"download_distribution;",78*a,78*a,"","Download Distribution",null,null,this.getTagsForStencil(d, +"download distribution","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(b+"edge_location;",78*a,78*a,"","Edge Location",null,null,this.getTagsForStencil(d,"edge location","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(b+"streaming_distribution;",78*a,78*a,"","Streaming Distribution",null,null,this.getTagsForStencil(d,"streaming distribution","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(b+ +"hosted_zone;",78*a,77*a,"","Hosted Zone",null,null,this.getTagsForStencil(d,"hosted zone","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(b+"route_table;",78*a,76*a,"","Route Table",null,null,this.getTagsForStencil(d,"route table","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(b+"customer_gateway;",78*a,78*a,"","Router",null,null,this.getTagsForStencil(d,"vpc virtual private cloud customer gateway","aws amazon web service netowrk content delivery").join(" ")), +this.createVertexTemplateEntry(b+"elastic_network_adapter;",78*a,78*a,"","Elastic Network Adapter",null,null,this.getTagsForStencil(d,"vpc virtual private cloud elastic network adapter","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(b+"elastic_network_interface;",78*a,78*a,"","Elastic Network Interface",null,null,this.getTagsForStencil(d,"vpc virtual private cloud elastic network interface","aws amazon web service netowrk content delivery").join(" ")), +this.createVertexTemplateEntry(b+"endpoints;",78*a,78*a,"","Endpoints",null,null,this.getTagsForStencil(d,"vpc virtual private cloud endpoints","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(b+"flow_logs;",78*a,78*a,"","Flow Logs",null,null,this.getTagsForStencil(d,"vpc virtual private cloud flow logs","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(b+"internet_gateway;",78*a,78*a,"","Internet Gateway",null, +null,this.getTagsForStencil(d,"vpc virtual private cloud internet gateway","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(b+"nat_gateway;",78*a,78*a,"","NAT Gateway",null,null,this.getTagsForStencil(d,"vpc virtual private cloud nat gateway","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(b+"network_access_control_list;",78*a,78*a,"","Network Access Control List",null,null,this.getTagsForStencil(d,"vpc virtual private cloud network access control list", +"aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(b+"peering;",78*a,78*a,"","Peering",null,null,this.getTagsForStencil(d,"vpc virtual private cloud network peering","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(b+"application_load_balancer;",78*a,78*a,"","Application Load Balancer",null,null,this.getTagsForStencil(d,"application load balancer","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(b+ +"classic_load_balancer;",78*a,78*a,"","Classic Load Balancer",null,null,this.getTagsForStencil(d,"classic load balancer","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(b+"network_load_balancer;",78*a,78*a,"","Network Load Balancer",null,null,this.getTagsForStencil(d,"network load balancer","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(b+"router;",78*a,78*a,"","Customer Gateway",null,null,this.getTagsForStencil(d, +"vpc virtual private cloud network router","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(b+"vpn_connection;",70*a,78*a,"","VPN Connection",null,null,this.getTagsForStencil(d,"vpc virtual private cloud vpn network connection","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(b+"vpn_gateway;",78*a,78*a,"","VPN Gateway",null,null,this.getTagsForStencil(d,"vpc virtual private cloud vpn network gateway","aws amazon web service netowrk content delivery").join(" ")), +this.createVertexTemplateEntry(b+"vpc_traffic_mirroring;",78*a,78*a,"","VPC Traffic Mirroring",null,null,this.getTagsForStencil(d,"vpc virtual private cloud traffic mirroring","aws amazon web service netowrk content delivery").join(" "))])};Sidebar.prototype.addAWS4RoboticsPalette=function(a,b,e,c,d,f){b="outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#BE0917;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;"+ +mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";e="outlineConnect=0;fontColor=#232F3E;gradientColor=#FE5151;gradientDirection=north;fillColor=#BE0917;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4Robotics","AWS / Robotics",!1,[this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".robotics;",c,c,"","Robotics",null,null,this.getTagsForStencil(d, +"robotics","aws amazon web service robotics").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".robomaker;",c,c,"","RoboMaker",null,null,this.getTagsForStencil(d,"robomaker","aws amazon web service robotics").join(" ")),this.createVertexTemplateEntry(b+"simulation;",78*a,64*a,"","Simulation",null,null,this.getTagsForStencil(d,"simulation","aws amazon web service robotics").join(" ")),this.createVertexTemplateEntry(b+"fleet_management;",78*a,78*a,"","Fleet Management",null,null, +this.getTagsForStencil(d,"fleet management","aws amazon web service robotics").join(" ")),this.createVertexTemplateEntry(b+"development_environment;",78*a,71*a,"","Development Environment",null,null,this.getTagsForStencil(d,"development environment","aws amazon web service robotics").join(" ")),this.createVertexTemplateEntry(b+"cloud_extension_ros;",78*a,78*a,"","Cloud Extensions ROS",null,null,this.getTagsForStencil(d,"cloud extension ros","aws amazon web service robotics").join(" "))])};Sidebar.prototype.addAWS4SatellitePalette= +function(a,b,e,c,d,f){a="outlineConnect=0;fontColor=#232F3E;gradientColor=#517DFD;gradientDirection=north;fillColor=#2F29AF;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4Satellite","AWS / Satellite",!1,[this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+d+".satellite;",c,c,"","Satellite",null,null,this.getTagsForStencil(d,"satellite", +"aws amazon web satellite").join(" ")),this.createVertexTemplateEntry(a+"resourceIcon;resIcon="+d+".ground_station;",c,c,"","Ground Station",null,null,this.getTagsForStencil(d,"ground station","aws amazon web satellite").join(" "))])};Sidebar.prototype.addAWS4SecurityIdentityCompliancePalette=function(a,b,e,c,d,f){b="outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#C7131F;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;"+ +mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";e="outlineConnect=0;fontColor=#232F3E;gradientColor=#F54749;gradientDirection=north;fillColor=#C7131F;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4Security Identity Compliance","AWS / Security, Identity & Compliance",!1,[this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".cloud_directory;", +c,c,"","Cloud Directory",null,null,this.getTagsForStencil(d,"cloud directory","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".cognito;",c,c,"","Cognito",null,null,this.getTagsForStencil(d,"cognito","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".guardduty;",c,c,"","GuardDuty",null,null,this.getTagsForStencil(d,"guardduty guard duty","aws amazon web service security identity compliance").join(" ")), +this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".inspector;",c,c,"","Inspector",null,null,this.getTagsForStencil(d,"inspector","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".macie;",c,c,"","Macie",null,null,this.getTagsForStencil(d,"macie","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".artifact;",c,c,"","Artifact",null,null,this.getTagsForStencil(d, +"artifact","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".certificate_manager_3;",c,c,"","Certificate Manager",null,null,this.getTagsForStencil(d,"certificate manager","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".cloudhsm;",c,c,"","CloudHSM",null,null,this.getTagsForStencil(d,"cloudhsm cloud hsm","aws amazon web service security identity compliance").join(" ")), +this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".directory_service;",c,c,"","Directory Service",null,null,this.getTagsForStencil(d,"directory service","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".firewall_manager;",c,c,"","Firewall Manager",null,null,this.getTagsForStencil(d,"firewall manager","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+ +d+".identity_and_access_management;",c,c,"","Identity and Access Management",null,null,this.getTagsForStencil(d,"identity and access management","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".key_management_service;",c,c,"","Key Management Service",null,null,this.getTagsForStencil(d,"key management service","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+ +d+".resource_access_manager;",c,c,"","Resource Access Manager",null,null,this.getTagsForStencil(d,"resource access manager","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".organizations;",c,c,"","Organizations",null,null,this.getTagsForStencil(d,"organizations","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".secrets_manager;",c,c,"","Secrets Manager", +null,null,this.getTagsForStencil(d,"secrets manager","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".security_hub;",c,c,"","Security Hub",null,null,this.getTagsForStencil(d,"security hub","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".shield;",c,c,"","Shield",null,null,this.getTagsForStencil(d,"shield","aws amazon web service security identity compliance").join(" ")), +this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".single_sign_on;",c,c,"","Single Sign-On",null,null,this.getTagsForStencil(d,"single sign on","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".waf;",c,c,"","WAF",null,null,this.getTagsForStencil(d,"waf","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".security_identity_and_compliance;", +c,c,"","Security Identity and Compliance",null,null,this.getTagsForStencil(d,"security identity and compliance","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(b+"ad_connector;",78*a,73*a,"","AD Connector",null,null,this.getTagsForStencil(d,"ad connector","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(b+"agent;",78*a,74*a,"","Inspector Agent",null,null,this.getTagsForStencil(d,"inspector agent","aws amazon web service security identity compliance").join(" ")), +this.createVertexTemplateEntry(b+"certificate_manager_2;",78*a,72*a,"","Certificate Manager",null,null,this.getTagsForStencil(d,"certificate manager","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(b+"addon;",78*a,40*a,"","Add-on",null,null,this.getTagsForStencil(d,"identity and access management iam addon add on","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(b+"sts;",78*a,50*a,"","STS",null,null,this.getTagsForStencil(d, +"identity and access management iam sts","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(b+"sts_alternate;",62*a,78*a,"","STS",null,null,this.getTagsForStencil(d,"identity and access management iam sts","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(b+"data_encryption_key;",62*a,78*a,"","Data Encryption Key",null,null,this.getTagsForStencil(d,"identity and access management iam data encryption key", +"aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(b+"encrypted_data;",62*a,78*a,"","Encrypted Data",null,null,this.getTagsForStencil(d,"identity and access management iam encrypted data","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(b+"long_term_security_credential;",78*a,69*a,"","Long Term Security Credential",null,null,this.getTagsForStencil(d,"identity and access management iam long term security credential", +"aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(b+"mfa_token;",78*a,78*a,"","MFA Token",null,null,this.getTagsForStencil(d,"identity and access management iam mfa token","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(b+"permissions;",62*a,78*a,"","Permissions",null,null,this.getTagsForStencil(d,"identity and access management iam permissions","aws amazon web service security identity compliance").join(" ")), +this.createVertexTemplateEntry(b+"role;",78*a,44*a,"","Role",null,null,this.getTagsForStencil(d,"identity and access management iam role","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(b+"temporary_security_credential;",77*a,78*a,"","Temporary Security Credential",null,null,this.getTagsForStencil(d,"identity and access management iam temporary security credential","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(b+ +"managed_ms_ad;",78*a,77*a,"","Managed MS AD",null,null,this.getTagsForStencil(d,"managed ms ad","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(b+"organizations_account;",74*a,78*a,"","Organizations Account",null,null,this.getTagsForStencil(d,"organizations account","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(b+"organizations_organizational_unit;",78*a,67*a,"","Organizations Organizational Unit", +null,null,this.getTagsForStencil(d,"organizations organizational unit","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(b+"shield_shield_advanced;",70*a,78*a,"","Shield Advanced",null,null,this.getTagsForStencil(d,"shield advanced","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(b+"filtering_rule;",78*a,78*a,"","Filtering Rule",null,null,this.getTagsForStencil(d,"filtering rule","aws amazon web service security identity compliance").join(" ")), +this.createVertexTemplateEntry(b+"simple_ad;",78*a,77*a,"","Simple AD",null,null,this.getTagsForStencil(d,"simple ad","aws amazon web service security identity compliance").join(" "))])};Sidebar.prototype.addAWS4StoragePalette=function(a,b,e,c,d,f){b="outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#277116;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4."; +e="outlineConnect=0;fontColor=#232F3E;gradientColor=#60A337;gradientDirection=north;fillColor=#277116;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addPaletteFunctions("aws4Storage","AWS / Storage",!1,[this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".elastic_block_store;",c,c,"","Elastic Block Store",null,null,this.getTagsForStencil(d,"elastic block store", +"aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".elastic_file_system;",c,c,"","Elastic File System",null,null,this.getTagsForStencil(d,"elastic file system","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".fsx;",c,c,"","FSx",null,null,this.getTagsForStencil(d,"fsx","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".fsx_for_lustre;", +c,c,"","FSx for Lustre",null,null,this.getTagsForStencil(d,"fsx for lustre","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".fsx_for_windows_file_server;",c,c,"","FSx for Windows File Server",null,null,this.getTagsForStencil(d,"fsx for windows file server","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".glacier;",c,c,"","S3 Glacier",null,null,this.getTagsForStencil(d,"s3 simple storage service glacier", +"aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".s3;",c,c,"","Simple Storage Service",null,null,this.getTagsForStencil(d,"s3 simple storage service","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".backup;",c,c,"","Backup",null,null,this.getTagsForStencil(d,"backup","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".snowball;",c,c, +"","Snowball",null,null,this.getTagsForStencil(d,"snowball","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".snowball_edge;",c,c,"","Snowball Edge",null,null,this.getTagsForStencil(d,"snowball edge","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".snowmobile;",c,c,"","Snowmobile",null,null,this.getTagsForStencil(d,"snowmobile","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(e+ +"resourceIcon;resIcon="+d+".storage_gateway;",c,c,"","Storage Gateway",null,null,this.getTagsForStencil(d,"storage gateway","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".efs_infrequentaccess;",c,c,"","EFS InfrequentAccess",null,null,this.getTagsForStencil(d,"efs infrequent access","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".efs_standard;",c,c,"","EFS Standard",null,null,this.getTagsForStencil(d, +"efs standard","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(e+"resourceIcon;resIcon="+d+".storage;",c,c,"","Storage",null,null,this.getTagsForStencil(d,"storage","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(b+"snapshot;",56*a,78*a,"","Snapshot",null,null,this.getTagsForStencil(d,"snapshot","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(b+"volume;",62*a,78*a,"","Volume",null,null,this.getTagsForStencil(d,"volume", +"aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(b+"file_system;",78*a,73*a,"","File System",null,null,this.getTagsForStencil(d,"file system","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(b+"archive;",63*a,78*a,"","Vault",null,null,this.getTagsForStencil(d,"s3 simple storage service glacier archive","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(b+"vault;",62*a,78*a,"","Archive",null,null,this.getTagsForStencil(d, +"s3 simple storage service glacier vault","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(b+"bucket;",75*a,78*a,"","Bucket",null,null,this.getTagsForStencil(d,"s3 simple storage service bucket","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(b+"bucket_with_objects;",75*a,78*a,"","Bucket with Objects",null,null,this.getTagsForStencil(d,"s3 simple storage service bucket with objects","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(b+ +"object;",78*a,78*a,"","Object",null,null,this.getTagsForStencil(d,"s3 simple storage service object","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(b+"import_export;",78*a,61*a,"","Snowball Import Export",null,null,this.getTagsForStencil(d,"snowball import export","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(b+"cached_volume;",62*a,78*a,"","Cached Volume",null,null,this.getTagsForStencil(d,"storage gateway cached volume","aws amazon web service storage").join(" ")), +this.createVertexTemplateEntry(b+"non_cached_volume;",62*a,78*a,"","Non-Cached Volume",null,null,this.getTagsForStencil(d,"storage gateway non cached volume","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(b+"virtual_tape_library;",62*a,78*a,"","Virtual Tape Library",null,null,this.getTagsForStencil(d,"storage gateway virtual tape library vtl","aws amazon web service storage").join(" "))])}})();(function(){Sidebar.prototype.addAWS4bPalette=function(){var a="outlineConnect=0;fontColor=#232F3E;gradientColor=none;strokeColor=#ffffff;fillColor=#232F3E;dashed=0;verticalLabelPosition=middle;verticalAlign=bottom;align=center;html=1;whiteSpace=wrap;fontSize=10;fontStyle=1;spacing=3;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.",b="outlineConnect=0;fontColor=#232F3E;gradientColor=none;strokeColor=#232F3E;fillColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+ +mxConstants.STYLE_SHAPE+"=mxgraph.aws4.",e="outlineConnect=0;gradientColor=none;fontColor=#545B64;strokeColor=none;fillColor=#879196;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.",c="outlineConnect=0;gradientColor=none;html=1;whiteSpace=wrap;fontSize=12;fontStyle=0;"+mxConstants.STYLE_SHAPE+"=mxgraph.aws4.";this.addAWS4bArrowsPalette("mxgraph.aws4",this);this.addAWS4bGeneralResourcesPalette(80, +100,60,a,b,"mxgraph.aws4",this);this.addAWS4bIllustrationsPalette(e,"mxgraph.aws4",this);this.addAWS4bGroupsLightPalette(c,"mxgraph.aws4",this);this.addAWS4bGroupsDarkPalette(c,"mxgraph.aws4",this);this.addAWS4bAnalyticsPalette(80,100,60,a,b,"mxgraph.aws4",this);this.addAWS4bApplicationIntegrationPalette(80,100,60,a,b,"mxgraph.aws4",this);this.addAWS4bARVRPalette(80,100,60,a,b,"mxgraph.aws4",this);this.addAWS4bCostManagementPalette(80,100,60,a,b,"mxgraph.aws4",this);this.addAWS4bBusinessProductivityPalette(80, +100,60,a,b,"mxgraph.aws4",this);this.addAWS4bComputePalette(80,100,60,a,b,"mxgraph.aws4",this);this.addAWS4bCustomerEngagementPalette(80,100,60,a,b,"mxgraph.aws4",this);this.addAWS4bDatabasePalette(80,100,60,a,b,"mxgraph.aws4",this);this.addAWS4bDesktopAppStreamingPalette(80,100,60,a,b,"mxgraph.aws4",this);this.addAWS4bDeveloperToolsPalette(80,100,60,a,b,"mxgraph.aws4",this);this.addAWS4bGameDevelopmentPalette(80,100,60,a,b,"mxgraph.aws4",this);this.addAWS4bInternetOfThingsPalette(80,100,60,a,b,"mxgraph.aws4", +this);this.addAWS4bIOTThingsPalette(80,100,60,a,b,"mxgraph.aws4",this);this.addAWS4bIOTResourcesPalette(80,100,60,a,b,"mxgraph.aws4",this);this.addAWS4bMachineLearningPalette(80,100,60,a,b,"mxgraph.aws4",this);this.addAWS4bManagementToolsPalette(80,100,60,a,b,"mxgraph.aws4",this);this.addAWS4bMediaServicesPalette(80,100,60,a,b,"mxgraph.aws4",this);this.addAWS4bMigrationPalette(80,100,60,a,b,"mxgraph.aws4",this);this.addAWS4bMobileServicesPalette(80,100,60,a,b,"mxgraph.aws4",this);this.addAWS4bNetworkContentDeliveryPalette(80, +100,60,a,b,"mxgraph.aws4",this);this.addAWS4bSecurityIdentityCompliancePalette(80,100,60,a,b,"mxgraph.aws4",this);this.addAWS4bStoragePalette(80,100,60,a,b,"mxgraph.aws4",this)};Sidebar.prototype.addAWS4bArrowsPalette=function(a,b){this.addPaletteFunctions("aws4bArrows","AWS18 / Arrows",!1,[this.createEdgeTemplateEntry("edgeStyle=orthogonalEdgeStyle;html=1;endArrow=none;elbow=vertical;startArrow=block;startFill=1;strokeColor=#545B64;rounded=0;",100,0,"","Default (left)",null,this.getTagsForStencil(a, "","aws amazon web service arrowsdefault left").join(" ")),this.createEdgeTemplateEntry("edgeStyle=orthogonalEdgeStyle;html=1;endArrow=block;elbow=vertical;startArrow=none;endFill=1;strokeColor=#545B64;rounded=0;",100,0,"","Default (left)",null,this.getTagsForStencil(a,"","aws amazon web service arrowsdefault left").join(" ")),this.createEdgeTemplateEntry("edgeStyle=orthogonalEdgeStyle;html=1;endArrow=block;elbow=vertical;startArrow=block;startFill=1;endFill=1;strokeColor=#545B64;rounded=0;",100, 0,"","Default (double)",null,this.getTagsForStencil(a,"","aws amazon web service arrowsdefault double").join(" ")),this.createEdgeTemplateEntry("edgeStyle=orthogonalEdgeStyle;html=1;endArrow=none;elbow=vertical;startArrow=openThin;startFill=0;strokeColor=#545B64;rounded=0;",100,0,"","Open (thin, left)",null,this.getTagsForStencil(a,"","aws amazon web service arrowsopen thin left").join(" ")),this.createEdgeTemplateEntry("edgeStyle=orthogonalEdgeStyle;html=1;endArrow=openThin;elbow=vertical;startArrow=none;endFill=0;strokeColor=#545B64;rounded=0;", 100,0,"","Open (thin, left)",null,this.getTagsForStencil(a,"","aws amazon web service arrowsopen thin left").join(" ")),this.createEdgeTemplateEntry("edgeStyle=orthogonalEdgeStyle;html=1;endArrow=openThin;elbow=vertical;startArrow=openThin;startFill=0;endFill=0;strokeColor=#545B64;rounded=0;",100,0,"","Open (thin, double)",null,this.getTagsForStencil(a,"","aws amazon web service arrowsopen thin double").join(" ")),this.createEdgeTemplateEntry("edgeStyle=orthogonalEdgeStyle;html=1;endArrow=none;elbow=vertical;startArrow=open;startFill=0;strokeColor=#545B64;rounded=0;", 100,0,"","Open (left)",null,this.getTagsForStencil(a,"","aws amazon web service arrowsopen left").join(" ")),this.createEdgeTemplateEntry("edgeStyle=orthogonalEdgeStyle;html=1;endArrow=open;elbow=vertical;startArrow=none;endFill=0;strokeColor=#545B64;rounded=0;",100,0,"","Open (left)",null,this.getTagsForStencil(a,"","aws amazon web service arrowsopen left").join(" ")),this.createEdgeTemplateEntry("edgeStyle=orthogonalEdgeStyle;html=1;endArrow=open;elbow=vertical;startArrow=open;startFill=0;endFill=0;strokeColor=#545B64;rounded=0;", -100,0,"","Open (double)",null,this.getTagsForStencil(a,"","aws amazon web service arrowsopen double").join(" "))])};Sidebar.prototype.addAWS4bGeneralResourcesPalette=function(a,d,e,b,c,f,g){this.addPaletteFunctions("aws4bGeneral Resources","AWS18 / General Resources",!1,[this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".aws_cloud;",e,e,"AWS Cloud",null,null,null,this.getTagsForStencil(f,"cloud","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+ -f+".client;",e,e,"Client",null,null,null,this.getTagsForStencil(f,"client","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".corporate_data_center;",e,e,"Corporate\ndata center",null,null,null,this.getTagsForStencil(f,"corporate data center","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".disk;",e,e,"Disk",null,null,null,this.getTagsForStencil(f,"disk","aws amazon web service general resources").join(" ")), -this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".forums;",e,e,"Forums",null,null,null,this.getTagsForStencil(f,"forums","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".generic_database;",e,e,"Generic\ndatabase",null,null,null,this.getTagsForStencil(f,"generic databas","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".internet;",e,e,"Internet",null,null, -null,this.getTagsForStencil(f,"internet","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".internet_alt1;",e,e,"Internet alt1",null,null,null,this.getTagsForStencil(f,"internet alternative","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".internet_alt2;",e,e,"Internet alt2",null,null,null,this.getTagsForStencil(f,"internet alternative","aws amazon web service general resources").join(" ")), -this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".mobile_client;",e,e,"Mobile client",null,null,null,this.getTagsForStencil(f,"mobile client","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".multimedia;",e,e,"Multimedia",null,null,null,this.getTagsForStencil(f,"multimedia","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".office_building;",e,e,"Office building", -null,null,null,this.getTagsForStencil(f,"office building","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".saml_token;",e,e,"SAML token",null,null,null,this.getTagsForStencil(f,"saml token","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".ssl_padlock;",e,e,"SSL padlock",null,null,null,this.getTagsForStencil(f,"ssl padlock","aws amazon web service general resources").join(" ")), -this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".tape_storage;",e,e,"Tape storage",null,null,null,this.getTagsForStencil(f,"tape storage","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".traditional_server;",e,e,"Traditional\nserver",null,null,null,this.getTagsForStencil(f,"traditional server","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".user;",e,e, -"User",null,null,null,this.getTagsForStencil(f,"user","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".users;",e,e,"Users",null,null,null,this.getTagsForStencil(f,"users","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".virtual_private_cloud;",e,e,"Virtual private\ncloud",null,null,null,this.getTagsForStencil(f,"virtual private cloud vpc","aws amazon web service general resources").join(" "))])}; -Sidebar.prototype.addAWS4bIllustrationsPalette=function(a,d,e){this.addPaletteFunctions("aws4bIllustrations","AWS18 / Illustrations",!1,[this.createVertexTemplateEntry(a+"illustration_users;pointerEvents=1",100,100,"users",null,null,null,this.getTagsForStencil(d,"users","aws amazon web service illustrations").join(" ")),this.createVertexTemplateEntry(a+"illustration_notification;pointerEvents=1",100,81,"notification",null,null,null,this.getTagsForStencil(d,"users","aws amazon web service illustrations").join(" ")), -this.createVertexTemplateEntry(a+"illustration_devices;pointerEvents=1",100,73,"devices",null,null,null,this.getTagsForStencil(d,"devices","aws amazon web service illustrations").join(" ")),this.createVertexTemplateEntry(a+"illustration_desktop;pointerEvents=1",100,91,"desktop",null,null,null,this.getTagsForStencil(d,"desktop","aws amazon web service illustrations").join(" ")),this.createVertexTemplateEntry(a+"illustration_office_building;pointerEvents=1",100,71,"office building",null,null,null,this.getTagsForStencil(d, -"office building","aws amazon web service illustrations").join(" "))])};Sidebar.prototype.addAWS4bGroupsLightPalette=function(a,d,e){this.addPaletteFunctions("aws4bGroups Light","AWS18 / Groups (light)",!1,[this.createVertexTemplateEntry(a+"group;grIcon="+d+".group_aws_cloud;strokeColor=#AAB7B8;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#AAB7B8;dashed=0;",130,130,"AWS Cloud","AWS Cloud",null,null,this.getTagsForStencil(d,"cloud","aws amazon web service groups group light").join(" ")), -this.createVertexTemplateEntry(a+"group;grIcon="+d+".group_region;strokeColor=#879196;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#879196;dashed=1;",130,130,"Region","Region",null,null,this.getTagsForStencil(d,"region","aws amazon web service groups group light").join(" ")),this.createVertexTemplateEntry(a+"group;grIcon="+d+".group_vpc;strokeColor=#879196;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#879196;dashed=0;",130,130,"VPC","VPC",null,null, -this.getTagsForStencil(d,"vpc virtual private cloud","aws amazon web service groups group light").join(" ")),this.createVertexTemplateEntry(a+"group;grIcon="+d+".group_availability_zone;strokeColor=#545B64;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#545B64;dashed=1;",130,130,"Availability zone","Availability zone",null,null,this.getTagsForStencil(d,"availability zone","aws amazon web service groups group light").join(" ")),this.createVertexTemplateEntry(a+"group;grIcon="+ -d+".group_subnet;strokeColor=#879196;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#879196;dashed=0;",130,130,"Subnet","Subnet",null,null,this.getTagsForStencil(d,"subnet","aws amazon web service groups group light").join(" ")),this.createVertexTemplateEntry(a+"group;grIcon="+d+".group_on_premise;strokeColor=#AAB7B8;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#AAB7B8;dashed=0;",130,130,"On-Premise","On-Premise",null,null,this.getTagsForStencil(d,"on premise", -"aws amazon web service groups group light").join(" ")),this.createVertexTemplateEntry(a+"groupCenter;grIcon="+d+".group_auto_scaling_group;grStroke=0;strokeColor=#879196;fillColor=#ECEFEF;verticalAlign=top;align=center;fontColor=#879196;dashed=0;spacingTop=25;",130,130,"Auto Scaling Group","Auto Scaling Group",null,null,this.getTagsForStencil(d,"auto scaling","aws amazon web service groups group light").join(" ")),this.createVertexTemplateEntry(a+"groupCenter;grIcon="+d+".group_elastic_load_balancing;grStroke=1;strokeColor=#007DBC;fillColor=none;verticalAlign=top;align=center;fontColor=#007DBC;dashed=0;spacingTop=25;", -130,130,"Elastic Load Balancing","Elastic Load Balancing",null,null,this.getTagsForStencil(d,"elastic load balancing","aws amazon web service groups group light").join(" ")),this.createVertexTemplateEntry("outlineConnect=0;gradientColor=none;html=1;whiteSpace=wrap;fontSize=12;fontStyle=0;strokeColor=#879196;fillColor=none;verticalAlign=top;align=center;fontColor=#879196;dashed=1;spacingTop=3;",130,130,"Generic Group","Generic Group",null,null,this.getTagsForStencil(d,"generic","aws amazon web service groups group light").join(" ")), -this.createVertexTemplateEntry("outlineConnect=0;gradientColor=none;html=1;whiteSpace=wrap;fontSize=12;fontStyle=0;strokeColor=#FF9900;fillColor=none;verticalAlign=top;align=center;fontColor=#FF9900;dashed=0;spacingTop=3;",130,130,"Highlight","Highlight",null,null,this.getTagsForStencil(d,"highlight","aws amazon web service groups group light").join(" ")),this.createVertexTemplateEntry(a+"group;grIcon="+d+".group_aws_step_functions_workflow;strokeColor=#545B64;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#545B64;dashed=0;", -130,130,"AWS Step Functions workflow","AWS Step Functions workflow",null,null,this.getTagsForStencil(d,"step functions workflow","aws amazon web service groups group light").join(" ")),this.createVertexTemplateEntry(a+"group;grIcon="+d+".group_spot_fleet;strokeColor=#232F3E;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#232F3E;dashed=0;",130,130,"Spot Fleet","Spot Fleet",null,null,this.getTagsForStencil(d,"spot fleet","aws amazon web service groups group light").join(" "))])}; -Sidebar.prototype.addAWS4bGroupsDarkPalette=function(a,d,e){this.addPaletteFunctions("aws4bGroups Dark","AWS18 / Groups (dark)",!1,[this.createVertexTemplateEntry(a+"group;grIcon="+d+".group_aws_cloud;strokeColor=#858B94;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#858B94;dashed=0;",130,130,"AWS Cloud","AWS Cloud",null,null,this.getTagsForStencil(d,"cloud","aws amazon web service groups group dark").join(" ")),this.createVertexTemplateEntry(a+"group;grIcon="+d+".group_region;strokeColor=#B6BABF;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#B6BABF;dashed=1;", -130,130,"Region","Region",null,null,this.getTagsForStencil(d,"region","aws amazon web service groups group dark").join(" ")),this.createVertexTemplateEntry(a+"group;grIcon="+d+".group_vpc;strokeColor=#B6BABF;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#B6BABF;dashed=0;",130,130,"VPC","VPC",null,null,this.getTagsForStencil(d,"vpc virtual private cloud","aws amazon web service groups group dark").join(" ")),this.createVertexTemplateEntry(a+"group;grIcon="+d+".group_availability_zone;strokeColor=#E8E8E8;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#E8E8E8;dashed=1;", -130,130,"Availability zone","Availability zone",null,null,this.getTagsForStencil(d,"availability zone","aws amazon web service groups group dark").join(" ")),this.createVertexTemplateEntry(a+"group;grIcon="+d+".group_subnet;strokeColor=#E8E8E8;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#E8E8E8;dashed=0;",130,130,"Subnet","Subnet",null,null,this.getTagsForStencil(d,"subnet","aws amazon web service groups group dark").join(" ")),this.createVertexTemplateEntry(a+"group;grIcon="+ -d+".group_on_premise;strokeColor=#858B94;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#858B94;dashed=0;",130,130,"On-Premise","On-Premise",null,null,this.getTagsForStencil(d,"on premise","aws amazon web service groups group dark").join(" ")),this.createVertexTemplateEntry(a+"groupCenter;grIcon="+d+".group_auto_scaling_group;grStroke=0;strokeColor=#B6BABF;fillColor=#47515E;verticalAlign=top;align=center;fontColor=#B6BABF;dashed=0;spacingTop=25;",130,130,"Auto Scaling Group", -"Auto Scaling Group",null,null,this.getTagsForStencil(d,"auto scaling","aws amazon web service groups group dark").join(" ")),this.createVertexTemplateEntry(a+"groupCenter;grIcon="+d+".group_elastic_load_balancing;grStroke=1;strokeColor=#00A1C9;fillColor=none;verticalAlign=top;align=center;fontColor=#00A1C9;dashed=0;spacingTop=25;",130,130,"Elastic Load Balancing","Elastic Load Balancing",null,null,this.getTagsForStencil(d,"elastic load balancing","aws amazon web service groups group dark").join(" ")), -this.createVertexTemplateEntry("outlineConnect=0;gradientColor=none;html=1;whiteSpace=wrap;fontSize=12;fontStyle=0;strokeColor=#858B94;fillColor=none;verticalAlign=top;align=center;fontColor=#858B94;dashed=1;spacingTop=3;",130,130,"Generic Group","Generic Group",null,null,this.getTagsForStencil(d,"generic","aws amazon web service groups group dark").join(" ")),this.createVertexTemplateEntry("outlineConnect=0;gradientColor=none;html=1;whiteSpace=wrap;fontSize=12;fontStyle=0;strokeColor=#FF9900;fillColor=none;verticalAlign=top;align=center;fontColor=#FF9900;dashed=0;spacingTop=3;", -130,130,"Highlight","Highlight",null,null,this.getTagsForStencil(d,"highlight","aws amazon web service groups group dark").join(" ")),this.createVertexTemplateEntry(a+"group;grIcon="+d+".group_aws_step_functions_workflow;strokeColor=#E8E8E8;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#E8E8E8;dashed=0;",130,130,"AWS Step Functions workflow","AWS Step Functions workflow",null,null,this.getTagsForStencil(d,"step functions workflow","aws amazon web service groups group dark").join(" ")), -this.createVertexTemplateEntry(a+"group;grIcon="+d+".group_spot_fleet;strokeColor=#FFFFFF;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#FFFFFF;dashed=0;",130,130,"Spot Fleet","Spot Fleet",null,null,this.getTagsForStencil(d,"spot fleet","aws amazon web service groups group dark").join(" "))])};Sidebar.prototype.addAWS4bAnalyticsPalette=function(a,d,e,b,c,f,g){this.addPaletteFunctions("aws4bAnalytics","AWS18 / Analytics",!1,[this.createVertexTemplateEntry(b+"productIcon;prIcon="+ -f+".athena;",a,d+10,"Amazon Athena",null,null,null,this.getTagsForStencil(f,"athena","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".cloudsearch;",a,d+10,"Amazon CloudSearch",null,null,null,this.getTagsForStencil(f,"cloudsearch cloud search","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".emr;",a,d,"Amazon EMR",null,null,null,this.getTagsForStencil(f,"emr","aws amazon web service analytics").join(" ")), -this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".elasticsearch_service;",a,d+20,"Amazon Elasticsearch Service",null,null,null,this.getTagsForStencil(f,"elasticsearch elastic search service","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".kinesis;",a,d+10,"Amazon Kinesis",null,null,null,this.getTagsForStencil(f,"kinesis","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".kinesis_data_analytics;", -a,d+20,"Amazon Kinesis Data Analytics",null,null,null,this.getTagsForStencil(f,"kinesis data analytics","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".kinesis_data_firehose;",a,d+20,"Amazon Kinesis Data Firehose",null,null,null,this.getTagsForStencil(f,"kinesis data firehose","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".kinesis_data_streams;",a,d+20,"Amazon Kinesis Data Streams", -null,null,null,this.getTagsForStencil(f,"kinesis data streams","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".kinesis_video_streams;",a,d+20,"Amazon Kinesis Video Streams",null,null,null,this.getTagsForStencil(f,"kinesis video streams","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".redshift;",a,d+10,"Amazon Redshift",null,null,null,this.getTagsForStencil(f,"redshift","aws amazon web service analytics").join(" ")), -this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".quicksight;",a,d+10,"Amazon QuickSight",null,null,null,this.getTagsForStencil(f,"quicksight quick sight","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".data_pipeline;",a,d+10,"AWS Data Pipeline",null,null,null,this.getTagsForStencil(f,"data pipeline","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".glue;",a,d,"AWS Glue",null, -null,null,this.getTagsForStencil(f,"glue","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".search_documents;",e,e,"Search\ndocuments",null,null,null,this.getTagsForStencil(f,"search documents","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".cluster;",e,e,"Cluster",null,null,null,this.getTagsForStencil(f,"cluster","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(c+ -"resourceIcon;resIcon="+f+".hdfs_cluster;",e,e,"HDFS cluster",null,null,null,this.getTagsForStencil(f,"hdfs cluster","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".emr_engine;",e,e,"EMR engine",null,null,null,this.getTagsForStencil(f,"emr engine","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".emr_engine_mapr_m3;",e,e,"EMR engine\nMapR M3",null,null,null,this.getTagsForStencil(f, -"emr engine mapr m3","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".emr_engine_mapr_m5;",e,e,"EMR engine\nMapR M5",null,null,null,this.getTagsForStencil(f,"emr engine mapr m5","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".emr_engine_mapr_m7;",e,e,"EMR engine\nMapR M7",null,null,null,this.getTagsForStencil(f,"emr engine mapr m7","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(c+ -"resourceIcon;resIcon="+f+".dense_compute_node;",e,e,"Dense\ncompute Node",null,null,null,this.getTagsForStencil(f,"dense compute node","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".dense_storage_node;",e,e,"Dense\nstorage Node",null,null,null,this.getTagsForStencil(f,"dense storage node","aws amazon web service analytics").join(" "))])};Sidebar.prototype.addAWS4bApplicationIntegrationPalette=function(a,d,e,b,c,f,g){this.addPaletteFunctions("aws4bApplication Integration", -"AWS18 / Application Integration",!1,[this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".step_functions;",a,d+10,"AWS Step Functions",null,null,null,this.getTagsForStencil(f,"step functions","aws amazon web service application integration").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".mq;",a,d,"Amazon MQ",null,null,null,this.getTagsForStencil(f,"mq","aws amazon web service application integration").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+ -f+".sns;",a,d,"Amazon SNS",null,null,null,this.getTagsForStencil(f,"sns","aws amazon web service application integration").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".sqs;",a,d,"Amazon SQS",null,null,null,this.getTagsForStencil(f,"sqs","aws amazon web service application integration").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".appsync;",a,d,"AWS AppSync",null,null,null,this.getTagsForStencil(f,"appsync","aws amazon web service application integration").join(" ")), -this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".email_notification;",e,e,"Email\nnotification",null,null,null,this.getTagsForStencil(f,"email notification","aws amazon web service application integration").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".http_notification;",e,e,"HTTP\nnotification",null,null,null,this.getTagsForStencil(f,"http notification","aws amazon web service application integration").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+ -f+".topic;",e,e,"Topic",null,null,null,this.getTagsForStencil(f,"topic","aws amazon web service application integration").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".message;",e,e,"Message",null,null,null,this.getTagsForStencil(f,"message","aws amazon web service application integration").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".queue;",e,e,"Queue",null,null,null,this.getTagsForStencil(f,"queue","aws amazon web service application integration").join(" "))])}; -Sidebar.prototype.addAWS4bARVRPalette=function(a,d,e,b,c,f,g){this.addPaletteFunctions("aws4bAR VR","AWS18 / AR & VR",!1,[this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".sumerian;",a,d+10,"Amazon Sumerian",null,null,null,this.getTagsForStencil(f,"sumerian","aws amazon web service ar vr augmented virtual reality").join(" "))])};Sidebar.prototype.addAWS4bCostManagementPalette=function(a,d,e,b,c,f,g){this.addPaletteFunctions("aws4bCost Management","AWS18 / Cost Management",!1,[this.createVertexTemplateEntry(b+ -"productIcon;prIcon="+f+".cost_explorer;",a,d+10,"AWS Cost Explorer",null,null,null,this.getTagsForStencil(f,"cost explorer","aws amazon web service cost management").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".budgets;",a,d,"AWS Budgets",null,null,null,this.getTagsForStencil(f,"budgets","aws amazon web service cost management").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".cost_and_usage_report;",a,d+10,"AWS Cost and Usage Report",null,null,null, -this.getTagsForStencil(f,"cost usage report","aws amazon web service cost management").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".reserved_instance_reporting;",a,d+20,"Reserved Instance Reporting",null,null,null,this.getTagsForStencil(f,"reserved instance reporting","aws amazon web service cost management").join(" "))])};Sidebar.prototype.addAWS4bBusinessProductivityPalette=function(a,d,e,b,c,f,g){this.addPaletteFunctions("aws4bBusiness Productivity","AWS18 / Business Productivity", -!1,[this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".alexa_for_business;",a,d+10,"Alexa for Business",null,null,null,this.getTagsForStencil(f,"alexa for business","aws amazon web service business productivity").join(" "))])};Sidebar.prototype.addAWS4bComputePalette=function(a,d,e,b,c,f,g){this.addPaletteFunctions("aws4bCompute","AWS18 / Compute",!1,[this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".ec2;",a,d,"Amazon EC2",null,null,null,this.getTagsForStencil(f,"ec2","aws amazon web service compute").join(" ")), -this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".ecr;",a,d,"Amazon ECR",null,null,null,this.getTagsForStencil(f,"ecr","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".ecs;",a,d,"Amazon ECS",null,null,null,this.getTagsForStencil(f,"ecs","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".eks;",a,d,"Amazon EKS",null,null,null,this.getTagsForStencil(f,"eks","aws amazon web service compute").join(" ")), -this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".lightsail;",a,d+10,"Amazon Lightsail",null,null,null,this.getTagsForStencil(f,"lightsail","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".batch;",a,d,"AWS Batch",null,null,null,this.getTagsForStencil(f,"batch","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".elastic_beanstalk;",a,d+10,"AWS Elastic Beanstalk",null,null,null,this.getTagsForStencil(f, -"elastic beanstalk","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".fargate;",a,d,"AWS Fargate",null,null,null,this.getTagsForStencil(f,"fargate","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".lambda;",a,d,"AWS Lambda",null,null,null,this.getTagsForStencil(f,"lambda","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".serverless_application_repository;", -a,d+35,"AWS Serverless Application Repository",null,null,null,this.getTagsForStencil(f,"serverless application repository","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".elastic_load_balancing;",a,d+10,"Elastic Load Balancing",null,null,null,this.getTagsForStencil(f,"elastic load balancing","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".application_load_balancer;",a,d+10,"Application Load Balancer", -null,null,null,this.getTagsForStencil(f,"application load balancer","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".classic_load_balancer;",a,d+10,"Classic Load Balancer",null,null,null,this.getTagsForStencil(f,"classic load balancer","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".network_load_balancer;",a,d+10,"Network Load Balancer",null,null,null,this.getTagsForStencil(f,"network load balancer", -"aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".vmware_cloud_on_aws;",a,d+10,"VMware Cloud on AWS",null,null,null,this.getTagsForStencil(f,"vmware cloud on","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".ami;",e,e,"AMI",null,null,null,this.getTagsForStencil(f,"ami","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".auto_scaling;", -e,e,"Auto Scaling",null,null,null,this.getTagsForStencil(f,"auto scaling","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".db_on_instance;",e,e,"DB on\nInstance",null,null,null,this.getTagsForStencil(f,"db on instance database","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".elastic_ip_address;",e,e,"Elastic IP\nAddress",null,null,null,this.getTagsForStencil(f,"elastic ip address internet protocol", -"aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".instance_with_cloudwatch;",e,e,"Instance with\nCloudWatch",null,null,null,this.getTagsForStencil(f,"instance with cloudwatch","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".instance;",e,e,"Instance",null,null,null,this.getTagsForStencil(f,"instance","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+ -f+".instances;",e,e,"Instances",null,null,null,this.getTagsForStencil(f,"instances","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".optimized_instance;",e,e,"Optimized\nInstance",null,null,null,this.getTagsForStencil(f,"optimized_instance","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".rescue;",e,e,"Rescue",null,null,null,this.getTagsForStencil(f,"rescue","aws amazon web service compute").join(" ")), -this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".spot_instance;",e,e,"Spot Instance",null,null,null,this.getTagsForStencil(f,"spot instance","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".x1_instance;",e,e,"X1 Instance",null,null,null,this.getTagsForStencil(f,"x1 instance","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".registry;",e,e,"Registry",null,null,null,this.getTagsForStencil(f, -"registry","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".container_1;",e,e,"Container 1",null,null,null,this.getTagsForStencil(f,"container","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".container_2;",e,e,"Container 2",null,null,null,this.getTagsForStencil(f,"container","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".container_3;", -e,e,"Container 3",null,null,null,this.getTagsForStencil(f,"container","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".application;",e,e,"Application",null,null,null,this.getTagsForStencil(f,"application","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".deployment;",e,e,"Deployment",null,null,null,this.getTagsForStencil(f,"deployment","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(c+ -"resourceIcon;resIcon="+f+".lambda_function;",e,e,"Lambda\nFunction",null,null,null,this.getTagsForStencil(f,"lambda function","aws amazon web service compute").join(" "))])};Sidebar.prototype.addAWS4bCustomerEngagementPalette=function(a,d,e,b,c,f,g){this.addPaletteFunctions("aws4bCustomer Engagement","AWS18 / Customer Engagement",!1,[this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".connect;",a,d+10,"Amazon Connect",null,null,null,this.getTagsForStencil(f,"connect","aws amazon web service customer engagement").join(" ")), -this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".pinpoint;",a,d+10,"Amazon Pinpoint",null,null,null,this.getTagsForStencil(f,"pinpoint","aws amazon web service customer engagement").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".simple_email_service;",a,d+10,"Amazon Simple Email Service",null,null,null,this.getTagsForStencil(f,"simple email service","aws amazon web service customer engagement").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+ -".email;",e,e,"Email",null,null,null,this.getTagsForStencil(f,"email","aws amazon web service customer engagement").join(" "))])};Sidebar.prototype.addAWS4bDatabasePalette=function(a,d,e,b,c,f,g){this.addPaletteFunctions("aws4bDatabase","AWS18 / Database",!1,[this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".aurora;",a,d+10,"Amazon\nAurora",null,null,null,this.getTagsForStencil(f,"aurora","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+ -f+".dynamodb;",a,d+10,"Amazon DynamoDB",null,null,null,this.getTagsForStencil(f,"dynamodb","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".elasticache;",a,d+10,"Amazon ElastiCache",null,null,null,this.getTagsForStencil(f,"elasticache","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".elasticache_for_memcached;",a,d+20,"Amazon ElastiCache for Memcached",null,null,null,this.getTagsForStencil(f, -"elasticache for memcached","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".elasticache_for_redis;",a,d+20,"Amazon ElastiCache for Redis",null,null,null,this.getTagsForStencil(f,"elasticache for redis","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".neptune;",a,d+10,"Amazon Neptune",null,null,null,this.getTagsForStencil(f,"neptune","aws amazon web service db database").join(" ")), -this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".rds;",a,d,"Amazon RDS",null,null,null,this.getTagsForStencil(f,"rds","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".redshift;",a,d+10,"Amazon Redshift",null,null,null,this.getTagsForStencil(f,"redshift","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".database_migration_service;",a,d+20,"AWS Database Migration Service",null, -null,null,this.getTagsForStencil(f,"db database migration service","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".attribute;",e,e,"Attribute",null,null,null,this.getTagsForStencil(f,"attribute","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".attributes;",e,e,"Attributes",null,null,null,this.getTagsForStencil(f,"attributes","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(c+ -"resourceIcon;resIcon="+f+".item;",e,e,"Item",null,null,null,this.getTagsForStencil(f,"item","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".items;",e,e,"Items",null,null,null,this.getTagsForStencil(f,"items","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".global_secondary_index;",e,e,"Global\nsecondary\nindex",null,null,null,this.getTagsForStencil(f,"global secondary index", -"aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".table;",e,e,"Table",null,null,null,this.getTagsForStencil(f,"table","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".cache_node;",e,e,"Cache node",null,null,null,this.getTagsForStencil(f,"cache node","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".db_instance;",e,e,"DB instance", -null,null,null,this.getTagsForStencil(f,"db instance","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".db_instance_standby;",e,e,"DB instance\nstandby",null,null,null,this.getTagsForStencil(f,"db instance standby","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".db_instance_read_replica;",e,e,"DB instance\nread replica",null,null,null,this.getTagsForStencil(f,"db instance read replica", -"aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".piop;",e,e,"PIOP",null,null,null,this.getTagsForStencil(f,"piop","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".ms_sql_instance;",e,e,"MS SQL\ninstance",null,null,null,this.getTagsForStencil(f,"ms sql instance","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".ms_sql_instance_alternate;", -e,e,"MS SQL\ninstance\nalternate",null,null,null,this.getTagsForStencil(f,"ms sql instance","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".mysql_db_instance;",e,e,"MySQL DB \ninstance",null,null,null,this.getTagsForStencil(f,"mysql db database instance","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".mysql_db_instance_alternate;",e,e,"MySQL DB \ninstance\nalternate",null,null, -null,this.getTagsForStencil(f,"mysql db database instance alternate","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".oracle_db_instance;",e,e,"Oracle DB \ninstance",null,null,null,this.getTagsForStencil(f,"oracle db database instance","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".oracle_db_instance_alternate;",e,e,"Oracle DB \ninstance\nalternate",null,null,null,this.getTagsForStencil(f, -"oracle db database instance alternate","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".sql_primary;",e,e,"SQL primary",null,null,null,this.getTagsForStencil(f,"sql primary","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".sql_replica;",e,e,"SQL replica",null,null,null,this.getTagsForStencil(f,"sql replica","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(c+ -"resourceIcon;resIcon="+f+".postgresql_instance;",e,e,"PostgreSQL\ninstance",null,null,null,this.getTagsForStencil(f,"postresql instance","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".dense_compute_node;",e,e,"Dense\ncompute node",null,null,null,this.getTagsForStencil(f,"dense compute node","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".dense_storage_node;",e,e,"Dense\nstorage node", -null,null,null,this.getTagsForStencil(f,"dense storage node","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".database_migration_workflow_job;",e,e,"Database\nmigration\nworkflow/job",null,null,null,this.getTagsForStencil(f,"database migration workflow job","aws amazon web service db database").join(" "))])};Sidebar.prototype.addAWS4bDesktopAppStreamingPalette=function(a,d,e,b,c,f,g){this.addPaletteFunctions("aws4bDesktop App Streaming", -"AWS18 / Desktop & App Streaming",!1,[this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".appstream_20;",a,d+10,"Amazon AppStream 2.0",null,null,null,this.getTagsForStencil(f,"appstream","aws amazon web service db database").join(" "))])};Sidebar.prototype.addAWS4bDeveloperToolsPalette=function(a,d,e,b,c,f,g){this.addPaletteFunctions("aws4bDeveloper Tools","AWS18 / Developer Tools",!1,[this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".codestar;",a,d,"AWS CodeStar",null,null,null,this.getTagsForStencil(f, -"codestar","aws amazon web service dev developer tools").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".cloud9;",a,d,"AWS Cloud9",null,null,null,this.getTagsForStencil(f,"cloud9","aws amazon web service dev developer tools").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".codebuild;",a,d+10,"AWS CodeBuild",null,null,null,this.getTagsForStencil(f,"codebuild","aws amazon web service dev developer tools").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+ -f+".codecommit;",a,d+10,"AWS CodeCommit",null,null,null,this.getTagsForStencil(f,"codecommit","aws amazon web service dev developer tools").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".codedeploy;",a,d+10,"AWS CodeDeploy",null,null,null,this.getTagsForStencil(f,"codedeploy","aws amazon web service dev developer tools").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".codepipeline;",a,d+10,"AWS CodePipeline",null,null,null,this.getTagsForStencil(f,"codepipeline", -"aws amazon web service dev developer tools").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".command_line_interface;",a,d+20,"AWS\nCommand Line Interface",null,null,null,this.getTagsForStencil(f,"command line interface","aws amazon web service dev developer tools").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".tools_and_sdks;",a,d+10,"AWS Tools and SDKs",null,null,null,this.getTagsForStencil(f,"tools and sdks software development kit","aws amazon web service dev developer tools").join(" ")), -this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".xray;",a,d,"AWS X-Ray",null,null,null,this.getTagsForStencil(f,"ray xray","aws amazon web service dev developer tools").join(" "))])};Sidebar.prototype.addAWS4bGameDevelopmentPalette=function(a,d,e,b,c,f,g){this.addPaletteFunctions("aws4bGame Development","AWS18 / Game Development",!1,[this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".gamelift;",a,d+10,"Amazon GameLift",null,null,null,this.getTagsForStencil(f,"gamelift","aws amazon web service game development").join(" "))])}; -Sidebar.prototype.addAWS4bInternetOfThingsPalette=function(a,d,e,b,c,f,g){this.addPaletteFunctions("aws4bInternet of Things","AWS18 / Internet of Things",!1,[this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".iot_core;",a,d+10,"Amazon IoT Core",null,null,null,this.getTagsForStencil(f,"core","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".freertos;",a,d+10,"Amazon FreeRTOS",null,null,null,this.getTagsForStencil(f,"freertos free rtos", -"aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".greengrass;",a,d+10,"AWS Greengrass",null,null,null,this.getTagsForStencil(f,"greengrass","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".iot_1click;",a,d+10,"AWS IoT\n1-Click",null,null,null,this.getTagsForStencil(f,"1click one click","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+ -"productIcon;prIcon="+f+".iot_analytics;",a,d+10,"AWS IoT Analytics",null,null,null,this.getTagsForStencil(f,"analytics","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".iot_button;",a,d+10,"AWS IoT Button",null,null,null,this.getTagsForStencil(f,"button","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".iot_device_defender;",a,d+20,"AWS IoT Device Defender",null, -null,null,this.getTagsForStencil(f,"device defender","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".iot_device_management;",a,d+20,"AWS IoT Device Management",null,null,null,this.getTagsForStencil(f,"device management","aws amazon web service internet of things iot").join(" "))])};Sidebar.prototype.addAWS4bIOTThingsPalette=function(a,d,e,b,c,f,g){this.addPaletteFunctions("aws4bIoT Things","AWS18 / IoT Things",!1,[this.createVertexTemplateEntry(c+ -"resourceIcon;resIcon="+f+".bank;",e,e,"Bank",null,null,null,this.getTagsForStencil(f,"bank","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".bycicle;",e,e,"Bycicle",null,null,null,this.getTagsForStencil(f,"bycicle","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".camera;",e,e,"Camera",null,null,null,this.getTagsForStencil(f,"camera","aws amazon web service internet of things iot").join(" ")), -this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".car;",e,e,"Car",null,null,null,this.getTagsForStencil(f,"car","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".cart;",e,e,"Cart",null,null,null,this.getTagsForStencil(f,"cart","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".coffee_pot;",e,e,"Coffee Pot",null,null,null,this.getTagsForStencil(f,"coffee pot", -"aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".door_lock;",e,e,"Door Lock",null,null,null,this.getTagsForStencil(f,"door lock","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".factory;",e,e,"Factory",null,null,null,this.getTagsForStencil(f,"factory","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+ -f+".generic;",e,e,"Generic",null,null,null,this.getTagsForStencil(f,"generic","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".house;",e,e,"House",null,null,null,this.getTagsForStencil(f,"house","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".lightbulb;",e,e,"Lightbulb",null,null,null,this.getTagsForStencil(f,"lightbulb","aws amazon web service internet of things iot").join(" ")), -this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".medical_emergency;",e,e,"Medical\nEmergency",null,null,null,this.getTagsForStencil(f,"medical emergency","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".police_emergency;",e,e,"Police\nEmergency",null,null,null,this.getTagsForStencil(f,"police emergency","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+ -f+".thermostat;",e,e,"Thermostat",null,null,null,this.getTagsForStencil(f,"thermostat","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".travel;",e,e,"Travel",null,null,null,this.getTagsForStencil(f,"travel","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".utility;",e,e,"Utility",null,null,null,this.getTagsForStencil(f,"utility","aws amazon web service internet of things iot").join(" ")), -this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".windfarm;",e,e,"Windfarm",null,null,null,this.getTagsForStencil(f,"windfarm","aws amazon web service internet of things iot").join(" "))])};Sidebar.prototype.addAWS4bIOTResourcesPalette=function(a,d,e,b,c,f,g){this.addPaletteFunctions("aws4bIoT Resources","AWS18 / IoT Resources",!1,[this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".action;",e,e,"Action",null,null,null,this.getTagsForStencil(f,"action","aws amazon web service internet of things iot resources").join(" ")), -this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".actuator;",e,e,"Actuator",null,null,null,this.getTagsForStencil(f,"actuator","aws amazon web service internet of things iot resources").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".alexa_enabled_device;",e,e,"Alexa enabled\ndevice",null,null,null,this.getTagsForStencil(f,"alexa enabled device","aws amazon web service internet of things iot resources").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+ -f+".alexa_skill;",e,e,"Alexa skill",null,null,null,this.getTagsForStencil(f,"alexa skill","aws amazon web service internet of things iot resources").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".alexa_smart_home_skill;",e,e,"Alexa smart\nhome skill",null,null,null,this.getTagsForStencil(f,"alexa smart home skill","aws amazon web service internet of things iot resources").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".alexa_voice_service;",e,e,"Alexa voice\nservice", -null,null,null,this.getTagsForStencil(f,"alexa voice service","aws amazon web service internet of things iot resources").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".certificate_manager;",e,e,"Certificate\nmanager",null,null,null,this.getTagsForStencil(f,"certificate manager","aws amazon web service internet of things iot resources").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".desired_state;",e,e,"Desired state",null,null,null,this.getTagsForStencil(f, -"desired state","aws amazon web service internet of things iot resources").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".echo;",e,e,"Echo",null,null,null,this.getTagsForStencil(f,"echo","aws amazon web service internet of things iot resources").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".firetv_stick;",e,e,"FireTV stick",null,null,null,this.getTagsForStencil(f,"firetv fire tv stick","aws amazon web service internet of things iot resources").join(" ")), -this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".firetv;",e,e,"FireTV",null,null,null,this.getTagsForStencil(f,"firetv fire tv","aws amazon web service internet of things iot resources").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".hardware_board;",e,e,"Hardware\nboard",null,null,null,this.getTagsForStencil(f,"hardware board","aws amazon web service internet of things iot resources").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".http2_protocol;", -e,e,"HTTP/2\nprotocol",null,null,null,this.getTagsForStencil(f,"http2 protocol","aws amazon web service internet of things iot resources").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".http_protocol;",e,e,"HTTP\nprotocol",null,null,null,this.getTagsForStencil(f,"http protocol","aws amazon web service internet of things iot resources").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".lambda_function;",e,e,"Lambda Function",null,null,null,this.getTagsForStencil(f, -"lambda function","aws amazon web service internet of things iot resources").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".mqtt_protocol;",e,e,"MQTT\nprotocol",null,null,null,this.getTagsForStencil(f,"mqtt protocol","aws amazon web service internet of things iot resources").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".policy;",e,e,"Policy",null,null,null,this.getTagsForStencil(f,"policy","aws amazon web service internet of things iot resources").join(" ")), -this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".reported_state;",e,e,"Reported\nstate",null,null,null,this.getTagsForStencil(f,"reported state","aws amazon web service internet of things iot resources").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".rule;",e,e,"Rule",null,null,null,this.getTagsForStencil(f,"rule","aws amazon web service internet of things iot resources").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".sensor;",e,e,"Sensor", -null,null,null,this.getTagsForStencil(f,"sensor","aws amazon web service internet of things iot resources").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".servo;",e,e,"Servo",null,null,null,this.getTagsForStencil(f,"servo","aws amazon web service internet of things iot resources").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".shadow;",e,e,"Shadow",null,null,null,this.getTagsForStencil(f,"shadow","aws amazon web service internet of things iot resources").join(" ")), -this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".simulator;",e,e,"Simulator",null,null,null,this.getTagsForStencil(f,"simulator","aws amazon web service internet of things iot resources").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".topic_2;",e,e,"Topic",null,null,null,this.getTagsForStencil(f,"topic","aws amazon web service internet of things iot resources").join(" "))])};Sidebar.prototype.addAWS4bMachineLearningPalette=function(a,d,e,b,c,f,g){this.addPaletteFunctions("aws4bMachine Learning", -"AWS18 / Machine Learning",!1,[this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".sagemaker;",a,d+10,"Amazon SageMaker",null,null,null,this.getTagsForStencil(f,"sagemaker","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".comprehend;",a,d+10,"Amazon Comprehend",null,null,null,this.getTagsForStencil(f,"comprehend","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".lex;", -a,d,"Amazon Lex",null,null,null,this.getTagsForStencil(f,"lex","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".polly;",a,d,"Amazon Polly",null,null,null,this.getTagsForStencil(f,"polly","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".rekognition;",a,d+10,"Amazon Rekognition",null,null,null,this.getTagsForStencil(f,"rekognition","aws amazon web service machine learning").join(" ")), -this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".rekognition_image;",a,d+20,"Amazon Rekognition Image",null,null,null,this.getTagsForStencil(f,"rekognition image","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".rekognition_video;",a,d+20,"Amazon Rekognition Video",null,null,null,this.getTagsForStencil(f,"rekognition video","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+ -f+".translate;",a,d+10,"Amazon Translate",null,null,null,this.getTagsForStencil(f,"translate","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".transcribe;",a,d+10,"Amazon Transcribe",null,null,null,this.getTagsForStencil(f,"transcribe","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".deep_learning_amis;",a,d+10,"AWS Deep Learning AMIs",null,null,null,this.getTagsForStencil(f, -"deep learning amis","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".deeplens;",a,d,"AWS DeepLens",null,null,null,this.getTagsForStencil(f,"deeplens","aws amazon web service machine learning").join(" "))])};Sidebar.prototype.addAWS4bManagementToolsPalette=function(a,d,e,b,c,f,g){this.addPaletteFunctions("aws4bManagement Tools","AWS18 / Management Tools",!1,[this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".cloudwatch;",a,d+ -10,"Amazon CloudWatch",null,null,null,this.getTagsForStencil(f,"cloudwatch","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".autoscaling;",a,d+10,"AWS Auto Scaling",null,null,null,this.getTagsForStencil(f,"auto scaling","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".cloudformation;",a,d+10,"AWS CloudFormation",null,null,null,this.getTagsForStencil(f,"cloudformation","aws amazon web service management tools").join(" ")), -this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".cloudtrail;",a,d+10,"AWS\nCloudTrail",null,null,null,this.getTagsForStencil(f,"cloudtrail","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".command_line_interface;",a,d+20,"AWS\nCommand Line Interface",null,null,null,this.getTagsForStencil(f,"command line interface","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+ -".config;",a,d,"AWS Config",null,null,null,this.getTagsForStencil(f,"config","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".management_console;",a,d+20,"AWS Management Console",null,null,null,this.getTagsForStencil(f,"management console","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".managed_services;",a,d+10,"AWS Managed Services",null,null,null,this.getTagsForStencil(f, -"managed services","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".opsworks;",a,d+10,"AWS OpsWorks",null,null,null,this.getTagsForStencil(f,"opsworks","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".service_catalog;",a,d+10,"AWS Service Catalog",null,null,null,this.getTagsForStencil(f,"service catalog","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(b+ -"productIcon;prIcon="+f+".personal_health_dashboard;",a,d+20,"AWS Personal Health Dashboard",null,null,null,this.getTagsForStencil(f,"personal health dashboard","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".systems_manager;",a,d+10,"AWS Systems Manager",null,null,null,this.getTagsForStencil(f,"systems manager","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".trusted_advisor;", -a,d+10,"AWS Trusted Advisor",null,null,null,this.getTagsForStencil(f,"trusted advisor","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".marketplace;",a,d+10,"AWS Marketplace",null,null,null,this.getTagsForStencil(f,"marketplace","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".alarm;",e,e,"Alarm",null,null,null,this.getTagsForStencil(f,"alarm","aws amazon web service management tools").join(" ")), -this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".event_event_based;",e,e,"Event (event-\nbased)",null,null,null,this.getTagsForStencil(f,"event event based","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".event_time_based;",e,e,"Event (time-\nbased)",null,null,null,this.getTagsForStencil(f,"event time based","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+ -".rule_2;",e,e,"Rule",null,null,null,this.getTagsForStencil(f,"rule","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".change_set;",e,e,"Change set",null,null,null,this.getTagsForStencil(f,"change set","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".stack;",e,e,"Stack",null,null,null,this.getTagsForStencil(f,"stack","aws amazon web service management tools").join(" ")), -this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".template;",e,e,"Template",null,null,null,this.getTagsForStencil(f,"template","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".apps;",e,e,"Apps",null,null,null,this.getTagsForStencil(f,"apps","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".deployments;",e,e,"Deployments",null,null,null,this.getTagsForStencil(f, -"deployments","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".instances_2;",e,e,"Instances",null,null,null,this.getTagsForStencil(f,"instances","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".layers;",e,e,"Layers",null,null,null,this.getTagsForStencil(f,"layers","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+ -f+".monitoring;",e,e,"Monitoring",null,null,null,this.getTagsForStencil(f,"monitoring","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".permissions;",e,e,"Permissions",null,null,null,this.getTagsForStencil(f,"permissions","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".resources;",e,e,"Resources",null,null,null,this.getTagsForStencil(f,"resources","aws amazon web service management tools").join(" ")), -this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".stack2;",e,e,"Stack2",null,null,null,this.getTagsForStencil(f,"stack stack2","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".automation;",e,e,"Automation",null,null,null,this.getTagsForStencil(f,"automation","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".documents;",e,e,"Documents",null,null,null,this.getTagsForStencil(f, -"documents","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".inventory;",e,e,"Inventory",null,null,null,this.getTagsForStencil(f,"inventory","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".maintenance_windows;",e,e,"Maintenance\nwindows",null,null,null,this.getTagsForStencil(f,"maintenance windows","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(c+ -"resourceIcon;resIcon="+f+".parameter_store;",e,e,"Parameter\nStore",null,null,null,this.getTagsForStencil(f,"parameter store","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".patch_manager;",e,e,"Patch\nmanager",null,null,null,this.getTagsForStencil(f,"patch manager","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".patch_manager;",e,e,"Patch\nmanager",null,null,null, -this.getTagsForStencil(f,"patch manager","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".run_command;",e,e,"Run\ncommand",null,null,null,this.getTagsForStencil(f,"run command","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".state_manager;",e,e,"State\nmanager",null,null,null,this.getTagsForStencil(f,"state manager","aws amazon web service management tools").join(" ")), -this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".checklist_cost;",e,e,"Checklist cost",null,null,null,this.getTagsForStencil(f,"checklist cost","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".checklist_fault_tolerant;",e,e,"Checklist fault\ntolerant",null,null,null,this.getTagsForStencil(f,"checklist fault tolerant","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+ -f+".checklist_performance;",e,e,"Checklist\nperformance",null,null,null,this.getTagsForStencil(f,"checklist performance","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".checklist_security;",e,e,"Checklist\nsecurity",null,null,null,this.getTagsForStencil(f,"checklist security","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".checklist;",e,e,"Checklist",null,null,null, -this.getTagsForStencil(f,"checklist","aws amazon web service management tools").join(" "))])};Sidebar.prototype.addAWS4bMediaServicesPalette=function(a,d,e,b,c,f,g){this.addPaletteFunctions("aws4bMedia Services","AWS18 / Media Services",!1,[this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".elastic_transcoder;",a,d+10,"Amazon Elastic Transcoder",null,null,null,this.getTagsForStencil(f,"elastic transcoder","aws amazon web service media services").join(" ")),this.createVertexTemplateEntry(b+ -"productIcon;prIcon="+f+".kinesis_video_streams;",a,d+20,"Amazon Kinesis Video Streams",null,null,null,this.getTagsForStencil(f,"kinesis video streams","aws amazon web service media services").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".elemental_mediaconvert;",a,d+10,"AWS Elemental MediaConvert",null,null,null,this.getTagsForStencil(f,"elemental mediaconvert","aws amazon web service media services").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".elemental_medialive;", -a,d+10,"AWS Elemental MediaLive",null,null,null,this.getTagsForStencil(f,"elemental medialive","aws amazon web service media services").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".elemental_mediapackage;",a,d+10,"AWS Elemental MediaPackage",null,null,null,this.getTagsForStencil(f,"elemental mediapackage","aws amazon web service media services").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".elemental_mediastore;",a,d+10,"AWS Elemental MediaStore",null, -null,null,this.getTagsForStencil(f,"elemental mediastore","aws amazon web service media services").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".elemental_mediatailor;",a,d+10,"AWS Elemental MediaTailor",null,null,null,this.getTagsForStencil(f,"elemental mediatailor","aws amazon web service media services").join(" "))])};Sidebar.prototype.addAWS4bMigrationPalette=function(a,d,e,b,c,f,g){this.addPaletteFunctions("aws4bMigration","AWS18 / Migration",!1,[this.createVertexTemplateEntry(b+ -"productIcon;prIcon="+f+".migration_hub;",a,d+10,"AWS Migration Hub",null,null,null,this.getTagsForStencil(f,"migration hub","aws amazon web service migration").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".application_discovery_service;",a,d+35,"AWS Application Discovery Service",null,null,null,this.getTagsForStencil(f,"application discovery service","aws amazon web service migration").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".database_migration_service;", -a,d+20,"AWS Database Migration Service",null,null,null,this.getTagsForStencil(f,"db database migration service","aws amazon web service migration").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".server_migration_service;",a,d+20,"AWS Server Migration Service",null,null,null,this.getTagsForStencil(f,"server migration service","aws amazon web service migration").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".snowball;",a,d,"AWS Snowball",null,null,null, -this.getTagsForStencil(f,"snowball","aws amazon web service migration").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".snowball_edge;",a,d+10,"AWS Snowball Edge",null,null,null,this.getTagsForStencil(f,"snowball edge","aws amazon web service migration").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".snowmobile;",a,d+10,"AWS Snowmobile",null,null,null,this.getTagsForStencil(f,"snowmobile","aws amazon web service migration").join(" "))])};Sidebar.prototype.addAWS4bMobileServicesPalette= -function(a,d,e,b,c,f,g){this.addPaletteFunctions("aws4bMobile Services","AWS18 / Mobile Services",!1,[this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".appsync;",a,d,"AWS AppSync",null,null,null,this.getTagsForStencil(f,"appsync","aws amazon web service mobile services").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".api_gateway;",a,d+10,"Amazon API Gateway",null,null,null,this.getTagsForStencil(f,"api gateway application programming interface","aws amazon web service mobile services").join(" ")), -this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".device_farm;",a,d+10,"AWS Device Farm",null,null,null,this.getTagsForStencil(f,"device farm","aws amazon web service mobile services").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".mobile_hub;",a,d+10,"AWS Mobile Hub",null,null,null,this.getTagsForStencil(f,"mobile hub","aws amazon web service mobile services").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".pinpoint;",a,d+10,"Amazon Pinpoint", -null,null,null,this.getTagsForStencil(f,"pinpoint","aws amazon web service mobile services").join(" "))])};Sidebar.prototype.addAWS4bNetworkContentDeliveryPalette=function(a,d,e,b,c,f,g){this.addPaletteFunctions("aws4bNetwork Content Delivery","AWS18 / Network & Content Delivery",!1,[this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".vpc;",a,d,"Amazon VPC",null,null,null,this.getTagsForStencil(f,"vpc virtual private cloud","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(b+ -"productIcon;prIcon="+f+".api_gateway;",a,d+10,"Amazon API Gateway",null,null,null,this.getTagsForStencil(f,"api application programming interface gateway","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".cloudfront;",a,d+10,"Amazon Cloudfront",null,null,null,this.getTagsForStencil(f,"cloudfront","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".privatelink;", -a,d+10,"AWS PrivateLink",null,null,null,this.getTagsForStencil(f,"privatelink","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".route_53;",a,d+10,"Amazon Route 53",null,null,null,this.getTagsForStencil(f,"route 53","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".direct_connect;",a,d+10,"AWS Direct Connect",null,null,null,this.getTagsForStencil(f,"direct connect", -"aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".customer_gateway;",e,e,"Customer\ngateway",null,null,null,this.getTagsForStencil(f,"customer gateway","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".elastic_network_adapter;",e,e,"Elastic\nnetwork\nadapter",null,null,null,this.getTagsForStencil(f,"elastic network adapter","aws amazon web service netowrk content delivery").join(" ")), -this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".elastic_network_interface;",e,e,"Elastic\nnetwork\ninterface",null,null,null,this.getTagsForStencil(f,"elastic network interface","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".endpoints;",e,e,"Endpoints",null,null,null,this.getTagsForStencil(f,"endpoints","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+ -f+".flow_logs;",e,e,"Flow logs",null,null,null,this.getTagsForStencil(f,"flow logs","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".internet_gateway;",e,e,"Internet\ngateway",null,null,null,this.getTagsForStencil(f,"internet gateway","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".nat_gateway;",e,e,"NAT gateway",null,null,null,this.getTagsForStencil(f, -"nat gateway","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".network_access_control_list;",e,e,"Network\naccess\ncontrol list",null,null,null,this.getTagsForStencil(f,"network access control list","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".peering;",e,e,"Peering",null,null,null,this.getTagsForStencil(f,"peering","aws amazon web service netowrk content delivery").join(" ")), -this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".router;",e,e,"Router",null,null,null,this.getTagsForStencil(f,"router","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".vpn_connection;",e,e,"VPN\nConnection",null,null,null,this.getTagsForStencil(f,"vpn virtual private network connection","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".vpn_gateway;", -e,e,"VPN Gateway",null,null,null,this.getTagsForStencil(f,"vpn virtual private network gateway","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".download_distribution;",e,e,"Download\ndistribution",null,null,null,this.getTagsForStencil(f,"download distribution","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".edge_location;",e,e,"Edge location",null,null, -null,this.getTagsForStencil(f,"edge location","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".streaming_distribution;",e,e,"Streaming\ndistribution",null,null,null,this.getTagsForStencil(f,"streaming distribution","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".hosted_zone;",e,e,"Hosted zone",null,null,null,this.getTagsForStencil(f,"hosted zone","aws amazon web service netowrk content delivery").join(" ")), -this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".route_table;",e,e,"Route table",null,null,null,this.getTagsForStencil(f,"route table","aws amazon web service netowrk content delivery").join(" "))])};Sidebar.prototype.addAWS4bSecurityIdentityCompliancePalette=function(a,d,e,b,c,f,g){this.addPaletteFunctions("aws4bSecurity Identity Compliance","AWS18 / Security, Identity & Compliance",!1,[this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".identity_and_access_management;",a,d+20, -"AWS Identity and Access Management",null,null,null,this.getTagsForStencil(f,"identity and access management","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".cognito;",a,d+10,"Amazon Cognito",null,null,null,this.getTagsForStencil(f,"cognito","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".guardduty;",a,d+10,"Amazon GuardDuty",null,null,null,this.getTagsForStencil(f, -"guard duty guardduty","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".inspector;",a,d+10,"Amazon Inspector",null,null,null,this.getTagsForStencil(f,"inspector","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".artifact;",a,d,"AWS Artifact",null,null,null,this.getTagsForStencil(f,"artifact","aws amazon web service security identity compliance").join(" ")), -this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".certificate_manager_3;",a,d+10,"AWS Certificate Manager",null,null,null,this.getTagsForStencil(f,"certificate manager","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".cloudhsm;",a,d+10,"AWS CloudHSM",null,null,null,this.getTagsForStencil(f,"cloudhsm","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+ -f+".directory_service;",a,d+10,"AWS Directory Service",null,null,null,this.getTagsForStencil(f,"directory service","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".firewall_manager;",a,d+10,"AWS Firewall Manager",null,null,null,this.getTagsForStencil(f,"firewall manager","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".key_management_service;",a,d+ -20,"AWS Key Management Service",null,null,null,this.getTagsForStencil(f,"key management service","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".secrets_manager;",a,d+10,"AWS Secrets Manager",null,null,null,this.getTagsForStencil(f,"secrets manager","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".shield;",a,d,"AWS Shield",null,null,null,this.getTagsForStencil(f, -"shield","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".single_sign_on;",a,d+10,"AWS Single Sign-On",null,null,null,this.getTagsForStencil(f,"single sign on","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".waf;",a,d,"AWS WAF",null,null,null,this.getTagsForStencil(f,"waf","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(c+ -"resourceIcon;resIcon="+f+".addon;",e,e,"Add-on",null,null,null,this.getTagsForStencil(f,"addon add on","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".sts;",e,e,"AWS STS",null,null,null,this.getTagsForStencil(f,"sts","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".sts_alternate;",e,e,"AWS STS\n(alternate)",null,null,null,this.getTagsForStencil(f, -"sts alternate","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".data_encryption_key;",e,e,"Data\nencryption\nkey",null,null,null,this.getTagsForStencil(f,"data encryption key","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".encrypted_data;",e,e,"Encrypted\ndata",null,null,null,this.getTagsForStencil(f,"encrypted data","aws amazon web service security identity compliance").join(" ")), -this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".long_term_security_credential;",e,e,"Long-term\nsecurity\ncredential",null,null,null,this.getTagsForStencil(f,"long term security credential","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".mfa_token;",e,e,"MFA Token",null,null,null,this.getTagsForStencil(f,"mfa token","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(c+ -"resourceIcon;resIcon="+f+".permissions;",e,e,"Permissions",null,null,null,this.getTagsForStencil(f,"permissions","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".role;",e,e,"Role",null,null,null,this.getTagsForStencil(f,"role","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".temporary_security_credential;",e,e,"Temporary\nsecurity\ncredential", -null,null,null,this.getTagsForStencil(f,"temporary security credential","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".agent;",e,e,"Agent",null,null,null,this.getTagsForStencil(f,"agent","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".certificate_manager_2;",e,e,"Certificate\nmanager",null,null,null,this.getTagsForStencil(f,"certificate manager", -"aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".filtering_rule;",e,e,"Filtering rule",null,null,null,this.getTagsForStencil(f,"filtering rule","aws amazon web service security identity compliance").join(" "))])};Sidebar.prototype.addAWS4bStoragePalette=function(a,d,e,b,c,f,g){this.addPaletteFunctions("aws4bStorage","AWS18 / Storage",!1,[this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".s3;",a,d,"Amazon S3",null, -null,null,this.getTagsForStencil(f,"s3","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".elastic_block_store;",a,d+10,"Amazon Elastic Block Store",null,null,null,this.getTagsForStencil(f,"elastic block store","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".elastic_file_system;",a,d+10,"Amazon Elastic File System",null,null,null,this.getTagsForStencil(f,"elastic file system","aws amazon web service storage").join(" ")), -this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".glacier;",a,d+10,"Amazon Glacier",null,null,null,this.getTagsForStencil(f,"glacier","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".snowball;",a,d,"AWS Snowball",null,null,null,this.getTagsForStencil(f,"snowball","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".snowball_edge;",a,d+10,"AWS Snowball Edge",null,null,null,this.getTagsForStencil(f, -"snowball edge","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".snowmobile;",a,d+10,"AWS Snowmobile",null,null,null,this.getTagsForStencil(f,"snowmobile","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(b+"productIcon;prIcon="+f+".storage_gateway;",a,d+10,"AWS Storage Gateway",null,null,null,this.getTagsForStencil(f,"storage gateway","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+ -f+".bucket;",e,e,"Bucket",null,null,null,this.getTagsForStencil(f,"bucket","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".snapshot;",e,e,"Snapshot",null,null,null,this.getTagsForStencil(f,"snapshot","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".bucket_with_objects;",e,e,"Bucket with\nobjects",null,null,null,this.getTagsForStencil(f,"bucket with objects","aws amazon web service storage").join(" ")), -this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".volume;",e,e,"Volume",null,null,null,this.getTagsForStencil(f,"volume","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".object;",e,e,"Object",null,null,null,this.getTagsForStencil(f,"object","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".archive;",e,e,"Archive",null,null,null,this.getTagsForStencil(f,"archive","aws amazon web service storage").join(" ")), -this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".vault;",e,e,"Vault",null,null,null,this.getTagsForStencil(f,"vault","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".import_export;",e,e,"Import/Export",null,null,null,this.getTagsForStencil(f,"import export","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".cached_volume;",e,e,"Cached\nvolume",null,null,null,this.getTagsForStencil(f, -"cached volume","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".non_cached_volume;",e,e,"Non-Cached\nvolume",null,null,null,this.getTagsForStencil(f,"non cached volume","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(c+"resourceIcon;resIcon="+f+".virtual_tape_library;",e,e,"Virtual tape\nlibrary",null,null,null,this.getTagsForStencil(f,"virtual tape library vtl","aws amazon web service storage").join(" "))])}})();(function(){Sidebar.prototype.addAzurePalette=function(){var a=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;html=1;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;align=center;strokeColor=none;fillColor=#00BEF2;shape=mxgraph.azure.";this.addPaletteFunctions("azure",mxResources.get("azure"),!1,[this.createVertexTemplateEntry(a+"access_control;",50,50,"","Access Control",null,null,this.getTagsForStencil("mxgraph.azure","access_control","").join(" ")),this.createVertexTemplateEntry(a+"automation;pointerEvents=1;", +100,0,"","Open (double)",null,this.getTagsForStencil(a,"","aws amazon web service arrowsopen double").join(" "))])};Sidebar.prototype.addAWS4bGeneralResourcesPalette=function(a,b,e,c,d,f,g){this.addPaletteFunctions("aws4bGeneral Resources","AWS18 / General Resources",!1,[this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".aws_cloud;",e,e,"AWS Cloud",null,null,null,this.getTagsForStencil(f,"cloud","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+ +f+".client;",e,e,"Client",null,null,null,this.getTagsForStencil(f,"client","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".corporate_data_center;",e,e,"Corporate\ndata center",null,null,null,this.getTagsForStencil(f,"corporate data center","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".disk;",e,e,"Disk",null,null,null,this.getTagsForStencil(f,"disk","aws amazon web service general resources").join(" ")), +this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".forums;",e,e,"Forums",null,null,null,this.getTagsForStencil(f,"forums","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".generic_database;",e,e,"Generic\ndatabase",null,null,null,this.getTagsForStencil(f,"generic databas","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".internet;",e,e,"Internet",null,null, +null,this.getTagsForStencil(f,"internet","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".internet_alt1;",e,e,"Internet alt1",null,null,null,this.getTagsForStencil(f,"internet alternative","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".internet_alt2;",e,e,"Internet alt2",null,null,null,this.getTagsForStencil(f,"internet alternative","aws amazon web service general resources").join(" ")), +this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".mobile_client;",e,e,"Mobile client",null,null,null,this.getTagsForStencil(f,"mobile client","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".multimedia;",e,e,"Multimedia",null,null,null,this.getTagsForStencil(f,"multimedia","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".office_building;",e,e,"Office building", +null,null,null,this.getTagsForStencil(f,"office building","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".saml_token;",e,e,"SAML token",null,null,null,this.getTagsForStencil(f,"saml token","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".ssl_padlock;",e,e,"SSL padlock",null,null,null,this.getTagsForStencil(f,"ssl padlock","aws amazon web service general resources").join(" ")), +this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".tape_storage;",e,e,"Tape storage",null,null,null,this.getTagsForStencil(f,"tape storage","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".traditional_server;",e,e,"Traditional\nserver",null,null,null,this.getTagsForStencil(f,"traditional server","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".user;",e,e, +"User",null,null,null,this.getTagsForStencil(f,"user","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".users;",e,e,"Users",null,null,null,this.getTagsForStencil(f,"users","aws amazon web service general resources").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".virtual_private_cloud;",e,e,"Virtual private\ncloud",null,null,null,this.getTagsForStencil(f,"virtual private cloud vpc","aws amazon web service general resources").join(" "))])}; +Sidebar.prototype.addAWS4bIllustrationsPalette=function(a,b,e){this.addPaletteFunctions("aws4bIllustrations","AWS18 / Illustrations",!1,[this.createVertexTemplateEntry(a+"illustration_users;pointerEvents=1",100,100,"users",null,null,null,this.getTagsForStencil(b,"users","aws amazon web service illustrations").join(" ")),this.createVertexTemplateEntry(a+"illustration_notification;pointerEvents=1",100,81,"notification",null,null,null,this.getTagsForStencil(b,"users","aws amazon web service illustrations").join(" ")), +this.createVertexTemplateEntry(a+"illustration_devices;pointerEvents=1",100,73,"devices",null,null,null,this.getTagsForStencil(b,"devices","aws amazon web service illustrations").join(" ")),this.createVertexTemplateEntry(a+"illustration_desktop;pointerEvents=1",100,91,"desktop",null,null,null,this.getTagsForStencil(b,"desktop","aws amazon web service illustrations").join(" ")),this.createVertexTemplateEntry(a+"illustration_office_building;pointerEvents=1",100,71,"office building",null,null,null,this.getTagsForStencil(b, +"office building","aws amazon web service illustrations").join(" "))])};Sidebar.prototype.addAWS4bGroupsLightPalette=function(a,b,e){this.addPaletteFunctions("aws4bGroups Light","AWS18 / Groups (light)",!1,[this.createVertexTemplateEntry(a+"group;grIcon="+b+".group_aws_cloud;strokeColor=#AAB7B8;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#AAB7B8;dashed=0;",130,130,"AWS Cloud","AWS Cloud",null,null,this.getTagsForStencil(b,"cloud","aws amazon web service groups group light").join(" ")), +this.createVertexTemplateEntry(a+"group;grIcon="+b+".group_region;strokeColor=#879196;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#879196;dashed=1;",130,130,"Region","Region",null,null,this.getTagsForStencil(b,"region","aws amazon web service groups group light").join(" ")),this.createVertexTemplateEntry(a+"group;grIcon="+b+".group_vpc;strokeColor=#879196;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#879196;dashed=0;",130,130,"VPC","VPC",null,null, +this.getTagsForStencil(b,"vpc virtual private cloud","aws amazon web service groups group light").join(" ")),this.createVertexTemplateEntry(a+"group;grIcon="+b+".group_availability_zone;strokeColor=#545B64;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#545B64;dashed=1;",130,130,"Availability zone","Availability zone",null,null,this.getTagsForStencil(b,"availability zone","aws amazon web service groups group light").join(" ")),this.createVertexTemplateEntry(a+"group;grIcon="+ +b+".group_subnet;strokeColor=#879196;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#879196;dashed=0;",130,130,"Subnet","Subnet",null,null,this.getTagsForStencil(b,"subnet","aws amazon web service groups group light").join(" ")),this.createVertexTemplateEntry(a+"group;grIcon="+b+".group_on_premise;strokeColor=#AAB7B8;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#AAB7B8;dashed=0;",130,130,"On-Premise","On-Premise",null,null,this.getTagsForStencil(b,"on premise", +"aws amazon web service groups group light").join(" ")),this.createVertexTemplateEntry(a+"groupCenter;grIcon="+b+".group_auto_scaling_group;grStroke=0;strokeColor=#879196;fillColor=#ECEFEF;verticalAlign=top;align=center;fontColor=#879196;dashed=0;spacingTop=25;",130,130,"Auto Scaling Group","Auto Scaling Group",null,null,this.getTagsForStencil(b,"auto scaling","aws amazon web service groups group light").join(" ")),this.createVertexTemplateEntry(a+"groupCenter;grIcon="+b+".group_elastic_load_balancing;grStroke=1;strokeColor=#007DBC;fillColor=none;verticalAlign=top;align=center;fontColor=#007DBC;dashed=0;spacingTop=25;", +130,130,"Elastic Load Balancing","Elastic Load Balancing",null,null,this.getTagsForStencil(b,"elastic load balancing","aws amazon web service groups group light").join(" ")),this.createVertexTemplateEntry("outlineConnect=0;gradientColor=none;html=1;whiteSpace=wrap;fontSize=12;fontStyle=0;strokeColor=#879196;fillColor=none;verticalAlign=top;align=center;fontColor=#879196;dashed=1;spacingTop=3;",130,130,"Generic Group","Generic Group",null,null,this.getTagsForStencil(b,"generic","aws amazon web service groups group light").join(" ")), +this.createVertexTemplateEntry("outlineConnect=0;gradientColor=none;html=1;whiteSpace=wrap;fontSize=12;fontStyle=0;strokeColor=#FF9900;fillColor=none;verticalAlign=top;align=center;fontColor=#FF9900;dashed=0;spacingTop=3;",130,130,"Highlight","Highlight",null,null,this.getTagsForStencil(b,"highlight","aws amazon web service groups group light").join(" ")),this.createVertexTemplateEntry(a+"group;grIcon="+b+".group_aws_step_functions_workflow;strokeColor=#545B64;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#545B64;dashed=0;", +130,130,"AWS Step Functions workflow","AWS Step Functions workflow",null,null,this.getTagsForStencil(b,"step functions workflow","aws amazon web service groups group light").join(" ")),this.createVertexTemplateEntry(a+"group;grIcon="+b+".group_spot_fleet;strokeColor=#232F3E;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#232F3E;dashed=0;",130,130,"Spot Fleet","Spot Fleet",null,null,this.getTagsForStencil(b,"spot fleet","aws amazon web service groups group light").join(" "))])}; +Sidebar.prototype.addAWS4bGroupsDarkPalette=function(a,b,e){this.addPaletteFunctions("aws4bGroups Dark","AWS18 / Groups (dark)",!1,[this.createVertexTemplateEntry(a+"group;grIcon="+b+".group_aws_cloud;strokeColor=#858B94;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#858B94;dashed=0;",130,130,"AWS Cloud","AWS Cloud",null,null,this.getTagsForStencil(b,"cloud","aws amazon web service groups group dark").join(" ")),this.createVertexTemplateEntry(a+"group;grIcon="+b+".group_region;strokeColor=#B6BABF;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#B6BABF;dashed=1;", +130,130,"Region","Region",null,null,this.getTagsForStencil(b,"region","aws amazon web service groups group dark").join(" ")),this.createVertexTemplateEntry(a+"group;grIcon="+b+".group_vpc;strokeColor=#B6BABF;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#B6BABF;dashed=0;",130,130,"VPC","VPC",null,null,this.getTagsForStencil(b,"vpc virtual private cloud","aws amazon web service groups group dark").join(" ")),this.createVertexTemplateEntry(a+"group;grIcon="+b+".group_availability_zone;strokeColor=#E8E8E8;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#E8E8E8;dashed=1;", +130,130,"Availability zone","Availability zone",null,null,this.getTagsForStencil(b,"availability zone","aws amazon web service groups group dark").join(" ")),this.createVertexTemplateEntry(a+"group;grIcon="+b+".group_subnet;strokeColor=#E8E8E8;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#E8E8E8;dashed=0;",130,130,"Subnet","Subnet",null,null,this.getTagsForStencil(b,"subnet","aws amazon web service groups group dark").join(" ")),this.createVertexTemplateEntry(a+"group;grIcon="+ +b+".group_on_premise;strokeColor=#858B94;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#858B94;dashed=0;",130,130,"On-Premise","On-Premise",null,null,this.getTagsForStencil(b,"on premise","aws amazon web service groups group dark").join(" ")),this.createVertexTemplateEntry(a+"groupCenter;grIcon="+b+".group_auto_scaling_group;grStroke=0;strokeColor=#B6BABF;fillColor=#47515E;verticalAlign=top;align=center;fontColor=#B6BABF;dashed=0;spacingTop=25;",130,130,"Auto Scaling Group", +"Auto Scaling Group",null,null,this.getTagsForStencil(b,"auto scaling","aws amazon web service groups group dark").join(" ")),this.createVertexTemplateEntry(a+"groupCenter;grIcon="+b+".group_elastic_load_balancing;grStroke=1;strokeColor=#00A1C9;fillColor=none;verticalAlign=top;align=center;fontColor=#00A1C9;dashed=0;spacingTop=25;",130,130,"Elastic Load Balancing","Elastic Load Balancing",null,null,this.getTagsForStencil(b,"elastic load balancing","aws amazon web service groups group dark").join(" ")), +this.createVertexTemplateEntry("outlineConnect=0;gradientColor=none;html=1;whiteSpace=wrap;fontSize=12;fontStyle=0;strokeColor=#858B94;fillColor=none;verticalAlign=top;align=center;fontColor=#858B94;dashed=1;spacingTop=3;",130,130,"Generic Group","Generic Group",null,null,this.getTagsForStencil(b,"generic","aws amazon web service groups group dark").join(" ")),this.createVertexTemplateEntry("outlineConnect=0;gradientColor=none;html=1;whiteSpace=wrap;fontSize=12;fontStyle=0;strokeColor=#FF9900;fillColor=none;verticalAlign=top;align=center;fontColor=#FF9900;dashed=0;spacingTop=3;", +130,130,"Highlight","Highlight",null,null,this.getTagsForStencil(b,"highlight","aws amazon web service groups group dark").join(" ")),this.createVertexTemplateEntry(a+"group;grIcon="+b+".group_aws_step_functions_workflow;strokeColor=#E8E8E8;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#E8E8E8;dashed=0;",130,130,"AWS Step Functions workflow","AWS Step Functions workflow",null,null,this.getTagsForStencil(b,"step functions workflow","aws amazon web service groups group dark").join(" ")), +this.createVertexTemplateEntry(a+"group;grIcon="+b+".group_spot_fleet;strokeColor=#FFFFFF;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#FFFFFF;dashed=0;",130,130,"Spot Fleet","Spot Fleet",null,null,this.getTagsForStencil(b,"spot fleet","aws amazon web service groups group dark").join(" "))])};Sidebar.prototype.addAWS4bAnalyticsPalette=function(a,b,e,c,d,f,g){this.addPaletteFunctions("aws4bAnalytics","AWS18 / Analytics",!1,[this.createVertexTemplateEntry(c+"productIcon;prIcon="+ +f+".athena;",a,b+10,"Amazon Athena",null,null,null,this.getTagsForStencil(f,"athena","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".cloudsearch;",a,b+10,"Amazon CloudSearch",null,null,null,this.getTagsForStencil(f,"cloudsearch cloud search","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".emr;",a,b,"Amazon EMR",null,null,null,this.getTagsForStencil(f,"emr","aws amazon web service analytics").join(" ")), +this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".elasticsearch_service;",a,b+20,"Amazon Elasticsearch Service",null,null,null,this.getTagsForStencil(f,"elasticsearch elastic search service","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".kinesis;",a,b+10,"Amazon Kinesis",null,null,null,this.getTagsForStencil(f,"kinesis","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".kinesis_data_analytics;", +a,b+20,"Amazon Kinesis Data Analytics",null,null,null,this.getTagsForStencil(f,"kinesis data analytics","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".kinesis_data_firehose;",a,b+20,"Amazon Kinesis Data Firehose",null,null,null,this.getTagsForStencil(f,"kinesis data firehose","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".kinesis_data_streams;",a,b+20,"Amazon Kinesis Data Streams", +null,null,null,this.getTagsForStencil(f,"kinesis data streams","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".kinesis_video_streams;",a,b+20,"Amazon Kinesis Video Streams",null,null,null,this.getTagsForStencil(f,"kinesis video streams","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".redshift;",a,b+10,"Amazon Redshift",null,null,null,this.getTagsForStencil(f,"redshift","aws amazon web service analytics").join(" ")), +this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".quicksight;",a,b+10,"Amazon QuickSight",null,null,null,this.getTagsForStencil(f,"quicksight quick sight","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".data_pipeline;",a,b+10,"AWS Data Pipeline",null,null,null,this.getTagsForStencil(f,"data pipeline","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".glue;",a,b,"AWS Glue",null, +null,null,this.getTagsForStencil(f,"glue","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".search_documents;",e,e,"Search\ndocuments",null,null,null,this.getTagsForStencil(f,"search documents","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".cluster;",e,e,"Cluster",null,null,null,this.getTagsForStencil(f,"cluster","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(d+ +"resourceIcon;resIcon="+f+".hdfs_cluster;",e,e,"HDFS cluster",null,null,null,this.getTagsForStencil(f,"hdfs cluster","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".emr_engine;",e,e,"EMR engine",null,null,null,this.getTagsForStencil(f,"emr engine","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".emr_engine_mapr_m3;",e,e,"EMR engine\nMapR M3",null,null,null,this.getTagsForStencil(f, +"emr engine mapr m3","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".emr_engine_mapr_m5;",e,e,"EMR engine\nMapR M5",null,null,null,this.getTagsForStencil(f,"emr engine mapr m5","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".emr_engine_mapr_m7;",e,e,"EMR engine\nMapR M7",null,null,null,this.getTagsForStencil(f,"emr engine mapr m7","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(d+ +"resourceIcon;resIcon="+f+".dense_compute_node;",e,e,"Dense\ncompute Node",null,null,null,this.getTagsForStencil(f,"dense compute node","aws amazon web service analytics").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".dense_storage_node;",e,e,"Dense\nstorage Node",null,null,null,this.getTagsForStencil(f,"dense storage node","aws amazon web service analytics").join(" "))])};Sidebar.prototype.addAWS4bApplicationIntegrationPalette=function(a,b,e,c,d,f,g){this.addPaletteFunctions("aws4bApplication Integration", +"AWS18 / Application Integration",!1,[this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".step_functions;",a,b+10,"AWS Step Functions",null,null,null,this.getTagsForStencil(f,"step functions","aws amazon web service application integration").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".mq;",a,b,"Amazon MQ",null,null,null,this.getTagsForStencil(f,"mq","aws amazon web service application integration").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+ +f+".sns;",a,b,"Amazon SNS",null,null,null,this.getTagsForStencil(f,"sns","aws amazon web service application integration").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".sqs;",a,b,"Amazon SQS",null,null,null,this.getTagsForStencil(f,"sqs","aws amazon web service application integration").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".appsync;",a,b,"AWS AppSync",null,null,null,this.getTagsForStencil(f,"appsync","aws amazon web service application integration").join(" ")), +this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".email_notification;",e,e,"Email\nnotification",null,null,null,this.getTagsForStencil(f,"email notification","aws amazon web service application integration").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".http_notification;",e,e,"HTTP\nnotification",null,null,null,this.getTagsForStencil(f,"http notification","aws amazon web service application integration").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+ +f+".topic;",e,e,"Topic",null,null,null,this.getTagsForStencil(f,"topic","aws amazon web service application integration").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".message;",e,e,"Message",null,null,null,this.getTagsForStencil(f,"message","aws amazon web service application integration").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".queue;",e,e,"Queue",null,null,null,this.getTagsForStencil(f,"queue","aws amazon web service application integration").join(" "))])}; +Sidebar.prototype.addAWS4bARVRPalette=function(a,b,e,c,d,f,g){this.addPaletteFunctions("aws4bAR VR","AWS18 / AR & VR",!1,[this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".sumerian;",a,b+10,"Amazon Sumerian",null,null,null,this.getTagsForStencil(f,"sumerian","aws amazon web service ar vr augmented virtual reality").join(" "))])};Sidebar.prototype.addAWS4bCostManagementPalette=function(a,b,e,c,d,f,g){this.addPaletteFunctions("aws4bCost Management","AWS18 / Cost Management",!1,[this.createVertexTemplateEntry(c+ +"productIcon;prIcon="+f+".cost_explorer;",a,b+10,"AWS Cost Explorer",null,null,null,this.getTagsForStencil(f,"cost explorer","aws amazon web service cost management").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".budgets;",a,b,"AWS Budgets",null,null,null,this.getTagsForStencil(f,"budgets","aws amazon web service cost management").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".cost_and_usage_report;",a,b+10,"AWS Cost and Usage Report",null,null,null, +this.getTagsForStencil(f,"cost usage report","aws amazon web service cost management").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".reserved_instance_reporting;",a,b+20,"Reserved Instance Reporting",null,null,null,this.getTagsForStencil(f,"reserved instance reporting","aws amazon web service cost management").join(" "))])};Sidebar.prototype.addAWS4bBusinessProductivityPalette=function(a,b,e,c,d,f,g){this.addPaletteFunctions("aws4bBusiness Productivity","AWS18 / Business Productivity", +!1,[this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".alexa_for_business;",a,b+10,"Alexa for Business",null,null,null,this.getTagsForStencil(f,"alexa for business","aws amazon web service business productivity").join(" "))])};Sidebar.prototype.addAWS4bComputePalette=function(a,b,e,c,d,f,g){this.addPaletteFunctions("aws4bCompute","AWS18 / Compute",!1,[this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".ec2;",a,b,"Amazon EC2",null,null,null,this.getTagsForStencil(f,"ec2","aws amazon web service compute").join(" ")), +this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".ecr;",a,b,"Amazon ECR",null,null,null,this.getTagsForStencil(f,"ecr","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".ecs;",a,b,"Amazon ECS",null,null,null,this.getTagsForStencil(f,"ecs","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".eks;",a,b,"Amazon EKS",null,null,null,this.getTagsForStencil(f,"eks","aws amazon web service compute").join(" ")), +this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".lightsail;",a,b+10,"Amazon Lightsail",null,null,null,this.getTagsForStencil(f,"lightsail","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".batch;",a,b,"AWS Batch",null,null,null,this.getTagsForStencil(f,"batch","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".elastic_beanstalk;",a,b+10,"AWS Elastic Beanstalk",null,null,null,this.getTagsForStencil(f, +"elastic beanstalk","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".fargate;",a,b,"AWS Fargate",null,null,null,this.getTagsForStencil(f,"fargate","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".lambda;",a,b,"AWS Lambda",null,null,null,this.getTagsForStencil(f,"lambda","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".serverless_application_repository;", +a,b+35,"AWS Serverless Application Repository",null,null,null,this.getTagsForStencil(f,"serverless application repository","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".elastic_load_balancing;",a,b+10,"Elastic Load Balancing",null,null,null,this.getTagsForStencil(f,"elastic load balancing","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".application_load_balancer;",a,b+10,"Application Load Balancer", +null,null,null,this.getTagsForStencil(f,"application load balancer","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".classic_load_balancer;",a,b+10,"Classic Load Balancer",null,null,null,this.getTagsForStencil(f,"classic load balancer","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".network_load_balancer;",a,b+10,"Network Load Balancer",null,null,null,this.getTagsForStencil(f,"network load balancer", +"aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".vmware_cloud_on_aws;",a,b+10,"VMware Cloud on AWS",null,null,null,this.getTagsForStencil(f,"vmware cloud on","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".ami;",e,e,"AMI",null,null,null,this.getTagsForStencil(f,"ami","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".auto_scaling;", +e,e,"Auto Scaling",null,null,null,this.getTagsForStencil(f,"auto scaling","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".db_on_instance;",e,e,"DB on\nInstance",null,null,null,this.getTagsForStencil(f,"db on instance database","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".elastic_ip_address;",e,e,"Elastic IP\nAddress",null,null,null,this.getTagsForStencil(f,"elastic ip address internet protocol", +"aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".instance_with_cloudwatch;",e,e,"Instance with\nCloudWatch",null,null,null,this.getTagsForStencil(f,"instance with cloudwatch","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".instance;",e,e,"Instance",null,null,null,this.getTagsForStencil(f,"instance","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+ +f+".instances;",e,e,"Instances",null,null,null,this.getTagsForStencil(f,"instances","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".optimized_instance;",e,e,"Optimized\nInstance",null,null,null,this.getTagsForStencil(f,"optimized_instance","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".rescue;",e,e,"Rescue",null,null,null,this.getTagsForStencil(f,"rescue","aws amazon web service compute").join(" ")), +this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".spot_instance;",e,e,"Spot Instance",null,null,null,this.getTagsForStencil(f,"spot instance","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".x1_instance;",e,e,"X1 Instance",null,null,null,this.getTagsForStencil(f,"x1 instance","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".registry;",e,e,"Registry",null,null,null,this.getTagsForStencil(f, +"registry","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".container_1;",e,e,"Container 1",null,null,null,this.getTagsForStencil(f,"container","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".container_2;",e,e,"Container 2",null,null,null,this.getTagsForStencil(f,"container","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".container_3;", +e,e,"Container 3",null,null,null,this.getTagsForStencil(f,"container","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".application;",e,e,"Application",null,null,null,this.getTagsForStencil(f,"application","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".deployment;",e,e,"Deployment",null,null,null,this.getTagsForStencil(f,"deployment","aws amazon web service compute").join(" ")),this.createVertexTemplateEntry(d+ +"resourceIcon;resIcon="+f+".lambda_function;",e,e,"Lambda\nFunction",null,null,null,this.getTagsForStencil(f,"lambda function","aws amazon web service compute").join(" "))])};Sidebar.prototype.addAWS4bCustomerEngagementPalette=function(a,b,e,c,d,f,g){this.addPaletteFunctions("aws4bCustomer Engagement","AWS18 / Customer Engagement",!1,[this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".connect;",a,b+10,"Amazon Connect",null,null,null,this.getTagsForStencil(f,"connect","aws amazon web service customer engagement").join(" ")), +this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".pinpoint;",a,b+10,"Amazon Pinpoint",null,null,null,this.getTagsForStencil(f,"pinpoint","aws amazon web service customer engagement").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".simple_email_service;",a,b+10,"Amazon Simple Email Service",null,null,null,this.getTagsForStencil(f,"simple email service","aws amazon web service customer engagement").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+ +".email;",e,e,"Email",null,null,null,this.getTagsForStencil(f,"email","aws amazon web service customer engagement").join(" "))])};Sidebar.prototype.addAWS4bDatabasePalette=function(a,b,e,c,d,f,g){this.addPaletteFunctions("aws4bDatabase","AWS18 / Database",!1,[this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".aurora;",a,b+10,"Amazon\nAurora",null,null,null,this.getTagsForStencil(f,"aurora","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+ +f+".dynamodb;",a,b+10,"Amazon DynamoDB",null,null,null,this.getTagsForStencil(f,"dynamodb","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".elasticache;",a,b+10,"Amazon ElastiCache",null,null,null,this.getTagsForStencil(f,"elasticache","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".elasticache_for_memcached;",a,b+20,"Amazon ElastiCache for Memcached",null,null,null,this.getTagsForStencil(f, +"elasticache for memcached","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".elasticache_for_redis;",a,b+20,"Amazon ElastiCache for Redis",null,null,null,this.getTagsForStencil(f,"elasticache for redis","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".neptune;",a,b+10,"Amazon Neptune",null,null,null,this.getTagsForStencil(f,"neptune","aws amazon web service db database").join(" ")), +this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".rds;",a,b,"Amazon RDS",null,null,null,this.getTagsForStencil(f,"rds","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".redshift;",a,b+10,"Amazon Redshift",null,null,null,this.getTagsForStencil(f,"redshift","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".database_migration_service;",a,b+20,"AWS Database Migration Service",null, +null,null,this.getTagsForStencil(f,"db database migration service","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".attribute;",e,e,"Attribute",null,null,null,this.getTagsForStencil(f,"attribute","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".attributes;",e,e,"Attributes",null,null,null,this.getTagsForStencil(f,"attributes","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+ +"resourceIcon;resIcon="+f+".item;",e,e,"Item",null,null,null,this.getTagsForStencil(f,"item","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".items;",e,e,"Items",null,null,null,this.getTagsForStencil(f,"items","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".global_secondary_index;",e,e,"Global\nsecondary\nindex",null,null,null,this.getTagsForStencil(f,"global secondary index", +"aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".table;",e,e,"Table",null,null,null,this.getTagsForStencil(f,"table","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".cache_node;",e,e,"Cache node",null,null,null,this.getTagsForStencil(f,"cache node","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".db_instance;",e,e,"DB instance", +null,null,null,this.getTagsForStencil(f,"db instance","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".db_instance_standby;",e,e,"DB instance\nstandby",null,null,null,this.getTagsForStencil(f,"db instance standby","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".db_instance_read_replica;",e,e,"DB instance\nread replica",null,null,null,this.getTagsForStencil(f,"db instance read replica", +"aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".piop;",e,e,"PIOP",null,null,null,this.getTagsForStencil(f,"piop","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".ms_sql_instance;",e,e,"MS SQL\ninstance",null,null,null,this.getTagsForStencil(f,"ms sql instance","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".ms_sql_instance_alternate;", +e,e,"MS SQL\ninstance\nalternate",null,null,null,this.getTagsForStencil(f,"ms sql instance","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".mysql_db_instance;",e,e,"MySQL DB \ninstance",null,null,null,this.getTagsForStencil(f,"mysql db database instance","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".mysql_db_instance_alternate;",e,e,"MySQL DB \ninstance\nalternate",null,null, +null,this.getTagsForStencil(f,"mysql db database instance alternate","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".oracle_db_instance;",e,e,"Oracle DB \ninstance",null,null,null,this.getTagsForStencil(f,"oracle db database instance","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".oracle_db_instance_alternate;",e,e,"Oracle DB \ninstance\nalternate",null,null,null,this.getTagsForStencil(f, +"oracle db database instance alternate","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".sql_primary;",e,e,"SQL primary",null,null,null,this.getTagsForStencil(f,"sql primary","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".sql_replica;",e,e,"SQL replica",null,null,null,this.getTagsForStencil(f,"sql replica","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+ +"resourceIcon;resIcon="+f+".postgresql_instance;",e,e,"PostgreSQL\ninstance",null,null,null,this.getTagsForStencil(f,"postresql instance","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".dense_compute_node;",e,e,"Dense\ncompute node",null,null,null,this.getTagsForStencil(f,"dense compute node","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".dense_storage_node;",e,e,"Dense\nstorage node", +null,null,null,this.getTagsForStencil(f,"dense storage node","aws amazon web service db database").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".database_migration_workflow_job;",e,e,"Database\nmigration\nworkflow/job",null,null,null,this.getTagsForStencil(f,"database migration workflow job","aws amazon web service db database").join(" "))])};Sidebar.prototype.addAWS4bDesktopAppStreamingPalette=function(a,b,e,c,d,f,g){this.addPaletteFunctions("aws4bDesktop App Streaming", +"AWS18 / Desktop & App Streaming",!1,[this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".appstream_20;",a,b+10,"Amazon AppStream 2.0",null,null,null,this.getTagsForStencil(f,"appstream","aws amazon web service db database").join(" "))])};Sidebar.prototype.addAWS4bDeveloperToolsPalette=function(a,b,e,c,d,f,g){this.addPaletteFunctions("aws4bDeveloper Tools","AWS18 / Developer Tools",!1,[this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".codestar;",a,b,"AWS CodeStar",null,null,null,this.getTagsForStencil(f, +"codestar","aws amazon web service dev developer tools").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".cloud9;",a,b,"AWS Cloud9",null,null,null,this.getTagsForStencil(f,"cloud9","aws amazon web service dev developer tools").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".codebuild;",a,b+10,"AWS CodeBuild",null,null,null,this.getTagsForStencil(f,"codebuild","aws amazon web service dev developer tools").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+ +f+".codecommit;",a,b+10,"AWS CodeCommit",null,null,null,this.getTagsForStencil(f,"codecommit","aws amazon web service dev developer tools").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".codedeploy;",a,b+10,"AWS CodeDeploy",null,null,null,this.getTagsForStencil(f,"codedeploy","aws amazon web service dev developer tools").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".codepipeline;",a,b+10,"AWS CodePipeline",null,null,null,this.getTagsForStencil(f,"codepipeline", +"aws amazon web service dev developer tools").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".command_line_interface;",a,b+20,"AWS\nCommand Line Interface",null,null,null,this.getTagsForStencil(f,"command line interface","aws amazon web service dev developer tools").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".tools_and_sdks;",a,b+10,"AWS Tools and SDKs",null,null,null,this.getTagsForStencil(f,"tools and sdks software development kit","aws amazon web service dev developer tools").join(" ")), +this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".xray;",a,b,"AWS X-Ray",null,null,null,this.getTagsForStencil(f,"ray xray","aws amazon web service dev developer tools").join(" "))])};Sidebar.prototype.addAWS4bGameDevelopmentPalette=function(a,b,e,c,d,f,g){this.addPaletteFunctions("aws4bGame Development","AWS18 / Game Development",!1,[this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".gamelift;",a,b+10,"Amazon GameLift",null,null,null,this.getTagsForStencil(f,"gamelift","aws amazon web service game development").join(" "))])}; +Sidebar.prototype.addAWS4bInternetOfThingsPalette=function(a,b,e,c,d,f,g){this.addPaletteFunctions("aws4bInternet of Things","AWS18 / Internet of Things",!1,[this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".iot_core;",a,b+10,"Amazon IoT Core",null,null,null,this.getTagsForStencil(f,"core","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".freertos;",a,b+10,"Amazon FreeRTOS",null,null,null,this.getTagsForStencil(f,"freertos free rtos", +"aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".greengrass;",a,b+10,"AWS Greengrass",null,null,null,this.getTagsForStencil(f,"greengrass","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".iot_1click;",a,b+10,"AWS IoT\n1-Click",null,null,null,this.getTagsForStencil(f,"1click one click","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(c+ +"productIcon;prIcon="+f+".iot_analytics;",a,b+10,"AWS IoT Analytics",null,null,null,this.getTagsForStencil(f,"analytics","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".iot_button;",a,b+10,"AWS IoT Button",null,null,null,this.getTagsForStencil(f,"button","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".iot_device_defender;",a,b+20,"AWS IoT Device Defender",null, +null,null,this.getTagsForStencil(f,"device defender","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".iot_device_management;",a,b+20,"AWS IoT Device Management",null,null,null,this.getTagsForStencil(f,"device management","aws amazon web service internet of things iot").join(" "))])};Sidebar.prototype.addAWS4bIOTThingsPalette=function(a,b,e,c,d,f,g){this.addPaletteFunctions("aws4bIoT Things","AWS18 / IoT Things",!1,[this.createVertexTemplateEntry(d+ +"resourceIcon;resIcon="+f+".bank;",e,e,"Bank",null,null,null,this.getTagsForStencil(f,"bank","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".bycicle;",e,e,"Bycicle",null,null,null,this.getTagsForStencil(f,"bycicle","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".camera;",e,e,"Camera",null,null,null,this.getTagsForStencil(f,"camera","aws amazon web service internet of things iot").join(" ")), +this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".car;",e,e,"Car",null,null,null,this.getTagsForStencil(f,"car","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".cart;",e,e,"Cart",null,null,null,this.getTagsForStencil(f,"cart","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".coffee_pot;",e,e,"Coffee Pot",null,null,null,this.getTagsForStencil(f,"coffee pot", +"aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".door_lock;",e,e,"Door Lock",null,null,null,this.getTagsForStencil(f,"door lock","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".factory;",e,e,"Factory",null,null,null,this.getTagsForStencil(f,"factory","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+ +f+".generic;",e,e,"Generic",null,null,null,this.getTagsForStencil(f,"generic","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".house;",e,e,"House",null,null,null,this.getTagsForStencil(f,"house","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".lightbulb;",e,e,"Lightbulb",null,null,null,this.getTagsForStencil(f,"lightbulb","aws amazon web service internet of things iot").join(" ")), +this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".medical_emergency;",e,e,"Medical\nEmergency",null,null,null,this.getTagsForStencil(f,"medical emergency","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".police_emergency;",e,e,"Police\nEmergency",null,null,null,this.getTagsForStencil(f,"police emergency","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+ +f+".thermostat;",e,e,"Thermostat",null,null,null,this.getTagsForStencil(f,"thermostat","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".travel;",e,e,"Travel",null,null,null,this.getTagsForStencil(f,"travel","aws amazon web service internet of things iot").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".utility;",e,e,"Utility",null,null,null,this.getTagsForStencil(f,"utility","aws amazon web service internet of things iot").join(" ")), +this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".windfarm;",e,e,"Windfarm",null,null,null,this.getTagsForStencil(f,"windfarm","aws amazon web service internet of things iot").join(" "))])};Sidebar.prototype.addAWS4bIOTResourcesPalette=function(a,b,e,c,d,f,g){this.addPaletteFunctions("aws4bIoT Resources","AWS18 / IoT Resources",!1,[this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".action;",e,e,"Action",null,null,null,this.getTagsForStencil(f,"action","aws amazon web service internet of things iot resources").join(" ")), +this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".actuator;",e,e,"Actuator",null,null,null,this.getTagsForStencil(f,"actuator","aws amazon web service internet of things iot resources").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".alexa_enabled_device;",e,e,"Alexa enabled\ndevice",null,null,null,this.getTagsForStencil(f,"alexa enabled device","aws amazon web service internet of things iot resources").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+ +f+".alexa_skill;",e,e,"Alexa skill",null,null,null,this.getTagsForStencil(f,"alexa skill","aws amazon web service internet of things iot resources").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".alexa_smart_home_skill;",e,e,"Alexa smart\nhome skill",null,null,null,this.getTagsForStencil(f,"alexa smart home skill","aws amazon web service internet of things iot resources").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".alexa_voice_service;",e,e,"Alexa voice\nservice", +null,null,null,this.getTagsForStencil(f,"alexa voice service","aws amazon web service internet of things iot resources").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".certificate_manager;",e,e,"Certificate\nmanager",null,null,null,this.getTagsForStencil(f,"certificate manager","aws amazon web service internet of things iot resources").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".desired_state;",e,e,"Desired state",null,null,null,this.getTagsForStencil(f, +"desired state","aws amazon web service internet of things iot resources").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".echo;",e,e,"Echo",null,null,null,this.getTagsForStencil(f,"echo","aws amazon web service internet of things iot resources").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".firetv_stick;",e,e,"FireTV stick",null,null,null,this.getTagsForStencil(f,"firetv fire tv stick","aws amazon web service internet of things iot resources").join(" ")), +this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".firetv;",e,e,"FireTV",null,null,null,this.getTagsForStencil(f,"firetv fire tv","aws amazon web service internet of things iot resources").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".hardware_board;",e,e,"Hardware\nboard",null,null,null,this.getTagsForStencil(f,"hardware board","aws amazon web service internet of things iot resources").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".http2_protocol;", +e,e,"HTTP/2\nprotocol",null,null,null,this.getTagsForStencil(f,"http2 protocol","aws amazon web service internet of things iot resources").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".http_protocol;",e,e,"HTTP\nprotocol",null,null,null,this.getTagsForStencil(f,"http protocol","aws amazon web service internet of things iot resources").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".lambda_function;",e,e,"Lambda Function",null,null,null,this.getTagsForStencil(f, +"lambda function","aws amazon web service internet of things iot resources").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".mqtt_protocol;",e,e,"MQTT\nprotocol",null,null,null,this.getTagsForStencil(f,"mqtt protocol","aws amazon web service internet of things iot resources").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".policy;",e,e,"Policy",null,null,null,this.getTagsForStencil(f,"policy","aws amazon web service internet of things iot resources").join(" ")), +this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".reported_state;",e,e,"Reported\nstate",null,null,null,this.getTagsForStencil(f,"reported state","aws amazon web service internet of things iot resources").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".rule;",e,e,"Rule",null,null,null,this.getTagsForStencil(f,"rule","aws amazon web service internet of things iot resources").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".sensor;",e,e,"Sensor", +null,null,null,this.getTagsForStencil(f,"sensor","aws amazon web service internet of things iot resources").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".servo;",e,e,"Servo",null,null,null,this.getTagsForStencil(f,"servo","aws amazon web service internet of things iot resources").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".shadow;",e,e,"Shadow",null,null,null,this.getTagsForStencil(f,"shadow","aws amazon web service internet of things iot resources").join(" ")), +this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".simulator;",e,e,"Simulator",null,null,null,this.getTagsForStencil(f,"simulator","aws amazon web service internet of things iot resources").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".topic_2;",e,e,"Topic",null,null,null,this.getTagsForStencil(f,"topic","aws amazon web service internet of things iot resources").join(" "))])};Sidebar.prototype.addAWS4bMachineLearningPalette=function(a,b,e,c,d,f,g){this.addPaletteFunctions("aws4bMachine Learning", +"AWS18 / Machine Learning",!1,[this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".sagemaker;",a,b+10,"Amazon SageMaker",null,null,null,this.getTagsForStencil(f,"sagemaker","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".comprehend;",a,b+10,"Amazon Comprehend",null,null,null,this.getTagsForStencil(f,"comprehend","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".lex;", +a,b,"Amazon Lex",null,null,null,this.getTagsForStencil(f,"lex","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".polly;",a,b,"Amazon Polly",null,null,null,this.getTagsForStencil(f,"polly","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".rekognition;",a,b+10,"Amazon Rekognition",null,null,null,this.getTagsForStencil(f,"rekognition","aws amazon web service machine learning").join(" ")), +this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".rekognition_image;",a,b+20,"Amazon Rekognition Image",null,null,null,this.getTagsForStencil(f,"rekognition image","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".rekognition_video;",a,b+20,"Amazon Rekognition Video",null,null,null,this.getTagsForStencil(f,"rekognition video","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+ +f+".translate;",a,b+10,"Amazon Translate",null,null,null,this.getTagsForStencil(f,"translate","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".transcribe;",a,b+10,"Amazon Transcribe",null,null,null,this.getTagsForStencil(f,"transcribe","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".deep_learning_amis;",a,b+10,"AWS Deep Learning AMIs",null,null,null,this.getTagsForStencil(f, +"deep learning amis","aws amazon web service machine learning").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".deeplens;",a,b,"AWS DeepLens",null,null,null,this.getTagsForStencil(f,"deeplens","aws amazon web service machine learning").join(" "))])};Sidebar.prototype.addAWS4bManagementToolsPalette=function(a,b,e,c,d,f,g){this.addPaletteFunctions("aws4bManagement Tools","AWS18 / Management Tools",!1,[this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".cloudwatch;",a,b+ +10,"Amazon CloudWatch",null,null,null,this.getTagsForStencil(f,"cloudwatch","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".autoscaling;",a,b+10,"AWS Auto Scaling",null,null,null,this.getTagsForStencil(f,"auto scaling","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".cloudformation;",a,b+10,"AWS CloudFormation",null,null,null,this.getTagsForStencil(f,"cloudformation","aws amazon web service management tools").join(" ")), +this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".cloudtrail;",a,b+10,"AWS\nCloudTrail",null,null,null,this.getTagsForStencil(f,"cloudtrail","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".command_line_interface;",a,b+20,"AWS\nCommand Line Interface",null,null,null,this.getTagsForStencil(f,"command line interface","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+ +".config;",a,b,"AWS Config",null,null,null,this.getTagsForStencil(f,"config","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".management_console;",a,b+20,"AWS Management Console",null,null,null,this.getTagsForStencil(f,"management console","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".managed_services;",a,b+10,"AWS Managed Services",null,null,null,this.getTagsForStencil(f, +"managed services","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".opsworks;",a,b+10,"AWS OpsWorks",null,null,null,this.getTagsForStencil(f,"opsworks","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".service_catalog;",a,b+10,"AWS Service Catalog",null,null,null,this.getTagsForStencil(f,"service catalog","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(c+ +"productIcon;prIcon="+f+".personal_health_dashboard;",a,b+20,"AWS Personal Health Dashboard",null,null,null,this.getTagsForStencil(f,"personal health dashboard","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".systems_manager;",a,b+10,"AWS Systems Manager",null,null,null,this.getTagsForStencil(f,"systems manager","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".trusted_advisor;", +a,b+10,"AWS Trusted Advisor",null,null,null,this.getTagsForStencil(f,"trusted advisor","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".marketplace;",a,b+10,"AWS Marketplace",null,null,null,this.getTagsForStencil(f,"marketplace","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".alarm;",e,e,"Alarm",null,null,null,this.getTagsForStencil(f,"alarm","aws amazon web service management tools").join(" ")), +this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".event_event_based;",e,e,"Event (event-\nbased)",null,null,null,this.getTagsForStencil(f,"event event based","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".event_time_based;",e,e,"Event (time-\nbased)",null,null,null,this.getTagsForStencil(f,"event time based","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+ +".rule_2;",e,e,"Rule",null,null,null,this.getTagsForStencil(f,"rule","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".change_set;",e,e,"Change set",null,null,null,this.getTagsForStencil(f,"change set","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".stack;",e,e,"Stack",null,null,null,this.getTagsForStencil(f,"stack","aws amazon web service management tools").join(" ")), +this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".template;",e,e,"Template",null,null,null,this.getTagsForStencil(f,"template","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".apps;",e,e,"Apps",null,null,null,this.getTagsForStencil(f,"apps","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".deployments;",e,e,"Deployments",null,null,null,this.getTagsForStencil(f, +"deployments","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".instances_2;",e,e,"Instances",null,null,null,this.getTagsForStencil(f,"instances","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".layers;",e,e,"Layers",null,null,null,this.getTagsForStencil(f,"layers","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+ +f+".monitoring;",e,e,"Monitoring",null,null,null,this.getTagsForStencil(f,"monitoring","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".permissions;",e,e,"Permissions",null,null,null,this.getTagsForStencil(f,"permissions","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".resources;",e,e,"Resources",null,null,null,this.getTagsForStencil(f,"resources","aws amazon web service management tools").join(" ")), +this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".stack2;",e,e,"Stack2",null,null,null,this.getTagsForStencil(f,"stack stack2","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".automation;",e,e,"Automation",null,null,null,this.getTagsForStencil(f,"automation","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".documents;",e,e,"Documents",null,null,null,this.getTagsForStencil(f, +"documents","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".inventory;",e,e,"Inventory",null,null,null,this.getTagsForStencil(f,"inventory","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".maintenance_windows;",e,e,"Maintenance\nwindows",null,null,null,this.getTagsForStencil(f,"maintenance windows","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(d+ +"resourceIcon;resIcon="+f+".parameter_store;",e,e,"Parameter\nStore",null,null,null,this.getTagsForStencil(f,"parameter store","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".patch_manager;",e,e,"Patch\nmanager",null,null,null,this.getTagsForStencil(f,"patch manager","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".patch_manager;",e,e,"Patch\nmanager",null,null,null, +this.getTagsForStencil(f,"patch manager","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".run_command;",e,e,"Run\ncommand",null,null,null,this.getTagsForStencil(f,"run command","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".state_manager;",e,e,"State\nmanager",null,null,null,this.getTagsForStencil(f,"state manager","aws amazon web service management tools").join(" ")), +this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".checklist_cost;",e,e,"Checklist cost",null,null,null,this.getTagsForStencil(f,"checklist cost","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".checklist_fault_tolerant;",e,e,"Checklist fault\ntolerant",null,null,null,this.getTagsForStencil(f,"checklist fault tolerant","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+ +f+".checklist_performance;",e,e,"Checklist\nperformance",null,null,null,this.getTagsForStencil(f,"checklist performance","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".checklist_security;",e,e,"Checklist\nsecurity",null,null,null,this.getTagsForStencil(f,"checklist security","aws amazon web service management tools").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".checklist;",e,e,"Checklist",null,null,null, +this.getTagsForStencil(f,"checklist","aws amazon web service management tools").join(" "))])};Sidebar.prototype.addAWS4bMediaServicesPalette=function(a,b,e,c,d,f,g){this.addPaletteFunctions("aws4bMedia Services","AWS18 / Media Services",!1,[this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".elastic_transcoder;",a,b+10,"Amazon Elastic Transcoder",null,null,null,this.getTagsForStencil(f,"elastic transcoder","aws amazon web service media services").join(" ")),this.createVertexTemplateEntry(c+ +"productIcon;prIcon="+f+".kinesis_video_streams;",a,b+20,"Amazon Kinesis Video Streams",null,null,null,this.getTagsForStencil(f,"kinesis video streams","aws amazon web service media services").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".elemental_mediaconvert;",a,b+10,"AWS Elemental MediaConvert",null,null,null,this.getTagsForStencil(f,"elemental mediaconvert","aws amazon web service media services").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".elemental_medialive;", +a,b+10,"AWS Elemental MediaLive",null,null,null,this.getTagsForStencil(f,"elemental medialive","aws amazon web service media services").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".elemental_mediapackage;",a,b+10,"AWS Elemental MediaPackage",null,null,null,this.getTagsForStencil(f,"elemental mediapackage","aws amazon web service media services").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".elemental_mediastore;",a,b+10,"AWS Elemental MediaStore",null, +null,null,this.getTagsForStencil(f,"elemental mediastore","aws amazon web service media services").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".elemental_mediatailor;",a,b+10,"AWS Elemental MediaTailor",null,null,null,this.getTagsForStencil(f,"elemental mediatailor","aws amazon web service media services").join(" "))])};Sidebar.prototype.addAWS4bMigrationPalette=function(a,b,e,c,d,f,g){this.addPaletteFunctions("aws4bMigration","AWS18 / Migration",!1,[this.createVertexTemplateEntry(c+ +"productIcon;prIcon="+f+".migration_hub;",a,b+10,"AWS Migration Hub",null,null,null,this.getTagsForStencil(f,"migration hub","aws amazon web service migration").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".application_discovery_service;",a,b+35,"AWS Application Discovery Service",null,null,null,this.getTagsForStencil(f,"application discovery service","aws amazon web service migration").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".database_migration_service;", +a,b+20,"AWS Database Migration Service",null,null,null,this.getTagsForStencil(f,"db database migration service","aws amazon web service migration").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".server_migration_service;",a,b+20,"AWS Server Migration Service",null,null,null,this.getTagsForStencil(f,"server migration service","aws amazon web service migration").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".snowball;",a,b,"AWS Snowball",null,null,null, +this.getTagsForStencil(f,"snowball","aws amazon web service migration").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".snowball_edge;",a,b+10,"AWS Snowball Edge",null,null,null,this.getTagsForStencil(f,"snowball edge","aws amazon web service migration").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".snowmobile;",a,b+10,"AWS Snowmobile",null,null,null,this.getTagsForStencil(f,"snowmobile","aws amazon web service migration").join(" "))])};Sidebar.prototype.addAWS4bMobileServicesPalette= +function(a,b,e,c,d,f,g){this.addPaletteFunctions("aws4bMobile Services","AWS18 / Mobile Services",!1,[this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".appsync;",a,b,"AWS AppSync",null,null,null,this.getTagsForStencil(f,"appsync","aws amazon web service mobile services").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".api_gateway;",a,b+10,"Amazon API Gateway",null,null,null,this.getTagsForStencil(f,"api gateway application programming interface","aws amazon web service mobile services").join(" ")), +this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".device_farm;",a,b+10,"AWS Device Farm",null,null,null,this.getTagsForStencil(f,"device farm","aws amazon web service mobile services").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".mobile_hub;",a,b+10,"AWS Mobile Hub",null,null,null,this.getTagsForStencil(f,"mobile hub","aws amazon web service mobile services").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".pinpoint;",a,b+10,"Amazon Pinpoint", +null,null,null,this.getTagsForStencil(f,"pinpoint","aws amazon web service mobile services").join(" "))])};Sidebar.prototype.addAWS4bNetworkContentDeliveryPalette=function(a,b,e,c,d,f,g){this.addPaletteFunctions("aws4bNetwork Content Delivery","AWS18 / Network & Content Delivery",!1,[this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".vpc;",a,b,"Amazon VPC",null,null,null,this.getTagsForStencil(f,"vpc virtual private cloud","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(c+ +"productIcon;prIcon="+f+".api_gateway;",a,b+10,"Amazon API Gateway",null,null,null,this.getTagsForStencil(f,"api application programming interface gateway","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".cloudfront;",a,b+10,"Amazon Cloudfront",null,null,null,this.getTagsForStencil(f,"cloudfront","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".privatelink;", +a,b+10,"AWS PrivateLink",null,null,null,this.getTagsForStencil(f,"privatelink","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".route_53;",a,b+10,"Amazon Route 53",null,null,null,this.getTagsForStencil(f,"route 53","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".direct_connect;",a,b+10,"AWS Direct Connect",null,null,null,this.getTagsForStencil(f,"direct connect", +"aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".customer_gateway;",e,e,"Customer\ngateway",null,null,null,this.getTagsForStencil(f,"customer gateway","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".elastic_network_adapter;",e,e,"Elastic\nnetwork\nadapter",null,null,null,this.getTagsForStencil(f,"elastic network adapter","aws amazon web service netowrk content delivery").join(" ")), +this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".elastic_network_interface;",e,e,"Elastic\nnetwork\ninterface",null,null,null,this.getTagsForStencil(f,"elastic network interface","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".endpoints;",e,e,"Endpoints",null,null,null,this.getTagsForStencil(f,"endpoints","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+ +f+".flow_logs;",e,e,"Flow logs",null,null,null,this.getTagsForStencil(f,"flow logs","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".internet_gateway;",e,e,"Internet\ngateway",null,null,null,this.getTagsForStencil(f,"internet gateway","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".nat_gateway;",e,e,"NAT gateway",null,null,null,this.getTagsForStencil(f, +"nat gateway","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".network_access_control_list;",e,e,"Network\naccess\ncontrol list",null,null,null,this.getTagsForStencil(f,"network access control list","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".peering;",e,e,"Peering",null,null,null,this.getTagsForStencil(f,"peering","aws amazon web service netowrk content delivery").join(" ")), +this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".router;",e,e,"Router",null,null,null,this.getTagsForStencil(f,"router","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".vpn_connection;",e,e,"VPN\nConnection",null,null,null,this.getTagsForStencil(f,"vpn virtual private network connection","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".vpn_gateway;", +e,e,"VPN Gateway",null,null,null,this.getTagsForStencil(f,"vpn virtual private network gateway","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".download_distribution;",e,e,"Download\ndistribution",null,null,null,this.getTagsForStencil(f,"download distribution","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".edge_location;",e,e,"Edge location",null,null, +null,this.getTagsForStencil(f,"edge location","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".streaming_distribution;",e,e,"Streaming\ndistribution",null,null,null,this.getTagsForStencil(f,"streaming distribution","aws amazon web service netowrk content delivery").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".hosted_zone;",e,e,"Hosted zone",null,null,null,this.getTagsForStencil(f,"hosted zone","aws amazon web service netowrk content delivery").join(" ")), +this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".route_table;",e,e,"Route table",null,null,null,this.getTagsForStencil(f,"route table","aws amazon web service netowrk content delivery").join(" "))])};Sidebar.prototype.addAWS4bSecurityIdentityCompliancePalette=function(a,b,e,c,d,f,g){this.addPaletteFunctions("aws4bSecurity Identity Compliance","AWS18 / Security, Identity & Compliance",!1,[this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".identity_and_access_management;",a,b+20, +"AWS Identity and Access Management",null,null,null,this.getTagsForStencil(f,"identity and access management","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".cognito;",a,b+10,"Amazon Cognito",null,null,null,this.getTagsForStencil(f,"cognito","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".guardduty;",a,b+10,"Amazon GuardDuty",null,null,null,this.getTagsForStencil(f, +"guard duty guardduty","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".inspector;",a,b+10,"Amazon Inspector",null,null,null,this.getTagsForStencil(f,"inspector","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".artifact;",a,b,"AWS Artifact",null,null,null,this.getTagsForStencil(f,"artifact","aws amazon web service security identity compliance").join(" ")), +this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".certificate_manager_3;",a,b+10,"AWS Certificate Manager",null,null,null,this.getTagsForStencil(f,"certificate manager","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".cloudhsm;",a,b+10,"AWS CloudHSM",null,null,null,this.getTagsForStencil(f,"cloudhsm","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+ +f+".directory_service;",a,b+10,"AWS Directory Service",null,null,null,this.getTagsForStencil(f,"directory service","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".firewall_manager;",a,b+10,"AWS Firewall Manager",null,null,null,this.getTagsForStencil(f,"firewall manager","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".key_management_service;",a,b+ +20,"AWS Key Management Service",null,null,null,this.getTagsForStencil(f,"key management service","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".secrets_manager;",a,b+10,"AWS Secrets Manager",null,null,null,this.getTagsForStencil(f,"secrets manager","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".shield;",a,b,"AWS Shield",null,null,null,this.getTagsForStencil(f, +"shield","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".single_sign_on;",a,b+10,"AWS Single Sign-On",null,null,null,this.getTagsForStencil(f,"single sign on","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".waf;",a,b,"AWS WAF",null,null,null,this.getTagsForStencil(f,"waf","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(d+ +"resourceIcon;resIcon="+f+".addon;",e,e,"Add-on",null,null,null,this.getTagsForStencil(f,"addon add on","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".sts;",e,e,"AWS STS",null,null,null,this.getTagsForStencil(f,"sts","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".sts_alternate;",e,e,"AWS STS\n(alternate)",null,null,null,this.getTagsForStencil(f, +"sts alternate","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".data_encryption_key;",e,e,"Data\nencryption\nkey",null,null,null,this.getTagsForStencil(f,"data encryption key","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".encrypted_data;",e,e,"Encrypted\ndata",null,null,null,this.getTagsForStencil(f,"encrypted data","aws amazon web service security identity compliance").join(" ")), +this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".long_term_security_credential;",e,e,"Long-term\nsecurity\ncredential",null,null,null,this.getTagsForStencil(f,"long term security credential","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".mfa_token;",e,e,"MFA Token",null,null,null,this.getTagsForStencil(f,"mfa token","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(d+ +"resourceIcon;resIcon="+f+".permissions;",e,e,"Permissions",null,null,null,this.getTagsForStencil(f,"permissions","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".role;",e,e,"Role",null,null,null,this.getTagsForStencil(f,"role","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".temporary_security_credential;",e,e,"Temporary\nsecurity\ncredential", +null,null,null,this.getTagsForStencil(f,"temporary security credential","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".agent;",e,e,"Agent",null,null,null,this.getTagsForStencil(f,"agent","aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".certificate_manager_2;",e,e,"Certificate\nmanager",null,null,null,this.getTagsForStencil(f,"certificate manager", +"aws amazon web service security identity compliance").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".filtering_rule;",e,e,"Filtering rule",null,null,null,this.getTagsForStencil(f,"filtering rule","aws amazon web service security identity compliance").join(" "))])};Sidebar.prototype.addAWS4bStoragePalette=function(a,b,e,c,d,f,g){this.addPaletteFunctions("aws4bStorage","AWS18 / Storage",!1,[this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".s3;",a,b,"Amazon S3",null, +null,null,this.getTagsForStencil(f,"s3","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".elastic_block_store;",a,b+10,"Amazon Elastic Block Store",null,null,null,this.getTagsForStencil(f,"elastic block store","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".elastic_file_system;",a,b+10,"Amazon Elastic File System",null,null,null,this.getTagsForStencil(f,"elastic file system","aws amazon web service storage").join(" ")), +this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".glacier;",a,b+10,"Amazon Glacier",null,null,null,this.getTagsForStencil(f,"glacier","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".snowball;",a,b,"AWS Snowball",null,null,null,this.getTagsForStencil(f,"snowball","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".snowball_edge;",a,b+10,"AWS Snowball Edge",null,null,null,this.getTagsForStencil(f, +"snowball edge","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".snowmobile;",a,b+10,"AWS Snowmobile",null,null,null,this.getTagsForStencil(f,"snowmobile","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(c+"productIcon;prIcon="+f+".storage_gateway;",a,b+10,"AWS Storage Gateway",null,null,null,this.getTagsForStencil(f,"storage gateway","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+ +f+".bucket;",e,e,"Bucket",null,null,null,this.getTagsForStencil(f,"bucket","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".snapshot;",e,e,"Snapshot",null,null,null,this.getTagsForStencil(f,"snapshot","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".bucket_with_objects;",e,e,"Bucket with\nobjects",null,null,null,this.getTagsForStencil(f,"bucket with objects","aws amazon web service storage").join(" ")), +this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".volume;",e,e,"Volume",null,null,null,this.getTagsForStencil(f,"volume","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".object;",e,e,"Object",null,null,null,this.getTagsForStencil(f,"object","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".archive;",e,e,"Archive",null,null,null,this.getTagsForStencil(f,"archive","aws amazon web service storage").join(" ")), +this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".vault;",e,e,"Vault",null,null,null,this.getTagsForStencil(f,"vault","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".import_export;",e,e,"Import/Export",null,null,null,this.getTagsForStencil(f,"import export","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".cached_volume;",e,e,"Cached\nvolume",null,null,null,this.getTagsForStencil(f, +"cached volume","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".non_cached_volume;",e,e,"Non-Cached\nvolume",null,null,null,this.getTagsForStencil(f,"non cached volume","aws amazon web service storage").join(" ")),this.createVertexTemplateEntry(d+"resourceIcon;resIcon="+f+".virtual_tape_library;",e,e,"Virtual tape\nlibrary",null,null,null,this.getTagsForStencil(f,"virtual tape library vtl","aws amazon web service storage").join(" "))])}})();(function(){Sidebar.prototype.addAzurePalette=function(){var a=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;html=1;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;align=center;strokeColor=none;fillColor=#00BEF2;shape=mxgraph.azure.";this.addPaletteFunctions("azure",mxResources.get("azure"),!1,[this.createVertexTemplateEntry(a+"access_control;",50,50,"","Access Control",null,null,this.getTagsForStencil("mxgraph.azure","access_control","").join(" ")),this.createVertexTemplateEntry(a+"automation;pointerEvents=1;", 50,45,"","Automation",null,null,this.getTagsForStencil("mxgraph.azure","automation","").join(" ")),this.createVertexTemplateEntry(a+"autoscale;",50,30,"","AutoScale",null,null,this.getTagsForStencil("mxgraph.azure","autoscale","").join(" ")),this.createVertexTemplateEntry(a+"azure_active_directory;",47.5,50,"","Azure Active Directory",null,null,this.getTagsForStencil("mxgraph.azure","azure_active_directory","").join(" ")),this.createVertexTemplateEntry(a+"azure_alert;",50,42.5,"","Azure Alert",null, null,this.getTagsForStencil("mxgraph.azure","azure_alert","").join(" ")),this.createVertexTemplateEntry(a+"azure_cache;",45,50,"","Azure Cache",null,null,this.getTagsForStencil("mxgraph.azure","azure_cache","").join(" ")),this.createVertexTemplateEntry(a+"azure_instance;",50,50,"","Azure Instance",null,null,this.getTagsForStencil("mxgraph.azure","azure_instance","").join(" ")),this.createVertexTemplateEntry(a+"azure_load_balancer;",50,35,"","Azure Load Balancer",null,null,this.getTagsForStencil("mxgraph.azure", "azure_load_balancer","").join(" ")),this.createVertexTemplateEntry(a+"azure_marketplace;",40,50,"","Azure Marketplace",null,null,this.getTagsForStencil("mxgraph.azure","azure_marketplace","").join(" ")),this.createVertexTemplateEntry(a+"azure_sdk;",50,47.5,"","Azure SDK",null,null,this.getTagsForStencil("mxgraph.azure","azure_sdk","").join(" ")),this.createVertexTemplateEntry(a+"azure_subscription;",50,35,"","Azure Subscription",null,null,this.getTagsForStencil("mxgraph.azure","azure_subscription", @@ -4528,37 +4529,37 @@ null,null,this.getTagsForStencil("mxgraph.basic","diag_stripe","").join(" ")),th "rectangular_callout","").join(" ")),this.createVertexTemplateEntry(a+"layered_rect;dx=10;outlineConnect=0;",100,60,"","Layered Rectangle",null,null,this.getTagsForStencil("mxgraph.basic","layered_rect","").join(" ")),this.createVertexTemplateEntry(a+"smiley",100,100,"","Smiley",null,null,this.getTagsForStencil("mxgraph.basic","smiley","").join(" ")),this.createVertexTemplateEntry(a+"star",100,95,"","Star",null,null,this.getTagsForStencil("mxgraph.basic","star","").join(" ")),this.createVertexTemplateEntry(a+ "sun",100,100,"","Sun",null,null,this.getTagsForStencil("mxgraph.basic","sun","").join(" ")),this.createVertexTemplateEntry(a+"tick",85,100,"","Tick",null,null,this.getTagsForStencil("mxgraph.basic","tick","").join(" ")),this.createVertexTemplateEntry(a+"wave2;dy=0.3;",100,60,"","Wave",null,null,this.getTagsForStencil("mxgraph.basic","wave","").join(" ")),this.createVertexTemplateEntry("labelPosition=center;verticalLabelPosition=middle;align=center;html=1;shape=mxgraph.basic.button;dx=10;",100,60, "Button","Button",null,null,this.getTagsForStencil("mxgraph.basic","button","").join(" ")),this.createVertexTemplateEntry("labelPosition=center;verticalLabelPosition=middle;align=center;html=1;shape=mxgraph.basic.shaded_button;dx=10;fillColor=#E6E6E6;strokeColor=none;",100,60,"Button","Button (shaded)",null,null,this.getTagsForStencil("mxgraph.basic","button","").join(" ")),this.createVertexTemplateEntry(a+"x",100,100,"","X",null,null,this.getTagsForStencil("mxgraph.basic","x","").join(" ")),this.createVertexTemplateEntry(a+ -"pie;startAngle=0.2;endAngle=0.9;",100,100,"","Pie",null,null,this.getTagsForStencil("mxgraph.basic","pie","").join(" ")),this.createVertexTemplateEntry(a+"arc;startAngle=0.3;endAngle=0.1;",100,100,"","Arc",null,null,this.getTagsForStencil("mxgraph.basic","arc","").join(" ")),this.createVertexTemplateEntry(a+"partConcEllipse;startAngle=0.25;endAngle=0.1;arcWidth=0.5;",100,100,"","Partial Concentric Ellipse",null,null,this.getTagsForStencil("mxgraph.basic","partConcEllipse","").join(" "))])}})();(function(){Sidebar.prototype.addBootstrapPalette=function(){var a=this,d=[this.addDataEntry("bootstrap button bar dark",800,40,"Button Bar (Dark)","5ZhRb5swEMc/DY+NDKaEvIZ2fdm0qpH27gUDVg2HjNuQfvod2EnJnGxRWqJUsRQJn332+ffnbBOPJmX7oFhd/ICUS4/eezRRANo8lW3CpfQCIlKP3nlBQPDnBd8OtPp9K6mZ4pU+xiEwDq9MvnBjMYZGr6U1FLrEsO58j86bgqWwwgrBSsqagqe2gi11179s824tk9+4gkbj40TxJUYyz4SUCUhQ/aA06EvnqBU8801LBRWOMl8VQvNFzZbdkCscBW02UK40bw8utjfZlT5wKLlWa+yyEqkuTI+YGCCk4CIvrFtobawx9Xzr+o4OHyy9/SSpQzKBsmbV+jSgQ16Wyl5U/wcPlR6An/XF2hfirfP1w48wD45gPg7y0EH+yKFGzGd5hUlfDunyF/asL11nJCyq/MmSoGQE9O0u9oESs5GUuHWUiMNPV8HKoOxbG7uSZNkpkpyMP/wnfuuwttvw5NZRY4NtqIYfGZvikmnxynfG2ieRnf8RBIa1nfyGkp3pb+LdESDLGq4diberOEr1yFH9l4AubKiaC931zph+/tTNP98fKQGnjhTh55/kF5eA0ZUnYOyovtAYdKPF8lITcKRk23fYjXXtmLnUuda4q1wZcxq5zKcjMd/sm8O7ngIkd+Jl76syj87J3HeYf4ccDT9f9HVRn9LRqGP1/WvfHAHDPwP+AA=="), +"pie;startAngle=0.2;endAngle=0.9;",100,100,"","Pie",null,null,this.getTagsForStencil("mxgraph.basic","pie","").join(" ")),this.createVertexTemplateEntry(a+"arc;startAngle=0.3;endAngle=0.1;",100,100,"","Arc",null,null,this.getTagsForStencil("mxgraph.basic","arc","").join(" ")),this.createVertexTemplateEntry(a+"partConcEllipse;startAngle=0.25;endAngle=0.1;arcWidth=0.5;",100,100,"","Partial Concentric Ellipse",null,null,this.getTagsForStencil("mxgraph.basic","partConcEllipse","").join(" "))])}})();(function(){Sidebar.prototype.addBootstrapPalette=function(){var a=this,b=[this.addDataEntry("bootstrap button bar dark",800,40,"Button Bar (Dark)","5ZhRb5swEMc/DY+NDKaEvIZ2fdm0qpH27gUDVg2HjNuQfvod2EnJnGxRWqJUsRQJn332+ffnbBOPJmX7oFhd/ICUS4/eezRRANo8lW3CpfQCIlKP3nlBQPDnBd8OtPp9K6mZ4pU+xiEwDq9MvnBjMYZGr6U1FLrEsO58j86bgqWwwgrBSsqagqe2gi11179s824tk9+4gkbj40TxJUYyz4SUCUhQ/aA06EvnqBU8801LBRWOMl8VQvNFzZbdkCscBW02UK40bw8utjfZlT5wKLlWa+yyEqkuTI+YGCCk4CIvrFtobawx9Xzr+o4OHyy9/SSpQzKBsmbV+jSgQ16Wyl5U/wcPlR6An/XF2hfirfP1w48wD45gPg7y0EH+yKFGzGd5hUlfDunyF/asL11nJCyq/MmSoGQE9O0u9oESs5GUuHWUiMNPV8HKoOxbG7uSZNkpkpyMP/wnfuuwttvw5NZRY4NtqIYfGZvikmnxynfG2ieRnf8RBIa1nfyGkp3pb+LdESDLGq4diberOEr1yFH9l4AubKiaC931zph+/tTNP98fKQGnjhTh55/kF5eA0ZUnYOyovtAYdKPF8lITcKRk23fYjXXtmLnUuda4q1wZcxq5zKcjMd/sm8O7ngIkd+Jl76syj87J3HeYf4ccDT9f9HVRn9LRqGP1/WvfHAHDPwP+AA=="), this.addDataEntry("bootstrap button bar bright",800,40,"Button Bar (Bright)","5ZdRb5swEMc/DY9FBhNCXkPavmxStUh798IB1gxGxmvIPv0OcBKoSZetpYpUIyT77DP278+dwaFx0TwqVuVfZQLCofcOjZWUuq8VTQxCOD7hiUM3ju8TvB3/4UKv1/WSiiko9TUOfu/wzMQv6C29odYHYQy5LnBZG8+h6zpnidxjg2AjYXUOiWlgT9WOL5qs3Yv7A3dQa6y6Cna4knXKhYilkKqblKZhe7WOWsmfcOwpZYmzrPc517Ct2K6dco+zoM0sFJSG5uJmO5PZ6SPIArQ64JA9T3Tej4hID4TkwLPcuAXGxuq+nZ1cz+iwYuhNk6QWyVgWFSsP/wd0yMtQmUT1d/Cy1APwSVeMfct/t75e8Bbm/hXM50EeWMifQFaI+WNeYdJel3R5gX3VlXYwEuZl9s2QoGQG9M0Y+0CJ1UxKLCwlouDdVTAyKPPWRhOSpATLlZKkXXkL/uBV/MbhYNKwu7DUOGIbquGFvU2BYJo/w2iuKYnM858kx2WdHn5Hyejxd9F4BpmmNWhL4tMurlI9tFT/zmW7bFnWN5r1PjD8vKUdf543UwAuLSmC9z/Jby4Aw08egJGl+lbjomvNd7cagDMF29RhN9dnx8qmDlpjVvlkzGloM1/OxPyYN0fQmdrlruvOnecWU3nOpK6xUC+/r6fsTPCsRJuAVJ8PpC9da+PNeB6Fi3FGstOhRyfUo/+uHjbPf7B9Whv+4P4B"), -this.addEntry("bootstrap button group vertical",function(){var e=new mxCell("",new mxGeometry(0,0,100,150),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;html=1;whiteSpace=wrap;fillColor=#ffffff;");e.vertex=!0;var b=new mxCell("Edit",new mxGeometry(0,0,100,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.topButton;rSize=5;perimeter=none;whiteSpace=wrap;resizeWidth=1;");b.geometry.relative=!0;b.vertex= -!0;e.insert(b);b=new mxCell("Create",new mxGeometry(0,0,100,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;perimeter=none;whiteSpace=wrap;resizeWidth=1;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(0,30);b.vertex=!0;e.insert(b);var c=new mxCell("Delete",new mxGeometry(0,0,100,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;perimeter=none;whiteSpace=wrap;resizeWidth=1;"); -c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,60);c.vertex=!0;e.insert(c);c=new mxCell("Append",new mxGeometry(0,0,100,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;perimeter=none;whiteSpace=wrap;resizeWidth=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,90);c.vertex=!0;e.insert(c);c=new mxCell("Prepend",new mxGeometry(0,1,100,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.bottomButton;rSize=5;perimeter=none;whiteSpace=wrap;resizeWidth=1;"); -c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,-30);c.vertex=!0;e.insert(c);c=new mxCell("",new mxGeometry(1,.5,10,5),"shape=triangle;direction=south;fillColor=#000000;strokeColor=none;perimeter=none;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-15,-2.5);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Button Group (Vertical)")}),this.addEntry("bootstrap button group vertical",function(){var e=new mxCell("",new mxGeometry(0, -0,160,160),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;html=1;whiteSpace=wrap;fillColor=#ffffff;");e.vertex=!0;var b=new mxCell("Verified",new mxGeometry(0,0,160,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;spacingLeft=10;align=left;perimeter=none;whiteSpace=wrap;resizeWidth=1;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(0,40);b.vertex=!0;e.insert(b);b=new mxCell("Banned",new mxGeometry(0, -0,160,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;spacingLeft=10;align=left;perimeter=none;whiteSpace=wrap;resizeWidth=1;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(0,80);b.vertex=!0;e.insert(b);b=new mxCell("Deleted",new mxGeometry(0,1,160,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.bottomButton;rSize=5;spacingLeft=10;align=left;perimeter=none;whiteSpace=wrap;resizeWidth=1;"); -b.geometry.relative=!0;b.geometry.offset=new mxPoint(0,-40);b.vertex=!0;e.insert(b);b=new mxCell("All Users",new mxGeometry(0,0,160,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.topButton;rSize=5;fillColor=#3D8BCD;strokeColor=#3D8BCD;fontColor=#ffffff;spacingLeft=10;align=left;whiteSpace=wrap;resizeWidth=1;");b.geometry.relative=!0;b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Button Group (Vertical)")}),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.topButton;rSize=5;fillColor=#3D8BCD;strokeColor=#0D5B9D;fontColor=#ffffff;spacingLeft=10;align=left;whiteSpace=wrap;", +this.addEntry("bootstrap button group vertical",function(){var b=new mxCell("",new mxGeometry(0,0,100,150),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;html=1;whiteSpace=wrap;fillColor=#ffffff;");b.vertex=!0;var c=new mxCell("Edit",new mxGeometry(0,0,100,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.topButton;rSize=5;perimeter=none;whiteSpace=wrap;resizeWidth=1;");c.geometry.relative=!0;c.vertex= +!0;b.insert(c);c=new mxCell("Create",new mxGeometry(0,0,100,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;perimeter=none;whiteSpace=wrap;resizeWidth=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,30);c.vertex=!0;b.insert(c);var d=new mxCell("Delete",new mxGeometry(0,0,100,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;perimeter=none;whiteSpace=wrap;resizeWidth=1;"); +d.geometry.relative=!0;d.geometry.offset=new mxPoint(0,60);d.vertex=!0;b.insert(d);d=new mxCell("Append",new mxGeometry(0,0,100,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;perimeter=none;whiteSpace=wrap;resizeWidth=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(0,90);d.vertex=!0;b.insert(d);d=new mxCell("Prepend",new mxGeometry(0,1,100,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.bottomButton;rSize=5;perimeter=none;whiteSpace=wrap;resizeWidth=1;"); +d.geometry.relative=!0;d.geometry.offset=new mxPoint(0,-30);d.vertex=!0;b.insert(d);d=new mxCell("",new mxGeometry(1,.5,10,5),"shape=triangle;direction=south;fillColor=#000000;strokeColor=none;perimeter=none;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(-15,-2.5);d.vertex=!0;c.insert(d);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Button Group (Vertical)")}),this.addEntry("bootstrap button group vertical",function(){var b=new mxCell("",new mxGeometry(0, +0,160,160),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;html=1;whiteSpace=wrap;fillColor=#ffffff;");b.vertex=!0;var c=new mxCell("Verified",new mxGeometry(0,0,160,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;spacingLeft=10;align=left;perimeter=none;whiteSpace=wrap;resizeWidth=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,40);c.vertex=!0;b.insert(c);c=new mxCell("Banned",new mxGeometry(0, +0,160,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;spacingLeft=10;align=left;perimeter=none;whiteSpace=wrap;resizeWidth=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,80);c.vertex=!0;b.insert(c);c=new mxCell("Deleted",new mxGeometry(0,1,160,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.bottomButton;rSize=5;spacingLeft=10;align=left;perimeter=none;whiteSpace=wrap;resizeWidth=1;"); +c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,-40);c.vertex=!0;b.insert(c);c=new mxCell("All Users",new mxGeometry(0,0,160,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.topButton;rSize=5;fillColor=#3D8BCD;strokeColor=#3D8BCD;fontColor=#ffffff;spacingLeft=10;align=left;whiteSpace=wrap;resizeWidth=1;");c.geometry.relative=!0;c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Button Group (Vertical)")}),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.topButton;rSize=5;fillColor=#3D8BCD;strokeColor=#0D5B9D;fontColor=#ffffff;spacingLeft=10;align=left;whiteSpace=wrap;", 160,40,"All Users","Top Button",null,null,this.getTagsForStencil("mxgraph.bootstrap","topButton","bootstrap top button").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.bottomButton;rSize=5;fillColor=#3D8BCD;strokeColor=#0D5B9D;fontColor=#ffffff;spacingLeft=10;align=left;whiteSpace=wrap;",160,40,"All Users","Bottom Button",null,null,this.getTagsForStencil("mxgraph.bootstrap","bottomButton","bootstrap bottom button").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;fillColor=#3D8BCD;strokeColor=#0D5B9D;fontColor=#ffffff;spacingLeft=10;align=left;whiteSpace=wrap;", 160,40,"All Users","Right Button",null,null,this.getTagsForStencil("mxgraph.bootstrap","rightButton","bootstrap right button").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.leftButton;rSize=5;fillColor=#3D8BCD;strokeColor=#0D5B9D;fontColor=#ffffff;spacingLeft=10;align=left;whiteSpace=wrap;",160,40,"All Users","Left Button",null,null,this.getTagsForStencil("mxgraph.bootstrap","leftButton","bootstrap left button").join(" ")),this.addEntry("bootstrap dropdown large", -function(){var e=new mxCell("Dropdown",new mxGeometry(0,0,140,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;spacingRight=10;fontSize=16;whiteSpace=wrap;fillColor=#ffffff;align=center;");e.vertex=!0;var b=new mxCell("",new mxGeometry(1,.5,10,5),"shape=triangle;direction=south;fillColor=#000000;strokeColor=none;perimeter=none;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(-20,-2.5);b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e], -e.geometry.width,e.geometry.height,"Dropdown (Large)")}),this.addEntry("bootstrap dropdown normal",function(){var e=new mxCell("Dropdown",new mxGeometry(0,0,120,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;spacingRight=10;fontSize=14;whiteSpace=wrap;fillColor=#ffffff;align=center;");e.vertex=!0;var b=new mxCell("",new mxGeometry(1,.5,10,5),"shape=triangle;direction=south;fillColor=#000000;strokeColor=none;perimeter=none;");b.geometry.relative=!0;b.geometry.offset= -new mxPoint(-20,-2.5);b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Dropdown (Normal)")}),this.addEntry("bootstrap dropdown small",function(){var e=new mxCell("Dropdown",new mxGeometry(0,0,100,22),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;fontSize=12;rSize=5;strokeColor=#dddddd;spacingRight=10;perimeter=none;whiteSpace=wrap;fillColor=#ffffff;align=center;");e.vertex=!0;var b=new mxCell("",new mxGeometry(1,.5,10,5),"shape=triangle;direction=south;fillColor=#000000;strokeColor=none;perimeter=none;"); -b.geometry.relative=!0;b.geometry.offset=new mxPoint(-20,-2.5);b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Dropdown (Small)")}),this.addEntry("bootstrap dropdown tiny",function(){var e=new mxCell("Dropdown",new mxGeometry(0,0,90,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;spacingRight=10;fontSize=10;whiteSpace=wrap;fillColor=#ffffff;align=center;");e.vertex=!0;var b=new mxCell("",new mxGeometry(1, -.5,10,5),"shape=triangle;direction=south;fillColor=#000000;strokeColor=none;perimeter=none;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(-20,-2.5);b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Dropdown (Tiny)")}),this.addEntry("bootstrap button group justified large",function(){var e=new mxCell("",new mxGeometry(0,0,240,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;fillColor=#ffffff;");e.vertex= -!0;var b=new mxCell("Left",new mxGeometry(0,0,80,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.leftButton;rSize=5;perimeter=none;fontSize=16;whiteSpace=wrap;");b.vertex=!0;e.insert(b);b=new mxCell("Middle",new mxGeometry(80,0,80,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;perimeter=none;fontSize=16;whiteSpace=wrap;");b.vertex=!0;e.insert(b);b=new mxCell("Right", -new mxGeometry(160,0,80,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;perimeter=none;fontSize=16;whiteSpace=wrap;");b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Button Group (Justified, Large)")}),this.addEntry("bootstrap button group justified normal",function(){var e=new mxCell("",new mxGeometry(0,0,180,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;fillColor=#ffffff;"); -e.vertex=!0;var b=new mxCell("Left",new mxGeometry(0,0,60,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.leftButton;rSize=5;perimeter=none;fontSize=14;whiteSpace=wrap;");b.vertex=!0;e.insert(b);b=new mxCell("Middle",new mxGeometry(60,0,60,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;perimeter=none;fontSize=14;whiteSpace=wrap;");b.vertex=!0;e.insert(b);b=new mxCell("Right", -new mxGeometry(120,0,60,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;perimeter=none;fontSize=14;whiteSpace=wrap;");b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Button Group (Justified, Normal)")}),this.addEntry("bootstrap button group justified small",function(){var e=new mxCell("",new mxGeometry(0,0,150,22),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;fillColor=#ffffff;"); -e.vertex=!0;var b=new mxCell("Left",new mxGeometry(0,0,50,22),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.leftButton;rSize=5;perimeter=none;whiteSpace=wrap;");b.vertex=!0;e.insert(b);b=new mxCell("Middle",new mxGeometry(50,0,50,22),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;perimeter=none;whiteSpace=wrap;");b.vertex=!0;e.insert(b);b=new mxCell("Right",new mxGeometry(100, -0,50,22),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;perimeter=none;whiteSpace=wrap;");b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Button Group (Justified, Small)")}),this.addEntry("bootstrap button group justified tiny",function(){var e=new mxCell("",new mxGeometry(0,0,120,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;fillColor=#ffffff;"); -e.vertex=!0;var b=new mxCell("Left",new mxGeometry(0,0,40,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.leftButton;rSize=5;perimeter=none;fontSize=10;whiteSpace=wrap;");b.vertex=!0;e.insert(b);b=new mxCell("Middle",new mxGeometry(40,0,40,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;perimeter=none;fontSize=10;whiteSpace=wrap;");b.vertex=!0;e.insert(b);b=new mxCell("Right", -new mxGeometry(80,0,40,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;perimeter=none;fontSize=10;whiteSpace=wrap;");b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Button Group (Justified, Tiny)")}),this.addEntry("bootstrap button toolbar",function(){var e=new mxCell("",new mxGeometry(0,0,120,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;fillColor=#ffffff;"); -e.vertex=!0;var b=new mxCell("1",new mxGeometry(0,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.leftButton;rSize=5;perimeter=none;fontSize=14;whiteSpace=wrap;");b.vertex=!0;e.insert(b);b=new mxCell("2",new mxGeometry(30,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;perimeter=none;fontSize=14;whiteSpace=wrap;");b.vertex=!0;e.insert(b);var c=new mxCell("3", -new mxGeometry(60,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;perimeter=none;fontSize=14;whiteSpace=wrap;");c.vertex=!0;e.insert(c);b=new mxCell("4",new mxGeometry(90,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;perimeter=none;fontSize=14;whiteSpace=wrap;");b.vertex=!0;e.insert(b);c=new mxCell("",new mxGeometry(130,0,90,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;fillColor=#ffffff;"); -c.vertex=!0;b=new mxCell("5",new mxGeometry(0,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.leftButton;rSize=5;perimeter=none;fontSize=14;whiteSpace=wrap;");b.vertex=!0;c.insert(b);b=new mxCell("6",new mxGeometry(30,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;perimeter=none;fontSize=14;whiteSpace=wrap;");b.vertex=!0;c.insert(b);b=new mxCell("7",new mxGeometry(60, -0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;perimeter=none;fontSize=14;whiteSpace=wrap;");b.vertex=!0;c.insert(b);b=new mxCell("8",new mxGeometry(230,0,30,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;fontSize=12;align=center;rSize=5;strokeColor=#dddddd;whiteSpace=wrap;fillColor=#ffffff;");b.vertex=!0;return a.createVertexTemplateFromCells([e,c,b],260,30,"Button Toolbar")}),this.addEntry("bootstrap button group nested", -function(){var e=new mxCell("",new mxGeometry(0,0,160,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;fillColor=#ffffff;");e.vertex=!0;var b=new mxCell("1",new mxGeometry(0,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.leftButton;rSize=5;perimeter=none;fontSize=14;whiteSpace=wrap;");b.vertex=!0;e.insert(b);b=new mxCell("2",new mxGeometry(30,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;perimeter=none;fontSize=14;whiteSpace=wrap;"); -b.vertex=!0;e.insert(b);b=new mxCell("Dropdown",new mxGeometry(60,0,100,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;perimeter=none;fontSize=14;spacingRight=10;whiteSpace=wrap;");b.vertex=!0;e.insert(b);var c=new mxCell("",new mxGeometry(1,.5,10,5),"shape=triangle;direction=south;fillColor=#000000;strokeColor=none;perimeter=none;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-15,-2.5);c.vertex=!0;b.insert(c); -return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Button Group (Nested)")}),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;fillColor=#ffffff;align=center;fontSize=16;whiteSpace=wrap;",80,40,"Button","Button (Large)",null,null,this.getTagsForStencil("mxgraph.bootstrap","","bootstrap button large").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;fillColor=#ffffff;align=center;fontSize=14;whiteSpace=wrap;", +function(){var b=new mxCell("Dropdown",new mxGeometry(0,0,140,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;spacingRight=10;fontSize=16;whiteSpace=wrap;fillColor=#ffffff;align=center;");b.vertex=!0;var c=new mxCell("",new mxGeometry(1,.5,10,5),"shape=triangle;direction=south;fillColor=#000000;strokeColor=none;perimeter=none;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-20,-2.5);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b], +b.geometry.width,b.geometry.height,"Dropdown (Large)")}),this.addEntry("bootstrap dropdown normal",function(){var b=new mxCell("Dropdown",new mxGeometry(0,0,120,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;spacingRight=10;fontSize=14;whiteSpace=wrap;fillColor=#ffffff;align=center;");b.vertex=!0;var c=new mxCell("",new mxGeometry(1,.5,10,5),"shape=triangle;direction=south;fillColor=#000000;strokeColor=none;perimeter=none;");c.geometry.relative=!0;c.geometry.offset= +new mxPoint(-20,-2.5);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Dropdown (Normal)")}),this.addEntry("bootstrap dropdown small",function(){var b=new mxCell("Dropdown",new mxGeometry(0,0,100,22),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;fontSize=12;rSize=5;strokeColor=#dddddd;spacingRight=10;perimeter=none;whiteSpace=wrap;fillColor=#ffffff;align=center;");b.vertex=!0;var c=new mxCell("",new mxGeometry(1,.5,10,5),"shape=triangle;direction=south;fillColor=#000000;strokeColor=none;perimeter=none;"); +c.geometry.relative=!0;c.geometry.offset=new mxPoint(-20,-2.5);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Dropdown (Small)")}),this.addEntry("bootstrap dropdown tiny",function(){var b=new mxCell("Dropdown",new mxGeometry(0,0,90,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;spacingRight=10;fontSize=10;whiteSpace=wrap;fillColor=#ffffff;align=center;");b.vertex=!0;var c=new mxCell("",new mxGeometry(1, +.5,10,5),"shape=triangle;direction=south;fillColor=#000000;strokeColor=none;perimeter=none;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-20,-2.5);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Dropdown (Tiny)")}),this.addEntry("bootstrap button group justified large",function(){var b=new mxCell("",new mxGeometry(0,0,240,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;fillColor=#ffffff;");b.vertex= +!0;var c=new mxCell("Left",new mxGeometry(0,0,80,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.leftButton;rSize=5;perimeter=none;fontSize=16;whiteSpace=wrap;");c.vertex=!0;b.insert(c);c=new mxCell("Middle",new mxGeometry(80,0,80,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;perimeter=none;fontSize=16;whiteSpace=wrap;");c.vertex=!0;b.insert(c);c=new mxCell("Right", +new mxGeometry(160,0,80,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;perimeter=none;fontSize=16;whiteSpace=wrap;");c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Button Group (Justified, Large)")}),this.addEntry("bootstrap button group justified normal",function(){var b=new mxCell("",new mxGeometry(0,0,180,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;fillColor=#ffffff;"); +b.vertex=!0;var c=new mxCell("Left",new mxGeometry(0,0,60,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.leftButton;rSize=5;perimeter=none;fontSize=14;whiteSpace=wrap;");c.vertex=!0;b.insert(c);c=new mxCell("Middle",new mxGeometry(60,0,60,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;perimeter=none;fontSize=14;whiteSpace=wrap;");c.vertex=!0;b.insert(c);c=new mxCell("Right", +new mxGeometry(120,0,60,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;perimeter=none;fontSize=14;whiteSpace=wrap;");c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Button Group (Justified, Normal)")}),this.addEntry("bootstrap button group justified small",function(){var b=new mxCell("",new mxGeometry(0,0,150,22),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;fillColor=#ffffff;"); +b.vertex=!0;var c=new mxCell("Left",new mxGeometry(0,0,50,22),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.leftButton;rSize=5;perimeter=none;whiteSpace=wrap;");c.vertex=!0;b.insert(c);c=new mxCell("Middle",new mxGeometry(50,0,50,22),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;perimeter=none;whiteSpace=wrap;");c.vertex=!0;b.insert(c);c=new mxCell("Right",new mxGeometry(100, +0,50,22),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;perimeter=none;whiteSpace=wrap;");c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Button Group (Justified, Small)")}),this.addEntry("bootstrap button group justified tiny",function(){var b=new mxCell("",new mxGeometry(0,0,120,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;fillColor=#ffffff;"); +b.vertex=!0;var c=new mxCell("Left",new mxGeometry(0,0,40,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.leftButton;rSize=5;perimeter=none;fontSize=10;whiteSpace=wrap;");c.vertex=!0;b.insert(c);c=new mxCell("Middle",new mxGeometry(40,0,40,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;perimeter=none;fontSize=10;whiteSpace=wrap;");c.vertex=!0;b.insert(c);c=new mxCell("Right", +new mxGeometry(80,0,40,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;perimeter=none;fontSize=10;whiteSpace=wrap;");c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Button Group (Justified, Tiny)")}),this.addEntry("bootstrap button toolbar",function(){var b=new mxCell("",new mxGeometry(0,0,120,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;fillColor=#ffffff;"); +b.vertex=!0;var c=new mxCell("1",new mxGeometry(0,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.leftButton;rSize=5;perimeter=none;fontSize=14;whiteSpace=wrap;");c.vertex=!0;b.insert(c);c=new mxCell("2",new mxGeometry(30,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;perimeter=none;fontSize=14;whiteSpace=wrap;");c.vertex=!0;b.insert(c);var d=new mxCell("3", +new mxGeometry(60,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;perimeter=none;fontSize=14;whiteSpace=wrap;");d.vertex=!0;b.insert(d);c=new mxCell("4",new mxGeometry(90,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;perimeter=none;fontSize=14;whiteSpace=wrap;");c.vertex=!0;b.insert(c);d=new mxCell("",new mxGeometry(130,0,90,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;fillColor=#ffffff;"); +d.vertex=!0;c=new mxCell("5",new mxGeometry(0,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.leftButton;rSize=5;perimeter=none;fontSize=14;whiteSpace=wrap;");c.vertex=!0;d.insert(c);c=new mxCell("6",new mxGeometry(30,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;perimeter=none;fontSize=14;whiteSpace=wrap;");c.vertex=!0;d.insert(c);c=new mxCell("7",new mxGeometry(60, +0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;perimeter=none;fontSize=14;whiteSpace=wrap;");c.vertex=!0;d.insert(c);c=new mxCell("8",new mxGeometry(230,0,30,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;fontSize=12;align=center;rSize=5;strokeColor=#dddddd;whiteSpace=wrap;fillColor=#ffffff;");c.vertex=!0;return a.createVertexTemplateFromCells([b,d,c],260,30,"Button Toolbar")}),this.addEntry("bootstrap button group nested", +function(){var b=new mxCell("",new mxGeometry(0,0,160,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;fillColor=#ffffff;");b.vertex=!0;var c=new mxCell("1",new mxGeometry(0,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.leftButton;rSize=5;perimeter=none;fontSize=14;whiteSpace=wrap;");c.vertex=!0;b.insert(c);c=new mxCell("2",new mxGeometry(30,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;perimeter=none;fontSize=14;whiteSpace=wrap;"); +c.vertex=!0;b.insert(c);c=new mxCell("Dropdown",new mxGeometry(60,0,100,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;perimeter=none;fontSize=14;spacingRight=10;whiteSpace=wrap;");c.vertex=!0;b.insert(c);var d=new mxCell("",new mxGeometry(1,.5,10,5),"shape=triangle;direction=south;fillColor=#000000;strokeColor=none;perimeter=none;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(-15,-2.5);d.vertex=!0;c.insert(d); +return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Button Group (Nested)")}),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;fillColor=#ffffff;align=center;fontSize=16;whiteSpace=wrap;",80,40,"Button","Button (Large)",null,null,this.getTagsForStencil("mxgraph.bootstrap","","bootstrap button large").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;fillColor=#ffffff;align=center;fontSize=14;whiteSpace=wrap;", 60,30,"Button","Button (Normal)",null,null,this.getTagsForStencil("mxgraph.bootstrap","","bootstrap button normal").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;fillColor=#ffffff;align=center;fontSize=12;whiteSpace=wrap;",44,22,"Button","Button (Small)",null,null,this.getTagsForStencil("mxgraph.bootstrap","","bootstrap button small").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;fillColor=#ffffff;align=center;fontSize=10;whiteSpace=wrap;", 40,20,"Button","Button (Tiny)",null,null,this.getTagsForStencil("mxgraph.bootstrap","","bootstrap button tiny").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;fillColor=#3D8BCD;align=center;strokeColor=#3D8BCD;fontColor=#ffffff;fontSize=16;whiteSpace=wrap;",80,40,"Button","Button (Large)",null,null,this.getTagsForStencil("mxgraph.bootstrap","","bootstrap button large").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;fillColor=#3D8BCD;align=center;strokeColor=#3D8BCD;fontColor=#ffffff;fontSize=14;whiteSpace=wrap;", 60,30,"Button","Button (Normal)",null,null,this.getTagsForStencil("mxgraph.bootstrap","","bootstrap button normal").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;fillColor=#3D8BCD;align=center;strokeColor=#3D8BCD;fontColor=#ffffff;fontSize=12;whiteSpace=wrap;",44,22,"Button","Button (Small)",null,null,this.getTagsForStencil("mxgraph.bootstrap","","bootstrap button small").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;fillColor=#3D8BCD;align=center;strokeColor=#3D8BCD;fontColor=#ffffff;fontSize=10;whiteSpace=wrap;", @@ -4570,30 +4571,30 @@ return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"B 60,30,"Button","Button (Normal)",null,null,this.getTagsForStencil("mxgraph.bootstrap","","bootstrap button normal").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;fillColor=#EFAC43;align=center;strokeColor=#EFAC43;fontColor=#ffffff;fontSize=12;whiteSpace=wrap;",44,22,"Button","Button (Small)",null,null,this.getTagsForStencil("mxgraph.bootstrap","","bootstrap button small").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;fillColor=#EFAC43;align=center;strokeColor=#EFAC43;fontColor=#ffffff;fontSize=10;whiteSpace=wrap;", 40,20,"Button","Button (Tiny)",null,null,this.getTagsForStencil("mxgraph.bootstrap","","bootstrap button tiny").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;fillColor=#DB524C;align=center;strokeColor=#DB524C;fontColor=#ffffff;fontSize=16;whiteSpace=wrap;",80,40,"Button","Button (Large)",null,null,this.getTagsForStencil("mxgraph.bootstrap","","bootstrap button large").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;fillColor=#DB524C;align=center;strokeColor=#DB524C;fontColor=#ffffff;fontSize=14;whiteSpace=wrap;", 60,30,"Button","Button (Normal)",null,null,this.getTagsForStencil("mxgraph.bootstrap","","bootstrap button normal").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;fillColor=#DB524C;align=center;strokeColor=#DB524C;fontColor=#ffffff;fontSize=12;whiteSpace=wrap;",44,22,"Button","Button (Small)",null,null,this.getTagsForStencil("mxgraph.bootstrap","","bootstrap button small").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;fillColor=#DB524C;align=center;strokeColor=#DB524C;fontColor=#ffffff;fontSize=10;whiteSpace=wrap;", -40,20,"Button","Button (Tiny)",null,null,this.getTagsForStencil("mxgraph.bootstrap","","bootstrap button tiny").join(" ")),this.addEntry("bootstrap dropdown small",function(){var e=new mxCell("Primary",new mxGeometry(0,0,100,22),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;align=center;rSize=5;fillColor=#3D8BCD;strokeColor=#3D8BCD;fontColor=#ffffff;spacingRight=10;whiteSpace=wrap;");e.vertex=!0;var b=new mxCell("",new mxGeometry(1,.5,10,5),"shape=triangle;direction=south;fillColor=#ffffff;strokeColor=none;perimeter=none;"); -b.geometry.relative=!0;b.geometry.offset=new mxPoint(-20,-2.5);b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Dropdown (Small)")}),this.addEntry("bootstrap dropdown small",function(){var e=new mxCell("Success",new mxGeometry(0,0,100,22),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;align=center;rSize=5;fillColor=#58B957;strokeColor=#58B957;fontColor=#ffffff;spacingRight=10;whiteSpace=wrap;");e.vertex=!0;var b=new mxCell("",new mxGeometry(1, -.5,10,5),"shape=triangle;direction=south;fillColor=#ffffff;strokeColor=none;perimeter=none;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(-20,-2.5);b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Dropdown (Small)")}),this.addEntry("bootstrap dropdown small",function(){var e=new mxCell("Info",new mxGeometry(0,0,100,22),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;align=center;rSize=5;fillColor=#55BFE0;strokeColor=#55BFE0;fontColor=#ffffff;spacingRight=10;whiteSpace=wrap;"); -e.vertex=!0;var b=new mxCell("",new mxGeometry(1,.5,10,5),"shape=triangle;direction=south;fillColor=#ffffff;strokeColor=none;perimeter=none;whiteSpace=wrap;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(-20,-2.5);b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Dropdown (Small)")}),this.addEntry("bootstrap dropdown small",function(){var e=new mxCell("Warning",new mxGeometry(0,0,100,22),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;align=center;rSize=5;fillColor=#EFAC43;strokeColor=#EFAC43;fontColor=#ffffff;spacingRight=10;whiteSpace=wrap;"); -e.vertex=!0;var b=new mxCell("",new mxGeometry(1,.5,10,5),"shape=triangle;direction=south;fillColor=#ffffff;strokeColor=none;perimeter=none;whiteSpace=wrap;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(-20,-2.5);b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Dropdown (Small)")}),this.addEntry("bootstrap dropdown small",function(){var e=new mxCell("Danger",new mxGeometry(0,0,100,22),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;align=center;rSize=5;fillColor=#DB524C;strokeColor=#DB524C;fontColor=#ffffff;spacingRight=10;whiteSpace=wrap;"); -e.vertex=!0;var b=new mxCell("",new mxGeometry(1,.5,10,5),"shape=triangle;direction=south;fillColor=#ffffff;strokeColor=none;perimeter=none;whiteSpace=wrap;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(-20,-2.5);b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Dropdown (Small)")}),this.addEntry("bootstrap dropdown split",function(){var e=new mxCell("Default",new mxGeometry(0,0,120,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;fillColor=#ffffff;align=center;rSize=5;strokeColor=#dddddd;spacingRight=20;fontSize=14;whiteSpace=wrap;"); -e.vertex=!0;var b=new mxCell("",new mxGeometry(1,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;perimeter=none;resizeHeight=1;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(-30,0);b.vertex=!0;e.insert(b);var c=new mxCell("",new mxGeometry(1,.5,10,5),"shape=triangle;direction=south;fillColor=#000000;strokeColor=none;perimeter=none;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-20,-2.5);c.vertex= -!0;b.insert(c);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Dropdown (Split)")}),this.addEntry("bootstrap dropdown split",function(){var e=new mxCell("Primary",new mxGeometry(0,0,120,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;align=center;rSize=5;fillColor=#3D8BCD;strokeColor=#0D5B9D;spacingRight=20;fontSize=14;fontColor=#ffffff;whiteSpace=wrap;");e.vertex=!0;var b=new mxCell("",new mxGeometry(1,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;perimeter=none;resizeHeight=1;"); -b.geometry.relative=!0;b.geometry.offset=new mxPoint(-30,0);b.vertex=!0;e.insert(b);var c=new mxCell("",new mxGeometry(1,.5,10,5),"shape=triangle;direction=south;fillColor=#ffffff;strokeColor=none;perimeter=none;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-20,-2.5);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Dropdown (Split)")}),this.addEntry("bootstrap dropdown split",function(){var e=new mxCell("Success",new mxGeometry(0,0,120, -30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;align=center;rSize=5;fillColor=#58B957;strokeColor=#288927;spacingRight=20;fontSize=14;fontColor=#ffffff;whiteSpace=wrap;");e.vertex=!0;var b=new mxCell("",new mxGeometry(1,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;perimeter=none;resizeHeight=1;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(-30,0);b.vertex=!0;e.insert(b);var c=new mxCell("", -new mxGeometry(1,.5,10,5),"shape=triangle;direction=south;fillColor=#ffffff;strokeColor=none;perimeter=none;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-20,-2.5);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Dropdown (Split)")}),this.addEntry("bootstrap dropdown split",function(){var e=new mxCell("Info",new mxGeometry(0,0,120,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;align=center;rSize=5;fillColor=#55BFE0;strokeColor=#258FB0;spacingRight=20;fontSize=14;fontColor=#ffffff;whiteSpace=wrap;"); -e.vertex=!0;var b=new mxCell("",new mxGeometry(1,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;perimeter=none;resizeHeight=1;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(-30,0);b.vertex=!0;e.insert(b);var c=new mxCell("",new mxGeometry(1,.5,10,5),"shape=triangle;direction=south;fillColor=#ffffff;strokeColor=none;perimeter=none;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-20,-2.5);c.vertex= -!0;b.insert(c);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Dropdown (Split)")}),this.addEntry("bootstrap dropdown split",function(){var e=new mxCell("Warning",new mxGeometry(0,0,120,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;align=center;rSize=5;fillColor=#EFAC43;strokeColor=#BF7C13;spacingRight=20;fontSize=14;fontColor=#ffffff;whiteSpace=wrap;");e.vertex=!0;var b=new mxCell("",new mxGeometry(1,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;perimeter=none;resizeHeight=1;"); -b.geometry.relative=!0;b.geometry.offset=new mxPoint(-30,0);b.vertex=!0;e.insert(b);var c=new mxCell("",new mxGeometry(1,.5,10,5),"shape=triangle;direction=south;fillColor=#ffffff;strokeColor=none;perimeter=none;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-20,-2.5);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Dropdown (Split)")}),this.addEntry("bootstrap dropdown split",function(){var e=new mxCell("Danger",new mxGeometry(0,0,120, -30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;align=center;rSize=5;fillColor=#DB524C;strokeColor=#AB221C;spacingRight=20;fontSize=14;fontColor=#ffffff;whiteSpace=wrap;");e.vertex=!0;var b=new mxCell("",new mxGeometry(1,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;perimeter=none;resizeHeight=1;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(-30,0);b.vertex=!0;e.insert(b);var c=new mxCell("", -new mxGeometry(1,.5,10,5),"shape=triangle;direction=south;fillColor=#ffffff;strokeColor=none;perimeter=none;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-20,-2.5);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Dropdown (Split)")}),this.addEntry("bootstrap dropup split",function(){var e=new mxCell("Dropup",new mxGeometry(0,0,120,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;fillColor=#ffffff;align=center;rSize=5;strokeColor=#dddddd;spacingRight=20;fontSize=14;whiteSpace=wrap;"); -e.vertex=!0;var b=new mxCell("",new mxGeometry(1,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;perimeter=none;resizeHeight=1;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(-30,0);b.vertex=!0;e.insert(b);var c=new mxCell("",new mxGeometry(1,.5,10,5),"shape=triangle;direction=north;fillColor=#000000;strokeColor=none;perimeter=none;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-20,-2.5);c.vertex= -!0;b.insert(c);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Dropup (Split)")}),this.addEntry("bootstrap dropup split",function(){var e=new mxCell("Right dropup",new mxGeometry(0,0,140,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;align=center;rSize=5;fillColor=#3D8BCD;strokeColor=#0D5B9D;spacingRight=20;fontSize=14;fontColor=#ffffff;whiteSpace=wrap;");e.vertex=!0;var b=new mxCell("",new mxGeometry(1,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;perimeter=none;resizeHeight=1;"); -b.geometry.relative=!0;b.geometry.offset=new mxPoint(-30,0);b.vertex=!0;e.insert(b);var c=new mxCell("",new mxGeometry(1,.5,10,5),"shape=triangle;direction=north;fillColor=#ffffff;strokeColor=none;perimeter=none;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-20,-2.5);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Dropup (Split)")}),this.addDataEntry("bootstrap dropdown menu",160,90,"Dropdown (Menu)","rVTbbtswDP0aPzaw5TTYaxKv3UMLDOt+QItoS5gsGbKay75+pCQ7bu0CGToHAcw7eQ7prNy350fHO/lsBeis/JqVe2etj2/teQ9aZyxXIiurjLEc/xl7+MBaBGvecQfG3xLAYsCR61eImsrZTtiTiYbeX3QySN9ie1WRlbtecnRBIUdB8F6CSAJaOvJvzw3NtPqFk/QeX1fOwQFb2nGtGoMeB+wQHCrci/pDIfcU7p39DXurrQtFSxEesnT8oEzzQzWSBiuoWG2NT8HFBmUsKRSmncTDmn4TW6WoD2WpBWOdl2g7SeXhBQtQphM2i7qECzgP5w+xDaoE7CPYFry7oMtJCcobPNYR/1xC6hzFQcf7KDdj6JUpfElkLRNXzoibETZw4Z3ipiHtTkym7+1rmL5WWk8Qy8Mz48JYQwk6cAp7hYnqJqTYMlJvAy5pY1f3UZ7iuABj8nKguVdHeJNqCdpU/rtV2NVY+y5dyFD9jg3lhxy2rnvwM3LGMW7iaz3jaxuJYBsEPazz1lgvEVmWD6b/fIHxAN/xXYfn3TWxJC/tBekfeKs0AfYN9BG8OvAhQep2vkALx/wE9XjL40DF5Buhg8OOdgtL6G1Se9tdk/wkoSo/ebKJ/DWbb95m6YK//PMFo3j9rMcFmn71/wI="), +40,20,"Button","Button (Tiny)",null,null,this.getTagsForStencil("mxgraph.bootstrap","","bootstrap button tiny").join(" ")),this.addEntry("bootstrap dropdown small",function(){var b=new mxCell("Primary",new mxGeometry(0,0,100,22),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;align=center;rSize=5;fillColor=#3D8BCD;strokeColor=#3D8BCD;fontColor=#ffffff;spacingRight=10;whiteSpace=wrap;");b.vertex=!0;var c=new mxCell("",new mxGeometry(1,.5,10,5),"shape=triangle;direction=south;fillColor=#ffffff;strokeColor=none;perimeter=none;"); +c.geometry.relative=!0;c.geometry.offset=new mxPoint(-20,-2.5);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Dropdown (Small)")}),this.addEntry("bootstrap dropdown small",function(){var b=new mxCell("Success",new mxGeometry(0,0,100,22),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;align=center;rSize=5;fillColor=#58B957;strokeColor=#58B957;fontColor=#ffffff;spacingRight=10;whiteSpace=wrap;");b.vertex=!0;var c=new mxCell("",new mxGeometry(1, +.5,10,5),"shape=triangle;direction=south;fillColor=#ffffff;strokeColor=none;perimeter=none;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-20,-2.5);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Dropdown (Small)")}),this.addEntry("bootstrap dropdown small",function(){var b=new mxCell("Info",new mxGeometry(0,0,100,22),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;align=center;rSize=5;fillColor=#55BFE0;strokeColor=#55BFE0;fontColor=#ffffff;spacingRight=10;whiteSpace=wrap;"); +b.vertex=!0;var c=new mxCell("",new mxGeometry(1,.5,10,5),"shape=triangle;direction=south;fillColor=#ffffff;strokeColor=none;perimeter=none;whiteSpace=wrap;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-20,-2.5);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Dropdown (Small)")}),this.addEntry("bootstrap dropdown small",function(){var b=new mxCell("Warning",new mxGeometry(0,0,100,22),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;align=center;rSize=5;fillColor=#EFAC43;strokeColor=#EFAC43;fontColor=#ffffff;spacingRight=10;whiteSpace=wrap;"); +b.vertex=!0;var c=new mxCell("",new mxGeometry(1,.5,10,5),"shape=triangle;direction=south;fillColor=#ffffff;strokeColor=none;perimeter=none;whiteSpace=wrap;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-20,-2.5);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Dropdown (Small)")}),this.addEntry("bootstrap dropdown small",function(){var b=new mxCell("Danger",new mxGeometry(0,0,100,22),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;align=center;rSize=5;fillColor=#DB524C;strokeColor=#DB524C;fontColor=#ffffff;spacingRight=10;whiteSpace=wrap;"); +b.vertex=!0;var c=new mxCell("",new mxGeometry(1,.5,10,5),"shape=triangle;direction=south;fillColor=#ffffff;strokeColor=none;perimeter=none;whiteSpace=wrap;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-20,-2.5);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Dropdown (Small)")}),this.addEntry("bootstrap dropdown split",function(){var b=new mxCell("Default",new mxGeometry(0,0,120,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;fillColor=#ffffff;align=center;rSize=5;strokeColor=#dddddd;spacingRight=20;fontSize=14;whiteSpace=wrap;"); +b.vertex=!0;var c=new mxCell("",new mxGeometry(1,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;perimeter=none;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-30,0);c.vertex=!0;b.insert(c);var d=new mxCell("",new mxGeometry(1,.5,10,5),"shape=triangle;direction=south;fillColor=#000000;strokeColor=none;perimeter=none;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(-20,-2.5);d.vertex= +!0;c.insert(d);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Dropdown (Split)")}),this.addEntry("bootstrap dropdown split",function(){var b=new mxCell("Primary",new mxGeometry(0,0,120,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;align=center;rSize=5;fillColor=#3D8BCD;strokeColor=#0D5B9D;spacingRight=20;fontSize=14;fontColor=#ffffff;whiteSpace=wrap;");b.vertex=!0;var c=new mxCell("",new mxGeometry(1,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;perimeter=none;resizeHeight=1;"); +c.geometry.relative=!0;c.geometry.offset=new mxPoint(-30,0);c.vertex=!0;b.insert(c);var d=new mxCell("",new mxGeometry(1,.5,10,5),"shape=triangle;direction=south;fillColor=#ffffff;strokeColor=none;perimeter=none;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(-20,-2.5);d.vertex=!0;c.insert(d);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Dropdown (Split)")}),this.addEntry("bootstrap dropdown split",function(){var b=new mxCell("Success",new mxGeometry(0,0,120, +30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;align=center;rSize=5;fillColor=#58B957;strokeColor=#288927;spacingRight=20;fontSize=14;fontColor=#ffffff;whiteSpace=wrap;");b.vertex=!0;var c=new mxCell("",new mxGeometry(1,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;perimeter=none;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-30,0);c.vertex=!0;b.insert(c);var d=new mxCell("", +new mxGeometry(1,.5,10,5),"shape=triangle;direction=south;fillColor=#ffffff;strokeColor=none;perimeter=none;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(-20,-2.5);d.vertex=!0;c.insert(d);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Dropdown (Split)")}),this.addEntry("bootstrap dropdown split",function(){var b=new mxCell("Info",new mxGeometry(0,0,120,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;align=center;rSize=5;fillColor=#55BFE0;strokeColor=#258FB0;spacingRight=20;fontSize=14;fontColor=#ffffff;whiteSpace=wrap;"); +b.vertex=!0;var c=new mxCell("",new mxGeometry(1,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;perimeter=none;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-30,0);c.vertex=!0;b.insert(c);var d=new mxCell("",new mxGeometry(1,.5,10,5),"shape=triangle;direction=south;fillColor=#ffffff;strokeColor=none;perimeter=none;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(-20,-2.5);d.vertex= +!0;c.insert(d);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Dropdown (Split)")}),this.addEntry("bootstrap dropdown split",function(){var b=new mxCell("Warning",new mxGeometry(0,0,120,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;align=center;rSize=5;fillColor=#EFAC43;strokeColor=#BF7C13;spacingRight=20;fontSize=14;fontColor=#ffffff;whiteSpace=wrap;");b.vertex=!0;var c=new mxCell("",new mxGeometry(1,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;perimeter=none;resizeHeight=1;"); +c.geometry.relative=!0;c.geometry.offset=new mxPoint(-30,0);c.vertex=!0;b.insert(c);var d=new mxCell("",new mxGeometry(1,.5,10,5),"shape=triangle;direction=south;fillColor=#ffffff;strokeColor=none;perimeter=none;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(-20,-2.5);d.vertex=!0;c.insert(d);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Dropdown (Split)")}),this.addEntry("bootstrap dropdown split",function(){var b=new mxCell("Danger",new mxGeometry(0,0,120, +30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;align=center;rSize=5;fillColor=#DB524C;strokeColor=#AB221C;spacingRight=20;fontSize=14;fontColor=#ffffff;whiteSpace=wrap;");b.vertex=!0;var c=new mxCell("",new mxGeometry(1,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;perimeter=none;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-30,0);c.vertex=!0;b.insert(c);var d=new mxCell("", +new mxGeometry(1,.5,10,5),"shape=triangle;direction=south;fillColor=#ffffff;strokeColor=none;perimeter=none;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(-20,-2.5);d.vertex=!0;c.insert(d);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Dropdown (Split)")}),this.addEntry("bootstrap dropup split",function(){var b=new mxCell("Dropup",new mxGeometry(0,0,120,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;fillColor=#ffffff;align=center;rSize=5;strokeColor=#dddddd;spacingRight=20;fontSize=14;whiteSpace=wrap;"); +b.vertex=!0;var c=new mxCell("",new mxGeometry(1,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;perimeter=none;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-30,0);c.vertex=!0;b.insert(c);var d=new mxCell("",new mxGeometry(1,.5,10,5),"shape=triangle;direction=north;fillColor=#000000;strokeColor=none;perimeter=none;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(-20,-2.5);d.vertex= +!0;c.insert(d);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Dropup (Split)")}),this.addEntry("bootstrap dropup split",function(){var b=new mxCell("Right dropup",new mxGeometry(0,0,140,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;align=center;rSize=5;fillColor=#3D8BCD;strokeColor=#0D5B9D;spacingRight=20;fontSize=14;fontColor=#ffffff;whiteSpace=wrap;");b.vertex=!0;var c=new mxCell("",new mxGeometry(1,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;perimeter=none;resizeHeight=1;"); +c.geometry.relative=!0;c.geometry.offset=new mxPoint(-30,0);c.vertex=!0;b.insert(c);var d=new mxCell("",new mxGeometry(1,.5,10,5),"shape=triangle;direction=north;fillColor=#ffffff;strokeColor=none;perimeter=none;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(-20,-2.5);d.vertex=!0;c.insert(d);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Dropup (Split)")}),this.addDataEntry("bootstrap dropdown menu",160,90,"Dropdown (Menu)","rVTbbtswDP0aPzaw5TTYaxKv3UMLDOt+QItoS5gsGbKay75+pCQ7bu0CGToHAcw7eQ7prNy350fHO/lsBeis/JqVe2etj2/teQ9aZyxXIiurjLEc/xl7+MBaBGvecQfG3xLAYsCR61eImsrZTtiTiYbeX3QySN9ie1WRlbtecnRBIUdB8F6CSAJaOvJvzw3NtPqFk/QeX1fOwQFb2nGtGoMeB+wQHCrci/pDIfcU7p39DXurrQtFSxEesnT8oEzzQzWSBiuoWG2NT8HFBmUsKRSmncTDmn4TW6WoD2WpBWOdl2g7SeXhBQtQphM2i7qECzgP5w+xDaoE7CPYFry7oMtJCcobPNYR/1xC6hzFQcf7KDdj6JUpfElkLRNXzoibETZw4Z3ipiHtTkym7+1rmL5WWk8Qy8Mz48JYQwk6cAp7hYnqJqTYMlJvAy5pY1f3UZ7iuABj8nKguVdHeJNqCdpU/rtV2NVY+y5dyFD9jg3lhxy2rnvwM3LGMW7iaz3jaxuJYBsEPazz1lgvEVmWD6b/fIHxAN/xXYfn3TWxJC/tBekfeKs0AfYN9BG8OvAhQep2vkALx/wE9XjL40DF5Buhg8OOdgtL6G1Se9tdk/wkoSo/ebKJ/DWbb95m6YK//PMFo3j9rMcFmn71/wI="), this.addDataEntry("bootstrap dropdown menu",160,200,"Dropdown (Menu)","7VhRb6MwDP41PK4iQLne47W97WWTTteHe86GgWhpgkK2tvfrzyGhZQXaSgztOi1SJew4tvN9thXVCxfr7Z2iRf4gE+Be+NMLF0pKbb/W2wVw7gU+S7xw6QWBjz8vuO3ZJdWuX1AFQl9yILAHXil/AatZKlkkciPsRql33G3keo3pLYkXzsucogkKPgoJLXNInIA7hbFfbzNzp8kj3qTU+DlRCp4wpblasb/GYmqstZLPsJBcqipGmFTL7BT0iYnsN8tycw9ifKdSaHeYxEZmnDfO3lYL9ZSzTKCOQ6oPru4ryXra5EzDCvXG1wazQ50DApSGbS+YlcoheQdyDVrt0GTDEp07C2IB93NwuaMYOR0trZztjx6owQ/HTjdTYYupFkM1+FoxKjKjnSfMwM6kwaOULybLY9z8arXYEFIYBwUohrlCQ3URUkE3Um8P7FyJTqZWbuLYAaOzUsCpZq/wxlUXtC78L8kwq33sG9cSdfSboA5f+5BpWoJukbO/xkV8Ref5GtpRtqGO6Eyrdbq56mBkYN07BKOgTV/cwR+Zzob3wfTExMJoNMFSHQfozv7omC5H86fJT39TmeHWxVVz6JGe0aWgRIs/Dv2LSY3OD7NOFuNhbeiK5qgU3qXn4lZt/LDD7woL4uOJrufkQKJHYfpbm2khdW5636dfnH8059EYnM/ak5+V9JEjeYHPmXj+7ynvG/KfuRTiMUrh+/nHVU0rFgacfA11gH+VQM/GALp+hn89t678uUX8UcqDtMpjBXhpqq9nKH/m4Uve4/GF4uEPKWve/L/qHw=="), this.addDataEntry("bootstrap dropdown menu header",160,150,"Dropdown (Menu, Headers)","7Vffb9sgEP5r/NjIxk6WPS5J25dNmpaHPdP6bKNisDBtkv31OwxO3EBbq2mmtSpSJO64X3wfR3CULuvttaJN9UPmwKP0MkqXSkptZ/V2CZxHJGZ5lK4iQmL8ReTqidWkW40bqkDoMQ7EOjxQfg9Ws1KyyeVG2IVW77hbqHSN5a2SKF20FUUTFGIUctpWkDsBVxpjX29Ls6fJDe6k1TidKAW3WNJCrdkfYzE11lrJO1hKLlWXI827YVYaestE+YuVldlHYmIXUmjnnMyMzDgf+F51A/WUs1KgjkOhD6G+d5KNtKmYhjXqTawNVoc6BwQoDdsnwexUDslrkDVotUOTDct15SwSC3hcgasdxczpaGvlcu96oAYnjp0wU6nHlMdQD75WjIrSaBc5M7AzafBo5b2p8hi3uBseG0IKE6ABxbBWGKhGIUXCSD122LkjOplaeYhjAEZnpYBTzR7gUagQtC79T8mwqn3uC9cSffYL0qfvY8iiaEF75Oy3MYqv7GW+Tu0o21BHdBbdeL65+mTJiefeIZgRn75ZgL8knp/eB1MP12/2gJ8H3WBTBK6Uo0tnSIpzCl06Clq80H473EbTkb18DYXw7w/+axvI0X1E4pt0y8xnVUhd4bWDiT75/af8noXgL/5Dg7X0hiNTJOZM3P33/JrnR+g2/TC8Z+fgfT7+2YKnAJ793wq8Rd4l0LNzAP3VA3oNuGWq30+HBfj9MM01fwPOUTx8GVrz4YfjXw=="), -this.addEntry("bootstrap input group",function(){var e=new mxCell("Username",new mxGeometry(0,0,250,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;fillColor=#ffffff;spacingLeft=50;fontSize=14;align=left;fontColor=#dddddd;whiteSpace=wrap;");e.vertex=!0;var b=new mxCell("@",new mxGeometry(0,0,40,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.leftButton;rSize=5;strokeColor=#dddddd;fillColor=#f0f0f0;whiteSpace=wrap;resizeHeight=1;");b.geometry.relative= -!0;b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Input Group")}),this.addEntry("bootstrap input group",function(){var e=new mxCell("",new mxGeometry(0,0,250,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;fillColor=#ffffff;spacingLeft=10;fontSize=14;align=left;fontColor=#dddddd;whiteSpace=wrap;");e.vertex=!0;var b=new mxCell(".00",new mxGeometry(1,0,40,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;strokeColor=#dddddd;fillColor=#f0f0f0;whiteSpace=wrap;resizeHeight=1;"); -b.geometry.relative=!0;b.geometry.offset=new mxPoint(-40,0);b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Input Group")}),this.addDataEntry("bootstrap input group",250,30,"Input Group","1VTrToMwFH6a/nQpFF5gTOcPTUz2BHUcaGOhpJwN5tN7CnUXx3TR/bGE5Nwv35eWiazql0426tnmYJi4ZyJz1uIoVX0GxrCY65yJBYtjTj+LHy54o8HLG+mgxmsS4jFhK80GRstoaHFngkFhRWMtIibmrZK57UjhpOSyVZAHhTyNj6/60u8ye6UNWiRx5hysaZS5W+l3H5H6aHT2DTJrrBt6iHw45Cm0MUf2Yjg+o5FrXZdPUPi1Ut+ysDWGmlFCujS6rEkxQ8zgnurQKY2wonI+saMJyRZAAIfQXwRyMAUUl2ArQLejkE7nqAKY6Qg2V6BLFdJEsMl21Mt96oEWEgIz0yyJCZaSWxPlcZtvEG39a7a4/y5g7KClko+fyETXwh7/CHvyDeoOjES9hZPyf6EiOaNixvnN74xf5P9wcZpwa2ZCvxeraYx9s7vky72yRdECnlG5H3OKXVIPT+0YfvwSfwA="), +this.addEntry("bootstrap input group",function(){var b=new mxCell("Username",new mxGeometry(0,0,250,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;fillColor=#ffffff;spacingLeft=50;fontSize=14;align=left;fontColor=#dddddd;whiteSpace=wrap;");b.vertex=!0;var c=new mxCell("@",new mxGeometry(0,0,40,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.leftButton;rSize=5;strokeColor=#dddddd;fillColor=#f0f0f0;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative= +!0;c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Input Group")}),this.addEntry("bootstrap input group",function(){var b=new mxCell("",new mxGeometry(0,0,250,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;fillColor=#ffffff;spacingLeft=10;fontSize=14;align=left;fontColor=#dddddd;whiteSpace=wrap;");b.vertex=!0;var c=new mxCell(".00",new mxGeometry(1,0,40,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;strokeColor=#dddddd;fillColor=#f0f0f0;whiteSpace=wrap;resizeHeight=1;"); +c.geometry.relative=!0;c.geometry.offset=new mxPoint(-40,0);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Input Group")}),this.addDataEntry("bootstrap input group",250,30,"Input Group","1VTrToMwFH6a/nQpFF5gTOcPTUz2BHUcaGOhpJwN5tN7CnUXx3TR/bGE5Nwv35eWiazql0426tnmYJi4ZyJz1uIoVX0GxrCY65yJBYtjTj+LHy54o8HLG+mgxmsS4jFhK80GRstoaHFngkFhRWMtIibmrZK57UjhpOSyVZAHhTyNj6/60u8ye6UNWiRx5hysaZS5W+l3H5H6aHT2DTJrrBt6iHw45Cm0MUf2Yjg+o5FrXZdPUPi1Ut+ysDWGmlFCujS6rEkxQ8zgnurQKY2wonI+saMJyRZAAIfQXwRyMAUUl2ArQLejkE7nqAKY6Qg2V6BLFdJEsMl21Mt96oEWEgIz0yyJCZaSWxPlcZtvEG39a7a4/y5g7KClko+fyETXwh7/CHvyDeoOjES9hZPyf6EiOaNixvnN74xf5P9wcZpwa2ZCvxeraYx9s7vky72yRdECnlG5H3OKXVIPT+0YfvwSfwA="), this.addDataEntry("bootstrap input group",250,30,"Input Group","tVRdb4IwFP01PM4AFbNncXMPW7LE7AdUuNDGQkmpgvv1u6VFceJG9lFC0nO/7zlJPRIX7VrRir3IFIRHHjwSKym1vRVtDEJ4oc9Tj6y8MPTx98LHG96g8/oVVVDqKQmhTThQsQdreatBlbQA66j1UTgH0wWOtwo8sqwZTWWDwEeQ0ppB6gB6KhNftLnZabbFTWqN15lSkOBIS7Xh7yYiMtFayR3EUkjV9SBpd9CTcSEG9qw7JqOiCS/zZ8jMepFpmclSu5rBHDEVPC8RiC6mc491aBjXsMFyJrHBCdHmyAClob1JaGdybK5BFqDVEUManmrmSI0s6T4DnjOXRpyN1hbnp9SzPHhxCo2rRa7U+muVDGnLvday/LFUvvluEKygxpJPPS3BVM7Dbzmff0G5AkE1P8BF+d/oMP93HRIGyW4r24EKZEyFRXem0kjGaXQJ/iyyKcdPeEBzsLimubdNptlN8Co5DnZqf3d/0b2HfQGZZTXoK5VOa4wJh/D8lNrw4Uv7AQ=="), this.addDataEntry("bootstrap input group",250,30,"Input Group","tVTtToMwFH2a/nQBOhZ/j+n8oYnJ4gPUcYHGQknbDebTe0vLPoQp8aOEpOd+33OSEpqU7VqxuniSKQhC7whNlJTG3co2ASFIFPCU0BWJogB/Et1f8YadN6iZgspMSYhcwp6JHTjLiwZVsRKcQ5uD8I7ClDjeKiR0qQuWygZBgCBluoDUA/TUNr5sc7vT7BU30QavM6VgiyMt1Ya/24jYRhsl3yCRQqquB027g56MC3Fmz7pjM2q25VX+CJldL7YtM1kZXzOcI2aC5xUC0cV07rEOTcENbLCcTWxwQrR5MkAZaK8S2pk8m2uQJRh1wJCGp6bwpMaO9KAAnhc+jXob0w7nx9STPHjxCo2rRQdq/bVKlrTlzhhZ/ViqwH5XCFagseRDT0s4lfPoW87nX1CuQDDD93BR/jc6zP9dB8VSLgdC0DEhFt2ZyiQdZ9InBLPYpRw+4TOmw8WQ6d42mWk/wbPkONix/c3tRfce9gVklmkwA6GOa4xph/D0mrrw88f2Aw=="), this.addDataEntry("bootstrap username large",250,40,"Username (Large)","tVTrboMgGH0af65BafsAtVv3Y0uWNHsAVj+FDMEArXZPvw+ht9Vu3Q1jwvnunKMkNK+7hWENf9QFyITeJjQ3Wruwq7scpEwyIoqEzpMsI/gm2d0Fb9p7ScMMKHdNQhYSNkyuIVieLRjFaggO67YyOrircbx5mtCZ5azQLQKCoGCWQxEBehofX3eVP9PoBU9iHW5HxsAKR5qZpXjzERMf7Yx+hVxLbfoetOgXekoh5ZG97JfPaNhKqOoBSn+8qW9ZauVizXSKmElRKQSyj+ndQx1aLhwssZxPbHFCtEUywDjoLhLamyKbC9A1OLPFkFYUjkdSJ4F0wkFUPKaNo43ZgKt96kEe3ESFhtWiZ2r9tUqetNnaOa1+LBXxzwWCDVgseb+jJb2W8+xLzj+j3IBkTmzgpPxvdBj/uw5r/As/VUBpBefkk35dyyodZjUmkNEkpGw/4OMvfYD17LusxwmetMDB9u1vUnLSfo93JXRZWnBnsu0PMqQkwsPdGsKPr953"), @@ -4601,43 +4602,43 @@ this.addDataEntry("bootstrap username normal",250,30,"Username (Normal)","tVTJbo this.addDataEntry("bootstrap username tiny",250,20,"Username (Tiny)","tVRZbsMgFDwNn42wSS6QpMtHK1WKegAaPxtUDBaQ2Onp+8Bka5w03bAsMbx9xoawWd3dW96IJ1OAIuyWsJk1xve7upuBUiSnsiBsTvKc4kvyuzPWLFppwy1of01A3gesuVpBf/LiwGpeQ29wfqOSQfga25tnhE2d4IVpEVAEBXcCigTQ0gT/uqvCTKNXnMR53I6shSW2NLUL+R48JsHbW/MGM6OMjTVYERdaSqnUwXkZV4ho+FLq6hHKMN44lCyN9ilnFjBXstIIVPSJ5qEKrZAeFpguBLbYIZ4lMsB66M4SGo8Sm/dgavB2gy6tLLxIpE560qkAWYkUloSg3PW42oXu5cFNUmhYLXai1l+rFEibrrw3+sdS0fCcIdiCw5QPW1qyqwjPvyScXeDbguJeruEo/W9EGP+7CCv8BS/Sr42GU+ZpXNd+xmyY1RRAR5M+ZPMJH7CeDbCefZf11MGzkdjYrvzNcfUt3CYwZenAn4i2G2NIR4T7a7V3P7x1PwA="), this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;fillColor=#ffffff;strokeColor=#dddddd;fontSize=16;align=left;spacingLeft=10;whiteSpace=wrap;",250,40,"Johnny Boo","Full Name (Large)",null,null,this.getTagsForStencil("mxgraph.bootstrap","","bootstrap full name large").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;fillColor=#ffffff;strokeColor=#dddddd;fontSize=14;align=left;spacingLeft=8;whiteSpace=wrap;", 250,30,"Johnny Boo","Full Name (Normal)",null,null,this.getTagsForStencil("mxgraph.bootstrap","","bootstrap full name normal").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;fillColor=#ffffff;strokeColor=#dddddd;fontSize=10;align=left;spacingLeft=6;whiteSpace=wrap;",250,20,"Johnny Boo","Full Name (Tiny)",null,null,this.getTagsForStencil("mxgraph.bootstrap","","bootstrap full name tiny").join(" ")),this.addEntry("bootstrap final price large", -function(){var e=new mxCell("Amount",new mxGeometry(0,0,200,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;fillColor=#ffffff;rSize=5;strokeColor=#dddddd;spacingLeft=10;fontSize=16;align=left;fontColor=#dddddd;whiteSpace=wrap;");e.vertex=!0;var b=new mxCell("UAH",new mxGeometry(1,0,50,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;strokeColor=#dddddd;fillColor=#f0f0f0;fontSize=16;whiteSpace=wrap;resizeHeight=1;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(-50, -0);b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Final Price (Large)")}),this.addEntry("bootstrap final price normal",function(){var e=new mxCell("Amount",new mxGeometry(0,0,200,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;fillColor=#ffffff;rSize=5;strokeColor=#dddddd;spacingLeft=8;fontSize=14;align=left;fontColor=#dddddd;whiteSpace=wrap;");e.vertex=!0;var b=new mxCell("UAH",new mxGeometry(1,0,40,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;strokeColor=#dddddd;fillColor=#f0f0f0;fontSize=14;whiteSpace=wrap;resizeHeight=1;"); -b.geometry.relative=!0;b.geometry.offset=new mxPoint(-40,0);b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Final Price (Normal)")}),this.addEntry("bootstrap final price tiny",function(){var e=new mxCell("Amount",new mxGeometry(0,0,200,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;fillColor=#ffffff;rSize=5;strokeColor=#dddddd;spacingLeft=6;fontSize=10;align=left;fontColor=#dddddd;whiteSpace=wrap;");e.vertex=!0;var b=new mxCell("UAH", -new mxGeometry(1,0,30,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;strokeColor=#dddddd;fillColor=#f0f0f0;fontSize=10;whiteSpace=wrap;resizeHeight=1;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(-30,0);b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Final Price (Tiny)")}),this.addDataEntry("bootstrap segmented button large",400,40,"Segmented Button (Large)","vZXdTuswDMefhYteUvWDIrjddhgX50hIEw8QVreJTtpUicc2nh6nSUdHu1HERKRKsWM7zv+npEE6r3ZLzRr+T+Ugg/RPkM61Uuhm1W4OUgZJJPIgXQRJEtEXJA8nVuN2NWqYhhqnJCQu4ZXJDTjPCphe8zAM3YrBvfQrHCvqbxEH6cxwlqstGREZOTMccm/QSmPjq11pDxW+0FEM0jTUGtbU06wQUs6VVLqtmhbtIL9eiTebmdkqqNV/6EXl7bDZqkYfGN96eyyOSVHW5JNQ2E1Nw9aiLv+21uLedrrlAmFFfltrSx2Sz6sBGmF3UtHW5eVcgqoA9Z5CtiJH7iJuIqd6xEGUHDun8zHj7PKQ+sGHJh7ROK50gOvZgDaXRmVFm20QVT2dS49qrWoYQXUWSXwKiQZDNR47IeOplJIvKd2dgaRBMhSvcFT+J+RuBuQG0DoeqAWrS+ud5cJeGmE5LIza2M4/35+oHQM2nkEDWlCv0HNNUi8dV+84Ye9fmDBzdk/beETb7JvS+u2flKCuDntf+xet2/066bbvaqiiMIADOIdjTOKVDXgt1dXFn0QrzuUv2i9co+OEHvjsEpfqBPks+jloMj/+ri68//N9Bw=="), +function(){var b=new mxCell("Amount",new mxGeometry(0,0,200,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;fillColor=#ffffff;rSize=5;strokeColor=#dddddd;spacingLeft=10;fontSize=16;align=left;fontColor=#dddddd;whiteSpace=wrap;");b.vertex=!0;var c=new mxCell("UAH",new mxGeometry(1,0,50,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;strokeColor=#dddddd;fillColor=#f0f0f0;fontSize=16;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-50, +0);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Final Price (Large)")}),this.addEntry("bootstrap final price normal",function(){var b=new mxCell("Amount",new mxGeometry(0,0,200,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;fillColor=#ffffff;rSize=5;strokeColor=#dddddd;spacingLeft=8;fontSize=14;align=left;fontColor=#dddddd;whiteSpace=wrap;");b.vertex=!0;var c=new mxCell("UAH",new mxGeometry(1,0,40,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;strokeColor=#dddddd;fillColor=#f0f0f0;fontSize=14;whiteSpace=wrap;resizeHeight=1;"); +c.geometry.relative=!0;c.geometry.offset=new mxPoint(-40,0);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Final Price (Normal)")}),this.addEntry("bootstrap final price tiny",function(){var b=new mxCell("Amount",new mxGeometry(0,0,200,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;fillColor=#ffffff;rSize=5;strokeColor=#dddddd;spacingLeft=6;fontSize=10;align=left;fontColor=#dddddd;whiteSpace=wrap;");b.vertex=!0;var c=new mxCell("UAH", +new mxGeometry(1,0,30,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;strokeColor=#dddddd;fillColor=#f0f0f0;fontSize=10;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-30,0);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Final Price (Tiny)")}),this.addDataEntry("bootstrap segmented button large",400,40,"Segmented Button (Large)","vZXdTuswDMefhYteUvWDIrjddhgX50hIEw8QVreJTtpUicc2nh6nSUdHu1HERKRKsWM7zv+npEE6r3ZLzRr+T+Ugg/RPkM61Uuhm1W4OUgZJJPIgXQRJEtEXJA8nVuN2NWqYhhqnJCQu4ZXJDTjPCphe8zAM3YrBvfQrHCvqbxEH6cxwlqstGREZOTMccm/QSmPjq11pDxW+0FEM0jTUGtbU06wQUs6VVLqtmhbtIL9eiTebmdkqqNV/6EXl7bDZqkYfGN96eyyOSVHW5JNQ2E1Nw9aiLv+21uLedrrlAmFFfltrSx2Sz6sBGmF3UtHW5eVcgqoA9Z5CtiJH7iJuIqd6xEGUHDun8zHj7PKQ+sGHJh7ROK50gOvZgDaXRmVFm20QVT2dS49qrWoYQXUWSXwKiQZDNR47IeOplJIvKd2dgaRBMhSvcFT+J+RuBuQG0DoeqAWrS+ud5cJeGmE5LIza2M4/35+oHQM2nkEDWlCv0HNNUi8dV+84Ye9fmDBzdk/beETb7JvS+u2flKCuDntf+xet2/066bbvaqiiMIADOIdjTOKVDXgt1dXFn0QrzuUv2i9co+OEHvjsEpfqBPks+jloMj/+ri68//N9Bw=="), this.addDataEntry("bootstrap segmented button normal",400,30,"Segmented Button (Normal)","vZXfT4MwEMf/Fh94lADd1OdtOh80MVn8A+o4aGOhpO1++dd7pWVjwiZmi01Iete76/X7SUtApsV2rmjFXmUKIiCPAZkqKY2bFdspCBEkEU8DMguSJMIvSJ5OrMb1alRRBaUZkpC4hDUVK3CeBVC1ZGEYuhVtdsKvMFNgf7M4IBPNaCo3aERopFQzSL2BK5WNL7a5PVT4gUfRBqehUrDEniYZF2IqhVR1VZLVA/1qwb9s5thWMUp+QisqrYfNlqXxgfHI231xVPC8RJ+AzG6qK7rkZf5SW7MH2+mGcQML9NtaG+wQfV4NUAa2JxWtXV7OOcgCjNphyIanhrmIUeRUjxjwnPk04n1UOzvfpx744MQj6sdFOrjeNSh9bVRWtMnKGFkO59KiWsoSelCdRXJ3gogCjSWeGx3joZCSXyHdn2GkQFDD13BU/hJwow64DrMGh1Gclrn1TlJu7wy3GGZarmznP69PVI8OGo+gAsWxV2i5BqlH+tU7Ttj5ByYcO7ulbdyj7fiP0vrt3yTHrvZ73/oHrdn9Nmm2b2rILNNgOnD2xxjEa9zhNZc3V38RrTjXv2f/cI2OE45evitcqhPkR9HloNE8/FxdePvf+w0="), this.addDataEntry("bootstrap segmented button tiny",400,20,"Segmented Button (Tiny)","vZXfT8MgEMf/Fh/6aEOL0/dtOh80MVn8A3C9FiItDbBf/vUehc7OdlqzRZIm3HF3HN9PoBGdlbuFZjV/VhnIiN5HdKaVsn5W7mYgZZQSkUV0HqUpwS9KH06sJs0qqZmGyo5JSH3Chsk1eM8SmF7xOI79irF7GVa4LbG/eRLRqeEsU1s0CBoZMxyyYOBK7eLLXeEOFb/hUYzFaaw1rLCnaS6knCmpdFOV5s1Av16KD5c5cVWsVu/Qicqa4bJVZUNgQoI9FMekKCr0ScjdpqZmK1EVT401v3OZWy4sLNHvam2xQ/QFNUBb2J1UtHEFORegSrB6jyFbkVnuI26IV51wEAUPaYEEYcbbxSH1iw9OAqJhXLSH69WANpdG5USbrq1V1XguHaqVqmAA1Y9I6AkiGgyWeGx1TMZCSn+FdPsDIw2SWbGBo/LngLvpgesxa3FYLVhVOO80E+7OCIdhbtTadf79+pBm9NAEBDVogb1CxzVKPTqs3nHCPjww8cTbHW2TAW0nf5Q2bP+iBHZ12Pu6RbRv7Xb7tobKcwO2B+dwjFG8Jj1eC3V18RfRiXP5e/YP1+g4oQOeXuJSnSBPyfmg0fz6ufrw7r/3Ew=="), -this.addEntry("bootstrap search button large",function(){var e=new mxCell("Search...",new mxGeometry(0,0,200,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;fillColor=#ffffff;rSize=5;strokeColor=#dddddd;align=left;spacingLeft=10;fontSize=16;fontColor=#dddddd;whiteSpace=wrap;");e.vertex=!0;var b=new mxCell("Go!",new mxGeometry(1,0,50,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;strokeColor=#dddddd;fillColor=none;fontSize=16;whiteSpace=wrap;resizeHeight=1;"); -b.geometry.relative=!0;b.geometry.offset=new mxPoint(-50,0);b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Search Button (Large)")}),this.addEntry("bootstrap search button normal",function(){var e=new mxCell("Search...",new mxGeometry(0,0,200,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;fillColor=#ffffff;rSize=5;strokeColor=#dddddd;align=left;spacingLeft=6;fontSize=14;fontColor=#dddddd;whiteSpace=wrap;");e.vertex=!0;var b=new mxCell("Go!", -new mxGeometry(1,0,40,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;strokeColor=#dddddd;fillColor=none;fontSize=14;whiteSpace=wrap;resizeHeight=1;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(-40,0);b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Search Button (Normal)")}),this.addEntry("bootstrap search button tiny",function(){var e=new mxCell("Search...",new mxGeometry(0,0,200,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;fillColor=#ffffff;rSize=5;strokeColor=#dddddd;align=left;spacingLeft=3;fontSize=10;fontColor=#dddddd;whiteSpace=wrap;"); -e.vertex=!0;var b=new mxCell("Go!",new mxGeometry(1,0,30,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;strokeColor=#dddddd;fillColor=none;fontSize=10;whiteSpace=wrap;resizeHeight=1;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(-30,0);b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Search Button (Tiny)")}),this.addDataEntry("bootstrap dropdown menu",300,300,"Dropdown (Menu)","7Zhtb5swEIB/DR8b8Za3jwnpKq3tNDWdpn104QAvBCPjvO3X7wyGkEFWJEpTqSGKxNlnn33P3cWxZjnr/R0nSfjIPIg061azHM6YyN/WeweiSDN16mnWQjNNHb+a+eVMr5H16gnhEIs2A8x8wJZEG8hbFpsXQjXTwdYfs9u8OxWHSHWHYo2LXBiaNU9D4rEdCjoKHklD8JSAPYnUX+8DubPBC+4nFfg64BxcXNicL+kfqTGU2oKzFTgsYjyzYXnZI3sS4tI4eKJBKHdjyLl9Fgs12BihjBY8irutjAdbfip9CyrNUhZjf8y4CI9zP4BfTk0iGkiVKGub70IqYIlq0tYOV49tyl3ABezPujxrUv6+A7YGwQ+osqOetCw1LD3Hooeg9oairdpImstBOfQIEF8Uw2aeVo1njWABR3BK4kC2zr2Kf1K2yfzj0yiq+FTPnhqtmMVyggQ4xbVCpamVp8xmT50OOKhAHgxzueJHo8GNSotDRATdwslUTa5V5r8ziqsqbd8YwxPrN2ZhvpiD+X4Kogan3EYrXvbrvLpmXJ5w/+D0s6dN8lUTpLRv1LNFkqYuiWaqWbDkOMmzFBZWh0g5k1OKjm3WQqMxxczhpHuODWvMlkC4Gw4Ggw9RLv9T0mTxbBrZVOo4pGj0p/Ko0RaU/WrxMycNZCz9TdK2KAgqLqY9pOyohn8O9Df6Pf/RdEIak56SuBP6SgE4X7XfNRAaU7RrIBQVYdID+vF7n5beALs8LqkFGZ8vDMZ9hMGk9x9tNwR3VZIvfG41xcIoe9rSGPdw4Jr0c+CyeyA3rZG7p7BV+bvihGL0f8Ac/lw5a+h9JG0RuRX2Dyz28D9PTv/+Cv7i4K1ewBs18I8sdRFnBv5pk6b0emC7PPxRL/DrF1zfAMnrvxhfqcxfzq70L05/2gv9+nXYM1sdWA7+K0lIfEV/afTlAbILehSPl+a5evVO/S8="), +this.addEntry("bootstrap search button large",function(){var b=new mxCell("Search...",new mxGeometry(0,0,200,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;fillColor=#ffffff;rSize=5;strokeColor=#dddddd;align=left;spacingLeft=10;fontSize=16;fontColor=#dddddd;whiteSpace=wrap;");b.vertex=!0;var c=new mxCell("Go!",new mxGeometry(1,0,50,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;strokeColor=#dddddd;fillColor=none;fontSize=16;whiteSpace=wrap;resizeHeight=1;"); +c.geometry.relative=!0;c.geometry.offset=new mxPoint(-50,0);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Search Button (Large)")}),this.addEntry("bootstrap search button normal",function(){var b=new mxCell("Search...",new mxGeometry(0,0,200,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;fillColor=#ffffff;rSize=5;strokeColor=#dddddd;align=left;spacingLeft=6;fontSize=14;fontColor=#dddddd;whiteSpace=wrap;");b.vertex=!0;var c=new mxCell("Go!", +new mxGeometry(1,0,40,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;strokeColor=#dddddd;fillColor=none;fontSize=14;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-40,0);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Search Button (Normal)")}),this.addEntry("bootstrap search button tiny",function(){var b=new mxCell("Search...",new mxGeometry(0,0,200,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;fillColor=#ffffff;rSize=5;strokeColor=#dddddd;align=left;spacingLeft=3;fontSize=10;fontColor=#dddddd;whiteSpace=wrap;"); +b.vertex=!0;var c=new mxCell("Go!",new mxGeometry(1,0,30,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;rSize=5;strokeColor=#dddddd;fillColor=none;fontSize=10;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-30,0);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Search Button (Tiny)")}),this.addDataEntry("bootstrap dropdown menu",300,300,"Dropdown (Menu)","7Zhtb5swEIB/DR8b8Za3jwnpKq3tNDWdpn104QAvBCPjvO3X7wyGkEFWJEpTqSGKxNlnn33P3cWxZjnr/R0nSfjIPIg061azHM6YyN/WeweiSDN16mnWQjNNHb+a+eVMr5H16gnhEIs2A8x8wJZEG8hbFpsXQjXTwdYfs9u8OxWHSHWHYo2LXBiaNU9D4rEdCjoKHklD8JSAPYnUX+8DubPBC+4nFfg64BxcXNicL+kfqTGU2oKzFTgsYjyzYXnZI3sS4tI4eKJBKHdjyLl9Fgs12BihjBY8irutjAdbfip9CyrNUhZjf8y4CI9zP4BfTk0iGkiVKGub70IqYIlq0tYOV49tyl3ABezPujxrUv6+A7YGwQ+osqOetCw1LD3Hooeg9oairdpImstBOfQIEF8Uw2aeVo1njWABR3BK4kC2zr2Kf1K2yfzj0yiq+FTPnhqtmMVyggQ4xbVCpamVp8xmT50OOKhAHgxzueJHo8GNSotDRATdwslUTa5V5r8ziqsqbd8YwxPrN2ZhvpiD+X4Kogan3EYrXvbrvLpmXJ5w/+D0s6dN8lUTpLRv1LNFkqYuiWaqWbDkOMmzFBZWh0g5k1OKjm3WQqMxxczhpHuODWvMlkC4Gw4Ggw9RLv9T0mTxbBrZVOo4pGj0p/Ko0RaU/WrxMycNZCz9TdK2KAgqLqY9pOyohn8O9Df6Pf/RdEIak56SuBP6SgE4X7XfNRAaU7RrIBQVYdID+vF7n5beALs8LqkFGZ8vDMZ9hMGk9x9tNwR3VZIvfG41xcIoe9rSGPdw4Jr0c+CyeyA3rZG7p7BV+bvihGL0f8Ac/lw5a+h9JG0RuRX2Dyz28D9PTv/+Cv7i4K1ewBs18I8sdRFnBv5pk6b0emC7PPxRL/DrF1zfAMnrvxhfqcxfzq70L05/2gv9+nXYM1sdWA7+K0lIfEV/afTlAbILehSPl+a5evVO/S8="), this.addDataEntry("bootstrap dropdown menu",200,252,"Dropdown (Menu)","7Zhtb5swEIB/DR8b8ZYs/ZiQrtLaTlPTaepHFw7w4mBknLf9+p3BISQQjS5hmbY4isTd2Xf2PT4bYTjefH0vSBo/8QCY4dwZjic4l8XTfO0BY4Zt0sBwJoZtm/g37I9HrFZuNVMiIJFtBtjFgCVhCyg0k8UboYbtofbr6K4wZ3LDtDmWc5zkxDKccRaTgK9QMFEISBZDoAW0pKr/fB2plfXecD2ZxMeeEODjxMZiSn+oHn3VWwo+A48zLvIYTpA3ZUmJT5PomUaxWo2lfIc8kXqwNUAZIwQUV1sZD676VWwTqsJSnqA94ULGO9+PEJauCaOR6sJy3XgVUwlT7KZirXD2qNPpAiFhfTTluUrn+x74HKTYYJcVDVTkPO1mgcWMQa8NRVfrSFbIUTl0BxAfNMNmnk6NZ43gFo4UlCSR0o6DSn4yvsjzE1LGKjk181ajlfBEOUhBUJwrVFStMmU3Z2p/wEZv5F6/kCt5tBrSqHsJYETSJey5akqtDv+FU5xVGfvG6u9Fv7G34bc+eBhmIGtwymW04uX+mtepFVcU3AHOMG9tiq9aIGV8q14tijT1CRtpteTpzsmLEibOCTvlSE1pOq5d2xqNJVZumFNqrF9jNgb6HVdZnJpeTBPSEcV30ToAVN0Bx8u26dATkOGB+03n1mqLzP29Y9Ax31nAbbkN/vRddwZm6rLTE7L+ZYYHh/Bm381Zj9wPnR+5fgz+rCS/zbnTtBcGeWtLY9DBdTns5rp0OyA3rJF7oLDU9TsThOLu/wtr+P+q2UEXNXtbI//IkwDfVwv2D1fsl8Z+2wX27XlV4f7EMx9p5tyfF1lGr69aF2dv2Z3At2rwPwOSN1+5mOnCn46u9C9Ov98J/fqXqRc+2/AC/CeSkuSK/uLoh2dAj+Lue2fRvfo59Cc="), this.addDataEntry("bootstrap context menu",140,128,"Context Menu","7VfLbsIwEPyaXJHjlEePBVourVSJQ88u2cQWjh05Lo9+fdexeTWgogokQCAh2eNdr3dmEjlRMigWI8NK/qZTkFHyHCUDo7X1o2IxACkjSkQaJcOIUoL/iL4cWI3rVVIyA8oek0B9wozJL/CIByq7lAHgtsBjDeMo6VecpXqOE4KTlFUc0jDBldLFF4vc9dL6xA4qi8OWgQmepJ8JKQdaalNvmmT1zyVao6ewtZLWv+1irvKcCwvjkk1ckTnui1g4OhgLi4Pt11DofQS6AGuWGDIXqeUh4sFTRDiInK/SaM+DrPJAvs7dsImDQOh+cpMGuUOjS2xK1dVYCuZMbO+yqrQCByJ9QuWvkLkmO4gwKXKFY1lDOxqFnBKMwL5hC8q0svv0cvhYfLtzxeSAZAYqjPgI5MfHikj/KWLHYwYks2IGO/vvEzaUeNcCK1Oy9BG/nKCzrALb8MH6XEdZ46FhjaeJFVpdqR9uUveVSCcVvt0UXmnL3ZuAsLsFLswCq61PaoFOwwJjl85RCIRBVlA3Y+DuhMtxQrtzBid0/759rdSUwst08Lq0R4yrJLpLz0B0734Tu4WHsHeOq9hj83UM2DKzKDIl+NxNr9QaN2mBmJzgVobTzSe2D9/+Av8B"), this.addDataEntry("bootstrap context menu",140,96,"Context Menu","7VZRb4IwEP41vBooE7fHiZsvW7LEhz13ctDGQknpBPfrd6VVIWhmNk1cIglJ7+td7+77rgEvjPNmrmjJXmUCwgufvDBWUmq7ypsYhPCIzxMvnHmE+Ph65PnIbtDu+iVVUOhTAogNWFPxCRaxQKU3wgFM51jWLPDCacVoIms0fDQSWjFInIE7pfHPm8z0MvrADiqNy5GCJVYyTbkQsRRStYeGafuYQK3kCjo7Sft0k5nMrkxQGpqjrbaQ63MOMgetNuhS80Qz53Fn6fAZ8Iy5sIfIYrSydrYL3ROHC8fdYR7DAY+PS81lcSE2+6wVsgADlnTJi+wFUtNYhAgVPCtwLVqop4GLKUFxbBY6UCoLveBfJn9giqkZ17DAsw1SYxGIKajQ490Re7JA5HcCBU4gBYJqvobe+YdUcyneJMfMxN9Yj/t+gEzTCvRA5F1dJ+l+N9S9kJohn5joNgFXNgFbuc46AuPBCCxMOEMhEAZRQduMgtskXM8kbI8+6yREP39Mt2oKbmU6+vU7IMa/JHocXYDoyfDKAbZMNd4a4iO3q9tdu54RmJC/jwCa+59i6979Z/4G"), -this.addEntry("bootstrap pagination",function(){var e=new mxCell("",new mxGeometry(0,0,330,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;fillColor=#ffffff;strokeColor=#dddddd;whiteSpace=wrap;");e.vertex=!0;var b=new mxCell("<<",new mxGeometry(0,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.leftButton;fontColor=#3D8BCD;whiteSpace=wrap;");b.vertex=!0;e.insert(b);b=new mxCell("1",new mxGeometry(30,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;perimeter=none;fontColor=#3D8BCD;whiteSpace=wrap;"); -b.vertex=!0;e.insert(b);b=new mxCell("3",new mxGeometry(90,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;perimeter=none;fontColor=#3D8BCD;whiteSpace=wrap;");b.vertex=!0;e.insert(b);b=new mxCell("4",new mxGeometry(120,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;perimeter=none;fontColor=#3D8BCD;whiteSpace=wrap;");b.vertex=!0;e.insert(b);b=new mxCell("5", -new mxGeometry(150,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;perimeter=none;fontColor=#3D8BCD;whiteSpace=wrap;");b.vertex=!0;e.insert(b);b=new mxCell("6",new mxGeometry(180,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;perimeter=none;fontColor=#3D8BCD;whiteSpace=wrap;");b.vertex=!0;e.insert(b);b=new mxCell("7",new mxGeometry(210,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;perimeter=none;fontColor=#3D8BCD;whiteSpace=wrap;"); -b.vertex=!0;e.insert(b);b=new mxCell("8",new mxGeometry(240,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;perimeter=none;fontColor=#3D8BCD;whiteSpace=wrap;");b.vertex=!0;e.insert(b);b=new mxCell("9",new mxGeometry(270,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;perimeter=none;fontColor=#3D8BCD;whiteSpace=wrap;");b.vertex=!0;e.insert(b);b=new mxCell(">>", -new mxGeometry(300,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;fontColor=#3D8BCD;whiteSpace=wrap;");b.vertex=!0;e.insert(b);b=new mxCell("2",new mxGeometry(60,0,30,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=#3D8BCD;fillColor=#3D8BCD;perimeter=none;fontColor=#ffffff;whiteSpace=wrap;");b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height, +this.addEntry("bootstrap pagination",function(){var b=new mxCell("",new mxGeometry(0,0,330,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;fillColor=#ffffff;strokeColor=#dddddd;whiteSpace=wrap;");b.vertex=!0;var c=new mxCell("<<",new mxGeometry(0,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.leftButton;fontColor=#3D8BCD;whiteSpace=wrap;");c.vertex=!0;b.insert(c);c=new mxCell("1",new mxGeometry(30,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;perimeter=none;fontColor=#3D8BCD;whiteSpace=wrap;"); +c.vertex=!0;b.insert(c);c=new mxCell("3",new mxGeometry(90,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;perimeter=none;fontColor=#3D8BCD;whiteSpace=wrap;");c.vertex=!0;b.insert(c);c=new mxCell("4",new mxGeometry(120,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;perimeter=none;fontColor=#3D8BCD;whiteSpace=wrap;");c.vertex=!0;b.insert(c);c=new mxCell("5", +new mxGeometry(150,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;perimeter=none;fontColor=#3D8BCD;whiteSpace=wrap;");c.vertex=!0;b.insert(c);c=new mxCell("6",new mxGeometry(180,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;perimeter=none;fontColor=#3D8BCD;whiteSpace=wrap;");c.vertex=!0;b.insert(c);c=new mxCell("7",new mxGeometry(210,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;perimeter=none;fontColor=#3D8BCD;whiteSpace=wrap;"); +c.vertex=!0;b.insert(c);c=new mxCell("8",new mxGeometry(240,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;perimeter=none;fontColor=#3D8BCD;whiteSpace=wrap;");c.vertex=!0;b.insert(c);c=new mxCell("9",new mxGeometry(270,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;perimeter=none;fontColor=#3D8BCD;whiteSpace=wrap;");c.vertex=!0;b.insert(c);c=new mxCell(">>", +new mxGeometry(300,0,30,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rightButton;fontColor=#3D8BCD;whiteSpace=wrap;");c.vertex=!0;b.insert(c);c=new mxCell("2",new mxGeometry(60,0,30,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=#3D8BCD;fillColor=#3D8BCD;perimeter=none;fontColor=#ffffff;whiteSpace=wrap;");c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height, "Pagination")}),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.roundedButton;fillColor=#ffffff;align=center;strokeColor=#dddddd;fontColor=#3D8BCD;whiteSpace=wrap;",100,30,"Previous","Button (Previous)",null,null,this.getTagsForStencil("mxgraph.bootstrap","","bootstrap ").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.roundedButton;fillColor=#ffffff;align=center;strokeColor=#dddddd;fontColor=#3D8BCD;whiteSpace=wrap;",60, -30,"Next","Button (Next)",null,null,this.getTagsForStencil("mxgraph.bootstrap","","bootstrap ").join(" ")),this.addEntry("bootstrap button older",function(){var e=new mxCell("Older",new mxGeometry(0,0,100,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.roundedButton;fillColor=#ffffff;align=center;strokeColor=#dddddd;fontColor=#dddddd;spacingLeft=10;whiteSpace=wrap;");e.vertex=!0;var b=new mxCell("",new mxGeometry(0,.5,16,4),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.arrow;strokeColor=#dddddd;flipH=1;"); -b.geometry.relative=!0;b.geometry.offset=new mxPoint(12,-2);b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Button (Older)")}),this.addEntry("bootstrap button newer",function(){var e=new mxCell("Newer",new mxGeometry(0,0,100,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.roundedButton;fillColor=#ffffff;align=center;strokeColor=#dddddd;fontColor=#3D8BCD;spacingRight=10;whiteSpace=wrap;");e.vertex=!0;var b=new mxCell("",new mxGeometry(1, -.5,16,4),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.arrow;strokeColor=#3D8BCD;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(-28,-2);b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Button (Newer)")}),this.addDataEntry("bootstrap tabs",460,45,"Tabs","tZZRk5sgEMc/jY/JoCTWPjaxvT70Zjq9fgESN8ocigPkkvTTd1FMTDA3uVaZcQaWXRf+P1YJ6Lo8PilWF88yAxHQrwFdKylN2yuPaxAiiAjPApoGUUTwCaJvd2bDZpbUTEFlHgmI2oA3JvbQWr7LElqjNifhjIUpcWlpGNCVLlgmDzggOMiYLiBzA5yprX95zO1+5hvchTbYnRu2+S1rdNlxIdZSSNW8lu6ahnYmeF6hbYvLBmUdZWV6jqRpNodR8hV6M1nTcEa98D82+xL7h4IbeKnZ1hoOuAK0uY2CMnC8K1Zjcko9ASph1AldDjwzReuxTNqoAnheuKhFqzFhuh3n58iL8thx4g+DoB6IlGu2EahuRH7w6nV0JrJe7Y2R1TtYrtWuZAU3Qt9gOsMYG4ALiN1x7fEICZkGyMID8gxasxz0lCT8QhgJDU2T1Tq1gUiFV/kvpxYl0+EK49jnFcbT8Fp6vDqE45FSCramp3PiA/rctHuAbqCcadagOO4Yeq7/zGTxPpM24OR+DvOlR6hTsg+og6ZAMMPf4OpdQ9Rc/p+S47LOyWc0vko/S67fIHc7Dcajft7FQwch9g7Cl63hWF34HZX5pNU7dbFGExZrlAwUK5moWD95jDwsneJGcVbl1rrKuK0/i5KmWu7tKm8lvyg3JPlAmT2kXPyfJRUO/KOW41TUTfZZ1KUftaaSx3kJ3uh6/6I2wlntLmFu09RXfEGiga/Yx08uDi+X8Va4/l39Lw=="), +30,"Next","Button (Next)",null,null,this.getTagsForStencil("mxgraph.bootstrap","","bootstrap ").join(" ")),this.addEntry("bootstrap button older",function(){var b=new mxCell("Older",new mxGeometry(0,0,100,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.roundedButton;fillColor=#ffffff;align=center;strokeColor=#dddddd;fontColor=#dddddd;spacingLeft=10;whiteSpace=wrap;");b.vertex=!0;var c=new mxCell("",new mxGeometry(0,.5,16,4),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.arrow;strokeColor=#dddddd;flipH=1;"); +c.geometry.relative=!0;c.geometry.offset=new mxPoint(12,-2);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Button (Older)")}),this.addEntry("bootstrap button newer",function(){var b=new mxCell("Newer",new mxGeometry(0,0,100,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.roundedButton;fillColor=#ffffff;align=center;strokeColor=#dddddd;fontColor=#3D8BCD;spacingRight=10;whiteSpace=wrap;");b.vertex=!0;var c=new mxCell("",new mxGeometry(1, +.5,16,4),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.arrow;strokeColor=#3D8BCD;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-28,-2);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Button (Newer)")}),this.addDataEntry("bootstrap tabs",460,45,"Tabs","tZZRk5sgEMc/jY/JoCTWPjaxvT70Zjq9fgESN8ocigPkkvTTd1FMTDA3uVaZcQaWXRf+P1YJ6Lo8PilWF88yAxHQrwFdKylN2yuPaxAiiAjPApoGUUTwCaJvd2bDZpbUTEFlHgmI2oA3JvbQWr7LElqjNifhjIUpcWlpGNCVLlgmDzggOMiYLiBzA5yprX95zO1+5hvchTbYnRu2+S1rdNlxIdZSSNW8lu6ahnYmeF6hbYvLBmUdZWV6jqRpNodR8hV6M1nTcEa98D82+xL7h4IbeKnZ1hoOuAK0uY2CMnC8K1Zjcko9ASph1AldDjwzReuxTNqoAnheuKhFqzFhuh3n58iL8thx4g+DoB6IlGu2EahuRH7w6nV0JrJe7Y2R1TtYrtWuZAU3Qt9gOsMYG4ALiN1x7fEICZkGyMID8gxasxz0lCT8QhgJDU2T1Tq1gUiFV/kvpxYl0+EK49jnFcbT8Fp6vDqE45FSCramp3PiA/rctHuAbqCcadagOO4Yeq7/zGTxPpM24OR+DvOlR6hTsg+og6ZAMMPf4OpdQ9Rc/p+S47LOyWc0vko/S67fIHc7Dcajft7FQwch9g7Cl63hWF34HZX5pNU7dbFGExZrlAwUK5moWD95jDwsneJGcVbl1rrKuK0/i5KmWu7tKm8lvyg3JPlAmT2kXPyfJRUO/KOW41TUTfZZ1KUftaaSx3kJ3uh6/6I2wlntLmFu09RXfEGiga/Yx08uDi+X8Va4/l39Lw=="), this.addDataEntry("bootstrap pills",392,45,"Pills","3ZbdbpswFMefhstEgANjlwO27mKVpvUJ3HACVg1Gttske/odg6Ekhipdx80sIdnH5/jj//Mx9khWn+4kbat7UQD3yFePZFII3dfqUwace6HPCo/kXhj6+Hnht4XeoOv1Wyqh0bcEhH3AC+XP0Fu+ixp6o9Jnbo2VrnFpeeCRVFW0EEds+NgoqKqgsA3saY1/fSrNfraPuAulsbqVEva4nJRyVjboscfVgUSDfGC/TUhkwrUUT5AJLrAnb0SDHemBcT6YvJCQPEmz3NhFoyf2Q1euBjxWTMNDS/fGcMR1oM1uF6SG06JkncnqdQeoh5ZndDmyQle9R5T0URWwsrJRu15pn6q+XY6Rr/pjxSKYx0EcHDlT9JGjxqH/gzVPa5G50nnU801iS9CmPlegiq6sAMcGxPZAT1gFvr8OrJ0D6x6UoiWotShdCHsrsfciGnNMIR3WlL+sasRfD1sQxy63IF6HW+RwG1CuRyxxiX3uyuLFt3DBtSAZ7hgmrn/NZPc2kz7gbH8j28ghNCg5BTRAk8CpZi9wMdYcNTv/T8FwWePkGxJfTL9JLkcQh4MC7VAfd3HTQYidg/Blr5lozF0ryv8zi8MVszhMZrLYXymLPznwHF4DCi0ZbUpjTQtmIBjGJFfi2axy8Y0xK/lM/t2kXPzBXAtmfmLRv0m1q9k34TD9R5INm6+v2N59+sj9Aw=="), this.addDataEntry("bootstrap breadcrumb",460,30,"Breadcrumb","7ZZdb4IwFIZ/TW8NtH7sGph64ZIl/oIqB2lWKCmd4H79Tm39irqZTI1LhJC0b8+hp+/DSSAsLtqR5lX+plKQhL0SFmuljBsVbQxSEhqIlLCEUBrgQ+jwzGq4Xg0qrqE0lyRQl7Dk8hOc4oTarKQXclNgWUlIWFTnPFUNTgKcpLzOIfUTXKlsfNEu7Fk6MzxBbXDY0RrmWEqkp+LLRvRstNHqA2IllUalVCUuRJmQciMRyrK+vVH3FYI20J495VryRxyBKsDoFYY0IjW5i+j2nRNBDmKR+zTmNV67+WKbuvMMB9620xayIwvH+JKr2+hcrEALrBD2fPvVzI2kSrPnL0teojix+RWfi3IxgcyaEtoymlwYmKJua2lwe8sPagQ43pgXXkqG/kqm9wMYDZIbsYSD1/+FVvfEBz98eFjp+ro7GXoNMn6HdyVwYxq0h9A3GSrLajBHJLd1XQS3dwR3Imaa+y/kkQFvu/Eftt5pwINbAO4/u/chujekt6A7OKKbcMOfeO/eu2H3CnhxuvuPdeH7v7nf"), -this.addEntry("bootstrap pills vertical",function(){var e=new mxCell("",new mxGeometry(0,0,200,158),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize5=;strokeColor=none;fillColor=#ffffff;");e.vertex=!0;var b=new mxCell("Home",new mxGeometry(0,0,200,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=none;fillColor=#3D8BCD;fontColor=#ffffff;align=left;spacingLeft=10;whiteSpace=wrap;resizeWidth=1;");b.geometry.relative=!0;b.vertex=!0;e.insert(b);var c=new mxCell("42", -new mxGeometry(1,.5,25,16),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=8;fillColor=#ffffff;strokeColor=none;fontColor=#3D8BCD;whiteSpace=wrap;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-33,-8);c.vertex=!0;b.insert(c);b=new mxCell("Profile",new mxGeometry(0,0,200,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;fontColor=#3D8BCD;align=left;spacingLeft=10;whiteSpace=wrap;resizeWidth=1;");b.geometry.relative= -!0;b.geometry.offset=new mxPoint(0,32);b.vertex=!0;e.insert(b);b=new mxCell("Messages",new mxGeometry(0,0,200,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;fontColor=#3D8BCD;align=left;spacingLeft=10;whiteSpace=wrap;resizeWidth=1;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(0,64);b.vertex=!0;e.insert(b);c=new mxCell("24",new mxGeometry(1,.5,25,16),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=8;fillColor=#999999;strokeColor=none;fontColor=#ffffff;whiteSpace=wrap;"); -c.geometry.relative=!0;c.geometry.offset=new mxPoint(-33,-8);c.vertex=!0;b.insert(c);b=new mxCell("Disabled Link",new mxGeometry(0,0,200,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;fontColor=#dddddd;align=left;spacingLeft=10;whiteSpace=wrap;resizeWidth=1;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(0,96);b.vertex=!0;e.insert(b);b=new mxCell("System Settings",new mxGeometry(0,0,200,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.bottomRect;fontColor=#3D8BCD;align=left;spacingLeft=10;whiteSpace=wrap;resizeWidth=1;"); -b.geometry.relative=!0;b.geometry.offset=new mxPoint(0,128);b.vertex=!0;e.insert(b);c=new mxCell("1",new mxGeometry(1,.5,25,16),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=8;fillColor=#999999;strokeColor=none;fontColor=#ffffff;whiteSpace=wrap;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-33,-8);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([e],200,158,"Pills (Vertical)")}),this.addDataEntry("bootstrap navbar",720,100,"Navbar","3ZjdjqIwFMefhksJBXX0Vt2dm9lkMz5BBw7QTGlJqaPu028LFUFgcCKwk8WYtKenX79/21OwvG1yehY4jX/xAKjl/bC8reBcFqnktAVKLdchgeXtLNd11N9yf3aUorzUSbEAJu+p4BYVPjA9QGEpDJk8U2OIZaKGtUOWt8liHPCjyjgqE+AshsBkVEmq/ZNTpOdiv6kZZFIlbSHAV0PZiD35oz0WKh0SSreccpH34IVL/dOtSMHfoVIS5I+uDf5BZOQDXiEr2tG9msGDkHDqBJCbzOyfgScgxVm5HEkg48LjyUByYiBRfKnmGCPOCkNU1r3yVAmDtB2v18C7EZgFgzMuENfxMc7ghvXFxJmsQF7nj7EbldBc5Y8xkbBPsa8tR9XRvcjdXuSrFuLzAYDPG8BfCHsfiffNMi4Xa7sOHdCHhnyqA64wX47EfDEl80fX+Ei40Xw63ssG753gqQLKvinzTOEmLHo1GJAzng6u09ShPMmHFuKpP3he2EpBMIvoLbgapTbKAdEaEM6UKeMHPaVNCoKosULF7S5yy89XcFHhbG4N9qLBcdWkaJwEUCxVcK611EbW9P6bEzWosusZWtc6n3n1FngYZiAbypRzuEusVUOsPWDhx7ZtT3Hl6b7a3Oya0o4pibTsFEJ53UQveW7UPeQ5i5oczZXgtu0ob4AdtW6KdHhLiPy3Co3EeYGcHs5tt6QhMF86HjlkY+bHGubkwbiGFX0pMD98lK3qos5uA80ghxlCk90BekWcMLr3CftppH9YWXcSZe94I/9OlwrU8Xr9f94qVPb6baZwr366+Qs="), +this.addEntry("bootstrap pills vertical",function(){var b=new mxCell("",new mxGeometry(0,0,200,158),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize5=;strokeColor=none;fillColor=#ffffff;");b.vertex=!0;var c=new mxCell("Home",new mxGeometry(0,0,200,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=none;fillColor=#3D8BCD;fontColor=#ffffff;align=left;spacingLeft=10;whiteSpace=wrap;resizeWidth=1;");c.geometry.relative=!0;c.vertex=!0;b.insert(c);var d=new mxCell("42", +new mxGeometry(1,.5,25,16),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=8;fillColor=#ffffff;strokeColor=none;fontColor=#3D8BCD;whiteSpace=wrap;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(-33,-8);d.vertex=!0;c.insert(d);c=new mxCell("Profile",new mxGeometry(0,0,200,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;fontColor=#3D8BCD;align=left;spacingLeft=10;whiteSpace=wrap;resizeWidth=1;");c.geometry.relative= +!0;c.geometry.offset=new mxPoint(0,32);c.vertex=!0;b.insert(c);c=new mxCell("Messages",new mxGeometry(0,0,200,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;fontColor=#3D8BCD;align=left;spacingLeft=10;whiteSpace=wrap;resizeWidth=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,64);c.vertex=!0;b.insert(c);d=new mxCell("24",new mxGeometry(1,.5,25,16),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=8;fillColor=#999999;strokeColor=none;fontColor=#ffffff;whiteSpace=wrap;"); +d.geometry.relative=!0;d.geometry.offset=new mxPoint(-33,-8);d.vertex=!0;c.insert(d);c=new mxCell("Disabled Link",new mxGeometry(0,0,200,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;fontColor=#dddddd;align=left;spacingLeft=10;whiteSpace=wrap;resizeWidth=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,96);c.vertex=!0;b.insert(c);c=new mxCell("System Settings",new mxGeometry(0,0,200,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.bottomRect;fontColor=#3D8BCD;align=left;spacingLeft=10;whiteSpace=wrap;resizeWidth=1;"); +c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,128);c.vertex=!0;b.insert(c);d=new mxCell("1",new mxGeometry(1,.5,25,16),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=8;fillColor=#999999;strokeColor=none;fontColor=#ffffff;whiteSpace=wrap;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(-33,-8);d.vertex=!0;c.insert(d);return a.createVertexTemplateFromCells([b],200,158,"Pills (Vertical)")}),this.addDataEntry("bootstrap navbar",720,100,"Navbar","3ZjdjqIwFMefhksJBXX0Vt2dm9lkMz5BBw7QTGlJqaPu028LFUFgcCKwk8WYtKenX79/21OwvG1yehY4jX/xAKjl/bC8reBcFqnktAVKLdchgeXtLNd11N9yf3aUorzUSbEAJu+p4BYVPjA9QGEpDJk8U2OIZaKGtUOWt8liHPCjyjgqE+AshsBkVEmq/ZNTpOdiv6kZZFIlbSHAV0PZiD35oz0WKh0SSreccpH34IVL/dOtSMHfoVIS5I+uDf5BZOQDXiEr2tG9msGDkHDqBJCbzOyfgScgxVm5HEkg48LjyUByYiBRfKnmGCPOCkNU1r3yVAmDtB2v18C7EZgFgzMuENfxMc7ghvXFxJmsQF7nj7EbldBc5Y8xkbBPsa8tR9XRvcjdXuSrFuLzAYDPG8BfCHsfiffNMi4Xa7sOHdCHhnyqA64wX47EfDEl80fX+Ei40Xw63ssG753gqQLKvinzTOEmLHo1GJAzng6u09ShPMmHFuKpP3he2EpBMIvoLbgapTbKAdEaEM6UKeMHPaVNCoKosULF7S5yy89XcFHhbG4N9qLBcdWkaJwEUCxVcK611EbW9P6bEzWosusZWtc6n3n1FngYZiAbypRzuEusVUOsPWDhx7ZtT3Hl6b7a3Oya0o4pibTsFEJ53UQveW7UPeQ5i5oczZXgtu0ob4AdtW6KdHhLiPy3Co3EeYGcHs5tt6QhMF86HjlkY+bHGubkwbiGFX0pMD98lK3qos5uA80ghxlCk90BekWcMLr3CftppH9YWXcSZe94I/9OlwrU8Xr9f94qVPb6baZwr366+Qs="), this.addDataEntry("bootstrap navbar form",720,40,"Navbar Form","xZVvb4IwEMY/Td+SUmTTt+LmXmzJEj9BlYM2K5SUKrhPv4PW/3NzmVGMSe+5O3p9fhBIlBTt1PBKvOkUFImeSJQYra1bFW0CShFGZUqiCWGM4p+w5zPZsM/Sihso7SUNzDWsuFqCU5xQ27XygrAFjjUJSTSuBU91gwHFIOW1gNQHmKm6+qLNu7MEczxBbXEZGAMLHGVsZvKzq4hxnUmlEq206XeIsofu193FGv0Be5m0vzDjxwRjoT171F7y55yCLsCaNZY0MrXCVTx6O6gAmQvfNvAar12cb1t3xuHCe/e9j9GJj2PDy/TqZjovD30qdQlHpm4kXdo9N0f95XWPIxxg3AhpYVbxRac0uFHHC2qseNn4FF4Kgf0KYfgDAwOKW7mCg9v/B8zgBMwMuFmIIAhu8aSff6KP2Gx1rmReoqYg61EjFVnmr300CenNaTH6Da7or7j8Fu9a4s6M+oGGsetYuzA+7NdZVoM9gb0d8yL+8Sn/5byQ9r7w7//CXYkgG9FrI8Rw9/1z5fufxy8="), this.addDataEntry("bootstrap navbar button",720,40,"Navbar Button","vZRbT8MgFIB/Da9LW7apr+10vpiY7BfgOC1EWhrAtfPXeyi4S7bqFi80Tc6dcz4IhBZ1vzSsFU+agyL0ntDCaO2CVPcFKEWyRHJCFyTLEvxJ9jDiTQdv0jIDjbskIQsJG6beIFiCwbqtigbhamxrkRKaW8G47lBJUOHMCuBRQU/r4+u+8rNMXnAC61CcGANrbCU3K/nuI2Yol1KpQitthh1oOfefr+KMfoUDDx8WejohHaxatvYlOqyLttg6GAf96PiDKc6+BF2DM1sM6SR3IkTcRESJAFmJmDaNNmaDXu1S9zBRiDzPs6UnbHPDGv7bgFmzFp5XXurGHbC7G1a0R/jpdISlAYsRj58E0kvxZt/ivf2CrgHFnNzAUfmfIJ+eIF/JqvEBzX/c6+vu798xn59hTq9lHnd41hI3zpL++Di3QZ0d5+uytOBOTmzX5blDRHX/3oXww+fwAw=="), this.addDataEntry("bootstrap navbar text",720,40,"Navbar Text","vVTbboMwDP2avFYhtLu8QrfuYdUm9QuyxpCoIUEhK3RfP0PS27pulVYNhLCPL7GPrZA0r7qZ47WcWwGapA8kzZ21PkhVl4PWhFElSDoljFH8CHs8Y00GK625A+MvCWAhYM31OwQkAI3f6AhIX2FZ04SkWSO5sC0qFBXBGwkiKmipe/+qK/teRm/YQeNRHDkHSywlcwv10XtMUC6U1rnV1g0npMVN//ZZvLMrOLCI4UFLK5WHRc2XfYoW8yIWSwfnoTvb/gDF3mdgK/Bugy6tEl4Gj9tIEZWgShnDxhHjTdDLXeieTBQin99zm55wmzluxLUJ5mYpe76ywhp/wN398EQ8kp+Mz3DpoEGPpy0DyaX0sl/pvfuBXQeae7WGo/R/oXx8QvlClQZJRBcTcjM6526Fvxfv7dWXPez68R4ba+DL0m+hMxPjGqtGTEMxpMNZKVM+D9o0of8+w2RyjSHGI16twpMZ7Y73Yxthi6IBfzL0XWHf7QGq+yszuB/eqJ8="), this.addDataEntry("bootstrap non nav link",720,40,"Non-nav Link","vZRfb4IwEMA/TR9noDi3vaKbezFb5ifo5KCNhZK2E9yn35VWxKibyYwQwv3v3e+SkmRatnPNar5QGUiSPJNkqpWyXirbKUhJaCQykswIpRF+hL6c8cadN6qZhspekkB9wobJL/AWbzB2K4OB2xLbmsUkSQ1nmWpQiVDJmOGQBQU9tYsv28LNMvrECYxFcaQ1rLCVVC/Ft4u4RzkXUk6VVLo7Ickn7nVVrFZrGHiy7kFPaBO0hfbsqJ0pzDkHVYLVWwxpRGa5j3gIOCIOouAhbRxszHi96FP34FAI7E5zTI44pppV2bVhsmrFHZs0V5UdcHrqnmAPoOMx6g0XFpY1WzlLgyXcJsBgxOuOQHwpXvon3sdf6GqQzIoNHJT/D/LxEfKlKCqEiCGVr02jBdNr/L1Zq26+CyaxH7RpDyM1uAZRFR+BDY1us5/DhMG24sk11hUOfFcC++hPu+uL73JUnhuwRwvuGz21c1T3V6EPH96UPw=="), this.addDataEntry("bootstrap navbar",720,40,"Navbar","7ZZrT4MwFIZ/Tb8upWxTv47p9kETk/2COg5rs0JJqYP56z3QshtOl4iXGJuQ9Lw9p5f3AVISRmk1MzwXDzoGRcJbEkZGa+t6aRWBUoRRGZNwShij+BB2d2Y0aEZpzg1k9pIC5go2XD2DU5xQ2K3ygrApbmsakHBSCB7rEgOKQcwLAbEPcCSv89NqVZ9l8IQnKCx2B8bA0tYZ1ug1RFppg3mZzjB9YhbypS4bYT+RSrXDhIWsaaj7HYKxUJ09ZSP5I85Ap2DNFlNKGVvhMq68E1SAXAlfNvQaL1y82pXuPcOOt+1tC8OOhRPDs7h3H9+x8dC6VtKZPXDzpmle96YHQ4xLIS0scr6slRIXqqlAgRnz1qfgUgjsQwjX7zAwoLiVGzia/jNghh0wc5zki7icvL20aWd5HcNJmvbtMMZ9wPArPGqJCzNaHXNuK3SSFGA78Hb7uojnqMPzXmbrX/qd/RmUwek/sheW43+WP8CS0R5YYri/n7j0w+vLKw=="), this.addDataEntry("bootstrap jumbotron",800,500,"Jumbotron","vZXNjtMwEMefhYOPRI5DS89J2eUAp+UFvM0kNvgjctxtytMzE6fslqRSkQKtWo3nw7F//7HDisoOj0F26quvwbDiEyuq4H1Mlh0qMIYJrmtW7JkQHH9MPNyI5mOUdzKAi/cUiFTwIs0Rkic5+ng2k0NFi8va56woeyVrf8IBx0EtewX1NMBIR/l2aGkv2TPuoI9oZiHAAZdShif9kzI2aDfamMobH8YnFA2nL80Sg/8Bl4jzDgvKaYUQIgw3dzm6pi0+grcQwxlTTrqOKmXseCLBFehWTWWbi1P2ydH+rn2FhsbEbZlhMWP4GRM8ExWtwAdTv1sbqnQHRYzKxrs4gd1RiTS6dTgw0BD0k9IRnjp5oIQTVt7LUyzznAq2E7XzBW0avqG93S3Q3q0A+8MM9jele0qgP0mUte0QMz06oAj86HRMWlxFvx/ts8d+c++TLIIfvO2w5RCB4A3SRY80RrsWLRiQO00RIyZo79CONHsDMh4DSkb1LqbqsVg7nMRKSs7+h/6IZlnwP3piff3zpQbYLjRAvsZx28w64AvIQIJYH+BfXV8E+s2V9TB+5lcZHsOy2t+6yu5RawV5eMY/bq4U4tl2plC+dEQvqgUw2LkvcLWCv1ANh68vsTF29Y77BQ=="), -this.addEntry("bootstrap page header",function(){var e=new mxCell("Example page header",new mxGeometry(0,0,360,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.anchor;fontSize=35;align=left;whiteSpace=wrap;");e.vertex=!0;var b=new mxCell("Subtext for header",new mxGeometry(360,10,300,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.anchor;fontSize=24;align=left;fontColor=#999999;whiteSpace=wrap;");b.vertex=!0;var c=new mxCell("",new mxGeometry(0,50,750,10),"shape=line;strokeColor=#dddddd;"); -c.vertex=!0;return a.createVertexTemplateFromCells([e,b,c],700,80,"Page header")}),this.addDataEntry("bootstrap thumbnail custom content",330,400,"Thumbnail with custom content","1VbdkpowFH4aLuvEoNZeVmz3qp3ObF8gQjCnDYSGgz99+p5AUBDcsVPt7OJIcn6TfOdLQhBG2eHJikJ9MYnUQfgpCCNrDDa97BBJrQPOIAnCdcA5o3/AP1+xTmsrK4SVOd4SwJuAndCVbDSNosSj9gqFGU1rPQ3CValEYvYkMBISUSqZeIEshfPPDlu3lsmGVlAidSfWypimskpB68hoY+usYVo/pLfP8NtFzl0WtOan7Hgl9UMWP01pUR6uLrVW+XU+SZNJtEdy2UOCqvEIwwYOpiRslQ+bMa8UZaPYnmLPyFHHgzcOZDgAMuTswNvUHTxbqFpcTI4eAj4bwYm53wCb3OTSB3ecP9QP6fcKUD4XInZp91SGWyHk4xD6gHkTcOxJXXj5CLz8HvDOBvB+V1W2yQU4Ly02tHXuTFyRx8oB26vQgmShYZuToGWKj8N62ge73cg9uNkom/8d7fkA7chSPs5+VCUaak0C1FAelogCNpWziZheqYhBQwlOAXnjIreyxDqcekjNr0pkE2rXROK4GZZsGpyNiE3vDBxWxqKglgqzg8T1BJ6T0KKq0mX5WmktsjZNUu8GL+SwUdRUGi3EIMu6JgriSrtsFXbHnjyMP9dPtTHqXLDLcQhioT96NZqiT8np7P9xcHEjB5d34OBiwMFVhejY8Zj7qXsPdeFdDM/kcL1cResbz+TTRXfvGh17AZ2SLF84FazUAmEne7FjZfLjfTOQ41VCvFtcFNqkael250WZT7O+qfLvX1Hl/27vvrlytpv3nvUk8fz92rh3P2//AA=="), +this.addEntry("bootstrap page header",function(){var b=new mxCell("Example page header",new mxGeometry(0,0,360,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.anchor;fontSize=35;align=left;whiteSpace=wrap;");b.vertex=!0;var c=new mxCell("Subtext for header",new mxGeometry(360,10,300,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.anchor;fontSize=24;align=left;fontColor=#999999;whiteSpace=wrap;");c.vertex=!0;var d=new mxCell("",new mxGeometry(0,50,750,10),"shape=line;strokeColor=#dddddd;"); +d.vertex=!0;return a.createVertexTemplateFromCells([b,c,d],700,80,"Page header")}),this.addDataEntry("bootstrap thumbnail custom content",330,400,"Thumbnail with custom content","1VbdkpowFH4aLuvEoNZeVmz3qp3ObF8gQjCnDYSGgz99+p5AUBDcsVPt7OJIcn6TfOdLQhBG2eHJikJ9MYnUQfgpCCNrDDa97BBJrQPOIAnCdcA5o3/AP1+xTmsrK4SVOd4SwJuAndCVbDSNosSj9gqFGU1rPQ3CValEYvYkMBISUSqZeIEshfPPDlu3lsmGVlAidSfWypimskpB68hoY+usYVo/pLfP8NtFzl0WtOan7Hgl9UMWP01pUR6uLrVW+XU+SZNJtEdy2UOCqvEIwwYOpiRslQ+bMa8UZaPYnmLPyFHHgzcOZDgAMuTswNvUHTxbqFpcTI4eAj4bwYm53wCb3OTSB3ecP9QP6fcKUD4XInZp91SGWyHk4xD6gHkTcOxJXXj5CLz8HvDOBvB+V1W2yQU4Ly02tHXuTFyRx8oB26vQgmShYZuToGWKj8N62ge73cg9uNkom/8d7fkA7chSPs5+VCUaak0C1FAelogCNpWziZheqYhBQwlOAXnjIreyxDqcekjNr0pkE2rXROK4GZZsGpyNiE3vDBxWxqKglgqzg8T1BJ6T0KKq0mX5WmktsjZNUu8GL+SwUdRUGi3EIMu6JgriSrtsFXbHnjyMP9dPtTHqXLDLcQhioT96NZqiT8np7P9xcHEjB5d34OBiwMFVhejY8Zj7qXsPdeFdDM/kcL1cResbz+TTRXfvGh17AZ2SLF84FazUAmEne7FjZfLjfTOQ41VCvFtcFNqkael250WZT7O+qfLvX1Hl/27vvrlytpv3nvUk8fz92rh3P2//AA=="), this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;align=center;rSize=5;strokeColor=none;fillColor=#999999;fontColor=#ffffff;fontStyle=1;whiteSpace=wrap;",60,30,"Label","Label (Normal)",null,null,this.getTagsForStencil("mxgraph.bootstrap","","bootstrap label normal").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;align=center;rSize=5;strokeColor=none;fillColor=#0D5B9D;fontColor=#ffffff;fontStyle=1;whiteSpace=wrap;", 60,30,"Label","Label (Normal)",null,null,this.getTagsForStencil("mxgraph.bootstrap","","bootstrap label normal").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;align=center;rSize=5;strokeColor=none;fillColor=#58B957;fontColor=#ffffff;fontStyle=1;whiteSpace=wrap;",60,30,"Label","Label (Normal)",null,null,this.getTagsForStencil("mxgraph.bootstrap","","bootstrap label normal").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;align=center;rSize=5;strokeColor=none;fillColor=#55BFE0;fontColor=#ffffff;fontStyle=1;whiteSpace=wrap;", 60,30,"Label","Label (Normal)",null,null,this.getTagsForStencil("mxgraph.bootstrap","","bootstrap label normal").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;align=center;rSize=5;strokeColor=none;fillColor=#EFAC43;fontColor=#ffffff;fontStyle=1;whiteSpace=wrap;",60,30,"Label","Label (Normal)",null,null,this.getTagsForStencil("mxgraph.bootstrap","","bootstrap label normal").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;align=center;rSize=5;strokeColor=none;fillColor=#DB524C;fontColor=#ffffff;fontStyle=1;whiteSpace=wrap;", @@ -4647,206 +4648,206 @@ this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap 40,20,"Label","Label (Small)",null,null,this.getTagsForStencil("mxgraph.bootstrap","","bootstrap label normal").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=30;align=left;spacingLeft=10;",250,40,"Header Text","Header Text (30)",null,null,this.getTagsForStencil("mxgraph.bootstrap","","bootstrap label normal").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=25;align=left;spacingLeft=10;", 250,35,"Header Text","Header Text (25)",null,null,this.getTagsForStencil("mxgraph.bootstrap","","bootstrap label normal").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=20;align=left;spacingLeft=10;",250,30,"Header Text","Header Text (20)",null,null,this.getTagsForStencil("mxgraph.bootstrap","","bootstrap label normal").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=16;align=left;spacingLeft=10;", 250,26,"Header Text","Header Text (16)",null,null,this.getTagsForStencil("mxgraph.bootstrap","","bootstrap label normal").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=12;align=left;spacingLeft=10;",250,22,"Header Text","Header Text (12)",null,null,this.getTagsForStencil("mxgraph.bootstrap","","bootstrap label normal").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=10;align=left;spacingLeft=10;", -250,20,"Header Text","Header Text (10)",null,null,this.getTagsForStencil("mxgraph.bootstrap","","bootstrap label normal").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.image;align=center;rSize=5;strokeColor=#f6f6f6;fillColor=#f6f6f6;fontColor=#999999;strokeWidth=2;whiteSpace=wrap;",150,150,"Image","Image",null,null,this.getTagsForStencil("mxgraph.bootstrap","image","bootstrap ").join(" ")),this.addEntry("bootstrap image",function(){var e=new mxCell("Image", -new mxGeometry(0,0,150,70),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.image;align=center;rSize=5;strokeColor=#f6f6f6;fillColor=#f6f6f6;fontColor=#999999;strokeWidth=2;whiteSpace=wrap;");e.vertex=!0;var b=new mxCell("Image",new mxGeometry(0,80,70,70),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.image;align=center;rSize=5;strokeColor=#f6f6f6;fillColor=#f6f6f6;fontColor=#999999;strokeWidth=2;whiteSpace=wrap;");b.vertex=!0;var c=new mxCell("Image",new mxGeometry(80,80,70,70),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.image;align=center;rSize=5;strokeColor=#f6f6f6;fillColor=#f6f6f6;fontColor=#999999;strokeWidth=2;whiteSpace=wrap;"); -c.vertex=!0;return a.createVertexTemplateFromCells([e,b,c],150,150,"Images")}),this.addEntry("bootstrap dismissible alert",function(){var e=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;margin-left:14px;"><tbody><tr><td align="left" valign="middle" width="50%"><b>Well done!</b> You successfully read <u>this important alert message.</u></td></tr></tbody></table>',new mxGeometry(0,0,800,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=none;fillColor=#E0F0D6;fontColor=#59B958;overflow=fill;whiteSpace=wrap;"); -e.vertex=!0;var b=new mxCell("",new mxGeometry(1,.5,10,10),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.x;strokeColor=#59B958;strokeWidth=2;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(-25,-5);b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Dismissible Alert")}),this.addEntry("bootstrap dismissible alert",function(){var e=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;margin-left:14px;"><tbody><tr><td align="left" valign="middle" width="50%"><b>Heads up!</b> This <u>alert needs you attention</u>, but it\'s not super important.</td></tr></tbody></table>', -new mxGeometry(0,0,800,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=none;fillColor=#D9EDF8;fontColor=#55C0E0;overflow=fill;whiteSpace=wrap;");e.vertex=!0;var b=new mxCell("",new mxGeometry(1,.5,10,10),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.x;strokeColor=#55C0E0;strokeWidth=2;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(-25,-5);b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Dismissible Alert")}), -this.addEntry("bootstrap dismissible alert",function(){var e=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;margin-left:14px;"><tbody><tr><td align="left" valign="middle" width="50%"><b>Warning!</b> Better check yourself, <u>you\'re not looking too good.</u></td></tr></tbody></table>',new mxGeometry(0,0,800,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=none;fillColor=#FDF8E4;fontColor=#F2AE43;overflow=fill;whiteSpace=wrap;");e.vertex= -!0;var b=new mxCell("",new mxGeometry(1,.5,10,10),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.x;strokeColor=#F2AE43;strokeWidth=2;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(-25,-5);b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Dismissible Alert")}),this.addEntry("bootstrap dismissible alert",function(){var e=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;margin-left:14px;"><tbody><tr><td align="left" valign="middle" width="50%"><b>Oh snap!</b> <u>Change a few things up</u> and try submitting again.</td></tr></tbody></table>', -new mxGeometry(0,0,800,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=none;fillColor=#F2DEDF;fontColor=#DB524C;overflow=fill;whiteSpace=wrap;");e.vertex=!0;var b=new mxCell("",new mxGeometry(1,.5,10,10),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.x;strokeColor=#DB524C;strokeWidth=2;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(-25,-5);b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Dismissible Alert")}), -this.addEntry("bootstrap progress bar",function(){var e=new mxCell("",new mxGeometry(0,0,800,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=none;fillColor=#f6f6f6;whiteSpace=wrap;");e.vertex=!0;var b=new mxCell("60%",new mxGeometry(0,0,500,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.leftButton;rSize=5;strokeColor=none;fillColor=#59B958;fontColor=#FFFFFF;whiteSpace=wrap;");b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width, -e.geometry.height,"Progress Bar")}),this.addEntry("bootstrap progress bar",function(){var e=new mxCell("",new mxGeometry(0,0,800,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=none;fillColor=#f6f6f6;whiteSpace=wrap;");e.vertex=!0;var b=new mxCell("60%",new mxGeometry(0,0,500,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.leftButton;rSize=5;strokeColor=none;fillColor=#55C0E0;fontColor=#FFFFFF;whiteSpace=wrap;");b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e], -e.geometry.width,e.geometry.height,"Progress Bar")}),this.addEntry("bootstrap progress bar",function(){var e=new mxCell("",new mxGeometry(0,0,800,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=none;fillColor=#f6f6f6;whiteSpace=wrap;");e.vertex=!0;var b=new mxCell("60%",new mxGeometry(0,0,500,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.leftButton;rSize=5;strokeColor=none;fillColor=#F2AE43;fontColor=#FFFFFF;whiteSpace=wrap;");b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e], -e.geometry.width,e.geometry.height,"Progress Bar")}),this.addEntry("bootstrap progress bar",function(){var e=new mxCell("",new mxGeometry(0,0,800,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=none;fillColor=#f6f6f6;whiteSpace=wrap;");e.vertex=!0;var b=new mxCell("60%",new mxGeometry(0,0,500,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.leftButton;rSize=5;strokeColor=none;fillColor=#DB524C;fontColor=#FFFFFF;whiteSpace=wrap;");b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e], -e.geometry.width,e.geometry.height,"Progress Bar")}),this.addEntry("bootstrap progress bar low percentage",function(){var e=new mxCell("0%",new mxGeometry(0,0,800,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=none;fillColor=#f6f6f6;fontColor=#000000;align=left;spacingLeft=5;whiteSpace=wrap;");e.vertex=!0;return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Progress Bar (Low percentage)")}),this.addEntry("bootstrap progress bar low percentage", -function(){var e=new mxCell("",new mxGeometry(0,0,800,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=none;fillColor=#f6f6f6;whiteSpace=wrap;");e.vertex=!0;var b=new mxCell("2%",new mxGeometry(0,0,30,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.leftButton;rSize=5;strokeColor=none;fillColor=#55C0E0;fontColor=#FFFFFF;whiteSpace=wrap;");b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Progress Bar (Low percentage)")}), -this.addEntry("bootstrap progress bar striped",function(){var e=new mxCell("",new mxGeometry(0,0,800,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=none;fillColor=#f6f6f6;whiteSpace=wrap;");e.vertex=!0;var b=new mxCell("60%",new mxGeometry(0,0,500,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.leftButtonStriped;fillColor=#59B958;fontColor=#FFFFFF;whiteSpace=wrap;");b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height, -"Progress Bar (Striped)")}),this.addEntry("bootstrap progress bar striped",function(){var e=new mxCell("",new mxGeometry(0,0,800,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=none;fillColor=#f6f6f6;whiteSpace=wrap;");e.vertex=!0;var b=new mxCell("60%",new mxGeometry(0,0,500,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.leftButtonStriped;fillColor=#55BFE0;fontColor=#FFFFFF;whiteSpace=wrap;");b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e], -e.geometry.width,e.geometry.height,"Progress Bar (Striped)")}),this.addEntry("bootstrap progress bar striped",function(){var e=new mxCell("",new mxGeometry(0,0,800,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=none;fillColor=#f6f6f6;whiteSpace=wrap;");e.vertex=!0;var b=new mxCell("60%",new mxGeometry(0,0,500,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.leftButtonStriped;fillColor=#EFAC43;fontColor=#FFFFFF;whiteSpace=wrap;");b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e], -e.geometry.width,e.geometry.height,"Progress Bar (Striped)")}),this.addEntry("bootstrap progress bar striped",function(){var e=new mxCell("",new mxGeometry(0,0,800,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=none;fillColor=#f6f6f6;whiteSpace=wrap;");e.vertex=!0;var b=new mxCell("60%",new mxGeometry(0,0,500,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.leftButtonStriped;fillColor=#DB524C;fontColor=#FFFFFF;whiteSpace=wrap;");b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e], -e.geometry.width,e.geometry.height,"Progress Bar (Striped)")}),this.addDataEntry("bootstrap progress bar",800,20,"Progress Bar","vZXNboMwDMefJtcqTUjVHgf9OO3UJ8iKadACQSEddE8/Q7K121q12qBCSPbfdmT/MArhSdFurKzUs0lBE74iPLHGOG8VbQJaE0bzlPAlYYziS9j6SnTaR2klLZTungLmC96kPoBXvFC7ow6CcgW2tZwSHtdKpqZBh6KTylpBGhyMVF1+0e67WSYvOEHt0JxYCztsJbbb/L3LEF22s+YVEqONRaU0JQbiLNf6UyKMZ7PuQb1RuYNtJXdddYNHoha6BuugvTp5L4WxN2AKcPaIKU2eOuUz5tTToQryvQplgRiVtff3X6UnjmgElJex8tGxashcfHDOlH9gu4wFi5L/sGU32U7FSGyj22zDyt2DYs2eVhFH/ex7DE2l/UHkjBIbawPFoJTEIl6I+UMo8QuUxlql2bCQREJX9CGQIvob0lA/HLqn+6ePfbuePgA="), +250,20,"Header Text","Header Text (10)",null,null,this.getTagsForStencil("mxgraph.bootstrap","","bootstrap label normal").join(" ")),this.createVertexTemplateEntry("html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.image;align=center;rSize=5;strokeColor=#f6f6f6;fillColor=#f6f6f6;fontColor=#999999;strokeWidth=2;whiteSpace=wrap;",150,150,"Image","Image",null,null,this.getTagsForStencil("mxgraph.bootstrap","image","bootstrap ").join(" ")),this.addEntry("bootstrap image",function(){var b=new mxCell("Image", +new mxGeometry(0,0,150,70),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.image;align=center;rSize=5;strokeColor=#f6f6f6;fillColor=#f6f6f6;fontColor=#999999;strokeWidth=2;whiteSpace=wrap;");b.vertex=!0;var c=new mxCell("Image",new mxGeometry(0,80,70,70),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.image;align=center;rSize=5;strokeColor=#f6f6f6;fillColor=#f6f6f6;fontColor=#999999;strokeWidth=2;whiteSpace=wrap;");c.vertex=!0;var d=new mxCell("Image",new mxGeometry(80,80,70,70),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.image;align=center;rSize=5;strokeColor=#f6f6f6;fillColor=#f6f6f6;fontColor=#999999;strokeWidth=2;whiteSpace=wrap;"); +d.vertex=!0;return a.createVertexTemplateFromCells([b,c,d],150,150,"Images")}),this.addEntry("bootstrap dismissible alert",function(){var b=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;margin-left:14px;"><tbody><tr><td align="left" valign="middle" width="50%"><b>Well done!</b> You successfully read <u>this important alert message.</u></td></tr></tbody></table>',new mxGeometry(0,0,800,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=none;fillColor=#E0F0D6;fontColor=#59B958;overflow=fill;whiteSpace=wrap;"); +b.vertex=!0;var c=new mxCell("",new mxGeometry(1,.5,10,10),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.x;strokeColor=#59B958;strokeWidth=2;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-25,-5);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Dismissible Alert")}),this.addEntry("bootstrap dismissible alert",function(){var b=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;margin-left:14px;"><tbody><tr><td align="left" valign="middle" width="50%"><b>Heads up!</b> This <u>alert needs you attention</u>, but it\'s not super important.</td></tr></tbody></table>', +new mxGeometry(0,0,800,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=none;fillColor=#D9EDF8;fontColor=#55C0E0;overflow=fill;whiteSpace=wrap;");b.vertex=!0;var c=new mxCell("",new mxGeometry(1,.5,10,10),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.x;strokeColor=#55C0E0;strokeWidth=2;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-25,-5);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Dismissible Alert")}), +this.addEntry("bootstrap dismissible alert",function(){var b=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;margin-left:14px;"><tbody><tr><td align="left" valign="middle" width="50%"><b>Warning!</b> Better check yourself, <u>you\'re not looking too good.</u></td></tr></tbody></table>',new mxGeometry(0,0,800,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=none;fillColor=#FDF8E4;fontColor=#F2AE43;overflow=fill;whiteSpace=wrap;");b.vertex= +!0;var c=new mxCell("",new mxGeometry(1,.5,10,10),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.x;strokeColor=#F2AE43;strokeWidth=2;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-25,-5);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Dismissible Alert")}),this.addEntry("bootstrap dismissible alert",function(){var b=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;margin-left:14px;"><tbody><tr><td align="left" valign="middle" width="50%"><b>Oh snap!</b> <u>Change a few things up</u> and try submitting again.</td></tr></tbody></table>', +new mxGeometry(0,0,800,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=none;fillColor=#F2DEDF;fontColor=#DB524C;overflow=fill;whiteSpace=wrap;");b.vertex=!0;var c=new mxCell("",new mxGeometry(1,.5,10,10),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.x;strokeColor=#DB524C;strokeWidth=2;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-25,-5);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Dismissible Alert")}), +this.addEntry("bootstrap progress bar",function(){var b=new mxCell("",new mxGeometry(0,0,800,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=none;fillColor=#f6f6f6;whiteSpace=wrap;");b.vertex=!0;var c=new mxCell("60%",new mxGeometry(0,0,500,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.leftButton;rSize=5;strokeColor=none;fillColor=#59B958;fontColor=#FFFFFF;whiteSpace=wrap;");c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width, +b.geometry.height,"Progress Bar")}),this.addEntry("bootstrap progress bar",function(){var b=new mxCell("",new mxGeometry(0,0,800,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=none;fillColor=#f6f6f6;whiteSpace=wrap;");b.vertex=!0;var c=new mxCell("60%",new mxGeometry(0,0,500,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.leftButton;rSize=5;strokeColor=none;fillColor=#55C0E0;fontColor=#FFFFFF;whiteSpace=wrap;");c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b], +b.geometry.width,b.geometry.height,"Progress Bar")}),this.addEntry("bootstrap progress bar",function(){var b=new mxCell("",new mxGeometry(0,0,800,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=none;fillColor=#f6f6f6;whiteSpace=wrap;");b.vertex=!0;var c=new mxCell("60%",new mxGeometry(0,0,500,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.leftButton;rSize=5;strokeColor=none;fillColor=#F2AE43;fontColor=#FFFFFF;whiteSpace=wrap;");c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b], +b.geometry.width,b.geometry.height,"Progress Bar")}),this.addEntry("bootstrap progress bar",function(){var b=new mxCell("",new mxGeometry(0,0,800,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=none;fillColor=#f6f6f6;whiteSpace=wrap;");b.vertex=!0;var c=new mxCell("60%",new mxGeometry(0,0,500,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.leftButton;rSize=5;strokeColor=none;fillColor=#DB524C;fontColor=#FFFFFF;whiteSpace=wrap;");c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b], +b.geometry.width,b.geometry.height,"Progress Bar")}),this.addEntry("bootstrap progress bar low percentage",function(){var b=new mxCell("0%",new mxGeometry(0,0,800,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=none;fillColor=#f6f6f6;fontColor=#000000;align=left;spacingLeft=5;whiteSpace=wrap;");b.vertex=!0;return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Progress Bar (Low percentage)")}),this.addEntry("bootstrap progress bar low percentage", +function(){var b=new mxCell("",new mxGeometry(0,0,800,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=none;fillColor=#f6f6f6;whiteSpace=wrap;");b.vertex=!0;var c=new mxCell("2%",new mxGeometry(0,0,30,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.leftButton;rSize=5;strokeColor=none;fillColor=#55C0E0;fontColor=#FFFFFF;whiteSpace=wrap;");c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Progress Bar (Low percentage)")}), +this.addEntry("bootstrap progress bar striped",function(){var b=new mxCell("",new mxGeometry(0,0,800,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=none;fillColor=#f6f6f6;whiteSpace=wrap;");b.vertex=!0;var c=new mxCell("60%",new mxGeometry(0,0,500,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.leftButtonStriped;fillColor=#59B958;fontColor=#FFFFFF;whiteSpace=wrap;");c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height, +"Progress Bar (Striped)")}),this.addEntry("bootstrap progress bar striped",function(){var b=new mxCell("",new mxGeometry(0,0,800,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=none;fillColor=#f6f6f6;whiteSpace=wrap;");b.vertex=!0;var c=new mxCell("60%",new mxGeometry(0,0,500,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.leftButtonStriped;fillColor=#55BFE0;fontColor=#FFFFFF;whiteSpace=wrap;");c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b], +b.geometry.width,b.geometry.height,"Progress Bar (Striped)")}),this.addEntry("bootstrap progress bar striped",function(){var b=new mxCell("",new mxGeometry(0,0,800,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=none;fillColor=#f6f6f6;whiteSpace=wrap;");b.vertex=!0;var c=new mxCell("60%",new mxGeometry(0,0,500,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.leftButtonStriped;fillColor=#EFAC43;fontColor=#FFFFFF;whiteSpace=wrap;");c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b], +b.geometry.width,b.geometry.height,"Progress Bar (Striped)")}),this.addEntry("bootstrap progress bar striped",function(){var b=new mxCell("",new mxGeometry(0,0,800,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=none;fillColor=#f6f6f6;whiteSpace=wrap;");b.vertex=!0;var c=new mxCell("60%",new mxGeometry(0,0,500,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.leftButtonStriped;fillColor=#DB524C;fontColor=#FFFFFF;whiteSpace=wrap;");c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b], +b.geometry.width,b.geometry.height,"Progress Bar (Striped)")}),this.addDataEntry("bootstrap progress bar",800,20,"Progress Bar","vZXNboMwDMefJtcqTUjVHgf9OO3UJ8iKadACQSEddE8/Q7K121q12qBCSPbfdmT/MArhSdFurKzUs0lBE74iPLHGOG8VbQJaE0bzlPAlYYziS9j6SnTaR2klLZTungLmC96kPoBXvFC7ow6CcgW2tZwSHtdKpqZBh6KTylpBGhyMVF1+0e67WSYvOEHt0JxYCztsJbbb/L3LEF22s+YVEqONRaU0JQbiLNf6UyKMZ7PuQb1RuYNtJXdddYNHoha6BuugvTp5L4WxN2AKcPaIKU2eOuUz5tTToQryvQplgRiVtff3X6UnjmgElJex8tGxashcfHDOlH9gu4wFi5L/sGU32U7FSGyj22zDyt2DYs2eVhFH/ex7DE2l/UHkjBIbawPFoJTEIl6I+UMo8QuUxlql2bCQREJX9CGQIvob0lA/HLqn+6ePfbuePgA="), this.addDataEntry("bootstrap default media",700,290,"Default Media","7VjLcpswFP0ath5eIc2yxk1WySZfIEsC7lRIVEjY7tf3SsiNHdtNZmq8aMGDka50Hzr3cBZEWdlunzTpmmfFuIiyb1FWaqXMOGq3JRciSmNgUbaK0jTGO0ofL6wmfjXuiObSfMYhHR0GIiwfLUW+LfLR2pudCNbGtFjbKomyZd8QpjY4iXHCSN9wFia40rn97bZ2B1qs8Ri9weFCc4rlLImAWuIGitVx7TyMVt95qYTC2Uoqie7LCoTYm6I0qwr3c3YlzYH9wV9o3zRg+GtHqMu9wXRoC8fi2vDtRWi8KeDyxFXLjd7hlg0w0+zBGL0aDnVjjm2kH+f1b883nHEQoD4Pe3YC+zNnQHwmwkDW124AkbRxwHkQX+Gn25XmBy0RvDITYBkc7kcWHkKbxvEptln899jmJ9iWGuMhmmBcaAyIDwnrBh8C1lyrKC1dAIl/CNwAzHVCWiHIAgcvbuARcGnQ3fpolAuuof+BWTAqEtoZlRBAwVjmg1HVtoopFyTU0FntvRWDkHXgvYG1FbbdlzBY0VlDfEBixl2Gt513HAAboV05xuoOehf70WIxPp1k0GJLfCxpJXURqD9tD+8iVxppBuGIK3zz3D5BKEjPQ4xV+5NVXEC/L60ilmKxLutE/HzHR8c6oER8DWajugssPSB2kk/P5N0xYQ81IztD7OIKxL6btfqkK6ENSXymDxNpd/GfavcfoJ5My+9nLZ+1/GbMvqWYf5nF/JNtSW+o7Q8nXXnBVxpxdlrxL4t8kn8MejaVyifxLPOzzN+O22d0/q64js7j9O3jjV87+rbzCw=="), this.addDataEntry("bootstrap media list",700,460,"Media List","7Vldc6MgFP01vmYErG0eN2a3T+1LfwEREpmiuIj56K/vBU1rotlmZkMfrMkkwoV7wXMPZ5xrQJJ8/6hpmT0pxmVAfgck0UqZppXvEy5lgEPBArIMMA7hF+A/F0aRGw1LqnlhrnHAjcOWypo3ljjax1FjrcxBttbM5LC3JQrIosooUzvohNBhtMo4azswUtr5+X5jb2i2gtuoDDRnmqewnQWVYlPAhBR2x7X1MFq98kRJBb1loQpwX6yFlEdTgMk6tl9rV4Xp2OfuA/ZdJgx/KWlq197BcmBrb4trw/cXoXGmFpdHrnJu9AGm7AQz2RGMxivjYpOZUxutmv7mw/MTZ2i0UA/DTnqwP3EmqFuJMlFsbp0AWqSZBc6B+CLe7CwcdVIi+dp4wLJ1uG9Y2IUWh2EfWxL+P7ZRD9tEQzxAUxgbGgLCpRCrDC5SrLhWAU5sgAL+ALitYDYTRS0lnUHj2TYcAnYZcK9dtJRLrkX1F1aBqEBoa1RSilSYmrlgqcpzxZQN0u6hrLXzVky0q255ZcSqlnV+3MK2lmVtqAtITTPL8Lx0jlsBidB2O6bWpahm3phyxgybf5FS+as1G1Ve4EuHYijyz6nDKXW6p5cMUCy+AcXuJtW8Mivzgax40tS4l5RnOFoAMw7HLa4o+hJz4kts7yex/RFie84xhPsku4s9ye3DJLdX5+Xh+wR3fllw81ELLkZfg+5NcY9rT5I7csk9Z9lHv8OyaO5JchGaNPfKR1z8jZKL+vWaH/qQO4S6P83t12smzR2j5p6zjAxorrfHXNSvXE2a2zrEJD5NzEBF0Zvo9ss9I9Xaf4DrrVyL+nWbSVtHpa0tq6Jw4MjeqEIL3c93Zm7s5JXaOw=="), -this.addEntry("bootstrap linked item custom content",function(){var e=new mxCell("",new mxGeometry(0,0,400,240),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;fillColor=#ffffff;strokeColor=#dddddd;whiteSpace=wrap;");e.vertex=!0;var b=new mxCell("Donec id elit non mi porta gravida at eget metus.\nMaecenas sed diam eget risus varius blandit.",new mxGeometry(0,0,400,80),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;perimeter=none;spacingLeft=10;align=left;fontSize=14;whiteSpace=wrap;verticalAlign=bottom;spacingBottom=10;resizeWidth=1;"); -b.geometry.relative=!0;b.geometry.offset=new mxPoint(0,80);b.vertex=!0;e.insert(b);var c=new mxCell("List group item heading",new mxGeometry(0,0,400,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.anchor;spacingLeft=10;align=left;fontSize=18;whiteSpace=wrap;resizeWidth=1;");c.geometry.relative=!0;c.vertex=!0;b.insert(c);b=new mxCell("Donec id elit non mi porta gravida at eget metus.\nMaecenas sed diam eget risus varius blandit.",new mxGeometry(0,1,400,80),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.bottomButton;rSize=5;spacingLeft=10;align=left;fontSize=14;perimeter=none;whiteSpace=wrap;verticalAlign=bottom;spacingBottom=13;resizeWidth=1;"); -b.geometry.relative=!0;b.geometry.offset=new mxPoint(0,-80);b.vertex=!0;e.insert(b);c=new mxCell("List group item heading",new mxGeometry(0,0,400,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.anchor;spacingLeft=10;align=left;fontSize=18;whiteSpace=wrap;resizeWidth=1;");c.geometry.relative=!0;c.vertex=!0;b.insert(c);b=new mxCell("Donec id elit non mi porta gravida at eget metus.\nMaecenas sed diam eget risus varius blandit.",new mxGeometry(0,0,400,80),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.topButton;rSize=5;fillColor=#3D8BCD;strokeColor=#3D8BCD;fontColor=#ffffff;spacingLeft=10;align=left;fontSize=14;perimeter=none;whiteSpace=wrap;verticalAlign=bottom;spacingBottom=13;resizeWidth=1;"); -b.geometry.relative=!0;b.vertex=!0;e.insert(b);c=new mxCell("List group item heading",new mxGeometry(0,0,400,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.anchor;fontColor=#ffffff;spacingLeft=10;align=left;fontSize=18;whiteSpace=wrap;resizeWidth=1;");c.geometry.relative=!0;c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Linked Items (Custom Content)")}),this.addEntry("bootstrap panel",function(){var e=new mxCell("Panel content",new mxGeometry(0, -0,150,200),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;align=center;rSize=5;strokeColor=#E0F0D6;fillColor=#ffffff;fontColor=#f0f0f0;spacingTop=30;whiteSpace=wrap;");e.vertex=!0;var b=new mxCell("Panel title",new mxGeometry(0,0,150,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.topButton;rSize=5;strokeColor=none;fillColor=#E0F0D6;fontColor=#59B958;fontSize=14;fontStyle=1;align=left;spacingLeft=10;whiteSpace=wrap;resizeWidth=1;");b.geometry.relative=!0;b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e], -e.geometry.width,e.geometry.height,"Panel")}),this.addEntry("bootstrap panel",function(){var e=new mxCell("Panel content",new mxGeometry(0,0,150,200),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;align=center;rSize=5;strokeColor=#D9EDF8;fillColor=#ffffff;fontColor=#f0f0f0;spacingTop=30;whiteSpace=wrap;");e.vertex=!0;var b=new mxCell("Panel title",new mxGeometry(0,0,150,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.topButton;rSize=5;strokeColor=none;fillColor=#D9EDF8;fontColor=#55C0E0;fontSize=14;fontStyle=1;align=left;spacingLeft=10;whiteSpace=wrap;resizeWidth=1;"); -b.geometry.relative=!0;b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Panel")}),this.addEntry("bootstrap panel",function(){var e=new mxCell("Panel content",new mxGeometry(0,0,150,200),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;align=center;rSize=5;strokeColor=#FDF8E4;fillColor=#ffffff;fontColor=#f0f0f0;spacingTop=30;whiteSpace=wrap;");e.vertex=!0;var b=new mxCell("Panel title",new mxGeometry(0,0,150,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.topButton;rSize=5;strokeColor=none;fillColor=#FDF8E4;fontColor=#F2AE43;fontSize=14;fontStyle=1;align=left;spacingLeft=10;whiteSpace=wrap;resizeWidth=1;"); -b.geometry.relative=!0;b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Panel")}),this.addEntry("bootstrap panel",function(){var e=new mxCell("Panel content",new mxGeometry(0,0,150,200),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;align=center;rSize=5;strokeColor=#F2DEDF;fillColor=#ffffff;fontColor=#f0f0f0;spacingTop=30;whiteSpace=wrap;");e.vertex=!0;var b=new mxCell("Panel title",new mxGeometry(0,0,150,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.topButton;rSize=5;strokeColor=none;fillColor=#F2DEDF;fontColor=#DB524C;fontSize=14;fontStyle=1;align=left;spacingLeft=10;whiteSpace=wrap;resizeWidth=1;"); -b.geometry.relative=!0;b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Panel")}),this.addEntry("bootstrap panel",function(){var e=new mxCell("Panel content",new mxGeometry(0,0,150,200),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;align=center;rSize=5;strokeColor=#3D8BCD;fillColor=#ffffff;fontColor=#f0f0f0;spacingTop=30;whiteSpace=wrap;");e.vertex=!0;var b=new mxCell("Panel title",new mxGeometry(0,0,150,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.topButton;rSize=5;strokeColor=none;fillColor=#3D8BCD;fontColor=#ffffff;fontSize=14;fontStyle=1;align=left;spacingLeft=10;whiteSpace=wrap;resizeWidth=1;"); -b.geometry.relative=!0;b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Panel")}),this.addEntry("bootstrap panel footer",function(){var e=new mxCell("Panel content",new mxGeometry(0,0,150,200),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;align=center;rSize=5;strokeColor=#E0F0D6;fillColor=#ffffff;fontColor=#f0f0f0;spacingBottom=30;whiteSpace=wrap;");e.vertex=!0;var b=new mxCell("Panel title",new mxGeometry(0,1,150,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.bottomButton;rSize=5;strokeColor=none;fillColor=#E0F0D6;fontColor=#59B958;fontSize=14;fontStyle=1;align=left;spacingLeft=10;whiteSpace=wrap;resizeWidth=1;"); -b.geometry.relative=!0;b.geometry.offset=new mxPoint(0,-30);b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Panel (Footer)")}),this.addEntry("bootstrap table",function(){var e=new mxCell("",new mxGeometry(0,0,800,280),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;fillColor=#ffffff;whiteSpace=wrap;");e.vertex=!0;var b=new mxCell("Panel title",new mxGeometry(0,0,800,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.topButton;rSize=5;strokeColor=inherit;fillColor=#000000;fillOpacity=3;fontColor=#999999;fontSize=14;fontStyle=1;align=left;spacingLeft=10;whiteSpace=wrap;resizeWidth=1;"); -b.geometry.relative=!0;b.vertex=!0;e.insert(b);b=new mxCell("Some default panel content here. Nulla vitae elit libero, a pharetra augue. Aenean lacinia bibendum nulla sed consectetur. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Nullam id dolor id nibh ultricies vehicula. ",new mxGeometry(0,0,800,80),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;align=left;spacingLeft=10;whiteSpace=wrap;resizeWidth=1;"); -b.geometry.relative=!0;b.geometry.offset=new mxPoint(0,40);b.vertex=!0;e.insert(b);b=new mxCell("",new mxGeometry(0,0,800,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=inherit;fillColor=#000000;fillOpacity=3;whiteSpace=wrap;resizeWidth=1;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(0,120);b.vertex=!0;e.insert(b);var c=new mxCell("#",new mxGeometry(0,0,50,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;whiteSpace=wrap;resizeHeight=1;"); -c.geometry.relative=!0;c.vertex=!0;b.insert(c);c=new mxCell("First Name",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;align=left;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(80,0);c.vertex=!0;b.insert(c);c=new mxCell("Last Name",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;align=left;whiteSpace=wrap;resizeHeight=1;"); -c.geometry.relative=!0;c.geometry.offset=new mxPoint(230,0);c.vertex=!0;b.insert(c);c=new mxCell("Username",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;align=left;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(380,0);c.vertex=!0;b.insert(c);c=new mxCell("Active",new mxGeometry(0,0,100,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;align=left;whiteSpace=wrap;resizeHeight=1;"); -c.geometry.relative=!0;c.geometry.offset=new mxPoint(560,0);c.vertex=!0;b.insert(c);c=new mxCell("Boss",new mxGeometry(0,0,100,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;align=left;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(700,0);c.vertex=!0;b.insert(c);b=new mxCell("",new mxGeometry(0,0,800,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;whiteSpace=wrap;resizeWidth=1;"); -b.geometry.relative=!0;b.geometry.offset=new mxPoint(0,160);b.vertex=!0;e.insert(b);c=new mxCell("1",new mxGeometry(0,0,50,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.vertex=!0;b.insert(c);c=new mxCell("John",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative= -!0;c.geometry.offset=new mxPoint(80,0);c.vertex=!0;b.insert(c);c=new mxCell("Boo",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(230,0);c.vertex=!0;b.insert(c);c=new mxCell("johnny81",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;"); -c.geometry.relative=!0;c.geometry.offset=new mxPoint(380,0);c.vertex=!0;b.insert(c);c=new mxCell("",new mxGeometry(0,.5,20,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.checkbox;fillColor=#ffffff;strokeColor=#666666;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(560,-10);c.vertex=!0;b.insert(c);c=new mxCell("",new mxGeometry(0,.5,20,20),"shape=ellipse;strokeColor=#666666;fillColor=#ffffff;html=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(700,-10);c.vertex=!0;b.insert(c); -b=new mxCell("",new mxGeometry(0,0,800,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;whiteSpace=wrap;resizeWidth=1;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(0,200);b.vertex=!0;e.insert(b);c=new mxCell("2",new mxGeometry(0,0,50,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.vertex=!0;b.insert(c);c=new mxCell("Mary", -new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(80,0);c.vertex=!0;b.insert(c);c=new mxCell("Brown",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(230, -0);c.vertex=!0;b.insert(c);c=new mxCell("missmary",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(380,0);c.vertex=!0;b.insert(c);c=new mxCell("",new mxGeometry(0,.5,20,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.checkbox;fillColor=#ffffff;strokeColor=#666666;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(560, --10);c.vertex=!0;b.insert(c);c=new mxCell("",new mxGeometry(0,.5,20,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.radioButton;fillColor=#ffffff;strokeColor=#666666;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(700,-10);c.vertex=!0;b.insert(c);b=new mxCell("",new mxGeometry(0,0,800,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.bottomButton;rSize=5;whiteSpace=wrap;resizeWidth=1;");b.geometry.relative=!0;b.geometry.offset= -new mxPoint(0,240);b.vertex=!0;e.insert(b);c=new mxCell("3",new mxGeometry(0,0,50,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.vertex=!0;b.insert(c);c=new mxCell("James",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(80, -0);c.vertex=!0;b.insert(c);c=new mxCell("Mooray",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(230,0);c.vertex=!0;b.insert(c);c=new mxCell("jijames",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative= -!0;c.geometry.offset=new mxPoint(380,0);c.vertex=!0;b.insert(c);c=new mxCell("",new mxGeometry(0,.5,20,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=3;fillColor=#ffffff;strokeColor=#666666;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(560,-10);c.vertex=!0;b.insert(c);c=new mxCell("",new mxGeometry(0,.5,20,20),"shape=ellipse;fillColor=#ffffff;strokeColor=#666666;html=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(700,-10);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([e], -e.geometry.width,e.geometry.height,"Table")}),this.addEntry("bootstrap panel list group",function(){var e=new mxCell("",new mxGeometry(0,0,600,320),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;fillColor=#ffffff;");e.vertex=!0;var b=new mxCell("Panel title",new mxGeometry(0,0,600,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.topButton;rSize=5;strokeColor=inherit;fillColor=#000000;fillOpacity=3;fontColor=#999999;fontSize=14;fontStyle=1;align=left;spacingLeft=10;whiteSpace=wrap;resizeWidth=1;"); -b.geometry.relative=!0;b.vertex=!0;e.insert(b);b=new mxCell("Some default panel content here. Nulla vitae elit libero, a pharetra augue. Aenean lacinia bibendum nulla sed consectetur. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Nullam id dolor id nibh ultricies vehicula. ",new mxGeometry(0,0,600,80),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;align=left;spacingLeft=10;whiteSpace=wrap;fontSize=14;whiteSpace=wrap;resizeWidth=1;"); -b.geometry.relative=!0;b.geometry.offset=new mxPoint(0,40);b.vertex=!0;e.insert(b);b=new mxCell("Cras justo odio",new mxGeometry(0,0,600,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;spacingLeft=10;fontSize=14;align=left;whiteSpace=wrap;resizeWidth=1;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(0,120);b.vertex=!0;e.insert(b);b=new mxCell("Dapibus ac facilisis in",new mxGeometry(0,0,600,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;spacingLeft=10;fontSize=14;align=left;whiteSpace=wrap;resizeWidth=1;"); -b.geometry.relative=!0;b.geometry.offset=new mxPoint(0,160);b.vertex=!0;e.insert(b);b=new mxCell("Morbi leo risus",new mxGeometry(0,0,600,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;spacingLeft=10;fontSize=14;align=left;whiteSpace=wrap;resizeWidth=1;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(0,200);b.vertex=!0;e.insert(b);b=new mxCell("Porta ac consectetur ac",new mxGeometry(0,0,600,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;spacingLeft=10;fontSize=14;align=left;whiteSpace=wrap;resizeWidth=1;"); -b.geometry.relative=!0;b.geometry.offset=new mxPoint(0,240);b.vertex=!0;e.insert(b);b=new mxCell("Vestibulum at eros",new mxGeometry(0,1,600,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.bottomButton;rSize=5;spacingLeft=10;fontSize=14;align=left;whiteSpace=wrap;resizeWidth=1;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(0,-40);b.vertex=!0;e.insert(b);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height, -"Panel (List Group)")}),this.addEntry("bootstrap table",function(){var e=new mxCell("",new mxGeometry(0,0,800,160),"html=1;shadow=0;dashed=0;shape=partialRectangle;top=0;bottom=0;right=0;left=0;strokeColor=#dddddd;fillColor=#ffffff;");e.vertex=!0;var b=new mxCell("",new mxGeometry(0,0,800,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;strokeColor=inherit;fillColor=#000000;fillOpacity=3;resizeWidth=1;");b.geometry.relative=!0;b.vertex=!0;e.insert(b);var c=new mxCell("#",new mxGeometry(0, -0,50,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.vertex=!0;b.insert(c);c=new mxCell("First Name",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;align=left;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(80,0);c.vertex=!0;b.insert(c);c=new mxCell("Last Name", -new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;align=left;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(230,0);c.vertex=!0;b.insert(c);c=new mxCell("Username",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;align=left;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset= -new mxPoint(380,0);c.vertex=!0;b.insert(c);c=new mxCell("Active",new mxGeometry(0,0,100,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;align=left;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(560,0);c.vertex=!0;b.insert(c);c=new mxCell("Boss",new mxGeometry(0,0,100,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;align=left;whiteSpace=wrap;resizeHeight=1;"); -c.geometry.relative=!0;c.geometry.offset=new mxPoint(700,0);c.vertex=!0;b.insert(c);b=new mxCell("",new mxGeometry(0,0,800,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;resizeWidth=1;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(0,40);b.vertex=!0;e.insert(b);c=new mxCell("1",new mxGeometry(0,0,50,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;whiteSpace=wrap;resizeHeight=1;"); -c.geometry.relative=!0;c.vertex=!0;b.insert(c);c=new mxCell("John",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(80,0);c.vertex=!0;b.insert(c);c=new mxCell("Boo",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;"); -c.geometry.relative=!0;c.geometry.offset=new mxPoint(230,0);c.vertex=!0;b.insert(c);c=new mxCell("johnny81",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(380,0);c.vertex=!0;b.insert(c);c=new mxCell("",new mxGeometry(0,.5,20,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.checkbox;strokeColor=#666666;fillColor=#ffffff;"); -c.geometry.relative=!0;c.geometry.offset=new mxPoint(560,-10);c.vertex=!0;b.insert(c);c=new mxCell("",new mxGeometry(0,.5,20,20),"shape=ellipse;strokeColor=#666666;html=1;fillColor=#ffffff;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(700,-10);c.vertex=!0;b.insert(c);b=new mxCell("",new mxGeometry(0,0,800,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;resizeWidth=1;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(0, -80);b.vertex=!0;e.insert(b);c=new mxCell("2",new mxGeometry(0,0,50,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.vertex=!0;b.insert(c);c=new mxCell("Mary",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(80,0); -c.vertex=!0;b.insert(c);c=new mxCell("Brown",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(230,0);c.vertex=!0;b.insert(c);c=new mxCell("missmary",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative= -!0;c.geometry.offset=new mxPoint(380,0);c.vertex=!0;b.insert(c);c=new mxCell("",new mxGeometry(0,.5,20,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.checkbox;strokeColor=#666666;fillColor=#ffffff;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(560,-10);c.vertex=!0;b.insert(c);c=new mxCell("",new mxGeometry(0,.5,20,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.radioButton;strokeColor=#666666;fillColor=#ffffff;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(700,-10); -c.vertex=!0;b.insert(c);b=new mxCell("",new mxGeometry(0,0,800,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;resizeWidth=1;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(0,120);b.vertex=!0;e.insert(b);c=new mxCell("3",new mxGeometry(0,0,50,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.vertex=!0;b.insert(c); -c=new mxCell("James",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(80,0);c.vertex=!0;b.insert(c);c=new mxCell("Mooray",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset= -new mxPoint(230,0);c.vertex=!0;b.insert(c);c=new mxCell("jijames",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(380,0);c.vertex=!0;b.insert(c);c=new mxCell("",new mxGeometry(0,.5,20,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=3;strokeColor=#666666;fillColor=#ffffff;");c.geometry.relative=!0;c.geometry.offset= -new mxPoint(560,-10);c.vertex=!0;b.insert(c);c=new mxCell("",new mxGeometry(0,.5,20,20),"shape=ellipse;strokeColor=#666666;fillColor=#ffffff;html=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(700,-10);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Table")}),this.addEntry("bootstrap table",function(){var e=new mxCell("",new mxGeometry(0,0,800,360),"shape=partialRectangle;right=0;left=0;strokeColor=#dddddd;fillColor=#ffffff;whiteSpace=wrap;"); -e.vertex=!0;var b=new mxCell("",new mxGeometry(0,0,800,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;strokeColor=inherit;fillColor=#000000;fillOpacity=3;resizeWidth=1;");b.geometry.relative=!0;b.vertex=!0;e.insert(b);var c=new mxCell("Name",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;align=left;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(50,0);c.vertex= -!0;b.insert(c);c=new mxCell("Double-Line\nHeader",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;align=left;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(250,0);c.vertex=!0;b.insert(c);c=new mxCell("Rating",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;align=left;whiteSpace=wrap;resizeHeight=1;"); -c.geometry.relative=!0;c.geometry.offset=new mxPoint(450,0);c.vertex=!0;b.insert(c);c=new mxCell("Signed Up",new mxGeometry(0,0,100,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;align=left;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(620,0);c.vertex=!0;b.insert(c);b=new mxCell("",new mxGeometry(1,.5,10,5),"shape=triangle;direction=south;strokeColor=none;fillColor=#000000;");b.geometry.relative= -!0;b.geometry.offset=new mxPoint(-25,-2.5);b.vertex=!0;c.insert(b);b=new mxCell("",new mxGeometry(0,0,800,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;resizeWidth=1;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(0,40);b.vertex=!0;e.insert(b);c=new mxCell("",new mxGeometry(0,.5,20,20),"shape=ellipse;strokeColor=none;fillColor=#dddddd;html=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(15,-10);c.vertex= -!0;b.insert(c);var d=new mxCell("",new mxGeometry(.5,.5,14,12),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.user;strokeColor=none;fillColor=#999999;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(-7,-6);d.vertex=!0;c.insert(d);c=new mxCell("John Boo",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(50,0);c.vertex= -!0;b.insert(c);c=new mxCell("ok",new mxGeometry(0,.5,30,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=3;strokeColor=none;fillColor=#58B957;fontSize=12;fontStyle=1;fontColor=#ffffff;whiteSpace=wrap;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(250,-10);c.vertex=!0;b.insert(c);c=new mxCell("",new mxGeometry(0,.5,150,14),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rating;strokeColor=none;fillColor=#EFAC43;emptyFillColor=#dddddd;grade=3;ratingScale=5;ratingStyle=star;"); -c.geometry.relative=!0;c.geometry.offset=new mxPoint(450,-7);c.vertex=!0;b.insert(c);c=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td align="center" valign="middle" width="50%">15 Sep, 8:56 AM <font color="#dddddd">(2013)</font></td></tr></table>',new mxGeometry(0,0,160,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;overflow=fill;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset= -new mxPoint(620,0);c.vertex=!0;b.insert(c);b=new mxCell("",new mxGeometry(0,0,800,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;resizeWidth=1;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(0,80);b.vertex=!0;e.insert(b);c=new mxCell("",new mxGeometry(0,.5,20,20),"shape=ellipse;strokeColor=none;fillColor=#dddddd;html=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(15,-10);c.vertex=!0;b.insert(c);d=new mxCell("", -new mxGeometry(.5,.5,14,12),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.user;strokeColor=none;fillColor=#999999;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(-7,-6);d.vertex=!0;c.insert(d);c=new mxCell("Michael Robinson",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(50,0);c.vertex=!0;b.insert(c);c=new mxCell("ok", -new mxGeometry(0,.5,30,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=3;strokeColor=none;fillColor=#58B957;fontSize=12;fontStyle=1;fontColor=#ffffff;whiteSpace=wrap;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(250,-10);c.vertex=!0;b.insert(c);c=new mxCell("",new mxGeometry(0,.5,150,14),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rating;strokeColor=none;fillColor=#EFAC43;emptyFillColor=#dddddd;grade=5;ratingScale=5;ratingStyle=star;");c.geometry.relative=!0;c.geometry.offset= -new mxPoint(450,-7);c.vertex=!0;b.insert(c);c=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td align="center" valign="middle" width="50%">15 Sep, 7:12 AM <font color="#dddddd">(2013)</font></td></tr></table>',new mxGeometry(0,0,160,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;overflow=fill;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(620,0);c.vertex= -!0;b.insert(c);b=new mxCell("",new mxGeometry(0,0,800,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;resizeWidth=1;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(0,120);b.vertex=!0;e.insert(b);c=new mxCell("",new mxGeometry(0,.5,20,20),"shape=ellipse;strokeColor=none;fillColor=#dddddd;html=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(15,-10);c.vertex=!0;b.insert(c);d=new mxCell("",new mxGeometry(.5,.5, -14,12),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.user;strokeColor=none;fillColor=#999999;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(-7,-6);d.vertex=!0;c.insert(d);c=new mxCell("Alexander Robson",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(50,0);c.vertex=!0;b.insert(c);c=new mxCell("Blocked",new mxGeometry(0, -.5,70,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=3;strokeColor=none;fillColor=#999999;fontSize=12;fontStyle=1;fontColor=#ffffff;whiteSpace=wrap;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(250,-10);c.vertex=!0;b.insert(c);c=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td align="center" valign="middle" width="50%">15 Sep, 4:32 AM <font color="#dddddd">(2013)</font></td></tr></table>',new mxGeometry(0,0,160,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;overflow=fill;whiteSpace=wrap;resizeHeight=1;"); -c.geometry.relative=!0;c.geometry.offset=new mxPoint(620,0);c.vertex=!0;b.insert(c);b=new mxCell("",new mxGeometry(0,0,800,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;resizeWidth=1;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(0,160);b.vertex=!0;e.insert(b);c=new mxCell("",new mxGeometry(0,.5,20,20),"shape=ellipse;strokeColor=none;fillColor=#dddddd;html=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(15, --10);c.vertex=!0;b.insert(c);d=new mxCell("",new mxGeometry(.5,.5,14,12),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.user;strokeColor=none;fillColor=#999999;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(-7,-6);d.vertex=!0;c.insert(d);c=new mxCell("Jennifer Pinsker",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(50, -0);c.vertex=!0;b.insert(c);c=new mxCell("Blocked 24h",new mxGeometry(0,.5,90,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=3;strokeColor=none;fillColor=#999999;fontSize=12;fontStyle=1;fontColor=#ffffff;whiteSpace=wrap;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(250,-10);c.vertex=!0;b.insert(c);c=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td align="center" valign="middle" width="50%">15 Sep, 2:08 AM <font color="#dddddd">(2013)</font></td></tr></table>', -new mxGeometry(0,0,160,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;overflow=fill;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(620,0);c.vertex=!0;b.insert(c);b=new mxCell("",new mxGeometry(0,0,800,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;resizeWidth=1;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(0, -200);b.vertex=!0;e.insert(b);c=new mxCell("",new mxGeometry(0,.5,20,20),"shape=ellipse;strokeColor=none;fillColor=#dddddd;html=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(15,-10);c.vertex=!0;b.insert(c);d=new mxCell("",new mxGeometry(.5,.5,14,12),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.user;strokeColor=none;fillColor=#999999;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(-7,-6);d.vertex=!0;c.insert(d);c=new mxCell("Bob Robson",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;"); -c.geometry.relative=!0;c.geometry.offset=new mxPoint(50,0);c.vertex=!0;b.insert(c);c=new mxCell("ok",new mxGeometry(0,.5,30,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=3;strokeColor=none;fillColor=#58B957;fontSize=12;fontStyle=1;fontColor=#ffffff;whiteSpace=wrap;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(250,-10);c.vertex=!0;b.insert(c);c=new mxCell("",new mxGeometry(0,.5,150,14),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rating;strokeColor=none;fillColor=#EFAC43;emptyFillColor=#dddddd;grade=1;ratingScale=5;ratingStyle=star;"); -c.geometry.relative=!0;c.geometry.offset=new mxPoint(450,-7);c.vertex=!0;b.insert(c);c=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td align="center" valign="middle" width="50%">15 Sep, 8:56 AM <font color="#dddddd">(2013)</font></td></tr></table>',new mxGeometry(0,0,160,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;overflow=fill;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset= -new mxPoint(620,0);c.vertex=!0;b.insert(c);b=new mxCell("",new mxGeometry(0,0,800,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;resizeWidth=1;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(0,240);b.vertex=!0;e.insert(b);c=new mxCell("",new mxGeometry(0,.5,20,20),"shape=ellipse;strokeColor=none;fillColor=#dddddd;html=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(15,-10);c.vertex=!0;b.insert(c);d=new mxCell("", -new mxGeometry(.5,.5,14,12),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.user;strokeColor=none;fillColor=#999999;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(-7,-6);d.vertex=!0;c.insert(d);c=new mxCell("Michael Robinson",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(50,0);c.vertex=!0;b.insert(c);c=new mxCell("Suspect", -new mxGeometry(0,.5,70,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=3;strokeColor=none;fillColor=#55BFE0;fontSize=12;fontStyle=1;fontColor=#ffffff;whiteSpace=wrap;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(250,-10);c.vertex=!0;b.insert(c);c=new mxCell("",new mxGeometry(0,.5,150,14),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rating;strokeColor=none;fillColor=#EFAC43;emptyFillColor=#dddddd;grade=4;ratingScale=5;ratingStyle=star;");c.geometry.relative=!0;c.geometry.offset= -new mxPoint(450,-7);c.vertex=!0;b.insert(c);c=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td align="center" valign="middle" width="50%">15 Sep, 7:12 AM <font color="#dddddd">(2013)</font></td></tr></table>',new mxGeometry(0,0,160,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;overflow=fill;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(620,0);c.vertex= -!0;b.insert(c);b=new mxCell("",new mxGeometry(0,0,800,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;resizeWidth=1;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(0,280);b.vertex=!0;e.insert(b);c=new mxCell("",new mxGeometry(0,.5,20,20),"shape=ellipse;strokeColor=none;fillColor=#dddddd;html=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(15,-10);c.vertex=!0;b.insert(c);d=new mxCell("",new mxGeometry(.5,.5, -14,12),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.user;strokeColor=none;fillColor=#999999;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(-7,-6);d.vertex=!0;c.insert(d);c=new mxCell("Jennifer Pinsker",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(50,0);c.vertex=!0;b.insert(c);c=new mxCell("ok",new mxGeometry(0, -.5,30,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=3;strokeColor=none;fillColor=#58B957;fontSize=12;fontStyle=1;fontColor=#ffffff;whiteSpace=wrap;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(250,-10);c.vertex=!0;b.insert(c);c=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td align="center" valign="middle" width="50%">15 Sep, 4:34 AM <font color="#dddddd">(2013)</font></td></tr></table>',new mxGeometry(0,0,160,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;overflow=fill;whiteSpace=wrap;resizeHeight=1;"); -c.geometry.relative=!0;c.geometry.offset=new mxPoint(620,0);c.vertex=!0;b.insert(c);b=new mxCell("",new mxGeometry(0,0,800,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;resizeWidth=1;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(0,320);b.vertex=!0;e.insert(b);c=new mxCell("",new mxGeometry(0,.5,20,20),"shape=ellipse;strokeColor=none;fillColor=#dddddd;html=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(15, --10);c.vertex=!0;b.insert(c);d=new mxCell("",new mxGeometry(.5,.5,14,12),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.user;strokeColor=none;fillColor=#999999;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(-7,-6);d.vertex=!0;c.insert(d);c=new mxCell("John Boo",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(50, -0);c.vertex=!0;b.insert(c);c=new mxCell("Violation",new mxGeometry(0,.5,70,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=3;strokeColor=none;fillColor=#DB524C;fontSize=12;fontStyle=1;fontColor=#ffffff;whiteSpace=wrap;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(250,-10);c.vertex=!0;b.insert(c);c=new mxCell("",new mxGeometry(0,.5,150,14),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rating;strokeColor=none;fillColor=#EFAC43;emptyFillColor=#dddddd;grade=2;ratingScale=5;ratingStyle=star;"); -c.geometry.relative=!0;c.geometry.offset=new mxPoint(450,-7);c.vertex=!0;b.insert(c);c=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td align="center" valign="middle" width="50%">15 Sep, 2:08 AM <font color="#dddddd">(2013)</font></td></tr></table>',new mxGeometry(0,0,160,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;overflow=fill;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset= -new mxPoint(620,0);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Table")}),this.addEntry("bootstrap table",function(){var e=new mxCell("",new mxGeometry(0,0,800,340),"shape=partialRectangle;right=0;left=0;strokeColor=#dddddd;fillColor=#ffffff;whiteSpace=wrap;");e.vertex=!0;var b=new mxCell("",new mxGeometry(0,0,800,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;strokeColor=inherit;fillColor=#000000;fillOpacity=3;resizeWidth=1;"); -b.geometry.relative=!0;b.vertex=!0;e.insert(b);var c=new mxCell("Admin Name",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;align=left;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(10,0);c.vertex=!0;b.insert(c);c=new mxCell("Object",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;align=left;whiteSpace=wrap;resizeHeight=1;"); -c.geometry.relative=!0;c.geometry.offset=new mxPoint(200,0);c.vertex=!0;b.insert(c);c=new mxCell("Action",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;align=left;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(400,0);c.vertex=!0;b.insert(c);c=new mxCell("Date",new mxGeometry(0,0,100,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;align=left;whiteSpace=wrap;resizeHeight=1;"); -c.geometry.relative=!0;c.geometry.offset=new mxPoint(620,0);c.vertex=!0;b.insert(c);c=new mxCell("",new mxGeometry(0,.5,10,5),"shape=triangle;direction=south;strokeColor=none;fillColor=#000000;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(665,-2.5);c.vertex=!0;b.insert(c);b=new mxCell("",new mxGeometry(0,0,800,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;resizeWidth=1;");b.geometry.relative=!0;b.geometry.offset= -new mxPoint(0,40);b.vertex=!0;e.insert(b);c=new mxCell("Jennifer Pinsker\n",new mxGeometry(0,0,150,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(10,0);c.vertex=!0;b.insert(c);c=new mxCell("",new mxGeometry(0,.5,20,20),"shape=ellipse;strokeColor=none;fillColor=#dddddd;html=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(200,-15);c.vertex= -!0;b.insert(c);var d=new mxCell("",new mxGeometry(.5,.5,14,12),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.user;strokeColor=none;fillColor=#999999;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(-7,-6);d.vertex=!0;c.insert(d);c=new mxCell("John Boo\n",new mxGeometry(0,0,150,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(230,0);c.vertex= -!0;b.insert(c);c=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td align="left" valign="middle" width="50%">Profile Updated<br/><font color="#dddddd">First Name is set to Bobby</font></td></tr></table>',new mxGeometry(0,0,210,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;overflow=fill;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(400,0);c.vertex=!0; -b.insert(c);c=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td align="center" valign="middle" width="50%">15 Sep, 8:56 AM <font color="#dddddd">(2013)<br><br></font></td></tr></table>',new mxGeometry(0,0,160,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;overflow=fill;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(620,0);c.vertex=!0;b.insert(c);b=new mxCell("", -new mxGeometry(0,0,800,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;resizeWidth=1;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(0,90);b.vertex=!0;e.insert(b);c=new mxCell("Bob Robson\n",new mxGeometry(0,0,150,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(10, -0);c.vertex=!0;b.insert(c);c=new mxCell("",new mxGeometry(0,.5,20,20),"shape=ellipse;strokeColor=none;fillColor=#dddddd;html=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(200,-15);c.vertex=!0;b.insert(c);d=new mxCell("",new mxGeometry(.5,.5,14,12),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.user;strokeColor=none;fillColor=#999999;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(-7,-6);d.vertex=!0;c.insert(d);c=new mxCell("Michael Robinson\n",new mxGeometry(0,0,150,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;"); -c.geometry.relative=!0;c.geometry.offset=new mxPoint(230,0);c.vertex=!0;b.insert(c);c=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td align="left" valign="middle" width="50%">Violation Resolved<br/><font color="#dddddd">Fake Person Violation resolved</font></td></tr></table>',new mxGeometry(0,0,210,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;overflow=fill;whiteSpace=wrap;resizeHeight=1;"); -c.geometry.relative=!0;c.geometry.offset=new mxPoint(400,0);c.vertex=!0;b.insert(c);c=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td align="center" valign="middle" width="50%">15 Sep, 7:12 AM <font color="#dddddd">(2013)<br><br></font></td></tr></table>',new mxGeometry(0,0,160,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;overflow=fill;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative= -!0;c.geometry.offset=new mxPoint(620,0);c.vertex=!0;b.insert(c);b=new mxCell("",new mxGeometry(0,0,800,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;resizeWidth=1;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(0,140);b.vertex=!0;e.insert(b);c=new mxCell("Michael Robinson\n",new mxGeometry(0,0,150,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;"); -c.geometry.relative=!0;c.geometry.offset=new mxPoint(10,0);c.vertex=!0;b.insert(c);c=new mxCell("",new mxGeometry(0,.5,20,20),"shape=ellipse;strokeColor=none;fillColor=#dddddd;html=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(200,-15);c.vertex=!0;b.insert(c);d=new mxCell("",new mxGeometry(.5,.5,14,12),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.user;strokeColor=none;fillColor=#999999;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(-7,-6);d.vertex=!0;c.insert(d);c=new mxCell("Alexander Robson\n", -new mxGeometry(0,0,150,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1");c.geometry.relative=!0;c.geometry.offset=new mxPoint(230,0);c.vertex=!0;b.insert(c);c=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td align="left" valign="middle" width="50%">Suspect Resolved<br/><font color="#dddddd">Mass Friending Suspect resolved</font></td></tr></table>',new mxGeometry(0, -0,210,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;overflow=fill;whiteSpace=wrap;resizeWidth=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(400,0);c.vertex=!0;b.insert(c);c=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td align="center" valign="middle" width="50%">15 Sep, 4:34 AM <font color="#dddddd">(2013)<br><br></font></td></tr></table>',new mxGeometry(0,0,160,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;overflow=fill;whiteSpace=wrap;resizeHeight=1;"); -c.geometry.relative=!0;c.geometry.offset=new mxPoint(620,0);c.vertex=!0;b.insert(c);b=new mxCell("",new mxGeometry(0,0,800,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;resizeWidth=1;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(0,190);b.vertex=!0;e.insert(b);c=new mxCell("Jennifer Pinsker\n",new mxGeometry(0,0,150,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;"); -c.geometry.relative=!0;c.geometry.offset=new mxPoint(10,0);c.vertex=!0;b.insert(c);c=new mxCell("",new mxGeometry(0,.5,20,20),"shape=ellipse;strokeColor=none;fillColor=#dddddd;html=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(200,-15);c.vertex=!0;b.insert(c);d=new mxCell("",new mxGeometry(.5,.5,14,12),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.user;strokeColor=none;fillColor=#999999;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(-7,-6);d.vertex=!0;c.insert(d);c=new mxCell("Jennifer Pinsker\n", -new mxGeometry(0,0,150,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(230,0);c.vertex=!0;b.insert(c);c=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td align="left" valign="middle" width="50%">Profile Violation Detected<br/><font color="#dddddd">First Name is marked as Violation</font></td></tr></table>', -new mxGeometry(0,0,210,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;overflow=fill;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(400,0);c.vertex=!0;b.insert(c);c=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td align="center" valign="middle" width="50%">15 Sep, 2:08 AM <font color="#dddddd">(2013)<br><br></font></td></tr></table>',new mxGeometry(0, -0,160,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;overflow=fill;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(620,0);c.vertex=!0;b.insert(c);b=new mxCell("",new mxGeometry(0,0,800,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;resizeWidth=1;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(0,240);b.vertex=!0; -e.insert(b);c=new mxCell("John Boo\n",new mxGeometry(0,0,150,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(10,0);c.vertex=!0;b.insert(c);c=new mxCell("",new mxGeometry(0,.5,20,20),"shape=ellipse;strokeColor=none;fillColor=#dddddd;html=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(200,-15);c.vertex=!0;b.insert(c);d=new mxCell("",new mxGeometry(.5, -.5,14,12),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.user;strokeColor=none;fillColor=#999999;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(-7,-6);d.vertex=!0;c.insert(d);c=new mxCell("Bob Robson\n",new mxGeometry(0,0,150,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(230,0);c.vertex=!0;b.insert(c);c=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td align="left" valign="middle" width="50%">Profile Updated<br/><font color="#dddddd">First Name is set to Bobby</font></td></tr></table>', -new mxGeometry(0,0,210,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;overflow=fill;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(400,0);c.vertex=!0;b.insert(c);c=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td align="center" valign="middle" width="50%">15 Sep, 8:56 AM <font color="#dddddd">(2013)<br><br></font></td></tr></table>',new mxGeometry(0, -0,160,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;overflow=fill;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(620,0);c.vertex=!0;b.insert(c);b=new mxCell("",new mxGeometry(0,0,800,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;resizeWidth=1;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(0,290);b.vertex=!0; -e.insert(b);c=new mxCell("Michael Robinson\n",new mxGeometry(0,0,150,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(10,0);c.vertex=!0;b.insert(c);c=new mxCell("",new mxGeometry(0,.5,20,20),"shape=ellipse;strokeColor=none;fillColor=#dddddd;html=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(200,-15);c.vertex=!0;b.insert(c);d=new mxCell("", -new mxGeometry(.5,.5,14,12),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.user;strokeColor=none;fillColor=#999999;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(-7,-6);d.vertex=!0;c.insert(d);c=new mxCell("Michael Robinson\n",new mxGeometry(0,0,150,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(230,0);c.vertex=!0;b.insert(c);c=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td align="left" valign="middle" width="50%">User Blocked<br/><font color="#dddddd">Blocked for 24 hours</font></td></tr></table>', -new mxGeometry(0,0,210,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;overflow=fill;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(400,0);c.vertex=!0;b.insert(c);c=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td align="center" valign="middle" width="50%">15 Sep, 7:12 AM <font color="#dddddd">(2013)<br><br></font></td></tr></table>',new mxGeometry(0, -0,160,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;overflow=fill;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(620,0);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Table")}),this.addEntry("bootstrap table",function(){var e=new mxCell("",new mxGeometry(0,0,800,430),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;strokeColor=#dddddd;fillColor=#ffffff;"); -e.vertex=!0;var b=new mxCell("",new mxGeometry(0,0,800,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;strokeColor=inherit;fillColor=#000000;fillOpacity=3;resizeWidth=1;");b.geometry.relative=!0;b.vertex=!0;e.insert(b);var c=new mxCell("Template Name",new mxGeometry(0,0,200,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;align=left;spacingLeft=10;whiteSpace=wrap;resizeHeight=1;");c.geometry.relative=!0;c.vertex=!0;b.insert(c); -c=new mxCell("Message",new mxGeometry(0,0,200,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;align=left;spacingLeft=10;whiteSpace=wrap;resizeWidth=1;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(200,0);c.vertex=!0;b.insert(c);b=new mxCell("",new mxGeometry(0,0,800,130),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;resizeWidth=1;");b.geometry.relative= -!0;b.geometry.offset=new mxPoint(0,40);b.vertex=!0;e.insert(b);c=new mxCell("Uncompleted Profile",new mxGeometry(0,0,200,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;align=left;spacingLeft=10;whiteSpace=wrap;");c.geometry.relative=!0;c.vertex=!0;b.insert(c);c=new mxCell("Hello! At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium deleniti atque corrupti quos doloreset quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id estlaborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Name libero tempore, cum soluta nobis est eligendioptio cumque nihil impedit quo.", -new mxGeometry(0,0,400,130),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;align=left;valign=top;spacingLeft=10;verticalAlign=top;spacingTop=6;whiteSpace=wrap;resizeWidth=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(200,0);c.vertex=!0;b.insert(c);c=new mxCell("Edit",new mxGeometry(1,0,50,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;fillColor=#ffffff;whiteSpace=wrap;");c.geometry.relative=!0;c.geometry.offset= -new mxPoint(-140,15);c.vertex=!0;b.insert(c);c=new mxCell("Delete",new mxGeometry(1,0,60,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;fillColor=#ffffff;whiteSpace=wrap;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-80,15);c.vertex=!0;b.insert(c);b=new mxCell("",new mxGeometry(0,0,800,100),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;resizeWidth=1;");b.geometry.relative=!0; -b.geometry.offset=new mxPoint(0,170);b.vertex=!0;e.insert(b);c=new mxCell("Spam Suspect",new mxGeometry(0,0,200,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;align=left;spacingLeft=10;whiteSpace=wrap;");c.geometry.relative=!0;c.vertex=!0;b.insert(c);c=new mxCell("Hello, deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa quiofficia deserunt mollitia animi, id est fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam nobis est eligendi optio cumquenihil impedit quo minus id quod maxime placeat.", -new mxGeometry(0,0,400,100),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;align=left;valign=top;spacingLeft=10;verticalAlign=top;spacingTop=6;whiteSpace=wrap;resizeWidth=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(200,0);c.vertex=!0;b.insert(c);c=new mxCell("Edit",new mxGeometry(1,0,50,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;fillColor=#ffffff;whiteSpace=wrap;");c.geometry.relative=!0;c.geometry.offset= -new mxPoint(-140,15);c.vertex=!0;b.insert(c);c=new mxCell("Delete",new mxGeometry(1,0,60,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;fillColor=#ffffff;whiteSpace=wrap;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-80,15);c.vertex=!0;b.insert(c);b=new mxCell("",new mxGeometry(0,0,800,160),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;resizeWidth=1;");b.geometry.relative=!0; -b.geometry.offset=new mxPoint(0,270);b.vertex=!0;e.insert(b);c=new mxCell("Profile Blocked",new mxGeometry(0,0,200,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;align=left;spacingLeft=10;whiteSpace=wrap;");c.vertex=!0;b.insert(c);c=new mxCell("Hello! Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsaquae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sitaspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est,qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et doloremagnam aliquam quaerat voluptarem.", -new mxGeometry(0,0,400,160),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;align=left;valign=top;spacingLeft=10;verticalAlign=top;spacingTop=6;whiteSpace=wrap;resizeWidth=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(200,0);c.vertex=!0;b.insert(c);c=new mxCell("Edit",new mxGeometry(1,0,50,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;fillColor=#ffffff;whiteSpace=wrap;");c.geometry.relative=!0;c.geometry.offset= -new mxPoint(-140,15);c.vertex=!0;b.insert(c);c=new mxCell("Delete",new mxGeometry(1,0,60,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;fillColor=#ffffff;whiteSpace=wrap;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-80,15);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Table")}),this.addEntry("bootstrap table",function(){var e=new mxCell("",new mxGeometry(0,0,800,80),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;strokeColor=#dddddd;fillColor=#fdfdfd;"); -e.vertex=!0;var b=new mxCell("Group Name",new mxGeometry(20,20,500,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;fillColor=#ffffff;align=left;spacingLeft=10;fontSize=18;fontColor=#999999;whiteSpace=wrap;");b.vertex=!0;e.insert(b);b=new mxCell("Create Templates Group",new mxGeometry(540,20,240,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=none;fillColor=#3D8BCD;fontSize=18;fontColor=#ffffff;whiteSpace=wrap;");b.vertex=!0;e.insert(b); -return a.createVertexTemplateFromCells([e],e.geometry.width,e.geometry.height,"Table")}),this.addDataEntry("bootstrap edit template",800,720,"Edit Template","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"), +this.addEntry("bootstrap linked item custom content",function(){var b=new mxCell("",new mxGeometry(0,0,400,240),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;fillColor=#ffffff;strokeColor=#dddddd;whiteSpace=wrap;");b.vertex=!0;var c=new mxCell("Donec id elit non mi porta gravida at eget metus.\nMaecenas sed diam eget risus varius blandit.",new mxGeometry(0,0,400,80),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;perimeter=none;spacingLeft=10;align=left;fontSize=14;whiteSpace=wrap;verticalAlign=bottom;spacingBottom=10;resizeWidth=1;"); +c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,80);c.vertex=!0;b.insert(c);var d=new mxCell("List group item heading",new mxGeometry(0,0,400,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.anchor;spacingLeft=10;align=left;fontSize=18;whiteSpace=wrap;resizeWidth=1;");d.geometry.relative=!0;d.vertex=!0;c.insert(d);c=new mxCell("Donec id elit non mi porta gravida at eget metus.\nMaecenas sed diam eget risus varius blandit.",new mxGeometry(0,1,400,80),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.bottomButton;rSize=5;spacingLeft=10;align=left;fontSize=14;perimeter=none;whiteSpace=wrap;verticalAlign=bottom;spacingBottom=13;resizeWidth=1;"); +c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,-80);c.vertex=!0;b.insert(c);d=new mxCell("List group item heading",new mxGeometry(0,0,400,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.anchor;spacingLeft=10;align=left;fontSize=18;whiteSpace=wrap;resizeWidth=1;");d.geometry.relative=!0;d.vertex=!0;c.insert(d);c=new mxCell("Donec id elit non mi porta gravida at eget metus.\nMaecenas sed diam eget risus varius blandit.",new mxGeometry(0,0,400,80),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.topButton;rSize=5;fillColor=#3D8BCD;strokeColor=#3D8BCD;fontColor=#ffffff;spacingLeft=10;align=left;fontSize=14;perimeter=none;whiteSpace=wrap;verticalAlign=bottom;spacingBottom=13;resizeWidth=1;"); +c.geometry.relative=!0;c.vertex=!0;b.insert(c);d=new mxCell("List group item heading",new mxGeometry(0,0,400,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.anchor;fontColor=#ffffff;spacingLeft=10;align=left;fontSize=18;whiteSpace=wrap;resizeWidth=1;");d.geometry.relative=!0;d.vertex=!0;c.insert(d);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Linked Items (Custom Content)")}),this.addEntry("bootstrap panel",function(){var b=new mxCell("Panel content",new mxGeometry(0, +0,150,200),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;align=center;rSize=5;strokeColor=#E0F0D6;fillColor=#ffffff;fontColor=#f0f0f0;spacingTop=30;whiteSpace=wrap;");b.vertex=!0;var c=new mxCell("Panel title",new mxGeometry(0,0,150,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.topButton;rSize=5;strokeColor=none;fillColor=#E0F0D6;fontColor=#59B958;fontSize=14;fontStyle=1;align=left;spacingLeft=10;whiteSpace=wrap;resizeWidth=1;");c.geometry.relative=!0;c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b], +b.geometry.width,b.geometry.height,"Panel")}),this.addEntry("bootstrap panel",function(){var b=new mxCell("Panel content",new mxGeometry(0,0,150,200),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;align=center;rSize=5;strokeColor=#D9EDF8;fillColor=#ffffff;fontColor=#f0f0f0;spacingTop=30;whiteSpace=wrap;");b.vertex=!0;var c=new mxCell("Panel title",new mxGeometry(0,0,150,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.topButton;rSize=5;strokeColor=none;fillColor=#D9EDF8;fontColor=#55C0E0;fontSize=14;fontStyle=1;align=left;spacingLeft=10;whiteSpace=wrap;resizeWidth=1;"); +c.geometry.relative=!0;c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Panel")}),this.addEntry("bootstrap panel",function(){var b=new mxCell("Panel content",new mxGeometry(0,0,150,200),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;align=center;rSize=5;strokeColor=#FDF8E4;fillColor=#ffffff;fontColor=#f0f0f0;spacingTop=30;whiteSpace=wrap;");b.vertex=!0;var c=new mxCell("Panel title",new mxGeometry(0,0,150,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.topButton;rSize=5;strokeColor=none;fillColor=#FDF8E4;fontColor=#F2AE43;fontSize=14;fontStyle=1;align=left;spacingLeft=10;whiteSpace=wrap;resizeWidth=1;"); +c.geometry.relative=!0;c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Panel")}),this.addEntry("bootstrap panel",function(){var b=new mxCell("Panel content",new mxGeometry(0,0,150,200),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;align=center;rSize=5;strokeColor=#F2DEDF;fillColor=#ffffff;fontColor=#f0f0f0;spacingTop=30;whiteSpace=wrap;");b.vertex=!0;var c=new mxCell("Panel title",new mxGeometry(0,0,150,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.topButton;rSize=5;strokeColor=none;fillColor=#F2DEDF;fontColor=#DB524C;fontSize=14;fontStyle=1;align=left;spacingLeft=10;whiteSpace=wrap;resizeWidth=1;"); +c.geometry.relative=!0;c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Panel")}),this.addEntry("bootstrap panel",function(){var b=new mxCell("Panel content",new mxGeometry(0,0,150,200),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;align=center;rSize=5;strokeColor=#3D8BCD;fillColor=#ffffff;fontColor=#f0f0f0;spacingTop=30;whiteSpace=wrap;");b.vertex=!0;var c=new mxCell("Panel title",new mxGeometry(0,0,150,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.topButton;rSize=5;strokeColor=none;fillColor=#3D8BCD;fontColor=#ffffff;fontSize=14;fontStyle=1;align=left;spacingLeft=10;whiteSpace=wrap;resizeWidth=1;"); +c.geometry.relative=!0;c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Panel")}),this.addEntry("bootstrap panel footer",function(){var b=new mxCell("Panel content",new mxGeometry(0,0,150,200),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;align=center;rSize=5;strokeColor=#E0F0D6;fillColor=#ffffff;fontColor=#f0f0f0;spacingBottom=30;whiteSpace=wrap;");b.vertex=!0;var c=new mxCell("Panel title",new mxGeometry(0,1,150,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.bottomButton;rSize=5;strokeColor=none;fillColor=#E0F0D6;fontColor=#59B958;fontSize=14;fontStyle=1;align=left;spacingLeft=10;whiteSpace=wrap;resizeWidth=1;"); +c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,-30);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Panel (Footer)")}),this.addEntry("bootstrap table",function(){var b=new mxCell("",new mxGeometry(0,0,800,280),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;fillColor=#ffffff;whiteSpace=wrap;");b.vertex=!0;var c=new mxCell("Panel title",new mxGeometry(0,0,800,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.topButton;rSize=5;strokeColor=inherit;fillColor=#000000;fillOpacity=3;fontColor=#999999;fontSize=14;fontStyle=1;align=left;spacingLeft=10;whiteSpace=wrap;resizeWidth=1;"); +c.geometry.relative=!0;c.vertex=!0;b.insert(c);c=new mxCell("Some default panel content here. Nulla vitae elit libero, a pharetra augue. Aenean lacinia bibendum nulla sed consectetur. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Nullam id dolor id nibh ultricies vehicula. ",new mxGeometry(0,0,800,80),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;align=left;spacingLeft=10;whiteSpace=wrap;resizeWidth=1;"); +c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,40);c.vertex=!0;b.insert(c);c=new mxCell("",new mxGeometry(0,0,800,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=inherit;fillColor=#000000;fillOpacity=3;whiteSpace=wrap;resizeWidth=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,120);c.vertex=!0;b.insert(c);var d=new mxCell("#",new mxGeometry(0,0,50,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;whiteSpace=wrap;resizeHeight=1;"); +d.geometry.relative=!0;d.vertex=!0;c.insert(d);d=new mxCell("First Name",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;align=left;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(80,0);d.vertex=!0;c.insert(d);d=new mxCell("Last Name",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;align=left;whiteSpace=wrap;resizeHeight=1;"); +d.geometry.relative=!0;d.geometry.offset=new mxPoint(230,0);d.vertex=!0;c.insert(d);d=new mxCell("Username",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;align=left;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(380,0);d.vertex=!0;c.insert(d);d=new mxCell("Active",new mxGeometry(0,0,100,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;align=left;whiteSpace=wrap;resizeHeight=1;"); +d.geometry.relative=!0;d.geometry.offset=new mxPoint(560,0);d.vertex=!0;c.insert(d);d=new mxCell("Boss",new mxGeometry(0,0,100,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;align=left;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(700,0);d.vertex=!0;c.insert(d);c=new mxCell("",new mxGeometry(0,0,800,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;whiteSpace=wrap;resizeWidth=1;"); +c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,160);c.vertex=!0;b.insert(c);d=new mxCell("1",new mxGeometry(0,0,50,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.vertex=!0;c.insert(d);d=new mxCell("John",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative= +!0;d.geometry.offset=new mxPoint(80,0);d.vertex=!0;c.insert(d);d=new mxCell("Boo",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(230,0);d.vertex=!0;c.insert(d);d=new mxCell("johnny81",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;"); +d.geometry.relative=!0;d.geometry.offset=new mxPoint(380,0);d.vertex=!0;c.insert(d);d=new mxCell("",new mxGeometry(0,.5,20,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.checkbox;fillColor=#ffffff;strokeColor=#666666;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(560,-10);d.vertex=!0;c.insert(d);d=new mxCell("",new mxGeometry(0,.5,20,20),"shape=ellipse;strokeColor=#666666;fillColor=#ffffff;html=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(700,-10);d.vertex=!0;c.insert(d); +c=new mxCell("",new mxGeometry(0,0,800,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;whiteSpace=wrap;resizeWidth=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,200);c.vertex=!0;b.insert(c);d=new mxCell("2",new mxGeometry(0,0,50,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.vertex=!0;c.insert(d);d=new mxCell("Mary", +new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(80,0);d.vertex=!0;c.insert(d);d=new mxCell("Brown",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(230, +0);d.vertex=!0;c.insert(d);d=new mxCell("missmary",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(380,0);d.vertex=!0;c.insert(d);d=new mxCell("",new mxGeometry(0,.5,20,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.checkbox;fillColor=#ffffff;strokeColor=#666666;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(560, +-10);d.vertex=!0;c.insert(d);d=new mxCell("",new mxGeometry(0,.5,20,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.radioButton;fillColor=#ffffff;strokeColor=#666666;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(700,-10);d.vertex=!0;c.insert(d);c=new mxCell("",new mxGeometry(0,0,800,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.bottomButton;rSize=5;whiteSpace=wrap;resizeWidth=1;");c.geometry.relative=!0;c.geometry.offset= +new mxPoint(0,240);c.vertex=!0;b.insert(c);d=new mxCell("3",new mxGeometry(0,0,50,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.vertex=!0;c.insert(d);d=new mxCell("James",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(80, +0);d.vertex=!0;c.insert(d);d=new mxCell("Mooray",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(230,0);d.vertex=!0;c.insert(d);d=new mxCell("jijames",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative= +!0;d.geometry.offset=new mxPoint(380,0);d.vertex=!0;c.insert(d);d=new mxCell("",new mxGeometry(0,.5,20,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=3;fillColor=#ffffff;strokeColor=#666666;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(560,-10);d.vertex=!0;c.insert(d);d=new mxCell("",new mxGeometry(0,.5,20,20),"shape=ellipse;fillColor=#ffffff;strokeColor=#666666;html=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(700,-10);d.vertex=!0;c.insert(d);return a.createVertexTemplateFromCells([b], +b.geometry.width,b.geometry.height,"Table")}),this.addEntry("bootstrap panel list group",function(){var b=new mxCell("",new mxGeometry(0,0,600,320),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;fillColor=#ffffff;");b.vertex=!0;var c=new mxCell("Panel title",new mxGeometry(0,0,600,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.topButton;rSize=5;strokeColor=inherit;fillColor=#000000;fillOpacity=3;fontColor=#999999;fontSize=14;fontStyle=1;align=left;spacingLeft=10;whiteSpace=wrap;resizeWidth=1;"); +c.geometry.relative=!0;c.vertex=!0;b.insert(c);c=new mxCell("Some default panel content here. Nulla vitae elit libero, a pharetra augue. Aenean lacinia bibendum nulla sed consectetur. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Nullam id dolor id nibh ultricies vehicula. ",new mxGeometry(0,0,600,80),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;align=left;spacingLeft=10;whiteSpace=wrap;fontSize=14;whiteSpace=wrap;resizeWidth=1;"); +c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,40);c.vertex=!0;b.insert(c);c=new mxCell("Cras justo odio",new mxGeometry(0,0,600,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;spacingLeft=10;fontSize=14;align=left;whiteSpace=wrap;resizeWidth=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,120);c.vertex=!0;b.insert(c);c=new mxCell("Dapibus ac facilisis in",new mxGeometry(0,0,600,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;spacingLeft=10;fontSize=14;align=left;whiteSpace=wrap;resizeWidth=1;"); +c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,160);c.vertex=!0;b.insert(c);c=new mxCell("Morbi leo risus",new mxGeometry(0,0,600,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;spacingLeft=10;fontSize=14;align=left;whiteSpace=wrap;resizeWidth=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,200);c.vertex=!0;b.insert(c);c=new mxCell("Porta ac consectetur ac",new mxGeometry(0,0,600,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;spacingLeft=10;fontSize=14;align=left;whiteSpace=wrap;resizeWidth=1;"); +c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,240);c.vertex=!0;b.insert(c);c=new mxCell("Vestibulum at eros",new mxGeometry(0,1,600,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.bottomButton;rSize=5;spacingLeft=10;fontSize=14;align=left;whiteSpace=wrap;resizeWidth=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,-40);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height, +"Panel (List Group)")}),this.addEntry("bootstrap table",function(){var b=new mxCell("",new mxGeometry(0,0,800,160),"html=1;shadow=0;dashed=0;shape=partialRectangle;top=0;bottom=0;right=0;left=0;strokeColor=#dddddd;fillColor=#ffffff;");b.vertex=!0;var c=new mxCell("",new mxGeometry(0,0,800,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;strokeColor=inherit;fillColor=#000000;fillOpacity=3;resizeWidth=1;");c.geometry.relative=!0;c.vertex=!0;b.insert(c);var d=new mxCell("#",new mxGeometry(0, +0,50,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.vertex=!0;c.insert(d);d=new mxCell("First Name",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;align=left;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(80,0);d.vertex=!0;c.insert(d);d=new mxCell("Last Name", +new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;align=left;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(230,0);d.vertex=!0;c.insert(d);d=new mxCell("Username",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;align=left;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset= +new mxPoint(380,0);d.vertex=!0;c.insert(d);d=new mxCell("Active",new mxGeometry(0,0,100,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;align=left;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(560,0);d.vertex=!0;c.insert(d);d=new mxCell("Boss",new mxGeometry(0,0,100,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;align=left;whiteSpace=wrap;resizeHeight=1;"); +d.geometry.relative=!0;d.geometry.offset=new mxPoint(700,0);d.vertex=!0;c.insert(d);c=new mxCell("",new mxGeometry(0,0,800,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;resizeWidth=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,40);c.vertex=!0;b.insert(c);d=new mxCell("1",new mxGeometry(0,0,50,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;whiteSpace=wrap;resizeHeight=1;"); +d.geometry.relative=!0;d.vertex=!0;c.insert(d);d=new mxCell("John",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(80,0);d.vertex=!0;c.insert(d);d=new mxCell("Boo",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;"); +d.geometry.relative=!0;d.geometry.offset=new mxPoint(230,0);d.vertex=!0;c.insert(d);d=new mxCell("johnny81",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(380,0);d.vertex=!0;c.insert(d);d=new mxCell("",new mxGeometry(0,.5,20,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.checkbox;strokeColor=#666666;fillColor=#ffffff;"); +d.geometry.relative=!0;d.geometry.offset=new mxPoint(560,-10);d.vertex=!0;c.insert(d);d=new mxCell("",new mxGeometry(0,.5,20,20),"shape=ellipse;strokeColor=#666666;html=1;fillColor=#ffffff;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(700,-10);d.vertex=!0;c.insert(d);c=new mxCell("",new mxGeometry(0,0,800,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;resizeWidth=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(0, +80);c.vertex=!0;b.insert(c);d=new mxCell("2",new mxGeometry(0,0,50,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.vertex=!0;c.insert(d);d=new mxCell("Mary",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(80,0); +d.vertex=!0;c.insert(d);d=new mxCell("Brown",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(230,0);d.vertex=!0;c.insert(d);d=new mxCell("missmary",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative= +!0;d.geometry.offset=new mxPoint(380,0);d.vertex=!0;c.insert(d);d=new mxCell("",new mxGeometry(0,.5,20,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.checkbox;strokeColor=#666666;fillColor=#ffffff;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(560,-10);d.vertex=!0;c.insert(d);d=new mxCell("",new mxGeometry(0,.5,20,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.radioButton;strokeColor=#666666;fillColor=#ffffff;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(700,-10); +d.vertex=!0;c.insert(d);c=new mxCell("",new mxGeometry(0,0,800,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;resizeWidth=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,120);c.vertex=!0;b.insert(c);d=new mxCell("3",new mxGeometry(0,0,50,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.vertex=!0;c.insert(d); +d=new mxCell("James",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(80,0);d.vertex=!0;c.insert(d);d=new mxCell("Mooray",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset= +new mxPoint(230,0);d.vertex=!0;c.insert(d);d=new mxCell("jijames",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(380,0);d.vertex=!0;c.insert(d);d=new mxCell("",new mxGeometry(0,.5,20,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=3;strokeColor=#666666;fillColor=#ffffff;");d.geometry.relative=!0;d.geometry.offset= +new mxPoint(560,-10);d.vertex=!0;c.insert(d);d=new mxCell("",new mxGeometry(0,.5,20,20),"shape=ellipse;strokeColor=#666666;fillColor=#ffffff;html=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(700,-10);d.vertex=!0;c.insert(d);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Table")}),this.addEntry("bootstrap table",function(){var b=new mxCell("",new mxGeometry(0,0,800,360),"shape=partialRectangle;right=0;left=0;strokeColor=#dddddd;fillColor=#ffffff;whiteSpace=wrap;"); +b.vertex=!0;var c=new mxCell("",new mxGeometry(0,0,800,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;strokeColor=inherit;fillColor=#000000;fillOpacity=3;resizeWidth=1;");c.geometry.relative=!0;c.vertex=!0;b.insert(c);var d=new mxCell("Name",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;align=left;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(50,0);d.vertex= +!0;c.insert(d);d=new mxCell("Double-Line\nHeader",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;align=left;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(250,0);d.vertex=!0;c.insert(d);d=new mxCell("Rating",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;align=left;whiteSpace=wrap;resizeHeight=1;"); +d.geometry.relative=!0;d.geometry.offset=new mxPoint(450,0);d.vertex=!0;c.insert(d);d=new mxCell("Signed Up",new mxGeometry(0,0,100,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;align=left;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(620,0);d.vertex=!0;c.insert(d);c=new mxCell("",new mxGeometry(1,.5,10,5),"shape=triangle;direction=south;strokeColor=none;fillColor=#000000;");c.geometry.relative= +!0;c.geometry.offset=new mxPoint(-25,-2.5);c.vertex=!0;d.insert(c);c=new mxCell("",new mxGeometry(0,0,800,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;resizeWidth=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,40);c.vertex=!0;b.insert(c);d=new mxCell("",new mxGeometry(0,.5,20,20),"shape=ellipse;strokeColor=none;fillColor=#dddddd;html=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(15,-10);d.vertex= +!0;c.insert(d);var f=new mxCell("",new mxGeometry(.5,.5,14,12),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.user;strokeColor=none;fillColor=#999999;");f.geometry.relative=!0;f.geometry.offset=new mxPoint(-7,-6);f.vertex=!0;d.insert(f);d=new mxCell("John Boo",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(50,0);d.vertex= +!0;c.insert(d);d=new mxCell("ok",new mxGeometry(0,.5,30,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=3;strokeColor=none;fillColor=#58B957;fontSize=12;fontStyle=1;fontColor=#ffffff;whiteSpace=wrap;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(250,-10);d.vertex=!0;c.insert(d);d=new mxCell("",new mxGeometry(0,.5,150,14),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rating;strokeColor=none;fillColor=#EFAC43;emptyFillColor=#dddddd;grade=3;ratingScale=5;ratingStyle=star;"); +d.geometry.relative=!0;d.geometry.offset=new mxPoint(450,-7);d.vertex=!0;c.insert(d);d=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td align="center" valign="middle" width="50%">15 Sep, 8:56 AM <font color="#dddddd">(2013)</font></td></tr></table>',new mxGeometry(0,0,160,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;overflow=fill;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset= +new mxPoint(620,0);d.vertex=!0;c.insert(d);c=new mxCell("",new mxGeometry(0,0,800,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;resizeWidth=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,80);c.vertex=!0;b.insert(c);d=new mxCell("",new mxGeometry(0,.5,20,20),"shape=ellipse;strokeColor=none;fillColor=#dddddd;html=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(15,-10);d.vertex=!0;c.insert(d);f=new mxCell("", +new mxGeometry(.5,.5,14,12),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.user;strokeColor=none;fillColor=#999999;");f.geometry.relative=!0;f.geometry.offset=new mxPoint(-7,-6);f.vertex=!0;d.insert(f);d=new mxCell("Michael Robinson",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(50,0);d.vertex=!0;c.insert(d);d=new mxCell("ok", +new mxGeometry(0,.5,30,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=3;strokeColor=none;fillColor=#58B957;fontSize=12;fontStyle=1;fontColor=#ffffff;whiteSpace=wrap;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(250,-10);d.vertex=!0;c.insert(d);d=new mxCell("",new mxGeometry(0,.5,150,14),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rating;strokeColor=none;fillColor=#EFAC43;emptyFillColor=#dddddd;grade=5;ratingScale=5;ratingStyle=star;");d.geometry.relative=!0;d.geometry.offset= +new mxPoint(450,-7);d.vertex=!0;c.insert(d);d=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td align="center" valign="middle" width="50%">15 Sep, 7:12 AM <font color="#dddddd">(2013)</font></td></tr></table>',new mxGeometry(0,0,160,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;overflow=fill;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(620,0);d.vertex= +!0;c.insert(d);c=new mxCell("",new mxGeometry(0,0,800,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;resizeWidth=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,120);c.vertex=!0;b.insert(c);d=new mxCell("",new mxGeometry(0,.5,20,20),"shape=ellipse;strokeColor=none;fillColor=#dddddd;html=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(15,-10);d.vertex=!0;c.insert(d);f=new mxCell("",new mxGeometry(.5,.5, +14,12),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.user;strokeColor=none;fillColor=#999999;");f.geometry.relative=!0;f.geometry.offset=new mxPoint(-7,-6);f.vertex=!0;d.insert(f);d=new mxCell("Alexander Robson",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(50,0);d.vertex=!0;c.insert(d);d=new mxCell("Blocked",new mxGeometry(0, +.5,70,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=3;strokeColor=none;fillColor=#999999;fontSize=12;fontStyle=1;fontColor=#ffffff;whiteSpace=wrap;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(250,-10);d.vertex=!0;c.insert(d);d=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td align="center" valign="middle" width="50%">15 Sep, 4:32 AM <font color="#dddddd">(2013)</font></td></tr></table>',new mxGeometry(0,0,160,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;overflow=fill;whiteSpace=wrap;resizeHeight=1;"); +d.geometry.relative=!0;d.geometry.offset=new mxPoint(620,0);d.vertex=!0;c.insert(d);c=new mxCell("",new mxGeometry(0,0,800,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;resizeWidth=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,160);c.vertex=!0;b.insert(c);d=new mxCell("",new mxGeometry(0,.5,20,20),"shape=ellipse;strokeColor=none;fillColor=#dddddd;html=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(15, +-10);d.vertex=!0;c.insert(d);f=new mxCell("",new mxGeometry(.5,.5,14,12),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.user;strokeColor=none;fillColor=#999999;");f.geometry.relative=!0;f.geometry.offset=new mxPoint(-7,-6);f.vertex=!0;d.insert(f);d=new mxCell("Jennifer Pinsker",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(50, +0);d.vertex=!0;c.insert(d);d=new mxCell("Blocked 24h",new mxGeometry(0,.5,90,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=3;strokeColor=none;fillColor=#999999;fontSize=12;fontStyle=1;fontColor=#ffffff;whiteSpace=wrap;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(250,-10);d.vertex=!0;c.insert(d);d=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td align="center" valign="middle" width="50%">15 Sep, 2:08 AM <font color="#dddddd">(2013)</font></td></tr></table>', +new mxGeometry(0,0,160,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;overflow=fill;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(620,0);d.vertex=!0;c.insert(d);c=new mxCell("",new mxGeometry(0,0,800,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;resizeWidth=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(0, +200);c.vertex=!0;b.insert(c);d=new mxCell("",new mxGeometry(0,.5,20,20),"shape=ellipse;strokeColor=none;fillColor=#dddddd;html=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(15,-10);d.vertex=!0;c.insert(d);f=new mxCell("",new mxGeometry(.5,.5,14,12),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.user;strokeColor=none;fillColor=#999999;");f.geometry.relative=!0;f.geometry.offset=new mxPoint(-7,-6);f.vertex=!0;d.insert(f);d=new mxCell("Bob Robson",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;"); +d.geometry.relative=!0;d.geometry.offset=new mxPoint(50,0);d.vertex=!0;c.insert(d);d=new mxCell("ok",new mxGeometry(0,.5,30,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=3;strokeColor=none;fillColor=#58B957;fontSize=12;fontStyle=1;fontColor=#ffffff;whiteSpace=wrap;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(250,-10);d.vertex=!0;c.insert(d);d=new mxCell("",new mxGeometry(0,.5,150,14),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rating;strokeColor=none;fillColor=#EFAC43;emptyFillColor=#dddddd;grade=1;ratingScale=5;ratingStyle=star;"); +d.geometry.relative=!0;d.geometry.offset=new mxPoint(450,-7);d.vertex=!0;c.insert(d);d=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td align="center" valign="middle" width="50%">15 Sep, 8:56 AM <font color="#dddddd">(2013)</font></td></tr></table>',new mxGeometry(0,0,160,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;overflow=fill;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset= +new mxPoint(620,0);d.vertex=!0;c.insert(d);c=new mxCell("",new mxGeometry(0,0,800,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;resizeWidth=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,240);c.vertex=!0;b.insert(c);d=new mxCell("",new mxGeometry(0,.5,20,20),"shape=ellipse;strokeColor=none;fillColor=#dddddd;html=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(15,-10);d.vertex=!0;c.insert(d);f=new mxCell("", +new mxGeometry(.5,.5,14,12),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.user;strokeColor=none;fillColor=#999999;");f.geometry.relative=!0;f.geometry.offset=new mxPoint(-7,-6);f.vertex=!0;d.insert(f);d=new mxCell("Michael Robinson",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(50,0);d.vertex=!0;c.insert(d);d=new mxCell("Suspect", +new mxGeometry(0,.5,70,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=3;strokeColor=none;fillColor=#55BFE0;fontSize=12;fontStyle=1;fontColor=#ffffff;whiteSpace=wrap;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(250,-10);d.vertex=!0;c.insert(d);d=new mxCell("",new mxGeometry(0,.5,150,14),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rating;strokeColor=none;fillColor=#EFAC43;emptyFillColor=#dddddd;grade=4;ratingScale=5;ratingStyle=star;");d.geometry.relative=!0;d.geometry.offset= +new mxPoint(450,-7);d.vertex=!0;c.insert(d);d=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td align="center" valign="middle" width="50%">15 Sep, 7:12 AM <font color="#dddddd">(2013)</font></td></tr></table>',new mxGeometry(0,0,160,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;overflow=fill;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(620,0);d.vertex= +!0;c.insert(d);c=new mxCell("",new mxGeometry(0,0,800,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;resizeWidth=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,280);c.vertex=!0;b.insert(c);d=new mxCell("",new mxGeometry(0,.5,20,20),"shape=ellipse;strokeColor=none;fillColor=#dddddd;html=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(15,-10);d.vertex=!0;c.insert(d);f=new mxCell("",new mxGeometry(.5,.5, +14,12),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.user;strokeColor=none;fillColor=#999999;");f.geometry.relative=!0;f.geometry.offset=new mxPoint(-7,-6);f.vertex=!0;d.insert(f);d=new mxCell("Jennifer Pinsker",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(50,0);d.vertex=!0;c.insert(d);d=new mxCell("ok",new mxGeometry(0, +.5,30,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=3;strokeColor=none;fillColor=#58B957;fontSize=12;fontStyle=1;fontColor=#ffffff;whiteSpace=wrap;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(250,-10);d.vertex=!0;c.insert(d);d=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td align="center" valign="middle" width="50%">15 Sep, 4:34 AM <font color="#dddddd">(2013)</font></td></tr></table>',new mxGeometry(0,0,160,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;overflow=fill;whiteSpace=wrap;resizeHeight=1;"); +d.geometry.relative=!0;d.geometry.offset=new mxPoint(620,0);d.vertex=!0;c.insert(d);c=new mxCell("",new mxGeometry(0,0,800,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;resizeWidth=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,320);c.vertex=!0;b.insert(c);d=new mxCell("",new mxGeometry(0,.5,20,20),"shape=ellipse;strokeColor=none;fillColor=#dddddd;html=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(15, +-10);d.vertex=!0;c.insert(d);f=new mxCell("",new mxGeometry(.5,.5,14,12),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.user;strokeColor=none;fillColor=#999999;");f.geometry.relative=!0;f.geometry.offset=new mxPoint(-7,-6);f.vertex=!0;d.insert(f);d=new mxCell("John Boo",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(50, +0);d.vertex=!0;c.insert(d);d=new mxCell("Violation",new mxGeometry(0,.5,70,20),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=3;strokeColor=none;fillColor=#DB524C;fontSize=12;fontStyle=1;fontColor=#ffffff;whiteSpace=wrap;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(250,-10);d.vertex=!0;c.insert(d);d=new mxCell("",new mxGeometry(0,.5,150,14),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rating;strokeColor=none;fillColor=#EFAC43;emptyFillColor=#dddddd;grade=2;ratingScale=5;ratingStyle=star;"); +d.geometry.relative=!0;d.geometry.offset=new mxPoint(450,-7);d.vertex=!0;c.insert(d);d=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td align="center" valign="middle" width="50%">15 Sep, 2:08 AM <font color="#dddddd">(2013)</font></td></tr></table>',new mxGeometry(0,0,160,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;overflow=fill;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset= +new mxPoint(620,0);d.vertex=!0;c.insert(d);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Table")}),this.addEntry("bootstrap table",function(){var b=new mxCell("",new mxGeometry(0,0,800,340),"shape=partialRectangle;right=0;left=0;strokeColor=#dddddd;fillColor=#ffffff;whiteSpace=wrap;");b.vertex=!0;var c=new mxCell("",new mxGeometry(0,0,800,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;strokeColor=inherit;fillColor=#000000;fillOpacity=3;resizeWidth=1;"); +c.geometry.relative=!0;c.vertex=!0;b.insert(c);var d=new mxCell("Admin Name",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;align=left;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(10,0);d.vertex=!0;c.insert(d);d=new mxCell("Object",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;align=left;whiteSpace=wrap;resizeHeight=1;"); +d.geometry.relative=!0;d.geometry.offset=new mxPoint(200,0);d.vertex=!0;c.insert(d);d=new mxCell("Action",new mxGeometry(0,0,150,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;align=left;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(400,0);d.vertex=!0;c.insert(d);d=new mxCell("Date",new mxGeometry(0,0,100,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;align=left;whiteSpace=wrap;resizeHeight=1;"); +d.geometry.relative=!0;d.geometry.offset=new mxPoint(620,0);d.vertex=!0;c.insert(d);d=new mxCell("",new mxGeometry(0,.5,10,5),"shape=triangle;direction=south;strokeColor=none;fillColor=#000000;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(665,-2.5);d.vertex=!0;c.insert(d);c=new mxCell("",new mxGeometry(0,0,800,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;resizeWidth=1;");c.geometry.relative=!0;c.geometry.offset= +new mxPoint(0,40);c.vertex=!0;b.insert(c);d=new mxCell("Jennifer Pinsker\n",new mxGeometry(0,0,150,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(10,0);d.vertex=!0;c.insert(d);d=new mxCell("",new mxGeometry(0,.5,20,20),"shape=ellipse;strokeColor=none;fillColor=#dddddd;html=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(200,-15);d.vertex= +!0;c.insert(d);var f=new mxCell("",new mxGeometry(.5,.5,14,12),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.user;strokeColor=none;fillColor=#999999;");f.geometry.relative=!0;f.geometry.offset=new mxPoint(-7,-6);f.vertex=!0;d.insert(f);d=new mxCell("John Boo\n",new mxGeometry(0,0,150,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(230,0);d.vertex= +!0;c.insert(d);d=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td align="left" valign="middle" width="50%">Profile Updated<br/><font color="#dddddd">First Name is set to Bobby</font></td></tr></table>',new mxGeometry(0,0,210,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;overflow=fill;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(400,0);d.vertex=!0; +c.insert(d);d=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td align="center" valign="middle" width="50%">15 Sep, 8:56 AM <font color="#dddddd">(2013)<br><br></font></td></tr></table>',new mxGeometry(0,0,160,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;overflow=fill;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(620,0);d.vertex=!0;c.insert(d);c=new mxCell("", +new mxGeometry(0,0,800,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;resizeWidth=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,90);c.vertex=!0;b.insert(c);d=new mxCell("Bob Robson\n",new mxGeometry(0,0,150,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(10, +0);d.vertex=!0;c.insert(d);d=new mxCell("",new mxGeometry(0,.5,20,20),"shape=ellipse;strokeColor=none;fillColor=#dddddd;html=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(200,-15);d.vertex=!0;c.insert(d);f=new mxCell("",new mxGeometry(.5,.5,14,12),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.user;strokeColor=none;fillColor=#999999;");f.geometry.relative=!0;f.geometry.offset=new mxPoint(-7,-6);f.vertex=!0;d.insert(f);d=new mxCell("Michael Robinson\n",new mxGeometry(0,0,150,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;"); +d.geometry.relative=!0;d.geometry.offset=new mxPoint(230,0);d.vertex=!0;c.insert(d);d=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td align="left" valign="middle" width="50%">Violation Resolved<br/><font color="#dddddd">Fake Person Violation resolved</font></td></tr></table>',new mxGeometry(0,0,210,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;overflow=fill;whiteSpace=wrap;resizeHeight=1;"); +d.geometry.relative=!0;d.geometry.offset=new mxPoint(400,0);d.vertex=!0;c.insert(d);d=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td align="center" valign="middle" width="50%">15 Sep, 7:12 AM <font color="#dddddd">(2013)<br><br></font></td></tr></table>',new mxGeometry(0,0,160,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;overflow=fill;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative= +!0;d.geometry.offset=new mxPoint(620,0);d.vertex=!0;c.insert(d);c=new mxCell("",new mxGeometry(0,0,800,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;resizeWidth=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,140);c.vertex=!0;b.insert(c);d=new mxCell("Michael Robinson\n",new mxGeometry(0,0,150,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;"); +d.geometry.relative=!0;d.geometry.offset=new mxPoint(10,0);d.vertex=!0;c.insert(d);d=new mxCell("",new mxGeometry(0,.5,20,20),"shape=ellipse;strokeColor=none;fillColor=#dddddd;html=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(200,-15);d.vertex=!0;c.insert(d);f=new mxCell("",new mxGeometry(.5,.5,14,12),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.user;strokeColor=none;fillColor=#999999;");f.geometry.relative=!0;f.geometry.offset=new mxPoint(-7,-6);f.vertex=!0;d.insert(f);d=new mxCell("Alexander Robson\n", +new mxGeometry(0,0,150,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1");d.geometry.relative=!0;d.geometry.offset=new mxPoint(230,0);d.vertex=!0;c.insert(d);d=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td align="left" valign="middle" width="50%">Suspect Resolved<br/><font color="#dddddd">Mass Friending Suspect resolved</font></td></tr></table>',new mxGeometry(0, +0,210,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;overflow=fill;whiteSpace=wrap;resizeWidth=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(400,0);d.vertex=!0;c.insert(d);d=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td align="center" valign="middle" width="50%">15 Sep, 4:34 AM <font color="#dddddd">(2013)<br><br></font></td></tr></table>',new mxGeometry(0,0,160,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;overflow=fill;whiteSpace=wrap;resizeHeight=1;"); +d.geometry.relative=!0;d.geometry.offset=new mxPoint(620,0);d.vertex=!0;c.insert(d);c=new mxCell("",new mxGeometry(0,0,800,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;resizeWidth=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,190);c.vertex=!0;b.insert(c);d=new mxCell("Jennifer Pinsker\n",new mxGeometry(0,0,150,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;"); +d.geometry.relative=!0;d.geometry.offset=new mxPoint(10,0);d.vertex=!0;c.insert(d);d=new mxCell("",new mxGeometry(0,.5,20,20),"shape=ellipse;strokeColor=none;fillColor=#dddddd;html=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(200,-15);d.vertex=!0;c.insert(d);f=new mxCell("",new mxGeometry(.5,.5,14,12),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.user;strokeColor=none;fillColor=#999999;");f.geometry.relative=!0;f.geometry.offset=new mxPoint(-7,-6);f.vertex=!0;d.insert(f);d=new mxCell("Jennifer Pinsker\n", +new mxGeometry(0,0,150,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(230,0);d.vertex=!0;c.insert(d);d=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td align="left" valign="middle" width="50%">Profile Violation Detected<br/><font color="#dddddd">First Name is marked as Violation</font></td></tr></table>', +new mxGeometry(0,0,210,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;overflow=fill;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(400,0);d.vertex=!0;c.insert(d);d=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td align="center" valign="middle" width="50%">15 Sep, 2:08 AM <font color="#dddddd">(2013)<br><br></font></td></tr></table>',new mxGeometry(0, +0,160,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;overflow=fill;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(620,0);d.vertex=!0;c.insert(d);c=new mxCell("",new mxGeometry(0,0,800,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;resizeWidth=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,240);c.vertex=!0; +b.insert(c);d=new mxCell("John Boo\n",new mxGeometry(0,0,150,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(10,0);d.vertex=!0;c.insert(d);d=new mxCell("",new mxGeometry(0,.5,20,20),"shape=ellipse;strokeColor=none;fillColor=#dddddd;html=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(200,-15);d.vertex=!0;c.insert(d);f=new mxCell("",new mxGeometry(.5, +.5,14,12),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.user;strokeColor=none;fillColor=#999999;");f.geometry.relative=!0;f.geometry.offset=new mxPoint(-7,-6);f.vertex=!0;d.insert(f);d=new mxCell("Bob Robson\n",new mxGeometry(0,0,150,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(230,0);d.vertex=!0;c.insert(d);d=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td align="left" valign="middle" width="50%">Profile Updated<br/><font color="#dddddd">First Name is set to Bobby</font></td></tr></table>', +new mxGeometry(0,0,210,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;overflow=fill;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(400,0);d.vertex=!0;c.insert(d);d=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td align="center" valign="middle" width="50%">15 Sep, 8:56 AM <font color="#dddddd">(2013)<br><br></font></td></tr></table>',new mxGeometry(0, +0,160,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;overflow=fill;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(620,0);d.vertex=!0;c.insert(d);c=new mxCell("",new mxGeometry(0,0,800,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;resizeWidth=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,290);c.vertex=!0; +b.insert(c);d=new mxCell("Michael Robinson\n",new mxGeometry(0,0,150,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(10,0);d.vertex=!0;c.insert(d);d=new mxCell("",new mxGeometry(0,.5,20,20),"shape=ellipse;strokeColor=none;fillColor=#dddddd;html=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(200,-15);d.vertex=!0;c.insert(d);f=new mxCell("", +new mxGeometry(.5,.5,14,12),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.user;strokeColor=none;fillColor=#999999;");f.geometry.relative=!0;f.geometry.offset=new mxPoint(-7,-6);f.vertex=!0;d.insert(f);d=new mxCell("Michael Robinson\n",new mxGeometry(0,0,150,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(230,0);d.vertex=!0;c.insert(d);d=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td align="left" valign="middle" width="50%">User Blocked<br/><font color="#dddddd">Blocked for 24 hours</font></td></tr></table>', +new mxGeometry(0,0,210,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;overflow=fill;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(400,0);d.vertex=!0;c.insert(d);d=new mxCell('<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td align="center" valign="middle" width="50%">15 Sep, 7:12 AM <font color="#dddddd">(2013)<br><br></font></td></tr></table>',new mxGeometry(0, +0,160,50),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;align=left;overflow=fill;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(620,0);d.vertex=!0;c.insert(d);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Table")}),this.addEntry("bootstrap table",function(){var b=new mxCell("",new mxGeometry(0,0,800,430),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;strokeColor=#dddddd;fillColor=#ffffff;"); +b.vertex=!0;var c=new mxCell("",new mxGeometry(0,0,800,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;strokeColor=inherit;fillColor=#000000;fillOpacity=3;resizeWidth=1;");c.geometry.relative=!0;c.vertex=!0;b.insert(c);var d=new mxCell("Template Name",new mxGeometry(0,0,200,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;align=left;spacingLeft=10;whiteSpace=wrap;resizeHeight=1;");d.geometry.relative=!0;d.vertex=!0;c.insert(d); +d=new mxCell("Message",new mxGeometry(0,0,200,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;fontSize=14;fontStyle=1;align=left;spacingLeft=10;whiteSpace=wrap;resizeWidth=1;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(200,0);d.vertex=!0;c.insert(d);c=new mxCell("",new mxGeometry(0,0,800,130),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;resizeWidth=1;");c.geometry.relative= +!0;c.geometry.offset=new mxPoint(0,40);c.vertex=!0;b.insert(c);d=new mxCell("Uncompleted Profile",new mxGeometry(0,0,200,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;align=left;spacingLeft=10;whiteSpace=wrap;");d.geometry.relative=!0;d.vertex=!0;c.insert(d);d=new mxCell("Hello! At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium deleniti atque corrupti quos doloreset quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id estlaborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Name libero tempore, cum soluta nobis est eligendioptio cumque nihil impedit quo.", +new mxGeometry(0,0,400,130),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;align=left;valign=top;spacingLeft=10;verticalAlign=top;spacingTop=6;whiteSpace=wrap;resizeWidth=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(200,0);d.vertex=!0;c.insert(d);d=new mxCell("Edit",new mxGeometry(1,0,50,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;fillColor=#ffffff;whiteSpace=wrap;");d.geometry.relative=!0;d.geometry.offset= +new mxPoint(-140,15);d.vertex=!0;c.insert(d);d=new mxCell("Delete",new mxGeometry(1,0,60,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;fillColor=#ffffff;whiteSpace=wrap;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(-80,15);d.vertex=!0;c.insert(d);c=new mxCell("",new mxGeometry(0,0,800,100),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;resizeWidth=1;");c.geometry.relative=!0; +c.geometry.offset=new mxPoint(0,170);c.vertex=!0;b.insert(c);d=new mxCell("Spam Suspect",new mxGeometry(0,0,200,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;align=left;spacingLeft=10;whiteSpace=wrap;");d.geometry.relative=!0;d.vertex=!0;c.insert(d);d=new mxCell("Hello, deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa quiofficia deserunt mollitia animi, id est fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam nobis est eligendi optio cumquenihil impedit quo minus id quod maxime placeat.", +new mxGeometry(0,0,400,100),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;align=left;valign=top;spacingLeft=10;verticalAlign=top;spacingTop=6;whiteSpace=wrap;resizeWidth=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(200,0);d.vertex=!0;c.insert(d);d=new mxCell("Edit",new mxGeometry(1,0,50,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;fillColor=#ffffff;whiteSpace=wrap;");d.geometry.relative=!0;d.geometry.offset= +new mxPoint(-140,15);d.vertex=!0;c.insert(d);d=new mxCell("Delete",new mxGeometry(1,0,60,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;fillColor=#ffffff;whiteSpace=wrap;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(-80,15);d.vertex=!0;c.insert(d);c=new mxCell("",new mxGeometry(0,0,800,160),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;resizeWidth=1;");c.geometry.relative=!0; +c.geometry.offset=new mxPoint(0,270);c.vertex=!0;b.insert(c);d=new mxCell("Profile Blocked",new mxGeometry(0,0,200,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;align=left;spacingLeft=10;whiteSpace=wrap;");d.vertex=!0;c.insert(d);d=new mxCell("Hello! Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsaquae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sitaspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est,qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et doloremagnam aliquam quaerat voluptarem.", +new mxGeometry(0,0,400,160),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rect;strokeColor=none;fillColor=none;align=left;valign=top;spacingLeft=10;verticalAlign=top;spacingTop=6;whiteSpace=wrap;resizeWidth=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(200,0);d.vertex=!0;c.insert(d);d=new mxCell("Edit",new mxGeometry(1,0,50,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;fillColor=#ffffff;whiteSpace=wrap;");d.geometry.relative=!0;d.geometry.offset= +new mxPoint(-140,15);d.vertex=!0;c.insert(d);d=new mxCell("Delete",new mxGeometry(1,0,60,30),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;fillColor=#ffffff;whiteSpace=wrap;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(-80,15);d.vertex=!0;c.insert(d);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Table")}),this.addEntry("bootstrap table",function(){var b=new mxCell("",new mxGeometry(0,0,800,80),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.horLines;strokeColor=#dddddd;fillColor=#fdfdfd;"); +b.vertex=!0;var c=new mxCell("Group Name",new mxGeometry(20,20,500,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#dddddd;fillColor=#ffffff;align=left;spacingLeft=10;fontSize=18;fontColor=#999999;whiteSpace=wrap;");c.vertex=!0;b.insert(c);c=new mxCell("Create Templates Group",new mxGeometry(540,20,240,40),"html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=none;fillColor=#3D8BCD;fontSize=18;fontColor=#ffffff;whiteSpace=wrap;");c.vertex=!0;b.insert(c); +return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Table")}),this.addDataEntry("bootstrap edit template",800,720,"Edit Template","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"), this.addDataEntry("bootstrap business contact",800,270,"Business Contacts","7VnRbtowFP2aSNtDke0kBB4HlD6s1Sox7d0Qh1g4GDlugX39rpNAAw6MiSRlW4MQ8Y3t2Of4+lxfHHeYbB4UXcVPMmTCce8dd6ik1PldshkyIRyCeOi4I4cQBF+HjE88xdlTtKKKLfUlDUje4JWKF5ZbckOqt6IwxDqBYY2w4w7SmIZyDQUEhZCmMQuLAjxZmfrJZm7m0pnCDFINt51Yqke+ZKmppJVcsKEUUmVdu2F2wZOIC1GyR6H5gL0YHVOabU7OMDMV03tgMmFabaHKmoc6zmv0UI4Cihmfx0Uzv7DRNC/P903f8IKbArJq+FwLPlOMOBNhalBkgs00gFQzprOYzRZTubkY06VcQk8DKvh8CUXBIgBhIOiUiWeZcs2lMascnEG6ojO+nD9mtUbYjCWSSz0pxo8vJYZUE7MtFmbHz5uUiMKezdPOppigmr+yg9dVkVe88VlyGAhBu/EVXBVvvwsOO5BRlDJtcb8f9kXLwbOWwxNVi/wtBH37Wvc6UAqWF9RQE/7T1PDPLogKP8susK9jrtkEaDe9rKHr5ijuV7iii+qheOfSO46x3wDJ/lmSf3Bp5gD+9ME1waQ5skkrZHdPkp1V+9/8+rDBOearFLcm5u8wboP6wKL+OTYyWjfXOdWH9BZ6XSHhRohLTPezy5b2Qwn3r1kKJ8KrooF3SEWALlsKpIbgq2cR1GactUf+lO/VAO5RzIKR+0cR0zXg9ivAHbgAOfqEut3P8NsLwOtQF9wE9YN32QF/S8GRU2RBbN4f7lbHue14Sd/2kq5X4SVeDV6y2ytLTMpFU3TtAJ8BLkyV+HMv2eKAOr836PvBEVek4gBytA9er3jnCQzQIYP7Ta1EodvQPoexxeDgJTVnahN9sIRy8SFK59wNey2qEm4+pXJrshS0J0vYzrikTDoeoquVYJ2ZTG5Kicajce/eu2Elwt02pcjOj3yXUDaZT0V1/aF1Xap0P/4y9Ny/QJUqwu+qfEst+5ydB5kstquP89FZf9uHY61IkZ29aHp3tD3qfTSJeC1qkp0poIJtOkpOp9ubkqObPxjtY+hW5MhOIDR3Mio7iKVH/9LJiFQE2zWdjKD49s9ontEr/3H6Cw=="), this.addDataEntry("bootstrap experience",800,270,"Experience","7Vpdc6IwFP01PLYTCGh9Vbt9aWc7687sM5UomQbihFh1f/3e8GGFRBdbwH5Apw5ckpCcc8+98YqFJ9H2Tvir8IEHhFn41sITwbnMzqLthDBmOYgGFp5ajoPg33J+HLlrp3fRyhcklnU6OFmHF5+tSWbJDIncsdwQygimNbUtPE5CP+AbuEBwEfhJSIL8Au6sVPtou1RruX6CFSQSTq9DLu5pTBLVSAr+TCaccZEOjYP0gDsLytiBfRGoP7DnsyNCku3RFaamfHl3hEdEih002dBAhlmLG5ShgEJCl2HezcttfpJdL/ddX/GCkxwyM3xYg29GGJlLsC0oYUECJ5LDx3oV+JKkwPpynTQNshDqoXgsZvSvaoHPQjs9wO4zuozBxshCDcb8J8IeeUIl5cosMuzGycqf03h5n7aa2mpmCx7LWb4auy5vjpm3Xe63117W5YBH29VpLGyCMF/SF1J6nInb/ImPnMaKp2J+OZX506+G5QH4YpEQqbnGftq1vMXVvGWPbtP+kLlD2QViHpMK+4UJ6DtwiFF66A5RJt4DyyakkszArKaxgSe/U7N5BxeVyBgi3RNMinYaULTXekCspdU9Bce02gDKFZe3ET5LcO9BeWCImzGFRTroNl5CuiCibdi9N8FeUUQa97Lx7IE5NHYjkZEukYFrkIjbgESGGnn8uQuRFNjPASLwjxrhDZjzbsYjb1ihyjGkrEoM3DPeEn9DVCZwH9AOGMQtxbgbjcAJj1Z+vOvT0CmN2W6HeWj0SfJQS9BXc9Owu9xkIw363yRhPpgeuOSi9c3718pM9qDD1GTbfW5qITcZNuBt5SZbr0j84eIZXFd9pxY86nPUKbXto1cXOcrWyx8fM0k1n5Act8OEpNcNfs4lf+q/I52pDWzQhimONZKJahQSCiKkoH68VNZxQBUFWb0t4Ws1zSrOKD2OhawVERQmSw5Mb0fXPS2JErrGep2p7Go1Ua67wmVur3B5hEbqdbZepnBQscXoVXfMLUaXlJ1enPh8sht8c9np9YnXLaD6NaXfAJaS3CV3gHqZYrIW6dSBKlDEhckqSKn8dPUrR8HT+fS8CbptMTp6NxekqxijTnRkNEUwQ/pPPjnnJG0NwIOrezZDzc1UPGgEHb14MCVzEvUb7bNjUJcpv/DhD5Dya0H5v+3TV0/vhpcmYFfdeuXgk0vM8y4pMb0C8bElhr+5xPTiQ18Gf3cZ3LQXaagMDpev7/xlhB++EvgP"), this.addDataEntry("bootstrap skills",800,480,"Skills","7Zpbc6IwFMc/DY/tEAJeHtdbH7ad7Yw70+e0HCRjJE6I1e6n3wSi1Sa1WoV1R+jYIYfcOP+cH+Soh/uz1Z0g8/SBx8A8PPRwX3Auy7PZqg+MeYFPYw8PvCDw1ccLRp9cRcVVf04EZPKQBkHZ4JWwBZSW0pDLN2YMqZypaQ2Qh3t5SmK+VAVfFWKSpxCbgroy1/Vnq4m+l9tndQe5VKe3KRf3NINcV5KCT6HPGRdF1zguDnUloYxt2ZNY/ym7mR0ICatP77Awmdu7Az4DKd5UlSWNZVrW6PilF/wU6CQ1zSJjI3lZnmyavvtLnRiXud2HLfeNgcGLVLaEAotzdSK5+reYx0RC4VgiF/m5nSyEHhT3xJj+0TXwUd4uDmUnjE4yZWOQ6M4YeQb2yHMqKddmUfqul8/JC80m90WtAdIzS3gmx+Zu0KG6BW7d3sy6vY3KJls6otCWcW0TwIikr7AznEtbM+Ijp5nWaT0/I6UZ/aa92wFPkhyktTQ20z5otYTWankgYqpHKaoRvVp+/ax6bUTfisRlSiWMlfK6i6Xq90SVdxvs09wVu9g/i+g3yOBxIzuKKtA9qhyyB8V/tzj2xP8ptHWHEfLxUUF8CotblpeH2UQ9eUAoWP2ToPrS4R+AW1C07A+13KD9dhjuly3cDYOub6nWCh1hGJ7hEdq2ZOPTqtRa+/tFuQXE3njJeAa2clGn143aH6QKHA9AXXYpXpF+bX9XwA00txTEDgGDMwjYuV66teujW9fy8u+UZtNLQ9toMOoMwwtGG2rVyDbk26rp3YDe6oliP3ChnBuOfvRD/B9wrm2r2a2IcwhdLeiCsD7QITsl8cTFxYHu4t/hNs/7WkBnJ0Kat7iT6baRpoa3OGQnJ66FbhjVSDc7FzBmAPMGb0fiDTt2ONXhzc4tNHg7GW8Y1Yg3O81wNXjr1Ig3OxkwJLKB27Fwc2xrqoObnVpo4HY63Dr1wS2w0wzXArcwqg9ugZ0AeCKs2ZkeS7fQsa2pjG7rUGjodk66hVFldFPF95+/lF+2bv865i8="), this.addDataEntry("bootstrap chat",400,660,"Chat","7VpRc+I2EP4tfWD6BCPbmCOPCSTX6TTTm+ShzwIvWHOy5ZNkQvrru5JlDrDvoI2VGKZmQqy1JMv77bf+tMMgmmXbz5IW6aNIgA+i+0E0k0Lo6izbzoDzQUhYMojmgzAk+DcIH35wNbBXSUEl5PqcAWE1YEN5CZWlMij9yp0h1Rkuax4MojuV0kS8YINgI6EqhcQ18Eph+mfbtXmW0QKfQGk8HUlYatNBS/EVZoILaaeNqgOvrBjne/aVPdD+kjINzwVdmnlfcCq0udWC1LD94RNbk3vczyAy0PIVu7ywRKdVjzGpvEJSYOvUDZtMnJGqyrDejf3uQDxxPmz3Z9Q7f+7sbf6UoNjf8JfzTHCuh8P/5uHY2SRwqtkGDuZ/i9fHDa//LtIcLXdCNPxfuxanYIWChi9zkUNLWBLzQTunC+BfhGKaiRyvyer57ihna9PmsLL4oKNZvv7DtuaBGbkSuW6bcS8gzvJ+1O79V8f3UVwN2UMjagEj+rdguDt+EQwXEpJ6fe5u7u7Dul3PIFYrBboB5m7dZ+Ebe2dVqUCeGQk39jgXrHE7WNsjsH4CXtgCXtgNeMOAHKFHPKA3aaD3yJYpBdPnSSxYrpBInlnqWFmTtCatY+mT8+x70PRwwMeQdjh+D9Z+ulzWTv5n7bSBngkS8gyFhmyBfg9JSIKoc3nj9I18RmGCPeJzmZ+YT5O+O9w/Xv68lbwO7k8+uHrTQPs3hu2M5r/0BeF78kDmk5NKK37L1uE0stMWYMfd8Do8pHUQ+QC6zhV7SE8H0W2Mjr0NUKyQ28fOAW/bsbRgXJsOCZzYw9ldyNj39FEYeMQ8aGNzR8n8GHQv7A6CJr2xB+6NiE5Bwmg06gvL5zf384fpGVLNB88PB5yKgI5oPwyOY+DGSww0Sz0XTvw6Mj42CjoTdUdREPpJ/80C1bxkytym1GA65qU0/xMLhGnbZyskpJAnIJmujRvBy0JTO2oD3F4ApUxzyTgrs3oWY4ESv1blmlHTLS85pxUYaChlb7LPCY3xDvpil1X2Y2zq5V0Txl4irFmMu/A8c1UCI/KTVpoVuiegnOPwB9xAkBnNfzVrWmCegA1Y3WEywaxne4xT6uPdhUfoU3g0YsNPQmjW/y48IVy38Ij8yM9mNfA2T4wy2IBREzk1eoGzBUi7LYGssMrBZIil1RIK9YY2qiEXC6tYQFnJgaCgMjHVClFoJqr+30qTZHKWMruIrIDECpRvpemQocpR1eKsKbFpaMsyM6jgCKiVKSs8seqlEEqxzAwxyxFZbu/vBJCiSpUZLoHWa9rvZBVQb/JbT/XNLr67fdeNvZS1g2Zl9MLz2VUJnNgP6M0C6Z9fcdtC5ihzekPv3skXj9XS4S6mauC9KNvw6uql161eYi8F1LClgFqm/amavuG97jHrT/yx/xh1L5o1vLqS6VW96SddJHxsfv+1ZdV9/8eY/wA="), this.addDataEntry("bootstrap log in",240,220,"Log in","7ZhLj9owEIB/TY4gJ04CHAtst5W2EupW6tmQgVjrxMjx8uiv7zgxgZAAUZVsD60RUmbs8WO+mbESh86Sw7Ni2/ibjEA49MmhMyWlLp6SwwyEcDzCI4fOHc8j+He8zzd63byXbJmCVLcx8AqDHRPvUGhmMtVKmjELluKG8v5MH4Xtj3WCu5y7Dp1mMYvkHgWCQsSyGCIrYM/WjE8OG3O04RIPlGl8HCoFK9zZdM2FmEkhVT4rXecN9UzwTYq6FR4AsHOqXvkvM1VgpsWdvcGFGckb9uxAab5i4pM113Jrxm/ZiqebH0aYe2bcGk9nJ3T9k2wPZ460j7mGVzQzij1uGHXWRbgCHG66OVdZHz+DTECrIw7Z80jH1tV+gYLEwDexNTvxISwrFJvS9kwNHyy4Zoi0BvEpYbw3dHeJTPJ2B3ATgYtxUd4uAkHAWp9RvuTS3Cc3WCnIcO6f1utuW3reQ3rupIEetToFgmm+g8r8TUTtEgvJcWWPHKrTHAsxvAoJuV5noGsBUe6zVYz4tRjpOjwMqOm71jL94xiJzK+k+OXk6dYY6UOMtAuKbfMy6N3neZo3eLj05JWHS88XFmWeDGlbF/vNLrYGZBhUQrmULzMprCNwvU4SaTCurD4Ie0iksAZ1wbJsL1X00Vdlyxz7X28f1FuX9FFwR/9CwQ0/puBeYeyU07h3TttTfbhHplqQW5fjUT/lOOylHI97SLNJDd93SCBZ4ruDRxLomuUqhtXbUh4uMo42cQ3zdqd4C7YEsZAZ19zk71wV3r9fhoOrek46rLd+Qxj4nYTBiFbLrd9HHLikFggvcoOKr2lf9/LtkpvKFOrsg/F0EozqV/DdV6NHL6fdXsDHisHfuY4HQQfXMYrnjyjF8MtvLL8B"), this.addDataEntry("bootstrap log in",240,260,"Log in","7Vhtb5swEP41fJnUyJiXJB+b0HaVOilaJ+2zAw54NTgzbl7263cGE0ghadRCVWmjqorPd+Z8z/OcC5YzT3d3kqyTbyKi3HJuLGcuhVDlXbqbU84tjFhkOYGFMYJfC9+emLWLWbQmkmbqkgBcBmwIf6alZS4yJYX2WZAMEirmc7XnZj5RKWQZ2JYzyxMSiS0MEAwikic0MgOYWWv/dBfrrY2WsKFcwe1IShpCZrMV43wuuJDFqs6quMBOOIszsIWwAQqTM/nI/uilPL0sZPZEG2GouGBmQ6ViIeHXJlyJtfZfk5Bl8Q89CLD2W8HuzIK2W43N5vSWtglT9BHCtGELCYPNlAieQHcny1yYTI3vqEipkntw2bJIJabUbgkFSiiLExOGfWMkeWmID7E1anBjgOsG0WmBaGGf6yorsoStYRRCwJpEERSjcPB/P2uGzVB9a7xMyc541VyojGaT1zZAgTVO1Q5rS3MFPzZ/yxRlyxLpehgg60DDiGYqm7ZXyqJIb7nhVWNQGb0iq1ZK91koSn5q1ZTJLKvJm5QwXlkBkWWdNgI6dkQsSJ5vhYy6gw42vd22sVUVbSzRrOzDCPO03jKR0bZyb3FwE9waKTXswczD7hzsApSz4kU6OvSEyCTN4bk/DVT2pbLDr8rOnnbIrpKipJwotqFH63dJ0TxiIVim2WEScswy+3LovdCyWK1yqlpKPuR5kbjdlrh/iSSzXBRrQo5CkX48EwDeaXF1NPJI/3R02kqqnK5U3ZofilHgok9BC2cQWhRNsHdeeB1Nv18eaKRmz0qJ7M1kqE71EsavVakvxtF9FUenDxgvPWj9wWteHDIdFa5ldVzhQ+XLiINQRs6lJfa6S2wC0Mg74vJh3JSS34bAxr0o6Wpy9PQrfwAhjVugfjHX/8b6yRurO0RjnfwLjXX8uRrrdPCar6t/xs9V+biJXtxCJ8O0UH+QFjoZQDI2auH3naY0Xer3NZTSvsEMExo+LcWuIR+nC1i/uM7Ih5Ml5QuRM8W0GANZlv98T/VeNGH0zua5PwpossLtYIXbCyvGzjErxngIWtgtWjyIGAz32ccfrd1vr95kNvXG7bfXA0Pe8sGo37P1ND0+7qS96uPVFob1h83Svfnd8y8=")]; -this.addPalette("bootstrap",mxResources.get("bootstrap"),!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))}})();(function(){var a=Sidebar.prototype.addBpmnPalette;Sidebar.prototype.addBpmnPalette=function(d,e){a.apply(this,arguments);var b="shape=mxgraph.bpmn.shape;html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;align=center;perimeter=rhombusPerimeter;background=gateway;outlineConnect=0;",c="bpmn business process model gateway ";this.addPaletteFunctions("bpmnGateways","BPMN Gateways",!1,[this.createVertexTemplateEntry(b+"outline=none;symbol=exclusiveGw;",50,50,"","Exclusive Gateway", -null,null,c+"exclusive"),this.createVertexTemplateEntry(b+"outline=none;symbol=parallelGw;",50,50,"","Parallel Gateway",null,null,c+"parallel"),this.createVertexTemplateEntry(b+"outline=end;symbol=general;",50,50,"","Inclusive Gateway",null,null,c+"inclusive"),this.createVertexTemplateEntry(b+"outline=none;symbol=complexGw;",50,50,"","Complex Gateway",null,null,c+"complex"),this.createVertexTemplateEntry(b+"outline=standard;symbol=general;",50,50,"","General Start Gateway",null,null,c+"general start"), -this.createVertexTemplateEntry(b+"outline=throwing;symbol=general;",50,50,"","General Intermediate Gateway",null,null,c+"general intermediate"),this.createVertexTemplateEntry(b+"outline=end;symbol=general;",50,50,"","General End Gateway",null,null,c+"general end"),this.createVertexTemplateEntry(b+"outline=standard;symbol=message;",50,50,"","Message Standard Gateway",null,null,c+"message standard"),this.createVertexTemplateEntry(b+"outline=eventInt;symbol=message;",50,50,"","Message Interrupting Gateway", -null,null,c+"message interrupting"),this.createVertexTemplateEntry(b+"outline=eventNonint;symbol=message;",50,50,"","Message Non-Interrupting Gateway",null,null,c+"message non interrupting noninterrupting"),this.createVertexTemplateEntry(b+"outline=catching;symbol=message;",50,50,"","Message Catching Gateway",null,null,c+"message catching"),this.createVertexTemplateEntry(b+"outline=boundInt;symbol=message;",50,50,"","Message Boundary Interrupting Gateway",null,null,c+"message boundary interrupting"), -this.createVertexTemplateEntry(b+"outline=boundNonint;symbol=message;",50,50,"","Message Boundary Non-Interrupting Gateway",null,null,c+"message boundary non interrupting noninterrupting"),this.createVertexTemplateEntry(b+"outline=throwing;symbol=message;",50,50,"","Message Throwing Gateway",null,null,c+"message throwing"),this.createVertexTemplateEntry(b+"outline=end;symbol=message;",50,50,"","Message End Gateway",null,null,c+"message end"),this.createVertexTemplateEntry(b+"outline=standard;symbol=timer;", -50,50,"","Timer Standard Gateway",null,null,c+"timer standard"),this.createVertexTemplateEntry(b+"outline=eventInt;symbol=timer;",50,50,"","Timer Interrupting Gateway",null,null,c+"timer interrupting"),this.createVertexTemplateEntry(b+"outline=eventNonint;symbol=timer;",50,50,"","Timer Non-Interrupting Gateway",null,null,c+"timer non interrupting noninterrupting"),this.createVertexTemplateEntry(b+"outline=catching;symbol=timer;",50,50,"","Timer Catching Gateway",null,null,c+"timer catching"),this.createVertexTemplateEntry(b+ -"outline=boundInt;symbol=timer;",50,50,"","Timer Boundary Interrupting Gateway",null,null,c+"timer boundary interrupting"),this.createVertexTemplateEntry(b+"outline=boundNonint;symbol=timer;",50,50,"","Timer Boundary Non-Interrupting Gateway",null,null,c+"timer boundary non interrupting noninterrupting"),this.createVertexTemplateEntry(b+"outline=eventInt;symbol=escalation;",50,50,"","Escalation Interrupting Gateway",null,null,c+"escalation interrupting"),this.createVertexTemplateEntry(b+"outline=eventNonint;symbol=escalation;", -50,50,"","Escalation Non-Interrupting Gateway",null,null,c+"escalation non interrupting noninterrupting"),this.createVertexTemplateEntry(b+"outline=boundInt;symbol=escalation;",50,50,"","Escalation Boundary Interrupting Gateway",null,null,c+"escalation boundary interrupting"),this.createVertexTemplateEntry(b+"outline=boundNonint;symbol=escalation;",50,50,"","Escalation Boundary Non-Interrupting Gateway",null,null,c+"escalation boundary non interrupting noninterrupting"),this.createVertexTemplateEntry(b+ -"outline=throwing;symbol=escalation;",50,50,"","Escalation Throwing Gateway",null,null,c+"escalation throwing"),this.createVertexTemplateEntry(b+"outline=end;symbol=escalation;",50,50,"","Escalation End Gateway",null,null,c+"escalation end"),this.createVertexTemplateEntry(b+"outline=standard;symbol=conditional;",50,50,"","Conditional Standard Gateway",null,null,c+"conditional standard"),this.createVertexTemplateEntry(b+"outline=eventInt;symbol=conditional;",50,50,"","Conditional Interrupting Gateway", -null,null,c+"conditional interrupting"),this.createVertexTemplateEntry(b+"outline=eventNonint;symbol=conditional;",50,50,"","Conditional Non-Interrupting Gateway",null,null,c+"conditional non interrupting noninterrupting"),this.createVertexTemplateEntry(b+"outline=catching;symbol=conditional;",50,50,"","Conditional Catching Gateway",null,null,c+"conditional catching"),this.createVertexTemplateEntry(b+"outline=boundInt;symbol=conditional;",50,50,"","Conditional Boundary Interrupting Gateway",null, -null,c+"conditional boundary interrupting"),this.createVertexTemplateEntry(b+"outline=boundNonint;symbol=conditional;",50,50,"","Conditional Boundary Non-Interrupting Gateway",null,null,c+"conditional boundary non interrupting noninterrupting"),this.createVertexTemplateEntry(b+"outline=catching;symbol=link;",50,50,"","Link Catching Gateway",null,null,c+"link catching"),this.createVertexTemplateEntry(b+"outline=throwing;symbol=link;",50,50,"","Link Throwing Gateway",null,null,c+"link throwing"),this.createVertexTemplateEntry(b+ -"outline=eventInt;symbol=error;",50,50,"","Error Interrupting Gateway",null,null,c+"error interrupting"),this.createVertexTemplateEntry(b+"outline=boundInt;symbol=error;",50,50,"","Error Boundary Interrupting Gateway",null,null,c+"error boundary interrupting"),this.createVertexTemplateEntry(b+"outline=end;symbol=error;",50,50,"","Error End Gateway",null,null,c+"error end"),this.createVertexTemplateEntry(b+"outline=boundInt;symbol=cancel;",50,50,"","Cancel Boundary Interrupting Gateway",null,null, -c+"cancel boundary interrupting"),this.createVertexTemplateEntry(b+"outline=end;symbol=cancel;",50,50,"","Cancel End Gateway",null,null,c+"cancel end"),this.createVertexTemplateEntry(b+"outline=eventInt;symbol=compensation;",50,50,"","Compensation Interrupting Gateway",null,null,c+"compensation interrupting"),this.createVertexTemplateEntry(b+"outline=boundInt;symbol=compensation;",50,50,"","Compensation Boundary Interrupting Gateway",null,null,c+"compensation boundary interrupting"),this.createVertexTemplateEntry(b+ -"outline=throwing;symbol=compensation;",50,50,"","Compensation Throwing Gateway",null,null,c+"compensation throwing"),this.createVertexTemplateEntry(b+"outline=end;symbol=compensation;",50,50,"","Compensation End Gateway",null,null,c+"compensation end"),this.createVertexTemplateEntry(b+"outline=standard;symbol=signal;",50,50,"","Signal Standard Gateway",null,null,c+"signal standard"),this.createVertexTemplateEntry(b+"outline=eventInt;symbol=signal;",50,50,"","Signal Interrupting Gateway",null,null, -c+"signal interrupting"),this.createVertexTemplateEntry(b+"outline=eventNonint;symbol=signal;",50,50,"","Signal Non-Interrupting Gateway",null,null,c+"signal non interrupting noninterrupting"),this.createVertexTemplateEntry(b+"outline=catching;symbol=signal;",50,50,"","Signal Catching Gateway",null,null,c+"signal catching"),this.createVertexTemplateEntry(b+"outline=boundInt;symbol=signal;",50,50,"","Signal Boundary Interrupting Gateway",null,null,c+"signal boundary interrupting"),this.createVertexTemplateEntry(b+ -"outline=boundNonint;symbol=signal;",50,50,"","Signal Boundary Non-Interrupting Gateway",null,null,c+"signal boundary non interrupting noninterrupting"),this.createVertexTemplateEntry(b+"outline=throwing;symbol=signal;",50,50,"","Signal Throwing Gateway",null,null,c+"signal throwing"),this.createVertexTemplateEntry(b+"outline=end;symbol=signal;",50,50,"","Signal End Gateway",null,null,c+"signal end"),this.createVertexTemplateEntry(b+"outline=standard;symbol=multiple;",50,50,"","Multiple Standard Gateway", -null,null,c+"multiple standard"),this.createVertexTemplateEntry(b+"outline=eventInt;symbol=multiple;",50,50,"","Multiple Interrupting Gateway",null,null,c+"multiple interrupting"),this.createVertexTemplateEntry(b+"outline=eventNonint;symbol=multiple;",50,50,"","Multiple Non-Interrupting Gateway",null,null,c+"multiple non interrupting noninterrupting"),this.createVertexTemplateEntry(b+"outline=catching;symbol=multiple;",50,50,"","Multiple Catching Gateway",null,null,c+"multiple catching"),this.createVertexTemplateEntry(b+ -"outline=boundInt;symbol=multiple;",50,50,"","Multiple Boundary Interrupting Gateway",null,null,c+"multiple boundary interrupting"),this.createVertexTemplateEntry(b+"outline=boundNonint;symbol=multiple;",50,50,"","Multiple Boundary Non-Interrupting Gateway",null,null,c+"multiple boundary non interrupting noninterrupting"),this.createVertexTemplateEntry(b+"outline=throwing;symbol=multiple;",50,50,"","Multiple Throwing Gateway",null,null,c+"multiple throwing"),this.createVertexTemplateEntry(b+"outline=end;symbol=multiple;", -50,50,"","Multiple End Gateway",null,null,c+"multiple end"),this.createVertexTemplateEntry(b+"outline=standard;symbol=star;",50,50,"","Multiple Start Gateway",null,null,c+"multiple end"),this.createVertexTemplateEntry(b+"outline=standard;symbol=parallelMultiple;",50,50,"","Parallel Multiple Standard Gateway",null,null,c+"parallel multiple standard"),this.createVertexTemplateEntry(b+"outline=eventInt;symbol=parallelMultiple;",50,50,"","Parallel Multiple Interrupting Gateway",null,null,c+"parallel multiple interrupting"), -this.createVertexTemplateEntry(b+"outline=eventNonint;symbol=parallelMultiple;",50,50,"","Parallel Multiple Non-Interrupting Gateway",null,null,c+"parallel multiple non interrupting noninterrupting"),this.createVertexTemplateEntry(b+"outline=catching;symbol=parallelMultiple;",50,50,"","Parallel Multiple Catching Gateway",null,null,c+"parallel multiple catching"),this.createVertexTemplateEntry(b+"outline=boundInt;symbol=parallelMultiple;",50,50,"","Parallel Multiple Boundary Interrupting Gateway", -null,null,c+"parallel multiple boundary interrupting"),this.createVertexTemplateEntry(b+"outline=boundNonint;symbol=parallelMultiple;",50,50,"","Parallel Multiple Boundary Non-Interrupting Gateway",null,null,c+"parallel multiple boundary non interrupting noninterrupting"),this.createVertexTemplateEntry(b+"outline=end;symbol=terminate;",50,50,"","Terminate Gateway",null,null,c+"terminate")]);b="shape=mxgraph.bpmn.shape;html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;align=center;perimeter=ellipsePerimeter;outlineConnect=0;"; -c="bpmn business process model event ";this.addPaletteFunctions("bpmnEvents","BPMN Events",!1,[this.createVertexTemplateEntry(b+"outline=standard;symbol=general;",50,50,"","General Start",null,null,c+"general start"),this.createVertexTemplateEntry(b+"outline=throwing;symbol=general;",50,50,"","General Intermediate",null,null,c+"general intermediate"),this.createVertexTemplateEntry(b+"outline=end;symbol=general;",50,50,"","General End",null,null,c+"general end"),this.createVertexTemplateEntry(b+"outline=standard;symbol=message;", -50,50,"","Message Standard",null,null,c+"message standard"),this.createVertexTemplateEntry(b+"outline=eventInt;symbol=message;",50,50,"","Message Interrupting",null,null,c+"message interrupting"),this.createVertexTemplateEntry(b+"outline=eventNonint;symbol=message;",50,50,"","Message Non-Interrupting",null,null,c+"message non interrupting noninterrupting"),this.createVertexTemplateEntry(b+"outline=catching;symbol=message;",50,50,"","Message Catching",null,null,c+"message catching"),this.createVertexTemplateEntry(b+ -"outline=boundInt;symbol=message;",50,50,"","Message Boundary Interrupting",null,null,c+"message boundary interrupting"),this.createVertexTemplateEntry(b+"outline=boundNonint;symbol=message;",50,50,"","Message Boundary Non-Interrupting",null,null,c+"message boundary non interrupting noninterrupting"),this.createVertexTemplateEntry(b+"outline=throwing;symbol=message;",50,50,"","Message Throwing",null,null,c+"message throwing"),this.createVertexTemplateEntry(b+"outline=end;symbol=message;",50,50,"", -"Message End",null,null,c+"message end"),this.createVertexTemplateEntry(b+"outline=standard;symbol=timer;",50,50,"","Timer Standard",null,null,c+"timer standard"),this.createVertexTemplateEntry(b+"outline=eventInt;symbol=timer;",50,50,"","Timer Interrupting",null,null,c+"timer interrupting"),this.createVertexTemplateEntry(b+"outline=eventNonint;symbol=timer;",50,50,"","Timer Non-Interrupting",null,null,c+"timer non interrupting noninterrupting"),this.createVertexTemplateEntry(b+"outline=catching;symbol=timer;", -50,50,"","Timer Catching",null,null,c+"timer catching"),this.createVertexTemplateEntry(b+"outline=boundInt;symbol=timer;",50,50,"","Timer Boundary Interrupting",null,null,c+"timer boundary interrupting"),this.createVertexTemplateEntry(b+"outline=boundNonint;symbol=timer;",50,50,"","Timer Boundary Non-Interrupting",null,null,c+"timer boundary non interrupting noninterrupting"),this.createVertexTemplateEntry(b+"outline=eventInt;symbol=escalation;",50,50,"","Escalation Interrupting",null,null,c+"escalation interrupting"), -this.createVertexTemplateEntry(b+"outline=eventNonint;symbol=escalation;",50,50,"","Escalation Non-Interrupting",null,null,c+"escalation non interrupting noninterrupting"),this.createVertexTemplateEntry(b+"outline=boundInt;symbol=escalation;",50,50,"","Escalation Boundary Interrupting",null,null,c+"escalation boundary interrupting"),this.createVertexTemplateEntry(b+"outline=boundNonint;symbol=escalation;",50,50,"","Escalation Boundary Non-Interrupting",null,null,c+"escalation boundary non interrupting nonimpterrupting"), -this.createVertexTemplateEntry(b+"outline=throwing;symbol=escalation;",50,50,"","Escalation Throwing",null,null,c+"escalation throwing"),this.createVertexTemplateEntry(b+"outline=end;symbol=escalation;",50,50,"","Escalation End",null,null,c+"escalation end"),this.createVertexTemplateEntry(b+"outline=standard;symbol=conditional;",50,50,"","Conditional Standard",null,null,c+"conditional standard"),this.createVertexTemplateEntry(b+"outline=eventInt;symbol=conditional;",50,50,"","Conditional Interrupting", -null,null,c+"conditional interrupting"),this.createVertexTemplateEntry(b+"outline=eventNonint;symbol=conditional;",50,50,"","Conditional Non-Interrupting",null,null,c+"conditional non interrupting noninterrupting"),this.createVertexTemplateEntry(b+"outline=catching;symbol=conditional;",50,50,"","Conditional Catching",null,null,c+"conditional catching"),this.createVertexTemplateEntry(b+"outline=boundInt;symbol=conditional;",50,50,"","Conditional Boundary Interrupting",null,null,c+"conditional boundary interrupting"), -this.createVertexTemplateEntry(b+"outline=boundNonint;symbol=conditional;",50,50,"","Conditional Boundary Non-Interrupting",null,null,c+"conditional boundary non interrupting noninterrupting"),this.createVertexTemplateEntry(b+"outline=catching;symbol=link;",50,50,"","Link Catching",null,null,c+"link catching"),this.createVertexTemplateEntry(b+"outline=throwing;symbol=link;",50,50,"","Link Throwing",null,null,c+"link throwing"),this.createVertexTemplateEntry(b+"outline=eventInt;symbol=error;",50,50, -"","Error Interrupting",null,null,c+"error interrupting"),this.createVertexTemplateEntry(b+"outline=boundInt;symbol=error;",50,50,"","Error Boundary Interrupting",null,null,c+"error boundary interrupting"),this.createVertexTemplateEntry(b+"outline=end;symbol=error;",50,50,"","Error End",null,null,c+"error end"),this.createVertexTemplateEntry(b+"outline=boundInt;symbol=cancel;",50,50,"","Cancel Boundary Interrupting",null,null,c+"cancel boundary interrupting"),this.createVertexTemplateEntry(b+"outline=end;symbol=cancel;", -50,50,"","Cancel End",null,null,c+"cancel end"),this.createVertexTemplateEntry(b+"outline=eventInt;symbol=compensation;",50,50,"","Compensation Interrupting",null,null,c+"compensation interrupting"),this.createVertexTemplateEntry(b+"outline=boundInt;symbol=compensation;",50,50,"","Compensation Boundary Interrupting",null,null,c+"compensation boundary interrupting"),this.createVertexTemplateEntry(b+"outline=throwing;symbol=compensation;",50,50,"","Compensation Throwing",null,null,c+"compensation throwing"), -this.createVertexTemplateEntry(b+"outline=end;symbol=compensation;",50,50,"","Compensation End",null,null,c+"compensation end"),this.createVertexTemplateEntry(b+"outline=standard;symbol=signal;",50,50,"","Signal Standard",null,null,c+"signal standard"),this.createVertexTemplateEntry(b+"outline=eventInt;symbol=signal;",50,50,"","Signal Interrupting",null,null,c+"signal interrupting"),this.createVertexTemplateEntry(b+"outline=eventNonint;symbol=signal;",50,50,"","Signal Non-Interrupting",null,null, -c+"signal non interrupting noninterrupting"),this.createVertexTemplateEntry(b+"outline=catching;symbol=signal;",50,50,"","Signal Catching",null,null,c+"signal catching"),this.createVertexTemplateEntry(b+"outline=boundInt;symbol=signal;",50,50,"","Signal Boundary Interrupting",null,null,c+"signal boundary interrupting"),this.createVertexTemplateEntry(b+"outline=boundNonint;symbol=signal;",50,50,"","Signal Boundary Non-Interrupting",null,null,c+"signal boundary non interrupting noninterrupting"),this.createVertexTemplateEntry(b+ -"outline=throwing;symbol=signal;",50,50,"","Signal Throwing",null,null,c+"signal throwing"),this.createVertexTemplateEntry(b+"outline=end;symbol=signal;",50,50,"","Signal End",null,null,c+"signal end"),this.createVertexTemplateEntry(b+"outline=standard;symbol=multiple;",50,50,"","Multiple Standard",null,null,c+"multiple standard"),this.createVertexTemplateEntry(b+"outline=eventInt;symbol=multiple;",50,50,"","Multiple Interrupting",null,null,c+"multiple interrupting"),this.createVertexTemplateEntry(b+ -"outline=eventNonint;symbol=multiple;",50,50,"","Multiple Non-Interrupting",null,null,c+"multiple non interrupting noninterrupting"),this.createVertexTemplateEntry(b+"outline=catching;symbol=multiple;",50,50,"","Multiple Catching",null,null,c+"multiple catching"),this.createVertexTemplateEntry(b+"outline=boundInt;symbol=multiple;",50,50,"","Multiple Boundary Interrupting",null,null,c+"multiple boundary interrupting"),this.createVertexTemplateEntry(b+"outline=boundNonint;symbol=multiple;",50,50,"", -"Multiple Boundary Non-Interrupting",null,null,c+"multiple boundary non interrupting noninterrupting"),this.createVertexTemplateEntry(b+"outline=throwing;symbol=multiple;",50,50,"","Multiple Throwing",null,null,c+"multiple throwing"),this.createVertexTemplateEntry(b+"outline=end;symbol=multiple;",50,50,"","Multiple End",null,null,c+"multiple end"),this.createVertexTemplateEntry(b+"outline=standard;symbol=star;",50,50,"","Multiple Start",null,null,c+"multiple start"),this.createVertexTemplateEntry(b+ -"outline=standard;symbol=parallelMultiple;",50,50,"","Parallel Multiple Standard",null,null,c+"parallel multiple standard"),this.createVertexTemplateEntry(b+"outline=eventInt;symbol=parallelMultiple;",50,50,"","Parallel Multiple Interrupting",null,null,c+"parallel multiple interrupting"),this.createVertexTemplateEntry(b+"outline=eventNonint;symbol=parallelMultiple;",50,50,"","Parallel Multiple Non-Interrupting",null,null,c+"parallel multiple non interrupting noninterrupting"),this.createVertexTemplateEntry(b+ -"outline=catching;symbol=parallelMultiple;",50,50,"","Parallel Multiple Catching",null,null,c+"parallel multiple catching"),this.createVertexTemplateEntry(b+"outline=boundInt;symbol=parallelMultiple;",50,50,"","Parallel Multiple Boundary Interrupting",null,null,c+"parallel multiple boundary interrupting"),this.createVertexTemplateEntry(b+"outline=boundNonint;symbol=parallelMultiple;",50,50,"","Parallel Multiple Boundary Non-Interrupting",null,null,c+"parallel multiple boundary non interrupting"), -this.createVertexTemplateEntry(b+"outline=end;symbol=terminate;",50,50,"","Terminate",null,null,c+"terminate")])}})();(function(){Sidebar.prototype.addCabinetsPalette=function(){var a=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;dashed=0;shadow=0;html=1;align=center;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;shape=mxgraph.cabinets.",d=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=middle;dashed=0;shadow=0;html=1;shape=mxgraph.cabinets.",e=this,b=[this.createVertexTemplateEntry(a+"cabinet;hasStand=1",250,500,"","Cabinet",null,null,this.getTagsForStencil("mxgraph.cabinets","cabinet","cabinet ").join(" ")),this.createVertexTemplateEntry(d+ -"dimension;verticalAlign=top;align=center;",250,40,"100","Dimension",null,null,this.getTagsForStencil("mxgraph.cabinets","dimension","cabinet ").join(" ")),this.createVertexTemplateEntry(d+"dimensionBottom;verticalAlign=bottom;align=center;",250,40,"100","Dimension",null,null,this.getTagsForStencil("mxgraph.cabinets","dimensionBottom","cabinet ").join(" ")),this.createVertexTemplateEntry(a+"coverPlate",50*4.4,125,"","Cover Plate",null,null,this.getTagsForStencil("mxgraph.cabinets","coverPlate","cabinet ").join(" ")), +this.addPalette("bootstrap",mxResources.get("bootstrap"),!1,mxUtils.bind(this,function(a){for(var c=0;c<b.length;c++)a.appendChild(b[c](a))}))}})();(function(){var a=Sidebar.prototype.addBpmnPalette;Sidebar.prototype.addBpmnPalette=function(b,e){a.apply(this,arguments);var c="shape=mxgraph.bpmn.shape;html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;align=center;perimeter=rhombusPerimeter;background=gateway;outlineConnect=0;",d="bpmn business process model gateway ";this.addPaletteFunctions("bpmnGateways","BPMN Gateways",!1,[this.createVertexTemplateEntry(c+"outline=none;symbol=exclusiveGw;",50,50,"","Exclusive Gateway", +null,null,d+"exclusive"),this.createVertexTemplateEntry(c+"outline=none;symbol=parallelGw;",50,50,"","Parallel Gateway",null,null,d+"parallel"),this.createVertexTemplateEntry(c+"outline=end;symbol=general;",50,50,"","Inclusive Gateway",null,null,d+"inclusive"),this.createVertexTemplateEntry(c+"outline=none;symbol=complexGw;",50,50,"","Complex Gateway",null,null,d+"complex"),this.createVertexTemplateEntry(c+"outline=standard;symbol=general;",50,50,"","General Start Gateway",null,null,d+"general start"), +this.createVertexTemplateEntry(c+"outline=throwing;symbol=general;",50,50,"","General Intermediate Gateway",null,null,d+"general intermediate"),this.createVertexTemplateEntry(c+"outline=end;symbol=general;",50,50,"","General End Gateway",null,null,d+"general end"),this.createVertexTemplateEntry(c+"outline=standard;symbol=message;",50,50,"","Message Standard Gateway",null,null,d+"message standard"),this.createVertexTemplateEntry(c+"outline=eventInt;symbol=message;",50,50,"","Message Interrupting Gateway", +null,null,d+"message interrupting"),this.createVertexTemplateEntry(c+"outline=eventNonint;symbol=message;",50,50,"","Message Non-Interrupting Gateway",null,null,d+"message non interrupting noninterrupting"),this.createVertexTemplateEntry(c+"outline=catching;symbol=message;",50,50,"","Message Catching Gateway",null,null,d+"message catching"),this.createVertexTemplateEntry(c+"outline=boundInt;symbol=message;",50,50,"","Message Boundary Interrupting Gateway",null,null,d+"message boundary interrupting"), +this.createVertexTemplateEntry(c+"outline=boundNonint;symbol=message;",50,50,"","Message Boundary Non-Interrupting Gateway",null,null,d+"message boundary non interrupting noninterrupting"),this.createVertexTemplateEntry(c+"outline=throwing;symbol=message;",50,50,"","Message Throwing Gateway",null,null,d+"message throwing"),this.createVertexTemplateEntry(c+"outline=end;symbol=message;",50,50,"","Message End Gateway",null,null,d+"message end"),this.createVertexTemplateEntry(c+"outline=standard;symbol=timer;", +50,50,"","Timer Standard Gateway",null,null,d+"timer standard"),this.createVertexTemplateEntry(c+"outline=eventInt;symbol=timer;",50,50,"","Timer Interrupting Gateway",null,null,d+"timer interrupting"),this.createVertexTemplateEntry(c+"outline=eventNonint;symbol=timer;",50,50,"","Timer Non-Interrupting Gateway",null,null,d+"timer non interrupting noninterrupting"),this.createVertexTemplateEntry(c+"outline=catching;symbol=timer;",50,50,"","Timer Catching Gateway",null,null,d+"timer catching"),this.createVertexTemplateEntry(c+ +"outline=boundInt;symbol=timer;",50,50,"","Timer Boundary Interrupting Gateway",null,null,d+"timer boundary interrupting"),this.createVertexTemplateEntry(c+"outline=boundNonint;symbol=timer;",50,50,"","Timer Boundary Non-Interrupting Gateway",null,null,d+"timer boundary non interrupting noninterrupting"),this.createVertexTemplateEntry(c+"outline=eventInt;symbol=escalation;",50,50,"","Escalation Interrupting Gateway",null,null,d+"escalation interrupting"),this.createVertexTemplateEntry(c+"outline=eventNonint;symbol=escalation;", +50,50,"","Escalation Non-Interrupting Gateway",null,null,d+"escalation non interrupting noninterrupting"),this.createVertexTemplateEntry(c+"outline=boundInt;symbol=escalation;",50,50,"","Escalation Boundary Interrupting Gateway",null,null,d+"escalation boundary interrupting"),this.createVertexTemplateEntry(c+"outline=boundNonint;symbol=escalation;",50,50,"","Escalation Boundary Non-Interrupting Gateway",null,null,d+"escalation boundary non interrupting noninterrupting"),this.createVertexTemplateEntry(c+ +"outline=throwing;symbol=escalation;",50,50,"","Escalation Throwing Gateway",null,null,d+"escalation throwing"),this.createVertexTemplateEntry(c+"outline=end;symbol=escalation;",50,50,"","Escalation End Gateway",null,null,d+"escalation end"),this.createVertexTemplateEntry(c+"outline=standard;symbol=conditional;",50,50,"","Conditional Standard Gateway",null,null,d+"conditional standard"),this.createVertexTemplateEntry(c+"outline=eventInt;symbol=conditional;",50,50,"","Conditional Interrupting Gateway", +null,null,d+"conditional interrupting"),this.createVertexTemplateEntry(c+"outline=eventNonint;symbol=conditional;",50,50,"","Conditional Non-Interrupting Gateway",null,null,d+"conditional non interrupting noninterrupting"),this.createVertexTemplateEntry(c+"outline=catching;symbol=conditional;",50,50,"","Conditional Catching Gateway",null,null,d+"conditional catching"),this.createVertexTemplateEntry(c+"outline=boundInt;symbol=conditional;",50,50,"","Conditional Boundary Interrupting Gateway",null, +null,d+"conditional boundary interrupting"),this.createVertexTemplateEntry(c+"outline=boundNonint;symbol=conditional;",50,50,"","Conditional Boundary Non-Interrupting Gateway",null,null,d+"conditional boundary non interrupting noninterrupting"),this.createVertexTemplateEntry(c+"outline=catching;symbol=link;",50,50,"","Link Catching Gateway",null,null,d+"link catching"),this.createVertexTemplateEntry(c+"outline=throwing;symbol=link;",50,50,"","Link Throwing Gateway",null,null,d+"link throwing"),this.createVertexTemplateEntry(c+ +"outline=eventInt;symbol=error;",50,50,"","Error Interrupting Gateway",null,null,d+"error interrupting"),this.createVertexTemplateEntry(c+"outline=boundInt;symbol=error;",50,50,"","Error Boundary Interrupting Gateway",null,null,d+"error boundary interrupting"),this.createVertexTemplateEntry(c+"outline=end;symbol=error;",50,50,"","Error End Gateway",null,null,d+"error end"),this.createVertexTemplateEntry(c+"outline=boundInt;symbol=cancel;",50,50,"","Cancel Boundary Interrupting Gateway",null,null, +d+"cancel boundary interrupting"),this.createVertexTemplateEntry(c+"outline=end;symbol=cancel;",50,50,"","Cancel End Gateway",null,null,d+"cancel end"),this.createVertexTemplateEntry(c+"outline=eventInt;symbol=compensation;",50,50,"","Compensation Interrupting Gateway",null,null,d+"compensation interrupting"),this.createVertexTemplateEntry(c+"outline=boundInt;symbol=compensation;",50,50,"","Compensation Boundary Interrupting Gateway",null,null,d+"compensation boundary interrupting"),this.createVertexTemplateEntry(c+ +"outline=throwing;symbol=compensation;",50,50,"","Compensation Throwing Gateway",null,null,d+"compensation throwing"),this.createVertexTemplateEntry(c+"outline=end;symbol=compensation;",50,50,"","Compensation End Gateway",null,null,d+"compensation end"),this.createVertexTemplateEntry(c+"outline=standard;symbol=signal;",50,50,"","Signal Standard Gateway",null,null,d+"signal standard"),this.createVertexTemplateEntry(c+"outline=eventInt;symbol=signal;",50,50,"","Signal Interrupting Gateway",null,null, +d+"signal interrupting"),this.createVertexTemplateEntry(c+"outline=eventNonint;symbol=signal;",50,50,"","Signal Non-Interrupting Gateway",null,null,d+"signal non interrupting noninterrupting"),this.createVertexTemplateEntry(c+"outline=catching;symbol=signal;",50,50,"","Signal Catching Gateway",null,null,d+"signal catching"),this.createVertexTemplateEntry(c+"outline=boundInt;symbol=signal;",50,50,"","Signal Boundary Interrupting Gateway",null,null,d+"signal boundary interrupting"),this.createVertexTemplateEntry(c+ +"outline=boundNonint;symbol=signal;",50,50,"","Signal Boundary Non-Interrupting Gateway",null,null,d+"signal boundary non interrupting noninterrupting"),this.createVertexTemplateEntry(c+"outline=throwing;symbol=signal;",50,50,"","Signal Throwing Gateway",null,null,d+"signal throwing"),this.createVertexTemplateEntry(c+"outline=end;symbol=signal;",50,50,"","Signal End Gateway",null,null,d+"signal end"),this.createVertexTemplateEntry(c+"outline=standard;symbol=multiple;",50,50,"","Multiple Standard Gateway", +null,null,d+"multiple standard"),this.createVertexTemplateEntry(c+"outline=eventInt;symbol=multiple;",50,50,"","Multiple Interrupting Gateway",null,null,d+"multiple interrupting"),this.createVertexTemplateEntry(c+"outline=eventNonint;symbol=multiple;",50,50,"","Multiple Non-Interrupting Gateway",null,null,d+"multiple non interrupting noninterrupting"),this.createVertexTemplateEntry(c+"outline=catching;symbol=multiple;",50,50,"","Multiple Catching Gateway",null,null,d+"multiple catching"),this.createVertexTemplateEntry(c+ +"outline=boundInt;symbol=multiple;",50,50,"","Multiple Boundary Interrupting Gateway",null,null,d+"multiple boundary interrupting"),this.createVertexTemplateEntry(c+"outline=boundNonint;symbol=multiple;",50,50,"","Multiple Boundary Non-Interrupting Gateway",null,null,d+"multiple boundary non interrupting noninterrupting"),this.createVertexTemplateEntry(c+"outline=throwing;symbol=multiple;",50,50,"","Multiple Throwing Gateway",null,null,d+"multiple throwing"),this.createVertexTemplateEntry(c+"outline=end;symbol=multiple;", +50,50,"","Multiple End Gateway",null,null,d+"multiple end"),this.createVertexTemplateEntry(c+"outline=standard;symbol=star;",50,50,"","Multiple Start Gateway",null,null,d+"multiple end"),this.createVertexTemplateEntry(c+"outline=standard;symbol=parallelMultiple;",50,50,"","Parallel Multiple Standard Gateway",null,null,d+"parallel multiple standard"),this.createVertexTemplateEntry(c+"outline=eventInt;symbol=parallelMultiple;",50,50,"","Parallel Multiple Interrupting Gateway",null,null,d+"parallel multiple interrupting"), +this.createVertexTemplateEntry(c+"outline=eventNonint;symbol=parallelMultiple;",50,50,"","Parallel Multiple Non-Interrupting Gateway",null,null,d+"parallel multiple non interrupting noninterrupting"),this.createVertexTemplateEntry(c+"outline=catching;symbol=parallelMultiple;",50,50,"","Parallel Multiple Catching Gateway",null,null,d+"parallel multiple catching"),this.createVertexTemplateEntry(c+"outline=boundInt;symbol=parallelMultiple;",50,50,"","Parallel Multiple Boundary Interrupting Gateway", +null,null,d+"parallel multiple boundary interrupting"),this.createVertexTemplateEntry(c+"outline=boundNonint;symbol=parallelMultiple;",50,50,"","Parallel Multiple Boundary Non-Interrupting Gateway",null,null,d+"parallel multiple boundary non interrupting noninterrupting"),this.createVertexTemplateEntry(c+"outline=end;symbol=terminate;",50,50,"","Terminate Gateway",null,null,d+"terminate")]);c="shape=mxgraph.bpmn.shape;html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;align=center;perimeter=ellipsePerimeter;outlineConnect=0;"; +d="bpmn business process model event ";this.addPaletteFunctions("bpmnEvents","BPMN Events",!1,[this.createVertexTemplateEntry(c+"outline=standard;symbol=general;",50,50,"","General Start",null,null,d+"general start"),this.createVertexTemplateEntry(c+"outline=throwing;symbol=general;",50,50,"","General Intermediate",null,null,d+"general intermediate"),this.createVertexTemplateEntry(c+"outline=end;symbol=general;",50,50,"","General End",null,null,d+"general end"),this.createVertexTemplateEntry(c+"outline=standard;symbol=message;", +50,50,"","Message Standard",null,null,d+"message standard"),this.createVertexTemplateEntry(c+"outline=eventInt;symbol=message;",50,50,"","Message Interrupting",null,null,d+"message interrupting"),this.createVertexTemplateEntry(c+"outline=eventNonint;symbol=message;",50,50,"","Message Non-Interrupting",null,null,d+"message non interrupting noninterrupting"),this.createVertexTemplateEntry(c+"outline=catching;symbol=message;",50,50,"","Message Catching",null,null,d+"message catching"),this.createVertexTemplateEntry(c+ +"outline=boundInt;symbol=message;",50,50,"","Message Boundary Interrupting",null,null,d+"message boundary interrupting"),this.createVertexTemplateEntry(c+"outline=boundNonint;symbol=message;",50,50,"","Message Boundary Non-Interrupting",null,null,d+"message boundary non interrupting noninterrupting"),this.createVertexTemplateEntry(c+"outline=throwing;symbol=message;",50,50,"","Message Throwing",null,null,d+"message throwing"),this.createVertexTemplateEntry(c+"outline=end;symbol=message;",50,50,"", +"Message End",null,null,d+"message end"),this.createVertexTemplateEntry(c+"outline=standard;symbol=timer;",50,50,"","Timer Standard",null,null,d+"timer standard"),this.createVertexTemplateEntry(c+"outline=eventInt;symbol=timer;",50,50,"","Timer Interrupting",null,null,d+"timer interrupting"),this.createVertexTemplateEntry(c+"outline=eventNonint;symbol=timer;",50,50,"","Timer Non-Interrupting",null,null,d+"timer non interrupting noninterrupting"),this.createVertexTemplateEntry(c+"outline=catching;symbol=timer;", +50,50,"","Timer Catching",null,null,d+"timer catching"),this.createVertexTemplateEntry(c+"outline=boundInt;symbol=timer;",50,50,"","Timer Boundary Interrupting",null,null,d+"timer boundary interrupting"),this.createVertexTemplateEntry(c+"outline=boundNonint;symbol=timer;",50,50,"","Timer Boundary Non-Interrupting",null,null,d+"timer boundary non interrupting noninterrupting"),this.createVertexTemplateEntry(c+"outline=eventInt;symbol=escalation;",50,50,"","Escalation Interrupting",null,null,d+"escalation interrupting"), +this.createVertexTemplateEntry(c+"outline=eventNonint;symbol=escalation;",50,50,"","Escalation Non-Interrupting",null,null,d+"escalation non interrupting noninterrupting"),this.createVertexTemplateEntry(c+"outline=boundInt;symbol=escalation;",50,50,"","Escalation Boundary Interrupting",null,null,d+"escalation boundary interrupting"),this.createVertexTemplateEntry(c+"outline=boundNonint;symbol=escalation;",50,50,"","Escalation Boundary Non-Interrupting",null,null,d+"escalation boundary non interrupting nonimpterrupting"), +this.createVertexTemplateEntry(c+"outline=throwing;symbol=escalation;",50,50,"","Escalation Throwing",null,null,d+"escalation throwing"),this.createVertexTemplateEntry(c+"outline=end;symbol=escalation;",50,50,"","Escalation End",null,null,d+"escalation end"),this.createVertexTemplateEntry(c+"outline=standard;symbol=conditional;",50,50,"","Conditional Standard",null,null,d+"conditional standard"),this.createVertexTemplateEntry(c+"outline=eventInt;symbol=conditional;",50,50,"","Conditional Interrupting", +null,null,d+"conditional interrupting"),this.createVertexTemplateEntry(c+"outline=eventNonint;symbol=conditional;",50,50,"","Conditional Non-Interrupting",null,null,d+"conditional non interrupting noninterrupting"),this.createVertexTemplateEntry(c+"outline=catching;symbol=conditional;",50,50,"","Conditional Catching",null,null,d+"conditional catching"),this.createVertexTemplateEntry(c+"outline=boundInt;symbol=conditional;",50,50,"","Conditional Boundary Interrupting",null,null,d+"conditional boundary interrupting"), +this.createVertexTemplateEntry(c+"outline=boundNonint;symbol=conditional;",50,50,"","Conditional Boundary Non-Interrupting",null,null,d+"conditional boundary non interrupting noninterrupting"),this.createVertexTemplateEntry(c+"outline=catching;symbol=link;",50,50,"","Link Catching",null,null,d+"link catching"),this.createVertexTemplateEntry(c+"outline=throwing;symbol=link;",50,50,"","Link Throwing",null,null,d+"link throwing"),this.createVertexTemplateEntry(c+"outline=eventInt;symbol=error;",50,50, +"","Error Interrupting",null,null,d+"error interrupting"),this.createVertexTemplateEntry(c+"outline=boundInt;symbol=error;",50,50,"","Error Boundary Interrupting",null,null,d+"error boundary interrupting"),this.createVertexTemplateEntry(c+"outline=end;symbol=error;",50,50,"","Error End",null,null,d+"error end"),this.createVertexTemplateEntry(c+"outline=boundInt;symbol=cancel;",50,50,"","Cancel Boundary Interrupting",null,null,d+"cancel boundary interrupting"),this.createVertexTemplateEntry(c+"outline=end;symbol=cancel;", +50,50,"","Cancel End",null,null,d+"cancel end"),this.createVertexTemplateEntry(c+"outline=eventInt;symbol=compensation;",50,50,"","Compensation Interrupting",null,null,d+"compensation interrupting"),this.createVertexTemplateEntry(c+"outline=boundInt;symbol=compensation;",50,50,"","Compensation Boundary Interrupting",null,null,d+"compensation boundary interrupting"),this.createVertexTemplateEntry(c+"outline=throwing;symbol=compensation;",50,50,"","Compensation Throwing",null,null,d+"compensation throwing"), +this.createVertexTemplateEntry(c+"outline=end;symbol=compensation;",50,50,"","Compensation End",null,null,d+"compensation end"),this.createVertexTemplateEntry(c+"outline=standard;symbol=signal;",50,50,"","Signal Standard",null,null,d+"signal standard"),this.createVertexTemplateEntry(c+"outline=eventInt;symbol=signal;",50,50,"","Signal Interrupting",null,null,d+"signal interrupting"),this.createVertexTemplateEntry(c+"outline=eventNonint;symbol=signal;",50,50,"","Signal Non-Interrupting",null,null, +d+"signal non interrupting noninterrupting"),this.createVertexTemplateEntry(c+"outline=catching;symbol=signal;",50,50,"","Signal Catching",null,null,d+"signal catching"),this.createVertexTemplateEntry(c+"outline=boundInt;symbol=signal;",50,50,"","Signal Boundary Interrupting",null,null,d+"signal boundary interrupting"),this.createVertexTemplateEntry(c+"outline=boundNonint;symbol=signal;",50,50,"","Signal Boundary Non-Interrupting",null,null,d+"signal boundary non interrupting noninterrupting"),this.createVertexTemplateEntry(c+ +"outline=throwing;symbol=signal;",50,50,"","Signal Throwing",null,null,d+"signal throwing"),this.createVertexTemplateEntry(c+"outline=end;symbol=signal;",50,50,"","Signal End",null,null,d+"signal end"),this.createVertexTemplateEntry(c+"outline=standard;symbol=multiple;",50,50,"","Multiple Standard",null,null,d+"multiple standard"),this.createVertexTemplateEntry(c+"outline=eventInt;symbol=multiple;",50,50,"","Multiple Interrupting",null,null,d+"multiple interrupting"),this.createVertexTemplateEntry(c+ +"outline=eventNonint;symbol=multiple;",50,50,"","Multiple Non-Interrupting",null,null,d+"multiple non interrupting noninterrupting"),this.createVertexTemplateEntry(c+"outline=catching;symbol=multiple;",50,50,"","Multiple Catching",null,null,d+"multiple catching"),this.createVertexTemplateEntry(c+"outline=boundInt;symbol=multiple;",50,50,"","Multiple Boundary Interrupting",null,null,d+"multiple boundary interrupting"),this.createVertexTemplateEntry(c+"outline=boundNonint;symbol=multiple;",50,50,"", +"Multiple Boundary Non-Interrupting",null,null,d+"multiple boundary non interrupting noninterrupting"),this.createVertexTemplateEntry(c+"outline=throwing;symbol=multiple;",50,50,"","Multiple Throwing",null,null,d+"multiple throwing"),this.createVertexTemplateEntry(c+"outline=end;symbol=multiple;",50,50,"","Multiple End",null,null,d+"multiple end"),this.createVertexTemplateEntry(c+"outline=standard;symbol=star;",50,50,"","Multiple Start",null,null,d+"multiple start"),this.createVertexTemplateEntry(c+ +"outline=standard;symbol=parallelMultiple;",50,50,"","Parallel Multiple Standard",null,null,d+"parallel multiple standard"),this.createVertexTemplateEntry(c+"outline=eventInt;symbol=parallelMultiple;",50,50,"","Parallel Multiple Interrupting",null,null,d+"parallel multiple interrupting"),this.createVertexTemplateEntry(c+"outline=eventNonint;symbol=parallelMultiple;",50,50,"","Parallel Multiple Non-Interrupting",null,null,d+"parallel multiple non interrupting noninterrupting"),this.createVertexTemplateEntry(c+ +"outline=catching;symbol=parallelMultiple;",50,50,"","Parallel Multiple Catching",null,null,d+"parallel multiple catching"),this.createVertexTemplateEntry(c+"outline=boundInt;symbol=parallelMultiple;",50,50,"","Parallel Multiple Boundary Interrupting",null,null,d+"parallel multiple boundary interrupting"),this.createVertexTemplateEntry(c+"outline=boundNonint;symbol=parallelMultiple;",50,50,"","Parallel Multiple Boundary Non-Interrupting",null,null,d+"parallel multiple boundary non interrupting"), +this.createVertexTemplateEntry(c+"outline=end;symbol=terminate;",50,50,"","Terminate",null,null,d+"terminate")])}})();(function(){Sidebar.prototype.addCabinetsPalette=function(){var a=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;dashed=0;shadow=0;html=1;align=center;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;shape=mxgraph.cabinets.",b=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=middle;dashed=0;shadow=0;html=1;shape=mxgraph.cabinets.",e=this,c=[this.createVertexTemplateEntry(a+"cabinet;hasStand=1",250,500,"","Cabinet",null,null,this.getTagsForStencil("mxgraph.cabinets","cabinet","cabinet ").join(" ")),this.createVertexTemplateEntry(b+ +"dimension;verticalAlign=top;align=center;",250,40,"100","Dimension",null,null,this.getTagsForStencil("mxgraph.cabinets","dimension","cabinet ").join(" ")),this.createVertexTemplateEntry(b+"dimensionBottom;verticalAlign=bottom;align=center;",250,40,"100","Dimension",null,null,this.getTagsForStencil("mxgraph.cabinets","dimensionBottom","cabinet ").join(" ")),this.createVertexTemplateEntry(a+"coverPlate",50*4.4,125,"","Cover Plate",null,null,this.getTagsForStencil("mxgraph.cabinets","coverPlate","cabinet ").join(" ")), this.createVertexTemplateEntry("shape=rect;dashed=0;shadow=0;html=1;whiteSpace=wrap;",50*4.4,12.5,"25x40","Panel Wiring System 25x40mm",null,null,this.getTagsForStencil("mxgraph.cabinets","","cabinet panel wiring system").join(" ")),this.createVertexTemplateEntry("shape=rect;dashed=0;shadow=0;html=1;whiteSpace=wrap;",50*4.4,20,"40x40","Panel Wiring System 40x40mm",null,null,this.getTagsForStencil("mxgraph.cabinets","","cabinet panel wiring system").join(" ")),this.createVertexTemplateEntry("shape=rect;dashed=0;shadow=0;html=1;whiteSpace=wrap;", 50*4.4,30,"60x40","Panel Wiring System 60x40mm",null,null,this.getTagsForStencil("mxgraph.cabinets","","cabinet panel wiring system").join(" ")),this.createVertexTemplateEntry("shape=rect;dashed=0;shadow=0;html=1;whiteSpace=wrap;",50*4.4,40,"80x40","Panel Wiring System 80x40mm",null,null,this.getTagsForStencil("mxgraph.cabinets","","cabinet panel wiring system").join(" ")),this.createVertexTemplateEntry("shape=rect;dashed=0;shadow=0;html=1;whiteSpace=wrap;",50*4.4,50,"100x40","Panel Wiring System 100x40mm", null,null,this.getTagsForStencil("mxgraph.cabinets","","cabinet panel wiring system").join(" ")),this.createVertexTemplateEntry("shape=rect;dashed=0;shadow=0;html=1;whiteSpace=wrap;rotation=270",350,12.5,"25x40","Panel Wiring System 25x40mm (Vertical)",null,null,this.getTagsForStencil("mxgraph.cabinets","","cabinet panel wiring system").join(" ")),this.createVertexTemplateEntry("shape=rect;dashed=0;shadow=0;html=1;whiteSpace=wrap;rotation=270",350,20,"40x40","Panel Wiring System 40x40mm (Vertical)", null,null,this.getTagsForStencil("mxgraph.cabinets","","cabinet panel wiring system").join(" ")),this.createVertexTemplateEntry("shape=rect;dashed=0;shadow=0;html=1;whiteSpace=wrap;rotation=270",350,30,"60x40","Panel Wiring System 60x40mm (Vertical)",null,null,this.getTagsForStencil("mxgraph.cabinets","","cabinet panel wiring system").join(" ")),this.createVertexTemplateEntry("shape=rect;dashed=0;shadow=0;html=1;whiteSpace=wrap;rotation=270",350,40,"80x40","Panel Wiring System 80x40mm (Vertical)", null,null,this.getTagsForStencil("mxgraph.cabinets","","cabinet panel wiring system").join(" ")),this.createVertexTemplateEntry("shape=rect;dashed=0;shadow=0;html=1;whiteSpace=wrap;rotation=270",350,50,"100x40","Panel Wiring System 100x40mm (Vertical)",null,null,this.getTagsForStencil("mxgraph.cabinets","","cabinet panel wiring system").join(" ")),this.createVertexTemplateEntry(a+"cb_1p;",9,50,"","Circuit Breaker (1P)",null,null,this.getTagsForStencil("mxgraph.cabinets","cb_1p","cabinet ").join(" ")), -this.addEntry("cabinet circuit breaker row",function(){var b=new mxCell("",new mxGeometry(0,0,9,50),a+"cb_1p;");b.vertex=!0;var d=new mxCell("",new mxGeometry(9,0,9,50),a+"cb_1p;");d.vertex=!0;var g=new mxCell("",new mxGeometry(18,0,9,50),a+"cb_1p;");g.vertex=!0;var h=new mxCell("",new mxGeometry(27,0,9,50),a+"cb_1p;");h.vertex=!0;var k=new mxCell("",new mxGeometry(36,0,9,50),a+"cb_1p;");k.vertex=!0;var l=new mxCell("",new mxGeometry(45,0,9,50),a+"cb_1p;");l.vertex=!0;var m=new mxCell("",new mxGeometry(54, -0,9,50),a+"cb_1p;");m.vertex=!0;var q=new mxCell("",new mxGeometry(63,0,9,50),a+"cb_1p;");q.vertex=!0;var r=new mxCell("",new mxGeometry(72,0,9,50),a+"cb_1p;");r.vertex=!0;var n=new mxCell("",new mxGeometry(81,0,9,50),a+"cb_1p;");n.vertex=!0;return e.createVertexTemplateFromCells([b,d,g,h,k,l,m,q,r,n],90,50,"Circuit Breaker (1P x 10)")}),this.createVertexTemplateEntry(a+"cb_2p;",18,50,"","Circuit Breaker (2P)",null,null,this.getTagsForStencil("mxgraph.cabinets","cb_2p","cabinet ").join(" ")),this.addEntry("cabinet circuit breaker row", -function(){var b=new mxCell("",new mxGeometry(0,0,18,50),a+"cb_2p;");b.vertex=!0;var d=new mxCell("",new mxGeometry(18,0,18,50),a+"cb_2p;");d.vertex=!0;var g=new mxCell("",new mxGeometry(36,0,18,50),a+"cb_2p;");g.vertex=!0;var h=new mxCell("",new mxGeometry(54,0,18,50),a+"cb_2p;");h.vertex=!0;var k=new mxCell("",new mxGeometry(72,0,18,50),a+"cb_2p;");k.vertex=!0;var l=new mxCell("",new mxGeometry(90,0,18,50),a+"cb_2p;");l.vertex=!0;var m=new mxCell("",new mxGeometry(108,0,18,50),a+"cb_2p;");m.vertex= -!0;var q=new mxCell("",new mxGeometry(126,0,18,50),a+"cb_2p;");q.vertex=!0;var r=new mxCell("",new mxGeometry(144,0,18,50),a+"cb_2p;");r.vertex=!0;var n=new mxCell("",new mxGeometry(162,0,18,50),a+"cb_2p;");n.vertex=!0;return e.createVertexTemplateFromCells([b,d,g,h,k,l,m,q,r,n],180,50,"Circuit Breaker (2P x 10)")}),this.createVertexTemplateEntry(a+"cb_3p;",27,50,"","Circuit Breaker (3P)",null,null,this.getTagsForStencil("mxgraph.cabinets","cb_3p","cabinet ").join(" ")),this.addEntry("cabinet circuit breaker row", -function(){var b=new mxCell("",new mxGeometry(0,0,27,50),a+"cb_3p;");b.vertex=!0;var d=new mxCell("",new mxGeometry(27,0,27,50),a+"cb_3p;");d.vertex=!0;var g=new mxCell("",new mxGeometry(54,0,27,50),a+"cb_3p;");g.vertex=!0;var h=new mxCell("",new mxGeometry(81,0,27,50),a+"cb_3p;");h.vertex=!0;var k=new mxCell("",new mxGeometry(108,0,27,50),a+"cb_3p;");k.vertex=!0;return e.createVertexTemplateFromCells([b,d,g,h,k],135,50,"Circuit Breaker (3P x 5)")}),this.createVertexTemplateEntry(a+"cb_4p;",36,50, -"","Circuit Breaker (4P)",null,null,this.getTagsForStencil("mxgraph.cabinets","cb_4p","cabinet ").join(" ")),this.addEntry("cabinet circuit breaker row",function(){var b=new mxCell("",new mxGeometry(0,0,36,50),a+"cb_4p;");b.vertex=!0;var d=new mxCell("",new mxGeometry(36,0,36,50),a+"cb_4p;");d.vertex=!0;var g=new mxCell("",new mxGeometry(72,0,36,50),a+"cb_4p;");g.vertex=!0;var h=new mxCell("",new mxGeometry(108,0,36,50),a+"cb_4p;");h.vertex=!0;var k=new mxCell("",new mxGeometry(144,0,36,50),a+"cb_4p;"); -k.vertex=!0;return e.createVertexTemplateFromCells([b,d,g,h,k],180,50,"Circuit Breaker (4P x 5)")}),this.createVertexTemplateEntry(a+"cb_auxiliary_contact;",4.5,50,"","Auxiliary Contact (Circuit Breaker)",null,null,this.getTagsForStencil("mxgraph.cabinets","cb_auxiliary_contact","cabinet ").join(" ")),this.createVertexTemplateEntry(a+"contactor_1_32a;",27,43,"","Contactor (1-32A)",null,null,this.getTagsForStencil("mxgraph.cabinets","contactor_1_32a","cabinet ").join(" ")),this.createVertexTemplateEntry(a+ +this.addEntry("cabinet circuit breaker row",function(){var c=new mxCell("",new mxGeometry(0,0,9,50),a+"cb_1p;");c.vertex=!0;var b=new mxCell("",new mxGeometry(9,0,9,50),a+"cb_1p;");b.vertex=!0;var g=new mxCell("",new mxGeometry(18,0,9,50),a+"cb_1p;");g.vertex=!0;var h=new mxCell("",new mxGeometry(27,0,9,50),a+"cb_1p;");h.vertex=!0;var k=new mxCell("",new mxGeometry(36,0,9,50),a+"cb_1p;");k.vertex=!0;var l=new mxCell("",new mxGeometry(45,0,9,50),a+"cb_1p;");l.vertex=!0;var m=new mxCell("",new mxGeometry(54, +0,9,50),a+"cb_1p;");m.vertex=!0;var q=new mxCell("",new mxGeometry(63,0,9,50),a+"cb_1p;");q.vertex=!0;var r=new mxCell("",new mxGeometry(72,0,9,50),a+"cb_1p;");r.vertex=!0;var n=new mxCell("",new mxGeometry(81,0,9,50),a+"cb_1p;");n.vertex=!0;return e.createVertexTemplateFromCells([c,b,g,h,k,l,m,q,r,n],90,50,"Circuit Breaker (1P x 10)")}),this.createVertexTemplateEntry(a+"cb_2p;",18,50,"","Circuit Breaker (2P)",null,null,this.getTagsForStencil("mxgraph.cabinets","cb_2p","cabinet ").join(" ")),this.addEntry("cabinet circuit breaker row", +function(){var c=new mxCell("",new mxGeometry(0,0,18,50),a+"cb_2p;");c.vertex=!0;var b=new mxCell("",new mxGeometry(18,0,18,50),a+"cb_2p;");b.vertex=!0;var g=new mxCell("",new mxGeometry(36,0,18,50),a+"cb_2p;");g.vertex=!0;var h=new mxCell("",new mxGeometry(54,0,18,50),a+"cb_2p;");h.vertex=!0;var k=new mxCell("",new mxGeometry(72,0,18,50),a+"cb_2p;");k.vertex=!0;var l=new mxCell("",new mxGeometry(90,0,18,50),a+"cb_2p;");l.vertex=!0;var m=new mxCell("",new mxGeometry(108,0,18,50),a+"cb_2p;");m.vertex= +!0;var q=new mxCell("",new mxGeometry(126,0,18,50),a+"cb_2p;");q.vertex=!0;var r=new mxCell("",new mxGeometry(144,0,18,50),a+"cb_2p;");r.vertex=!0;var n=new mxCell("",new mxGeometry(162,0,18,50),a+"cb_2p;");n.vertex=!0;return e.createVertexTemplateFromCells([c,b,g,h,k,l,m,q,r,n],180,50,"Circuit Breaker (2P x 10)")}),this.createVertexTemplateEntry(a+"cb_3p;",27,50,"","Circuit Breaker (3P)",null,null,this.getTagsForStencil("mxgraph.cabinets","cb_3p","cabinet ").join(" ")),this.addEntry("cabinet circuit breaker row", +function(){var c=new mxCell("",new mxGeometry(0,0,27,50),a+"cb_3p;");c.vertex=!0;var b=new mxCell("",new mxGeometry(27,0,27,50),a+"cb_3p;");b.vertex=!0;var g=new mxCell("",new mxGeometry(54,0,27,50),a+"cb_3p;");g.vertex=!0;var h=new mxCell("",new mxGeometry(81,0,27,50),a+"cb_3p;");h.vertex=!0;var k=new mxCell("",new mxGeometry(108,0,27,50),a+"cb_3p;");k.vertex=!0;return e.createVertexTemplateFromCells([c,b,g,h,k],135,50,"Circuit Breaker (3P x 5)")}),this.createVertexTemplateEntry(a+"cb_4p;",36,50, +"","Circuit Breaker (4P)",null,null,this.getTagsForStencil("mxgraph.cabinets","cb_4p","cabinet ").join(" ")),this.addEntry("cabinet circuit breaker row",function(){var c=new mxCell("",new mxGeometry(0,0,36,50),a+"cb_4p;");c.vertex=!0;var b=new mxCell("",new mxGeometry(36,0,36,50),a+"cb_4p;");b.vertex=!0;var g=new mxCell("",new mxGeometry(72,0,36,50),a+"cb_4p;");g.vertex=!0;var h=new mxCell("",new mxGeometry(108,0,36,50),a+"cb_4p;");h.vertex=!0;var k=new mxCell("",new mxGeometry(144,0,36,50),a+"cb_4p;"); +k.vertex=!0;return e.createVertexTemplateFromCells([c,b,g,h,k],180,50,"Circuit Breaker (4P x 5)")}),this.createVertexTemplateEntry(a+"cb_auxiliary_contact;",4.5,50,"","Auxiliary Contact (Circuit Breaker)",null,null,this.getTagsForStencil("mxgraph.cabinets","cb_auxiliary_contact","cabinet ").join(" ")),this.createVertexTemplateEntry(a+"contactor_1_32a;",27,43,"","Contactor (1-32A)",null,null,this.getTagsForStencil("mxgraph.cabinets","contactor_1_32a","cabinet ").join(" ")),this.createVertexTemplateEntry(a+ "auxiliary_contact_contactor_1_32a;",4.5,43,"","Auxiliary Contact (Contactor 1-32A)",null,null,this.getTagsForStencil("mxgraph.cabinets","auxiliary_contact_contactor_1_32a","cabinet ").join(" ")),this.createVertexTemplateEntry(a+"contactor_32_125a;",30,50,"","Contactor 32 to 125A",null,null,this.getTagsForStencil("mxgraph.cabinets","contactor_32_125a","cabinet ").join(" ")),this.createVertexTemplateEntry(a+"auxiliary_contact_contactor_32_125a;",4.5,50,"","Auxiliary Contact (Contactor 32-125A)",null, null,this.getTagsForStencil("mxgraph.cabinets","auxiliary_contact_contactor_32_125a","cabinet ").join(" ")),this.createVertexTemplateEntry(a+"contactor_125_400a;",50*1.1,90,"","Contactor 125 to 400A",null,null,this.getTagsForStencil("mxgraph.cabinets","contactor_125_400a","cabinet ").join(" ")),this.createVertexTemplateEntry(a+"distribution_block_4p_125a_11_connections;",100,60,"","Distribution Block 4P 125A 11 Connections",null,null,this.getTagsForStencil("mxgraph.cabinets","distribution_block_4p_125a_11_connections", "cabinet ").join(" ")),this.createVertexTemplateEntry(a+"distribution_block_4p_125a_11_connections_2;",100,50,"","Distribution Block 4P 125A 11 Connections",null,null,this.getTagsForStencil("mxgraph.cabinets","distribution_block_4p_125a_11_connections_2","cabinet ").join(" ")),this.createVertexTemplateEntry(a+"mccb_25_63a_3p;",60,90,"","MCCB 25-63A 3P",null,null,this.getTagsForStencil("mxgraph.cabinets","mccb_25_63a_3p","cabinet ").join(" ")),this.createVertexTemplateEntry(a+"mccb_25_63a_4p;",80, @@ -4862,7 +4863,7 @@ null,null,this.getTagsForStencil("mxgraph.cabinets","surge_protection_3p","cabin 25,25,"","Terminal 4mm2 x10",null,null,this.getTagsForStencil("mxgraph.cabinets","terminal_4mm2_x10","cabinet ").join(" ")),this.createVertexTemplateEntry(a+"terminal_4_6mm2;",2.5,30,"","Terminal 4-6mm2",null,null,this.getTagsForStencil("mxgraph.cabinets","terminal_4_6mm2","cabinet ").join(" ")),this.createVertexTemplateEntry(a+"terminal_4_6mm2_x10;",25,30,"","Terminal 4-6mm2 x10",null,null,this.getTagsForStencil("mxgraph.cabinets","terminal_4_6mm2_x10","cabinet ").join(" ")),this.createVertexTemplateEntry(a+ "terminal_6_25mm2;",5,37.5,"","Terminal 6-25mm2",null,null,this.getTagsForStencil("mxgraph.cabinets","terminal_6_25mm2","cabinet ").join(" ")),this.createVertexTemplateEntry(a+"terminal_6_25mm2_x10;",50,37.5,"","Terminal 6-25mm2 x10",null,null,this.getTagsForStencil("mxgraph.cabinets","terminal_6_25mm2_x10","cabinet ").join(" ")),this.createVertexTemplateEntry(a+"terminal_40mm2;",11,50,"","Terminal 40mm2",null,null,this.getTagsForStencil("mxgraph.cabinets","terminal_40mm2","cabinet ").join(" ")), this.createVertexTemplateEntry(a+"terminal_40mm2_x10;",50*2.2,50,"","Terminal 40mm2 x10",null,null,this.getTagsForStencil("mxgraph.cabinets","terminal_40mm2_x10","cabinet ").join(" ")),this.createVertexTemplateEntry(a+"terminal_50mm2;",12.5,50*1.1,"","Terminal 50mm2",null,null,this.getTagsForStencil("mxgraph.cabinets","terminal_50mm2","cabinet ").join(" ")),this.createVertexTemplateEntry(a+"terminal_50mm2_x10;",125,50*1.1,"","Terminal 50mm2 x10",null,null,this.getTagsForStencil("mxgraph.cabinets", -"terminal_50mm2_x10","cabinet ").join(" ")),this.createVertexTemplateEntry(a+"terminal_75mm2;",15,70,"","Terminal 75mm2",null,null,this.getTagsForStencil("mxgraph.cabinets","terminal_75mm2","cabinet ").join(" ")),this.createVertexTemplateEntry(a+"terminal_75mm2_x10;",150,70,"","Terminal 75mm2 x10",null,null,this.getTagsForStencil("mxgraph.cabinets","terminal_75mm2_x10","cabinet ").join(" "))];this.addPalette("cabinets",mxResources.get("cabinets"),!1,mxUtils.bind(this,function(a){for(var c=0;c<b.length;c++)a.appendChild(b[c](a))}))}})();(function(){Sidebar.prototype.addCiscoSafePalette=function(){this.addCiscoSafeArchitecturePalette();this.addCiscoSafeCapabilityPalette();this.addCiscoSafeDesignPalette();this.addCiscoSafeThreatPalette()};Sidebar.prototype.addCiscoSafeArchitecturePalette=function(){var a=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;html=1;fillColor=#6ABD46;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;align=center;points=[[0.06,0.06,0],[0.94,0.06,0],[0.94,0.94,0],[0.06,0.94,0],[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0.25,0],[1,0.5,0],[1,0.75,0],[0.75,1,0],[0.5,1,0],[0.25,1,0],[0,0.75,0],[0,0.5,0],[0,0.25,0]];pointerEvents=1;shape=mxgraph.cisco_safe.architecture."; +"terminal_50mm2_x10","cabinet ").join(" ")),this.createVertexTemplateEntry(a+"terminal_75mm2;",15,70,"","Terminal 75mm2",null,null,this.getTagsForStencil("mxgraph.cabinets","terminal_75mm2","cabinet ").join(" ")),this.createVertexTemplateEntry(a+"terminal_75mm2_x10;",150,70,"","Terminal 75mm2 x10",null,null,this.getTagsForStencil("mxgraph.cabinets","terminal_75mm2_x10","cabinet ").join(" "))];this.addPalette("cabinets",mxResources.get("cabinets"),!1,mxUtils.bind(this,function(a){for(var b=0;b<c.length;b++)a.appendChild(c[b](a))}))}})();(function(){Sidebar.prototype.addCiscoSafePalette=function(){this.addCiscoSafeArchitecturePalette();this.addCiscoSafeCapabilityPalette();this.addCiscoSafeDesignPalette();this.addCiscoSafeThreatPalette()};Sidebar.prototype.addCiscoSafeArchitecturePalette=function(){var a=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;html=1;fillColor=#6ABD46;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;align=center;points=[[0.06,0.06,0],[0.94,0.06,0],[0.94,0.94,0],[0.06,0.94,0],[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0.25,0],[1,0.5,0],[1,0.75,0],[0.75,1,0],[0.5,1,0],[0.25,1,0],[0,0.75,0],[0,0.5,0],[0,0.25,0]];pointerEvents=1;shape=mxgraph.cisco_safe.architecture."; this.addPaletteFunctions("cisco_safeArchitecture","Cisco Safe / Architecture",!1,[this.createVertexTemplateEntry(a+"aci_controller;",50,50,"","ACI Controller",null,null,this.getTagsForStencil("mxgraph.cisco_safe.architecture","aci controller","cisco safe architecture").join(" ")),this.createVertexTemplateEntry(a+"aci_leaf_switch;",50,50,"","ACI Leaf Switch",null,null,this.getTagsForStencil("mxgraph.cisco_safe.architecture","aci leaf switch","cisco safe architecture").join(" ")),this.createVertexTemplateEntry(a+ "aci_spine_switch;",50,50,"","ACI Spine Switch",null,null,this.getTagsForStencil("mxgraph.cisco_safe.architecture","aci spine switch","cisco safe architecture").join(" ")),this.createVertexTemplateEntry(a+"adaptive_security_appliance;",50,50,"","Adaptive Security Appliance",null,null,this.getTagsForStencil("mxgraph.cisco_safe.architecture","adaptive security appliance","cisco safe architecture").join(" ")),this.createVertexTemplateEntry(a+"automated_system;",50,50,"","Automated System",null,null, this.getTagsForStencil("mxgraph.cisco_safe.architecture","automated system","cisco safe architecture").join(" ")),this.createVertexTemplateEntry(a+"blade_server;",50,50,"","Blade Server",null,null,this.getTagsForStencil("mxgraph.cisco_safe.architecture","blade server","cisco safe architecture").join(" ")),this.createVertexTemplateEntry(a+"catalyst_switch;",50,50,"","Catalyst Switch",null,null,this.getTagsForStencil("mxgraph.cisco_safe.architecture","catalyst switch","cisco safe architecture").join(" ")), @@ -4900,9 +4901,9 @@ null,null,this.getTagsForStencil("mxgraph.cisco_safe.capability","time synchroni this.getTagsForStencil("mxgraph.cisco_safe.capability","web application firewall","cisco safe capability").join(" ")),this.createVertexTemplateEntry(a+"web_reputation_filtering_dcs;",50,50,"","Web Reputation Filtering DCS",null,null,this.getTagsForStencil("mxgraph.cisco_safe.capability","web reputation filtering dcs","cisco safe capability").join(" ")),this.createVertexTemplateEntry(a+"web_security;",50,50,"","Web Security",null,null,this.getTagsForStencil("mxgraph.cisco_safe.capability","web security", "cisco safe capability").join(" ")),this.createVertexTemplateEntry(a+"wireless_connection;",50,50,"","Wireless Connection",null,null,this.getTagsForStencil("mxgraph.cisco_safe.capability","wireless connection","cisco safe capability").join(" ")),this.createVertexTemplateEntry(a+"wireless_intrusion_detection_system;",50,50,"","Wireless Intrusion Detection System",null,null,this.getTagsForStencil("mxgraph.cisco_safe.capability","wireless intrusion detection system","cisco safe capability").join(" ")), this.createVertexTemplateEntry(a+"wireless_intrusion_prevention_system;",50,50,"","Wireless Intrusion Prevention System",null,null,this.getTagsForStencil("mxgraph.cisco_safe.capability","wireless intrusion prevention system","cisco safe capability").join(" "))])};Sidebar.prototype.addCiscoSafeDesignPalette=function(){var a=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;html=1;fillColor=#A153A0;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;pointerEvents=1;align=center;points=[[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0.5,0],[0.75,1,0],[0.5,1,0],[0.25,1,0],[0,0.5,0],[0.125,0.25,0],[0.125,0.75,0],[0.875,0.25,0],[0.875,0.75,0]];shape=mxgraph.cisco_safe.design.", -d=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;html=1;fillColor=#A153A0;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;align=center;pointerEvents=1;shape=mxgraph.cisco_safe.design.";this.addPaletteFunctions("cisco_safeDesign","Cisco Safe / Design",!1,[this.createVertexTemplateEntry(a+"access_point;",50,45,"","Access Point",null,null,this.getTagsForStencil("mxgraph.cisco_safe.design","access point","cisco safe design").join(" ")),this.createVertexTemplateEntry(a+"aci_controller;",50,45,"","ACI Controller", -null,null,this.getTagsForStencil("mxgraph.cisco_safe.design","aci controller","cisco safe design").join(" ")),this.createVertexTemplateEntry(a+"aci_leaf_switch;",50,45,"","ACI Leaf Switch",null,null,this.getTagsForStencil("mxgraph.cisco_safe.design","aci leaf switch","cisco safe design").join(" ")),this.createVertexTemplateEntry(a+"aci_spine_switch;",50,45,"","ACI Spine Switch",null,null,this.getTagsForStencil("mxgraph.cisco_safe.design","aci spine switch","cisco safe design").join(" ")),this.createVertexTemplateEntry(d+ -"actor_1;",23.5,50,"","Actor (female)",null,null,this.getTagsForStencil("mxgraph.cisco_safe.design","actor female","cisco safe design").join(" ")),this.createVertexTemplateEntry(d+"actor_2;",19,50,"","Actor (male)",null,null,this.getTagsForStencil("mxgraph.cisco_safe.design","actor male","cisco safe design").join(" ")),this.createVertexTemplateEntry(a+"adaptive_security_appliance;",50,45,"","Adaptive Security Appliance",null,null,this.getTagsForStencil("mxgraph.cisco_safe.design","adaptive security appliance", +b=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;html=1;fillColor=#A153A0;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;align=center;pointerEvents=1;shape=mxgraph.cisco_safe.design.";this.addPaletteFunctions("cisco_safeDesign","Cisco Safe / Design",!1,[this.createVertexTemplateEntry(a+"access_point;",50,45,"","Access Point",null,null,this.getTagsForStencil("mxgraph.cisco_safe.design","access point","cisco safe design").join(" ")),this.createVertexTemplateEntry(a+"aci_controller;",50,45,"","ACI Controller", +null,null,this.getTagsForStencil("mxgraph.cisco_safe.design","aci controller","cisco safe design").join(" ")),this.createVertexTemplateEntry(a+"aci_leaf_switch;",50,45,"","ACI Leaf Switch",null,null,this.getTagsForStencil("mxgraph.cisco_safe.design","aci leaf switch","cisco safe design").join(" ")),this.createVertexTemplateEntry(a+"aci_spine_switch;",50,45,"","ACI Spine Switch",null,null,this.getTagsForStencil("mxgraph.cisco_safe.design","aci spine switch","cisco safe design").join(" ")),this.createVertexTemplateEntry(b+ +"actor_1;",23.5,50,"","Actor (female)",null,null,this.getTagsForStencil("mxgraph.cisco_safe.design","actor female","cisco safe design").join(" ")),this.createVertexTemplateEntry(b+"actor_2;",19,50,"","Actor (male)",null,null,this.getTagsForStencil("mxgraph.cisco_safe.design","actor male","cisco safe design").join(" ")),this.createVertexTemplateEntry(a+"adaptive_security_appliance;",50,45,"","Adaptive Security Appliance",null,null,this.getTagsForStencil("mxgraph.cisco_safe.design","adaptive security appliance", "cisco safe design").join(" ")),this.createVertexTemplateEntry(a+"automated_system;",50,45,"","Automated System",null,null,this.getTagsForStencil("mxgraph.cisco_safe.design","automated system","cisco safe design").join(" ")),this.createVertexTemplateEntry(a+"blade_server;",50,45,"","Blade Server",null,null,this.getTagsForStencil("mxgraph.cisco_safe.design","blade server","cisco safe design").join(" ")),this.createVertexTemplateEntry(a+"blank_device;",50,45,"","Blank Device",null,null,this.getTagsForStencil("mxgraph.cisco_safe.design", "blank device","cisco safe design").join(" ")),this.createVertexTemplateEntry(a+"blank_service;",50,45,"","Blank Service",null,null,this.getTagsForStencil("mxgraph.cisco_safe.design","blank service","cisco safe design").join(" ")),this.createVertexTemplateEntry(a+"call_manager;",50,45,"","Call Manager",null,null,this.getTagsForStencil("mxgraph.cisco_safe.design","call manager","cisco safe design").join(" ")),this.createVertexTemplateEntry(a+"catalyst_data_center_switch;",50,45,"","Catalyst Data Center Switch", null,null,this.getTagsForStencil("mxgraph.cisco_safe.design","catalyst data center switch","cisco safe design").join(" ")),this.createVertexTemplateEntry(a+"catalyst_switch_stack;",50,45,"","Catalyst Switch Stack",null,null,this.getTagsForStencil("mxgraph.cisco_safe.design","catalyst switch stack","cisco safe design").join(" ")),this.createVertexTemplateEntry(a+"cisco_amp;",50,45,"","Cisco Amp",null,null,this.getTagsForStencil("mxgraph.cisco_safe.design","cisco amp amplifier","cisco safe design").join(" ")), @@ -4964,7 +4965,7 @@ null,null,this.getTagsForStencil("mxgraph.citrix","Role Synchronizer","").join(" 38,38,"","WorxWeb",null,null,this.getTagsForStencil("mxgraph.citrix","WorxWeb","").join(" ")),this.createVertexTemplateEntry(a+"xenapp_server;",76,89,"","XenApp Server",null,null,this.getTagsForStencil("mxgraph.citrix","XenApp Server","").join(" ")),this.createVertexTemplateEntry(a+"xenapp_services;",76,90,"","XenApp Services",null,null,this.getTagsForStencil("mxgraph.citrix","XenApp Services","").join(" ")),this.createVertexTemplateEntry(a+"xenapp_web;",76,90,"","XenApp Web",null,null,this.getTagsForStencil("mxgraph.citrix", "XenApp Web","").join(" ")),this.createVertexTemplateEntry(a+"xencenter;",76,89,"","XenCenter",null,null,this.getTagsForStencil("mxgraph.citrix","XenCenter","").join(" ")),this.createVertexTemplateEntry(a+"xenclient;",91,77,"","XenClient",null,null,this.getTagsForStencil("mxgraph.citrix","XenClient","").join(" ")),this.createVertexTemplateEntry(a+"xenclient_synchronizer;fillColor=#CCCCCC;gradientColor=#000000;gradientDirection=south;",76,91,"","XenClient Synchronizer",null,null,this.getTagsForStencil("mxgraph.citrix", "Synchronizer","").join(" ")),this.createVertexTemplateEntry(a+"xendesktop_server;",75,91,"","XenDesktop Server",null,null,this.getTagsForStencil("mxgraph.citrix","XenDesktop Server","").join(" ")),this.createVertexTemplateEntry(a+"xenmobile;fillColor=#CCCCCC;gradientColor=#000000;gradientDirection=south;",70,89,"","XenMobile",null,null,this.getTagsForStencil("mxgraph.citrix","XenMobile","").join(" ")),this.createVertexTemplateEntry(a+"xenserver;",76.5,90,"","XenServer",null,null,this.getTagsForStencil("mxgraph.citrix", -"XenServer","").join(" "))])}})();(function(){Sidebar.prototype.addCumulusPalette=function(){var a=this,d=[this.createVertexTemplateEntry("aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;fontSize=12;verticalAlign=top;fontColor=#364149;shadow=0;dashed=0;image;image=img/lib/cumulus/switch_bare_metal_empty.svg;",96,24,"","Switch - Bare Metal (empty)",!1,null,this.getTagsForStencil(" ","switch bare metal empty","cumulus").join(" ")),this.createVertexTemplateEntry("aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;fontSize=12;verticalAlign=top;fontColor=#364149;shadow=0;dashed=0;image;image=img/lib/cumulus/switch_cumulus_linux.svg;", +"XenServer","").join(" "))])}})();(function(){Sidebar.prototype.addCumulusPalette=function(){var a=this,b=[this.createVertexTemplateEntry("aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;fontSize=12;verticalAlign=top;fontColor=#364149;shadow=0;dashed=0;image;image=img/lib/cumulus/switch_bare_metal_empty.svg;",96,24,"","Switch - Bare Metal (empty)",!1,null,this.getTagsForStencil(" ","switch bare metal empty","cumulus").join(" ")),this.createVertexTemplateEntry("aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;fontSize=12;verticalAlign=top;fontColor=#364149;shadow=0;dashed=0;image;image=img/lib/cumulus/switch_cumulus_linux.svg;", 96,24,"","Switch - Cumulus Linux",!1,null,this.getTagsForStencil(" ","switch cumulus linux","cumulus").join(" ")),this.createVertexTemplateEntry("aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;fontSize=12;verticalAlign=top;fontColor=#364149;shadow=0;dashed=0;image;image=img/lib/cumulus/switch_out_of_band.svg;",96,24,"","Switch - Out of Band",!1,null,this.getTagsForStencil(" ","switch_out_of_band","cumulus").join(" ")),this.createVertexTemplateEntry("aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;fontSize=12;verticalAlign=top;fontColor=#364149;shadow=0;dashed=0;image;image=img/lib/cumulus/switch_voyager.svg;", 96,24,"","Switch Voyager",!1,null,this.getTagsForStencil(" ","switch voyager","cumulus").join(" ")),this.createVertexTemplateEntry("aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;fontSize=12;verticalAlign=top;fontColor=#364149;shadow=0;dashed=0;image;image=img/lib/cumulus/cumulus_linux_icon.svg;",96,96,"","Linux Icon",!1,null,this.getTagsForStencil(" ","cumulus linux icon","cumulus").join(" ")),this.createVertexTemplateEntry("aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;fontSize=12;verticalAlign=top;fontColor=#364149;shadow=0;dashed=0;image;image=img/lib/cumulus/cumulus_netq_icon.svg;", 96,96,"","NetQ Icon",!1,null,this.getTagsForStencil(" ","","cumulus").join(" ")),this.createVertexTemplateEntry("aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;fontSize=12;verticalAlign=top;fontColor=#364149;shadow=0;dashed=0;image;image=img/lib/cumulus/rack_bare_metal.svg;",96,114,"","Rack Bare Metal",!1,null,this.getTagsForStencil(" ","rack bare metal","cumulus").join(" ")),this.createVertexTemplateEntry("aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;fontSize=12;verticalAlign=top;fontColor=#364149;shadow=0;dashed=0;image;image=img/lib/cumulus/rack_cumulus_linux.svg;", @@ -4977,15 +4978,15 @@ null,null,this.getTagsForStencil("mxgraph.citrix","Role Synchronizer","").join(" 100,100,"","Virtual",null,"cumulusvirtual"),this.createEdgeTemplateEntry("endArrow=block;html=1;startArrow=block;startFill=1;endFill=1;strokeColor=#83CA73;dashed=1;dashPattern=5 5;",100,100,"","Virtual",null,"cumulusvirtual"),this.createEdgeTemplateEntry("endArrow=block;html=1;startArrow=block;startFill=1;endFill=1;strokeColor=#2EAB6D;dashed=1;dashPattern=5 5;",100,100,"","Virtual",null,"cumulusvirtual"),this.createEdgeTemplateEntry("endArrow=block;html=1;startArrow=block;startFill=1;endFill=1;strokeColor=#4EFDC0;dashed=1;dashPattern=5 5;", 100,100,"","Virtual",null,"cumulusvirtual"),this.createVertexTemplateEntry("aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;fontSize=12;verticalAlign=top;fontColor=#364149;shadow=0;dashed=0;image;image=img/lib/cumulus/netq_agent.svg;",18,18,"","NetQ Agent",!1,null,this.getTagsForStencil(" ","netq agent","cumulus").join(" ")),this.createVertexTemplateEntry("aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;fontSize=12;verticalAlign=top;fontColor=#364149;shadow=0;dashed=0;image;image=img/lib/cumulus/netq_telemetry_server.svg;", 96,24,"","NetQ Telemetry Server",!1,null,this.getTagsForStencil(" ","netq telemetry server","cumulus").join(" ")),this.createVertexTemplateEntry("aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;fontSize=12;verticalAlign=top;fontColor=#364149;shadow=0;dashed=0;image;image=img/lib/cumulus/netq_server.svg;",96,20,"","NetQ Server",!1,null,this.getTagsForStencil(" ","netq server","cumulus").join(" ")),this.createVertexTemplateEntry("aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;shadow=0;dashed=0;image;image=img/lib/cumulus/internet.svg;labelPosition=center;verticalLabelPosition=middle;verticalAlign=middle;fontSize=14;fontColor=#36424A;", -274,98,"Internet","Internet",!0,null,this.getTagsForStencil(" ","internet","cumulus").join(" ")),this.createVertexTemplateEntry("aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;fontSize=12;verticalAlign=top;fontColor=#364149;shadow=0;dashed=0;image;image=img/lib/cumulus/container.svg;",90,80,"","Container",!0,null,this.getTagsForStencil(" ","container","cumulus").join(" ")),this.addEntry("cumuluspbr switch",function(){var e=new mxCell("swp51",new mxGeometry(0,0,60,24),"rounded=0;whiteSpace=wrap;html=1;fillColor=#FB9F41;strokeColor=none;fontColor=#FFFFFF;"); -e.vertex=!0;var b=new mxCell("PBR",new mxGeometry(60,0,60,24),"text;verticalAlign=middle;align=center;fontColor=#FB9F41;fontStyle=1");b.vertex=!0;return a.createVertexTemplateFromCells([e,b],120,24,"Package Diagram")}),this.createVertexTemplateEntry("aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;fontSize=12;verticalAlign=top;fontColor=#364149;shadow=0;dashed=0;image;image=img/lib/cumulus/ddos_server.svg;",96,20,"192.168.0.32","DDos Server",!0,null,this.getTagsForStencil(" ","ddos server", +274,98,"Internet","Internet",!0,null,this.getTagsForStencil(" ","internet","cumulus").join(" ")),this.createVertexTemplateEntry("aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;fontSize=12;verticalAlign=top;fontColor=#364149;shadow=0;dashed=0;image;image=img/lib/cumulus/container.svg;",90,80,"","Container",!0,null,this.getTagsForStencil(" ","container","cumulus").join(" ")),this.addEntry("cumuluspbr switch",function(){var b=new mxCell("swp51",new mxGeometry(0,0,60,24),"rounded=0;whiteSpace=wrap;html=1;fillColor=#FB9F41;strokeColor=none;fontColor=#FFFFFF;"); +b.vertex=!0;var c=new mxCell("PBR",new mxGeometry(60,0,60,24),"text;verticalAlign=middle;align=center;fontColor=#FB9F41;fontStyle=1");c.vertex=!0;return a.createVertexTemplateFromCells([b,c],120,24,"Package Diagram")}),this.createVertexTemplateEntry("aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;fontSize=12;verticalAlign=top;fontColor=#364149;shadow=0;dashed=0;image;image=img/lib/cumulus/ddos_server.svg;",96,20,"192.168.0.32","DDos Server",!0,null,this.getTagsForStencil(" ","ddos server", "cumulus").join(" ")),this.createVertexTemplateEntry("aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;fontSize=12;verticalAlign=top;fontColor=#364149;shadow=0;dashed=0;image;image=img/lib/cumulus/switch.svg;",96,20,"","Switch",!0,null,this.getTagsForStencil(" ","switch","cumulus").join(" ")),this.createVertexTemplateEntry("aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;fontSize=12;verticalAlign=top;fontColor=#364149;shadow=0;dashed=0;image;image=img/lib/cumulus/limed_spruce.svg;", 300,68,"","Limed Spruce",!1,null,this.getTagsForStencil(" ","limed spruce","cumulus").join(" ")),this.createVertexTemplateEntry("fillColor=#36424A;strokeColor=none;",50,50,"","Limited Spruce",!0,null,this.getTagsForStencil(" ","color limited spruce","cumulus").join(" ")),this.createVertexTemplateEntry("fillColor=#515D68;strokeColor=none;",50,50,"","Nevada",!0,null,this.getTagsForStencil(" ","color nevada","cumulus").join(" ")),this.createVertexTemplateEntry("fillColor=#6E7B86;strokeColor=none;",50, 50,"","Rolling Stone",!0,null,this.getTagsForStencil(" ","color rolling stone","cumulus").join(" ")),this.createVertexTemplateEntry("fillColor=#8C9AA6;strokeColor=none;",50,50,"","Gray Chateau",!0,null,this.getTagsForStencil(" ","color gray chateau","cumulus").join(" ")),this.createVertexTemplateEntry("fillColor=#AEB8C3;strokeColor=none;",50,50,"","Cadet Blue",!0,null,this.getTagsForStencil(" ","color cadet blue","cumulus").join(" ")),this.createVertexTemplateEntry("fillColor=#D2D6DF;strokeColor=none;", 50,50,"","Heather",!0,null,this.getTagsForStencil(" ","color heather","cumulus").join(" ")),this.createVertexTemplateEntry("fillColor=#EAEDF2;strokeColor=none;",50,50,"","Athens Gray",!0,null,this.getTagsForStencil(" ","color athens gray","cumulus").join(" ")),this.createVertexTemplateEntry("fillColor=#7CCC6C;strokeColor=none;",50,50,"","Mantis",!0,null,this.getTagsForStencil(" ","color mantis","cumulus").join(" ")),this.createVertexTemplateEntry("fillColor=#4BC05B;strokeColor=none;",50,50,"","Fern", !0,null,this.getTagsForStencil(" ","color fern","cumulus").join(" ")),this.createVertexTemplateEntry("fillColor=#00AD69;strokeColor=none;",50,50,"","Jade",!0,null,this.getTagsForStencil(" ","color jade","cumulus").join(" ")),this.createVertexTemplateEntry("fillColor=#009271;strokeColor=none;",50,50,"","Observatory",!0,null,this.getTagsForStencil(" ","color observatory","cumulus").join(" ")),this.createVertexTemplateEntry("fillColor=#FFC82E;strokeColor=none;",50,50,"","Energy Jellow",!0,null,this.getTagsForStencil(" ", "color energy jellow","cumulus").join(" ")),this.createVertexTemplateEntry("fillColor=#FFA12D;strokeColor=none;",50,50,"","Neon Carrot",!0,null,this.getTagsForStencil(" ","color neon carrot","cumulus").join(" ")),this.createVertexTemplateEntry("fillColor=#F1446F;strokeColor=none;",50,50,"","Radical Red",!0,null,this.getTagsForStencil(" ","color radical red","cumulus").join(" ")),this.createVertexTemplateEntry("fillColor=#83389B;strokeColor=none;",50,50,"","Rarity",!0,null,this.getTagsForStencil(" ", -"color rarity","cumulus").join(" ")),this.createVertexTemplateEntry("fillColor=#1EB5BD;strokeColor=none;",50,50,"","Seagull",!0,null,this.getTagsForStencil(" ","color seagull","cumulus").join(" ")),this.createVertexTemplateEntry("fillColor=#78CDD1;strokeColor=none;",50,50,"","Half Baked",!0,null,this.getTagsForStencil(" ","color half baked","cumulus").join(" "))];this.addPalette("cumulus","Cumulus",!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))}})();(function(){Sidebar.prototype.addDFDPalette=function(){this.addPaletteFunctions("dfd","Data Flow Diagram",!1,[this.createVertexTemplateEntry("html=1;dashed=0;whitespace=wrap;shape=mxgraph.dfd.start",80,30,"","Start / End",null,null,this.getTagsForStencil("mxgraph.flowchart","start end","dfd data flow diagram ").join(" ")),this.createVertexTemplateEntry("html=1;dashed=0;whitespace=wrap;",100,50,"","Activity / Process / Entity / External Interactor",null,null,this.getTagsForStencil("mxgraph.flowchart", +"color rarity","cumulus").join(" ")),this.createVertexTemplateEntry("fillColor=#1EB5BD;strokeColor=none;",50,50,"","Seagull",!0,null,this.getTagsForStencil(" ","color seagull","cumulus").join(" ")),this.createVertexTemplateEntry("fillColor=#78CDD1;strokeColor=none;",50,50,"","Half Baked",!0,null,this.getTagsForStencil(" ","color half baked","cumulus").join(" "))];this.addPalette("cumulus","Cumulus",!1,mxUtils.bind(this,function(a){for(var c=0;c<b.length;c++)a.appendChild(b[c](a))}))}})();(function(){Sidebar.prototype.addDFDPalette=function(){this.addPaletteFunctions("dfd","Data Flow Diagram",!1,[this.createVertexTemplateEntry("html=1;dashed=0;whitespace=wrap;shape=mxgraph.dfd.start",80,30,"","Start / End",null,null,this.getTagsForStencil("mxgraph.flowchart","start end","dfd data flow diagram ").join(" ")),this.createVertexTemplateEntry("html=1;dashed=0;whitespace=wrap;",100,50,"","Activity / Process / Entity / External Interactor",null,null,this.getTagsForStencil("mxgraph.flowchart", "activity process entity external interactor","dfd data flow diagram ").join(" ")),this.createVertexTemplateEntry("shape=rhombus;html=1;dashed=0;whitespace=wrap;perimeter=rhombusPerimeter;",60,50,"","Decision / Entity Relationship",null,null,this.getTagsForStencil("mxgraph.flowchart","decision entity relationship","dfd data flow diagram ").join(" ")),this.createVertexTemplateEntry("shape=ellipse;html=1;dashed=0;whitespace=wrap;aspect=fixed;perimeter=ellipsePerimeter;",30,30,"","Reference",null,null, this.getTagsForStencil("mxgraph.flowchart","reference","dfd data flow diagram ").join(" ")),this.createVertexTemplateEntry("shape=parallelogram;perimeter=parallelogramPerimeter;whiteSpace=wrap;html=1;dashed=0;",100,50,"","Product / Result",null,null,this.getTagsForStencil("mxgraph.flowchart","product result","dfd data flow diagram ").join(" ")),this.createVertexTemplateEntry("shape=manualInput;whiteSpace=wrap;html=1;dashed=0;size=15;",100,50,"","Order / Command",null,null,this.getTagsForStencil("mxgraph.flowchart", "order command","dfd data flow diagram ").join(" ")),this.createVertexTemplateEntry("shape=document;whiteSpace=wrap;html=1;boundedLbl=1;dashed=0;flipH=1;",100,70,"","Information / Data Carrier / SOP",null,null,this.getTagsForStencil("mxgraph.flowchart","information data carrier sop","dfd data flow diagram ").join(" ")),this.createVertexTemplateEntry("triangle;whiteSpace=wrap;html=1;dashed=0;direction=south;",60,60,"","Information/Data Carrier/SOP / Stop State",null,null,this.getTagsForStencil("mxgraph.flowchart", @@ -4995,17 +4996,17 @@ this.createVertexTemplateEntry("html=1;dashed=0;whitespace=wrap;shape=mxgraph.df 60,60,"","Stop State",null,null,this.getTagsForStencil("mxgraph.flowchart","stop state","dfd data flow diagram ").join(" ")),this.createVertexTemplateEntry("html=1;dashed=0;whitespace=wrap;shape=partialRectangle;right=0;left=0;fillColor=none;",100,30,"","Data Store",null,null,this.getTagsForStencil("mxgraph.flowchart","data store","dfd data flow diagram ").join(" ")),this.createVertexTemplateEntry("html=1;dashed=0;whitespace=wrap;shape=partialRectangle;right=0;fillColor=none;",100,30,"","Data Store", null,null,this.getTagsForStencil("mxgraph.flowchart","data store","dfd data flow diagram ").join(" ")),this.createVertexTemplateEntry("html=1;dashed=0;whitespace=wrap;shape=mxgraph.dfd.dataStoreID;align=left;spacingLeft=3;points=[[0,0],[0.5,0],[1,0],[0,0.5],[1,0.5],[0,1],[0.5,1],[1,1]];",100,30,"","Data Store with ID",null,null,this.getTagsForStencil("mxgraph.flowchart","data store with id identification","dfd data flow diagram ").join(" ")),this.createVertexTemplateEntry("swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=20;fillColor=#ffffff;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=0;marginBottom=0;swimlaneFillColor=#ffffff;", 100,50,"","Entity",null,null,this.getTagsForStencil("mxgraph.flowchart","entity","dfd data flow diagram ").join(" ")),this.createVertexTemplateEntry("shape=cloud;whiteSpace=wrap;html=1;",120,120,"","Object",null,null,this.getTagsForStencil("mxgraph.flowchart","object","dfd data flow diagram ").join(" ")),this.createVertexTemplateEntry("shape=ellipse;html=1;dashed=0;whitespace=wrap;perimeter=ellipsePerimeter;",100,50,"","Oval Process",null,null,this.getTagsForStencil("mxgraph.flowchart","oval process", -"dfd data flow diagram ").join(" ")),this.createVertexTemplateEntry("shape=cylinder;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;",60,80,"","Data Store",null,null,this.getTagsForStencil("mxgraph.flowchart","data store","dfd data flow diagram ").join(" ")),this.addEntry("dfd data flow diagram external entity",function(){var a=new mxCell("",new mxGeometry(0,0,100,100),"html=1;dashed=0;whitespace=wrap;shape=mxgraph.dfd.externalEntity");a.vertex=!0;var d=new mxCell("Id",new mxGeometry(0,0, -20,20),"autosize=1;part=1;resizable=0;strokeColor=inherit;fillColor=inherit;gradientColor=inherit;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(15,15);d.vertex=!0;a.insert(d);return sb.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,"External Entity")}),this.createVertexTemplateEntry("html=1;dashed=0;whitespace=wrap;shape=mxgraph.dfd.loop",80,30,"","Loop",null,null,this.getTagsForStencil("mxgraph.flowchart","loop","dfd data flow diagram ").join(" ")),this.createEdgeTemplateEntry("endArrow=classic;html=1;", -50,50,"","Directional Connector",null,"dfd data flow diagram directional directed")])}})();(function(){Sidebar.prototype.addEipMessageConstructionPalette=function(a){var d=this,e=[this.createEdgeTemplateEntry("edgeStyle=none;html=1;strokeColor=#808080;endArrow=block;endSize=10;dashed=0;verticalAlign=bottom;strokeWidth=2;",160,0,"","Pipe",null,this.getTagsForStencil("mxgraph.eip","","eip enterprise integration pattern message construction pipe").join(" ")),this.createVertexTemplateEntry("strokeWidth=2;dashed=0;align=center;fontSize=8;shape=rect;fillColor=#c0f5a9;strokeColor=#000000;verticalLabelPosition=bottom;verticalAlign=top;", -150,90,"","Filter",null,null,this.getTagsForStencil("mxgraph.eip","","eip enterprise integration pattern message construction filter").join(" ")),this.addEntry("eip enterprise integration pattern message construction command message",function(){var a=new mxCell("",new mxGeometry(0,0,12,12),"strokeWidth=2;dashed=0;align=center;fontSize=8;shape=ellipse;fillColor=#808080;strokeColor=none;");a.vertex=!0;var c=new mxCell("C",new mxGeometry(16,18,12,12),"strokeWidth=2;dashed=0;align=center;fontSize=8;shape=rect;fillColor=#FF8080;strokeColor=#000000;fontStyle=1;"); -c.vertex=!0;var e=new mxCell("",new mxGeometry(0,0,0,0),"edgeStyle=orthogonalEdgeStyle;rounded=0;exitX=0;exitY=0.5;endArrow=none;dashed=0;html=1;strokeColor=#808080;strokeWidth=2;");e.geometry.relative=!0;e.edge=!0;a.insertEdge(e,!1);c.insertEdge(e,!0);return d.createVertexTemplateFromCells([e,a,c],28,30,"Command Message")}),this.addDataEntry("eip enterprise integration pattern message construction correlation identifier",78,30,"Correlation Identifier","5ZZLT8JAEIB/Ta+mDwv1KAicTEw8qMeVDu2GpUO2ixZ/vbPdAVorilExkTZN5rEznf1mtqkXDRfVRItlfo0pKC8aedFQIxonLaohKOWFvky96MoLQ58eLxzv8Qa1118KDYU5JCB0AU9CrcBZnKE0a8UGSDO4ZRW1yTHDQqjRzjrQuCpSsBl90qCS5r4hP1j5LLZakV5qjc9kKLCwkako821gbha0/6uAxNJonMMQFeq6iCjx7b313MnU5OQJyeIKtlW2GJS40lM29ZzJCJ0BY4m7pOpAxjQBXIDRa1qiQQkjn9rZRenUbLtuB5kE5vw+8+gkmCdd5v2/Y35+APMdqUeF03mbDnnHUrVZNYl06I3HF4RwD6ifRMChNygpY+hXvGEe8HXrBGziXaM4pPl5eJMl6H+UxfW2k6XuxXYnB7Un/rw9XeStQRZKZgXJU+IK1ILBDAtzK19sdGL7k4ullem9clnaczCjdu6f9o2HDw3XB9pA9dVOPnPNdgXvKweZ5aZt+8549zr8Ln8LoIap6dLjaX/nHPj1tcnH5QSsN9bN6uubqDcBvdbYBnwMj9CI/n8eZA6I/aPhTDo4B6c8171jzTWpu39Q9z1v/qK+Ag=="), -this.addEntry("eip enterprise integration pattern message construction document message",function(){var a=new mxCell("",new mxGeometry(0,0,12,12),"strokeWidth=2;dashed=0;align=center;fontSize=8;shape=ellipse;fillColor=#808080;strokeColor=none;");a.vertex=!0;var c=new mxCell("D",new mxGeometry(16,18,12,12),"strokeWidth=2;dashed=0;align=center;fontSize=8;shape=rect;fillColor=#C7A0FF;strokeColor=#000000;fontStyle=1;");c.vertex=!0;var e=new mxCell("",new mxGeometry(0,0,0,0),"edgeStyle=orthogonalEdgeStyle;rounded=0;exitX=0;exitY=0.5;endArrow=none;dashed=0;html=1;strokeColor=#808080;strokeWidth=2;"); -e.geometry.relative=!0;e.edge=!0;a.insertEdge(e,!1);c.insertEdge(e,!0);return d.createVertexTemplateFromCells([e,a,c],28,30,"Document Message")}),this.addEntry("eip enterprise integration pattern message construction event message",function(){var a=new mxCell("",new mxGeometry(0,0,12,12),"strokeWidth=2;dashed=0;align=center;fontSize=8;shape=ellipse;fillColor=#808080;strokeColor=none;");a.vertex=!0;var c=new mxCell("E",new mxGeometry(16,18,12,12),"strokeWidth=2;dashed=0;align=center;fontSize=8;shape=rect;fillColor=#83BEFF;strokeColor=#000000;fontStyle=1;"); -c.vertex=!0;var e=new mxCell("",new mxGeometry(0,0,0,0),"edgeStyle=orthogonalEdgeStyle;rounded=0;exitX=0;exitY=0.5;endArrow=none;dashed=0;html=1;strokeColor=#808080;strokeWidth=2;");e.geometry.relative=!0;e.edge=!0;a.insertEdge(e,!1);c.insertEdge(e,!0);return d.createVertexTemplateFromCells([e,a,c],28,30,"Event Message")}),this.createVertexTemplateEntry("strokeWidth=3;outlineConnect=0;dashed=0;align=center;fontSize=8;shape=mxgraph.eip.messExp;html=1;verticalLabelPosition=bottom;strokeColor=#000000;verticalAlign=top", +"dfd data flow diagram ").join(" ")),this.createVertexTemplateEntry("shape=cylinder;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;",60,80,"","Data Store",null,null,this.getTagsForStencil("mxgraph.flowchart","data store","dfd data flow diagram ").join(" ")),this.addEntry("dfd data flow diagram external entity",function(){var a=new mxCell("",new mxGeometry(0,0,100,100),"html=1;dashed=0;whitespace=wrap;shape=mxgraph.dfd.externalEntity");a.vertex=!0;var b=new mxCell("Id",new mxGeometry(0,0, +20,20),"autosize=1;part=1;resizable=0;strokeColor=inherit;fillColor=inherit;gradientColor=inherit;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(15,15);b.vertex=!0;a.insert(b);return sb.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,"External Entity")}),this.createVertexTemplateEntry("html=1;dashed=0;whitespace=wrap;shape=mxgraph.dfd.loop",80,30,"","Loop",null,null,this.getTagsForStencil("mxgraph.flowchart","loop","dfd data flow diagram ").join(" ")),this.createEdgeTemplateEntry("endArrow=classic;html=1;", +50,50,"","Directional Connector",null,"dfd data flow diagram directional directed")])}})();(function(){Sidebar.prototype.addEipMessageConstructionPalette=function(a){var b=this,e=[this.createEdgeTemplateEntry("edgeStyle=none;html=1;strokeColor=#808080;endArrow=block;endSize=10;dashed=0;verticalAlign=bottom;strokeWidth=2;",160,0,"","Pipe",null,this.getTagsForStencil("mxgraph.eip","","eip enterprise integration pattern message construction pipe").join(" ")),this.createVertexTemplateEntry("strokeWidth=2;dashed=0;align=center;fontSize=8;shape=rect;fillColor=#c0f5a9;strokeColor=#000000;verticalLabelPosition=bottom;verticalAlign=top;", +150,90,"","Filter",null,null,this.getTagsForStencil("mxgraph.eip","","eip enterprise integration pattern message construction filter").join(" ")),this.addEntry("eip enterprise integration pattern message construction command message",function(){var a=new mxCell("",new mxGeometry(0,0,12,12),"strokeWidth=2;dashed=0;align=center;fontSize=8;shape=ellipse;fillColor=#808080;strokeColor=none;");a.vertex=!0;var d=new mxCell("C",new mxGeometry(16,18,12,12),"strokeWidth=2;dashed=0;align=center;fontSize=8;shape=rect;fillColor=#FF8080;strokeColor=#000000;fontStyle=1;"); +d.vertex=!0;var f=new mxCell("",new mxGeometry(0,0,0,0),"edgeStyle=orthogonalEdgeStyle;rounded=0;exitX=0;exitY=0.5;endArrow=none;dashed=0;html=1;strokeColor=#808080;strokeWidth=2;");f.geometry.relative=!0;f.edge=!0;a.insertEdge(f,!1);d.insertEdge(f,!0);return b.createVertexTemplateFromCells([f,a,d],28,30,"Command Message")}),this.addDataEntry("eip enterprise integration pattern message construction correlation identifier",78,30,"Correlation Identifier","5ZZLT8JAEIB/Ta+mDwv1KAicTEw8qMeVDu2GpUO2ixZ/vbPdAVorilExkTZN5rEznf1mtqkXDRfVRItlfo0pKC8aedFQIxonLaohKOWFvky96MoLQ58eLxzv8Qa1118KDYU5JCB0AU9CrcBZnKE0a8UGSDO4ZRW1yTHDQqjRzjrQuCpSsBl90qCS5r4hP1j5LLZakV5qjc9kKLCwkako821gbha0/6uAxNJonMMQFeq6iCjx7b313MnU5OQJyeIKtlW2GJS40lM29ZzJCJ0BY4m7pOpAxjQBXIDRa1qiQQkjn9rZRenUbLtuB5kE5vw+8+gkmCdd5v2/Y35+APMdqUeF03mbDnnHUrVZNYl06I3HF4RwD6ifRMChNygpY+hXvGEe8HXrBGziXaM4pPl5eJMl6H+UxfW2k6XuxXYnB7Un/rw9XeStQRZKZgXJU+IK1ILBDAtzK19sdGL7k4ullem9clnaczCjdu6f9o2HDw3XB9pA9dVOPnPNdgXvKweZ5aZt+8549zr8Ln8LoIap6dLjaX/nHPj1tcnH5QSsN9bN6uubqDcBvdbYBnwMj9CI/n8eZA6I/aPhTDo4B6c8171jzTWpu39Q9z1v/qK+Ag=="), +this.addEntry("eip enterprise integration pattern message construction document message",function(){var a=new mxCell("",new mxGeometry(0,0,12,12),"strokeWidth=2;dashed=0;align=center;fontSize=8;shape=ellipse;fillColor=#808080;strokeColor=none;");a.vertex=!0;var d=new mxCell("D",new mxGeometry(16,18,12,12),"strokeWidth=2;dashed=0;align=center;fontSize=8;shape=rect;fillColor=#C7A0FF;strokeColor=#000000;fontStyle=1;");d.vertex=!0;var f=new mxCell("",new mxGeometry(0,0,0,0),"edgeStyle=orthogonalEdgeStyle;rounded=0;exitX=0;exitY=0.5;endArrow=none;dashed=0;html=1;strokeColor=#808080;strokeWidth=2;"); +f.geometry.relative=!0;f.edge=!0;a.insertEdge(f,!1);d.insertEdge(f,!0);return b.createVertexTemplateFromCells([f,a,d],28,30,"Document Message")}),this.addEntry("eip enterprise integration pattern message construction event message",function(){var a=new mxCell("",new mxGeometry(0,0,12,12),"strokeWidth=2;dashed=0;align=center;fontSize=8;shape=ellipse;fillColor=#808080;strokeColor=none;");a.vertex=!0;var d=new mxCell("E",new mxGeometry(16,18,12,12),"strokeWidth=2;dashed=0;align=center;fontSize=8;shape=rect;fillColor=#83BEFF;strokeColor=#000000;fontStyle=1;"); +d.vertex=!0;var f=new mxCell("",new mxGeometry(0,0,0,0),"edgeStyle=orthogonalEdgeStyle;rounded=0;exitX=0;exitY=0.5;endArrow=none;dashed=0;html=1;strokeColor=#808080;strokeWidth=2;");f.geometry.relative=!0;f.edge=!0;a.insertEdge(f,!1);d.insertEdge(f,!0);return b.createVertexTemplateFromCells([f,a,d],28,30,"Event Message")}),this.createVertexTemplateEntry("strokeWidth=3;outlineConnect=0;dashed=0;align=center;fontSize=8;shape=mxgraph.eip.messExp;html=1;verticalLabelPosition=bottom;strokeColor=#000000;verticalAlign=top", 48,48,"","Message Expiration",null,null,this.getTagsForStencil("mxgraph.eip","","eip enterprise integration pattern message construction message expiration").join(" ")),this.addDataEntry("eip enterprise integration pattern message construction message sequence",60,24,"Message Sequence","5VVdb4MgFP01vKtY4+vKZp+WLNnDnpneKSmKQWp1v34gtKWhXfawNPswMbn33A+45xBAmLTTRtK+eRQVcIQfECZSCGWtdiLAOUoiViF8j5Ik0j9KiivReIlGPZXQqa8UJLZgpHwHFrHAoGbugHInRzDpMcJr6Ko7KcVeu69clFsNNarlLjooKbZABBdyqcUxIUUUHSMvrFKNjiS20zN7N2tg7dlVoarhbJBB7GTpoJWFFJU1uNnScNyl0M26AdGCkrNOkcCpYuN5dzpYtz7muVI9Ip29hF6wTg1e5ycD6ITJ9ct9krVhGxw8bycnaBHisij494iShaKsfogoafKtoqSBKHGgSkhoRYdm0cnwTTmrO22XmhjQYqzfRKcc37nRo6G9sSWUykQZ555seVQUGbkkaLR8h35uO/FRwBGkgglduyCuiDO7qDt7ezeUBzXA6kadY5fU8yT4lOFVwHB47v8Sw67gcLJuT3gWEI7/A+FpfiPCtXt6ye2V4z/0Hw=="), -this.createVertexTemplateEntry("strokeWidth=3;outlineConnect=0;dashed=0;align=center;fontSize=8;shape=mxgraph.eip.retAddr;html=1;verticalLabelPosition=bottom;fillColor=#FFE040;strokeColor=#000000;verticalAlign=top;",78,48,"","Return Address",null,null,this.getTagsForStencil("mxgraph.eip","retAddr","eip enterprise integration pattern message construction return address").join(" "))];this.addPalette("eipMessage Construction","EIP / Message Construction",a||!1,mxUtils.bind(this,function(a){for(var b= -0;b<e.length;b++)a.appendChild(e[b](a))}))};Sidebar.prototype.addEipMessageRoutingPalette=function(a){var d=[this.createVertexTemplateEntry("strokeWidth=2;outlineConnect=0;dashed=0;align=center;fontSize=8;fillColor=#c0f5a9;verticalLabelPosition=bottom;verticalAlign=top;strokeColor=#000000;shape=mxgraph.eip.aggregator;",150,90,"","Aggregator",null,null,this.getTagsForStencil("mxgraph.eip","aggregator","eip enterprise integration pattern message routing ").join(" ")),this.createVertexTemplateEntry("strokeWidth=2;outlineConnect=0;dashed=0;align=center;fontSize=8;fillColor=#c0f5a9;verticalLabelPosition=bottom;verticalAlign=top;strokeColor=#000000;shape=mxgraph.eip.composed_message_processor;", +this.createVertexTemplateEntry("strokeWidth=3;outlineConnect=0;dashed=0;align=center;fontSize=8;shape=mxgraph.eip.retAddr;html=1;verticalLabelPosition=bottom;fillColor=#FFE040;strokeColor=#000000;verticalAlign=top;",78,48,"","Return Address",null,null,this.getTagsForStencil("mxgraph.eip","retAddr","eip enterprise integration pattern message construction return address").join(" "))];this.addPalette("eipMessage Construction","EIP / Message Construction",a||!1,mxUtils.bind(this,function(a){for(var c= +0;c<e.length;c++)a.appendChild(e[c](a))}))};Sidebar.prototype.addEipMessageRoutingPalette=function(a){var b=[this.createVertexTemplateEntry("strokeWidth=2;outlineConnect=0;dashed=0;align=center;fontSize=8;fillColor=#c0f5a9;verticalLabelPosition=bottom;verticalAlign=top;strokeColor=#000000;shape=mxgraph.eip.aggregator;",150,90,"","Aggregator",null,null,this.getTagsForStencil("mxgraph.eip","aggregator","eip enterprise integration pattern message routing ").join(" ")),this.createVertexTemplateEntry("strokeWidth=2;outlineConnect=0;dashed=0;align=center;fontSize=8;fillColor=#c0f5a9;verticalLabelPosition=bottom;verticalAlign=top;strokeColor=#000000;shape=mxgraph.eip.composed_message_processor;", 150,90,"","Composed Message Processor",null,null,this.getTagsForStencil("mxgraph.eip","composed_message_processor","eip enterprise integration pattern message routing ").join(" ")),this.createVertexTemplateEntry("strokeWidth=2;outlineConnect=0;dashed=0;align=center;fontSize=8;fillColor=#c0f5a9;verticalLabelPosition=bottom;verticalAlign=top;strokeColor=#000000;shape=mxgraph.eip.content_based_router;",150,90,"","Content Based Router",null,null,this.getTagsForStencil("mxgraph.eip","content_based_router", "eip enterprise integration pattern message routing ").join(" ")),this.createVertexTemplateEntry("strokeWidth=2;outlineConnect=0;dashed=0;align=center;fontSize=8;fillColor=#c0f5a9;verticalLabelPosition=bottom;verticalAlign=top;strokeColor=#000000;shape=mxgraph.eip.dynamic_router;",150,90,"","Dynamic Router",null,null,this.getTagsForStencil("mxgraph.eip","dynamic_router","eip enterprise integration pattern message routing ").join(" ")),this.addDataEntry("eip enterprise integration pattern message routing message broker", 120,90,"Message Broker","5ZjJboMwEIafxneDWZJjQ9qcesqhZxcGjGpwZJytT1+DnQUpUZEqmYQiIWb+YcbMZySwEUmqw0rSDXsXGXBEXhFJpBDKWNUhAc6Rj8sMkSXyfaxP5L/diXpdFG+ohFoNSfBNwo7yLRjFCI06cis0Soov+CgzxbTgI7LIaMOgLYC1Q3lZ1NpO9YggtZCLWq3L7zZ7pt2G0U1rS0hVGy05TwQXsitO8jz/TNsyZpSrCO4OHbFPCFLB4W6XnWRbXIGoQMmjvsUmBLHJ2Nsm2sYjIzEoC3YqMjMabYxfnAtdCGrDQrwNlEwb6LFPygHQYNpAbcLctumebzhtvhZoGDgDGk0b6O0X1iHf+F/wPX2yLN/Yd8Z3NjLfFOchnTvmSyJnfOe/84WsgLV1a1HrywLq7EVKsb8oPeRMVXq8pXfGdj05pn5btAerEVuZQm/SFZUFqN6v4QCkEjhV5a5f/S+IPPwkjMiIjLwnYRSMyGjA8uYhGIUjMhqwYnkIRtGIjAYsQh6CUeyMkXYvuxRdrLeJ8QM="), @@ -5013,40 +5014,40 @@ this.createVertexTemplateEntry("strokeWidth=2;outlineConnect=0;dashed=0;align=ce 150,90,"","Process Manager",null,null,this.getTagsForStencil("mxgraph.eip","process_manager","eip enterprise integration pattern message routing ").join(" ")),this.createVertexTemplateEntry("strokeWidth=2;outlineConnect=0;dashed=0;align=center;fontSize=8;fillColor=#c0f5a9;verticalLabelPosition=bottom;verticalAlign=top;strokeColor=#000000;shape=mxgraph.eip.recipient_list;",150,90,"","Recipient List",null,null,this.getTagsForStencil("mxgraph.eip","recipient_list","eip enterprise integration pattern message routing ").join(" ")), this.createVertexTemplateEntry("strokeWidth=2;outlineConnect=0;dashed=0;align=center;fontSize=8;fillColor=#c0f5a9;verticalLabelPosition=bottom;verticalAlign=top;strokeColor=#000000;shape=mxgraph.eip.resequencer;",150,90,"","Resequencer",null,null,this.getTagsForStencil("mxgraph.eip","resequencer","eip enterprise integration pattern message routing ").join(" ")),this.createVertexTemplateEntry("strokeWidth=2;outlineConnect=0;dashed=0;align=center;fontSize=8;fillColor=#c0f5a9;verticalLabelPosition=bottom;verticalAlign=top;strokeColor=#000000;shape=mxgraph.eip.routing_slip;", 150,90,"","Routing Slip",null,null,this.getTagsForStencil("mxgraph.eip","routing_slip","eip enterprise integration pattern message routing ").join(" ")),this.createVertexTemplateEntry("strokeWidth=2;outlineConnect=0;dashed=0;align=center;fontSize=8;fillColor=#c0f5a9;verticalLabelPosition=bottom;verticalAlign=top;strokeColor=#000000;shape=mxgraph.eip.splitter;",150,90,"","Splitter",null,null,this.getTagsForStencil("mxgraph.eip","splitter","eip enterprise integration pattern message routing ").join(" "))]; -this.addPalette("eipMessage Routing","EIP / Message Routing",a||!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addEipMessageTransformationPalette=function(a){this.addPaletteFunctions("eipMessage Transformation","EIP / Message Transformation",!1,[this.createVertexTemplateEntry("strokeWidth=2;outlineConnect=0;dashed=0;align=center;fontSize=8;fillColor=#c0f5a9;verticalLabelPosition=bottom;verticalAlign=top;strokeColor=#000000;shape=mxgraph.eip.claim_check;", +this.addPalette("eipMessage Routing","EIP / Message Routing",a||!1,mxUtils.bind(this,function(a){for(var c=0;c<b.length;c++)a.appendChild(b[c](a))}))};Sidebar.prototype.addEipMessageTransformationPalette=function(a){this.addPaletteFunctions("eipMessage Transformation","EIP / Message Transformation",!1,[this.createVertexTemplateEntry("strokeWidth=2;outlineConnect=0;dashed=0;align=center;fontSize=8;fillColor=#c0f5a9;verticalLabelPosition=bottom;verticalAlign=top;strokeColor=#000000;shape=mxgraph.eip.claim_check;", 150,90,"","Claim Check",null,null,this.getTagsForStencil("mxgraph.eip","claim_check","eip enterprise integration pattern message transformation ").join(" ")),this.createVertexTemplateEntry("strokeWidth=2;outlineConnect=0;dashed=0;align=center;fontSize=8;fillColor=#c0f5a9;verticalLabelPosition=bottom;verticalAlign=top;strokeColor=#000000;shape=mxgraph.eip.content_enricher;",150,90,"","Content Enricher",null,null,this.getTagsForStencil("mxgraph.eip","content_enricher","eip enterprise integration pattern message transformation ").join(" ")), this.createVertexTemplateEntry("strokeWidth=2;outlineConnect=0;dashed=0;align=center;fontSize=8;fillColor=#c0f5a9;verticalLabelPosition=bottom;verticalAlign=top;strokeColor=#000000;shape=mxgraph.eip.content_filter;",150,90,"","Content Filter",null,null,this.getTagsForStencil("mxgraph.eip","content_filter","eip enterprise integration pattern message transformation ").join(" ")),this.createVertexTemplateEntry("strokeWidth=2;outlineConnect=0;dashed=0;align=center;fontSize=8;fillColor=#c0f5a9;verticalLabelPosition=bottom;verticalAlign=top;strokeColor=#000000;shape=mxgraph.eip.envelope_wrapper;", 150,90,"","Envelope Wrapper",null,null,this.getTagsForStencil("mxgraph.eip","envelope_wrapper","eip enterprise integration pattern message transformation ").join(" ")),this.createVertexTemplateEntry("strokeWidth=2;outlineConnect=0;dashed=0;align=center;fontSize=8;fillColor=#c0f5a9;verticalLabelPosition=bottom;verticalAlign=top;strokeColor=#000000;shape=mxgraph.eip.normalizer;",150,90,"","Normalizer",null,null,this.getTagsForStencil("mxgraph.eip","normalizer","eip enterprise integration pattern message transformation ").join(" "))])}; -Sidebar.prototype.addEipMessagingChannelsPalette=function(a){var d=[this.createEdgeTemplateEntry("edgeStyle=none;html=1;strokeColor=#808080;endArrow=block;endSize=10;dashed=0;verticalAlign=bottom;strokeWidth=2;",160,0,"","Point to Point Channel",null,this.getTagsForStencil("mxgraph.eip","","eip enterprise integration pattern messaging channel message point").join(" ")),this.addDataEntry("eip enterprise integration pattern messaging channel message publish subscribe",80,160,"Publish Subscribe Channel", +Sidebar.prototype.addEipMessagingChannelsPalette=function(a){var b=[this.createEdgeTemplateEntry("edgeStyle=none;html=1;strokeColor=#808080;endArrow=block;endSize=10;dashed=0;verticalAlign=bottom;strokeWidth=2;",160,0,"","Point to Point Channel",null,this.getTagsForStencil("mxgraph.eip","","eip enterprise integration pattern messaging channel message point").join(" ")),this.addDataEntry("eip enterprise integration pattern messaging channel message publish subscribe",80,160,"Publish Subscribe Channel", "7ZbBbsIwDIafJvfQMMR1FMYJaRKHnbPWayvSGLmBwZ5+bhNKYaAxDTihqlL8O3aS72/VChWXmynpZT7DFIxQE6FiQnR+VG5iMEZEskiFGosoknyL6OVMttdk5VITWHdJQeQL1tqswCteqNzWBKFyhAt4K1KXsxAJNUp1lUPdQHKgTZFZHie8IhALH2jdvPiqq4cc5q7kU417PKxyvaxlgoQ3NwpLAznYnN1+I4W9TwFLcLTlKaGg708nt2FyOK3UlReytmLPgAcBw2kk6nckhCubtgTAps9E+MmhRQteCQR68phXl0dDNkaD1PRVQ1lfbabL3O8B0gwOUDlNGbgDLy+gR2C0K9aHrU4xC6WvWHDHH9R3FRWuKIEw6Qh0u+pF7Pt/Zs9A5iGJ5HLM0Goz2atdd94NJou72uPJ3Mue3VswOPLHPyTX8Ofp4c/1Xp/b2zV42PV/u4a3sovD/YfeT+/+B3wD"),this.createVertexTemplateEntry("strokeWidth=2;outlineConnect=0;strokeColor=#000000;dashed=0;align=center;html=1;fontSize=8;shape=mxgraph.eip.channel_adapter;fillColor=#9ddbef;", 45,90,"","Channel Adapter",null,null,this.getTagsForStencil("mxgraph.eip","channel_adapter","eip enterprise integration pattern messaging channel message ").join(" ")),this.createVertexTemplateEntry("strokeWidth=1;outlineConnect=0;strokeColor=#000000;dashed=0;align=center;html=1;fontSize=8;shape=mxgraph.eip.messageChannel;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;",100,20,"","Message Channel",null,null,this.getTagsForStencil("mxgraph.eip","messageChannel","eip enterprise integration pattern messaging channel message ").join(" ")), this.createVertexTemplateEntry("strokeWidth=1;outlineConnect=0;strokeColor=#000000;dashed=0;align=center;html=1;fontSize=8;shape=mxgraph.eip.dataChannel;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;",100,20,"","Datatype Channel",null,null,this.getTagsForStencil("mxgraph.eip","dataChannel","eip enterprise integration pattern messaging channel message ").join(" ")),this.createVertexTemplateEntry("strokeWidth=1;outlineConnect=0;strokeColor=#000000;dashed=0;align=center;html=1;fontSize=8;shape=mxgraph.eip.deadLetterChannel;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;", 100,20,"","Dead Letter Channel",null,null,this.getTagsForStencil("mxgraph.eip","deadLetterChannel","eip enterprise integration pattern messaging channel message ").join(" ")),this.createVertexTemplateEntry("strokeWidth=1;outlineConnect=0;strokeColor=#000000;dashed=0;align=center;html=1;fontSize=8;shape=mxgraph.eip.invalidMessageChannel;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;",100,20,"","Invalid Message Channel",null,null,this.getTagsForStencil("mxgraph.eip","invalidMessageChannel", "eip enterprise integration pattern messaging channel message ").join(" ")),this.createVertexTemplateEntry("strokeWidth=2;outlineConnect=0;strokeColor=#000000;dashed=0;align=center;html=1;fontSize=8;shape=mxgraph.eip.messaging_bridge;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#c0f5a9;",150,90,"","Messaging Bridge",null,null,this.getTagsForStencil("mxgraph.eip","messaging_bridge","eip enterprise integration pattern messaging channel message ").join(" ")),this.addDataEntry("eip enterprise integration pattern messaging channel message message bus", 120,140,"Message Bus","7ZbPb8IgFMf/Gq6Gwma8rtV5WrLEw84ob4VISwOodX/9oLBq/ZF5MJ5s0+S9L7xX+H5KUkSLqp0b1ogPzUEhOkO0MFq7GFVtAUohgiVHdIoIwf5B5P3KaNaN4oYZqN0tBSQWbJnaQFSiYN1eJcE6o9fwJbkTXiCI5lEptNKmm0Jxd/kRzqyA0DokTMmy9vHKrwX8zFy4ym9wmvnwW9duIX/CKyaho2BNiKu2DFaMQDajCqxlJRSC1XUwJk9LBeOgvbrdTkp7nYOuwJm9n7KPo+PoBt6l3YSC5BAWIEuRuvxpzMa87DsdvPRBsvOytfR/a4GXsEgpqKXezQ5Cfu670Zua9/ZCzd+M0TufLpVerbsSZtxFMXmdpcLjdMDsCNEZ5QkOdw8iLH6Awb+nBDf4rm4gY0AxJ7fDVpd8T6WfWvqOBLdDoglw9nJCzuqNWUEqOoHXr+Imni9Png/geXry7sfv9cnvgefx/vzGT34P4JfhewH06eE/Jk4//s35BQ==")]; -this.addPalette("eipMessaging Channels","EIP / Messaging Channels",a||!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addEipMessagingEndpointsPalette=function(a){this.addPaletteFunctions("eipMessaging Endpoints","EIP / Messaging Endpoints",!1,[this.createVertexTemplateEntry("fillColor=#c0f5a9;dashed=0;outlineConnect=0;strokeWidth=2;strokeColor=#000000;html=1;align=center;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;shape=mxgraph.eip.competing_consumers;", +this.addPalette("eipMessaging Channels","EIP / Messaging Channels",a||!1,mxUtils.bind(this,function(a){for(var c=0;c<b.length;c++)a.appendChild(b[c](a))}))};Sidebar.prototype.addEipMessagingEndpointsPalette=function(a){this.addPaletteFunctions("eipMessaging Endpoints","EIP / Messaging Endpoints",!1,[this.createVertexTemplateEntry("fillColor=#c0f5a9;dashed=0;outlineConnect=0;strokeWidth=2;strokeColor=#000000;html=1;align=center;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;shape=mxgraph.eip.competing_consumers;", 150,90,"","Competing Consumers",null,null,this.getTagsForStencil("mxgraph.eip","competing_consumers","eip enterprise integration pattern messaging endpoint ").join(" ")),this.createVertexTemplateEntry("dashed=0;outlineConnect=0;strokeWidth=2;strokeColor=#000000;html=1;align=center;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;shape=mxgraph.eip.durable_subscriber;fillColor=#a0a0a0;",30,35,"","Durable Subscriber",null,null,this.getTagsForStencil("mxgraph.eip","durable_subscriber","eip enterprise integration pattern messaging endpoint ").join(" ")), this.createVertexTemplateEntry("fillColor=#c0f5a9;dashed=0;outlineConnect=0;strokeWidth=2;strokeColor=#000000;html=1;align=center;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;shape=mxgraph.eip.event_driven_consumer;",150,90,"","Event Driven Consumer",null,null,this.getTagsForStencil("mxgraph.eip","event_driven_consumer","eip enterprise integration pattern messaging endpoint ").join(" ")),this.createVertexTemplateEntry("fillColor=#c0f5a9;dashed=0;outlineConnect=0;strokeWidth=2;strokeColor=#000000;html=1;align=center;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;shape=mxgraph.eip.message_dispatcher;", 150,90,"","Message Dispatcher",null,null,this.getTagsForStencil("mxgraph.eip","message_dispatcher","eip enterprise integration pattern messaging endpoint ").join(" ")),this.createVertexTemplateEntry("fillColor=#c0f5a9;dashed=0;outlineConnect=0;strokeWidth=2;strokeColor=#000000;html=1;align=center;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;shape=mxgraph.eip.messaging_gateway;",150,90,"","Messaging Gateway",null,null,this.getTagsForStencil("mxgraph.eip","messaging_gateway","eip enterprise integration pattern messaging endpoint ").join(" ")), this.createVertexTemplateEntry("fillColor=#c0f5a9;dashed=0;outlineConnect=0;strokeWidth=2;strokeColor=#000000;html=1;align=center;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;shape=mxgraph.eip.polling_consumer;",150,90,"","Polling Consumer",null,null,this.getTagsForStencil("mxgraph.eip","polling_consumer","eip enterprise integration pattern messaging endpoint ").join(" ")),this.createVertexTemplateEntry("fillColor=#c0f5a9;dashed=0;outlineConnect=0;strokeWidth=2;strokeColor=#000000;html=1;align=center;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;shape=mxgraph.eip.selective_consumer;", 150,90,"","Selective Consumer",null,null,this.getTagsForStencil("mxgraph.eip","selective_consumer","eip enterprise integration pattern messaging endpoint ").join(" ")),this.createVertexTemplateEntry("fillColor=#c0f5a9;dashed=0;outlineConnect=0;strokeWidth=2;strokeColor=#000000;html=1;align=center;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;shape=mxgraph.eip.service_activator;",150,90,"","Service Activator",null,null,this.getTagsForStencil("mxgraph.eip","service_activator","eip enterprise integration pattern messaging endpoint ").join(" ")), -this.createVertexTemplateEntry("fillColor=#c0f5a9;dashed=0;outlineConnect=0;strokeWidth=2;strokeColor=#000000;html=1;align=center;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;shape=mxgraph.eip.transactional_client;",150,90,"","Transactional Client",null,null,this.getTagsForStencil("mxgraph.eip","transactional_client","eip enterprise integration pattern messaging endpoint ").join(" "))])};Sidebar.prototype.addEipMessagingSystemsPalette=function(a){var d=this,e=[this.createVertexTemplateEntry("strokeWidth=2;outlineConnect=0;dashed=0;align=center;fontSize=8;shape=mxgraph.eip.content_based_router;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#c0f5a9;strokeColor=#000000;", +this.createVertexTemplateEntry("fillColor=#c0f5a9;dashed=0;outlineConnect=0;strokeWidth=2;strokeColor=#000000;html=1;align=center;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;shape=mxgraph.eip.transactional_client;",150,90,"","Transactional Client",null,null,this.getTagsForStencil("mxgraph.eip","transactional_client","eip enterprise integration pattern messaging endpoint ").join(" "))])};Sidebar.prototype.addEipMessagingSystemsPalette=function(a){var b=this,e=[this.createVertexTemplateEntry("strokeWidth=2;outlineConnect=0;dashed=0;align=center;fontSize=8;shape=mxgraph.eip.content_based_router;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#c0f5a9;strokeColor=#000000;", 150,90,"","Message Router",null,null,this.getTagsForStencil("mxgraph.eip","content_based_router","eip enterprise integration pattern messaging system ").join(" ")),this.createVertexTemplateEntry("strokeWidth=1;outlineConnect=0;dashed=0;align=center;fontSize=8;shape=mxgraph.eip.messageChannel;html=1;verticalLabelPosition=bottom;strokeColor=#000000;verticalAlign=top;",100,20,"","Message Channel",null,null,this.getTagsForStencil("mxgraph.eip","messageChannel","eip enterprise integration pattern messaging system ").join(" ")), -this.addEntry("eip enterprise integration pattern messaging system message endpoint",function(){var a=new mxCell("",new mxGeometry(0,0,150,90),"strokeWidth=2;dashed=0;align=center;fontSize=8;shape=rect;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#c0f5a9;strokeColor=#000000;");a.vertex=!0;var c=new mxCell("",new mxGeometry(85,25,40,40),"strokeWidth=1;dashed=0;align=center;fontSize=8;shape=rect;fillColor=#ffffff;strokeColor=#000000;");c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a], -a.geometry.width,a.geometry.height,"Message Endpoint")}),this.addEntry("eip enterprise integration pattern messaging system message endpoint",function(){var a=new mxCell("",new mxGeometry(0,0,150,90),"strokeWidth=2;dashed=0;align=center;fontSize=8;shape=rect;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#c0f5a9;strokeColor=#000000;");a.vertex=!0;var c=new mxCell("",new mxGeometry(25,25,40,40),"strokeWidth=1;dashed=0;align=center;fontSize=8;shape=rect;fillColor=#ffffff;strokeColor=#000000;"); -c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,"Message Endpoint")}),this.addDataEntry("eip enterprise integration pattern messaging system message endpoint",400,90,"Message Endpoint","zVXLbsIwEPwa300eFRwhbbm0UiUOPZtkSSycbOQsr3597cRAIkILKhUkiuSd9fgxs46ZH+XbqRZl9o4JKOa/MD/SiNS08m0ESjGPy4T5z8zzuPmY93omO6izvBQaCrqE4DWEtVAraJAGqGinHFCRxiV8yoQyA3jMnySiysAOwE0glEwL047NjKANsMCCZvLLsocmrDJR2raGmGxWKhWhQl0P7sd8EYqR7VbP0srw+jGZNWiSsVBvYg7qAytJEu2EcyTCvNVh7FZCWBrUbczkYHtWnBpyykwBcyC9M102brO2R9gIyDOQaeZoI4eJqonTA/UotWk4tfuV969VfnBb5Rf1czflvX7lHcELG8auG7Z8CXpsCW5gS/D4B+IvlX3Ql58o+m+VHj5+pV8kafCjpMO7lezT7/pCksLMhaDmuHk5ApPTeta4KpKD+lAkY61xY0++wnhZU4SmPVhgAXvMmTJwvHbYcTSjXDmnT1wZcvv2LqzZmN1Nx6UKVzqGzn/VLCYF6hTgBcdDgxIk193Rr/DGhMe7u851rvZv"), +this.addEntry("eip enterprise integration pattern messaging system message endpoint",function(){var a=new mxCell("",new mxGeometry(0,0,150,90),"strokeWidth=2;dashed=0;align=center;fontSize=8;shape=rect;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#c0f5a9;strokeColor=#000000;");a.vertex=!0;var d=new mxCell("",new mxGeometry(85,25,40,40),"strokeWidth=1;dashed=0;align=center;fontSize=8;shape=rect;fillColor=#ffffff;strokeColor=#000000;");d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a], +a.geometry.width,a.geometry.height,"Message Endpoint")}),this.addEntry("eip enterprise integration pattern messaging system message endpoint",function(){var a=new mxCell("",new mxGeometry(0,0,150,90),"strokeWidth=2;dashed=0;align=center;fontSize=8;shape=rect;verticalLabelPosition=bottom;verticalAlign=top;fillColor=#c0f5a9;strokeColor=#000000;");a.vertex=!0;var d=new mxCell("",new mxGeometry(25,25,40,40),"strokeWidth=1;dashed=0;align=center;fontSize=8;shape=rect;fillColor=#ffffff;strokeColor=#000000;"); +d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,"Message Endpoint")}),this.addDataEntry("eip enterprise integration pattern messaging system message endpoint",400,90,"Message Endpoint","zVXLbsIwEPwa300eFRwhbbm0UiUOPZtkSSycbOQsr3597cRAIkILKhUkiuSd9fgxs46ZH+XbqRZl9o4JKOa/MD/SiNS08m0ESjGPy4T5z8zzuPmY93omO6izvBQaCrqE4DWEtVAraJAGqGinHFCRxiV8yoQyA3jMnySiysAOwE0glEwL047NjKANsMCCZvLLsocmrDJR2raGmGxWKhWhQl0P7sd8EYqR7VbP0srw+jGZNWiSsVBvYg7qAytJEu2EcyTCvNVh7FZCWBrUbczkYHtWnBpyykwBcyC9M102brO2R9gIyDOQaeZoI4eJqonTA/UotWk4tfuV969VfnBb5Rf1czflvX7lHcELG8auG7Z8CXpsCW5gS/D4B+IvlX3Ql58o+m+VHj5+pV8kafCjpMO7lezT7/pCksLMhaDmuHk5ApPTeta4KpKD+lAkY61xY0++wnhZU4SmPVhgAXvMmTJwvHbYcTSjXDmnT1wZcvv2LqzZmN1Nx6UKVzqGzn/VLCYF6hTgBcdDgxIk193Rr/DGhMe7u851rvZv"), this.addDataEntry("eip enterprise integration pattern messaging system message",28,48,"Message","5ZVRb4IwEMc/Da8LghJ9nCg+7cmHbY+NHLRZ6ZGjKu7Tr6VVR5RsiZlbMgjJ3f965d8fJQ3itGpXxGr+hDnIIF4GcUqI2kVVm4KUQRSKPIgXQRSF5gmibKA66qphzQiU/k5D5Bp2TG7BKU5o9EF6AfIS1j5F0hxLVEwuz+qccKtysDOGJoNW6JdP8auNHyY2U/kjEe6NoFDZzpw1/NTIdWXWvxiZsNGEb5CiROpMxNPQ3qfKs8g1N5XIKM6wddlj0OCWNl6aOEkzKsFjGV+S6ho9phVgBZoOZgiBZFrs+rOzxqXladwZsgk85+vM43/BPPlTzMdfM79cZY8Uk6JUJt4Y72AIzQtUei3ebffUQuKstrF5r6gbC7oQUg7jPFb8V/H+gDS0g//yAK2992xH+HVxECXXfe0WfpO78SPY6GvwsixJr+3SsLuO83k7oxuJHhv8Jj74dOrSO/BOfpl3Ucxm4eVmvS/vOPkp3iY9n7FdrXcEfwA="), -this.addEntry("eip enterprise integration pattern messaging system message",function(){var a=new mxCell("",new mxGeometry(0,0,12,12),"strokeWidth=2;dashed=0;align=center;fontSize=8;shape=ellipse;fillColor=#808080;strokeColor=none;");a.vertex=!0;var c=new mxCell("",new mxGeometry(16,18,12,12),"strokeWidth=2;dashed=0;align=center;fontSize=8;shape=rect;fillColor=#80FF6C;strokeColor=#000000;fontStyle=1;");c.vertex=!0;var e=new mxCell("",new mxGeometry(0,0,0,0),"edgeStyle=orthogonalEdgeStyle;rounded=0;exitX=0;exitY=0.5;endArrow=none;dashed=0;html=1;strokeColor=#808080;strokeWidth=2;"); -e.geometry.relative=!0;e.edge=!0;a.insertEdge(e,!1);c.insertEdge(e,!0);return d.createVertexTemplateFromCells([e,a,c],28,30,"Message")}),this.addDataEntry("eip enterprise integration pattern messaging system message",28,48,"Message","vZRNb4MwDIZ/DdeJj25qjyvtetqph23HqBgSLcTIuC3dr19C0naIoU3qNBCS/TqvcR5Qoiyvuw2JRj5jATrK1lGWEyL7qO5y0DpKY1VE2SpK09g+Ufo0UU36atwIAsO/MaTecBB6D17xQssnHQQoKtiGFIklVmiEXl/VJeHeFOA6xjaDTvHrl/jNxXf3LjPFIxEerWDQOGchWnkxSq7t/leJDVsmfIccNVI/RDaP3X2pvKiCpa2kVvEDuykHDFrc0y5IMy+xoAoClmxMqjcGTBvAGphOdgmBFqwOw+6i9Wl1WXeFbIPA+Xvm2c/Mx7sckBJaVcbGOzs7WELLEg1v1Ydzzx0kKRoX2/eqpnWgS6X1NM5zJXyVMB8QQzf5X03QOoaZ3YqwLwmqkjzUbuE3+zd+BDsewyvLxSIew7OVuL/O/cI4yY1Ez4YH7ziFdO7Tv+dt0+v509cGx9Mn"), -this.addEntry("eip enterprise integration pattern messaging system message",function(){var a=new mxCell("",new mxGeometry(0,0,12,12),"strokeWidth=2;dashed=0;align=center;fontSize=8;shape=ellipse;fillColor=#808080;strokeColor=none;");a.vertex=!0;var c=new mxCell("",new mxGeometry(16,18,12,12),"strokeWidth=2;outlineConnect=0;dashed=0;align=center;fontSize=8;shape=mxgraph.eip.message_1;fillColor=#ff5500;strokeColor=#000000;fontStyle=1;");c.vertex=!0;var e=new mxCell("",new mxGeometry(0,0,0,0),"edgeStyle=orthogonalEdgeStyle;rounded=0;exitX=0;exitY=0.5;endArrow=none;dashed=0;html=1;strokeColor=#808080;strokeWidth=2;"); -e.geometry.relative=!0;e.edge=!0;a.insertEdge(e,!1);c.insertEdge(e,!0);return d.createVertexTemplateFromCells([e,a,c],28,30,"Message")}),this.addEntry("eip enterprise integration pattern messaging system message",function(){var a=new mxCell("",new mxGeometry(0,0,12,12),"strokeWidth=2;dashed=0;align=center;fontSize=8;shape=ellipse;fillColor=#808080;strokeColor=none;");a.vertex=!0;var c=new mxCell("",new mxGeometry(16,18,12,12),"strokeWidth=2;outlineConnect=0;dashed=0;align=center;fontSize=8;shape=mxgraph.eip.message_2;fillColor=#00cc00;strokeColor=#000000;fontStyle=1;"); -c.vertex=!0;var e=new mxCell("",new mxGeometry(0,0,0,0),"edgeStyle=orthogonalEdgeStyle;rounded=0;exitX=0;exitY=0.5;endArrow=none;dashed=0;html=1;strokeColor=#808080;strokeWidth=2;");e.geometry.relative=!0;e.edge=!0;a.insertEdge(e,!1);c.insertEdge(e,!0);return d.createVertexTemplateFromCells([e,a,c],28,30,"Message")}),this.createVertexTemplateEntry("strokeWidth=2;outlineConnect=0;dashed=0;align=center;fontSize=8;shape=mxgraph.eip.message_translator;fillColor=#c0f5a9;strokeColor=#000000;verticalLabelPosition=bottom;verticalAlign=top;", -150,90,"","Message-Translator",null,null,this.getTagsForStencil("mxgraph.eip","message_translator","eip enterprise integration pattern messaging system ").join(" "))];this.addPalette("eipMessaging Systems","EIP / Messaging Systems",a||!1,mxUtils.bind(this,function(a){for(var b=0;b<e.length;b++)a.appendChild(e[b](a))}))};Sidebar.prototype.addEipSystemManagementPalette=function(a){this.addPaletteFunctions("eipSystem Management","EIP / System Management",!1,[this.createVertexTemplateEntry("strokeWidth=2;outlineConnect=0;dashed=0;align=center;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;shape=mxgraph.eip.channel_purger;fillColor=#c0f5a9;strokeColor=#000000;", +this.addEntry("eip enterprise integration pattern messaging system message",function(){var a=new mxCell("",new mxGeometry(0,0,12,12),"strokeWidth=2;dashed=0;align=center;fontSize=8;shape=ellipse;fillColor=#808080;strokeColor=none;");a.vertex=!0;var d=new mxCell("",new mxGeometry(16,18,12,12),"strokeWidth=2;dashed=0;align=center;fontSize=8;shape=rect;fillColor=#80FF6C;strokeColor=#000000;fontStyle=1;");d.vertex=!0;var f=new mxCell("",new mxGeometry(0,0,0,0),"edgeStyle=orthogonalEdgeStyle;rounded=0;exitX=0;exitY=0.5;endArrow=none;dashed=0;html=1;strokeColor=#808080;strokeWidth=2;"); +f.geometry.relative=!0;f.edge=!0;a.insertEdge(f,!1);d.insertEdge(f,!0);return b.createVertexTemplateFromCells([f,a,d],28,30,"Message")}),this.addDataEntry("eip enterprise integration pattern messaging system message",28,48,"Message","vZRNb4MwDIZ/DdeJj25qjyvtetqph23HqBgSLcTIuC3dr19C0naIoU3qNBCS/TqvcR5Qoiyvuw2JRj5jATrK1lGWEyL7qO5y0DpKY1VE2SpK09g+Ufo0UU36atwIAsO/MaTecBB6D17xQssnHQQoKtiGFIklVmiEXl/VJeHeFOA6xjaDTvHrl/jNxXf3LjPFIxEerWDQOGchWnkxSq7t/leJDVsmfIccNVI/RDaP3X2pvKiCpa2kVvEDuykHDFrc0y5IMy+xoAoClmxMqjcGTBvAGphOdgmBFqwOw+6i9Wl1WXeFbIPA+Xvm2c/Mx7sckBJaVcbGOzs7WELLEg1v1Ydzzx0kKRoX2/eqpnWgS6X1NM5zJXyVMB8QQzf5X03QOoaZ3YqwLwmqkjzUbuE3+zd+BDsewyvLxSIew7OVuL/O/cI4yY1Ez4YH7ziFdO7Tv+dt0+v509cGx9Mn"), +this.addEntry("eip enterprise integration pattern messaging system message",function(){var a=new mxCell("",new mxGeometry(0,0,12,12),"strokeWidth=2;dashed=0;align=center;fontSize=8;shape=ellipse;fillColor=#808080;strokeColor=none;");a.vertex=!0;var d=new mxCell("",new mxGeometry(16,18,12,12),"strokeWidth=2;outlineConnect=0;dashed=0;align=center;fontSize=8;shape=mxgraph.eip.message_1;fillColor=#ff5500;strokeColor=#000000;fontStyle=1;");d.vertex=!0;var f=new mxCell("",new mxGeometry(0,0,0,0),"edgeStyle=orthogonalEdgeStyle;rounded=0;exitX=0;exitY=0.5;endArrow=none;dashed=0;html=1;strokeColor=#808080;strokeWidth=2;"); +f.geometry.relative=!0;f.edge=!0;a.insertEdge(f,!1);d.insertEdge(f,!0);return b.createVertexTemplateFromCells([f,a,d],28,30,"Message")}),this.addEntry("eip enterprise integration pattern messaging system message",function(){var a=new mxCell("",new mxGeometry(0,0,12,12),"strokeWidth=2;dashed=0;align=center;fontSize=8;shape=ellipse;fillColor=#808080;strokeColor=none;");a.vertex=!0;var d=new mxCell("",new mxGeometry(16,18,12,12),"strokeWidth=2;outlineConnect=0;dashed=0;align=center;fontSize=8;shape=mxgraph.eip.message_2;fillColor=#00cc00;strokeColor=#000000;fontStyle=1;"); +d.vertex=!0;var f=new mxCell("",new mxGeometry(0,0,0,0),"edgeStyle=orthogonalEdgeStyle;rounded=0;exitX=0;exitY=0.5;endArrow=none;dashed=0;html=1;strokeColor=#808080;strokeWidth=2;");f.geometry.relative=!0;f.edge=!0;a.insertEdge(f,!1);d.insertEdge(f,!0);return b.createVertexTemplateFromCells([f,a,d],28,30,"Message")}),this.createVertexTemplateEntry("strokeWidth=2;outlineConnect=0;dashed=0;align=center;fontSize=8;shape=mxgraph.eip.message_translator;fillColor=#c0f5a9;strokeColor=#000000;verticalLabelPosition=bottom;verticalAlign=top;", +150,90,"","Message-Translator",null,null,this.getTagsForStencil("mxgraph.eip","message_translator","eip enterprise integration pattern messaging system ").join(" "))];this.addPalette("eipMessaging Systems","EIP / Messaging Systems",a||!1,mxUtils.bind(this,function(a){for(var c=0;c<e.length;c++)a.appendChild(e[c](a))}))};Sidebar.prototype.addEipSystemManagementPalette=function(a){this.addPaletteFunctions("eipSystem Management","EIP / System Management",!1,[this.createVertexTemplateEntry("strokeWidth=2;outlineConnect=0;dashed=0;align=center;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;shape=mxgraph.eip.channel_purger;fillColor=#c0f5a9;strokeColor=#000000;", 150,90,"","Channel Purger",null,null,this.getTagsForStencil("mxgraph.eip","channel_purger","eip enterprise integration pattern system management ").join(" ")),this.createVertexTemplateEntry("strokeWidth=2;outlineConnect=0;dashed=0;align=center;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;shape=mxgraph.eip.control_bus;fillColor=#c0f5a9;strokeColor=#000000;",60,40,"","Control Bus",null,null,this.getTagsForStencil("mxgraph.eip","control_bus","eip enterprise integration pattern system management ").join(" ")), this.createVertexTemplateEntry("strokeWidth=2;outlineConnect=0;dashed=0;align=center;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;shape=mxgraph.eip.detour;fillColor=#c0f5a9;strokeColor=#000000;",150,90,"","Detour",null,null,this.getTagsForStencil("mxgraph.eip","detour","eip enterprise integration pattern system management ").join(" ")),this.createVertexTemplateEntry("strokeWidth=2;outlineConnect=0;dashed=0;align=center;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;shape=mxgraph.eip.message_store;fillColor=#c0f5a9;strokeColor=#000000;", 150,90,"","Message Store",null,null,this.getTagsForStencil("mxgraph.eip","message_store","eip enterprise integration pattern system management ").join(" ")),this.createVertexTemplateEntry("strokeWidth=2;outlineConnect=0;dashed=0;align=center;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;shape=mxgraph.eip.smart_proxy;fillColor=#c0f5a9;strokeColor=#000000;",70,90,"","Smart Proxy",null,null,this.getTagsForStencil("mxgraph.eip","smart_proxy","eip enterprise integration pattern system management ").join(" ")), this.createVertexTemplateEntry("strokeWidth=2;outlineConnect=0;dashed=0;align=center;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;shape=mxgraph.eip.test_message;fillColor=#c0f5a9;strokeColor=#000000;",150,90,"","Test Message",null,null,this.getTagsForStencil("mxgraph.eip","test_message","eip enterprise integration pattern system management ").join(" ")),this.createVertexTemplateEntry("strokeWidth=2;outlineConnect=0;dashed=0;align=center;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;shape=mxgraph.eip.wire_tap;fillColor=#c0f5a9;strokeColor=#000000;", -150,90,"","Wire Tap",null,null,this.getTagsForStencil("mxgraph.eip","wire_tap","eip enterprise integration pattern system management ").join(" "))])}})();(function(){Sidebar.prototype.addElectricalPalette=function(){var a=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;shadow=0;dashed=0;align=center;fillColor=#ffffff;html=1;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;strokeWidth=1;"+mxConstants.STYLE_SHAPE,d=a+"=mxgraph.electrical.abstract.",e="pointerEvents=1;"+a+"=mxgraph.electrical.capacitors.",b="pointerEvents=1;fillColor=#000000;"+a+"=mxgraph.electrical.diodes.",c="pointerEvents=1;"+a+"=mxgraph.electrical.inductors.",f="pointerEvents=1;"+a+"=mxgraph.electrical.miscellaneous.", +150,90,"","Wire Tap",null,null,this.getTagsForStencil("mxgraph.eip","wire_tap","eip enterprise integration pattern system management ").join(" "))])}})();(function(){Sidebar.prototype.addElectricalPalette=function(){var a=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;shadow=0;dashed=0;align=center;fillColor=#ffffff;html=1;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;strokeWidth=1;"+mxConstants.STYLE_SHAPE,b=a+"=mxgraph.electrical.abstract.",e="pointerEvents=1;"+a+"=mxgraph.electrical.capacitors.",c="pointerEvents=1;fillColor=#000000;"+a+"=mxgraph.electrical.diodes.",d="pointerEvents=1;"+a+"=mxgraph.electrical.inductors.",f="pointerEvents=1;"+a+"=mxgraph.electrical.miscellaneous.", g="pointerEvents=1;"+a+"=mxgraph.electrical.electro-mechanical.",h=a+"=mxgraph.electrical.logic_gates.",k=a+"=mxgraph.electrical.mosfets1.",l=a+"=mxgraph.electrical.transistors.",m=a+"=mxgraph.electrical.opto_electronics.",q="pointerEvents=1;"+a+"=mxgraph.electrical.plc_ladder.",r=a+"=mxgraph.electrical.radio.",n="pointerEvents=1;"+a+"=mxgraph.electrical.resistors.",p="pointerEvents=1;"+a+"=mxgraph.electrical.signal_sources.",u=a+"=mxgraph.electrical.thermionic_devices.",t="pointerEvents=1;"+a+"=mxgraph.electrical.waveforms.", y="perimeter=ellipsePerimeter;"+a+"=mxgraph.electrical.instruments.",x=a+"=mxgraph.electrical.iec_logic_gates.",w=a+"=mxgraph.electrical.rot_mech.",v=a+"=mxgraph.electrical.transmission.";this.addPaletteFunctions("electricalLogicGates","Electrical / Logic Gates",!1,[this.createVertexTemplateEntry(h+"logic_gate;operation=and;",100,60,"","AND",null,null,this.getTagsForStencil("mxgraph.electrical.logic_gates","and","electrical logic gate ").join(" ")),this.createVertexTemplateEntry(h+"buffer2;",100, 60,"","Buffer",null,null,this.getTagsForStencil("mxgraph.electrical.logic_gates","buffer","electrical logic gate ").join(" ")),this.createVertexTemplateEntry(h+"d_type_flip-flop;",100,80,"","D Type Flip-Flop",null,null,this.getTagsForStencil("mxgraph.electrical.logic_gates","d_type_flip-flop","electrical logic gate ").join(" ")),this.createVertexTemplateEntry(h+"d_type_flip-flop_with_clear;",100,90,"","D Type Flip-Flop With Clear",null,null,this.getTagsForStencil("mxgraph.electrical.logic_gates", @@ -5075,18 +5076,18 @@ null,null,this.getTagsForStencil("mxgraph.electrical.capacitors","trimmer_capaci "variable_capacitor_1","electrical capacitor ").join(" ")),this.createVertexTemplateEntry(e+"variable_capacitor_2;",100,60,"","Trimmer Variable Capacitor (US)",null,null,this.getTagsForStencil("mxgraph.electrical.capacitors","variable_capacitor_2","electrical capacitor ").join(" ")),this.createVertexTemplateEntry(e+"feed_through_capacitor;",100,90,"","Feed Through Capacitor",null,null,this.getTagsForStencil("mxgraph.electrical.capacitors","feed_through_capacitor","electrical capacitor ").join(" ")), this.createVertexTemplateEntry(e+"ganged_capacitor;",100,130,"","Ganged Capacitor",null,null,this.getTagsForStencil("mxgraph.electrical.capacitors","ganged_capacitor","electrical capacitor ").join(" ")),this.createVertexTemplateEntry(e+"multiple_capacitor;",100,130,"","Multiple Capacitor",null,null,this.getTagsForStencil("mxgraph.electrical.capacitors","multiple_capacitor","electrical capacitor ").join(" ")),this.createVertexTemplateEntry(e+"multiple_electrolytic_capacitor_comm_neg;",100,130,"","Multiple Electrolytic Capacitor (Common Negative)", null,null,this.getTagsForStencil("mxgraph.electrical.capacitors","multiple_electrolytic_capacitor_comm_neg","electrical capacitor ").join(" ")),this.createVertexTemplateEntry(e+"multiple_electrolytic_capacitor_comm_pos;",100,130,"","Multiple Electrolytic Capacitor (Common Positive)",null,null,this.getTagsForStencil("mxgraph.electrical.capacitors","multiple_electrolytic_capacitor_comm_pos","electrical capacitor ").join(" "))]);this.addPaletteFunctions("electricalInductors","Electrical / Inductors", -!1,[this.createVertexTemplateEntry(c+"inductor_3;",100,8,"","Inductor (Air Core)",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","inductor_3","electrical inductor ").join(" ")),this.createVertexTemplateEntry(c+"inductor_5;",100,14,"","Inductor (Air Core)",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","inductor_5","electrical inductor ").join(" ")),this.createVertexTemplateEntry(c+"inductor_1;",100,15,"","Inductor (Air Core)",null,null,this.getTagsForStencil("mxgraph.electrical.inductors", -"inductor_1","electrical inductor ").join(" ")),this.createVertexTemplateEntry(c+"variable_inductor;",100,60,"","Variable",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","variable_inductor","electrical inductor ").join(" ")),this.createVertexTemplateEntry(c+"ferrite_core;",64,4,"","Ferrite Core",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","ferrite_core","electrical inductor ").join(" ")),this.createVertexTemplateEntry(c+"iron_core;",64,4,"","Iron Core",null,null, -this.getTagsForStencil("mxgraph.electrical.inductors","iron_core","electrical inductor ").join(" ")),this.createVertexTemplateEntry(c+"magnetic_core;direction=north;",64,3,"","Magnetic Core",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","magnetic core","electrical inductor ").join(" ")),this.createVertexTemplateEntry(c+"transformer_1;",64,60,"","Transformer (Iron Core)",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","transformer_1","electrical inductor ").join(" ")), -this.createVertexTemplateEntry(c+"transformer_2;",64,60,"","Transformer (Iron Core)",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","transformer_2","electrical inductor ").join(" ")),this.createVertexTemplateEntry(c+"half_inductor;",32,23,"","Half Inductor",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","half inductor","electrical inductor ").join(" ")),this.createVertexTemplateEntry(c+"transformer;direction=north;",64,64,"","Transformer",null,null,this.getTagsForStencil("mxgraph.electrical.inductors", -"transformer","electrical inductor ").join(" ")),this.createVertexTemplateEntry(c+"inductor;",100,42,"","Inductor",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","inductor","electrical inductor ").join(" ")),this.createVertexTemplateEntry(c+"choke;",100,200,"","Choke",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","choke","electrical inductor ").join(" ")),this.createVertexTemplateEntry("verticalLabelPosition=top;shadow=0;dashed=0;align=center;fillColor=#000000;strokeColor=#000000;html=1;verticalAlign=bottom;strokeWidth=1;shape=mxgraph.electrical.inductors.variometer;", -150,88,"","Variometer",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","variometer","electrical inductor ").join(" ")),this.createVertexTemplateEntry(c+"coaxial_choke;",300,50,"","Coaxial Choke",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","coaxial choke","electrical inductor ").join(" ")),this.createVertexTemplateEntry(c+"transductor;",200,100,"","Transductor",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","transductor","electrical inductor ").join(" ")), -this.createVertexTemplateEntry(c+"saturating_transformer;",200,150,"","Saturating Transformer",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","saturating_transformer","electrical inductor ").join(" ")),this.createVertexTemplateEntry(c+"potential_transformer_2;",92,40,"","Potential Transformer",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","potential transformer","electrical inductor ").join(" ")),this.createVertexTemplateEntry(c+"pot_trans_3_windings;",67,96,"", +!1,[this.createVertexTemplateEntry(d+"inductor_3;",100,8,"","Inductor (Air Core)",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","inductor_3","electrical inductor ").join(" ")),this.createVertexTemplateEntry(d+"inductor_5;",100,14,"","Inductor (Air Core)",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","inductor_5","electrical inductor ").join(" ")),this.createVertexTemplateEntry(d+"inductor_1;",100,15,"","Inductor (Air Core)",null,null,this.getTagsForStencil("mxgraph.electrical.inductors", +"inductor_1","electrical inductor ").join(" ")),this.createVertexTemplateEntry(d+"variable_inductor;",100,60,"","Variable",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","variable_inductor","electrical inductor ").join(" ")),this.createVertexTemplateEntry(d+"ferrite_core;",64,4,"","Ferrite Core",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","ferrite_core","electrical inductor ").join(" ")),this.createVertexTemplateEntry(d+"iron_core;",64,4,"","Iron Core",null,null, +this.getTagsForStencil("mxgraph.electrical.inductors","iron_core","electrical inductor ").join(" ")),this.createVertexTemplateEntry(d+"magnetic_core;direction=north;",64,3,"","Magnetic Core",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","magnetic core","electrical inductor ").join(" ")),this.createVertexTemplateEntry(d+"transformer_1;",64,60,"","Transformer (Iron Core)",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","transformer_1","electrical inductor ").join(" ")), +this.createVertexTemplateEntry(d+"transformer_2;",64,60,"","Transformer (Iron Core)",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","transformer_2","electrical inductor ").join(" ")),this.createVertexTemplateEntry(d+"half_inductor;",32,23,"","Half Inductor",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","half inductor","electrical inductor ").join(" ")),this.createVertexTemplateEntry(d+"transformer;direction=north;",64,64,"","Transformer",null,null,this.getTagsForStencil("mxgraph.electrical.inductors", +"transformer","electrical inductor ").join(" ")),this.createVertexTemplateEntry(d+"inductor;",100,42,"","Inductor",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","inductor","electrical inductor ").join(" ")),this.createVertexTemplateEntry(d+"choke;",100,200,"","Choke",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","choke","electrical inductor ").join(" ")),this.createVertexTemplateEntry("verticalLabelPosition=top;shadow=0;dashed=0;align=center;fillColor=#000000;strokeColor=#000000;html=1;verticalAlign=bottom;strokeWidth=1;shape=mxgraph.electrical.inductors.variometer;", +150,88,"","Variometer",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","variometer","electrical inductor ").join(" ")),this.createVertexTemplateEntry(d+"coaxial_choke;",300,50,"","Coaxial Choke",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","coaxial choke","electrical inductor ").join(" ")),this.createVertexTemplateEntry(d+"transductor;",200,100,"","Transductor",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","transductor","electrical inductor ").join(" ")), +this.createVertexTemplateEntry(d+"saturating_transformer;",200,150,"","Saturating Transformer",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","saturating_transformer","electrical inductor ").join(" ")),this.createVertexTemplateEntry(d+"potential_transformer_2;",92,40,"","Potential Transformer",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","potential transformer","electrical inductor ").join(" ")),this.createVertexTemplateEntry(d+"pot_trans_3_windings;",67,96,"", "Pot. Trans. 3 Windings",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","potential transformer 3 three windings","electrical inductor ").join(" ")),this.createVertexTemplateEntry("verticalLabelPosition=bottom;shadow=0;dashed=0;align=center;fillColor=#ffffff;strokeColor=#000000;html=1;verticalAlign=top;strokeWidth=1;shape=mxgraph.electrical.signal_sources.current_source;",40,60,"","Transformer",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","","electrical inductor ").join(" ")), -this.createVertexTemplateEntry(c+"adjustable_transformer;",46,60,"","Adjustable Transformer",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","adjustable_transformer","electrical inductor ").join(" ")),this.createVertexTemplateEntry(c+"1_phase_induction_volt_reg;",100,100,"","1-Phase Induction Voltage Regulator",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","1 phase induction voltage regulator monophase","electrical inductor ").join(" ")),this.createVertexTemplateEntry(c+ -"triplex_induction_volt_reg;",100,100,"","Triplex Induction Voltage Regulator",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","triplex induction voltage regulator","electrical inductor ").join(" ")),this.createVertexTemplateEntry(c+"induction_voltage_regulator;",160,210,"","Induction Voltage Regulator",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","induction voltage regulator","electrical inductor ").join(" ")),this.createVertexTemplateEntry(c+"current_transformer_1;", -12,75,"","Current Transformer",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","current transformer","electrical inductor ").join(" ")),this.createVertexTemplateEntry(c+"current_transformer_2;",125,175,"","Current Transformer",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","current transformer","electrical inductor ").join(" ")),this.createVertexTemplateEntry(c+"current_transformer_3;",75,10,"","Current Transformer",null,null,this.getTagsForStencil("mxgraph.electrical.inductors", -"current transformer","electrical inductor ").join(" ")),this.createVertexTemplateEntry(c+"potential_transformer;",100,50,"","Potential Transformer",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","potential transformer","electrical inductor ").join(" ")),this.createVertexTemplateEntry(c+"outdoor_metering_device;",100,100,"","Outdoor Metering Device",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","outdoor metering device","electrical inductor ").join(" ")),this.createVertexTemplateEntry(c+ +this.createVertexTemplateEntry(d+"adjustable_transformer;",46,60,"","Adjustable Transformer",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","adjustable_transformer","electrical inductor ").join(" ")),this.createVertexTemplateEntry(d+"1_phase_induction_volt_reg;",100,100,"","1-Phase Induction Voltage Regulator",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","1 phase induction voltage regulator monophase","electrical inductor ").join(" ")),this.createVertexTemplateEntry(d+ +"triplex_induction_volt_reg;",100,100,"","Triplex Induction Voltage Regulator",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","triplex induction voltage regulator","electrical inductor ").join(" ")),this.createVertexTemplateEntry(d+"induction_voltage_regulator;",160,210,"","Induction Voltage Regulator",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","induction voltage regulator","electrical inductor ").join(" ")),this.createVertexTemplateEntry(d+"current_transformer_1;", +12,75,"","Current Transformer",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","current transformer","electrical inductor ").join(" ")),this.createVertexTemplateEntry(d+"current_transformer_2;",125,175,"","Current Transformer",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","current transformer","electrical inductor ").join(" ")),this.createVertexTemplateEntry(d+"current_transformer_3;",75,10,"","Current Transformer",null,null,this.getTagsForStencil("mxgraph.electrical.inductors", +"current transformer","electrical inductor ").join(" ")),this.createVertexTemplateEntry(d+"potential_transformer;",100,50,"","Potential Transformer",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","potential transformer","electrical inductor ").join(" ")),this.createVertexTemplateEntry(d+"outdoor_metering_device;",100,100,"","Outdoor Metering Device",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","outdoor metering device","electrical inductor ").join(" ")),this.createVertexTemplateEntry(d+ "linear_coupler;",80,20,"","Linear Coupler",null,null,this.getTagsForStencil("mxgraph.electrical.inductors","linear coupler","electrical inductor ").join(" "))]);this.addPaletteFunctions("electricalSwitchesRelays","Electrical / Switches and Relays",!1,[this.createVertexTemplateEntry(g+"2-way_switch;",75,26,"","SPDT",null,null,this.getTagsForStencil("mxgraph.electrical.electro-mechanical","2-way switch","electrical switch relay ").join(" ")),this.createVertexTemplateEntry(g+"push_switch_nc;",75,10, "","Pushbutton NC",null,null,this.getTagsForStencil("mxgraph.electrical.electro-mechanical","push switch nc","electrical switch relay ").join(" ")),this.createVertexTemplateEntry(g+"push_switch_no;",75,19,"","Pushbutton NO",null,null,this.getTagsForStencil("mxgraph.electrical.electro-mechanical","push switch no","electrical switch relay ").join(" ")),this.createVertexTemplateEntry(g+"simple_switch;",75,19,"","SPST",null,null,this.getTagsForStencil("mxgraph.electrical.electro-mechanical","simple switch", "electrical switch relay ").join(" ")),this.createVertexTemplateEntry(g+"switch_disconnector;",75,19,"","Switch Disconnector",null,null,this.getTagsForStencil("mxgraph.electrical.electro-mechanical","switch disconnector","electrical switch relay ").join(" ")),this.createVertexTemplateEntry(g+"fuse;",75,16,"","Fuse",null,null,this.getTagsForStencil("mxgraph.electrical.electro-mechanical","fuse","electrical switch relay ").join(" ")),this.createVertexTemplateEntry(g+"liquid_level_actuated;",75,28,"", @@ -5101,7 +5102,7 @@ this.getTagsForStencil("mxgraph.electrical.electro-mechanical","manual switch"," this.createVertexTemplateEntry(g+"two_way_contact;",75,30,"","Two Way Contact",null,null,this.getTagsForStencil("mxgraph.electrical.electro-mechanical","two way contact","electrical switch relay ").join(" ")),this.createVertexTemplateEntry(g+"passing_make_contact;",75,23,"","Passing Make-Contact",null,null,this.getTagsForStencil("mxgraph.electrical.electro-mechanical","passing make contact","electrical switch relay ").join(" ")),this.createVertexTemplateEntry(g+"stay_put;",75,7,"","Stay Put",null, null,this.getTagsForStencil("mxgraph.electrical.electro-mechanical","stay put","electrical switch relay ").join(" ")),this.createVertexTemplateEntry(g+"dpst;",75,26,"","DPST",null,null,this.getTagsForStencil("mxgraph.electrical.electro-mechanical","dpst","electrical switch relay ").join(" ")),this.createVertexTemplateEntry(g+"spring_return;",75,10,"","Spring Return",null,null,this.getTagsForStencil("mxgraph.electrical.electro-mechanical","spring return","electrical switch relay ").join(" ")),this.createVertexTemplateEntry(g+ "spring_return_2;",75,19,"","Spring Return",null,null,this.getTagsForStencil("mxgraph.electrical.electro-mechanical","spring return","electrical switch relay ").join(" ")),this.createVertexTemplateEntry(g+"limit_switch_no;",75,24,"","Limit Switch NO",null,null,this.getTagsForStencil("mxgraph.electrical.electro-mechanical","limit switch no normally open","electrical switch relay ").join(" ")),this.createVertexTemplateEntry(g+"limit_switch_nc;",75,13,"","Limit Switch NC",null,null,this.getTagsForStencil("mxgraph.electrical.electro-mechanical", -"limit switch nc normally closed","electrical switch relay ").join(" ")),this.createVertexTemplateEntry(g+"dpdt;",75,32,"","DPDT",null,null,this.getTagsForStencil("mxgraph.electrical.electro-mechanical","dpdt","electrical switch relay ").join(" ")),this.createVertexTemplateEntry(g+"2_position_switch;",75,70,"","2-Position Switch",null,null,this.getTagsForStencil("mxgraph.electrical.electro-mechanical","2 position switch","electrical switch relay ").join(" ")),this.createVertexTemplateEntry(g+"3_position_switch;", +"limit switch nc normally closed","electrical switch relay ").join(" ")),this.createVertexTemplateEntry(g+"dpdt2;",58,62,"","DPDT",null,null,this.getTagsForStencil("mxgraph.electrical.electro-mechanical","dpdt","electrical switch relay ").join(" ")),this.createVertexTemplateEntry(g+"2_position_switch;",75,70,"","2-Position Switch",null,null,this.getTagsForStencil("mxgraph.electrical.electro-mechanical","2 position switch","electrical switch relay ").join(" ")),this.createVertexTemplateEntry(g+"3_position_switch;", 60,60,"","3-Position Switch",null,null,this.getTagsForStencil("mxgraph.electrical.electro-mechanical","3 position switch","electrical switch relay ").join(" ")),this.createVertexTemplateEntry(g+"4_position_switch;",75,70,"","4-Position Switch",null,null,this.getTagsForStencil("mxgraph.electrical.electro-mechanical","4 position switch","electrical switch relay ").join(" ")),this.createVertexTemplateEntry(g+"pushbutton_make;",75,53,"","Pushbutton Make",null,null,this.getTagsForStencil("mxgraph.electrical.electro-mechanical", "pushbutton make","electrical switch relay ").join(" ")),this.createVertexTemplateEntry(g+"pushbutton_2_circuit;",75,73,"","Pushbutton 2-Circuit",null,null,this.getTagsForStencil("mxgraph.electrical.electro-mechanical","pushbutton 2 circuit","electrical switch relay ").join(" ")),this.createVertexTemplateEntry(g+"time_delay_make;",75,31,"","Time Delay Make",null,null,this.getTagsForStencil("mxgraph.electrical.electro-mechanical","time delay make","electrical switch relay ").join(" ")),this.createVertexTemplateEntry(g+ "time_delay_break;",75,32,"","Time Delay Break",null,null,this.getTagsForStencil("mxgraph.electrical.electro-mechanical","time delay break","electrical switch relay ").join(" ")),this.createVertexTemplateEntry(g+"time_delay_make_2;",75,36,"","Time Delay Make",null,null,this.getTagsForStencil("mxgraph.electrical.electro-mechanical","time delay make","electrical switch relay ").join(" ")),this.createVertexTemplateEntry(g+"time_delay_break_2;",75,30,"","Time Delay Break",null,null,this.getTagsForStencil("mxgraph.electrical.electro-mechanical", @@ -5109,11 +5110,11 @@ null,this.getTagsForStencil("mxgraph.electrical.electro-mechanical","stay put"," 75,20,"","Reed Switch",null,null,this.getTagsForStencil("mxgraph.electrical.electro-mechanical","reed switch","electrical switch relay ").join(" ")),this.createVertexTemplateEntry(g+"relay_coil;",70,35,"","Relay Coil",null,null,this.getTagsForStencil("mxgraph.electrical.electro-mechanical","relay coil","electrical switch relay ").join(" ")),this.createVertexTemplateEntry(g+"relay;",100,50,"","Relay",null,null,this.getTagsForStencil("mxgraph.electrical.electro-mechanical","relay","electrical switch relay ").join(" ")), this.createVertexTemplateEntry(g+"relay_contacts;",30,24,"","Relay Contacts",null,null,this.getTagsForStencil("mxgraph.electrical.electro-mechanical","relay contacts","electrical switch relay ").join(" ")),this.createVertexTemplateEntry(g+"resonator;",100,50,"","Resonator",null,null,this.getTagsForStencil("mxgraph.electrical.electro-mechanical","resonator","electrical switch relay ").join(" ")),this.createVertexTemplateEntry(g+"pilot_light;",100,100,"","Pilot Light",null,null,this.getTagsForStencil("mxgraph.electrical.electro-mechanical", "pilot light","electrical switch relay ").join(" ")),this.createVertexTemplateEntry(g+"relay_coil_2;",100,70,"","Relay Coil",null,null,this.getTagsForStencil("mxgraph.electrical.electro-mechanical","relay coil","electrical switch relay ").join(" ")),this.createVertexTemplateEntry(g+"mercury_switch;",80,80,"","Mercury Switch",null,null,this.getTagsForStencil("mxgraph.electrical.electro-mechanical","mercury switch","electrical switch relay ").join(" ")),this.createVertexTemplateEntry(g+"mercury_switch_2;", -50,90,"","Mercury Switch",null,null,this.getTagsForStencil("mxgraph.electrical.electro-mechanical","mercury switch","electrical switch relay ").join(" "))]);this.addPaletteFunctions("electricalDiodes","Electrical / Diodes",!1,[this.createVertexTemplateEntry(b+"diode;",100,60,"","PN Diode",null,null,this.getTagsForStencil("mxgraph.electrical.diodes","diode","electrical diode ").join(" ")),this.createVertexTemplateEntry(b+"gunn_diode;",100,60,"","Gunn Diode",null,null,this.getTagsForStencil("mxgraph.electrical.diodes", -"gunn_diode","electrical diode ").join(" ")),this.createVertexTemplateEntry(b+"schottky_diode;",100,60,"","Schottky Diode",null,null,this.getTagsForStencil("mxgraph.electrical.diodes","schottky_diode","electrical diode ").join(" ")),this.createVertexTemplateEntry(b+"zener_diode_2;",100,60,"","Breakdown",null,null,this.getTagsForStencil("mxgraph.electrical.diodes","zener_diode_2","electrical diode ").join(" ")),this.createVertexTemplateEntry(b+"tunnel_diode;",100,60,"","Tunnel Diode 1",null,null,this.getTagsForStencil("mxgraph.electrical.diodes", -"tunnel_diode","electrical diode ").join(" ")),this.createVertexTemplateEntry(b+"tunnel_diode_2;",100,80,"","Tunnel Diode 2",null,null,this.getTagsForStencil("mxgraph.electrical.diodes","tunnel_diode_2","electrical diode ").join(" ")),this.createVertexTemplateEntry(b+"field_effect_diode;",100,60,"","Field Effect Diode",null,null,this.getTagsForStencil("mxgraph.electrical.diodes","field_effect_diode","electrical diode ").join(" ")),this.createVertexTemplateEntry(b+"varactor_-_varicap;",100,60,"","Varactor - Varicap", -null,null,this.getTagsForStencil("mxgraph.electrical.diodes","varactor_-_varicap","electrical diode ").join(" ")),this.createVertexTemplateEntry(b+"zener_diode_1;",100,60,"","Zener Diode 1",null,null,this.getTagsForStencil("mxgraph.electrical.diodes","zener_diode_1","electrical diode ").join(" ")),this.createVertexTemplateEntry(b+"zener_diode_3;",100,60,"","Zener Diode 2",null,null,this.getTagsForStencil("mxgraph.electrical.diodes","zener_diode_3","electrical diode ").join(" ")),this.createVertexTemplateEntry(b+ -"four_layer_diode;",100,80,"","Four Layer Diode",null,null,this.getTagsForStencil("mxgraph.electrical.diodes","four_layer_diode","electrical diode ").join(" ")),this.createVertexTemplateEntry(b+"transorb_1;",100,60,"","Transorb 1",null,null,this.getTagsForStencil("mxgraph.electrical.diodes","transorb_1","electrical diode ").join(" ")),this.createVertexTemplateEntry(b+"transorb_2;",100,60,"","Transorb 2",null,null,this.getTagsForStencil("mxgraph.electrical.diodes","transorb_2","electrical diode ").join(" "))]); +50,90,"","Mercury Switch",null,null,this.getTagsForStencil("mxgraph.electrical.electro-mechanical","mercury switch","electrical switch relay ").join(" "))]);this.addPaletteFunctions("electricalDiodes","Electrical / Diodes",!1,[this.createVertexTemplateEntry(c+"diode;",100,60,"","PN Diode",null,null,this.getTagsForStencil("mxgraph.electrical.diodes","diode","electrical diode ").join(" ")),this.createVertexTemplateEntry(c+"gunn_diode;",100,60,"","Gunn Diode",null,null,this.getTagsForStencil("mxgraph.electrical.diodes", +"gunn_diode","electrical diode ").join(" ")),this.createVertexTemplateEntry(c+"schottky_diode;",100,60,"","Schottky Diode",null,null,this.getTagsForStencil("mxgraph.electrical.diodes","schottky_diode","electrical diode ").join(" ")),this.createVertexTemplateEntry(c+"zener_diode_2;",100,60,"","Breakdown",null,null,this.getTagsForStencil("mxgraph.electrical.diodes","zener_diode_2","electrical diode ").join(" ")),this.createVertexTemplateEntry(c+"tunnel_diode;",100,60,"","Tunnel Diode 1",null,null,this.getTagsForStencil("mxgraph.electrical.diodes", +"tunnel_diode","electrical diode ").join(" ")),this.createVertexTemplateEntry(c+"tunnel_diode_2;",100,80,"","Tunnel Diode 2",null,null,this.getTagsForStencil("mxgraph.electrical.diodes","tunnel_diode_2","electrical diode ").join(" ")),this.createVertexTemplateEntry(c+"field_effect_diode;",100,60,"","Field Effect Diode",null,null,this.getTagsForStencil("mxgraph.electrical.diodes","field_effect_diode","electrical diode ").join(" ")),this.createVertexTemplateEntry(c+"varactor_-_varicap;",100,60,"","Varactor - Varicap", +null,null,this.getTagsForStencil("mxgraph.electrical.diodes","varactor_-_varicap","electrical diode ").join(" ")),this.createVertexTemplateEntry(c+"zener_diode_1;",100,60,"","Zener Diode 1",null,null,this.getTagsForStencil("mxgraph.electrical.diodes","zener_diode_1","electrical diode ").join(" ")),this.createVertexTemplateEntry(c+"zener_diode_3;",100,60,"","Zener Diode 2",null,null,this.getTagsForStencil("mxgraph.electrical.diodes","zener_diode_3","electrical diode ").join(" ")),this.createVertexTemplateEntry(c+ +"four_layer_diode;",100,80,"","Four Layer Diode",null,null,this.getTagsForStencil("mxgraph.electrical.diodes","four_layer_diode","electrical diode ").join(" ")),this.createVertexTemplateEntry(c+"transorb_1;",100,60,"","Transorb 1",null,null,this.getTagsForStencil("mxgraph.electrical.diodes","transorb_1","electrical diode ").join(" ")),this.createVertexTemplateEntry(c+"transorb_2;",100,60,"","Transorb 2",null,null,this.getTagsForStencil("mxgraph.electrical.diodes","transorb_2","electrical diode ").join(" "))]); this.addPaletteFunctions("electricalSources","Electrical / Sources",!1,[this.createVertexTemplateEntry(p+"ac_source;",60,60,"","AC",null,null,this.getTagsForStencil("mxgraph.electrical.signal_sources","ac_source","electrical signal source ").join(" ")),this.createVertexTemplateEntry(p+"current_source;",40,60,"","Current",null,null,this.getTagsForStencil("mxgraph.electrical.signal_sources","current_source","electrical signal source ").join(" ")),this.createVertexTemplateEntry(p+"dc_source_1;",70,75, "","DC",null,null,this.getTagsForStencil("mxgraph.electrical.signal_sources","dc_source_1","electrical signal source ").join(" ")),this.createVertexTemplateEntry(p+"dc_source_2;",60,60,"","DC",null,null,this.getTagsForStencil("mxgraph.electrical.signal_sources","dc_source_2","electrical signal source ").join(" ")),this.createVertexTemplateEntry(p+"dc_source_3;",60,60,"","DC",null,null,this.getTagsForStencil("mxgraph.electrical.signal_sources","dc_source_3","electrical signal source ").join(" ")), this.createVertexTemplateEntry(p+"dependent_source_1;",60,60,"","Dependent",null,null,this.getTagsForStencil("mxgraph.electrical.signal_sources","dependent_source_1","electrical signal source ").join(" ")),this.createVertexTemplateEntry(p+"dependent_source_2;",60,60,"","Dependent",null,null,this.getTagsForStencil("mxgraph.electrical.signal_sources","dependent_source_2","electrical signal source ").join(" ")),this.createVertexTemplateEntry(p+"dependent_source_3;",60,60,"","Dependent",null,null,this.getTagsForStencil("mxgraph.electrical.signal_sources", @@ -5135,16 +5136,16 @@ this.createVertexTemplateEntry(f+"co-ax;",40,60,"","Co-Ax",null,null,this.getTag this.createVertexTemplateEntry(f+"fuse_2;",100,20,"","Fuse (IEEE)",null,null,this.getTagsForStencil("mxgraph.electrical.miscellaneous","fuse_2","electrical ").join(" ")),this.createVertexTemplateEntry(f+"fuse_3;",100,12,"","Fuse (obsolete)",null,null,this.getTagsForStencil("mxgraph.electrical.miscellaneous","fuse_3","electrical ").join(" ")),this.createVertexTemplateEntry(f+"fuse_4;",100,32,"","Fuse (IEEE)",null,null,this.getTagsForStencil("mxgraph.electrical.miscellaneous","fuse_4","electrical ").join(" ")), this.createVertexTemplateEntry(f+"light_bulb;",60,50,"","Light Bulb",null,null,this.getTagsForStencil("mxgraph.electrical.miscellaneous","light_bulb","electrical ").join(" ")),this.createVertexTemplateEntry(f+"illuminating_bulb;",60,50,"","Illuminating Bulb",null,null,this.getTagsForStencil("mxgraph.electrical.miscellaneous","illuminating_bulb","electrical ").join(" ")),this.createVertexTemplateEntry(f+"light_bulb;",60,50,"","Pilot Light",null,null,this.getTagsForStencil("mxgraph.electrical.miscellaneous", "light_bulb","electrical ").join(" ")),this.createVertexTemplateEntry(f+"neon_lamp_2;",60,50,"","Neon Lamp",null,null,this.getTagsForStencil("mxgraph.electrical.miscellaneous","neon_lamp_2","electrical ").join(" ")),this.createVertexTemplateEntry(f+"flourescent_lamp",80,30,"","Flourescent Lamp",null,null,this.getTagsForStencil("mxgraph.electrical.signal_sources","flourescent lamp","electrical ").join(" ")),this.createVertexTemplateEntry(m+"lamp",50,100,"","Lamp",null,null,this.getTagsForStencil("mxgraph.electrical.signal_sources", -"lamp","electrical optical ").join(" ")),this.createVertexTemplateEntry(f+"thermocouple;",80,81,"","Thermocouple",null,null,this.getTagsForStencil("mxgraph.electrical.miscellaneous","thermocouple","electrical ").join(" ")),this.createVertexTemplateEntry(d+"amplifier;",90,100,"","Amplifier",null,null,this.getTagsForStencil("mxgraph.electrical.abstract","amplifier","electrical ").join(" ")),this.createVertexTemplateEntry(d+"controlled_amplifier;",100,90,"","Controlled Amplifier",null,null,this.getTagsForStencil("mxgraph.electrical.abstract", -"controlled_amplifier","electrical ").join(" ")),this.createVertexTemplateEntry(d+"dac;",70,46,"","DAC",null,null,this.getTagsForStencil("mxgraph.electrical.abstract","dac","electrical ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;align=center;fillColor=#ffffff;html=1;strokeWidth=1;shape=mxgraph.electrical.abstract.mux2;",80,120,"Mux","Mux",null,null,this.getTagsForStencil("mxgraph.electrical.abstract","mux","electrical ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;align=center;fillColor=#ffffff;html=1;strokeWidth=1;shape=mxgraph.electrical.abstract.mux2;operation=demux;", -80,120,"Demux","Demux",null,null,this.getTagsForStencil("mxgraph.electrical.abstract","mux","electrical ").join(" ")),this.createVertexTemplateEntry(d+"operational_amp_1;",98,90,"","Operational Amp",null,null,this.getTagsForStencil("mxgraph.electrical.abstract","operational_amp_1","electrical ").join(" ")),this.createVertexTemplateEntry(d+"operational_amp_2;",98,90,"","Operational Amp",null,null,this.getTagsForStencil("mxgraph.electrical.abstract","operational_amp_2","electrical ").join(" ")),this.createVertexTemplateEntry(d+ -"ota_1;",100,90,"","OTA",null,null,this.getTagsForStencil("mxgraph.electrical.abstract","ota_1","electrical ").join(" ")),this.createVertexTemplateEntry(d+"ota_2;",100,90,"","OTA",null,null,this.getTagsForStencil("mxgraph.electrical.abstract","ota_2","electrical ").join(" ")),this.createVertexTemplateEntry(d+"ota_3;",100,90,"","OTA",null,null,this.getTagsForStencil("mxgraph.electrical.abstract","ota_3","electrical ").join(" ")),this.createVertexTemplateEntry(d+"quantizer;",52,46,"","Quantizer",null, -null,this.getTagsForStencil("mxgraph.electrical.abstract","quantizer","electrical ").join(" ")),this.createVertexTemplateEntry(d+"delta;",50,50,"","Delta",null,null,this.getTagsForStencil("mxgraph.electrical.abstract","delta","electrical ").join(" ")),this.createVertexTemplateEntry(mxConstants.STYLE_SHAPE+"=mxgraph.electrical.abstract.function;html=1;shadow=0;dashed=0;fillColor=#ffffff;align=center;strokeColor=#000000;strokeWidth=1;fontSize=24",50,50,"fn","Function",null,null,this.getTagsForStencil("mxgraph.electrical.abstract", -"function","electrical ").join(" ")),this.createVertexTemplateEntry(d+"integrator;",50,50,"","Integrator",null,null,this.getTagsForStencil("mxgraph.electrical.abstract","integrator","electrical ").join(" ")),this.createVertexTemplateEntry(d+"multiplier;",50,50,"","Multiplier",null,null,this.getTagsForStencil("mxgraph.electrical.abstract","multiplier","electrical ").join(" ")),this.createVertexTemplateEntry(d+"sum;",50,50,"","Sum",null,null,this.getTagsForStencil("mxgraph.electrical.abstract","sum", -"electrical ").join(" ")),this.createVertexTemplateEntry(d+"summation_point;",50,50,"","Summation Point",null,null,this.getTagsForStencil("mxgraph.electrical.abstract","summation_point","electrical ").join(" ")),this.createVertexTemplateEntry(d+"filter;",52,46,"","Filter",null,null,this.getTagsForStencil("mxgraph.electrical.abstract","filter","electrical ").join(" ")),this.createVertexTemplateEntry(a+"=mxgraph.electrical.logic_gates.bandpass_filter;",52,46,"","Bandpass Filter",null,null,this.getTagsForStencil("mxgraph.electrical.logic_gates", +"lamp","electrical optical ").join(" ")),this.createVertexTemplateEntry(f+"thermocouple;",80,81,"","Thermocouple",null,null,this.getTagsForStencil("mxgraph.electrical.miscellaneous","thermocouple","electrical ").join(" ")),this.createVertexTemplateEntry(b+"amplifier;",90,100,"","Amplifier",null,null,this.getTagsForStencil("mxgraph.electrical.abstract","amplifier","electrical ").join(" ")),this.createVertexTemplateEntry(b+"controlled_amplifier;",100,90,"","Controlled Amplifier",null,null,this.getTagsForStencil("mxgraph.electrical.abstract", +"controlled_amplifier","electrical ").join(" ")),this.createVertexTemplateEntry(b+"dac;",70,46,"","DAC",null,null,this.getTagsForStencil("mxgraph.electrical.abstract","dac","electrical ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;align=center;fillColor=#ffffff;html=1;strokeWidth=1;shape=mxgraph.electrical.abstract.mux2;",80,120,"Mux","Mux",null,null,this.getTagsForStencil("mxgraph.electrical.abstract","mux","electrical ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;align=center;fillColor=#ffffff;html=1;strokeWidth=1;shape=mxgraph.electrical.abstract.mux2;operation=demux;", +80,120,"Demux","Demux",null,null,this.getTagsForStencil("mxgraph.electrical.abstract","mux","electrical ").join(" ")),this.createVertexTemplateEntry(b+"operational_amp_1;",98,90,"","Operational Amp",null,null,this.getTagsForStencil("mxgraph.electrical.abstract","operational_amp_1","electrical ").join(" ")),this.createVertexTemplateEntry(b+"operational_amp_2;",98,90,"","Operational Amp",null,null,this.getTagsForStencil("mxgraph.electrical.abstract","operational_amp_2","electrical ").join(" ")),this.createVertexTemplateEntry(b+ +"ota_1;",100,90,"","OTA",null,null,this.getTagsForStencil("mxgraph.electrical.abstract","ota_1","electrical ").join(" ")),this.createVertexTemplateEntry(b+"ota_2;",100,90,"","OTA",null,null,this.getTagsForStencil("mxgraph.electrical.abstract","ota_2","electrical ").join(" ")),this.createVertexTemplateEntry(b+"ota_3;",100,90,"","OTA",null,null,this.getTagsForStencil("mxgraph.electrical.abstract","ota_3","electrical ").join(" ")),this.createVertexTemplateEntry(b+"quantizer;",52,46,"","Quantizer",null, +null,this.getTagsForStencil("mxgraph.electrical.abstract","quantizer","electrical ").join(" ")),this.createVertexTemplateEntry(b+"delta;",50,50,"","Delta",null,null,this.getTagsForStencil("mxgraph.electrical.abstract","delta","electrical ").join(" ")),this.createVertexTemplateEntry(mxConstants.STYLE_SHAPE+"=mxgraph.electrical.abstract.function;html=1;shadow=0;dashed=0;fillColor=#ffffff;align=center;strokeColor=#000000;strokeWidth=1;fontSize=24",50,50,"fn","Function",null,null,this.getTagsForStencil("mxgraph.electrical.abstract", +"function","electrical ").join(" ")),this.createVertexTemplateEntry(b+"integrator;",50,50,"","Integrator",null,null,this.getTagsForStencil("mxgraph.electrical.abstract","integrator","electrical ").join(" ")),this.createVertexTemplateEntry(b+"multiplier;",50,50,"","Multiplier",null,null,this.getTagsForStencil("mxgraph.electrical.abstract","multiplier","electrical ").join(" ")),this.createVertexTemplateEntry(b+"sum;",50,50,"","Sum",null,null,this.getTagsForStencil("mxgraph.electrical.abstract","sum", +"electrical ").join(" ")),this.createVertexTemplateEntry(b+"summation_point;",50,50,"","Summation Point",null,null,this.getTagsForStencil("mxgraph.electrical.abstract","summation_point","electrical ").join(" ")),this.createVertexTemplateEntry(b+"filter;",52,46,"","Filter",null,null,this.getTagsForStencil("mxgraph.electrical.abstract","filter","electrical ").join(" ")),this.createVertexTemplateEntry(a+"=mxgraph.electrical.logic_gates.bandpass_filter;",52,46,"","Bandpass Filter",null,null,this.getTagsForStencil("mxgraph.electrical.logic_gates", "bandpass_filter","").join(" ")),this.createVertexTemplateEntry(a+"=mxgraph.electrical.logic_gates.highpass_filter;",52,46,"","Highpass Filter",null,null,this.getTagsForStencil("mxgraph.electrical.logic_gates","highpass_filter","").join(" ")),this.createVertexTemplateEntry(a+"=mxgraph.electrical.logic_gates.lowpass_filter;",52,46,"","Lowpass Filter",null,null,this.getTagsForStencil("mxgraph.electrical.logic_gates","lowpass_filter","").join(" ")),this.createVertexTemplateEntry(mxConstants.STYLE_SHAPE+ "=mxgraph.electrical.abstract.thermistor_with_independent_integral_heater;html=1;shadow=0;dashed=0;fillColor=#ffffff;strokeColor=#000000;strokeWidth=1;align=center;overflow=fill;fontSize=12;",100,94.25,'<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr height="45%"><td align="center">\\temp\\</td></tr><tr height="55%"><td></td></tr></table>',"Thermistor With Independent Integral Heater",null,null,this.getTagsForStencil("mxgraph.electrical.abstract","thermistor_with_independent_integral_heater", -"electrical ").join(" ")),this.createVertexTemplateEntry(d+"voltage_regulator;",70,58,"","Voltage Regulator",null,null,this.getTagsForStencil("mxgraph.electrical.abstract","voltage_regulator","electrical ").join(" ")),this.createVertexTemplateEntry(p+"vdd;fontSize=24;",60,40,"V<sub>dd</sub>","Vdd",null,null,this.getTagsForStencil("mxgraph.electrical.signal_sources","vdd","electrical signal source ").join(" ")),this.createVertexTemplateEntry(mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=top;"+mxConstants.STYLE_VERTICAL_ALIGN+ +"electrical ").join(" ")),this.createVertexTemplateEntry(b+"voltage_regulator;",70,58,"","Voltage Regulator",null,null,this.getTagsForStencil("mxgraph.electrical.abstract","voltage_regulator","electrical ").join(" ")),this.createVertexTemplateEntry(p+"vdd;fontSize=24;",60,40,"V<sub>dd</sub>","Vdd",null,null,this.getTagsForStencil("mxgraph.electrical.signal_sources","vdd","electrical signal source ").join(" ")),this.createVertexTemplateEntry(mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=top;"+mxConstants.STYLE_VERTICAL_ALIGN+ "=bottom;"+mxConstants.STYLE_SHAPE+"=mxgraph.electrical.signal_sources.vss2;shadow=0;dashed=0;fillColor=#ffffff;align=center;strokeColor=#000000;strokeWidth=1;fontSize=24;html=1;",60,40,"V<sub>ss</sub>","Vss",null,null,this.getTagsForStencil("mxgraph.electrical.signal_sources","vss2","electrical signal source ").join(" ")),this.createVertexTemplateEntry(mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=top;"+mxConstants.STYLE_VERTICAL_ALIGN+"=bottom;"+mxConstants.STYLE_SHAPE+"=mxgraph.electrical.signal_sources.current_flow;shadow=0;dashed=0;fillColor=#ffffff;align=center;strokeColor=#000000;strokeWidth=1;fontSize=10;html=1;", 70,10,"5 mA","Current Flow",null,null,this.getTagsForStencil("mxgraph.electrical.signal_sources","current_flow","electrical signal source ").join(" ")),this.createVertexTemplateEntry(mxConstants.STYLE_LABEL_POSITION+"=right;"+mxConstants.STYLE_ALIGN+"=left;"+mxConstants.STYLE_SHAPE+"=mxgraph.electrical.signal_sources.voltage;shadow=0;dashed=0;fillColor=#ffffff;strokeColor=#000000;strokeWidth=1;fontSize=10;html=1;",10,70,"1.2 V","Voltage",null,null,this.getTagsForStencil("mxgraph.electrical.signal_sources", "voltage","electrical signal source ").join(" ")),this.createVertexTemplateEntry(p+"equipotential;",90,90,"","Equipotential",null,null,this.getTagsForStencil("mxgraph.electrical.signal_sources","equipotential","electrical signal source ").join(" ")),this.createVertexTemplateEntry(p+"protective_earth;",25,20,"","Equipotential",null,null,this.getTagsForStencil("mxgraph.electrical.signal_sources","protective_earth","electrical signal source ").join(" ")),this.createVertexTemplateEntry(p+"signal_ground;", @@ -5205,32 +5206,32 @@ this.createVertexTemplateEntry(v+"terminal_3_phase;pointerEvents=1;",43,10,"","T this.createVertexTemplateEntry(v+"2_line_bus;",130,25,"","2-Line Bus",null,null,this.getTagsForStencil("mxgraph.electrical.transmission","2 two line bus","electrical transmission paths bus buses").join(" ")),this.createVertexTemplateEntry(v+"3_line_bus;",130,30,"","3-Line Bus",null,null,this.getTagsForStencil("mxgraph.electrical.transmission","3 three line bus","electrical transmission paths bus buses").join(" ")),this.createVertexTemplateEntry(v+"4_line_bus;",130,75,"","4-Line Bus",null,null,this.getTagsForStencil("mxgraph.electrical.transmission", "3 three line bus","electrical transmission paths bus buses").join(" ")),this.createVertexTemplateEntry(v+"8_line_bus;",130,180,"","8-Line Bus",null,null,this.getTagsForStencil("mxgraph.electrical.transmission","3 three line bus","electrical transmission paths bus buses").join(" ")),this.createVertexTemplateEntry(v+"twoLineBusElbow;notch=25;",120,120,"","2-Line Bus Elbow",null,null,this.getTagsForStencil("mxgraph.electrical.transmission","2 two line bus elbow","electrical transmission paths bus buses").join(" ")), this.createVertexTemplateEntry(v+"threeLineBusElbow;notch=30;",120,120,"","3-Line Bus Elbow",null,null,this.getTagsForStencil("mxgraph.electrical.transmission","3 two line bus elbow","electrical transmission paths bus buses").join(" ")),this.createVertexTemplateEntry(v+"fourLineBusElbow;notch=75;",120,120,"","4-Line Bus Elbow",null,null,this.getTagsForStencil("mxgraph.electrical.transmission","4 two line bus elbow","electrical transmission paths bus buses").join(" ")),this.createVertexTemplateEntry(v+ -"eightLineBusElbow;notch=180;",200,200,"","8-Line Bus Elbow",null,null,this.getTagsForStencil("mxgraph.electrical.transmission","8 two line bus elbow","electrical transmission paths bus buses").join(" "))];this.addPalette("electricalTransmission","Electrical / Transmission Paths",!1,mxUtils.bind(this,function(a){for(var b=0;b<z.length;b++)a.appendChild(z[b](a))}))}})();(function(){Sidebar.prototype.addErPalette=function(){var a=this,d=new mxCell("Row",new mxGeometry(0,0,40,26),"text;strokeColor=none;fillColor=none;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=12;");d.vertex=!0;var e=[this.addEntry("er entity relation table",function(){var b=new mxCell("Table",new mxGeometry(0,0,160,110),"swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=26;fillColor=#e0e0e0;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;swimlaneFillColor=#ffffff;align=center;fontSize=14;"); -b.vertex=!0;b.insert(a.cloneCell(d,"Row 1"));b.insert(a.cloneCell(d,"Row 2"));b.insert(a.cloneCell(d,"Row 3"));return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Table")}),this.addEntry("er entity relation table section subsection",function(){var b=new mxCell("Section",new mxGeometry(0,0,140,110),"swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=22;fillColor=none;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;swimlaneFillColor=#ffffff;align=center;fontSize=14;"); -b.vertex=!0;b.insert(a.cloneCell(d,"Row 1"));b.insert(a.cloneCell(d,"Row 2"));b.insert(a.cloneCell(d,"Row 3"));return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Section")}),this.addDataEntry("er entity relation table section subsection",160,144,"ER Table 1","7ZjbbqMwEIafhtuVDSHdXBZ60GpTqWr6AgYcsNbYrHE2SZ9+x8a0SUmURCnZdkUOEjMeH2bm44+CF8Tl6l6RqniQGeVecOuhaw9NvCBWUuo327rKVUw593zEMi+48Xwfwdfz7w6FYRuGKqKo0CfN9JuZfwhf0MbzTBJOG2+t19x56yUrORFgRXMp9MyNILDTgvFsStZyYbauNUl/tVZUSMVeIJ5A5jcYHDCs9Iy9mMn+2KzGOI8ll8ruE1Bk3lszZ2ZFt5eiNcx9bPPE71wPZLUVOCW1bk8pOSdVzRJ7bjOxJCpnIpJay9IFtVnebR9qbl8wTjjLBfhS2IuqthZNNngEtqsmVZqu9rbGujb74lpzT2VJtVpD+JJlunDR46aVqKAsL9olRqPGSerGkb/O3dF18LjGH6Ah6NCwEOz3gv7IukAUpDKXkJhmhD/RVBORm9FIy8rVk9N5W3/lDm+uk7bmeKOmTWxkasdSwq+du2RZZlfdBEVIS2JdkZSJfNrsEozeXE9uN+OSsOScyyWYBSxGhTmN1EST5JXhSjKhbSnDCD5Q8Rh9C70QMo3Bxm82fEy40rEUtVaE2a5SAG1JDWxRpmT1DGjRNtvN+yV8x4x/LDP+ScxMdiAToD6IGXWIefx5NivJ5j25o+/HIrPNx4fhcYgAk6aD++hep1IIU5akrRnqMhCcxEBwMQbCDgMKyukj3I9ooMME2MW+uGJcXiHg97gHOsYdOv61PjR0/GfiEJ4tDv20/2qPOJxPwSAOX18cvg/icAlxuPqk4jDZIw7BIA6DOPgYDepwCXWYfFJ1wPjj+z/owiV1AffyfxN3H1oOutCDLuDTHlTuEoZzAbDOjQflLmjrgfpf"), +"eightLineBusElbow;notch=180;",200,200,"","8-Line Bus Elbow",null,null,this.getTagsForStencil("mxgraph.electrical.transmission","8 two line bus elbow","electrical transmission paths bus buses").join(" "))];this.addPalette("electricalTransmission","Electrical / Transmission Paths",!1,mxUtils.bind(this,function(a){for(var c=0;c<z.length;c++)a.appendChild(z[c](a))}))}})();(function(){Sidebar.prototype.addErPalette=function(){var a=this,b=new mxCell("Row",new mxGeometry(0,0,40,26),"text;strokeColor=none;fillColor=none;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=12;");b.vertex=!0;var e=[this.addEntry("er entity relation table",function(){var c=new mxCell("Table",new mxGeometry(0,0,160,110),"swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=26;fillColor=#e0e0e0;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;swimlaneFillColor=#ffffff;align=center;fontSize=14;"); +c.vertex=!0;c.insert(a.cloneCell(b,"Row 1"));c.insert(a.cloneCell(b,"Row 2"));c.insert(a.cloneCell(b,"Row 3"));return a.createVertexTemplateFromCells([c],c.geometry.width,c.geometry.height,"Table")}),this.addEntry("er entity relation table section subsection",function(){var c=new mxCell("Section",new mxGeometry(0,0,140,110),"swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=22;fillColor=none;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;swimlaneFillColor=#ffffff;align=center;fontSize=14;"); +c.vertex=!0;c.insert(a.cloneCell(b,"Row 1"));c.insert(a.cloneCell(b,"Row 2"));c.insert(a.cloneCell(b,"Row 3"));return a.createVertexTemplateFromCells([c],c.geometry.width,c.geometry.height,"Section")}),this.addDataEntry("er entity relation table section subsection",160,144,"ER Table 1","7ZjbbqMwEIafhtuVDSHdXBZ60GpTqWr6AgYcsNbYrHE2SZ9+x8a0SUmURCnZdkUOEjMeH2bm44+CF8Tl6l6RqniQGeVecOuhaw9NvCBWUuo327rKVUw593zEMi+48Xwfwdfz7w6FYRuGKqKo0CfN9JuZfwhf0MbzTBJOG2+t19x56yUrORFgRXMp9MyNILDTgvFsStZyYbauNUl/tVZUSMVeIJ5A5jcYHDCs9Iy9mMn+2KzGOI8ll8ruE1Bk3lszZ2ZFt5eiNcx9bPPE71wPZLUVOCW1bk8pOSdVzRJ7bjOxJCpnIpJay9IFtVnebR9qbl8wTjjLBfhS2IuqthZNNngEtqsmVZqu9rbGujb74lpzT2VJtVpD+JJlunDR46aVqKAsL9olRqPGSerGkb/O3dF18LjGH6Ah6NCwEOz3gv7IukAUpDKXkJhmhD/RVBORm9FIy8rVk9N5W3/lDm+uk7bmeKOmTWxkasdSwq+du2RZZlfdBEVIS2JdkZSJfNrsEozeXE9uN+OSsOScyyWYBSxGhTmN1EST5JXhSjKhbSnDCD5Q8Rh9C70QMo3Bxm82fEy40rEUtVaE2a5SAG1JDWxRpmT1DGjRNtvN+yV8x4x/LDP+ScxMdiAToD6IGXWIefx5NivJ5j25o+/HIrPNx4fhcYgAk6aD++hep1IIU5akrRnqMhCcxEBwMQbCDgMKyukj3I9ooMME2MW+uGJcXiHg97gHOsYdOv61PjR0/GfiEJ4tDv20/2qPOJxPwSAOX18cvg/icAlxuPqk4jDZIw7BIA6DOPgYDepwCXWYfFJ1wPjj+z/owiV1AffyfxN3H1oOutCDLuDTHlTuEoZzAbDOjQflLmjrgfpf"), this.addDataEntry("er entity relation table section subsection",160,112,"ER Table 2","7ZdRb+IwDIB/TV9Pabuy2+Najj2MSdPYHzBtaKNLkyrNDtivPydNRjtAwLFN22lQpNqxndj+atEgzurVjYKmupMF5UH8KyDXAbkK4kxJqTeyVdWrjHIeRIQVQTwOoojgL4gmh8xCa0YaUFTokzyjzvMP8CfaaR5hzmmnbfWaO227ZDUHgVK6kELP3ApBOa8YL6awlk9m61ZD/ttLaSUVe0Z7wMzHISpwWekZezbO0chEY5xnkktl94kpMd+B58xEdHsp2qLvvc8zfKW6g9XAcAqt9qeUnEPTsrk9t3GsQZVMpFJrWTsjn+VkeKiF/eA6cFYK1OW4F1W+Fl024QXKrppUabra2xqr6vfFteaGyppqtUbzJSt05axHXStJRVlZ+RChaxy0naJ88d3RddS4xh+gId6iQcklKsJtHipozC3mpRnwB5prEKVZTbVsXDk5XfjyK3d2cz/vl9yXtLNNTelYDvzaqWtWFDZqnxMhLYhtAzkT5bTbZUQ2qge3m2mJxJALjmnE4wqDUWFOIzVomL8g3EgmtK1kkuKFBc/IjyRIMNMM5XAj42XMlc6kaLUCZptKkbMlNaylhZLNI5JFfbb9xyV5hUx0LDLRSchc7SAmJu8BzMUWMPe3WKzJ7UnE9EsU7iNoQM0OGo4FaUjNxVtBc4gLk7ZL72gCcimEKdPc15BskxGfREYy+igykj2jJHqfURJ+j5IvPkpG+0bJScR8j5J/HyXJJx0ll5/uX4kN9sXnyMfPDf+Ivy0dP7foOBuLM+dDR8d/Nhwuzx4O57bfKnsvzc5o8HL9Fw=="), -this.addEntry("er entity relation table row",function(){return a.createVertexTemplateFromCells([d.clone()],d.geometry.width,d.geometry.height,"Row 1")}),this.addEntry("er entity relation table row",function(){var b=new mxCell("uniqueId",new mxGeometry(0,0,90,26),"shape=partialRectangle;top=0;left=0;right=0;bottom=0;fillColor=none;align=left;verticalAlign=top;fillColor=none;spacingLeft=34;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;dropTarget=0;fontSize=12;"); -b.vertex=!0;var c=a.cloneCell(d,"PK");c.connectable=!1;c.style="shape=partialRectangle;top=0;left=0;bottom=0;right=0;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[];portConstraint=eastwest;part=1;fontSize=12;";c.geometry.width=30;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Row 2")}),this.addEntry("er entity relation table row",function(){var b=new mxCell("uniqueId",new mxGeometry(0,0,90,26), -"shape=partialRectangle;top=0;left=0;right=0;bottom=1;align=left;verticalAlign=top;fillColor=none;spacingLeft=34;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;dropTarget=0;fontSize=12;");b.vertex=!0;var c=a.cloneCell(d,"PK");c.connectable=!1;c.style="shape=partialRectangle;top=0;left=0;bottom=0;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[];portConstraint=eastwest;part=1;fontSize=12;";c.geometry.width= -30;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Row 3")}),this.addEntry("er entity relation table row",function(){var b=new mxCell("row",new mxGeometry(0,0,120,26),"shape=partialRectangle;top=0;left=0;right=0;bottom=0;align=left;verticalAlign=top;fillColor=none;spacingLeft=60;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;dropTarget=0;fontSize=12;");b.vertex=!0;var c=a.cloneCell(d,"");c.connectable=!1;c.style= -"shape=partialRectangle;fontStyle=1;top=0;left=0;bottom=0;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[];portConstraint=eastwest;part=1;fontSize=12;";c.geometry.width=56;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Row 4")}),this.addEntry("er entity relation table row",function(){var b=new mxCell("uniqueId",new mxGeometry(0,0,90,26),"shape=partialRectangle;top=0;left=0;right=0;bottom=0;align=left;verticalAlign=top;fillColor=none;spacingLeft=34;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;dropTarget=0;fontSize=12;"); -b.vertex=!0;var c=a.cloneCell(d,"PK");c.connectable=!1;c.style="shape=partialRectangle;top=0;left=0;bottom=0;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[];portConstraint=eastwest;part=1;fontSize=12;";c.geometry.width=30;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Row 5")}),this.addEntry("er entity relation table row",function(){var b=new mxCell("uniqueId",new mxGeometry(0,0,90,26),"shape=partialRectangle;top=0;left=0;right=0;bottom=0;align=left;verticalAlign=top;fillColor=none;spacingLeft=34;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;dropTarget=0;fontSize=12;"); -b.vertex=!0;var c=a.cloneCell(d,"");c.connectable=!1;c.style="shape=partialRectangle;top=0;left=0;bottom=0;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[];portConstraint=eastwest;part=1;fontSize=12;";c.geometry.width=30;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Row 6")}),this.addEntry("er entity relation table row",function(){var b=new mxCell("uniqueId",new mxGeometry(0,0,90,26),"shape=partialRectangle;top=0;left=0;right=0;bottom=0;align=left;verticalAlign=top;fillColor=none;spacingLeft=34;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;dropTarget=0;fontSize=12;"); -b.vertex=!0;var c=a.cloneCell(d,"");c.connectable=!1;c.style="shape=partialRectangle;top=0;left=0;bottom=0;right=0;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[];portConstraint=eastwest;part=1;fontSize=12;";c.geometry.width=30;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Row 7")}),this.addEntry("er entity relation table row divider hline line separator",function(){var b=new mxCell("",new mxGeometry(0, -0,40,8),"line;strokeWidth=1;fillColor=none;align=left;verticalAlign=middle;spacingTop=-1;spacingLeft=3;spacingRight=3;rotatable=0;labelPosition=right;points=[];portConstraint=eastwest;fontSize=12;");b.vertex=!0;return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Divider")}),this.addEntry("er entity relation table row spacer space gap separator",function(){var b=new mxCell("",new mxGeometry(0,0,20,14),"text;fillColor=none;align=left;verticalAlign=middle;spacingTop=-1;spacingLeft=4;spacingRight=4;rotatable=0;labelPosition=right;points=[];portConstraint=eastwest;fontSize=12;"); -b.vertex=!0;return a.createVertexTemplateFromCells([b.clone()],b.geometry.width,b.geometry.height,"Spacer")}),this.createVertexTemplateEntry("text;align=center;verticalAlign=middle;spacingLeft=4;spacingRight=4;strokeColor=#000000;fillColor=#e0e0e0;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=14;",80,26,"Title","Title",null,null,"er entity relation table title label"),this.addEntry("er entity relation table",function(){var b=new mxCell("Entity",new mxGeometry(0,0,160,120), -"swimlane;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;fillColor=#008cff;fontColor=#FFFFFF;rounded=1;fontSize=14;fontStyle=0;strokeWidth=2;resizeParent=0;resizeLast=1;shadow=0;dashed=0;align=center;");b.vertex=!0;var c=new mxCell("+Attribute1\n+Attribute2\n+Attribute3",new mxGeometry(0,30,160,90),"align=left;strokeColor=none;fillColor=none;spacingLeft=4;fontSize=12;verticalAlign=top;resizable=0;rotatable=0;part=1;");c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b], -b.geometry.width,b.geometry.height,"Entity 2")}),this.createVertexTemplateEntry("ellipse;shape=doubleEllipse;margin=10;strokeWidth=2;fontSize=14;whiteSpace=wrap;html=1;align=center;",100,100,"Attribute","Attribute",null,null,"er entity relation attribute"),this.createVertexTemplateEntry("ellipse;shape=cloud;strokeWidth=2;fontSize=14;whiteSpace=wrap;html=1;align=center;",100,100,"Cloud","Cloud",null,null,"er entity relation cloud"),this.createVertexTemplateEntry("strokeWidth=2;rounded=1;arcSize=10;whiteSpace=wrap;html=1;align=center;fontSize=14;", +this.addEntry("er entity relation table row",function(){return a.createVertexTemplateFromCells([b.clone()],b.geometry.width,b.geometry.height,"Row 1")}),this.addEntry("er entity relation table row",function(){var c=new mxCell("uniqueId",new mxGeometry(0,0,90,26),"shape=partialRectangle;top=0;left=0;right=0;bottom=0;fillColor=none;align=left;verticalAlign=top;fillColor=none;spacingLeft=34;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;dropTarget=0;fontSize=12;"); +c.vertex=!0;var d=a.cloneCell(b,"PK");d.connectable=!1;d.style="shape=partialRectangle;top=0;left=0;bottom=0;right=0;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[];portConstraint=eastwest;part=1;fontSize=12;";d.geometry.width=30;c.insert(d);return a.createVertexTemplateFromCells([c],c.geometry.width,c.geometry.height,"Row 2")}),this.addEntry("er entity relation table row",function(){var c=new mxCell("uniqueId",new mxGeometry(0,0,90,26), +"shape=partialRectangle;top=0;left=0;right=0;bottom=1;align=left;verticalAlign=top;fillColor=none;spacingLeft=34;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;dropTarget=0;fontSize=12;");c.vertex=!0;var d=a.cloneCell(b,"PK");d.connectable=!1;d.style="shape=partialRectangle;top=0;left=0;bottom=0;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[];portConstraint=eastwest;part=1;fontSize=12;";d.geometry.width= +30;c.insert(d);return a.createVertexTemplateFromCells([c],c.geometry.width,c.geometry.height,"Row 3")}),this.addEntry("er entity relation table row",function(){var c=new mxCell("row",new mxGeometry(0,0,120,26),"shape=partialRectangle;top=0;left=0;right=0;bottom=0;align=left;verticalAlign=top;fillColor=none;spacingLeft=60;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;dropTarget=0;fontSize=12;");c.vertex=!0;var d=a.cloneCell(b,"");d.connectable=!1;d.style= +"shape=partialRectangle;fontStyle=1;top=0;left=0;bottom=0;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[];portConstraint=eastwest;part=1;fontSize=12;";d.geometry.width=56;c.insert(d);return a.createVertexTemplateFromCells([c],c.geometry.width,c.geometry.height,"Row 4")}),this.addEntry("er entity relation table row",function(){var c=new mxCell("uniqueId",new mxGeometry(0,0,90,26),"shape=partialRectangle;top=0;left=0;right=0;bottom=0;align=left;verticalAlign=top;fillColor=none;spacingLeft=34;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;dropTarget=0;fontSize=12;"); +c.vertex=!0;var d=a.cloneCell(b,"PK");d.connectable=!1;d.style="shape=partialRectangle;top=0;left=0;bottom=0;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[];portConstraint=eastwest;part=1;fontSize=12;";d.geometry.width=30;c.insert(d);return a.createVertexTemplateFromCells([c],c.geometry.width,c.geometry.height,"Row 5")}),this.addEntry("er entity relation table row",function(){var c=new mxCell("uniqueId",new mxGeometry(0,0,90,26),"shape=partialRectangle;top=0;left=0;right=0;bottom=0;align=left;verticalAlign=top;fillColor=none;spacingLeft=34;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;dropTarget=0;fontSize=12;"); +c.vertex=!0;var d=a.cloneCell(b,"");d.connectable=!1;d.style="shape=partialRectangle;top=0;left=0;bottom=0;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[];portConstraint=eastwest;part=1;fontSize=12;";d.geometry.width=30;c.insert(d);return a.createVertexTemplateFromCells([c],c.geometry.width,c.geometry.height,"Row 6")}),this.addEntry("er entity relation table row",function(){var c=new mxCell("uniqueId",new mxGeometry(0,0,90,26),"shape=partialRectangle;top=0;left=0;right=0;bottom=0;align=left;verticalAlign=top;fillColor=none;spacingLeft=34;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;dropTarget=0;fontSize=12;"); +c.vertex=!0;var d=a.cloneCell(b,"");d.connectable=!1;d.style="shape=partialRectangle;top=0;left=0;bottom=0;right=0;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[];portConstraint=eastwest;part=1;fontSize=12;";d.geometry.width=30;c.insert(d);return a.createVertexTemplateFromCells([c],c.geometry.width,c.geometry.height,"Row 7")}),this.addEntry("er entity relation table row divider hline line separator",function(){var c=new mxCell("",new mxGeometry(0, +0,40,8),"line;strokeWidth=1;fillColor=none;align=left;verticalAlign=middle;spacingTop=-1;spacingLeft=3;spacingRight=3;rotatable=0;labelPosition=right;points=[];portConstraint=eastwest;fontSize=12;");c.vertex=!0;return a.createVertexTemplateFromCells([c],c.geometry.width,c.geometry.height,"Divider")}),this.addEntry("er entity relation table row spacer space gap separator",function(){var c=new mxCell("",new mxGeometry(0,0,20,14),"text;fillColor=none;align=left;verticalAlign=middle;spacingTop=-1;spacingLeft=4;spacingRight=4;rotatable=0;labelPosition=right;points=[];portConstraint=eastwest;fontSize=12;"); +c.vertex=!0;return a.createVertexTemplateFromCells([c.clone()],c.geometry.width,c.geometry.height,"Spacer")}),this.createVertexTemplateEntry("text;align=center;verticalAlign=middle;spacingLeft=4;spacingRight=4;strokeColor=#000000;fillColor=#e0e0e0;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=14;",80,26,"Title","Title",null,null,"er entity relation table title label"),this.addEntry("er entity relation table",function(){var c=new mxCell("Entity",new mxGeometry(0,0,160,120), +"swimlane;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;fillColor=#008cff;fontColor=#FFFFFF;rounded=1;fontSize=14;fontStyle=0;strokeWidth=2;resizeParent=0;resizeLast=1;shadow=0;dashed=0;align=center;");c.vertex=!0;var b=new mxCell("+Attribute1\n+Attribute2\n+Attribute3",new mxGeometry(0,30,160,90),"align=left;strokeColor=none;fillColor=none;spacingLeft=4;fontSize=12;verticalAlign=top;resizable=0;rotatable=0;part=1;");b.vertex=!0;c.insert(b);return a.createVertexTemplateFromCells([c], +c.geometry.width,c.geometry.height,"Entity 2")}),this.createVertexTemplateEntry("ellipse;shape=doubleEllipse;margin=10;strokeWidth=2;fontSize=14;whiteSpace=wrap;html=1;align=center;",100,100,"Attribute","Attribute",null,null,"er entity relation attribute"),this.createVertexTemplateEntry("ellipse;shape=cloud;strokeWidth=2;fontSize=14;whiteSpace=wrap;html=1;align=center;",100,100,"Cloud","Cloud",null,null,"er entity relation cloud"),this.createVertexTemplateEntry("strokeWidth=2;rounded=1;arcSize=10;whiteSpace=wrap;html=1;align=center;fontSize=14;", 100,100,"Entity","Entity 3",null,null,"er entity relation "),this.createVertexTemplateEntry("strokeWidth=2;whiteSpace=wrap;html=1;align=center;fontSize=14;",100,100,"Entity","Entity 4",null,null,"er entity relation "),this.createVertexTemplateEntry("shape=ext;strokeWidth=2;margin=10;double=1;whiteSpace=wrap;html=1;align=center;fontSize=14;",100,100,"Entity","Entity 5",null,null,"er entity relation "),this.createVertexTemplateEntry("shape=rhombus;strokeWidth=2;fontSize=17;perimeter=rhombusPerimeter;whiteSpace=wrap;html=1;align=center;fontSize=14;", -100,100,"Has","Has",null,null,"er entity relation has"),this.createVertexTemplateEntry("shape=rhombus;double=1;strokeWidth=2;fontSize=17;perimeter=rhombusPerimeter;whiteSpace=wrap;html=1;align=center;fontSize=14;",100,100,"Has","Has",null,null,"er entity relation has"),this.addEntry("er entity relation hierarchy",function(){var b=new mxCell("",new mxGeometry(0,0,100,100),"rounded=1;absoluteArcSize=1;html=1;strokeWidth=2;arcSize=10;fontSize=14;");b.vertex=!0;var c=new mxCell("main",new mxGeometry(0, -0,50,100),"html=1;strokeWidth=2;shape=mxgraph.er.anchor;fontSize=14;whiteSpace=wrap;");c.vertex=!0;b.insert(c);c=new mxCell("sub",new mxGeometry(50,5,45,90),"rounded=1;absoluteArcSize=1;html=1;strokeWidth=2;arcSize=10;fontSize=14;whiteSpace=wrap;points=[];strokeColor=inherit;fillColor=inherit;");c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Hierarchy")}),this.createVertexTemplateEntry("shape=note;strokeWidth=2;fontSize=14;size=20;whiteSpace=wrap;html=1;", +100,100,"Has","Has",null,null,"er entity relation has"),this.createVertexTemplateEntry("shape=rhombus;double=1;strokeWidth=2;fontSize=17;perimeter=rhombusPerimeter;whiteSpace=wrap;html=1;align=center;fontSize=14;",100,100,"Has","Has",null,null,"er entity relation has"),this.addEntry("er entity relation hierarchy",function(){var c=new mxCell("",new mxGeometry(0,0,100,100),"rounded=1;absoluteArcSize=1;html=1;strokeWidth=2;arcSize=10;fontSize=14;");c.vertex=!0;var b=new mxCell("main",new mxGeometry(0, +0,50,100),"html=1;strokeWidth=2;shape=mxgraph.er.anchor;fontSize=14;whiteSpace=wrap;");b.vertex=!0;c.insert(b);b=new mxCell("sub",new mxGeometry(50,5,45,90),"rounded=1;absoluteArcSize=1;html=1;strokeWidth=2;arcSize=10;fontSize=14;whiteSpace=wrap;points=[];strokeColor=inherit;fillColor=inherit;");b.vertex=!0;c.insert(b);return a.createVertexTemplateFromCells([c],c.geometry.width,c.geometry.height,"Hierarchy")}),this.createVertexTemplateEntry("shape=note;strokeWidth=2;fontSize=14;size=20;whiteSpace=wrap;html=1;", 100,100,"Note","Note",null,null,"er entity relation note"),this.createEdgeTemplateEntry("edgeStyle=entityRelationEdgeStyle;fontSize=12;html=1;endArrow=ERzeroToMany;endFill=1;",100,100,"","0 to Many Optional",null,"er entity relation zero many optional"),this.createEdgeTemplateEntry("edgeStyle=entityRelationEdgeStyle;fontSize=12;html=1;endArrow=ERoneToMany;",100,100,"","1 to Many",null,"er entity relation one many"),this.createEdgeTemplateEntry("edgeStyle=entityRelationEdgeStyle;fontSize=12;html=1;endArrow=ERmandOne;", 100,100,"","1 Mandatory",null,"er entity relation one mandatory"),this.createEdgeTemplateEntry("edgeStyle=entityRelationEdgeStyle;fontSize=12;html=1;endArrow=ERmandOne;startArrow=ERmandOne;",100,100,"","1 to 1",null,"er entity relation one"),this.createEdgeTemplateEntry("edgeStyle=entityRelationEdgeStyle;fontSize=12;html=1;endArrow=ERone;endFill=1;",100,100,"","1",null,"er entity relation one"),this.createEdgeTemplateEntry("edgeStyle=entityRelationEdgeStyle;fontSize=12;html=1;endArrow=ERzeroToOne;endFill=1;", 100,100,"","0 to 1",null,"er entity relation zero one"),this.createEdgeTemplateEntry("edgeStyle=entityRelationEdgeStyle;fontSize=12;html=1;endArrow=ERmany;",100,100,"","Many",null,"er entity relation many"),this.createEdgeTemplateEntry("edgeStyle=entityRelationEdgeStyle;fontSize=12;html=1;endArrow=ERmany;startArrow=ERmany;",100,100,"","Many to Many",null,"er entity relation many"),this.createEdgeTemplateEntry("edgeStyle=entityRelationEdgeStyle;fontSize=12;html=1;endArrow=ERzeroToMany;startArrow=ERzeroToOne;", 100,100,"","1 Optional to Many Optional",null,"er entity relation one optional many"),this.createEdgeTemplateEntry("edgeStyle=entityRelationEdgeStyle;fontSize=12;html=1;endArrow=ERzeroToMany;startArrow=ERmandOne;",100,100,"","1 Mandatory to Many Optional",null,"er entity relation one mandatory many optional"),this.createEdgeTemplateEntry("edgeStyle=entityRelationEdgeStyle;fontSize=12;html=1;endArrow=ERzeroToOne;startArrow=ERmandOne;",100,100,"","1 Mandatory to 1 Optional",null,"er entity relation one mandatory optional"), this.createEdgeTemplateEntry("edgeStyle=entityRelationEdgeStyle;fontSize=12;html=1;endArrow=ERoneToMany;startArrow=ERmandOne;",100,100,"","1 Mandatory to Many Mandatory",null,"er entity relation one mandatory many"),this.createEdgeTemplateEntry("edgeStyle=entityRelationEdgeStyle;fontSize=12;html=1;endArrow=ERoneToMany;startArrow=ERzeroToOne;",100,100,"","1 Optional to Many Mandatory",null,"er entity relation one optional mandatory many"),this.createEdgeTemplateEntry("edgeStyle=entityRelationEdgeStyle;fontSize=12;html=1;endArrow=ERoneToMany;startArrow=ERoneToMany;", 100,100,"","Many Mandatory to Many Mandatory",null,"er entity relation mandatory many"),this.createEdgeTemplateEntry("edgeStyle=entityRelationEdgeStyle;fontSize=12;html=1;endArrow=ERoneToMany;startArrow=ERzeroToMany;",100,100,"","Many Optional to Many Mandatory",null,"er entity relation mandatory many optional"),this.createEdgeTemplateEntry("edgeStyle=entityRelationEdgeStyle;fontSize=12;html=1;endArrow=ERzeroToMany;endFill=1;startArrow=ERzeroToMany;",100,100,"","Many Optional to Many Optional",null, -"er entity relation many optional")];this.addPaletteFunctions("er",mxResources.get("entityRelation"),!1,e)}})();(function(){Sidebar.prototype.addFloorplanPalette=function(){var a=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;html=1;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;align=center;shape=mxgraph.floorplan.",d=[this.createVertexTemplateEntry(a+"wall;fillColor=#000000;",100,10,"","Wall (Horizontal)",null,null,this.getTagsForStencil("mxgraph.floorplan","wall","floorplan ").join(" ")),this.createVertexTemplateEntry(a+"wall;fillColor=#000000;direction=south;",10,100,"","Wall (Vertical)",null,null,this.getTagsForStencil("mxgraph.floorplan", +"er entity relation many optional")];this.addPaletteFunctions("er",mxResources.get("entityRelation"),!1,e)}})();(function(){Sidebar.prototype.addFloorplanPalette=function(){var a=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;html=1;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;align=center;shape=mxgraph.floorplan.",b=[this.createVertexTemplateEntry(a+"wall;fillColor=#000000;",100,10,"","Wall (Horizontal)",null,null,this.getTagsForStencil("mxgraph.floorplan","wall","floorplan ").join(" ")),this.createVertexTemplateEntry(a+"wall;fillColor=#000000;direction=south;",10,100,"","Wall (Vertical)",null,null,this.getTagsForStencil("mxgraph.floorplan", "wall","floorplan ").join(" ")),this.createVertexTemplateEntry(a+"wallCorner;fillColor=#000000;",100,100,"","Wall (Corner NW)",null,null,this.getTagsForStencil("mxgraph.floorplan","wallCorner","floorplan ").join(" ")),this.createVertexTemplateEntry(a+"wallCorner;fillColor=#000000;direction=south;",100,100,"","Wall (Corner NE)",null,null,this.getTagsForStencil("mxgraph.floorplan","wallCorner","floorplan ").join(" ")),this.createVertexTemplateEntry(a+"wallCorner;fillColor=#000000;direction=west",100, 100,"","Wall (Corner SE)",null,null,this.getTagsForStencil("mxgraph.floorplan","wallCorner","floorplan ").join(" ")),this.createVertexTemplateEntry(a+"wallCorner;fillColor=#000000;direction=north",100,100,"","Wall (Corner SW)",null,null,this.getTagsForStencil("mxgraph.floorplan","wallCorner","floorplan ").join(" ")),this.createVertexTemplateEntry(a+"wallU;fillColor=#000000;",100,100,"","Wall (U)",null,null,this.getTagsForStencil("mxgraph.floorplan","wallU","floorplan ").join(" ")),this.createVertexTemplateEntry(a+ "room;fillColor=#000000;",100,100,"","Room",null,null,this.getTagsForStencil("mxgraph.floorplan","room","floorplan ").join(" ")),this.createVertexTemplateEntry("shape=dimension;whiteSpace=wrap;html=1;align=center;points=[];verticalAlign=bottom;spacingBottom=-5;labelBackgroundColor=#ffffff",100,40,"Label","Horizontal Dimension",null,null,"horizontal dimension measure distance unit"),this.createVertexTemplateEntry("shape=dimension;direction=west;whiteSpace=wrap;html=1;align=center;points=[];verticalAlign=top;spacingTop=-8;labelBackgroundColor=#ffffff", @@ -5247,34 +5248,34 @@ this.createVertexTemplateEntry(a+"fireplace;",304,200,"","Fireplace",null,null,t "refrigerator;",60,62,"","Refrigerator",null,null,this.getTagsForStencil("mxgraph.floorplan","refrigerator","floorplan ").join(" ")),this.createVertexTemplateEntry(a+"shower;",100,100,"","Shower",null,null,this.getTagsForStencil("mxgraph.floorplan","shower","floorplan ").join(" ")),this.createVertexTemplateEntry(a+"sink_1;",40,35,"","Sink 1",null,null,this.getTagsForStencil("mxgraph.floorplan","sink_1","floorplan ").join(" ")),this.createVertexTemplateEntry(a+"sink_2;",40,35,"","Sink 2",null,null, this.getTagsForStencil("mxgraph.floorplan","sink_2","floorplan ").join(" ")),this.createVertexTemplateEntry(a+"sink_double;",80,35,"","Sink Double",null,null,this.getTagsForStencil("mxgraph.floorplan","sink_double","floorplan ").join(" ")),this.createVertexTemplateEntry(a+"sofa;",90,80,"","Sofa",null,null,this.getTagsForStencil("mxgraph.floorplan","sofa","floorplan ").join(" ")),this.createVertexTemplateEntry(a+"spiral_stairs;",200,200,"","Spiral Stairs",null,null,this.getTagsForStencil("mxgraph.floorplan", "spiral_stairs","floorplan ").join(" ")),this.createVertexTemplateEntry(a+"table;",90,50,"","Table",null,null,this.getTagsForStencil("mxgraph.floorplan","table","floorplan ").join(" ")),this.createVertexTemplateEntry(a+"toilet;",50,67,"","Toilet",null,null,this.getTagsForStencil("mxgraph.floorplan","toilet","floorplan ").join(" ")),this.createVertexTemplateEntry(a+"water_cooler;",40,40,"","Water Cooler",null,null,this.getTagsForStencil("mxgraph.floorplan","water_cooler","floorplan ").join(" ")),this.createVertexTemplateEntry(a+ -"workstation;",50,40,"","Workstation",null,null,this.getTagsForStencil("mxgraph.floorplan","workstation","floorplan ").join(" ")),this.addEntry("floorplan kitchen table small",function(){var e=new mxCell("",new mxGeometry(0,20,80,80),"shape=rect;shadow=0;");e.vertex=!0;var b=new mxCell("",new mxGeometry(20,0,40,52),a+"chair;shadow=0;");b.vertex=!0;var c=new mxCell("",new mxGeometry(20,68,40,52),a+"chair;shadow=0;rotation=180;");c.vertex=!0;return sb.createVertexTemplateFromCells([b,c,e],80,120,"Small kitchen table")}), -this.addEntry("floorplan kitchen table",function(){var e=new mxCell("",new mxGeometry(20,20,100,100),"shape=rect;shadow=0;");e.vertex=!0;var b=new mxCell("",new mxGeometry(50,0,40,52),a+"chair;shadow=0;");b.vertex=!0;var c=new mxCell("",new mxGeometry(50,88,40,52),a+"chair;shadow=0;direction=west;");c.vertex=!0;var d=new mxCell("",new mxGeometry(0,50,52,40),a+"chair;shadow=0;direction=north;");d.vertex=!0;var g=new mxCell("",new mxGeometry(88,50,52,40),a+"chair;shadow=0;direction=south");g.vertex= -!0;return sb.createVertexTemplateFromCells([b,c,d,g,e],140,140,"Kitchen table")}),this.addEntry("floorplan kitchen table",function(){var e=new mxCell("",new mxGeometry(20,20,100,100),"shape=ellipse;shadow=0;");e.vertex=!0;var b=new mxCell("",new mxGeometry(50,0,40,52),a+"chair;shadow=0;");b.vertex=!0;var c=new mxCell("",new mxGeometry(50,88,40,52),a+"chair;shadow=0;direction=west;");c.vertex=!0;var d=new mxCell("",new mxGeometry(0,50,52,40),a+"chair;shadow=0;direction=north;");d.vertex=!0;var g=new mxCell("", -new mxGeometry(88,50,52,40),a+"chair;shadow=0;direction=south");g.vertex=!0;return sb.createVertexTemplateFromCells([b,c,d,g,e],140,140,"Round kitchen table")}),this.addEntry("floorplan kitchen table large",function(){var e=new mxCell("",new mxGeometry(20,20,160,100),"shape=rect;shadow=0;");e.vertex=!0;var b=new mxCell("",new mxGeometry(50,0,40,52),a+"chair;shadow=0;");b.vertex=!0;var c=new mxCell("",new mxGeometry(50,88,40,52),a+"chair;shadow=0;direction=west;");c.vertex=!0;var d=new mxCell("",new mxGeometry(0, -50,52,40),a+"chair;shadow=0;direction=north;");d.vertex=!0;var g=new mxCell("",new mxGeometry(148,50,52,40),a+"chair;shadow=0;direction=south");g.vertex=!0;var h=new mxCell("",new mxGeometry(110,0,40,52),a+"chair;shadow=0;");h.vertex=!0;var k=new mxCell("",new mxGeometry(110,88,40,52),a+"chair;shadow=0;direction=west;");k.vertex=!0;return sb.createVertexTemplateFromCells([b,c,d,g,h,k,e],200,140,"Large kitchen table")}),this.addEntry("floorplan kitchen table large",function(){var e=new mxCell("",new mxGeometry(20, -20,160,100),"shape=ellipse;shadow=0;");e.vertex=!0;var b=new mxCell("",new mxGeometry(50,0,40,52),a+"chair;shadow=0;");b.vertex=!0;var c=new mxCell("",new mxGeometry(50,88,40,52),a+"chair;shadow=0;direction=west;");c.vertex=!0;var d=new mxCell("",new mxGeometry(0,50,52,40),a+"chair;shadow=0;direction=north;");d.vertex=!0;var g=new mxCell("",new mxGeometry(148,50,52,40),a+"chair;shadow=0;direction=south");g.vertex=!0;var h=new mxCell("",new mxGeometry(110,0,40,52),a+"chair;shadow=0;");h.vertex=!0; -var k=new mxCell("",new mxGeometry(110,88,40,52),a+"chair;shadow=0;direction=west;");k.vertex=!0;return sb.createVertexTemplateFromCells([b,c,d,g,h,k,e],200,140,"Large kitchen table")}),this.addEntry("floorplan office table",function(){var e=new mxCell("",new mxGeometry(0,20,80,50),"shape=rect;shadow=0;");e.vertex=!0;var b=new mxCell("",new mxGeometry(20,0,40,43),a+"office_chair;shadow=0;");b.vertex=!0;var c=new mxCell("",new mxGeometry(15,30,50,40),a+"workstation;shadow=0;flipV=1;");c.vertex=!0; -return sb.createVertexTemplateFromCells([b,e,c],80,70,"Office table")}),this.addEntry("floorplan office table",function(){var e=new mxCell("",new mxGeometry(20,20,100,100),"shape=rect;shadow=0;");e.vertex=!0;var b=new mxCell("",new mxGeometry(50,0,40,43),a+"office_chair;shadow=0;");b.vertex=!0;var c=new mxCell("",new mxGeometry(50,97,40,43),a+"office_chair;shadow=0;direction=west;");c.vertex=!0;var d=new mxCell("",new mxGeometry(0,50,43,40),a+"office_chair;shadow=0;direction=north;");d.vertex=!0; -var g=new mxCell("",new mxGeometry(97,50,43,40),a+"office_chair;shadow=0;direction=south");g.vertex=!0;return sb.createVertexTemplateFromCells([b,c,d,g,e],140,140,"Office table")}),this.addEntry("floorplan office table large",function(){var e=new mxCell("",new mxGeometry(20,20,160,100),"shape=rect;shadow=0;");e.vertex=!0;var b=new mxCell("",new mxGeometry(50,0,40,43),a+"office_chair;shadow=0;");b.vertex=!0;var c=new mxCell("",new mxGeometry(50,97,40,43),a+"office_chair;shadow=0;direction=west;"); -c.vertex=!0;var d=new mxCell("",new mxGeometry(0,50,43,40),a+"office_chair;shadow=0;direction=north;");d.vertex=!0;var g=new mxCell("",new mxGeometry(157,50,43,40),a+"office_chair;shadow=0;direction=south");g.vertex=!0;var h=new mxCell("",new mxGeometry(110,0,40,43),a+"office_chair;shadow=0;");h.vertex=!0;var k=new mxCell("",new mxGeometry(110,97,40,43),a+"office_chair;shadow=0;direction=west;");k.vertex=!0;return sb.createVertexTemplateFromCells([b,c,d,g,h,k,e],200,140,"Large office table")}),this.addEntry("floorplan office table large", -function(){var e=new mxCell("",new mxGeometry(20,20,160,100),"shape=ellipse;shadow=0;");e.vertex=!0;var b=new mxCell("",new mxGeometry(50,0,40,43),a+"office_chair;shadow=0;");b.vertex=!0;var c=new mxCell("",new mxGeometry(50,97,40,43),a+"office_chair;shadow=0;direction=west;");c.vertex=!0;var d=new mxCell("",new mxGeometry(0,50,43,40),a+"office_chair;shadow=0;direction=north;");d.vertex=!0;var g=new mxCell("",new mxGeometry(157,50,43,40),a+"office_chair;shadow=0;direction=south");g.vertex=!0;var h= -new mxCell("",new mxGeometry(110,0,40,43),a+"office_chair;shadow=0;");h.vertex=!0;var k=new mxCell("",new mxGeometry(110,97,40,43),a+"office_chair;shadow=0;direction=west;");k.vertex=!0;return sb.createVertexTemplateFromCells([b,c,d,g,h,k,e],200,140,"Large office table")}),this.addEntry("floorplan office table large",function(){var e=new mxCell("",new mxGeometry(20,20,280,100),"shape=ellipse;shadow=0;");e.vertex=!0;var b=new mxCell("",new mxGeometry(50,0,40,43),a+"office_chair;shadow=0;");b.vertex= -!0;var c=new mxCell("",new mxGeometry(50,97,40,43),a+"office_chair;shadow=0;direction=west;");c.vertex=!0;var d=new mxCell("",new mxGeometry(0,50,43,40),a+"office_chair;shadow=0;direction=north;");d.vertex=!0;var g=new mxCell("",new mxGeometry(277,50,43,40),a+"office_chair;shadow=0;direction=south");g.vertex=!0;var h=new mxCell("",new mxGeometry(110,0,40,43),a+"office_chair;shadow=0;");h.vertex=!0;var k=new mxCell("",new mxGeometry(110,97,40,43),a+"office_chair;shadow=0;direction=west;");k.vertex= -!0;var l=new mxCell("",new mxGeometry(170,0,40,43),a+"office_chair;shadow=0;");l.vertex=!0;var m=new mxCell("",new mxGeometry(170,97,40,43),a+"office_chair;shadow=0;direction=west;");m.vertex=!0;var q=new mxCell("",new mxGeometry(230,0,40,43),a+"office_chair;shadow=0;");q.vertex=!0;var r=new mxCell("",new mxGeometry(230,97,40,43),a+"office_chair;shadow=0;direction=west;");r.vertex=!0;return sb.createVertexTemplateFromCells([b,c,d,g,h,k,l,m,q,r,e],320,140,"Large office table")}),this.addEntry("floorplan office table conference large huge", -function(){var e=new mxCell("",new mxGeometry(20,20,520,100),"shape=ellipse;shadow=0;");e.vertex=!0;var b=new mxCell("",new mxGeometry(50,0,40,43),a+"office_chair;shadow=0;");b.vertex=!0;var c=new mxCell("",new mxGeometry(50,97,40,43),a+"office_chair;shadow=0;direction=west;");c.vertex=!0;var d=new mxCell("",new mxGeometry(0,50,43,40),a+"office_chair;shadow=0;direction=north;");d.vertex=!0;var g=new mxCell("",new mxGeometry(517,50,43,40),a+"office_chair;shadow=0;direction=south");g.vertex=!0;var h= +"workstation;",50,40,"","Workstation",null,null,this.getTagsForStencil("mxgraph.floorplan","workstation","floorplan ").join(" ")),this.addEntry("floorplan kitchen table small",function(){var b=new mxCell("",new mxGeometry(0,20,80,80),"shape=rect;shadow=0;");b.vertex=!0;var c=new mxCell("",new mxGeometry(20,0,40,52),a+"chair;shadow=0;");c.vertex=!0;var d=new mxCell("",new mxGeometry(20,68,40,52),a+"chair;shadow=0;rotation=180;");d.vertex=!0;return sb.createVertexTemplateFromCells([c,d,b],80,120,"Small kitchen table")}), +this.addEntry("floorplan kitchen table",function(){var b=new mxCell("",new mxGeometry(20,20,100,100),"shape=rect;shadow=0;");b.vertex=!0;var c=new mxCell("",new mxGeometry(50,0,40,52),a+"chair;shadow=0;");c.vertex=!0;var d=new mxCell("",new mxGeometry(50,88,40,52),a+"chair;shadow=0;direction=west;");d.vertex=!0;var f=new mxCell("",new mxGeometry(0,50,52,40),a+"chair;shadow=0;direction=north;");f.vertex=!0;var g=new mxCell("",new mxGeometry(88,50,52,40),a+"chair;shadow=0;direction=south");g.vertex= +!0;return sb.createVertexTemplateFromCells([c,d,f,g,b],140,140,"Kitchen table")}),this.addEntry("floorplan kitchen table",function(){var b=new mxCell("",new mxGeometry(20,20,100,100),"shape=ellipse;shadow=0;");b.vertex=!0;var c=new mxCell("",new mxGeometry(50,0,40,52),a+"chair;shadow=0;");c.vertex=!0;var d=new mxCell("",new mxGeometry(50,88,40,52),a+"chair;shadow=0;direction=west;");d.vertex=!0;var f=new mxCell("",new mxGeometry(0,50,52,40),a+"chair;shadow=0;direction=north;");f.vertex=!0;var g=new mxCell("", +new mxGeometry(88,50,52,40),a+"chair;shadow=0;direction=south");g.vertex=!0;return sb.createVertexTemplateFromCells([c,d,f,g,b],140,140,"Round kitchen table")}),this.addEntry("floorplan kitchen table large",function(){var b=new mxCell("",new mxGeometry(20,20,160,100),"shape=rect;shadow=0;");b.vertex=!0;var c=new mxCell("",new mxGeometry(50,0,40,52),a+"chair;shadow=0;");c.vertex=!0;var d=new mxCell("",new mxGeometry(50,88,40,52),a+"chair;shadow=0;direction=west;");d.vertex=!0;var f=new mxCell("",new mxGeometry(0, +50,52,40),a+"chair;shadow=0;direction=north;");f.vertex=!0;var g=new mxCell("",new mxGeometry(148,50,52,40),a+"chair;shadow=0;direction=south");g.vertex=!0;var h=new mxCell("",new mxGeometry(110,0,40,52),a+"chair;shadow=0;");h.vertex=!0;var k=new mxCell("",new mxGeometry(110,88,40,52),a+"chair;shadow=0;direction=west;");k.vertex=!0;return sb.createVertexTemplateFromCells([c,d,f,g,h,k,b],200,140,"Large kitchen table")}),this.addEntry("floorplan kitchen table large",function(){var b=new mxCell("",new mxGeometry(20, +20,160,100),"shape=ellipse;shadow=0;");b.vertex=!0;var c=new mxCell("",new mxGeometry(50,0,40,52),a+"chair;shadow=0;");c.vertex=!0;var d=new mxCell("",new mxGeometry(50,88,40,52),a+"chair;shadow=0;direction=west;");d.vertex=!0;var f=new mxCell("",new mxGeometry(0,50,52,40),a+"chair;shadow=0;direction=north;");f.vertex=!0;var g=new mxCell("",new mxGeometry(148,50,52,40),a+"chair;shadow=0;direction=south");g.vertex=!0;var h=new mxCell("",new mxGeometry(110,0,40,52),a+"chair;shadow=0;");h.vertex=!0; +var k=new mxCell("",new mxGeometry(110,88,40,52),a+"chair;shadow=0;direction=west;");k.vertex=!0;return sb.createVertexTemplateFromCells([c,d,f,g,h,k,b],200,140,"Large kitchen table")}),this.addEntry("floorplan office table",function(){var b=new mxCell("",new mxGeometry(0,20,80,50),"shape=rect;shadow=0;");b.vertex=!0;var c=new mxCell("",new mxGeometry(20,0,40,43),a+"office_chair;shadow=0;");c.vertex=!0;var d=new mxCell("",new mxGeometry(15,30,50,40),a+"workstation;shadow=0;flipV=1;");d.vertex=!0; +return sb.createVertexTemplateFromCells([c,b,d],80,70,"Office table")}),this.addEntry("floorplan office table",function(){var b=new mxCell("",new mxGeometry(20,20,100,100),"shape=rect;shadow=0;");b.vertex=!0;var c=new mxCell("",new mxGeometry(50,0,40,43),a+"office_chair;shadow=0;");c.vertex=!0;var d=new mxCell("",new mxGeometry(50,97,40,43),a+"office_chair;shadow=0;direction=west;");d.vertex=!0;var f=new mxCell("",new mxGeometry(0,50,43,40),a+"office_chair;shadow=0;direction=north;");f.vertex=!0; +var g=new mxCell("",new mxGeometry(97,50,43,40),a+"office_chair;shadow=0;direction=south");g.vertex=!0;return sb.createVertexTemplateFromCells([c,d,f,g,b],140,140,"Office table")}),this.addEntry("floorplan office table large",function(){var b=new mxCell("",new mxGeometry(20,20,160,100),"shape=rect;shadow=0;");b.vertex=!0;var c=new mxCell("",new mxGeometry(50,0,40,43),a+"office_chair;shadow=0;");c.vertex=!0;var d=new mxCell("",new mxGeometry(50,97,40,43),a+"office_chair;shadow=0;direction=west;"); +d.vertex=!0;var f=new mxCell("",new mxGeometry(0,50,43,40),a+"office_chair;shadow=0;direction=north;");f.vertex=!0;var g=new mxCell("",new mxGeometry(157,50,43,40),a+"office_chair;shadow=0;direction=south");g.vertex=!0;var h=new mxCell("",new mxGeometry(110,0,40,43),a+"office_chair;shadow=0;");h.vertex=!0;var k=new mxCell("",new mxGeometry(110,97,40,43),a+"office_chair;shadow=0;direction=west;");k.vertex=!0;return sb.createVertexTemplateFromCells([c,d,f,g,h,k,b],200,140,"Large office table")}),this.addEntry("floorplan office table large", +function(){var b=new mxCell("",new mxGeometry(20,20,160,100),"shape=ellipse;shadow=0;");b.vertex=!0;var c=new mxCell("",new mxGeometry(50,0,40,43),a+"office_chair;shadow=0;");c.vertex=!0;var d=new mxCell("",new mxGeometry(50,97,40,43),a+"office_chair;shadow=0;direction=west;");d.vertex=!0;var f=new mxCell("",new mxGeometry(0,50,43,40),a+"office_chair;shadow=0;direction=north;");f.vertex=!0;var g=new mxCell("",new mxGeometry(157,50,43,40),a+"office_chair;shadow=0;direction=south");g.vertex=!0;var h= +new mxCell("",new mxGeometry(110,0,40,43),a+"office_chair;shadow=0;");h.vertex=!0;var k=new mxCell("",new mxGeometry(110,97,40,43),a+"office_chair;shadow=0;direction=west;");k.vertex=!0;return sb.createVertexTemplateFromCells([c,d,f,g,h,k,b],200,140,"Large office table")}),this.addEntry("floorplan office table large",function(){var b=new mxCell("",new mxGeometry(20,20,280,100),"shape=ellipse;shadow=0;");b.vertex=!0;var c=new mxCell("",new mxGeometry(50,0,40,43),a+"office_chair;shadow=0;");c.vertex= +!0;var d=new mxCell("",new mxGeometry(50,97,40,43),a+"office_chair;shadow=0;direction=west;");d.vertex=!0;var f=new mxCell("",new mxGeometry(0,50,43,40),a+"office_chair;shadow=0;direction=north;");f.vertex=!0;var g=new mxCell("",new mxGeometry(277,50,43,40),a+"office_chair;shadow=0;direction=south");g.vertex=!0;var h=new mxCell("",new mxGeometry(110,0,40,43),a+"office_chair;shadow=0;");h.vertex=!0;var k=new mxCell("",new mxGeometry(110,97,40,43),a+"office_chair;shadow=0;direction=west;");k.vertex= +!0;var l=new mxCell("",new mxGeometry(170,0,40,43),a+"office_chair;shadow=0;");l.vertex=!0;var m=new mxCell("",new mxGeometry(170,97,40,43),a+"office_chair;shadow=0;direction=west;");m.vertex=!0;var q=new mxCell("",new mxGeometry(230,0,40,43),a+"office_chair;shadow=0;");q.vertex=!0;var r=new mxCell("",new mxGeometry(230,97,40,43),a+"office_chair;shadow=0;direction=west;");r.vertex=!0;return sb.createVertexTemplateFromCells([c,d,f,g,h,k,l,m,q,r,b],320,140,"Large office table")}),this.addEntry("floorplan office table conference large huge", +function(){var b=new mxCell("",new mxGeometry(20,20,520,100),"shape=ellipse;shadow=0;");b.vertex=!0;var c=new mxCell("",new mxGeometry(50,0,40,43),a+"office_chair;shadow=0;");c.vertex=!0;var d=new mxCell("",new mxGeometry(50,97,40,43),a+"office_chair;shadow=0;direction=west;");d.vertex=!0;var f=new mxCell("",new mxGeometry(0,50,43,40),a+"office_chair;shadow=0;direction=north;");f.vertex=!0;var g=new mxCell("",new mxGeometry(517,50,43,40),a+"office_chair;shadow=0;direction=south");g.vertex=!0;var h= new mxCell("",new mxGeometry(110,0,40,43),a+"office_chair;shadow=0;");h.vertex=!0;var k=new mxCell("",new mxGeometry(110,97,40,43),a+"office_chair;shadow=0;direction=west;");k.vertex=!0;var l=new mxCell("",new mxGeometry(170,0,40,43),a+"office_chair;shadow=0;");l.vertex=!0;var m=new mxCell("",new mxGeometry(170,97,40,43),a+"office_chair;shadow=0;direction=west;");m.vertex=!0;var q=new mxCell("",new mxGeometry(230,0,40,43),a+"office_chair;shadow=0;");q.vertex=!0;var r=new mxCell("",new mxGeometry(230, 97,40,43),a+"office_chair;shadow=0;direction=west;");r.vertex=!0;var n=new mxCell("",new mxGeometry(290,0,40,43),a+"office_chair;shadow=0;");n.vertex=!0;var p=new mxCell("",new mxGeometry(290,97,40,43),a+"office_chair;shadow=0;direction=west;");p.vertex=!0;var u=new mxCell("",new mxGeometry(350,0,40,43),a+"office_chair;shadow=0;");u.vertex=!0;var t=new mxCell("",new mxGeometry(350,97,40,43),a+"office_chair;shadow=0;direction=west;");t.vertex=!0;var y=new mxCell("",new mxGeometry(410,0,40,43),a+"office_chair;shadow=0;"); -y.vertex=!0;var x=new mxCell("",new mxGeometry(410,97,40,43),a+"office_chair;shadow=0;direction=west;");x.vertex=!0;var w=new mxCell("",new mxGeometry(470,0,40,43),a+"office_chair;shadow=0;");w.vertex=!0;var v=new mxCell("",new mxGeometry(470,97,40,43),a+"office_chair;shadow=0;direction=west;");v.vertex=!0;return sb.createVertexTemplateFromCells([b,c,d,g,h,k,l,m,q,r,n,p,u,t,y,x,w,v,e],560,140,"Conference table")})];this.addPalette("floorplan",mxResources.get("floorplans"),!1,mxUtils.bind(this,function(a){for(var b= -0;b<d.length;b++)a.appendChild(d[b](a))}))}})();(function(){Sidebar.prototype.addFlowchartPalette=function(){var a=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;html=1;strokeWidth=2;shape=mxgraph.flowchart.",d=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;html=1;strokeWidth=2;shape=";this.addPaletteFunctions("flowchart",mxResources.get("flowchart"),!1,[this.createVertexTemplateEntry("strokeWidth=2;html=1;shape=mxgraph.flowchart.annotation_1;align=left;pointerEvents=1", -50,100,"","Annotation",null,null,this.getTagsForStencil("mxgraph.flowchart","annotation_1","").join(" ")),this.createVertexTemplateEntry("strokeWidth=2;html=1;shape=mxgraph.flowchart.annotation_2;align=left;pointerEvents=1",50,100,"","Annotation",null,null,this.getTagsForStencil("mxgraph.flowchart","annotation_2","").join(" ")),this.createVertexTemplateEntry(d+"card;whiteSpace=wrap;size=20;arcSize=12;",100,60,"","Card",null,null,this.getTagsForStencil("mxgraph.flowchart","card","").join(" ")),this.createVertexTemplateEntry(a+ -"collate;",100,100,"","Collate",null,null,this.getTagsForStencil("mxgraph.flowchart","collate","").join(" ")),this.createVertexTemplateEntry(d+"parallelogram;perimeter=parallelogramPerimeter;whiteSpace=wrap;rounded=1;arcSize=12;size=0.23;",100,60,"","Data",null,null,this.getTagsForStencil("mxgraph.flowchart","data","").join(" ")),this.createVertexTemplateEntry("strokeWidth=2;html=1;shape=mxgraph.flowchart.database;whiteSpace=wrap;",60,60,"","Database",null,null,this.getTagsForStencil("mxgraph.flowchart", +y.vertex=!0;var x=new mxCell("",new mxGeometry(410,97,40,43),a+"office_chair;shadow=0;direction=west;");x.vertex=!0;var w=new mxCell("",new mxGeometry(470,0,40,43),a+"office_chair;shadow=0;");w.vertex=!0;var v=new mxCell("",new mxGeometry(470,97,40,43),a+"office_chair;shadow=0;direction=west;");v.vertex=!0;return sb.createVertexTemplateFromCells([c,d,f,g,h,k,l,m,q,r,n,p,u,t,y,x,w,v,b],560,140,"Conference table")})];this.addPalette("floorplan",mxResources.get("floorplans"),!1,mxUtils.bind(this,function(a){for(var c= +0;c<b.length;c++)a.appendChild(b[c](a))}))}})();(function(){Sidebar.prototype.addFlowchartPalette=function(){var a=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;html=1;strokeWidth=2;shape=mxgraph.flowchart.",b=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;html=1;strokeWidth=2;shape=";this.addPaletteFunctions("flowchart",mxResources.get("flowchart"),!1,[this.createVertexTemplateEntry("strokeWidth=2;html=1;shape=mxgraph.flowchart.annotation_1;align=left;pointerEvents=1", +50,100,"","Annotation",null,null,this.getTagsForStencil("mxgraph.flowchart","annotation_1","").join(" ")),this.createVertexTemplateEntry("strokeWidth=2;html=1;shape=mxgraph.flowchart.annotation_2;align=left;pointerEvents=1",50,100,"","Annotation",null,null,this.getTagsForStencil("mxgraph.flowchart","annotation_2","").join(" ")),this.createVertexTemplateEntry(b+"card;whiteSpace=wrap;size=20;arcSize=12;",100,60,"","Card",null,null,this.getTagsForStencil("mxgraph.flowchart","card","").join(" ")),this.createVertexTemplateEntry(a+ +"collate;",100,100,"","Collate",null,null,this.getTagsForStencil("mxgraph.flowchart","collate","").join(" ")),this.createVertexTemplateEntry(b+"parallelogram;perimeter=parallelogramPerimeter;whiteSpace=wrap;rounded=1;arcSize=12;size=0.23;",100,60,"","Data",null,null,this.getTagsForStencil("mxgraph.flowchart","data","").join(" ")),this.createVertexTemplateEntry("strokeWidth=2;html=1;shape=mxgraph.flowchart.database;whiteSpace=wrap;",60,60,"","Database",null,null,this.getTagsForStencil("mxgraph.flowchart", "database","").join(" ")),this.createVertexTemplateEntry("strokeWidth=2;html=1;shape=mxgraph.flowchart.decision;whiteSpace=wrap;",100,100,"","Decision",null,null,this.getTagsForStencil("mxgraph.flowchart","decision","").join(" ")),this.createVertexTemplateEntry("strokeWidth=2;html=1;shape=mxgraph.flowchart.delay;whiteSpace=wrap;",100,60,"","Delay",null,null,this.getTagsForStencil("mxgraph.flowchart","delay","").join(" ")),this.createVertexTemplateEntry("strokeWidth=2;html=1;shape=mxgraph.flowchart.direct_data;whiteSpace=wrap;", 100,60,"","Direct Data",null,null,this.getTagsForStencil("mxgraph.flowchart","direct_data","").join(" ")),this.createVertexTemplateEntry("strokeWidth=2;html=1;shape=mxgraph.flowchart.display;whiteSpace=wrap;",100,60,"","Display",null,null,this.getTagsForStencil("mxgraph.flowchart","display","").join(" ")),this.createVertexTemplateEntry("strokeWidth=2;html=1;shape=mxgraph.flowchart.document2;whiteSpace=wrap;size=0.25;",100,60,"","Document",null,null,this.getTagsForStencil("mxgraph.flowchart","document", "").join(" ")),this.createVertexTemplateEntry("strokeWidth=2;html=1;shape=mxgraph.flowchart.extract_or_measurement;whiteSpace=wrap;",95,60,"","Extract or Measurement",null,null,this.getTagsForStencil("mxgraph.flowchart","extract_or_measurement","").join(" ")),this.createVertexTemplateEntry("shape=internalStorage;whiteSpace=wrap;html=1;dx=15;dy=15;rounded=1;arcSize=8;strokeWidth=2;",70,70,"","Internal Storage",null,null,this.getTagsForStencil("mxgraph.flowchart","internal_storage","").join(" ")),this.createVertexTemplateEntry("strokeWidth=2;html=1;shape=mxgraph.flowchart.loop_limit;whiteSpace=wrap;", -100,60,"","Loop Limit",null,null,this.getTagsForStencil("mxgraph.flowchart","loop_limit","").join(" ")),this.createVertexTemplateEntry(d+"manualInput;whiteSpace=wrap;rounded=1;size=26;arcSize=11;",100,60,"","Manual Input",null,null,this.getTagsForStencil("mxgraph.flowchart","manual_input","").join(" ")),this.createVertexTemplateEntry(d+"trapezoid;perimeter=trapezoidPerimeter;whiteSpace=wrap;size=0.23;arcSize=10;flipV=1;",100,60,"","Manual Operation",null,null,this.getTagsForStencil("mxgraph.flowchart", -"manual_operation","").join(" ")),this.createVertexTemplateEntry("strokeWidth=2;html=1;shape=mxgraph.flowchart.merge_or_storage;whiteSpace=wrap;",95,60,"","Merge or Storage",null,null,this.getTagsForStencil("mxgraph.flowchart","merge_or_storage","").join(" ")),this.createVertexTemplateEntry("strokeWidth=2;html=1;shape=mxgraph.flowchart.multi-document;whiteSpace=wrap;",88,60,"","Multi-Document",null,null,this.getTagsForStencil("mxgraph.flowchart","multi-document","").join(" ")),this.createVertexTemplateEntry(d+ +100,60,"","Loop Limit",null,null,this.getTagsForStencil("mxgraph.flowchart","loop_limit","").join(" ")),this.createVertexTemplateEntry(b+"manualInput;whiteSpace=wrap;rounded=1;size=26;arcSize=11;",100,60,"","Manual Input",null,null,this.getTagsForStencil("mxgraph.flowchart","manual_input","").join(" ")),this.createVertexTemplateEntry(b+"trapezoid;perimeter=trapezoidPerimeter;whiteSpace=wrap;size=0.23;arcSize=10;flipV=1;",100,60,"","Manual Operation",null,null,this.getTagsForStencil("mxgraph.flowchart", +"manual_operation","").join(" ")),this.createVertexTemplateEntry("strokeWidth=2;html=1;shape=mxgraph.flowchart.merge_or_storage;whiteSpace=wrap;",95,60,"","Merge or Storage",null,null,this.getTagsForStencil("mxgraph.flowchart","merge_or_storage","").join(" ")),this.createVertexTemplateEntry("strokeWidth=2;html=1;shape=mxgraph.flowchart.multi-document;whiteSpace=wrap;",88,60,"","Multi-Document",null,null,this.getTagsForStencil("mxgraph.flowchart","multi-document","").join(" ")),this.createVertexTemplateEntry(b+ "offPageConnector;rounded=0;size=0.5;",60,60,"","Off-Page Reference",null,null,this.getTagsForStencil("mxgraph.flowchart","off-page_reference","").join(" ")),this.createVertexTemplateEntry(a+"on-page_reference;",60,60,"","On-Page Reference",null,null,this.getTagsForStencil("mxgraph.flowchart","on-page_reference","").join(" ")),this.createVertexTemplateEntry(a+"summing_function;",70,70,"","Or",null,null,this.getTagsForStencil("mxgraph.flowchart","summing_function","").join(" ")),this.createVertexTemplateEntry("shape=tape;whiteSpace=wrap;html=1;strokeWidth=2;size=0.19", -100,65,"","Tape",null,null,this.getTagsForStencil("mxgraph.flowchart","tape","").join(" ")),this.createVertexTemplateEntry(a+"parallel_mode;pointerEvents=1",95,40,"","Parallel Mode",null,null,this.getTagsForStencil("mxgraph.flowchart","parallel_mode","").join(" ")),this.createVertexTemplateEntry(d+"process;whiteSpace=wrap;rounded=1;size=0.14;arcSize=6;",100,60,"","Predefined Process",null,null,this.getTagsForStencil("mxgraph.flowchart","predefined_process","").join(" ")),this.createVertexTemplateEntry(d+ +100,65,"","Tape",null,null,this.getTagsForStencil("mxgraph.flowchart","tape","").join(" ")),this.createVertexTemplateEntry(a+"parallel_mode;pointerEvents=1",95,40,"","Parallel Mode",null,null,this.getTagsForStencil("mxgraph.flowchart","parallel_mode","").join(" ")),this.createVertexTemplateEntry(b+"process;whiteSpace=wrap;rounded=1;size=0.14;arcSize=6;",100,60,"","Predefined Process",null,null,this.getTagsForStencil("mxgraph.flowchart","predefined_process","").join(" ")),this.createVertexTemplateEntry(b+ "hexagon;perimeter=hexagonPerimeter2;arcSize=6;size=0.27;",100,60,"","Preparation",null,null,this.getTagsForStencil("mxgraph.flowchart","preparation","").join(" ")),this.createVertexTemplateEntry("rounded=1;whiteSpace=wrap;html=1;absoluteArcSize=1;arcSize=14;strokeWidth=2;",100,100,"","Process",null,null,this.getTagsForStencil("mxgraph.flowchart","process","").join(" ")),this.createVertexTemplateEntry("strokeWidth=2;html=1;shape=mxgraph.flowchart.sequential_data;whiteSpace=wrap;",100,100,"","Sequential Data", null,null,this.getTagsForStencil("mxgraph.flowchart","sequential_data","").join(" ")),this.createVertexTemplateEntry(a+"sort;",100,100,"","Sort",null,null,this.getTagsForStencil("mxgraph.flowchart","sort","").join(" ")),this.createVertexTemplateEntry("strokeWidth=2;html=1;shape=mxgraph.flowchart.start_1;whiteSpace=wrap;",100,60,"","Start",null,null,this.getTagsForStencil("mxgraph.flowchart","start_1","").join(" ")),this.createVertexTemplateEntry("strokeWidth=2;html=1;shape=mxgraph.flowchart.start_2;whiteSpace=wrap;", 100,100,"","Start",null,null,this.getTagsForStencil("mxgraph.flowchart","start_2","").join(" ")),this.createVertexTemplateEntry("strokeWidth=2;html=1;shape=mxgraph.flowchart.stored_data;whiteSpace=wrap;",100,60,"","Stored Data",null,null,this.getTagsForStencil("mxgraph.flowchart","stored_data","").join(" ")),this.createVertexTemplateEntry(a+"or;",70,70,"","Summing Junction",null,null,this.getTagsForStencil("mxgraph.flowchart","or","").join(" ")),this.createVertexTemplateEntry("strokeWidth=2;html=1;shape=mxgraph.flowchart.terminator;whiteSpace=wrap;", @@ -5284,29 +5285,29 @@ this.addDataEntry("gcp google cloud platform cardproduct",190,110,"Product Card" this.addDataEntry("gcp google cloud platform cardexpanded product",190,80,"Expanded Product Card","5ZZdb4MgFIZ/jbdGpbXusrMf2UWTJbvY5ULkKGQIBunW7tcPBPsR26zZ5s1G0xRezkF8Xjw1QHm9Wyvc0I0kwAO0DFCupNSuV+9y4DxIIkYCtAiSJDLfIFldmY272ajBCoS+JSFxCW+Yb8EpTmj1nnuB4JaCDY8CdE91bfa4iE231Uq+Qi65VF0gIl0zMyXjvDjqZdeMXilMmNlYnyOkALsQxUS+n636zIimXvE7BKVhd/UuO8nf4hpkDVrtTci7X8dG3DkSEQVWUZ+WeQ23blwdUo/MTMdju4wQ/QAhxY0NqXeVPQFhVTRhIetmq6H/fQFRsQ6TpXpCe4Ky2WpxgaqdSzO0nA888rxvApp8CRRlYXp32tIhXzQJp05VwLFmb3B2wUvY/TUfJTNbSaJ+h96o/fmwX0CWZQt64Nph4zcZORkYeY91QY30qGQBbctENbDWMNTWHCn0E/uwYoz8+NSQrhkdc1YJo3EobZo1gRWYz71cM0L4L3oUowuH3peEn1qSnluSjeDIdOBI7p4KIy7dc/E9P7LIfv60H6MYkn5d6/qaxl3Vuv4vMSbSeBSkkzGQzgZIN1uuWcPtIX8QrcbC1J5bznnyL+vO9BdMMcPjK5cLP30j+wQ="), this.addDataEntry("gcp google cloud platform cardexpanded product",150,100,"Expanded Product Card","7Zhfb6sgGMY/jbdGxM728syuvTrJknNxLhsiqGQoBunWnk9/QHDV6jaXlWZJR9MUHvnz+vzAt9GDSXnYClQXvzkmzIMPHkwE59LUykNCGPPCgGIPrr0wDNTXCzdvXAXt1aBGglRyzoDQDHhGbE+MYoRGHpkVMGoKorsHHrwvZKliXANVbaTgTyThjIu2I8RtUVcyylh60rO2KD0XCFMVWDem4hXRExUI85fBrH8ploVVbIRESHJ48y5byd7ilvCSSHFUXV7sPLrHwjgRFITmRTcssCJqjJC/jj2ZpirWt2kP4Rc8LFCtu5SHXG8BP09rP+VlvZek+92RKqetT9rWnt3xQn/esXXAx4rKM/kZX8OPfV35iwljYz8yqiAMSfpMBktM2W1XeeRULR4GXUwW0HHY7CbgWdYQOaL1GuosgNEIYGK8V+KDcf8cqPJMaiS8kn/oPy0CaNs9RFFblI4YzSulMZLpYdp0miL2y8olxZg5wgMmtr19KHyVTTRks3SAZvHx2erOEKMT277/WLqSucCJuU7cvRu5C4KtMid4XM/Z8eF4xy/bcis7HrqAEl82ndSC430qdykSuPEbiSqsarsSpcW3TivxVFK5CEQ4hHjnIqUsXULEtHm6RXDxFcCtXIJLGW9u8sgBcAV03Ro9dtFseGoqWk/Bgat4tQGfhHOWFTdtOcuewXtpsalRSqvcxmlb91xKXtqAHfCPJvhf5l98d4o6/C7yJgAj/PPP7g9+l/ija+Afv8oAP/i/Bf7l5fGr5uklmenef4f2Hw=="), this.addDataEntry("gcp google cloud platform cardservice",110,50,"Service Card","tVTRboMgFP0aXo1K23WPm936siVL9rDHhchVyVAM0tbu63cR2upsu27NIEbu4Vy4nCMSmpTtUrO6eFYcJKEPhCZaKeNGZZuAlCQOBSd0QeI4xIfEjydmo242rJmGylySELuENZMrcIgDGrOVHuCsKcDSQ0LvC1NijYsIh43R6gMSJZXuiJR3DWcyIWV6wLOuIZ5rxgUWtsupVAV2oYJxtRms+ia4KTziKwRtoD15yg7yR1yCKsHoLVI2fh3LiJwSYQEiL3za1GOscXG+Tz1ohgMv23EJ6RUSFqy2lLLN7RcQ5GkdpKqsVwZ273eoctHJZFXtqX0ztf2MqgN7PIiSmd/IGv8oK50Hs9t+m41VppNg6lANkhmxhsGGx8T3e74ogaXE4a5Cb9fWhfNhvsqyBszIun3dF7k5Gbn5pFKGDDwXjax/iTNmZDLqaKxNqjKv4tOCEfVxz7Z5aDviTIq8QkxCZtOsEQI3uvNwKTiX/2PZ7MxFuNKg7/fpL5ZgePj/OXr/9/gF")]; -this.addPalette("gcpCards","GCP / Cards",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))}})();(function(){Sidebar.prototype.addGCP2Palette=function(){this.addGCP2PathsPalette();this.addGCP2ZonesPalette();this.addGCP2ServiceCardsPalette();this.addGCP2UserDeviceCardsPalette();this.addGCP2ComputePalette();this.addGCP2APIPlatformEcosystemsPalette();this.addGCP2IdentitySecurityPalette();this.addGCP2BigDataPalette();this.addGCP2DataTransferPalette();this.addGCP2CloudAIPalette();this.addGCP2InternetOfThingsPalette();this.addGCP2StorageDatabasesPalette();this.addGCP2ManagementToolsPalette();this.addGCP2NetworkingPalette(); +this.addPalette("gcpCards","GCP / Cards",!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))}})();(function(){Sidebar.prototype.addGCP2Palette=function(){this.addGCP2PathsPalette();this.addGCP2ZonesPalette();this.addGCP2ServiceCardsPalette();this.addGCP2UserDeviceCardsPalette();this.addGCP2ComputePalette();this.addGCP2APIPlatformEcosystemsPalette();this.addGCP2IdentitySecurityPalette();this.addGCP2BigDataPalette();this.addGCP2DataTransferPalette();this.addGCP2CloudAIPalette();this.addGCP2InternetOfThingsPalette();this.addGCP2StorageDatabasesPalette();this.addGCP2ManagementToolsPalette();this.addGCP2NetworkingPalette(); this.addGCP2DeveloperToolsPalette();this.addGCP2ExpandedProductCardsPalette();this.addGCP2ProductCardsPalette();this.addGCP2GeneralIconsPalette();this.addGCP2IconsPalette()};Sidebar.prototype.addGCP2PathsPalette=function(){var a=[],a=[this.createEdgeTemplateEntry("edgeStyle=orthogonalEdgeStyle;fontSize=12;html=1;endArrow=blockThin;endFill=1;rounded=0;strokeWidth=2;endSize=4;startSize=4;dashed=0;strokeColor=#4284F3;",100,0,"","Primary Path",null,"gcp google cloud platform path primary"),this.createEdgeTemplateEntry("edgeStyle=orthogonalEdgeStyle;fontSize=12;html=1;endArrow=blockThin;endFill=1;rounded=0;strokeWidth=2;endSize=4;startSize=4;dashed=1;dashPattern=1 3;strokeColor=#4284F3;", 100,0,"","Optional Primary Path",null,"gcp google cloud platform path optional primary"),this.createEdgeTemplateEntry("edgeStyle=orthogonalEdgeStyle;fontSize=12;html=1;endArrow=blockThin;endFill=1;rounded=0;strokeWidth=2;endSize=4;startSize=4;dashed=0;strokeColor=#9E9E9E;",100,0,"","Secondary Path",null,"gcp google cloud platform path secondary"),this.createEdgeTemplateEntry("edgeStyle=orthogonalEdgeStyle;fontSize=12;html=1;endArrow=blockThin;endFill=1;rounded=0;strokeWidth=2;endSize=4;startSize=4;dashed=1;dashPattern=1 3;strokeColor=#9E9E9E;", 100,0,"","Optional Secondary Path",null,"gcp google cloud platform path optional secondary"),this.createEdgeTemplateEntry("edgeStyle=orthogonalEdgeStyle;fontSize=12;html=1;endArrow=blockThin;endFill=1;rounded=0;strokeWidth=2;endSize=4;startSize=4;strokeColor=#34A853;dashed=0;",100,0,"","Success Status",null,"gcp google cloud platform path success status"),this.createEdgeTemplateEntry("edgeStyle=orthogonalEdgeStyle;fontSize=12;html=1;endArrow=blockThin;endFill=1;rounded=0;strokeWidth=2;endSize=4;startSize=4;strokeColor=#EA4335;dashed=0;", -100,0,"","Failure Status",null,"gcp google cloud platform path failure status")];this.addPalette("gcp2Paths","GCP / Paths",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addGCP2ZonesPalette=function(){var a=this,d="points=[[0,0,0],[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0,0],[1,0.25,0],[1,0.5,0],[1,0.75,0],[1,1,0],[0.75,1,0],[0.5,1,0],[0.25,1,0],[0,1,0],[0,0.75,0],[0,0.5,0],[0,0.25,0]];rounded=1;absoluteArcSize=1;arcSize=2;html=1;strokeColor=none;gradientColor=none;shadow=0;dashed=0;fontSize=12;fontColor=#9E9E9E;align=left;verticalAlign=top;spacing=10;spacingTop=-4;", -e=[],e=[this.createVertexTemplateEntry(d+"fillColor=#ffffff;",120,70,"User 1","User 1 (Default)",null,null,this.getTagsForStencil("mxgraph.gcp2.zones","","gcp google cloud platform zone user").join(" ")),this.createVertexTemplateEntry(d+"fillColor=#F3E5F5;",120,150,"Infrastructure\nSystem","Infrastructure System",null,null,this.getTagsForStencil("mxgraph.gcp2.zones","","gcp google cloud platform zone infrastructure system").join(" ")),this.createVertexTemplateEntry(d+"fillColor=#EFEBE9;",120,200, -"colo / dc /\non-premises","colo / dc / on-premises",null,null,this.getTagsForStencil("mxgraph.gcp2.zones","","gcp google cloud platform zone colo dc on premises").join(" ")),this.createVertexTemplateEntry(d+"fillColor=#F1F8E9;",120,70,"System 1","System 1",null,null,this.getTagsForStencil("mxgraph.gcp2.zones","","gcp google cloud platform zone system").join(" ")),this.createVertexTemplateEntry(d+"fillColor=#FFEBEE;",120,70,"External SaaS\nProviders","External SaaS Providers",null,null,this.getTagsForStencil("mxgraph.gcp2.zones", -"","gcp google cloud platform zone external saas providers").join(" ")),this.createVertexTemplateEntry(d+"fillColor=#FFF8E1;",120,70,"External Data\nSources","External Data Sources",null,null,this.getTagsForStencil("mxgraph.gcp2.zones","","gcp google cloud platform zone external data sources").join(" ")),this.createVertexTemplateEntry(d+"fillColor=#E0F2F1;",120,75,"External\nInfrastructure\n3<sup>rd</sup> Party","External Infrastructure 3rd party",null,null,this.getTagsForStencil("mxgraph.gcp2.zones", -"","gcp google cloud platform zone external infrastructure 3rd party").join(" ")),this.createVertexTemplateEntry(d+"fillColor=#E1F5FE;",120,75,"External\nInfrastructure\n1<sup>st</sup> Party","External Infrastructure 1st party",null,null,this.getTagsForStencil("mxgraph.gcp2.zones","","gcp google cloud platform zone external infrastructure 1st party").join(" ")),this.addEntry("gcp google cloud platform zone project cloud service provider",function(){var b=new mxCell("Project Zone / Cloud Service Provider", -new mxGeometry(0,0,530,490),d+"fillColor=#F6F6F6;");b.vertex=!0;var c=new mxCell("Logical Grouping of Services / Instances",new mxGeometry(0,0,250,180),d+"fillColor=#E3F2FD;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(10,50);c.vertex=!0;b.insert(c);var e=new mxCell("Zone",new mxGeometry(0,0,230,120),d+"fillColor=#FFF3E0;");e.geometry.relative=!0;e.geometry.offset=new mxPoint(10,50);e.vertex=!0;c.insert(e);c=new mxCell("SubNetwork",new mxGeometry(0,0,210,60),d+"fillColor=#EDE7F6;");c.geometry.relative= -!0;c.geometry.offset=new mxPoint(10,50);c.vertex=!0;e.insert(c);e=new mxCell("Kubernetes cluster",new mxGeometry(0,0,250,120),d+"fillColor=#FCE4EC;");e.geometry.relative=!0;e.geometry.offset=new mxPoint(10,240);e.vertex=!0;b.insert(e);c=new mxCell("pod",new mxGeometry(0,0,210,60),d+"fillColor=#E8F5E9;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(10,50);c.vertex=!0;e.insert(c);e=new mxCell("Account",new mxGeometry(0,0,250,60),d+"fillColor=#E8EAF6;");e.geometry.relative=!0;e.geometry.offset= -new mxPoint(10,370);e.vertex=!0;b.insert(e);e=new mxCell("Region",new mxGeometry(0,0,250,310),d+"fillColor=#ECEFF1;");e.geometry.relative=!0;e.geometry.offset=new mxPoint(270,50);e.vertex=!0;b.insert(e);c=new mxCell("Zone",new mxGeometry(0,0,230,250),d+"fillColor=#FFF3E0;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(10,50);c.vertex=!0;e.insert(c);e=new mxCell("Firewall",new mxGeometry(0,0,210,190),d+"fillColor=#FBE9E7;");e.geometry.relative=!0;e.geometry.offset=new mxPoint(10,50);e.vertex= -!0;c.insert(e);c=new mxCell("Instance Group",new mxGeometry(0,0,190,60),d+"fillColor=#F9FBE7;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(10,50);c.vertex=!0;e.insert(c);c=new mxCell("Replica Pool",new mxGeometry(0,0,190,60),d+"fillColor=#E0F7FA;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(10,120);c.vertex=!0;e.insert(c);e=new mxCell("Optional Component",new mxGeometry(0,0,250,60),"rounded=1;absoluteArcSize=1;arcSize=2;html=1;strokeColor=none;gradientColor=none;shadow=0;dashed=1;strokeColor=#4284F3;fontSize=12;fontColor=#9E9E9E;align=left;verticalAlign=top;spacing=10;spacingTop=-4;fillColor=none;dashPattern=1 2;strokeWidth=2;"); -e.geometry.relative=!0;e.geometry.offset=new mxPoint(270,370);e.vertex=!0;b.insert(e);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Project Zone / Cloud Service Provider")}),this.createVertexTemplateEntry("fillColor=#4DA1F5;strokeColor=none;shadow=1;gradientColor=none;fontSize=14;align=left;spacingLeft=50;fontColor=#ffffff;",1E3,40,"Architecture: App Engine and Cloud Endpoints","Title bar",null,null,this.getTagsForStencil("mxgraph.gcp2.zones","","gcp google cloud platform zone title bar").join(" ")), -this.createVertexTemplateEntry("fillColor=#ffffff;strokeColor=none;shadow=0;gradientColor=none;fontSize=11;align=left;spacing=10;fontColor=#;9E9E9E;verticalAlign=top;spacingTop=100;",300,350,"Use this note to call out\nor clarify parts of a diagram","Note",null,null,this.getTagsForStencil("mxgraph.gcp2.zones","","gcp google cloud platform zone note").join(" ")),this.addEntry("gcp google cloud platform zone project",function(){var b=new mxCell("<b>Google </b>Cloud Platform",new mxGeometry(0,0,650, -350),"fillColor=#F6F6F6;strokeColor=none;shadow=0;gradientColor=none;fontSize=14;align=left;spacing=10;fontColor=#717171;9E9E9E;verticalAlign=top;spacingTop=-4;fontStyle=0;spacingLeft=40;html=1;");b.vertex=!0;var c=new mxCell("",new mxGeometry(0,0,23,20),"shape=mxgraph.gcp2.google_cloud_platform;fillColor=#F6F6F6;strokeColor=none;shadow=0;gradientColor=none;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(20,10);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width, -b.geometry.height,"Project Zone")}),this.addEntry("gcp google cloud platform zone markers",function(){d="shape=ellipse;perimeter=ellipsePerimeter;fillColor=#ffffff;strokeColor=#BDBDBD;strokeWidth=2;shadow=0;gradientColor=none;fontColor=#757575;align=center;html=1;fontStyle=1;spacingTop=-1;";var b=new mxCell("1",new mxGeometry(0,0,20,20),d);b.vertex=!0;var c=new mxCell("2",new mxGeometry(40,0,20,20),d);c.vertex=!0;var e=new mxCell("3",new mxGeometry(80,0,20,20),d);e.vertex=!0;var g=new mxCell("4", -new mxGeometry(120,0,20,20),d);g.vertex=!0;var h=new mxCell("5",new mxGeometry(160,0,20,20),d);h.vertex=!0;var k=new mxCell("6",new mxGeometry(200,0,20,20),d);k.vertex=!0;var l=new mxCell("7",new mxGeometry(240,0,20,20),d);l.vertex=!0;var m=new mxCell("Markers to be used with the legend",new mxGeometry(0,20,260,30),"strokeColor=none;fillColor=none;fontColor=#757575;align=left;html=1;fontStyle=0;fontSize=11;");m.vertex=!0;return a.createVertexTemplateFromCells([b,c,e,g,h,k,l,m],260,50,"Markers")}), -this.addEntry("gcp google cloud platform zone markers",function(){var b=new mxCell("",new mxGeometry(0,0,600,70),"fillColor=#ffffff;strokeColor=#BDBDBD;strokeWidth=1;shadow=0;gradientColor=none;");b.vertex=!0;var c=new mxCell("1 Commit code",new mxGeometry(0,0,200,30),"strokeColor=none;fillColor=none;fontColor=#757575;align=left;html=1;fontStyle=0;spacingLeft=5;fontSize=11;verticalAlign=top;whiteSpace=wrap;spacingRight=5;");c.geometry.relative=!0;c.vertex=!0;b.insert(c);c=new mxCell("2 Detect code change", -new mxGeometry(0,0,200,30),"strokeColor=none;fillColor=none;fontColor=#757575;align=left;html=1;fontStyle=0;spacingLeft=5;fontSize=11;verticalAlign=top;whiteSpace=wrap;spacingRight=5;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,30);c.vertex=!0;b.insert(c);c=new mxCell("3 Build immutable image",new mxGeometry(0,0,200,30),"strokeColor=none;fillColor=none;fontColor=#757575;align=left;html=1;fontStyle=0;spacingLeft=5;fontSize=11;verticalAlign=top;whiteSpace=wrap;spacingRight=5;");c.geometry.relative= -!0;c.geometry.offset=new mxPoint(200,0);c.vertex=!0;b.insert(c);c=new mxCell("4 Launch test instance from image",new mxGeometry(0,0,200,30),"strokeColor=none;fillColor=none;fontColor=#757575;align=left;html=1;fontStyle=0;spacingLeft=5;fontSize=11;verticalAlign=top;whiteSpace=wrap;spacingRight=5;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(200,30);c.vertex=!0;b.insert(c);c=new mxCell("5 Run tests",new mxGeometry(0,0,200,30),"strokeColor=none;fillColor=none;fontColor=#757575;align=left;html=1;fontStyle=0;spacingLeft=5;fontSize=11;verticalAlign=top;whiteSpace=wrap;spacingRight=5;"); -c.geometry.relative=!0;c.geometry.offset=new mxPoint(400,0);c.vertex=!0;b.insert(c);c=new mxCell("6 Perform rolling update of image to autoscaler",new mxGeometry(0,0,200,30),"strokeColor=none;fillColor=none;fontColor=#757575;align=left;html=1;fontStyle=0;spacingLeft=5;fontSize=11;verticalAlign=top;whiteSpace=wrap;spacingRight=5;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(400,30);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Markers")})]; -this.addPalette("gcp2Zones","GCP / Zones",!1,mxUtils.bind(this,function(a){for(var b=0;b<e.length;b++)a.appendChild(e[b](a))}))};Sidebar.prototype.addGCP2GeneralIconsPalette=function(){var a=[],a=[this.createVertexTemplateEntry("html=1;aspect=fixed;strokeColor=none;shadow=0;align=center;verticalAlign=top;fillColor=#3B8DF1;shape=mxgraph.gcp2.biomedical_trio",100,68,null,"Biomedical Trio",null,null,this.getTagsForStencil("mxgraph.gcp2","","gcp google cloud platform general icons icon biomedical trio").join(" ")), +100,0,"","Failure Status",null,"gcp google cloud platform path failure status")];this.addPalette("gcp2Paths","GCP / Paths",!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))};Sidebar.prototype.addGCP2ZonesPalette=function(){var a=this,b="points=[[0,0,0],[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0,0],[1,0.25,0],[1,0.5,0],[1,0.75,0],[1,1,0],[0.75,1,0],[0.5,1,0],[0.25,1,0],[0,1,0],[0,0.75,0],[0,0.5,0],[0,0.25,0]];rounded=1;absoluteArcSize=1;arcSize=2;html=1;strokeColor=none;gradientColor=none;shadow=0;dashed=0;fontSize=12;fontColor=#9E9E9E;align=left;verticalAlign=top;spacing=10;spacingTop=-4;", +e=[],e=[this.createVertexTemplateEntry(b+"fillColor=#ffffff;",120,70,"User 1","User 1 (Default)",null,null,this.getTagsForStencil("mxgraph.gcp2.zones","","gcp google cloud platform zone user").join(" ")),this.createVertexTemplateEntry(b+"fillColor=#F3E5F5;",120,150,"Infrastructure\nSystem","Infrastructure System",null,null,this.getTagsForStencil("mxgraph.gcp2.zones","","gcp google cloud platform zone infrastructure system").join(" ")),this.createVertexTemplateEntry(b+"fillColor=#EFEBE9;",120,200, +"colo / dc /\non-premises","colo / dc / on-premises",null,null,this.getTagsForStencil("mxgraph.gcp2.zones","","gcp google cloud platform zone colo dc on premises").join(" ")),this.createVertexTemplateEntry(b+"fillColor=#F1F8E9;",120,70,"System 1","System 1",null,null,this.getTagsForStencil("mxgraph.gcp2.zones","","gcp google cloud platform zone system").join(" ")),this.createVertexTemplateEntry(b+"fillColor=#FFEBEE;",120,70,"External SaaS\nProviders","External SaaS Providers",null,null,this.getTagsForStencil("mxgraph.gcp2.zones", +"","gcp google cloud platform zone external saas providers").join(" ")),this.createVertexTemplateEntry(b+"fillColor=#FFF8E1;",120,70,"External Data\nSources","External Data Sources",null,null,this.getTagsForStencil("mxgraph.gcp2.zones","","gcp google cloud platform zone external data sources").join(" ")),this.createVertexTemplateEntry(b+"fillColor=#E0F2F1;",120,75,"External\nInfrastructure\n3<sup>rd</sup> Party","External Infrastructure 3rd party",null,null,this.getTagsForStencil("mxgraph.gcp2.zones", +"","gcp google cloud platform zone external infrastructure 3rd party").join(" ")),this.createVertexTemplateEntry(b+"fillColor=#E1F5FE;",120,75,"External\nInfrastructure\n1<sup>st</sup> Party","External Infrastructure 1st party",null,null,this.getTagsForStencil("mxgraph.gcp2.zones","","gcp google cloud platform zone external infrastructure 1st party").join(" ")),this.addEntry("gcp google cloud platform zone project cloud service provider",function(){var c=new mxCell("Project Zone / Cloud Service Provider", +new mxGeometry(0,0,530,490),b+"fillColor=#F6F6F6;");c.vertex=!0;var d=new mxCell("Logical Grouping of Services / Instances",new mxGeometry(0,0,250,180),b+"fillColor=#E3F2FD;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(10,50);d.vertex=!0;c.insert(d);var f=new mxCell("Zone",new mxGeometry(0,0,230,120),b+"fillColor=#FFF3E0;");f.geometry.relative=!0;f.geometry.offset=new mxPoint(10,50);f.vertex=!0;d.insert(f);d=new mxCell("SubNetwork",new mxGeometry(0,0,210,60),b+"fillColor=#EDE7F6;");d.geometry.relative= +!0;d.geometry.offset=new mxPoint(10,50);d.vertex=!0;f.insert(d);f=new mxCell("Kubernetes cluster",new mxGeometry(0,0,250,120),b+"fillColor=#FCE4EC;");f.geometry.relative=!0;f.geometry.offset=new mxPoint(10,240);f.vertex=!0;c.insert(f);d=new mxCell("pod",new mxGeometry(0,0,210,60),b+"fillColor=#E8F5E9;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(10,50);d.vertex=!0;f.insert(d);f=new mxCell("Account",new mxGeometry(0,0,250,60),b+"fillColor=#E8EAF6;");f.geometry.relative=!0;f.geometry.offset= +new mxPoint(10,370);f.vertex=!0;c.insert(f);f=new mxCell("Region",new mxGeometry(0,0,250,310),b+"fillColor=#ECEFF1;");f.geometry.relative=!0;f.geometry.offset=new mxPoint(270,50);f.vertex=!0;c.insert(f);d=new mxCell("Zone",new mxGeometry(0,0,230,250),b+"fillColor=#FFF3E0;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(10,50);d.vertex=!0;f.insert(d);f=new mxCell("Firewall",new mxGeometry(0,0,210,190),b+"fillColor=#FBE9E7;");f.geometry.relative=!0;f.geometry.offset=new mxPoint(10,50);f.vertex= +!0;d.insert(f);d=new mxCell("Instance Group",new mxGeometry(0,0,190,60),b+"fillColor=#F9FBE7;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(10,50);d.vertex=!0;f.insert(d);d=new mxCell("Replica Pool",new mxGeometry(0,0,190,60),b+"fillColor=#E0F7FA;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(10,120);d.vertex=!0;f.insert(d);f=new mxCell("Optional Component",new mxGeometry(0,0,250,60),"rounded=1;absoluteArcSize=1;arcSize=2;html=1;strokeColor=none;gradientColor=none;shadow=0;dashed=1;strokeColor=#4284F3;fontSize=12;fontColor=#9E9E9E;align=left;verticalAlign=top;spacing=10;spacingTop=-4;fillColor=none;dashPattern=1 2;strokeWidth=2;"); +f.geometry.relative=!0;f.geometry.offset=new mxPoint(270,370);f.vertex=!0;c.insert(f);return a.createVertexTemplateFromCells([c],c.geometry.width,c.geometry.height,"Project Zone / Cloud Service Provider")}),this.createVertexTemplateEntry("fillColor=#4DA1F5;strokeColor=none;shadow=1;gradientColor=none;fontSize=14;align=left;spacingLeft=50;fontColor=#ffffff;",1E3,40,"Architecture: App Engine and Cloud Endpoints","Title bar",null,null,this.getTagsForStencil("mxgraph.gcp2.zones","","gcp google cloud platform zone title bar").join(" ")), +this.createVertexTemplateEntry("fillColor=#ffffff;strokeColor=none;shadow=0;gradientColor=none;fontSize=11;align=left;spacing=10;fontColor=#;9E9E9E;verticalAlign=top;spacingTop=100;",300,350,"Use this note to call out\nor clarify parts of a diagram","Note",null,null,this.getTagsForStencil("mxgraph.gcp2.zones","","gcp google cloud platform zone note").join(" ")),this.addEntry("gcp google cloud platform zone project",function(){var c=new mxCell("<b>Google </b>Cloud Platform",new mxGeometry(0,0,650, +350),"fillColor=#F6F6F6;strokeColor=none;shadow=0;gradientColor=none;fontSize=14;align=left;spacing=10;fontColor=#717171;9E9E9E;verticalAlign=top;spacingTop=-4;fontStyle=0;spacingLeft=40;html=1;");c.vertex=!0;var b=new mxCell("",new mxGeometry(0,0,23,20),"shape=mxgraph.gcp2.google_cloud_platform;fillColor=#F6F6F6;strokeColor=none;shadow=0;gradientColor=none;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(20,10);b.vertex=!0;c.insert(b);return a.createVertexTemplateFromCells([c],c.geometry.width, +c.geometry.height,"Project Zone")}),this.addEntry("gcp google cloud platform zone markers",function(){b="shape=ellipse;perimeter=ellipsePerimeter;fillColor=#ffffff;strokeColor=#BDBDBD;strokeWidth=2;shadow=0;gradientColor=none;fontColor=#757575;align=center;html=1;fontStyle=1;spacingTop=-1;";var c=new mxCell("1",new mxGeometry(0,0,20,20),b);c.vertex=!0;var d=new mxCell("2",new mxGeometry(40,0,20,20),b);d.vertex=!0;var f=new mxCell("3",new mxGeometry(80,0,20,20),b);f.vertex=!0;var e=new mxCell("4", +new mxGeometry(120,0,20,20),b);e.vertex=!0;var h=new mxCell("5",new mxGeometry(160,0,20,20),b);h.vertex=!0;var k=new mxCell("6",new mxGeometry(200,0,20,20),b);k.vertex=!0;var l=new mxCell("7",new mxGeometry(240,0,20,20),b);l.vertex=!0;var m=new mxCell("Markers to be used with the legend",new mxGeometry(0,20,260,30),"strokeColor=none;fillColor=none;fontColor=#757575;align=left;html=1;fontStyle=0;fontSize=11;");m.vertex=!0;return a.createVertexTemplateFromCells([c,d,f,e,h,k,l,m],260,50,"Markers")}), +this.addEntry("gcp google cloud platform zone markers",function(){var c=new mxCell("",new mxGeometry(0,0,600,70),"fillColor=#ffffff;strokeColor=#BDBDBD;strokeWidth=1;shadow=0;gradientColor=none;");c.vertex=!0;var b=new mxCell("1 Commit code",new mxGeometry(0,0,200,30),"strokeColor=none;fillColor=none;fontColor=#757575;align=left;html=1;fontStyle=0;spacingLeft=5;fontSize=11;verticalAlign=top;whiteSpace=wrap;spacingRight=5;");b.geometry.relative=!0;b.vertex=!0;c.insert(b);b=new mxCell("2 Detect code change", +new mxGeometry(0,0,200,30),"strokeColor=none;fillColor=none;fontColor=#757575;align=left;html=1;fontStyle=0;spacingLeft=5;fontSize=11;verticalAlign=top;whiteSpace=wrap;spacingRight=5;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(0,30);b.vertex=!0;c.insert(b);b=new mxCell("3 Build immutable image",new mxGeometry(0,0,200,30),"strokeColor=none;fillColor=none;fontColor=#757575;align=left;html=1;fontStyle=0;spacingLeft=5;fontSize=11;verticalAlign=top;whiteSpace=wrap;spacingRight=5;");b.geometry.relative= +!0;b.geometry.offset=new mxPoint(200,0);b.vertex=!0;c.insert(b);b=new mxCell("4 Launch test instance from image",new mxGeometry(0,0,200,30),"strokeColor=none;fillColor=none;fontColor=#757575;align=left;html=1;fontStyle=0;spacingLeft=5;fontSize=11;verticalAlign=top;whiteSpace=wrap;spacingRight=5;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(200,30);b.vertex=!0;c.insert(b);b=new mxCell("5 Run tests",new mxGeometry(0,0,200,30),"strokeColor=none;fillColor=none;fontColor=#757575;align=left;html=1;fontStyle=0;spacingLeft=5;fontSize=11;verticalAlign=top;whiteSpace=wrap;spacingRight=5;"); +b.geometry.relative=!0;b.geometry.offset=new mxPoint(400,0);b.vertex=!0;c.insert(b);b=new mxCell("6 Perform rolling update of image to autoscaler",new mxGeometry(0,0,200,30),"strokeColor=none;fillColor=none;fontColor=#757575;align=left;html=1;fontStyle=0;spacingLeft=5;fontSize=11;verticalAlign=top;whiteSpace=wrap;spacingRight=5;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(400,30);b.vertex=!0;c.insert(b);return a.createVertexTemplateFromCells([c],c.geometry.width,c.geometry.height,"Markers")})]; +this.addPalette("gcp2Zones","GCP / Zones",!1,mxUtils.bind(this,function(a){for(var c=0;c<e.length;c++)a.appendChild(e[c](a))}))};Sidebar.prototype.addGCP2GeneralIconsPalette=function(){var a=[],a=[this.createVertexTemplateEntry("html=1;aspect=fixed;strokeColor=none;shadow=0;align=center;verticalAlign=top;fillColor=#3B8DF1;shape=mxgraph.gcp2.biomedical_trio",100,68,null,"Biomedical Trio",null,null,this.getTagsForStencil("mxgraph.gcp2","","gcp google cloud platform general icons icon biomedical trio").join(" ")), this.createVertexTemplateEntry("html=1;aspect=fixed;strokeColor=none;shadow=0;align=center;verticalAlign=top;fillColor=#3B8DF1;shape=mxgraph.gcp2.biomedical_beaker",69,100,null,"Biomedical Beaker",null,null,this.getTagsForStencil("mxgraph.gcp2","","gcp google cloud platform general icons icon biomedical beaker").join(" ")),this.createVertexTemplateEntry("html=1;aspect=fixed;strokeColor=none;shadow=0;align=center;verticalAlign=top;fillColor=#3B8DF1;shape=mxgraph.gcp2.biomedical_test_tube",31,100,null, "Biomedical Test Tube",null,null,this.getTagsForStencil("mxgraph.gcp2","","gcp google cloud platform general icons icon biomedical test tube").join(" ")),this.createVertexTemplateEntry("html=1;aspect=fixed;strokeColor=none;shadow=0;align=center;verticalAlign=top;fillColor=#3B8DF1;shape=mxgraph.gcp2.check_available",100,87,null,"Check Available",null,null,this.getTagsForStencil("mxgraph.gcp2","","gcp google cloud platform general icons icon check available").join(" ")),this.createVertexTemplateEntry("html=1;aspect=fixed;strokeColor=none;shadow=0;align=center;verticalAlign=top;fillColor=#3B8DF1;shape=mxgraph.gcp2.cloud_monitoring", 90,100,null,"Cloud Monitoring",null,null,this.getTagsForStencil("mxgraph.gcp2","","gcp google cloud platform general icons icon cloud monitoring").join(" ")),this.createVertexTemplateEntry("html=1;aspect=fixed;strokeColor=none;shadow=0;align=center;verticalAlign=top;fillColor=#3B8DF1;shape=mxgraph.gcp2.repository",60,100,null,"Repository",null,null,this.getTagsForStencil("mxgraph.gcp2","","gcp google cloud platform general icons icon repository").join(" ")),this.createVertexTemplateEntry("html=1;aspect=fixed;strokeColor=none;shadow=0;align=center;verticalAlign=top;fillColor=#3B8DF1;shape=mxgraph.gcp2.compute_engine_2", @@ -5366,7 +5367,7 @@ null,this.getTagsForStencil("mxgraph.gcp2","","gcp google cloud platform general 77,100,null,"External Data Center",null,null,this.getTagsForStencil("mxgraph.gcp2","","gcp google cloud platform general icons icon external data center").join(" ")),this.createVertexTemplateEntry("html=1;aspect=fixed;strokeColor=none;shadow=0;align=center;verticalAlign=top;fillColor=#2D9C5E;shape=mxgraph.gcp2.external_data_resource",79,100,null,"External Data Resource",null,null,this.getTagsForStencil("mxgraph.gcp2","","gcp google cloud platform general icons icon external data resource").join(" ")), this.createVertexTemplateEntry("html=1;aspect=fixed;strokeColor=none;shadow=0;align=center;verticalAlign=top;fillColor=#2D9C5E;shape=mxgraph.gcp2.legacy_cloud",100,69,null,"Legacy Cloud",null,null,this.getTagsForStencil("mxgraph.gcp2","","gcp google cloud platform general icons icon legacy cloud").join(" ")),this.createVertexTemplateEntry("html=1;aspect=fixed;strokeColor=none;shadow=0;align=center;verticalAlign=top;fillColor=#2D9C5E;shape=mxgraph.gcp2.legacy_cloud_2",100,69,null,"Legacy Cloud",null, null,this.getTagsForStencil("mxgraph.gcp2","","gcp google cloud platform general icons icon legacy cloud").join(" ")),this.createVertexTemplateEntry("html=1;aspect=fixed;strokeColor=none;shadow=0;align=center;verticalAlign=top;fillColor=#3B8DF1;shape=mxgraph.gcp2.mem_instances",100,87,null,"Mem Instances",null,null,this.getTagsForStencil("mxgraph.gcp2","","gcp google cloud platform general icons icon mem instances").join(" "))];this.addPalette("gcp2General Icons","GCP / General Icons",!1,mxUtils.bind(this, -function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addGCP2ServiceCardsPalette=function(){var a=[];this.addGCP2ServiceCard("Gateway","gateway",100,44,"gcp google cloud platform service cards gateway",a);this.addGCP2ServiceCard("Memcache","memcache",110,44,"gcp google cloud platform service cards memcache",a);this.addGCP2ServiceCard("Logs API","logs_api",100,44,"gcp google cloud platform service cards logs api application programming interface",a);this.addGCP2ServiceCard("Cluster", +function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))};Sidebar.prototype.addGCP2ServiceCardsPalette=function(){var a=[];this.addGCP2ServiceCard("Gateway","gateway",100,44,"gcp google cloud platform service cards gateway",a);this.addGCP2ServiceCard("Memcache","memcache",110,44,"gcp google cloud platform service cards memcache",a);this.addGCP2ServiceCard("Logs API","logs_api",100,44,"gcp google cloud platform service cards logs api application programming interface",a);this.addGCP2ServiceCard("Cluster", "cluster",90,44,"gcp google cloud platform service cards cluster",a);this.addGCP2ServiceCard("NAT","nat",80,44,"gcp google cloud platform service cards nat network address translation",a);this.addGCP2ServiceCard("Squid Proxy","squid_proxy",120,44,"gcp google cloud platform service cards squid proxy",a);this.addGCP2ServiceCard("Bucket","bucket",100,44,"gcp google cloud platform service cards bucket",a);this.addGCP2ServiceCard("Service Discovery","service_discovery",150,44,"gcp google cloud platform service cards service discovery", a);this.addGCP2ServiceCard("Task\nQueues","task_queues",90,44,"gcp google cloud platform service cards task queues",a);this.addGCP2ServiceCard("Image\nServices","image_services",100,44,"gcp google cloud platform service cards image services",a);this.addGCP2ServiceCard("Dedicated\nGame Server","dedicated_game_server",120,44,"gcp google cloud platform service cards dedicated game server",a);this.addGCP2ServiceCard("Frontend\nPlatform Services","frontend_platform_services",150,44,"gcp google cloud platform service cards frontend platform services", a);this.addGCP2ServiceCard("Google\nEdge POP","google_network_edge_cache",110,56,"gcp google cloud platform service cards google edge pop point of presence",a);this.addGCP2ServiceCard("External\nPayment Form","external_payment_form",130,44,"gcp google cloud platform service cards external payment form",a);this.addGCP2ServiceCard("Internal Payment\nAuthorization","internal_payment_authorization",150,44,"gcp google cloud platform service cards internal payment authorization",a);this.addGCP2ServiceCard("VPN Gateway", @@ -5375,50 +5376,50 @@ a);this.addGCP2ServiceCard("Scheduled\nTasks","scheduled_tasks",110,44,"gcp goog 110,44,"gcp google cloud platform service cards persistent disk",a);this.addGCP2ServiceCard("Network\nLoad\nBalancer","network_load_balancer",100,56,"gcp google cloud platform service cards network load balancer",a);this.addGCP2ServiceCard("Google\n Network W/\nEdge Cache","google_network_edge_cache",120,56,"gcp google cloud platform service cards google network witch edge cache",a);this.addGCP2ServiceCard("Push\nNotification\nService","push_notification_service",110,56,"gcp google cloud platform service cards push notification service", a);this.addGCP2ServiceCard("Blank One Line","blank",140,44,"gcp google cloud platform service cards blank one line",a);a.push(this.addEntry("gcp google cloud platform service cards blank one line",function(){var a=new mxCell("Blank One Line",new mxGeometry(0,0,100,44),"dashed=0;strokeColor=#dddddd;fillColor=#ffffff;shadow=1;strokeWidth=1;labelPosition=center;verticalLabelPosition=middle;align=left;verticalAlign=middle;spacingLeft=5;fontColor=#000000;fontSize=12;");a.vertex=!0;return sb.createVertexTemplateFromCells([a], 100,44,"Blank One Line")}));this.addGCP2ServiceCard("Blank Two\n& Three Line","blank",120,44,"gcp google cloud platform service cards blank two and three line",a);a.push(this.addEntry("gcp google cloud platform service cards blank two and three line",function(){var a=new mxCell("Blank Two\n& Three Line",new mxGeometry(0,0,90,44),"dashed=0;strokeColor=#dddddd;fillColor=#ffffff;shadow=1;strokeWidth=1;labelPosition=center;verticalLabelPosition=middle;align=left;verticalAlign=middle;spacingLeft=5;fontColor=#000000;fontSize=12;"); -a.vertex=!0;return sb.createVertexTemplateFromCells([a],100,44,"Blank One Line")}));this.addPalette("gcp2Service Cards","GCP / Service Cards",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addGCP2ComputePalette=function(){var a=[];this.addGCP2CardSet("Compute\nEngine","compute_engine",110,160,"gcp google cloud platform compute compute engine",a);this.addGCP2CardSet("GPU","gpu",90,100,"gcp google cloud platform compute gpu graphics processing unit", +a.vertex=!0;return sb.createVertexTemplateFromCells([a],100,44,"Blank One Line")}));this.addPalette("gcp2Service Cards","GCP / Service Cards",!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))};Sidebar.prototype.addGCP2ComputePalette=function(){var a=[];this.addGCP2CardSet("Compute\nEngine","compute_engine",110,160,"gcp google cloud platform compute compute engine",a);this.addGCP2CardSet("GPU","gpu",90,100,"gcp google cloud platform compute gpu graphics processing unit", a);this.addGCP2CardSet("App\nEngine","app_engine",100,130,"gcp google cloud platform compute app engine application",a);this.addGCP2CardSet("Cloud\nFunctions","cloud_functions",120,150,"gcp google cloud platform compute functions",a);this.addGCP2CardSet("Kubernetes\nEngine","container_engine",130,170,"gcp google cloud platform compute kubernetes engine",a);this.addGCP2CardSet("Container-\nOptimized OS","container_optimized_os",140,200,"gcp google cloud platform compute container optimized os operating system", -a);this.addPalette("gcp2Compute","GCP / Compute",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addGCP2APIPlatformEcosystemsPalette=function(){var a=[];this.addGCP2CardSet("API\nAnalytics","api_analytics",110,140,"gcp google cloud platform api ecosystems api analytics application programming interface",a);this.addGCP2CardSet("Apigee\nSense","apigee_sense",100,140,"gcp google cloud platform api ecosystems apigee sense",a);this.addGCP2CardSet("API\nMonetization", +a);this.addPalette("gcp2Compute","GCP / Compute",!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))};Sidebar.prototype.addGCP2APIPlatformEcosystemsPalette=function(){var a=[];this.addGCP2CardSet("API\nAnalytics","api_analytics",110,140,"gcp google cloud platform api ecosystems api analytics application programming interface",a);this.addGCP2CardSet("Apigee\nSense","apigee_sense",100,140,"gcp google cloud platform api ecosystems apigee sense",a);this.addGCP2CardSet("API\nMonetization", "api_monetization",130,160,"gcp google cloud platform api ecosystems api monetization application programming interface",a);this.addGCP2CardSet("Cloud\nEndpoints","cloud_endpoints",120,150,"gcp google cloud platform api ecosystems cloud endpoints",a);this.addGCP2CardSet("Apigee API\nPlatform","apigee_api_platform",130,170,"gcp google cloud platform api ecosystems apigee api platform application programming interface",a);this.addGCP2CardSet("Developer\nPortal","developer_portal",120,160,"gcp google cloud platform api ecosystems developer portal", -a);this.addPalette("gcp2API Platform and Ecosystems","GCP / API Platform and Ecosystems",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addGCP2IdentitySecurityPalette=function(){var a=[];this.addGCP2CardSet("Cloud\nIAM","cloud_iam",100,120,"gcp google cloud platform identity security cloud iam",a);this.addGCP2CardSet("BeyondCorp","beyondcorp",130,130,"gcp google cloud platform identity security beyondcorp",a);this.addGCP2CardSet("Cloud Resource\nManager", +a);this.addPalette("gcp2API Platform and Ecosystems","GCP / API Platform and Ecosystems",!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))};Sidebar.prototype.addGCP2IdentitySecurityPalette=function(){var a=[];this.addGCP2CardSet("Cloud\nIAM","cloud_iam",100,120,"gcp google cloud platform identity security cloud iam",a);this.addGCP2CardSet("BeyondCorp","beyondcorp",130,130,"gcp google cloud platform identity security beyondcorp",a);this.addGCP2CardSet("Cloud Resource\nManager", "cloud_iam",150,200,"gcp google cloud platform identity security cloud resource manager",a);this.addGCP2CardSet("Data Loss\nPrevention API","data_loss_prevention_api",140,200,"gcp google cloud platform identity security data loss prevention api application programming interface",a);this.addGCP2CardSet("Cloud Security\nScanner","cloud_security_scanner",140,190,"gcp google cloud platform identity security cloud security scanner",a);this.addGCP2CardSet("Key Management\nService","key_management_service", 160,200,"gcp google cloud platform identity security key management service",a);this.addGCP2CardSet("Identity-Aware\nProxy","identity_aware_proxy",140,180,"gcp google cloud platform identity security identity aware proxy",a);this.addGCP2CardSet("Cloud Security\nCommand Center","cloud_security_command_center",160,240,"gcp google cloud platform identity security cloud security command center",a);this.addGCP2CardSet("Security Key\nEnforcement","security_key_enforcement",130,200,"gcp google cloud platform identity security security key enforcement", -a);this.addPalette("gcp2Identity and Security","GCP / Identity and Security",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addGCP2BigDataPalette=function(){var a=[];this.addGCP2CardSet("BigQuery","bigquery",120,120,"gcp google cloud platform big data bigquery",a);this.addGCP2CardSet("Cloud\nDatalab","cloud_datalab",110,140,"gcp google cloud platform big data datalab",a);this.addGCP2CardSet("Cloud\nDataflow","cloud_dataflow",110,150,"gcp google cloud platform big data dataflow", +a);this.addPalette("gcp2Identity and Security","GCP / Identity and Security",!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))};Sidebar.prototype.addGCP2BigDataPalette=function(){var a=[];this.addGCP2CardSet("BigQuery","bigquery",120,120,"gcp google cloud platform big data bigquery",a);this.addGCP2CardSet("Cloud\nDatalab","cloud_datalab",110,140,"gcp google cloud platform big data datalab",a);this.addGCP2CardSet("Cloud\nDataflow","cloud_dataflow",110,150,"gcp google cloud platform big data dataflow", a);this.addGCP2CardSet("Cloud\nPub/Sub","cloud_pubsub",110,150,"gcp google cloud platform big data pub sub",a);this.addGCP2CardSet("Cloud\nDataproc","cloud_dataproc",110,150,"gcp google cloud platform big data dataproc",a);this.addGCP2CardSet("Genomics","genomics",120,120,"gcp google cloud platform big data genomics",a);this.addGCP2CardSet("Cloud\nDataprep","cloud_dataprep",110,150,"gcp google cloud platform big data dataprep",a);this.addGCP2CardSet("Cloud\nComposer","cloud_composer",120,150,"gcp google cloud platform big data cloud composer", -a);this.addPalette("gcp2Big Data","GCP / Big Data",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addGCP2DataTransferPalette=function(){var a=[];this.addGCP2CardSet("Transfer\nAppliance","transfer_appliance",120,170,"gcp google cloud platform data transfer appliance",a);this.addPalette("gcp2Data Transfer","GCP / Data Transfer",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addGCP2CloudAIPalette= +a);this.addPalette("gcp2Big Data","GCP / Big Data",!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))};Sidebar.prototype.addGCP2DataTransferPalette=function(){var a=[];this.addGCP2CardSet("Transfer\nAppliance","transfer_appliance",120,170,"gcp google cloud platform data transfer appliance",a);this.addPalette("gcp2Data Transfer","GCP / Data Transfer",!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))};Sidebar.prototype.addGCP2CloudAIPalette= function(){var a=[];this.addGCP2CardSet("Cloud Machine\nLearning","cloud_machine_learning",150,200,"gcp google cloud platform ai artificial intelligence cloud machine learning",a);this.addGCP2CardSet("Natural\nLanguage API","cloud_natural_language_api",140,180,"gcp google cloud platform ai artificial intelligence natural language api application programming interface",a);this.addGCP2CardSet("Vision\nAPI","cloud_vision_api",100,120,"gcp google cloud platform ai artificial intelligence vision api application programming interface", a);this.addGCP2CardSet("Translation\nAPI","cloud_translation_api",120,150,"gcp google cloud platform ai artificial intelligence translation api application programming interface",a);this.addGCP2CardSet("Speech\nAPI","cloud_speech_api",110,130,"gcp google cloud platform ai artificial intelligence speech api application programming interface",a);this.addGCP2CardSet("Jobs\nAPI","cloud_jobs_api",90,110,"gcp google cloud platform ai artificial intelligence jobs api application programming interface",a); -this.addGCP2CardSet("Cloud Video\nIntelligence API","cloud_video_intelligence_api",150,220,"gcp google cloud platform ai artificial intelligence cloud video intelligence api application programming interface",a);this.addGCP2CardSet("Advanced\nSolutions Lab","advanced_solutions_lab",140,200,"gcp google cloud platform ai artificial intelligence advanced solutions lab",a);this.addPalette("gcp2Cloud AI","GCP / Cloud AI",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))}; -Sidebar.prototype.addGCP2InternetOfThingsPalette=function(){var a=[];this.addGCP2CardSet("Cloud\nIoT Core","cloud_iot_core",110,150,"gcp google cloud platform iot internet of things core",a);this.addGCP2CardSet("Cloud\nIoT Edge","cloud_iot_edge",110,150,"gcp google cloud platform iot internet of things edge",a);this.addPalette("gcp2Internet of Things","GCP / Internet of Things",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addGCP2StorageDatabasesPalette= +this.addGCP2CardSet("Cloud Video\nIntelligence API","cloud_video_intelligence_api",150,220,"gcp google cloud platform ai artificial intelligence cloud video intelligence api application programming interface",a);this.addGCP2CardSet("Advanced\nSolutions Lab","advanced_solutions_lab",140,200,"gcp google cloud platform ai artificial intelligence advanced solutions lab",a);this.addPalette("gcp2Cloud AI","GCP / Cloud AI",!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))}; +Sidebar.prototype.addGCP2InternetOfThingsPalette=function(){var a=[];this.addGCP2CardSet("Cloud\nIoT Core","cloud_iot_core",110,150,"gcp google cloud platform iot internet of things core",a);this.addGCP2CardSet("Cloud\nIoT Edge","cloud_iot_edge",110,150,"gcp google cloud platform iot internet of things edge",a);this.addPalette("gcp2Internet of Things","GCP / Internet of Things",!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))};Sidebar.prototype.addGCP2StorageDatabasesPalette= function(){var a=[];this.addGCP2CardSet("Cloud\nStorage","cloud_storage",110,140,"gcp google cloud platform storage databases ",a);this.addGCP2CardSet("Cloud\nSQL","cloud_sql",100,120,"gcp google cloud platform storage databases sql",a);this.addGCP2CardSet("Cloud\nBigtable","cloud_bigtable",110,140,"gcp google cloud platform storage databases bigtable",a);this.addGCP2CardSet("Cloud\nSpanner","cloud_spanner",110,150,"gcp google cloud platform storage databases spanner",a);this.addGCP2CardSet("Cloud\nDatastore", "cloud_datastore",120,150,"gcp google cloud platform storage databases datastore",a);this.addGCP2CardSet("Persistent\nDisk","persistent_disk",120,150,"gcp google cloud platform storage databases persistent disk",a);this.addGCP2CardSet("Cloud\nMemorystore","cloud_memorystore",140,170,"gcp google cloud platform storage databases memorystore",a);this.addGCP2CardSet("Cloud\nFilestore","cloud_filestore",110,150,"gcp google cloud platform storage databases filestore",a);this.addPalette("gcp2Storage and Databases", -"GCP / Storage and Databases",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addGCP2ManagementToolsPalette=function(){var a=[];this.addGCP2CardSet("Stackdriver","stackdriver",130,130,"gcp google cloud platform management tools stackdriver",a);this.addGCP2CardSet("Debugger","debugger",120,120,"gcp google cloud platform management tools debugger",a);this.addGCP2CardSet("Monitoring","cloud_deployment_manager",120,120,"gcp google cloud platform management tools monitoring", +"GCP / Storage and Databases",!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))};Sidebar.prototype.addGCP2ManagementToolsPalette=function(){var a=[];this.addGCP2CardSet("Stackdriver","stackdriver",130,130,"gcp google cloud platform management tools stackdriver",a);this.addGCP2CardSet("Debugger","debugger",120,120,"gcp google cloud platform management tools debugger",a);this.addGCP2CardSet("Monitoring","cloud_deployment_manager",120,120,"gcp google cloud platform management tools monitoring", a);this.addGCP2CardSet("Deployment\nManager","cloud_deployment_manager",130,180,"gcp google cloud platform management tools deployment manager",a);this.addGCP2CardSet("Logging","logging",110,110,"gcp google cloud platform management tools logging",a);this.addGCP2CardSet("Cloud\nConsole","placeholder",110,140,"gcp google cloud platform management tools console",a);this.addGCP2CardSet("Error\nReporting","error_reporting",120,150,"gcp google cloud platform management tools error reporting",a);this.addGCP2CardSet("Cloud\nShell", "placeholder",100,130,"gcp google cloud platform management tools shell",a);this.addGCP2CardSet("Trace","trace",100,100,"gcp google cloud platform management tools trace",a);this.addGCP2CardSet("Cloud\nMobile App","placeholder",130,160,"gcp google cloud platform management tools mobile app",a);this.addGCP2CardSet("Profiler","profiler",110,110,"gcp google cloud platform management tools profiler",a);this.addGCP2CardSet("Billing\nAPI","placeholder",100,120,"gcp google cloud platform management tools billing api application programming interface", -a);this.addGCP2CardSet("Cloud\nAPIs","cloud_apis",100,130,"gcp google cloud platform management tools api application programming interface",a);this.addPalette("gcp2Management Tools","GCP / Management Tools",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addGCP2NetworkingPalette=function(){var a=[];this.addGCP2CardSet("Virtual\nPrivate Cloud","virtual_private_cloud",140,180,"gcp google cloud platform networking virtual private",a);this.addGCP2CardSet("Dedicated\nInterconnect", +a);this.addGCP2CardSet("Cloud\nAPIs","cloud_apis",100,130,"gcp google cloud platform management tools api application programming interface",a);this.addPalette("gcp2Management Tools","GCP / Management Tools",!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))};Sidebar.prototype.addGCP2NetworkingPalette=function(){var a=[];this.addGCP2CardSet("Virtual\nPrivate Cloud","virtual_private_cloud",140,180,"gcp google cloud platform networking virtual private",a);this.addGCP2CardSet("Dedicated\nInterconnect", "dedicated_interconnect",130,190,"gcp google cloud platform networking dedicated interconnect",a);this.addGCP2CardSet("Cloud Load\nBalancing","cloud_load_balancing",130,180,"gcp google cloud platform networking load balancing",a);this.addGCP2CardSet("Cloud \nDNS","cloud_dns",100,130,"gcp google cloud platform networking dns domain name server",a);this.addGCP2CardSet("Cloud \nCDN","cloud_cdn",100,130,"gcp google cloud platform networking cdn content delivery network",a);this.addGCP2CardSet("Cloud\nNetwork", "cloud_network",110,140,"gcp google cloud platform networking network",a);this.addGCP2CardSet("Cloud External\nIP Addresses","cloud_external_ip_addresses",150,220,"gcp google cloud platform networking external ip addresses internet protocol",a);this.addGCP2CardSet("Cloud\nRoutes","cloud_routes",100,140,"gcp google cloud platform networking routes",a);this.addGCP2CardSet("Cloud\nFirewall Rules","cloud_firewall_rules",140,170,"gcp google cloud platform networking firewall rules",a);this.addGCP2CardSet("Cloud\nVPN", "cloud_vpn",100,120,"gcp google cloud platform networking vpn virtual private network",a);this.addGCP2CardSet("Cloud\nRouter","cloud_router",100,140,"gcp google cloud platform networking router",a);this.addGCP2CardSet("Cloud\nArmor","cloud_armor",100,130,"gcp google cloud platform networking armor",a);this.addGCP2CardSet("Standard\nNetwork Tier","standard_network_tier",130,180,"gcp google cloud platform networking standard network tier",a);this.addGCP2CardSet("Premium\nNetwork Tier","premium_network_tier", -130,180,"gcp google cloud platform networking premium network tier",a);this.addGCP2CardSet("Partner\nInterconnect","partner_interconnect",130,180,"gcp google cloud platform networking partner interconnect",a);this.addPalette("gcp2Networking","GCP / Networking",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addGCP2DeveloperToolsPalette=function(){var a=[];this.addGCP2CardSet("Cloud\nSDK","placeholder",100,120,"gcp google cloud platform dev developer tools sdk software development kit", +130,180,"gcp google cloud platform networking premium network tier",a);this.addGCP2CardSet("Partner\nInterconnect","partner_interconnect",130,180,"gcp google cloud platform networking partner interconnect",a);this.addPalette("gcp2Networking","GCP / Networking",!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))};Sidebar.prototype.addGCP2DeveloperToolsPalette=function(){var a=[];this.addGCP2CardSet("Cloud\nSDK","placeholder",100,120,"gcp google cloud platform dev developer tools sdk software development kit", a);this.addGCP2CardSet("Cloud\nBuild","container_builder",100,130,"gcp google cloud platform dev developer tools build",a);this.addGCP2CardSet("Deployment\nManager","cloud_deployment_manager",130,180,"gcp google cloud platform dev developer tools deployment manager",a);this.addGCP2CardSet("Cloud Tools for\nVisual Studio","cloud_tools_for_powershell",150,220,"gcp google cloud platform dev developer tools tools for visual studio",a);this.addGCP2CardSet("Cloud Source\nRepositories","placeholder",140, 210,"gcp google cloud platform dev developer tools cloud source repositories",a);this.addGCP2CardSet("Maven App\nEngine Plugin","placeholder",140,200,"gcp google cloud platform dev developer tools maven app engine plugin",a);this.addGCP2CardSet("Cloud Tools\nfor Eclipse","placeholder",130,190,"gcp google cloud platform dev developer tools tools for eclipse",a);this.addGCP2CardSet("Cloud Tools\nfor IntelliJ","placeholder",130,180,"gcp google cloud platform dev developer tools tools for intellij",a); this.addGCP2CardSet("Cloud\nTest Lab","placeholder",110,150,"gcp google cloud platform dev developer tools test lab",a);this.addGCP2CardSet("Cloud Tools for\nPowerShell","cloud_tools_for_powershell",150,210,"gcp google cloud platform dev developer tools tools for powershell",a);this.addGCP2CardSet("IDE Plugins","cloud_tools_for_powershell",130,130,"gcp google cloud platform dev developer tools ide plugins integrated development environment",a);this.addGCP2CardSet("Container\nRegistry","container_registry", -120,160,"gcp google cloud platform dev developer tools container registry",a);this.addGCP2CardSet("Gradle App\nEnginge Plugin","placeholder",150,210,"gcp google cloud platform dev developer tools gradle app engine plugin application",a);this.addPalette("gcp2Developer Tools","GCP / Developer Tools",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addGCP2ExpandedProductCardsPalette=function(){var a=[];this.addGCP2ExpandedProductCardSet("Compute Engine", +120,160,"gcp google cloud platform dev developer tools container registry",a);this.addGCP2CardSet("Gradle App\nEnginge Plugin","placeholder",150,210,"gcp google cloud platform dev developer tools gradle app engine plugin application",a);this.addPalette("gcp2Developer Tools","GCP / Developer Tools",!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))};Sidebar.prototype.addGCP2ExpandedProductCardsPalette=function(){var a=[];this.addGCP2ExpandedProductCardSet("Compute Engine", "compute_engine",150,"gcp google cloud platform expanded product cards compute engine",a);this.addGCP2ExpandedProductCardSet("BigQuery","bigquery",140,"gcp google cloud platform expanded product cards bigquery",a);this.addGCP2ExpandedProductCardSet("App Engine","app_engine",140,"gcp google cloud platform expanded product cards app application engine",a);this.addGCP2ExpandedProductCardSet("Cloud Dataflow","cloud_dataflow",150,"gcp google cloud platform expanded product cards cloud dataflow",a);this.addGCP2ExpandedProductCardSet("Kubernetes Engine", "container_engine",170,"gcp google cloud platform expanded product cards kubernetes engine",a);this.addGCP2ExpandedProductCardSet("Cloud Storage","cloud_storage",140,"gcp google cloud platform expanded product cards cloud storage",a);this.addGCP2ExpandedProductCardSet("Cloud Bigtable","cloud_bigtable",140,"gcp google cloud platform expanded product cards cloud bigtable",a);this.addGCP2ExpandedProductCardSet("Cloud Pub/Sub","cloud_pubsub",150,"gcp google cloud platform expanded product cards cloud pub sub", a);this.addGCP2ExpandedProductCardSet("Cloud SQL","cloud_sql",140,"gcp google cloud platform expanded product cards cloud sql",a);this.addGCP2ExpandedMachineCard("App Engine","app_engine_icon",1,.84,"10GB PD","1","modifiers_standard_machine","1","modifiers_storage","1","modifiers_autoscaling",150,"gcp google cloud platform expanded product cards app engine machine",a);this.addGCP2ExpandedMachineCard("Cloud Dataflow","cloud_dataflow_icon",.72,1,"10GB PD","1","modifiers_standard_machine","1","modifiers_storage", "1","modifiers_autoscaling",150,"gcp google cloud platform expanded product cards app engine machine",a);this.addGCP2ExpandedMachineCard("Kubernetes Engine","container_engine_icon",.88,1,"10GB PD","1","modifiers_standard_machine","1","modifiers_storage","1","modifiers_autoscaling",150,"gcp google cloud platform expanded product cards app engine machine",a);this.addGCP2ExpandedMachineCard("Cloud Dataproc","cloud_dataproc_icon",1,.92,"10GB PD","1","modifiers_standard_machine","1","modifiers_storage", -"1","modifiers_autoscaling",150,"gcp google cloud platform expanded product cards app engine machine",a);this.addGCP2ExpandedMachineCard("Compute Engine","compute_engine_icon",1,1,"10GB PD","1","modifiers_standard_machine","1","modifiers_storage","1","modifiers_autoscaling",150,"gcp google cloud platform expanded product cards app engine machine",a);this.addPalette("gcp2Expanded Product Cards","GCP / Expanded Product Cards",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))}; +"1","modifiers_autoscaling",150,"gcp google cloud platform expanded product cards app engine machine",a);this.addGCP2ExpandedMachineCard("Compute Engine","compute_engine_icon",1,1,"10GB PD","1","modifiers_standard_machine","1","modifiers_storage","1","modifiers_autoscaling",150,"gcp google cloud platform expanded product cards app engine machine",a);this.addPalette("gcp2Expanded Product Cards","GCP / Expanded Product Cards",!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))}; Sidebar.prototype.addGCP2UserDeviceCardsPalette=function(){var a=[];this.addGCP2UserDeviceCard("Application","application",1,.8,0,"gcp google cloud platform user and device cards application",a);this.addGCP2UserDeviceCard("Beacon","beacon",.73,1,0,"gcp google cloud platform user and device cards beacon",a);this.addGCP2UserDeviceCard("Circuit-Board","circuit_board",1,.9,15,"gcp google cloud platform user and device cards circuit board",a);this.addGCP2UserDeviceCard("Database","database",1,.9,0,"gcp google cloud platform user and device cards database db", a);this.addGCP2UserDeviceCard("Desktop","desktop",1,.9,0,"gcp google cloud platform user and device cards desktop",a);this.addGCP2UserDeviceCard("Desktop and Mobile","desktop_and_mobile",1,.66,15,"gcp google cloud platform user and device cards desktop and mobile",a);this.addGCP2UserDeviceCard("Game","game",1,.54,0,"gcp google cloud platform user and device cards game",a);this.addGCP2UserDeviceCard("Gateway","gateway_icon",1,.44,0,"gcp google cloud platform user and device cards gateway icon",a); this.addGCP2UserDeviceCard("Laptop","laptop",1,.66,0,"gcp google cloud platform user and device cards laptop",a);this.addGCP2UserDeviceCard("Lightbulb","lightbulb",.7,1,0,"gcp google cloud platform user and device cards lighbulb",a);this.addGCP2UserDeviceCard("List","list",.89,1,0,"gcp google cloud platform user and device cards list",a);this.addGCP2UserDeviceCard("Live","live",.74,1,0,"gcp google cloud platform user and device cards live",a);this.addGCP2UserDeviceCard("Local-Compute","compute_engine_icon", 1,.89,15,"gcp google cloud platform user and device cards local compute",a);this.addGCP2UserDeviceCard("Mobile Devices","mobile_devices",1,.73,15,"gcp google cloud platform user and device cards mobile devices",a);this.addGCP2UserDeviceCard("Payment","payment",1,.8,0,"gcp google cloud platform user and device cards payment",a);this.addGCP2UserDeviceCard("Phone","phone",.64,1,0,"gcp google cloud platform user and device cards phone",a);this.addGCP2UserDeviceCard("Record","record",1,.66,0,"gcp google cloud platform user and device cards record", a);this.addGCP2UserDeviceCard("Report","report",1,1,0,"gcp google cloud platform user and device cards report",a);this.addGCP2UserDeviceCard("Retail","retail",1,.89,0,"gcp google cloud platform user and device cards retail",a);this.addGCP2UserDeviceCard("Speaker","speaker",.7,1,0,"gcp google cloud platform user and device cards speaker",a);this.addGCP2UserDeviceCard("Storage","storage",1,.8,0,"gcp google cloud platform user and device cards storage",a);this.addGCP2UserDeviceCard("Stream","stream", -1,.82,0,"gcp google cloud platform user and device cards stream",a);this.addGCP2UserDeviceCard("Users","users",1,.63,0,"gcp google cloud platform user and device cards users",a);this.addGCP2UserDeviceCard("Webcam","webcam",.5,1,0,"gcp google cloud platform user and device cards webcam",a);this.addPalette("gcp2User Device Cards","GCP / User and Device Cards",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addGCP2ProductCardsPalette=function(){var a= +1,.82,0,"gcp google cloud platform user and device cards stream",a);this.addGCP2UserDeviceCard("Users","users",1,.63,0,"gcp google cloud platform user and device cards users",a);this.addGCP2UserDeviceCard("Webcam","webcam",.5,1,0,"gcp google cloud platform user and device cards webcam",a);this.addPalette("gcp2User Device Cards","GCP / User and Device Cards",!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))};Sidebar.prototype.addGCP2ProductCardsPalette=function(){var a= [];this.addGCP2ProductCardSet("Kubernetes","kubernetes_logo",1,.97,130,130,"gcp google cloud platform product kubernetes",a);this.addGCP2ProductCardSet("TensorFlow","tensorflow_logo",.94,1,130,130,"gcp google cloud platform product tensorflow",a);this.addGCP2ProductCardSet("Forseti\nSecurity","forseti_logo",.98,1,110,150,"gcp google cloud platform product forseti",a);this.addGCP2ProductCardSet("Istio","istio_logo",.67,1,80,90,"gcp google cloud platform product forseti",a);this.addGCP2ProductCardSet("Firebase", "firebase",.72,1,100,100,"gcp google cloud platform product firebase",a);this.addGCP2ProductCardSet("Fastly","fastly",1,.39,100,100,"gcp google cloud platform product fastly",a);this.addGCP2ProductCardSet("AdMob","admob",1,1,110,110,"gcp google cloud platform product admob",a);this.addGCP2ProductCardSet("Google Play\nGame Services","google_play_game_service",1,.69,150,220,"gcp google cloud platform product google play game services",a);this.addGCP2ProductCardSet("Campaign\nManager","campaign_manager", 1,1,120,170,"gcp google cloud platform product campaign manager",a);this.addGCP2ProductCardSet("Google\nAnalytics","google_analytics",1,1,120,160,"gcp google cloud platform product google analytics",a);this.addGCP2ProductCardSet("Google\nAds","google_ads",1,1,100,130,"gcp google cloud platform product google ads",a);this.addGCP2ProductCardSet("Avere Physical\nAppliance","avere",1,.33,150,200,"gcp google cloud platform product avere physical appliance",a);this.addGCP2ProductCardSet("Google\nAnalytics 360", -"google_analytics_360",1,.98,140,180,"gcp google cloud platform product google analytics 360",a);this.addGCP2ProductCardSet("Google Ad\nManager","google_ad_manager",1,1,120,170,"gcp google cloud platform product google ad manager",a);this.addPalette("gcp2Product Cards","GCP / Product Cards",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addGCP2IconsPalette=function(){var a="html=1;fillColor=#5184F3;strokeColor=none;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;align=center;spacingTop=-6;fontSize=11;fontStyle=1;fontColor=#999999;"+ -mxConstants.STYLE_SHAPE+"=mxgraph.gcp2.hexIcon;prIcon=",d=[],d=[this.createVertexTemplateEntry(a+"compute_engine",66,58.5,"Compute\nEngine",null,null,null,this.getTagsForStencil("mxgraph.gcp2","","gcp google cloud platform icons icon compute engine").join(" ")),this.createVertexTemplateEntry(a+"app_engine",66,58.5,"App\nEngine",null,null,null,this.getTagsForStencil("mxgraph.gcp2","","gcp google cloud platform icons icon app engine").join(" ")),this.createVertexTemplateEntry(a+"container_engine",66, +"google_analytics_360",1,.98,140,180,"gcp google cloud platform product google analytics 360",a);this.addGCP2ProductCardSet("Google Ad\nManager","google_ad_manager",1,1,120,170,"gcp google cloud platform product google ad manager",a);this.addPalette("gcp2Product Cards","GCP / Product Cards",!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))};Sidebar.prototype.addGCP2IconsPalette=function(){var a="html=1;fillColor=#5184F3;strokeColor=none;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;align=center;spacingTop=-6;fontSize=11;fontStyle=1;fontColor=#999999;"+ +mxConstants.STYLE_SHAPE+"=mxgraph.gcp2.hexIcon;prIcon=",b=[],b=[this.createVertexTemplateEntry(a+"compute_engine",66,58.5,"Compute\nEngine",null,null,null,this.getTagsForStencil("mxgraph.gcp2","","gcp google cloud platform icons icon compute engine").join(" ")),this.createVertexTemplateEntry(a+"app_engine",66,58.5,"App\nEngine",null,null,null,this.getTagsForStencil("mxgraph.gcp2","","gcp google cloud platform icons icon app engine").join(" ")),this.createVertexTemplateEntry(a+"container_engine",66, 58.5,"Kubernetes\nEngine",null,null,null,this.getTagsForStencil("mxgraph.gcp2","","gcp google cloud platform icons icon kubernetes engine").join(" ")),this.createVertexTemplateEntry(a+"gpu",66,58.5,"GPU",null,null,null,this.getTagsForStencil("mxgraph.gcp2","","gcp google cloud platform icons icon gpu graphics processing unit").join(" ")),this.createVertexTemplateEntry(a+"cloud_functions",66,58.5,"Cloud\nFunctions",null,null,null,this.getTagsForStencil("mxgraph.gcp2","","gcp google cloud platform icons icon functions").join(" ")), this.createVertexTemplateEntry(a+"container_optimized_os",66,58.5,"Container-\nOptimized OS",null,null,null,this.getTagsForStencil("mxgraph.gcp2","","gcp google cloud platform icons icon container optimized os operating system").join(" ")),this.createVertexTemplateEntry(a+"cloud_machine_learning",66,58.5,"Cloud Machine\nLearning Engine",null,null,null,this.getTagsForStencil("mxgraph.gcp2","","gcp google cloud platform icons icon machine learning engine").join(" ")),this.createVertexTemplateEntry(a+ "cloud_vision_api",66,58.5,"Cloud\nVision API",null,null,null,this.getTagsForStencil("mxgraph.gcp2","","gcp google cloud platform icons icon vision api application programming interface").join(" ")),this.createVertexTemplateEntry(a+"cloud_speech_api",66,58.5,"Cloud\nSpeech-to-Text",null,null,null,this.getTagsForStencil("mxgraph.gcp2","","gcp google cloud platform icons icon speech to text").join(" ")),this.createVertexTemplateEntry(a+"cloud_video_intelligence_api",66,58.5,"Cloud Video\nIntelligence\nAPI", @@ -5455,37 +5456,37 @@ this.createVertexTemplateEntry(a+"cloud_iot_core",66,58.5,"Cloud IoT\nCore",null null,null,this.getTagsForStencil("mxgraph.gcp2","","gcp google cloud platform icons icon storage").join(" ")),this.createVertexTemplateEntry(a+"cloud_bigtable",66,58.5,"Cloud\nBigtable",null,null,null,this.getTagsForStencil("mxgraph.gcp2","","gcp google cloud platform icons icon bigtable").join(" ")),this.createVertexTemplateEntry(a+"cloud_datastore",66,58.5,"Cloud\nDatastore",null,null,null,this.getTagsForStencil("mxgraph.gcp2","","gcp google cloud platform icons icon datastore").join(" ")),this.createVertexTemplateEntry(a+ "cloud_memorystore",66,58.5,"Cloud\nMemorystore",null,null,null,this.getTagsForStencil("mxgraph.gcp2","","gcp google cloud platform icons icon memorystore").join(" ")),this.createVertexTemplateEntry(a+"cloud_sql",66,58.5,"Cloud SQL",null,null,null,this.getTagsForStencil("mxgraph.gcp2","","gcp google cloud platform icons icon sql").join(" ")),this.createVertexTemplateEntry(a+"cloud_spanner",66,58.5,"Cloud\nSpanner",null,null,null,this.getTagsForStencil("mxgraph.gcp2","","gcp google cloud platform icons icon spanner").join(" ")), this.createVertexTemplateEntry(a+"persistent_disk",66,58.5,"Persistent\nDisk",null,null,null,this.getTagsForStencil("mxgraph.gcp2","","gcp google cloud platform icons icon persistent disk").join(" ")),this.createVertexTemplateEntry(a+"cloud_filestore",66,58.5,"Cloud\nFilestore",null,null,null,this.getTagsForStencil("mxgraph.gcp2","","gcp google cloud platform icons icon filestore").join(" ")),this.createVertexTemplateEntry(a+"cloud_firestore",66,58.5,"Cloud\nFirestore",null,null,null,this.getTagsForStencil("mxgraph.gcp2", -"","gcp google cloud platform icons icon firestore").join(" "))];this.addPalette("gcp2Icons","GCP / Icons",!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addGCP2CardSet=function(a,d,e,b,c,f){var g=this,h="dashed=0;connectable=0;html=1;fillColor=#5184F3;strokeColor=none;"+mxConstants.STYLE_SHAPE+"=mxgraph.gcp2.hexIcon;prIcon=",k=a.replace("\n"," "),k=k.replace("- ","-");f.push(this.addEntry(c,function(){var b=new mxCell("",new mxGeometry(0, -0,e,60),"strokeColor=#dddddd;fillColor=#ffffff;shadow=1;strokeWidth=1;rounded=1;absoluteArcSize=1;arcSize=2;");b.vertex=!0;var c=new mxCell(a,new mxGeometry(0,.5,44,39),h+d+";part=1;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=middle;spacingLeft=5;fontColor=#999999;fontSize=12;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(5,-19.5);c.vertex=!0;b.insert(c);return g.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,k)}));f.push(this.addEntry(c, -function(){var a=new mxCell("",new mxGeometry(0,0,b,60),"strokeColor=#dddddd;fillColor=#ffffff;shadow=1;strokeWidth=1;rounded=1;absoluteArcSize=1;arcSize=2;");a.vertex=!0;var c=new mxCell('<font color="#000000">Name</font><br>'+k,new mxGeometry(0,.5,44,39),h+d+";part=1;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=middle;spacingLeft=5;fontColor=#999999;fontSize=12;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(5,-19.5);c.vertex=!0;a.insert(c);return g.createVertexTemplateFromCells([a], -a.geometry.width,a.geometry.height,k)}));f.push(this.addEntry(c,function(){var a=new mxCell("",new mxGeometry(0,0,b+8,68),"shape=mxgraph.gcp2.doubleRect;strokeColor=#dddddd;fillColor=#ffffff;shadow=1;strokeWidth=1;");a.vertex=!0;var c=new mxCell('<font color="#000000">Name</font><br>'+k,new mxGeometry(0,.5,44,39),h+d+";part=1;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=middle;spacingLeft=5;fontColor=#999999;fontSize=12;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(5, --19.5);c.vertex=!0;a.insert(c);return g.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,k)}))};Sidebar.prototype.addGCP2ProductCardSet=function(a,d,e,b,c,f,g,h){var k=this,l="dashed=0;connectable=0;html=1;fillColor=#5184F3;strokeColor=none;"+mxConstants.STYLE_SHAPE+"=mxgraph.gcp2.",m=a.replace("\n"," "),m=m.replace("- ","-");h.push(this.addEntry(g,function(){var f=new mxCell("",new mxGeometry(0,0,c,60),"strokeColor=#dddddd;fillColor=#ffffff;shadow=1;strokeWidth=1;rounded=1;absoluteArcSize=1;arcSize=2;"); -f.vertex=!0;var g=new mxCell(a,new mxGeometry(0,0,45*e,45*b),l+d+";part=1;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=middle;spacingLeft=5;fontColor=#999999;fontSize=12;");g.geometry.relative=!0;g.geometry.offset=new mxPoint(5,7+22.5*(1-b));g.vertex=!0;f.insert(g);return k.createVertexTemplateFromCells([f],f.geometry.width,f.geometry.height,m)}));h.push(this.addEntry(g,function(){var a=new mxCell("",new mxGeometry(0,0,f,60),"strokeColor=#dddddd;fillColor=#ffffff;shadow=1;strokeWidth=1;rounded=1;absoluteArcSize=1;arcSize=2;"); -a.vertex=!0;var c=new mxCell('<font color="#000000">Name</font><br>'+m,new mxGeometry(0,0,45*e,45*b),l+d+";part=1;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=middle;spacingLeft=5;fontColor=#999999;fontSize=12;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(5,7+22.5*(1-b));c.vertex=!0;a.insert(c);return k.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,m)}));h.push(this.addEntry(g,function(){var a=new mxCell("",new mxGeometry(0,0,f+8,68),"shape=mxgraph.gcp2.doubleRect;strokeColor=#dddddd;fillColor=#ffffff;shadow=1;strokeWidth=1;"); -a.vertex=!0;var c=new mxCell('<font color="#000000">Name</font><br>'+m,new mxGeometry(0,0,45*e,45*b),l+d+";part=1;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=middle;spacingLeft=5;fontColor=#999999;fontSize=12;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(5,7+22.5*(1-b));c.vertex=!0;a.insert(c);return k.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,m)}))};Sidebar.prototype.addGCP2ServiceCard=function(a,d,e,b,c,f){var g=this,h="dashed=0;connectable=0;html=1;fillColor=#757575;strokeColor=none;"+ -mxConstants.STYLE_SHAPE+"=mxgraph.gcp2.",k=a.replace("\n"," "),k=k.replace("- ","-");f.push(this.addEntry(c,function(){var c=new mxCell("",new mxGeometry(0,0,e,b),"strokeColor=#dddddd;fillColor=#ffffff;shadow=1;strokeWidth=1;rounded=1;absoluteArcSize=1;arcSize=2;");c.vertex=!0;var f=new mxCell(a,new mxGeometry(0,.5,32,32),h+d+";part=1;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=middle;spacingLeft=5;fontColor=#000000;fontSize=12;");f.geometry.relative=!0;f.geometry.offset= -new mxPoint(5,-16);f.vertex=!0;c.insert(f);return g.createVertexTemplateFromCells([c],e,b,k)}))};Sidebar.prototype.addGCP2ExpandedProductCardSet=function(a,d,e,b,c){var f=this,g="dashed=0;connectable=0;html=1;fillColor=#5184F3;strokeColor=none;"+mxConstants.STYLE_SHAPE+"=mxgraph.gcp2.",h=a.replace("\n"," "),h=h.replace("- ","-");c.push(this.addEntry(b,function(){var a=new mxCell("",new mxGeometry(0,0,e,70),"strokeColor=#dddddd;fillColor=#ffffff;shadow=1;strokeWidth=1;rounded=1;absoluteArcSize=1;arcSize=2;"); -a.vertex=!0;var b=new mxCell('<font color="#000000">Name</font><br>'+h+'<hr><font style="font-size: 11px">Attribute Name</font>',new mxGeometry(0,0,44,39),g+d+";part=1;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=top;spacingLeft=5;fontColor=#999999;fontSize=12;spacingTop=-8;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(5,7);b.vertex=!0;a.insert(b);return f.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,h)}));c.push(this.addEntry(b,function(){var a= -new mxCell("",new mxGeometry(0,0,e+8,78),"shape=mxgraph.gcp2.doubleRect;strokeColor=#dddddd;fillColor=#ffffff;shadow=1;strokeWidth=1;");a.vertex=!0;var b=new mxCell('<font color="#000000">Name</font><br>'+h+'<hr><font style="font-size: 11px">Attribute Name</font>',new mxGeometry(0,0,44,39),g+d+";part=1;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=top;spacingLeft=5;fontColor=#999999;fontSize=12;spacingTop=-8;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(5,7); -b.vertex=!0;a.insert(b);return f.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,h)}))};Sidebar.prototype.addGCP2ExpandedMachineCard=function(a,d,e,b,c,f,g,h,k,l,m,q,r,n){var p=this,u="dashed=0;connectable=0;html=1;fillColor=#757575;strokeColor=none;"+mxConstants.STYLE_SHAPE+"=mxgraph.gcp2.",t=a.replace("\n"," "),t=t.replace("- ","-");n.push(this.addEntry(r,function(){var a=new mxCell("",new mxGeometry(0,0,q,95),"strokeColor=#dddddd;fillColor=#ffffff;shadow=1;strokeWidth=1;rounded=1;absoluteArcSize=1;arcSize=2;"); -a.vertex=!0;var n=new mxCell('<font color="#000000">'+t+"</font><hr>"+c,new mxGeometry(0,0,q,50),"text;part=1;html=1;align=left;verticalAlign=top;spacingLeft=35;fontColor=#999999;fontSize=11;resizeWidth=1;");n.geometry.relative=!0;n.vertex=!0;a.insert(n);n=new mxCell("",new mxGeometry(0,0,25*e,25*b),u+d+";part=1;");n.geometry.relative=!0;n.geometry.offset=new mxPoint(4+12.5*(1-e),6+12.5*(1-b));n.vertex=!0;a.insert(n);n=new mxCell("",new mxGeometry(0,0,20,20),u+g+";part=1;");n.geometry.relative=!0; +"","gcp google cloud platform icons icon firestore").join(" "))];this.addPalette("gcp2Icons","GCP / Icons",!1,mxUtils.bind(this,function(a){for(var c=0;c<b.length;c++)a.appendChild(b[c](a))}))};Sidebar.prototype.addGCP2CardSet=function(a,b,e,c,d,f){var g=this,h="dashed=0;connectable=0;html=1;fillColor=#5184F3;strokeColor=none;"+mxConstants.STYLE_SHAPE+"=mxgraph.gcp2.hexIcon;prIcon=",k=a.replace("\n"," "),k=k.replace("- ","-");f.push(this.addEntry(d,function(){var c=new mxCell("",new mxGeometry(0, +0,e,60),"strokeColor=#dddddd;fillColor=#ffffff;shadow=1;strokeWidth=1;rounded=1;absoluteArcSize=1;arcSize=2;");c.vertex=!0;var d=new mxCell(a,new mxGeometry(0,.5,44,39),h+b+";part=1;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=middle;spacingLeft=5;fontColor=#999999;fontSize=12;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(5,-19.5);d.vertex=!0;c.insert(d);return g.createVertexTemplateFromCells([c],c.geometry.width,c.geometry.height,k)}));f.push(this.addEntry(d, +function(){var a=new mxCell("",new mxGeometry(0,0,c,60),"strokeColor=#dddddd;fillColor=#ffffff;shadow=1;strokeWidth=1;rounded=1;absoluteArcSize=1;arcSize=2;");a.vertex=!0;var d=new mxCell('<font color="#000000">Name</font><br>'+k,new mxGeometry(0,.5,44,39),h+b+";part=1;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=middle;spacingLeft=5;fontColor=#999999;fontSize=12;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(5,-19.5);d.vertex=!0;a.insert(d);return g.createVertexTemplateFromCells([a], +a.geometry.width,a.geometry.height,k)}));f.push(this.addEntry(d,function(){var a=new mxCell("",new mxGeometry(0,0,c+8,68),"shape=mxgraph.gcp2.doubleRect;strokeColor=#dddddd;fillColor=#ffffff;shadow=1;strokeWidth=1;");a.vertex=!0;var d=new mxCell('<font color="#000000">Name</font><br>'+k,new mxGeometry(0,.5,44,39),h+b+";part=1;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=middle;spacingLeft=5;fontColor=#999999;fontSize=12;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(5, +-19.5);d.vertex=!0;a.insert(d);return g.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,k)}))};Sidebar.prototype.addGCP2ProductCardSet=function(a,b,e,c,d,f,g,h){var k=this,l="dashed=0;connectable=0;html=1;fillColor=#5184F3;strokeColor=none;"+mxConstants.STYLE_SHAPE+"=mxgraph.gcp2.",m=a.replace("\n"," "),m=m.replace("- ","-");h.push(this.addEntry(g,function(){var f=new mxCell("",new mxGeometry(0,0,d,60),"strokeColor=#dddddd;fillColor=#ffffff;shadow=1;strokeWidth=1;rounded=1;absoluteArcSize=1;arcSize=2;"); +f.vertex=!0;var g=new mxCell(a,new mxGeometry(0,0,45*e,45*c),l+b+";part=1;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=middle;spacingLeft=5;fontColor=#999999;fontSize=12;");g.geometry.relative=!0;g.geometry.offset=new mxPoint(5,7+22.5*(1-c));g.vertex=!0;f.insert(g);return k.createVertexTemplateFromCells([f],f.geometry.width,f.geometry.height,m)}));h.push(this.addEntry(g,function(){var a=new mxCell("",new mxGeometry(0,0,f,60),"strokeColor=#dddddd;fillColor=#ffffff;shadow=1;strokeWidth=1;rounded=1;absoluteArcSize=1;arcSize=2;"); +a.vertex=!0;var d=new mxCell('<font color="#000000">Name</font><br>'+m,new mxGeometry(0,0,45*e,45*c),l+b+";part=1;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=middle;spacingLeft=5;fontColor=#999999;fontSize=12;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(5,7+22.5*(1-c));d.vertex=!0;a.insert(d);return k.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,m)}));h.push(this.addEntry(g,function(){var a=new mxCell("",new mxGeometry(0,0,f+8,68),"shape=mxgraph.gcp2.doubleRect;strokeColor=#dddddd;fillColor=#ffffff;shadow=1;strokeWidth=1;"); +a.vertex=!0;var d=new mxCell('<font color="#000000">Name</font><br>'+m,new mxGeometry(0,0,45*e,45*c),l+b+";part=1;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=middle;spacingLeft=5;fontColor=#999999;fontSize=12;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(5,7+22.5*(1-c));d.vertex=!0;a.insert(d);return k.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,m)}))};Sidebar.prototype.addGCP2ServiceCard=function(a,b,e,c,d,f){var g=this,h="dashed=0;connectable=0;html=1;fillColor=#757575;strokeColor=none;"+ +mxConstants.STYLE_SHAPE+"=mxgraph.gcp2.",k=a.replace("\n"," "),k=k.replace("- ","-");f.push(this.addEntry(d,function(){var d=new mxCell("",new mxGeometry(0,0,e,c),"strokeColor=#dddddd;fillColor=#ffffff;shadow=1;strokeWidth=1;rounded=1;absoluteArcSize=1;arcSize=2;");d.vertex=!0;var f=new mxCell(a,new mxGeometry(0,.5,32,32),h+b+";part=1;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=middle;spacingLeft=5;fontColor=#000000;fontSize=12;");f.geometry.relative=!0;f.geometry.offset= +new mxPoint(5,-16);f.vertex=!0;d.insert(f);return g.createVertexTemplateFromCells([d],e,c,k)}))};Sidebar.prototype.addGCP2ExpandedProductCardSet=function(a,b,e,c,d){var f=this,g="dashed=0;connectable=0;html=1;fillColor=#5184F3;strokeColor=none;"+mxConstants.STYLE_SHAPE+"=mxgraph.gcp2.",h=a.replace("\n"," "),h=h.replace("- ","-");d.push(this.addEntry(c,function(){var a=new mxCell("",new mxGeometry(0,0,e,70),"strokeColor=#dddddd;fillColor=#ffffff;shadow=1;strokeWidth=1;rounded=1;absoluteArcSize=1;arcSize=2;"); +a.vertex=!0;var c=new mxCell('<font color="#000000">Name</font><br>'+h+'<hr><font style="font-size: 11px">Attribute Name</font>',new mxGeometry(0,0,44,39),g+b+";part=1;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=top;spacingLeft=5;fontColor=#999999;fontSize=12;spacingTop=-8;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(5,7);c.vertex=!0;a.insert(c);return f.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,h)}));d.push(this.addEntry(c,function(){var a= +new mxCell("",new mxGeometry(0,0,e+8,78),"shape=mxgraph.gcp2.doubleRect;strokeColor=#dddddd;fillColor=#ffffff;shadow=1;strokeWidth=1;");a.vertex=!0;var c=new mxCell('<font color="#000000">Name</font><br>'+h+'<hr><font style="font-size: 11px">Attribute Name</font>',new mxGeometry(0,0,44,39),g+b+";part=1;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=top;spacingLeft=5;fontColor=#999999;fontSize=12;spacingTop=-8;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(5,7); +c.vertex=!0;a.insert(c);return f.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,h)}))};Sidebar.prototype.addGCP2ExpandedMachineCard=function(a,b,e,c,d,f,g,h,k,l,m,q,r,n){var p=this,u="dashed=0;connectable=0;html=1;fillColor=#757575;strokeColor=none;"+mxConstants.STYLE_SHAPE+"=mxgraph.gcp2.",t=a.replace("\n"," "),t=t.replace("- ","-");n.push(this.addEntry(r,function(){var a=new mxCell("",new mxGeometry(0,0,q,95),"strokeColor=#dddddd;fillColor=#ffffff;shadow=1;strokeWidth=1;rounded=1;absoluteArcSize=1;arcSize=2;"); +a.vertex=!0;var n=new mxCell('<font color="#000000">'+t+"</font><hr>"+d,new mxGeometry(0,0,q,50),"text;part=1;html=1;align=left;verticalAlign=top;spacingLeft=35;fontColor=#999999;fontSize=11;resizeWidth=1;");n.geometry.relative=!0;n.vertex=!0;a.insert(n);n=new mxCell("",new mxGeometry(0,0,25*e,25*c),u+b+";part=1;");n.geometry.relative=!0;n.geometry.offset=new mxPoint(4+12.5*(1-e),6+12.5*(1-c));n.vertex=!0;a.insert(n);n=new mxCell("",new mxGeometry(0,0,20,20),u+g+";part=1;");n.geometry.relative=!0; n.geometry.offset=new mxPoint(35,55);n.vertex=!0;a.insert(n);n=new mxCell(f,new mxGeometry(0,0,18,18),"rounded=1;arcSize=50;part=1;fillColor=#3B8CF0;strokeColor=none;html=1;fontColor=#ffffff;spacingTop=-2;");n.geometry.relative=!0;n.geometry.offset=new mxPoint(24,69);n.vertex=!0;a.insert(n);n=new mxCell(h,new mxGeometry(0,0,18,18),"rounded=1;arcSize=50;part=1;fillColor=#3B8CF0;strokeColor=none;html=1;fontColor=#ffffff;spacingTop=-2;");n.geometry.relative=!0;n.geometry.offset=new mxPoint(50,69);n.vertex= !0;a.insert(n);n=new mxCell("",new mxGeometry(0,0,20,18),u+k+";part=1;");n.geometry.relative=!0;n.geometry.offset=new mxPoint(75,56);n.vertex=!0;a.insert(n);n=new mxCell(l,new mxGeometry(0,0,18,18),"rounded=1;arcSize=50;part=1;fillColor=#3B8CF0;strokeColor=none;html=1;fontColor=#ffffff;spacingTop=-2;");n.geometry.relative=!0;n.geometry.offset=new mxPoint(88,69);n.vertex=!0;a.insert(n);n=new mxCell("",new mxGeometry(0,0,20,20),u+m+";part=1;");n.geometry.relative=!0;n.geometry.offset=new mxPoint(115, -55);n.vertex=!0;a.insert(n);return p.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,t)}));n.push(this.addEntry(r,function(){var a=new mxCell("",new mxGeometry(0,0,q,95),"strokeColor=#dddddd;fillColor=#ffffff;shadow=1;strokeWidth=1;rounded=1;absoluteArcSize=1;arcSize=2;");a.vertex=!0;var l=new mxCell('<font color="#000000">'+t+"</font><hr>"+c,new mxGeometry(0,0,q,50),"text;connectable=0;part=1;html=1;align=left;verticalAlign=top;spacingLeft=35;fontColor=#999999;fontSize=11;resizeWidth=1;"); -l.geometry.relative=!0;l.vertex=!0;a.insert(l);l=new mxCell("",new mxGeometry(0,0,25*e,25*b),u+d+";part=1;");l.geometry.relative=!0;l.geometry.offset=new mxPoint(4+12.5*(1-e),6+12.5*(1-b));l.vertex=!0;a.insert(l);l=new mxCell("",new mxGeometry(0,0,20,20),u+g+";part=1;");l.geometry.relative=!0;l.geometry.offset=new mxPoint(35,55);l.vertex=!0;a.insert(l);l=new mxCell(f,new mxGeometry(0,0,18,18),"connectable=0;rounded=1;arcSize=50;part=1;fillColor=#3B8CF0;strokeColor=none;html=1;fontColor=#ffffff;spacingTop=-2;"); +55);n.vertex=!0;a.insert(n);return p.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,t)}));n.push(this.addEntry(r,function(){var a=new mxCell("",new mxGeometry(0,0,q,95),"strokeColor=#dddddd;fillColor=#ffffff;shadow=1;strokeWidth=1;rounded=1;absoluteArcSize=1;arcSize=2;");a.vertex=!0;var l=new mxCell('<font color="#000000">'+t+"</font><hr>"+d,new mxGeometry(0,0,q,50),"text;connectable=0;part=1;html=1;align=left;verticalAlign=top;spacingLeft=35;fontColor=#999999;fontSize=11;resizeWidth=1;"); +l.geometry.relative=!0;l.vertex=!0;a.insert(l);l=new mxCell("",new mxGeometry(0,0,25*e,25*c),u+b+";part=1;");l.geometry.relative=!0;l.geometry.offset=new mxPoint(4+12.5*(1-e),6+12.5*(1-c));l.vertex=!0;a.insert(l);l=new mxCell("",new mxGeometry(0,0,20,20),u+g+";part=1;");l.geometry.relative=!0;l.geometry.offset=new mxPoint(35,55);l.vertex=!0;a.insert(l);l=new mxCell(f,new mxGeometry(0,0,18,18),"connectable=0;rounded=1;arcSize=50;part=1;fillColor=#3B8CF0;strokeColor=none;html=1;fontColor=#ffffff;spacingTop=-2;"); l.geometry.relative=!0;l.geometry.offset=new mxPoint(24,69);l.vertex=!0;a.insert(l);l=new mxCell(h,new mxGeometry(0,0,18,18),"connectable=0;rounded=1;arcSize=50;part=1;fillColor=#3B8CF0;strokeColor=none;html=1;fontColor=#ffffff;spacingTop=-2;");l.geometry.relative=!0;l.geometry.offset=new mxPoint(50,69);l.vertex=!0;a.insert(l);l=new mxCell("",new mxGeometry(0,0,20,18),u+k+";part=1;");l.geometry.relative=!0;l.geometry.offset=new mxPoint(75,56);l.vertex=!0;a.insert(l);l=new mxCell("123",new mxGeometry(0, -0,25,18),"connectable=0;rounded=1;arcSize=50;part=1;fillColor=#3B8CF0;strokeColor=none;html=1;fontColor=#ffffff;spacingTop=-2;");l.geometry.relative=!0;l.geometry.offset=new mxPoint(81,69);l.vertex=!0;a.insert(l);l=new mxCell("",new mxGeometry(0,0,20,20),u+m+";part=1;");l.geometry.relative=!0;l.geometry.offset=new mxPoint(115,55);l.vertex=!0;a.insert(l);return p.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,t)}))};Sidebar.prototype.addGCP2UserDeviceCard=function(a,d,e,b,c,f, -g){var h=this,k="dashed=0;connectable=0;html=1;fillColor=#757575;strokeColor=none;"+mxConstants.STYLE_SHAPE+"=mxgraph.gcp2.",l=a.replace("\n"," "),l=l.replace("- ","-");g.push(this.addEntry(f,function(){var f=new mxCell(a,new mxGeometry(0,0,70,85+c),"strokeColor=#dddddd;fillColor=#ffffff;shadow=1;strokeWidth=1;rounded=1;absoluteArcSize=1;arcSize=2;labelPosition=center;verticalLabelPosition=middle;align=center;verticalAlign=bottom;spacingLeft=0;fontColor=#999999;fontSize=12;whiteSpace=wrap;spacingBottom=2;"); -f.vertex=!0;var g=new mxCell("",new mxGeometry(.5,0,50*e,50*b),k+d+";part=1;");g.geometry.relative=!0;g.geometry.offset=new mxPoint(25*-e,10+25*(1-b));g.vertex=!0;f.insert(g);return h.createVertexTemplateFromCells([f],f.geometry.width,f.geometry.height,l)}))}})();(function(){Sidebar.prototype.addGMDLBottomNavigationPalette=function(a){var d=[this.addDataEntry("gmdl google media design library bottom navigation bottom navigation",358,48,"Bottom Navigation","7VbbToNAEP0aHtss0Gp9tPXyosaoP7AtA2xcGLKMtfXr3WWH2go1jZcHjRCSndkzlz1zIATxrFhdGlnl15iADuLzIJ4ZRPKrYjUDrYNIqCSIz4IoEvYJoos9u2GzKyppoKRDAiIfsJT6CbzHO2paa3Ykss7BwUUQT6VWWWnXC5sfjHWkWNK9enHYMLJ2ncvKGQYW5LaV1jPUaJpccdpcDkYGH6HdKbEEH5vgM1fixsAQrPYernHxyS4BCyCztpBnlVDuEfF44sNyUFnOYSP2ydrb2Sb0jSq7YLb6mYs7zN2BY6X+mMCcCu242qKqWGVu/sOsSPTQcJIOdRPh7n3UuTH0gR1/aiH1Kc+NsHIpKrlQZXYFKXFb22N0tpZz0LdYK1K4M+824dU7wByJsOhTCBebMqApx74H183Z4OjQcUf94+YAMQzHPmbdOtje0gO/DztyaH0GtCS1hJ36fRrhFm5R2c429Qeh2Ck/aNtpU2Ca1kAdkW1OcpDuRh3dXcglGkXwReXlIE3PKyvE8cnR9EDdbcC/Qnfj79Ld52QXTn5IdqMfkN24I7sbq5f5+muaK32O/4/dJ0Q3+XsfO2u+/fp4+Paf0Ss="), +0,25,18),"connectable=0;rounded=1;arcSize=50;part=1;fillColor=#3B8CF0;strokeColor=none;html=1;fontColor=#ffffff;spacingTop=-2;");l.geometry.relative=!0;l.geometry.offset=new mxPoint(81,69);l.vertex=!0;a.insert(l);l=new mxCell("",new mxGeometry(0,0,20,20),u+m+";part=1;");l.geometry.relative=!0;l.geometry.offset=new mxPoint(115,55);l.vertex=!0;a.insert(l);return p.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,t)}))};Sidebar.prototype.addGCP2UserDeviceCard=function(a,b,e,c,d,f, +g){var h=this,k="dashed=0;connectable=0;html=1;fillColor=#757575;strokeColor=none;"+mxConstants.STYLE_SHAPE+"=mxgraph.gcp2.",l=a.replace("\n"," "),l=l.replace("- ","-");g.push(this.addEntry(f,function(){var f=new mxCell(a,new mxGeometry(0,0,70,85+d),"strokeColor=#dddddd;fillColor=#ffffff;shadow=1;strokeWidth=1;rounded=1;absoluteArcSize=1;arcSize=2;labelPosition=center;verticalLabelPosition=middle;align=center;verticalAlign=bottom;spacingLeft=0;fontColor=#999999;fontSize=12;whiteSpace=wrap;spacingBottom=2;"); +f.vertex=!0;var g=new mxCell("",new mxGeometry(.5,0,50*e,50*c),k+b+";part=1;");g.geometry.relative=!0;g.geometry.offset=new mxPoint(25*-e,10+25*(1-c));g.vertex=!0;f.insert(g);return h.createVertexTemplateFromCells([f],f.geometry.width,f.geometry.height,l)}))}})();(function(){Sidebar.prototype.addGMDLBottomNavigationPalette=function(a){var b=[this.addDataEntry("gmdl google media design library bottom navigation bottom navigation",358,48,"Bottom Navigation","7VbbToNAEP0aHtss0Gp9tPXyosaoP7AtA2xcGLKMtfXr3WWH2go1jZcHjRCSndkzlz1zIATxrFhdGlnl15iADuLzIJ4ZRPKrYjUDrYNIqCSIz4IoEvYJoos9u2GzKyppoKRDAiIfsJT6CbzHO2paa3Ykss7BwUUQT6VWWWnXC5sfjHWkWNK9enHYMLJ2ncvKGQYW5LaV1jPUaJpccdpcDkYGH6HdKbEEH5vgM1fixsAQrPYernHxyS4BCyCztpBnlVDuEfF44sNyUFnOYSP2ydrb2Sb0jSq7YLb6mYs7zN2BY6X+mMCcCu242qKqWGVu/sOsSPTQcJIOdRPh7n3UuTH0gR1/aiH1Kc+NsHIpKrlQZXYFKXFb22N0tpZz0LdYK1K4M+824dU7wByJsOhTCBebMqApx74H183Z4OjQcUf94+YAMQzHPmbdOtje0gO/DztyaH0GtCS1hJ36fRrhFm5R2c429Qeh2Ck/aNtpU2Ca1kAdkW1OcpDuRh3dXcglGkXwReXlIE3PKyvE8cnR9EDdbcC/Qnfj79Ld52QXTn5IdqMfkN24I7sbq5f5+muaK32O/4/dJ0Q3+XsfO2u+/fp4+Paf0Ss="), this.addDataEntry("gmdl google media design library bottom navigation bottom navigation",358,48,"Bottom Navigation","7Zbfb5swEMf/Gh4TGRxY9rikW19aqdL2PjlwgFXDIXPNj/31s7FJ84Oo6UqeOiQk39d3PvvuE4eAL6vtvRZN+YgZqIB/D/hSI5IbVdslKBVETGYBvwuiiJk3iH5cmA27WdYIDTVdExC5gLVQL+AUJ7S0U17IRFuCdWcBXwgli9qMU7M+aCPkWNNP+cf6hpGx21I01tCQkp2WSi1Roe7W4ox9+ZosrBtpfIZ+psYaXGyGG5/Jbww0wfbi4TrJn+wesALSO+OykRmVzoPHcxdWgixKHzbzmmidXexDX0tlBr5aw5Xj76xcSZWyRTqoUbUtbOOnRZWp6VpmgL+j85rl3XOpZrb+Q862cDIV6ptvGGFjl2hEKuviAXLy2zrsn7WVWIF6wlaSxKNG9ws+nDiskAirITR8soV36NJ57Zfdzd0kMQpahXbGTK5uezTcdh/ApmHsYna94O0DLvzv4giLMHGaBiVIruEo/xArfgtPKM3O9vknITtKPzmhDfO8BTpjbX+Qq/CbneH3+NLK9GMMVt0Sn4nAeCzk+PxN5MLZOXI9hmMj1+calbl45Ctvhfj8qWi71X2XRG/Dl9wOvvkJe+wG7CUjs7eBVSMK+I/fCPjN/+3v9mZ3X/xx/oz5+hHu3A+/0f8C")]; -this.addPalette("gmdlBottom Navigation","GMDL / Bottom Navigation",a||!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addGMDLBottomSheetsPalette=function(a){var d=[this.addDataEntry("gmdl google media design library bottom sheets bottom sheet",358,320,"Bottom Sheet","7ZbRbtsgFIafxrcVgbjJLud0Sau12rQ9wETjE4yKwQLSOnv6gSFpFhwJaUsvqiaKxDnnPyfm+4VMQRZtv9K0ax5UDaIgXwqy0ErZsGr7BQhRYMTrgtwUGCP3K/DyTHUyVFFHNUib04BDwzMVWwiZkDB2J2KipqYBL0cFqajgTLr12s0H7RIbJe1P/ttrJ9jFpqGdDzSsrS9zIRZKKD3MIpvh42VWqyfYV6SSEHpr9RL/yQ3YasOf4QeYMN9n4+OCttCf3fKQivtdgWrB6p2TvPDaNkFBynloa4CzJraRyApRExLs0PtK0C0ixHGgJAH6rQPpBTIhe8JqlMkxwJjaeyBgY6MDR4jnyH9PnJnmosPj6PYNEdAuhmUIj8BihFKw/4PrNOH6FaA7i7TtmT9TV6ytxdWTV2bwdfSW02qGqhSyoI8gvivDLVc+rcPuKo+Tr6m4P6m3vK79Mx0En+O8Q8F0dM0lux/m3+C3cewajTh2GcPKxLA7+aj6PMf4IP2wzIeTEc/wZTy7Tjy7pZKprTV5tjVBnWkcWn6aleX7NS73sOF/N26WGPcAxoBk7h2d5Vx7kH8cOi9+w0M3T7xbKcXc3nGV5x0b5L86sTWZ7jls7gr0ft273GvOha+X86H21939Dw=="), +this.addPalette("gmdlBottom Navigation","GMDL / Bottom Navigation",a||!1,mxUtils.bind(this,function(a){for(var c=0;c<b.length;c++)a.appendChild(b[c](a))}))};Sidebar.prototype.addGMDLBottomSheetsPalette=function(a){var b=[this.addDataEntry("gmdl google media design library bottom sheets bottom sheet",358,320,"Bottom Sheet","7ZbRbtsgFIafxrcVgbjJLud0Sau12rQ9wETjE4yKwQLSOnv6gSFpFhwJaUsvqiaKxDnnPyfm+4VMQRZtv9K0ax5UDaIgXwqy0ErZsGr7BQhRYMTrgtwUGCP3K/DyTHUyVFFHNUib04BDwzMVWwiZkDB2J2KipqYBL0cFqajgTLr12s0H7RIbJe1P/ttrJ9jFpqGdDzSsrS9zIRZKKD3MIpvh42VWqyfYV6SSEHpr9RL/yQ3YasOf4QeYMN9n4+OCttCf3fKQivtdgWrB6p2TvPDaNkFBynloa4CzJraRyApRExLs0PtK0C0ixHGgJAH6rQPpBTIhe8JqlMkxwJjaeyBgY6MDR4jnyH9PnJnmosPj6PYNEdAuhmUIj8BihFKw/4PrNOH6FaA7i7TtmT9TV6ytxdWTV2bwdfSW02qGqhSyoI8gvivDLVc+rcPuKo+Tr6m4P6m3vK79Mx0En+O8Q8F0dM0lux/m3+C3cewajTh2GcPKxLA7+aj6PMf4IP2wzIeTEc/wZTy7Tjy7pZKprTV5tjVBnWkcWn6aleX7NS73sOF/N26WGPcAxoBk7h2d5Vx7kH8cOi9+w0M3T7xbKcXc3nGV5x0b5L86sTWZ7jls7gr0ft273GvOha+X86H21939Dw=="), this.addDataEntry("gmdl google media design library bottom sheets grid style options",358,642,"Grid Style With Some Options","7VvRbuI4FP0apNkHUGI7BB4LHToPU6naXWkeqwAmRHVilLgzdL9+HRIDwQ44xAbKDFUlYuwQ33PPvdfHpgPH8fopDVbLZzrHpAO/duA4pZQV7+L1GBPSAU4078DHDgAO/++ASc2n7uZTZxWkOGE6A0Ax4GdA3nHRUjRk7IOUDfMgW+K8u9OBo4BEYcLfz/j9ccobFjRh/0T/5X1dwK+zZbDKL1I8Y/nHESFjSmi6uRdcbF55N5bSNyw+SWjCx4zKZ8Epw+va+Wyaysk8YRpjln7wLr+iOVsWPaA3KIYtcRQuy2F9VM4syIqGcDt2Zx7+prSQ2lpQslY+5wfomDWa6J8Wj39oRPAIh4N+nRHze+91nmxeeedVMIuS8O/SJGjX9C9d5Q8inquchHPwnJBfpzjjVz9KU7u6kIHzIAOoaEsxCVj0E1fu3wZG1NDplywm5XwFUvE6zDnbC+M56TG6ep0GaSu3hmobVQd8lJTuecX1ngVRXzag29SA5fe/0Ig/1vbLu0NQ+fquX70DXSwyzCQAtrPQwsSTMHkgEW8Y0yShaWaWYGriVFkGh8gf+kqn37t7brRTlCv41c0JlDtBNAvIQ/nAcTSf5zPazoDgBduN/L65evSBZaZ5fjtH+agS1qhj9A2TVVi44gJyahJ4a5veU5v+CGVdFWX7Rigr6CQYO7AAjG8YGDyPdLm5xaoNMtqh1SJO3f4FgBoYBoo/EePBKbtJsDx7WJWltFWshg2xspH5nM2Lt9M8C7F8usC5ePUnmNEyJw1cCyi5jmFKMUzwalmgoVWcTDx35OkiMGycmoSrtyrH9VKTC2wA5EoAfel7zl+8yfM8/p0QSYBxC7IDAiG5uNuSo7aUk2liqLhrDqN6WeUYIVb3cIgZ4GRB4plOI25YDbigDJfnoAmafBK4XE9Fu6Zw6a6CXVnNaBfElkES0nfdLDN6zP9aGlO/hvPNE0HUBeigLhDZwSwxmooWfyqDEwHMFZKJWZxkIeMLBFBknr4/GH6+zFM4372nHllp+EHTt8+XeK6GlnbmMS0d2Mw8ddb8jVJPUwHhflOPoQC2XZ+YxUlDPBCWJ5Firblv5qoK6hozfOFMtXRyesBxT3MKDFSanKHs4lnABjRVDO6XQ4bKNwBtcAjIwkG71BQHETm63VCn7Jy5DVE4WjOxBym4ZGgfAlXzkw3JVCC0Bxknz6zcN0QOXgfxiuDejMYSlDdfeZ8B5+ervBXnKl5wmtEkIDqI3Vb1fQZil9V9Gh9/+JOKTqWioQ0lQXEkgiPxei+Brfki1QxNLhrY7kVSuBpa2kFNQ1K4+trnzChlaF0DPStRShYHnjY179GUsu/pTl3pHJa186G7s/w81YgEU0xeaBaxiFayk+j+/aDDlDLGI2VNPlPxrHJ+q98S5e0C10UDiSyq03tii7L1sYWyuhJuIE7zmXUDWXv4Vopy7R1hJ+/dhiu4cj3jDh8c72td8WPEbxRnPhURFtk57AIHNoIHlFWRJ0rDfLd3ZCKAbO71uiLv2U35jj0fGXjI1wouxtwEXsJNZFHm2UyKuakMg45sVegeV4VWs5Qi3kBgJd6goY2zxOJh9x0JZ1kQysdLzvCl8k634k5dRZpq7E/IYvZSyI7IlDeBqjeJTXez3iTLVs80NeJK+W1uxY/cvrYf2U9ligjk2olA3Bg2fOamxDez69iPyoBTq1qRX9oKN8jGngKUtbfjMJ3aBpoGs7cm20A1WoS2YAOPn1pwegfHcJUKjmpfyNCi1K98u5VflEGNXw4JrPjIaJUpVaGrIXT/ADXQ7JTR7Zro+PcGD7/c/ey86L7/q/T/AQ=="), this.addDataEntry("gmdl google media design library bottom sheets grid style all options",358,642,"Grid Style With All Options","7Vvfj+IqFP5rTPY+aFqg/ngcnXXuw04yuXeTfdxURW2GlqZldvX+9RdsUSvUoRZWx10nk1gEWs73Hb7DgXbgJN48ZWG6fqYLTDrwcwdOMkpZ8S3eTDAhHeBFiw587ADg8f8OmNb86u9+9dIwwwkzaQCKBj9C8oaLkqIgZ1tSFizCfI1Fda8DxyGJVgn/Puf944wXLGnC/o3+E3V9wK/zdZiKiwzPmfg5ImRCCc12fcHl7iOqsYy+YvlLQhPeZlw+C84Y3tSOZ1dUDuYJ0xizbMur/IwWbF3UgMGwaLbG0WpdNuujcmRhXhSs9m0P5uFfSgvprQUVa4kxP0DPrtFk/ax4/FMjgkc4GvbrjCj6Pqo83X1E5TScR8nqn9Ik6FD0labiQeRzlYPwTp4T8usM5/zqW2lq3xQycBlkABVlGSYhi37gSv9tYEQNSb9mMSnHK5GKNyvhs71VvCA9RtPvszBripSR7aDedtUG29LVe0FxfWRZ1FcN6zc1bHn/Fxrxx9rfvDsCldt3B9Ue6HKZY6YAsx+FEVaBgtUDiXjBhCYJzXK7jqd3qCqmcIQGo4HWGY56F0Z7zxULv+sKxxIkiOYheSgfOI4WCzGi/QgIXrJDyy+7q8cBcOyBwaAdUbZVR7ZKjL5lJ5YWrlBAlSyJt7HpA73pz7isr3PZvhWXle4kPXboAJiBZWDwIjL1zT1WbZAxnlod4tTt/wKghpaB4k/E+OSU3yRYgTusyhDbKVajhli5UD5v9+HlVKgQE8MF3i+PCqVntNSkoe8AJd+z7FIME5yuCzSMgpNp4I8DUwRGjaVJUr1VmG4mTT5wAZCvAPSpH3h/8aIgCPg9IVIA4xZkJw6E1OBu7xyuQ7nmoOkXV54VN+qeNrEDk5qWeKaziJvRAByoghN4aIqm58BR57APDpfpWthXcxrtpqx1mKzom6mmjB/FX0tjmkdsA/uOIKMAdBIFSC2w6xhNUxd/4oB3JjBfJkjs4qSmLT5BAKXO9AfDkTOdcTaVFeS7d+lR8wrfaPb68YTnamgZK4/tRIFL5amz5m8kPU3TBfcrPZYmsP1qxC5OBqkCaXkSaVaWx2au5jx9a4YvyFTrTl4PeP77PgWGugycJXUJHGADmuYH7teHLIVvALrwIaCmCdpJUxxG5OzmQl0e58JNh4JozVI7SONLlnYdUFWfXCRIJUJHkHHnmZe7hMjDmzBOCe7NaaxAefOR9wVwfrzIW3O64gVnOU1CYoLYbUXfV0PMNPo2OQRx9TDhQm2xFAKAkROaq6mBp508nBWYOt2vqMyqlJlTujNx0GBMwhkmLzSPWEQrMYWs/uWkwowyxmfLmihE52eVgw39lijvY0EfDRVn0R1rkbn71vt5sCJXELg416I5v/B3uX5tT4TDSvg2qOCrEY4/evCCz3UhqxXeaA5DabavkJtdYOhGI9WcyROlK7ExMrYxgez6+p6St/ymuOOOI8MADYwmF2s0OZ1cnNBEzdU825GYm1IYdCarZ3qOCzpVKc18A4GT+QbJ+M0ukdRk0jPO83Cl7sRewKWyp1uhU1cjU435hByql2aFjmyxCVTZ5LuIeaCa/prQdGuBSnPRza3wCJzQKNGd31G5ZZ1BWm2DOhJZ2oeQpNmTyEWiB6q5uWk4xzNK1U265kRayq5uhUzmc5LNsMh0yeUoKgrkqRS7zFFThF9/RkyA0Z44rOzp9+aN2fsnH4s1TQ9IOd2zsZtI21YavJdWk3NC2+wxciILtl/qmoXz1yZbNjXJUOOMMTz/ppfXOzkgqz1koNvDsZQVq2q7k3e9oJoaVTCUWPGWUZpr46qrIXT/ABm8dHV2drsmOoN7g4dfHl4UL6ofv0f+Pw=="), this.addDataEntry("gmdl google media design library bottom sheets list style",358,642,"List Style","7Vtdb5s8FP41uUxlbALJZZruQ9MmVe827XLyEiegEoyM2zXvr5/NV0JsGrPYLV1DVQmM7djnOc85h8NhhBbbxw8MZ9EXuiLJCL0boQWjlJdn28cFSZIRBPFqhG5GEALxP4LvO+56xV2QYUZSbjIAlgMecHJPypayIee7pGpY4TwisjsYoWucxJtUnC/F/ISJhjVN+df4f9nXg+I6j3AmLxhZcnk7TpIFTSgr5kLr4pDdOKN3pL6T0lSMua7WQhgnj537KZqqzXwgdEs424kuv+MVj8oeaDIth0Uk3kTVsMCvdobzsmHTjN2LR5xUEtJLCynSknueI2BXaHV/Vi7/WIjwBs2mQZcQ5dwHnd8Xh+yc4WWcbv6rROLvm77RTC6kXle1CXC0TiSuGcnF1Y9K1J4pZPDvIIN+2cZIgnn8QFrznwOj31PpI75Nqv3WSG0fN5KzV5vtKrniNPv5C7O+SBnJDull1x6wq6h+NSmvDyTrB6pgvb6CrX7/lsZiWc2Pj2ew9fPjsD0DXa9zwhVgml0YYTVRsJrL+zbppqdRG0k088NZqKXAwexSVKcIWLJtLOkkoY+XOJlXC97Gq5XcUbODhKz5fuTn4uomhI55NwnPU49dm75W1SGwTN2MkTUREluS3FATGhdmBMFED8EThK3F1iJsYIWw9TQ1X6cOAApt21YW43RTsGII6HhAwxc74AC/jQ5ygM7UMjo5wWwZKdgcAnEIUIVZ2bm2ocbmrAMtY1fo6VyhHWaNg4l7as2sg8e5cCvPaviMwZq4wwr67rGq7cQBWJ9wKqcFt4TdxWn+NHYuYhhQHKKdyniCy+1DcCqk8Xw1pGkmGmoAc6ZFrhRj6rlQDM82i3nx5GGiADcijA3eGT9og97esX5Abj3FeXbc41HsUhPMLjh90yGnwLnPiSk4UyD/zgXH2L4ijTNElgzsBBxh5cTCqsmYL7iQwScapTlNLwZ26AbWqxXOrmLYTu+4I/G5yZ3XT2I1vXNLJB8hWGCW5BcavwYaz5wESrZTPe5ofO6zzuunsZr1+cbIA5U8/ojTnFxYPHgWN28K7GqG7YyTOxaHb57FfRNML0tbl5yq5XsmpxBw4RmhmltScKoln8QHGVedmNu5WM+a4Etl6qQTuILAO80pONWQyg42Yxevp6Ca3ZljJoNYcE3SlHA+ZEZdHGExd20H7WqGmlqaK7oghMLbOEANDk0arxOH4zoORa3MYOgoten58rJ3GYdhAhC6QElNKg00XOkC5+2EK5oynq+RkNDzW9jmzdjFpHaY1NCJs1WTR+eRNS/URxMtBcWhAt+0/+Ub7VKF+xUghBoLC6zQ9shouHnFoqng+Z4lFK8utB0cbX3oJBKyXSJ0X+qPGegNZc3kH1gJgV5R/ZamRGhBs92FncNj59SJU7VdZbSU2mPqU88rECt19025U6Tmgm5ZuQwexXkhoM0lJB4eeyfIhW9FtquLskKZnjEkRv2rjjxdAteOx4VHD7IuPC5SM0PPz9eGdXbz7LvWgFPU8m1ldp3AZDs19Asv73TM0lZOd6fszZnVgdE+I9+uYdZSTRfcWvqaKGxTzcXHRMigNKjGSoyMs1ybDngxhP59gAxSOk9at5dEJ/zX4BGX+y+Ry+6HHyr/AQ=="), this.addDataEntry("gmdl google media design library bottom sheets bottom sheet menu items subtext",358,360,"Bottom Sheet (menu items with subtext)","7ZfdbtowFMefJtpVKycGNi4h3Sp1rVRtT2DiQ2LhxJnj8LGn3zl2AoW0Uy82ygWRguzz5eP/+QlExNNye29FXTwZCTriXyOeWmNcWJXbFLSOEqZkxO+iJGH4Rsm3N7yx97JaWKjcexKSkLAWuoVgCYbG7XRnkKIpgMJZxOdCq7zCdYb1waJhaSr3U/2m2DjBfVOImjYWMkdupXVqtLG+Fl/6h8KcNSvoPZWpIORKs+lOwgKtbdQafkAT6pO1axesg+2bV/am7r73YEpwdochGyVdESL4+EtIK0DlRZfGJ0ErJppgyPe5BwVx0Yn4uqB8IGgqrFosQFTenAmnDC4nmuSRao3L3PmbBRMJejSAya/W9I6bIMUMA+Kk3h6caMj2Mh+MfOqfl6Zw2qzN24bOibFhdoMvtR06wCuGJo4bQ/NRuyeY9IMvtznRfJuXUt+qUuQwGDf2xfzzF0B60DQs6TgtFqCfTaO8eohXGNucSFCZ0I8n/lJJSZ3tA2Zdvb2jqUWmqvzR17+L2QnLI9wXrtS0fi93yevc9QnjkLHrgrvtCypHbAjl6B8wORow+SwW2lBVQsAVgJ9IaFbQ4aZt4MP5fGg1SRdPezpHVzrPSef0fHSOB3R2wx854nEDsIJK9rA+GNh9ai6FT99iSnwyEvBK6PkIjSfnQ3QyQPQJcqKQzZV1hRS7CwCyom/xZHrl8YN+z/n5ePw85FGtaPw4TVHWAZ/vVjVOVR7TDUiJ4lwKpfwK6cdAytl/gxS3h7+t3nf0r/YP"), this.addDataEntry("gmdl google media design library bottom sheets deep linked modal bottom sheet",358,642,"Deep-linked modal bottom sheet","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"), this.addDataEntry("gmdl google media design library bottom sheets long list",358,642,"Long list","7Zpfb5swEMA/TR4bGQMhPOZP001rtWqdtMeKgAOoBiNwt2SffjaGFGJonQZnU1aiSNg+G/t+vrM5MzIXyfYm97LojgQIj8zrkbnICaHiLtkuEMYjCOJgZC5HEAL2H8FVT6lRloLMy1FKVSpAUeGnh5+RyBEZBd3hKiPwighxcTAy5x6Ow5Td+6x9lLOMDUnpQ/ybyxqQpYvIy3giRz7lxTHGC4JJXrZlbsqLi9GcPKG6JCUpqzOv+oJyira94ymzqsHcIJIgmu+YyK84oJGQMO2pqBahOIyqahOrGplXiIxwX/dFPeym0lC3tkxJW3zMMxMMq7RaPhfdP1QicB1zdt2nRN52Q3hVXlw48/w4Db9VKrFesr6TjHek7lc1CHDQT5Olc1Sw1I9K1YYqMvg+ZNASeTnCHo1/olb7p2C0jpz0EU1wNd6aVLINuc2OwyTAY0qyx7WXH0tKSXdmt+7aFXaVqY9tkW5o1prIijWOVWz1/HsSs27tH37lwtbjr5x2C2SzKRCVwOxHocTK1uygum3oEON0uZidff5PwGmYdm0zGhTLZGATynK0QUxjPipUoUwtewJUEdhvIqjV1DKUySCGUjdTAwEagDgDAymQl/uRxKKp+CaQipEQrg0EnkinXaHByuhyasOwunJM/bCmA8PivuysdtNPpsOPDUXGtPSTcSUyXzOUcoFUQnTsSlJl1SsURhsq79emgP8O1i1ruJUGAiATgieuNHWHQAuQ62oAVD+jQegLQlkvnJadPHFJNTNZWXMHzGVc2FsjfE+KmMakuUfnYGLfw7cH5UkcBLxPe4FZ1d6+oNqF35btL6FW9udCb1g6Nh2GIbH/nK7JVg1+XIr+x/Th2ei7WujLsYpPXhqSZ7b0KU2ASEirrpMr17HtC5sCXQ4A6pgCUI8DkAMwd6goUBqyVz2lOZDsxT8cgX5HAPU4Ajl+c0NIyLQI52qzICzFHzP8rLprZgDYS/qFzYOzbQdMPd5Ajg09RAipLgeFkFXjD42ZNbEui3/XW/RQ/GGbvx4/IAehlsRXpB9wSTX21mp6vbow2z8fe0uP7cvxrgccB0jV9oWs4h7AnrsG+OD/Tv56bF8Ood1HhBJF/pmQvSik51vObT0mLcfeJJj6j3rKa/Cjnl2rwlsHP9b0NGr1eVzdzqCYoByAex3TW8Hrtec/dZ0z7L8V6EP0zsMGMc96Y9pgXJ85vnKqWr+C6DhVdVpP13KoCuVAWq/fZDXjrED/FKHLByTHunoBdXq3v0nHuTQ8LPnyRZYQb36w9Qc=")]; -this.addPalette("gmdlBottom Sheets","GMDL / Bottom Sheets",a||!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addGMDLButtonsPalette=function(a){var d=this,e=[this.createVertexTemplateEntry("dashed=0;align=center;fontSize=12;shape=rect;fillColor=#e0e0e0;strokeColor=none;fontStyle=1;shadow=1;fontColor=#000000;",100,36,"NORMAL","Raised Button (Normal)",null,null,this.getTagsForStencil("mxgraph.gmdl","button","gmdl google media design library button ").join(" ")), +this.addPalette("gmdlBottom Sheets","GMDL / Bottom Sheets",a||!1,mxUtils.bind(this,function(a){for(var c=0;c<b.length;c++)a.appendChild(b[c](a))}))};Sidebar.prototype.addGMDLButtonsPalette=function(a){var b=this,e=[this.createVertexTemplateEntry("dashed=0;align=center;fontSize=12;shape=rect;fillColor=#e0e0e0;strokeColor=none;fontStyle=1;shadow=1;fontColor=#000000;",100,36,"NORMAL","Raised Button (Normal)",null,null,this.getTagsForStencil("mxgraph.gmdl","button","gmdl google media design library button ").join(" ")), this.createVertexTemplateEntry("dashed=0;align=center;fontSize=12;shape=rect;fillColor=#e0e0e0;strokeColor=none;fontStyle=1;shadow=1;fontColor=#000000;",100,36,"HOVER","Raised Button (Hover)",null,null,this.getTagsForStencil("mxgraph.gmdl","button","gmdl google media design library button ").join(" ")),this.createVertexTemplateEntry("dashed=0;align=center;fontSize=12;shape=rect;fillColor=#e0e0e0;strokeColor=none;fontStyle=1;shadow=1;",100,36,"FOCUSED","Raised Button (Focused)",null,null,this.getTagsForStencil("mxgraph.gmdl", "button","gmdl google media design library button ").join(" ")),this.createVertexTemplateEntry("dashed=0;align=center;fontSize=12;shape=rect;fillColor=#e0e0e0;strokeColor=none;fontStyle=1;shadow=1;fontColor=#000000;",100,36,"PRESSED","Raised Button (Pressed)",null,null,this.getTagsForStencil("mxgraph.gmdl","button","gmdl google media design library button ").join(" ")),this.createVertexTemplateEntry("dashed=0;align=center;fontSize=12;shape=rect;fillColor=#000000;strokeColor=none;fontStyle=1;opacity=12;fontColor=#BDBDBD;", 100,36,"DISABLED","Raised Button (Pressed)",null,null,this.getTagsForStencil("mxgraph.gmdl","button","gmdl google media design library button ").join(" ")),this.createVertexTemplateEntry("dashed=0;align=center;fontSize=12;shape=rect;fillColor=#2196F3;strokeColor=none;fontStyle=1;shadow=1;fontColor=#ffffff;",100,36,"NORMAL","Raised Button (Normal)",null,null,this.getTagsForStencil("mxgraph.gmdl","button","gmdl google media design library button ").join(" ")),this.createVertexTemplateEntry("dashed=0;align=center;fontSize=12;shape=rect;fillColor=#2196F3;strokeColor=none;fontStyle=1;shadow=1;fontColor=#ffffff;", @@ -5503,48 +5504,48 @@ this.addDataEntry("gmdl google media design library button dropdown button selec this.addDataEntry("gmdl google media design library button dropdown button selected editable",100,150,"Dropdown Button (Selected, Editable)","7ZZRT4MwEMc/DY8uQJn66lDngyYmJvpc6QGNhS6l6uan90rLNkARFX1aE5L2endtf/9y4JG4WC8VXeU3koHwyIVHYiWltr1iHYMQXuhz5pFzLwx9fLzw8pPZoJ71V1RBqccEhDbghYpnsBZrqPRGOAOjVQ7G3ffIggqeldhPMD8oNKSy1Hf8zfgGIY6rnK7MQEGizTQXIpZCqjoXSetm3LSST7A3k9TNJmDy1aTDgdsdKA3rT09Ym9zxliAL0GqDLq+c6dx5+JaCnwPP8iZs7oy0soZsG7sDhh3H7GN+pMfvTHEqehC7WJDa3uH9uqHdnJQnVJw5zAVnzKRYVCua8DK7htTsPiAd8tEg0kY0UUcvFFQY9uDwjMYc/gxz5GwKBNX8BVr5f4M++vrqDlzGUpYwCM1SumpOMhoT+RhTO2APWjQFM7fereS4je1iR1Hnhss0rUD3IG+3OYr7/JslI9eFcAAbPYp1ZireLCuYmGl8YcqsvuWdarGrCS2VnHSj1IgG1fBn7jCbzrh1qfv6zKeRp734UdisPqlcxz25YqwHj4r3VEOOf1Wb/rfkkF++Pk6Q7vdhEjlO+nLIZ8XxW3qQY1iO07+Q47Qnxz0oRkt6kOMLOYJgAj1wuPvXte77v8Lv"), this.addDataEntry("gmdl google media design library button persistent footer button",300,40,"Persistent Footer Buttons","3ZXRTsMgFIafhnsK64y3q25X6oXzAYicDSLtaQBd59NLAbdVXabJ3EVJSM75f/4WvpBAeFV3CytadYcSDOG3hFcW0aeq7iowhjCqJeE3hDEaJmHzI24RXdoKC43/TYClwJswr5CUJDi/NVlwSrR9aeE5fHK20sZUaNBGl6/iCLrzFl/gwIE4ekcJiZsg0tDk/4H10B3dc5TyhheANXi7DUs2WnqVVnCazkUV6LXKsUnWhEv9ehfdEwhFhvAzEP4NyOxpuXy4P4VlePwGG/jC6lPCxj/q9z5ZsNwfQGPF9XTOgy6FUyD/Ao2dhHZV/g+zydiYdUNeF0BYjhRhUdKLMZyOlOHudpyfYWj3b030Bk/RBw=="),this.addDataEntry("gmdl google media design library button persistent footer button fixed", 300,40,"Persistent Footer Buttons (fixed)","7ZXfboMgFMafhnuEtstu69buZn+SdQ9A5rGQoRhgrd3TDwWtrjN1aXcniQnnO5wD/D4TEI2zcq1ZwR9VAhLRe0RjrZT1s6yMQUpEsEgQvUOEYPchshrIRnUWF0xDbscUEF+wY/ITvOIFYw8yCIazoppqeHctl6mQMlZS6TpL03o43VitPqCTgXpUGc4StXcidkHYD7SFcvDMtRQOvAaVgdUHt2QvEsv9Cor9vTAHseWhbBY0Zny8bUuPBNwkQPgdCD0BsnzbbJ6fzmHpXz9XOfxg1Ugqt6/iq6qMSIg70Eh0u1hRpyfMcEgCNA3GlTw0V43GciRnOd7MhzFqkMyKHfTaX8J2NrH9M9uww4sSbmOCy37rpkKlqQF74kV7rlH2zCd7rmRPNMf/4M9i8udK/rT/+iX+uPD4Tvvl3Wf8Gw=="),this.addEntry("gmdl google media design library button floating action button", -function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;fillColor=#FF4081;strokeColor=none;shadow=1;aspect=fixed;");a.vertex=!0;var c=new mxCell("",new mxGeometry(20,20,16,16),"dashed=0;html=1;shape=mxgraph.gmdl.plus;strokeColor=#ffffff;strokeWidth=2;shadow=0;");c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0, -0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var c=new mxCell("",new mxGeometry(18,18,20,20),"dashed=0;html=1;shape=mxgraph.gmdl.edit;strokeColor=none;fillColor=#737373;shadow=0;");c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button", -function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var c=new mxCell("",new mxGeometry(18,18,20,20),"dashed=0;html=1;shape=mxgraph.gmdl.star;strokeColor=none;fillColor=#737373;shadow=0;");c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}), -this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var c=new mxCell("",new mxGeometry(18,19,20,18),"dashed=0;html=1;shape=mxgraph.gmdl.heart;strokeColor=none;fillColor=#737373;shadow=0;");c.vertex=!0;a.insert(c); -return d.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var c=new mxCell("",new mxGeometry(18,19,20,18),"dashed=0;html=1;shape=mxgraph.gmdl.reply;strokeColor=none;fillColor=#737373;shadow=0;"); -c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var c=new mxCell("",new mxGeometry(18,20,24,16),"dashed=0;html=1;shape=mxgraph.gmdl.users;strokeColor=#ffffff;fillColor=#737373;strokeWidth=2;shadow=0;"); -c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var c=new mxCell("",new mxGeometry(18,18,20,20),"dashed=0;html=1;shape=mxgraph.gmdl.gps;strokeColor=#737373;fillColor=#737373;strokeWidth=2;shadow=0;"); -c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var c=new mxCell("",new mxGeometry(18,18,20,20),"dashed=0;html=1;shape=mxgraph.gmdl.share2;strokeColor=none;fillColor=#737373;shadow=0;"); -c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var c=new mxCell("",new mxGeometry(18,18,20,20),"dashed=0;html=1;shape=mxgraph.gmdl.navigate;strokeColor=none;fillColor=#737373;shadow=0;"); -c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var c=new mxCell("",new mxGeometry(18,18,20,20),"dashed=0;html=1;shape=mxgraph.gmdl.chat;strokeColor=#737373;fillColor=#737373;shadow=0;"); -c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var c=new mxCell("",new mxGeometry(22,18,12,20),"dashed=0;html=1;shape=mxgraph.gmdl.voice;strokeColor=#737373;fillColor=#737373;strokeWidth=2;shadow=0;"); -c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var c=new mxCell("",new mxGeometry(20,16,16,24),"dashed=0;html=1;shape=mxgraph.gmdl.google;strokeColor=none;fillColor=#737373;shadow=0;"); -c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var c=new mxCell("",new mxGeometry(16,20,24,16),"dashed=0;html=1;shape=mxgraph.gmdl.video;strokeColor=none;fillColor=#737373;shadow=0;"); -c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var c=new mxCell("",new mxGeometry(16,17,24,22),"dashed=0;html=1;shape=mxgraph.gmdl.gallery;strokeColor=none;fillColor=#737373;shadow=0;"); -c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var c=new mxCell("",new mxGeometry(16,17,24,22),"dashed=0;html=1;shape=mxgraph.gmdl.birthday;strokeColor=none;fillColor=#737373;shadow=0;"); -c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var c=new mxCell("",new mxGeometry(16,20,24,16),"dashed=0;html=1;shape=mxgraph.gmdl.cloud;strokeColor=none;fillColor=#737373;shadow=0;"); -c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var c=new mxCell("",new mxGeometry(20,20,16,16),"dashed=0;html=1;shape=mxgraph.gmdl.x;strokeColor=#737373;strokeWidth=2;shadow=0;"); -c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var c=new mxCell("",new mxGeometry(22,18,12,20),"dashed=0;html=1;shape=mxgraph.gmdl.bookmark;strokeColor=none;fillColor=#737373;shadow=0;"); -c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var c=new mxCell("",new mxGeometry(18,18,20,20),"dashed=0;html=1;shape=mxgraph.gmdl.calendar;strokeColor=none;fillColor=#737373;shadow=0;"); -c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var c=new mxCell("",new mxGeometry(17,20,22,16),"dashed=0;html=1;shape=mxgraph.gmdl.attractions;strokeColor=#ffffff;fillColor=#737373;strokeWidth=1;shadow=0;"); -c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var c=new mxCell("",new mxGeometry(20,18,16,20),"dashed=0;html=1;shape=mxgraph.gmdl.dining;strokeColor=none;fillColor=#737373;shadow=0;"); -c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var c=new mxCell("",new mxGeometry(18,18,20,20),"dashed=0;html=1;shape=mxgraph.gmdl.education;strokeColor=none;fillColor=#737373;shadow=0;"); -c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var c=new mxCell("",new mxGeometry(18,18,20,20),"dashed=0;html=1;shape=mxgraph.gmdl.family;strokeColor=none;fillColor=#737373;shadow=0;"); -c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var c=new mxCell("",new mxGeometry(18,19,20,18),"dashed=0;html=1;shape=mxgraph.gmdl.health;strokeColor=none;fillColor=#737373;shadow=0;"); -c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var c=new mxCell("",new mxGeometry(18,18,20,20),"dashed=0;html=1;shape=mxgraph.gmdl.office;strokeColor=none;fillColor=#737373;shadow=0;"); -c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var c=new mxCell("",new mxGeometry(18,18,20,20),"dashed=0;html=1;shape=mxgraph.gmdl.promotions;strokeColor=none;fillColor=#737373;shadow=0;"); -c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var c=new mxCell("",new mxGeometry(18,18,20,20),"dashed=0;html=1;shape=mxgraph.gmdl.radio;strokeColor=none;fillColor=#737373;shadow=0;"); -c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var c=new mxCell("",new mxGeometry(18,18,20,20),"dashed=0;html=1;shape=mxgraph.gmdl.recipes;strokeColor=none;fillColor=#737373;shadow=0;"); -c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var c=new mxCell("",new mxGeometry(18,18,20,20),"dashed=0;html=1;shape=mxgraph.gmdl.sports;strokeColor=none;fillColor=#737373;shadow=0;"); -c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var c=new mxCell("",new mxGeometry(18,18,20,20),"dashed=0;html=1;shape=mxgraph.gmdl.travel;strokeColor=none;fillColor=#737373;direction=south;shadow=0;"); -c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button mini",function(){var a=new mxCell("",new mxGeometry(0,0,40,40),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var c=new mxCell("",new mxGeometry(12,12,16,16), -"dashed=0;html=1;shape=mxgraph.gmdl.plus;strokeColor=#737373;strokeWidth=2;shadow=0;");c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],40,40,"Floating Action Button (Mini)")}),this.addDataEntry("gmdl google media design library button toolbar",358,64,"Toolbar","3ZXRboMgFIafhssaBLtut7Vbr5bsbtekHoUMxCDr7NsPhdpaa2bSZlmmMYHD+TmH7zcB0VQ1W8Mq/qozkIg+I5oara0fqSYFKRHBIkN0gwjB7kPkZWI17lZxxQyUdo6AeMGeyU/wER+o7UGGQM1Z1Q4N7NyW61xImWqpTbdK8+5x8doa/QHHlVKXTrMuDBOuk4toqAnGQjPZdxcKTW9BK7Dm4FK+RGa5z6DLRy/jIAoeZA+Jj7Haz4teeqLgBgHEdSj0ZygZqzm06didh1vlttrELYUASzVF62lUqExGO6bAsBGjc3oXVFfd2yvew6HJXHjkOrwgwBFZes3hGAjzM7okGcONA3ADklmxh0H9a8RDC29auM76+ouYDMovnoY76DyvwY4c6w8yy8TkzibuRQZ66j//Zfv+v3vLO7tXMCmhLf4n/FvNMBCPDTxCuNlAPDQwjm930E1Pt5ZPP7/UvgE="), +function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;fillColor=#FF4081;strokeColor=none;shadow=1;aspect=fixed;");a.vertex=!0;var d=new mxCell("",new mxGeometry(20,20,16,16),"dashed=0;html=1;shape=mxgraph.gmdl.plus;strokeColor=#ffffff;strokeWidth=2;shadow=0;");d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0, +0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var d=new mxCell("",new mxGeometry(18,18,20,20),"dashed=0;html=1;shape=mxgraph.gmdl.edit;strokeColor=none;fillColor=#737373;shadow=0;");d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button", +function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var d=new mxCell("",new mxGeometry(18,18,20,20),"dashed=0;html=1;shape=mxgraph.gmdl.star;strokeColor=none;fillColor=#737373;shadow=0;");d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}), +this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var d=new mxCell("",new mxGeometry(18,19,20,18),"dashed=0;html=1;shape=mxgraph.gmdl.heart;strokeColor=none;fillColor=#737373;shadow=0;");d.vertex=!0;a.insert(d); +return b.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var d=new mxCell("",new mxGeometry(18,19,20,18),"dashed=0;html=1;shape=mxgraph.gmdl.reply;strokeColor=none;fillColor=#737373;shadow=0;"); +d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var d=new mxCell("",new mxGeometry(18,20,24,16),"dashed=0;html=1;shape=mxgraph.gmdl.users;strokeColor=#ffffff;fillColor=#737373;strokeWidth=2;shadow=0;"); +d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var d=new mxCell("",new mxGeometry(18,18,20,20),"dashed=0;html=1;shape=mxgraph.gmdl.gps;strokeColor=#737373;fillColor=#737373;strokeWidth=2;shadow=0;"); +d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var d=new mxCell("",new mxGeometry(18,18,20,20),"dashed=0;html=1;shape=mxgraph.gmdl.share2;strokeColor=none;fillColor=#737373;shadow=0;"); +d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var d=new mxCell("",new mxGeometry(18,18,20,20),"dashed=0;html=1;shape=mxgraph.gmdl.navigate;strokeColor=none;fillColor=#737373;shadow=0;"); +d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var d=new mxCell("",new mxGeometry(18,18,20,20),"dashed=0;html=1;shape=mxgraph.gmdl.chat;strokeColor=#737373;fillColor=#737373;shadow=0;"); +d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var d=new mxCell("",new mxGeometry(22,18,12,20),"dashed=0;html=1;shape=mxgraph.gmdl.voice;strokeColor=#737373;fillColor=#737373;strokeWidth=2;shadow=0;"); +d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var d=new mxCell("",new mxGeometry(20,16,16,24),"dashed=0;html=1;shape=mxgraph.gmdl.google;strokeColor=none;fillColor=#737373;shadow=0;"); +d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var d=new mxCell("",new mxGeometry(16,20,24,16),"dashed=0;html=1;shape=mxgraph.gmdl.video;strokeColor=none;fillColor=#737373;shadow=0;"); +d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var d=new mxCell("",new mxGeometry(16,17,24,22),"dashed=0;html=1;shape=mxgraph.gmdl.gallery;strokeColor=none;fillColor=#737373;shadow=0;"); +d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var d=new mxCell("",new mxGeometry(16,17,24,22),"dashed=0;html=1;shape=mxgraph.gmdl.birthday;strokeColor=none;fillColor=#737373;shadow=0;"); +d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var d=new mxCell("",new mxGeometry(16,20,24,16),"dashed=0;html=1;shape=mxgraph.gmdl.cloud;strokeColor=none;fillColor=#737373;shadow=0;"); +d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var d=new mxCell("",new mxGeometry(20,20,16,16),"dashed=0;html=1;shape=mxgraph.gmdl.x;strokeColor=#737373;strokeWidth=2;shadow=0;"); +d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var d=new mxCell("",new mxGeometry(22,18,12,20),"dashed=0;html=1;shape=mxgraph.gmdl.bookmark;strokeColor=none;fillColor=#737373;shadow=0;"); +d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var d=new mxCell("",new mxGeometry(18,18,20,20),"dashed=0;html=1;shape=mxgraph.gmdl.calendar;strokeColor=none;fillColor=#737373;shadow=0;"); +d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var d=new mxCell("",new mxGeometry(17,20,22,16),"dashed=0;html=1;shape=mxgraph.gmdl.attractions;strokeColor=#ffffff;fillColor=#737373;strokeWidth=1;shadow=0;"); +d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var d=new mxCell("",new mxGeometry(20,18,16,20),"dashed=0;html=1;shape=mxgraph.gmdl.dining;strokeColor=none;fillColor=#737373;shadow=0;"); +d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var d=new mxCell("",new mxGeometry(18,18,20,20),"dashed=0;html=1;shape=mxgraph.gmdl.education;strokeColor=none;fillColor=#737373;shadow=0;"); +d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var d=new mxCell("",new mxGeometry(18,18,20,20),"dashed=0;html=1;shape=mxgraph.gmdl.family;strokeColor=none;fillColor=#737373;shadow=0;"); +d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var d=new mxCell("",new mxGeometry(18,19,20,18),"dashed=0;html=1;shape=mxgraph.gmdl.health;strokeColor=none;fillColor=#737373;shadow=0;"); +d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var d=new mxCell("",new mxGeometry(18,18,20,20),"dashed=0;html=1;shape=mxgraph.gmdl.office;strokeColor=none;fillColor=#737373;shadow=0;"); +d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var d=new mxCell("",new mxGeometry(18,18,20,20),"dashed=0;html=1;shape=mxgraph.gmdl.promotions;strokeColor=none;fillColor=#737373;shadow=0;"); +d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var d=new mxCell("",new mxGeometry(18,18,20,20),"dashed=0;html=1;shape=mxgraph.gmdl.radio;strokeColor=none;fillColor=#737373;shadow=0;"); +d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var d=new mxCell("",new mxGeometry(18,18,20,20),"dashed=0;html=1;shape=mxgraph.gmdl.recipes;strokeColor=none;fillColor=#737373;shadow=0;"); +d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var d=new mxCell("",new mxGeometry(18,18,20,20),"dashed=0;html=1;shape=mxgraph.gmdl.sports;strokeColor=none;fillColor=#737373;shadow=0;"); +d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button",function(){var a=new mxCell("",new mxGeometry(0,0,56,56),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var d=new mxCell("",new mxGeometry(18,18,20,20),"dashed=0;html=1;shape=mxgraph.gmdl.travel;strokeColor=none;fillColor=#737373;direction=south;shadow=0;"); +d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],56,56,"Floating Action Button")}),this.addEntry("gmdl google media design library button floating action button mini",function(){var a=new mxCell("",new mxGeometry(0,0,40,40),"shape=ellipse;dashed=0;fillColor=#ffffff;strokeColor=none;shadow=1;fontSize=13;fontColor=#000000;align=center;verticalAlign=top;labelPosition=center;verticalLabelPosition=bottom;html=1;aspect=fixed;");a.vertex=!0;var d=new mxCell("",new mxGeometry(12,12,16,16), +"dashed=0;html=1;shape=mxgraph.gmdl.plus;strokeColor=#737373;strokeWidth=2;shadow=0;");d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],40,40,"Floating Action Button (Mini)")}),this.addDataEntry("gmdl google media design library button toolbar",358,64,"Toolbar","3ZXRboMgFIafhssaBLtut7Vbr5bsbtekHoUMxCDr7NsPhdpaa2bSZlmmMYHD+TmH7zcB0VQ1W8Mq/qozkIg+I5oara0fqSYFKRHBIkN0gwjB7kPkZWI17lZxxQyUdo6AeMGeyU/wER+o7UGGQM1Z1Q4N7NyW61xImWqpTbdK8+5x8doa/QHHlVKXTrMuDBOuk4toqAnGQjPZdxcKTW9BK7Dm4FK+RGa5z6DLRy/jIAoeZA+Jj7Haz4teeqLgBgHEdSj0ZygZqzm06didh1vlttrELYUASzVF62lUqExGO6bAsBGjc3oXVFfd2yvew6HJXHjkOrwgwBFZes3hGAjzM7okGcONA3ADklmxh0H9a8RDC29auM76+ouYDMovnoY76DyvwY4c6w8yy8TkzibuRQZ66j//Zfv+v3vLO7tXMCmhLf4n/FvNMBCPDTxCuNlAPDQwjm930E1Pt5ZPP7/UvgE="), this.addDataEntry("gmdl google media design library button floating action button",50,156,"Floating action buttons","3ZZPb4MgGMY/Dcc2iH/mrtO1pyW77UwmChkWg6zVbz8Uamu1m5m2h5KYwCMv8P54IAA3yqutxAV9EwnhwH0FbiSFUKaWVxHhHCDIEuDGACGoP4A2V/467V9YYEl2akoAMgF7zL+JUYxQqppboaS4aKo6kBWlrr2USoovEgkupNZ3YteIKeP8KAHkxk7sxl7TmeJEHLTo6EYmccL00i5i7SKIVKS6mkgr2Sy2ROREyVp3sQGhCTiwRFGjeCZzSAnLqOpruDTtrBvnxEhXLKZxZO7fyBJcUtJ0hzo5qnJu0z+izKus2fF1lid8/SmKegBVEwzaMiTb6Sbiw2aMpnJEv3KEa9+E1BftM7IOGpJ1AqNJwrFie9Kbfgy3XcG7YHph3fSroDf7KuwPINK0JGqwW10akzbQezDPW1Y+vNsR8Bc+AoVsTDAN8lz7e/PtH97O/s+3t39wK/tvNh4MnTvY39Jx4NDxfjDcm6M2x/FPCzu+Grvx07b839rBfGuP4FvK2v3baglr6+bppWS6nz+kfgA="), this.addDataEntry("gmdl google media design library button related actions",200,40,"Related actions","3VbRboMgFP0aHtsgWtu9zm19WrK3PZNxFTIsBlhr/34o1NbqMpO1zTaNyb2He4R77nkAxVlZrzWt+LNiIFH8iOJMK2V9VNYZSIkIFgzFD4gQ7D5Enr5YjdpVXFENGzuFQDxhS+UHeMQDxu5lAAynVRM6oqiMi+6N1eodMiWVdvhGbRowF1IeIETivH2aYk6Z2jkwckmhKRPuaGfccAjQFuovG2mh0MUaVAlW713JTjDLfUXie8UcRMFtH6PG50XHPKrigiDMuEjx9yIxajg05di1w20pQ8MH8cq6aGY8L0om50y9DVQ8lexMymX7dozX0DCZKhwZFy4Q8HzhKfuz/ETYKBkKG6Ue0yCpFVvobT+mdjjBixLuYN32s2Vv99mq/wOV5wbsYFhdG5Pml/x5kwfCCg9Gcy3PLy7seVNpoMwR3DRv6P3k595Pr+f9u+t7P/0v3o/S25l/eWnzj9p+XNfO8ZM0S3+1v1cX97dLj5cjX356d/oE"), this.addDataEntry("gmdl google media design library button floating action button",50,456,"Floating action buttons","5ZZNj4MgEIZ/DcdtEPp1ru32tMne9mzCKGSxGKCt/vtFQVtXu9tkN16UmDAvM8PwMAcQjfPyqJOCvykGEtEDorFWyvpZXsYgJSJYMET3iBDsfkReH6xGzSouEg0n+0wA8QGXRJ7BK14wtpJBYInhULtjRHfc5q7GfeSmhidF7ZKXWV3+IsuZXJwN6HrNavUJsZLKWfuTOjnHXSqkbCVE6BbXwydi6hqyulxMuOK/xYYyQVsoHx61kcI5j6BysLpyLiFg6wOuglnulaVngzmIjNu+lhhvZ12eG0U3CSDHodLZQa2ChSdjvJwr42g9HeTVXCF39CaAvJ4rZEqmg7z5HXIL0wWKwsCTCNPmmwBh1cIYQluth9Ba7S/Qtv/cmeWAqQO4aUa38hGORZ7Ftfmx4/Bi1eu5zr7DF43gazUNMrHiAr3tx5iGCt6VcIV127/0O7412wQqTQ3YwZV0xxi7JWfenofe/f71+AU=")]; -this.addPalette("gmdlButtons","GMDL / Buttons",a||!1,mxUtils.bind(this,function(a){for(var b=0;b<e.length;b++)a.appendChild(e[b](a))}))};Sidebar.prototype.addGMDLCardsPalette=function(a){var d=this,e=[this.addDataEntry("gmdl google media design library card card",342,356,"Card","5VZdb5swFP01PDbiu91jPhtp2VY107pXDy7BmrGRcUqyX7/r4ISkQEsXtD0sURT7+Nr3+pzDFZY3zXb3kuTpJxEDs7y55U2lEKoaZbspMGa5No0tb2a5ro0/y110rDqHVTsnErjqs8GtNjwTtoUKqYBC7ZkBipTkeighwiMnCWVsKpiQh1UvOXwQL5QUP+G4wgUHDaYkFiXOHZyYVCAV7DrLPUCm1nsQGSi5x5CSxiqtIjzf1JgC3aRmmxeEFUiKCtic9ta3x4EhoJ0M791ktF76BUOTmf4iXqZUwTonkT6gRMn7cuL+GSfOhwE48RucfCR8Q9ChiH4jjIEuZU0SImmDLbyUZklfj0aEjRndcFz5IZQSmWZKcLWmv3Q0ko90IjmUb1aQ6Cs4YQ3h1K5nE3PA7CZAUEKBZzwZNno7rYPVvXlsRkFgG/7eItoPKkwCI4o+w0XKa8gPGuSvREQUxAiqUiuQiq0sNOliiyW6tki0GvuYH2ShXAemoDEdAFIDS6ycER4Xx/jPUJoI/HsiDHAFa7NHo1GXpG1e7lbv0XDVouiZBRy/VcwKWR75/gf63obv1NdkfRCUqzplYF/uEElSgGr44VRrL4uEVzXwY5tua2MDkDxIV75t3HC9HD/Ou5x5bijXzM+68WIxDjy/tuFXkRsnvmJpE/Gyj2U0jnX2CTFAhLyAPBZhSutt2PBVLm98v+HWO7ulGfmDmPWUblC33jW0nH9/WH35j9TcXSr3l8V9I/s1WuO0fm2tws/fan8D"), +this.addPalette("gmdlButtons","GMDL / Buttons",a||!1,mxUtils.bind(this,function(a){for(var c=0;c<e.length;c++)a.appendChild(e[c](a))}))};Sidebar.prototype.addGMDLCardsPalette=function(a){var b=this,e=[this.addDataEntry("gmdl google media design library card card",342,356,"Card","5VZdb5swFP01PDbiu91jPhtp2VY107pXDy7BmrGRcUqyX7/r4ISkQEsXtD0sURT7+Nr3+pzDFZY3zXb3kuTpJxEDs7y55U2lEKoaZbspMGa5No0tb2a5ro0/y110rDqHVTsnErjqs8GtNjwTtoUKqYBC7ZkBipTkeighwiMnCWVsKpiQh1UvOXwQL5QUP+G4wgUHDaYkFiXOHZyYVCAV7DrLPUCm1nsQGSi5x5CSxiqtIjzf1JgC3aRmmxeEFUiKCtic9ta3x4EhoJ0M791ktF76BUOTmf4iXqZUwTonkT6gRMn7cuL+GSfOhwE48RucfCR8Q9ChiH4jjIEuZU0SImmDLbyUZklfj0aEjRndcFz5IZQSmWZKcLWmv3Q0ko90IjmUb1aQ6Cs4YQ3h1K5nE3PA7CZAUEKBZzwZNno7rYPVvXlsRkFgG/7eItoPKkwCI4o+w0XKa8gPGuSvREQUxAiqUiuQiq0sNOliiyW6tki0GvuYH2ShXAemoDEdAFIDS6ycER4Xx/jPUJoI/HsiDHAFa7NHo1GXpG1e7lbv0XDVouiZBRy/VcwKWR75/gf63obv1NdkfRCUqzplYF/uEElSgGr44VRrL4uEVzXwY5tua2MDkDxIV75t3HC9HD/Ou5x5bijXzM+68WIxDjy/tuFXkRsnvmJpE/Gyj2U0jnX2CTFAhLyAPBZhSutt2PBVLm98v+HWO7ulGfmDmPWUblC33jW0nH9/WH35j9TcXSr3l8V9I/s1WuO0fm2tws/fan8D"), this.addDataEntry("gmdl google media design library card card collection",358,642,"Card Collection","7Zlbb5swFIB/DY+JbG4hj7n0Mq3dqrZa9zY5wQRUgyNDmmS/fjaYBGLISAJrVY0oUnywsX0+nwsnmjEJNzcMLf176mKiGVeaMWGUJtmvcDPBhGg6CFzNmGq6DvhX069r7sL0LlgihqOkyQA9G/CGyApnkkwQJ1siBS6KfSy6A80Yxz5aCjnDc/78sRcQMqGEsrSr4aWX6JYw+orzOxGN+JixnAqzBG9ql5uK5FpvMA1xwra8yzpwEz/rYVhONszHwcKXw2xTLhzFmWCxG7vfPf8hFVCtDENRBuRrGRngJJ0gEiwi0cxWd6gj07JGtlmnI49GSaHzdXqJzks0D6LFo9yxuRc90yUXQDn2Sa4R5O3gt2hCg7cZjnnrRWoSNiWin0dENzMZwwQlwRsuPf8SSuaZRzbcLISZ9RehS/oJXf6aIabi0afG0LEvOsJGtcLKA7bSOvtW1i6o07RVbcJTtSnnf6ABX9Zu8t5QL03fG5SfQD0vxolCY7eLRoAsBdAzQ2+YpIwYRuFJ5lRtJmVoNhhMnXHlES8YgdDK3wwss6aeMBdBOZgjMpL2HAauKxacd73DnoAz0As2T1JZp3ZlDS47CduyebZK3m7DNJcMe5iraY7jhvh3YaeR3q1qvR8xyFxXJYO0WzHI/DG5PTodUBm0QSXGiM19BUhR+0UqElTWObdH/UJEjT0orPKg7QDr5dlAl8ScNoiFiC2C6DHzosKZ3qcC3s05NXPjz3fpWnpU1cdmkttc2V1nFoZ9IUqJzoEdoBuqwY+HFB1AfmzAaMXVy2MFinhjhtHc5z6ubbJ7wZgmCQ1FPHMaetLxVHy4fO0HCX7igU5MvuZTHwmdh4FyJqc9jIrFUFxIYMWJsZseGee8I6MDs/50NE08IVDYfluFM8wk3gOOfBvJsTSimJ4X1CHTigMNgX1rT9VSoQzT6/xkv0a/e19rqd622ki7Sv8hVCi8iMPqY55jCrsaC7vSRC5iQKE2cTdeRS4SG/kSExS5ms6nARU3VGuUFKvsoR5Y/pqWnusyxEPq783JAq34UqOLdBKq1Ymn29HjVR2kom4rc/2RZShvzuA4Xdmj1opzHzfnaDA7eAtvCSdUUDpAJWm284rolNMbS+8CrFppufr5cPf9P9pu0f4Ttmp95iuKFohRyqU/ECFY7P8JeYgFrSc/Hz3JOYzhenUMaDmj3oUFe9gwLEDn1LjQOH6r5aFmp+CEehBIr9ZLnrU2W6lC02klsvbMLt4wYSulmhmavzYuCRS5nFkXgMcLA6Cf1x6P1QaqijktVVcHZf/aRXEVNqjm5Kz4yGAZ4w9F6PMDalC8OerS3pPO4LPh4c39n6lZ9+J/rX8A"), this.addDataEntry("gmdl google media design library card card collection",358,642,"Card Collection","3Vpdb6M4FP01eUyE+e5jk6adlaazo+ms5nFFwQloDEbGaZL99WuDnQAGhgToV6oq+MbG5hzfc69tZsYqPjwQLw0fcQDRzFjPjBXBmBZX8WEFEZrpWhTMjLuZrmvsf6bft/wK8l+11CMwoX0a6EWDFw/tYGEpDBk9ImEIvCyEvLo2M5ZZ6KXcTqDP7r/cRAitMMIkr2ps8g+vRgn+DeUvCU5Ym6XoChIKD63DzU1irA8Qx5CSI6uyjwIaFjUMyy2ahTDahqKZbYqBe1lh2J7anp+eXQgAmsEwFDAAG8utoV2EiYeibcKLxejqGK104FrLNow2OKGlyvf5h1dOPT9Ktj/EE5tn00+cMgMQbZ/EGDVZjv7jRWCwMoEZK/0SSIK+jOjXMaKbhY1A5NHoBVbuP4Ql88opGx+23M0W2zhAC4rTf589MmiqGs3AVBschRcurKJcgs20VdTApaiJ/r/jiA3r1Pn8Rq90P3eqd8CbTQapgvrpKXoRYSlEPPLnj3dZ5F/kMc2eUHWb9Q1Y282zuDTPOSB/8qHCYeb8XpzgyPfQrXDZOAoCPmBZ9SvccF4cveTWKLdN6jqWM2wSHKseOCrp9hjelxK4gQwmH2Y96bfvtTUfdT/crWbcO3xRYlXxRXsUX5S3ka7oTsCKMwYrGfSIHyqEMPT1O8u2lzVWBFFFZemP+kCKeosnaBLPcQiby4A/JWPuGIzFHtlGyY9CRbmYPuYGVs2tGJaYUhxz1TNV1zqR2+iHrN8A74XSqtpbWL5IEqZOKoCjjyKNLpiA0huF0n8SFMURZSSewqKWMDTrTDOkOIP7kNV9YqGHm/eM5o5gVg9dz4LiepwqB8dS1si5ss/F8wRxr08U3T9zKrP0SuquXUhp30QRaAohX6OMwoTZKOaTAe8I+9p4L5gw5Hl3DNSMZvwq4aR56HkX8+I+hAlkz19cEnGJGb8JPNVms4iXF5fwW800ypzIXL9sa8jszY5J8rpEWpcS2eybljWBbwKgzoW/nn6uvzHbt79/tTHWmiDW11ZVGjWFsbqfaR2sSQ/2GSGQDCTtWGlQDqBiZ6BK4UB5PVSCm4yf8q7jMnrt1sVVEVQsGswLwqruWK7dK6wOiZgy17fUFKk5glr2CMqq7pQ87VJI4nwL651Ht15ogx4JSlcwG4SuusNxjzOaRxwa8nDzHeKUoftewswgRGuq3zfIDAJY3bkYVTr0qkxIhF1VJJZ3/G/YhmkLrrLFjalKv9202u0ShpaFEqhP93GUfZQ9humU3XXA2r59LWU3gRq7J1R2dSfhi4f8I+ZJ8513zD6HuttvqO7qyn+NUMRl/QHvUMAf8GMJewuYbyHs6hL8Awt7C64fV9h1dUH+roT9dgls69VSdst2+gm7YbXz19czdHX9+3E9o5hHwz2jC9jXdYxr17IXHKBp+ef6TaHuydwzRzGFbeAW0dycYku+4fz/Ch959vzfTWcop3cj2ni58iCljRjRQlvIc9quw5SmsDHSSbRT6X2Sg+g+rwRIrljLKM3gu2Lo8xPUY8HdKWlvyY7z2ehhxfMLZkX18vtn/wM="), this.addDataEntry("gmdl google media design library card card collection varied layouts",358,642,"Card collection with varied layouts","7Vtdb5swFP01PKbCGEjyuLRL97BK1TZpj5MTnGCVxMiwNt2vnw12woeTEWIoTUdVKVxsMPfce3x841jwdrO7ZygOH2iAIwt+tuAtozTNP212tziKLMcmgQXvLMex+b/lzI9cBdlVO0YMb9MmHZy8wzOKfuPckhuS9DWShgAlIRbNbQvOkhDFws7wkt9/tiJRdEsjyrKmcJUdolnK6BNWV7Z0y/vM5KMwS/Hu6HAzkxzrPaYbnLJX3uSFBGmYt4DeJO8WYrIOZTfflQNHSW5Y7/se3p5/kA7QOwPWnAH4WD5B+yyfoIist+I0H13VR9CG8+n8mI9WdJsWGs+zQzSO0ZJs19/kG7sH0w8acwOQfb/LMdrqnPwRpwDyc4YTfvZTehI0RcRph4jj5jaGI5SSZ1y6/yUouS1DdrNbizS7WW+C6Cal8a8FYheFKtQ7ptzhVWbhjZefF9zm+nWvgXO9Jp//SAkf1v7ho6lTevxoXL4DXa0SnNa8vn+LRkB4NSDuSLKk3Gtn5Ys+DypJM/fAzBPA6MK4EOjCI/9KojxjRiIlBMJkiaJPMmc3JAjEmFXTr3glgBk7hbyOMlunueONL4uC13IKGkXdN5F+McMrzN20xEnDCNhPLY387un9fiIZla9KyegbSUZ1G5WLkw5QGZtAJcGILcMaIEXvF1GRQOWNVT46F0LUmD2Bjj3NADZSM36XiE1qiD0yPFqhhXgnfqOkBYAbxNZk+y3nVUGvD5mBN/NLhhlNU7pRJFjJtNmd+DuWlvy5AX0pEK+OaIuE7GpodiGfr2h2Px6vIGwUm1d4t07/ueWLioPOhQ2ERth5AjqIqqkJHjASRqfXAi216OQkr4MaSehnV2AEv5HXBYDANoFgyJlcs/Y4ndrF9YMmu6fZUVlXNKb76aV0rwHSFN0Dz+ue7wEwAeyC0ieenk/Xha1mKpd1i8uxtSsrIZVgZsFtW0cp66+QO7UxssUrbeFtqd2GDLg77QPveqlojp4pIym2xAoJAgEyoyjgjVJGYrNqDpYMcpFqVModBH9Fyr2E/B2/c4UmLC98sCXBBvxTaq+i5Kriz530Ie/2YQl9z69H5niqCU2VzUNUfMBIPayd5DvYVWGyNyUIjlTfjkpBLbLDloL1AlsLZIcnBfOI/dBa0EgRbZBa8HJw378YNFOMey9icNCI96MG67W8GU7SghJEhEVka7imp5+B/8vARjJwV4nHq5OFb1gJrC1N+lOF5xYI358qdK60QAg+fIVQjesaVeGQK0b9qEIF5kdRhUNGvBdVqNlO1tsM3F4A9ld/Gzf8us6/EPQuVVbrzWhn7H2ys6O9JjqNQ0MQ3IkREEZuJxOnkULZAi2fdAyq3ftSxKUlQzqn1832jVNdmmhIUrdrydAWwnGZI7vYQdhkM5nCivckcYIHhdD1A9SglHWS0t4SnfG1wcNPD78MyJsXfzjwFw=="), this.addDataEntry("gmdl google media design library card card collection",358,642,"Card collection","5Vptk6I4EP41ftSCAKIfR+dmb6tu9652rbraT1dRoqQGCAVx1Pv110mAAQMzKLA7emztaJp0XvrpTvqJGVnL8PgpwbH/hXkkGFm/jaxlwhhX38LjkgTBCBnUG1mPI4QM+D9CTw1vTfnWiHFCIt5GASmFFxzsiZIoQcpPQSbwcOoTUd0YWYvUx7GQJ2QD7S+2NAiWLGCJrGpt5SOq8YQ9k/xNxCLQWWRdkYSTY+NwpSgb6yfCQsKTE1Q5UI/7qoblzJSaT+jOz9SmdjZwnCrBrtB9nT18yQxQbwxLM4YJY3mwjItsggO6i0RRje7cRobhzqeLJhttWcRLlZ/kIyrHeEOj3bdsxvaraMViEJiZ7vdsjEZepv+KomlBOSEplP7OLGm2RQRdhwiylSwhAeb0hVTa74KSfaXLhsedCLPJLvSCCWfxP2ucdHJVq94wVYVTFoUTR5VLZrOnutXMS62W9f8XozCsovPxHFW6H7vVFth2mxKuWb2YRSsgHA2IJwJWF4PHHkkuCpr6YDiPnPl0NhPo1PlyyduR8X4kqbAZi7gQMNMNDh6ywA2p54kx51X/IFuBjotKwR1I2aAB5LjdXOFUjcNeoZ/2EYNxQrYEzLQhaWsPsJGEv5XdnXq7vxGRua0qETntJSLzZvKAnA2AitsHKgAKBJevIVI2fxMsSiOPStQRqNYLqVm3kPYD23jqDI/brA/cYBgcFqufGkqtEXKGAyiP2SEBmvcBUIiTHY2+qf1ObHtfpACqzSqCBeOchWJzsltn2PCGyEd17rFDtiuqffL33O5m7dY55C6GXNTLNjYzB8DVNN4H9m3Gs3gU/zqlkfM2sVUys1uz2rk9BdO8uktl5LFno5ua0VcJfgHue256sBqvyc/WWYCc5WfIruE8Z1ngXD7XB0EDVuUUwjF0eGyjnxgYAg39BOArOYDgB0ue4WNJ+aktMA2J8zkwYn7nwBjyuVVgzg8f+kFGP454xCdFr+KYwOS9CZRWPoG/nIQxSbmEicpmEryTZOxAwQLI2EceDWlE5S6FjO1eDANsa6z3QovLVg40EluH6ILvk0jW5Kx4nbI998cEp1x0/FnoHWDKMG/RIn5h+wSvA1Fz4+NoJ77gyCvUVzh6FsRQyneYRpMmxzr4lBPhREJ8gC00l32vyjI/E44yPQt+u8Y/OSspFdusoZFCc1BHtHJvKTvibNaLI5rGIGuEfuTysFx9/vMryMyOi0PdQdXZ2mAvncfFQ4l8b8DaJKngXzSTjaMrXqeKQgm9eU2OY/cD3tgZZBnRj2kK8PRs5zLwZkOBNwhydet/R+SOVacYFsheDl3aspBsKbwFClLwThvpzLOelOSm+5CkpMUxzuCkRDnb/4mV6IcwECSQanHKorbL5C9kJk2A3TI10Y9dnvaR6OU1Y10QvPE77mI/g5/8YngGIShIPz0BMiLT+4P6SKE58QHmFzSBbTOuAJiEOY4RY1GZKKRCY002WKqGTDbkUaA10YarKRR8ZH+XFKKFr9weh0D6qc/dcIgmwO6HROQpyN2RiMuhu3EWUXPJRcOvK4u4Jc6Q56jvUYa+8qQhGMPVV2IuunzRLQF6Gwc9zupB6GmNtAfZ4fSDlisia403z3VxUkRQEy5X/vaufKeR6BkTVP0BvPb397prEz1dZHKra+IQ95ja3GbJsQJNGqfkQyF0/wBdfiLycdBx7w0eKL7eT1bVy9eX/wM="), this.addDataEntry("gmdl google media design library card card collection",358,642,"Card collection","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"), -this.addEntry("gmdl google media design library card card",function(){var a=new mxCell("",new mxGeometry(0,0,344,254),"shape=rect;fillColor=#BDBDBD;strokeColor=#BDBDBD;shadow=1;");a.vertex=!0;var c=new mxCell("Greyhound divisively hello couldly wonderfully marginally far upon excluding.",new mxGeometry(0,172,344,82),"shape=rect;strokeColor=none;fillColor=#ffffff;;whiteSpace=wrap;align=left;spacingLeft=16;fontColor=#666666;fontSize=14;");c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a], +this.addEntry("gmdl google media design library card card",function(){var a=new mxCell("",new mxGeometry(0,0,344,254),"shape=rect;fillColor=#BDBDBD;strokeColor=#BDBDBD;shadow=1;");a.vertex=!0;var d=new mxCell("Greyhound divisively hello couldly wonderfully marginally far upon excluding.",new mxGeometry(0,172,344,82),"shape=rect;strokeColor=none;fillColor=#ffffff;;whiteSpace=wrap;align=left;spacingLeft=16;fontColor=#666666;fontSize=14;");d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a], 300,230,"Card")}),this.addDataEntry("gmdl google media design library card card",342,378,"Card","3Zhtb5swEIB/DR9Tgc1bPzYkrSbtTWulfXaDAWsORsYkYb9+h3GaEohCG9JpIy9wZ59tnjt8NhaO1rsHSYrsi4gpt/DSwpEUQrVX611EObeQzWILLyyEbPhZ6P5EqaNL7YJImqsxBqg12BBe0VbTKkpVc6MoM1I0l5KuoMl5wjiPBBdSl+L5ovmAvlRS/KKvSqg+mpKMxGILSgcE0x+Viu5OjlmrzIAfqFhTJWuosmWxytoa2DUDzShLM2OGg7BVkrJVpC+2BwRwYSgME8FvJnL6zo9YJfoAvaQl+01/mtsZjQW9D0vQhoAtKSeKbWin/UtQueNRgSErStqjlYt8ANStPsZiwWexuHafivtWKqaH74JBx8jej8drLequuG9AJElJVQ/qyzBHcfZ6nJ+YAsLHsAGSmg4awl6fGpqGmv8B1PwetcfqOaMkPsUtEbm6YhB+IE98DZ5Bj+eDpHUmqhyI2jHbsBJugNf6DjkXcF6JisdasxV5TGVScS2tiUxZTlohIRL+q0LkcKK7Fa9ilqc308+68N1mTNHHgqyahraQdUFHOEtzEDlNdLtQCv1/1tLC8fuB4esD9E1IsBXhd6YFJYpDA0+NsHBsY/8IE34j40ONHyYMdB+XJADjdeSZYDqXEBw0QZ4MPyBPvstjbt9jL4uUaRNv3TE4R90NL3vUTW8z98h5kzzctxd6cziP36MgitBYyuEbKe/XH5351L1GVp/hazB37PPQY1JmtKlvtwtp7YH1Lm02DDfpOuY3kNHkWH/MPbwMvbH+uB32x66zTq47S8FX3nHCgYnHv3zecZzrhKo/ny+W/2Co+l1HXClUR+wTz4eqpAVk/LFbAG8Zjt8wntgx/u1Y7W8m76KnT9++Thqxx8uTO3Tvof2yw3ThDCxDLon0rsHJuA8GNl7YnyTuZ46HupG/T7rTRn5/kzuhC3GwiHDfhWHkeF70/7sw8Kb3IIiH12dt9ddv1/4A"), this.addDataEntry("gmdl google media design library card card",344,420,"Card","7Znvj5sgGMf/Gl9uQdRqX27edluyX0kv2WvufKxkVAxy13Z//ShibYfm7K69VDLaJvDgg/D9WB4BL0hXm1tBquIrz4B5wQcvSAXnssmtNikw5mFEMy+48TBG6ufhjwO1vq5FFRFQyjEOuHF4IuwRGktjqOWWGUNdkGqXFfCgmnyfU8ZSzrjQtUGuk7LXUvBfcFADOu1qCpLxtTL6qmDuB0LCZrDP2mQ6fAt8BVJs1SVrmsmiuSIIw8atALosjFtoBotI3RiWe99OApUxKvQrEoxXRDnSqgZr8CUvwVZqrtNYCfCzEoSoRwFjE8CIpE9w1HyfKuYOPzhVN8ao7U/UeGyPi20DPM9rkJao+26O0jm0dL6jUin8t9hKJHk+0XAQ2arh86g2ewXVIku1xeN9ASQb0i3npbzgQ/iKegaX0HN28vw35q8+00nZBdT0N/w0evl7y6dWrdFT4gAK44DeIt83Yzmgk/g2nNb2r3AMjRhdgEbsCg0cJfHkaSSu0IhQlEyextwVGnHUjmXCNHzkCo4ucGz3sxdq386mTMh3hVAXTBwjdPri80oJdQHGMUInLIavm1AXdBwjZC+jJ0qoJw6FKJz+e5tvL9knSqgnDrlByJlNgJ445AYhZzYGeuKQG4TszYJ36d3n799O43R4bDB00KC+64JKWFTkYdfQWpBK2Qijy1IVGeS6XVVLy+UXXbpRYdLaCo31x9gXpoN+W1b0Wz/76XjJo7A9cnj2SCM5C/M389kloNt7Ev+hXxH0tp2XQFfF7jSyufzwsPIP"), this.addDataEntry("gmdl google media design library card card",344,162,"Card","5ZfbjpswEIafhstKYAeSXCbOQZV220obqdduGIJVByPjZEOfvgYMIWtQQbtIVUsUYY9n8Mz3Y1s4mJxve0nT+FmEwB28dTCRQqiqdb4R4NxBLgsdvHEQcvXfQbueUa8cdVMqIVFDAlAVcKX8ApWlMmQq58aQxTQtmhKO+pHriHFOBBeyHMVReWl7pqT4Ca0RKK9iJKaheNVGT3fMfCAV3HpzLk0m4T2IMyiZa5dXFqq48sCzWRUWAzvFdVhgsqdZZTg1sXcEumEodBPBo4n0V97HSkLGfsF3U85gLKgbS/4Q8CdIs0Vlk8CpYld4CO4CZyb8JpjOo5ntU/2cOkREUQbKIt3kOQj+zIK/OiomkmIeCVTf8Mj3c4fnG4ItlRKRlAKJRLWct8RbLgNtFyk9MlWUil3j9qIVK8Rq+iYD7z3SmYBGlJZ4Oo9pXnDfYnxgSpfylqsuRz3WjlwbWVBeBd8CWXI6iLSmVCBhR8pXnJ0SbTyzMORwd32CSNW+H7siWhgbtA9rwB25BoayDSy2L5cfMdBwAF0PDaX7d8NFY+F2bzC1Rh+6v8wtffYS8lhcEq2QG7Iry3TGPC9L4lwMkQ3bsmFS/P5L2QJ/AtkW9rFADp+/fhl3Mtd7fs8B8UbDBfF8n1ibvb1kJzm6566tEA7ep9DtYf9vznE0gWDLKQUL1uvNtmOvXKGdj/5BwRYTKKa794+Myr39DfIb"), @@ -5564,11 +5565,11 @@ this.addDataEntry("gmdl google media design library card card",342,146,"Card","7 this.addDataEntry("gmdl google media design library card card",300,176,"Card","7VbbbqMwEP0aHiv5Qmjz2NBtVKl7kZofcMMQrBqMjJsm+/XrW5oQhwZt07eOhITPzPGYcxhEQvN6M1esrX7KAkRCfyQ0V1Jqf1dvchAiIYgXCb1LCEHmSsj9QBa7LGqZgkaPIRBPWDPxCh5ZcC3AQBUo8MlOb0VIFqyrwFJRQmddxVqLK1iaXrOSC5FLIZUrpaULW6aVfIGDDLjwGxTyzYDY0mWjD4qQi4A/8b+2EUl363Aim1+D0nzJxK3gq8ZgWrZ265YtebOaSa1lvTuvxx6htNLgbA8tLOcOTwzCwjbCVc2CPKYHbAYldlDQdw6yBq22puSNF7ryFTQNQlfAV9WOdp15kHUeWL1z946Zm2DaaQNpZODT67P+yEPzJDrWe+qirzemI/SueVEIGC/5KEXJWUVJmsWKhpcdKRBM8zX09j+lcmjxR3LTmaCtr5hM+wxZlh3oyJX3g40yKo2Mipz5eKCeXUQD1cgGPilrn3AgMsanXtsd+L8qh3ZXmNx4TpAdZ18g+ySS/TZfPPz+ZTB81oCjUTgp/NBn72i+UhdH84Q/adx2yLgbFPtGL2Nb37OrFH2Badmwaeen5tu02LRpdnnXzHL/n+LLD39j/gE="), this.addDataEntry("gmdl google media design library card card",300,224,"Card","7VbbbqMwEP0aHiv5QlDz2NCLKnW3lZofcMMQrDUYGTdN9uvXtyYhhgb18rYjIcGZOR5zjgeR0Lze3inWVr9kASKhNwnNlZTa39XbHIRICOJFQq8TQpC5EnI7ksUui1qmoNFTCMQTNky8gkeWXAswUAUKfLLTOxGSBesqsFSU0EVXsdbiClam16LkQuRSSOVKaenClmkl/8BRBlz4BQr5ZkBs6bLRR0XIRcCf+V/biKTvz2FHNr8BpfmKiSvB143BtGzt0i1b8Wa9kFrL+n2/HnuA0kqDswO0tJxrPDMIC8sIV7UI8pgesB2V2EFB3zuQNWi1MyVvvNCVr6BpELoCvq4CjZBLD7LOA+s99+CYuQmmDRtIIwOfX1/0Rx6aN9Gx3nMXfb0xnaB3zYtCwHTJJylKzipK0mxAUX/YkQLBNN9Ab/0hlUOLJ8lNZ4J2vmI27zNkWXagI1f2G5tkVBoZFTnz8UC9uIgGqpENfFHWPuFIZDwbOLZ78LMqh3YXOAvnP8iOsx+QfRbJfpUv7x9/GwyfNeBkFAaFH/vsncxX6uJknvAXjduNGXeJYt/o99jW9+wiRT9gWjZu2vmp+W9abNo8+37XzOPhP8WXH//G/AM="), this.addDataEntry("gmdl google media design library card card",342,272,"Card","zVXbboMwDP2aPLaCBLo+j219mrRfSIchqAGjkLXw9wtJemGlaqXSqZaQkmM7ds7BCmFJ2a4Ur8UnpiAJeycsUYjarco2ASkJDYqUsDdCaWA+Qj8ueEPrDWquoNK3JFCXsOXyBxzigEZ30gON4HW/VPBtjnzNCikTlKisl2XWDN5ohRs48YC13iN4ijsDhmbj64HS0F7s2UK+4RVgCVp1JmRXpFq4CBb5RgUUufBp9MWDvHFAfsg9UmAWnoVxRti9jKytnTFSYQW33p9evT+NgpH770EFkutiC4MCY6T4Gl9YmNI02He0cBndcLs/ALOsAX3G6aHRm2iOrtOc8kZAHx64n8hyXrZ5PyzzvEzlXABX+hLTf2RZWLtTgWHCqR4jcoTLSdSYxWwgB1s+QI54CjnWiJuSq81TKBJGIwMyzXzM4nCgyPIRA7KYQhEFteyeQo5/HJCQxffrYbbHV9iFnz7Svw==")]; -this.addPalette("gmdlCards","GMDL / Cards",a||!1,mxUtils.bind(this,function(a){for(var b=0;b<e.length;b++)a.appendChild(e[b](a))}))};Sidebar.prototype.addGMDLChipsPalette=function(a){var d=this,e=[this.addDataEntry("gmdl google media design library chip chip",170,32,"Chip with text and icon","rZRfT4MwEMA/TR+3sHZMXx3T+aCJiSY+N3BAY2lJ203mp7cthY0wHWaWkPTuen/6uwNEkqrZKlqXzzIDjsg9IomS0rS7qkmAc4QjliGyQRhH9kX44QfrwlujmioQZooDbh32lO+g1bwp2EtldY9UaBCtXZsDD3Zd0tptFaQ2w5qq9JV9OUUcWVEbJT8gkdyGIBshhbWsc8Z5p0KYgF9Wr+ROZOAqWTjXmqZMFE+Qu8rx0jlKYUL0BXHJOCuEFVJ7O7DR1qF6UAaaHwl4Vbj+FmQFRh3skU+WmTKcuGkpRSWwogxuJLChupWL3vXI024C0vN4yQjviGdGdekZeHwBbtUUbiTmRZXx+U77u05Bu/JrKhh8EUzH4BwXBZwatodB+GtgLS/D6vhYR1ZrmEjlLnaPmx9d+6nd5KxxzK/CNHQ4hK9tHrfy6XStxhA73WSIIf+LZLasPvmsgxbSz26HEWSeazCjJvS3mNSX+D+GuBn1yjYm96u3vAdmeGpnlr92Jh6gGfflTFtWf55iKx7/1i3c05/5Nw=="), -this.addEntry("gmdl google media design library chip chip",function(){var a=new mxCell("ANZ Bank",new mxGeometry(0,0,170,32),"shape=rect;arcSize=50;strokeColor=none;fillColor=#eeeeee;rounded=1;spacingLeft=24;fontSize=13;align=center;");a.vertex=!0;var c=new mxCell("A",new mxGeometry(0,0,32,32),"shape=ellipse;strokeColor=none;fillColor=#009587;fontColor=#ffffff;fontSize=14;");c.geometry.relative=!0;c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height, +this.addPalette("gmdlCards","GMDL / Cards",a||!1,mxUtils.bind(this,function(a){for(var c=0;c<e.length;c++)a.appendChild(e[c](a))}))};Sidebar.prototype.addGMDLChipsPalette=function(a){var b=this,e=[this.addDataEntry("gmdl google media design library chip chip",170,32,"Chip with text and icon","rZRfT4MwEMA/TR+3sHZMXx3T+aCJiSY+N3BAY2lJ203mp7cthY0wHWaWkPTuen/6uwNEkqrZKlqXzzIDjsg9IomS0rS7qkmAc4QjliGyQRhH9kX44QfrwlujmioQZooDbh32lO+g1bwp2EtldY9UaBCtXZsDD3Zd0tptFaQ2w5qq9JV9OUUcWVEbJT8gkdyGIBshhbWsc8Z5p0KYgF9Wr+ROZOAqWTjXmqZMFE+Qu8rx0jlKYUL0BXHJOCuEFVJ7O7DR1qF6UAaaHwl4Vbj+FmQFRh3skU+WmTKcuGkpRSWwogxuJLChupWL3vXI024C0vN4yQjviGdGdekZeHwBbtUUbiTmRZXx+U77u05Bu/JrKhh8EUzH4BwXBZwatodB+GtgLS/D6vhYR1ZrmEjlLnaPmx9d+6nd5KxxzK/CNHQ4hK9tHrfy6XStxhA73WSIIf+LZLasPvmsgxbSz26HEWSeazCjJvS3mNSX+D+GuBn1yjYm96u3vAdmeGpnlr92Jh6gGfflTFtWf55iKx7/1i3c05/5Nw=="), +this.addEntry("gmdl google media design library chip chip",function(){var a=new mxCell("ANZ Bank",new mxGeometry(0,0,170,32),"shape=rect;arcSize=50;strokeColor=none;fillColor=#eeeeee;rounded=1;spacingLeft=24;fontSize=13;align=center;");a.vertex=!0;var d=new mxCell("A",new mxGeometry(0,0,32,32),"shape=ellipse;strokeColor=none;fillColor=#009587;fontColor=#ffffff;fontSize=14;");d.geometry.relative=!0;d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height, "Chip with text and icon")}),this.addDataEntry("gmdl google media design library chip list style",358,642,"List Style","5Vldj5s6EP01qE8b2YYk5HE3u+1WaquqrdTHKzcMwY2DETibpL++HgNJCCQhG6iqXqTVwthjhjnnjD/iuNPl5l3Kk+ijCkA67pPjTlOldH633ExBSocRETjuo8MYMX8Oe3uildpWkvAUYt3GgeUOL1yuILfkhkxvZWEIeBYBdieO+5BFPEF7CjMz/kMopJwqqVLb1Q3thd10qhZQtsQqNj4Pxasg1bA5Ga41FbG+A7UEnW5Nl7UIdJT3cId+7haBmEeF28grAudZbpjvfPdfb26KBDQnw60lg5pY7l1yXU5UrL+KX2ihrnnmUsxjbM6jPc7ZlFF/+HAqZzjYQee39sLOCZ+JeP6lyIC3N31TCb65DKSIGeNMITNhfS8ySdsiwl6HCPNyWwqSa/EClfFvQcl7JWWXmznKbDBfBnKgVfLfD57eRFW3OTFVh22hwsEwfz5ImzeqZ41em7Xi/Z+VMGHtXn43YZXX342rI6gwzEDXsr77ilZADGtATNUyURlcJZdm2lc18jShTyO3kcIHamPksmByddwd6lJCqPcdPtinxzHrWR7D8W1Ab6sq6xTYURcKK9Nagbc+R5RYts73sDnfZ3RGm3Q26kRnpQZKmfk9oDHuAo0M4qCl2HYA3QJH6yJYfk1l6mDdFEH3CB1Ke4DHr8HzTd1QAA0AYK8zwJytgobZtSo4sdf1VdCO1WsVvHG6K5D1+wB2Ugc2hReTUkaeeWwEVUP5CFiezgpMhqSl9nbQp2oVB5YxtIYK8xpWma1Q8q+vneXi9xA1txt9jsmRPEc9oEhJF+VzlcHJteIRhCN7IfxZYnnwGIoNjt4OosllITVUzNJ2y7q6rI4HmbqXJlJGPoHM1P+D7qw/ujPi/wm+v3ZH3zXfW232W+z2+2J7fbP/WZqybkyhrfE6AowEYIFLpwvcP6bn9XP65Xn4z27fO5qZabkG65bk9TOAZ+Ew42ck5VKk9XvT/HOVYShrHmskJNFmYUZmEcwWOFaMUSG0JAOEWoQYtlphInhgGzFRScEKHQn8t0pmammQ2XNjYG6/4wAm6Xm/eJF3UKFNKg/yx1VSxvCJJxzdPmAmyArHXcRqfRDEGwxAigWULnO1C3cNb2w2ltw2G15A+mJAUnE2uIaoXhuFF6Z1JDR8NaREz7UpFMaGxBMzLu8L6mpcVZ4g8mkS55bnknp989ojpBti+5M+iF0/U2lXva84TCH26rygbCsOF2HwO0Hhzutjx007OQD5wU2dOXcAcgqXVx6M0PNbcTI4OqxoXP94dai6OpIcV1c/fZxI0hZnJSVWxlMkGfxVCP37ANVPSy7NWH8POuN/DR7zuP+lMe9++EPkbw=="), this.addDataEntry("gmdl google media design library chip list style",358,642,"List Style","5Vpdb6M4FP01aJ4aGUMIeWzSznSl2dnRzkjzWLnBCWwAI3CaZH/92gaSgE3Ch2k1XaSqibGdm3POvb73BsNaRocvKUr8P4mHQ8N6NKxlSgjNX0WHJQ5DA4LAM6wHA0LA/gz4ueGuKe6CBKU4pm0WwHzBKwp3OB/JBzJ6DIsBD2U+5tOBYS0yHyV8PMUrtv9iHYThkoQkFVOttbj4NJqSLS7vxCRmaxbFR+GU4kOjuWKosPULJhGm6ZFN2Qce9fMZ1tTNl/k42PjFMscuDEdZPrA5rT1/e/aiAEANhiWBYTJb7i3QDRMS0x/Bv3zEtNh7FAabmN/Ora1jtoSmO100YcY3u5j8WVx8coJWQbz5u0DAPg/9JAn/5NKQwmZuZ4ozZtavAkmzLSOwHyPQzsdSHCIavOLK/kNYsntKNjpsuJtNNpEXTihJnl9QOkiqlhqY6oJj4YWTaf7+AjbbkVEzu6JWfP53EjCzTh9+N4eVj7+bVXcg63WGqYT66Vu0ImIqEbEkUUIy3Mld1LKv+sjj3Hx0LKWEL7wNgtsOk3vH3aVfhnhNzxO+incPMziye0xnw4g+Vr1MK7GODg8rYa3QK58RJZet8Z6q8b7iZ6bKzxwtflb6QOlm7ghszHSwkeHYa+lsJ4KG0NE6CJbfpnJ0QD1B0KqxY5oj0ONK9PwkAwIgIwCL6woxV6MgU7YUBefi6h4FxV6jRsGBx13BrDsGsXOZ2BS/MkgheEIxcyiJ5RqxKF0VnExBS987UZ+SXewJxZgSK9BWZJmtWHK7x84y+b1kzdLjnzNQc09nBBZNoCN87jLcmCvWKHTExenPEqGDh3Vw4Lu3o2h+25EUEbMcG5JXl9HxAqn7kFkKwTccZuT/IXc4ntwhcN9C730ret16b1Xst6j2x1K7XOx/D1lYZ0NrEeOpj7klGG956nRD+3V5dj/Tb5/Db1u+azqZzTIH0ytyuQfwFBiQrWMuZZlc1n+w2//sMm7KHsWUCxJQlpiBlY9XW75XzK3i1IIMc6qDNTeb7DgQyBM3OVBJoQrqB/zfLlmRiDFz1saEvfzFN2Cg5/PibT6BrAWoyMvf7pLShm8oQXzZV44E2PF9tzHZXxjxiRsQBltcLtmQk7l7/EmgESFxm+kCp6+MJBJnky5Ctdt4eDG09wOKfzBR8pV7FijYGBdesELhfSFdyrPKBiE3izgfeSqlN7aubQD0CNudjyFsuafSLnp3aKacC3Amcya6SxpGiC5wbsssmK6ePtfUqRyp7hj1t9m3HdKBEwAWrmjitjs2G4ruW6jPdJybWtoRffKLdtA4nXM+S9EesvS0h8x6hTOKPuUOxJJFebTihsQoktuxDMD6WaBoGpzjhNQ0qEf+F0IpiaS0ZTrVRJstkabUd1mrDtK3XPZTUfY/+4YN8AFFSYgnLAdog6o9CNX8POXb/sXnUg6GA8ZD2XpDmGHfspxtEyQZHqWX2YRP+2amonqEA/ONUzMT1mJJjQUtsQTKPYAe0f2gqoBOR1zPvn+OYyM51UTAkahRpIJuMwetZfxu1fagROEsYevjnYeKn/HzCN4jgFtte+lAEb+jwPNCPCReX6fPVQSg0eK1ll/d30/orny2/fY6l2tFX/wu8Uw/mNBNG7yh0t+k3OOX9qr7WFlwsxPiDtN6KW57FHFrKTNf0Gp79RmEJl765ijXE0gwqT0voPwJQtUu0fRU0KwalsZ4KEjxe7hE3K1c/j0Z+vgEyQVuI0FNTyi8Gzuzj0YPe3t+2Deffvks8H8=")]; -this.addPalette("gmdlChips","GMDL / Chips",a||!1,mxUtils.bind(this,function(a){for(var b=0;b<e.length;b++)a.appendChild(e[b](a))}))};Sidebar.prototype.addGMDLDialogsPalette=function(a){var d=[this.addDataEntry("gmdl google media design library dialog dialog persistent footer",280,472,"Dialog with persistent footer button","5ZhdU6MwFIZ/DZd1QigfvVSsvem6ndEZr2NJS2ZTwoSo7f76TUJAaMCtCnXWxXGmnHzAed5zThIcL97tFxzl6Q+WYOp4c8eLOWOi/LXbx5hSBwKSON61AyGQ/w686Wl1dSvIEceZOGUALAc8I/qES0tpKMSBGkOCihSr7sDxrooU5crO8VrOf7UhlMaMMq67eht9qW6Cs1+40YL1VU6QsBdpdOWNeTjmAu97HdAm8/YLzHZY8IPs8kISkRonotJJkGKyTc2waWhcQUVp2NZjX3nIHwZJNx7PwrNgbCvJQPBAJjfEgiUdUVyUS2SN6CUl20y27EiSUO1+jtYk2yr/A8WPZeKO/FaDIajuzWwKEMeFbH0wrp6MDH4MWWBsHFMkyDNuzf8ZjFML453kgqhmJ197K1+rh6QBtsQb0YTWCK0IqL82TNd9HXrPcmkJzk7Tey9N84gVI/LJEBzaolQj2GZTYGHRr1/sJEF8S5D5fi27KJ97hGjS9VuRDPtl+rpYHoj+bAz6gZ0OeP3EiTicWk8emRBs183dmK5Ml2u/IzX6Uui8GvnDaOTCMUQKLZEiAC/cvbTNL1fvLFfNxPnavJgOxDwcg3lkMV+honhhPPnoQvvGugHALIiif7UwQXcMAWaWAE4Yf7Qo1RUI/DUx6s3P99HH80fQpxL9rf16tUWnJMP1Vryip9bqjC3RozpqaJbWVn0k7mYAuAB+aEY1pZhG40kxyhbKde1VPJUnGwWjp2YdHZ5sZajSZcUKIghTGcVLFnWmLY/a62qHTApSnV6fq4rq6oqLQF9HC9pUxQl7yhJ9QtTxZDJ6wDTtyFL4ydDYt6c5VAE3StLah2wTKSh5RtlaooOA5UrT4r+PmbroaKWHLPbniyJ/lHpjf4uIL2/j+bJveW4i9zr2nX3LbW8gDFD93RYoexkIfVukKRxEpIkbtGWaVBMPK5P9rSP+eXs7j++/k07RiDpVcw8pk7x9/aZadm9+cv0D"), +this.addPalette("gmdlChips","GMDL / Chips",a||!1,mxUtils.bind(this,function(a){for(var c=0;c<e.length;c++)a.appendChild(e[c](a))}))};Sidebar.prototype.addGMDLDialogsPalette=function(a){var b=[this.addDataEntry("gmdl google media design library dialog dialog persistent footer",280,472,"Dialog with persistent footer button","5ZhdU6MwFIZ/DZd1QigfvVSsvem6ndEZr2NJS2ZTwoSo7f76TUJAaMCtCnXWxXGmnHzAed5zThIcL97tFxzl6Q+WYOp4c8eLOWOi/LXbx5hSBwKSON61AyGQ/w686Wl1dSvIEceZOGUALAc8I/qES0tpKMSBGkOCihSr7sDxrooU5crO8VrOf7UhlMaMMq67eht9qW6Cs1+40YL1VU6QsBdpdOWNeTjmAu97HdAm8/YLzHZY8IPs8kISkRonotJJkGKyTc2waWhcQUVp2NZjX3nIHwZJNx7PwrNgbCvJQPBAJjfEgiUdUVyUS2SN6CUl20y27EiSUO1+jtYk2yr/A8WPZeKO/FaDIajuzWwKEMeFbH0wrp6MDH4MWWBsHFMkyDNuzf8ZjFML453kgqhmJ197K1+rh6QBtsQb0YTWCK0IqL82TNd9HXrPcmkJzk7Tey9N84gVI/LJEBzaolQj2GZTYGHRr1/sJEF8S5D5fi27KJ97hGjS9VuRDPtl+rpYHoj+bAz6gZ0OeP3EiTicWk8emRBs183dmK5Ml2u/IzX6Uui8GvnDaOTCMUQKLZEiAC/cvbTNL1fvLFfNxPnavJgOxDwcg3lkMV+honhhPPnoQvvGugHALIiif7UwQXcMAWaWAE4Yf7Qo1RUI/DUx6s3P99HH80fQpxL9rf16tUWnJMP1Vryip9bqjC3RozpqaJbWVn0k7mYAuAB+aEY1pZhG40kxyhbKde1VPJUnGwWjp2YdHZ5sZajSZcUKIghTGcVLFnWmLY/a62qHTApSnV6fq4rq6oqLQF9HC9pUxQl7yhJ9QtTxZDJ6wDTtyFL4ydDYt6c5VAE3StLah2wTKSh5RtlaooOA5UrT4r+PmbroaKWHLPbniyJ/lHpjf4uIL2/j+bJveW4i9zr2nX3LbW8gDFD93RYoexkIfVukKRxEpIkbtGWaVBMPK5P9rSP+eXs7j++/k07RiDpVcw8pk7x9/aZadm9+cv0D"), this.addDataEntry("gmdl google media design library dialog scrollable dialog persistent footer",280,345,"Scrollable dialog with persistent footer button","3Zjfb6owFMf/Gh5dShHER2XOF6/XZEv23EmF5lZqSjf1/vW3hYKYwuYcdbnDmMBpz2nP50t/4XjR9jDnaJf+YjGmjjdzvIgzJsq77SHClDoQkNjx7h0Igfw78KGj1C1KwQ5xnIlLHGDp8IboKy4tpSEXR6oNMcpTrKoDx5vmKdopO8drGX+6IZRGjDJeVPU2xaWqCc7+4EYJLq4yQMz20ujKB9045gIfOhMoTLr3c8y2WPCjrLInsUh1EmGZJEgxSVLt5g390ojy0pDUvice8kYjacfjGXjmjCWSDATPZPBADFgyEcVFpUTWiE4oSTJZsiVxTIv0d2hNskTlHyh+LBOP5K9yhqB61tEUII5zWfqsU70YGbwOWaBtHFMkyBs+i/8VjEMD46PkgmjBTnY7kd3qIKmBLfBGNKE1Xq0QqN85TNc9uT6xnbQEN6fpfZambmLFiGwZguO5KJUH22xyLAz6dccuEsQ3BJkd1rKKyrlDiCZd/+xNht0yfd+73BP9sQ36gTkc8PqVE3G8dD55YUKwbTt3bZrqKvd+y9DoGkK31cjvRyMX2hBpZIgUAnjnHqRtNll9crpqDpzvHRfDnpiPbDAPDeYrlOd7xuNrF9p31g0AxkEY/q8TE3RtCDA2BHBG0bWTUj0DgQ8HRr35+Tn6eL4FfSrR39uvV1t0SjJcb8UremqtztgCvaijRsHS2Kpb4q4dwB3wR9qrKcUwtCeFlS2U69qXoj41WZfieBbjRsIM/MCGMOaZNposo9miax5rLtBeywLdNS91rj09aPORLCO/ZWmHX1NFNz1wq/FSyVQF7lcm82wd/V4uZ9HTT9IptKhTFbtPmeTj6eNTWb35beof"), this.addDataEntry("gmdl google media design library dialog message dialog",480,480,"Message dialog","1Zhdc6IwFIZ/DZc6gSjqZau2N91OZ9qZvY4QIbuBMBCr7q/fhCQoBC1WmNnFcUZOvsj7nJNzxIHL5PCcoyz+wUJMHbh24DJnjKtfyWGJKXU8QEIHrhzPA+LreE8XWt2yFWQoxynvMsBTAz4R3WFlUYaCH6k2hKiIsewOHPhYxCiT9hwHYv7HLaF0ySjLy65wW16yG8/Zb3zWgstLTRCyvTC64kYvjnOODxc3UJr00z9jlmCeH0WXPQl5rHpM5mqTIMYkinnDiApliKqxJz3EDy1JuzzQkucV74UhwUWBInyTVnKbJED0gZIoFeaEhCEtJclQQNJIauJLTVnK38kfOdKF5l4vIUXLcSFaf+rtuw0KKUvxVQBIL0/xlndF4H0XgbLlmCJOPnFt/nuwTL7ptckhkpE2jpKQjg+VTEZLr004v7y6KgXblaoPOOrIHE/V/ZmO7sSW0dg6y6jXf2NEPFa1+AhOasuPZvUZ2HZbYG5hqHbRiczUIvPBLDZCQH7y+5fSEU++f6b9HMhPS0zooR8sExa/NSiGdGwI7iOiCfhgAAK+ReB9t/klj6ALGC5oa+KhHZI5kMAVaP8BARdMB0Aw6+N40lmjfkK5V4/2ljzQb1wcawO+YuRPe2E08odgNLcYPViQGgn8q2ShJadog+kbKwgnTCbaQKiK87MC4KXRgctTrMrLVndTL2wY5yypB6wHTiH6qNtXI2gHZZXFGhVbUF4tQd3JTWY3uonXkt36SW4m8RifMdP26jOLPuIacY6COCk17L/+uJXIwgbSE5FZo9qYDEHEBX0gyeiu+BdgDFj8uUYpgwMuhsDh2sXH+nXVtfJo/tNpnGHeejZ/OqtJVPUHrv21sg7Ve7JfaxHfElIDpEJTwi8aFPtIjeL29L5BdT9/HfEX"), this.addDataEntry("gmdl google media design library dialog dialog",280,273,"Dialog","7ZZRb9owEMc/TbQnKifpgD4WCmzSJk2j056t+JJYc+zINgns0+8cmxAI1VC77WmWIPbd/e+s+12kROmy2m80rcvPioGI0lWULrVS1u+q/RKEiBLCWZQ+RUlC8Bcl6xe8ceclNdUg7S2CxAsaKnbgLd8MoGGjVCHgncGtUBm1XEncGtANzzBw7WXGHkSQMWpKcElJlC5MSWtn15DhLRY5F2KphNJdaJp3y4VZrX7A0SOVBK9lqsVz7JRK2i3/6XLFD+E8yES65UQ1zbgsnlWNjskULW3JLWzR7LQt9vcU5ZK5ECp4IfEgIHe3bEBbnlHxGMzWJVuE/qAP9i/2uDOFBm9AVWD1AUNazmwZ+jz3HEgJvCiDLJml3kiNNxS99oQMN4HadYLpiOAnsD3BrqKoXY26djQZWNAVlzAge4f755I7dwVUmo60ZK5VqEMuh0rtLkaBUUvxYdWgFN6VQAPO3ZbdQ6pTZewX/uudlJj4bjRA2F97QXw6Jv7QrdcS12Aw9feAJe4tH45Q4luJJ68jHk+DUYPATjZwVuDaGIQaXxSXjurBR8zIuULluXHUL8amv9lNk3Q/mqSnj9vHzdfV6hZY6RhWsprN18klLPJbVuTK21hxxlz1/q3NkAXo4yXC1d7K71xwODsN2F5Dez9/G9lQetKPSKg+OSb+o6zfj1j/B/2PQc//Amc8nr4dfPjw0+IX"), @@ -5577,17 +5578,17 @@ this.addDataEntry("gmdl google media design library dialog dialog scrollable lis this.addDataEntry("gmdl google media design library dialog dialog scrollable list",280,112,"Dialog with scrollable list","7VTLboMwEPwajpEMbl7HFJKoUltVTX/AwgtYNRgZNyT9+q7BISEQKZfcagnJO7vDrmfAHg3zw1azMntTHKRH1x4NtVKm3eWHEKT0AiK4RyMvCAg+XrC5kfWbLCmZhsLcQwhawp7JH2iRSFQx0xxBrlmCL9m0JZU5SldSZay0Ww0x5p8TVZid+LWIv7CxkDJUUummmibNQrwyWn3DRQaaZTMZ46q2/KvXzV18QZo1C3EmRVogJsFO+VyVLBZFalkj2T1oI2ImVw42qkTUHR5zcLgpYAM59bagcjD6iCW14CZzIi5akUkGIs1ONN9py6oWSDvu2Q/cOEvG7aEDe8LVe7h+HViCB7i2gg61I2RBN/5ZrC+rQkQQqDNhYIeopdb4OfYUJSMK5oJz271TOkbFQJ+GcKP596ocjKvcJxx70YUD8xEDpk5/DZIZsYced8wU1/1DCRyqaz3xZ6TXfTK9MlYlSQVmYGt3irucfhr+iC+7cPUZ/Vvdt3r5QKuXD3Aaw/N13pZf3vZ/"), this.addDataEntry("gmdl google media design library dialog simple dialog",280,250,"Simple dialog","7ZZdb9sgFIZ/jS8XYRx77WWbftxs0rRW6jUxJzYqGAtwmuzX92DIp50qm7pIk0YUCd7DOeD3wR9JNlOrR8Pa+rvmIJPsPslmRmsXemo1AykTSgRPsruEUoL/hD6ciKZ9lLTMQOPOSaAhYclkB0F5AofCnJWvXYsdVpa6w1r9NOvWMk6zNWt910CJC90uhJQzLbXpo9mib6hbZ/Qr7EWgbz5SM67fUEx9um7ck/jlC+KGw3gvifQNdSZF1aAmYeFXtS0rRVP5IgUOl2CcKJm8ibOcbje148bJLunZB+++5KjgNXTGiiX8BBs2QaItWBBWJ63tpejrI2gFzqxxypvgro72XsVKNYiqjmk0jyKzQai2uTtS2ImwxsFlA3CdBdMwBcmUVIoJOSm1GmDjzNbAN05EhmpV+QM4qRSXE1/mkEiafxoRJTj3Wzk+L/n99deHYnBeGt34yZLNQf7QVjihfRUTvNxW/3YU365yFkU6TnGTkIeMdRgWcbjHeDqCePoJhKejhAn9z/cv8k0zcjHA+QAw4/yMRy5WEa2Fi0Occ//7FyBeX+4uLQYQ/+CebGVnx16WR6/Rl3g59FzX8o9do4eu0YFpaTE0baP9hmk43H3R9LGDD553"), this.addDataEntry("gmdl google media design library dialog simple dialog",280,250,"Simple dialog","7Zldj6IwFIZ/DZdO+BhBL0dm1k3WnTGZTfa6yhGaLdSU+rW/fltaUCyOJsrFEpqYlHN62uN5H9pYLS9M91OG1slPGgGxvDfLCxmlXPXSfQiEWK6NI8t7tVzXFh/L/XbB6xRee40YZPyWAFcFbBHZgLLME5qBMDGcxbzoygE5PxA9IE/QWnYZLMUSkxUmJKSEssLrrYom7Dln9A+ceKBo0pOgiO6E0ZHhNOOf+K+cUKSqnk+C7KLJoDVaiox+0bVwDIKjpQwkaAFkTnPMMc2EcSkqAGKWCSI4lgYCK5nvFhjHS0RetJnLGSe6DMIH+4ulLEy6jlOgKXB2EEN2OOKJLudIldtOAMeJDhtqDWyUK0NcxR6VER0tTrNQniHUe5M4EcoTkCG2KnShVLqPJWBPcRqRJ4YiTBcbzmWVTsvv+LeW375efaa+flXt2Zk/xVEkc76mTjVO4fRbl9ptAswv2q1iutfFbNCytDEgiOMt1KZv0levMKdYLOzaZT6+ijiox+BsArpa5cANPKo0byLm2SAmRITgnNOemk5Q45S790OxGRrYvOJ+p+kMM4HXAjO+wcwUZYcUoh6bbmBTnSYPxSYwsPmOsphueC6s8rDq6ekGPcGwBXpGBj2zTYZ6ZGrJjv3RyPyRVtn/O5S88qx5KEpjA6WPBTAhSw9TF/YfLwhagMaxDWrmCV3QvKemE9Q8lyfMY6lxDGoMXs5v2E5wCL7C4eKN26U7ujOdj/gU2DHIxaqlus6dGh5qAdfvzO6TVK82KOd5rIbmrWn48h6+zQwlRZ3OFfSaFNTHsfFC7xLM4VNYZehO7Bc1leyv3s1S2+oetEhCp3avmPWAi9IGLSirlx44vl1bvSWpzXvXjx+9zHWZxy3KPG5BZfF4/IdFDT/9A+Yf")]; -this.addPalette("gmdlDialogs","GMDL / Dialogs",a||!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addGMDLDividersPalette=function(a){var d=[this.addDataEntry("gmdl google media design library divider email list full bleed divider",358,642,"Full-bleed dividers","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"), +this.addPalette("gmdlDialogs","GMDL / Dialogs",a||!1,mxUtils.bind(this,function(a){for(var c=0;c<b.length;c++)a.appendChild(b[c](a))}))};Sidebar.prototype.addGMDLDividersPalette=function(a){var b=[this.addDataEntry("gmdl google media design library divider email list full bleed divider",358,642,"Full-bleed dividers","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"), this.addDataEntry("gmdl google media design library divider full bleed divider compose email",358,642,"Full-bleed dividers (Compose email)","7Zldj6IwFIZ/DZca2gLi5eo4c7OTbHYm2ctNlQrMFEpKZ1b312/Lh4pFRS1jdnabmMjhlB7Ow9seioWmyeqB4yx6ZAGhFppZaMoZE+W/ZDUllFrQjgML3VkQ2vJnwfsDZ0Fx1s4wJ6no0gGWHd4xfSOlpTTkYk0rQ4DziCh320KTPMKZsnOykNefLGNKp4wyXriiZdGUm+DsldRnUpbKPpNqKMIFWR0MtzBVsT4QlhDB19LlVxyIqPRArl92i0gcRlU3z6kCx3lpCDd9t3cv/1QJaE8G0pIBZCxfkH1eTlgqnuLfygKQPMY0DlN1uox2P2dTCHx3cihn6mI7zvdFU84ZXsRp+L3KgLM1PbNMjVwHUsWs4uQkl2H9qDIJuhKBlxGBTmnjhGIRv5PG9a+h5Fz4yCarUMlsGCYBHQqW/ZxjftWjitoT0+ywrlQ4dMvjnbQ5np41cG7WqvG/sViGtRl8MIaN4Qej5hXYcpkToWV9cxedQLgaiClLMpaTs+TS/tg3NTIbg5mHWh/hHbVB+7RgSnUMdnVJyVJsHb4WR3cj2LM83NF1oNdNlRkF65lQWJ3WBl59jahZds63257vIzoDbTrzjOis1kAtM78HGiMTNHKSBh3FtgF0DY7Ok2B9N42lA5qZBNEeHQB6wONreCKyXnKWvLAUiwinlmOHCY7pcMESjdzRyVDCIEU7Aql9FlOTo9dSi3xsCeBeuZhV3Pw+sI2NVBE8xmmo/Dspyyta16T7VyoL2C1EDAnLbgoL9QCoDn+H0DO7tX72qot50f5WXYF6fjTLDWjcnt7mL4rPf3gG4fnjPuDp+wGPJM9xqNf0MjXi30YAnV7mPX0XotvKdMb7lF0043lfNzqcouD4RigMnD6KbmBkl2GOF69H34EOcbnw3Qgc35Kwh3vvK61lg6OjMrUrMWqWDX1sSgB9V+LguiN7xlmuV2+3JPT5AXXYXThVGNyMzuiz4ZGH248Npfvut4g/"), this.addDataEntry("gmdl google media design library divider image based content divider",358,642,"Image based content dividers","3Vpdj6IwFP01PGpoC+I8qrMzyWYn2exuso+bKhWaKUIAZ2V//VIoKLY4KB9+YEzk0tLLOfdce1s0tPB2ryEO3DffJkxDXzS0CH0/zn95uwVhTIM6tTX0rEGop18NvtRcBdlVPcAh2cRNOsC8wwdmW5JbckMUJ0wYbBy5hDfXNTSPXBxwe0hW6f3na8rYwmd+mDVF6+zgzeLQfyfFlY2/SfvMxVAkjMmu1t3MJHx9Jb5H4jBJm/ylduzmLZA5zbu5hDqu6DYxhOM4yg1O2Xf/9OkPAYAaDCSBAVJfZkg/DxN/E/+k/7gFoPQcM+ps+OXc22PMLJN/6jDjNzto/JIdvHGAV3Tj/BAIGHvTLz/gIxeOCJ+5nyGJUrd+CyRBU0bgZYxAI7eFhOGYfpDK/duwZFwYst7O4TIbO57NxrEf/FnisFWoIjUw1Q6JUOHYzM8PYDMmMmrgXNTE+N99mrpVDj56gpXhR1b1Dv56HZFYQr18ikZEmBIRM7bcetFZalFHfU1akSP4QGxQl/WiZ0dq51TSFWYzIUaP2jZ3r1QnI+t4L6Jv2dmzBY91NTJ6lo1ptQuApKq+TgmfdKG8AugK74d58JB8EQ9544J32JQCU03BCUkClSQnnUiyYKRQ5LQHgqwuCIoIDleuEvVaalQ8tqGocQ4V05vqP4/eTQ5FVpUxoPdA2VSi7A0nEmvnJk317KGk5mTSA3o1r4K2KU/gZ00l9tQZUK9nqukc4akLIVAPO8oQX2bHif+pNmjtKrOcpJiHyuABYCqSVWFsg14R6HcMHyhcvg6A4O4BhIZ+TQAvrUtvB8CqgKFhDQmfXMneG3zHAh4YwE6KzJsS8MAAysXh1206J3nEiQ2aQAnZ3mY2oJMi7IYyowFk9HqMy05KpJvKjAMDKBcs9wbgcWYcGMBHq01MBAaEDz5ebTIwgI9XmwwM4KW1yRkr3uW6dbd7Nkmlw2fTFUPYWi5Fj4w+ljoVm3UXhPESr95VUVxGax0vF65IfxLY+rjYVDm1Rm0oArujbaOjFc8+do2a7N8VXKU9aRAp88zVGHp8guTSrZYgZUq7JjvWo9GTnu7fBsmbH74s8h8="), this.addDataEntry("gmdl google media design library divider full bleed divider",358,642,"Full-bleed dividers","7Vtdk+IoFP01PraVgJ+Po07Py07V1HRX7eMWGkxYk5ABHNv99XshSWsktjEm3Y52umwFgdzcw4XDETp4Gr18EyQJvnOPhh38tYOngnOVfopepjQMO8hhXgfPOgg58OqgxyPfuuZbJyGCxqpKBZRW+E3CNU1z0gyptmGW4REZUF3c6eCJDEii8wVdQPuTJQvDKQ+5MEXx0ly6mBJ8RfNvYh5DnUl2KyoUfTlqrsnKbP1GeUSV2EKRDfNUkJbA/VFaLaDMD7Jqg15mOJFphv9ad/f08CFzQLkzsOUMF2z5gp2zfEJC5sc6mVp36CPHGY4Hk2M+WvJY7RV+NJcunJAFi/2f2RP3dlnPPIEMN6v7lNno5Gn2n066GNKCSkj9nXnSrYoIqocI6qV5goZEsd+00P4lKPVqdtnoxddh1vUjL+wqnvwzJ8KGB83weDS4qAvjcocVK2yz6Oz20/SeO3sD25vuud7M7v+DMzDr9eYPY1S4/cOw2AJfLiVVFhqvT1EJoL4F0CMFNLTxxKPirGAqD5LDiBoPRqPSDr4XAsg5HV5pLD3oYNEYswUJv2TRHDHP0wa/hndIl2pX8y+Tmg1Ry1HVH17WD7bF4GwU90ETgZkIuqTgpgWVleHvITyp6vd+ud/fCMfcV4VwHDQSjnkzeTSOWkBl2AQqAAoEV2Ahsu/+Y7CkNfKorBwgR4CqPIq6ZaNoM7A9DPrt4zZqAjcwQ8Ho9K6hVBmhfnsA5THbJkDj0wDVYsvwDTVXCqrHNxnC78vfXAc3MtWM3BZ87zqW82dkm1KMJKHw9F4XUs8Bhf+KRgmVykDDTDOC+IaQbBi4ADnr2GMRi5mJpkMMwbUau03AFH2CyV5nbyDCbDbhmKuEOyhNKw6Jwz477++IhE4OdskJV4pHeYgXWIpem9TtE+OTfQL1Sqa9gXNml6jK6V3XwnPKRWxAmlO61OYLLhdsDe6AhC84gNbtds+Bq0jV9r2cL6v28zrli6hjmJ/Gq//ucKFz4SqP4F4bo6drKw86qB2Iw3fFFNmYjs1125gOURuY2gJKDc4SEeGz+Gc6ZeqZ87vJyMHa5WSgpwPhwdw6mem/i5bxRwB6OQBnn3Lmnbp0Hr1ofKwgenySDagwamNh69qKBjALobnFJn2T0Jx+gxlewjvXExaBF5CASH/UJsacnzW0/bnsIu2t10QvbGniOTDrImCHmk/Q+F++vQ8uURecqyYTtsjhavNtrfEmqcQHQ9oOl2hE/7gWLnEMoY8hE5/KRaV+jUZt/DqCbOnicR3riUjwRM/rejqSC3C/vBO2cG1iBLLFiFRIis3NwTKiicOCR/AY5tahtvfXmlGlVaenlAwaEqhMRUlYKHdskfiExXciXdRFt6G5Kf/tvtkQLtEu7olu3KB0UbL340+mG9ekXVTZsPFJN6DxcStjla1d/OBiBTkh11IrzE1rSXwzSwUkXgEiCBp1VoyGcyK1iDEnC61c5EK8YPM7YSbo2nSMki0WM7GOJPhRI6rWYkW3Bkm+Ds1WG0f+WsMT3c0vJXUhu2Z1o2QLB7ojuvHBkLZDN25K3TiG0MfQjZtXN9xmhqrxgbMb6djYVjemARXmyeYhl5JHeiFsmAekYbS4DyZxbRoHtjWOp0Rof0AZaaxIpYrYM7qF/mgaWMV8cz9s4gbFC2yLF/ie2MQNihf4psSLq9p4geueNjnr/EI2ljVLJLaFCqdoRb5yubB/P7SyAsK2iFGjg88JrJJLWN0r3zuGS80d7PhtWux0UXEbeeku9rLDBw2dBRoW7t7KUSBc4UxIjhXUZImkV4XQ7QNU4XjIm0PaR6IzvDV4ILk7+psW3z8Z/D8="), this.addDataEntry("gmdl google media design library divider inset divider",358,642,"Inset dividers","7Zvvb9o4GMf/Gl5SOXZCwktKt52mbapuk+7lyQVDohobOV4P7q8/5xck2HQG7FtaSFUJO3YSnk++j51vzABNV5tPAq/Tr3xO6AB9GKCp4FxWn1abKaF0AEE2H6CHAYRA/Q/gxyN7g3IvWGNBmLTpAKsOL5j+JFVNVZHLLa0r5jhPSdEcDNB9nuJ1US/ITB3/fpFROuWUi7IpWpRb0UwK/kyaPYwz1ee+PhURkmyOXm5ZVV/rJ8JXRIqtavJPNpdp1QJFSdUtJdkyrbuNwvrCcV5VLHd9999efagDYA4G0oIRqGuZIHBSTDDNlqwoVld3GCP4gMbJ6FiMFpzJVuOP5VY0XuNZxpZ/1t843Ff94GtVEdR9v9fXCJpy9m9RDJAqC5Kr0l91JANbIvA8IjCs6gShWGYvpHP8SyiFZ96yq82ykNndcjWnd5Kv/37C4lQ8VgFD5oB1O2xrdd5FVbkVznCkRzM4NZr1+R95pi5rd/LhGHZOP4y7R+CLRU6kRmP3LawARRqgSbH/BAmZpdEFhcZhPI6Nt3Xrxofg16KqFDRELe1SspD7Bl/K0kMMPUsmii+DvO0qzynUkQvVrQVZEBWmGcktKe9GFKu4R+a4v6K1JlYdrY2caK05TCO1xAOV2EkuFBlmy6J9L5AEwKAMN0RA2EWCPCBJXCDJCRazVAPSjn6bSg2qatxkQutsdQSR9XgVmMYrNxoajiL/Ihq7ISalGir+17xmTSjyBwiG/gE1GaFF6DNmxWHBIxHPGcvtgL02u3h1FhGE+iwClJuqL9hlM0wn9dxhlc3nVTLVZw8H8wsr+OdOJi7MmTXQJPABNHAiOVlO4G3k9qCmi6MP1s+g4ORBq3l27DwBBW5GrYN5ROCFyLlGQIfIz5zYEklA8XcpEesMiAxjFHKUAiNwAMhLDtTNia+4jMFnnrKcs16mwN/8POUmBQbNjeIWqBMfw5/iLnUx3r7idB/jkUgVbgimWND8pjmfmht7GeWcuBj+NHfpPP/ta043NH4I8sIL0f2BWU5ukvMmuZ3v7JaoEz/En+Tiq5echf3RMKFZy2dqxZyUm+ZABc5fOm0aEBA0j0Hth7DEACNxIg4EfIgD6sbGBItiXgHuCWNEylu685XuUHPjuyWqOxsTjaEKijx4TWXgsPMsjnI4fOHbcJmpEJf50g7DGW6H4a3Jye97Ld0O6INSv92OY0SuZ1AyLMWYPD2RIgjTVGS5JLe5oNfkGPt4h+xm6YY/2V295WFcupEVouOMcdHP1yzvQnAh9DIb6bffcfF7zbcvON3vmFAVMQi+EXozGH0KLvEywvXb7YBX73YYFntMmEw5K8LwXZIX0tPFBO9CdBHyMcoh3UXplejG1y46dO5yjxOWA+8U5NZw3HY6/EomoRuzcRh6oeDE9HjCs2eTBWxcl9jmcubiRHTkByF7J7i7QtC4QNG0yNfRgvq4qx8f6+mRboZo4BpWqme2zkmvCL1/QBa+xqsp7XfSid8bHlXc/36uat7+ed1/")]; -this.addPalette("gmdlDividers","GMDL / Dividers",a||!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addGMDLGridListsPalette=function(a){var d=[this.addDataEntry("gmdl google media design library grid list grid titles",358,642,"Grid titles","7VtRb5swEP41PKbCNgTymKRrN2mVpm3SHieWOISVxAjcNdmvn41tAhhSmpi2oaOqFB82XO67u+98EAvNN7vbNEjWd2SJYwt9sNA8JYSKT5vdHMexBe1oaaFrC0Kb/VvwpuUsyM/aSZDiLe2yAIoFf4L4AQuJEGR0H0vBMsjWmE+3LTTL1kHC5SlesOvPVlEcz0lM0nwqWuUHn0ZTco/VmS3ZsjUzeSucUrxrVTcXSV1vMdlgmu7ZlMdoSddiBnJ9sWyNo3Atl40dqXiQCUFYrD18e/ZBGqDZGEgzBmC6TJH9LJsEcRRu+VBoV7eRDX3/GrTZaEW2tDT5Jj/45CRYRNvwq/zGzkH0nSRMAOTab1JHW42jv3wIEBunOGOjH9KSoCsi8DREoCNkKY4DGv3Bleufg5JzostudiEPs6tws4yvKEl+/grSBngmHpp+OMuFUbPBqgv2MjqvXDEumdMZ69YEz7WmvP8XEjG1ipuPJrBy+5FXvQJZrTJMNTSKb9EJIPe8nNIcFzWU0HRy47y4TwM4Pg+GfTU2jJp9bCIuYrzSMeAG9x13bBdnlMFhV4O7TxocNHn9meaW+iiPVNa3e7C+p1mfkszitxqHtLBSCQtmLVpN0lz/OgG43ty5cevZfsTTObd4tAjiqeSbTbRcxp2TVAsg+8qCEjxuAzzPTvHN0TBy+wDE1wCZ4WCxPhGHOhG/Gg5QGcskELsqxr3iMjGRpjIcpAzLY4mqzBiSRMzmrl0bRD1mspGH+k9lwDYB0QZvH7qyucKsHziaiNwQHMipwAH6KKcAMAJHkIbR9qsosXildZcLLLGXOAhmhFKy4bkNVuRq55GLa/jNrvlfG9hMnSV5lLrp9ZqQfFTgGCzhgDdpQF4JzyQt0EtyBPp+/NPd7U8HIPvqdxKaw/1zXufVsFcYw2aPgG0IP64jir8xYuR3f2T31vmz6Ay0sqXaNssKtLx5LdU/XA37MCx0K8kENdcpgKeZ/GBywidSDiR0T99DgJZWRSt1N/qjcqM3WUMBvSMSaT6o3I4tjZKsIb0v8uNYx0N1LYDuOJP8qDlEZ+oGLVmi8168Ty6vkcfI7wPBDt0SHcAupA2m17B7DfV0tnYa6lrnzOBQ+vhVlka9xMqpbY9Kuk7ih6yP/bfwg9ZAKFz/WCg4DaFgqC3lVSOhlzLKSH+kvYyqkqYgoeYS6o1XUHWXuPCKSm/MyIoK9FJRHamddE9wWoqnLo8GhlhRjYdfUeltqQurqLz3XlEZaWB15ZFSVnnDlFHADT3fHwJrQL0FJlkDmmWNY4D/Z4ZD1pkMnhmg3ua7LGYQMfOOmUERwcsww4XuJoZHFXqPTFIF+r/BeGM08kT9Mgga0Rt+F0Yj574+dfE0YqSRONANhut6446sYZsJ055Y40W7kSZrhQqmZl+/a29GDwV1vRnZDfXnvBqpKNMsNq0U2fiipOOboUinlwSr9+BOiL1fweK+6UlNUTa14XLiExx4vPHGCurBP8Lp8u7YUw8zXxOhwQOEOrw5djSlvSY63tDgYcPDD4nE9PLvjP4B"), +this.addPalette("gmdlDividers","GMDL / Dividers",a||!1,mxUtils.bind(this,function(a){for(var c=0;c<b.length;c++)a.appendChild(b[c](a))}))};Sidebar.prototype.addGMDLGridListsPalette=function(a){var b=[this.addDataEntry("gmdl google media design library grid list grid titles",358,642,"Grid titles","7VtRb5swEP41PKbCNgTymKRrN2mVpm3SHieWOISVxAjcNdmvn41tAhhSmpi2oaOqFB82XO67u+98EAvNN7vbNEjWd2SJYwt9sNA8JYSKT5vdHMexBe1oaaFrC0Kb/VvwpuUsyM/aSZDiLe2yAIoFf4L4AQuJEGR0H0vBMsjWmE+3LTTL1kHC5SlesOvPVlEcz0lM0nwqWuUHn0ZTco/VmS3ZsjUzeSucUrxrVTcXSV1vMdlgmu7ZlMdoSddiBnJ9sWyNo3Atl40dqXiQCUFYrD18e/ZBGqDZGEgzBmC6TJH9LJsEcRRu+VBoV7eRDX3/GrTZaEW2tDT5Jj/45CRYRNvwq/zGzkH0nSRMAOTab1JHW42jv3wIEBunOGOjH9KSoCsi8DREoCNkKY4DGv3Bleufg5JzostudiEPs6tws4yvKEl+/grSBngmHpp+OMuFUbPBqgv2MjqvXDEumdMZ69YEz7WmvP8XEjG1ipuPJrBy+5FXvQJZrTJMNTSKb9EJIPe8nNIcFzWU0HRy47y4TwM4Pg+GfTU2jJp9bCIuYrzSMeAG9x13bBdnlMFhV4O7TxocNHn9meaW+iiPVNa3e7C+p1mfkszitxqHtLBSCQtmLVpN0lz/OgG43ty5cevZfsTTObd4tAjiqeSbTbRcxp2TVAsg+8qCEjxuAzzPTvHN0TBy+wDE1wCZ4WCxPhGHOhG/Gg5QGcskELsqxr3iMjGRpjIcpAzLY4mqzBiSRMzmrl0bRD1mspGH+k9lwDYB0QZvH7qyucKsHziaiNwQHMipwAH6KKcAMAJHkIbR9qsosXildZcLLLGXOAhmhFKy4bkNVuRq55GLa/jNrvlfG9hMnSV5lLrp9ZqQfFTgGCzhgDdpQF4JzyQt0EtyBPp+/NPd7U8HIPvqdxKaw/1zXufVsFcYw2aPgG0IP64jir8xYuR3f2T31vmz6Ay0sqXaNssKtLx5LdU/XA37MCx0K8kENdcpgKeZ/GBywidSDiR0T99DgJZWRSt1N/qjcqM3WUMBvSMSaT6o3I4tjZKsIb0v8uNYx0N1LYDuOJP8qDlEZ+oGLVmi8168Ty6vkcfI7wPBDt0SHcAupA2m17B7DfV0tnYa6lrnzOBQ+vhVlka9xMqpbY9Kuk7ih6yP/bfwg9ZAKFz/WCg4DaFgqC3lVSOhlzLKSH+kvYyqkqYgoeYS6o1XUHWXuPCKSm/MyIoK9FJRHamddE9wWoqnLo8GhlhRjYdfUeltqQurqLz3XlEZaWB15ZFSVnnDlFHADT3fHwJrQL0FJlkDmmWNY4D/Z4ZD1pkMnhmg3ua7LGYQMfOOmUERwcsww4XuJoZHFXqPTFIF+r/BeGM08kT9Mgga0Rt+F0Yj574+dfE0YqSRONANhut6446sYZsJ055Y40W7kSZrhQqmZl+/a29GDwV1vRnZDfXnvBqpKNMsNq0U2fiipOOboUinlwSr9+BOiL1fweK+6UlNUTa14XLiExx4vPHGCurBP8Lp8u7YUw8zXxOhwQOEOrw5djSlvSY63tDgYcPDD4nE9PLvjP4B"), this.addDataEntry("gmdl google media design library grid list grid style",358,642,"Grid Style","7VvRb+IgHP5rTHYPW1oorT6qO/dyu1xul9zjBRVts1oayjy9v/7Atmql3Wgtuk27LBGEFr6Pj6/8wA4cLlYPDMf+I52SsAO/duCQUcrTT4vVkIRhB1jBtAPvOwBY4r8DRhXf2ptvrRgzEnGdCiCtsMThC0lz0oyEr8MsY4oTn8jiVgcOEh/HMp+Ribj/YBaE4ZCGlG2KwtnmksU4o88k/yaikagzyB5FGCeryuZusrK2PhC6IJytRZG/wZT7aQmIumk1nwRzP6vmOlnDcZJmzLd1d70XHzIAysGAChi2aEsfWrUwwWEwj2Qybd0hRuAe9rpuFUYzGvG9wqPNJQvHeBJE859Zj51d1i8aiww7q/uUtdHK08E/mbShSDOSiNTvDElblxHQjBHgpHmMhJgHS1K4/zEsOQ2H7GI1lzK7my+m4R2n8Z8xZnXp0QIMlgNWrLDO1HmH0vQenI6romnXRTN7/g8aiGZtH37bA4XH33rFO9DZLCFcYWPbCy2CkELQCC8pCzhJagmpXCBFumDP8Xpe6eDeG/4Sj7ekleroVgpF8htMcNjPlLwIplPZ4K20QzLju5rfNql7DxhWFPKOGwProjBb5dxtQ5QxIzMiYJqIgaJH/9ZwtHBH5bi/IsUcq4IU3VakmN8mV2LXACteG6wkBLOJrxCyj/4+KxlRaeFcj9rSqKBIe+60y+bOdgi7dZF5xrrtMMa5mJdOKiJthpA5gnK1miSopxDUx4xGImtAokgAX8viVNfSIczaXCKfSgPisrvg8IXPUR1vW+29+htqxd+6tgHabettYebc4gmXkBvQXq++gQEV53w9c6TcwMF0aCMTuNuq3sZjIns99FmQcBIlJLpq7syas6FrgnyN6IR50dkVIYnPrDo1EiLGrdQcjSLK6i3jrnozoLeeEZPTCK2cQG8V8ZPPrDc1ZNIPBUTA+k7ChF797dx628bk2qVdI2pyAr01CIt8dL2pgZF+xH0ayX4/cbIUb5VXzZ1Zc9Ay4nEaEZYTaM67PM2VRE5O/E65i1deBba5twlTA4YiJYN7+actsMsLlQA1VFJLU7UUdNq9ZLedAe/YJhwlh/nIDWkSktjf3zt5Y+NzhOwB0sa9QQzDUnmovaevKQdgghY1hnHjIuuLyEIIiWdCR6FJQMhPYw9N9VOfx/LDGUfOazlzh1XaYU4NQzzScSCQ1eALqnwhyxk5o9f4Utloy+DPxZfuYZqSwxoNJi8fR3P6omsi9Zy8CkL9LWGv/fGf7zg61sFMZpnQQ9PDFZdj7J6RN1k1SnADAcwdxPW6PWMOYm5Gci/BQdRF/m/Knj+gf9Rny0ZlL27G/ENd1b83/6iA8HL8A2qsyI/1j+2M1q5/rAsV3pqTnG47c5Jj4uAQbLo8LyhljCfPCiVVR/H2eWl4Hi8dO5Xqse4O1nKlAio7RNnSeWavqB8Tx5mhxvo+50rUDOJEXcOfk6HPT5C60q8kqHRKOyc73mejRyR3P19Ki+//uuk/"), this.addDataEntry("gmdl google media design library grid list grid style",358,642,"Grid Style","7Vtdb6M4FP01kWYfWoHNR3hs0sm87Eij3ZXmceQQJ6AajIynm+yvXxM+CjE0JrHbNClVpdixwZxzz73cizOB82T7jaEs+k5XmEzg1wmcM0p5+SnZzjEhE2DFqwl8nABgif8JWAx8a++/tTLEcMpVJoBywjMiv3HZU3bkfEeqjhXKI1wMtyZwlkcoK/oZDsX5Z+uYkDkllO2HwvX+KIZxRp9w/U1KUzFnVl0KM463g8vdd1Vr/YZpgjnbiSH/xiselSOgOy2nRTjeRNU0z6kWjvKyY9PMfbl78aECoB8MKIFhi7U8QGsUJojEm7Rolqs7xAg8wmDqDWG0pilvDV7sj2JwhsI43fxV3bHz0vUPzUSHXc39u1qjVbfj/4qmDUWb4Vy0flZI2qqMgNMYAU7ZxzBBPH7GnfOfw5Jzoskm200hs/tNsiL3nGa/loiNpUcJMNgPWHfCrlLnvVu2W3A6noymPRbN6vo/aCyW1Vz8LgCdy9/53TPQ9TrHXGKjuQslglyJoAV6pizmOB8lpH6BdOmCgeMHfq9xt8y/wOOYtEod3RVCKfiNQ0QeKiUn8WpVLLiRNsFr/jLzz33r0QeGFeX659nAritMrZx7OkSZMbzGAqZQGIoa/U3AUcLd7cf9FSnWWHWk6GmRYn2aWolTA6z4OljJMWJhJBHSRr/NSkVUObjWo7I0BihS9p12n+/UQ9id55pnbKqHMc6FX3pTESkz5JojqFarSYICiaAHxGgqumY4TQXwo0KcHLVUCLP2h+inRQDixe2Cwwc+R454zbRLjW+ulvg2tQ3QblvHhVlzi0JeQG5Ae8H4AAZknOt85ky5gQN3aLsmcLdlvS2XuLjrecTinOM0x+kozZ2jsFefMm9Yczb0TJCvUJ0wLzp7oCRxzaqTKyHCbgvN0TSlTH8a1zDyKbABgQVGoppCLeUUgc0eiz9lgQ0UTK5ZYHKN5C01ZdLgPT0G31TB9OKupU7BMcFZ1M5zjxSpFq49c5XlcEKZwpJ5GF1/VZQDMEGLXKj44rnWH6LLdV1xTehINAkIuY7wIKtDU8A4gcf+QvqZfq1m7nCKHubkgsV3uowFsgp8QZkv13IWzuK2+FJ98WHLtYcTnFeE0g39rRpERkbys8t3vn77r6tDjnXgySwDegAKdYLbDuzQNuGHgFwn+AIBrCOI50+DjxdBSmO68ghSC6TF3E/Knj5e/Hg3tlTjR8/+hguLH0MQ3lD8GJGRk7gnA2l7rO47OFulnHlOANnWvACr9vHtHGXa82pOk2eCvolksWcjw2cs7+IeGMFdS5KeoJgov7RuJ+knvrm+rN0Fb/EqtGd7gQilYVUidiy8RUlG8H1IE5VofmHPXreQvfdsN/iBWU5TRFQYu7Dnr0vP33v2DnzGk46VO64JK4dyTi5M7te1OKrxmwI+nqOCcnr/QZPE92JLeQ+8nI5rd1KNWvQ6qV1nwjEEnakee3dMPFpBLan6EoVPYx6BBxJHZeOGRxPD7suk3gy+75lY0+Z3v3N1I3vf4Yj8XcyMs7w3hX83hq6fIIWk/lWX9p7s+NdGj2i+/NatHN7+Kdz/"), this.addDataEntry("gmdl google media design library grid list two line grid list",358,642,"Two-line grid list","7VvRcto4FP0aP8LYMtjmEUjTzm7SySSd6ey+7KhYYE1ki8oiQL++kiUDjgxriA2YqTtt0LVkyffcc3S5VSx3HK8+MziPHmmIiOV+stwxo5SrT/FqjAixgI1Dy72zALDFXwvc77nrZHftOWQo4VUGADXgDZIFUhZlSPmaaEMI0wjJ7rbljtIIzqWdoYl4/miKCRlTQlnW1bWzS3bjjL6i/E5CEzFmpKdCjKPV3uVmJr3Wz4jGiLO16LLEIY9UD7cfqGERwrNID/N6euEwVYbZZuz27cUH7YByZ7iGMxyxlqFrH+UTSPAskU21uuN8NKUJ3+k8zS7ZeQ4nOJk96zfubU3f6FwYHD32Ra/Rztv4l2w6rmgzlIrWd+1Jpyoi4DREQE/ZGCKQ4zdUeP5HUOqdGLLxaiZp1p3FIelyOv/vB2QfClW33DHFAWvNwm5ftXfc1vNMrznHek3P/0SxWNZm8s4AFKbv+MUn0Ok0Rdzw+uYtKgHRN4AYMbpM0VFsKWdBkTIgu0ojeCfGgW3y5z673pOlI9kgwcUTSIaarjEOQ7ngDX8JmvLtyIesdeeDhmnT9z8WAOsi+2oF3KuDeblbC7gXpC67k4Nc2d/9cn8f4J9Txj+vFv7l3MjpFzSAhl8HGjFkM5w8Ky5KSj5mBu34rUERp2jTlOgAk7GjO/lnH73FSkK61MsyOa0sX3JUatyoHH9QAnng1kK5wGkA5MAAWSIB7Aec8rQ+vBW8vYItzzUkvMsIc/QilFA+cCkedyBVeS+sXD77varu5ib9rcrKprdtjijnNM7fpyDh3oHMisqeXMIC+vti8MRkyD8txnynoWRoYMTHMOERTeSi7hlCMUwsIJ5i/4sSI1zEi/IjwS3uhhlWezfSXYydZl3umy7XX3w+ymrXa4DVjn1p7c7Jfe3ivTqwfbdOzB3HZCvhiCVqpY2quWbsucU8uGYxVzS8IjV3zHLMF9EjooskTJWO3yOCV+LndwminC4Jxb/dbrcBdQ/OoO6VMGibvJuFpAblvSVp+OaLGAgqa/mxPDunlptlqDuYTGpX8fJt+zpz8uBCMr6nEPd/8eUNmpJxszL2iBmMhOlx8hVhoqT8CS7kqK94Rduam1dyfdvUu5YyV1X1bmsifmtyblbTPhEBEqMJnjSr6ZKv15uaX0rTvWvT9JJKnAyO1UqJ+VC8PZQDntEbfpOf2pmOV/F72wTdLJI1KOhtS8f7nn8D+g3MitqTLJT/ScbPLdyDKxNuYBbdXha6KD6Csnjyl3j5BuT6LPl3FW+3TK5zdf6Tf1fKv29Ev82S2bMlo9SD8TxznT1qVs2vukB+ITHfF4yXE3Oz6jZilL6SdSJz8KzvC4dMF8v/FqPlettbHq+EQNsE3iyPPciVp1b+3xljGCMGFf9JTiDRnGxA8X4u5BFZ4UR3kF27ph2Yc6N8QGepHTQUXRLKYvktbTvKm8mf/ywSmM8qXkRNrG6doD9zAteImSHlZde7MHHztp7BMYWkJMWIeEwKW05dBzw3O47jgcKe4xj7jRAjMwT79YRgZ9DE4amTz7IdcWxxo9D14rIfhbLzhL2gHhR6jaBQyxm2H3DyakCyq9uHT2AffdIQ7KmRbAgDjBzNzNB6JQlaTWd//cLsjRz9LTmXZgCXYyVG4nmKrgqh2weoQs3roKRdEh3/1uARze2v9Kjuu7/x8xs="), this.addDataEntry("gmdl google media design library grid list two line grid list",358,642,"Two-line grid list","7Zttc6I6FMc/jS/bIQmCvlS0u/fOdm+n7cy+3EGNklkgTshtdT/9hoegkGARsGuZ4nRajgkP55f/OeGQDpAT7L4wd+vd0xX2B2g+QA6jlKd/BTsH+/4AGmQ1QLMBhIb4GcC7im9B8q2xdRkOeZ0OMO3w4vr/49SSGiK+9zPDyo08HDc3Bmgaee42tjO8FMefronvO9SnLGmK1skWN+OM/sLym5CGos80OxVmHO8qLzcxZdf6BdMAc7YXTV7JintpCzQcpd08TDZe1s0yswt3o9Swyfse7l78kTlA7wykOAOIa5kg4yyfuD7ZhPFuenVlH4Gxbc1glY/WNORah27dJQk3j9kdmwfTM90KA8j6PmXXaMh98jveBUjsMxyJvR+ZJ0FdIrAZEWimNoZ9l5MXXDh+G0pmwyEb7DaxzG43wcq/5XT7c+GyVkMV6R1T7LDPVHg7TPeP3GZaqtfAuV7Lzv9Aibis/OQ3Y1g4/Y1dPAJdryPMFa/nd1ELxLBd7NCP/6JYIBhbd+8/dgEw2mHYFzXQqdstxe1P2GVLT9geMN0K18cx33KDbeIl48F3lzhqoJHAZRsSPqa0Ymj3iUE0s2riy8NXKaxNk48mRJXC3NBojn7YMJGcS75u2LK7CFtRSrrsfeFSK9lKCDIqaWPpQVjXg5begyciGtBpadRJRIOlgDa+gLJGXSB6oWSJaxM6tneLqXYaAkCTvFvGP5mGbKNITcbVTrGNu1EW5yLyRDUjWw7tXRDpJgrdyOoGFc9+EV1J6scp62E+F7+N2T+Tbwot4crjifRS+BEzNYvcJZtm4hvTIEvXn2QHCMhq5eNSujE7Ty37QoeCwsYqQLMlQAlMHqdbYkAh9jh35t+fn/oCayfVhsRWkEAv+KnP9c5/358nTg8Bijhs9w+gWou4pwsST+5L+E5XZKaz+FOV1ETfFX3NOMoB4OM112BdUM5pcJijy2Sa7n1LOs2AdTBNsw6z0YnBpI6J1PJVgurwUQ/YuukpsjoZBgANLzEM1GKH4CEMDg1DyqLiox4a2wjl/lIl/uoRjp8Endj8KuY+bxecjrnWFrrHA79A82zNg4raSrXCdWzbzmJzhV/iMR6o5ZNPhTdReJ4INI82tibuX7ni1fLOZLHA8Y06HiMRx2GEw6vXfT2Vnz2R1vG8bpWrZZ9PlTdRef50LHRn1gv/Vy50tdp07ya3+i/1woj2ReN2/zO5WoD61HgXmfwtzX+45A7VQtiUEc5dYftKfd4TyY97n9ahWh+7nNjfL7ea0Br1IbdKGv3AUxkWK3B9vLCoFrs+MK4cj2UasJ6a7G5i3YXo1Fhw83HoVIqpgpZGTNdNq8aqHElL9CTbCFeBqVqLcwH3q3OCoead57BlEJPvPOWL/vyttJzBd0tCreQoJGoswqEMV68WrFhuU4/Q6RcrsPjqHmgyjQaRvMc2K2UaL5U5Y2GZkWzNC9SnY786nLVrja76DVQ3q2EW7vKXgqSwMqyCS8PFMLCi3JDHHViO+5qqsami6mpdZvFN5UWWZdZZD/NWBvibhHoPCKlVgEpA2pD2N+nYfcMjdg//bpE2P/5vjD8=")]; -this.addPalette("gmdlGrid Lists","GMDL / Grid Lists",a||!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addGMDLIconsPalette=function(a){var d=[this.createVertexTemplateEntry("dashed=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.gmdl.edit;strokeColor=none;fillColor=#737373;shadow=0;",20,20,"","Edit",null,null,this.getTagsForStencil("mxgraph.gmdl","edit","gmdl google media design library icon ").join(" ")), +this.addPalette("gmdlGrid Lists","GMDL / Grid Lists",a||!1,mxUtils.bind(this,function(a){for(var c=0;c<b.length;c++)a.appendChild(b[c](a))}))};Sidebar.prototype.addGMDLIconsPalette=function(a){var b=[this.createVertexTemplateEntry("dashed=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.gmdl.edit;strokeColor=none;fillColor=#737373;shadow=0;",20,20,"","Edit",null,null,this.getTagsForStencil("mxgraph.gmdl","edit","gmdl google media design library icon ").join(" ")), this.createVertexTemplateEntry("dashed=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.gmdl.star;strokeColor=none;fillColor=#737373;shadow=0;",20,20,"","Star",null,null,this.getTagsForStencil("mxgraph.gmdl","star","gmdl google media design library icon ").join(" ")),this.createVertexTemplateEntry("dashed=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.gmdl.heart;strokeColor=none;fillColor=#737373;shadow=0;",20,18,"", "Heart",null,null,this.getTagsForStencil("mxgraph.gmdl","heart","gmdl google media design library icon ").join(" ")),this.createVertexTemplateEntry("dashed=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.gmdl.reply;strokeColor=none;fillColor=#737373;shadow=0;",20,18,"","Reply",null,null,this.getTagsForStencil("mxgraph.gmdl","reply","gmdl google media design library icon ").join(" ")),this.createVertexTemplateEntry("dashed=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.gmdl.users;strokeColor=none;fillColor=#737373;shadow=0;", 24,16,"","Users",null,null,this.getTagsForStencil("mxgraph.gmdl","users","gmdl google media design library icon ").join(" ")),this.createVertexTemplateEntry("dashed=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.gmdl.gps;strokeColor=#737373;fillColor=#737373;shadow=0;strokeWidth=2;",20,20,"","GPS",null,null,this.getTagsForStencil("mxgraph.gmdl","gps","gmdl google media design library icon ").join(" ")),this.createVertexTemplateEntry("dashed=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.gmdl.share2;strokeColor=none;fillColor=#737373;shadow=0;", @@ -5602,7 +5603,7 @@ this.createVertexTemplateEntry("dashed=0;aspect=fixed;verticalLabelPosition=bott 20,18,"","Health",null,null,this.getTagsForStencil("mxgraph.gmdl","health","gmdl google media design library icon ").join(" ")),this.createVertexTemplateEntry("dashed=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.gmdl.office;strokeColor=none;fillColor=#737373;shadow=0;",20,20,"","Office",null,null,this.getTagsForStencil("mxgraph.gmdl","office","gmdl google media design library icon ").join(" ")),this.createVertexTemplateEntry("dashed=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.gmdl.promotions;strokeColor=none;fillColor=#737373;shadow=0;", 20,20,"","Promotion",null,null,this.getTagsForStencil("mxgraph.gmdl","promotion","gmdl google media design library icon ").join(" ")),this.createVertexTemplateEntry("dashed=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.gmdl.radio;strokeColor=none;fillColor=#737373;shadow=0;",20,20,"","Radio",null,null,this.getTagsForStencil("mxgraph.gmdl","radio","gmdl google media design library icon ").join(" ")),this.createVertexTemplateEntry("dashed=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.gmdl.recipes;strokeColor=none;fillColor=#737373;shadow=0;", 20,20,"","Recipe",null,null,this.getTagsForStencil("mxgraph.gmdl","recipe","gmdl google media design library icon ").join(" ")),this.createVertexTemplateEntry("dashed=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.gmdl.sports;strokeColor=none;fillColor=#737373;shadow=0;",20,20,"","Sports",null,null,this.getTagsForStencil("mxgraph.gmdl","sports","gmdl google media design library icon ").join(" ")),this.createVertexTemplateEntry("dashed=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.gmdl.travel;strokeColor=none;fillColor=#737373;shadow=0;direction=south;", -20,20,"","Travel",null,null,this.getTagsForStencil("mxgraph.gmdl","travel","gmdl google media design library icon ").join(" "))];this.addPalette("gmdlIcons","GMDL / Icons",a||!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addGMDLListsPalette=function(a){var d=[this.addDataEntry("gmdl google media design library list scannable list",358,642,"Scannable list","7Vtdk+IoFP01PraVgJ+Po07Py07V1HRX7eMWGkxYk5ABHNv99XshSWsktjEm3Y52umwFgdzcw4XDETp4Gr18EyQJvnOPhh38tYOngnOVfopepjQMO8hhXgfPOgg58OqgxyPfuuZbJyGCxqpKBZRW+E3CNU1z0gyptmGW4REZUF3c6eCJDEii8wVdQPuTJQvDKQ+5MEXx0ly6mBJ8RfNvYh5DnUl2KyoUfTlqrsnKbP1GeUSV2EKRDfNUkJbA/VFaLaDMD7Jqg15mOJFphv9ad/f08CFzQLkzsOUMF2z5gp2zfEJC5sc6mVp36CPHGY4Hk2M+WvJY7RV+NJcunJAFi/2f2RP3dlnPPIEMN6v7lNno5Gn2n066GNKCSkj9nXnSrYoIqocI6qV5goZEsd+00P4lKPVqdtnoxddh1vUjL+wqnvwzJ8KGB83weDS4qAvjcocVK2yz6Oz20/SeO3sD25vuud7M7v+DMzDr9eYPY1S4/cOw2AJfLiVVFhqvT1EJoL4F0CMFNLTxxKPirGAqD5LDiBoPRqPSDr4XAsg5HV5pLD3oYNEYswUJv2TRHDHP0wa/hndIl2pX8y+Tmg1Ry1HVH17WD7bF4GwU90ETgZkIuqTgpgWVleHvITyp6vd+ud/fCMfcV4VwHDQSjnkzeTSOWkBl2AQqAAoEV2Ahsu/+Y7CkNfKorBwgR4CqPIq6ZaNoM7A9DPrt4zZqAjcwQ8Ho9K6hVBmhfnsA5THbJkDj0wDVYsvwDTVXCqrHNxnC78vfXAc3MtWM3BZ87zqW82dkm1KMJKHw9F4XUs8Bhf+KRgmVykDDTDOC+IaQbBi4ADnr2GMRi5mJpkMMwbUau03AFH2CyV5nbyDCbDbhmKuEOyhNKw6Jwz477++IhE4OdskJV4pHeYgXWIpem9TtE+OTfQL1Sqa9gXNml6jK6V3XwnPKRWxAmlO61OYLLhdsDe6AhC84gNbtds+Bq0jV9r2cL6v28zrli6hjmJ/Gq//ucKFz4SqP4F4bo6drKw86qB2Iw3fFFNmYjs1125gOURuY2gJKDc4SEeGz+Gc6ZeqZ87vJyMHa5WSgpwPhwdw6mem/i5bxRwB6OQBnn3Lmnbp0Hr1ofKwgenySDagwamNh69qKBjALobnFJn2T0Jx+gxlewjvXExaBF5CASH/UJsacnzW0/bnsIu2t10QvbGniOTDrImCHmk/Q+F++vQ8uURecqyYTtsjhavNtrfEmqcQHQ9oOl2hE/7gWLnEMoY8hE5/KRaV+jUZt/DqCbOnicR3riUjwRM/rejqSC3C/vBO2cG1iBLLFiFRIis3NwTKiicOCR/AY5tahtvfXmlGlVaenlAwaEqhMRUlYKHdskfiExXciXdRFt6G5Kf/tvtkQLtEu7olu3KB0UbL340+mG9ekXVTZsPFJN6DxcStjla1d/OBiBTkh11IrzE1rSXwzSwUkXgEiCBp1VoyGcyK1iDEnC61c5EK8YPM7YSbo2nSMki0WM7GOJPhRI6rWYkW3Bkm+Ds1WG0f+WsMT3c0vJXUhu2Z1o2QLB7ojuvHBkLZDN25K3TiG0MfQjZtXN9xmhqrxgbMb6djYVjemARXmyeYhl5JHeiFsmAekYbS4DyZxbRoHtjWOp0Rof0AZaaxIpYrYM7qF/mgaWMV8cz9s4gbFC2yLF/ie2MQNihf4psSLq9p4geueNjnr/EI2ljVLJLaFCqdoRb5yubB/P7SyAsK2iFGjg88JrJJLWN0r3zuGS80d7PhtWux0UXEbeeku9rLDBw2dBRoW7t7KUSBc4UxIjhXUZImkV4XQ7QNU4XjIm0PaR6IzvDV4ILk7+psW3z8Z/D8="), +20,20,"","Travel",null,null,this.getTagsForStencil("mxgraph.gmdl","travel","gmdl google media design library icon ").join(" "))];this.addPalette("gmdlIcons","GMDL / Icons",a||!1,mxUtils.bind(this,function(a){for(var c=0;c<b.length;c++)a.appendChild(b[c](a))}))};Sidebar.prototype.addGMDLListsPalette=function(a){var b=[this.addDataEntry("gmdl google media design library list scannable list",358,642,"Scannable list","7Vtdk+IoFP01PraVgJ+Po07Py07V1HRX7eMWGkxYk5ABHNv99XshSWsktjEm3Y52umwFgdzcw4XDETp4Gr18EyQJvnOPhh38tYOngnOVfopepjQMO8hhXgfPOgg58OqgxyPfuuZbJyGCxqpKBZRW+E3CNU1z0gyptmGW4REZUF3c6eCJDEii8wVdQPuTJQvDKQ+5MEXx0ly6mBJ8RfNvYh5DnUl2KyoUfTlqrsnKbP1GeUSV2EKRDfNUkJbA/VFaLaDMD7Jqg15mOJFphv9ad/f08CFzQLkzsOUMF2z5gp2zfEJC5sc6mVp36CPHGY4Hk2M+WvJY7RV+NJcunJAFi/2f2RP3dlnPPIEMN6v7lNno5Gn2n066GNKCSkj9nXnSrYoIqocI6qV5goZEsd+00P4lKPVqdtnoxddh1vUjL+wqnvwzJ8KGB83weDS4qAvjcocVK2yz6Oz20/SeO3sD25vuud7M7v+DMzDr9eYPY1S4/cOw2AJfLiVVFhqvT1EJoL4F0CMFNLTxxKPirGAqD5LDiBoPRqPSDr4XAsg5HV5pLD3oYNEYswUJv2TRHDHP0wa/hndIl2pX8y+Tmg1Ry1HVH17WD7bF4GwU90ETgZkIuqTgpgWVleHvITyp6vd+ud/fCMfcV4VwHDQSjnkzeTSOWkBl2AQqAAoEV2Ahsu/+Y7CkNfKorBwgR4CqPIq6ZaNoM7A9DPrt4zZqAjcwQ8Ho9K6hVBmhfnsA5THbJkDj0wDVYsvwDTVXCqrHNxnC78vfXAc3MtWM3BZ87zqW82dkm1KMJKHw9F4XUs8Bhf+KRgmVykDDTDOC+IaQbBi4ADnr2GMRi5mJpkMMwbUau03AFH2CyV5nbyDCbDbhmKuEOyhNKw6Jwz477++IhE4OdskJV4pHeYgXWIpem9TtE+OTfQL1Sqa9gXNml6jK6V3XwnPKRWxAmlO61OYLLhdsDe6AhC84gNbtds+Bq0jV9r2cL6v28zrli6hjmJ/Gq//ucKFz4SqP4F4bo6drKw86qB2Iw3fFFNmYjs1125gOURuY2gJKDc4SEeGz+Gc6ZeqZ87vJyMHa5WSgpwPhwdw6mem/i5bxRwB6OQBnn3Lmnbp0Hr1ofKwgenySDagwamNh69qKBjALobnFJn2T0Jx+gxlewjvXExaBF5CASH/UJsacnzW0/bnsIu2t10QvbGniOTDrImCHmk/Q+F++vQ8uURecqyYTtsjhavNtrfEmqcQHQ9oOl2hE/7gWLnEMoY8hE5/KRaV+jUZt/DqCbOnicR3riUjwRM/rejqSC3C/vBO2cG1iBLLFiFRIis3NwTKiicOCR/AY5tahtvfXmlGlVaenlAwaEqhMRUlYKHdskfiExXciXdRFt6G5Kf/tvtkQLtEu7olu3KB0UbL340+mG9ekXVTZsPFJN6DxcStjla1d/OBiBTkh11IrzE1rSXwzSwUkXgEiCBp1VoyGcyK1iDEnC61c5EK8YPM7YSbo2nSMki0WM7GOJPhRI6rWYkW3Bkm+Ds1WG0f+WsMT3c0vJXUhu2Z1o2QLB7ojuvHBkLZDN25K3TiG0MfQjZtXN9xmhqrxgbMb6djYVjemARXmyeYhl5JHeiFsmAekYbS4DyZxbRoHtjWOp0Rof0AZaaxIpYrYM7qF/mgaWMV8cz9s4gbFC2yLF/ie2MQNihf4psSLq9p4geueNjnr/EI2ljVLJLaFCqdoRb5yubB/P7SyAsK2iFGjg88JrJJLWN0r3zuGS80d7PhtWux0UXEbeeku9rLDBw2dBRoW7t7KUSBc4UxIjhXUZImkV4XQ7QNU4XjIm0PaR6IzvDV4ILk7+psW3z8Z/D8="), this.addDataEntry("gmdl google media design library list item list",358,642,"Item list","7Vtdb9owFP01PLZK7ISER0q7TdM6VWulPU4uXEhUYyPH7WC/fs4XJHVoDdgdGqSqhI3tOOfkXDsnlx4ezZefBVkkt3wCtIdvengkOJflp/lyBJT2kJdOevi6h5Cn/nvo05Zv/eJbb0EEMGnSAZUdXgh9hrKmrMjkilYVE5IlkDf3evgqS8girxcwVuNfTVNKR5xyUTTF0+LIm0nBn6D+hnGm+lxVpwIhYbl1ukVVNdfPwOcgxUo1+Z1OZFK2wGFcdksgnSVVt35QTZxkZcVs3Xdz9epDBUA3GFgDw1dzGWJvJ0wITWcsL5aze40RusaDuL8NoylnstH4U3HkjRdknLLZj+qKg03VA1+oCr/qe1/N0avL6Z+86GNVFpCp0s8KSd+UEbQfIygo6wRQItMXaI1/CEvBnrfsfDnLZXY5m0/opeSLX49E7EqPEWC4G7B2h1WlzsuwLDfgDPo6mv6uaFbnv+Opmtb65BcD1Dr9RdQegU+nGUiNjfVVGBEUHhZTunXRZgkPgmgQffg9HUaHsbBqS8Mq6n0bslgImIKCaQyZIRPrkG+Ee9iN+xtiqLFqiaFvRQz1MLUWYgesRDZYyYCIcaIR0kS/yUpFVNm4lgY6kCLj6OV3RS87hF30Q/eMxXYYk1KtzR8qImOGQncE1Wp1SdBAI+grYfmo3h2Ip5Rlh682+qrS3EsF+j7NKw5Vn1OXjgkdVpvAeTqZ5NNY7wopTOVm8/atKF1Hxurcd+EKrSxcse+AT9+zojhZ7OZM1Hattg/9G1PEB7svWVgnoB7Z8pLlOyHEt0HIcwamhMRe/ncgIcbhD3csUNhS/Au9V/y4CIC+/tB+SwoMvvKEZZydA6CrAOjXN4pdQnXj4ZgE52/B/IQUp3sOdyAV3MgbEUGzs+Zcam7gZJHb16X4IM0FJ6853dB4EPDCc9F9ISyDs+ScSW5tQdpl1IoZ4k5y/ZOXnIH3UXNC04bJ1MAcikOzn3zrXu2yJgJ59QNL8xks7iAjtiIO7DkRh25rDInI9xXeFTAGUp7Dnatwh2vwrTKKdF9jqHGoQJFtHlAHD2vHYisPr9/91byMFcRFvDQLgXuYHR3+/M6v/gzNDuSCpeM2O7YxcjqLUs1HU0aPj5CDMEpEmkk47wWdBsfIxdvKjlyLY5LdO5uOU5Cdbnmo+zsXHWeMi/NLFmeCC5CT3chx+x3o5P2OjgSOIVWIIe870LPB6FJwsZMV7rjdDnTybkdHpseQyYSzHIZ7CS9wTiVwJ7oQO1nldBflqEQXn7ro8L7JHjskh64VZNdwXLU6vCeTwI7ZeBE4YcGK6fFIxk9dFnBnUmKTlz0zE8t75y0nuJ0e2Jmd2JVOaim3Omrrx0VqNdbNEI24mivVM11kcFQM/f8EGfgab4a0f8lO9L/Ro4qbn1KVzZu/tPoL"), this.addDataEntry("gmdl google media design library list item list",358,642,"Item list","7Vttb9sqGP01+dgKg9/yMU33ommbqnXS/XhFkyexVcdYNu2S++svfiG1i92RBLposatKAYONz/F5wAeYkPlm+ymnWfSNLSGZkA8TMs8Z4/WvzXYOSTLBKF5OyO0EYyT+J/jjwFmnOosymkPKdSrgusIzTZ6gzqkzCr5LmowlLSIoi6MJuSkimpX5OSzE9W9WcZLMWcLyqihZVUdZjOfsEeSZlKWizk1zK8g5bAebW2U1bf0EbAM834kiv+Ilj+oSxAvrahHE66ip5rtNw2lRZ6z3dV+eXvxoAOgHgyhgOKItM4IOwoQm8Totk3XrXmOEb8k09IcwWrGUtwp/rI6ycEYXcbr+0Tyx+5L1k2Uiw2nq3jdtRDId/1cmHSLSORQi9U+DpKPLCD6OEezWeTkklMfP0Ln+KSy5R76ym+26lNn1erNMrjnL/n2g+aH0aAFG+gHrVtg16rz26nQLTtdX0XQORbO5/x2LRbP2N7+a4s7tr4LuFdhqVQBX2Ng/hRZB3mkxpV8XXZbI1A2mwbu/015wGgu7rjSMou6bkEWWwwoETAsoNJnYh3wt3L1+3N8Qg8SqIwbfiBjkZaQWQgusBCZYKYDmi0ghpI1+m5WGqLqwlAY+kSLt6OX0RS8zhF35nn3GQjOMcS765ncVkTZDnj2CpFptEjRVCPpC0/Kq6A7yxzgtTu9t1F6lPZZy1XEaqg6RX1IXL2gyawaBm3i5LJuxHxUmsOIvg7evVeo20FbnsR2XZ6TjCh0LfDrIiOJ4NZrTUdutGD74H3QRnx7eZRGVAHllw12WY4UQxwQhTwXoEhKi8u9EQrTDH+npoIih+OehV/zYCICO+tH+jVYYfGFRWrB0DIC2AqAjXxSzhKrGwzkJzhnA/IIUp3oOd8AF3BjNaZ4Uo+Zsam5qpZM71qV4J825F6851dD4mcMzK0X3maYFjJKzJrm9BWmWUSNmiD3J+RcvOQ3vQ3KSxC2TqYU5VIdiPznGvdqtJAIj+cHS/gYLe8gIjYiDICviUG2NGc3LcQW6gTQFzsdwZyvcEQm+UUax6mvMFA4FKLzLA+7hYe9YDPLweu5P8rIQEFfxUi8EHmF29PjzB0/9aZod2AZL5212DDFyOZ2S5KMto4cHKEGYR3lccBjHglaDY2BjtrJnrcU5ye43g45LkJ1qeYj3uxQdS1OWj5Ms1gTnYiujkfP2O/DF+x09CzhmiUAMo++QjAajTcGFVnq483Y78MW7HT0rPWYpj1hawnDP4RnGpQT2ROcRK72c6qKclejCSxcd0Vjs8aas2hbj4OrziC7Zr4kxj1G1Fx2/b8UzOtFglEw4QdihQoJmlgnV+PgBKxGuIoWQxqQaDEhNBJKS6sQjx38V8rzjneAahzdDVi8xHj6QF+0NA6o38RmSbFJafz7dZNWDoRXA8oEuHkdcB7oCbOP1Vg2Ge7koc+ShlwcH2RgHE9VIuC/xxYg9qXMaIxV1Bc/GHBN5h50Z++Gr2dm+XafC78aorpmZvivXyhDIyE6NqkPR3RHQ5uXIbQHk7VXn6Bp31+b3bg3o28thaGNT0Lm7lX1NROOLXnIlasZZAWfF0N9P0AHrF4Y+Lv4YO8HfRo9Ivuxjrou3tzn/Dw=="), this.addDataEntry("gmdl google media design library list item list",152,631,"Item list","7Zldb9sgFIZ/jS8nGWMn8WXjrt2kbZrWi13T+NhGwyYCmo/9+mGb5qPgKlvKLiocRYIDB/D7oBwOiXDR7u4FWTdfeQkswh8jXAjO1VhqdwUwFiUxLSN8GyVJrL9RcjfRiobWeE0EdOoSh2R02BD2BKNlNEi1Z8YgG7LuiwJWesilVIL/goIzLoZ2DMOjWyrK2Im9Gp7eoyEl32oj0hUzHwgFu8k1Dyaz4HvgLSix1122tFSN6ZGZhTZA68a4zbAZi8jRUB98jxLoglHBrQi2FPnBH7nili76BXo9+lehK8JuGK073dLSsuy7LOWarGhXa1N8rH2Bql8smvV68U490N/9cCjTdQFS136al7xYrOTfxMqy0SaAEUU3cDb+NQKml28pRjt4dUv9X0lQ/JeSmCm+c6pnTuK9UTY+9+BVJUFZEh4WdpGqmaXqjaCEvbddmS7eBkHmAcHMQlAQRh8FDRCcEFCMPVCYOyi0GgIJFNwUMuSBwsKmwFu66gGQTgYUbhR57gFF7kDRSc5IwODGkKRzDxieDw9nHISkm/DDNIEh9xGkEXJgeBIUhDZ+g22A4YSBUx+xGtnp5a3gujWJH0KYmGSR+4jYyE5sDyxA0CrAcMJIsY+YjewkWQ8g6nCKncKw8BKz7az6E7AN9EoP4UJbAw9ngo29BG87xf7cagVVoOCmsPASte0U29L/1Uvhjg/Xei/ug5fD50phzx1OZE4dIl95nWfm+vB8pDSiz99g5+vq8Y5/7H76F8Af"), @@ -5623,7 +5624,7 @@ this.addDataEntry("gmdl google media design library list item list",358,56,"Item this.addDataEntry("gmdl google media design library list line item checkbox",358,56,"Line item with primary checkbox","rVTtboMgFH0afraxUrvu57Rbk6VLmuwJmF6VFMEA7eyefiBov+xi0kFM4Nx7uHjODQgnVbOWpC4/RAYM4VeEEymEdquqSYAxFAY0Q3iFwjAwHwrf7kRnbTSoiQSuxxBCRzgQtgeHvBMO2kBbkDvKlYsrfWQ+nhFVgmUHCMeqJLXFJaSmXJxTxhLBhGxTcd4Om6al2EEX4YIbTnwAqWlK2IZ8AdsKRTUV3IQrmmW2WEwYLSzAINdn+S8e7vNywfUn/bH3mEW2Wk1SyotNS1s9hQbyf2lOgOauUi3kZVqDqEDLo0n5ppkuXQaOlo5WAi1KT4sWDiPK7YueetLdLLz0wzbgGxvG6V41hW2daVFlbLpXIO+JfeXMMrBzrDDhsDBH32DTyFHOhJoHtzp1mARGND3ARbkh8XzFraDcNmR3Py+3rz7xDd6fIPJc2Qa+Er+/9yg/5v/hRy0hB6NiCmqkLYt2PGjLJeEPk2YDzdxhD5o0wVcuPT9uktme3kWXfv5s/gI="), this.addDataEntry("gmdl google media design library list item list",358,642,"Item list","7Zxdb6M4FIZ/TS5TYUyAXPZjOnsxq61mRruXKxdMYg2JkaHdZn/9AgYSMM5CYkMTkqpScDCY8573iXUwmcHHzcdXhqL179TH4Qx+mcFHRmnC320+HnEYzkyD+DP4NDNNI/2fmc+ST0H+qREhhrdJlw4m7/COwjfMW3hDnOzCosFH8Rpnuxsz+BCvUZS1M+ylx38ISBg+0pCyfFcY5K9st4TRX7j8ZEu3aZ+H4lSYJfhDOty8qRjrV0w3OGG7dJd/iJ+s+R5w4fJua0xW66KbbRUDRzFvWFV991efvikC0B4MKAQDpGO5h0avmKCQrLbZJh9dM0aG4SztB1mMArpNDnZ+zl/ZzhHyyHb1vbhia9/0k0ZpAyj6/ijGaJTb5N9sE8B0m+E43fqriCToqoh5miKmxdsYDlFC3nHt+OeoZJ2YspuPVWazu9XGD+8SGv39ithZqQrbA1PvsCtceLfg2wdhs2wxaqBv1Irzv1CSDqs6+Xxp1k4/d+pHoEEQ40SIenUVnYRYCEKkuUi8uJdb2l3QtMzSdt3WDD7IcRP8v3+4WeaZGzJxiYfC+8KuG+L72YAr/4Y4SPY9v+VbT46p2TYL57wE2NXdp1RwW4XzIoYDnIbJw3FH+atvlU5xX7TH/YgPy1jVfGgr8WF5mNKGrgZVHBWqpMNI0iwfVJLOoFxo02deaq9TIFcQ6D5JGPISQrfqYVlJI8KyRN439IrDFxqTbARH0CdFZAsT+dAkaAaOZmparhJqukCD/EsV/kQHGdPMg8PvuUYyOPlf1+C7atB5phYSdC41SAMMFdq8RW2SVKGvOyPzShCS6M8+U3CJMJ0BCkxRJkUAhY2JJtQhExBkeiLbFEDXAs8LRCUwtRjy1HpEzZA+T45ukvdDJJDUJ46Zr236ooaRRXFHLyPFqsinZKRMmclAUqyLfPHfPJRj6sbJ0Tjp6Ci9ALH2coIpcZUfWlBp9Ual2WLBS5pOKimQDIBKiTKTQaVYMnlGGxLubpwcjZNVlUet0mLt5QRHBjw5tEDS+VSQdAaApJJ6yACQlCgzFUiaYm3kN4zC9OpukBwNko4WpcXyygmOXPPk0AFJnopTgmQ5/M8OSZkyk4GkWBz5IwiIh2+QHA2SsNlFjdJKlp1QnhxaIClZjnIMkoYoQnlZ50LSrZsPaNFESRVkAEqeu1Lo0ikp1kVeGN3Qq7oBfomktLXMXZQsSIn2CaKFlnZ/Wrbc6+69yLFbcbL0u1pdlNRCBqClRJrJ0FIskHxHPqE3UI4GSgvouIkDlaw+YXluaGHksj8jW6ynipHNGaUORkIlpZABGCmRZiqMLM9xyEjskQjfppMjUtLWcQsHKll/wors0MFJKAn7Fc8loZJqiH5OyqSZDCfFCsmPiLLkhsnxMLkAWpRWsvYk5smhhZInPJjTNps01VCycRNHS30SKqmEDEDJcx/QuXRKipWRnwy94/BGyfEoaWtxpJLFJwlPjp6U9EmWKFzUmL7l98q72VPNcznl3R7V80tDg07WhTyYI5NmKuS0Tq2X9Hr6O3u1MvMcju1qHQai2rw8jloVTBVueUXerza/VN9ZMl1EH3XSxTr+wIZxV97ePWaftucPFf2EQmOGqKMCbHWobZRapT1JFONPpdD1C9ShznEUaWOq41ybPOnm/peR+O6HP5z0Hw=="), this.addDataEntry("gmdl google media design library list item list expanded",358,642,"Item list (expanded)","7Vtdj5s4FP01PGYEGAJ5nI9O96G7O2qr3ceVB0ywxmAEpJ3019dgIARDFoidaJIwGil2bDD33HN8fWNr4DF6/5zCJPyT+oho4JMGHlNKc/4pen9EhGimjn0NPGmmqbN/zXwe+NYov9UTmKI4H9PB5B1+QLJBvIZXZPmWVBU+zEJUNNc18JCFMCnqU+Sx+z8EmJBHSmhaNgVBeRXN8pS+ofqbmMasz0P1KJTm6H1wuGVVNdbPiEYoT7esyU/s5yFvAWyXdwsRXodVt6VVDRxmvGLd9N29PftQGaDfGEAwhsHGcg/0STaBBK/joshH17WRrjur5cOQjQIa563Gz+VVNE6gh+P11+qNrV3Vd5qwCqPq+60ao16X8a+iaABWTlHGSv9WljTGImLOQ8S0eF2KCMzxD7R3/2NQsma6bPS+Lmh2t458cpfT5L9XmB7lqqDfMPsdthUL72xebpnNWopWM6ZarXr+C8VsWM3DFytz7/ELZ/8ONAgylAtWb95iFBC2AATzRexlk9jSz4IuZVZL1+314JaPm8b/84eTZVGwoQAXe5DcV3SNsO8XA274S1CQ73p+KUtPjqmYNrZznANs99knFfClDOYlKQoQM5OHspHwN7PKKLvb/XY/wMPaVns8XErhYX2bmoauAlQcGaiwYeTMy08KyWihtJXhs6ixVwmQKwB0n+cp9HJMY/li2UAjimUteV/gKyIvNMPFCA5I36BE9mhiO9hwFGvk0pSika6hAOyVDDbCln90UW/Pah3onfKv6TE50nPlSKerRDpXCsAydBlobZI+kAbAKLlCcPKPBGBGC6hh9pBIjoCCTqAJVMBkzISJ4FIhBWxQeZ18SVS725G6ZQAVs1TtIy0jP+GYqfylzlCdpUKzyPgAM5dhKaGZmP+YoYY+d5qJK7tRRjcGrH5I+fpiRzkTVB14K52gpCQ7Jk9QR6FxNbOSmP9gigbfApgVQ9HMJYyS0pj6a7qJvVBAjll3ioh1c3rOyScw60jm1MkJ3VaBh5ie+Av9ZBX3EUqZfeOb/Wv720r4ICYivm2yEBf+D1NxoXut1ge6inWnIWYZxs0UlxkjA0tFAtQQV/ef/I0Hyyj1QsNklWBLCoeBpSL2MqUkB1DjH+NQb6KyUXbnDjktZdMTdclK2ZwgIjbn5gJOnLIZQuZaouMalhZOzzDCZHvTybNFHpa+VIG0lLRBwJ1DhUgOWf2CRfI8aYPJIjmEzNWIpJhC+ANBkoupgptInkwkbSUiKWXvRMidQ4lIztg38cFFUsrGiROI5LHbJz66SIqZjb+DAHvoJpJnE0lbN1UgLWXzBOXOoUQkZ+yQ0EUQ6tc6ViTdffIZKvKK4INskbj2PRJAzIu8pDSit01mZ1ZKW1eBtphdmcHKZOcgKtQSDJzlmLifbPJBggG17Ownq/kuFxcpuRD1ajkEzdWo5dwEyaRTC8Ul/Qe07V6HE6nYwlKx5QyI6Y8ZbHmF3lsfX5o5agiXmfteuO8Mcke/q7M6h+jTt29W0tGfztJZxckfMCKbUWPFeuIkE+PxcyJ0+QCNyG0clLRzouNcGjysuDvRy5u3D/z+Bg==")]; -this.addPalette("gmdlLists","GMDL / Lists",a||!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addGMDLMenusPalette=function(a){var d=[this.addDataEntry("gmdl google media design library menu menu simple",170,168,"Menu","7ZXLbsMgEEW/hr2DEzfbxm3TTaWqWXRNzdigYGMBefXrOxjykhPJ6mPVWLLkuXNnYA6WIGleb+eGteJFc1AkfSRpbrR24ave5qAUoYnkJH0glCb4Evp0JTvqsknLDDRuSAENBWumVhCUIFi3U1FowcgaHBgMG92gOuPMCvAdEgysYK23GihwyVkplcq10qarTsvu8TZn9BJOMtA9oQHXGxRHGMT9gHGwvTpTJ8WB5qBxd2aHlo3kTkTHXZg7ESArsS/LpkFkNgjVofaICD8ipcvE0h6xNygNWNEDhxN4IH4WWTB1r2TVYKaWnHvLrNSNW8hP7x5NPIeWFbKpfJhhiD0x+R5nGsyGfo/NOB68AcWcXMNZ/0u84hKvWuLKR4suSwuuB/Swk0GMxz3Gz6Ba4v/ljNVthyIpAfgHK5b/m/vuvM2vHsOkdwwLcA5R2RtzlKfjP2Ce9Zl7lDTRK3ej7gv2iH6CHcPjHRvsp1fwFw=="), +this.addPalette("gmdlLists","GMDL / Lists",a||!1,mxUtils.bind(this,function(a){for(var c=0;c<b.length;c++)a.appendChild(b[c](a))}))};Sidebar.prototype.addGMDLMenusPalette=function(a){var b=[this.addDataEntry("gmdl google media design library menu menu simple",170,168,"Menu","7ZXLbsMgEEW/hr2DEzfbxm3TTaWqWXRNzdigYGMBefXrOxjykhPJ6mPVWLLkuXNnYA6WIGleb+eGteJFc1AkfSRpbrR24ave5qAUoYnkJH0glCb4Evp0JTvqsknLDDRuSAENBWumVhCUIFi3U1FowcgaHBgMG92gOuPMCvAdEgysYK23GihwyVkplcq10qarTsvu8TZn9BJOMtA9oQHXGxRHGMT9gHGwvTpTJ8WB5qBxd2aHlo3kTkTHXZg7ESArsS/LpkFkNgjVofaICD8ipcvE0h6xNygNWNEDhxN4IH4WWTB1r2TVYKaWnHvLrNSNW8hP7x5NPIeWFbKpfJhhiD0x+R5nGsyGfo/NOB68AcWcXMNZ/0u84hKvWuLKR4suSwuuB/Swk0GMxz3Gz6Ba4v/ljNVthyIpAfgHK5b/m/vuvM2vHsOkdwwLcA5R2RtzlKfjP2Ce9Zl7lDTRK3ej7gv2iH6CHcPjHRvsp1fwFw=="), this.addDataEntry("gmdl google media design library menu menu simple",170,272,"Menu","7VhNb6MwEP01XCtjEmiPJd3mVClqD3t24wGsGIyMm4/++rWxSUkharQxpxSEhMf2jOe9NzYiiBblfilJXbwICjyI/gTRQgqh7Fu5XwDnAUaMBtFTgDHST4Cfz/SGbS+qiYRKXTIB2wlbwj/AWqyhUQfuDDVIVoICqZuVqLQ1paQpwHhAutEUpDZDJax1yDRjnC8EF7KdHWXtZYYpKTbQ64H2sg6o2GljqBtuPSAV7M/m1JpcQksQenXyoIfsGFWFG5HYvFEBLC/cNJy47EhjDflx7hdE+sWhNI5YNEBsJWHLYPffwJX73PB/l5eU39XOWZQaDNia8EfO8soMY5Qa1ylxBg6ZAZyTd+Ar0TDFhDFLm3CaiUq9sU8TIZybcDVZsyo3zVg3JTS686+DLBww5Fb8jc5kZu5LecI/8xQPaQodSxI4UWwLJ+7HqHMRVoLpwBh160nsjMNppM6ByLIG1ID54zIvEsNsIIa3QufvRwqNcRXdjBLuR5Qw86OE+EQJ82QCJcwHSlgan4izauNHDq2nWxYDmkIMIQonUEP887HacaxphVHcR0Ry/gz1hfvYsXkt8B3SeIodOBkg/UI2YKLoZy3qg5/iaz1dX3yWwI5lfH059muvX5MuMV+ywCOqiL2Uo/s+PYpkjiYQyf1AJE9iV3FBqB910M7brWzP0+nh+/b8gCfQw8Pv9jzYno+V6BXpbnE9qF+hFFtPn8jS+votO89lh2ceyk43v35k2OH9/xz/AA=="), this.addDataEntry("gmdl google media design library menu simple menu",280,160,"Simple menu","3VVda8MgFP01vidxLXtts7V7GQz6sGeJN1FmNKjrx379rh9ru6aFMgqDGgJ6rkeP5yASWvfbpWWDeDUcFKHPhNbWGJ96/bYGpUhVSE7oE6mqAn9SLS5Uy1gtBmZB+2sIVSKsmfqEhCTA+Z3KgBNsCF0LDS45b6VStVHGxipdzMKHuPPWfMBRBWILFcG42SBY4iDvB9bD9qLmCGXBSzA9eLvDKRvJvci6H9O5CgGyEz+0aQaZS0C35x4swE524bwjdOTISqB6XDRO08bLVjbMS6Nx2Bjtg+xT0/B00Swsr+RXAEuax0cWFbEhzpTsNGIK2kBzA2uk7gJrOrZ8b2xwEaWoWWb3kvMgYG7B4abv2a6rba/+ZvskYxYU2rKGX+ufiyJv8WZkcK7YZcJJeKZtHfhRdHthV6X5MErzRXIIWYF2Mqr9n0zvK7vTi3eT7CaXsvu/m3hfqZW3uHI4PDxXafrxa/YN"), this.addDataEntry("gmdl google media design library menu simple menu multi line",280,328,"Simple menu (multi-line)","3VZbT8IwFP41e+86uT0qKk8mJpj4XNnZ1tC1S1cY+Os9vXDRiQHkYiwhtN+57vt6yKJkWC5GmlXFk0pBRMlDlAy1UsbvysUQhIgo4WmU3EeUEvxG9HGHNXZWUjEN0uwTQH3AnIkZeMQDtVmKANQFq+xWwwRT3mVciKESSjtrkrmFeG20msKWBdyyloKlqkEwxkOoB9rAYmfPDgoNj0CVYPQSXRqemiL03ffPRQrgeRHCEtr3IKs9kK9jNxTgJrDwPSNJi5EXbpALSnIFtauooUUSPo0jR0kz5u8WjAfhvEUJcQtxJnguEROQ2bC6YhMucxvVxaNlh0+YuA1eJU9TW8inD0UtmRpqLPYaaNmbXnocvd3ArgbBDJ/Dp/y/ofymRfkY2XCcCy7tj6P3YAU6Ryvw5ZIDsZ+flLmsEh1yoBKhxLPi0vK4/CzoKkJlWQ2mpdy6sb3E7LTnp1EbJRv8q6sg3aEpKdnUyoDpTHC2njZeenef5pza79S4KbiBMTrbAq61S+veO43ucXwO4bt/bor/17TG/XOo1muPa6FhS7TTDCxh0qaYoI5czlwCoWQOeuX9Bte9Etcf7sFprglNTnBN8Lh5B/Xu26+oHw=="), @@ -5636,10 +5637,10 @@ this.addDataEntry("gmdl google media design library menu menu disabled actions", this.addDataEntry("gmdl google media design library menu menu disabled actions",170,222,"Menu with disabled actions","7ZZLT4QwEMc/DXce+/Io6K4XE6MH47ELAzRbGFK6Lz+909J9hV3dqJiYACFhpvNvO78hQ50gKjYzyar8ERMQTnDvBJFEVM1bsYlACMd3eeIEd47vu/Q4/vTCqGdG3YpJKNU1Ar8RrJhYQuNpHLXaCuuoQPICFEgySyzJGyaszkHP4JJR56zSoRJiWjJMuRARCpRGHaTm0mFK4gKORsBczQQJrsnpkWH3A1LB5mJOxmUTmgHS7uSWQtY8UbmNGDd5uznwLLeyfbqsbhzZXntARC+W0nliQYvYA03Sokbb1zR0Ijxm4lbwrKSRgieJDglTLNULf9fR3lBDqFjMy0ybIzIl1DT4ahO6Goz/PTCB5SJBMMVXcDL/OVh2iSfktLLvbq3APVVgmtagWnD3G7uK96DFO2Txouet0fgd8B62eE9RrplMukeuBUcNYm7u/1GK8aCDUoy+bs675iu4acyXm+zffuC7TvDjhjLqAOu4hfUZYspY6MxigTX03/qnVfG6qMqkVZUZYib6P6sRDCYdIL9pIX/DpVrOe+ZGMPmF4wyZh8N8E3581v8A"), this.addDataEntry("gmdl google media design library menu scrollable menu",272,420,"Scrollable menu","7ZhbT8MgFMc/TR9NoLS7PLqpe9Fo4oPPZD1dibQ0FHfx0wstuwmui7MxxpI0hQMHDv9fF3YIyDRfzyQtsweRAA/IbUCmUgjV1PL1FDgPQsSSgNwEYYj0E4R3X/TiuheVVEKhznEIG4cl5W/QWBpDpTbcGqqMlqYqYa6nnFRKileYCi5k3U+gLronZZwf2NO6GI+MJmKljVg37HogFay/jLk22YBnIHJQcqOHrFiiMhv30AaaAVtk1i2ym0W0agyLne9eAl2xKvgVIY4ij6ViojBDFOT6hR2J9F6MNGZXbE75NWeLQvfkLEnMkElV0jkrFtqE9q17SE3ceGCkE4V6Zu9mOhzrtoRKt17sfs/WLfyubo1NAqeKLeFo/ku0jFq1dD+3/6alXeJJML1yiDbH02w9RJpWoBztd4GdhSNuxUF6HF4co6gDHINWHFGPw4sDb7X7UR7DVh5xz8PPYzDqgMeolceg5+HlEWLUAY9xK49hz8PPI+7iON9CPgFk1APxAxl3caBj3Apk/BtAPiVmu4TtD4AipIuTHrtpr5Pkof6n4ycy7OKsx27a7eh/8iKiEIXnDiKpy4XCHjscyBy5IuMxukxlu9iVnXv3hze+XHTd3F8sNcMP750+AA=="), this.addDataEntry("gmdl google media design library menu cascading menu",604,590,"Cascading menu","7VvRbqs4EP0aHoswTkjuY5O7e7VSd1VttNpnEpxg1eDIkHvb/fo12NDAQEoDTtVCpKrBYIPPmTP2zBALr6PnH8I/hn/ygDAL/2bhteA8Vd+i5zVhzHIdGlj4u+W6jvyz3N9bzqL8rHP0BYnTLh1c1eGnz05EtaiGJH1huuFIBI1ISoQ8jHksW1eBn4QkG8GRB0noH7NLBdnJW672lLE1Z1zkvfE+/2SXpYI/kbMzJP+oAQL+SzYieaCfh4iUPLfOKW/SE/pBuHw68SIvKTogT3X5RYM0VG0YLVVbSOgh1MPMsL7QT1TDoRzrFTL5RaPWjCAGCK44CwCKcjoZOtnE6M5n94weYnkmokHAchCO/o7GhwJTdfRA9tmjyvlIXHmcbuh/2XBoLo8FSeTRv3qKnaFzm6F7EyptF4IwP6U/SWX8PvDNIHxXW2D0fMiEZB+igNk7HkV+LC9ZMX9L2CNPaEp5hrlQ0yq5eKidLznxNUksp6Gduzo1nYjAl21YdXjRGrbnwKKRC1lC72VJ3/+RU/lY5c3vZtXb39Vkwvf7hKSA5XIWnYifA+L/SCXgu9Erp8bJS3WYQTnwIAfjEN985OJbAOL/iQMiGJX8Tvpr0t9yZoCGJaRhHPpbjFx/3wDxm1TQJzkAPx3CSYKNEkSuCSqQA7i4Z3LQ1Sak++z/vI2OurR2EqdMpt21VRfjMOL61ldcjgc51HFkb3WhYqBCXgX+w5KKoMBO0pMmO0GP6aSvZn15SxNUwBSDPY5FDr2RpvjyqxyCuZHNaTtp8IIGXTPuEGZZLHc9EhWOPdGCYKYFMF8wmweAl3K1txUV6rnpKEQ1N5E8QTB78ugLP5dGgW7ybjdXt/FXt5c7uc/p1Dwj+MMkxjAeTUZifnxgUAh6hFqFw8s/2cg0K4Eo3xZzkSHb0UV5PV3UfHjpFB4KL6seam6CSZgHecgzUU5h/S0qqjFReqlRqQs7JlJTCKYo/jpFWyKkdlyH0eT9O7gvCf7MxJLtwpzEQ464w4+Zg5mWlXzspYl41YWpA4D2194uzVwTMUgBYxdc9asE7bi2vmQw8KsE7tKrLH+lr32LirJjn9p4w7sFG5rvTAaWfzWaXrg9LPdWLqEzhjD0RTZqzemOCMEb1pkbiv3f+Wk7GXIrDUbKjQ31/vUpSXlk4XvZjGzokYfno23P/jl5MlOTaqjPA2auS9aFZPdUI0F3Vottgb/btPyWkW43Zlqi2kuptqZNzawfUfoBcXUhv1uYoA3GscPQdvOMRBt3Y8lINBToAZPGg4CPjQLMVANxQ7U9CCyV6ckyPluy54IoKIpcqsk1qVf4eyVDeKC1Z2GEIRj/Vhny95n3mgj6qGJe8XAj9k1mohQMw229PS4T0bYN3134/Nbec4dltMqGYfzeau0fnzYqg2gN8xn0ZUaoWkdetsPc+RcoMLruVj65wmRb3r240mIVuRcttsyF3yRbhGGEPGxUfIbf33o+OYD1NwJ7wVftcQam12CCfQPhYlvumQiEMQyEKzX2wr7LbePYDf2GST0Mo91JK+/TilF6YAjbLB29n5+Uc7M87AwGwcgesiQxGuUMQY88fP29tbr8/OfY/wM=")]; -this.addPalette("gmdlMenus","GMDL / Menus",a||!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addGMDLMiscPalette=function(a){var d=this,e=[this.createVertexTemplateEntry("shape=rect;fillColor=#eeeeee;strokeColor=none;",358,642,"","Background (Light)",null,null,this.getTagsForStencil("mxgraph.gmdl","background","gmdl google media design library misc ").join(" ")),this.createVertexTemplateEntry("shape=rect;fillColor=#333333;strokeColor=none;", +this.addPalette("gmdlMenus","GMDL / Menus",a||!1,mxUtils.bind(this,function(a){for(var c=0;c<b.length;c++)a.appendChild(b[c](a))}))};Sidebar.prototype.addGMDLMiscPalette=function(a){var b=this,e=[this.createVertexTemplateEntry("shape=rect;fillColor=#eeeeee;strokeColor=none;",358,642,"","Background (Light)",null,null,this.getTagsForStencil("mxgraph.gmdl","background","gmdl google media design library misc ").join(" ")),this.createVertexTemplateEntry("shape=rect;fillColor=#333333;strokeColor=none;", 358,642,"","Background (Dark)",null,null,this.getTagsForStencil("mxgraph.gmdl","background","gmdl google media design library misc ").join(" ")),this.addDataEntry("gmdl google media design library misc keyboard",358,224,"Keyboard","1dvLcpswFAbgp2GbQRLXpU2arLrqomsCsqHmViCJnaevuCi1OXhKYw9njmcyYwvkwGfQ0Y+xIYL8+FyHVfK9jGVmiG+GCOqybIdn+TGQWWZwM40N8Whwbqo/gz9dWcr6pWYV1rJol3TgQ4e3MHuVQ8vQ0LSnbGyIwyaR3eqmIbZNElZdey0j9f7bXZplQZmVdb+q4I7gwutWa+vyIPWSoixUn23YVH2vx1167N5wO/5vWbfyeHX7+6Zx459lmcu2PqlV3tO4TYY1hO0N3RKZ7pOxG+fW0Bg2Q8P+s+9fDvVkFJnXEUDnN+BR295LlEV7JvHSP8b2H+lHt7LaIrHt9jaNwmyTpftCNeZpHGe9ztgQqT2X9VIdPq+jO4yf5kmbDC/P7UxIp9tukbOA3DspOcvBkrOBnCQl55lYcg6Qq0nJMWZh0bmArqVFZ3lYdB6gO9Gi89CKhA/oXknRcYZWJZgJ7FJadjZanWAM2JW07Dy0QqFnlGd2FSk7wdAqBYNxIiRlp6cJI51rr0cH80RDis5haHQwUMSk6HwbjQ4mih0pOqanWAh2MFLsadk5As0OZoqElp2PVylgqPhFyk7NULDsOAwVB1p2Dlqt4DBUZLTsfLRaoefgZ3YfpOwmszumL0WuYQdDxZGU3WR6t6odTBURKbvp/G5VPJgr3mjhTSZ4q+LBZPFCC28yw1sVD0aLghTedIq3Kh7MFjktPAexYMBwwRbi+f3jEo+Zq+Pxid1qdAJmC06KznbQ6GC0EKTofBONDiYLixQd4xaaHUwWNi0720Ozg8nCoWXn41UKGCxcUnafnzWCHcwVHi07B69WwFjh07Lz8WoFTBUmKTvB8WoFDBWAbvYe7Py47+4bf9jncfbQJOmu052983pym/aGbdyNf6eDbhJlBbxsrPfn8vbs2+EsGCm+APcSRoemCiOJgCfYZLQT8LDTxeRcT39BeJMeTBWGeGKLo8Xc1QC2/nWoyWUo113tvLVgtjB4cIMewvcWk0mea62nB9PFAyk7cB3KNdfDg/EC2OnBTvVMq2bp6GYFW3uzvdPoZk5qqjNzcs6MbrrtJiEYIr5QG6JERgcgp5h2/eNzyc9xh/hSuOEDvD6q/XMSzOaqwj1qKgwQV4+s8TdgSw4rEViuFaj2unwt4h6ddV2Hk1fcqRaY0zMSDmdMHxgXkxH7v+HUy78/0uuXXfyG7w8="), -this.addEntry("gmdl google media design library misc snackbar",function(){var a=new mxCell("Archived",new mxGeometry(0,0,358,48),"shape=rect;strokeColor=none;fillColor=#333333;fontColor=#FFFFFF;align=left;spacing=16;fontSize=13;spacingLeft=8;");a.vertex=!0;var c=new mxCell("UNDO",new mxGeometry(1,0,88,48),"text;verticalAlign=middle;align=center;fontColor=#EEFF41;fontSize=14;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-88,0);c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a], -358,48,"Snackbar")})];this.addPalette("gmdlMisc","GMDL / Misc",a||!1,mxUtils.bind(this,function(a){for(var b=0;b<e.length;b++)a.appendChild(e[b](a))}))};Sidebar.prototype.addGMDLPickersPalette=function(a){var d=[this.addDataEntry("gmdl google media design library picker date picker portrait",328,484,"Date picker (portrait)","7Zxdc6IwFIZ/DZfdSQgiXHbtx8VutzvTzvSa1SjMojCQ1rq/fhNBiz3YVsuJe5jVqSMhATyPoed9OeiI0fz5uojy+CabyNQRl44YFVmmqnfz55FMU8dlycQRF47rMv3nuFd71vL1WpZHhVyojwxwqwFPUfooq5aqoVSrtG4o4yg3bws51pv8Ok3SdJSlWbFeK6brh24vVZH9lo01cv0wa+Joki11I9cL9f5koeTz3mNeN9UHfC2zuVTFSndZJhMVVz2EG1TDYpnM4nqYF3hVY1RWDbPt2JcQ6Dd1FNojIkBE7uNHx9Xj2Hle6FcuDgwRY6EfBKY9W6j3Q7fIFiZqUZrMFnoxlVOzzTKPxsliZqLo15u6S/6YnQqhl01Ak3GUntejfmVKZXO9opCl7vZQR+7DBNzjCIR+1VbINFLJk9zZ/meoeICKBjEEIPRHUi3RmCeTienymsDV+vES3fss1yv8N8PNB3rZ7OfWdFEr3TRkxwdaHPlVZ0iBHrScEPxUbT/O8cH2LszzsGC7rDETxjpossD8TntdRLrew88s0Tt22Wp3ZmxGZNNpKRUgsz2uD8HyASx9ikpMjy5mxzHAuGgDtu5QHwfvHGA9gH3hnl+fmxtM9fyhBXXYNgNnfZ6BW4DBQAwBQGqTMgD87g4G1zqDGiQDZp6op8IQLep6miKEPQRhv6ES9rdPYJtokSHBGUBxTw6FG2xODqRRcIDigRwKzw3DHqCAUpverBgMGe8BCqjxr8ihGHLm9QAFFPZksqVG2spa/ldQS6A4lP68cxRbCWJJElpHE6CggULfpYrGDoetN9ItB6jNoRlMhMPJRAcSGii7PfJobIsQJDRQmg/Io7EtSnDQuFCq++TR2BYpSGigdD/c0X8Pzc6lSQtobIsWJDRQygfkZ43tTBkJDZT2IVU0ljj4KBygrt/YwvRAnC5VxmHTIvTpK33ruTIOG6j0N8YxYTbWk2UcNlD9v1ELpscmeWlo7CsHay37OprptprsNdNOCPoecyFB1j3Beo9nG2WCSxSaBpy+a2A9ycZhA10DTt82sJ5lo7AR0DbgZH0DOyAEQwEBTYIj6v7+ERAnS7OR2ECXgNO3CWyn2UhsoE3AyfoEJ0uzkdi01fqTZ2PblEZiA62DHhQJ2E6Ykdi0FAnQtw5sJ8xIbKB1QLdywBIIlCInARV/D+oErCfMOGyg4u9BoYD1hBmFjQcVfw8qBawnzDhsoAmAUCrQ+4QZhw00AXpQK2A9YcZhA00AusUCp0uYcdhAE0CQNQEsgUApPfeg4h+d/xhdft8H4/XN4PsqznbuQTY3ZyzjRMk73WqGLosod5r3JbODOXd8DbQesNpZapAdtlwMHXR0MZT7u1dDzzYb7hY1NBBuv/3HvIs5RMQcIlDWiy+/JlR1b/7Y0F8="), +this.addEntry("gmdl google media design library misc snackbar",function(){var a=new mxCell("Archived",new mxGeometry(0,0,358,48),"shape=rect;strokeColor=none;fillColor=#333333;fontColor=#FFFFFF;align=left;spacing=16;fontSize=13;spacingLeft=8;");a.vertex=!0;var d=new mxCell("UNDO",new mxGeometry(1,0,88,48),"text;verticalAlign=middle;align=center;fontColor=#EEFF41;fontSize=14;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(-88,0);d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a], +358,48,"Snackbar")})];this.addPalette("gmdlMisc","GMDL / Misc",a||!1,mxUtils.bind(this,function(a){for(var c=0;c<e.length;c++)a.appendChild(e[c](a))}))};Sidebar.prototype.addGMDLPickersPalette=function(a){var b=[this.addDataEntry("gmdl google media design library picker date picker portrait",328,484,"Date picker (portrait)","7Zxdc6IwFIZ/DZfdSQgiXHbtx8VutzvTzvSa1SjMojCQ1rq/fhNBiz3YVsuJe5jVqSMhATyPoed9OeiI0fz5uojy+CabyNQRl44YFVmmqnfz55FMU8dlycQRF47rMv3nuFd71vL1WpZHhVyojwxwqwFPUfooq5aqoVSrtG4o4yg3bws51pv8Ok3SdJSlWbFeK6brh24vVZH9lo01cv0wa+Joki11I9cL9f5koeTz3mNeN9UHfC2zuVTFSndZJhMVVz2EG1TDYpnM4nqYF3hVY1RWDbPt2JcQ6Dd1FNojIkBE7uNHx9Xj2Hle6FcuDgwRY6EfBKY9W6j3Q7fIFiZqUZrMFnoxlVOzzTKPxsliZqLo15u6S/6YnQqhl01Ak3GUntejfmVKZXO9opCl7vZQR+7DBNzjCIR+1VbINFLJk9zZ/meoeICKBjEEIPRHUi3RmCeTienymsDV+vES3fss1yv8N8PNB3rZ7OfWdFEr3TRkxwdaHPlVZ0iBHrScEPxUbT/O8cH2LszzsGC7rDETxjpossD8TntdRLrew88s0Tt22Wp3ZmxGZNNpKRUgsz2uD8HyASx9ikpMjy5mxzHAuGgDtu5QHwfvHGA9gH3hnl+fmxtM9fyhBXXYNgNnfZ6BW4DBQAwBQGqTMgD87g4G1zqDGiQDZp6op8IQLep6miKEPQRhv6ES9rdPYJtokSHBGUBxTw6FG2xODqRRcIDigRwKzw3DHqCAUpverBgMGe8BCqjxr8ihGHLm9QAFFPZksqVG2spa/ldQS6A4lP68cxRbCWJJElpHE6CggULfpYrGDoetN9ItB6jNoRlMhMPJRAcSGii7PfJobIsQJDRQmg/Io7EtSnDQuFCq++TR2BYpSGigdD/c0X8Pzc6lSQtobIsWJDRQygfkZ43tTBkJDZT2IVU0ljj4KBygrt/YwvRAnC5VxmHTIvTpK33ruTIOG6j0N8YxYTbWk2UcNlD9v1ELpscmeWlo7CsHay37OprptprsNdNOCPoecyFB1j3Beo9nG2WCSxSaBpy+a2A9ycZhA10DTt82sJ5lo7AR0DbgZH0DOyAEQwEBTYIj6v7+ERAnS7OR2ECXgNO3CWyn2UhsoE3AyfoEJ0uzkdi01fqTZ2PblEZiA62DHhQJ2E6Ykdi0FAnQtw5sJ8xIbKB1QLdywBIIlCInARV/D+oErCfMOGyg4u9BoYD1hBmFjQcVfw8qBawnzDhsoAmAUCrQ+4QZhw00AXpQK2A9YcZhA00AusUCp0uYcdhAE0CQNQEsgUApPfeg4h+d/xhdft8H4/XN4PsqznbuQTY3ZyzjRMk73WqGLosod5r3JbODOXd8DbQesNpZapAdtlwMHXR0MZT7u1dDzzYb7hY1NBBuv/3HvIs5RMQcIlDWiy+/JlR1b/7Y0F8="), this.addDataEntry("gmdl google media design library picker date picker portrait dark",328,484,"Date picker (portrait, dark)","7Zxdc5pAFIZ/DZfp7LKIcJnSJBdtms4kM7mmugpTFAZIjP313QVU9GCqlrPmOCWTDOwH4Puw5LycRUsEs7e7PMyi+3QsE0vcWCLI07Ss12ZvgUwSy2bx2BJfLNtm6teyb/fU8qqWZWEu5+UhHey6w2uYvMi6pC4oymXSFBRRmOnVXI7ULj9P4iQJ0iTNq1rh2PpHlRdlnv6SrRpZLbomCsfpQhVytdEcT+alfNt7zlVRc8J3Mp3JMl+qJot4XEZ1C2F7dbdIxtOo6eZ4Tl0YFnXBdN13I4FaaVToVkQARZ6iF8tW/dh1lqu/XBwp0aBadHk6L1vlk2oB0s3TuVYtTOLpXG0mcqL3WWThKJ5PtYpus6vH+Lc+qBBqWwsaj8Lkuun1My3LdKYqclmoZs+NcgcTsE8j4Lt1WS6TsIxf5db+/4WKA6goEEMAQn2kskONWTwe6ya7BG6rZaPuU5qpCvddubkmqY/zoJuUS1U0ZKcLLU681BmS0IOOG4KblOuPc7rYm8v9cLFt1hoJIyWazDGvaacPpZsj/EhjdWCbLbdHxqpHOpkUsgRk1ud1ECwXwFK3qFi36GN0nAKMiy5gVYPmPHjvAJsO7BN33Obe3GKqxg8tqMOuETi95BG4BugNxBAApDYoPcDv8WhwnSOoRXJULai3Qh9NdTVMEWT3gez3VGR//wa2UosMCc4AiidyKGxvdXMgjYIDFM/kUDi2718ACmi16Y2KwZDxC0ABPf4tORRDzpwLQAGNPZloqRW2so7/FdQCKA6tP+8dxdqCXAoKDwUFNPY2FRRmdF8/++hXd+i94cPeD6r72UwEEgpoox1yKEybCCQU0FoPyKEwbSJwUNjQWrvkUJg2EUgooLU+/on731B4LPgcOJdjIpBQQGvtkRsVpiNXJBTQWvtUUBjS3UXRHfro1WPYjy/8+UJXHBYdRpqekzYeu+KwgE569SCWEAvjwSsOC+iu35lLpfrGWaHV35lOtY6JOqdNncxwPZFtd7JCLwRdh9mQIOufYHPEq5VTwCUKTTqn59KNB8E4LKBL5/RsuvEoGIWFgDadk/HpZoQXDEV4aMpPmAd37kFgOgxGYgFdOadny02HwUgsoC3nZHz52cJgJBZdc9nJsTD9EBeJBbTqBJPepgNYJBYdSW96Vt10AIvEAlp1OplwQ8KjTMIR0FETzHsbD2BxWEBHTTDxbTyARWHhQEdNMPNtPIDFYQFNNkLq++ICWBwW0GQTzH0bD2BxWECTTSf5fb4AFocFNNmCjMk2JDzK1GUHOurg+ntw822f+LsvD++bAbX1zqp+KXURxaV8VKW66yIPM6v9His7mmvPOb+mw3Jrq0V22JH8G/SU/OPudvbvarXjflFDw/7w9T/mbcw+ImYfgbLa3Hz7TN28/eU0fwA="), this.addDataEntry("gmdl google media design library picker date picker landscape",512,304,"Date picker (landscape)","7Zxbb9owFMc/TR47+ZLrY0cvD1vXSa205wgMiRYIStJS9ulnE0OBY1pgsdeTjaoScexc/r/EnPPnBI8Ppi+3VTrP7sqRKDx+7fFBVZZN+276MhBF4TGSjzx+5TFG5L/Hbg6spau1ZJ5WYtYcM4C1A57T4km0LW1D3SwL3VBn6Vy9rcRQbvLzOC+KQVmU1WotH69esr1uqvKn2FojVi+1JktH5UI2Urmg9yeqRrwcPOZVkz7gW1FORVMtZZdFPmqytkdA9YFmIp9kehgnftuY1m3DZDP2VQL5RqtgVoQDRR6zJ4/JcaE8KUrkOVzOK9mD8hOlIiQJ41i1l7PmfQln5Uyplxb5ZCYXCzFW26zn6TCfTZSaod7UQ/5L7ZRzuayEzYdpcalHNeX8ddCjWrii/rEY2LsYaBhbwuADDFLxCCguD78xnPY0H41Ul32pb1avfUXCN3WlgVxW+7lXXZqlbIrUVVCJWnb4ocU4+trm54nqt/cxqUSRNvmz2Nn+nwgdGGaAsGg2p3O+2P6V+jtNbEa2LvmhFE1U50t94PrVA8gnzkI9i2zPLMSh+CEQX84tuerRxdV+DgDKTQBWHfRxUHtAfJZEAAjzDVO9NSKR6XaY/BO3Q0LWH35/63aIgfgPJ6tuvHa3MMRE/bmeVEzRCjtRRb3T72Uuj4WRpd5MuDuiHI9r0QDVN4d6FIgEgLhDB8I4mfimeOUDg6AEkHhERyKQkx9+EhSQ+IGOREgjODmhIwGTVnz3RERJgp8ETJZv0JGIid+DzwmYL+MLneIkhp8T2EInChNq2jmJTS7hKDEzkvETa2TWDki3ZGC2zdCTMaYbFslQQmyggWk3dFexoTEnICE2NDAp99GjMWck6NDAND1Aj8acomBDw2DeHqJHY85Z0KGBifzpTvt7aHa+63MRoBmTGHRoYGYfo79rXMfOltDAVD9Bj8Z58LzeTrdoYO6/to0Rs3EePdthY3AD8NsBzsNnO2ygH7C2lhGzcR4/22EDDYE36q3k2HxeKxqHSq6MpVVnM91UbO0z7YRgFAQA4FrkLgHqHV6sfTG7QKGNQPH7CM7DbjtsoI9A8RsJzuNuK2w4NBIofifBeeAd+jbYQCfhjKK9j8bGeeBthw2DbPB7Cc4DbztsoJdA8ZsJzgNvO2xMhffo2Th3ru2wgWZCH2oLXMfQdtgYigsYfjauY2g7bKCZ0IPyAucxdGKjXIpDX6AH9QXOY2g7bKAv0IMCA+cxtBU2PvQFelBh4DyGtsMG+gIWSgx6H0PbYQN9gT7UGLiOoe2wgb5AD4oMnMfQdthAX4Dj9wVcx9CbuaZbNtAXGFx+G1x/PcRn/3nvQ8VrO08qqwc/FlneiAfZqoYuqnTrxyV0j9PQd/zdqR6w3FnaIhsZHmYOTn2Y+eC3qGRn7xeBjTIsH9oM91/+Y97FnFjEnFigLBdff/Gn7b79g0C/AQ=="), this.addDataEntry("gmdl google media design library picker date picker landscape dark",512,304,"Date picker (landscape, dark)","7Zxdb5swFIZ/DZed/MFHuOzox8XWdVIr9RolTkAjIQLaNPv1s8FJkxynTTLs9nSjqgTGBvM+xpwXm3g8mT5fV+k8uylHovD4pceTqiybbm36nIii8BjJRx6/8Bgj8t9jV3v20nYvmaeVmDWHFGBdgae0eBRdSpdQN8tCJ9RZOlerlRjKQ34d50WRlEVZtXu5z9SfTK+bqvwlNvaIdlF7snRULmQilRv6fKJqxPPeOrdJusLXopyKplrKLIt81GRdjoDqimYin2S6GCd+l5jWXcJkXfZFArmiVTArwoEi99mjx2S5UF4UJfIazueVzEH5kVIF7aLSy1mzkT5uFyDhrJwp9dIin8zkZiHG6pj1PB3ms4lSM9SHust/q5NyLreVsPkwLc51qaacvxS6VxsX1D8UA3sTAw0HljD4AINUPAKKy+o3hsue5qORyrIr9VW77CoSvqorVcjUeW5VlmYpkyLVCipRywwPWoyD2zY/TVS/u49JJYq0yZ/E1vH/RujA0AOERbO+nNPFfmnXh4vNyEaTH0rRRHW61Hvary5AvnAW6l5ks2chDsUPgfiyb8lVjj5a+ykAKDcBaDPoelB7QHwWRwCIery4IxKZbofJP3E7xGT18Huv22EAxL87WnVj293AMGwX152KKVphR6qoT/qzzGVdGFnqw4TbJcrxuBYNUH1d1YNAxADEDToQxs7EN8UrHxgEJYDEPToSgbQJ+ElQQOIBHYmQRrBzQkcCmlZ890RESYyfBDTLV+hIDIj/CZ4T0C/jC50G8QA+J7CFThQaato7ibWXcEnCj62RWL3x6JcEdNcMHQmjnbBIghJiAwW01fDt6UdHYTYUITYU0GT76FCYHQU6FNBmB+hQmC0FNhQM+uwQHQqzp0CHAhrt49+Ev4ViQJKvie/aVKBDAZ32AN1d4TqWtYQCWu0YHQrnwezqOP2igF579ZoWEQvn0awdFga3jc9uOw9n7bCAfnv1qhYRC+fxrB0W0HC/Ml9Jls3ntVJ/Z8rSOkwyTk06meF60tjuvIJeCEZBAACuRO4ToD7h2eo9k12g0LZTfL7deVhshwX07RSfcXceF1thwaFxp/icu/PAOPRtsIDO/YRJbO/NwnlgbIcFgyzweXfngbEdFtC7U3zm3XlgbIeFaWI5OhbO3/TaYQHNO8axctcxrR0WhsFyho+F65jWDgto3hEOlzuPaWMb03k49N0Ix8udx7R2WEDfjXDA3HlMa4WFD303whFz5zGtHRbQd1sYMv90Ma0dFtB3Yxwzdx3T2mEBfTfCQXPnMa0dFtB3c3y+23VMu+47+mUBfXdy/iO5/L6Px+73wfsmU2192ao+XV1keSPuZKoquqjSjR8j0DmOQ93zWKEusNza2iAbGT5+DY79+HXvqCHZOvtZYGPakA9t/e23/5i3MccWMccWKMvNl1+I6bJv/oDMHw=="), @@ -5651,34 +5652,34 @@ this.addDataEntry("gmdl google media design library picker year picker light",32 this.addDataEntry("gmdl google media design library picker year picker dark",328,484,"Year picker (dark)","7ZjLbuIwFIafJstKviQhWdK008VcOhKVZp0hhlhj4shxC8zTzzE2lDSXIS3pKiBQ/NvHdv7P6HDi0WSze1BpmX+XGRMevfdooqTU9mqzS5gQHkE88+idRwiCj0e+dPTiQy8qU8UKfUkAsQEvqXhmVrFCpffCCVWeluZSsSVMebviQiRSSHXopT4xb9ArreQfduwpZMGMmKeZ3EIbQ8MtxZRmu87tHiS31wcmN0yrPQzZ8kzndgQlkQ3LGV/nLsyPfCumlRXWp9jXu4cLZ0C7GbRhxlP+7BGIQ/NSwTemA90JDi+jy0Kf6avDq8u1VPB1AU3BVmbOqkyXvFgbF0M31YL/NYtSCm1jKF+mYu6ifkut5QY6wGb9aGL1HuQZAkmxCiJ/OTMvhkLeByUOraaYSDV/YbX5PwLKb4ACNrMGG2NAi0EbnmVmSDcUa/iTLKEj7CWAj3CvYzR95+lHIxkdtBntDzb6eKCXcKNM9Tj/1tnPPa9+NNBGt8RPyWFlgvb1Y3+MkKtVxXTD9tPGLiIRtpEIJhK9JLDvj4Bi1oYinFD0o4jJCCii6ySC/6GIUHKb+HUUJP50FMHQfNqO4pQurooibkMRTb+KfhSj5AqM2ljEE4teFnSUZIFxCwtXlE0sOlmMki1ws9pN5j+S+29dNM69pD1poVYwmL//25xrtgDVhG6huq8VEWgw6IXb2kfx1QP2tdYZ2hlqST5Da4w3ZN3SNzhEtdVvgjGyEW7W8o9fJ8x1zPGImOMRKEPz9cmYHX7+4Owf"), this.addDataEntry("gmdl google media design library picker date picker landscape light",512,304,"Date picker (landscape, light)","7ZhNb6MwEIZ/DceubAwEjlnS9rDbdqVU2rMVnGCtg5Fxm2R//Y7BSSCQJrRB2gNEkZjxjD/exwYNDonX20dF8/RJJkw45N4hsZJSV3frbcyEcFzEE4fMHNdF8HfchzOtuGxFOVUs09ckuFXCOxVvrPJUjkLvhHUUKc3NrWIL6PL7kgsRSyFV2UqW5QX+Qiv5h9VaWHmZlpQmcgNODIYdjynNtmfnXLrshB+ZXDOtdhCy4YlOqwgf24mmjK9Sm0aQVzlpUTlWh9yjBHBjVehWhLQUeU3fHBfyAlgURrCGaa4gApOeUiEUBWFo/DLTlyXMZGbUo4KvMjAFW5o+i5wueLYyaga2qzn/awYlBGwjLF9QMbVZWubHpFdjzLB3LQb3IgYchANh8FoYQPFJS3GYvu5Y9poniQk5lfqhvE4VCT7UFftgm3FeTIjegWtidoFiBQT8tmJcvbfJ50T1qnOMFBNU83fW6P8rQvtdQnu9hd5v0wUslKm28t7M/DqU/aSMZ/amTUDfiBvarJqyxPM6tmswkLJBl7L+qOx5Ze2ovySHybho1+xmnyGXy4LpFonDXK+CM+mCE4xw+sKZuAPACW/z8L8Ep/FCtnDc6H+As/d9EQ5G4QB0oi464Xh0etPxhzg7GHXhiUY8vfGEQxwejDvw2CJtxNMDz6FEuC2edkEcT5/j+5/nANXlJR+8YhoFhykfNinXbA5ek7pRtFan2Yh+7Od2ajciahN2DauGdoLaZP2+NcoJWTv0HQ5QY/S7fce3Rd2u9F9+jJibmKMBMUcDUAbz+PGsCq9/W/sH"), this.addDataEntry("gmdl google media design library picker date picker landscape dark",512,304,"Date picker (landscape, dark)","7ZhLb+IwEMc/TY5d+ZGEcKTp47CPrkSlPVvEEGtNHDlugf30O04MTUigpCVSDzFCiscz9vj/s0ETj8br7aNmefpTJVx69N6jsVbKVE/rbcyl9AgSiUfvPEIQfD3ycGIUl6MoZ5pn5pIAUgW8MvnCK0tlKMxOOkORstw+ar6AKW+XQspYSaXLUeoT+wF7YbT6y2sjvGx2JGWJ2oARQ8etx7Xh25M5lyaX8CNXa270Dlw2IjFp5RFgl2jKxSp1YRT5lZEVlWF1iH2TAB6cCt2K0JYiz+mLRyAuhE1hBHuY5Ro8MO0pVVA2a1eZqdmXZWtJmKnMqsekWGXQlXxp5yxythDZyqoZuqnm4p9dlFLoW2HFgsmZizIqfwt6tp077F+KgbyLAYfRQBj8FgZQfNJSHNI3HdteiySxLsdSP5TtWJHwrK7YIrPrPFkXswPTxJ4CzQtw+OPEuPhs04+J6lf3GGkumRGvvDH/Z4QOuoT2ewu9P6YL2CjXZw75sbIflPHE2XQB6BslkYuqKUt9v+O4hgMpG3YpG4zKnlbWrfpbCUiGoF1zmn2EWi4LblokDrleBGfSBScc4fSFMyEDwImu8+P/HpwIxbex34RDpl8Bzt72STgYRQPQmXbRicar05tOMMTdwagLz3TE0xtPNMTlwbgDjyvSRjw98BxKhOviaRfE8exXfP/jFKC6vPTMX0yj4LDlwyYVhs/BakM3mtXqNOfRj/3cpXYloi5g1+jV0E5Qm2zQt0Y5IuuWvsEhaqx+s5/4uqjblf7T9xFzE/N0QMzTAShD9+3lWeVef7f2Hw==")]; -this.addPalette("gmdlPickers","GMDL / Pickers",a||!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addGMDLSelectionControlsPalette=function(a){var d=this,e=[this.addEntry("gmdl google media design library selection control checkbox on hover light dark",function(){var a=new mxCell("",new mxGeometry(0,0,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.checkbox;strokeColor=none;fillColor=#009587;strokeWidth=2;aspect=fixed;");a.vertex= -!0;return d.createVertexTemplateFromCells([a],16,16,"Checkbox (on, hover))")}),this.addEntry("gmdl google media design library selection control checkbox on focused pressed light dark",function(){var a=new mxCell("",new mxGeometry(0,0,48,48),"shape=ellipse;labelPosition=right;align=left;strokeColor=none;fillColor=#009587;opacity=10;");a.vertex=!0;var c=new mxCell("",new mxGeometry(16,16,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.checkbox;strokeColor=none;fillColor=#009587;strokeWidth=2;"); -c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],48,48,"Checkbox (on, focused or pressed))")}),this.addEntry("gmdl google media design library selection control checkbox on disabled light",function(){var a=new mxCell("",new mxGeometry(0,0,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.checkbox;strokeColor=none;fillColor=#B0B0B0;strokeWidth=2;aspect=fixed;");a.vertex=!0;return d.createVertexTemplateFromCells([a],16,16,"Checkbox (on, disabled, light))")}),this.addEntry("gmdl google media design library selection control checkbox on disabled focused light", -function(){var a=new mxCell("",new mxGeometry(0,0,48,48),"shape=ellipse;labelPosition=right;align=left;strokeColor=none;fillColor=#B0B0B0;opacity=10;");a.vertex=!0;var c=new mxCell("",new mxGeometry(16,16,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.checkbox;strokeColor=none;fillColor=#B0B0B0;strokeWidth=2;");c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],48,48,"Checkbox (on, disabled, focused, light))")}),this.addEntry("gmdl google media design library selection control checkbox off hover light", -function(){var a=new mxCell("",new mxGeometry(0,0,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.checkbox;strokeColor=#666666;fillColor=none;strokeWidth=2;aspect=fixed;");a.vertex=!0;return d.createVertexTemplateFromCells([a],16,16,"Checkbox (off, hover, light))")}),this.addEntry("gmdl google media design library selection control checkbox off focused pressed light",function(){var a=new mxCell("",new mxGeometry(0,0,48,48),"shape=ellipse;labelPosition=right;align=left;strokeColor=none;fillColor=#666666;opacity=10;"); -a.vertex=!0;var c=new mxCell("",new mxGeometry(16,16,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.checkbox;strokeColor=#666666;fillColor=none;strokeWidth=2;");c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],48,48,"Checkbox (off, focused or pressed, light))")}),this.addEntry("gmdl google media design library selection control checkbox off disabled light",function(){var a=new mxCell("",new mxGeometry(0,0,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.checkbox;strokeColor=#B0B0B0;fillColor=none;strokeWidth=2;aspect=fixed;"); -a.vertex=!0;return d.createVertexTemplateFromCells([a],16,16,"Checkbox (off, disabled, light))")}),this.addEntry("gmdl google media design library selection control checkbox off disabled focused light",function(){var a=new mxCell("",new mxGeometry(0,0,48,48),"shape=ellipse;labelPosition=right;align=left;strokeColor=none;fillColor=#666666;opacity=10;");a.vertex=!0;var c=new mxCell("",new mxGeometry(16,16,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.checkbox;strokeColor=#B0B0B0;fillColor=none;strokeWidth=2;"); -c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],48,48,"Checkbox (off, disabled, focused, light))")}),this.addEntry("gmdl google media design library selection control checkbox on disabled dark",function(){var a=new mxCell("",new mxGeometry(0,0,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.checkbox;strokeColor=none;fillColor=#676767;strokeWidth=2;aspect=fixed;");a.vertex=!0;return d.createVertexTemplateFromCells([a],16,16,"Checkbox (on, disabled, dark))")}), -this.addEntry("gmdl google media design library selection control checkbox on disabled focused dark",function(){var a=new mxCell("",new mxGeometry(0,0,48,48),"shape=ellipse;labelPosition=right;align=left;strokeColor=none;fillColor=#B0B0B0;opacity=10;");a.vertex=!0;var c=new mxCell("",new mxGeometry(16,16,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.checkbox;strokeColor=none;fillColor=#676767;strokeWidth=2;");c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a], -48,48,"Checkbox (on, disabled, focused, dark))")}),this.addEntry("gmdl google media design library selection control checkbox off hover dark",function(){var a=new mxCell("",new mxGeometry(0,0,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.checkbox;strokeColor=#ffffff;fillColor=none;strokeWidth=2;aspect=fixed;");a.vertex=!0;return d.createVertexTemplateFromCells([a],16,16,"Checkbox (off, hover, dark))")}),this.addEntry("gmdl google media design library selection control checkbox off focused pressed dark", -function(){var a=new mxCell("",new mxGeometry(0,0,48,48),"shape=ellipse;labelPosition=right;align=left;strokeColor=none;fillColor=#666666;opacity=10;");a.vertex=!0;var c=new mxCell("",new mxGeometry(16,16,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.checkbox;strokeColor=#ffffff;fillColor=none;strokeWidth=2;");c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],48,48,"Checkbox (off, focused or pressed, dark))")}),this.addEntry("gmdl google media design library selection control checkbox off disabled dark", -function(){var a=new mxCell("",new mxGeometry(0,0,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.checkbox;strokeColor=#666666;fillColor=none;strokeWidth=2;aspect=fixed;");a.vertex=!0;return d.createVertexTemplateFromCells([a],16,16,"Checkbox (off, disabled, dark))")}),this.addEntry("gmdl google media design library selection control checkbox off disabled focused dark",function(){var a=new mxCell("",new mxGeometry(0,0,48,48),"shape=ellipse;labelPosition=right;align=left;strokeColor=none;fillColor=#666666;opacity=10;"); -a.vertex=!0;var c=new mxCell("",new mxGeometry(16,16,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.checkbox;strokeColor=#666666;fillColor=none;strokeWidth=2;");c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],48,48,"Checkbox (off, disabled, focused, dark))")}),this.addEntry("gmdl google media design library selection control radio button on hover light dark",function(){var a=new mxCell("",new mxGeometry(0,0,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.radiobutton;strokeColor=#009587;fillColor=#009587;strokeWidth=2;aspect=fixed;"); -a.vertex=!0;return d.createVertexTemplateFromCells([a],16,16,"Radio button (on, hover))")}),this.addEntry("gmdl google media design library selection control radio button on focused pressed light dark",function(){var a=new mxCell("",new mxGeometry(0,0,48,48),"shape=ellipse;labelPosition=right;align=left;strokeColor=none;fillColor=#009587;opacity=10;");a.vertex=!0;var c=new mxCell("",new mxGeometry(16,16,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.radiobutton;strokeColor=#009587;fillColor=#009587;strokeWidth=2;"); -c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],48,48,"Radio button (on, focused or pressed))")}),this.addEntry("gmdl google media design library selection control radio button on disabled light",function(){var a=new mxCell("",new mxGeometry(0,0,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.radiobutton;strokeColor=#B0B0B0;fillColor=#B0B0B0;strokeWidth=2;aspect=fixed;");a.vertex=!0;return d.createVertexTemplateFromCells([a],16,16,"Radio button (on, disabled, light))")}), -this.addEntry("gmdl google media design library selection control radio button on disabled focused light",function(){var a=new mxCell("",new mxGeometry(0,0,48,48),"shape=ellipse;labelPosition=right;align=left;strokeColor=none;fillColor=#B0B0B0;opacity=10;");a.vertex=!0;var c=new mxCell("",new mxGeometry(16,16,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.radiobutton;strokeColor=#B0B0B0;fillColor=#B0B0B0;strokeWidth=2;");c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a], -48,48,"Radio button (on, disabled, focused, light))")}),this.addEntry("gmdl google media design library selection control radio button off hover light",function(){var a=new mxCell("",new mxGeometry(0,0,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.radiobutton;strokeColor=#666666;fillColor=none;strokeWidth=2;aspect=fixed;");a.vertex=!0;return d.createVertexTemplateFromCells([a],16,16,"Radio button (off, hover, light))")}),this.addEntry("gmdl google media design library selection control radio button off focused pressed light", -function(){var a=new mxCell("",new mxGeometry(0,0,48,48),"shape=ellipse;labelPosition=right;align=left;strokeColor=none;fillColor=#666666;opacity=10;");a.vertex=!0;var c=new mxCell("",new mxGeometry(16,16,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.radiobutton;strokeColor=#666666;fillColor=none;strokeWidth=2;");c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],48,48,"Radio button (off, focused or pressed, light))")}),this.addEntry("gmdl google media design library selection control radio button off disabled light", -function(){var a=new mxCell("",new mxGeometry(0,0,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.radiobutton;strokeColor=#B0B0B0;fillColor=none;strokeWidth=2;aspect=fixed;");a.vertex=!0;return d.createVertexTemplateFromCells([a],16,16,"Radio button (off, disabled, light))")}),this.addEntry("gmdl google media design library selection control radio button off disabled focused light",function(){var a=new mxCell("",new mxGeometry(0,0,48,48),"shape=ellipse;labelPosition=right;align=left;strokeColor=none;fillColor=#666666;opacity=10;"); -a.vertex=!0;var c=new mxCell("",new mxGeometry(16,16,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.radiobutton;strokeColor=#B0B0B0;fillColor=none;strokeWidth=2;");c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],48,48,"Radio button (off, disabled, focused, light))")}),this.addEntry("gmdl google media design library selection control radio button on disabled dark",function(){var a=new mxCell("",new mxGeometry(0,0,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.radiobutton;strokeColor=#676767;fillColor=#676767;strokeWidth=2;aspect=fixed;"); -a.vertex=!0;return d.createVertexTemplateFromCells([a],16,16,"Radio button (on, disabled, dark))")}),this.addEntry("gmdl google media design library selection control radio button on disabled focused dark",function(){var a=new mxCell("",new mxGeometry(0,0,48,48),"shape=ellipse;labelPosition=right;align=left;strokeColor=none;fillColor=#B0B0B0;opacity=10;");a.vertex=!0;var c=new mxCell("",new mxGeometry(16,16,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.radiobutton;strokeColor=#676767;fillColor=#676767;strokeWidth=2;"); -c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],48,48,"Radio button (on, disabled, focused, dark))")}),this.addEntry("gmdl google media design library selection control radio button off hover dark",function(){var a=new mxCell("",new mxGeometry(0,0,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.radiobutton;strokeColor=#ffffff;fillColor=none;strokeWidth=2;aspect=fixed;");a.vertex=!0;return d.createVertexTemplateFromCells([a],16,16,"Radio button (off, hover, dark))")}), -this.addEntry("gmdl google media design library selection control radio button off focused pressed dark",function(){var a=new mxCell("",new mxGeometry(0,0,48,48),"shape=ellipse;labelPosition=right;align=left;strokeColor=none;fillColor=#666666;opacity=10;");a.vertex=!0;var c=new mxCell("",new mxGeometry(16,16,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.radiobutton;strokeColor=#ffffff;fillColor=none;strokeWidth=2;");c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a], -48,48,"Radio button (off, focused or pressed, dark))")}),this.addEntry("gmdl google media design library selection control radio button off disabled dark",function(){var a=new mxCell("",new mxGeometry(0,0,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.radiobutton;strokeColor=#666666;fillColor=none;strokeWidth=2;aspect=fixed;");a.vertex=!0;return d.createVertexTemplateFromCells([a],16,16,"Radio button (off, disabled, dark))")}),this.addEntry("gmdl google media design library selection control radio button off disabled focused dark", -function(){var a=new mxCell("",new mxGeometry(0,0,48,48),"shape=ellipse;labelPosition=right;align=left;strokeColor=none;fillColor=#666666;opacity=10;");a.vertex=!0;var c=new mxCell("",new mxGeometry(16,16,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.radiobutton;strokeColor=#666666;fillColor=none;strokeWidth=2;");c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],48,48,"Radio button (off, disabled, focused, dark))")}),this.addEntry("gmdl google media design library selection control switch on light", -function(){var a=new mxCell("",new mxGeometry(0,0,36,20),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.switch;aspect=fixed;switchState=on;strokeColor=none;fillColor=#0E9D57;");a.vertex=!0;return d.createVertexTemplateFromCells([a],36,20,"Switch (on, light)")}),this.addEntry("gmdl google media design library selection control switch on dark",function(){var a=new mxCell("",new mxGeometry(0,0,36,20),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.switch;aspect=fixed;switchState=on;strokeColor=none;fillColor=#80CBC4;"); -a.vertex=!0;return d.createVertexTemplateFromCells([a],36,20,"Switch (on, dark)")}),this.addEntry("gmdl google media design library selection control switch off light dark",function(){var a=new mxCell("",new mxGeometry(0,0,36,20),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.switch;aspect=fixed;switchState=off;strokeColor=none;fillColor=#0E9D57;");a.vertex=!0;return d.createVertexTemplateFromCells([a],36,20,"Switch (off)")})];this.addPalette("gmdlSelection Controls","GMDL / Selection Controls", -a||!1,mxUtils.bind(this,function(a){for(var b=0;b<e.length;b++)a.appendChild(e[b](a))}))};Sidebar.prototype.addGMDLSlidersPalette=function(a){var d=[this.createVertexTemplateEntry("dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.gmdl.slider2;barPos=0;strokeColor=#bbbbbb;opacity=100;strokeWidth=2;fillColor=#ffffff;handleSize=10;shadow=0;",200,10,"","Slider (normal)",null,null,this.getTagsForStencil("mxgraph.gmdl","slider normal","gmdl google media design library slider ").join(" ")), +this.addPalette("gmdlPickers","GMDL / Pickers",a||!1,mxUtils.bind(this,function(a){for(var c=0;c<b.length;c++)a.appendChild(b[c](a))}))};Sidebar.prototype.addGMDLSelectionControlsPalette=function(a){var b=this,e=[this.addEntry("gmdl google media design library selection control checkbox on hover light dark",function(){var a=new mxCell("",new mxGeometry(0,0,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.checkbox;strokeColor=none;fillColor=#009587;strokeWidth=2;aspect=fixed;");a.vertex= +!0;return b.createVertexTemplateFromCells([a],16,16,"Checkbox (on, hover))")}),this.addEntry("gmdl google media design library selection control checkbox on focused pressed light dark",function(){var a=new mxCell("",new mxGeometry(0,0,48,48),"shape=ellipse;labelPosition=right;align=left;strokeColor=none;fillColor=#009587;opacity=10;");a.vertex=!0;var d=new mxCell("",new mxGeometry(16,16,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.checkbox;strokeColor=none;fillColor=#009587;strokeWidth=2;"); +d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],48,48,"Checkbox (on, focused or pressed))")}),this.addEntry("gmdl google media design library selection control checkbox on disabled light",function(){var a=new mxCell("",new mxGeometry(0,0,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.checkbox;strokeColor=none;fillColor=#B0B0B0;strokeWidth=2;aspect=fixed;");a.vertex=!0;return b.createVertexTemplateFromCells([a],16,16,"Checkbox (on, disabled, light))")}),this.addEntry("gmdl google media design library selection control checkbox on disabled focused light", +function(){var a=new mxCell("",new mxGeometry(0,0,48,48),"shape=ellipse;labelPosition=right;align=left;strokeColor=none;fillColor=#B0B0B0;opacity=10;");a.vertex=!0;var d=new mxCell("",new mxGeometry(16,16,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.checkbox;strokeColor=none;fillColor=#B0B0B0;strokeWidth=2;");d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],48,48,"Checkbox (on, disabled, focused, light))")}),this.addEntry("gmdl google media design library selection control checkbox off hover light", +function(){var a=new mxCell("",new mxGeometry(0,0,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.checkbox;strokeColor=#666666;fillColor=none;strokeWidth=2;aspect=fixed;");a.vertex=!0;return b.createVertexTemplateFromCells([a],16,16,"Checkbox (off, hover, light))")}),this.addEntry("gmdl google media design library selection control checkbox off focused pressed light",function(){var a=new mxCell("",new mxGeometry(0,0,48,48),"shape=ellipse;labelPosition=right;align=left;strokeColor=none;fillColor=#666666;opacity=10;"); +a.vertex=!0;var d=new mxCell("",new mxGeometry(16,16,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.checkbox;strokeColor=#666666;fillColor=none;strokeWidth=2;");d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],48,48,"Checkbox (off, focused or pressed, light))")}),this.addEntry("gmdl google media design library selection control checkbox off disabled light",function(){var a=new mxCell("",new mxGeometry(0,0,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.checkbox;strokeColor=#B0B0B0;fillColor=none;strokeWidth=2;aspect=fixed;"); +a.vertex=!0;return b.createVertexTemplateFromCells([a],16,16,"Checkbox (off, disabled, light))")}),this.addEntry("gmdl google media design library selection control checkbox off disabled focused light",function(){var a=new mxCell("",new mxGeometry(0,0,48,48),"shape=ellipse;labelPosition=right;align=left;strokeColor=none;fillColor=#666666;opacity=10;");a.vertex=!0;var d=new mxCell("",new mxGeometry(16,16,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.checkbox;strokeColor=#B0B0B0;fillColor=none;strokeWidth=2;"); +d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],48,48,"Checkbox (off, disabled, focused, light))")}),this.addEntry("gmdl google media design library selection control checkbox on disabled dark",function(){var a=new mxCell("",new mxGeometry(0,0,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.checkbox;strokeColor=none;fillColor=#676767;strokeWidth=2;aspect=fixed;");a.vertex=!0;return b.createVertexTemplateFromCells([a],16,16,"Checkbox (on, disabled, dark))")}), +this.addEntry("gmdl google media design library selection control checkbox on disabled focused dark",function(){var a=new mxCell("",new mxGeometry(0,0,48,48),"shape=ellipse;labelPosition=right;align=left;strokeColor=none;fillColor=#B0B0B0;opacity=10;");a.vertex=!0;var d=new mxCell("",new mxGeometry(16,16,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.checkbox;strokeColor=none;fillColor=#676767;strokeWidth=2;");d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a], +48,48,"Checkbox (on, disabled, focused, dark))")}),this.addEntry("gmdl google media design library selection control checkbox off hover dark",function(){var a=new mxCell("",new mxGeometry(0,0,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.checkbox;strokeColor=#ffffff;fillColor=none;strokeWidth=2;aspect=fixed;");a.vertex=!0;return b.createVertexTemplateFromCells([a],16,16,"Checkbox (off, hover, dark))")}),this.addEntry("gmdl google media design library selection control checkbox off focused pressed dark", +function(){var a=new mxCell("",new mxGeometry(0,0,48,48),"shape=ellipse;labelPosition=right;align=left;strokeColor=none;fillColor=#666666;opacity=10;");a.vertex=!0;var d=new mxCell("",new mxGeometry(16,16,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.checkbox;strokeColor=#ffffff;fillColor=none;strokeWidth=2;");d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],48,48,"Checkbox (off, focused or pressed, dark))")}),this.addEntry("gmdl google media design library selection control checkbox off disabled dark", +function(){var a=new mxCell("",new mxGeometry(0,0,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.checkbox;strokeColor=#666666;fillColor=none;strokeWidth=2;aspect=fixed;");a.vertex=!0;return b.createVertexTemplateFromCells([a],16,16,"Checkbox (off, disabled, dark))")}),this.addEntry("gmdl google media design library selection control checkbox off disabled focused dark",function(){var a=new mxCell("",new mxGeometry(0,0,48,48),"shape=ellipse;labelPosition=right;align=left;strokeColor=none;fillColor=#666666;opacity=10;"); +a.vertex=!0;var d=new mxCell("",new mxGeometry(16,16,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.checkbox;strokeColor=#666666;fillColor=none;strokeWidth=2;");d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],48,48,"Checkbox (off, disabled, focused, dark))")}),this.addEntry("gmdl google media design library selection control radio button on hover light dark",function(){var a=new mxCell("",new mxGeometry(0,0,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.radiobutton;strokeColor=#009587;fillColor=#009587;strokeWidth=2;aspect=fixed;"); +a.vertex=!0;return b.createVertexTemplateFromCells([a],16,16,"Radio button (on, hover))")}),this.addEntry("gmdl google media design library selection control radio button on focused pressed light dark",function(){var a=new mxCell("",new mxGeometry(0,0,48,48),"shape=ellipse;labelPosition=right;align=left;strokeColor=none;fillColor=#009587;opacity=10;");a.vertex=!0;var d=new mxCell("",new mxGeometry(16,16,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.radiobutton;strokeColor=#009587;fillColor=#009587;strokeWidth=2;"); +d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],48,48,"Radio button (on, focused or pressed))")}),this.addEntry("gmdl google media design library selection control radio button on disabled light",function(){var a=new mxCell("",new mxGeometry(0,0,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.radiobutton;strokeColor=#B0B0B0;fillColor=#B0B0B0;strokeWidth=2;aspect=fixed;");a.vertex=!0;return b.createVertexTemplateFromCells([a],16,16,"Radio button (on, disabled, light))")}), +this.addEntry("gmdl google media design library selection control radio button on disabled focused light",function(){var a=new mxCell("",new mxGeometry(0,0,48,48),"shape=ellipse;labelPosition=right;align=left;strokeColor=none;fillColor=#B0B0B0;opacity=10;");a.vertex=!0;var d=new mxCell("",new mxGeometry(16,16,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.radiobutton;strokeColor=#B0B0B0;fillColor=#B0B0B0;strokeWidth=2;");d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a], +48,48,"Radio button (on, disabled, focused, light))")}),this.addEntry("gmdl google media design library selection control radio button off hover light",function(){var a=new mxCell("",new mxGeometry(0,0,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.radiobutton;strokeColor=#666666;fillColor=none;strokeWidth=2;aspect=fixed;");a.vertex=!0;return b.createVertexTemplateFromCells([a],16,16,"Radio button (off, hover, light))")}),this.addEntry("gmdl google media design library selection control radio button off focused pressed light", +function(){var a=new mxCell("",new mxGeometry(0,0,48,48),"shape=ellipse;labelPosition=right;align=left;strokeColor=none;fillColor=#666666;opacity=10;");a.vertex=!0;var d=new mxCell("",new mxGeometry(16,16,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.radiobutton;strokeColor=#666666;fillColor=none;strokeWidth=2;");d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],48,48,"Radio button (off, focused or pressed, light))")}),this.addEntry("gmdl google media design library selection control radio button off disabled light", +function(){var a=new mxCell("",new mxGeometry(0,0,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.radiobutton;strokeColor=#B0B0B0;fillColor=none;strokeWidth=2;aspect=fixed;");a.vertex=!0;return b.createVertexTemplateFromCells([a],16,16,"Radio button (off, disabled, light))")}),this.addEntry("gmdl google media design library selection control radio button off disabled focused light",function(){var a=new mxCell("",new mxGeometry(0,0,48,48),"shape=ellipse;labelPosition=right;align=left;strokeColor=none;fillColor=#666666;opacity=10;"); +a.vertex=!0;var d=new mxCell("",new mxGeometry(16,16,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.radiobutton;strokeColor=#B0B0B0;fillColor=none;strokeWidth=2;");d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],48,48,"Radio button (off, disabled, focused, light))")}),this.addEntry("gmdl google media design library selection control radio button on disabled dark",function(){var a=new mxCell("",new mxGeometry(0,0,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.radiobutton;strokeColor=#676767;fillColor=#676767;strokeWidth=2;aspect=fixed;"); +a.vertex=!0;return b.createVertexTemplateFromCells([a],16,16,"Radio button (on, disabled, dark))")}),this.addEntry("gmdl google media design library selection control radio button on disabled focused dark",function(){var a=new mxCell("",new mxGeometry(0,0,48,48),"shape=ellipse;labelPosition=right;align=left;strokeColor=none;fillColor=#B0B0B0;opacity=10;");a.vertex=!0;var d=new mxCell("",new mxGeometry(16,16,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.radiobutton;strokeColor=#676767;fillColor=#676767;strokeWidth=2;"); +d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],48,48,"Radio button (on, disabled, focused, dark))")}),this.addEntry("gmdl google media design library selection control radio button off hover dark",function(){var a=new mxCell("",new mxGeometry(0,0,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.radiobutton;strokeColor=#ffffff;fillColor=none;strokeWidth=2;aspect=fixed;");a.vertex=!0;return b.createVertexTemplateFromCells([a],16,16,"Radio button (off, hover, dark))")}), +this.addEntry("gmdl google media design library selection control radio button off focused pressed dark",function(){var a=new mxCell("",new mxGeometry(0,0,48,48),"shape=ellipse;labelPosition=right;align=left;strokeColor=none;fillColor=#666666;opacity=10;");a.vertex=!0;var d=new mxCell("",new mxGeometry(16,16,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.radiobutton;strokeColor=#ffffff;fillColor=none;strokeWidth=2;");d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a], +48,48,"Radio button (off, focused or pressed, dark))")}),this.addEntry("gmdl google media design library selection control radio button off disabled dark",function(){var a=new mxCell("",new mxGeometry(0,0,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.radiobutton;strokeColor=#666666;fillColor=none;strokeWidth=2;aspect=fixed;");a.vertex=!0;return b.createVertexTemplateFromCells([a],16,16,"Radio button (off, disabled, dark))")}),this.addEntry("gmdl google media design library selection control radio button off disabled focused dark", +function(){var a=new mxCell("",new mxGeometry(0,0,48,48),"shape=ellipse;labelPosition=right;align=left;strokeColor=none;fillColor=#666666;opacity=10;");a.vertex=!0;var d=new mxCell("",new mxGeometry(16,16,16,16),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.radiobutton;strokeColor=#666666;fillColor=none;strokeWidth=2;");d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],48,48,"Radio button (off, disabled, focused, dark))")}),this.addEntry("gmdl google media design library selection control switch on light", +function(){var a=new mxCell("",new mxGeometry(0,0,36,20),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.switch;aspect=fixed;switchState=on;strokeColor=none;fillColor=#0E9D57;");a.vertex=!0;return b.createVertexTemplateFromCells([a],36,20,"Switch (on, light)")}),this.addEntry("gmdl google media design library selection control switch on dark",function(){var a=new mxCell("",new mxGeometry(0,0,36,20),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.switch;aspect=fixed;switchState=on;strokeColor=none;fillColor=#80CBC4;"); +a.vertex=!0;return b.createVertexTemplateFromCells([a],36,20,"Switch (on, dark)")}),this.addEntry("gmdl google media design library selection control switch off light dark",function(){var a=new mxCell("",new mxGeometry(0,0,36,20),"dashed=0;labelPosition=right;align=left;shape=mxgraph.gmdl.switch;aspect=fixed;switchState=off;strokeColor=none;fillColor=#0E9D57;");a.vertex=!0;return b.createVertexTemplateFromCells([a],36,20,"Switch (off)")})];this.addPalette("gmdlSelection Controls","GMDL / Selection Controls", +a||!1,mxUtils.bind(this,function(a){for(var b=0;b<e.length;b++)a.appendChild(e[b](a))}))};Sidebar.prototype.addGMDLSlidersPalette=function(a){var b=[this.createVertexTemplateEntry("dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.gmdl.slider2;barPos=0;strokeColor=#bbbbbb;opacity=100;strokeWidth=2;fillColor=#ffffff;handleSize=10;shadow=0;",200,10,"","Slider (normal)",null,null,this.getTagsForStencil("mxgraph.gmdl","slider normal","gmdl google media design library slider ").join(" ")), this.createVertexTemplateEntry("dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.gmdl.slider2;barPos=50;strokeColor=#3F51B5;opacity=100;strokeWidth=2;fillColor=#3F51B5;handleSize=10;shadow=0;",200,10,"","Slider (normal)",null,null,this.getTagsForStencil("mxgraph.gmdl","slider normal","gmdl google media design library slider ").join(" ")),this.createVertexTemplateEntry("dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.gmdl.slider2;barPos=100;strokeColor=#3F51B5;opacity=100;strokeWidth=2;fillColor=#3F51B5;handleSize=10;shadow=0;", 200,10,"","Slider (normal)",null,null,this.getTagsForStencil("mxgraph.gmdl","slider normal","gmdl google media design library slider ").join(" ")),this.createVertexTemplateEntry("dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.gmdl.sliderFocused;barPos=0;strokeColor=#bbbbbb;opacity=100;strokeWidth=2;fillColor=#ffffff;handleSize=30;shadow=0;",200,30,"","Slider (focused)",null,null,this.getTagsForStencil("mxgraph.gmdl","slider focused","gmdl google media design library slider ").join(" ")), this.createVertexTemplateEntry("dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.gmdl.sliderFocused;barPos=50;strokeColor=#3F51B5;opacity=100;strokeWidth=2;fillColor=#3F51B5;handleSize=30;shadow=0;",200,30,"","Slider (focused)",null,null,this.getTagsForStencil("mxgraph.gmdl","slider focused","gmdl google media design library slider ").join(" ")),this.createVertexTemplateEntry("dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.gmdl.sliderFocused;barPos=100;strokeColor=#3F51B5;opacity=100;strokeWidth=2;fillColor=#3F51B5;handleSize=30;shadow=0;", @@ -5698,7 +5699,7 @@ this.createVertexTemplateEntry("dashed=0;verticalLabelPosition=bottom;verticalAl 200,10,"","Discrete slider (normal, dark)",null,null,this.getTagsForStencil("mxgraph.gmdl","discrete slider normal dark","gmdl google media design library slider ").join(" ")),this.createVertexTemplateEntry("dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.gmdl.sliderDiscreteDots;barPos=0;bright=0;strokeColor=#0F9D58;opacity=100;strokeWidth=2;fillColor=#0F9D58;handleSize=10;shadow=0;fontSize=12;fontColor=#ffffff;",200,45,"","Discrete slider (click, dark)",null,null, this.getTagsForStencil("mxgraph.gmdl","discrete slider click dark","gmdl google media design library slider ").join(" ")),this.createVertexTemplateEntry("dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.gmdl.sliderDiscreteDots;barPos=60;bright=0;strokeColor=#0F9D58;opacity=100;strokeWidth=2;fillColor=#0F9D58;handleSize=10;shadow=0;fontSize=12;fontColor=#ffffff;",200,45,"","Discrete slider (click, dark)",null,null,this.getTagsForStencil("mxgraph.gmdl","discrete slider click dark", "gmdl google media design library slider ").join(" ")),this.createVertexTemplateEntry("dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.gmdl.sliderDiscreteDots;barPos=100;bright=0;strokeColor=#0F9D58;opacity=100;strokeWidth=2;fillColor=#0F9D58;handleSize=10;shadow=0;fontSize=12;fontColor=#ffffff;",200,45,"","Discrete slider (click, dark)",null,null,this.getTagsForStencil("mxgraph.gmdl","discrete slider click dark","gmdl google media design library slider ").join(" "))]; -this.addPalette("gmdlSliders","GMDL / Sliders",a||!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addGMDLSteppersPalette=function(a){var d=[this.addDataEntry("gmdl google media design library tab stepper",704,478,"Stepper","7Zhvj5sgHIA/je/5o619uXO9y5KtW7LtA3gTKxkVg+zWfvuhQK8W2dwOlt1ykqb6U1CeBxBMcHE43omya97xirAEbxNcCM6l3jscC8JYggCtEvw6QQioX4JuPWfheBZ0pSCtXJIB6QwPJftGdEQHenliJtA3ZTfsCvJFFXnTS8G/koIzLlSw5a06d1NTxmwoQbgeNxU3pRMhydH7hGPIPN4d4QcixUld8p1WstFXrEGqszWE7huTLV3nOlj2OrA/532ssNoxdZ6vP3bqD70AVE7a9WQhgxTl2W06xHkr/5gN+iUbNIPGxgRhpaQP05rN4TJ3+MCpujECx2kxp+mhLYDXdU+kQ/v8mIsEpI6AXXkgKsLr0QLp1J/fydJGaUIlo/tWHTJSS6PmoykUBlQCQDQn2Sq+k2z5oMDoyLWigwjK2xG1GEBcOVEt/35M4TDDOcqbVRDMGE4wZzEwr6KMvffVkMJRzizRS8xwA4JgXoEp5jwC5rWDuXi/+/Rm93kbAvcwzNd/YZiHALkacJjGfmUBrVEEDbmr4dWu2L4NIeEM+0pCDob0PCRASz2qhY1jwT/o/N58Z0OG9D/Nd7B91wY1YN9aP5/xPP1V4J/xXMgpx+1Zznwi2YGOHfzSQTwdJLWDR1gF7pp0poP4rbx0kKh23BWz18Q/tzjIgnC+WhtgOxd+Cmd1+PjRR19++U3oBw=="), +this.addPalette("gmdlSliders","GMDL / Sliders",a||!1,mxUtils.bind(this,function(a){for(var c=0;c<b.length;c++)a.appendChild(b[c](a))}))};Sidebar.prototype.addGMDLSteppersPalette=function(a){var b=[this.addDataEntry("gmdl google media design library tab stepper",704,478,"Stepper","7Zhvj5sgHIA/je/5o619uXO9y5KtW7LtA3gTKxkVg+zWfvuhQK8W2dwOlt1ykqb6U1CeBxBMcHE43omya97xirAEbxNcCM6l3jscC8JYggCtEvw6QQioX4JuPWfheBZ0pSCtXJIB6QwPJftGdEQHenliJtA3ZTfsCvJFFXnTS8G/koIzLlSw5a06d1NTxmwoQbgeNxU3pRMhydH7hGPIPN4d4QcixUld8p1WstFXrEGqszWE7huTLV3nOlj2OrA/532ssNoxdZ6vP3bqD70AVE7a9WQhgxTl2W06xHkr/5gN+iUbNIPGxgRhpaQP05rN4TJ3+MCpujECx2kxp+mhLYDXdU+kQ/v8mIsEpI6AXXkgKsLr0QLp1J/fydJGaUIlo/tWHTJSS6PmoykUBlQCQDQn2Sq+k2z5oMDoyLWigwjK2xG1GEBcOVEt/35M4TDDOcqbVRDMGE4wZzEwr6KMvffVkMJRzizRS8xwA4JgXoEp5jwC5rWDuXi/+/Rm93kbAvcwzNd/YZiHALkacJjGfmUBrVEEDbmr4dWu2L4NIeEM+0pCDob0PCRASz2qhY1jwT/o/N58Z0OG9D/Nd7B91wY1YN9aP5/xPP1V4J/xXMgpx+1Zznwi2YGOHfzSQTwdJLWDR1gF7pp0poP4rbx0kKh23BWz18Q/tzjIgnC+WhtgOxd+Cmd1+PjRR19++U3oBw=="), this.addDataEntry("gmdl google media design library tab editable steps",704,72,"Editable Steps","5VfRbpswFP0aHhcZm5DkNcnal1aq1Ic9u3ABqwYj43bk72djk4ZBVqpgbdKwEtnH9uX6HPsAATmU7b2kdfEoUuAB+R6QgxRC2VrZHoDzACOWBuQYYIz0L8B3V3rDrhfVVEKl5kzAdsI75W9gEQs06sQd0BS0NlUJiQ65b5QUr3AQXEgNVqLSffuMcd5DASZZd2ncRQepoL2aYQe59O5BlKDkSQ/5yVJV2BEbFNlpBbC8cNM2LlXa2HZ+nvqxXl1xS55ePhkt/xm4WSdGCS1ryvLKkAFKsSpvrlKjg7K6gZnsRHi7vosMLip1gaPu0jinL8CfRMMUE5Vh3i56T7nJhxw5ZJ0SNU10Wg9d6xgiF/HZ5RfO5R9/yj+eoL/HJHCq2DsMwk9p4u7wJFhl+G2HYU7DZh9AZJlmfyTpOc1ZKkefb/KUNgWY4YbFXtayzc3BXOVlyleQMj/bn0zT7yag1XpA0Ll9IU+IxvL02I3yfBvevW8uKs96vgdxVo1PmWb8pSvLbfidP0YxigeUktADpfGI0oMEqsDcxzgaTfVfLsVbvZCn7cAUL57273sY+U1SLya2WcLEkgKS16kDdLYs2/PD8Ybn8h/fbmLYn4kN5fFiYtv/ysSiGPk3sd2IUuLZrb724P6rnrOOt/49p98tf3yO3Pi54KB577YXWm2RKctpFU69RS0l1g4vLpZufnwm2uGXX5G/AA=="), this.addDataEntry("gmdl google media design library tab noneditable non editable steps",704,72,"Non-editable Steps","5VdNb5wwEP01HLMyNuzHdXebXFIpUg49OzCAFYORcVL239fGZgMFukQFVVWwdoXHnvHMe/az8Mgprx8kLbPvIgbukW8eOUkhlH3L6xNw7mHEYo+cPYyR/nn4fmLUb0ZRSSUUao4Dtg7vlL+BtVhDpS7cGaqMluZVQqRDHislxSucBBdSGwtR6LFjwjhvTR4mSfNou4sOUkE9mWFjcuk9gMhByYue8pPFKrMzdiiwbhmwNHNuO5cqrWw/vbp+1KtfXMnj5ZNB+c/ATZ0YRTQvKUsLAwYoxYq0moRGB2VlBTPRCfA+vA+MXRSqY0fNo+2cvgB/EhVTTBQGeVv0kXKTDzlzSBomShrptB6b3tlHc/HGN/HGI3C3NgmcKvYOvfBjHLgVngQrDJ51P8yl320DiCTRaA8ovKY5i9Xg9qaOaZWBmW5Qa2nM69QcxE2ax3wTZRC9Dhjtbm478sPBhufCT8bhdw5oE/YAuvY79Ph4SI+PFqHnbttb/S5cgZ5wvuZwVgxPlebgpWnLbfgDWg1RjPqQEn8FSLcDSKcxXUasPifx/1RyyG8MrKI5uwEDJwlUgVnH3CE01n+pFG/lX1+wrWni9rh9SxjPZ7e+vyCFaOQULcUhQetzuP9SwhRs+5CuIkyHAaRkIWE6gGn/tTCF2/36m7rdLX9UpmUUaZ7ydLjaI9OW48r311Og8IAXJ0t3Pz717PTul+Av"), this.addDataEntry("gmdl google media design library tab mobile step text",358,642,"Mobile step (text)","3Zhdj6IwFIZ/DZeaQvnQS8VxLvYjm51Jdu82HSkfmUJJ6c7q/vottCAIjKiwMxmMxh562vI+ffWABt14f89QGn6hHiYavNOgyyjl8lu8dzEhmgEiT4MbzTCAeGvGtuesXpwFKWI44UMSDJnwgshvLCMykPEDUQEPZSHOuwMNrrMQpXmc4Z0Yf+1HhLiUUFZ0hetN/sq7cUafcXkmoYnIWaupMON437vcIqTWeo9pjDk7iC5/Io+Hsge0FjItxFEQqjTbVAtHmQwEVe7x6sUXJUC3GLAlhi7WsoLgIk0QiYIkb8rVnWoEoe1s7D6NfJrwWudtceSdU7SLkuC7umLzGHqkqQjoKvdBrRGU7ehv3tShaDOcidYPpaQ+lIhxHRHDlDGGCeLRC26Mfwsl88otG++D3GbzIPbInNP01xNiN21V2C1MM+GgXDi3ZLsmm2m3VdMvVU3N/41GYlnV5LOl0Zh+5jRHoL6fYd5SvbqKQSCsFgiXYcTxRW7pdkHTMqaxsLZm5w6u7XEDnPePNMtSBHK20Q6RlXIrz89U3iXY58esz0Vr4xgTW8ayb4N/aDpvVNj2GK5LGfaxkGmHs4Ho/eIYqrt1VvdSm4bnbpR93xympAAmoOC0KDxwnIqIuCxAffFhj+4+38pf59xX/MOcuA8Ux0ju0+2J3WcuRnHfYgruiw732YQXioj5wHrlfnpH4O3i6OAcR56XL29i1IdGwn8CP1vaE5Bftsh/vfv5KKmLPRDwSqqxyKvQhNDLyvikqB2OfTGk8qph1wEYH3tZalWDj8pdB1f+4V5g8Or3edw7g7dxXznOuBT0McqeJ7R7biGpFzd9XGRGyWVw+Sn3Tq8/wLws3V+5OdG7CqWRbk6cxuyT3JvoAx5slKxEZpRm+F0R+viA2g9begF1/qS9JR3no+ERzeMzR9m9/kjyHw=="), @@ -5709,7 +5710,7 @@ this.addDataEntry("gmdl google media design library tab noneditable non editable this.addDataEntry("gmdl google media design library tab mobile vertical stepper",358,642,"Mobile vertical stepper","7VrZcpswFP0aHpMREov9mDhJpzNt2mm6PHYUI4ymYinIrd2vr4SAgAUxDqJNM4WJg65WztHR1YKFVvHuVY6z6G0aEGahawut8jTl6inerQhjFgQ0sNCVBSEQfxa8GYi1y1iQ4ZwkfEwGqDL8wGxLlEUZCr5nlSHARURkcmChyyLCmbTnZC3KvwwpY6uUpXmZFIXlJZPxPP1G6pgkTUSey6oqknOyG2xuaara+oqkMeH5XiT5SQMeqRTIXahsEaGbqMrmOVXDcaEMmybvw9uLhwqAfjCQBoYt2nKBwEmYYEY3iQyq1h1ihJDnX3lDGIVpwluJb8pLJs7wmiabD9UbOw+mj2kmDHaV965qI6jD9JcM2kiEc1KI0JcKSXssI/BpjEBH2XLCMKc/SKf8KSw5T+yy8W4jZXa+iQN2ztPs6z3OJ3VV1A9MN8O+UuG5q8It2BxPR80+FbWq/vcpFc1qKj9bwk71Z363hDQMC8I11Ju3GEWEqxGxygnm5CS19KugKxkHLtwbp7cHt/o4BMf1o8SyFAbJLV1jdlGplcuYRruMhPwh15sydOXDmSXjetPI33eVZ5Rsz4TqspyERMC0JsVI6huPMgp39yjuNTYdzU2EfdctpmYBzMCCr7FwR5gUkqgnkT9ZZkmqkA1KzDzGK1GIyHUDq/d9KycYIgFallfb5G3k/7ttHONcKkvUHoqfhJBAsFsVKRqqSlWptb5Q0y+aT7OCnCr0AxmD8hJ2hu8Je58WlNO07WMf1W2JRcRjZtbr9XWlk51ef1eqi6m6kg3gDH1pYULR64isv2ns6lPBeswePYT6jzrXxp0+4l5t2CN1YMa9dqV+5s5Az/I4PTUjjJZiCqj0qUoYSZpLHHRe7svbnApqRNsoIzMoo+4UykZz+LW6/S2ch4E2M5qd5tOe1UDkzzEQ2bZGwSpNQrrZ5qR0bJjtxVytEM+hwBACHtGidnYDTI2dXVamA//RXkmZ9BigRyyGmHK9P8HUiO2C5zooQX8xx6gEwSyjkr4VMbmrS5wDeRvs0H7fEtYQ0B44AHoxB9D6bsLq3e3H17efrk0ALl1A+AdcQDND7LhhM+uaAx4cMMfCxu7ZTLi4XV2/McFCg/YBCwsg73+DhWZAn5cGfZmPBhk4bTa0JPJ+SbMhZzHLiHR0jR+oiVCMlUkGExyTOmqbUD5ZNcPzovboFsj7n5wfzcSdvqZ2/stnQD7u4ZGNGQr0dfNnSn5KCgjfZjJlIvDelnPS4r9OjuhkHpKgvugeZOLZrSNm2dxwa89rFmd9Za3hPPVwptmbNXu8uO9kOHZy4kxcctQbec4cXqEGfdpO6z0+stE6xMsTN2CHTuKbHVg4Ygu277TF0Amn36l9lgPOng8CTvbmf5Ohl0/QiG8BHh3S/iY7/kujRwQfPlxSydvfNf0G"), this.addDataEntry("gmdl google media design library tab stepper alternative label placing",404,50,"Stepper with alternative label placing","1ZbfboIwFMafpvelxamXyqZXu9oTdPYozQolpTrd0+8A9Q8pJCY6dDRo+x1O0/OjXyjhSbZfWlGk70aCJvyN8MQa45petk9Aa8KokoS/EsYo3oQteqJRHaWFsJC7axJYk7ATegutKUp30F4pU1FUXcxURYm9+drk7kP9VGLEcFw6a74gMdpYlHKT1w8prY8SYTxmk9Ei9skX+rq+UBdabXLUVrh0wOB8B9apldAzH8iUlNWa5n7NGIZ9b9215ItegsnA2QM+4hP4pMn4VtKlHkXcSCmoTeramiib8eY00ZkpdjzWbsQ8QDyTON7myuGfBCeULnuhW1i5EFosq6Yv3wO/5j146RaAB18VDQBGlHYQpLcTjAOCvbi0qgtsg0Bgn3W7z94Z+5I8iXEIIuoAEd0BxCgA0U/iNrdOoWrP4tZoGu62v7LrS7ddSwT4j1x6TBix1l4d0rXj53LtySvD23YSkOCPsu09Pp0xG8yM04BcYkE4qKbNqx85rCWHPaPQeCjz4vB85qxjrSPpLw=="), this.addDataEntry("gmdl google media design library tab stepper alternative label placing optional",404,50,"Stepper with alternative optional label placing","zZbNcoMgEMefxmNnFMzXMTFtTz21L0CFKFMEi6RN+vRdFJM46DSdJE7CROG/gOwPdocAJ8XuWZMyf1GUiQA/BjjRSpmmVuwSJkSAQk4DvA4QCuEfoKcBa1Rbw5JoJs05A1Az4IuILetMUZm9cEqVk9JWYSQvK6itKqPVB0uUUBp0qaQVN1yIVgoQjtF88hRbXUlzom/qn9Nf+Y+dOULQJoJnEhopLJ1B59UX04anRCydoeCU2jWt3JrBzHaDfteSc/qZqYIZvYcubgCeNyO+OTW5QxE3Us54lpuuRqqmnR0mOjKFisPajxh7iJcU2lvJDbwoM4SLahC6ZqnxIcbUFnGKEJ+zL066BODeeRV6AKMw7CEYXk4w9ggO4hJc+gcUgL3X5TpnZ+ZcciRmPoioB0R0BRATD8Qwif9F64LZcq/RGi3803arcJ32h2sFvkOUghXDTlqvpqINzM4GTD+3qjU8VDWxJXSIonJ3NIKQHiAfxfaYnkjTzL5VabiSRLRfBSeaDzfmv7LHuXkhN4WwG9yznUaV56ehkqRcZm92yPohvtIZmKBO2I2ZgGb3lYAOYT9+Bpp7JPAtMtBpphnKSNe4BcRotLyy8MglmhHD7LTSPui4d4Bxr1thPFbwQvN4fa5tndv1Lw==")]; -this.addPalette("gmdlSteppers","GMDL / Steppers",a||!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addGMDLTabsPalette=function(a){var d=[this.addDataEntry("gmdl google media design library tab fixed tab bar",358,642,"Fixed tab bar","3Zlbb9owFMc/TR5Bdhxuj4VCN2kdVVepj5ObOBfVkMjxOtinnx07kJCkDeDQSyQkfOLjOOfnv304WGi22twwnIS3sUeoheYWmrE45urbajMjlFo2iDwLXVu2DcTHshcNd2F2FySYkTVv42ArhxdM/xBlUYaUb6k2eDgNiewOLDRNQ5xIOyOuGH/qR5TOYhqzrCvys0t24yx+JvmddbwWPlP9KMI42TRONzPpud6QeEU424oufyOPh6oHGoyVW0iiINRuQ0dPHKfKEOx8928vvugA1AcDVYIBxVyuEDgqJphGwVo21ewOYwTAFZg6TTHy4zUvdF5kl+ycYDdaB/f6jZ296SFOhAFq3196jiBvR/9kEyLRZiQVrUcdSdiWiH0aEdtRNkYo5tELKY1/DiXnxCW72gRSZv1g5dE+j5PfT5idtVRRfWDKDlutwv5AtQthc4bVqMFjo6affxdHYlq7h/cmdunxvVF5hNj3U8IrUd+9RSsQgwqIOxwQYeERFySO0Uy9Fg6FM51lC7+6jgsr3QZvq0hJZiIMknDkYnqlNcvlnZ2CKfH53utH1roe2R0LB4Iz18C2LECjzIcmxJcw4hMRJ5ekLdnvDpZWgR+8Gfg8NqW4D41ILx8mpwA6oDCqUPj+ML8VluXPeYWHiBSvOQ2aNHIoiVXkeXKonSpcEWfCTj9PGuhsSw4FVhBOqrCcsRGN9PJxjOIZN+F5eFxeDo8ceCm3Li5fdgyME9vkRxtCpSVfgzBXwadBOGlE+O1+fkGNXQ7icPQWxE+nQwhOPK2OyEoWcDEdL957NzQDAXXBAJrIGFKCmRtWkBQzgyIXjUp1zpG0ztteV0oNkro83kwy0RsOus8m4KlFgANEnIss+aIZXSOSQXdEcrF1SqRaiTC+cYHsMl4WaNy4an/rfOzjw0il4Qm7z603riKXE3cv+HpZAvTt8pZSV5mAdT+PDFUmymlGJ4UJWK1MVMDlrIRnlKTkQxH6+oBalBFe3dLek87oq+ERzf0fDqp78f+I/w=="), +this.addPalette("gmdlSteppers","GMDL / Steppers",a||!1,mxUtils.bind(this,function(a){for(var c=0;c<b.length;c++)a.appendChild(b[c](a))}))};Sidebar.prototype.addGMDLTabsPalette=function(a){var b=[this.addDataEntry("gmdl google media design library tab fixed tab bar",358,642,"Fixed tab bar","3Zlbb9owFMc/TR5Bdhxuj4VCN2kdVVepj5ObOBfVkMjxOtinnx07kJCkDeDQSyQkfOLjOOfnv304WGi22twwnIS3sUeoheYWmrE45urbajMjlFo2iDwLXVu2DcTHshcNd2F2FySYkTVv42ArhxdM/xBlUYaUb6k2eDgNiewOLDRNQ5xIOyOuGH/qR5TOYhqzrCvys0t24yx+JvmddbwWPlP9KMI42TRONzPpud6QeEU424oufyOPh6oHGoyVW0iiINRuQ0dPHKfKEOx8928vvugA1AcDVYIBxVyuEDgqJphGwVo21ewOYwTAFZg6TTHy4zUvdF5kl+ycYDdaB/f6jZ296SFOhAFq3196jiBvR/9kEyLRZiQVrUcdSdiWiH0aEdtRNkYo5tELKY1/DiXnxCW72gRSZv1g5dE+j5PfT5idtVRRfWDKDlutwv5AtQthc4bVqMFjo6affxdHYlq7h/cmdunxvVF5hNj3U8IrUd+9RSsQgwqIOxwQYeERFySO0Uy9Fg6FM51lC7+6jgsr3QZvq0hJZiIMknDkYnqlNcvlnZ2CKfH53utH1roe2R0LB4Iz18C2LECjzIcmxJcw4hMRJ5ekLdnvDpZWgR+8Gfg8NqW4D41ILx8mpwA6oDCqUPj+ML8VluXPeYWHiBSvOQ2aNHIoiVXkeXKonSpcEWfCTj9PGuhsSw4FVhBOqrCcsRGN9PJxjOIZN+F5eFxeDo8ceCm3Li5fdgyME9vkRxtCpSVfgzBXwadBOGlE+O1+fkGNXQ7icPQWxE+nQwhOPK2OyEoWcDEdL957NzQDAXXBAJrIGFKCmRtWkBQzgyIXjUp1zpG0ztteV0oNkro83kwy0RsOus8m4KlFgANEnIss+aIZXSOSQXdEcrF1SqRaiTC+cYHsMl4WaNy4an/rfOzjw0il4Qm7z603riKXE3cv+HpZAvTt8pZSV5mAdT+PDFUmymlGJ4UJWK1MVMDlrIRnlKTkQxH6+oBalBFe3dLek87oq+ERzf0fDqp78f+I/w=="), this.addDataEntry("gmdl google media design library tab fixed tab bar",358,642,"Fixed tab bar","3Zlbb9owFMc/TR5Bdhxuj4VCN2kdVVepj5ObOBfVkMjxOtinnx07kJCkBOrQSyQkfOLjOOfnv304WGi22twwnIS3sUeoheYWmrE45urbajMjlFo2iDwLXVu2DcTHshcNd2F2FySYkTVv42ArhxdM/xBlUYaUb6k2eDgNiewOLDRNQ5xIOyOuGH/qR5TOYhqzrCvys0t24yx+JvmddbwWPlP9KMI42TRONzPpud6QeEU424oufyOPh6oHGoyVW0iiINRuQ0dPHKfKEOx8928vvugA1AcDVYIBxVyuEDgpJphGwVo21ewOYwTAFZg6TTHy4zUvdF5kl+ycYDdaB/f6jZ296SFOhAFq3196jiBvR/9kEyLRZiQVrUcdSdiWiH0eEdtRNkYo5tELKY3/FkrOmUt2tQmkzPrByqN9Hie/nzB701JF9YEpO2y1CvsD1S6EzRlWowZPjZp+/l0ciWntHt6b2KXH90blEWLfTwmvRH33Fq1ADCog7nBAhIVHXJA4RTP1WjgUznSWLfzqOi6sdOQcV5GSTA/KrpJx5GJ6pVW7ijxPzngnY0p8vnf9kbWuR3bH6oFD8LaFsC2r0Cj4oQkFJoz4RMTJJWnLBbA7XVoFfnA08HlsynE3or98mJwC6IDCqELh+8P8VliWP+cVHiJSvOZIaBLKUVW4Is6EnX+oNNDZlhwKrCCcVGE5YyMa6eXjGMUzbsLz8Li8HB458FJuXVy+7BgYJ7bJzzeESku+BmGugk+DcNKI8Nv9/IIauxzE4egYxE+nQwjOPK1OSE0WcDEdL957NzQDAXXBAJrIGFKCmRtWkBQzgyIXjUp1zpG0ztteV0oNkrpk3kwy0RsOus8m4LmVgANEnIss+aIZXSOSQXdEcrF1SqRajjC+cYHsMl4baNy4an/rfOzjw0i54Qm7z603riKXM3cv+HptAvTt8pZSV56AdT+PDJUnymlGJ9UJWC1PVMDlrIRnlKTkQxH6+oBalBFe3dLek87oq+ERzf2/Dqp78U+J/w=="), this.addDataEntry("gmdl google media design library tab fixed tab bar",358,642,"Fixed tab bar","3ZdNb6MwEIZ/DcdGgElCjwsNbQ/drLqVevbCBKwajIzbTfbX18YmTZagoITSD0uR8HjG9rxPxgYLhfn6muMyu2MJUAstLBRyxoR+ytchUGq5NkksdGW5ri1/lht1jDr1qF1iDoXoE+DqgBdMn0FbtKESG2oMCa4yUO62hYIqw6Wyc4jl/MGKUBoyynjtilZ1U26CsydoRgpWyJjALAVcwLpzu7XJ7PUaWA6Cb6TLX5KITHugqa/DMiBpZsJmntk4rrQh3ca+ZS8fjACHxUDniXEw6f8Usu0gvPKknUNF/sGjScvpK497mjyesXGgWJAX2Jv/HMm8lmS3D4s7aVn+XLTEk4nVfxpWiN8yeZU3Mv0diaK6SbuSgsSY/qAkLeRYTpJETRVgY4ilLMBPFxMdFnOzF7AjreNcDiCtWfAXI3If29UumnmaELZaVSBaLLb77IVn2oXn4XE5Hh418bLEMREqWd8enJgJsCfIlHA3QnMefh2Es06EN/eLEWtsPIiz+TGIX64O5+9/s0ROFPjRRx+GwzBA74DAH+NyV23wy70TwTBX/Zh1cHkihHydqlfkSZondPIHx08tIrtvn11YdESDxe2LxT9yXjW37KYxTNvF4rVBOWcWi1n/Yv+0bLqDYnPs49waVDKSlBV8JkDfn4/Tn8/B8+wD4cy/Gx3Zfft+1+67n/ev"), this.addDataEntry("gmdl google media design library tab fixed tab bar",358,642,"Fixed tab bar","3Zldb5swFIZ/DZeJbEwIvUzSpJu0rlVbqZeTCw5YNRgZr03262fzkUCAjiaQdiWKFB/OAfM+PsfGMdAi3FwJHAfX3CPMQEsDLQTnMvsVbhaEMcME1DPQpWGaQH0Nc9VyFqZnQYwFiWSXADMLeMHsN8ksmSGRW5YbPJwERLsDA82TAMfaLoirrj9fU8YWnHGRuqJ1emg3KfgzKc5EPFIx8/xWREiyae1uasr7ekV4SKTYKpdX6skg80ATJwsLCPWDPMy28o7jJDP4u9j906sfuQDNYqCaGFD1ZYbAuzTBjPqRbma9O9QIgBmYW20arXkkS86r9NDOMXZp5N/lT2ztTQ88VgaYx97nfQRFm/7RTYhUW5BEtR5zJWFXIuZxREwrswnCsKQvpHL9UyhZRw7ZcOPrNBv7ocfGkse/nrA4aaiiZmGqAds8C8eTrF2SzbLrqsH3qpbf/5ZT1a3dzUcXZuX2o2n1Cny9Toisqb57ik4gJqfVjubxf5gs80U62M87diE4EcO2mgO9ym7XZL8nWLiBst0SHivpdc23cRinKoFbhl2SHJEjIRY+je4yWhradWpQbk5HfPv5IMAefy3VqZLTIj0O6pVVKqSMrOW+3v1IW5dT8/hRMTl2jhmook37qGhJNggOwSiBZ5f6c0AnB5Y5FwqaXRW0mxV8o9jBpmJn91LsTKda65wBks7pA9ELpy7pTKhs7xdT5xkKgsGgjSwwPLWLGrXvD8trZbn5uazxU0LKhlVT24pMS09dzGZ5lQqp5+lL7cqWqzAQ0XuV2lYCyrDgRZ2W5fQykY2sIfAUw6vO5+Hx5nx89IVv9OQi9dM6oHdkmyLDEKqM+QaGZkPGfW6GsJXht7vlGbPsfBTt6b8o/n+ZeOI+QJfF4Aqu5s7qo+thPxDQEAzq2w+9MwDp0fv7VCuDxnX0586EXrYXnrD73LTQ270QtXE5cqEH396LAOPiZf2txZ5VR9XXdkS1Yg6yGwE7bEcUrFQkjZPGpfiHEfr6gOobF62AGkvaR9KZfjU8qrn/lyFzL/8J8Rc="), @@ -5721,111 +5722,111 @@ this.addDataEntry("gmdl google media design library tab desktop tab bar",758,152 this.addDataEntry("gmdl google media design library tab desktop tab bar",758,152,"Desktop tab bar","3Zldj6IwFIZ/DZdOSgHBS1F0TNbR7Gx2rokUaLaCKd1Z3V+/5XPAQkQtbiKJiZz2lPI+Pf04KNpsf1xS9xCuYw8RRXMUbUbjmOX/9scZIkSBAHuKNlcgBPynwEVHqZqVgoNLUcT6OMDc4dMlv1FuyQ0JO5HC4LlJiNLqQNHsJHQPqZ2iHW/f9jEhs5jENKuq+dmVVmM0/oXKkiiOuI9dPApRho6d3c1MRV+XKN4jRk+8yh/ssTCvYRpW7hYiHISlm1F03E1yQ1D5fr09/1MI0C6GJlUMAKbA1rvEoCjBf9FH8VpqX3ngbfJoxZtQRFyGP1Gj/Xsk02+UbH8M0jH/Euw98nIUROLyTe35whlXJaVSsK9SWrtSTYeabipsGVXXylY8bxtj3o3qYSNo5i6nooGzFmLfTxATZK963YuEcZnE2Xi9RvL62L4mnK+moLVQAHIoGJMmBW0ACuP+FAjOZPz/A18XJZc07idqQ/HzFqQobgqKb90AcQvDjEt+zQTeOlELs7o9m+utE3hueS1lTE1+HLF3bkz5geK+1tgiu9InH9wdjoIf8YEXTLghZYx3LpkSHETcxtIS2y3uCPLZl9e37G5u9h4hNy4iKrwzEE/NxUjqMLBkLEQHinzEddqhpOdwqHY8vYQ3LwoPW4JRHUuJxrKZMhjBABQmAoUPxxZAcIlYMzj4XNwdHOexsMeelzZVhcOOC4zonRBODYd6LLQg0S0pSMZWA8mobFYqk3L5rEF5f91st6u35ePIpA1v0umKpe9qgaFgqaBl4pJES9XhI3CpAq6fq7mzeX8+WJPhWEEDPIKVeHxeradL5wlZDTgLavpDpkHxdP/mfDwhKWs8GCm93FUNS0pMKqw3353nIzVgTBngITHVI+lwedfNKHajgIiH4Qtb7rhCZPZGlI+tS6fjQjTwYgjMyt1UnZkhBdlIPVuyhshPqD0SFPcekRfqwrYWgwUNbAkaKQDOd+OD6C+mK26ImAS5dBe2JY+q4GhJ2N2YT+oA1J1Pall/JB1hR6bRQDTIGVaVkkrg/WA4Ch6aR+hEYgxHBFrSifDbrw9gefX697F/"), this.addDataEntry("gmdl google media design library tab desktop tab bar overflow",758,152,"Desktop tab bar with overflow","7Zldb5swFIZ/DZetwIZALksS2krrUrVdu1sUDFhzMAK3S/brZ/PVEGCFxDBtaqRI4djnYN7nHGM7Clxsd9eJG4d31ENEgSsFLhJKWf5ru1sgQhSgYk+BSwUAlX8V4HS0almrGrsJilgfB5A7vLnkFeWW3JCyPSkMnpuGSHRXFWinoRsLe4I2PL7tY0IWlNAk6wr97CO6sYT+QGVLRCPuYxe3QglDu87hZqZirNeIbhFL9rzLT+yxMO9hGlbuFiIchKWbUQzcTXNDUPm+Pz3/UQjQLgaUKoaqXqm23iVGglL8C70Uj6X1lQecJg8sniRBxGX4DdXinyOZfqJk210gcv4y2HrkctcQict3ZS+d1axqKZUCfZWC7UrVHQ5000BLVg2VrbjfPcV8GNXNLoCZu+yLAEcRqO+niDVkr0bdi4TxMYmjfB0i+WFuDynnwRRgCwVVDgVjXqcAR6Aw60+B4EzGv5/4elNySXk/12qKH0eQorjZUPzeDRC3MMy45EMm8NaJujGr24ul3jqB55abUkZh8mnEHrlR8FOL64NgTvYRd47dDY6CJxrzhjk3CMZ445IrgoOI25hosd3iiiCfvXt9ya6WZu8MOfElooEzC3FffxlJTQNLxosoTpCPuE4blPZMh2rF00t480PhQUsxajMp1ViGKYtRHYHCvEHh9ml1xy3rr6sGD64Uq9cIn5K7a+S4JLbY80Soqio2XGeUnMliX3M4nCbVWRONbklBM7NqaC7KsFLZlK/RJpynl/V0cETgtZi4mHhaS/0XeWmmPgUwrRPYzcNqwnr6H5ABS50CWXM/XSBz1t8ePokNIQat2RTEmpv+ktjt82eNDSKmz8EUxJpnDgWxx9vvn8CGADPmkyw8ehxNfLw2f43bNsvV+tvDYhOHqWCU0leh3qkb6A5CdYdOXi20ZB0j6UflBcdYwms9jjDO3UQ7mmNbzrQVIwXB8UJ9jCMkrXmicUK5pMhNNuEfS6blTG/Mijkk1FYkcna5F6ZRQzTKNleTctrAx8FwFEx61NCJxBiPCLCkE+GX7/+R5d0P/0L7DQ=="), this.addDataEntry("gmdl google media design library tab desktop tab bar overflow",758,152,"Desktop tab bar with overflow","7Zldb5swFIZ/DZetwIZALksS2krrUrVdu1sUDFhzMAK3S/brZ/PVEGCFxDBtaqRI4djnYN7nHGM7Clxsd9eJG4d31ENEgSsFLhJKWf5ru1sgQhSgYk+BSwUAlX8V4HS0almrGrsJilgfB5A7vLnkFeWW3JCyPSkMnpuGSHRXFWinoRsLe4I2PL7tY0IWlNAk6wr97CO6sYT+QGVLRCPuYxe3QglDu87hZqZirNeIbhFL9rzLT+yxMO9hGlbuFiIchKWbUQzcTXNDUPm+Pz3/UQjQLgaUKoaqXqm23iVGglL8C70Uj6X1lQecJg8sniRBxGX4DdXinyOZfqJk210gcv4y2HrkctcQict3ZS+d1axqKZUCfZWC7UrVHQ5000BLVg2VrbjfPcV8GNXNLoCZu+yLAEcRqO+niDVkr0bdi4TxMYmjfB0i+WFuDynnwRRgCwVVDgVjXqcAR6Aw60+B4EzGv5/4elNySXk/12qKH0eQorjZUPzeDRC3MMy45EMm8NaJujGr24ul3jqB55abUkZh8mnEHrlR8FOL64NgTvYRd47dDY6CJxrzhjk3CMZ445IrgoOI25hosd3iiiCfvXt9ya6WZu8MOfElooEzC3FffxlJTQNLxosoTpCPuE4blPZMh2rF00t480PhQUsxajMp1ViGKYtRHYHCvEHh9ml1xy3rr6sGD64Uq9cIn5K7a+S4JLbY80Soqio2XGeUnMliX3M4nCbVWRONbklBM7NqaC7KsFLZlK/RJpynl/V0cETgtZi4mHhaS/0XeWmmPgUwrRPYzcNqwnr6H5ABS50CWXM/XSBz1t8ePokNIQat2RTEmpv+ktjt82eNDSKmz8EUxJpnDgWxx9vvn8CGADPmkyw8ehxNfLw2f43bNsvV+tvDYhOHqWCU0leh3qkb6A5CdYdOXi20ZB0j6UflBcdYwms9jjDO3UQ7mmNbzrQVIwXB8UJ9jCMkrXmicUK5pMhNNuEfS6blTG/Mijkk1FYkcna5F6ZRQzTKNleTctrAx8FwFEx61NCJxBiPCLCkE+GX7/+R5d0P/0L7DQ==")]; -this.addPalette("gmdlTabs","GMDL / Tabs",a||!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addGMDLTextFieldsPalette=function(a){var d=this,e=[this.addDataEntry("gmdl google media design library text field single line text field",346,360,"Single-line text field","7Zhbb5swFMc/yx54bORLSsnjcqsq9TJt1frsBgNWDI6M1yb79LPBJBCHNllCtVUBheBjH1/+Pzi28fAoXV5LskjuREi5hyceHkkhVHmXLkeUcw8BFnp47CEE9M9D05ZcWOSCBZE0U/s4oNLhhfBftLSUhlytuDWEJE+oKQ48PMwTsjB2SWe6/mHEOB8JLmRRFEfFYYopKea0lkOLo6wgFK/aCHXCNk6losvWARQm2/trKlKq5EoXeWWhSsoSuO+XbgllcWLdsF+OHJC8NMRr340e+sZKslse7MgzFGKeEjk3FYchDb84eumxGGnMqNiM8K+cxZnOSVkY8kKBBZmxLDYS+EZCkakf7LdxRrBK29pMWtJc5z7Z0e6tGvo71SrRJOVEsRfaqP8YJfuOkvckpW3iWY1uaaTqOtUeqACYs6kfxBvXR7HQFv/DBcSHCmib+CaYbhmBVVkiCJoeIopyqhzB1x3bi8GlwwAC3V0wJqtc/4lIX25mGgoYSUrSNjh1xf3GA43a0VWPNHBRguL4X0lBeNkBKv/9uFyFYs4yug65dfEycUuezZRSpNpD8mlltw6gB/q+7XSdBOy7JNCJSPRBBySuHBJTwUMqz6GrDYPvd4AhaJ2JTeh6Jq08ztGqAWeAO4AzeD9a7VxFpsvYrHx7cRrynpKMZDGnTqzKRBHgttaaV8Cc+6oevBmsoBOnIHARXB5HwLZ1UcX2ikgXQKruH0zkPJlYLAh2sQKD0OHyfXL38HOyT/TCO3YHW8EJ4mA6RdtTCXhrO0KsYaZZ6FntOF4rr+V9Gux4nw7ea+wmdbG90TsNKXdnPBnfPH4STk2HD6VWhUEYgEbrHWF0d/Djh/vP8rr9AxgHHVDUyc0XsLJ4/QPZHw=="), -this.addEntry("gmdl google media design library text field single line text field normal light dark",function(){var a=new mxCell("Hint text",new mxGeometry(0,0,346,30),"text;fontColor=#808080;fontSize=16;verticalAlign=middle;strokeColor=none;fillColor=none;");a.vertex=!0;var c=new mxCell("",new mxGeometry(0,25,346,10),"dashed=0;shape=line;strokeWidth=1;noLabel=1;strokeColor=#eeeeee;opacity=50;");c.vertex=!0;return d.createVertexTemplateFromCells([a,c],346,35,"Single-line text field (normal)")}),this.addEntry("gmdl google media design library text field single line text field hover light dark", -function(){var a=new mxCell("Hint text",new mxGeometry(0,0,346,30),"text;fontColor=#808080;fontSize=16;verticalAlign=middle;strokeColor=none;fillColor=none;");a.vertex=!0;var c=new mxCell("",new mxGeometry(0,25,346,10),"dashed=0;shape=line;strokeWidth=1;noLabel=1;strokeColor=#cccccc;opacity=50;");c.vertex=!0;return d.createVertexTemplateFromCells([a,c],346,35,"Single-line text field (hover)")}),this.addEntry("gmdl google media design library text field single line text field press light dark",function(){var a= -new mxCell("Input text",new mxGeometry(0,0,346,30),"text;fontColor=#808080;fontSize=16;verticalAlign=middle;strokeColor=none;fillColor=none;opacity=50;");a.vertex=!0;var c=new mxCell("",new mxGeometry(0,25,346,10),"dashed=0;shape=line;strokeWidth=2;noLabel=1;strokeColor=#0C8CF2;opacity=50;");c.vertex=!0;return d.createVertexTemplateFromCells([a,c],346,35,"Single-line text field (press)")}),this.addEntry("gmdl google media design library text field single line text field focus light",function(){var a= -new mxCell("Input text",new mxGeometry(0,0,346,30),"text;fontColor=#000000;fontSize=16;verticalAlign=middle;strokeColor=none;fillColor=none;");a.vertex=!0;var c=new mxCell("",new mxGeometry(0,25,346,10),"dashed=0;shape=line;strokeWidth=2;noLabel=1;strokeColor=#0C8CF2;opacity=50;");c.vertex=!0;return d.createVertexTemplateFromCells([a,c],346,35,"Single-line text field (focus, light)")}),this.addEntry("gmdl google media design library text field single line text field normal light",function(){var a= -new mxCell("Input text",new mxGeometry(0,0,346,30),"text;fontColor=#000000;fontSize=16;verticalAlign=middle;strokeColor=none;fillColor=none;");a.vertex=!0;var c=new mxCell("",new mxGeometry(0,25,346,10),"dashed=0;shape=line;strokeWidth=1;noLabel=1;strokeColor=#eeeeee;");c.vertex=!0;return d.createVertexTemplateFromCells([a,c],346,35,"Single-line text field (normal, light)")}),this.addEntry("gmdl google media design library text field single line text field error light",function(){var a=new mxCell("Input text", -new mxGeometry(0,0,346,30),"text;fontColor=#000000;fontSize=16;verticalAlign=middle;strokeColor=none;fillColor=none;");a.vertex=!0;var c=new mxCell("",new mxGeometry(0,25,346,10),"dashed=0;shape=line;strokeWidth=2;noLabel=1;strokeColor=#ff0000;");c.vertex=!0;var e=new mxCell("Username or Password is incorrect",new mxGeometry(0,30,346,25),"text;fontColor=#ff0000;fontSize=12;verticalAlign=middle;strokeColor=none;fillColor=none;");e.vertex=!0;return d.createVertexTemplateFromCells([a,c,e],346,55,"Single-line text field (error, light)")}), -this.addEntry("gmdl google media design library text field single line text field disabled",function(){var a=new mxCell("Input text",new mxGeometry(0,0,346,30),"text;fontColor=#808080;fontSize=16;verticalAlign=middle;strokeColor=none;fillColor=none;");a.vertex=!0;var c=new mxCell("",new mxGeometry(0,25,346,10),"shape=line;strokeWidth=1;noLabel=1;strokeColor=#B3B3B3;dashed=1;dashPattern=1 4;");c.vertex=!0;return d.createVertexTemplateFromCells([a,c],346,35,"Single-line text field (disabled)")}),this.addEntry("gmdl google media design library text field single line text field focus dark", -function(){var a=new mxCell("Input text",new mxGeometry(0,0,346,30),"text;fontColor=#ffffff;fontSize=16;verticalAlign=middle;strokeColor=none;fillColor=none;");a.vertex=!0;var c=new mxCell("",new mxGeometry(0,25,346,10),"dashed=0;shape=line;strokeWidth=2;noLabel=1;strokeColor=#0C8CF2;opacity=50;");c.vertex=!0;return d.createVertexTemplateFromCells([a,c],346,35,"Single-line text field (focus, dark)")}),this.addEntry("gmdl google media design library text field single line text field normal dark",function(){var a= -new mxCell("Input text",new mxGeometry(0,0,346,30),"text;fontColor=#999999;fontSize=16;verticalAlign=middle;strokeColor=none;fillColor=none;");a.vertex=!0;var c=new mxCell("",new mxGeometry(0,25,346,10),"dashed=0;shape=line;strokeWidth=1;noLabel=1;strokeColor=#cccccc;opacity=50;");c.vertex=!0;return d.createVertexTemplateFromCells([a,c],346,35,"Single-line text field (normal, dark)")}),this.addEntry("gmdl google media design library text field single line text field error dark",function(){var a=new mxCell("Input text", -new mxGeometry(0,0,346,30),"text;fontColor=#ffffff;fontSize=16;verticalAlign=middle;strokeColor=none;fillColor=none;");a.vertex=!0;var c=new mxCell("",new mxGeometry(0,25,346,10),"dashed=0;shape=line;strokeWidth=2;noLabel=1;strokeColor=#ff0000;");c.vertex=!0;var e=new mxCell("Username or Password is incorrect",new mxGeometry(0,30,346,25),"text;fontColor=#ff0000;fontSize=12;verticalAlign=middle;strokeColor=none;fillColor=none;");e.vertex=!0;return d.createVertexTemplateFromCells([a,c,e],346,55,"Single-line text field (error, dark)")}), +this.addPalette("gmdlTabs","GMDL / Tabs",a||!1,mxUtils.bind(this,function(a){for(var c=0;c<b.length;c++)a.appendChild(b[c](a))}))};Sidebar.prototype.addGMDLTextFieldsPalette=function(a){var b=this,e=[this.addDataEntry("gmdl google media design library text field single line text field",346,360,"Single-line text field","7Zhbb5swFMc/yx54bORLSsnjcqsq9TJt1frsBgNWDI6M1yb79LPBJBCHNllCtVUBheBjH1/+Pzi28fAoXV5LskjuREi5hyceHkkhVHmXLkeUcw8BFnp47CEE9M9D05ZcWOSCBZE0U/s4oNLhhfBftLSUhlytuDWEJE+oKQ48PMwTsjB2SWe6/mHEOB8JLmRRFEfFYYopKea0lkOLo6wgFK/aCHXCNk6losvWARQm2/trKlKq5EoXeWWhSsoSuO+XbgllcWLdsF+OHJC8NMRr340e+sZKslse7MgzFGKeEjk3FYchDb84eumxGGnMqNiM8K+cxZnOSVkY8kKBBZmxLDYS+EZCkakf7LdxRrBK29pMWtJc5z7Z0e6tGvo71SrRJOVEsRfaqP8YJfuOkvckpW3iWY1uaaTqOtUeqACYs6kfxBvXR7HQFv/DBcSHCmib+CaYbhmBVVkiCJoeIopyqhzB1x3bi8GlwwAC3V0wJqtc/4lIX25mGgoYSUrSNjh1xf3GA43a0VWPNHBRguL4X0lBeNkBKv/9uFyFYs4yug65dfEycUuezZRSpNpD8mlltw6gB/q+7XSdBOy7JNCJSPRBBySuHBJTwUMqz6GrDYPvd4AhaJ2JTeh6Jq08ztGqAWeAO4AzeD9a7VxFpsvYrHx7cRrynpKMZDGnTqzKRBHgttaaV8Cc+6oevBmsoBOnIHARXB5HwLZ1UcX2ikgXQKruH0zkPJlYLAh2sQKD0OHyfXL38HOyT/TCO3YHW8EJ4mA6RdtTCXhrO0KsYaZZ6FntOF4rr+V9Gux4nw7ea+wmdbG90TsNKXdnPBnfPH4STk2HD6VWhUEYgEbrHWF0d/Djh/vP8rr9AxgHHVDUyc0XsLJ4/QPZHw=="), +this.addEntry("gmdl google media design library text field single line text field normal light dark",function(){var a=new mxCell("Hint text",new mxGeometry(0,0,346,30),"text;fontColor=#808080;fontSize=16;verticalAlign=middle;strokeColor=none;fillColor=none;");a.vertex=!0;var d=new mxCell("",new mxGeometry(0,25,346,10),"dashed=0;shape=line;strokeWidth=1;noLabel=1;strokeColor=#eeeeee;opacity=50;");d.vertex=!0;return b.createVertexTemplateFromCells([a,d],346,35,"Single-line text field (normal)")}),this.addEntry("gmdl google media design library text field single line text field hover light dark", +function(){var a=new mxCell("Hint text",new mxGeometry(0,0,346,30),"text;fontColor=#808080;fontSize=16;verticalAlign=middle;strokeColor=none;fillColor=none;");a.vertex=!0;var d=new mxCell("",new mxGeometry(0,25,346,10),"dashed=0;shape=line;strokeWidth=1;noLabel=1;strokeColor=#cccccc;opacity=50;");d.vertex=!0;return b.createVertexTemplateFromCells([a,d],346,35,"Single-line text field (hover)")}),this.addEntry("gmdl google media design library text field single line text field press light dark",function(){var a= +new mxCell("Input text",new mxGeometry(0,0,346,30),"text;fontColor=#808080;fontSize=16;verticalAlign=middle;strokeColor=none;fillColor=none;opacity=50;");a.vertex=!0;var d=new mxCell("",new mxGeometry(0,25,346,10),"dashed=0;shape=line;strokeWidth=2;noLabel=1;strokeColor=#0C8CF2;opacity=50;");d.vertex=!0;return b.createVertexTemplateFromCells([a,d],346,35,"Single-line text field (press)")}),this.addEntry("gmdl google media design library text field single line text field focus light",function(){var a= +new mxCell("Input text",new mxGeometry(0,0,346,30),"text;fontColor=#000000;fontSize=16;verticalAlign=middle;strokeColor=none;fillColor=none;");a.vertex=!0;var d=new mxCell("",new mxGeometry(0,25,346,10),"dashed=0;shape=line;strokeWidth=2;noLabel=1;strokeColor=#0C8CF2;opacity=50;");d.vertex=!0;return b.createVertexTemplateFromCells([a,d],346,35,"Single-line text field (focus, light)")}),this.addEntry("gmdl google media design library text field single line text field normal light",function(){var a= +new mxCell("Input text",new mxGeometry(0,0,346,30),"text;fontColor=#000000;fontSize=16;verticalAlign=middle;strokeColor=none;fillColor=none;");a.vertex=!0;var d=new mxCell("",new mxGeometry(0,25,346,10),"dashed=0;shape=line;strokeWidth=1;noLabel=1;strokeColor=#eeeeee;");d.vertex=!0;return b.createVertexTemplateFromCells([a,d],346,35,"Single-line text field (normal, light)")}),this.addEntry("gmdl google media design library text field single line text field error light",function(){var a=new mxCell("Input text", +new mxGeometry(0,0,346,30),"text;fontColor=#000000;fontSize=16;verticalAlign=middle;strokeColor=none;fillColor=none;");a.vertex=!0;var d=new mxCell("",new mxGeometry(0,25,346,10),"dashed=0;shape=line;strokeWidth=2;noLabel=1;strokeColor=#ff0000;");d.vertex=!0;var f=new mxCell("Username or Password is incorrect",new mxGeometry(0,30,346,25),"text;fontColor=#ff0000;fontSize=12;verticalAlign=middle;strokeColor=none;fillColor=none;");f.vertex=!0;return b.createVertexTemplateFromCells([a,d,f],346,55,"Single-line text field (error, light)")}), +this.addEntry("gmdl google media design library text field single line text field disabled",function(){var a=new mxCell("Input text",new mxGeometry(0,0,346,30),"text;fontColor=#808080;fontSize=16;verticalAlign=middle;strokeColor=none;fillColor=none;");a.vertex=!0;var d=new mxCell("",new mxGeometry(0,25,346,10),"shape=line;strokeWidth=1;noLabel=1;strokeColor=#B3B3B3;dashed=1;dashPattern=1 4;");d.vertex=!0;return b.createVertexTemplateFromCells([a,d],346,35,"Single-line text field (disabled)")}),this.addEntry("gmdl google media design library text field single line text field focus dark", +function(){var a=new mxCell("Input text",new mxGeometry(0,0,346,30),"text;fontColor=#ffffff;fontSize=16;verticalAlign=middle;strokeColor=none;fillColor=none;");a.vertex=!0;var d=new mxCell("",new mxGeometry(0,25,346,10),"dashed=0;shape=line;strokeWidth=2;noLabel=1;strokeColor=#0C8CF2;opacity=50;");d.vertex=!0;return b.createVertexTemplateFromCells([a,d],346,35,"Single-line text field (focus, dark)")}),this.addEntry("gmdl google media design library text field single line text field normal dark",function(){var a= +new mxCell("Input text",new mxGeometry(0,0,346,30),"text;fontColor=#999999;fontSize=16;verticalAlign=middle;strokeColor=none;fillColor=none;");a.vertex=!0;var d=new mxCell("",new mxGeometry(0,25,346,10),"dashed=0;shape=line;strokeWidth=1;noLabel=1;strokeColor=#cccccc;opacity=50;");d.vertex=!0;return b.createVertexTemplateFromCells([a,d],346,35,"Single-line text field (normal, dark)")}),this.addEntry("gmdl google media design library text field single line text field error dark",function(){var a=new mxCell("Input text", +new mxGeometry(0,0,346,30),"text;fontColor=#ffffff;fontSize=16;verticalAlign=middle;strokeColor=none;fillColor=none;");a.vertex=!0;var d=new mxCell("",new mxGeometry(0,25,346,10),"dashed=0;shape=line;strokeWidth=2;noLabel=1;strokeColor=#ff0000;");d.vertex=!0;var f=new mxCell("Username or Password is incorrect",new mxGeometry(0,30,346,25),"text;fontColor=#ff0000;fontSize=12;verticalAlign=middle;strokeColor=none;fillColor=none;");f.vertex=!0;return b.createVertexTemplateFromCells([a,d,f],346,55,"Single-line text field (error, dark)")}), this.addDataEntry("gmdl google media design library text field single line text field icon normal light",346,35,"Single-line text field with icon (normal, light)","1ZbfT4MwEMf/Gh5dSjtQH3X+eNFo4oPPddygsVBSqjL/enu0zjG6jUyNkYWkvfbo3ee+3IjYrGyvNa+LW5WBjNhlxGZaKeNGZTsDKSNKRBaxi4hSYu+IXm1ZjbtVUnMNlRnjQJ3DK5cv4CzO0Jil9Iam4DUONcztI88bo9UzzJRU2horVdm184WQcsPkHwzaQLs1uM7kI7sGVYLRS7vlTWSmcDvY1EdUgMgL78YSZ+ONm+cr169U7cBnG86c7c88400BuJ1g3h5D2eZYrUleZnJiQEJduIT3gokoS7trLB0aprP0hZ14Cmu04nQIyyuAaJDciFfoHRci6E+8V8IGsjruKCZ9F7VYNGAGyFeBjqrCdFCF+w7nZiksJhTfQlUmhBPtD+IdN8c4R7BizuWZFHmFRRNZJkcVyZvwvLuaz4XB9BPyzZJ5h2QaqNhJQN9ke3XG6js5UN9SrKn50QcaW0ulbvgTdqhu1gdpa3GZ4u9nOXnp0ZDQA9g2FXoItnSA7VY9Cfn3ilQ/rkaa0AHXU/I7ajw+UI1GC17lHahd+tvTbTOBf15CIfhGvWCy4wCmOwHGPZUG+3EAZ/K9dtx+tuP+O3LEfqE7n/zjHrJS9/YmEhL7AT3ETr8+2Bzl9e+5Dw=="), this.addDataEntry("gmdl google media design library text field single line text field icon focus light",342,35,"Single-line text field with icon (focus, light)","zZZRb4IwEMc/DY+a0gpzj0OnLzNZsoc9d+OEZoWaUh3u06+lnVMpypxLBiEp1x69+92fg4BMinou6SpfiBR4QO4DMpFCKDsq6glwHmDE0oBMA4yRvgI865gNm1m0ohJK1ccBW4cN5WuwFmuo1JY7Q5XTlRlKeNWPTColxRtMBBdSG0tR6rlkyTg/MrkHg1RQdwbXmFxkcxAFKLnVS95ZqnK7goxcRDmwLHduJLI2Wtn7bOf6naoeuGz9mZPzmae0ysEsRyZvh6GoM1OtYVakfKiAwyq3CZ8FE2ASzm6T2bQvHeyns3WFHToKe7TCuA3LKQBJ4FSxDRxs5yPodnwUTAey224QokMXsVxWoFrId4H2qsKoVYU4Qq1CaEhGektRqj2YqDmc/Yl9mMUaAEkMVvZK+R1nWWlKxtKU9yrRT7TbUR3nEI08xRl7pIy6C9FXytGFUuZsT7jPLlCdU1KKB/pimtE0bFG7loqPODmVYZ+mPdiOxXgJtriFbSFemCbWT35Jc/5T+eEIt0Deor+R382F8lOS0TJryJwSnL+Txs2h7SkzHyYmDOlKrE2y/QDGJwGGB7L09loPzuh3rbb+arWHL8WA/EHnHV+zaYTnm8Z9bM4rq7u7a/jEfkHT0LffP2OW8v6/2ic="), this.addDataEntry("gmdl google media design library text field single line text field icon normal light",342,35,"Single-line text field with icon (normal, light)","3ZZNU4MwEIZ/Dcd2QtKgHrV+XHTGGQ+e07KFjIF0Qlqpv96ExFoktFjtQWGYSTZZsvvs2y0RmRb1nWLL/EGmICJyE5GpklK7UVFPQYgII55G5DrCGJknwrc9q3GzipZMQamHOGDnsGZiBc7iDJXeCG+ocra0QwVz88qrSiv5AlMppDLGUpZm7WrBhfhi8i8GpaHuDa4x+cjuQBag1cZseeWpzt0OMvER5cCz3LsR6myscvNs6/qZqhn4bMOZk8OZp6zKwW5HNm+PoagzW61xVqRirEHAMncJHwQTYZI011A6OExn4ws79hR2aMVJF5ZXAFIgmOZraB0XIuhPfJTcBLI9bhSjtotcLCrQHeTbQAdVYdKpQkLRiFI6ik3pOxUxtKwGF7LUO1RRc3n7E3+zm2NL2fLlcyYuBc9KWzuepmJQrb4j4p4yeQc6CVTpPKBp1F+RoZqmR2pa8B0FP/tAY2Mp5T2b2a7UzNrUDPibxN6/y8nLDYfEHcD2VZXHYEs62B7kjBti/0B+mOIOyAt0GvmdHSk/rTgrs4bMPsEdaKkpt/9QXFrSlVzZZIcBTPYCjFuyDDbdAE76s55bf/Tc9o9iRE7Qgs//cNPYqru/a4TEfkTTMNPPrzJHefej7R0="), this.addDataEntry("gmdl google media design library text field single line text field icon normal dark",342,35,"Single-line text field with icon (normal, dark)","1ZZRT8IwEMc/zR4lXcsAHwWVF01IfPC5sGNr7Nalqzr89LZrRcY6mAgxNiFpr7317nf/HQvILKvmkhbpo4iBB+QuIDMphLKzrJoB5wFGLA7IbYAx0r8A33fshvUuKqiEXPVxwNbhjfJXsBZrKNWGO0OZ0sJMJaz0I6elkuIFZoILqY25yPXedM043zO5B4NUUHUGV5tcZHMQGSi50UfeWaxSe4IMXUQpsCR1biSyNlradbJ1/U5VT1y2/szJ8cxjWqZgjiOTt8OQVYmp1iDJYj5QwKFIbcJHwQSYrOrRlw7209m4wg4chR1a4agNyykASeBUsTdoXOcj6G5cCKYD2V53FaKmi1ivS1At5NtAe1Vh2KrCosa5XwqNyYhvLXK1g3NcD2d/Yh/msEZApgYsW1F+w1mSm6KxOOa9ivQT9XbUxzlEQ095Jh4xo+5S9BVzdKKYOduR7rMLNNSWXDzQpWlH9apJTYOP6nFeTk5n2KdqD7Z9OZ6CbdTC9iiWjP+9/ERBV0wZIhE6D2Uc4RbXa3QZNY5PVKOSjOZJDeqQ/o601piZfyomDPhSvJpk+wEcHQQYNlTqbb4enNHvem/11Xub78gVuUArnvzjHrJVd3cT8Yn9hB6il99fZ5by7sfbJw=="), this.addDataEntry("gmdl google media design library text field single line text field icon focus dark",342,35,"Single-line text field with icon (focus, dark)","zZZRb4IwEMc/DY+a0opuj0OnL1uyZA977uSAZoWaUjfcp19LO6dSlDlN1oSkXHv07nd/DgIyLeqFpKv8USTAA3IfkKkUQtlZUU+B8wAjlgRkFmCM9BXgecdq2KyiFZVQqj4O2Dq8U74Ga7GGSm24M1Q5XZmphKV+ZFwpKd5gKriQ2liKUq/FKeP8wOQeDFJB3RlcY3KRLUAUoORGb/lgicrtDjJyEeXAsty5kcjaaGXvs63rT6p64rL1Z05OZ57QKgezHZm8HYaizky1hlmR8KECDqvcJnwSTIBJOL+N57O+dLCfzsYVdugo7NAKx21YTgFIAqeKvcPecT6C7sQnwXQg2+MGIdp3EWlagWoh3wbaqwqjVhXGEWoVQkMy0ktFqXZgps1w9mf2aTZrACQ2WNmS8jvOstKUjCUJ71Wi32i3ozrOIRp5inPjkTLqLkRfKUdnSpmzHeG+uEB1TnEpHuiraUazsEXtUio+4ORUhn2a9mA7FOM52MYtbI/ilWli/eQ3acY/lR+OcAvkLbqO/CZnyk9JRsusIXNMcP5OumyGtifMfJiYMKQrsTbJ9gM4Pgow3JOlt9d6cEZ/a7X1d6vdfykG5Aqd9+aSTSM83TSiZlxY3d1dwyf2M5qGvv35GbOUd//VvgA="), this.addDataEntry("gmdl google media design library text field single line text field icon normal dark",342,35,"Single-line text field with icon (normal, dark)","3ZZNU8MgEIZ/TY7tEChVj7Z+XHTGGQ+eabNJGEnoENTUXy8EbJuG2FjtQZnpDCxs2H32zTYRmRf1rWKr/F4mICJyHZG5klK7WVHPQYgII55E5CrCGJlfhG96duNmF62YglIPccDO4ZWJF3AWZ6j0WnhDlbOVnSpYmkfOKq3kM8ylkMoYS1mavVnKhdgz+QeD0lD3BteYfGS3IAvQam2OvPFE5+4EmfiIcuBZ7t0IdTZWuXW2cd2maiY+23Dm5HDmCatysMeRzdtjKOrMVmucFYkYaxCwyl3CB8FEmCybMZQODtNZ+8KOPYUdWvG0C8srACkQTPNXaF0XIuhvfJDcBLK5bhSjtotM0wp0B/km0EFVmHSqMKVoRCkdxab0nYoYWlaDqSz1DtW0Gd7+yN/tYUOCzCxfvmTiUvCstLXjSSIG1eo7Iu4pk3egk0CVzgOaRv0VGappeqSmBd9R8JMPNDaWUt6xhe1KzapNzYCnzfhdTl5uOCTuALZ9VR6DbdrBdi8X3BD7B/LDFHdAXqDTyO/sSPlpxVmZNWS+EtyBlppw+w/FpSVdyReb7DCA0y8Bxi1ZBptuACf9Wc+tP3tu+6UYkRO04PM/3DQ26u7vGiGxH9E0zHL7VeYo7360fQA="), -this.addEntry("gmdl google media design library text field single line text field normal light dark",function(){var a=new mxCell("Label text",new mxGeometry(0,0,346,30),"text;fontColor=#808080;fontSize=16;verticalAlign=middle;strokeColor=none;fillColor=none;");a.vertex=!0;var c=new mxCell("",new mxGeometry(0,25,346,10),"dashed=0;shape=line;strokeWidth=1;noLabel=1;strokeColor=#999999;opacity=80;");c.vertex=!0;return d.createVertexTemplateFromCells([a,c],346,35,"Single-line text field (normal)")}), -this.addEntry("gmdl google media design library text field single line text field focus light",function(){var a=new mxCell("Label text",new mxGeometry(0,0,346,30),"text;fontColor=#1F9BFD;fontSize=12;verticalAlign=middle;strokeColor=none;fillColor=none;");a.vertex=!0;var c=new mxCell("Input text",new mxGeometry(0,20,346,30),"text;fontColor=#000000;fontSize=16;verticalAlign=middle;strokeColor=none;fillColor=none;");c.vertex=!0;var e=new mxCell("",new mxGeometry(0,45,346,10),"dashed=0;shape=line;strokeWidth=2;noLabel=1;strokeColor=#1F9BFD;"); -e.vertex=!0;return d.createVertexTemplateFromCells([a,c,e],346,55,"Single-line text field (normal, light)")}),this.addEntry("gmdl google media design library text field single line text field focus light",function(){var a=new mxCell("Label text",new mxGeometry(0,0,346,30),"text;fontColor=#cccccc;fontSize=12;verticalAlign=middle;strokeColor=none;fillColor=none;");a.vertex=!0;var c=new mxCell("Input text",new mxGeometry(0,20,346,30),"text;fontColor=#000000;fontSize=16;verticalAlign=middle;strokeColor=none;fillColor=none;"); -c.vertex=!0;var e=new mxCell("",new mxGeometry(0,45,346,10),"dashed=0;shape=line;strokeWidth=2;noLabel=1;strokeColor=#eeeeee;");e.vertex=!0;return d.createVertexTemplateFromCells([a,c,e],346,55,"Single-line text field (normal, light)")}),this.addEntry("gmdl google media design library text field single line text field focus light dark",function(){var a=new mxCell("Label text",new mxGeometry(0,0,346,30),"text;fontColor=#999999;fontSize=12;verticalAlign=middle;strokeColor=none;fillColor=none;textOpacity=80;"); -a.vertex=!0;var c=new mxCell("Input text",new mxGeometry(0,20,346,30),"text;fontColor=#999999;fontSize=16;verticalAlign=middle;strokeColor=none;fillColor=none;textOpacity=80;");c.vertex=!0;var e=new mxCell("",new mxGeometry(0,45,346,10),"shape=line;strokeWidth=1;noLabel=1;strokeColor=#999999;dashed=1;dashPattern=1 4;opacity=80;");e.vertex=!0;return d.createVertexTemplateFromCells([a,c,e],346,55,"Single-line text field (normal)")}),this.addEntry("gmdl google media design library text field single line text field focus dark", -function(){var a=new mxCell("Label text",new mxGeometry(0,0,346,30),"text;fontColor=#1F9BFD;fontSize=12;verticalAlign=middle;strokeColor=none;fillColor=none;");a.vertex=!0;var c=new mxCell("Input text",new mxGeometry(0,20,346,30),"text;fontColor=#ffffff;fontSize=16;verticalAlign=middle;strokeColor=none;fillColor=none;");c.vertex=!0;var e=new mxCell("",new mxGeometry(0,45,346,10),"dashed=0;shape=line;strokeWidth=2;noLabel=1;strokeColor=#1F9BFD;");e.vertex=!0;return d.createVertexTemplateFromCells([a, -c,e],346,55,"Single-line text field (normal, dark)")}),this.addEntry("gmdl google media design library text field single line text field focus dark",function(){var a=new mxCell("Label text",new mxGeometry(0,0,346,30),"text;fontColor=#999999;fontSize=12;verticalAlign=middle;strokeColor=none;fillColor=none;");a.vertex=!0;var c=new mxCell("Input text",new mxGeometry(0,20,346,30),"text;fontColor=#cccccc;fontSize=16;verticalAlign=middle;strokeColor=none;fillColor=none;");c.vertex=!0;var e=new mxCell("", -new mxGeometry(0,45,346,10),"dashed=0;shape=line;strokeWidth=1;noLabel=1;strokeColor=#999999;");e.vertex=!0;return d.createVertexTemplateFromCells([a,c,e],346,55,"Single-line text field (normal, dark)")}),this.addDataEntry("gmdl google media design library text field full text field",362,56,"Full text field","vVTLboMwEPwaHxMRG2jPJW0urVQph56tsGCrBiPjJqRfX79CQJAKqVFXQvKOd9j1jGVEsqrbKdqwN5mDQOQZkUxJqf2q6jIQAuGI54hsEcaR+RB+ubG7cbtRQxXUegkBe8KRii/wyB6oOjAPt/osApzTloElRYg8tYw2Fldw0D7N5cnkG5toJT8hk0IqxyTgot/54LlmobbgQgwqCxcWl7Xe82/bwszh80Fd5sLgVPCyNpiAws3R0AOvy1eXbdPEQOF4oDR0NyVyUNBnB7ICrc6m5BQmNbskDUIx4CULtCT1GG19XvbUq+BmETSf159M9F+mfNWV9s6syyoX68vxR/riOS9SF0t1wfO6nMPFWieeMtBpk05lumAKBNX8CKN2c9qFju+Sm0FwFOa7KBO6rx7HP5BF0YKeSN+PvciN+B5udP9oxZjwmzHxjDHxXYxZkWTszMPfnTHp9Q305cMn8gc="), +this.addEntry("gmdl google media design library text field single line text field normal light dark",function(){var a=new mxCell("Label text",new mxGeometry(0,0,346,30),"text;fontColor=#808080;fontSize=16;verticalAlign=middle;strokeColor=none;fillColor=none;");a.vertex=!0;var d=new mxCell("",new mxGeometry(0,25,346,10),"dashed=0;shape=line;strokeWidth=1;noLabel=1;strokeColor=#999999;opacity=80;");d.vertex=!0;return b.createVertexTemplateFromCells([a,d],346,35,"Single-line text field (normal)")}), +this.addEntry("gmdl google media design library text field single line text field focus light",function(){var a=new mxCell("Label text",new mxGeometry(0,0,346,30),"text;fontColor=#1F9BFD;fontSize=12;verticalAlign=middle;strokeColor=none;fillColor=none;");a.vertex=!0;var d=new mxCell("Input text",new mxGeometry(0,20,346,30),"text;fontColor=#000000;fontSize=16;verticalAlign=middle;strokeColor=none;fillColor=none;");d.vertex=!0;var f=new mxCell("",new mxGeometry(0,45,346,10),"dashed=0;shape=line;strokeWidth=2;noLabel=1;strokeColor=#1F9BFD;"); +f.vertex=!0;return b.createVertexTemplateFromCells([a,d,f],346,55,"Single-line text field (normal, light)")}),this.addEntry("gmdl google media design library text field single line text field focus light",function(){var a=new mxCell("Label text",new mxGeometry(0,0,346,30),"text;fontColor=#cccccc;fontSize=12;verticalAlign=middle;strokeColor=none;fillColor=none;");a.vertex=!0;var d=new mxCell("Input text",new mxGeometry(0,20,346,30),"text;fontColor=#000000;fontSize=16;verticalAlign=middle;strokeColor=none;fillColor=none;"); +d.vertex=!0;var f=new mxCell("",new mxGeometry(0,45,346,10),"dashed=0;shape=line;strokeWidth=2;noLabel=1;strokeColor=#eeeeee;");f.vertex=!0;return b.createVertexTemplateFromCells([a,d,f],346,55,"Single-line text field (normal, light)")}),this.addEntry("gmdl google media design library text field single line text field focus light dark",function(){var a=new mxCell("Label text",new mxGeometry(0,0,346,30),"text;fontColor=#999999;fontSize=12;verticalAlign=middle;strokeColor=none;fillColor=none;textOpacity=80;"); +a.vertex=!0;var d=new mxCell("Input text",new mxGeometry(0,20,346,30),"text;fontColor=#999999;fontSize=16;verticalAlign=middle;strokeColor=none;fillColor=none;textOpacity=80;");d.vertex=!0;var f=new mxCell("",new mxGeometry(0,45,346,10),"shape=line;strokeWidth=1;noLabel=1;strokeColor=#999999;dashed=1;dashPattern=1 4;opacity=80;");f.vertex=!0;return b.createVertexTemplateFromCells([a,d,f],346,55,"Single-line text field (normal)")}),this.addEntry("gmdl google media design library text field single line text field focus dark", +function(){var a=new mxCell("Label text",new mxGeometry(0,0,346,30),"text;fontColor=#1F9BFD;fontSize=12;verticalAlign=middle;strokeColor=none;fillColor=none;");a.vertex=!0;var d=new mxCell("Input text",new mxGeometry(0,20,346,30),"text;fontColor=#ffffff;fontSize=16;verticalAlign=middle;strokeColor=none;fillColor=none;");d.vertex=!0;var f=new mxCell("",new mxGeometry(0,45,346,10),"dashed=0;shape=line;strokeWidth=2;noLabel=1;strokeColor=#1F9BFD;");f.vertex=!0;return b.createVertexTemplateFromCells([a, +d,f],346,55,"Single-line text field (normal, dark)")}),this.addEntry("gmdl google media design library text field single line text field focus dark",function(){var a=new mxCell("Label text",new mxGeometry(0,0,346,30),"text;fontColor=#999999;fontSize=12;verticalAlign=middle;strokeColor=none;fillColor=none;");a.vertex=!0;var d=new mxCell("Input text",new mxGeometry(0,20,346,30),"text;fontColor=#cccccc;fontSize=16;verticalAlign=middle;strokeColor=none;fillColor=none;");d.vertex=!0;var f=new mxCell("", +new mxGeometry(0,45,346,10),"dashed=0;shape=line;strokeWidth=1;noLabel=1;strokeColor=#999999;");f.vertex=!0;return b.createVertexTemplateFromCells([a,d,f],346,55,"Single-line text field (normal, dark)")}),this.addDataEntry("gmdl google media design library text field full text field",362,56,"Full text field","vVTLboMwEPwaHxMRG2jPJW0urVQph56tsGCrBiPjJqRfX79CQJAKqVFXQvKOd9j1jGVEsqrbKdqwN5mDQOQZkUxJqf2q6jIQAuGI54hsEcaR+RB+ubG7cbtRQxXUegkBe8KRii/wyB6oOjAPt/osApzTloElRYg8tYw2Fldw0D7N5cnkG5toJT8hk0IqxyTgot/54LlmobbgQgwqCxcWl7Xe82/bwszh80Fd5sLgVPCyNpiAws3R0AOvy1eXbdPEQOF4oDR0NyVyUNBnB7ICrc6m5BQmNbskDUIx4CULtCT1GG19XvbUq+BmETSf159M9F+mfNWV9s6syyoX68vxR/riOS9SF0t1wfO6nMPFWieeMtBpk05lumAKBNX8CKN2c9qFju+Sm0FwFOa7KBO6rx7HP5BF0YKeSN+PvciN+B5udP9oxZjwmzHxjDHxXYxZkWTszMPfnTHp9Q305cMn8gc="), this.addDataEntry("gmdl google media design library text field full text field",362,294,"Full text field","7VjRbpswFP0aHhsZQ2jzmCZbX7ap0ibt2Q0XsGZsZLsp2dfPGJPAICpdoarWWIrEPb4XO+fkXCv2gk1e3klSZF9FDMwLPnnBRgqh66e83ABjHkY09oKthzEyHw9/PjPr21lUEAlcjynAdcGesEeoEVIjSh+YQ2KiMqjykRfcqowUFS5hp+swFk8m9qtAS/ELNoIJaSsDsOM485PGOnO5CWWslZnYUeGC6+/0d7WE2Ucdt/KQHQYnjKbcYAwSu4+C7ChPv9hoGy0NVG37nmgNkts1MQoNugep6Y6wtavXojiV/6iCbWQAR4tJhvIstRZyvN6ByEHLg0l5cl/TzAaRIzgDmmauDK/CGiSqBtJj7Ukp8+DEGhYu6Ak3Tre8TKsf2yLNY7ZoyOuog4eUjOwYSwx+lhg/6vPSYBIY0XQPndcPceVWuBfULIyR20/DxMGFqPsCkSQKdI/q4zZHsR9OwX75htR3C9pChANChJMIcRUsu0rgGZRY/qMSjPLhxnS+iUlQpjG1cycyw2CX8NHrRHCkh6sZSI96pK+JFNxAt8A5aP2yM6TDOBdWmPb54KC/Wn7rpPCj4SMg0zlzUr2teNE04i3DGcS7nqJ3PSqQY6R7cf+KxvQvRw9aLHv9LER9NcJXqtH0s0ZVt/zVLEfLTd9bDw9QcbDJJFUauAJ+8dck/vL9OQy2etcGu/noBmsO1rbDGKOVwQTnQqqLuaYx1/Uc5vL9d+2u+sf1oe3Vv1JYM8MYRt+AKXE5uqZxFw5mcdck1wrzuWvUv9v/yF0mPN0F1untq8I/"), this.addDataEntry("gmdl google media design library text field inset text field",362,56,"Inset text field","rVTBboMwDP2aHFtB0qKdR7deNmlSDztHYEi0QFDIWtjXLyQphUIrpNYSUvxsY/OeCSJx0ewVrdinTEEg8oZIrKTU7lQ0MQiBcMBTRHYI48A8CL/fiIY2GlRUQamXFGBXcKTiFxxyAKoS5uBat8LDKa0ZdEUBIq81o1WHK0i0c1N5Mn7YOVrJH4ilkMpWErDWR755qpnPzbgQg8zMWofLUh/4X9fCzOH8QV5szeBU8Lw0mIDMzlHRhJf5h/V20dZA/vNAaWhuUmQhz88eZAFatSbl5Cc1URJ5ohjwnPmybeQwWjs/70svhJuD53yefzLhfxnzRZN3O7POi1SsayfZNcN4To3I2lJm8DwzrV+t9daVDJgKoylRZ0yBoJofYdRujj3f8UtyMwgO/Hxnbnz31cv4BTLLatAT8vuxF+mxeYYeR8mT6cLfl+PqV3iKTOOCe6LNbLe/OB4VbUU2Y9XC4HHZjHu5Il368Ab9Bw=="), this.addDataEntry("gmdl google media design library text field focus card suggestion",362,246,"Focus card suggestions","7VfBjpswEP0ajl0ZA25y7CbtXlpppVbq2Q0DWDWYGieb9Os72CaBhmijLqSXWIrCPM/Y5r1hBoJoVe6fNK+LLyoFGUQfg2illTLuqtyvQMqAEpEG0TqglOAvoJ8uzIZ2ltRcQ2WuCaAuYMflFhySQtOANg5vzEF2OG8KaKNIED02Ba9bXMPGODNVL2iHrWG0+gkrJZW2kRHYcZz5LlJTeN9MSNnzzOxocVWZr+J3uwWew9k9P2IH4lyKvEJMQmbPUfONqPLP1lqzBKH22M/cGNCV3ZOSGNEd3qHYcPnBxxtVn8K/tcaaIeDJQWfYXyTYQp7dJ1AlGH1Alxd/mzgbMU9zASIvfBiNmQN544D8GHvSCy+8ZOPyRWfyXadbuc/blHvIy1Q+dOQN1KFjSjI7riWGvkpMyM556TANkhuxg8HyY1z5HZ6VwI0p8efpmDh4kwwXUFnWgDmj+njMq9iPp2B/f0PqhwF9IeIRIeJJhHgXJUMl6AxKJP+ohBTVeGG6XMQ0NFiY+r4TPQyjVSIkbxPBkx4vZyCdTdM7BkxXygrS7wse+qvU9zpEyMZLf2FK2fWZYf9Y2nFzMePFJGIm8Qxivr8sJqYgkx3naG6ORLJf2/ZF5fHUknsQy9v/H1x34XgEt4KbuWfJrFkSkjkK7WKmNGkKfOm658n/yJNkjlej5Ux5ghQbvtXcpsc9W26fLcvF27MFzdMXrnPvfwD/AQ==")]; -this.addPalette("gmdlText Fields","GMDL / Text Fields",a||!1,mxUtils.bind(this,function(a){for(var c=0;c<e.length;c++)a.appendChild(e[c](a))}))}})();(function(){Sidebar.prototype.addIBMPalette=function(){this.addIBMAnalyticsPalette(60,"ibm",this,"aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;shadow=0;dashed=0;fontColor=#4277BB;labelBackgroundColor=#ffffff;fontSize=12;spacingTop=3;image;image=img/lib/ibm/");this.addIBMApplicationsPalette(60,"ibm",this,"aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;shadow=0;dashed=0;fontColor=#4277BB;labelBackgroundColor=#ffffff;fontSize=12;spacingTop=3;image;image=img/lib/ibm/");this.addIBMBlockchainPalette(60, +this.addPalette("gmdlText Fields","GMDL / Text Fields",a||!1,mxUtils.bind(this,function(a){for(var b=0;b<e.length;b++)a.appendChild(e[b](a))}))}})();(function(){Sidebar.prototype.addIBMPalette=function(){this.addIBMAnalyticsPalette(60,"ibm",this,"aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;shadow=0;dashed=0;fontColor=#4277BB;labelBackgroundColor=#ffffff;fontSize=12;spacingTop=3;image;image=img/lib/ibm/");this.addIBMApplicationsPalette(60,"ibm",this,"aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;shadow=0;dashed=0;fontColor=#4277BB;labelBackgroundColor=#ffffff;fontSize=12;spacingTop=3;image;image=img/lib/ibm/");this.addIBMBlockchainPalette(60, "ibm",this,"aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;shadow=0;dashed=0;fontColor=#4277BB;labelBackgroundColor=#ffffff;fontSize=12;spacingTop=3;image;image=img/lib/ibm/");this.addIBMDataPalette(60,"ibm",this,"aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;shadow=0;dashed=0;fontColor=#4277BB;labelBackgroundColor=#ffffff;fontSize=12;spacingTop=3;image;image=img/lib/ibm/");this.addIBMDevOpsPalette(60,"ibm",this,"aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;shadow=0;dashed=0;fontColor=#4277BB;labelBackgroundColor=#ffffff;fontSize=12;spacingTop=3;image;image=img/lib/ibm/"); this.addIBMInfrastructurePalette(60,"ibm",this,"aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;shadow=0;dashed=0;fontColor=#4277BB;labelBackgroundColor=#ffffff;fontSize=12;spacingTop=3;image;image=img/lib/ibm/");this.addIBMManagementPalette(60,"ibm",this,"aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;shadow=0;dashed=0;fontColor=#4277BB;labelBackgroundColor=#ffffff;fontSize=12;spacingTop=3;image;image=img/lib/ibm/");this.addIBMMiscPalette(60,"ibm",this,"aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;shadow=0;dashed=0;fontColor=#4277BB;labelBackgroundColor=#ffffff;fontSize=12;spacingTop=3;image;image=img/lib/ibm/"); this.addIBMSecurityPalette(60,"ibm",this,"aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;shadow=0;dashed=0;fontColor=#4277BB;labelBackgroundColor=#ffffff;fontSize=12;spacingTop=3;image;image=img/lib/ibm/");this.addIBMSocialPalette(60,"ibm",this,"aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;shadow=0;dashed=0;fontColor=#4277BB;labelBackgroundColor=#ffffff;fontSize=12;spacingTop=3;image;image=img/lib/ibm/");this.addIBMUsersPalette(60,"ibm",this,"aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;shadow=0;dashed=0;fontColor=#4277BB;labelBackgroundColor=#ffffff;fontSize=12;spacingTop=3;image;image=img/lib/ibm/"); -this.addIBMVPCPalette(60,"ibm",this,"aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;shadow=0;dashed=0;fontColor=#4277BB;labelBackgroundColor=#ffffff;fontSize=12;spacingTop=3;image;image=img/lib/ibm/")};Sidebar.prototype.addIBMAnalyticsPalette=function(a,d,e,b){b+="analytics/";var c=[this.createVertexTemplateEntry(b+"analytics.svg;",a,a,"","Analytics",!1,null,this.getTagsForStencil("analytics ","",d).join(" ")),this.createVertexTemplateEntry(b+"data_integration.svg;",a,a,"","Data Integration", -!1,null,this.getTagsForStencil("analytics ","data integration",d).join(" ")),this.createVertexTemplateEntry(b+"data_repositories.svg;",a,a,"","Data Repositories",!1,null,this.getTagsForStencil("analytics ","data repositories",d).join(" ")),this.createVertexTemplateEntry(b+"device_analytics.svg;",a,a,"","Device Analytics",!1,null,this.getTagsForStencil("analytics ","device analytics",d).join(" ")),this.createVertexTemplateEntry(b+"streaming_computing.svg;",a,a,"","Streaming Computing",!1,null,this.getTagsForStencil("analytics ", -"streaming computing",d).join(" "))];this.addPalette("ibmAnalytics","IBM / Analytics",!1,mxUtils.bind(this,function(a){for(var b=0;b<c.length;b++)a.appendChild(c[b](a))}))};Sidebar.prototype.addIBMApplicationsPalette=function(a,d,e,b){b+="applications/";var c=[this.createVertexTemplateEntry(b+"actionable_insight.svg;",a,a,"","Actionable Insight",!1,null,this.getTagsForStencil("applications ","actionable insight",d).join(" ")),this.createVertexTemplateEntry(b+"annotate.svg;",a,a,"","Annotate",!1,null, -this.getTagsForStencil("applications ","annotate",d).join(" ")),this.createVertexTemplateEntry(b+"api_developer_portal.svg;",a,a,"","API Developer Portal",!1,null,this.getTagsForStencil("applications ","api developer portal",d).join(" ")),this.createVertexTemplateEntry(b+"api_polyglot_runtimes.svg;",a,a,"","API Polyglot Runtimes",!1,null,this.getTagsForStencil("applications ","api polyglot runtimes",d).join(" ")),this.createVertexTemplateEntry(b+"app_server.svg;",a,a,"","App Server",!1,null,this.getTagsForStencil("applications ", -"app server",d).join(" ")),this.createVertexTemplateEntry(b+"application_logic.svg;",a,a,"","Application Logic",!1,null,this.getTagsForStencil("applications ","application logic",d).join(" ")),this.createVertexTemplateEntry(b+"automation_tools.svg;",a,a,"","Automation Tools",!1,null,this.getTagsForStencil("applications ","automation tools",d).join(" ")),this.createVertexTemplateEntry(b+"enterprise_applications.svg;",a,a,"","Enterprise Applications",!1,null,this.getTagsForStencil("applications ","enterprise applications", -d).join(" ")),this.createVertexTemplateEntry(b+"index.svg;",a,a,"","Index",!1,null,this.getTagsForStencil("applications ","index",d).join(" ")),this.createVertexTemplateEntry(b+"iot_application.svg;",a,a,"","IoT Application",!1,null,this.getTagsForStencil("applications ","iot application",d).join(" ")),this.createVertexTemplateEntry(b+"microservice.svg;",1.37*a,a,"","Microservice",!1,null,this.getTagsForStencil("applications ","microservice",d).join(" ")),this.createVertexTemplateEntry(b+"mobile_app.svg;", -a,a,"","Mobile App",!1,null,this.getTagsForStencil("applications ","mobile app",d).join(" ")),this.createVertexTemplateEntry(b+"ontology.svg;",a,a,"","Ontology",!1,null,this.getTagsForStencil("applications ","ontology",d).join(" ")),this.createVertexTemplateEntry(b+"open_source_tools.svg;",a,a,"","Open Source Tools",!1,null,this.getTagsForStencil("applications ","open source tools",d).join(" ")),this.createVertexTemplateEntry(b+"runtime_services.svg;",a,a,"","Runtime Services",!1,null,this.getTagsForStencil("applications ", -"runtime services",d).join(" ")),this.createVertexTemplateEntry(b+"saas_applications.svg;",a,a,"","SaaS Applications",!1,null,this.getTagsForStencil("applications ","saas applications",d).join(" ")),this.createVertexTemplateEntry(b+"service_broker.svg;",a,a,"","Service Broker",!1,null,this.getTagsForStencil("applications ","service broker",d).join(" ")),this.createVertexTemplateEntry(b+"speech_to_text.svg;",a,a,"","Speech to Text",!1,null,this.getTagsForStencil("applications ","speech to text",d).join(" ")), -this.createVertexTemplateEntry(b+"visual_recognition.svg;",a,a,"","Visual Recognition",!1,null,this.getTagsForStencil("applications ","visual recognition",d).join(" ")),this.createVertexTemplateEntry(b+"visualization.svg;",a,a,"","Visualization",!1,null,this.getTagsForStencil("applications ","visualization",d).join(" "))];this.addPalette("ibmApplications","IBM / Applications",!1,mxUtils.bind(this,function(a){for(var b=0;b<c.length;b++)a.appendChild(c[b](a))}))};Sidebar.prototype.addIBMBlockchainPalette= -function(a,d,e,b){b+="blockchain/";var c=[this.createVertexTemplateEntry(b+"blockchain.svg;",a,a,"","Blockchain",!1,null,this.getTagsForStencil("blockchain ","",d).join(" ")),this.createVertexTemplateEntry(b+"blockchain_developer.svg;",a,a,"","Blockchain Developer",!1,null,this.getTagsForStencil("blockchain ","developer",d).join(" ")),this.createVertexTemplateEntry(b+"certificate_authority.svg;",a,a,"","Certificate Authority",!1,null,this.getTagsForStencil("blockchain ","certificate authority",d).join(" ")), -this.createVertexTemplateEntry(b+"client_application.svg;",a,a,"","Client Application",!1,null,this.getTagsForStencil("blockchain ","client application",d).join(" ")),this.createVertexTemplateEntry(b+"communication.svg;",a,a,"","Communication",!1,null,this.getTagsForStencil("blockchain ","communication",d).join(" ")),this.createVertexTemplateEntry(b+"consensus.svg;",a,a,"","Consensus",!1,null,this.getTagsForStencil("blockchain ","communication",d).join(" ")),this.createVertexTemplateEntry(b+"e_cert.svg;", -a,a,"","E-Cert",!1,null,this.getTagsForStencil("blockchain ","ecert e-cert",d).join(" ")),this.createVertexTemplateEntry(b+"event.svg;",a,a,"","Event",!1,null,this.getTagsForStencil("blockchain ","event",d).join(" ")),this.createVertexTemplateEntry(b+"event_listener.svg;",a,a,"","Event Listener",!1,null,this.getTagsForStencil("blockchain ","event listener",d).join(" ")),this.createVertexTemplateEntry(b+"existing_enterprise_systems.svg;",a,a,"","Existing Enterprise Systems",!1,null,this.getTagsForStencil("blockchain ", -"existing enterprise systems",d).join(" ")),this.createVertexTemplateEntry(b+"hyperledger_fabric.svg;",a,a,"","Hyperledger Fabric",!1,null,this.getTagsForStencil("blockchain ","hyperledger fabric",d).join(" ")),this.createVertexTemplateEntry(b+"identity_access_manager.svg;",a,a,"","Identity & Access Manager",!1,null,this.getTagsForStencil("blockchain ","identity access manager",d).join(" ")),this.createVertexTemplateEntry(b+"key_management.svg;",.38*a,.38*a,"","Key Management",!1,null,this.getTagsForStencil("blockchain ", -"key management",d).join(" ")),this.createVertexTemplateEntry(b+"ledger.svg;",a,a,"","Ledger",!1,null,this.getTagsForStencil("blockchain ","ledger",d).join(" ")),this.createVertexTemplateEntry(b+"membership.svg;",a,a,"","Membership",!1,null,this.getTagsForStencil("blockchain ","membership",d).join(" ")),this.createVertexTemplateEntry(b+"membership_services_provider_api.svg;",a,a,"","Membership Services Provider API",!1,null,this.getTagsForStencil("blockchain ","membership services provider api",d).join(" ")), -this.createVertexTemplateEntry(b+"message_bus.svg;",a,a,"","Message Bus",!1,null,this.getTagsForStencil("blockchain ","message bus",d).join(" ")),this.createVertexTemplateEntry(b+"node.svg;",a,a,"","Node",!1,null,this.getTagsForStencil("blockchain ","node",d).join(" ")),this.createVertexTemplateEntry(b+"services.svg;",a,a,"","Services",!1,null,this.getTagsForStencil("blockchain ","services",d).join(" ")),this.createVertexTemplateEntry(b+"smart_contract.svg;",a,a,"","Smart Contract",!1,null,this.getTagsForStencil("blockchain ", -"smart contract",d).join(" ")),this.createVertexTemplateEntry(b+"transaction_manager.svg;",a,a,"","Transaction Manager",!1,null,this.getTagsForStencil("blockchain ","transaction manager",d).join(" ")),this.createVertexTemplateEntry(b+"wallet.svg;",a,a,"","Wallet",!1,null,this.getTagsForStencil("blockchain ","wallet",d).join(" "))];this.addPalette("ibmBlockchain","IBM / Blockchain",!1,mxUtils.bind(this,function(a){for(var b=0;b<c.length;b++)a.appendChild(c[b](a))}))};Sidebar.prototype.addIBMDataPalette= -function(a,d,e,b){b+="data/";var c=[this.createVertexTemplateEntry(b+"caches.svg;",a,a,"","Caches",!1,null,this.getTagsForStencil("data ","caches",d).join(" ")),this.createVertexTemplateEntry(b+"conversation_trained_deployed.svg;",a,a,"","Conversation (Trained & Deployed)",!1,null,this.getTagsForStencil("data ","conversation trained deployed",d).join(" ")),this.createVertexTemplateEntry(b+"cloud.svg;",a,a,"","Cloud",!1,null,this.getTagsForStencil("data ","cloud",d).join(" ")),this.createVertexTemplateEntry(b+ -"data_services.svg;",a,a,"","Data Services",!1,null,this.getTagsForStencil("data ","data services",d).join(" ")),this.createVertexTemplateEntry(b+"data_sources.svg;",a,a,"","Data Sources",!1,null,this.getTagsForStencil("data ","data sources",d).join(" ")),this.createVertexTemplateEntry(b+"device_identity_service.svg;",a,a,"","Device Identity Service",!1,null,this.getTagsForStencil("data ","device identity service",d).join(" ")),this.createVertexTemplateEntry(b+"device_registry.svg;",a,a,"","Device Registry", -!1,null,this.getTagsForStencil("data ","device registry",d).join(" ")),this.createVertexTemplateEntry(b+"enterprise_data.svg;",a,a,"","Enterprise Data",!1,null,this.getTagsForStencil("data ","enterprise data",d).join(" ")),this.createVertexTemplateEntry(b+"enterprise_user_directory.svg;",a,a,"","Enterprise User Directory",!1,null,this.getTagsForStencil("data ","enterprise user directory",d).join(" ")),this.createVertexTemplateEntry(b+"file_repository.svg;",a,a,"","File Repository",!1,null,this.getTagsForStencil("data ", -"file repository",d).join(" ")),this.createVertexTemplateEntry(b+"ground_truth.svg;",a,a,"","Ground Truth",!1,null,this.getTagsForStencil("data ","ground truth",d).join(" ")),this.createVertexTemplateEntry(b+"model.svg;",a,a,"","Model",!1,null,this.getTagsForStencil("data ","model",d).join(" ")),this.createVertexTemplateEntry(b+"tms_data_interface.svg;",a,a,"","TMS Data Interface",!1,null,this.getTagsForStencil("data ","tms data interface",d).join(" "))];this.addPalette("ibmData","IBM / Data",!1, -mxUtils.bind(this,function(a){for(var b=0;b<c.length;b++)a.appendChild(c[b](a))}))};Sidebar.prototype.addIBMDevOpsPalette=function(a,d,e,b){b+="devops/";var c=[this.createVertexTemplateEntry(b+"artifact_management.svg;",a,a,"","Artifact Management",!1,null,this.getTagsForStencil("devops ","artifact management",d).join(" ")),this.createVertexTemplateEntry(b+"build_test.svg;",a,a,"","Build & Test",!1,null,this.getTagsForStencil("devops ","build test",d).join(" ")),this.createVertexTemplateEntry(b+"code_editor.svg;", -a,a,"","Code Editor",!1,null,this.getTagsForStencil("devops ","code editor",d).join(" ")),this.createVertexTemplateEntry(b+"collaborative_development.svg;",a,a,"","Collaborative Development",!1,null,this.getTagsForStencil("devops ","collaborative development",d).join(" ")),this.createVertexTemplateEntry(b+"configuration_management.svg;",a,a,"","Configuration Management",!1,null,this.getTagsForStencil("devops ","configuration management",d).join(" ")),this.createVertexTemplateEntry(b+"continuous_deploy.svg;", -a,a,"","Continuous Deploy",!1,null,this.getTagsForStencil("devops ","continuous deploy",d).join(" ")),this.createVertexTemplateEntry(b+"continuous_testing.svg;",a,a,"","Continuous Testing",!1,null,this.getTagsForStencil("devops ","continuous testing",d).join(" ")),this.createVertexTemplateEntry(b+"devops.svg;",a,a,"","DevOps",!1,null,this.getTagsForStencil("devops ","devops",d).join(" ")),this.createVertexTemplateEntry(b+"provision.svg;",a,a,"","Provision",!1,null,this.getTagsForStencil("devops ", -"provision",d).join(" ")),this.createVertexTemplateEntry(b+"release_management.svg;",a,a,"","Release Management",!1,null,this.getTagsForStencil("devops ","release management",d).join(" "))];this.addPalette("ibmDevOps","IBM / DevOps",!1,mxUtils.bind(this,function(a){for(var b=0;b<c.length;b++)a.appendChild(c[b](a))}))};Sidebar.prototype.addIBMInfrastructurePalette=function(a,d,e,b){b+="infrastructure/";var c=[this.createVertexTemplateEntry(b+"channels.svg;",a,a,"","Channels",!1,null,this.getTagsForStencil("infrastructure ", -"channels",d).join(" ")),this.createVertexTemplateEntry(b+"cloud_messaging.svg;",a,a,"","Cloud Messaging",!1,null,this.getTagsForStencil("infrastructure ","cloud messaging",d).join(" ")),this.createVertexTemplateEntry(b+"dashboard.svg;",a,a,"","Dashboard",!1,null,this.getTagsForStencil("infrastructure ","dashboard",d).join(" ")),this.createVertexTemplateEntry(b+"diagnostics.svg;",a,a,"","Diagnostics",!1,null,this.getTagsForStencil("infrastructure ","diagnostics",d).join(" ")),this.createVertexTemplateEntry(b+ -"edge_services.svg;",a,a,"","Edge Services",!1,null,this.getTagsForStencil("infrastructure ","edge services",d).join(" ")),this.createVertexTemplateEntry(b+"enterprise_messaging.svg;",a,a,"","Enterprise Messaging",!1,null,this.getTagsForStencil("infrastructure ","enterprise messaging",d).join(" ")),this.createVertexTemplateEntry(b+"event_feed.svg;",a,a,"","Event Feed",!1,null,this.getTagsForStencil("infrastructure ","event feed",d).join(" ")),this.createVertexTemplateEntry(b+"infrastructure_services.svg;", -a,a,"","Infrastructure Services",!1,null,this.getTagsForStencil("infrastructure ","infrastructure services",d).join(" ")),this.createVertexTemplateEntry(b+"interservice_communication.svg;",a,a,"","Interservice Communication",!1,null,this.getTagsForStencil("infrastructure ","interservice communication",d).join(" ")),this.createVertexTemplateEntry(b+"load_balancing_routing.svg;",a,a,"","Load Balancing / Routing",!1,null,this.getTagsForStencil("infrastructure ","load balancing routing",d).join(" ")), -this.createVertexTemplateEntry(b+"microservices_mesh.svg;",a,a,"","Microservices Mesh",!1,null,this.getTagsForStencil("infrastructure ","microservices mesh",d).join(" ")),this.createVertexTemplateEntry(b+"mobile_backend.svg;",a,a,"","Mobile Backend",!1,null,this.getTagsForStencil("infrastructure ","mobile backend",d).join(" ")),this.createVertexTemplateEntry(b+"mobile_provider_network.svg;",a,a,"","Mobile Provider Network",!1,null,this.getTagsForStencil("infrastructure ","mobile provider network", -d).join(" ")),this.createVertexTemplateEntry(b+"monitoring.svg;",a,a,"","Monitoring",!1,null,this.getTagsForStencil("infrastructure ","monitoring",d).join(" ")),this.createVertexTemplateEntry(b+"monitoring_logging.svg;",a,a,"","Monitoring & Logging",!1,null,this.getTagsForStencil("infrastructure ","monitoring logging",d).join(" ")),this.createVertexTemplateEntry(b+"peer_services.svg;",a,a,"","Peer Services",!1,null,this.getTagsForStencil("infrastructure ","peer services",d).join(" ")),this.createVertexTemplateEntry(b+ -"service_discovery_configuration.svg;",a,a,"","Service Discovery & Configuration",!1,null,this.getTagsForStencil("infrastructure ","service discovery configuration",d).join(" ")),this.createVertexTemplateEntry(b+"transformation_connectivity.svg;",a,a,"","Transformation & Connectivity",!1,null,this.getTagsForStencil("infrastructure ","transformation connectivity",d).join(" "))];this.addPalette("ibmInfrastructure","IBM / Infrastructure",!1,mxUtils.bind(this,function(a){for(var b=0;b<c.length;b++)a.appendChild(c[b](a))}))}; -Sidebar.prototype.addIBMManagementPalette=function(a,d,e,b){b+="management/";var c=[this.createVertexTemplateEntry(b+"alert_notification.svg;",a,a,"","Alert Notification",!1,null,this.getTagsForStencil("management ","alert notification",d).join(" ")),this.createVertexTemplateEntry(b+"api_management.svg;",a,a,"","API Management",!1,null,this.getTagsForStencil("management ","api management",d).join(" ")),this.createVertexTemplateEntry(b+"cloud_management.svg;",a,a,"","Cloud Management",!1,null,this.getTagsForStencil("management ", -"cloud management",d).join(" ")),this.createVertexTemplateEntry(b+"cluster_management.svg;",a,a,"","Cluster Management",!1,null,this.getTagsForStencil("management ","cluster management",d).join(" ")),this.createVertexTemplateEntry(b+"content_management.svg;",a,a,"","Content Management",!1,null,this.getTagsForStencil("management ","content management",d).join(" ")),this.createVertexTemplateEntry(b+"data_services.svg;",a,a,"","Data Services",!1,null,this.getTagsForStencil("management ","data services", -d).join(" ")),this.createVertexTemplateEntry(b+"device_management.svg;",a,a,"","Device Management",!1,null,this.getTagsForStencil("management ","device management",d).join(" ")),this.createVertexTemplateEntry(b+"information_governance.svg;",a,a,"","Information Governance",!1,null,this.getTagsForStencil("management ","information governance",d).join(" ")),this.createVertexTemplateEntry(b+"it_service_management.svg;",a,a,"","IT Service Management",!1,null,this.getTagsForStencil("management ","it service management information technology", -d).join(" ")),this.createVertexTemplateEntry(b+"management.svg;",a,a,"","Management",!1,null,this.getTagsForStencil("management ","management",d).join(" ")),this.createVertexTemplateEntry(b+"monitoring_metrics.svg;",a,a,"","Monitoring & Metrics",!1,null,this.getTagsForStencil("management ","monitoring metrics",d).join(" ")),this.createVertexTemplateEntry(b+"process_management.svg;",a,a,"","Process Management",!1,null,this.getTagsForStencil("management ","process management",d).join(" ")),this.createVertexTemplateEntry(b+ -"provider_cloud_portal_service.svg;",a,a,"","Provider Cloud Portal Service",!1,null,this.getTagsForStencil("management ","provider cloud portal service",d).join(" ")),this.createVertexTemplateEntry(b+"push_notifications.svg;",a,a,"","Push Notifications",!1,null,this.getTagsForStencil("management ","push notifications",d).join(" ")),this.createVertexTemplateEntry(b+"service_management_tools.svg;",a,a,"","Service Management Tools",!1,null,this.getTagsForStencil("management ","service management tools", -d).join(" "))];this.addPalette("ibmManagement","IBM / Management",!1,mxUtils.bind(this,function(a){for(var b=0;b<c.length;b++)a.appendChild(c[b](a))}))};Sidebar.prototype.addIBMMiscPalette=function(a,d,e,b){b+="miscellaneous/";var c=[this.createVertexTemplateEntry(b+"bluemix.svg;",a,a,"","Bluemix",!1,null,this.getTagsForStencil("miscellaneous ","bluemix",d).join(" ")),this.createVertexTemplateEntry(b+"cloudant.svg;",a,a,"","Cloudant",!1,null,this.getTagsForStencil("miscellaneous ","cloudant",d).join(" ")), -this.createVertexTemplateEntry(b+"cognitive_services.svg;",a,a,"","Cognitive Services",!1,null,this.getTagsForStencil("miscellaneous ","cognitive services",d).join(" ")),this.createVertexTemplateEntry(b+"ibm_containers.svg;",a,a,"","IBM Containers",!1,null,this.getTagsForStencil("miscellaneous ","ibm containers",d).join(" ")),this.createVertexTemplateEntry(b+"ibm_public_cloud.svg;",a,.77*a,"","IBM Public Cloud",!1,null,this.getTagsForStencil("miscellaneous ","ibm public cloud",d).join(" ")),this.createVertexTemplateEntry(b+ -"iot_cloud.svg;",a,.77*a,"","IoT Cloud",!1,null,this.getTagsForStencil("miscellaneous ","iot cloud internet of things",d).join(" ")),this.createVertexTemplateEntry(b+"microservices_application.svg;",a,a,"","Microservices Application",!1,null,this.getTagsForStencil("miscellaneous ","microservices application",d).join(" ")),this.createVertexTemplateEntry(b+"object_storage.svg;",a,a,"","Object Storage",!1,null,this.getTagsForStencil("miscellaneous ","object storage",d).join(" ")),this.createVertexTemplateEntry(b+ -"offline_capabilities.svg;",a,a,"","Offline Capabilities",!1,null,this.getTagsForStencil("miscellaneous ","offline capabilities",d).join(" ")),this.createVertexTemplateEntry(b+"openwhisk.svg;",a,a,"","Openwhisk",!1,null,this.getTagsForStencil("miscellaneous ","openwhisk",d).join(" ")),this.createVertexTemplateEntry(b+"peer_cloud.svg;",a,.77*a,"","Peer Cloud",!1,null,this.getTagsForStencil("miscellaneous ","peer cloud",d).join(" ")),this.createVertexTemplateEntry(b+"retrieve_rank.svg;",a,a,"","Retrieve Rank", -!1,null,this.getTagsForStencil("miscellaneous ","retrieve rank",d).join(" ")),this.createVertexTemplateEntry(b+"scalable.svg;",.25*a,.25*a,"","Scalable",!1,null,this.getTagsForStencil("miscellaneous ","scalable",d).join(" ")),this.createVertexTemplateEntry(b+"text_to_speech.svg;",a,a,"","Text to Speech",!1,null,this.getTagsForStencil("miscellaneous ","text to speech",d).join(" "))];this.addPalette("ibmMiscellaneous","IBM / Miscellaneous",!1,mxUtils.bind(this,function(a){for(var b=0;b<c.length;b++)a.appendChild(c[b](a))}))}; -Sidebar.prototype.addIBMSecurityPalette=function(a,d,e,b){b+="security/";var c=[this.createVertexTemplateEntry(b+"api_security.svg;",a,a,"","API Security",!1,null,this.getTagsForStencil("security ","api security",d).join(" ")),this.createVertexTemplateEntry(b+"blockchain_security_service.svg;",a,a,"","Blockchain Security Service",!1,null,this.getTagsForStencil("security ","blockchain security service",d).join(" ")),this.createVertexTemplateEntry(b+"data_security.svg;",a,a,"","Data Security",!1,null, -this.getTagsForStencil("security ","data security",d).join(" ")),this.createVertexTemplateEntry(b+"firewall.svg;",a,a,"","Firewall",!1,null,this.getTagsForStencil("security ","firewall",d).join(" ")),this.createVertexTemplateEntry(b+"gateway.svg;",a,a,"","Gateway",!1,null,this.getTagsForStencil("security ","gateway",d).join(" ")),this.createVertexTemplateEntry(b+"governance_risk_compliance.svg;",a,a,"","Governance, Risk & Compliance",!1,null,this.getTagsForStencil("security ","governance risk compliance", -d).join(" ")),this.createVertexTemplateEntry(b+"identity_access_management.svg;",a,a,"","Identity & Access Management",!1,null,this.getTagsForStencil("security ","identity access management",d).join(" ")),this.createVertexTemplateEntry(b+"identity_provider.svg;",a,a,"","Identity Provider",!1,null,this.getTagsForStencil("security ","identity provider",d).join(" ")),this.createVertexTemplateEntry(b+"infrastructure_security.svg;",a,a,"","Infrastructure Security",!1,null,this.getTagsForStencil("security ", -"infrastructure security",d).join(" ")),this.createVertexTemplateEntry(b+"physical_security.svg;",a,a,"","Physical Security",!1,null,this.getTagsForStencil("security ","physical security",d).join(" ")),this.createVertexTemplateEntry(b+"security_monitoring_intelligence.svg;",a,a,"","Security Monitoring & Intelligence",!1,null,this.getTagsForStencil("security ","security monitoring intelligence",d).join(" ")),this.createVertexTemplateEntry(b+"security_services.svg;",a,a,"","Security Services",!1,null, -this.getTagsForStencil("security ","security services",d).join(" ")),this.createVertexTemplateEntry(b+"trustend_computing.svg;",a,a,"","Trustend Computing",!1,null,this.getTagsForStencil("security ","trustend computing",d).join(" ")),this.createVertexTemplateEntry(b+"vpn.svg;",a,a,"","VPN",!1,null,this.getTagsForStencil("security ","vpn virtual private network",d).join(" "))];this.addPalette("ibmSecurity","IBM / Security",!1,mxUtils.bind(this,function(a){for(var b=0;b<c.length;b++)a.appendChild(c[b](a))}))}; -Sidebar.prototype.addIBMSocialPalette=function(a,d,e,b){b+="social/";var c=[this.createVertexTemplateEntry(b+"communities.svg;",a,a,"","Communities",!1,null,this.getTagsForStencil("social ","communities",d).join(" ")),this.createVertexTemplateEntry(b+"file_sync.svg;",a,a,"","File Sync",!1,null,this.getTagsForStencil("social ","file sync",d).join(" ")),this.createVertexTemplateEntry(b+"live_collaboration.svg;",a,a,"","Live Collaboration",!1,null,this.getTagsForStencil("social ","live collaboration", -d).join(" ")),this.createVertexTemplateEntry(b+"messaging.svg;",a,a,"","Messaging",!1,null,this.getTagsForStencil("social ","messaging",d).join(" ")),this.createVertexTemplateEntry(b+"networking.svg;",a,a,"","Networking",!1,null,this.getTagsForStencil("social ","networking",d).join(" "))];this.addPalette("ibmSocial","IBM / Social",!1,mxUtils.bind(this,function(a){for(var b=0;b<c.length;b++)a.appendChild(c[b](a))}))};Sidebar.prototype.addIBMUsersPalette=function(a,d,e,b){b+="users/";var c=[this.createVertexTemplateEntry(b+ -"browser.svg;",a,a,"","Browser",!1,null,this.getTagsForStencil("users ","browser",d).join(" ")),this.createVertexTemplateEntry(b+"device.svg;",a,a,"","Device",!1,null,this.getTagsForStencil("users ","device",d).join(" ")),this.createVertexTemplateEntry(b+"integrated_digital_experiences.svg;",a,a,"","Integrated Digital Experiences",!1,null,this.getTagsForStencil("users ","integrated digital experiences",d).join(" ")),this.createVertexTemplateEntry(b+"physical_entity.svg;",a,a,"","Physical Entity", -!1,null,this.getTagsForStencil("users ","physical entity",d).join(" ")),this.createVertexTemplateEntry(b+"sensor.svg;",a,a,"","Sensor",!1,null,this.getTagsForStencil("users ","sensor",d).join(" ")),this.createVertexTemplateEntry(b+"user.svg;",a,a,"","User",!1,null,this.getTagsForStencil("users ","user",d).join(" "))];this.addPalette("ibmUsers","IBM / Users",!1,mxUtils.bind(this,function(a){for(var b=0;b<c.length;b++)a.appendChild(c[b](a))}))};Sidebar.prototype.addIBMVPCPalette=function(a,d,e,b){b+= -"vpc/";var c=[this.createVertexTemplateEntry(b+"Instance.svg;",a,a,"","Instance",!1,null,this.getTagsForStencil("vpc virtual private cloud ","instance",d).join(" ")),this.createVertexTemplateEntry(b+"LoadBalancer.svg;",a,a,"","Load Balancer",!1,null,this.getTagsForStencil("vpc virtual private cloud ","load balancer",d).join(" ")),this.createVertexTemplateEntry(b+"BareMetalServer.svg;",a,a,"","Bare Metal Server",!1,null,this.getTagsForStencil("vpc virtual private cloud ","bare metal server",d).join(" ")), -this.createVertexTemplateEntry(b+"BlockStorage.svg;",a,a,"","Block Storage",!1,null,this.getTagsForStencil("vpc virtual private cloud ","block storage",d).join(" ")),this.createVertexTemplateEntry(b+"FloatingIP.svg;",a,a,"","Floating IP",!1,null,this.getTagsForStencil("vpc virtual private cloud ","floating ip internet protocol",d).join(" ")),this.createVertexTemplateEntry(b+"PublicGateway.svg;",a,a,"","Public Gateway",!1,null,this.getTagsForStencil("vpc virtual private cloud ","public gateway",d).join(" ")), -this.createVertexTemplateEntry(b+"ObjectStorage.svg;",a,a,"","Object Storage",!1,null,this.getTagsForStencil("vpc virtual private cloud ","object storage",d).join(" ")),this.createVertexTemplateEntry(b+"VPNConnection.svg;",a,a,"","VPN Connection",!1,null,this.getTagsForStencil("vpc virtual private cloud ","connection",d).join(" ")),this.createVertexTemplateEntry(b+"VPNGateway.svg;",a,a,"","VPN Gateway",!1,null,this.getTagsForStencil("vpc virtual private cloud ","gateway",d).join(" ")),this.createVertexTemplateEntry(b+ -"DirectLink.svg;",a,a,"","Direct Link",!1,null,this.getTagsForStencil("vpc virtual private cloud ","direct link",d).join(" ")),this.createVertexTemplateEntry(b+"ImageService.svg;",a,a,"","Image Service",!1,null,this.getTagsForStencil("vpc virtual private cloud ","image service",d).join(" ")),this.createVertexTemplateEntry(b+"LoadBalancerPool.svg;",a,a,"","Load Balancer Pool",!1,null,this.getTagsForStencil("vpc virtual private cloud ","load balancer pool",d).join(" ")),this.createVertexTemplateEntry(b+ -"LoadBalancerListener.svg;",a,a,"","Load Balancer Listener",!1,null,this.getTagsForStencil("vpc virtual private cloud ","load balancer listener",d).join(" ")),this.createVertexTemplateEntry(b+"Rules.svg;",a,a,"","Rules",!1,null,this.getTagsForStencil("vpc virtual private cloud ","load balancer listener",d).join(" ")),this.createVertexTemplateEntry(b+"Key.svg;",a,a,"","Key",!1,null,this.getTagsForStencil("vpc virtual private cloud ","key",d).join(" ")),this.createVertexTemplateEntry(b+"VPNPolicy.svg;", -a,a,"","VPN Policy",!1,null,this.getTagsForStencil("vpc virtual private cloud ","policy",d).join(" ")),this.createVertexTemplateEntry(b+"InternetServices2.svg;",a,a,"","Internet Services",!1,null,this.getTagsForStencil("vpc virtual private cloud ","internet services",d).join(" ")),this.createVertexTemplateEntry(b+"Router.svg;",a,a,"","Router",!1,null,this.getTagsForStencil("vpc virtual private cloud ","router",d).join(" ")),this.createVertexTemplateEntry(b+"Bridge.svg;",a,a,"","Bridge",!1,null,this.getTagsForStencil("vpc virtual private cloud ", -"bridge",d).join(" ")),this.addEntry(d+"ibm cloud",function(){var a=new mxCell("IBM Cloud",new mxGeometry(0,0,200,200),"swimlane;fontStyle=0;horizontal=1;collapsible=0;startSize=28;swimlaneLine=0;swimlaneFillColor=none;fillColor=none;rounded=0;whiteSpace=wrap;html=1;absoluteArcSize=1;arcSize=12;strokeColor=#417CB9;fontColor=#000000;verticalAlign=top;align=left;spacingLeft=30;spacingTop=1;dashed=0;strokeWidth=1;");a.vertex=!0;var c=new mxCell("",new mxGeometry(0,0,30,30),b+"CloudTag.svg;part=1;"); -c.vertex=!0;a.insert(c);return e.createVertexTemplateFromCells([a],200,200,"IBM Cloud")}),this.addEntry(d+"",function(){var a=new mxCell("VPC",new mxGeometry(0,0,200,200),"swimlane;fontStyle=0;horizontal=1;collapsible=0;startSize=28;swimlaneLine=0;swimlaneFillColor=none;fillColor=none;rounded=0;whiteSpace=wrap;html=1;absoluteArcSize=1;arcSize=12;strokeColor=#417CB9;fontColor=#000000;verticalAlign=top;align=left;spacingLeft=30;spacingTop=1;dashed=0;strokeWidth=1;");a.vertex=!0;var c=new mxCell("", -new mxGeometry(0,0,30,30),b+"VPCTag.svg;part=1;");c.vertex=!0;a.insert(c);return e.createVertexTemplateFromCells([a],200,200,"VPC")}),this.addEntry(d+"",function(){var a=new mxCell("Region",new mxGeometry(0,0,200,200),"swimlane;fontStyle=0;horizontal=1;collapsible=0;startSize=28;swimlaneLine=0;swimlaneFillColor=none;fillColor=none;rounded=0;whiteSpace=wrap;html=1;absoluteArcSize=1;arcSize=0;strokeColor=#00882B;fontColor=#000000;verticalAlign=top;align=left;spacingLeft=30;dashed=1;strokeWidth=1;container=1;dashPattern=1 1;"); -a.vertex=!0;var c=new mxCell("",new mxGeometry(0,0,30,30),b+"RegionTag.svg;part=1;");c.vertex=!0;a.insert(c);return e.createVertexTemplateFromCells([a],200,200,"Region")}),this.addEntry(d+"",function(){var a=new mxCell("Zone",new mxGeometry(0,0,200,200),"swimlane;fontStyle=0;horizontal=1;collapsible=0;startSize=28;swimlaneLine=0;swimlaneFillColor=none;fillColor=none;rounded=0;whiteSpace=wrap;html=1;absoluteArcSize=1;arcSize=0;strokeColor=#00882B;fontColor=#000000;verticalAlign=top;align=left;spacingLeft=30;dashed=1;strokeWidth=1;container=1;"); -a.vertex=!0;var c=new mxCell("",new mxGeometry(0,0,30,30),b+"ZoneTag.svg;part=1;");c.vertex=!0;a.insert(c);return e.createVertexTemplateFromCells([a],200,200,"Zone")}),this.addEntry(d+"",function(){var a=new mxCell("Subnet",new mxGeometry(0,0,200,200),"swimlane;fontStyle=0;horizontal=1;collapsible=0;startSize=28;swimlaneLine=0;swimlaneFillColor=none;fillColor=none;rounded=0;whiteSpace=wrap;html=1;absoluteArcSize=1;arcSize=12;strokeColor=#2A8838;fontColor=#000000;verticalAlign=top;align=left;spacingLeft=30;spacingTop=1;dashed=0;strokeWidth=1;"); -a.vertex=!0;var c=new mxCell("",new mxGeometry(0,0,30,40),b+"SubnetTag.svg;part=1;");c.vertex=!0;a.insert(c);return e.createVertexTemplateFromCells([a],200,200,"Subnet")}),this.createVertexTemplateEntry("rounded=0;whiteSpace=wrap;html=1;absoluteArcSize=1;arcSize=0;strokeColor=#FD0000;fillColor=none;fontColor=#000000;verticalAlign=top;align=center;spacingLeft=5;dashed=1;dashPattern=5 2;labelPosition=center;verticalLabelPosition=bottom;strokeWidth=2;",200,200,"Security Group","Security Group",!0,null, -this.getTagsForStencil("vpc virtual private cloud ","",d).join(" ")),this.addEntry(d+"",function(){var a=new mxCell("Classic Infrastructure",new mxGeometry(0,0,200,200),"swimlane;fontStyle=0;horizontal=1;collapsible=0;startSize=28;swimlaneLine=0;swimlaneFillColor=none;fillColor=none;rounded=0;whiteSpace=wrap;html=1;absoluteArcSize=1;arcSize=0;strokeColor=#4376BB;fontColor=#000000;verticalAlign=top;align=left;spacingLeft=30;dashed=0;strokeWidth=1;container=1;");a.vertex=!0;var c=new mxCell("",new mxGeometry(0, -0,30,30),b+"ClassicInfrastructureTag.svg;part=1;");c.vertex=!0;a.insert(c);return e.createVertexTemplateFromCells([a],200,200,"Classic Infrastructure")}),this.createVertexTemplateEntry("swimlane;fontStyle=0;horizontal=1;collapsible=0;startSize=28;swimlaneLine=0;swimlaneFillColor=none;fillColor=none;rounded=0;whiteSpace=wrap;html=1;absoluteArcSize=1;arcSize=0;strokeColor=#4376BB;fontColor=#000000;verticalAlign=top;align=left;spacingLeft=30;dashed=0;strokeWidth=1;container=1;",200,200,"Other Group", -"Other Group",!0,null,this.getTagsForStencil("vpc virtual private cloud ","",d).join(" ")),this.addEntry(d+"",function(){var a=new mxCell("",new mxGeometry(0,0,320,200),"swimlane;fontStyle=0;horizontal=1;collapsible=0;startSize=28;swimlaneLine=0;swimlaneFillColor=none;fillColor=none;rounded=0;whiteSpace=wrap;html=1;absoluteArcSize=1;arcSize=0;strokeColor=#4376BB;fontColor=#000000;verticalAlign=top;align=left;spacingLeft=5;dashed=0;strokeWidth=1;container=1;");a.vertex=!0;var c=new mxCell("Public", -new mxGeometry(15,0,30,30),"aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;shadow=0;dashed=0;fontColor=#000000;labelBackgroundColor=none;fontSize=12;spacingTop=-5;image;image=img/lib/ibm/vpc/PublicTag.svg;part=1;");c.vertex=!0;a.insert(c);c=new mxCell("Enterprise",new mxGeometry(275,0,30,30),"aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;shadow=0;dashed=0;fontColor=#000000;labelBackgroundColor=none;fontSize=12;spacingTop=-5;image;image=img/lib/ibm/vpc/EnterpriseTag.svg;part=1;"); -c.vertex=!0;a.insert(c);c=new mxCell("IBM Cloud",new mxGeometry(60,0,200,200),"swimlane;fontStyle=0;horizontal=1;collapsible=0;startSize=28;swimlaneLine=0;swimlaneFillColor=none;fillColor=none;rounded=0;whiteSpace=wrap;html=1;absoluteArcSize=1;arcSize=12;strokeColor=#417CB9;fontColor=#000000;verticalAlign=top;align=left;spacingLeft=30;spacingTop=1;dashed=0;strokeWidth=1;");c.vertex=!0;a.insert(c);var d=new mxCell("",new mxGeometry(0,0,30,30),b+"CloudTag.svg;part=1;");d.vertex=!0;c.insert(d);return e.createVertexTemplateFromCells([a], -320,200,"Cloud Universe")}),this.createVertexTemplateEntry(b+"CloudTag.svg;",.5*a,.5*a,"","IBM Cloud tag",!1,null,this.getTagsForStencil("vpc virtual private cloud ","cloud tag ibm",d).join(" ")),this.createVertexTemplateEntry(b+"VPCTag.svg;",.5*a,.5*a,"","VPC tag",!1,null,this.getTagsForStencil("vpc virtual private cloud ","tag",d).join(" ")),this.createVertexTemplateEntry(b+"RegionTag.svg;",.5*a,.5*a,"","Region tag",!1,null,this.getTagsForStencil("vpc virtual private cloud ","region tag",d).join(" ")), -this.createVertexTemplateEntry(b+"ZoneTag.svg;",.5*a,.5*a,"","Zone tag",!1,null,this.getTagsForStencil("vpc virtual private cloud ","zone tag",d).join(" ")),this.createVertexTemplateEntry(b+"SubnetTag.svg;",.37*a,.5*a,"","Subnet tag",!1,null,this.getTagsForStencil("vpc virtual private cloud ","subnet tag",d).join(" ")),this.createVertexTemplateEntry(b+"EnterpriseTag.svg;",.5*a,.5*a,"","Enterprise tag",!1,null,this.getTagsForStencil("vpc virtual private cloud ","enterprise tag",d).join(" ")),this.createVertexTemplateEntry(b+ -"PublicTag.svg;",.5*a,.5*a,"","Public tag",!1,null,this.getTagsForStencil("vpc virtual private cloud ","public tag",d).join(" ")),this.createVertexTemplateEntry(b+"ClassicInfrastructureTag.svg;",.5*a,.5*a,"","Classic Infrastructure tag",!1,null,this.getTagsForStencil("vpc virtual private cloud ","classic tag",d).join(" ")),this.createVertexTemplateEntry(b+"Internet.svg;",a,a,"","Internet",!1,null,this.getTagsForStencil("vpc virtual private cloud ","internet",d).join(" ")),this.createVertexTemplateEntry(b+ -"Enterprise.svg;",a,a,"","Data Center",!1,null,this.getTagsForStencil("vpc virtual private cloud ","dat acenter",d).join(" ")),this.createVertexTemplateEntry(b+"Enterprise2.svg;",a,.8*a,"","Enterprise",!1,null,this.getTagsForStencil("vpc virtual private cloud ","enterprise",d).join(" ")),this.createEdgeTemplateEntry("edgeStyle=orthogonalEdgeStyle;fontSize=12;html=1;endArrow=classicThin;endFill=1;rounded=0;strokeColor=#000000;strokeWidth=1;startArrow=classicThin;startFill=1;",a,a,"","Bidirectional Connector", -null,d+"bidirectional connector"),this.createEdgeTemplateEntry("edgeStyle=orthogonalEdgeStyle;fontSize=12;html=1;endArrow=classicThin;endFill=1;rounded=0;strokeColor=#000000;strokeWidth=1;",a,a,"","Directional Connector",null,d+"directional connector"),this.createEdgeTemplateEntry("edgeStyle=orthogonalEdgeStyle;fontSize=12;html=1;endArrow=none;endFill=0;rounded=0;strokeColor=#000000;strokeWidth=1;",a,a,"","Nondirectional Connector",null,d+"nondirectional connector")];this.addPalette("ibmVPC","IBM / VPC", -!1,mxUtils.bind(this,function(a){for(var b=0;b<c.length;b++)a.appendChild(c[b](a))}))}})();(function(){Sidebar.prototype.addInfographicPalette=function(){var a=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;html=1;shape=mxgraph.infographic.",d=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;html=1;shape=mxgraph.basic.";this.addPaletteFunctions("infographic","Infographic",!1,[this.createVertexTemplateEntry(d+"pie;fillColor=#10739E;strokeColor=none;startAngle=0.2;endAngle=0.9;",100,100,"","Pie",null, -null,this.getTagsForStencil("mxgraph.infographic","pie","").join(" ")),this.createVertexTemplateEntry(d+"arc;strokeColor=#10739E;strokeWidth=6;startAngle=0.3;endAngle=0.1;",100,100,"","Arc",null,null,this.getTagsForStencil("mxgraph.infographic","arc","").join(" ")),this.createVertexTemplateEntry(d+"partConcEllipse;fillColor=#10739E;strokeColor=none;startAngle=0.25;endAngle=0.1;arcWidth=0.5;",100,100,"","Partial Concentric Ellipse",null,null,this.getTagsForStencil("mxgraph.infographic","partConcEllipse", +this.addIBMVPCPalette(60,"ibm",this,"aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;shadow=0;dashed=0;fontColor=#4277BB;labelBackgroundColor=#ffffff;fontSize=12;spacingTop=3;image;image=img/lib/ibm/")};Sidebar.prototype.addIBMAnalyticsPalette=function(a,b,e,c){c+="analytics/";var d=[this.createVertexTemplateEntry(c+"analytics.svg;",a,a,"","Analytics",!1,null,this.getTagsForStencil("analytics ","",b).join(" ")),this.createVertexTemplateEntry(c+"data_integration.svg;",a,a,"","Data Integration", +!1,null,this.getTagsForStencil("analytics ","data integration",b).join(" ")),this.createVertexTemplateEntry(c+"data_repositories.svg;",a,a,"","Data Repositories",!1,null,this.getTagsForStencil("analytics ","data repositories",b).join(" ")),this.createVertexTemplateEntry(c+"device_analytics.svg;",a,a,"","Device Analytics",!1,null,this.getTagsForStencil("analytics ","device analytics",b).join(" ")),this.createVertexTemplateEntry(c+"streaming_computing.svg;",a,a,"","Streaming Computing",!1,null,this.getTagsForStencil("analytics ", +"streaming computing",b).join(" "))];this.addPalette("ibmAnalytics","IBM / Analytics",!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addIBMApplicationsPalette=function(a,b,e,c){c+="applications/";var d=[this.createVertexTemplateEntry(c+"actionable_insight.svg;",a,a,"","Actionable Insight",!1,null,this.getTagsForStencil("applications ","actionable insight",b).join(" ")),this.createVertexTemplateEntry(c+"annotate.svg;",a,a,"","Annotate",!1,null, +this.getTagsForStencil("applications ","annotate",b).join(" ")),this.createVertexTemplateEntry(c+"api_developer_portal.svg;",a,a,"","API Developer Portal",!1,null,this.getTagsForStencil("applications ","api developer portal",b).join(" ")),this.createVertexTemplateEntry(c+"api_polyglot_runtimes.svg;",a,a,"","API Polyglot Runtimes",!1,null,this.getTagsForStencil("applications ","api polyglot runtimes",b).join(" ")),this.createVertexTemplateEntry(c+"app_server.svg;",a,a,"","App Server",!1,null,this.getTagsForStencil("applications ", +"app server",b).join(" ")),this.createVertexTemplateEntry(c+"application_logic.svg;",a,a,"","Application Logic",!1,null,this.getTagsForStencil("applications ","application logic",b).join(" ")),this.createVertexTemplateEntry(c+"automation_tools.svg;",a,a,"","Automation Tools",!1,null,this.getTagsForStencil("applications ","automation tools",b).join(" ")),this.createVertexTemplateEntry(c+"enterprise_applications.svg;",a,a,"","Enterprise Applications",!1,null,this.getTagsForStencil("applications ","enterprise applications", +b).join(" ")),this.createVertexTemplateEntry(c+"index.svg;",a,a,"","Index",!1,null,this.getTagsForStencil("applications ","index",b).join(" ")),this.createVertexTemplateEntry(c+"iot_application.svg;",a,a,"","IoT Application",!1,null,this.getTagsForStencil("applications ","iot application",b).join(" ")),this.createVertexTemplateEntry(c+"microservice.svg;",1.37*a,a,"","Microservice",!1,null,this.getTagsForStencil("applications ","microservice",b).join(" ")),this.createVertexTemplateEntry(c+"mobile_app.svg;", +a,a,"","Mobile App",!1,null,this.getTagsForStencil("applications ","mobile app",b).join(" ")),this.createVertexTemplateEntry(c+"ontology.svg;",a,a,"","Ontology",!1,null,this.getTagsForStencil("applications ","ontology",b).join(" ")),this.createVertexTemplateEntry(c+"open_source_tools.svg;",a,a,"","Open Source Tools",!1,null,this.getTagsForStencil("applications ","open source tools",b).join(" ")),this.createVertexTemplateEntry(c+"runtime_services.svg;",a,a,"","Runtime Services",!1,null,this.getTagsForStencil("applications ", +"runtime services",b).join(" ")),this.createVertexTemplateEntry(c+"saas_applications.svg;",a,a,"","SaaS Applications",!1,null,this.getTagsForStencil("applications ","saas applications",b).join(" ")),this.createVertexTemplateEntry(c+"service_broker.svg;",a,a,"","Service Broker",!1,null,this.getTagsForStencil("applications ","service broker",b).join(" ")),this.createVertexTemplateEntry(c+"speech_to_text.svg;",a,a,"","Speech to Text",!1,null,this.getTagsForStencil("applications ","speech to text",b).join(" ")), +this.createVertexTemplateEntry(c+"visual_recognition.svg;",a,a,"","Visual Recognition",!1,null,this.getTagsForStencil("applications ","visual recognition",b).join(" ")),this.createVertexTemplateEntry(c+"visualization.svg;",a,a,"","Visualization",!1,null,this.getTagsForStencil("applications ","visualization",b).join(" "))];this.addPalette("ibmApplications","IBM / Applications",!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addIBMBlockchainPalette= +function(a,b,e,c){c+="blockchain/";var d=[this.createVertexTemplateEntry(c+"blockchain.svg;",a,a,"","Blockchain",!1,null,this.getTagsForStencil("blockchain ","",b).join(" ")),this.createVertexTemplateEntry(c+"blockchain_developer.svg;",a,a,"","Blockchain Developer",!1,null,this.getTagsForStencil("blockchain ","developer",b).join(" ")),this.createVertexTemplateEntry(c+"certificate_authority.svg;",a,a,"","Certificate Authority",!1,null,this.getTagsForStencil("blockchain ","certificate authority",b).join(" ")), +this.createVertexTemplateEntry(c+"client_application.svg;",a,a,"","Client Application",!1,null,this.getTagsForStencil("blockchain ","client application",b).join(" ")),this.createVertexTemplateEntry(c+"communication.svg;",a,a,"","Communication",!1,null,this.getTagsForStencil("blockchain ","communication",b).join(" ")),this.createVertexTemplateEntry(c+"consensus.svg;",a,a,"","Consensus",!1,null,this.getTagsForStencil("blockchain ","communication",b).join(" ")),this.createVertexTemplateEntry(c+"e_cert.svg;", +a,a,"","E-Cert",!1,null,this.getTagsForStencil("blockchain ","ecert e-cert",b).join(" ")),this.createVertexTemplateEntry(c+"event.svg;",a,a,"","Event",!1,null,this.getTagsForStencil("blockchain ","event",b).join(" ")),this.createVertexTemplateEntry(c+"event_listener.svg;",a,a,"","Event Listener",!1,null,this.getTagsForStencil("blockchain ","event listener",b).join(" ")),this.createVertexTemplateEntry(c+"existing_enterprise_systems.svg;",a,a,"","Existing Enterprise Systems",!1,null,this.getTagsForStencil("blockchain ", +"existing enterprise systems",b).join(" ")),this.createVertexTemplateEntry(c+"hyperledger_fabric.svg;",a,a,"","Hyperledger Fabric",!1,null,this.getTagsForStencil("blockchain ","hyperledger fabric",b).join(" ")),this.createVertexTemplateEntry(c+"identity_access_manager.svg;",a,a,"","Identity & Access Manager",!1,null,this.getTagsForStencil("blockchain ","identity access manager",b).join(" ")),this.createVertexTemplateEntry(c+"key_management.svg;",.38*a,.38*a,"","Key Management",!1,null,this.getTagsForStencil("blockchain ", +"key management",b).join(" ")),this.createVertexTemplateEntry(c+"ledger.svg;",a,a,"","Ledger",!1,null,this.getTagsForStencil("blockchain ","ledger",b).join(" ")),this.createVertexTemplateEntry(c+"membership.svg;",a,a,"","Membership",!1,null,this.getTagsForStencil("blockchain ","membership",b).join(" ")),this.createVertexTemplateEntry(c+"membership_services_provider_api.svg;",a,a,"","Membership Services Provider API",!1,null,this.getTagsForStencil("blockchain ","membership services provider api",b).join(" ")), +this.createVertexTemplateEntry(c+"message_bus.svg;",a,a,"","Message Bus",!1,null,this.getTagsForStencil("blockchain ","message bus",b).join(" ")),this.createVertexTemplateEntry(c+"node.svg;",a,a,"","Node",!1,null,this.getTagsForStencil("blockchain ","node",b).join(" ")),this.createVertexTemplateEntry(c+"services.svg;",a,a,"","Services",!1,null,this.getTagsForStencil("blockchain ","services",b).join(" ")),this.createVertexTemplateEntry(c+"smart_contract.svg;",a,a,"","Smart Contract",!1,null,this.getTagsForStencil("blockchain ", +"smart contract",b).join(" ")),this.createVertexTemplateEntry(c+"transaction_manager.svg;",a,a,"","Transaction Manager",!1,null,this.getTagsForStencil("blockchain ","transaction manager",b).join(" ")),this.createVertexTemplateEntry(c+"wallet.svg;",a,a,"","Wallet",!1,null,this.getTagsForStencil("blockchain ","wallet",b).join(" "))];this.addPalette("ibmBlockchain","IBM / Blockchain",!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addIBMDataPalette= +function(a,b,e,c){c+="data/";var d=[this.createVertexTemplateEntry(c+"caches.svg;",a,a,"","Caches",!1,null,this.getTagsForStencil("data ","caches",b).join(" ")),this.createVertexTemplateEntry(c+"conversation_trained_deployed.svg;",a,a,"","Conversation (Trained & Deployed)",!1,null,this.getTagsForStencil("data ","conversation trained deployed",b).join(" ")),this.createVertexTemplateEntry(c+"cloud.svg;",a,a,"","Cloud",!1,null,this.getTagsForStencil("data ","cloud",b).join(" ")),this.createVertexTemplateEntry(c+ +"data_services.svg;",a,a,"","Data Services",!1,null,this.getTagsForStencil("data ","data services",b).join(" ")),this.createVertexTemplateEntry(c+"data_sources.svg;",a,a,"","Data Sources",!1,null,this.getTagsForStencil("data ","data sources",b).join(" ")),this.createVertexTemplateEntry(c+"device_identity_service.svg;",a,a,"","Device Identity Service",!1,null,this.getTagsForStencil("data ","device identity service",b).join(" ")),this.createVertexTemplateEntry(c+"device_registry.svg;",a,a,"","Device Registry", +!1,null,this.getTagsForStencil("data ","device registry",b).join(" ")),this.createVertexTemplateEntry(c+"enterprise_data.svg;",a,a,"","Enterprise Data",!1,null,this.getTagsForStencil("data ","enterprise data",b).join(" ")),this.createVertexTemplateEntry(c+"enterprise_user_directory.svg;",a,a,"","Enterprise User Directory",!1,null,this.getTagsForStencil("data ","enterprise user directory",b).join(" ")),this.createVertexTemplateEntry(c+"file_repository.svg;",a,a,"","File Repository",!1,null,this.getTagsForStencil("data ", +"file repository",b).join(" ")),this.createVertexTemplateEntry(c+"ground_truth.svg;",a,a,"","Ground Truth",!1,null,this.getTagsForStencil("data ","ground truth",b).join(" ")),this.createVertexTemplateEntry(c+"model.svg;",a,a,"","Model",!1,null,this.getTagsForStencil("data ","model",b).join(" ")),this.createVertexTemplateEntry(c+"tms_data_interface.svg;",a,a,"","TMS Data Interface",!1,null,this.getTagsForStencil("data ","tms data interface",b).join(" "))];this.addPalette("ibmData","IBM / Data",!1, +mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addIBMDevOpsPalette=function(a,b,e,c){c+="devops/";var d=[this.createVertexTemplateEntry(c+"artifact_management.svg;",a,a,"","Artifact Management",!1,null,this.getTagsForStencil("devops ","artifact management",b).join(" ")),this.createVertexTemplateEntry(c+"build_test.svg;",a,a,"","Build & Test",!1,null,this.getTagsForStencil("devops ","build test",b).join(" ")),this.createVertexTemplateEntry(c+"code_editor.svg;", +a,a,"","Code Editor",!1,null,this.getTagsForStencil("devops ","code editor",b).join(" ")),this.createVertexTemplateEntry(c+"collaborative_development.svg;",a,a,"","Collaborative Development",!1,null,this.getTagsForStencil("devops ","collaborative development",b).join(" ")),this.createVertexTemplateEntry(c+"configuration_management.svg;",a,a,"","Configuration Management",!1,null,this.getTagsForStencil("devops ","configuration management",b).join(" ")),this.createVertexTemplateEntry(c+"continuous_deploy.svg;", +a,a,"","Continuous Deploy",!1,null,this.getTagsForStencil("devops ","continuous deploy",b).join(" ")),this.createVertexTemplateEntry(c+"continuous_testing.svg;",a,a,"","Continuous Testing",!1,null,this.getTagsForStencil("devops ","continuous testing",b).join(" ")),this.createVertexTemplateEntry(c+"devops.svg;",a,a,"","DevOps",!1,null,this.getTagsForStencil("devops ","devops",b).join(" ")),this.createVertexTemplateEntry(c+"provision.svg;",a,a,"","Provision",!1,null,this.getTagsForStencil("devops ", +"provision",b).join(" ")),this.createVertexTemplateEntry(c+"release_management.svg;",a,a,"","Release Management",!1,null,this.getTagsForStencil("devops ","release management",b).join(" "))];this.addPalette("ibmDevOps","IBM / DevOps",!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addIBMInfrastructurePalette=function(a,b,e,c){c+="infrastructure/";var d=[this.createVertexTemplateEntry(c+"channels.svg;",a,a,"","Channels",!1,null,this.getTagsForStencil("infrastructure ", +"channels",b).join(" ")),this.createVertexTemplateEntry(c+"cloud_messaging.svg;",a,a,"","Cloud Messaging",!1,null,this.getTagsForStencil("infrastructure ","cloud messaging",b).join(" ")),this.createVertexTemplateEntry(c+"dashboard.svg;",a,a,"","Dashboard",!1,null,this.getTagsForStencil("infrastructure ","dashboard",b).join(" ")),this.createVertexTemplateEntry(c+"diagnostics.svg;",a,a,"","Diagnostics",!1,null,this.getTagsForStencil("infrastructure ","diagnostics",b).join(" ")),this.createVertexTemplateEntry(c+ +"edge_services.svg;",a,a,"","Edge Services",!1,null,this.getTagsForStencil("infrastructure ","edge services",b).join(" ")),this.createVertexTemplateEntry(c+"enterprise_messaging.svg;",a,a,"","Enterprise Messaging",!1,null,this.getTagsForStencil("infrastructure ","enterprise messaging",b).join(" ")),this.createVertexTemplateEntry(c+"event_feed.svg;",a,a,"","Event Feed",!1,null,this.getTagsForStencil("infrastructure ","event feed",b).join(" ")),this.createVertexTemplateEntry(c+"infrastructure_services.svg;", +a,a,"","Infrastructure Services",!1,null,this.getTagsForStencil("infrastructure ","infrastructure services",b).join(" ")),this.createVertexTemplateEntry(c+"interservice_communication.svg;",a,a,"","Interservice Communication",!1,null,this.getTagsForStencil("infrastructure ","interservice communication",b).join(" ")),this.createVertexTemplateEntry(c+"load_balancing_routing.svg;",a,a,"","Load Balancing / Routing",!1,null,this.getTagsForStencil("infrastructure ","load balancing routing",b).join(" ")), +this.createVertexTemplateEntry(c+"microservices_mesh.svg;",a,a,"","Microservices Mesh",!1,null,this.getTagsForStencil("infrastructure ","microservices mesh",b).join(" ")),this.createVertexTemplateEntry(c+"mobile_backend.svg;",a,a,"","Mobile Backend",!1,null,this.getTagsForStencil("infrastructure ","mobile backend",b).join(" ")),this.createVertexTemplateEntry(c+"mobile_provider_network.svg;",a,a,"","Mobile Provider Network",!1,null,this.getTagsForStencil("infrastructure ","mobile provider network", +b).join(" ")),this.createVertexTemplateEntry(c+"monitoring.svg;",a,a,"","Monitoring",!1,null,this.getTagsForStencil("infrastructure ","monitoring",b).join(" ")),this.createVertexTemplateEntry(c+"monitoring_logging.svg;",a,a,"","Monitoring & Logging",!1,null,this.getTagsForStencil("infrastructure ","monitoring logging",b).join(" ")),this.createVertexTemplateEntry(c+"peer_services.svg;",a,a,"","Peer Services",!1,null,this.getTagsForStencil("infrastructure ","peer services",b).join(" ")),this.createVertexTemplateEntry(c+ +"service_discovery_configuration.svg;",a,a,"","Service Discovery & Configuration",!1,null,this.getTagsForStencil("infrastructure ","service discovery configuration",b).join(" ")),this.createVertexTemplateEntry(c+"transformation_connectivity.svg;",a,a,"","Transformation & Connectivity",!1,null,this.getTagsForStencil("infrastructure ","transformation connectivity",b).join(" "))];this.addPalette("ibmInfrastructure","IBM / Infrastructure",!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))}; +Sidebar.prototype.addIBMManagementPalette=function(a,b,e,c){c+="management/";var d=[this.createVertexTemplateEntry(c+"alert_notification.svg;",a,a,"","Alert Notification",!1,null,this.getTagsForStencil("management ","alert notification",b).join(" ")),this.createVertexTemplateEntry(c+"api_management.svg;",a,a,"","API Management",!1,null,this.getTagsForStencil("management ","api management",b).join(" ")),this.createVertexTemplateEntry(c+"cloud_management.svg;",a,a,"","Cloud Management",!1,null,this.getTagsForStencil("management ", +"cloud management",b).join(" ")),this.createVertexTemplateEntry(c+"cluster_management.svg;",a,a,"","Cluster Management",!1,null,this.getTagsForStencil("management ","cluster management",b).join(" ")),this.createVertexTemplateEntry(c+"content_management.svg;",a,a,"","Content Management",!1,null,this.getTagsForStencil("management ","content management",b).join(" ")),this.createVertexTemplateEntry(c+"data_services.svg;",a,a,"","Data Services",!1,null,this.getTagsForStencil("management ","data services", +b).join(" ")),this.createVertexTemplateEntry(c+"device_management.svg;",a,a,"","Device Management",!1,null,this.getTagsForStencil("management ","device management",b).join(" ")),this.createVertexTemplateEntry(c+"information_governance.svg;",a,a,"","Information Governance",!1,null,this.getTagsForStencil("management ","information governance",b).join(" ")),this.createVertexTemplateEntry(c+"it_service_management.svg;",a,a,"","IT Service Management",!1,null,this.getTagsForStencil("management ","it service management information technology", +b).join(" ")),this.createVertexTemplateEntry(c+"management.svg;",a,a,"","Management",!1,null,this.getTagsForStencil("management ","management",b).join(" ")),this.createVertexTemplateEntry(c+"monitoring_metrics.svg;",a,a,"","Monitoring & Metrics",!1,null,this.getTagsForStencil("management ","monitoring metrics",b).join(" ")),this.createVertexTemplateEntry(c+"process_management.svg;",a,a,"","Process Management",!1,null,this.getTagsForStencil("management ","process management",b).join(" ")),this.createVertexTemplateEntry(c+ +"provider_cloud_portal_service.svg;",a,a,"","Provider Cloud Portal Service",!1,null,this.getTagsForStencil("management ","provider cloud portal service",b).join(" ")),this.createVertexTemplateEntry(c+"push_notifications.svg;",a,a,"","Push Notifications",!1,null,this.getTagsForStencil("management ","push notifications",b).join(" ")),this.createVertexTemplateEntry(c+"service_management_tools.svg;",a,a,"","Service Management Tools",!1,null,this.getTagsForStencil("management ","service management tools", +b).join(" "))];this.addPalette("ibmManagement","IBM / Management",!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addIBMMiscPalette=function(a,b,e,c){c+="miscellaneous/";var d=[this.createVertexTemplateEntry(c+"bluemix.svg;",a,a,"","Bluemix",!1,null,this.getTagsForStencil("miscellaneous ","bluemix",b).join(" ")),this.createVertexTemplateEntry(c+"cloudant.svg;",a,a,"","Cloudant",!1,null,this.getTagsForStencil("miscellaneous ","cloudant",b).join(" ")), +this.createVertexTemplateEntry(c+"cognitive_services.svg;",a,a,"","Cognitive Services",!1,null,this.getTagsForStencil("miscellaneous ","cognitive services",b).join(" ")),this.createVertexTemplateEntry(c+"ibm_containers.svg;",a,a,"","IBM Containers",!1,null,this.getTagsForStencil("miscellaneous ","ibm containers",b).join(" ")),this.createVertexTemplateEntry(c+"ibm_public_cloud.svg;",a,.77*a,"","IBM Public Cloud",!1,null,this.getTagsForStencil("miscellaneous ","ibm public cloud",b).join(" ")),this.createVertexTemplateEntry(c+ +"iot_cloud.svg;",a,.77*a,"","IoT Cloud",!1,null,this.getTagsForStencil("miscellaneous ","iot cloud internet of things",b).join(" ")),this.createVertexTemplateEntry(c+"microservices_application.svg;",a,a,"","Microservices Application",!1,null,this.getTagsForStencil("miscellaneous ","microservices application",b).join(" ")),this.createVertexTemplateEntry(c+"object_storage.svg;",a,a,"","Object Storage",!1,null,this.getTagsForStencil("miscellaneous ","object storage",b).join(" ")),this.createVertexTemplateEntry(c+ +"offline_capabilities.svg;",a,a,"","Offline Capabilities",!1,null,this.getTagsForStencil("miscellaneous ","offline capabilities",b).join(" ")),this.createVertexTemplateEntry(c+"openwhisk.svg;",a,a,"","Openwhisk",!1,null,this.getTagsForStencil("miscellaneous ","openwhisk",b).join(" ")),this.createVertexTemplateEntry(c+"peer_cloud.svg;",a,.77*a,"","Peer Cloud",!1,null,this.getTagsForStencil("miscellaneous ","peer cloud",b).join(" ")),this.createVertexTemplateEntry(c+"retrieve_rank.svg;",a,a,"","Retrieve Rank", +!1,null,this.getTagsForStencil("miscellaneous ","retrieve rank",b).join(" ")),this.createVertexTemplateEntry(c+"scalable.svg;",.25*a,.25*a,"","Scalable",!1,null,this.getTagsForStencil("miscellaneous ","scalable",b).join(" ")),this.createVertexTemplateEntry(c+"text_to_speech.svg;",a,a,"","Text to Speech",!1,null,this.getTagsForStencil("miscellaneous ","text to speech",b).join(" "))];this.addPalette("ibmMiscellaneous","IBM / Miscellaneous",!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))}; +Sidebar.prototype.addIBMSecurityPalette=function(a,b,e,c){c+="security/";var d=[this.createVertexTemplateEntry(c+"api_security.svg;",a,a,"","API Security",!1,null,this.getTagsForStencil("security ","api security",b).join(" ")),this.createVertexTemplateEntry(c+"blockchain_security_service.svg;",a,a,"","Blockchain Security Service",!1,null,this.getTagsForStencil("security ","blockchain security service",b).join(" ")),this.createVertexTemplateEntry(c+"data_security.svg;",a,a,"","Data Security",!1,null, +this.getTagsForStencil("security ","data security",b).join(" ")),this.createVertexTemplateEntry(c+"firewall.svg;",a,a,"","Firewall",!1,null,this.getTagsForStencil("security ","firewall",b).join(" ")),this.createVertexTemplateEntry(c+"gateway.svg;",a,a,"","Gateway",!1,null,this.getTagsForStencil("security ","gateway",b).join(" ")),this.createVertexTemplateEntry(c+"governance_risk_compliance.svg;",a,a,"","Governance, Risk & Compliance",!1,null,this.getTagsForStencil("security ","governance risk compliance", +b).join(" ")),this.createVertexTemplateEntry(c+"identity_access_management.svg;",a,a,"","Identity & Access Management",!1,null,this.getTagsForStencil("security ","identity access management",b).join(" ")),this.createVertexTemplateEntry(c+"identity_provider.svg;",a,a,"","Identity Provider",!1,null,this.getTagsForStencil("security ","identity provider",b).join(" ")),this.createVertexTemplateEntry(c+"infrastructure_security.svg;",a,a,"","Infrastructure Security",!1,null,this.getTagsForStencil("security ", +"infrastructure security",b).join(" ")),this.createVertexTemplateEntry(c+"physical_security.svg;",a,a,"","Physical Security",!1,null,this.getTagsForStencil("security ","physical security",b).join(" ")),this.createVertexTemplateEntry(c+"security_monitoring_intelligence.svg;",a,a,"","Security Monitoring & Intelligence",!1,null,this.getTagsForStencil("security ","security monitoring intelligence",b).join(" ")),this.createVertexTemplateEntry(c+"security_services.svg;",a,a,"","Security Services",!1,null, +this.getTagsForStencil("security ","security services",b).join(" ")),this.createVertexTemplateEntry(c+"trustend_computing.svg;",a,a,"","Trustend Computing",!1,null,this.getTagsForStencil("security ","trustend computing",b).join(" ")),this.createVertexTemplateEntry(c+"vpn.svg;",a,a,"","VPN",!1,null,this.getTagsForStencil("security ","vpn virtual private network",b).join(" "))];this.addPalette("ibmSecurity","IBM / Security",!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))}; +Sidebar.prototype.addIBMSocialPalette=function(a,b,e,c){c+="social/";var d=[this.createVertexTemplateEntry(c+"communities.svg;",a,a,"","Communities",!1,null,this.getTagsForStencil("social ","communities",b).join(" ")),this.createVertexTemplateEntry(c+"file_sync.svg;",a,a,"","File Sync",!1,null,this.getTagsForStencil("social ","file sync",b).join(" ")),this.createVertexTemplateEntry(c+"live_collaboration.svg;",a,a,"","Live Collaboration",!1,null,this.getTagsForStencil("social ","live collaboration", +b).join(" ")),this.createVertexTemplateEntry(c+"messaging.svg;",a,a,"","Messaging",!1,null,this.getTagsForStencil("social ","messaging",b).join(" ")),this.createVertexTemplateEntry(c+"networking.svg;",a,a,"","Networking",!1,null,this.getTagsForStencil("social ","networking",b).join(" "))];this.addPalette("ibmSocial","IBM / Social",!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addIBMUsersPalette=function(a,b,e,c){c+="users/";var d=[this.createVertexTemplateEntry(c+ +"browser.svg;",a,a,"","Browser",!1,null,this.getTagsForStencil("users ","browser",b).join(" ")),this.createVertexTemplateEntry(c+"device.svg;",a,a,"","Device",!1,null,this.getTagsForStencil("users ","device",b).join(" ")),this.createVertexTemplateEntry(c+"integrated_digital_experiences.svg;",a,a,"","Integrated Digital Experiences",!1,null,this.getTagsForStencil("users ","integrated digital experiences",b).join(" ")),this.createVertexTemplateEntry(c+"physical_entity.svg;",a,a,"","Physical Entity", +!1,null,this.getTagsForStencil("users ","physical entity",b).join(" ")),this.createVertexTemplateEntry(c+"sensor.svg;",a,a,"","Sensor",!1,null,this.getTagsForStencil("users ","sensor",b).join(" ")),this.createVertexTemplateEntry(c+"user.svg;",a,a,"","User",!1,null,this.getTagsForStencil("users ","user",b).join(" "))];this.addPalette("ibmUsers","IBM / Users",!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addIBMVPCPalette=function(a,b,e,c){c+= +"vpc/";var d=[this.createVertexTemplateEntry(c+"Instance.svg;",a,a,"","Instance",!1,null,this.getTagsForStencil("vpc virtual private cloud ","instance",b).join(" ")),this.createVertexTemplateEntry(c+"LoadBalancer.svg;",a,a,"","Load Balancer",!1,null,this.getTagsForStencil("vpc virtual private cloud ","load balancer",b).join(" ")),this.createVertexTemplateEntry(c+"BareMetalServer.svg;",a,a,"","Bare Metal Server",!1,null,this.getTagsForStencil("vpc virtual private cloud ","bare metal server",b).join(" ")), +this.createVertexTemplateEntry(c+"BlockStorage.svg;",a,a,"","Block Storage",!1,null,this.getTagsForStencil("vpc virtual private cloud ","block storage",b).join(" ")),this.createVertexTemplateEntry(c+"FloatingIP.svg;",a,a,"","Floating IP",!1,null,this.getTagsForStencil("vpc virtual private cloud ","floating ip internet protocol",b).join(" ")),this.createVertexTemplateEntry(c+"PublicGateway.svg;",a,a,"","Public Gateway",!1,null,this.getTagsForStencil("vpc virtual private cloud ","public gateway",b).join(" ")), +this.createVertexTemplateEntry(c+"ObjectStorage.svg;",a,a,"","Object Storage",!1,null,this.getTagsForStencil("vpc virtual private cloud ","object storage",b).join(" ")),this.createVertexTemplateEntry(c+"VPNConnection.svg;",a,a,"","VPN Connection",!1,null,this.getTagsForStencil("vpc virtual private cloud ","connection",b).join(" ")),this.createVertexTemplateEntry(c+"VPNGateway.svg;",a,a,"","VPN Gateway",!1,null,this.getTagsForStencil("vpc virtual private cloud ","gateway",b).join(" ")),this.createVertexTemplateEntry(c+ +"DirectLink.svg;",a,a,"","Direct Link",!1,null,this.getTagsForStencil("vpc virtual private cloud ","direct link",b).join(" ")),this.createVertexTemplateEntry(c+"ImageService.svg;",a,a,"","Image Service",!1,null,this.getTagsForStencil("vpc virtual private cloud ","image service",b).join(" ")),this.createVertexTemplateEntry(c+"LoadBalancerPool.svg;",a,a,"","Load Balancer Pool",!1,null,this.getTagsForStencil("vpc virtual private cloud ","load balancer pool",b).join(" ")),this.createVertexTemplateEntry(c+ +"LoadBalancerListener.svg;",a,a,"","Load Balancer Listener",!1,null,this.getTagsForStencil("vpc virtual private cloud ","load balancer listener",b).join(" ")),this.createVertexTemplateEntry(c+"Rules.svg;",a,a,"","Rules",!1,null,this.getTagsForStencil("vpc virtual private cloud ","load balancer listener",b).join(" ")),this.createVertexTemplateEntry(c+"Key.svg;",a,a,"","Key",!1,null,this.getTagsForStencil("vpc virtual private cloud ","key",b).join(" ")),this.createVertexTemplateEntry(c+"VPNPolicy.svg;", +a,a,"","VPN Policy",!1,null,this.getTagsForStencil("vpc virtual private cloud ","policy",b).join(" ")),this.createVertexTemplateEntry(c+"InternetServices2.svg;",a,a,"","Internet Services",!1,null,this.getTagsForStencil("vpc virtual private cloud ","internet services",b).join(" ")),this.createVertexTemplateEntry(c+"Router.svg;",a,a,"","Router",!1,null,this.getTagsForStencil("vpc virtual private cloud ","router",b).join(" ")),this.createVertexTemplateEntry(c+"Bridge.svg;",a,a,"","Bridge",!1,null,this.getTagsForStencil("vpc virtual private cloud ", +"bridge",b).join(" ")),this.addEntry(b+"ibm cloud",function(){var a=new mxCell("IBM Cloud",new mxGeometry(0,0,200,200),"swimlane;fontStyle=0;horizontal=1;collapsible=0;startSize=28;swimlaneLine=0;swimlaneFillColor=none;fillColor=none;rounded=0;whiteSpace=wrap;html=1;absoluteArcSize=1;arcSize=12;strokeColor=#417CB9;fontColor=#000000;verticalAlign=top;align=left;spacingLeft=30;spacingTop=1;dashed=0;strokeWidth=1;");a.vertex=!0;var b=new mxCell("",new mxGeometry(0,0,30,30),c+"CloudTag.svg;part=1;"); +b.vertex=!0;a.insert(b);return e.createVertexTemplateFromCells([a],200,200,"IBM Cloud")}),this.addEntry(b+"",function(){var a=new mxCell("VPC",new mxGeometry(0,0,200,200),"swimlane;fontStyle=0;horizontal=1;collapsible=0;startSize=28;swimlaneLine=0;swimlaneFillColor=none;fillColor=none;rounded=0;whiteSpace=wrap;html=1;absoluteArcSize=1;arcSize=12;strokeColor=#417CB9;fontColor=#000000;verticalAlign=top;align=left;spacingLeft=30;spacingTop=1;dashed=0;strokeWidth=1;");a.vertex=!0;var b=new mxCell("", +new mxGeometry(0,0,30,30),c+"VPCTag.svg;part=1;");b.vertex=!0;a.insert(b);return e.createVertexTemplateFromCells([a],200,200,"VPC")}),this.addEntry(b+"",function(){var a=new mxCell("Region",new mxGeometry(0,0,200,200),"swimlane;fontStyle=0;horizontal=1;collapsible=0;startSize=28;swimlaneLine=0;swimlaneFillColor=none;fillColor=none;rounded=0;whiteSpace=wrap;html=1;absoluteArcSize=1;arcSize=0;strokeColor=#00882B;fontColor=#000000;verticalAlign=top;align=left;spacingLeft=30;dashed=1;strokeWidth=1;container=1;dashPattern=1 1;"); +a.vertex=!0;var b=new mxCell("",new mxGeometry(0,0,30,30),c+"RegionTag.svg;part=1;");b.vertex=!0;a.insert(b);return e.createVertexTemplateFromCells([a],200,200,"Region")}),this.addEntry(b+"",function(){var a=new mxCell("Zone",new mxGeometry(0,0,200,200),"swimlane;fontStyle=0;horizontal=1;collapsible=0;startSize=28;swimlaneLine=0;swimlaneFillColor=none;fillColor=none;rounded=0;whiteSpace=wrap;html=1;absoluteArcSize=1;arcSize=0;strokeColor=#00882B;fontColor=#000000;verticalAlign=top;align=left;spacingLeft=30;dashed=1;strokeWidth=1;container=1;"); +a.vertex=!0;var b=new mxCell("",new mxGeometry(0,0,30,30),c+"ZoneTag.svg;part=1;");b.vertex=!0;a.insert(b);return e.createVertexTemplateFromCells([a],200,200,"Zone")}),this.addEntry(b+"",function(){var a=new mxCell("Subnet",new mxGeometry(0,0,200,200),"swimlane;fontStyle=0;horizontal=1;collapsible=0;startSize=28;swimlaneLine=0;swimlaneFillColor=none;fillColor=none;rounded=0;whiteSpace=wrap;html=1;absoluteArcSize=1;arcSize=12;strokeColor=#2A8838;fontColor=#000000;verticalAlign=top;align=left;spacingLeft=30;spacingTop=1;dashed=0;strokeWidth=1;"); +a.vertex=!0;var b=new mxCell("",new mxGeometry(0,0,30,40),c+"SubnetTag.svg;part=1;");b.vertex=!0;a.insert(b);return e.createVertexTemplateFromCells([a],200,200,"Subnet")}),this.createVertexTemplateEntry("rounded=0;whiteSpace=wrap;html=1;absoluteArcSize=1;arcSize=0;strokeColor=#FD0000;fillColor=none;fontColor=#000000;verticalAlign=top;align=center;spacingLeft=5;dashed=1;dashPattern=5 2;labelPosition=center;verticalLabelPosition=bottom;strokeWidth=2;",200,200,"Security Group","Security Group",!0,null, +this.getTagsForStencil("vpc virtual private cloud ","",b).join(" ")),this.addEntry(b+"",function(){var a=new mxCell("Classic Infrastructure",new mxGeometry(0,0,200,200),"swimlane;fontStyle=0;horizontal=1;collapsible=0;startSize=28;swimlaneLine=0;swimlaneFillColor=none;fillColor=none;rounded=0;whiteSpace=wrap;html=1;absoluteArcSize=1;arcSize=0;strokeColor=#4376BB;fontColor=#000000;verticalAlign=top;align=left;spacingLeft=30;dashed=0;strokeWidth=1;container=1;");a.vertex=!0;var b=new mxCell("",new mxGeometry(0, +0,30,30),c+"ClassicInfrastructureTag.svg;part=1;");b.vertex=!0;a.insert(b);return e.createVertexTemplateFromCells([a],200,200,"Classic Infrastructure")}),this.createVertexTemplateEntry("swimlane;fontStyle=0;horizontal=1;collapsible=0;startSize=28;swimlaneLine=0;swimlaneFillColor=none;fillColor=none;rounded=0;whiteSpace=wrap;html=1;absoluteArcSize=1;arcSize=0;strokeColor=#4376BB;fontColor=#000000;verticalAlign=top;align=left;spacingLeft=30;dashed=0;strokeWidth=1;container=1;",200,200,"Other Group", +"Other Group",!0,null,this.getTagsForStencil("vpc virtual private cloud ","",b).join(" ")),this.addEntry(b+"",function(){var a=new mxCell("",new mxGeometry(0,0,320,200),"swimlane;fontStyle=0;horizontal=1;collapsible=0;startSize=28;swimlaneLine=0;swimlaneFillColor=none;fillColor=none;rounded=0;whiteSpace=wrap;html=1;absoluteArcSize=1;arcSize=0;strokeColor=#4376BB;fontColor=#000000;verticalAlign=top;align=left;spacingLeft=5;dashed=0;strokeWidth=1;container=1;");a.vertex=!0;var b=new mxCell("Public", +new mxGeometry(15,0,30,30),"aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;shadow=0;dashed=0;fontColor=#000000;labelBackgroundColor=none;fontSize=12;spacingTop=-5;image;image=img/lib/ibm/vpc/PublicTag.svg;part=1;");b.vertex=!0;a.insert(b);b=new mxCell("Enterprise",new mxGeometry(275,0,30,30),"aspect=fixed;perimeter=ellipsePerimeter;html=1;align=center;shadow=0;dashed=0;fontColor=#000000;labelBackgroundColor=none;fontSize=12;spacingTop=-5;image;image=img/lib/ibm/vpc/EnterpriseTag.svg;part=1;"); +b.vertex=!0;a.insert(b);b=new mxCell("IBM Cloud",new mxGeometry(60,0,200,200),"swimlane;fontStyle=0;horizontal=1;collapsible=0;startSize=28;swimlaneLine=0;swimlaneFillColor=none;fillColor=none;rounded=0;whiteSpace=wrap;html=1;absoluteArcSize=1;arcSize=12;strokeColor=#417CB9;fontColor=#000000;verticalAlign=top;align=left;spacingLeft=30;spacingTop=1;dashed=0;strokeWidth=1;");b.vertex=!0;a.insert(b);var d=new mxCell("",new mxGeometry(0,0,30,30),c+"CloudTag.svg;part=1;");d.vertex=!0;b.insert(d);return e.createVertexTemplateFromCells([a], +320,200,"Cloud Universe")}),this.createVertexTemplateEntry(c+"CloudTag.svg;",.5*a,.5*a,"","IBM Cloud tag",!1,null,this.getTagsForStencil("vpc virtual private cloud ","cloud tag ibm",b).join(" ")),this.createVertexTemplateEntry(c+"VPCTag.svg;",.5*a,.5*a,"","VPC tag",!1,null,this.getTagsForStencil("vpc virtual private cloud ","tag",b).join(" ")),this.createVertexTemplateEntry(c+"RegionTag.svg;",.5*a,.5*a,"","Region tag",!1,null,this.getTagsForStencil("vpc virtual private cloud ","region tag",b).join(" ")), +this.createVertexTemplateEntry(c+"ZoneTag.svg;",.5*a,.5*a,"","Zone tag",!1,null,this.getTagsForStencil("vpc virtual private cloud ","zone tag",b).join(" ")),this.createVertexTemplateEntry(c+"SubnetTag.svg;",.37*a,.5*a,"","Subnet tag",!1,null,this.getTagsForStencil("vpc virtual private cloud ","subnet tag",b).join(" ")),this.createVertexTemplateEntry(c+"EnterpriseTag.svg;",.5*a,.5*a,"","Enterprise tag",!1,null,this.getTagsForStencil("vpc virtual private cloud ","enterprise tag",b).join(" ")),this.createVertexTemplateEntry(c+ +"PublicTag.svg;",.5*a,.5*a,"","Public tag",!1,null,this.getTagsForStencil("vpc virtual private cloud ","public tag",b).join(" ")),this.createVertexTemplateEntry(c+"ClassicInfrastructureTag.svg;",.5*a,.5*a,"","Classic Infrastructure tag",!1,null,this.getTagsForStencil("vpc virtual private cloud ","classic tag",b).join(" ")),this.createVertexTemplateEntry(c+"Internet.svg;",a,a,"","Internet",!1,null,this.getTagsForStencil("vpc virtual private cloud ","internet",b).join(" ")),this.createVertexTemplateEntry(c+ +"Enterprise.svg;",a,a,"","Data Center",!1,null,this.getTagsForStencil("vpc virtual private cloud ","dat acenter",b).join(" ")),this.createVertexTemplateEntry(c+"Enterprise2.svg;",a,.8*a,"","Enterprise",!1,null,this.getTagsForStencil("vpc virtual private cloud ","enterprise",b).join(" ")),this.createEdgeTemplateEntry("edgeStyle=orthogonalEdgeStyle;fontSize=12;html=1;endArrow=classicThin;endFill=1;rounded=0;strokeColor=#000000;strokeWidth=1;startArrow=classicThin;startFill=1;",a,a,"","Bidirectional Connector", +null,b+"bidirectional connector"),this.createEdgeTemplateEntry("edgeStyle=orthogonalEdgeStyle;fontSize=12;html=1;endArrow=classicThin;endFill=1;rounded=0;strokeColor=#000000;strokeWidth=1;",a,a,"","Directional Connector",null,b+"directional connector"),this.createEdgeTemplateEntry("edgeStyle=orthogonalEdgeStyle;fontSize=12;html=1;endArrow=none;endFill=0;rounded=0;strokeColor=#000000;strokeWidth=1;",a,a,"","Nondirectional Connector",null,b+"nondirectional connector")];this.addPalette("ibmVPC","IBM / VPC", +!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))}})();(function(){Sidebar.prototype.addInfographicPalette=function(){var a=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;html=1;shape=mxgraph.infographic.",b=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;html=1;shape=mxgraph.basic.";this.addPaletteFunctions("infographic","Infographic",!1,[this.createVertexTemplateEntry(b+"pie;fillColor=#10739E;strokeColor=none;startAngle=0.2;endAngle=0.9;",100,100,"","Pie",null, +null,this.getTagsForStencil("mxgraph.infographic","pie","").join(" ")),this.createVertexTemplateEntry(b+"arc;strokeColor=#10739E;strokeWidth=6;startAngle=0.3;endAngle=0.1;",100,100,"","Arc",null,null,this.getTagsForStencil("mxgraph.infographic","arc","").join(" ")),this.createVertexTemplateEntry(b+"partConcEllipse;fillColor=#10739E;strokeColor=none;startAngle=0.25;endAngle=0.1;arcWidth=0.5;",100,100,"","Partial Concentric Ellipse",null,null,this.getTagsForStencil("mxgraph.infographic","partConcEllipse", "").join(" ")),this.createVertexTemplateEntry(a+"parallelogram;dx=15;fillColor=#10739E;strokeColor=none;",100,70,"","Trapezoid",null,null,this.getTagsForStencil("mxgraph.infographic","partConcEllipse","").join(" ")),this.createVertexTemplateEntry("html=1;shape=mxgraph.infographic.ribbonSimple;notch1=20;notch2=20;fillColor=#10739E;strokeColor=none;align=center;verticalAlign=middle;fontColor=#ffffff;fontSize=14;fontStyle=1;",200,40,"Label","Ribbon",null,null,this.getTagsForStencil("mxgraph.infographic", "ribbonRolled","").join(" ")),this.createVertexTemplateEntry("html=1;shape=mxgraph.infographic.ribbonRolled;dx=185;dy=15;fillColor=#10739E;strokeColor=none;align=center;verticalAlign=middle;fontColor=#ffffff;fontSize=14;fontStyle=1;",200,70,"Label","Ribbon (rolled)",null,null,this.getTagsForStencil("mxgraph.infographic","ribbonRolled","").join(" ")),this.createVertexTemplateEntry("html=1;shape=mxgraph.infographic.ribbonDoubleFolded;dx=25;dy=15;fillColor=#10739E;strokeColor=none;align=center;verticalAlign=middle;fontColor=#ffffff;fontSize=14;fontStyle=1;", 200,70,"Label","Ribbon (double folded)",null,null,this.getTagsForStencil("mxgraph.infographic","ribbonDoubleFolded","").join(" ")),this.createVertexTemplateEntry("html=1;shape=mxgraph.infographic.ribbonFrontFolded;dx=25;dy=15;notch=15;fillColor=#10739E;strokeColor=none;align=center;verticalAlign=middle;fontColor=#ffffff;fontSize=14;fontStyle=1;spacingTop=10;",200,100*.55,"Label","Ribbon (front folded)",null,null,this.getTagsForStencil("mxgraph.infographic","ribbonFrontFolded","").join(" ")),this.createVertexTemplateEntry("html=1;shape=mxgraph.infographic.ribbonBackFolded;dx=25;dy=15;notch=15;fillColor=#10739E;strokeColor=none;align=center;verticalAlign=middle;fontColor=#ffffff;fontSize=14;fontStyle=1;spacingTop=10;", @@ -5844,8 +5845,8 @@ a.vertex=!0;var b=new mxCell("1",new mxGeometry(0,0,60,60),"shape=ellipse;perime 60,140,"","Circular Callout",null,null,this.getTagsForStencil("mxgraph.infographic","circularCallout2","").join(" ")),this.addEntry("circular dial",function(){var a=new mxCell("",new mxGeometry(0,0,100,100),"verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.donut;dx=10;strokeColor=none;fillColor=#10739E;fontSize=10;fontColor=#000000;align=center;fillOpacity=20;");a.vertex=!0;var b=new mxCell("65%",new mxGeometry(0,0,100,100),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.basic.partConcEllipse;startAngle=0;endAngle=0.65;arcWidth=0.2;strokeColor=none;fillColor=#10739E;fontSize=22;fontColor=#10739E;align=center;fontStyle=1"); b.vertex=!0;a.insert(b);return sb.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,"Circular Dial")}),this.addEntry("angled entry",function(){var a=new mxCell("1",new mxGeometry(0,0,50,30),"shape=mxgraph.infographic.parallelogram;dx=5;html=1;fillColor=#10739E;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=center;fontStyle=1;");a.vertex=!0;var b=new mxCell("Label",new mxGeometry(45,0,95,30),"shape=mxgraph.infographic.parallelogram;dx=5;;html=1;fillColor=#B1DDF0;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=left;spacingLeft=10;fontStyle=1;"); b.vertex=!0;return sb.createVertexTemplateFromCells([a,b],140,30,"Angled Entry")}),this.addEntry("chevron list",function(){var a=new mxCell("LABEL",new mxGeometry(0,0,200,30),"shape=step;perimeter=stepPerimeter;whiteSpace=wrap;html=1;fixedSize=1;size=10;fillColor=#10739E;strokeColor=none;fontSize=17;fontColor=#FFFFFF;fontStyle=1;align=center;rounded=0;");a.vertex=!0;var b=new mxCell(" - Lorem ipsum dolor sit amet<br> - consectetur adipisicing elit<br> - sed do eiusmod tempor<br> - incididunt ut labore et dolore<br> - magna aliqua.", -new mxGeometry(0,40,190,120),"shape=rect;fillColor=#B1DDF0;strokeColor=none;fontSize=12;fontColor=#000000;html=1;whiteSpace=wrap;align=left;verticalAlign=top;spacing=5;rounded=0;");b.vertex=!0;var c=new mxCell(" - Lorem ipsum dolor sit amet<br> - consectetur adipisicing elit<br> - sed do eiusmod tempor<br> - incididunt ut labore et dolore<br> - magna aliqua.",new mxGeometry(0,170,190,120),"shape=rect;fillColor=#B1DDF0;strokeColor=none;fontSize=12;fontColor=#000000;html=1;whiteSpace=wrap;align=left;verticalAlign=top;spacing=5;rounded=0;"); -c.vertex=!0;var d=new mxCell(" - Lorem ipsum dolor sit amet<br> - consectetur adipisicing elit<br> - sed do eiusmod tempor<br> - incididunt ut labore et dolore<br> - magna aliqua.",new mxGeometry(0,300,190,120),"shape=rect;fillColor=#B1DDF0;strokeColor=none;fontSize=12;fontColor=#000000;html=1;whiteSpace=wrap;align=left;verticalAlign=top;spacing=5;rounded=0;");d.vertex=!0;var g=new mxCell("LABEL",new mxGeometry(200,0,200,30),"shape=step;perimeter=stepPerimeter;whiteSpace=wrap;html=1;fixedSize=1;size=10;fillColor=#F2931E;strokeColor=none;fontSize=17;fontColor=#FFFFFF;fontStyle=1;align=center;rounded=0;"); +new mxGeometry(0,40,190,120),"shape=rect;fillColor=#B1DDF0;strokeColor=none;fontSize=12;fontColor=#000000;html=1;whiteSpace=wrap;align=left;verticalAlign=top;spacing=5;rounded=0;");b.vertex=!0;var d=new mxCell(" - Lorem ipsum dolor sit amet<br> - consectetur adipisicing elit<br> - sed do eiusmod tempor<br> - incididunt ut labore et dolore<br> - magna aliqua.",new mxGeometry(0,170,190,120),"shape=rect;fillColor=#B1DDF0;strokeColor=none;fontSize=12;fontColor=#000000;html=1;whiteSpace=wrap;align=left;verticalAlign=top;spacing=5;rounded=0;"); +d.vertex=!0;var f=new mxCell(" - Lorem ipsum dolor sit amet<br> - consectetur adipisicing elit<br> - sed do eiusmod tempor<br> - incididunt ut labore et dolore<br> - magna aliqua.",new mxGeometry(0,300,190,120),"shape=rect;fillColor=#B1DDF0;strokeColor=none;fontSize=12;fontColor=#000000;html=1;whiteSpace=wrap;align=left;verticalAlign=top;spacing=5;rounded=0;");f.vertex=!0;var g=new mxCell("LABEL",new mxGeometry(200,0,200,30),"shape=step;perimeter=stepPerimeter;whiteSpace=wrap;html=1;fixedSize=1;size=10;fillColor=#F2931E;strokeColor=none;fontSize=17;fontColor=#FFFFFF;fontStyle=1;align=center;rounded=0;"); g.vertex=!0;var h=new mxCell(" - Lorem ipsum dolor sit amet<br> - consectetur adipisicing elit<br> - sed do eiusmod tempor<br> - incididunt ut labore et dolore<br> - magna aliqua.",new mxGeometry(200,40,190,120),"shape=rect;fillColor=#FCE7CD;strokeColor=none;fontSize=12;fontColor=#000000;html=1;whiteSpace=wrap;align=left;verticalAlign=top;spacing=5;rounded=0;");h.vertex=!0;var k=new mxCell(" - Lorem ipsum dolor sit amet<br> - consectetur adipisicing elit<br> - sed do eiusmod tempor<br> - incididunt ut labore et dolore<br> - magna aliqua.", new mxGeometry(200,170,190,120),"shape=rect;fillColor=#FCE7CD;strokeColor=none;fontSize=12;fontColor=#000000;html=1;whiteSpace=wrap;align=left;verticalAlign=top;spacing=5;rounded=0;");k.vertex=!0;var l=new mxCell(" - Lorem ipsum dolor sit amet<br> - consectetur adipisicing elit<br> - sed do eiusmod tempor<br> - incididunt ut labore et dolore<br> - magna aliqua.",new mxGeometry(200,300,190,120),"shape=rect;fillColor=#FCE7CD;strokeColor=none;fontSize=12;fontColor=#000000;html=1;whiteSpace=wrap;align=left;verticalAlign=top;spacing=5;rounded=0;"); l.vertex=!0;var m=new mxCell("LABEL",new mxGeometry(400,0,200,30),"shape=step;perimeter=stepPerimeter;whiteSpace=wrap;html=1;fixedSize=1;size=10;fillColor=#AE4132;strokeColor=none;fontSize=17;fontColor=#FFFFFF;fontStyle=1;align=center;rounded=0;");m.vertex=!0;var q=new mxCell(" - Lorem ipsum dolor sit amet<br> - consectetur adipisicing elit<br> - sed do eiusmod tempor<br> - incididunt ut labore et dolore<br> - magna aliqua.",new mxGeometry(400,40,190,120),"shape=rect;fillColor=#FAD9D5;strokeColor=none;fontSize=12;fontColor=#000000;html=1;whiteSpace=wrap;align=left;verticalAlign=top;spacing=5;rounded=0;"); @@ -5855,201 +5856,201 @@ new mxGeometry(600,40,190,120),"shape=rect;fillColor=#BAC8D3;strokeColor=none;fo t.vertex=!0;var y=new mxCell(" - Lorem ipsum dolor sit amet<br> - consectetur adipisicing elit<br> - sed do eiusmod tempor<br> - incididunt ut labore et dolore<br> - magna aliqua.",new mxGeometry(600,300,190,120),"shape=rect;fillColor=#BAC8D3;strokeColor=none;fontSize=12;fontColor=#000000;html=1;whiteSpace=wrap;align=left;verticalAlign=top;spacing=5;rounded=0;");y.vertex=!0;var x=new mxCell("LABEL",new mxGeometry(800,0,200,30),"shape=step;perimeter=stepPerimeter;whiteSpace=wrap;html=1;fixedSize=1;size=10;fillColor=#12AAB5;strokeColor=none;fontSize=17;fontColor=#FFFFFF;fontStyle=1;align=center;rounded=0;"); x.vertex=!0;var w=new mxCell(" - Lorem ipsum dolor sit amet<br> - consectetur adipisicing elit<br> - sed do eiusmod tempor<br> - incididunt ut labore et dolore<br> - magna aliqua.",new mxGeometry(800,40,190,120),"shape=rect;fillColor=#B0E3E6;strokeColor=none;fontSize=12;fontColor=#000000;html=1;whiteSpace=wrap;align=left;verticalAlign=top;spacing=5;rounded=0;");w.vertex=!0;var v=new mxCell(" - Lorem ipsum dolor sit amet<br> - consectetur adipisicing elit<br> - sed do eiusmod tempor<br> - incididunt ut labore et dolore<br> - magna aliqua.", new mxGeometry(800,170,190,120),"shape=rect;fillColor=#B0E3E6;strokeColor=none;fontSize=12;fontColor=#000000;html=1;whiteSpace=wrap;align=left;verticalAlign=top;spacing=5;rounded=0;");v.vertex=!0;var z=new mxCell(" - Lorem ipsum dolor sit amet<br> - consectetur adipisicing elit<br> - sed do eiusmod tempor<br> - incididunt ut labore et dolore<br> - magna aliqua.",new mxGeometry(800,300,190,120),"shape=rect;fillColor=#B0E3E6;strokeColor=none;fontSize=12;fontColor=#000000;html=1;whiteSpace=wrap;align=left;verticalAlign=top;spacing=5;rounded=0;"); -z.vertex=!0;return sb.createVertexTemplateFromCells([a,g,m,p,x,b,c,d,h,k,l,q,r,n,u,t,y,w,v,z],1E3,420,"Chevron list")}),this.addEntry("roadmap vertical",function(){var a=new mxCell("",new mxGeometry(0,0,70,80),"shape=step;perimeter=stepPerimeter;whiteSpace=wrap;html=1;fixedSize=1;size=10;direction=south;fillColor=#10739E;strokeColor=none;rounded=0;");a.vertex=!0;var b=new mxCell('<font style="font-size: 10px"><font style="font-size: 12px" color="#10739E"><b>Label</b></font><br><br><font size="1">Lorem ipsum dolor sit amet, consectetur adipisicing elit</font></font>', -new mxGeometry(100,0,200,70),"rounded=1;strokeColor=none;fillColor=#EEEEEE;align=center;arcSize=12;verticalAlign=top;whiteSpace=wrap;html=1;fontSize=12;");b.vertex=!0;var c=new mxCell("",new mxGeometry(0,80,70,80),"shape=step;perimeter=stepPerimeter;whiteSpace=wrap;html=1;fixedSize=1;size=10;direction=south;fillColor=#F2931E;strokeColor=none;rounded=0;");c.vertex=!0;var d=new mxCell('<font style="font-size: 10px"><font style="font-size: 12px" color="#F2931E"><b>Label</b></font><br><br><font size="1">Lorem ipsum dolor sit amet, consectetur adipisicing elit</font></font>', -new mxGeometry(100,80,200,70),"rounded=1;strokeColor=none;fillColor=#EEEEEE;align=center;arcSize=12;verticalAlign=top;whiteSpace=wrap;html=1;fontSize=12;");d.vertex=!0;var g=new mxCell("",new mxGeometry(0,160,70,80),"shape=step;perimeter=stepPerimeter;whiteSpace=wrap;html=1;fixedSize=1;size=10;direction=south;fillColor=#AE4132;strokeColor=none;rounded=0;");g.vertex=!0;var h=new mxCell('<font style="font-size: 10px"><font style="font-size: 12px" color="#AE4132"><b>Label</b></font><br><br><font size="1">Lorem ipsum dolor sit amet, consectetur adipisicing elit</font></font>', +z.vertex=!0;return sb.createVertexTemplateFromCells([a,g,m,p,x,b,d,f,h,k,l,q,r,n,u,t,y,w,v,z],1E3,420,"Chevron list")}),this.addEntry("roadmap vertical",function(){var a=new mxCell("",new mxGeometry(0,0,70,80),"shape=step;perimeter=stepPerimeter;whiteSpace=wrap;html=1;fixedSize=1;size=10;direction=south;fillColor=#10739E;strokeColor=none;rounded=0;");a.vertex=!0;var b=new mxCell('<font style="font-size: 10px"><font style="font-size: 12px" color="#10739E"><b>Label</b></font><br><br><font size="1">Lorem ipsum dolor sit amet, consectetur adipisicing elit</font></font>', +new mxGeometry(100,0,200,70),"rounded=1;strokeColor=none;fillColor=#EEEEEE;align=center;arcSize=12;verticalAlign=top;whiteSpace=wrap;html=1;fontSize=12;");b.vertex=!0;var d=new mxCell("",new mxGeometry(0,80,70,80),"shape=step;perimeter=stepPerimeter;whiteSpace=wrap;html=1;fixedSize=1;size=10;direction=south;fillColor=#F2931E;strokeColor=none;rounded=0;");d.vertex=!0;var f=new mxCell('<font style="font-size: 10px"><font style="font-size: 12px" color="#F2931E"><b>Label</b></font><br><br><font size="1">Lorem ipsum dolor sit amet, consectetur adipisicing elit</font></font>', +new mxGeometry(100,80,200,70),"rounded=1;strokeColor=none;fillColor=#EEEEEE;align=center;arcSize=12;verticalAlign=top;whiteSpace=wrap;html=1;fontSize=12;");f.vertex=!0;var g=new mxCell("",new mxGeometry(0,160,70,80),"shape=step;perimeter=stepPerimeter;whiteSpace=wrap;html=1;fixedSize=1;size=10;direction=south;fillColor=#AE4132;strokeColor=none;rounded=0;");g.vertex=!0;var h=new mxCell('<font style="font-size: 10px"><font style="font-size: 12px" color="#AE4132"><b>Label</b></font><br><br><font size="1">Lorem ipsum dolor sit amet, consectetur adipisicing elit</font></font>', new mxGeometry(100,160,200,70),"rounded=1;strokeColor=none;fillColor=#EEEEEE;align=center;arcSize=12;verticalAlign=top;whiteSpace=wrap;html=1;fontSize=12;");h.vertex=!0;var k=new mxCell("",new mxGeometry(0,240,70,80),"shape=step;perimeter=stepPerimeter;whiteSpace=wrap;html=1;fixedSize=1;size=10;direction=south;fillColor=#23445D;strokeColor=none;rounded=0;");k.vertex=!0;var l=new mxCell('<font style="font-size: 10px"><font style="font-size: 12px" color="#23445D"><b>Label</b></font><br><br><font size="1">Lorem ipsum dolor sit amet, consectetur adipisicing elit</font></font>', new mxGeometry(100,240,200,70),"rounded=1;strokeColor=none;fillColor=#EEEEEE;align=center;arcSize=12;verticalAlign=top;whiteSpace=wrap;html=1;fontSize=12;");l.vertex=!0;var m=new mxCell("",new mxGeometry(0,320,70,80),"shape=step;perimeter=stepPerimeter;whiteSpace=wrap;html=1;fixedSize=1;size=10;direction=south;fillColor=#12AAB5;strokeColor=none;rounded=0;");m.vertex=!0;var q=new mxCell('<font style="font-size: 10px"><font style="font-size: 12px" color="#12AAB5"><b>Label</b></font><br><br><font size="1">Lorem ipsum dolor sit amet, consectetur adipisicing elit</font></font>', -new mxGeometry(100,320,200,70),"rounded=1;strokeColor=none;fillColor=#EEEEEE;align=center;arcSize=12;verticalAlign=top;whiteSpace=wrap;html=1;fontSize=12;");q.vertex=!0;return sb.createVertexTemplateFromCells([a,c,g,k,m,b,d,h,l,q],300,400,"Roadmap (vertical)")}),this.addEntry("numbered list",function(){var a=new mxCell("Label",new mxGeometry(30,10,220,40),"shape=rect;rounded=1;whiteSpace=wrap;html=1;shadow=0;strokeColor=none;fillColor=#64BBE2;arcSize=30;fontSize=14;spacingLeft=42;fontStyle=1;fontColor=#FFFFFF;align=left;"); -a.vertex=!0;var b=new mxCell("1",new mxGeometry(0,0,60,60),"shape=ellipse;perimeter=ellipsePerimeter;fontSize=22;fontStyle=1;shadow=0;strokeColor=#ffffff;fillColor=#10739E;strokeWidth=4;fontColor=#ffffff;align=center;");b.vertex=!0;var c=new mxCell("Label",new mxGeometry(30,75,220,40),"shape=rect;rounded=1;whiteSpace=wrap;html=1;shadow=0;strokeColor=none;fillColor=#F8C382;arcSize=30;fontSize=14;spacingLeft=42;fontStyle=1;fontColor=#FFFFFF;align=left;");c.vertex=!0;var d=new mxCell("2",new mxGeometry(0, -65,60,60),"shape=ellipse;perimeter=ellipsePerimeter;fontSize=22;fontStyle=1;shadow=0;strokeColor=#ffffff;fillColor=#F2931E;strokeWidth=4;fontColor=#ffffff;align=center;");d.vertex=!0;var g=new mxCell("Label",new mxGeometry(30,140,220,40),"shape=rect;rounded=1;whiteSpace=wrap;html=1;shadow=0;strokeColor=none;fillColor=#F08E81;arcSize=30;fontSize=14;spacingLeft=42;fontStyle=1;fontColor=#FFFFFF;align=left;");g.vertex=!0;var h=new mxCell("3",new mxGeometry(0,130,60,60),"shape=ellipse;perimeter=ellipsePerimeter;fontSize=22;fontStyle=1;shadow=0;strokeColor=#ffffff;fillColor=#AE4132;strokeWidth=4;fontColor=#ffffff;align=center;"); +new mxGeometry(100,320,200,70),"rounded=1;strokeColor=none;fillColor=#EEEEEE;align=center;arcSize=12;verticalAlign=top;whiteSpace=wrap;html=1;fontSize=12;");q.vertex=!0;return sb.createVertexTemplateFromCells([a,d,g,k,m,b,f,h,l,q],300,400,"Roadmap (vertical)")}),this.addEntry("numbered list",function(){var a=new mxCell("Label",new mxGeometry(30,10,220,40),"shape=rect;rounded=1;whiteSpace=wrap;html=1;shadow=0;strokeColor=none;fillColor=#64BBE2;arcSize=30;fontSize=14;spacingLeft=42;fontStyle=1;fontColor=#FFFFFF;align=left;"); +a.vertex=!0;var b=new mxCell("1",new mxGeometry(0,0,60,60),"shape=ellipse;perimeter=ellipsePerimeter;fontSize=22;fontStyle=1;shadow=0;strokeColor=#ffffff;fillColor=#10739E;strokeWidth=4;fontColor=#ffffff;align=center;");b.vertex=!0;var d=new mxCell("Label",new mxGeometry(30,75,220,40),"shape=rect;rounded=1;whiteSpace=wrap;html=1;shadow=0;strokeColor=none;fillColor=#F8C382;arcSize=30;fontSize=14;spacingLeft=42;fontStyle=1;fontColor=#FFFFFF;align=left;");d.vertex=!0;var f=new mxCell("2",new mxGeometry(0, +65,60,60),"shape=ellipse;perimeter=ellipsePerimeter;fontSize=22;fontStyle=1;shadow=0;strokeColor=#ffffff;fillColor=#F2931E;strokeWidth=4;fontColor=#ffffff;align=center;");f.vertex=!0;var g=new mxCell("Label",new mxGeometry(30,140,220,40),"shape=rect;rounded=1;whiteSpace=wrap;html=1;shadow=0;strokeColor=none;fillColor=#F08E81;arcSize=30;fontSize=14;spacingLeft=42;fontStyle=1;fontColor=#FFFFFF;align=left;");g.vertex=!0;var h=new mxCell("3",new mxGeometry(0,130,60,60),"shape=ellipse;perimeter=ellipsePerimeter;fontSize=22;fontStyle=1;shadow=0;strokeColor=#ffffff;fillColor=#AE4132;strokeWidth=4;fontColor=#ffffff;align=center;"); h.vertex=!0;var k=new mxCell("Label",new mxGeometry(30,205,220,40),"shape=rect;rounded=1;whiteSpace=wrap;html=1;shadow=0;strokeColor=none;fillColor=#5D7F99;arcSize=30;fontSize=14;spacingLeft=42;fontStyle=1;fontColor=#FFFFFF;align=left;");k.vertex=!0;var l=new mxCell("4",new mxGeometry(0,195,60,60),"shape=ellipse;perimeter=ellipsePerimeter;fontSize=22;fontStyle=1;shadow=0;strokeColor=#ffffff;fillColor=#23445D;strokeWidth=4;fontColor=#ffffff;align=center;");l.vertex=!0;var m=new mxCell("Label",new mxGeometry(30, -270,220,40),"shape=rect;rounded=1;whiteSpace=wrap;html=1;shadow=0;strokeColor=none;fillColor=#61C6CE;arcSize=30;fontSize=14;spacingLeft=42;fontStyle=1;fontColor=#FFFFFF;align=left;");m.vertex=!0;var q=new mxCell("5",new mxGeometry(0,260,60,60),"shape=ellipse;perimeter=ellipsePerimeter;fontSize=22;fontStyle=1;shadow=0;strokeColor=#ffffff;fillColor=#12AAB5;strokeWidth=4;fontColor=#ffffff;align=center;");q.vertex=!0;return sb.createVertexTemplateFromCells([a,b,c,d,g,h,k,l,m,q],200,320,"Numbered List")}), -this.addEntry("list",function(){var a=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=middle;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;html=1;shape=mxgraph.infographic.numberedEntryVert;dy=25;strokeColor=none;fontSize=17;fontColor=#FFFFFF;align=center;labelPosition=center;spacingTop=32;fontStyle=1;fillColor=#",b=new mxCell("Label",new mxGeometry(0,0,80,160),a+"10739E;");b.vertex=!0;var c=new mxCell("Label",new mxGeometry(85,0,80,160),a+"F2931E;");c.vertex=!0;var d=new mxCell("Label",new mxGeometry(170, -0,80,160),a+"AE4132;");d.vertex=!0;var g=new mxCell("Label",new mxGeometry(255,0,80,160),a+"23445D;");g.vertex=!0;a=new mxCell("Label",new mxGeometry(340,0,80,160),a+"12AAB5;");a.vertex=!0;return sb.createVertexTemplateFromCells([b,c,d,g,a],420,160,"List")}),this.addEntry("rodmap horizontal",function(){var a=new mxCell("",new mxGeometry(0,90,120,120),d+"partConcEllipse;startAngle=0.25;endAngle=0.75;arcWidth=0.25;fillColor=#10739E;strokeColor=none;");a.vertex=!0;var b=new mxCell("",new mxGeometry(105, -90,120,120),d+"partConcEllipse;startAngle=0.75;endAngle=0.25;arcWidth=0.25;fillColor=#F2931E;strokeColor=none;");b.vertex=!0;var c=new mxCell("",new mxGeometry(210,90,120,120),d+"partConcEllipse;startAngle=0.25;endAngle=0.75;arcWidth=0.25;fillColor=#AE4132;strokeColor=none;");c.vertex=!0;var f=new mxCell("",new mxGeometry(315,90,120,120),d+"partConcEllipse;startAngle=0.75;endAngle=0.25;arcWidth=0.25;fillColor=#23445D;strokeColor=none;");f.vertex=!0;var g=new mxCell("",new mxGeometry(420,90,120,120), -d+"partConcEllipse;startAngle=0.25;endAngle=0.75;arcWidth=0.25;fillColor=#15AA96;strokeColor=none;");g.vertex=!0;var h=new mxCell("1",new mxGeometry(35,125,50,50),"shape=ellipse;strokeWidth=6;fillColor=#ffffff;strokeColor=#10739E;fontSize=15;html=0;fontStyle=1;fontColor=#10739E;");h.vertex=!0;var k=new mxCell("2",new mxGeometry(140,125,50,50),"shape=ellipse;strokeWidth=6;fillColor=#ffffff;strokeColor=#F2931E;fontSize=15;html=0;fontStyle=1;fontColor=#F2931E;");k.vertex=!0;var l=new mxCell("3",new mxGeometry(245, +270,220,40),"shape=rect;rounded=1;whiteSpace=wrap;html=1;shadow=0;strokeColor=none;fillColor=#61C6CE;arcSize=30;fontSize=14;spacingLeft=42;fontStyle=1;fontColor=#FFFFFF;align=left;");m.vertex=!0;var q=new mxCell("5",new mxGeometry(0,260,60,60),"shape=ellipse;perimeter=ellipsePerimeter;fontSize=22;fontStyle=1;shadow=0;strokeColor=#ffffff;fillColor=#12AAB5;strokeWidth=4;fontColor=#ffffff;align=center;");q.vertex=!0;return sb.createVertexTemplateFromCells([a,b,d,f,g,h,k,l,m,q],200,320,"Numbered List")}), +this.addEntry("list",function(){var a=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=middle;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;html=1;shape=mxgraph.infographic.numberedEntryVert;dy=25;strokeColor=none;fontSize=17;fontColor=#FFFFFF;align=center;labelPosition=center;spacingTop=32;fontStyle=1;fillColor=#",b=new mxCell("Label",new mxGeometry(0,0,80,160),a+"10739E;");b.vertex=!0;var d=new mxCell("Label",new mxGeometry(85,0,80,160),a+"F2931E;");d.vertex=!0;var f=new mxCell("Label",new mxGeometry(170, +0,80,160),a+"AE4132;");f.vertex=!0;var g=new mxCell("Label",new mxGeometry(255,0,80,160),a+"23445D;");g.vertex=!0;a=new mxCell("Label",new mxGeometry(340,0,80,160),a+"12AAB5;");a.vertex=!0;return sb.createVertexTemplateFromCells([b,d,f,g,a],420,160,"List")}),this.addEntry("rodmap horizontal",function(){var a=new mxCell("",new mxGeometry(0,90,120,120),b+"partConcEllipse;startAngle=0.25;endAngle=0.75;arcWidth=0.25;fillColor=#10739E;strokeColor=none;");a.vertex=!0;var c=new mxCell("",new mxGeometry(105, +90,120,120),b+"partConcEllipse;startAngle=0.75;endAngle=0.25;arcWidth=0.25;fillColor=#F2931E;strokeColor=none;");c.vertex=!0;var d=new mxCell("",new mxGeometry(210,90,120,120),b+"partConcEllipse;startAngle=0.25;endAngle=0.75;arcWidth=0.25;fillColor=#AE4132;strokeColor=none;");d.vertex=!0;var f=new mxCell("",new mxGeometry(315,90,120,120),b+"partConcEllipse;startAngle=0.75;endAngle=0.25;arcWidth=0.25;fillColor=#23445D;strokeColor=none;");f.vertex=!0;var g=new mxCell("",new mxGeometry(420,90,120,120), +b+"partConcEllipse;startAngle=0.25;endAngle=0.75;arcWidth=0.25;fillColor=#15AA96;strokeColor=none;");g.vertex=!0;var h=new mxCell("1",new mxGeometry(35,125,50,50),"shape=ellipse;strokeWidth=6;fillColor=#ffffff;strokeColor=#10739E;fontSize=15;html=0;fontStyle=1;fontColor=#10739E;");h.vertex=!0;var k=new mxCell("2",new mxGeometry(140,125,50,50),"shape=ellipse;strokeWidth=6;fillColor=#ffffff;strokeColor=#F2931E;fontSize=15;html=0;fontStyle=1;fontColor=#F2931E;");k.vertex=!0;var l=new mxCell("3",new mxGeometry(245, 125,50,50),"shape=ellipse;strokeWidth=6;fillColor=#ffffff;strokeColor=#AE4132;fontSize=15;html=0;fontStyle=1;fontColor=#AE4132;");l.vertex=!0;var m=new mxCell("4",new mxGeometry(350,125,50,50),"shape=ellipse;strokeWidth=6;fillColor=#ffffff;strokeColor=#23445D;fontSize=15;html=0;fontStyle=1;fontColor=#23445D;");m.vertex=!0;var q=new mxCell("5",new mxGeometry(455,125,50,50),"shape=ellipse;strokeWidth=6;fillColor=#ffffff;strokeColor=#12AAB5;fontSize=15;html=0;fontStyle=1;fontColor=#12AAB5;");q.vertex= !0;var r=new mxCell('<font style="font-size: 10px"><font style="font-size: 12px" color="#10739E"><b>Label</b></font><br><br><font size="1">Lorem ipsum dolor sit amet, consectetur adipisicing elit</font></font>',new mxGeometry(0,220,120,80),"rounded=1;strokeColor=none;fillColor=#EEEEEE;align=center;arcSize=12;verticalAlign=top;whiteSpace=wrap;html=1;fontSize=12;");r.vertex=!0;var n=new mxCell('<font style="font-size: 10px"><font style="font-size: 12px" color="#F2931E"><b>Label</b></font><br><br><font size="1">Lorem ipsum dolor sit amet, consectetur adipisicing elit</font></font>', new mxGeometry(105,0,120,80),"rounded=1;strokeColor=none;fillColor=#EEEEEE;align=center;arcSize=12;verticalAlign=top;whiteSpace=wrap;html=1;fontSize=12;");n.vertex=!0;var p=new mxCell('<font style="font-size: 10px"><font style="font-size: 12px" color="#AE4132"><b>Label</b></font><br><br><font size="1">Lorem ipsum dolor sit amet, consectetur adipisicing elit</font></font>',new mxGeometry(210,220,120,80),"rounded=1;strokeColor=none;fillColor=#EEEEEE;align=center;arcSize=12;verticalAlign=top;whiteSpace=wrap;html=1;fontSize=12;"); p.vertex=!0;var u=new mxCell('<font style="font-size: 10px"><font style="font-size: 12px" color="#23445D"><b>Label</b></font><br><br><font size="1">Lorem ipsum dolor sit amet, consectetur adipisicing elit</font></font>',new mxGeometry(315,0,120,80),"rounded=1;strokeColor=none;fillColor=#EEEEEE;align=center;arcSize=12;verticalAlign=top;whiteSpace=wrap;html=1;fontSize=12;");u.vertex=!0;var t=new mxCell('<font style="font-size: 10px"><font style="font-size: 12px" color="#12AAB5"><b>Label</b></font><br><br><font size="1">Lorem ipsum dolor sit amet, consectetur adipisicing elit</font></font>', -new mxGeometry(420,220,120,80),"rounded=1;strokeColor=none;fillColor=#EEEEEE;align=center;arcSize=12;verticalAlign=top;whiteSpace=wrap;html=1;fontSize=12;");t.vertex=!0;return sb.createVertexTemplateFromCells([a,b,c,f,g,h,k,l,m,q,r,n,p,u,t],540,300,"Roadmap (horizontal)")}),this.addEntry("roadmap diagonal",function(){var a=new mxCell("",new mxGeometry(190,0,120,120),d+"partConcEllipse;startAngle=0.75;endAngle=0.5;arcWidth=0.25;fillColor=#10739E;strokeColor=none;shadow=0;");a.vertex=!0;var b=new mxCell("", -new mxGeometry(190,105,120,120),d+"partConcEllipse;startAngle=0.25;endAngle=0;arcWidth=0.25;fillColor=#F2931E;strokeColor=none;shadow=0;");b.vertex=!0;var c=new mxCell("",new mxGeometry(295,105,120,120),d+"partConcEllipse;startAngle=0.75;endAngle=0.5;arcWidth=0.25;fillColor=#AE4132;strokeColor=none;shadow=0;");c.vertex=!0;var f=new mxCell("",new mxGeometry(295,210,120,120),d+"partConcEllipse;startAngle=0.25;endAngle=0;arcWidth=0.25;fillColor=#23445D;strokeColor=none;shadow=0;");f.vertex=!0;var g= -new mxCell("",new mxGeometry(400,210,120,120),d+"partConcEllipse;startAngle=0.75;endAngle=0.5;arcWidth=0.25;fillColor=#12AAB5;strokeColor=none;shadow=0;");g.vertex=!0;var h=new mxCell("1",new mxGeometry(225,35,50,50),"shape=ellipse;strokeWidth=6;fillColor=#ffffff;strokeColor=#10739E;fontSize=15;html=1;fontStyle=1;fontColor=#10739E;shadow=1;");h.vertex=!0;var k=new mxCell("2",new mxGeometry(225,140,50,50),"shape=ellipse;strokeWidth=6;fillColor=#ffffff;strokeColor=#F2931E;fontSize=15;html=1;fontStyle=1;fontColor=#F2931E;shadow=1;"); +new mxGeometry(420,220,120,80),"rounded=1;strokeColor=none;fillColor=#EEEEEE;align=center;arcSize=12;verticalAlign=top;whiteSpace=wrap;html=1;fontSize=12;");t.vertex=!0;return sb.createVertexTemplateFromCells([a,c,d,f,g,h,k,l,m,q,r,n,p,u,t],540,300,"Roadmap (horizontal)")}),this.addEntry("roadmap diagonal",function(){var a=new mxCell("",new mxGeometry(190,0,120,120),b+"partConcEllipse;startAngle=0.75;endAngle=0.5;arcWidth=0.25;fillColor=#10739E;strokeColor=none;shadow=0;");a.vertex=!0;var c=new mxCell("", +new mxGeometry(190,105,120,120),b+"partConcEllipse;startAngle=0.25;endAngle=0;arcWidth=0.25;fillColor=#F2931E;strokeColor=none;shadow=0;");c.vertex=!0;var d=new mxCell("",new mxGeometry(295,105,120,120),b+"partConcEllipse;startAngle=0.75;endAngle=0.5;arcWidth=0.25;fillColor=#AE4132;strokeColor=none;shadow=0;");d.vertex=!0;var f=new mxCell("",new mxGeometry(295,210,120,120),b+"partConcEllipse;startAngle=0.25;endAngle=0;arcWidth=0.25;fillColor=#23445D;strokeColor=none;shadow=0;");f.vertex=!0;var g= +new mxCell("",new mxGeometry(400,210,120,120),b+"partConcEllipse;startAngle=0.75;endAngle=0.5;arcWidth=0.25;fillColor=#12AAB5;strokeColor=none;shadow=0;");g.vertex=!0;var h=new mxCell("1",new mxGeometry(225,35,50,50),"shape=ellipse;strokeWidth=6;fillColor=#ffffff;strokeColor=#10739E;fontSize=15;html=1;fontStyle=1;fontColor=#10739E;shadow=1;");h.vertex=!0;var k=new mxCell("2",new mxGeometry(225,140,50,50),"shape=ellipse;strokeWidth=6;fillColor=#ffffff;strokeColor=#F2931E;fontSize=15;html=1;fontStyle=1;fontColor=#F2931E;shadow=1;"); k.vertex=!0;var l=new mxCell("3",new mxGeometry(330,140,50,50),"shape=ellipse;strokeWidth=6;fillColor=#ffffff;strokeColor=#AE4132;fontSize=15;html=1;fontStyle=1;fontColor=#AE4132;shadow=1;");l.vertex=!0;var m=new mxCell("4",new mxGeometry(330,245,50,50),"shape=ellipse;strokeWidth=6;fillColor=#ffffff;strokeColor=#23445D;fontSize=15;html=1;fontStyle=1;fontColor=#23445D;shadow=1;");m.vertex=!0;var q=new mxCell("5",new mxGeometry(435,245,50,50),"shape=ellipse;strokeWidth=6;fillColor=#ffffff;strokeColor=#12AAB5;fontSize=15;html=1;fontStyle=1;fontColor=#12AAB5;shadow=1;"); q.vertex=!0;var r=new mxCell('<font style="font-size: 10px"><font style="font-size: 12px" color="#10739E"><b>Label</b></font><br><br><font size="1">Lorem ipsum dolor sit amet, consectetur adipisicing elit</font></font>',new mxGeometry(320,20,180,70),"rounded=1;strokeColor=none;fillColor=#EEEEEE;align=center;arcSize=12;verticalAlign=top;whiteSpace=wrap;html=1;fontSize=12;spacing=3;shadow=0;");r.vertex=!0;var n=new mxCell('<font style="font-size: 10px"><font style="font-size: 12px" color="#F2931E"><b>Label</b></font><br><br><font size="1">Lorem ipsum dolor sit amet, consectetur adipisicing elit</font></font>', new mxGeometry(0,130,180,70),"rounded=1;strokeColor=none;fillColor=#EEEEEE;align=center;arcSize=12;verticalAlign=top;whiteSpace=wrap;html=1;fontSize=12;spacing=3;shadow=0;");n.vertex=!0;var p=new mxCell('<font style="font-size: 10px"><font style="font-size: 12px" color="#AE4132"><b>Label</b></font><br><br><font size="1">Lorem ipsum dolor sit amet, consectetur adipisicing elit</font></font>',new mxGeometry(425,130,180,70),"rounded=1;strokeColor=none;fillColor=#EEEEEE;align=center;arcSize=12;verticalAlign=top;whiteSpace=wrap;html=1;fontSize=12;spacing=3;shadow=0;"); p.vertex=!0;var u=new mxCell('<font style="font-size: 10px"><font style="font-size: 12px" color="#23445D"><b>Label</b></font><br><br><font size="1">Lorem ipsum dolor sit amet, consectetur adipisicing elit</font></font>',new mxGeometry(105,235,180,70),"rounded=1;strokeColor=none;fillColor=#EEEEEE;align=center;arcSize=12;verticalAlign=top;whiteSpace=wrap;html=1;fontSize=12;spacing=3;shadow=0;");u.vertex=!0;var t=new mxCell('<font style="font-size: 10px"><font style="font-size: 12px" color="#12AAB5"><b>Label</b></font><br><br><font size="1">Lorem ipsum dolor sit amet, consectetur adipisicing elit</font></font>', -new mxGeometry(530,235,180,70),"rounded=1;strokeColor=none;fillColor=#EEEEEE;align=center;arcSize=12;verticalAlign=top;whiteSpace=wrap;html=1;fontSize=12;spacing=3;shadow=0;");t.vertex=!0;return sb.createVertexTemplateFromCells([a,b,c,f,g,h,k,l,m,q,r,n,p,u,t],710,330,"Roadmap (diagonal)")}),this.addEntry("arrow list",function(){var a=new mxCell("1",new mxGeometry(0,0,40,40),"html=1;fillColor=#10739E;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=center;fontStyle=1;rounded=0;");a.vertex= -!0;var b=new mxCell("Label",new mxGeometry(45,0,95,40),"shape=mxgraph.infographic.ribbonSimple;notch1=0;notch2=10;notch=0;html=1;fillColor=#64BBE2;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=left;spacingLeft=10;fontStyle=1;");b.vertex=!0;var c=new mxCell("2",new mxGeometry(0,45,40,40),"html=1;fillColor=#F2931E;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=center;fontStyle=1;rounded=0;");c.vertex=!0;var d=new mxCell("Label",new mxGeometry(45,45,115,40),"shape=mxgraph.infographic.ribbonSimple;notch1=0;notch2=10;notch=0;html=1;fillColor=#F8C382;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=left;spacingLeft=10;fontStyle=1;"); -d.vertex=!0;var g=new mxCell("3",new mxGeometry(0,90,40,40),"html=1;fillColor=#AE4132;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=center;fontStyle=1;rounded=0;");g.vertex=!0;var h=new mxCell("Label",new mxGeometry(45,90,135,40),"shape=mxgraph.infographic.ribbonSimple;notch1=0;notch2=10;notch=0;html=1;fillColor=#F08E81;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=left;spacingLeft=10;fontStyle=1;");h.vertex=!0;var k=new mxCell("4",new mxGeometry(0,135,40,40),"html=1;fillColor=#23445D;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=center;fontStyle=1;rounded=0;"); +new mxGeometry(530,235,180,70),"rounded=1;strokeColor=none;fillColor=#EEEEEE;align=center;arcSize=12;verticalAlign=top;whiteSpace=wrap;html=1;fontSize=12;spacing=3;shadow=0;");t.vertex=!0;return sb.createVertexTemplateFromCells([a,c,d,f,g,h,k,l,m,q,r,n,p,u,t],710,330,"Roadmap (diagonal)")}),this.addEntry("arrow list",function(){var a=new mxCell("1",new mxGeometry(0,0,40,40),"html=1;fillColor=#10739E;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=center;fontStyle=1;rounded=0;");a.vertex= +!0;var b=new mxCell("Label",new mxGeometry(45,0,95,40),"shape=mxgraph.infographic.ribbonSimple;notch1=0;notch2=10;notch=0;html=1;fillColor=#64BBE2;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=left;spacingLeft=10;fontStyle=1;");b.vertex=!0;var d=new mxCell("2",new mxGeometry(0,45,40,40),"html=1;fillColor=#F2931E;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=center;fontStyle=1;rounded=0;");d.vertex=!0;var f=new mxCell("Label",new mxGeometry(45,45,115,40),"shape=mxgraph.infographic.ribbonSimple;notch1=0;notch2=10;notch=0;html=1;fillColor=#F8C382;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=left;spacingLeft=10;fontStyle=1;"); +f.vertex=!0;var g=new mxCell("3",new mxGeometry(0,90,40,40),"html=1;fillColor=#AE4132;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=center;fontStyle=1;rounded=0;");g.vertex=!0;var h=new mxCell("Label",new mxGeometry(45,90,135,40),"shape=mxgraph.infographic.ribbonSimple;notch1=0;notch2=10;notch=0;html=1;fillColor=#F08E81;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=left;spacingLeft=10;fontStyle=1;");h.vertex=!0;var k=new mxCell("4",new mxGeometry(0,135,40,40),"html=1;fillColor=#23445D;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=center;fontStyle=1;rounded=0;"); k.vertex=!0;var l=new mxCell("Label",new mxGeometry(45,135,155,40),"shape=mxgraph.infographic.ribbonSimple;notch1=0;notch2=10;notch=0;html=1;fillColor=#5D7F99;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=left;spacingLeft=10;fontStyle=1;");l.vertex=!0;var m=new mxCell("5",new mxGeometry(0,180,40,40),"html=1;fillColor=#12AAB5;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=center;fontStyle=1;rounded=0;");m.vertex=!0;var q=new mxCell("Label",new mxGeometry(45,180,175,40), -"shape=mxgraph.infographic.ribbonSimple;notch1=0;notch2=10;notch=0;html=1;fillColor=#61C6CE;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=left;spacingLeft=10;fontStyle=1;");q.vertex=!0;return sb.createVertexTemplateFromCells([a,b,c,d,g,h,k,l,m,q],220,220,"Arrow List")}),this.addEntry("angled list",function(){var a=new mxCell("1",new mxGeometry(0,0,50,30),"shape=mxgraph.infographic.parallelogram;dx=5;html=1;fillColor=#10739E;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=center;fontStyle=1;"); -a.vertex=!0;var b=new mxCell("Label",new mxGeometry(45,0,95,30),"shape=mxgraph.infographic.parallelogram;dx=5;;html=1;fillColor=#64BBE2;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=left;spacingLeft=10;fontStyle=1;");b.vertex=!0;var c=new mxCell("2",new mxGeometry(0,35,50,30),"shape=mxgraph.infographic.parallelogram;dx=5;html=1;fillColor=#F2931E;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=center;fontStyle=1;");c.vertex=!0;var d=new mxCell("Label",new mxGeometry(45, -35,115,30),"shape=mxgraph.infographic.parallelogram;dx=5;;html=1;fillColor=#F8C382;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=left;spacingLeft=10;fontStyle=1;");d.vertex=!0;var g=new mxCell("3",new mxGeometry(0,70,50,30),"shape=mxgraph.infographic.parallelogram;dx=5;html=1;fillColor=#AE4132;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=center;fontStyle=1;");g.vertex=!0;var h=new mxCell("Label",new mxGeometry(45,70,135,30),"shape=mxgraph.infographic.parallelogram;dx=5;;html=1;fillColor=#F08E81;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=left;spacingLeft=10;fontStyle=1;"); +"shape=mxgraph.infographic.ribbonSimple;notch1=0;notch2=10;notch=0;html=1;fillColor=#61C6CE;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=left;spacingLeft=10;fontStyle=1;");q.vertex=!0;return sb.createVertexTemplateFromCells([a,b,d,f,g,h,k,l,m,q],220,220,"Arrow List")}),this.addEntry("angled list",function(){var a=new mxCell("1",new mxGeometry(0,0,50,30),"shape=mxgraph.infographic.parallelogram;dx=5;html=1;fillColor=#10739E;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=center;fontStyle=1;"); +a.vertex=!0;var b=new mxCell("Label",new mxGeometry(45,0,95,30),"shape=mxgraph.infographic.parallelogram;dx=5;;html=1;fillColor=#64BBE2;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=left;spacingLeft=10;fontStyle=1;");b.vertex=!0;var d=new mxCell("2",new mxGeometry(0,35,50,30),"shape=mxgraph.infographic.parallelogram;dx=5;html=1;fillColor=#F2931E;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=center;fontStyle=1;");d.vertex=!0;var f=new mxCell("Label",new mxGeometry(45, +35,115,30),"shape=mxgraph.infographic.parallelogram;dx=5;;html=1;fillColor=#F8C382;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=left;spacingLeft=10;fontStyle=1;");f.vertex=!0;var g=new mxCell("3",new mxGeometry(0,70,50,30),"shape=mxgraph.infographic.parallelogram;dx=5;html=1;fillColor=#AE4132;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=center;fontStyle=1;");g.vertex=!0;var h=new mxCell("Label",new mxGeometry(45,70,135,30),"shape=mxgraph.infographic.parallelogram;dx=5;;html=1;fillColor=#F08E81;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=left;spacingLeft=10;fontStyle=1;"); h.vertex=!0;var k=new mxCell("4",new mxGeometry(0,105,50,30),"shape=mxgraph.infographic.parallelogram;dx=5;html=1;fillColor=#23445D;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=center;fontStyle=1;");k.vertex=!0;var l=new mxCell("Label",new mxGeometry(45,105,155,30),"shape=mxgraph.infographic.parallelogram;dx=5;;html=1;fillColor=#5D7F99;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=left;spacingLeft=10;fontStyle=1;");l.vertex=!0;var m=new mxCell("5",new mxGeometry(0, -140,50,30),"shape=mxgraph.infographic.parallelogram;dx=5;html=1;fillColor=#12AAB5;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=center;fontStyle=1;");m.vertex=!0;var q=new mxCell("Label",new mxGeometry(45,140,175,30),"shape=mxgraph.infographic.parallelogram;dx=5;;html=1;fillColor=#61C6CE;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=left;spacingLeft=10;fontStyle=1;");q.vertex=!0;return sb.createVertexTemplateFromCells([a,b,c,d,g,h,k,l,m,q],220,170,"Angled List")}), -this.addEntry("angled list",function(){var a=new mxCell("1",new mxGeometry(200,0,50,30),"shape=mxgraph.infographic.parallelogram;dx=5;html=1;fillColor=#10739E;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=center;fontStyle=1;");a.vertex=!0;var b=new mxCell("Label",new mxGeometry(245,0,145,30),"shape=mxgraph.infographic.parallelogram;dx=5;;html=1;fillColor=#64BBE2;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=left;spacingLeft=10;fontStyle=1;");b.vertex=!0;var c=new mxCell("2", -new mxGeometry(150,35,50,30),"shape=mxgraph.infographic.parallelogram;dx=5;html=1;fillColor=#F2931E;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=center;fontStyle=1;");c.vertex=!0;var d=new mxCell("Label",new mxGeometry(195,35,145,30),"shape=mxgraph.infographic.parallelogram;dx=5;;html=1;fillColor=#F8C382;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=left;spacingLeft=10;fontStyle=1;");d.vertex=!0;var g=new mxCell("3",new mxGeometry(100,70,50,30),"shape=mxgraph.infographic.parallelogram;dx=5;html=1;fillColor=#AE4132;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=center;fontStyle=1;"); +140,50,30),"shape=mxgraph.infographic.parallelogram;dx=5;html=1;fillColor=#12AAB5;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=center;fontStyle=1;");m.vertex=!0;var q=new mxCell("Label",new mxGeometry(45,140,175,30),"shape=mxgraph.infographic.parallelogram;dx=5;;html=1;fillColor=#61C6CE;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=left;spacingLeft=10;fontStyle=1;");q.vertex=!0;return sb.createVertexTemplateFromCells([a,b,d,f,g,h,k,l,m,q],220,170,"Angled List")}), +this.addEntry("angled list",function(){var a=new mxCell("1",new mxGeometry(200,0,50,30),"shape=mxgraph.infographic.parallelogram;dx=5;html=1;fillColor=#10739E;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=center;fontStyle=1;");a.vertex=!0;var b=new mxCell("Label",new mxGeometry(245,0,145,30),"shape=mxgraph.infographic.parallelogram;dx=5;;html=1;fillColor=#64BBE2;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=left;spacingLeft=10;fontStyle=1;");b.vertex=!0;var d=new mxCell("2", +new mxGeometry(150,35,50,30),"shape=mxgraph.infographic.parallelogram;dx=5;html=1;fillColor=#F2931E;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=center;fontStyle=1;");d.vertex=!0;var f=new mxCell("Label",new mxGeometry(195,35,145,30),"shape=mxgraph.infographic.parallelogram;dx=5;;html=1;fillColor=#F8C382;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=left;spacingLeft=10;fontStyle=1;");f.vertex=!0;var g=new mxCell("3",new mxGeometry(100,70,50,30),"shape=mxgraph.infographic.parallelogram;dx=5;html=1;fillColor=#AE4132;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=center;fontStyle=1;"); g.vertex=!0;var h=new mxCell("Label",new mxGeometry(145,70,145,30),"shape=mxgraph.infographic.parallelogram;dx=5;;html=1;fillColor=#F08E81;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=left;spacingLeft=10;fontStyle=1;");h.vertex=!0;var k=new mxCell("4",new mxGeometry(50,105,50,30),"shape=mxgraph.infographic.parallelogram;dx=5;html=1;fillColor=#23445D;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=center;fontStyle=1;");k.vertex=!0;var l=new mxCell("Label",new mxGeometry(95, 105,145,30),"shape=mxgraph.infographic.parallelogram;dx=5;;html=1;fillColor=#5D7F99;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=left;spacingLeft=10;fontStyle=1;");l.vertex=!0;var m=new mxCell("5",new mxGeometry(0,140,50,30),"shape=mxgraph.infographic.parallelogram;dx=5;html=1;fillColor=#12AAB5;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=center;fontStyle=1;");m.vertex=!0;var q=new mxCell("Label",new mxGeometry(45,140,145,30),"shape=mxgraph.infographic.parallelogram;dx=5;;html=1;fillColor=#61C6CE;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=left;spacingLeft=10;fontStyle=1;"); -q.vertex=!0;return sb.createVertexTemplateFromCells([a,b,c,d,g,h,k,l,m,q],390,170,"Angled List")}),this.addEntry("matrix",function(){var a=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit",new mxGeometry(35,35,100,100),"html=1;fillColor=#10739E;strokeColor=none;shadow=0;fontSize=12;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;rounded=0;");a.vertex=!0;var b=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit",new mxGeometry(140,35,100,100),"html=1;fillColor=#F2931E;strokeColor=none;shadow=0;fontSize=12;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;rounded=0;"); -b.vertex=!0;var c=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit",new mxGeometry(35,140,100,100),"html=1;fillColor=#AE4132;strokeColor=none;shadow=0;fontSize=12;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;rounded=0;");c.vertex=!0;var d=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit",new mxGeometry(140,140,100,100),"html=1;fillColor=#23445D;strokeColor=none;shadow=0;fontSize=12;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;rounded=0;"); -d.vertex=!0;var g=new mxCell("Label",new mxGeometry(0,35,30,100),"html=1;fillColor=#CCCCCC;strokeColor=none;shadow=0;fontSize=14;fontColor=#FFFFFF;align=center;fontStyle=1;whiteSpace=wrap;horizontal=0;rounded=0;");g.vertex=!0;var h=new mxCell("Label",new mxGeometry(0,140,30,100),"html=1;fillColor=#CCCCCC;strokeColor=none;shadow=0;fontSize=14;fontColor=#FFFFFF;align=center;fontStyle=1;whiteSpace=wrap;horizontal=0;rounded=0;");h.vertex=!0;var k=new mxCell("Label",new mxGeometry(35,0,100,30),"html=1;fillColor=#CCCCCC;strokeColor=none;shadow=0;fontSize=14;fontColor=#FFFFFF;align=center;fontStyle=1;whiteSpace=wrap;rounded=0;"); -k.vertex=!0;var l=new mxCell("Label",new mxGeometry(140,0,100,30),"html=1;fillColor=#CCCCCC;strokeColor=none;shadow=0;fontSize=14;fontColor=#FFFFFF;align=center;fontStyle=1;whiteSpace=wrap;rounded=0;");l.vertex=!0;return sb.createVertexTemplateFromCells([a,b,c,d,g,h,k,l],240,240,"Matrix (2x2)")}),this.addEntry("matrix",function(){var a=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit",new mxGeometry(35,35,100,100),"shape=mxgraph.basic.three_corner_round_rect;dx=18;flipH=1;html=1;fillColor=#10739E;strokeColor=none;shadow=0;fontSize=12;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;rounded=0;"); -a.vertex=!0;var b=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit",new mxGeometry(140,35,100,100),"shape=mxgraph.basic.three_corner_round_rect;dx=18;html=1;fillColor=#F2931E;strokeColor=none;shadow=0;fontSize=12;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;rounded=0;");b.vertex=!0;var c=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit",new mxGeometry(35,140,100,100),"shape=mxgraph.basic.three_corner_round_rect;dx=18;flipH=1;flipV=1;html=1;fillColor=#AE4132;strokeColor=none;shadow=0;fontSize=12;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;rounded=0;"); -c.vertex=!0;var d=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit",new mxGeometry(140,140,100,100),"shape=mxgraph.basic.three_corner_round_rect;dx=18;flipV=1;html=1;fillColor=#23445D;strokeColor=none;shadow=0;fontSize=12;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;rounded=0;");d.vertex=!0;var g=new mxCell("Label",new mxGeometry(0,45,30,80),"rounded=1;arcSize=50;html=1;fillColor=#CCCCCC;strokeColor=none;shadow=0;fontSize=14;fontColor=#FFFFFF;align=center;fontStyle=1;whiteSpace=wrap;horizontal=0;"); +q.vertex=!0;return sb.createVertexTemplateFromCells([a,b,d,f,g,h,k,l,m,q],390,170,"Angled List")}),this.addEntry("matrix",function(){var a=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit",new mxGeometry(35,35,100,100),"html=1;fillColor=#10739E;strokeColor=none;shadow=0;fontSize=12;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;rounded=0;");a.vertex=!0;var b=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit",new mxGeometry(140,35,100,100),"html=1;fillColor=#F2931E;strokeColor=none;shadow=0;fontSize=12;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;rounded=0;"); +b.vertex=!0;var d=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit",new mxGeometry(35,140,100,100),"html=1;fillColor=#AE4132;strokeColor=none;shadow=0;fontSize=12;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;rounded=0;");d.vertex=!0;var f=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit",new mxGeometry(140,140,100,100),"html=1;fillColor=#23445D;strokeColor=none;shadow=0;fontSize=12;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;rounded=0;"); +f.vertex=!0;var g=new mxCell("Label",new mxGeometry(0,35,30,100),"html=1;fillColor=#CCCCCC;strokeColor=none;shadow=0;fontSize=14;fontColor=#FFFFFF;align=center;fontStyle=1;whiteSpace=wrap;horizontal=0;rounded=0;");g.vertex=!0;var h=new mxCell("Label",new mxGeometry(0,140,30,100),"html=1;fillColor=#CCCCCC;strokeColor=none;shadow=0;fontSize=14;fontColor=#FFFFFF;align=center;fontStyle=1;whiteSpace=wrap;horizontal=0;rounded=0;");h.vertex=!0;var k=new mxCell("Label",new mxGeometry(35,0,100,30),"html=1;fillColor=#CCCCCC;strokeColor=none;shadow=0;fontSize=14;fontColor=#FFFFFF;align=center;fontStyle=1;whiteSpace=wrap;rounded=0;"); +k.vertex=!0;var l=new mxCell("Label",new mxGeometry(140,0,100,30),"html=1;fillColor=#CCCCCC;strokeColor=none;shadow=0;fontSize=14;fontColor=#FFFFFF;align=center;fontStyle=1;whiteSpace=wrap;rounded=0;");l.vertex=!0;return sb.createVertexTemplateFromCells([a,b,d,f,g,h,k,l],240,240,"Matrix (2x2)")}),this.addEntry("matrix",function(){var a=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit",new mxGeometry(35,35,100,100),"shape=mxgraph.basic.three_corner_round_rect;dx=18;flipH=1;html=1;fillColor=#10739E;strokeColor=none;shadow=0;fontSize=12;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;rounded=0;"); +a.vertex=!0;var b=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit",new mxGeometry(140,35,100,100),"shape=mxgraph.basic.three_corner_round_rect;dx=18;html=1;fillColor=#F2931E;strokeColor=none;shadow=0;fontSize=12;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;rounded=0;");b.vertex=!0;var d=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit",new mxGeometry(35,140,100,100),"shape=mxgraph.basic.three_corner_round_rect;dx=18;flipH=1;flipV=1;html=1;fillColor=#AE4132;strokeColor=none;shadow=0;fontSize=12;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;rounded=0;"); +d.vertex=!0;var f=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit",new mxGeometry(140,140,100,100),"shape=mxgraph.basic.three_corner_round_rect;dx=18;flipV=1;html=1;fillColor=#23445D;strokeColor=none;shadow=0;fontSize=12;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;rounded=0;");f.vertex=!0;var g=new mxCell("Label",new mxGeometry(0,45,30,80),"rounded=1;arcSize=50;html=1;fillColor=#CCCCCC;strokeColor=none;shadow=0;fontSize=14;fontColor=#FFFFFF;align=center;fontStyle=1;whiteSpace=wrap;horizontal=0;"); g.vertex=!0;var h=new mxCell("Label",new mxGeometry(0,150,30,80),"rounded=1;arcSize=50;html=1;fillColor=#CCCCCC;strokeColor=none;shadow=0;fontSize=14;fontColor=#FFFFFF;align=center;fontStyle=1;whiteSpace=wrap;horizontal=0;");h.vertex=!0;var k=new mxCell("Label",new mxGeometry(45,0,80,30),"rounded=1;arcSize=50;html=1;fillColor=#CCCCCC;strokeColor=none;shadow=0;fontSize=14;fontColor=#FFFFFF;align=center;fontStyle=1;whiteSpace=wrap;");k.vertex=!0;var l=new mxCell("Label",new mxGeometry(150,0,80,30), -"rounded=1;arcSize=50;html=1;fillColor=#CCCCCC;strokeColor=none;shadow=0;fontSize=14;fontColor=#FFFFFF;align=center;fontStyle=1;whiteSpace=wrap;");l.vertex=!0;return sb.createVertexTemplateFromCells([a,b,c,d,g,h,k,l],240,240,"Matrix (2x2)")}),this.addEntry("matrix",function(){var a=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit",new mxGeometry(35,35,100,100),"html=1;fillColor=#F2931E;strokeColor=none;shadow=0;fontSize=12;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;rounded=0;"); -a.vertex=!0;var b=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit",new mxGeometry(140,35,100,100),"html=1;fillColor=#F5AB50;strokeColor=none;shadow=0;fontSize=12;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;rounded=0;");b.vertex=!0;var c=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit",new mxGeometry(245,35,100,100),"html=1;fillColor=#F8C382;strokeColor=none;shadow=0;fontSize=12;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;rounded=0;"); -c.vertex=!0;var d=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit",new mxGeometry(35,140,100,100),"html=1;fillColor=#444444;strokeColor=none;shadow=0;fontSize=12;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;rounded=0;");d.vertex=!0;var g=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit",new mxGeometry(140,140,100,100),"html=1;fillColor=#777777;strokeColor=none;shadow=0;fontSize=12;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;rounded=0;"); +"rounded=1;arcSize=50;html=1;fillColor=#CCCCCC;strokeColor=none;shadow=0;fontSize=14;fontColor=#FFFFFF;align=center;fontStyle=1;whiteSpace=wrap;");l.vertex=!0;return sb.createVertexTemplateFromCells([a,b,d,f,g,h,k,l],240,240,"Matrix (2x2)")}),this.addEntry("matrix",function(){var a=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit",new mxGeometry(35,35,100,100),"html=1;fillColor=#F2931E;strokeColor=none;shadow=0;fontSize=12;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;rounded=0;"); +a.vertex=!0;var b=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit",new mxGeometry(140,35,100,100),"html=1;fillColor=#F5AB50;strokeColor=none;shadow=0;fontSize=12;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;rounded=0;");b.vertex=!0;var d=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit",new mxGeometry(245,35,100,100),"html=1;fillColor=#F8C382;strokeColor=none;shadow=0;fontSize=12;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;rounded=0;"); +d.vertex=!0;var f=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit",new mxGeometry(35,140,100,100),"html=1;fillColor=#444444;strokeColor=none;shadow=0;fontSize=12;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;rounded=0;");f.vertex=!0;var g=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit",new mxGeometry(140,140,100,100),"html=1;fillColor=#777777;strokeColor=none;shadow=0;fontSize=12;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;rounded=0;"); g.vertex=!0;var h=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit",new mxGeometry(245,140,100,100),"html=1;fillColor=#909090;strokeColor=none;shadow=0;fontSize=12;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;rounded=0;");h.vertex=!0;var k=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit",new mxGeometry(35,245,100,100),"html=1;fillColor=#23445D;strokeColor=none;shadow=0;fontSize=12;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;rounded=0;"); k.vertex=!0;var l=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit",new mxGeometry(140,245,100,100),"html=1;fillColor=#2F5B7C;strokeColor=none;shadow=0;fontSize=12;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;rounded=0;");l.vertex=!0;var m=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit",new mxGeometry(245,245,100,100),"html=1;fillColor=#5D7F99;strokeColor=none;shadow=0;fontSize=12;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;rounded=0;"); m.vertex=!0;var q=new mxCell("Label",new mxGeometry(0,35,30,100),"html=1;fillColor=#CCCCCC;strokeColor=none;shadow=0;fontSize=14;fontColor=#FFFFFF;align=center;fontStyle=1;whiteSpace=wrap;horizontal=0;rounded=0;");q.vertex=!0;var r=new mxCell("Label",new mxGeometry(0,140,30,100),"html=1;fillColor=#CCCCCC;strokeColor=none;shadow=0;fontSize=14;fontColor=#FFFFFF;align=center;fontStyle=1;whiteSpace=wrap;horizontal=0;rounded=0;");r.vertex=!0;var n=new mxCell("Label",new mxGeometry(0,245,30,100),"html=1;fillColor=#CCCCCC;strokeColor=none;shadow=0;fontSize=14;fontColor=#FFFFFF;align=center;fontStyle=1;whiteSpace=wrap;horizontal=0;rounded=0;"); n.vertex=!0;var p=new mxCell("Label",new mxGeometry(35,0,100,30),"html=1;fillColor=#CCCCCC;strokeColor=none;shadow=0;fontSize=14;fontColor=#FFFFFF;align=center;fontStyle=1;whiteSpace=wrap;rounded=0;");p.vertex=!0;var u=new mxCell("Label",new mxGeometry(140,0,100,30),"html=1;fillColor=#CCCCCC;strokeColor=none;shadow=0;fontSize=14;fontColor=#FFFFFF;align=center;fontStyle=1;whiteSpace=wrap;rounded=0;");u.vertex=!0;var t=new mxCell("Label",new mxGeometry(245,0,100,30),"html=1;fillColor=#CCCCCC;strokeColor=none;shadow=0;fontSize=14;fontColor=#FFFFFF;align=center;fontStyle=1;whiteSpace=wrap;rounded=0;"); -t.vertex=!0;return sb.createVertexTemplateFromCells([a,b,c,d,g,h,k,l,m,q,r,n,p,u,t],345,345,"Matrix (3x3)")}),this.addEntry("hex loop",function(){var a=new mxCell("Lorem ipsum<br> dolor sit amet, consectetur adipisicing elit",new mxGeometry(0,51,112,102),"shape=hexagon;strokeWidth=4;html=1;fillColor=#F5AB50;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;rounded=0;");a.vertex=!0;var b=new mxCell("Lorem ipsum<br> dolor sit amet, consectetur adipisicing elit", -new mxGeometry(0,153,112,102),"shape=hexagon;strokeWidth=4;html=1;fillColor=#E85642;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;rounded=0;");b.vertex=!0;var c=new mxCell("Lorem ipsum<br> dolor sit amet, consectetur adipisicing elit",new mxGeometry(84,102,112,102),"shape=hexagon;strokeWidth=4;html=1;fillColor=#12AAB5;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;rounded=0;"); -c.vertex=!0;var d=new mxCell("Lorem ipsum<br> dolor sit amet, consectetur adipisicing elit",new mxGeometry(84,0,112,102),"shape=hexagon;strokeWidth=4;html=1;fillColor=#1699D3;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;rounded=0;");d.vertex=!0;var g=new mxCell("Lorem ipsum<br> dolor sit amet, consectetur adipisicing elit",new mxGeometry(168,51,112,102),"shape=hexagon;strokeWidth=4;html=1;fillColor=#736CA8;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;rounded=0;"); +t.vertex=!0;return sb.createVertexTemplateFromCells([a,b,d,f,g,h,k,l,m,q,r,n,p,u,t],345,345,"Matrix (3x3)")}),this.addEntry("hex loop",function(){var a=new mxCell("Lorem ipsum<br> dolor sit amet, consectetur adipisicing elit",new mxGeometry(0,51,112,102),"shape=hexagon;strokeWidth=4;html=1;fillColor=#F5AB50;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;rounded=0;");a.vertex=!0;var b=new mxCell("Lorem ipsum<br> dolor sit amet, consectetur adipisicing elit", +new mxGeometry(0,153,112,102),"shape=hexagon;strokeWidth=4;html=1;fillColor=#E85642;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;rounded=0;");b.vertex=!0;var d=new mxCell("Lorem ipsum<br> dolor sit amet, consectetur adipisicing elit",new mxGeometry(84,102,112,102),"shape=hexagon;strokeWidth=4;html=1;fillColor=#12AAB5;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;rounded=0;"); +d.vertex=!0;var f=new mxCell("Lorem ipsum<br> dolor sit amet, consectetur adipisicing elit",new mxGeometry(84,0,112,102),"shape=hexagon;strokeWidth=4;html=1;fillColor=#1699D3;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;rounded=0;");f.vertex=!0;var g=new mxCell("Lorem ipsum<br> dolor sit amet, consectetur adipisicing elit",new mxGeometry(168,51,112,102),"shape=hexagon;strokeWidth=4;html=1;fillColor=#736CA8;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;rounded=0;"); g.vertex=!0;var h=new mxCell("Lorem ipsum<br> dolor sit amet, consectetur adipisicing elit",new mxGeometry(168,153,112,102),"shape=hexagon;strokeWidth=4;html=1;fillColor=#2F5B7C;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;rounded=0;");h.vertex=!0;var k=new mxCell("Lorem ipsum<br> dolor sit amet, consectetur adipisicing elit",new mxGeometry(84,204,112,102),"shape=hexagon;strokeWidth=4;html=1;fillColor=#777777;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;rounded=0;"); -k.vertex=!0;return sb.createVertexTemplateFromCells([a,b,c,d,g,h,k],284,312,"Hex Loop")}),this.addEntry("target",function(){var a=new mxCell("",new mxGeometry(0,0,350,350),"ellipse;html=1;strokeWidth=4;fillColor=#F2931E;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");a.vertex=!0;var b=new mxCell("",new mxGeometry(25,25,300,300),"ellipse;html=1;strokeWidth=4;fillColor=#F8C382;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;"); -b.vertex=!0;var c=new mxCell("",new mxGeometry(50,50,250,250),"ellipse;html=1;strokeWidth=4;fillColor=#FCE7CD;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");c.vertex=!0;var d=new mxCell("",new mxGeometry(75,75,200,200),"ellipse;html=1;strokeWidth=4;fillColor=#BAC8D3;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");d.vertex=!0;var g=new mxCell("",new mxGeometry(100,100, +k.vertex=!0;return sb.createVertexTemplateFromCells([a,b,d,f,g,h,k],284,312,"Hex Loop")}),this.addEntry("target",function(){var a=new mxCell("",new mxGeometry(0,0,350,350),"ellipse;html=1;strokeWidth=4;fillColor=#F2931E;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");a.vertex=!0;var b=new mxCell("",new mxGeometry(25,25,300,300),"ellipse;html=1;strokeWidth=4;fillColor=#F8C382;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;"); +b.vertex=!0;var d=new mxCell("",new mxGeometry(50,50,250,250),"ellipse;html=1;strokeWidth=4;fillColor=#FCE7CD;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");d.vertex=!0;var f=new mxCell("",new mxGeometry(75,75,200,200),"ellipse;html=1;strokeWidth=4;fillColor=#BAC8D3;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");f.vertex=!0;var g=new mxCell("",new mxGeometry(100,100, 150,150),"ellipse;html=1;strokeWidth=4;fillColor=#5D7F99;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");g.vertex=!0;var h=new mxCell("",new mxGeometry(125,125,100,100),"ellipse;html=1;strokeWidth=4;fillColor=#2F5B7C;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");h.vertex=!0;var k=new mxCell("",new mxGeometry(150,150,50,50),"ellipse;html=1;strokeWidth=4;fillColor=#23445D;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;"); -k.vertex=!0;return sb.createVertexTemplateFromCells([a,b,c,d,g,h,k],350,350,"Target")}),this.addEntry("target simple",function(){var a=new mxCell("",new mxGeometry(0,0,350,350),"ellipse;html=1;strokeWidth=4;fillColor=#10739E;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");a.vertex=!0;var b=new mxCell("",new mxGeometry(50,50,250,250),"ellipse;html=1;strokeWidth=4;fillColor=#F2931E;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;"); -b.vertex=!0;var c=new mxCell("",new mxGeometry(100,100,150,150),"ellipse;html=1;strokeWidth=4;fillColor=#AE4132;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");c.vertex=!0;var d=new mxCell("",new mxGeometry(150,150,50,50),"ellipse;html=1;strokeWidth=4;fillColor=#23445D;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");d.vertex=!0;return sb.createVertexTemplateFromCells([a, -b,c,d],350,350,"Target (simple)")}),this.addEntry("onion",function(){var a=new mxCell("",new mxGeometry(0,0,350,350),"ellipse;html=1;strokeWidth=4;fillColor=#F5AB50;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");a.vertex=!0;var b=new mxCell("",new mxGeometry(25,50,300,300),"ellipse;html=1;strokeWidth=4;fillColor=#F8C382;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;"); -b.vertex=!0;var c=new mxCell("",new mxGeometry(50,100,250,250),"ellipse;html=1;strokeWidth=4;fillColor=#FCE7CD;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");c.vertex=!0;var d=new mxCell("",new mxGeometry(75,150,200,200),"ellipse;html=1;strokeWidth=4;fillColor=#BAC8D3;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");d.vertex=!0;var g=new mxCell("",new mxGeometry(100, +k.vertex=!0;return sb.createVertexTemplateFromCells([a,b,d,f,g,h,k],350,350,"Target")}),this.addEntry("target simple",function(){var a=new mxCell("",new mxGeometry(0,0,350,350),"ellipse;html=1;strokeWidth=4;fillColor=#10739E;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");a.vertex=!0;var b=new mxCell("",new mxGeometry(50,50,250,250),"ellipse;html=1;strokeWidth=4;fillColor=#F2931E;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;"); +b.vertex=!0;var d=new mxCell("",new mxGeometry(100,100,150,150),"ellipse;html=1;strokeWidth=4;fillColor=#AE4132;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");d.vertex=!0;var f=new mxCell("",new mxGeometry(150,150,50,50),"ellipse;html=1;strokeWidth=4;fillColor=#23445D;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");f.vertex=!0;return sb.createVertexTemplateFromCells([a, +b,d,f],350,350,"Target (simple)")}),this.addEntry("onion",function(){var a=new mxCell("",new mxGeometry(0,0,350,350),"ellipse;html=1;strokeWidth=4;fillColor=#F5AB50;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");a.vertex=!0;var b=new mxCell("",new mxGeometry(25,50,300,300),"ellipse;html=1;strokeWidth=4;fillColor=#F8C382;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;"); +b.vertex=!0;var d=new mxCell("",new mxGeometry(50,100,250,250),"ellipse;html=1;strokeWidth=4;fillColor=#FCE7CD;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");d.vertex=!0;var f=new mxCell("",new mxGeometry(75,150,200,200),"ellipse;html=1;strokeWidth=4;fillColor=#BAC8D3;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");f.vertex=!0;var g=new mxCell("",new mxGeometry(100, 200,150,150),"ellipse;html=1;strokeWidth=4;fillColor=#5D7F99;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");g.vertex=!0;var h=new mxCell("",new mxGeometry(125,250,100,100),"ellipse;html=1;strokeWidth=4;fillColor=#2F5B7C;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");h.vertex=!0;var k=new mxCell("",new mxGeometry(150,300,50,50),"ellipse;html=1;strokeWidth=4;fillColor=#23445D;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;"); -k.vertex=!0;return sb.createVertexTemplateFromCells([a,b,c,d,g,h,k],350,350,"Onion")}),this.addEntry("onion simple",function(){var a=new mxCell("",new mxGeometry(0,0,350,350),"ellipse;html=1;strokeWidth=4;fillColor=#10739E;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");a.vertex=!0;var b=new mxCell("",new mxGeometry(50,100,250,250),"ellipse;html=1;strokeWidth=4;fillColor=#F2931E;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;"); -b.vertex=!0;var c=new mxCell("",new mxGeometry(100,200,150,150),"ellipse;html=1;strokeWidth=4;fillColor=#AE4132;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");c.vertex=!0;var d=new mxCell("",new mxGeometry(150,300,50,50),"ellipse;html=1;strokeWidth=4;fillColor=#23445D;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");d.vertex=!0;return sb.createVertexTemplateFromCells([a, -b,c,d],350,350,"Onion (simple)")}),this.addEntry("triangle",function(){var a=new mxCell("",new mxGeometry(0,0,350,350),"triangle;direction=north;html=1;strokeWidth=4;fillColor=#F2931E;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");a.vertex=!0;var b=new mxCell("",new mxGeometry(25,0,300,300),"triangle;direction=north;html=1;strokeWidth=4;fillColor=#F8C382;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;"); -b.vertex=!0;var c=new mxCell("",new mxGeometry(50,0,250,250),"triangle;direction=north;html=1;strokeWidth=4;fillColor=#FCE7CD;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");c.vertex=!0;var d=new mxCell("",new mxGeometry(75,0,200,200),"triangle;direction=north;html=1;strokeWidth=4;fillColor=#BAC8D3;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");d.vertex=!0;var g=new mxCell("", +k.vertex=!0;return sb.createVertexTemplateFromCells([a,b,d,f,g,h,k],350,350,"Onion")}),this.addEntry("onion simple",function(){var a=new mxCell("",new mxGeometry(0,0,350,350),"ellipse;html=1;strokeWidth=4;fillColor=#10739E;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");a.vertex=!0;var b=new mxCell("",new mxGeometry(50,100,250,250),"ellipse;html=1;strokeWidth=4;fillColor=#F2931E;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;"); +b.vertex=!0;var d=new mxCell("",new mxGeometry(100,200,150,150),"ellipse;html=1;strokeWidth=4;fillColor=#AE4132;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");d.vertex=!0;var f=new mxCell("",new mxGeometry(150,300,50,50),"ellipse;html=1;strokeWidth=4;fillColor=#23445D;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");f.vertex=!0;return sb.createVertexTemplateFromCells([a, +b,d,f],350,350,"Onion (simple)")}),this.addEntry("triangle",function(){var a=new mxCell("",new mxGeometry(0,0,350,350),"triangle;direction=north;html=1;strokeWidth=4;fillColor=#F2931E;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");a.vertex=!0;var b=new mxCell("",new mxGeometry(25,0,300,300),"triangle;direction=north;html=1;strokeWidth=4;fillColor=#F8C382;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;"); +b.vertex=!0;var d=new mxCell("",new mxGeometry(50,0,250,250),"triangle;direction=north;html=1;strokeWidth=4;fillColor=#FCE7CD;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");d.vertex=!0;var f=new mxCell("",new mxGeometry(75,0,200,200),"triangle;direction=north;html=1;strokeWidth=4;fillColor=#BAC8D3;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");f.vertex=!0;var g=new mxCell("", new mxGeometry(100,0,150,150),"triangle;direction=north;html=1;strokeWidth=4;fillColor=#5D7F99;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");g.vertex=!0;var h=new mxCell("",new mxGeometry(125,0,100,100),"triangle;direction=north;html=1;strokeWidth=4;fillColor=#2F5B7C;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");h.vertex=!0;var k=new mxCell("",new mxGeometry(150, -0,50,50),"triangle;direction=north;html=1;strokeWidth=4;fillColor=#23445D;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");k.vertex=!0;return sb.createVertexTemplateFromCells([a,b,c,d,g,h,k],350,350,"Triangle")}),this.addEntry("triangle simple",function(){var a=new mxCell("",new mxGeometry(0,0,350,350),"triangle;direction=north;strokeWidth=4;html=1;fillColor=#10739E;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;"); -a.vertex=!0;var b=new mxCell("",new mxGeometry(50,0,250,250),"triangle;direction=north;strokeWidth=4;html=1;fillColor=#F2931E;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");b.vertex=!0;var c=new mxCell("",new mxGeometry(100,0,150,150),"triangle;direction=north;strokeWidth=4;html=1;fillColor=#AE4132;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");c.vertex=!0;var d=new mxCell("", -new mxGeometry(150,0,50,50),"triangle;direction=north;strokeWidth=4;html=1;fillColor=#23445D;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");d.vertex=!0;return sb.createVertexTemplateFromCells([a,b,c,d],350,350,"Triangle (simple)")}),this.addEntry("percent percentage list",function(){var a=new mxCell("30%",new mxGeometry(0,0,60,40),"shape=step;perimeter=stepPerimeter;whiteSpace=wrap;html=1;fixedSize=1;size=10;fillColor=#4A5768;strokeColor=none;fontSize=16;fontColor=#ffffff;fontStyle=1;rounded=0;"); -a.vertex=!0;var b=new mxCell("",new mxGeometry(70,10,300,20),"whiteSpace=wrap;html=1;fixedSize=1;size=10;fillColor=#B1DDF0;strokeColor=none;");b.vertex=!0;var c=new mxCell("",new mxGeometry(70,10,90,20),"whiteSpace=wrap;html=1;fixedSize=1;size=10;fillColor=#10739E;strokeColor=none;shadow=0;");c.vertex=!0;var d=new mxCell("75%",new mxGeometry(0,50,60,40),"shape=step;perimeter=stepPerimeter;whiteSpace=wrap;html=1;fixedSize=1;size=10;fillColor=#4A5768;strokeColor=none;fontSize=16;fontColor=#ffffff;fontStyle=1;rounded=0;"); -d.vertex=!0;var g=new mxCell("",new mxGeometry(70,60,300,20),"whiteSpace=wrap;html=1;fixedSize=1;size=10;fillColor=#FCE7CD;strokeColor=none;");g.vertex=!0;var h=new mxCell("",new mxGeometry(70,60,225,20),"whiteSpace=wrap;html=1;fixedSize=1;size=10;fillColor=#F2931E;strokeColor=none;shadow=0;");h.vertex=!0;var k=new mxCell("90%",new mxGeometry(0,100,60,40),"shape=step;perimeter=stepPerimeter;whiteSpace=wrap;html=1;fixedSize=1;size=10;fillColor=#4A5768;strokeColor=none;fontSize=16;fontColor=#ffffff;fontStyle=1;rounded=0;"); +0,50,50),"triangle;direction=north;html=1;strokeWidth=4;fillColor=#23445D;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");k.vertex=!0;return sb.createVertexTemplateFromCells([a,b,d,f,g,h,k],350,350,"Triangle")}),this.addEntry("triangle simple",function(){var a=new mxCell("",new mxGeometry(0,0,350,350),"triangle;direction=north;strokeWidth=4;html=1;fillColor=#10739E;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;"); +a.vertex=!0;var b=new mxCell("",new mxGeometry(50,0,250,250),"triangle;direction=north;strokeWidth=4;html=1;fillColor=#F2931E;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");b.vertex=!0;var d=new mxCell("",new mxGeometry(100,0,150,150),"triangle;direction=north;strokeWidth=4;html=1;fillColor=#AE4132;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");d.vertex=!0;var f=new mxCell("", +new mxGeometry(150,0,50,50),"triangle;direction=north;strokeWidth=4;html=1;fillColor=#23445D;strokeColor=#ffffff;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");f.vertex=!0;return sb.createVertexTemplateFromCells([a,b,d,f],350,350,"Triangle (simple)")}),this.addEntry("percent percentage list",function(){var a=new mxCell("30%",new mxGeometry(0,0,60,40),"shape=step;perimeter=stepPerimeter;whiteSpace=wrap;html=1;fixedSize=1;size=10;fillColor=#4A5768;strokeColor=none;fontSize=16;fontColor=#ffffff;fontStyle=1;rounded=0;"); +a.vertex=!0;var b=new mxCell("",new mxGeometry(70,10,300,20),"whiteSpace=wrap;html=1;fixedSize=1;size=10;fillColor=#B1DDF0;strokeColor=none;");b.vertex=!0;var d=new mxCell("",new mxGeometry(70,10,90,20),"whiteSpace=wrap;html=1;fixedSize=1;size=10;fillColor=#10739E;strokeColor=none;shadow=0;");d.vertex=!0;var f=new mxCell("75%",new mxGeometry(0,50,60,40),"shape=step;perimeter=stepPerimeter;whiteSpace=wrap;html=1;fixedSize=1;size=10;fillColor=#4A5768;strokeColor=none;fontSize=16;fontColor=#ffffff;fontStyle=1;rounded=0;"); +f.vertex=!0;var g=new mxCell("",new mxGeometry(70,60,300,20),"whiteSpace=wrap;html=1;fixedSize=1;size=10;fillColor=#FCE7CD;strokeColor=none;");g.vertex=!0;var h=new mxCell("",new mxGeometry(70,60,225,20),"whiteSpace=wrap;html=1;fixedSize=1;size=10;fillColor=#F2931E;strokeColor=none;shadow=0;");h.vertex=!0;var k=new mxCell("90%",new mxGeometry(0,100,60,40),"shape=step;perimeter=stepPerimeter;whiteSpace=wrap;html=1;fixedSize=1;size=10;fillColor=#4A5768;strokeColor=none;fontSize=16;fontColor=#ffffff;fontStyle=1;rounded=0;"); k.vertex=!0;var l=new mxCell("",new mxGeometry(70,110,300,20),"whiteSpace=wrap;html=1;fixedSize=1;size=10;fillColor=#FAD9D5;strokeColor=none;");l.vertex=!0;var m=new mxCell("",new mxGeometry(70,110,270,20),"whiteSpace=wrap;html=1;fixedSize=1;size=10;fillColor=#AE4132;strokeColor=none;shadow=0;");m.vertex=!0;var q=new mxCell("25%",new mxGeometry(0,150,60,40),"shape=step;perimeter=stepPerimeter;whiteSpace=wrap;html=1;fixedSize=1;size=10;fillColor=#4A5768;strokeColor=none;fontSize=16;fontColor=#ffffff;fontStyle=1;rounded=0;"); -q.vertex=!0;var r=new mxCell("",new mxGeometry(70,160,300,20),"whiteSpace=wrap;html=1;fixedSize=1;size=10;fillColor=#BAC8D3;strokeColor=none;");r.vertex=!0;var n=new mxCell("",new mxGeometry(70,160,75,20),"whiteSpace=wrap;html=1;fixedSize=1;size=10;fillColor=#23445D;strokeColor=none;shadow=0;");n.vertex=!0;return sb.createVertexTemplateFromCells([a,b,c,d,g,h,k,l,m,q,r,n],370,190,"Percentage list")}),this.addEntry("percent percentage list",function(){var a=new mxCell("",new mxGeometry(0,0,400,40), -"whiteSpace=wrap;html=1;fixedSize=1;size=10;fillColor=#dddddd;strokeColor=none;rounded=0;");a.vertex=!0;var b=new mxCell("65%",new mxGeometry(0,0,260,40),"html=1;shape=mxgraph.infographic.ribbonSimple;notch1=0;notch2=20;fillColor=#10739E;strokeColor=none;align=left;verticalAlign=middle;fontColor=#ffffff;fontSize=18;spacingLeft=10;fontStyle=1;shadow=0;");b.vertex=!0;var c=new mxCell("Label",new mxGeometry(320,0,80,40),"text;html=1;strokeColor=none;fillColor=none;align=right;verticalAlign=middle;whiteSpace=wrap;rounded=0;shadow=0;fontSize=18;fontColor=#000000;spacingRight=10;"); -c.vertex=!0;var d=new mxCell("",new mxGeometry(0,50,400,40),"whiteSpace=wrap;html=1;fixedSize=1;size=10;fillColor=#dddddd;strokeColor=none;rounded=0;");d.vertex=!0;var g=new mxCell("45%",new mxGeometry(0,50,180,40),"html=1;shape=mxgraph.infographic.ribbonSimple;notch1=0;notch2=20;fillColor=#F2931E;strokeColor=none;align=left;verticalAlign=middle;fontColor=#ffffff;fontSize=18;spacingLeft=10;fontStyle=1;shadow=0;");g.vertex=!0;var h=new mxCell("Label",new mxGeometry(320,50,80,40),"text;html=1;strokeColor=none;fillColor=none;align=right;verticalAlign=middle;whiteSpace=wrap;rounded=0;shadow=0;fontSize=18;fontColor=#000000;spacingRight=10;"); +q.vertex=!0;var r=new mxCell("",new mxGeometry(70,160,300,20),"whiteSpace=wrap;html=1;fixedSize=1;size=10;fillColor=#BAC8D3;strokeColor=none;");r.vertex=!0;var n=new mxCell("",new mxGeometry(70,160,75,20),"whiteSpace=wrap;html=1;fixedSize=1;size=10;fillColor=#23445D;strokeColor=none;shadow=0;");n.vertex=!0;return sb.createVertexTemplateFromCells([a,b,d,f,g,h,k,l,m,q,r,n],370,190,"Percentage list")}),this.addEntry("percent percentage list",function(){var a=new mxCell("",new mxGeometry(0,0,400,40), +"whiteSpace=wrap;html=1;fixedSize=1;size=10;fillColor=#dddddd;strokeColor=none;rounded=0;");a.vertex=!0;var b=new mxCell("65%",new mxGeometry(0,0,260,40),"html=1;shape=mxgraph.infographic.ribbonSimple;notch1=0;notch2=20;fillColor=#10739E;strokeColor=none;align=left;verticalAlign=middle;fontColor=#ffffff;fontSize=18;spacingLeft=10;fontStyle=1;shadow=0;");b.vertex=!0;var d=new mxCell("Label",new mxGeometry(320,0,80,40),"text;html=1;strokeColor=none;fillColor=none;align=right;verticalAlign=middle;whiteSpace=wrap;rounded=0;shadow=0;fontSize=18;fontColor=#000000;spacingRight=10;"); +d.vertex=!0;var f=new mxCell("",new mxGeometry(0,50,400,40),"whiteSpace=wrap;html=1;fixedSize=1;size=10;fillColor=#dddddd;strokeColor=none;rounded=0;");f.vertex=!0;var g=new mxCell("45%",new mxGeometry(0,50,180,40),"html=1;shape=mxgraph.infographic.ribbonSimple;notch1=0;notch2=20;fillColor=#F2931E;strokeColor=none;align=left;verticalAlign=middle;fontColor=#ffffff;fontSize=18;spacingLeft=10;fontStyle=1;shadow=0;");g.vertex=!0;var h=new mxCell("Label",new mxGeometry(320,50,80,40),"text;html=1;strokeColor=none;fillColor=none;align=right;verticalAlign=middle;whiteSpace=wrap;rounded=0;shadow=0;fontSize=18;fontColor=#000000;spacingRight=10;"); h.vertex=!0;var k=new mxCell("",new mxGeometry(0,100,400,40),"whiteSpace=wrap;html=1;fixedSize=1;size=10;fillColor=#dddddd;strokeColor=none;rounded=0;");k.vertex=!0;var l=new mxCell("30%",new mxGeometry(0,100,120,40),"html=1;shape=mxgraph.infographic.ribbonSimple;notch1=0;notch2=20;fillColor=#AE4132;strokeColor=none;align=left;verticalAlign=middle;fontColor=#ffffff;fontSize=18;spacingLeft=10;fontStyle=1;shadow=0;");l.vertex=!0;var m=new mxCell("Label",new mxGeometry(320,100,80,40),"text;html=1;strokeColor=none;fillColor=none;align=right;verticalAlign=middle;whiteSpace=wrap;rounded=0;shadow=0;fontSize=18;fontColor=#000000;spacingRight=10;"); m.vertex=!0;var q=new mxCell("",new mxGeometry(0,150,400,40),"whiteSpace=wrap;html=1;fixedSize=1;size=10;fillColor=#dddddd;strokeColor=none;rounded=0;");q.vertex=!0;var r=new mxCell("60%",new mxGeometry(0,150,240,40),"html=1;shape=mxgraph.infographic.ribbonSimple;notch1=0;notch2=20;fillColor=#23445D;strokeColor=none;align=left;verticalAlign=middle;fontColor=#ffffff;fontSize=18;spacingLeft=10;fontStyle=1;shadow=0;");r.vertex=!0;var n=new mxCell("Label",new mxGeometry(320,150,80,40),"text;html=1;strokeColor=none;fillColor=none;align=right;verticalAlign=middle;whiteSpace=wrap;rounded=0;shadow=0;fontSize=18;fontColor=#000000;spacingRight=10;"); n.vertex=!0;var p=new mxCell("",new mxGeometry(0,200,400,40),"whiteSpace=wrap;html=1;fixedSize=1;size=10;fillColor=#dddddd;strokeColor=none;rounded=0;");p.vertex=!0;var u=new mxCell("85%",new mxGeometry(0,200,340,40),"html=1;shape=mxgraph.infographic.ribbonSimple;notch1=0;notch2=20;fillColor=#12AAB5;strokeColor=none;align=left;verticalAlign=middle;fontColor=#ffffff;fontSize=18;spacingLeft=10;fontStyle=1;shadow=0;");u.vertex=!0;var t=new mxCell("Label",new mxGeometry(320,200,80,40),"text;html=1;strokeColor=none;fillColor=none;align=right;verticalAlign=middle;whiteSpace=wrap;rounded=0;shadow=0;fontSize=18;fontColor=#000000;spacingRight=10;"); -t.vertex=!0;return sb.createVertexTemplateFromCells([a,b,d,g,k,l,q,r,p,u,c,h,m,n,t],400,250,"Percentage list")}),this.addEntry("arc list",function(){var a=new mxCell("",new mxGeometry(0,0,260,260),d+"partConcEllipse;fillColor=#10739E;strokeColor=#ffffff;startAngle=0.75;endAngle=0.08;arcWidth=0.16;strokeWidth=3;");a.vertex=!0;var b=new mxCell("",new mxGeometry(20,20,220,220),d+"partConcEllipse;fillColor=#F2931E;strokeColor=#ffffff;startAngle=0.91;endAngle=0.17;arcWidth=0.18;strokeWidth=3;");b.vertex= -!0;var c=new mxCell("",new mxGeometry(40,40,180,180),d+"partConcEllipse;fillColor=#AE4132;strokeColor=#ffffff;startAngle=0.75;endAngle=0.11;arcWidth=0.22;strokeWidth=3;");c.vertex=!0;var f=new mxCell("",new mxGeometry(60,60,140,140),d+"partConcEllipse;fillColor=#12AAB5;strokeColor=#ffffff;startAngle=0.02;endAngle=0.25;arcWidth=0.29;strokeWidth=3;");f.vertex=!0;var g=new mxCell("",new mxGeometry(80,80,100,100),d+"partConcEllipse;fillColor=#CCCCCC;strokeColor=#ffffff;startAngle=0.75;endAngle=0.25;arcWidth=0.4;strokeWidth=3;"); -g.vertex=!0;var h=new mxCell("2018",new mxGeometry(100,100,60,60),"html=1;shape=mxgraph.basic.pie;fillColor=#23445D;strokeColor=#ffffff;startAngle=0.75;endAngle=0.25;fontSize=16;fontColor=#FFFFFF;verticalAlign=top;fontStyle=1;strokeWidth=3;");h.vertex=!0;return sb.createVertexTemplateFromCells([a,b,c,f,g,h],200,200,"Arc list")}),this.addEntry("arc list",function(){var a=new mxCell("",new mxGeometry(0,0,250,250),"ellipse;fillColor=none;strokeColor=#444444;");a.vertex=!0;var b=new mxCell("",new mxGeometry(20, -20,210,210),"ellipse;fillColor=none;strokeColor=#444444;");b.vertex=!0;var c=new mxCell("",new mxGeometry(40,40,170,170),"ellipse;fillColor=none;strokeColor=#444444;");c.vertex=!0;var f=new mxCell("",new mxGeometry(60,60,130,130),"ellipse;fillColor=none;strokeColor=#444444;");f.vertex=!0;var g=new mxCell("",new mxGeometry(80,80,90,90),"ellipse;fillColor=none;strokeColor=#444444;");g.vertex=!0;var h=new mxCell("",new mxGeometry(0,0,250,250),d+"arc;fillColor=none;strokeColor=#10739E;startAngle=0.75;endAngle=0.08;strokeWidth=16;"); -h.vertex=!0;var k=new mxCell("",new mxGeometry(20,20,210,210),d+"arc;fillColor=none;strokeColor=#F2931E;startAngle=0.91;endAngle=0.17;strokeWidth=16;");k.vertex=!0;var l=new mxCell("",new mxGeometry(40,40,170,170),d+"arc;fillColor=none;strokeColor=#AE4132;startAngle=0.75;endAngle=0.11;strokeWidth=16;");l.vertex=!0;var m=new mxCell("",new mxGeometry(60,60,130,130),d+"arc;fillColor=none;strokeColor=#12AAB5;startAngle=0.02;endAngle=0.25;strokeWidth=16;");m.vertex=!0;var q=new mxCell("",new mxGeometry(80, -80,90,90),d+"arc;fillColor=none;strokeColor=#CCCCCC;startAngle=0.75;endAngle=0.25;strokeWidth=16;");q.vertex=!0;var r=new mxCell("2018",new mxGeometry(92,92,66,66),"html=1;shape=mxgraph.basic.pie;fillColor=#23445D;strokeColor=none;startAngle=0.75;endAngle=0.25;fontSize=16;fontColor=#FFFFFF;verticalAlign=top;spacingTop=8;fontStyle=1;");r.vertex=!0;return sb.createVertexTemplateFromCells([a,b,c,f,g,h,k,l,m,q,r],200,200,"Arc list")}),this.addEntry("triangle graph",function(){var a=new mxCell("Label", +t.vertex=!0;return sb.createVertexTemplateFromCells([a,b,f,g,k,l,q,r,p,u,d,h,m,n,t],400,250,"Percentage list")}),this.addEntry("arc list",function(){var a=new mxCell("",new mxGeometry(0,0,260,260),b+"partConcEllipse;fillColor=#10739E;strokeColor=#ffffff;startAngle=0.75;endAngle=0.08;arcWidth=0.16;strokeWidth=3;");a.vertex=!0;var c=new mxCell("",new mxGeometry(20,20,220,220),b+"partConcEllipse;fillColor=#F2931E;strokeColor=#ffffff;startAngle=0.91;endAngle=0.17;arcWidth=0.18;strokeWidth=3;");c.vertex= +!0;var d=new mxCell("",new mxGeometry(40,40,180,180),b+"partConcEllipse;fillColor=#AE4132;strokeColor=#ffffff;startAngle=0.75;endAngle=0.11;arcWidth=0.22;strokeWidth=3;");d.vertex=!0;var f=new mxCell("",new mxGeometry(60,60,140,140),b+"partConcEllipse;fillColor=#12AAB5;strokeColor=#ffffff;startAngle=0.02;endAngle=0.25;arcWidth=0.29;strokeWidth=3;");f.vertex=!0;var g=new mxCell("",new mxGeometry(80,80,100,100),b+"partConcEllipse;fillColor=#CCCCCC;strokeColor=#ffffff;startAngle=0.75;endAngle=0.25;arcWidth=0.4;strokeWidth=3;"); +g.vertex=!0;var h=new mxCell("2018",new mxGeometry(100,100,60,60),"html=1;shape=mxgraph.basic.pie;fillColor=#23445D;strokeColor=#ffffff;startAngle=0.75;endAngle=0.25;fontSize=16;fontColor=#FFFFFF;verticalAlign=top;fontStyle=1;strokeWidth=3;");h.vertex=!0;return sb.createVertexTemplateFromCells([a,c,d,f,g,h],200,200,"Arc list")}),this.addEntry("arc list",function(){var a=new mxCell("",new mxGeometry(0,0,250,250),"ellipse;fillColor=none;strokeColor=#444444;");a.vertex=!0;var c=new mxCell("",new mxGeometry(20, +20,210,210),"ellipse;fillColor=none;strokeColor=#444444;");c.vertex=!0;var d=new mxCell("",new mxGeometry(40,40,170,170),"ellipse;fillColor=none;strokeColor=#444444;");d.vertex=!0;var f=new mxCell("",new mxGeometry(60,60,130,130),"ellipse;fillColor=none;strokeColor=#444444;");f.vertex=!0;var g=new mxCell("",new mxGeometry(80,80,90,90),"ellipse;fillColor=none;strokeColor=#444444;");g.vertex=!0;var h=new mxCell("",new mxGeometry(0,0,250,250),b+"arc;fillColor=none;strokeColor=#10739E;startAngle=0.75;endAngle=0.08;strokeWidth=16;"); +h.vertex=!0;var k=new mxCell("",new mxGeometry(20,20,210,210),b+"arc;fillColor=none;strokeColor=#F2931E;startAngle=0.91;endAngle=0.17;strokeWidth=16;");k.vertex=!0;var l=new mxCell("",new mxGeometry(40,40,170,170),b+"arc;fillColor=none;strokeColor=#AE4132;startAngle=0.75;endAngle=0.11;strokeWidth=16;");l.vertex=!0;var m=new mxCell("",new mxGeometry(60,60,130,130),b+"arc;fillColor=none;strokeColor=#12AAB5;startAngle=0.02;endAngle=0.25;strokeWidth=16;");m.vertex=!0;var q=new mxCell("",new mxGeometry(80, +80,90,90),b+"arc;fillColor=none;strokeColor=#CCCCCC;startAngle=0.75;endAngle=0.25;strokeWidth=16;");q.vertex=!0;var r=new mxCell("2018",new mxGeometry(92,92,66,66),"html=1;shape=mxgraph.basic.pie;fillColor=#23445D;strokeColor=none;startAngle=0.75;endAngle=0.25;fontSize=16;fontColor=#FFFFFF;verticalAlign=top;spacingTop=8;fontStyle=1;");r.vertex=!0;return sb.createVertexTemplateFromCells([a,c,d,f,g,h,k,l,m,q,r],200,200,"Arc list")}),this.addEntry("triangle graph",function(){var a=new mxCell("Label", new mxGeometry(0,70,80,70),"verticalLabelPosition=middle;verticalAlign=bottom;html=1;shape=mxgraph.infographic.shadedTriangle;fillColor=#10739E;strokeColor=none;fontSize=10;labelPosition=center;align=center;fontColor=#FFFFFF;fontStyle=1;shadow=0;");a.vertex=!0;var b=new mxCell("Label",new mxGeometry(60,10,80,130),"verticalLabelPosition=middle;verticalAlign=bottom;html=1;shape=mxgraph.infographic.shadedTriangle;fillColor=#F2931E;strokeColor=none;fontSize=10;labelPosition=center;align=center;fontColor=#FFFFFF;fontStyle=1;shadow=0;"); -b.vertex=!0;var c=new mxCell("Label",new mxGeometry(120,0,80,140),"verticalLabelPosition=middle;verticalAlign=bottom;html=1;shape=mxgraph.infographic.shadedTriangle;fillColor=#AE4132;strokeColor=none;fontSize=10;labelPosition=center;align=center;fontColor=#FFFFFF;fontStyle=1;shadow=0;");c.vertex=!0;var d=new mxCell("Label",new mxGeometry(180,40,80,100),"verticalLabelPosition=middle;verticalAlign=bottom;html=1;shape=mxgraph.infographic.shadedTriangle;fillColor=#12AAB5;strokeColor=none;fontSize=10;labelPosition=center;align=center;fontColor=#FFFFFF;fontStyle=1;shadow=0;"); -d.vertex=!0;var g=new mxCell("Label",new mxGeometry(240,60,80,80),"verticalLabelPosition=middle;verticalAlign=bottom;html=1;shape=mxgraph.infographic.shadedTriangle;fillColor=#23445D;strokeColor=none;fontSize=10;labelPosition=center;align=center;fontColor=#FFFFFF;fontStyle=1;shadow=0;");g.vertex=!0;return sb.createVertexTemplateFromCells([g,d,c,b,a],320,140,"Triangle Graph")}),this.addEntry("pyramid graph",function(){var a=new mxCell("Label",new mxGeometry(0,70,80,70),"verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.infographic.shadedPyramid;fillColor=#10739E;strokeColor=none;fontSize=10;labelPosition=center;align=center;fontColor=#000000;shadow=0;"); -a.vertex=!0;var b=new mxCell("Label",new mxGeometry(60,10,80,130),"verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.infographic.shadedPyramid;fillColor=#F2931E;strokeColor=none;fontSize=10;labelPosition=center;align=center;fontColor=#000000;shadow=0;");b.vertex=!0;var c=new mxCell("Label",new mxGeometry(120,0,80,140),"verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.infographic.shadedPyramid;fillColor=#AE4132;strokeColor=none;fontSize=10;labelPosition=center;align=center;fontColor=#000000;shadow=0;"); -c.vertex=!0;var d=new mxCell("Label",new mxGeometry(180,40,80,100),"verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.infographic.shadedPyramid;fillColor=#12AAB5;strokeColor=none;fontSize=10;labelPosition=center;align=center;fontColor=#000000;shadow=0;");d.vertex=!0;var g=new mxCell("Label",new mxGeometry(240,60,80,80),"verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.infographic.shadedPyramid;fillColor=#23445D;strokeColor=none;fontSize=10;labelPosition=center;align=center;fontColor=#000000;shadow=0;"); -g.vertex=!0;return sb.createVertexTemplateFromCells([g,d,c,b,a],320,140,"Pyramid Graph")}),this.addEntry("change graph",function(){var a=new mxCell("",new mxGeometry(0,30,30,100),"fillColor=#10739E;strokeColor=none;");a.vertex=!0;var b=new mxCell("",new mxGeometry(3,30,24,70),"shape=mxgraph.arrows2.arrow;dy=0.4;dx=16;notch=0;direction=north;fillColor=#1699D3;strokeColor=none;");b.vertex=!0;a.insert(b);b=new mxCell("Label",new mxGeometry(0,0,30,20),"text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;;fontColor=#FFFFFF;fontSize=10;"); -b.vertex=!0;a.insert(b);b=new mxCell("",new mxGeometry(35,10,30,120),"fillColor=#F2931E;strokeColor=none;");b.vertex=!0;var c=new mxCell("",new mxGeometry(3,0,24,80),"shape=mxgraph.arrows2.arrow;dy=0.4;dx=16;notch=0;direction=south;fillColor=#F5AB50;strokeColor=none;");c.vertex=!0;b.insert(c);c=new mxCell("Label",new mxGeometry(0,0,30,20),"text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;;fontColor=#FFFFFF;fontSize=10;");c.vertex=!0;b.insert(c);c=new mxCell("",new mxGeometry(70,0,30, -130),"fillColor=#AE4132;strokeColor=none;");c.vertex=!0;var d=new mxCell("",new mxGeometry(3,80,24,50),"shape=mxgraph.arrows2.arrow;dy=0.4;dx=16;notch=0;direction=north;fillColor=#E85642;strokeColor=none;");d.vertex=!0;c.insert(d);d=new mxCell("Label",new mxGeometry(0,0,30,20),"text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;;fontColor=#FFFFFF;fontSize=10;");d.vertex=!0;c.insert(d);d=new mxCell("",new mxGeometry(105,50,30,80),"fillColor=#12AAB5;strokeColor=none;");d.vertex=!0;var g= -new mxCell("",new mxGeometry(3,0,24,30),"shape=mxgraph.arrows2.arrow;dy=0.4;dx=16;notch=0;direction=south;fillColor=#64BBE2;strokeColor=none;");g.vertex=!0;d.insert(g);g=new mxCell("Label",new mxGeometry(0,0,30,20),"text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;;fontColor=#FFFFFF;fontSize=10;");g.vertex=!0;d.insert(g);g=new mxCell("",new mxGeometry(140,60,30,70),"fillColor=#23445D;strokeColor=none;");g.vertex=!0;var h=new mxCell("",new mxGeometry(3,10,24,60),"shape=mxgraph.arrows2.arrow;dy=0.4;dx=16;notch=0;direction=north;fillColor=#2F5B7C;strokeColor=none;"); -h.vertex=!0;g.insert(h);h=new mxCell("Label",new mxGeometry(0,0,30,20),"text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;;fontColor=#FFFFFF;fontSize=10;");h.vertex=!0;g.insert(h);return sb.createVertexTemplateFromCells([a,b,c,d,g],170,130,"Change Graph")}),this.addEntry("step pyramid",function(){var a=new mxCell("",new mxGeometry(70,0,20,95),"html=1;shape=mxgraph.infographic.pyramidStep;fillColor=#F2931E;strokeColor=none;shadow=0;");a.vertex=!0;var b=new mxCell("",new mxGeometry(60,10, -40,85),"html=1;shape=mxgraph.infographic.pyramidStep;fillColor=#F8C382;strokeColor=none;shadow=0;");b.vertex=!0;var c=new mxCell("",new mxGeometry(50,20,60,75),"html=1;shape=mxgraph.infographic.pyramidStep;fillColor=#FCE7CD;strokeColor=none;shadow=0;");c.vertex=!0;var d=new mxCell("",new mxGeometry(40,30,80,65),"html=1;shape=mxgraph.infographic.pyramidStep;fillColor=#BAC8D3;strokeColor=none;shadow=0;");d.vertex=!0;var g=new mxCell("",new mxGeometry(30,40,100,55),"html=1;shape=mxgraph.infographic.pyramidStep;fillColor=#5D7F99;strokeColor=none;shadow=0;"); +b.vertex=!0;var d=new mxCell("Label",new mxGeometry(120,0,80,140),"verticalLabelPosition=middle;verticalAlign=bottom;html=1;shape=mxgraph.infographic.shadedTriangle;fillColor=#AE4132;strokeColor=none;fontSize=10;labelPosition=center;align=center;fontColor=#FFFFFF;fontStyle=1;shadow=0;");d.vertex=!0;var f=new mxCell("Label",new mxGeometry(180,40,80,100),"verticalLabelPosition=middle;verticalAlign=bottom;html=1;shape=mxgraph.infographic.shadedTriangle;fillColor=#12AAB5;strokeColor=none;fontSize=10;labelPosition=center;align=center;fontColor=#FFFFFF;fontStyle=1;shadow=0;"); +f.vertex=!0;var g=new mxCell("Label",new mxGeometry(240,60,80,80),"verticalLabelPosition=middle;verticalAlign=bottom;html=1;shape=mxgraph.infographic.shadedTriangle;fillColor=#23445D;strokeColor=none;fontSize=10;labelPosition=center;align=center;fontColor=#FFFFFF;fontStyle=1;shadow=0;");g.vertex=!0;return sb.createVertexTemplateFromCells([g,f,d,b,a],320,140,"Triangle Graph")}),this.addEntry("pyramid graph",function(){var a=new mxCell("Label",new mxGeometry(0,70,80,70),"verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.infographic.shadedPyramid;fillColor=#10739E;strokeColor=none;fontSize=10;labelPosition=center;align=center;fontColor=#000000;shadow=0;"); +a.vertex=!0;var b=new mxCell("Label",new mxGeometry(60,10,80,130),"verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.infographic.shadedPyramid;fillColor=#F2931E;strokeColor=none;fontSize=10;labelPosition=center;align=center;fontColor=#000000;shadow=0;");b.vertex=!0;var d=new mxCell("Label",new mxGeometry(120,0,80,140),"verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.infographic.shadedPyramid;fillColor=#AE4132;strokeColor=none;fontSize=10;labelPosition=center;align=center;fontColor=#000000;shadow=0;"); +d.vertex=!0;var f=new mxCell("Label",new mxGeometry(180,40,80,100),"verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.infographic.shadedPyramid;fillColor=#12AAB5;strokeColor=none;fontSize=10;labelPosition=center;align=center;fontColor=#000000;shadow=0;");f.vertex=!0;var g=new mxCell("Label",new mxGeometry(240,60,80,80),"verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.infographic.shadedPyramid;fillColor=#23445D;strokeColor=none;fontSize=10;labelPosition=center;align=center;fontColor=#000000;shadow=0;"); +g.vertex=!0;return sb.createVertexTemplateFromCells([g,f,d,b,a],320,140,"Pyramid Graph")}),this.addEntry("change graph",function(){var a=new mxCell("",new mxGeometry(0,30,30,100),"fillColor=#10739E;strokeColor=none;");a.vertex=!0;var b=new mxCell("",new mxGeometry(3,30,24,70),"shape=mxgraph.arrows2.arrow;dy=0.4;dx=16;notch=0;direction=north;fillColor=#1699D3;strokeColor=none;");b.vertex=!0;a.insert(b);b=new mxCell("Label",new mxGeometry(0,0,30,20),"text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;;fontColor=#FFFFFF;fontSize=10;"); +b.vertex=!0;a.insert(b);b=new mxCell("",new mxGeometry(35,10,30,120),"fillColor=#F2931E;strokeColor=none;");b.vertex=!0;var d=new mxCell("",new mxGeometry(3,0,24,80),"shape=mxgraph.arrows2.arrow;dy=0.4;dx=16;notch=0;direction=south;fillColor=#F5AB50;strokeColor=none;");d.vertex=!0;b.insert(d);d=new mxCell("Label",new mxGeometry(0,0,30,20),"text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;;fontColor=#FFFFFF;fontSize=10;");d.vertex=!0;b.insert(d);d=new mxCell("",new mxGeometry(70,0,30, +130),"fillColor=#AE4132;strokeColor=none;");d.vertex=!0;var f=new mxCell("",new mxGeometry(3,80,24,50),"shape=mxgraph.arrows2.arrow;dy=0.4;dx=16;notch=0;direction=north;fillColor=#E85642;strokeColor=none;");f.vertex=!0;d.insert(f);f=new mxCell("Label",new mxGeometry(0,0,30,20),"text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;;fontColor=#FFFFFF;fontSize=10;");f.vertex=!0;d.insert(f);f=new mxCell("",new mxGeometry(105,50,30,80),"fillColor=#12AAB5;strokeColor=none;");f.vertex=!0;var g= +new mxCell("",new mxGeometry(3,0,24,30),"shape=mxgraph.arrows2.arrow;dy=0.4;dx=16;notch=0;direction=south;fillColor=#64BBE2;strokeColor=none;");g.vertex=!0;f.insert(g);g=new mxCell("Label",new mxGeometry(0,0,30,20),"text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;;fontColor=#FFFFFF;fontSize=10;");g.vertex=!0;f.insert(g);g=new mxCell("",new mxGeometry(140,60,30,70),"fillColor=#23445D;strokeColor=none;");g.vertex=!0;var h=new mxCell("",new mxGeometry(3,10,24,60),"shape=mxgraph.arrows2.arrow;dy=0.4;dx=16;notch=0;direction=north;fillColor=#2F5B7C;strokeColor=none;"); +h.vertex=!0;g.insert(h);h=new mxCell("Label",new mxGeometry(0,0,30,20),"text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;;fontColor=#FFFFFF;fontSize=10;");h.vertex=!0;g.insert(h);return sb.createVertexTemplateFromCells([a,b,d,f,g],170,130,"Change Graph")}),this.addEntry("step pyramid",function(){var a=new mxCell("",new mxGeometry(70,0,20,95),"html=1;shape=mxgraph.infographic.pyramidStep;fillColor=#F2931E;strokeColor=none;shadow=0;");a.vertex=!0;var b=new mxCell("",new mxGeometry(60,10, +40,85),"html=1;shape=mxgraph.infographic.pyramidStep;fillColor=#F8C382;strokeColor=none;shadow=0;");b.vertex=!0;var d=new mxCell("",new mxGeometry(50,20,60,75),"html=1;shape=mxgraph.infographic.pyramidStep;fillColor=#FCE7CD;strokeColor=none;shadow=0;");d.vertex=!0;var f=new mxCell("",new mxGeometry(40,30,80,65),"html=1;shape=mxgraph.infographic.pyramidStep;fillColor=#BAC8D3;strokeColor=none;shadow=0;");f.vertex=!0;var g=new mxCell("",new mxGeometry(30,40,100,55),"html=1;shape=mxgraph.infographic.pyramidStep;fillColor=#5D7F99;strokeColor=none;shadow=0;"); g.vertex=!0;var h=new mxCell("",new mxGeometry(20,50,120,45),"html=1;shape=mxgraph.infographic.pyramidStep;fillColor=#2F5B7C;strokeColor=none;shadow=0;");h.vertex=!0;var k=new mxCell("",new mxGeometry(10,60,140,35),"html=1;shape=mxgraph.infographic.pyramidStep;fillColor=#23445D;strokeColor=none;shadow=0;");k.vertex=!0;var l=new mxCell("",new mxGeometry(0,70,160,25),"html=1;shape=mxgraph.infographic.pyramidStep;fillColor=#333333;strokeColor=none;shadow=0;");l.vertex=!0;return sb.createVertexTemplateFromCells([a, -b,c,d,g,h,k,l],160,95,"Step Pyramid")}),this.addEntry("circular dial list horizontal",function(){var a=new mxCell("Label",new mxGeometry(0,0,100,100),"verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.donut;dx=10;strokeColor=none;fillColor=#B1DDF0;fontSize=12;fontColor=#10739E;align=center;fontStyle=1;");a.vertex=!0;var b=new mxCell("65%",new mxGeometry(0,0,100,100),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.basic.partConcEllipse;startAngle=0;endAngle=0.65;arcWidth=0.2;strokeColor=none;fillColor=#10739E;fontSize=22;fontColor=#10739E;align=center;fontStyle=1"); -b.vertex=!0;a.insert(b);b=new mxCell("Label",new mxGeometry(110,0,100,100),"verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.donut;dx=10;strokeColor=none;fillColor=#F8C382;fontSize=12;fontColor=#F2931E;align=center;fontStyle=1;");b.vertex=!0;var c=new mxCell("40%",new mxGeometry(0,0,100,100),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.basic.partConcEllipse;startAngle=0;endAngle=0.4;arcWidth=0.2;strokeColor=none;fillColor=#F2931E;fontSize=22;fontColor=#F2931E;align=center;fontStyle=1"); -c.vertex=!0;b.insert(c);c=new mxCell("Label",new mxGeometry(220,0,100,100),"verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.donut;dx=10;strokeColor=none;fillColor=#F08E81;fontSize=12;fontColor=#AE4132;align=center;fontStyle=1;");c.vertex=!0;var d=new mxCell("25%",new mxGeometry(0,0,100,100),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.basic.partConcEllipse;startAngle=0;endAngle=0.25;arcWidth=0.2;strokeColor=none;fillColor=#AE4132;fontSize=22;fontColor=#AE4132;align=center;fontStyle=1"); -d.vertex=!0;c.insert(d);d=new mxCell("Label",new mxGeometry(330,0,100,100),"verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.donut;dx=10;strokeColor=none;fillColor=#5D7F99;fontSize=12;fontColor=#23445D;align=center;fontStyle=1;");d.vertex=!0;var g=new mxCell("60%",new mxGeometry(0,0,100,100),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.basic.partConcEllipse;startAngle=0;endAngle=0.6;arcWidth=0.2;strokeColor=none;fillColor=#23445D;fontSize=22;fontColor=#23445D;align=center;fontStyle=1"); -g.vertex=!0;d.insert(g);g=new mxCell("Label",new mxGeometry(440,0,100,100),"verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.donut;dx=10;strokeColor=none;fillColor=#61C6CE;fontSize=12;fontColor=#12AAB5;align=center;fontStyle=1;");g.vertex=!0;var h=new mxCell("80%",new mxGeometry(0,0,100,100),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.basic.partConcEllipse;startAngle=0;endAngle=0.8;arcWidth=0.2;strokeColor=none;fillColor=#12AAB5;fontSize=22;fontColor=#12AAB5;align=center;fontStyle=1"); -h.vertex=!0;g.insert(h);return sb.createVertexTemplateFromCells([a,b,c,d,g],540,100,"Circular Dial List (horizontal)")}),this.addEntry("circular dial list vertical",function(){var a=new mxCell("Label",new mxGeometry(0,0,100,100),"labelPosition=right;spacingLeft=10;html=1;shape=mxgraph.basic.donut;dx=10;strokeColor=none;fillColor=#B1DDF0;fontSize=12;fontColor=#10739E;align=left;fontStyle=1;");a.vertex=!0;var b=new mxCell("65%",new mxGeometry(0,0,100,100),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.basic.partConcEllipse;startAngle=0;endAngle=0.65;arcWidth=0.2;strokeColor=none;fillColor=#10739E;fontSize=22;fontColor=#10739E;align=center;fontStyle=1"); -b.vertex=!0;a.insert(b);b=new mxCell("Label",new mxGeometry(0,110,100,100),"labelPosition=right;spacingLeft=10;html=1;shape=mxgraph.basic.donut;dx=10;strokeColor=none;fillColor=#F8C382;fontSize=12;fontColor=#F2931E;align=left;fontStyle=1;");b.vertex=!0;var c=new mxCell("40%",new mxGeometry(0,0,100,100),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.basic.partConcEllipse;startAngle=0;endAngle=0.4;arcWidth=0.2;strokeColor=none;fillColor=#F2931E;fontSize=22;fontColor=#F2931E;align=center;fontStyle=1"); -c.vertex=!0;b.insert(c);c=new mxCell("Label",new mxGeometry(0,220,100,100),"labelPosition=right;spacingLeft=10;html=1;shape=mxgraph.basic.donut;dx=10;strokeColor=none;fillColor=#F08E81;fontSize=12;fontColor=#AE4132;align=left;fontStyle=1;");c.vertex=!0;var d=new mxCell("25%",new mxGeometry(0,0,100,100),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.basic.partConcEllipse;startAngle=0;endAngle=0.25;arcWidth=0.2;strokeColor=none;fillColor=#AE4132;fontSize=22;fontColor=#AE4132;align=center;fontStyle=1"); -d.vertex=!0;c.insert(d);d=new mxCell("Label",new mxGeometry(0,330,100,100),"labelPosition=right;spacingLeft=10;html=1;shape=mxgraph.basic.donut;dx=10;strokeColor=none;fillColor=#5D7F99;fontSize=12;fontColor=#23445D;align=left;fontStyle=1;");d.vertex=!0;var g=new mxCell("60%",new mxGeometry(0,0,100,100),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.basic.partConcEllipse;startAngle=0;endAngle=0.6;arcWidth=0.2;strokeColor=none;fillColor=#23445D;fontSize=22;fontColor=#23445D;align=center;fontStyle=1"); -g.vertex=!0;d.insert(g);g=new mxCell("Label",new mxGeometry(0,440,100,100),"labelPosition=right;spacingLeft=10;html=1;shape=mxgraph.basic.donut;dx=10;strokeColor=none;fillColor=#61C6CE;fontSize=12;fontColor=#12AAB5;align=left;fontStyle=1;");g.vertex=!0;var h=new mxCell("80%",new mxGeometry(0,0,100,100),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.basic.partConcEllipse;startAngle=0;endAngle=0.8;arcWidth=0.2;strokeColor=none;fillColor=#12AAB5;fontSize=22;fontColor=#12AAB5;align=center;fontStyle=1"); -h.vertex=!0;g.insert(h);return sb.createVertexTemplateFromCells([a,b,c,d,g],100,540,"Circular Dial List (vertical)")}),this.addEntry("circular dial list horizontal",function(){var a=new mxCell("Label",new mxGeometry(0,0,100,30),"verticalLabelPosition=middle;verticalAlign=middle;html=1;html=1;fillColor=none;strokeColor=none;fontSize=15;fontColor=#10739E;align=center;fontStyle=1;");a.vertex=!0;var b=new mxCell("65%",new mxGeometry(0,30,100,100),"verticalLabelPosition=middle;verticalAlign=middle;html=1;html=1;shape=mxgraph.infographic.partConcEllipse;startAngle=0;endAngle=0.65;arcWidth=0.4;strokeColor=none;fillColor=#10739E;fontSize=22;fontColor=#10739E;align=center;fontStyle=1;"); -b.vertex=!0;var c=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",new mxGeometry(0,140,100,120),"verticalLabelPosition=middle;verticalAlign=middle;html=1;html=1;fillColor=#EEEEEE;strokeColor=none;fontSize=10;fontColor=#000000;align=left;fontStyle=0;rounded=1;whiteSpace=wrap;arcSize=8;spacing=5;");c.vertex=!0;var d=new mxCell("Label",new mxGeometry(110,0,100,30),"verticalLabelPosition=middle;verticalAlign=middle;html=1;html=1;fillColor=none;strokeColor=none;fontSize=15;fontColor=#F2931E;align=center;fontStyle=1;"); -d.vertex=!0;var g=new mxCell("40%",new mxGeometry(110,30,100,100),"verticalLabelPosition=middle;verticalAlign=middle;html=1;html=1;shape=mxgraph.infographic.partConcEllipse;startAngle=0;endAngle=0.4;arcWidth=0.4;strokeColor=none;fillColor=#F2931E;fontSize=22;fontColor=#F2931E;align=center;fontStyle=1;");g.vertex=!0;var h=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",new mxGeometry(110,140,100,120),"verticalLabelPosition=middle;verticalAlign=middle;html=1;html=1;fillColor=#EEEEEE;strokeColor=none;fontSize=10;fontColor=#000000;align=left;fontStyle=0;rounded=1;whiteSpace=wrap;arcSize=8;spacing=5;"); +b,d,f,g,h,k,l],160,95,"Step Pyramid")}),this.addEntry("circular dial list horizontal",function(){var a=new mxCell("Label",new mxGeometry(0,0,100,100),"verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.donut;dx=10;strokeColor=none;fillColor=#B1DDF0;fontSize=12;fontColor=#10739E;align=center;fontStyle=1;");a.vertex=!0;var b=new mxCell("65%",new mxGeometry(0,0,100,100),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.basic.partConcEllipse;startAngle=0;endAngle=0.65;arcWidth=0.2;strokeColor=none;fillColor=#10739E;fontSize=22;fontColor=#10739E;align=center;fontStyle=1"); +b.vertex=!0;a.insert(b);b=new mxCell("Label",new mxGeometry(110,0,100,100),"verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.donut;dx=10;strokeColor=none;fillColor=#F8C382;fontSize=12;fontColor=#F2931E;align=center;fontStyle=1;");b.vertex=!0;var d=new mxCell("40%",new mxGeometry(0,0,100,100),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.basic.partConcEllipse;startAngle=0;endAngle=0.4;arcWidth=0.2;strokeColor=none;fillColor=#F2931E;fontSize=22;fontColor=#F2931E;align=center;fontStyle=1"); +d.vertex=!0;b.insert(d);d=new mxCell("Label",new mxGeometry(220,0,100,100),"verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.donut;dx=10;strokeColor=none;fillColor=#F08E81;fontSize=12;fontColor=#AE4132;align=center;fontStyle=1;");d.vertex=!0;var f=new mxCell("25%",new mxGeometry(0,0,100,100),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.basic.partConcEllipse;startAngle=0;endAngle=0.25;arcWidth=0.2;strokeColor=none;fillColor=#AE4132;fontSize=22;fontColor=#AE4132;align=center;fontStyle=1"); +f.vertex=!0;d.insert(f);f=new mxCell("Label",new mxGeometry(330,0,100,100),"verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.donut;dx=10;strokeColor=none;fillColor=#5D7F99;fontSize=12;fontColor=#23445D;align=center;fontStyle=1;");f.vertex=!0;var g=new mxCell("60%",new mxGeometry(0,0,100,100),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.basic.partConcEllipse;startAngle=0;endAngle=0.6;arcWidth=0.2;strokeColor=none;fillColor=#23445D;fontSize=22;fontColor=#23445D;align=center;fontStyle=1"); +g.vertex=!0;f.insert(g);g=new mxCell("Label",new mxGeometry(440,0,100,100),"verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.donut;dx=10;strokeColor=none;fillColor=#61C6CE;fontSize=12;fontColor=#12AAB5;align=center;fontStyle=1;");g.vertex=!0;var h=new mxCell("80%",new mxGeometry(0,0,100,100),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.basic.partConcEllipse;startAngle=0;endAngle=0.8;arcWidth=0.2;strokeColor=none;fillColor=#12AAB5;fontSize=22;fontColor=#12AAB5;align=center;fontStyle=1"); +h.vertex=!0;g.insert(h);return sb.createVertexTemplateFromCells([a,b,d,f,g],540,100,"Circular Dial List (horizontal)")}),this.addEntry("circular dial list vertical",function(){var a=new mxCell("Label",new mxGeometry(0,0,100,100),"labelPosition=right;spacingLeft=10;html=1;shape=mxgraph.basic.donut;dx=10;strokeColor=none;fillColor=#B1DDF0;fontSize=12;fontColor=#10739E;align=left;fontStyle=1;");a.vertex=!0;var b=new mxCell("65%",new mxGeometry(0,0,100,100),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.basic.partConcEllipse;startAngle=0;endAngle=0.65;arcWidth=0.2;strokeColor=none;fillColor=#10739E;fontSize=22;fontColor=#10739E;align=center;fontStyle=1"); +b.vertex=!0;a.insert(b);b=new mxCell("Label",new mxGeometry(0,110,100,100),"labelPosition=right;spacingLeft=10;html=1;shape=mxgraph.basic.donut;dx=10;strokeColor=none;fillColor=#F8C382;fontSize=12;fontColor=#F2931E;align=left;fontStyle=1;");b.vertex=!0;var d=new mxCell("40%",new mxGeometry(0,0,100,100),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.basic.partConcEllipse;startAngle=0;endAngle=0.4;arcWidth=0.2;strokeColor=none;fillColor=#F2931E;fontSize=22;fontColor=#F2931E;align=center;fontStyle=1"); +d.vertex=!0;b.insert(d);d=new mxCell("Label",new mxGeometry(0,220,100,100),"labelPosition=right;spacingLeft=10;html=1;shape=mxgraph.basic.donut;dx=10;strokeColor=none;fillColor=#F08E81;fontSize=12;fontColor=#AE4132;align=left;fontStyle=1;");d.vertex=!0;var f=new mxCell("25%",new mxGeometry(0,0,100,100),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.basic.partConcEllipse;startAngle=0;endAngle=0.25;arcWidth=0.2;strokeColor=none;fillColor=#AE4132;fontSize=22;fontColor=#AE4132;align=center;fontStyle=1"); +f.vertex=!0;d.insert(f);f=new mxCell("Label",new mxGeometry(0,330,100,100),"labelPosition=right;spacingLeft=10;html=1;shape=mxgraph.basic.donut;dx=10;strokeColor=none;fillColor=#5D7F99;fontSize=12;fontColor=#23445D;align=left;fontStyle=1;");f.vertex=!0;var g=new mxCell("60%",new mxGeometry(0,0,100,100),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.basic.partConcEllipse;startAngle=0;endAngle=0.6;arcWidth=0.2;strokeColor=none;fillColor=#23445D;fontSize=22;fontColor=#23445D;align=center;fontStyle=1"); +g.vertex=!0;f.insert(g);g=new mxCell("Label",new mxGeometry(0,440,100,100),"labelPosition=right;spacingLeft=10;html=1;shape=mxgraph.basic.donut;dx=10;strokeColor=none;fillColor=#61C6CE;fontSize=12;fontColor=#12AAB5;align=left;fontStyle=1;");g.vertex=!0;var h=new mxCell("80%",new mxGeometry(0,0,100,100),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.basic.partConcEllipse;startAngle=0;endAngle=0.8;arcWidth=0.2;strokeColor=none;fillColor=#12AAB5;fontSize=22;fontColor=#12AAB5;align=center;fontStyle=1"); +h.vertex=!0;g.insert(h);return sb.createVertexTemplateFromCells([a,b,d,f,g],100,540,"Circular Dial List (vertical)")}),this.addEntry("circular dial list horizontal",function(){var a=new mxCell("Label",new mxGeometry(0,0,100,30),"verticalLabelPosition=middle;verticalAlign=middle;html=1;html=1;fillColor=none;strokeColor=none;fontSize=15;fontColor=#10739E;align=center;fontStyle=1;");a.vertex=!0;var b=new mxCell("65%",new mxGeometry(0,30,100,100),"verticalLabelPosition=middle;verticalAlign=middle;html=1;html=1;shape=mxgraph.infographic.partConcEllipse;startAngle=0;endAngle=0.65;arcWidth=0.4;strokeColor=none;fillColor=#10739E;fontSize=22;fontColor=#10739E;align=center;fontStyle=1;"); +b.vertex=!0;var d=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",new mxGeometry(0,140,100,120),"verticalLabelPosition=middle;verticalAlign=middle;html=1;html=1;fillColor=#EEEEEE;strokeColor=none;fontSize=10;fontColor=#000000;align=left;fontStyle=0;rounded=1;whiteSpace=wrap;arcSize=8;spacing=5;");d.vertex=!0;var f=new mxCell("Label",new mxGeometry(110,0,100,30),"verticalLabelPosition=middle;verticalAlign=middle;html=1;html=1;fillColor=none;strokeColor=none;fontSize=15;fontColor=#F2931E;align=center;fontStyle=1;"); +f.vertex=!0;var g=new mxCell("40%",new mxGeometry(110,30,100,100),"verticalLabelPosition=middle;verticalAlign=middle;html=1;html=1;shape=mxgraph.infographic.partConcEllipse;startAngle=0;endAngle=0.4;arcWidth=0.4;strokeColor=none;fillColor=#F2931E;fontSize=22;fontColor=#F2931E;align=center;fontStyle=1;");g.vertex=!0;var h=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",new mxGeometry(110,140,100,120),"verticalLabelPosition=middle;verticalAlign=middle;html=1;html=1;fillColor=#EEEEEE;strokeColor=none;fontSize=10;fontColor=#000000;align=left;fontStyle=0;rounded=1;whiteSpace=wrap;arcSize=8;spacing=5;"); h.vertex=!0;var k=new mxCell("Label",new mxGeometry(220,0,100,30),"verticalLabelPosition=middle;verticalAlign=middle;html=1;html=1;fillColor=none;strokeColor=none;fontSize=15;fontColor=#AE4132;align=center;fontStyle=1;");k.vertex=!0;var l=new mxCell("25%",new mxGeometry(220,30,100,100),"verticalLabelPosition=middle;verticalAlign=middle;html=1;html=1;shape=mxgraph.infographic.partConcEllipse;startAngle=0;endAngle=0.25;arcWidth=0.4;strokeColor=none;fillColor=#AE4132;fontSize=22;fontColor=#AE4132;align=center;fontStyle=1;"); l.vertex=!0;var m=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",new mxGeometry(220,140,100,120),"verticalLabelPosition=middle;verticalAlign=middle;html=1;html=1;fillColor=#EEEEEE;strokeColor=none;fontSize=10;fontColor=#000000;align=left;fontStyle=0;rounded=1;whiteSpace=wrap;arcSize=8;spacing=5;");m.vertex=!0;var q=new mxCell("Label",new mxGeometry(330,0,100,30),"verticalLabelPosition=middle;verticalAlign=middle;html=1;html=1;fillColor=none;strokeColor=none;fontSize=15;fontColor=#23445D;align=center;fontStyle=1;"); q.vertex=!0;var r=new mxCell("60%",new mxGeometry(330,30,100,100),"verticalLabelPosition=middle;verticalAlign=middle;html=1;html=1;shape=mxgraph.infographic.partConcEllipse;startAngle=0;endAngle=0.6;arcWidth=0.4;strokeColor=none;fillColor=#23445D;fontSize=22;fontColor=#23445D;align=center;fontStyle=1;");r.vertex=!0;var n=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",new mxGeometry(330,140,100,120),"verticalLabelPosition=middle;verticalAlign=middle;html=1;html=1;fillColor=#EEEEEE;strokeColor=none;fontSize=10;fontColor=#000000;align=left;fontStyle=0;rounded=1;whiteSpace=wrap;arcSize=8;spacing=5;"); n.vertex=!0;var p=new mxCell("Label",new mxGeometry(440,0,100,30),"verticalLabelPosition=middle;verticalAlign=middle;html=1;html=1;fillColor=none;strokeColor=none;fontSize=15;fontColor=#12AAB5;align=center;fontStyle=1;");p.vertex=!0;var u=new mxCell("80%",new mxGeometry(440,30,100,100),"verticalLabelPosition=middle;verticalAlign=middle;html=1;html=1;shape=mxgraph.infographic.partConcEllipse;startAngle=0;endAngle=0.8;arcWidth=0.4;strokeColor=none;fillColor=#12AAB5;fontSize=22;fontColor=#12AAB5;align=center;fontStyle=1;"); -u.vertex=!0;var t=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",new mxGeometry(440,140,100,120),"verticalLabelPosition=middle;verticalAlign=middle;html=1;html=1;fillColor=#EEEEEE;strokeColor=none;fontSize=10;fontColor=#000000;align=left;fontStyle=0;rounded=1;whiteSpace=wrap;arcSize=8;spacing=5;");t.vertex=!0;return sb.createVertexTemplateFromCells([b,g,l,r,u,a,d,k,q,p,c,h,m,n,t],540,260,"Circular Dial List (horizontal)")}), +u.vertex=!0;var t=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",new mxGeometry(440,140,100,120),"verticalLabelPosition=middle;verticalAlign=middle;html=1;html=1;fillColor=#EEEEEE;strokeColor=none;fontSize=10;fontColor=#000000;align=left;fontStyle=0;rounded=1;whiteSpace=wrap;arcSize=8;spacing=5;");t.vertex=!0;return sb.createVertexTemplateFromCells([b,g,l,r,u,a,f,k,q,p,d,h,m,n,t],540,260,"Circular Dial List (horizontal)")}), this.addEntry("circular dial list vertical",function(){var a=new mxCell("65%",new mxGeometry(0,0,100,100),"verticalLabelPosition=middle;verticalAlign=middle;html=1;html=1;shape=mxgraph.infographic.partConcEllipse;startAngle=0;endAngle=0.65;arcWidth=0.4;strokeColor=none;fillColor=#10739E;fontSize=22;fontColor=#10739E;align=center;fontStyle=1;");a.vertex=!0;var b=new mxCell('<font style="font-size: 10px"><font style="font-size: 12px" color="#10739E"><b>Label</b></font><br><br><font size="1">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</font></font>', -new mxGeometry(110,0,210,100),"rounded=1;strokeColor=none;fillColor=#EEEEEE;align=left;arcSize=12;verticalAlign=top;whiteSpace=wrap;html=1;fontSize=12;spacing=8;");b.vertex=!0;var c=new mxCell("40%",new mxGeometry(0,110,100,100),"verticalLabelPosition=middle;verticalAlign=middle;html=1;html=1;shape=mxgraph.infographic.partConcEllipse;startAngle=0;endAngle=0.4;arcWidth=0.4;strokeColor=none;fillColor=#F2931E;fontSize=22;fontColor=#F2931E;align=center;fontStyle=1;");c.vertex=!0;var d=new mxCell('<font style="font-size: 10px"><font style="font-size: 12px" color="#F2931E"><b>Label</b></font><br><br><font size="1">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</font></font>', -new mxGeometry(110,110,210,100),"rounded=1;strokeColor=none;fillColor=#EEEEEE;align=left;arcSize=12;verticalAlign=top;whiteSpace=wrap;html=1;fontSize=12;spacing=8;");d.vertex=!0;var g=new mxCell("25%",new mxGeometry(0,220,100,100),"verticalLabelPosition=middle;verticalAlign=middle;html=1;html=1;shape=mxgraph.infographic.partConcEllipse;startAngle=0;endAngle=0.25;arcWidth=0.4;strokeColor=none;fillColor=#AE4132;fontSize=22;fontColor=#AE4132;align=center;fontStyle=1;");g.vertex=!0;var h=new mxCell('<font style="font-size: 10px"><font style="font-size: 12px" color="#AE4132"><b>Label</b></font><br><br><font size="1">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</font></font>', +new mxGeometry(110,0,210,100),"rounded=1;strokeColor=none;fillColor=#EEEEEE;align=left;arcSize=12;verticalAlign=top;whiteSpace=wrap;html=1;fontSize=12;spacing=8;");b.vertex=!0;var d=new mxCell("40%",new mxGeometry(0,110,100,100),"verticalLabelPosition=middle;verticalAlign=middle;html=1;html=1;shape=mxgraph.infographic.partConcEllipse;startAngle=0;endAngle=0.4;arcWidth=0.4;strokeColor=none;fillColor=#F2931E;fontSize=22;fontColor=#F2931E;align=center;fontStyle=1;");d.vertex=!0;var f=new mxCell('<font style="font-size: 10px"><font style="font-size: 12px" color="#F2931E"><b>Label</b></font><br><br><font size="1">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</font></font>', +new mxGeometry(110,110,210,100),"rounded=1;strokeColor=none;fillColor=#EEEEEE;align=left;arcSize=12;verticalAlign=top;whiteSpace=wrap;html=1;fontSize=12;spacing=8;");f.vertex=!0;var g=new mxCell("25%",new mxGeometry(0,220,100,100),"verticalLabelPosition=middle;verticalAlign=middle;html=1;html=1;shape=mxgraph.infographic.partConcEllipse;startAngle=0;endAngle=0.25;arcWidth=0.4;strokeColor=none;fillColor=#AE4132;fontSize=22;fontColor=#AE4132;align=center;fontStyle=1;");g.vertex=!0;var h=new mxCell('<font style="font-size: 10px"><font style="font-size: 12px" color="#AE4132"><b>Label</b></font><br><br><font size="1">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</font></font>', new mxGeometry(110,220,210,100),"rounded=1;strokeColor=none;fillColor=#EEEEEE;align=left;arcSize=12;verticalAlign=top;whiteSpace=wrap;html=1;fontSize=12;spacing=8;");h.vertex=!0;var k=new mxCell("60%",new mxGeometry(0,330,100,100),"verticalLabelPosition=middle;verticalAlign=middle;html=1;html=1;shape=mxgraph.infographic.partConcEllipse;startAngle=0;endAngle=0.6;arcWidth=0.4;strokeColor=none;fillColor=#23445D;fontSize=22;fontColor=#23445D;align=center;fontStyle=1;");k.vertex=!0;var l=new mxCell('<font style="font-size: 10px"><font style="font-size: 12px" color="#23445D"><b>Label</b></font><br><br><font size="1">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</font></font>', new mxGeometry(110,330,210,100),"rounded=1;strokeColor=none;fillColor=#EEEEEE;align=left;arcSize=12;verticalAlign=top;whiteSpace=wrap;html=1;fontSize=12;spacing=8;");l.vertex=!0;var m=new mxCell("80%",new mxGeometry(0,440,100,100),"verticalLabelPosition=middle;verticalAlign=middle;html=1;html=1;shape=mxgraph.infographic.partConcEllipse;startAngle=0;endAngle=0.8;arcWidth=0.4;strokeColor=none;fillColor=#12AAB5;fontSize=22;fontColor=#12AAB5;align=center;fontStyle=1;");m.vertex=!0;var q=new mxCell('<font style="font-size: 10px"><font style="font-size: 12px" color="#12AAB5"><b>Label</b></font><br><br><font size="1">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</font></font>', -new mxGeometry(110,440,210,100),"rounded=1;strokeColor=none;fillColor=#EEEEEE;align=left;arcSize=12;verticalAlign=top;whiteSpace=wrap;html=1;fontSize=12;spacing=8;");q.vertex=!0;return sb.createVertexTemplateFromCells([a,c,g,k,m,b,d,h,l,q],320,540,"Circular Dial List (vertical)")}),this.addEntry("bar graph",function(){var d=new mxCell("Label",new mxGeometry(0,20,40,80),a+"shadedCube;isoAngle=15;fillColor=#10739E;strokeColor=none;fontStyle=1;fontColor=#10739E;fontSize=12;shadow=0;");d.vertex=!0;var b= -new mxCell("Label",new mxGeometry(50,0,40,100),a+"shadedCube;isoAngle=15;fillColor=#F2931E;strokeColor=none;fontStyle=1;fontColor=#F2931E;fontSize=12;shadow=0;");b.vertex=!0;var c=new mxCell("Label",new mxGeometry(100,10,40,90),a+"shadedCube;isoAngle=15;fillColor=#AE4132;strokeColor=none;fontStyle=1;fontColor=#AE4132;fontSize=12;shadow=0;");c.vertex=!0;var f=new mxCell("Label",new mxGeometry(150,50,40,50),a+"shadedCube;isoAngle=15;fillColor=#23445D;strokeColor=none;fontStyle=1;fontColor=#23445D;fontSize=12;shadow=0;"); -f.vertex=!0;var g=new mxCell("Label",new mxGeometry(200,30,40,70),a+"shadedCube;isoAngle=15;fillColor=#12AAB5;strokeColor=none;fontStyle=1;fontColor=#12AAB5;fontSize=12;shadow=0;");g.vertex=!0;return sb.createVertexTemplateFromCells([d,b,c,f,g],240,100,"Bar Graph")}),this.addEntry("bar graph",function(){var d=new mxCell("Label",new mxGeometry(0,40,40,80),a+"shadedCube;isoAngle=15;fillColor=#10739E;strokeColor=none;fontStyle=1;fontColor=#10739E;fontSize=12;shadow=0;");d.vertex=!0;var b=new mxCell("", -new mxGeometry(0,0,40,60),"verticalLabelPosition=top;verticalAlign=bottom;html=1;shape=mxgraph.infographic.shadedCube;isoAngle=15;fillColor=#CCCCCC;strokeColor=none;fontStyle=1;fontColor=#10739E;fontSize=12;shadow=0;align=left;opacity=70;");b.vertex=!0;var c=new mxCell("Label",new mxGeometry(50,20,40,100),a+"shadedCube;isoAngle=15;fillColor=#F2931E;strokeColor=none;fontStyle=1;fontColor=#F2931E;fontSize=12;shadow=0;");c.vertex=!0;var f=new mxCell("",new mxGeometry(50,0,40,40),"verticalLabelPosition=top;verticalAlign=bottom;html=1;shape=mxgraph.infographic.shadedCube;isoAngle=15;fillColor=#CCCCCC;strokeColor=none;fontStyle=1;fontColor=#F19A19;fontSize=12;shadow=0;align=left;opacity=70;"); +new mxGeometry(110,440,210,100),"rounded=1;strokeColor=none;fillColor=#EEEEEE;align=left;arcSize=12;verticalAlign=top;whiteSpace=wrap;html=1;fontSize=12;spacing=8;");q.vertex=!0;return sb.createVertexTemplateFromCells([a,d,g,k,m,b,f,h,l,q],320,540,"Circular Dial List (vertical)")}),this.addEntry("bar graph",function(){var b=new mxCell("Label",new mxGeometry(0,20,40,80),a+"shadedCube;isoAngle=15;fillColor=#10739E;strokeColor=none;fontStyle=1;fontColor=#10739E;fontSize=12;shadow=0;");b.vertex=!0;var c= +new mxCell("Label",new mxGeometry(50,0,40,100),a+"shadedCube;isoAngle=15;fillColor=#F2931E;strokeColor=none;fontStyle=1;fontColor=#F2931E;fontSize=12;shadow=0;");c.vertex=!0;var d=new mxCell("Label",new mxGeometry(100,10,40,90),a+"shadedCube;isoAngle=15;fillColor=#AE4132;strokeColor=none;fontStyle=1;fontColor=#AE4132;fontSize=12;shadow=0;");d.vertex=!0;var f=new mxCell("Label",new mxGeometry(150,50,40,50),a+"shadedCube;isoAngle=15;fillColor=#23445D;strokeColor=none;fontStyle=1;fontColor=#23445D;fontSize=12;shadow=0;"); +f.vertex=!0;var g=new mxCell("Label",new mxGeometry(200,30,40,70),a+"shadedCube;isoAngle=15;fillColor=#12AAB5;strokeColor=none;fontStyle=1;fontColor=#12AAB5;fontSize=12;shadow=0;");g.vertex=!0;return sb.createVertexTemplateFromCells([b,c,d,f,g],240,100,"Bar Graph")}),this.addEntry("bar graph",function(){var b=new mxCell("Label",new mxGeometry(0,40,40,80),a+"shadedCube;isoAngle=15;fillColor=#10739E;strokeColor=none;fontStyle=1;fontColor=#10739E;fontSize=12;shadow=0;");b.vertex=!0;var c=new mxCell("", +new mxGeometry(0,0,40,60),"verticalLabelPosition=top;verticalAlign=bottom;html=1;shape=mxgraph.infographic.shadedCube;isoAngle=15;fillColor=#CCCCCC;strokeColor=none;fontStyle=1;fontColor=#10739E;fontSize=12;shadow=0;align=left;opacity=70;");c.vertex=!0;var d=new mxCell("Label",new mxGeometry(50,20,40,100),a+"shadedCube;isoAngle=15;fillColor=#F2931E;strokeColor=none;fontStyle=1;fontColor=#F2931E;fontSize=12;shadow=0;");d.vertex=!0;var f=new mxCell("",new mxGeometry(50,0,40,40),"verticalLabelPosition=top;verticalAlign=bottom;html=1;shape=mxgraph.infographic.shadedCube;isoAngle=15;fillColor=#CCCCCC;strokeColor=none;fontStyle=1;fontColor=#F19A19;fontSize=12;shadow=0;align=left;opacity=70;"); f.vertex=!0;var g=new mxCell("Label",new mxGeometry(100,30,40,90),a+"shadedCube;isoAngle=15;fillColor=#AE4132;strokeColor=none;fontStyle=1;fontColor=#AE4132;fontSize=12;shadow=0;");g.vertex=!0;var h=new mxCell("",new mxGeometry(100,0,40,50),"verticalLabelPosition=top;verticalAlign=bottom;html=1;shape=mxgraph.infographic.shadedCube;isoAngle=15;fillColor=#CCCCCC;strokeColor=none;fontStyle=1;fontColor=#D82A23;fontSize=12;shadow=0;align=left;opacity=70;");h.vertex=!0;var k=new mxCell("Label",new mxGeometry(150, 70,40,50),a+"shadedCube;isoAngle=15;fillColor=#23445D;strokeColor=none;fontStyle=1;fontColor=#23445D;fontSize=12;shadow=0;");k.vertex=!0;var l=new mxCell("",new mxGeometry(150,0,40,90),"verticalLabelPosition=top;verticalAlign=bottom;html=1;shape=mxgraph.infographic.shadedCube;isoAngle=15;fillColor=#CCCCCC;strokeColor=none;fontStyle=1;fontColor=#4A5768;fontSize=12;shadow=0;align=left;opacity=70;");l.vertex=!0;var m=new mxCell("Label",new mxGeometry(200,50,40,70),a+"shadedCube;isoAngle=15;fillColor=#12AAB5;strokeColor=none;fontStyle=1;fontColor=#12AAB5;fontSize=12;shadow=0;"); -m.vertex=!0;var q=new mxCell("",new mxGeometry(200,0,40,70),"verticalLabelPosition=top;verticalAlign=bottom;html=1;shape=mxgraph.infographic.shadedCube;isoAngle=15;fillColor=#CCCCCC;strokeColor=none;fontStyle=1;fontColor=#15AA96;fontSize=12;shadow=0;align=left;opacity=70;");q.vertex=!0;return sb.createVertexTemplateFromCells([d,c,g,k,m,b,f,h,l,q],240,120,"Bar Graph")}),this.addEntry("bar graph",function(){var d=new mxCell("",new mxGeometry(0,38,40,80),a+"shadedCube;isoAngle=15;fillColor=#10739E;strokeColor=none;shadow=0;"); -d.vertex=!0;var b=new mxCell("",new mxGeometry(25,6,40,100),a+"shadedCube;isoAngle=15;fillColor=#F2931E;strokeColor=none;shadow=0;");b.vertex=!0;var c=new mxCell("",new mxGeometry(50,4,40,90),a+"shadedCube;isoAngle=15;fillColor=#AE4132;strokeColor=none;shadow=0;");c.vertex=!0;var f=new mxCell("",new mxGeometry(75,32,40,50),a+"shadedCube;isoAngle=15;fillColor=#23445D;strokeColor=none;shadow=0;");f.vertex=!0;var g=new mxCell("",new mxGeometry(100,0,40,70),a+"shadedCube;isoAngle=15;fillColor=#12AAB5;strokeColor=none;shadow=0;"); -g.vertex=!0;return sb.createVertexTemplateFromCells([g,f,c,b,d],140,100,"Bar Graph")}),this.addEntry("bar graph",function(){var d=new mxCell("Label",new mxGeometry(0,40,40,80),a+"cylinder;isoAngle=15;fillColor=#10739E;strokeColor=none;fontStyle=1;fontColor=#10739E;fontSize=12;shadow=0;");d.vertex=!0;var b=new mxCell("",new mxGeometry(0,0,40,60),"verticalLabelPosition=top;verticalAlign=bottom;html=1;shape=mxgraph.infographic.cylinder;isoAngle=15;fillColor=#CCCCCC;strokeColor=none;fontStyle=1;fontColor=#10739E;fontSize=12;shadow=0;align=left;opacity=70;"); -b.vertex=!0;var c=new mxCell("Label",new mxGeometry(50,20,40,100),a+"cylinder;isoAngle=15;fillColor=#F2931E;strokeColor=none;fontStyle=1;fontColor=#F2931E;fontSize=12;shadow=0;");c.vertex=!0;var f=new mxCell("",new mxGeometry(50,0,40,40),"verticalLabelPosition=top;verticalAlign=bottom;html=1;shape=mxgraph.infographic.cylinder;isoAngle=15;fillColor=#CCCCCC;strokeColor=none;fontStyle=1;fontColor=#F2931E;fontSize=12;shadow=0;align=left;opacity=70;");f.vertex=!0;var g=new mxCell("Label",new mxGeometry(100, +m.vertex=!0;var q=new mxCell("",new mxGeometry(200,0,40,70),"verticalLabelPosition=top;verticalAlign=bottom;html=1;shape=mxgraph.infographic.shadedCube;isoAngle=15;fillColor=#CCCCCC;strokeColor=none;fontStyle=1;fontColor=#15AA96;fontSize=12;shadow=0;align=left;opacity=70;");q.vertex=!0;return sb.createVertexTemplateFromCells([b,d,g,k,m,c,f,h,l,q],240,120,"Bar Graph")}),this.addEntry("bar graph",function(){var b=new mxCell("",new mxGeometry(0,38,40,80),a+"shadedCube;isoAngle=15;fillColor=#10739E;strokeColor=none;shadow=0;"); +b.vertex=!0;var c=new mxCell("",new mxGeometry(25,6,40,100),a+"shadedCube;isoAngle=15;fillColor=#F2931E;strokeColor=none;shadow=0;");c.vertex=!0;var d=new mxCell("",new mxGeometry(50,4,40,90),a+"shadedCube;isoAngle=15;fillColor=#AE4132;strokeColor=none;shadow=0;");d.vertex=!0;var f=new mxCell("",new mxGeometry(75,32,40,50),a+"shadedCube;isoAngle=15;fillColor=#23445D;strokeColor=none;shadow=0;");f.vertex=!0;var g=new mxCell("",new mxGeometry(100,0,40,70),a+"shadedCube;isoAngle=15;fillColor=#12AAB5;strokeColor=none;shadow=0;"); +g.vertex=!0;return sb.createVertexTemplateFromCells([g,f,d,c,b],140,100,"Bar Graph")}),this.addEntry("bar graph",function(){var b=new mxCell("Label",new mxGeometry(0,40,40,80),a+"cylinder;isoAngle=15;fillColor=#10739E;strokeColor=none;fontStyle=1;fontColor=#10739E;fontSize=12;shadow=0;");b.vertex=!0;var c=new mxCell("",new mxGeometry(0,0,40,60),"verticalLabelPosition=top;verticalAlign=bottom;html=1;shape=mxgraph.infographic.cylinder;isoAngle=15;fillColor=#CCCCCC;strokeColor=none;fontStyle=1;fontColor=#10739E;fontSize=12;shadow=0;align=left;opacity=70;"); +c.vertex=!0;var d=new mxCell("Label",new mxGeometry(50,20,40,100),a+"cylinder;isoAngle=15;fillColor=#F2931E;strokeColor=none;fontStyle=1;fontColor=#F2931E;fontSize=12;shadow=0;");d.vertex=!0;var f=new mxCell("",new mxGeometry(50,0,40,40),"verticalLabelPosition=top;verticalAlign=bottom;html=1;shape=mxgraph.infographic.cylinder;isoAngle=15;fillColor=#CCCCCC;strokeColor=none;fontStyle=1;fontColor=#F2931E;fontSize=12;shadow=0;align=left;opacity=70;");f.vertex=!0;var g=new mxCell("Label",new mxGeometry(100, 30,40,90),a+"cylinder;isoAngle=15;fillColor=#AE4132;strokeColor=none;fontStyle=1;fontColor=#AE4132;fontSize=12;shadow=0;");g.vertex=!0;var h=new mxCell("",new mxGeometry(100,0,40,50),"verticalLabelPosition=top;verticalAlign=bottom;html=1;shape=mxgraph.infographic.cylinder;isoAngle=15;fillColor=#CCCCCC;strokeColor=none;fontStyle=1;fontColor=#AE4132;fontSize=12;shadow=0;align=left;opacity=70;");h.vertex=!0;var k=new mxCell("Label",new mxGeometry(150,70,40,50),a+"cylinder;isoAngle=15;fillColor=#23445D;strokeColor=none;fontStyle=1;fontColor=#23445D;fontSize=12;shadow=0;"); k.vertex=!0;var l=new mxCell("",new mxGeometry(150,0,40,90),"verticalLabelPosition=top;verticalAlign=bottom;html=1;shape=mxgraph.infographic.cylinder;isoAngle=15;fillColor=#CCCCCC;strokeColor=none;fontStyle=1;fontColor=#23445D;fontSize=12;shadow=0;align=left;opacity=70;");l.vertex=!0;var m=new mxCell("Label",new mxGeometry(200,50,40,70),a+"cylinder;isoAngle=15;fillColor=#12AAB5;strokeColor=none;fontStyle=1;fontColor=#12AAB5;fontSize=12;shadow=0;");m.vertex=!0;var q=new mxCell("",new mxGeometry(200, -0,40,70),"verticalLabelPosition=top;verticalAlign=bottom;html=1;shape=mxgraph.infographic.cylinder;isoAngle=15;fillColor=#CCCCCC;strokeColor=none;fontStyle=1;fontColor=#12AAB5;fontSize=12;shadow=0;align=left;opacity=70;");q.vertex=!0;return sb.createVertexTemplateFromCells([d,c,g,k,m,b,f,h,l,q],240,120,"Bar Graph")}),this.addEntry("folded banners",function(){var a=new mxCell("Label",new mxGeometry(0,0,200,100),"html=1;shape=mxgraph.infographic.bannerHalfFold;dx=40;dx2=20;notch=15;fillColor=#10739E;strokeColor=none;align=left;verticalAlign=top;fontColor=#ffffff;fontSize=14;fontStyle=1;spacingLeft=25;spacingTop=5;"); -a.vertex=!0;var b=new mxCell("Label",new mxGeometry(0,60,200,100),"html=1;shape=mxgraph.infographic.bannerHalfFold;dx=40;dx2=20;notch=15;fillColor=#F2931E;strokeColor=none;align=left;verticalAlign=top;fontColor=#ffffff;fontSize=14;fontStyle=1;spacingLeft=25;spacingTop=5;");b.vertex=!0;var c=new mxCell("Label",new mxGeometry(0,120,200,100),"html=1;shape=mxgraph.infographic.bannerHalfFold;dx=40;dx2=20;notch=15;fillColor=#AE4132;strokeColor=none;align=left;verticalAlign=top;fontColor=#ffffff;fontSize=14;fontStyle=1;spacingLeft=25;spacingTop=5;"); -c.vertex=!0;var d=new mxCell("Label",new mxGeometry(0,180,200,100),"html=1;shape=mxgraph.infographic.bannerHalfFold;dx=40;dx2=20;notch=15;fillColor=#23445D;strokeColor=none;align=left;verticalAlign=top;fontColor=#ffffff;fontSize=14;fontStyle=1;spacingLeft=25;spacingTop=5;");d.vertex=!0;var g=new mxCell("Label",new mxGeometry(0,240,200,120),"html=1;shape=mxgraph.infographic.bannerHalfFold;dx=40;dx2=20;notch=15;fillColor=#12AAB5;strokeColor=none;align=left;verticalAlign=top;fontColor=#ffffff;fontSize=14;fontStyle=1;spacingLeft=25;spacingTop=5;"); -g.vertex=!0;return sb.createVertexTemplateFromCells([a,b,c,d,g],200,360,"Folded Banners")}),this.addEntry("cylinder graph",function(){var a=new mxCell("Label",new mxGeometry(0,0,100,85),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.infographic.cylinder;fillColor=#10739E;strokeColor=none;shadow=0;align=left;labelPosition=right;spacingLeft=10;fontStyle=1;fontColor=#10739E;");a.vertex=!0;var b=new mxCell("Label",new mxGeometry(0,75,100,55),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.infographic.cylinder;fillColor=#F2931E;strokeColor=none;shadow=0;align=left;labelPosition=right;spacingLeft=10;fontStyle=1;fontColor=#F2931E;"); -b.vertex=!0;var c=new mxCell("Label",new mxGeometry(0,120,100,110),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.infographic.cylinder;fillColor=#AE4132;strokeColor=none;shadow=0;align=left;labelPosition=right;spacingLeft=10;fontStyle=1;fontColor=#AE4132;");c.vertex=!0;var d=new mxCell("Label",new mxGeometry(0,220,100,150),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.infographic.cylinder;fillColor=#23445D;strokeColor=none;shadow=0;align=left;labelPosition=right;spacingLeft=10;fontStyle=1;fontColor=#23445D;"); -d.vertex=!0;var g=new mxCell("Label",new mxGeometry(0,360,100,90),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.infographic.cylinder;fillColor=#12AAB5;strokeColor=none;shadow=0;align=left;labelPosition=right;spacingLeft=10;fontStyle=1;fontColor=#12AAB5;");g.vertex=!0;return sb.createVertexTemplateFromCells([g,d,c,b,a],100,460,"Cylinder Graph")}),this.addEntry("cylinder graph",function(){var a=new mxCell("Label",new mxGeometry(0,0,100,85),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.infographic.cylinder;fillColor=#10739E;strokeColor=none;shadow=0;align=left;labelPosition=right;spacingLeft=10;fontStyle=1;fontColor=#10739E;"); -a.vertex=!0;var b=new mxCell("Label",new mxGeometry(0,65,100,55),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.infographic.cylinder;fillColor=#F2931E;strokeColor=none;shadow=0;align=left;labelPosition=right;spacingLeft=10;fontStyle=1;fontColor=#F2931E;");b.vertex=!0;var c=new mxCell("Label",new mxGeometry(0,100,100,110),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.infographic.cylinder;fillColor=#AE4132;strokeColor=none;shadow=0;align=left;labelPosition=right;spacingLeft=10;fontStyle=1;fontColor=#AE4132;"); -c.vertex=!0;var d=new mxCell("Label",new mxGeometry(0,190,100,150),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.infographic.cylinder;fillColor=#23445D;strokeColor=none;shadow=0;align=left;labelPosition=right;spacingLeft=10;fontStyle=1;fontColor=#23445D;");d.vertex=!0;var g=new mxCell("Label",new mxGeometry(0,320,100,90),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.infographic.cylinder;fillColor=#12AAB5;strokeColor=none;shadow=0;align=left;labelPosition=right;spacingLeft=10;fontStyle=1;fontColor=#12AAB5;"); -g.vertex=!0;return sb.createVertexTemplateFromCells([g,d,c,b,a],100,410,"Cylinder Graph")}),this.addEntry("ribbon list",function(){var a=new mxCell("",new mxGeometry(0,0,500,100),"html=1;shape=mxgraph.infographic.ribbonSimple;notch1=20;notch2=0;fillColor=#10739E;strokeColor=none;shadow=1;");a.vertex=!0;var b=new mxCell("Label",new mxGeometry(410,50,100,60),"shape=manualInput;whiteSpace=wrap;html=1;shadow=1;strokeColor=none;fillColor=#dddddd;fontSize=15;fontColor=#444444;align=right;direction=south;flipH=1;shadow=1;spacing=10;fontStyle=1;"); -b.vertex=!0;var c=new mxCell("",new mxGeometry(0,.5,30,40),"shape=step;perimeter=stepPerimeter;whiteSpace=wrap;html=1;fixedSize=1;shadow=0;strokeColor=none;strokeWidth=6;fillColor=#CCCCCC;size=20;");c.vertex=!0;c.geometry.relative=!0;c.geometry.offset=new mxPoint(150,-20);a.insert(c);c=new mxCell('<b>Heading</b><br><font style="font-size: 11px">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</font>',new mxGeometry(0,0,230, -100),"text;strokeColor=none;fillColor=none;spacing=5;spacingTop=0;whiteSpace=wrap;overflow=hidden;rounded=0;shadow=0;fontSize=15;fontColor=#FFFFFF;align=left;html=1;");c.vertex=!0;c.geometry.relative=!0;c.geometry.offset=new mxPoint(200,0);a.insert(c);c=new mxCell("",new mxGeometry(50,32,50,37),"shadow=0;dashed=0;html=1;strokeColor=none;shape=mxgraph.mscae.intune.user_group;fillColor=#FFFFFF;fontSize=15;fontColor=#FFFFFF;align=left;");c.vertex=!0;var d=new mxCell("",new mxGeometry(0,120,500,100), -"html=1;shape=mxgraph.infographic.ribbonSimple;notch1=20;notch2=0;fillColor=#F2931E;strokeColor=none;shadow=1;");d.vertex=!0;var g=new mxCell("Label",new mxGeometry(410,170,100,60),"shape=manualInput;whiteSpace=wrap;html=1;shadow=1;strokeColor=none;fillColor=#dddddd;fontSize=15;fontColor=#444444;align=right;direction=south;flipH=1;shadow=1;spacing=10;fontStyle=1;");g.vertex=!0;var h=new mxCell("",new mxGeometry(0,.5,30,40),"shape=step;perimeter=stepPerimeter;whiteSpace=wrap;html=1;fixedSize=1;shadow=0;strokeColor=none;strokeWidth=6;fillColor=#CCCCCC;size=20;"); -h.vertex=!0;h.geometry.relative=!0;h.geometry.offset=new mxPoint(150,-20);d.insert(h);h=new mxCell('<b>Heading</b><br><font style="font-size: 11px">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</font>',new mxGeometry(0,0,230,100),"text;strokeColor=none;fillColor=none;spacing=5;spacingTop=0;whiteSpace=wrap;overflow=hidden;rounded=0;shadow=0;fontSize=15;fontColor=#FFFFFF;align=left;html=1;");h.vertex=!0;h.geometry.relative= -!0;h.geometry.offset=new mxPoint(200,0);d.insert(h);h=new mxCell("",new mxGeometry(50,152,50,37),"shadow=0;dashed=0;html=1;strokeColor=none;shape=mxgraph.mscae.intune.user_group;fillColor=#FFFFFF;fontSize=15;fontColor=#FFFFFF;align=left;");h.vertex=!0;var k=new mxCell("",new mxGeometry(0,240,500,100),"html=1;shape=mxgraph.infographic.ribbonSimple;notch1=20;notch2=0;fillColor=#AE4132;strokeColor=none;shadow=1;");k.vertex=!0;var l=new mxCell("Label",new mxGeometry(410,290,100,60),"shape=manualInput;whiteSpace=wrap;html=1;shadow=1;strokeColor=none;fillColor=#dddddd;fontSize=15;fontColor=#444444;align=right;direction=south;flipH=1;shadow=1;spacing=10;fontStyle=1;"); +0,40,70),"verticalLabelPosition=top;verticalAlign=bottom;html=1;shape=mxgraph.infographic.cylinder;isoAngle=15;fillColor=#CCCCCC;strokeColor=none;fontStyle=1;fontColor=#12AAB5;fontSize=12;shadow=0;align=left;opacity=70;");q.vertex=!0;return sb.createVertexTemplateFromCells([b,d,g,k,m,c,f,h,l,q],240,120,"Bar Graph")}),this.addEntry("folded banners",function(){var a=new mxCell("Label",new mxGeometry(0,0,200,100),"html=1;shape=mxgraph.infographic.bannerHalfFold;dx=40;dx2=20;notch=15;fillColor=#10739E;strokeColor=none;align=left;verticalAlign=top;fontColor=#ffffff;fontSize=14;fontStyle=1;spacingLeft=25;spacingTop=5;"); +a.vertex=!0;var b=new mxCell("Label",new mxGeometry(0,60,200,100),"html=1;shape=mxgraph.infographic.bannerHalfFold;dx=40;dx2=20;notch=15;fillColor=#F2931E;strokeColor=none;align=left;verticalAlign=top;fontColor=#ffffff;fontSize=14;fontStyle=1;spacingLeft=25;spacingTop=5;");b.vertex=!0;var d=new mxCell("Label",new mxGeometry(0,120,200,100),"html=1;shape=mxgraph.infographic.bannerHalfFold;dx=40;dx2=20;notch=15;fillColor=#AE4132;strokeColor=none;align=left;verticalAlign=top;fontColor=#ffffff;fontSize=14;fontStyle=1;spacingLeft=25;spacingTop=5;"); +d.vertex=!0;var f=new mxCell("Label",new mxGeometry(0,180,200,100),"html=1;shape=mxgraph.infographic.bannerHalfFold;dx=40;dx2=20;notch=15;fillColor=#23445D;strokeColor=none;align=left;verticalAlign=top;fontColor=#ffffff;fontSize=14;fontStyle=1;spacingLeft=25;spacingTop=5;");f.vertex=!0;var g=new mxCell("Label",new mxGeometry(0,240,200,120),"html=1;shape=mxgraph.infographic.bannerHalfFold;dx=40;dx2=20;notch=15;fillColor=#12AAB5;strokeColor=none;align=left;verticalAlign=top;fontColor=#ffffff;fontSize=14;fontStyle=1;spacingLeft=25;spacingTop=5;"); +g.vertex=!0;return sb.createVertexTemplateFromCells([a,b,d,f,g],200,360,"Folded Banners")}),this.addEntry("cylinder graph",function(){var a=new mxCell("Label",new mxGeometry(0,0,100,85),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.infographic.cylinder;fillColor=#10739E;strokeColor=none;shadow=0;align=left;labelPosition=right;spacingLeft=10;fontStyle=1;fontColor=#10739E;");a.vertex=!0;var b=new mxCell("Label",new mxGeometry(0,75,100,55),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.infographic.cylinder;fillColor=#F2931E;strokeColor=none;shadow=0;align=left;labelPosition=right;spacingLeft=10;fontStyle=1;fontColor=#F2931E;"); +b.vertex=!0;var d=new mxCell("Label",new mxGeometry(0,120,100,110),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.infographic.cylinder;fillColor=#AE4132;strokeColor=none;shadow=0;align=left;labelPosition=right;spacingLeft=10;fontStyle=1;fontColor=#AE4132;");d.vertex=!0;var f=new mxCell("Label",new mxGeometry(0,220,100,150),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.infographic.cylinder;fillColor=#23445D;strokeColor=none;shadow=0;align=left;labelPosition=right;spacingLeft=10;fontStyle=1;fontColor=#23445D;"); +f.vertex=!0;var g=new mxCell("Label",new mxGeometry(0,360,100,90),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.infographic.cylinder;fillColor=#12AAB5;strokeColor=none;shadow=0;align=left;labelPosition=right;spacingLeft=10;fontStyle=1;fontColor=#12AAB5;");g.vertex=!0;return sb.createVertexTemplateFromCells([g,f,d,b,a],100,460,"Cylinder Graph")}),this.addEntry("cylinder graph",function(){var a=new mxCell("Label",new mxGeometry(0,0,100,85),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.infographic.cylinder;fillColor=#10739E;strokeColor=none;shadow=0;align=left;labelPosition=right;spacingLeft=10;fontStyle=1;fontColor=#10739E;"); +a.vertex=!0;var b=new mxCell("Label",new mxGeometry(0,65,100,55),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.infographic.cylinder;fillColor=#F2931E;strokeColor=none;shadow=0;align=left;labelPosition=right;spacingLeft=10;fontStyle=1;fontColor=#F2931E;");b.vertex=!0;var d=new mxCell("Label",new mxGeometry(0,100,100,110),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.infographic.cylinder;fillColor=#AE4132;strokeColor=none;shadow=0;align=left;labelPosition=right;spacingLeft=10;fontStyle=1;fontColor=#AE4132;"); +d.vertex=!0;var f=new mxCell("Label",new mxGeometry(0,190,100,150),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.infographic.cylinder;fillColor=#23445D;strokeColor=none;shadow=0;align=left;labelPosition=right;spacingLeft=10;fontStyle=1;fontColor=#23445D;");f.vertex=!0;var g=new mxCell("Label",new mxGeometry(0,320,100,90),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.infographic.cylinder;fillColor=#12AAB5;strokeColor=none;shadow=0;align=left;labelPosition=right;spacingLeft=10;fontStyle=1;fontColor=#12AAB5;"); +g.vertex=!0;return sb.createVertexTemplateFromCells([g,f,d,b,a],100,410,"Cylinder Graph")}),this.addEntry("ribbon list",function(){var a=new mxCell("",new mxGeometry(0,0,500,100),"html=1;shape=mxgraph.infographic.ribbonSimple;notch1=20;notch2=0;fillColor=#10739E;strokeColor=none;shadow=1;");a.vertex=!0;var b=new mxCell("Label",new mxGeometry(410,50,100,60),"shape=manualInput;whiteSpace=wrap;html=1;shadow=1;strokeColor=none;fillColor=#dddddd;fontSize=15;fontColor=#444444;align=right;direction=south;flipH=1;shadow=1;spacing=10;fontStyle=1;"); +b.vertex=!0;var d=new mxCell("",new mxGeometry(0,.5,30,40),"shape=step;perimeter=stepPerimeter;whiteSpace=wrap;html=1;fixedSize=1;shadow=0;strokeColor=none;strokeWidth=6;fillColor=#CCCCCC;size=20;");d.vertex=!0;d.geometry.relative=!0;d.geometry.offset=new mxPoint(150,-20);a.insert(d);d=new mxCell('<b>Heading</b><br><font style="font-size: 11px">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</font>',new mxGeometry(0,0,230, +100),"text;strokeColor=none;fillColor=none;spacing=5;spacingTop=0;whiteSpace=wrap;overflow=hidden;rounded=0;shadow=0;fontSize=15;fontColor=#FFFFFF;align=left;html=1;");d.vertex=!0;d.geometry.relative=!0;d.geometry.offset=new mxPoint(200,0);a.insert(d);d=new mxCell("",new mxGeometry(50,32,50,37),"shadow=0;dashed=0;html=1;strokeColor=none;shape=mxgraph.mscae.intune.user_group;fillColor=#FFFFFF;fontSize=15;fontColor=#FFFFFF;align=left;");d.vertex=!0;var f=new mxCell("",new mxGeometry(0,120,500,100), +"html=1;shape=mxgraph.infographic.ribbonSimple;notch1=20;notch2=0;fillColor=#F2931E;strokeColor=none;shadow=1;");f.vertex=!0;var g=new mxCell("Label",new mxGeometry(410,170,100,60),"shape=manualInput;whiteSpace=wrap;html=1;shadow=1;strokeColor=none;fillColor=#dddddd;fontSize=15;fontColor=#444444;align=right;direction=south;flipH=1;shadow=1;spacing=10;fontStyle=1;");g.vertex=!0;var h=new mxCell("",new mxGeometry(0,.5,30,40),"shape=step;perimeter=stepPerimeter;whiteSpace=wrap;html=1;fixedSize=1;shadow=0;strokeColor=none;strokeWidth=6;fillColor=#CCCCCC;size=20;"); +h.vertex=!0;h.geometry.relative=!0;h.geometry.offset=new mxPoint(150,-20);f.insert(h);h=new mxCell('<b>Heading</b><br><font style="font-size: 11px">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</font>',new mxGeometry(0,0,230,100),"text;strokeColor=none;fillColor=none;spacing=5;spacingTop=0;whiteSpace=wrap;overflow=hidden;rounded=0;shadow=0;fontSize=15;fontColor=#FFFFFF;align=left;html=1;");h.vertex=!0;h.geometry.relative= +!0;h.geometry.offset=new mxPoint(200,0);f.insert(h);h=new mxCell("",new mxGeometry(50,152,50,37),"shadow=0;dashed=0;html=1;strokeColor=none;shape=mxgraph.mscae.intune.user_group;fillColor=#FFFFFF;fontSize=15;fontColor=#FFFFFF;align=left;");h.vertex=!0;var k=new mxCell("",new mxGeometry(0,240,500,100),"html=1;shape=mxgraph.infographic.ribbonSimple;notch1=20;notch2=0;fillColor=#AE4132;strokeColor=none;shadow=1;");k.vertex=!0;var l=new mxCell("Label",new mxGeometry(410,290,100,60),"shape=manualInput;whiteSpace=wrap;html=1;shadow=1;strokeColor=none;fillColor=#dddddd;fontSize=15;fontColor=#444444;align=right;direction=south;flipH=1;shadow=1;spacing=10;fontStyle=1;"); l.vertex=!0;var m=new mxCell("",new mxGeometry(0,.5,30,40),"shape=step;perimeter=stepPerimeter;whiteSpace=wrap;html=1;fixedSize=1;shadow=0;strokeColor=none;strokeWidth=6;fillColor=#CCCCCC;size=20;");m.vertex=!0;m.geometry.relative=!0;m.geometry.offset=new mxPoint(150,-20);k.insert(m);m=new mxCell('<b>Heading</b><br><font style="font-size: 11px">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</font>',new mxGeometry(0,0,230, 100),"text;strokeColor=none;fillColor=none;spacing=5;spacingTop=0;whiteSpace=wrap;overflow=hidden;rounded=0;shadow=0;fontSize=15;fontColor=#FFFFFF;align=left;html=1;");m.vertex=!0;m.geometry.relative=!0;m.geometry.offset=new mxPoint(200,0);k.insert(m);m=new mxCell("",new mxGeometry(50,272,50,37),"shadow=0;dashed=0;html=1;strokeColor=none;shape=mxgraph.mscae.intune.user_group;fillColor=#FFFFFF;fontSize=15;fontColor=#FFFFFF;align=left;");m.vertex=!0;var q=new mxCell("",new mxGeometry(0,360,500,100), "html=1;shape=mxgraph.infographic.ribbonSimple;notch1=20;notch2=0;fillColor=#23445D;strokeColor=none;shadow=1;");q.vertex=!0;var r=new mxCell("Label",new mxGeometry(410,410,100,60),"shape=manualInput;whiteSpace=wrap;html=1;shadow=1;strokeColor=none;fillColor=#dddddd;fontSize=15;fontColor=#444444;align=right;direction=south;flipH=1;shadow=1;spacing=10;fontStyle=1;");r.vertex=!0;var n=new mxCell("",new mxGeometry(0,.5,30,40),"shape=step;perimeter=stepPerimeter;whiteSpace=wrap;html=1;fixedSize=1;shadow=0;strokeColor=none;strokeWidth=6;fillColor=#CCCCCC;size=20;"); n.vertex=!0;n.geometry.relative=!0;n.geometry.offset=new mxPoint(150,-20);q.insert(n);n=new mxCell('<b>Heading</b><br><font style="font-size: 11px">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</font>',new mxGeometry(0,0,230,100),"text;strokeColor=none;fillColor=none;spacing=5;spacingTop=0;whiteSpace=wrap;overflow=hidden;rounded=0;shadow=0;fontSize=15;fontColor=#FFFFFF;align=left;html=1;");n.vertex=!0;n.geometry.relative= !0;n.geometry.offset=new mxPoint(200,0);q.insert(n);n=new mxCell("",new mxGeometry(50,392,50,37),"shadow=0;dashed=0;html=1;strokeColor=none;shape=mxgraph.mscae.intune.user_group;fillColor=#FFFFFF;fontSize=15;fontColor=#FFFFFF;align=left;");n.vertex=!0;var p=new mxCell("",new mxGeometry(0,480,500,100),"html=1;shape=mxgraph.infographic.ribbonSimple;notch1=20;notch2=0;fillColor=#12AAB5;strokeColor=none;shadow=1;");p.vertex=!0;var u=new mxCell("Label",new mxGeometry(410,530,100,60),"shape=manualInput;whiteSpace=wrap;html=1;shadow=1;strokeColor=none;fillColor=#dddddd;fontSize=15;fontColor=#444444;align=right;direction=south;flipH=1;shadow=1;spacing=10;fontStyle=1;"); u.vertex=!0;var t=new mxCell("",new mxGeometry(0,.5,30,40),"shape=step;perimeter=stepPerimeter;whiteSpace=wrap;html=1;fixedSize=1;shadow=0;strokeColor=none;strokeWidth=6;fillColor=#CCCCCC;size=20;");t.vertex=!0;t.geometry.relative=!0;t.geometry.offset=new mxPoint(150,-20);p.insert(t);t=new mxCell('<b>Heading</b><br><font style="font-size: 11px">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</font>',new mxGeometry(0,0,230, -100),"text;strokeColor=none;fillColor=none;spacing=5;spacingTop=0;whiteSpace=wrap;overflow=hidden;rounded=0;shadow=0;fontSize=15;fontColor=#FFFFFF;align=left;html=1;");t.vertex=!0;t.geometry.relative=!0;t.geometry.offset=new mxPoint(200,0);p.insert(t);t=new mxCell("",new mxGeometry(50,512,50,37),"shadow=0;dashed=0;html=1;strokeColor=none;shape=mxgraph.mscae.intune.user_group;fillColor=#FFFFFF;fontSize=15;fontColor=#FFFFFF;align=left;");t.vertex=!0;return sb.createVertexTemplateFromCells([a,b,c,d, +100),"text;strokeColor=none;fillColor=none;spacing=5;spacingTop=0;whiteSpace=wrap;overflow=hidden;rounded=0;shadow=0;fontSize=15;fontColor=#FFFFFF;align=left;html=1;");t.vertex=!0;t.geometry.relative=!0;t.geometry.offset=new mxPoint(200,0);p.insert(t);t=new mxCell("",new mxGeometry(50,512,50,37),"shadow=0;dashed=0;html=1;strokeColor=none;shape=mxgraph.mscae.intune.user_group;fillColor=#FFFFFF;fontSize=15;fontColor=#FFFFFF;align=left;");t.vertex=!0;return sb.createVertexTemplateFromCells([a,b,d,f, g,h,k,l,m,q,r,n,p,u,t],550,590,"Ribbon List")}),this.addEntry("bar graph",function(){var a=new mxCell("Label",new mxGeometry(0,0,120,70),"html=1;shape=mxgraph.infographic.barCallout;dx=60;dy=30;fillColor=#10739E;strokeColor=none;align=center;verticalAlign=top;fontColor=#ffffff;fontSize=14;fontStyle=1;shadow=0;spacingTop=5;");a.vertex=!0;var b=new mxCell("12",new mxGeometry(40,75,40,40),"ellipse;whiteSpace=wrap;html=1;aspect=fixed;shadow=0;strokeColor=#10739E;strokeWidth=6;fillColor=#FFFFFF;fontSize=16;fontColor=#000000;align=center;fontStyle=1"); -b.vertex=!0;var c=new mxCell("Label",new mxGeometry(120,0,160,70),"html=1;shape=mxgraph.infographic.barCallout;dx=80;dy=30;fillColor=#F2931E;strokeColor=none;align=center;verticalAlign=top;fontColor=#ffffff;fontSize=14;fontStyle=1;shadow=0;spacingTop=5;");c.vertex=!0;var d=new mxCell("16",new mxGeometry(180,75,40,40),"ellipse;whiteSpace=wrap;html=1;aspect=fixed;shadow=0;strokeColor=#F2931E;strokeWidth=6;fillColor=#FFFFFF;fontSize=16;fontColor=#000000;align=center;fontStyle=1");d.vertex=!0;var g=new mxCell("Label", +b.vertex=!0;var d=new mxCell("Label",new mxGeometry(120,0,160,70),"html=1;shape=mxgraph.infographic.barCallout;dx=80;dy=30;fillColor=#F2931E;strokeColor=none;align=center;verticalAlign=top;fontColor=#ffffff;fontSize=14;fontStyle=1;shadow=0;spacingTop=5;");d.vertex=!0;var f=new mxCell("16",new mxGeometry(180,75,40,40),"ellipse;whiteSpace=wrap;html=1;aspect=fixed;shadow=0;strokeColor=#F2931E;strokeWidth=6;fillColor=#FFFFFF;fontSize=16;fontColor=#000000;align=center;fontStyle=1");f.vertex=!0;var g=new mxCell("Label", new mxGeometry(280,0,80,70),"html=1;shape=mxgraph.infographic.barCallout;dx=40;dy=30;fillColor=#AE4132;strokeColor=none;align=center;verticalAlign=top;fontColor=#ffffff;fontSize=14;fontStyle=1;shadow=0;spacingTop=5;");g.vertex=!0;var h=new mxCell("8",new mxGeometry(300,75,40,40),"ellipse;whiteSpace=wrap;html=1;aspect=fixed;shadow=0;strokeColor=#AE4132;strokeWidth=6;fillColor=#FFFFFF;fontSize=16;fontColor=#000000;align=center;fontStyle=1");h.vertex=!0;var k=new mxCell("Label",new mxGeometry(360,0, 200,70),"html=1;shape=mxgraph.infographic.barCallout;dx=100;dy=30;fillColor=#23445D;strokeColor=none;align=center;verticalAlign=top;fontColor=#ffffff;fontSize=14;fontStyle=1;shadow=0;spacingTop=5;");k.vertex=!0;var l=new mxCell("20",new mxGeometry(440,75,40,40),"ellipse;whiteSpace=wrap;html=1;aspect=fixed;shadow=0;strokeColor=#23445D;strokeWidth=6;fillColor=#FFFFFF;fontSize=16;fontColor=#000000;align=center;fontStyle=1");l.vertex=!0;var m=new mxCell("Label",new mxGeometry(560,0,140,70),"html=1;shape=mxgraph.infographic.barCallout;dx=70;dy=30;fillColor=#12AAB5;strokeColor=none;align=center;verticalAlign=top;fontColor=#ffffff;fontSize=14;fontStyle=1;shadow=0;spacingTop=5;"); -m.vertex=!0;var q=new mxCell("14",new mxGeometry(610,75,40,40),"ellipse;whiteSpace=wrap;html=1;aspect=fixed;shadow=0;strokeColor=#12AAB5;strokeWidth=6;fillColor=#FFFFFF;fontSize=16;fontColor=#000000;align=center;fontStyle=1");q.vertex=!0;return sb.createVertexTemplateFromCells([a,c,g,k,m,b,d,h,l,q],700,115,"Bar Graph")}),this.addEntry("arrow graph",function(){var a=new mxCell("Label",new mxGeometry(0,40,90,160),"html=1;shadow=0;dashed=0;align=center;verticalAlign=top;shape=mxgraph.arrows2.arrow;dy=0.4;dx=60;direction=north;notch=0;strokeColor=#FFFFFF;strokeWidth=6;fillColor=#10739E;fontSize=14;fontColor=#000000;labelPosition=center;verticalLabelPosition=bottom;fontStyle=1"); -a.vertex=!0;var b=new mxCell("Label",new mxGeometry(50,0,90,200),"html=1;shadow=0;dashed=0;align=center;verticalAlign=top;shape=mxgraph.arrows2.arrow;dy=0.4;dx=60;direction=north;notch=0;strokeColor=#FFFFFF;strokeWidth=6;fillColor=#F2931E;fontSize=14;fontColor=#000000;labelPosition=center;verticalLabelPosition=bottom;fontStyle=1");b.vertex=!0;var c=new mxCell("Label",new mxGeometry(100,20,90,180),"html=1;shadow=0;dashed=0;align=center;verticalAlign=top;shape=mxgraph.arrows2.arrow;dy=0.4;dx=60;direction=north;notch=0;strokeColor=#FFFFFF;strokeWidth=6;fillColor=#AE4132;fontSize=14;fontColor=#000000;labelPosition=center;verticalLabelPosition=bottom;fontStyle=1"); -c.vertex=!0;var d=new mxCell("Label",new mxGeometry(150,90,90,110),"html=1;shadow=0;dashed=0;align=center;verticalAlign=top;shape=mxgraph.arrows2.arrow;dy=0.4;dx=60;direction=north;notch=0;strokeColor=#FFFFFF;strokeWidth=6;fillColor=#23445D;fontSize=14;fontColor=#000000;labelPosition=center;verticalLabelPosition=bottom;fontStyle=1");d.vertex=!0;var g=new mxCell("Label",new mxGeometry(200,60,90,140),"html=1;shadow=0;dashed=0;align=center;verticalAlign=top;shape=mxgraph.arrows2.arrow;dy=0.4;dx=60;direction=north;notch=0;strokeColor=#FFFFFF;strokeWidth=6;fillColor=#12AAB5;fontSize=14;fontColor=#000000;labelPosition=center;verticalLabelPosition=bottom;fontStyle=1"); -g.vertex=!0;return sb.createVertexTemplateFromCells([a,b,c,d,g],300,200,"Arrow Graph")}),this.addEntry("triangular diagram",function(){var a=new mxCell("Label",new mxGeometry(120,0,240,180),"triangle;whiteSpace=wrap;html=1;shadow=0;strokeColor=#FFFFFF;strokeWidth=6;fillColor=#10739E;fontSize=16;fontColor=#FFFFFF;align=center;direction=north;fontStyle=1");a.vertex=!0;var b=new mxCell("Label",new mxGeometry(0,180,240,180),"triangle;whiteSpace=wrap;html=1;shadow=0;strokeColor=#FFFFFF;strokeWidth=6;fillColor=#F2931E;fontSize=16;fontColor=#FFFFFF;align=center;direction=north;fontStyle=1"); -b.vertex=!0;var c=new mxCell("Label",new mxGeometry(120,180,240,180),"triangle;whiteSpace=wrap;html=1;shadow=0;strokeColor=#FFFFFF;strokeWidth=6;fillColor=#AE4132;fontSize=16;fontColor=#FFFFFF;align=center;direction=south;fontStyle=1");c.vertex=!0;var d=new mxCell("Label",new mxGeometry(240,180,240,180),"triangle;whiteSpace=wrap;html=1;shadow=0;strokeColor=#FFFFFF;strokeWidth=6;fillColor=#23445D;fontSize=16;fontColor=#FFFFFF;align=center;direction=north;fontStyle=1");d.vertex=!0;return sb.createVertexTemplateFromCells([a, -b,c,d],480,360,"Triangular Diagram")}),this.addEntry("roll",function(){var a=new mxCell("",new mxGeometry(0,0,400,400),"ellipse;html=1;strokeWidth=4;fillColor=#23445D;strokeColor=none;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");a.vertex=!0;var b=new mxCell("",new mxGeometry(25,25,350,350),"ellipse;html=1;strokeWidth=4;fillColor=#2F5B7C;strokeColor=none;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");b.vertex= -!0;var c=new mxCell("",new mxGeometry(50,50,300,300),"ellipse;html=1;strokeWidth=4;fillColor=#5D7F99;strokeColor=none;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");c.vertex=!0;var d=new mxCell("",new mxGeometry(75,75,250,250),"ellipse;html=1;strokeWidth=4;fillColor=#BAC8D3;strokeColor=none;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");d.vertex=!0;var g=new mxCell("",new mxGeometry(100,100,200,200),"ellipse;html=1;strokeWidth=4;fillColor=#FCE7CD;strokeColor=none;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;"); +m.vertex=!0;var q=new mxCell("14",new mxGeometry(610,75,40,40),"ellipse;whiteSpace=wrap;html=1;aspect=fixed;shadow=0;strokeColor=#12AAB5;strokeWidth=6;fillColor=#FFFFFF;fontSize=16;fontColor=#000000;align=center;fontStyle=1");q.vertex=!0;return sb.createVertexTemplateFromCells([a,d,g,k,m,b,f,h,l,q],700,115,"Bar Graph")}),this.addEntry("arrow graph",function(){var a=new mxCell("Label",new mxGeometry(0,40,90,160),"html=1;shadow=0;dashed=0;align=center;verticalAlign=top;shape=mxgraph.arrows2.arrow;dy=0.4;dx=60;direction=north;notch=0;strokeColor=#FFFFFF;strokeWidth=6;fillColor=#10739E;fontSize=14;fontColor=#000000;labelPosition=center;verticalLabelPosition=bottom;fontStyle=1"); +a.vertex=!0;var b=new mxCell("Label",new mxGeometry(50,0,90,200),"html=1;shadow=0;dashed=0;align=center;verticalAlign=top;shape=mxgraph.arrows2.arrow;dy=0.4;dx=60;direction=north;notch=0;strokeColor=#FFFFFF;strokeWidth=6;fillColor=#F2931E;fontSize=14;fontColor=#000000;labelPosition=center;verticalLabelPosition=bottom;fontStyle=1");b.vertex=!0;var d=new mxCell("Label",new mxGeometry(100,20,90,180),"html=1;shadow=0;dashed=0;align=center;verticalAlign=top;shape=mxgraph.arrows2.arrow;dy=0.4;dx=60;direction=north;notch=0;strokeColor=#FFFFFF;strokeWidth=6;fillColor=#AE4132;fontSize=14;fontColor=#000000;labelPosition=center;verticalLabelPosition=bottom;fontStyle=1"); +d.vertex=!0;var f=new mxCell("Label",new mxGeometry(150,90,90,110),"html=1;shadow=0;dashed=0;align=center;verticalAlign=top;shape=mxgraph.arrows2.arrow;dy=0.4;dx=60;direction=north;notch=0;strokeColor=#FFFFFF;strokeWidth=6;fillColor=#23445D;fontSize=14;fontColor=#000000;labelPosition=center;verticalLabelPosition=bottom;fontStyle=1");f.vertex=!0;var g=new mxCell("Label",new mxGeometry(200,60,90,140),"html=1;shadow=0;dashed=0;align=center;verticalAlign=top;shape=mxgraph.arrows2.arrow;dy=0.4;dx=60;direction=north;notch=0;strokeColor=#FFFFFF;strokeWidth=6;fillColor=#12AAB5;fontSize=14;fontColor=#000000;labelPosition=center;verticalLabelPosition=bottom;fontStyle=1"); +g.vertex=!0;return sb.createVertexTemplateFromCells([a,b,d,f,g],300,200,"Arrow Graph")}),this.addEntry("triangular diagram",function(){var a=new mxCell("Label",new mxGeometry(120,0,240,180),"triangle;whiteSpace=wrap;html=1;shadow=0;strokeColor=#FFFFFF;strokeWidth=6;fillColor=#10739E;fontSize=16;fontColor=#FFFFFF;align=center;direction=north;fontStyle=1");a.vertex=!0;var b=new mxCell("Label",new mxGeometry(0,180,240,180),"triangle;whiteSpace=wrap;html=1;shadow=0;strokeColor=#FFFFFF;strokeWidth=6;fillColor=#F2931E;fontSize=16;fontColor=#FFFFFF;align=center;direction=north;fontStyle=1"); +b.vertex=!0;var d=new mxCell("Label",new mxGeometry(120,180,240,180),"triangle;whiteSpace=wrap;html=1;shadow=0;strokeColor=#FFFFFF;strokeWidth=6;fillColor=#AE4132;fontSize=16;fontColor=#FFFFFF;align=center;direction=south;fontStyle=1");d.vertex=!0;var f=new mxCell("Label",new mxGeometry(240,180,240,180),"triangle;whiteSpace=wrap;html=1;shadow=0;strokeColor=#FFFFFF;strokeWidth=6;fillColor=#23445D;fontSize=16;fontColor=#FFFFFF;align=center;direction=north;fontStyle=1");f.vertex=!0;return sb.createVertexTemplateFromCells([a, +b,d,f],480,360,"Triangular Diagram")}),this.addEntry("roll",function(){var a=new mxCell("",new mxGeometry(0,0,400,400),"ellipse;html=1;strokeWidth=4;fillColor=#23445D;strokeColor=none;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");a.vertex=!0;var b=new mxCell("",new mxGeometry(25,25,350,350),"ellipse;html=1;strokeWidth=4;fillColor=#2F5B7C;strokeColor=none;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");b.vertex= +!0;var d=new mxCell("",new mxGeometry(50,50,300,300),"ellipse;html=1;strokeWidth=4;fillColor=#5D7F99;strokeColor=none;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");d.vertex=!0;var f=new mxCell("",new mxGeometry(75,75,250,250),"ellipse;html=1;strokeWidth=4;fillColor=#BAC8D3;strokeColor=none;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");f.vertex=!0;var g=new mxCell("",new mxGeometry(100,100,200,200),"ellipse;html=1;strokeWidth=4;fillColor=#FCE7CD;strokeColor=none;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;"); g.vertex=!0;var h=new mxCell("",new mxGeometry(125,125,150,150),"ellipse;html=1;strokeWidth=4;fillColor=#F8C382;strokeColor=none;shadow=0;fontSize=10;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;spacing=10;");h.vertex=!0;var k=new mxCell("Label",new mxGeometry(150,150,100,100),"ellipse;html=1;strokeWidth=4;fillColor=#F5AB50;strokeColor=none;shadow=0;fontSize=20;fontColor=#FFFFFF;align=center;fontStyle=1;whiteSpace=wrap;spacing=10;");k.vertex=!0;var l=new mxCell("Label",new mxGeometry(200, 225,300,25),"html=1;shape=mxgraph.infographic.ribbonSimple;notch1=0;notch2=20;fillColor=#F5AB50;strokeColor=none;align=right;verticalAlign=middle;fontColor=#ffffff;fontSize=14;fontStyle=1;shadow=0;spacingRight=25;");l.vertex=!0;var m=new mxCell("Label",new mxGeometry(200,250,340,25),"html=1;shape=mxgraph.infographic.ribbonSimple;notch1=0;notch2=20;fillColor=#F8C382;strokeColor=none;align=right;verticalAlign=middle;fontColor=#ffffff;fontSize=14;fontStyle=1;shadow=0;spacingRight=25;");m.vertex=!0;var q= new mxCell("Label",new mxGeometry(200,275,380,25),"html=1;shape=mxgraph.infographic.ribbonSimple;notch1=0;notch2=20;fillColor=#FCE7CD;strokeColor=none;align=right;verticalAlign=middle;fontColor=#ffffff;fontSize=14;fontStyle=1;shadow=0;spacingRight=25;");q.vertex=!0;var r=new mxCell("Label",new mxGeometry(200,300,420,25),"html=1;shape=mxgraph.infographic.ribbonSimple;notch1=0;notch2=20;fillColor=#BAC8D3;strokeColor=none;align=right;verticalAlign=middle;fontColor=#ffffff;fontSize=14;fontStyle=1;shadow=0;spacingRight=25;"); r.vertex=!0;var n=new mxCell("Label",new mxGeometry(200,325,460,25),"html=1;shape=mxgraph.infographic.ribbonSimple;notch1=0;notch2=20;fillColor=#5D7F99;strokeColor=none;align=right;verticalAlign=middle;fontColor=#ffffff;fontSize=14;fontStyle=1;shadow=0;spacingRight=25;");n.vertex=!0;var p=new mxCell("Label",new mxGeometry(200,350,500,25),"html=1;shape=mxgraph.infographic.ribbonSimple;notch1=0;notch2=20;fillColor=#2F5B7C;strokeColor=none;align=right;verticalAlign=middle;fontColor=#ffffff;fontSize=14;fontStyle=1;shadow=0;spacingRight=25;"); -p.vertex=!0;var u=new mxCell("Label",new mxGeometry(200,375,540,25),"html=1;shape=mxgraph.infographic.ribbonSimple;notch1=0;notch2=20;fillColor=#23445D;strokeColor=none;align=right;verticalAlign=middle;fontColor=#ffffff;fontSize=14;fontStyle=1;shadow=0;spacingRight=25;");u.vertex=!0;return sb.createVertexTemplateFromCells([a,b,c,d,g,h,k,l,m,q,r,n,p,u],740,400,"Roll")}),this.addEntry("cylinder graph",function(){var a=new mxCell("",new mxGeometry(315,160,100,25),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.infographic.cylinder;fillColor=#10739E;strokeColor=none;shadow=0;align=left;labelPosition=right;spacingLeft=10;fontStyle=1;fontColor=#10739E;"); -a.vertex=!0;var b=new mxCell("",new mxGeometry(315,180,100,25),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.infographic.cylinder;fillColor=#F2931E;strokeColor=none;shadow=0;align=left;labelPosition=right;spacingLeft=10;fontStyle=1;fontColor=#F2931E;");b.vertex=!0;var c=new mxCell("",new mxGeometry(315,200,100,25),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.infographic.cylinder;fillColor=#AE4132;strokeColor=none;shadow=0;align=left;labelPosition=right;spacingLeft=10;fontStyle=1;fontColor=#AE4132;"); -c.vertex=!0;var d=new mxCell("",new mxGeometry(315,220,100,25),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.infographic.cylinder;fillColor=#23445D;strokeColor=none;shadow=0;align=left;labelPosition=right;spacingLeft=10;fontStyle=1;fontColor=#23445D;");d.vertex=!0;var g=new mxCell("",new mxGeometry(315,240,100,25),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.infographic.cylinder;fillColor=#12AAB5;strokeColor=none;shadow=0;align=left;labelPosition=right;spacingLeft=10;fontStyle=1;fontColor=#12AAB5;"); +p.vertex=!0;var u=new mxCell("Label",new mxGeometry(200,375,540,25),"html=1;shape=mxgraph.infographic.ribbonSimple;notch1=0;notch2=20;fillColor=#23445D;strokeColor=none;align=right;verticalAlign=middle;fontColor=#ffffff;fontSize=14;fontStyle=1;shadow=0;spacingRight=25;");u.vertex=!0;return sb.createVertexTemplateFromCells([a,b,d,f,g,h,k,l,m,q,r,n,p,u],740,400,"Roll")}),this.addEntry("cylinder graph",function(){var a=new mxCell("",new mxGeometry(315,160,100,25),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.infographic.cylinder;fillColor=#10739E;strokeColor=none;shadow=0;align=left;labelPosition=right;spacingLeft=10;fontStyle=1;fontColor=#10739E;"); +a.vertex=!0;var b=new mxCell("",new mxGeometry(315,180,100,25),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.infographic.cylinder;fillColor=#F2931E;strokeColor=none;shadow=0;align=left;labelPosition=right;spacingLeft=10;fontStyle=1;fontColor=#F2931E;");b.vertex=!0;var d=new mxCell("",new mxGeometry(315,200,100,25),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.infographic.cylinder;fillColor=#AE4132;strokeColor=none;shadow=0;align=left;labelPosition=right;spacingLeft=10;fontStyle=1;fontColor=#AE4132;"); +d.vertex=!0;var f=new mxCell("",new mxGeometry(315,220,100,25),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.infographic.cylinder;fillColor=#23445D;strokeColor=none;shadow=0;align=left;labelPosition=right;spacingLeft=10;fontStyle=1;fontColor=#23445D;");f.vertex=!0;var g=new mxCell("",new mxGeometry(315,240,100,25),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.infographic.cylinder;fillColor=#12AAB5;strokeColor=none;shadow=0;align=left;labelPosition=right;spacingLeft=10;fontStyle=1;fontColor=#12AAB5;"); g.vertex=!0;var h=new mxCell("Label",new mxGeometry(175,0,130,160),"strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.text.callout;linkText=;textSize=17;textColor=#666666;callDir=NW;callStyle=line;fontSize=17;fontColor=#10739E;align=left;verticalAlign=top;strokeColor=#666666;fillColor=#4D9900;flipV=0;fontStyle=1;");h.vertex=!0;var k=new mxCell("Label",new mxGeometry(175,80,130,110),"strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.text.callout;linkText=;textSize=17;textColor=#666666;callDir=NW;callStyle=line;fontSize=17;fontColor=#F2931E;align=left;verticalAlign=top;strokeColor=#666666;fillColor=#4D9900;flipV=0;fontStyle=1;"); k.vertex=!0;var l=new mxCell("Label",new mxGeometry(175,160,130,50),"strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.text.callout;linkText=;textSize=17;textColor=#666666;callDir=NW;callStyle=line;fontSize=17;fontColor=#AE4132;align=left;verticalAlign=top;strokeColor=#666666;fillColor=#4D9900;flipV=0;fontStyle=1;");l.vertex=!0;var m=new mxCell("Label",new mxGeometry(175,230,130,50),"strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.text.callout;linkText=;textSize=17;textColor=#666666;callDir=SW;callStyle=line;fontSize=17;fontColor=#23445D;align=left;verticalAlign=bottom;strokeColor=#666666;fillColor=#4D9900;flipV=0;fontStyle=1;"); m.vertex=!0;var q=new mxCell("Label",new mxGeometry(175,250,130,120),"strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.text.callout;linkText=;textSize=17;textColor=#666666;callDir=SW;callStyle=line;fontSize=17;fontColor=#12AAB5;align=left;verticalAlign=bottom;strokeColor=#666666;fillColor=#4D9900;flipV=0;fontStyle=1;");q.vertex=!0;var r=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.", new mxGeometry(0,30,240,50),"rounded=0;whiteSpace=wrap;shadow=0;strokeColor=none;strokeWidth=6;fillColor=none;fontSize=12;fontColor=#000000;align=right;html=1;");r.vertex=!0;var n=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",new mxGeometry(0,110,240,50),"rounded=0;whiteSpace=wrap;shadow=0;strokeColor=none;strokeWidth=6;fillColor=none;fontSize=12;fontColor=#000000;align=right;html=1;");n.vertex=!0;var p=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.", new mxGeometry(0,190,240,50),"rounded=0;whiteSpace=wrap;shadow=0;strokeColor=none;strokeWidth=6;fillColor=none;fontSize=12;fontColor=#000000;align=right;html=1;");p.vertex=!0;var u=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",new mxGeometry(0,290,240,50),"rounded=0;whiteSpace=wrap;shadow=0;strokeColor=none;strokeWidth=6;fillColor=none;fontSize=12;fontColor=#000000;align=right;html=1;");u.vertex=!0;var t=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.", -new mxGeometry(0,380,240,50),"rounded=0;whiteSpace=wrap;shadow=0;strokeColor=none;strokeWidth=6;fillColor=none;fontSize=12;fontColor=#000000;align=right;html=1;");t.vertex=!0;return sb.createVertexTemplateFromCells([g,d,c,b,a,h,k,l,m,q,r,n,p,u,t],415,430,"Cylinder Graph")}),this.addEntry("swirl",function(){var a=new mxCell("",new mxGeometry(0,0,300,140),"html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.uTurnArrow;dy=22;arrowHead=70;dx2=35;strokeColor=#ffffff;fillColor=#10739E;fontSize=12;fontColor=#3333FF;flipH=1;flipV=1;strokeWidth=4;"); -a.vertex=!0;var b=new mxCell("",new mxGeometry(0,79,230,140),"html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.uTurnArrow;dy=22;arrowHead=70;dx2=35;strokeColor=#ffffff;fillColor=#F2931E;fontSize=12;fontColor=#3333FF;flipV=1;strokeWidth=4;");b.vertex=!0;var c=new mxCell("",new mxGeometry(70,158,230,140),"html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.uTurnArrow;dy=22;arrowHead=70;dx2=35;strokeColor=#ffffff;fillColor=#AE4132;fontSize=12;fontColor=#3333FF;flipH=1;flipV=1;strokeWidth=4;"); -c.vertex=!0;var d=new mxCell("",new mxGeometry(0,237,230,140),"html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.uTurnArrow;dy=22;arrowHead=70;dx2=35;strokeColor=#ffffff;fillColor=#23445D;fontSize=12;fontColor=#3333FF;flipV=1;strokeWidth=4;");d.vertex=!0;var g=new mxCell("",new mxGeometry(70,316,230,140),"html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.uTurnArrow;dy=22;arrowHead=70;dx2=35;strokeColor=#ffffff;fillColor=#12AAB5;fontSize=12;fontColor=#3333FF;flipH=1;flipV=1;strokeWidth=4;"); +new mxGeometry(0,380,240,50),"rounded=0;whiteSpace=wrap;shadow=0;strokeColor=none;strokeWidth=6;fillColor=none;fontSize=12;fontColor=#000000;align=right;html=1;");t.vertex=!0;return sb.createVertexTemplateFromCells([g,f,d,b,a,h,k,l,m,q,r,n,p,u,t],415,430,"Cylinder Graph")}),this.addEntry("swirl",function(){var a=new mxCell("",new mxGeometry(0,0,300,140),"html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.uTurnArrow;dy=22;arrowHead=70;dx2=35;strokeColor=#ffffff;fillColor=#10739E;fontSize=12;fontColor=#3333FF;flipH=1;flipV=1;strokeWidth=4;"); +a.vertex=!0;var b=new mxCell("",new mxGeometry(0,79,230,140),"html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.uTurnArrow;dy=22;arrowHead=70;dx2=35;strokeColor=#ffffff;fillColor=#F2931E;fontSize=12;fontColor=#3333FF;flipV=1;strokeWidth=4;");b.vertex=!0;var d=new mxCell("",new mxGeometry(70,158,230,140),"html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.uTurnArrow;dy=22;arrowHead=70;dx2=35;strokeColor=#ffffff;fillColor=#AE4132;fontSize=12;fontColor=#3333FF;flipH=1;flipV=1;strokeWidth=4;"); +d.vertex=!0;var f=new mxCell("",new mxGeometry(0,237,230,140),"html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.uTurnArrow;dy=22;arrowHead=70;dx2=35;strokeColor=#ffffff;fillColor=#23445D;fontSize=12;fontColor=#3333FF;flipV=1;strokeWidth=4;");f.vertex=!0;var g=new mxCell("",new mxGeometry(70,316,230,140),"html=1;shadow=0;dashed=0;align=center;verticalAlign=middle;shape=mxgraph.arrows2.uTurnArrow;dy=22;arrowHead=70;dx2=35;strokeColor=#ffffff;fillColor=#12AAB5;fontSize=12;fontColor=#3333FF;flipH=1;flipV=1;strokeWidth=4;"); g.vertex=!0;var h=new mxCell('<b style="font-size: 7px">LABEL</b><br style="font-size: 7px">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.',new mxGeometry(50,0,150,40),"rounded=0;whiteSpace=wrap;shadow=0;strokeColor=none;strokeWidth=6;fillColor=none;fontSize=7;fontColor=#FFFFFF;align=left;html=1;spacingLeft=5;");h.vertex=!0;var k=new mxCell('<b style="font-size: 7px">LABEL</b><br style="font-size: 7px">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.', new mxGeometry(50,79,150,40),"rounded=0;whiteSpace=wrap;shadow=0;strokeColor=none;strokeWidth=6;fillColor=none;fontSize=7;fontColor=#FFFFFF;align=left;html=1;spacingLeft=5;");k.vertex=!0;var l=new mxCell('<b style="font-size: 7px">LABEL</b><br style="font-size: 7px">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.',new mxGeometry(100,158,150,40),"rounded=0;whiteSpace=wrap;shadow=0;strokeColor=none;strokeWidth=6;fillColor=none;fontSize=7;fontColor=#FFFFFF;align=left;html=1;spacingLeft=5;"); l.vertex=!0;var m=new mxCell('<b style="font-size: 7px">LABEL</b><br style="font-size: 7px">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.',new mxGeometry(50,237,150,40),"rounded=0;whiteSpace=wrap;shadow=0;strokeColor=none;strokeWidth=6;fillColor=none;fontSize=7;fontColor=#FFFFFF;align=left;html=1;spacingLeft=5;");m.vertex=!0;var q=new mxCell('<b style="font-size: 7px">LABEL</b><br style="font-size: 7px">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.', -new mxGeometry(100,316,150,40),"rounded=0;whiteSpace=wrap;shadow=0;strokeColor=none;strokeWidth=6;fillColor=none;fontSize=7;fontColor=#FFFFFF;align=left;html=1;spacingLeft=5;");q.vertex=!0;return sb.createVertexTemplateFromCells([g,d,c,b,a,h,k,l,m,q],300,456,"Swirl")}),this.addEntry("swirl",function(){var a=new mxCell("Label",new mxGeometry(60,0,120,15),"shape=manualInput;whiteSpace=wrap;html=1;shadow=0;fillColor=#10739E;strokeColor=none;fontSize=12;fontColor=#FFFFFF;align=center;direction=north;flipV=1;rounded=0;"); -a.vertex=!0;var b=new mxCell("Label",new mxGeometry(30,15,150,15),"shape=manualInput;whiteSpace=wrap;html=1;shadow=0;fillColor=#F2931E;strokeColor=none;fontSize=12;fontColor=#FFFFFF;align=center;direction=north;flipV=1;rounded=0;");b.vertex=!0;var c=new mxCell("Label",new mxGeometry(0,30,180,15),"shape=manualInput;whiteSpace=wrap;html=1;shadow=0;fillColor=#AE4132;strokeColor=none;fontSize=12;fontColor=#FFFFFF;align=center;direction=north;flipV=1;rounded=0;");c.vertex=!0;var d=new mxCell("",new mxGeometry(114, -0,130,130),"verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.partConcEllipse;fillColor=#10739E;strokeColor=none;startAngle=0;endAngle=0.5;arcWidth=0.23;shadow=0;fontSize=7;fontColor=#FFFFFF;align=left;");d.vertex=!0;var g=new mxCell("",new mxGeometry(129,15,100,100),"verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.partConcEllipse;fillColor=#F2931E;strokeColor=none;startAngle=0;endAngle=0.5;arcWidth=0.3;shadow=0;fontSize=7;fontColor=#FFFFFF;align=left;"); +new mxGeometry(100,316,150,40),"rounded=0;whiteSpace=wrap;shadow=0;strokeColor=none;strokeWidth=6;fillColor=none;fontSize=7;fontColor=#FFFFFF;align=left;html=1;spacingLeft=5;");q.vertex=!0;return sb.createVertexTemplateFromCells([g,f,d,b,a,h,k,l,m,q],300,456,"Swirl")}),this.addEntry("swirl",function(){var a=new mxCell("Label",new mxGeometry(60,0,120,15),"shape=manualInput;whiteSpace=wrap;html=1;shadow=0;fillColor=#10739E;strokeColor=none;fontSize=12;fontColor=#FFFFFF;align=center;direction=north;flipV=1;rounded=0;"); +a.vertex=!0;var b=new mxCell("Label",new mxGeometry(30,15,150,15),"shape=manualInput;whiteSpace=wrap;html=1;shadow=0;fillColor=#F2931E;strokeColor=none;fontSize=12;fontColor=#FFFFFF;align=center;direction=north;flipV=1;rounded=0;");b.vertex=!0;var d=new mxCell("Label",new mxGeometry(0,30,180,15),"shape=manualInput;whiteSpace=wrap;html=1;shadow=0;fillColor=#AE4132;strokeColor=none;fontSize=12;fontColor=#FFFFFF;align=center;direction=north;flipV=1;rounded=0;");d.vertex=!0;var f=new mxCell("",new mxGeometry(114, +0,130,130),"verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.partConcEllipse;fillColor=#10739E;strokeColor=none;startAngle=0;endAngle=0.5;arcWidth=0.23;shadow=0;fontSize=7;fontColor=#FFFFFF;align=left;");f.vertex=!0;var g=new mxCell("",new mxGeometry(129,15,100,100),"verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.partConcEllipse;fillColor=#F2931E;strokeColor=none;startAngle=0;endAngle=0.5;arcWidth=0.3;shadow=0;fontSize=7;fontColor=#FFFFFF;align=left;"); g.vertex=!0;var h=new mxCell("",new mxGeometry(144,30,70,70),"verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.partConcEllipse;fillColor=#AE4132;strokeColor=none;startAngle=0;endAngle=0.5;arcWidth=0.43;shadow=0;fontSize=7;fontColor=#FFFFFF;align=left;");h.vertex=!0;var k=new mxCell("",new mxGeometry(115,85,130,130),"verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.partConcEllipse;fillColor=#AE4132;strokeColor=none;startAngle=0.5;endAngle=0.00001;arcWidth=0.23;shadow=0;fontSize=7;fontColor=#FFFFFF;align=left;"); k.vertex=!0;var l=new mxCell("",new mxGeometry(130,100,100,100),"verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.partConcEllipse;fillColor=#F2931E;strokeColor=none;startAngle=0.5;endAngle=0.00001;arcWidth=0.3;shadow=0;fontSize=7;fontColor=#FFFFFF;align=left;");l.vertex=!0;var m=new mxCell("",new mxGeometry(145,115,70,70),"verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.partConcEllipse;fillColor=#10739E;strokeColor=none;startAngle=0.5;endAngle=0.00001;arcWidth=0.43;shadow=0;fontSize=7;fontColor=#FFFFFF;align=left;"); m.vertex=!0;var q=new mxCell("",new mxGeometry(179,170,181,15),"shape=manualInput;whiteSpace=wrap;html=1;shadow=0;fillColor=#10739E;strokeColor=none;fontSize=12;fontColor=#FFFFFF;align=center;direction=north;flipH=1;rounded=0;");q.vertex=!0;var r=new mxCell("",new mxGeometry(179,185,151,15),"shape=manualInput;whiteSpace=wrap;html=1;shadow=0;fillColor=#F2931E;strokeColor=none;fontSize=12;fontColor=#FFFFFF;align=center;direction=north;flipH=1;rounded=0;");r.vertex=!0;var n=new mxCell("",new mxGeometry(179, 200,121,15),"shape=manualInput;whiteSpace=wrap;html=1;shadow=0;fillColor=#AE4132;strokeColor=none;fontSize=12;fontColor=#FFFFFF;align=center;direction=north;flipH=1;rounded=0;");n.vertex=!0;var p=new mxCell("1",new mxGeometry(0,60,30,30),"ellipse;whiteSpace=wrap;html=1;aspect=fixed;shadow=0;strokeColor=none;fillColor=#10739E;fontSize=17;fontColor=#FFFFFF;align=center;fontStyle=1;rounded=0;");p.vertex=!0;var u=new mxCell("2",new mxGeometry(40,60,30,30),"ellipse;whiteSpace=wrap;html=1;aspect=fixed;shadow=0;strokeColor=none;fillColor=#F2931E;fontSize=17;fontColor=#FFFFFF;align=center;fontStyle=1;rounded=0;"); -u.vertex=!0;var t=new mxCell("3",new mxGeometry(80,60,30,30),"ellipse;whiteSpace=wrap;html=1;aspect=fixed;shadow=0;strokeColor=none;fillColor=#AE4132;fontSize=17;fontColor=#FFFFFF;align=center;fontStyle=1;rounded=0;");t.vertex=!0;return sb.createVertexTemplateFromCells([a,b,c,d,g,h,k,l,m,q,r,n,p,u,t],360,215,"Swirl")}),this.addEntry("callout",function(){var a=new mxCell("Label",new mxGeometry(0,0,0,0),"endArrow=oval;html=1;fontSize=16;fontColor=#10739E;endFill=0;endSize=24;strokeWidth=5;labelBackgroundColor=none;verticalAlign=top;fontStyle=1;strokeColor=#10739E;"); +u.vertex=!0;var t=new mxCell("3",new mxGeometry(80,60,30,30),"ellipse;whiteSpace=wrap;html=1;aspect=fixed;shadow=0;strokeColor=none;fillColor=#AE4132;fontSize=17;fontColor=#FFFFFF;align=center;fontStyle=1;rounded=0;");t.vertex=!0;return sb.createVertexTemplateFromCells([a,b,d,f,g,h,k,l,m,q,r,n,p,u,t],360,215,"Swirl")}),this.addEntry("callout",function(){var a=new mxCell("Label",new mxGeometry(0,0,0,0),"endArrow=oval;html=1;fontSize=16;fontColor=#10739E;endFill=0;endSize=24;strokeWidth=5;labelBackgroundColor=none;verticalAlign=top;fontStyle=1;strokeColor=#10739E;"); a.geometry.setTerminalPoint(new mxPoint(0,100),!0);a.geometry.setTerminalPoint(new mxPoint(100,0),!1);a.geometry.x=-1;a.geometry.relative=!0;a.edge=!0;return sb.createVertexTemplateFromCells([a],100,100,"Callout")}),this.addEntry("roadmap vertical",function(){var a=new mxCell("",new mxGeometry(234,0,12,12),"ellipse;whiteSpace=wrap;html=1;aspect=fixed;shadow=0;fillColor=none;strokeColor=#333333;fontSize=16;fontColor=#000000;align=center;strokeWidth=2;");a.vertex=!0;var b=new mxCell("",new mxGeometry(234, -498,12,12),"ellipse;whiteSpace=wrap;html=1;aspect=fixed;shadow=0;fillColor=none;strokeColor=#333333;fontSize=16;fontColor=#000000;align=center;strokeWidth=2;");b.vertex=!0;var c=new mxCell("",new mxGeometry(0,0,0,0),"endArrow=none;html=1;strokeWidth=3;strokeColor=#CCCCCC;labelBackgroundColor=none;fontSize=16;fontColor=#000000;");c.geometry.relative=!0;c.edge=!0;a.insertEdge(c,!0);b.insertEdge(c,!1);var d=new mxCell("",new mxGeometry(0,30,246,60),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.infographic.circularCallout2;dy=15;fillColor=#ffffff;strokeColor=#10739E;labelPosition=center;align=center;fontColor=#10739E;fontStyle=1;fontSize=24;shadow=0;direction=north;"); -d.vertex=!0;var g=new mxCell("",new mxGeometry(234,100,246,60),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.infographic.circularCallout2;dy=15;fillColor=#ffffff;strokeColor=#F2931E;labelPosition=center;align=center;fontColor=#F2931E;fontStyle=1;fontSize=24;shadow=0;direction=north;flipH=1;");g.vertex=!0;var h=new mxCell("",new mxGeometry(0,170,246,60),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.infographic.circularCallout2;dy=15;fillColor=#ffffff;strokeColor=#AE4132;labelPosition=center;align=center;fontColor=#10739E;fontStyle=1;fontSize=24;shadow=0;direction=north;"); +498,12,12),"ellipse;whiteSpace=wrap;html=1;aspect=fixed;shadow=0;fillColor=none;strokeColor=#333333;fontSize=16;fontColor=#000000;align=center;strokeWidth=2;");b.vertex=!0;var d=new mxCell("",new mxGeometry(0,0,0,0),"endArrow=none;html=1;strokeWidth=3;strokeColor=#CCCCCC;labelBackgroundColor=none;fontSize=16;fontColor=#000000;");d.geometry.relative=!0;d.edge=!0;a.insertEdge(d,!0);b.insertEdge(d,!1);var f=new mxCell("",new mxGeometry(0,30,246,60),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.infographic.circularCallout2;dy=15;fillColor=#ffffff;strokeColor=#10739E;labelPosition=center;align=center;fontColor=#10739E;fontStyle=1;fontSize=24;shadow=0;direction=north;"); +f.vertex=!0;var g=new mxCell("",new mxGeometry(234,100,246,60),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.infographic.circularCallout2;dy=15;fillColor=#ffffff;strokeColor=#F2931E;labelPosition=center;align=center;fontColor=#F2931E;fontStyle=1;fontSize=24;shadow=0;direction=north;flipH=1;");g.vertex=!0;var h=new mxCell("",new mxGeometry(0,170,246,60),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.infographic.circularCallout2;dy=15;fillColor=#ffffff;strokeColor=#AE4132;labelPosition=center;align=center;fontColor=#10739E;fontStyle=1;fontSize=24;shadow=0;direction=north;"); h.vertex=!0;var k=new mxCell("",new mxGeometry(234,240,246,60),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.infographic.circularCallout2;dy=15;fillColor=#ffffff;strokeColor=#23445D;labelPosition=center;align=center;fontColor=#10739E;fontStyle=1;fontSize=24;shadow=0;direction=north;flipH=1;");k.vertex=!0;var l=new mxCell("",new mxGeometry(0,310,246,60),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.infographic.circularCallout2;dy=15;fillColor=#ffffff;strokeColor=#12AAB5;labelPosition=center;align=center;fontColor=#10739E;fontStyle=1;fontSize=24;shadow=0;direction=north;"); l.vertex=!0;var m=new mxCell("",new mxGeometry(234,380,246,60),"verticalLabelPosition=middle;verticalAlign=middle;html=1;shape=mxgraph.infographic.circularCallout2;dy=15;fillColor=#ffffff;strokeColor=#56517E;labelPosition=center;align=center;fontColor=#10739E;fontStyle=1;fontSize=24;shadow=0;direction=north;flipH=1;");m.vertex=!0;var q=new mxCell("Label",new mxGeometry(70,20,160,30),"fillColor=#10739E;strokecolor=none;rounded=1;fontColor=#FFFFFF;strokeColor=none;fontStyle=1;fontSize=14;");q.vertex= !0;var r=new mxCell("Label",new mxGeometry(250,85,160,30),"fillColor=#F2931E;strokecolor=none;rounded=1;fontColor=#FFFFFF;strokeColor=none;fontStyle=1;fontSize=14;");r.vertex=!0;var n=new mxCell("Label",new mxGeometry(70,160,160,30),"fillColor=#AE4132;strokecolor=none;rounded=1;fontColor=#FFFFFF;strokeColor=none;fontStyle=1;fontSize=14;");n.vertex=!0;var p=new mxCell("Label",new mxGeometry(250,225,160,30),"fillColor=#23445D;strokecolor=none;rounded=1;fontColor=#FFFFFF;strokeColor=none;fontStyle=1;fontSize=14;"); @@ -6057,16 +6058,16 @@ p.vertex=!0;var u=new mxCell("Label",new mxGeometry(70,300,160,30),"fillColor=#1 new mxGeometry(70,70,160,70),"rounded=1;strokeColor=none;fillColor=#EEEEEE;align=center;arcSize=12;verticalAlign=top;whiteSpace=wrap;html=1;fontSize=12;");y.vertex=!0;var x=new mxCell('<font style="font-size: 10px"><font style="font-size: 12px" color="#F2931E"><b>Label</b></font><br><br><font size="1">Lorem ipsum dolor sit amet, consectetur adipisicing elit</font></font>',new mxGeometry(250,140,160,70),"rounded=1;strokeColor=none;fillColor=#EEEEEE;align=center;arcSize=12;verticalAlign=top;whiteSpace=wrap;html=1;fontSize=12;"); x.vertex=!0;var w=new mxCell('<font style="font-size: 10px"><font style="font-size: 12px" color="#AE4132"><b>Label</b></font><br><br><font size="1">Lorem ipsum dolor sit amet, consectetur adipisicing elit</font></font>',new mxGeometry(70,210,160,70),"rounded=1;strokeColor=none;fillColor=#EEEEEE;align=center;arcSize=12;verticalAlign=top;whiteSpace=wrap;html=1;fontSize=12;");w.vertex=!0;var v=new mxCell('<font style="font-size: 10px"><font style="font-size: 12px" color="#23445D"><b>Label</b></font><br><br><font size="1">Lorem ipsum dolor sit amet, consectetur adipisicing elit</font></font>', new mxGeometry(250,280,160,70),"rounded=1;strokeColor=none;fillColor=#EEEEEE;align=center;arcSize=12;verticalAlign=top;whiteSpace=wrap;html=1;fontSize=12;");v.vertex=!0;var z=new mxCell('<font style="font-size: 10px"><font style="font-size: 12px" color="#12AAB5"><b>Label</b></font><br><br><font size="1">Lorem ipsum dolor sit amet, consectetur adipisicing elit</font></font>',new mxGeometry(70,350,160,70),"rounded=1;strokeColor=none;fillColor=#EEEEEE;align=center;arcSize=12;verticalAlign=top;whiteSpace=wrap;html=1;fontSize=12;"); -z.vertex=!0;var A=new mxCell('<font style="font-size: 10px"><font style="font-size: 12px" color="#56517E"><b>Label</b></font><br><br><font size="1">Lorem ipsum dolor sit amet, consectetur adipisicing elit</font></font>',new mxGeometry(250,420,160,70),"rounded=1;strokeColor=none;fillColor=#EEEEEE;align=center;arcSize=12;verticalAlign=top;whiteSpace=wrap;html=1;fontSize=12;");A.vertex=!0;return sb.createVertexTemplateFromCells([c,a,b,d,g,h,k,l,m,q,r,n,p,u,t,y,x,w,v,z,A],480,510,"Roadmap (vertical)")}), -this.addEntry("roadmap horizontal",function(){var a=new mxCell("",new mxGeometry(0,90,840,30),"fillColor=#dddddd;rounded=0;strokeColor=none;");a.vertex=!0;var b=new mxCell("Label",new mxGeometry(40,80,120,50),"shape=mxgraph.infographic.ribbonSimple;notch1=0;notch2=10;notch=0;html=1;fillColor=#10739E;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=left;spacingLeft=10;fontStyle=1;");b.vertex=!0;var c=new mxCell("Label",new mxGeometry(200,80,120,50),"shape=mxgraph.infographic.ribbonSimple;notch1=0;notch2=10;notch=0;html=1;fillColor=#F2931E;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=left;spacingLeft=10;fontStyle=1;"); -c.vertex=!0;var d=new mxCell("Label",new mxGeometry(360,80,120,50),"shape=mxgraph.infographic.ribbonSimple;notch1=0;notch2=10;notch=0;html=1;fillColor=#AE4132;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=left;spacingLeft=10;fontStyle=1;");d.vertex=!0;var g=new mxCell("Label",new mxGeometry(520,80,120,50),"shape=mxgraph.infographic.ribbonSimple;notch1=0;notch2=10;notch=0;html=1;fillColor=#23445D;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=left;spacingLeft=10;fontStyle=1;"); +z.vertex=!0;var A=new mxCell('<font style="font-size: 10px"><font style="font-size: 12px" color="#56517E"><b>Label</b></font><br><br><font size="1">Lorem ipsum dolor sit amet, consectetur adipisicing elit</font></font>',new mxGeometry(250,420,160,70),"rounded=1;strokeColor=none;fillColor=#EEEEEE;align=center;arcSize=12;verticalAlign=top;whiteSpace=wrap;html=1;fontSize=12;");A.vertex=!0;return sb.createVertexTemplateFromCells([d,a,b,f,g,h,k,l,m,q,r,n,p,u,t,y,x,w,v,z,A],480,510,"Roadmap (vertical)")}), +this.addEntry("roadmap horizontal",function(){var a=new mxCell("",new mxGeometry(0,90,840,30),"fillColor=#dddddd;rounded=0;strokeColor=none;");a.vertex=!0;var b=new mxCell("Label",new mxGeometry(40,80,120,50),"shape=mxgraph.infographic.ribbonSimple;notch1=0;notch2=10;notch=0;html=1;fillColor=#10739E;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=left;spacingLeft=10;fontStyle=1;");b.vertex=!0;var d=new mxCell("Label",new mxGeometry(200,80,120,50),"shape=mxgraph.infographic.ribbonSimple;notch1=0;notch2=10;notch=0;html=1;fillColor=#F2931E;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=left;spacingLeft=10;fontStyle=1;"); +d.vertex=!0;var f=new mxCell("Label",new mxGeometry(360,80,120,50),"shape=mxgraph.infographic.ribbonSimple;notch1=0;notch2=10;notch=0;html=1;fillColor=#AE4132;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=left;spacingLeft=10;fontStyle=1;");f.vertex=!0;var g=new mxCell("Label",new mxGeometry(520,80,120,50),"shape=mxgraph.infographic.ribbonSimple;notch1=0;notch2=10;notch=0;html=1;fillColor=#23445D;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=left;spacingLeft=10;fontStyle=1;"); g.vertex=!0;var h=new mxCell("Label",new mxGeometry(680,80,120,50),"shape=mxgraph.infographic.ribbonSimple;notch1=0;notch2=10;notch=0;html=1;fillColor=#12AAB5;strokeColor=none;shadow=0;fontSize=17;fontColor=#FFFFFF;align=left;spacingLeft=10;fontStyle=1;");h.vertex=!0;var k=new mxCell('<font style="font-size: 10px"><font style="font-size: 12px" color="#10739E"><b>Label</b></font><br><br><font size="1">Lorem ipsum dolor sit amet, consectetur adipisicing elit</font></font>',new mxGeometry(0,0,200,70), "rounded=1;strokeColor=none;fillColor=#DDDDDD;align=center;arcSize=12;verticalAlign=top;whiteSpace=wrap;html=1;fontSize=12;");k.vertex=!0;var l=new mxCell('<font style="font-size: 10px"><font style="font-size: 12px" color="#F2931E"><b>Label</b></font><br><br><font size="1">Lorem ipsum dolor sit amet, consectetur adipisicing elit</font></font>',new mxGeometry(160,140,200,70),"rounded=1;strokeColor=none;fillColor=#DDDDDD;align=center;arcSize=12;verticalAlign=top;whiteSpace=wrap;html=1;fontSize=12;"); l.vertex=!0;var m=new mxCell('<font style="font-size: 10px"><font style="font-size: 12px" color="#AE4132"><b>Label</b></font><br><br><font size="1">Lorem ipsum dolor sit amet, consectetur adipisicing elit</font></font>',new mxGeometry(320,0,200,70),"rounded=1;strokeColor=none;fillColor=#DDDDDD;align=center;arcSize=12;verticalAlign=top;whiteSpace=wrap;html=1;fontSize=12;");m.vertex=!0;var q=new mxCell('<font style="font-size: 10px"><font style="font-size: 12px" color="#23445D"><b>Label</b></font><br><br><font size="1">Lorem ipsum dolor sit amet, consectetur adipisicing elit</font></font>', new mxGeometry(480,140,200,70),"rounded=1;strokeColor=none;fillColor=#DDDDDD;align=center;arcSize=12;verticalAlign=top;whiteSpace=wrap;html=1;fontSize=12;");q.vertex=!0;var r=new mxCell('<font style="font-size: 10px"><font style="font-size: 12px" color="#12AAB5"><b>Label</b></font><br><br><font size="1">Lorem ipsum dolor sit amet, consectetur adipisicing elit</font></font>',new mxGeometry(640,0,200,70),"rounded=1;strokeColor=none;fillColor=#DDDDDD;align=center;arcSize=12;verticalAlign=top;whiteSpace=wrap;html=1;fontSize=12;"); -r.vertex=!0;return sb.createVertexTemplateFromCells([a,b,c,d,g,h,k,l,m,q,r],840,210,"Roadmap (horizontal)")}),this.addEntry("flower",function(){var a=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit",new mxGeometry(0,0,150,150),"shape=mxgraph.basic.diag_round_rect;dx=37;flipH=1;html=1;fillColor=#10739E;strokeColor=none;shadow=0;fontSize=12;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;strokeWidth=8;");a.vertex=!0;var b=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit", -new mxGeometry(160,0,150,150),"shape=mxgraph.basic.diag_round_rect;dx=37;html=1;fillColor=#F2931E;strokeColor=none;shadow=0;fontSize=12;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;strokeWidth=8;");b.vertex=!0;var c=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit",new mxGeometry(0,160,150,150),"shape=mxgraph.basic.diag_round_rect;dx=37;flipH=1;flipV=1;html=1;fillColor=#AE4132;strokeColor=none;shadow=0;fontSize=12;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;strokeWidth=8;"); -c.vertex=!0;var d=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit",new mxGeometry(160,160,150,150),"shape=mxgraph.basic.diag_round_rect;dx=37;flipV=1;html=1;fillColor=#23445D;strokeColor=none;shadow=0;fontSize=12;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;strokeWidth=8;");d.vertex=!0;return sb.createVertexTemplateFromCells([a,b,c,d],310,310,"Flower")})])}})();(function(){Sidebar.prototype.addIosPalette=function(){sb=this;var a=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;html=1;shadow=0;dashed=0;strokeWidth=1;shape=mxgraph.ios.",d=mxConstants.STYLE_STROKEWIDTH+"=1;html=1;shadow=0;dashed=0;shape=mxgraph.ios.",e=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=top;html=1;shadow=0;dashed=0;"+mxConstants.STYLE_VERTICAL_ALIGN+"=bottom;strokeWidth=1;shape=mxgraph.ios.",b=[this.createVertexTemplateEntry(a+"iPhone;bgStyle=bgGreen;fillColor=#aaaaaa;", +r.vertex=!0;return sb.createVertexTemplateFromCells([a,b,d,f,g,h,k,l,m,q,r],840,210,"Roadmap (horizontal)")}),this.addEntry("flower",function(){var a=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit",new mxGeometry(0,0,150,150),"shape=mxgraph.basic.diag_round_rect;dx=37;flipH=1;html=1;fillColor=#10739E;strokeColor=none;shadow=0;fontSize=12;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;strokeWidth=8;");a.vertex=!0;var b=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit", +new mxGeometry(160,0,150,150),"shape=mxgraph.basic.diag_round_rect;dx=37;html=1;fillColor=#F2931E;strokeColor=none;shadow=0;fontSize=12;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;strokeWidth=8;");b.vertex=!0;var d=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit",new mxGeometry(0,160,150,150),"shape=mxgraph.basic.diag_round_rect;dx=37;flipH=1;flipV=1;html=1;fillColor=#AE4132;strokeColor=none;shadow=0;fontSize=12;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;strokeWidth=8;"); +d.vertex=!0;var f=new mxCell("Lorem ipsum dolor sit amet, consectetur adipisicing elit",new mxGeometry(160,160,150,150),"shape=mxgraph.basic.diag_round_rect;dx=37;flipV=1;html=1;fillColor=#23445D;strokeColor=none;shadow=0;fontSize=12;fontColor=#FFFFFF;align=center;fontStyle=0;whiteSpace=wrap;strokeWidth=8;");f.vertex=!0;return sb.createVertexTemplateFromCells([a,b,d,f],310,310,"Flower")})])}})();(function(){Sidebar.prototype.addIosPalette=function(){sb=this;var a=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;html=1;shadow=0;dashed=0;strokeWidth=1;shape=mxgraph.ios.",b=mxConstants.STYLE_STROKEWIDTH+"=1;html=1;shadow=0;dashed=0;shape=mxgraph.ios.",e=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=top;html=1;shadow=0;dashed=0;"+mxConstants.STYLE_VERTICAL_ALIGN+"=bottom;strokeWidth=1;shape=mxgraph.ios.",c=[this.createVertexTemplateEntry(a+"iPhone;bgStyle=bgGreen;fillColor=#aaaaaa;", 200,400,"","iPhone (portrait)",null,null,null),this.createVertexTemplateEntry(a+"iPhone;direction=north;bgStyle=bgGreen;fillColor=#aaaaaa;",400,200,"","iPhone (landscape)",null,null,null),this.createVertexTemplateEntry(a+"iPad;bgStyle=bgGreen;fillColor=#aaaaaa;",200*2.425,625,"","iPad (portrait)",null,null,null),this.createVertexTemplateEntry(a+"iPad;direction=north;bgStyle=bgGreen;fillColor=#aaaaaa;",625,200*2.425,"","iPad (landscape)",null,null,null),this.createVertexTemplateEntry(a+"iBgFlat;strokeColor=#18211b;fillColor=#ffffff;", 175,280,"","iPad background (white)",null,null,null),this.createVertexTemplateEntry(a+"iBgFlat;strokeColor=#18211b;fillColor=#1f2923;",175,280,"","iPad background (green)",null,null,null),this.createVertexTemplateEntry(a+"iBgFlat;strokeColor=#18211b;fillColor=#dddddd;",175,280,"","iPad background (gray)",null,null,null),this.createVertexTemplateEntry(a+"iBgStriped;strokeColor=#18211b;fillColor=#5D7585;strokeColor2=#657E8F;",175,280,"","iPad background (striped)",null,null,null),this.createVertexTemplateEntry(a+ "iBgMap;strokeColor=#18211b;fillColor=#ffffff;strokeColor2=#008cff;fillColor2=#96D1FF;",175,280,"","iPad background (map)",null,null,null),this.addDataEntry(null,165,50,"Button bar","3ZfdboIwFMefhltSKCjeIptZsl3tCTqo0KxQUurUPf0OpfgJiVN0OowJ55z20P7Ov01r4Wm+mklSZm8iodzCTxaeSiFU85avppRzy0UssXBkuS6Cv+U+90QdHUUlkbRQp3Rwmw5fhC9o42kclVpz48hUDsOKHAuHVUYSsQQDgZGQKqOJMSBS1u3zVVrPxWaisqWkMQwilO/su475dTslxSedCi6kzo49/UBkzjjf8c/1A37IlzCYTRsrRAHJQjNuKhVd9c5du8zEZ1TkVMk1NFmyRGWmxchvumWUpZnp5jfMEKkaO9103ZKEFwOzGyw+AvuiaA4eZzjASpThQilRHEDeRWlwHXGPvfoHEcJZCgkiTud1saqSxKxIX7UVOfWn56JQJntgzJ1EI/2cWhH3vIo4ru1fXhOvQ+yjVG3GPkRNSBFnNZpDTBvemqb5kHMqNtyNre3gGcGu9xLsQkUdTAdQud+ncny9bQQ9pMJNaVpitxH86GEF79+p4Md9gveGI/ohYE/P/8nObiqEx/ZNlR88rPLHd6r8SZ/yr3hiPNzqAa4fjf3g+CRpFsOlku89dUIMoSDWsQGWw1bkt1kOrQAecD1M7nQ9OE4H0r+/Ov3menTmYfyM6xGY2zutju1deX8A"), @@ -6074,791 +6075,451 @@ this.createVertexTemplateEntry(a+"iButtonBar;buttonText=Item 1,+Item 2,Item 3,It b.vertex=!0;a.insert(b);b=new mxCell("11:55PM",new mxGeometry(60,2,50,13),"html=1;shadow=0;dashed=0;shape=mxgraph.ios.rect;fontSize=8;strokeColor=none;fillColor=none;");b.vertex=!0;a.insert(b);return sb.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,"App bar (portrait)")}),this.addEntry(null,function(){var a=new mxCell("",new mxGeometry(0,0,280,15),"html=1;shadow=0;dashed=0;shape=mxgraph.ios.iAppBar;strokeWidth=1;");a.vertex=!0;var b=new mxCell("CARRIER",new mxGeometry(0,2,50, 13),"html=1;shadow=0;dashed=0;shape=mxgraph.ios.anchor;align=left;fontSize=8;spacingLeft=18;");b.vertex=!0;a.insert(b);b=new mxCell("11:55PM",new mxGeometry(115,2,50,13),"html=1;shadow=0;dashed=0;shape=mxgraph.ios.rect;fontSize=8;strokeColor=none;fillColor=none;");b.vertex=!0;a.insert(b);return sb.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,"App bar (landscape)")}),this.addEntry(null,function(){var a=new mxCell("",new mxGeometry(0,0,175,15),"html=1;shadow=0;dashed=0;shape=mxgraph.ios.iTopBar2;opacity=50;fillColor=#999999;strokeColor=#cccccc;strokeWidth=1;"); a.vertex=!0;var b=new mxCell("CARRIER",new mxGeometry(0,2,50,13),"html=1;shadow=0;dashed=0;shape=mxgraph.ios.rect;align=left;fontSize=7.5;spacingLeft=18;fontColor=#cccccc;textOpacity=50;strokeColor=none;fillColor=none;");b.vertex=!0;a.insert(b);b=new mxCell("11:15AM",new mxGeometry(60,2,50,13),"html=1;shadow=0;dashed=0;shape=mxgraph.ios.rect;fontSize=7.5;fontColor=#cccccc;textOpacity=50;strokeColor=none;fillColor=none;");b.vertex=!0;a.insert(b);return sb.createVertexTemplateFromCells([a],a.geometry.width, -a.geometry.height,"Top bar")}),this.addEntry(null,function(){var a=new mxCell("",new mxGeometry(0,0,175,15),"html=1;shadow=0;dashed=0;shape=mxgraph.ios.iTopBarLocked;strokeWidth=1;");a.vertex=!0;var b=new mxCell("CARRIER",new mxGeometry(0,2,50,13),"html=1;shadow=0;dashed=0;shape=mxgraph.ios.anchor;align=left;fontSize=7.5;spacingLeft=18;fontColor=#cccccc;");b.vertex=!0;a.insert(b);return sb.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,"Top bar locked")}),this.createVertexTemplateEntry(d+ -"iButton;strokeColor=#444444;fontColor=#ffffff;buttonText=;fontSize=8;fillColor=#dddddd;fillColor2=#3D5565;whiteSpace=wrap;align=center;",43.5,15,"Button","Button",null,null,null),this.createVertexTemplateEntry(d+"iButtonBack;strokeColor=#444444;fontColor=#ffffff;buttonText=;fontSize=8;fillColor=#dddddd;fillColor2=#3D5565;spacingLeft=10;whiteSpace=wrap;align=center;",43.5,15,"Button","Back button",null,null,null),this.createVertexTemplateEntry(d+"iButtonFw;strokeColor=#444444;fontColor=#ffffff;buttonText=;fontSize=8;fillColor=#dddddd;fillColor2=#3D5565;spacingRight=10;whiteSpace=wrap;align=center;", -43.5,15,"Button","Forward button",null,null,null),this.createVertexTemplateEntry(a+"iPrevNext;strokeColor=#444444;fillColor=#dddddd;fillColor2=#3D5565;fillColor3=#ffffff;align=center;",43.5,15,"","Prev/next button",null,null,null),this.createVertexTemplateEntry(d+"iTextInput;strokeColor=#444444;fontColor=#000000;buttonText=;fontSize=8;fillColor=#ffffff;whiteSpace=wrap;align=left;",43.5,15,"Default text","Text input",null,null,null),this.addDataEntry(null,165,50,"Radio Buttons","7VbbbsIwDP2avqI2AcTrgI2XTZu2/UAgpo2WNlWSMdjXz0kMu0AlNLa9jEiV6nNsyz6nkZrxSb2eWdFWN0aCzvhlxifWGJ/e6vUEtM5YrmTGpxljOT4Zu+pgi8jmrbDQ+GMKWCpYCf0MCUmA8xtNQOVrHGtaZHzsKiHNCwY5BlK4CiQFyLQhv16XYZeeMq5nLSxwiLF9UK+B4yHPW/MEE6ONjd35MB5klkrrD/gyHsSxn1S4zZZrTAOhKSyerVMruAeX2ue0ClgP6045IkRazMDU4O0GU16U9BVlDAeprAJVVlQ2oO7Cpbjclb6Liy+k72Gt+Z7Wt61XpkGs2FN9Kyi2UK1LG+OiYq6BJP8imIwHcaFV2SCmYRnUd61YqKa8jtGUhULTeLJkROEhQ7SYg74zTsUZ+dQmNcZBYLUQ+voLXyspw3C7hAsaZEfQKI+mpa/hKMfYYceogPXIrQ2JvI0/OHrIz9Pt7HfbuX+JznZ+z85i+EduDrrd5Ke72Y/n37vJRn92O4fdfvbPt/OH/OwXv+Mmhu+/QJH79If0Bg=="), +a.geometry.height,"Top bar")}),this.addEntry(null,function(){var a=new mxCell("",new mxGeometry(0,0,175,15),"html=1;shadow=0;dashed=0;shape=mxgraph.ios.iTopBarLocked;strokeWidth=1;");a.vertex=!0;var b=new mxCell("CARRIER",new mxGeometry(0,2,50,13),"html=1;shadow=0;dashed=0;shape=mxgraph.ios.anchor;align=left;fontSize=7.5;spacingLeft=18;fontColor=#cccccc;");b.vertex=!0;a.insert(b);return sb.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,"Top bar locked")}),this.createVertexTemplateEntry(b+ +"iButton;strokeColor=#444444;fontColor=#ffffff;buttonText=;fontSize=8;fillColor=#dddddd;fillColor2=#3D5565;whiteSpace=wrap;align=center;",43.5,15,"Button","Button",null,null,null),this.createVertexTemplateEntry(b+"iButtonBack;strokeColor=#444444;fontColor=#ffffff;buttonText=;fontSize=8;fillColor=#dddddd;fillColor2=#3D5565;spacingLeft=10;whiteSpace=wrap;align=center;",43.5,15,"Button","Back button",null,null,null),this.createVertexTemplateEntry(b+"iButtonFw;strokeColor=#444444;fontColor=#ffffff;buttonText=;fontSize=8;fillColor=#dddddd;fillColor2=#3D5565;spacingRight=10;whiteSpace=wrap;align=center;", +43.5,15,"Button","Forward button",null,null,null),this.createVertexTemplateEntry(a+"iPrevNext;strokeColor=#444444;fillColor=#dddddd;fillColor2=#3D5565;fillColor3=#ffffff;align=center;",43.5,15,"","Prev/next button",null,null,null),this.createVertexTemplateEntry(b+"iTextInput;strokeColor=#444444;fontColor=#000000;buttonText=;fontSize=8;fillColor=#ffffff;whiteSpace=wrap;align=left;",43.5,15,"Default text","Text input",null,null,null),this.addDataEntry(null,165,50,"Radio Buttons","7VbbbsIwDP2avqI2AcTrgI2XTZu2/UAgpo2WNlWSMdjXz0kMu0AlNLa9jEiV6nNsyz6nkZrxSb2eWdFWN0aCzvhlxifWGJ/e6vUEtM5YrmTGpxljOT4Zu+pgi8jmrbDQ+GMKWCpYCf0MCUmA8xtNQOVrHGtaZHzsKiHNCwY5BlK4CiQFyLQhv16XYZeeMq5nLSxwiLF9UK+B4yHPW/MEE6ONjd35MB5klkrrD/gyHsSxn1S4zZZrTAOhKSyerVMruAeX2ue0ClgP6045IkRazMDU4O0GU16U9BVlDAeprAJVVlQ2oO7Cpbjclb6Liy+k72Gt+Z7Wt61XpkGs2FN9Kyi2UK1LG+OiYq6BJP8imIwHcaFV2SCmYRnUd61YqKa8jtGUhULTeLJkROEhQ7SYg74zTsUZ+dQmNcZBYLUQ+voLXyspw3C7hAsaZEfQKI+mpa/hKMfYYceogPXIrQ2JvI0/OHrIz9Pt7HfbuX+JznZ+z85i+EduDrrd5Ke72Y/n37vJRn92O4fdfvbPt/OH/OwXv+Mmhu+/QJH79If0Bg=="), this.addDataEntry(null,165,50,"Checkboxes","7ZZbT8IwFMc/zV7J1gLBRxnKCyZG/AJlPWyN3bq0RYef3tOLeGEQEoUXbbKk55rT/29NmtC87uaatdWd4iATepPQXCtlw67ucpAyIangCZ0lhKT4JeT2QDTz0bRlGhp7SgEJBc9MbiB4gsPYrYyOytY41ixL6NRUjKsXNFI0ODMV8GhgpHX5dVe6swyEMgOtocAhpnopXl2Mujyr1RPkSirtu9OxXxhZCyk/+dd+oR/7cYGneY81qgHXFIqNNuIZHsCE9m6MeBrQFrqDinhXlGMOqgart5jyIritYsZ4FMoqEGUVy0ZByZSZYJe70g99cRMl7peb7sm9BGtFU6IzO5/y6b6+3C/0MynKBn0S1q7EtKzAeRbemhFXqBob+0yi2cdPshXIe2WEFcr100G5qYMhCiYX3+K14NwddJdwHQfZBeIoj6qNP89JdEk/3VhABpHsNgJ5tz/R72P/c/TDI+jPeOn+0R9Cn40vRH50hDz9PfJFBcXTSnX7wK/8+vPAyeRil318BPnw/7Jfnv0wOw95ND8eaz725S33Bg=="), -this.createVertexTemplateEntry(d+"iComboBox;spacingTop=2;spacingLeft=2;align=left;strokeColor=#444444;fontColor=#666666;buttonText=;fontSize=8;fillColor=#dddddd;fillColor2=#3D5565;",200*.29,15,"Option 1","Combobox",null,null,null),this.createVertexTemplateEntry(d+"iOnOffButton;mainText=;strokeColor=#444444;fontSize=9;fontColor=#ffffff;spacingRight=14;buttonState=on",43.5,15,"ON","On-off button",null,null,null),this.createVertexTemplateEntry(d+"iTextInput;strokeColor=#444444;fontColor=#000000;align=left;buttonText=;fontSize=8;fillColor=#ffffff;", +this.createVertexTemplateEntry(b+"iComboBox;spacingTop=2;spacingLeft=2;align=left;strokeColor=#444444;fontColor=#666666;buttonText=;fontSize=8;fillColor=#dddddd;fillColor2=#3D5565;",200*.29,15,"Option 1","Combobox",null,null,null),this.createVertexTemplateEntry(b+"iOnOffButton;mainText=;strokeColor=#444444;fontSize=9;fontColor=#ffffff;spacingRight=14;buttonState=on",43.5,15,"ON","On-off button",null,null,null),this.createVertexTemplateEntry(b+"iTextInput;strokeColor=#444444;fontColor=#000000;align=left;buttonText=;fontSize=8;fillColor=#ffffff;", 43.5,15,"********","Password field",null,null,null),this.addDataEntry(null,150,100,"Alert Box","rVVNb6MwEP01PjaycdI2x02629NKq+awZwsGbNXYyHYb6K/fMTgNCLJKP5CQmDdf9nszgvB93T460cjftgBN+E/C987aMHzV7R60JhlVBeEPJMsoviT7dcHLei9thAMTrknIhoRXoV9gQH5ocAGhAnzuVBOUNWgFaBG8JRlnlPDdkpN6yK0p8EMrA0NdHzqd6spQ4+0eGGZ7KQp7RKMvJbyEIhnoaWJ83VaRkpWyflUKk3dPT5DjhXbuoN5iwH0MDs4+w95q6/oWvOgf9JRK6xG+3t6xbczAooVCZkY+tuXsNvpsI3IVulg7nqS0k7CyfxKezrBF8yhVgAOmRuCIZ0ZMaFUZNHPsBJi/Sxwjr9Be1KmHkkiPYGsIrsOQoyqCTBGbQUsqQVXylEYTKPwAVO+5Z9nxIym/PAV8NgWHWEQqU8V2omnAoEbfJikqKiOzYzYZ/w/rSzQ78Jj5N/HDruU5+xzP2WbAHGgR1CtM6n+F+/WM+91LCHGvvott56a7w+djfIn32Yqd9+D6Fcs3OQCbr9iSqF+RMCXQVZKqmxQYCXy/pC/9oL6p/x+rTDg3v1nTSfOb09ycStiy9BBmA/J+jaWZQfP8RxjCxz+Mfw=="), this.addDataEntry(null,150,100,"Dialog Box","7VZNb6MwEP01PjbCdkk315BuD6vVrprDni08YKsGs8ZtQn99x+A0IJJVtu2pKhKS59P2e28QhGfV/s6JRv20Egzht4Rnzlo/rKp9BsYQlmhJ+IYwluBL2PczUdpHk0Y4qP0lBWwoeBLmEQbPRgtjS/T9fYTWa1vj0sPeE7YkjNOE8PUskrSQ21riwugahpat70xsqXyFF9tQLG2VkHaHRugjRatARgMjTciv9mVAY6FtuyhEnXf395DjXdZuq59DwreQ7J19gMwa6/otuOwfjBTamJH/enVDV6ECm0qNoIxidMXpMsRsI3Ltu9A7nKSwk7Sif6I/nmGF5k5pD1ssDY4dnhl9wuiyRjPHnQDr1xFecAjUWYp6V+TnDmwF3nWYstPSq5iRDjQmCnSpDmVJdIp2cJSvtUfGcRFJPy0APhPANjRRug4aQE4aqJGjD6MUGVUB2TGalP8D9VMwO2ix8k/Eh16KM3sbziwdfA6M8PoJJv3fg/31DPsM4cGPwIeh7dx0dvhcxudwn43YcQ4uH7E8zQHofMROkfoeCmNBsjhw1U06jBhepicITv6T4HiA31bX/rj7FWeL6fZXh+McmtiiaMHPNPJ6k4tkk85k8+vHl2TeLJmbzycZNI+/EEP6+A/jBQ=="), -this.createVertexTemplateEntry(d+"iLockButton;fontColor=#cccccc;fontSize=13;mainText=;spacingLeft=50;spacingRight=10;align=center;",174,50,"slide to unlock","Lock button",null,null,null),this.createVertexTemplateEntry(a+"iArrowIcon;fillColor=#8BbEff;fillColor2=#135Ec8;strokeColor=#ffffff;",15,15,"","Arrow",null,null,null),this.createVertexTemplateEntry(a+"iDeleteIcon;fillColor=#e8878E;fillColor2=#BD1421;strokeColor=#ffffff;",15,15,"","Delete",null,null,null),this.createVertexTemplateEntry(a+"iAddIcon;fillColor=#7AdF78;fillColor2=#1A9917;strokeColor=#ffffff;", +this.createVertexTemplateEntry(b+"iLockButton;fontColor=#cccccc;fontSize=13;mainText=;spacingLeft=50;spacingRight=10;align=center;",174,50,"slide to unlock","Lock button",null,null,null),this.createVertexTemplateEntry(a+"iArrowIcon;fillColor=#8BbEff;fillColor2=#135Ec8;strokeColor=#ffffff;",15,15,"","Arrow",null,null,null),this.createVertexTemplateEntry(a+"iDeleteIcon;fillColor=#e8878E;fillColor2=#BD1421;strokeColor=#ffffff;",15,15,"","Delete",null,null,null),this.createVertexTemplateEntry(a+"iAddIcon;fillColor=#7AdF78;fillColor2=#1A9917;strokeColor=#ffffff;", 15,15,"","Add",null,null,null),this.createVertexTemplateEntry(a+"iInfoIcon;fillColor=#8BbEff;fillColor2=#135Ec8;strokeColor=#ffffff;",15,15,"","Info",null,null,null),this.createVertexTemplateEntry(a+"iSortFindIcon;fillColor=#8BbEff;fillColor2=#135Ec8;strokeColor=#ffffff;",15,15,"","Sort/find",null,null,null),this.createVertexTemplateEntry(a+"iCheckIcon;fillColor=#e8878E;fillColor2=#BD1421;strokeColor=#ffffff;",15,15,"","Check",null,null,null),this.createVertexTemplateEntry(a+"iKeybLett;",174,100, -"","Keyboard (letters)",null,null,null),this.createVertexTemplateEntry(a+"iKeybNumb;",174,100,"","Keyboard (numbers)",null,null,null),this.createVertexTemplateEntry(a+"iKeybSymb;",174,100,"","Keyboard (symbols)",null,null,null),this.createVertexTemplateEntry(a+"iDeleteApp;fillColor=#cccccc;fillColor2=#000000;strokeColor=#ffffff;",15,15,"","Delete app",null,null,null),this.createVertexTemplateEntry(a+"iDir;",100,100,"","Direction",null,null,null),this.createVertexTemplateEntry(d+"iLocBar;align=left;spacingLeft=4;spacingBottom=4;fontColor=#ffffff;fontSize=10;barPos=80;pointerPos=bottom;buttonText=5th Street Music Store", -155,32.5,"","Location bar",null,null,null),this.createVertexTemplateEntry(a+"iCallDialog;",150,125,"","Call Dialog",null,null,null),this.createVertexTemplateEntry(a+"iCallButtons;",174,400*.575,"","Call buttons",null,null,null),this.createVertexTemplateEntry(d+"iOption;barPos=80;pointerPos=bottom;buttonText=Option;fontSize=10;fontColor=#ffffff;spacingBottom=6;",75,400*.06875,"","Option",null,null,null),this.createVertexTemplateEntry(a+"iAlphaList;fontSize=7.5;",15,225,"","Alphabet list",null,null, -null),this.createVertexTemplateEntry(d+"iHorButtonBar;buttonText=Item 1,+Item 2,Item 3,Item 4;textColor=#999999;textColor2=#ffffff;strokeColor=#444444;strokeColor2=#c4c4c4;fillColor=#ffffff;fillColor2=#008cff;fontSize=8;",165,12.5,"","Horizontal button bar",null,null,null),this.createVertexTemplateEntry(e+"iPin;fillColor2=#00dd00;fillColor3=#004400;strokeColor=#006600;",10,25,"","Pin",null,null,null),this.createVertexTemplateEntry(e+"iPin;fillColor2=#dd0000;fillColor3=#440000;strokeColor=#660000;", +"","Keyboard (letters)",null,null,null),this.createVertexTemplateEntry(a+"iKeybNumb;",174,100,"","Keyboard (numbers)",null,null,null),this.createVertexTemplateEntry(a+"iKeybSymb;",174,100,"","Keyboard (symbols)",null,null,null),this.createVertexTemplateEntry(a+"iDeleteApp;fillColor=#cccccc;fillColor2=#000000;strokeColor=#ffffff;",15,15,"","Delete app",null,null,null),this.createVertexTemplateEntry(a+"iDir;",100,100,"","Direction",null,null,null),this.createVertexTemplateEntry(b+"iLocBar;align=left;spacingLeft=4;spacingBottom=4;fontColor=#ffffff;fontSize=10;barPos=80;pointerPos=bottom;buttonText=5th Street Music Store", +155,32.5,"","Location bar",null,null,null),this.createVertexTemplateEntry(a+"iCallDialog;",150,125,"","Call Dialog",null,null,null),this.createVertexTemplateEntry(a+"iCallButtons;",174,400*.575,"","Call buttons",null,null,null),this.createVertexTemplateEntry(b+"iOption;barPos=80;pointerPos=bottom;buttonText=Option;fontSize=10;fontColor=#ffffff;spacingBottom=6;",75,400*.06875,"","Option",null,null,null),this.createVertexTemplateEntry(a+"iAlphaList;fontSize=7.5;",15,225,"","Alphabet list",null,null, +null),this.createVertexTemplateEntry(b+"iHorButtonBar;buttonText=Item 1,+Item 2,Item 3,Item 4;textColor=#999999;textColor2=#ffffff;strokeColor=#444444;strokeColor2=#c4c4c4;fillColor=#ffffff;fillColor2=#008cff;fontSize=8;",165,12.5,"","Horizontal button bar",null,null,null),this.createVertexTemplateEntry(e+"iPin;fillColor2=#00dd00;fillColor3=#004400;strokeColor=#006600;",10,25,"","Pin",null,null,null),this.createVertexTemplateEntry(e+"iPin;fillColor2=#dd0000;fillColor3=#440000;strokeColor=#660000;", 10,25,"","Pin",null,null,null),this.createVertexTemplateEntry(e+"iPin;fillColor2=#ccccff;fillColor3=#0000ff;strokeColor=#000066;",10,25,"","Pin",null,null,null),this.createVertexTemplateEntry(e+"iPin;fillColor2=#ffff00;fillColor3=#888800;strokeColor=#999900;",10,25,"","Pin",null,null,null),this.createVertexTemplateEntry(e+"iPin;fillColor2=#ffa500;fillColor3=#885000;strokeColor=#997000;",10,25,"","Pin",null,null,null),this.createVertexTemplateEntry(a+"iVideoControls;barPos=20;",174,50,"","Video controls", null,null,null),this.addEntry(null,function(){var a=new mxCell("Page title",new mxGeometry(0,0,175,30),"html=1;shadow=0;dashed=0;shape=mxgraph.ios.iURLBar;verticalAlign=top;fontSize=8;spacingTop=-5;align=center;");a.vertex=!0;var b=new mxCell("https://www.draw.io/",new mxGeometry(5,12,115,13),"html=1;shadow=0;dashed=0;shape=mxgraph.ios.anchor;fontSize=8;spacingLeft=3;align=left;spacingTop=2;");b.vertex=!0;a.insert(b);b=new mxCell("Cancel",new mxGeometry(137,12,32,13),"html=1;shadow=0;dashed=0;shape=mxgraph.ios.anchor;fontSize=8;fontColor=#ffffff;spacingTop=2;"); -b.vertex=!0;a.insert(b);return sb.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,"URL bar")}),this.createVertexTemplateEntry(a+"iSlider;barPos=20;",150,10,"","Slider",null,null,null),this.createVertexTemplateEntry(a+"iProgressBar;barPos=40;",150,10,"","Progress bar",null,null,null),this.createVertexTemplateEntry(a+"iCloudProgressBar;barPos=20;",150,10,"","Cloud progress bar",null,null,null),this.createVertexTemplateEntry(d+"iDownloadBar;verticalAlign=top;spacingTop=-4;fontSize=8;fontColor=#ffffff;buttonText=;barPos=30;align=center;", -174,30,"Downloading 2 of 6","Download bar",null,null,null),this.createVertexTemplateEntry(d+"iScreenNameBar;fillColor2=#000000;fillColor3=#ffffff;buttonText=;fontColor=#ffffff;fontSize=10;whiteSpace=wrap;align=center;",174,25,"Screen Name","Screen name bar",null,null,null),this.createVertexTemplateEntry(a+"iIconGrid;fillColor=#ffffff;strokeColor=#000000;gridSize=3,3;",150,150,"","Icon grid",null,null,null),this.createVertexTemplateEntry(d+"iCopy;fillColor=#000000;strokeColor=#000000;buttonText=;fontColor=#ffffff;spacingBottom=6;fontSize=9;fillColor2=#000000;fillColor3=#ffffff;align=center;", +b.vertex=!0;a.insert(b);return sb.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,"URL bar")}),this.createVertexTemplateEntry(a+"iSlider;barPos=20;",150,10,"","Slider",null,null,null),this.createVertexTemplateEntry(a+"iProgressBar;barPos=40;",150,10,"","Progress bar",null,null,null),this.createVertexTemplateEntry(a+"iCloudProgressBar;barPos=20;",150,10,"","Cloud progress bar",null,null,null),this.createVertexTemplateEntry(b+"iDownloadBar;verticalAlign=top;spacingTop=-4;fontSize=8;fontColor=#ffffff;buttonText=;barPos=30;align=center;", +174,30,"Downloading 2 of 6","Download bar",null,null,null),this.createVertexTemplateEntry(b+"iScreenNameBar;fillColor2=#000000;fillColor3=#ffffff;buttonText=;fontColor=#ffffff;fontSize=10;whiteSpace=wrap;align=center;",174,25,"Screen Name","Screen name bar",null,null,null),this.createVertexTemplateEntry(a+"iIconGrid;fillColor=#ffffff;strokeColor=#000000;gridSize=3,3;",150,150,"","Icon grid",null,null,null),this.createVertexTemplateEntry(b+"iCopy;fillColor=#000000;strokeColor=#000000;buttonText=;fontColor=#ffffff;spacingBottom=6;fontSize=9;fillColor2=#000000;fillColor3=#ffffff;align=center;", 40,400*.06875,"Copy","Copy",null,null,null),this.addEntry(null,function(){var a=new mxCell("Copy",new mxGeometry(10,0,40,400*.06875),"html=1;shadow=0;dashed=0;shape=mxgraph.ios.iCopy;fillColor=#000000;strokeColor=#000000;buttonText=;fontColor=#ffffff;spacingBottom=6;fontSize=9;fillColor2=#000000;fillColor3=#ffffff;align=center;");a.vertex=!0;var b=new mxCell("",new mxGeometry(0,400*.06875,60,52.5),"html=1;shadow=0;dashed=0;shape=mxgraph.ios.rect;fillColor=#2266ff;strokeColor=none;opacity=30;");b.vertex= -!0;return sb.createVertexTemplateFromCells([a,b],60,80,"Copy Area")}),this.createVertexTemplateEntry(a+"iHomePageControl;fillColor=#666666;strokeColor=#cccccc;",50,5,"","Home page control",null,null,null),this.createVertexTemplateEntry(a+"iPageControl;fillColor=#666666;strokeColor=#cccccc;",50,5,"","Page control",null,null,null)];this.addPalette("ios","iOS6",!1,mxUtils.bind(this,function(a){for(var c=0;c<b.length;c++)a.appendChild(b[c](a))}))}})();(function(){Sidebar.prototype.addIos7Palette=function(){var a=this,d="ios icon ",e="html=1;verticalLabelPosition=bottom;align=center;labelBackgroundColor=#ffffff;verticalAlign=top;strokeWidth=2;strokeColor=#0080F0;fillColor=#ffffff;shadow=0;dashed=0;shape=mxgraph.ios7.icons.",b="mxgraph.ios7.icons";this.addPaletteFunctions("ios7icons","iOS Icons",!1,[this.createVertexTemplateEntry(e+"add;",30,30,"","Add",null,null,this.getTagsForStencil(b,"add",d).join(" ")),this.createVertexTemplateEntry(e+"alarm_clock;", -27,30,"","Alarm Clock",null,null,this.getTagsForStencil(b,"alarm_clock",d).join(" ")),this.createVertexTemplateEntry(e+"back;",30,25.5,"","Back",null,null,this.getTagsForStencil(b,"back",d).join(" ")),this.createVertexTemplateEntry(e+"backward;",30,16.8,"","Backward",null,null,this.getTagsForStencil(b,"backward",d).join(" ")),this.createVertexTemplateEntry(e+"bag;",21,21,"","Bag",null,null,this.getTagsForStencil(b,"bag",d).join(" ")),this.createVertexTemplateEntry(e+"basket_cancel;",30,12,"","Basket Cancel", -null,null,this.getTagsForStencil(b,"basket_cancel",d).join(" ")),this.createVertexTemplateEntry(e+"basketball;",30,30,"","Basketball",null,null,this.getTagsForStencil(b,"basketball",d).join(" ")),this.createVertexTemplateEntry(e+"battery;",30,12,"","Battery",null,null,this.getTagsForStencil(b,"battery",d).join(" ")),this.createVertexTemplateEntry(e+"bell;",24,77*.3,"","Bell",null,null,this.getTagsForStencil(b,"bell",d).join(" ")),this.createVertexTemplateEntry(e+"bluetooth;pointerEvents=1",15,96* -.3,"","Bluetooth",null,null,this.getTagsForStencil(b,"bluetooth",d).join(" ")),this.createVertexTemplateEntry(e+"book;",30,25.5,"","Book",null,null,this.getTagsForStencil(b,"book",d).join(" ")),this.createVertexTemplateEntry(e+"bookmark;",18,24,"","Bookmark",null,null,this.getTagsForStencil(b,"bookmark",d).join(" ")),this.createVertexTemplateEntry(e+"box;",30,30,"","Box",null,null,this.getTagsForStencil(b,"box",d).join(" ")),this.createVertexTemplateEntry(e+"briefcase;",30,67*.3,"","Briefcase",null, -null,this.getTagsForStencil(b,"briefcase",d).join(" ")),this.createVertexTemplateEntry(e+"calculator;",24,30,"","Calculator",null,null,this.getTagsForStencil(b,"calculator",d).join(" ")),this.createVertexTemplateEntry(e+"calendar;",30,30,"","Calendar",null,null,this.getTagsForStencil(b,"calendar",d).join(" ")),this.createVertexTemplateEntry(e+"camera;",30,17.4,"","Camera",null,null,this.getTagsForStencil(b,"camera",d).join(" ")),this.createVertexTemplateEntry(e+"chat;",30,18,"","Chat",null,null,this.getTagsForStencil(b, -"chat",d).join(" ")),this.createVertexTemplateEntry(e+"clock;",30,30,"","Clock",null,null,this.getTagsForStencil(b,"clock",d).join(" ")),this.createVertexTemplateEntry(e+"cloud;",30,30,"","Cloud",null,null,this.getTagsForStencil(b,"cloud",d).join(" ")),this.createVertexTemplateEntry(e+"compose;",97*.3,97*.3,"","Compose",null,null,this.getTagsForStencil(b,"compose",d).join(" ")),this.createVertexTemplateEntry(e+"controls;",27,24,"","Controls",null,null,this.getTagsForStencil(b,"controls",d).join(" ")), -this.createVertexTemplateEntry(e+"credit_card;",30,15,"","Credit Card",null,null,this.getTagsForStencil(b,"credit_card",d).join(" ")),this.createVertexTemplateEntry(e+"crop;",30,30,"","Crop",null,null,this.getTagsForStencil(b,"crop",d).join(" ")),this.createVertexTemplateEntry(e+"cube;",30,30,"","Cube",null,null,this.getTagsForStencil(b,"cube",d).join(" ")),this.createVertexTemplateEntry(e+"cup;",30,30,"","Cup",null,null,this.getTagsForStencil(b,"cup",d).join(" ")),this.createVertexTemplateEntry(e+ -"data;",24,97*.3,"","Data",null,null,this.getTagsForStencil(b,"data",d).join(" ")),this.createVertexTemplateEntry(e+"delete;",30,30,"","Delete",null,null,this.getTagsForStencil(b,"delete",d).join(" ")),this.createVertexTemplateEntry(e+"document;",21,30,"","Document",null,null,this.getTagsForStencil(b,"document",d).join(" ")),this.createVertexTemplateEntry(e+"documents;",22.5,30,"","Documents",null,null,this.getTagsForStencil(b,"documents",d).join(" ")),this.createVertexTemplateEntry(e+"down;",21, -25.5,"","Down",null,null,this.getTagsForStencil(b,"down",d).join(" ")),this.createVertexTemplateEntry(e+"edit;",29.4,29.4,"","Edit",null,null,this.getTagsForStencil(b,"edit",d).join(" ")),this.createVertexTemplateEntry(e+"envelope_(empty);",30,30,"","Envelope (Empty)",null,null,this.getTagsForStencil(b,"envelope_(empty)",d).join(" ")),this.createVertexTemplateEntry(e+"envelope_(message);",30,30,"","Envelope (Message)",null,null,this.getTagsForStencil(b,"envelope_(message)",d).join(" ")),this.createVertexTemplateEntry(e+ -"eye;",30,14.1,"","Eye",null,null,this.getTagsForStencil(b,"eye",d).join(" ")),this.createVertexTemplateEntry(e+"flag;",30,30,"","Flag",null,null,this.getTagsForStencil(b,"flag",d).join(" ")),this.createVertexTemplateEntry(e+"flash;",18,30,"","Flash",null,null,this.getTagsForStencil(b,"flash",d).join(" ")),this.createVertexTemplateEntry(e+"flashlight;",15,30,"","Flashlight",null,null,this.getTagsForStencil(b,"flashlight",d).join(" ")),this.createVertexTemplateEntry(e+"folder;",30,19.5,"","Folder", -null,null,this.getTagsForStencil(b,"folder",d).join(" ")),this.createVertexTemplateEntry(e+"folders;",30,25.5,"","Folders",null,null,this.getTagsForStencil(b,"folders",d).join(" ")),this.createVertexTemplateEntry(e+"folders_2;",30,22.5,"","Folders",null,null,this.getTagsForStencil(b,"folders_2",d).join(" ")),this.createVertexTemplateEntry(e+"forward;",30,16.8,"","Forward",null,null,this.getTagsForStencil(b,"forward",d).join(" ")),this.createVertexTemplateEntry(e+"gauge;",32.4,31.5,"","Gauge",null, -null,this.getTagsForStencil(b,"gauge",d).join(" ")),this.createVertexTemplateEntry(e+"glasses;",30,12,"","Glasses",null,null,this.getTagsForStencil(b,"glasses",d).join(" ")),this.createVertexTemplateEntry(e+"globe;",30,30,"","Globe",null,null,this.getTagsForStencil(b,"globe",d).join(" ")),this.createVertexTemplateEntry(e+"heart;",102*.3,27.3,"","Heart",null,null,this.getTagsForStencil(b,"heart",d).join(" ")),this.createVertexTemplateEntry(e+"help;",30,30,"","Help",null,null,this.getTagsForStencil(b, -"help",d).join(" ")),this.createVertexTemplateEntry(e+"home;",24,25.5,"","Home",null,null,this.getTagsForStencil(b,"home",d).join(" ")),this.createVertexTemplateEntry(e+"info;",30,30,"","Info",null,null,this.getTagsForStencil(b,"info",d).join(" ")),this.createVertexTemplateEntry(e+"keypad;",30,30,"","Keypad",null,null,this.getTagsForStencil(b,"keypad",d).join(" ")),this.createVertexTemplateEntry(e+"lightbulb;",22.8,29.7,"","Lightbulb",null,null,this.getTagsForStencil(b,"lightbulb",d).join(" ")),this.createVertexTemplateEntry(e+ -"link;",30,30,"","Link",null,null,this.getTagsForStencil(b,"link",d).join(" ")),this.createVertexTemplateEntry(e+"location;",24,30,"","Location",null,null,this.getTagsForStencil(b,"location",d).join(" ")),this.createVertexTemplateEntry(e+"location_2;",30,30,"","Location",null,null,this.getTagsForStencil(b,"location_2",d).join(" ")),this.createVertexTemplateEntry(e+"locked;",24,30,"","Locked",null,null,this.getTagsForStencil(b,"locked",d).join(" ")),this.createVertexTemplateEntry(e+"looking_glass;", -30,30,"","Looking Glass",null,null,this.getTagsForStencil(b,"looking_glass",d).join(" ")),this.createVertexTemplateEntry(e+"loud;",102*.3,32.4,"","Loud",null,null,this.getTagsForStencil(b,"loud",d).join(" ")),this.createVertexTemplateEntry(e+"magnet;pointerEvents=1",24,30,"","Magnet",null,null,this.getTagsForStencil(b,"magnet",d).join(" ")),this.createVertexTemplateEntry(e+"mail;",30,16.5,"","Mail",null,null,this.getTagsForStencil(b,"mail",d).join(" ")),this.createVertexTemplateEntry(e+"map;",30, -30,"","Map",null,null,this.getTagsForStencil(b,"map",d).join(" ")),this.createVertexTemplateEntry(e+"message;",30,19.5,"","Message",null,null,this.getTagsForStencil(b,"message",d).join(" ")),this.createVertexTemplateEntry(e+"messages;",30,25.5,"","Messages",null,null,this.getTagsForStencil(b,"messages",d).join(" ")),this.createVertexTemplateEntry(e+"microphone;",12,30,"","Microphone",null,null,this.getTagsForStencil(b,"microphone",d).join(" ")),this.createVertexTemplateEntry(e+"monitor;",30,19.5, -"","Monitor",null,null,this.getTagsForStencil(b,"monitor",d).join(" ")),this.createVertexTemplateEntry(e+"moon;",29.4,29.4,"","Moon",null,null,this.getTagsForStencil(b,"moon",d).join(" ")),this.createVertexTemplateEntry(e+"most_viewed;pointerEvents=1",28.2,22.8,"","Most Viewed",null,null,this.getTagsForStencil(b,"most_viewed",d).join(" ")),this.createVertexTemplateEntry(e+"move_to_folder;",30,22.5,"","Move to Folder",null,null,this.getTagsForStencil(b,"move_to_folder",d).join(" ")),this.createVertexTemplateEntry(e+ -"note;pointerEvents=1",29.7,29.7,"","Note",null,null,this.getTagsForStencil(b,"note",d).join(" ")),this.createVertexTemplateEntry(e+"options;pointerEvents=1",30,15,"","Options",null,null,this.getTagsForStencil(b,"options",d).join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;strokeWidth=2;strokeColor=#0080F0;fillColor=#0080F0;shadow=0;dashed=0;shape=mxgraph.ios7.icons.orientation_lock;pointerEvents=1",77*.3,21,"","Orientation Lock",null,null,this.getTagsForStencil(b,"orientation_lock", -d).join(" ")),this.createVertexTemplateEntry(e+"page_navigation;pointerEvents=1",30,4.8,"","Page Navigation",null,null,this.getTagsForStencil(b,"page_navigation",d).join(" ")),this.createVertexTemplateEntry(e+"paint;",30,25.5,"","Paint",null,null,this.getTagsForStencil(b,"paint",d).join(" ")),this.createVertexTemplateEntry(e+"pause;pointerEvents=1",15,24,"","Pause",null,null,this.getTagsForStencil(b,"pause",d).join(" ")),this.createVertexTemplateEntry(e+"pen;",29.4,29.7,"","Pen",null,null,this.getTagsForStencil(b, -"pen",d).join(" ")),this.createVertexTemplateEntry(e+"pie_chart;",30,30,"","Pie Chart",null,null,this.getTagsForStencil(b,"pie_chart",d).join(" ")),this.createVertexTemplateEntry(e+"play;",21,24,"","Play",null,null,this.getTagsForStencil(b,"play",d).join(" ")),this.createVertexTemplateEntry(e+"pointer;",30,30,"","Pointer",null,null,this.getTagsForStencil(b,"pointer",d).join(" ")),this.createVertexTemplateEntry(e+"preferences;pointerEvents=1",30,24,"","Preferences",null,null,this.getTagsForStencil(b, -"preferences",d).join(" ")),this.createVertexTemplateEntry(e+"printer;",30,25.5,"","Printer",null,null,this.getTagsForStencil(b,"printer",d).join(" ")),this.createVertexTemplateEntry(e+"privacy;",16.8,28.5,"","Privacy",null,null,this.getTagsForStencil(b,"privacy",d).join(" ")),this.createVertexTemplateEntry(e+"radio;",30,22.5,"","Radio",null,null,this.getTagsForStencil(b,"radio",d).join(" ")),this.createVertexTemplateEntry(e+"reload;",24,27,"","Reload",null,null,this.getTagsForStencil(b,"reload", -d).join(" ")),this.createVertexTemplateEntry(e+"repeat;pointerEvents=1",30,24,"","Repeat",null,null,this.getTagsForStencil(b,"repeat",d).join(" ")),this.createVertexTemplateEntry(e+"retry;",92*.3,48*.3,"","Retry",null,null,this.getTagsForStencil(b,"retry",d).join(" ")),this.createVertexTemplateEntry(e+"select;",30,30,"","Select",null,null,this.getTagsForStencil(b,"select",d).join(" ")),this.createVertexTemplateEntry(e+"settings;",30,30,"","Settings",null,null,this.getTagsForStencil(b,"settings",d).join(" ")), -this.createVertexTemplateEntry(e+"share;",21,28.5,"","Share",null,null,this.getTagsForStencil(b,"share",d).join(" ")),this.createVertexTemplateEntry(e+"shopping_cart;",30,25.5,"","Shopping Cart",null,null,this.getTagsForStencil(b,"shopping_cart",d).join(" ")),this.createVertexTemplateEntry(e+"shuffle;pointerEvents=1",30,21,"","Shuffle",null,null,this.getTagsForStencil(b,"shuffle",d).join(" ")),this.createVertexTemplateEntry(e+"silent;",30,30,"","Silent",null,null,this.getTagsForStencil(b,"silent", -d).join(" ")),this.createVertexTemplateEntry(e+"smartphone;",18,30,"","Smartphone",null,null,this.getTagsForStencil(b,"smartphone",d).join(" ")),this.createVertexTemplateEntry(e+"star;",30,27,"","Star",null,null,this.getTagsForStencil(b,"star",d).join(" ")),this.createVertexTemplateEntry(e+"stopwatch;",27,28.2,"","Stopwatch",null,null,this.getTagsForStencil(b,"stopwatch",d).join(" ")),this.createVertexTemplateEntry(e+"storage;",30,10.5,"","Storage",null,null,this.getTagsForStencil(b,"storage",d).join(" ")), -this.createVertexTemplateEntry(e+"sun;pointerEvents=1",30,30,"","Sun",null,null,this.getTagsForStencil(b,"sun",d).join(" ")),this.createVertexTemplateEntry(e+"tape;pointerEvents=1",30,12,"","Tape",null,null,this.getTagsForStencil(b,"tape",d).join(" ")),this.createVertexTemplateEntry(e+"tools;pointerEvents=1",29.7,29.7,"","Tools",null,null,this.getTagsForStencil(b,"tools",d).join(" ")),this.createVertexTemplateEntry(e+"trashcan;",24,30,"","Trashcan",null,null,this.getTagsForStencil(b,"trashcan",d).join(" ")), -this.createVertexTemplateEntry(e+"trophy;",28.5,30,"","Trophy",null,null,this.getTagsForStencil(b,"trophy",d).join(" ")),this.createVertexTemplateEntry(e+"umbrella;",30,30,"","Umbrella",null,null,this.getTagsForStencil(b,"umbrella",d).join(" ")),this.createVertexTemplateEntry(e+"unlocked;",24,30,"","Unlocked",null,null,this.getTagsForStencil(b,"unlocked",d).join(" ")),this.createVertexTemplateEntry(e+"up;",21,25.5,"","Up",null,null,this.getTagsForStencil(b,"up",d).join(" ")),this.createVertexTemplateEntry(e+ -"user;",30,30,"","User",null,null,this.getTagsForStencil(b,"user",d).join(" ")),this.createVertexTemplateEntry(e+"video_conversation;",30,15,"","Video Conversation",null,null,this.getTagsForStencil(b,"video_conversation",d).join(" ")),this.createVertexTemplateEntry(e+"volume;pointerEvents=1",30,30,"","Volume",null,null,this.getTagsForStencil(b,"volume",d).join(" ")),this.createVertexTemplateEntry(e+"volume_2;pointerEvents=1",101*.3,28.2,"","Volume",null,null,this.getTagsForStencil(b,"volume_2",d).join(" ")), -this.createVertexTemplateEntry(e+"wallet;",30,24,"","Wallet",null,null,this.getTagsForStencil(b,"wallet",d).join(" ")),this.createVertexTemplateEntry(e+"wifi;pointerEvents=1",29.7,21,"","WiFi",null,null,this.getTagsForStencil(b,"wifi",d).join(" ")),this.createVertexTemplateEntry(e+"window;",30,30,"","Window",null,null,this.getTagsForStencil(b,"window",d).join(" "))]);var e="html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=1;shape=mxgraph.ios7ui.", -c=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;html=1;shadow=0;dashed=0;strokeWidth=1;shape=mxgraph.ios.",d="ios ui ",b="mxgraph.ios7ui",f=[this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=1;shape=mxgraph.ios7.misc.iphone;fillColor=#ffffff;strokeColor=#c0c0c0;",200,400,"","iPhone (Portrait)",null,null,this.getTagsForStencil(b,"phone",d+"portrait").join(" ")), -this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=1;shape=mxgraph.ios7.misc.ipad7inch;fillColor=#ffffff;strokeColor=#c0c0c0;",366,549,"","iPad (7'')",null,null,this.getTagsForStencil(b,"tablet tab 7",d+"portrait").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=1;shape=mxgraph.ios7.misc.ipad10inch;fillColor=#ffffff;strokeColor=#c0c0c0;", -488,693,"","iPad (10'')",null,null,this.getTagsForStencil(b,"tablet tab 10",d+"portrait").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=1;shape=mxgraph.ios7.misc.ipad13inch;fillColor=#ffffff;strokeColor=#c0c0c0;",572,400*2.0325,"","iPad (13'')",null,null,this.getTagsForStencil(b,"tablet tab 10",d+"portrait").join(" ")),this.addDataEntry(d+"app bar portrait",175,15,"App Bar (portrait)","zVVdb4IwFP01fZTw6cejoDNLZmLYkj03o0CzQkmpivv1u0BBEIw+zMUmJL3n3tt7e05LkeUlxUbgLN7ygDBkrZHlCc5lPUsKjzCGTJ0GyFoh09ThQ+bLFa9RefUMC5LKexLMOuGA2Z7USA3k8sQUEMsE2loZyHJzKfg3+aSBjBskxgE/gqGDEeA8JoEywJOVKyRFVO5Oozyf7amGs8zFAvwhZczjjIuqihVWA3CIDih03/hSnsIyruqTCEmKq3utILXRDeEJkeIEIUfVcBkxc+q0mNAobtIUhvPajtrUM3MwUeSNE2kNiPSWvv+69gd8NsQI8gX1XcxolILJSFiaIU/lO/0pA+Ylixn+omn0VjlXpt2PaMwOj7garVYXLHZJV5Cq8MEzteBdTJvjTJ/UmdMUox3mHX2EeMWaIAxLeiC9cmNqqIo7TqGRttxkql0oyMMwJ3KgX9vpXZLaA0kNOPJLx9ltb4l6oeJTaVRcaPTPmqnyE0vvlX+Qhs5Aw8UcNejtSynqfV+5lb5ixVj0Q6ZPKrlxU3B77O/4R4LbzgMEB/P8WNbh3bf0Fw=="), -this.addDataEntry(d+"app bar landscape",280,15,"App Bar (landscape)","zZVdb4IwFIZ/TS81UMDppaIzS2Zi2JJdN6NAs0JJqYr79TvQovJh9MbFJiScj/ac87wlIMdPy7UkebIRIeXIWSHHl0Io/ZaWPuUcYYuFyFkijC14EH69ErXrqJUTSTN1zwasN+wJ31Ht0Y5CHblxJCqFtpY2chaFkuKHfrFQJY0nIaE4gGGBEZIioaExIJJXJ6RlXE03ZqJ42bExyfMFkRCPGOe+4ELWVZyoXuCH7JBB900sExkcszB9UqloeXXW2mUGXVORUiWPkHIwDVfzTjUPK6EsTpptnvaRQtvxaeuZHLwYeMMgnR5Ifx4Eb6ugx7MBI+k31F8QzuIMTE6jyoxEpj7Yb5UwrSjm5Jtl8XsdXGK3ndGYFxxJvU5adSheQjcuU+FT5ObAu0jjYdJHc+fGhugFeW8IvKEmKSeK7Wmr3JAapuJWMGjkVG40GXcUFFFUUNXT79TpXZK6PUltuPJzz9tubonaUfGpNCo7Gv2zZqb8CLfLP0hDr6fhbIoa7+2PUuq5r3yVgaFiz9opkyeV3L4puOs9TnD3EYKDef5Z6vTLf+kf"), -this.createVertexTemplateEntry(e+"slider;barPos=20;strokeColor=#0080f0;fillColor=#ffffff;strokeColor2=#a0a0a0;",150,15,"","Slider",null,null,this.getTagsForStencil(b,d+"slider",null).join(" ")),this.createVertexTemplateEntry("html=1;strokeWidth=1;shadow=0;dashed=0;shape=mxgraph.ios7ui.downloadBar;verticalAlign=middle;fontSize=8;fontColor=#000000;buttonText=;barPos=30;fillColor=#aaaaaa;strokeColor=#0080f0;align=center;",150,30,"Downloading 2 of 6\n\n","Download bar",null,null,this.getTagsForStencil(b, -"downloadBar",d+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.adjust;fillColor=#ffffff;gradientColor=none;",80,20,"","Adjust",null,null,this.getTagsForStencil(b,"adjust",d+"").join(" ")),this.addEntry(d+"horizontal button bar",function(){var b=new mxCell("",new mxGeometry(0,0,164,12.5),"html=1;strokeWidth=1;shadow=0;dashed=0;shape=mxgraph.ios7ui.rrect;rSize=3;strokeColor=#0080F0;fillColor=#ffffff;gradientColor=none;"); +!0;return sb.createVertexTemplateFromCells([a,b],60,80,"Copy Area")}),this.createVertexTemplateEntry(a+"iHomePageControl;fillColor=#666666;strokeColor=#cccccc;",50,5,"","Home page control",null,null,null),this.createVertexTemplateEntry(a+"iPageControl;fillColor=#666666;strokeColor=#cccccc;",50,5,"","Page control",null,null,null)];this.addPalette("ios","iOS6",!1,mxUtils.bind(this,function(a){for(var b=0;b<c.length;b++)a.appendChild(c[b](a))}))}})();(function(){Sidebar.prototype.addIos7Palette=function(){var a=this,b="ios icon ",e="html=1;verticalLabelPosition=bottom;align=center;labelBackgroundColor=#ffffff;verticalAlign=top;strokeWidth=2;strokeColor=#0080F0;fillColor=#ffffff;shadow=0;dashed=0;shape=mxgraph.ios7.icons.",c="mxgraph.ios7.icons";this.addPaletteFunctions("ios7icons","iOS Icons",!1,[this.createVertexTemplateEntry(e+"add;",30,30,"","Add",null,null,this.getTagsForStencil(c,"add",b).join(" ")),this.createVertexTemplateEntry(e+"alarm_clock;", +27,30,"","Alarm Clock",null,null,this.getTagsForStencil(c,"alarm_clock",b).join(" ")),this.createVertexTemplateEntry(e+"back;",30,25.5,"","Back",null,null,this.getTagsForStencil(c,"back",b).join(" ")),this.createVertexTemplateEntry(e+"backward;",30,16.8,"","Backward",null,null,this.getTagsForStencil(c,"backward",b).join(" ")),this.createVertexTemplateEntry(e+"bag;",21,21,"","Bag",null,null,this.getTagsForStencil(c,"bag",b).join(" ")),this.createVertexTemplateEntry(e+"basket_cancel;",30,12,"","Basket Cancel", +null,null,this.getTagsForStencil(c,"basket_cancel",b).join(" ")),this.createVertexTemplateEntry(e+"basketball;",30,30,"","Basketball",null,null,this.getTagsForStencil(c,"basketball",b).join(" ")),this.createVertexTemplateEntry(e+"battery;",30,12,"","Battery",null,null,this.getTagsForStencil(c,"battery",b).join(" ")),this.createVertexTemplateEntry(e+"bell;",24,77*.3,"","Bell",null,null,this.getTagsForStencil(c,"bell",b).join(" ")),this.createVertexTemplateEntry(e+"bluetooth;pointerEvents=1",15,96* +.3,"","Bluetooth",null,null,this.getTagsForStencil(c,"bluetooth",b).join(" ")),this.createVertexTemplateEntry(e+"book;",30,25.5,"","Book",null,null,this.getTagsForStencil(c,"book",b).join(" ")),this.createVertexTemplateEntry(e+"bookmark;",18,24,"","Bookmark",null,null,this.getTagsForStencil(c,"bookmark",b).join(" ")),this.createVertexTemplateEntry(e+"box;",30,30,"","Box",null,null,this.getTagsForStencil(c,"box",b).join(" ")),this.createVertexTemplateEntry(e+"briefcase;",30,67*.3,"","Briefcase",null, +null,this.getTagsForStencil(c,"briefcase",b).join(" ")),this.createVertexTemplateEntry(e+"calculator;",24,30,"","Calculator",null,null,this.getTagsForStencil(c,"calculator",b).join(" ")),this.createVertexTemplateEntry(e+"calendar;",30,30,"","Calendar",null,null,this.getTagsForStencil(c,"calendar",b).join(" ")),this.createVertexTemplateEntry(e+"camera;",30,17.4,"","Camera",null,null,this.getTagsForStencil(c,"camera",b).join(" ")),this.createVertexTemplateEntry(e+"chat;",30,18,"","Chat",null,null,this.getTagsForStencil(c, +"chat",b).join(" ")),this.createVertexTemplateEntry(e+"clock;",30,30,"","Clock",null,null,this.getTagsForStencil(c,"clock",b).join(" ")),this.createVertexTemplateEntry(e+"cloud;",30,30,"","Cloud",null,null,this.getTagsForStencil(c,"cloud",b).join(" ")),this.createVertexTemplateEntry(e+"compose;",97*.3,97*.3,"","Compose",null,null,this.getTagsForStencil(c,"compose",b).join(" ")),this.createVertexTemplateEntry(e+"controls;",27,24,"","Controls",null,null,this.getTagsForStencil(c,"controls",b).join(" ")), +this.createVertexTemplateEntry(e+"credit_card;",30,15,"","Credit Card",null,null,this.getTagsForStencil(c,"credit_card",b).join(" ")),this.createVertexTemplateEntry(e+"crop;",30,30,"","Crop",null,null,this.getTagsForStencil(c,"crop",b).join(" ")),this.createVertexTemplateEntry(e+"cube;",30,30,"","Cube",null,null,this.getTagsForStencil(c,"cube",b).join(" ")),this.createVertexTemplateEntry(e+"cup;",30,30,"","Cup",null,null,this.getTagsForStencil(c,"cup",b).join(" ")),this.createVertexTemplateEntry(e+ +"data;",24,97*.3,"","Data",null,null,this.getTagsForStencil(c,"data",b).join(" ")),this.createVertexTemplateEntry(e+"delete;",30,30,"","Delete",null,null,this.getTagsForStencil(c,"delete",b).join(" ")),this.createVertexTemplateEntry(e+"document;",21,30,"","Document",null,null,this.getTagsForStencil(c,"document",b).join(" ")),this.createVertexTemplateEntry(e+"documents;",22.5,30,"","Documents",null,null,this.getTagsForStencil(c,"documents",b).join(" ")),this.createVertexTemplateEntry(e+"down;",21, +25.5,"","Down",null,null,this.getTagsForStencil(c,"down",b).join(" ")),this.createVertexTemplateEntry(e+"edit;",29.4,29.4,"","Edit",null,null,this.getTagsForStencil(c,"edit",b).join(" ")),this.createVertexTemplateEntry(e+"envelope_(empty);",30,30,"","Envelope (Empty)",null,null,this.getTagsForStencil(c,"envelope_(empty)",b).join(" ")),this.createVertexTemplateEntry(e+"envelope_(message);",30,30,"","Envelope (Message)",null,null,this.getTagsForStencil(c,"envelope_(message)",b).join(" ")),this.createVertexTemplateEntry(e+ +"eye;",30,14.1,"","Eye",null,null,this.getTagsForStencil(c,"eye",b).join(" ")),this.createVertexTemplateEntry(e+"flag;",30,30,"","Flag",null,null,this.getTagsForStencil(c,"flag",b).join(" ")),this.createVertexTemplateEntry(e+"flash;",18,30,"","Flash",null,null,this.getTagsForStencil(c,"flash",b).join(" ")),this.createVertexTemplateEntry(e+"flashlight;",15,30,"","Flashlight",null,null,this.getTagsForStencil(c,"flashlight",b).join(" ")),this.createVertexTemplateEntry(e+"folder;",30,19.5,"","Folder", +null,null,this.getTagsForStencil(c,"folder",b).join(" ")),this.createVertexTemplateEntry(e+"folders;",30,25.5,"","Folders",null,null,this.getTagsForStencil(c,"folders",b).join(" ")),this.createVertexTemplateEntry(e+"folders_2;",30,22.5,"","Folders",null,null,this.getTagsForStencil(c,"folders_2",b).join(" ")),this.createVertexTemplateEntry(e+"forward;",30,16.8,"","Forward",null,null,this.getTagsForStencil(c,"forward",b).join(" ")),this.createVertexTemplateEntry(e+"gauge;",32.4,31.5,"","Gauge",null, +null,this.getTagsForStencil(c,"gauge",b).join(" ")),this.createVertexTemplateEntry(e+"glasses;",30,12,"","Glasses",null,null,this.getTagsForStencil(c,"glasses",b).join(" ")),this.createVertexTemplateEntry(e+"globe;",30,30,"","Globe",null,null,this.getTagsForStencil(c,"globe",b).join(" ")),this.createVertexTemplateEntry(e+"heart;",102*.3,27.3,"","Heart",null,null,this.getTagsForStencil(c,"heart",b).join(" ")),this.createVertexTemplateEntry(e+"help;",30,30,"","Help",null,null,this.getTagsForStencil(c, +"help",b).join(" ")),this.createVertexTemplateEntry(e+"home;",24,25.5,"","Home",null,null,this.getTagsForStencil(c,"home",b).join(" ")),this.createVertexTemplateEntry(e+"info;",30,30,"","Info",null,null,this.getTagsForStencil(c,"info",b).join(" ")),this.createVertexTemplateEntry(e+"keypad;",30,30,"","Keypad",null,null,this.getTagsForStencil(c,"keypad",b).join(" ")),this.createVertexTemplateEntry(e+"lightbulb;",22.8,29.7,"","Lightbulb",null,null,this.getTagsForStencil(c,"lightbulb",b).join(" ")),this.createVertexTemplateEntry(e+ +"link;",30,30,"","Link",null,null,this.getTagsForStencil(c,"link",b).join(" ")),this.createVertexTemplateEntry(e+"location;",24,30,"","Location",null,null,this.getTagsForStencil(c,"location",b).join(" ")),this.createVertexTemplateEntry(e+"location_2;",30,30,"","Location",null,null,this.getTagsForStencil(c,"location_2",b).join(" ")),this.createVertexTemplateEntry(e+"locked;",24,30,"","Locked",null,null,this.getTagsForStencil(c,"locked",b).join(" ")),this.createVertexTemplateEntry(e+"looking_glass;", +30,30,"","Looking Glass",null,null,this.getTagsForStencil(c,"looking_glass",b).join(" ")),this.createVertexTemplateEntry(e+"loud;",102*.3,32.4,"","Loud",null,null,this.getTagsForStencil(c,"loud",b).join(" ")),this.createVertexTemplateEntry(e+"magnet;pointerEvents=1",24,30,"","Magnet",null,null,this.getTagsForStencil(c,"magnet",b).join(" ")),this.createVertexTemplateEntry(e+"mail;",30,16.5,"","Mail",null,null,this.getTagsForStencil(c,"mail",b).join(" ")),this.createVertexTemplateEntry(e+"map;",30, +30,"","Map",null,null,this.getTagsForStencil(c,"map",b).join(" ")),this.createVertexTemplateEntry(e+"message;",30,19.5,"","Message",null,null,this.getTagsForStencil(c,"message",b).join(" ")),this.createVertexTemplateEntry(e+"messages;",30,25.5,"","Messages",null,null,this.getTagsForStencil(c,"messages",b).join(" ")),this.createVertexTemplateEntry(e+"microphone;",12,30,"","Microphone",null,null,this.getTagsForStencil(c,"microphone",b).join(" ")),this.createVertexTemplateEntry(e+"monitor;",30,19.5, +"","Monitor",null,null,this.getTagsForStencil(c,"monitor",b).join(" ")),this.createVertexTemplateEntry(e+"moon;",29.4,29.4,"","Moon",null,null,this.getTagsForStencil(c,"moon",b).join(" ")),this.createVertexTemplateEntry(e+"most_viewed;pointerEvents=1",28.2,22.8,"","Most Viewed",null,null,this.getTagsForStencil(c,"most_viewed",b).join(" ")),this.createVertexTemplateEntry(e+"move_to_folder;",30,22.5,"","Move to Folder",null,null,this.getTagsForStencil(c,"move_to_folder",b).join(" ")),this.createVertexTemplateEntry(e+ +"note;pointerEvents=1",29.7,29.7,"","Note",null,null,this.getTagsForStencil(c,"note",b).join(" ")),this.createVertexTemplateEntry(e+"options;pointerEvents=1",30,15,"","Options",null,null,this.getTagsForStencil(c,"options",b).join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;strokeWidth=2;strokeColor=#0080F0;fillColor=#0080F0;shadow=0;dashed=0;shape=mxgraph.ios7.icons.orientation_lock;pointerEvents=1",77*.3,21,"","Orientation Lock",null,null,this.getTagsForStencil(c,"orientation_lock", +b).join(" ")),this.createVertexTemplateEntry(e+"page_navigation;pointerEvents=1",30,4.8,"","Page Navigation",null,null,this.getTagsForStencil(c,"page_navigation",b).join(" ")),this.createVertexTemplateEntry(e+"paint;",30,25.5,"","Paint",null,null,this.getTagsForStencil(c,"paint",b).join(" ")),this.createVertexTemplateEntry(e+"pause;pointerEvents=1",15,24,"","Pause",null,null,this.getTagsForStencil(c,"pause",b).join(" ")),this.createVertexTemplateEntry(e+"pen;",29.4,29.7,"","Pen",null,null,this.getTagsForStencil(c, +"pen",b).join(" ")),this.createVertexTemplateEntry(e+"pie_chart;",30,30,"","Pie Chart",null,null,this.getTagsForStencil(c,"pie_chart",b).join(" ")),this.createVertexTemplateEntry(e+"play;",21,24,"","Play",null,null,this.getTagsForStencil(c,"play",b).join(" ")),this.createVertexTemplateEntry(e+"pointer;",30,30,"","Pointer",null,null,this.getTagsForStencil(c,"pointer",b).join(" ")),this.createVertexTemplateEntry(e+"preferences;pointerEvents=1",30,24,"","Preferences",null,null,this.getTagsForStencil(c, +"preferences",b).join(" ")),this.createVertexTemplateEntry(e+"printer;",30,25.5,"","Printer",null,null,this.getTagsForStencil(c,"printer",b).join(" ")),this.createVertexTemplateEntry(e+"privacy;",16.8,28.5,"","Privacy",null,null,this.getTagsForStencil(c,"privacy",b).join(" ")),this.createVertexTemplateEntry(e+"radio;",30,22.5,"","Radio",null,null,this.getTagsForStencil(c,"radio",b).join(" ")),this.createVertexTemplateEntry(e+"reload;",24,27,"","Reload",null,null,this.getTagsForStencil(c,"reload", +b).join(" ")),this.createVertexTemplateEntry(e+"repeat;pointerEvents=1",30,24,"","Repeat",null,null,this.getTagsForStencil(c,"repeat",b).join(" ")),this.createVertexTemplateEntry(e+"retry;",92*.3,48*.3,"","Retry",null,null,this.getTagsForStencil(c,"retry",b).join(" ")),this.createVertexTemplateEntry(e+"select;",30,30,"","Select",null,null,this.getTagsForStencil(c,"select",b).join(" ")),this.createVertexTemplateEntry(e+"settings;",30,30,"","Settings",null,null,this.getTagsForStencil(c,"settings",b).join(" ")), +this.createVertexTemplateEntry(e+"share;",21,28.5,"","Share",null,null,this.getTagsForStencil(c,"share",b).join(" ")),this.createVertexTemplateEntry(e+"shopping_cart;",30,25.5,"","Shopping Cart",null,null,this.getTagsForStencil(c,"shopping_cart",b).join(" ")),this.createVertexTemplateEntry(e+"shuffle;pointerEvents=1",30,21,"","Shuffle",null,null,this.getTagsForStencil(c,"shuffle",b).join(" ")),this.createVertexTemplateEntry(e+"silent;",30,30,"","Silent",null,null,this.getTagsForStencil(c,"silent", +b).join(" ")),this.createVertexTemplateEntry(e+"smartphone;",18,30,"","Smartphone",null,null,this.getTagsForStencil(c,"smartphone",b).join(" ")),this.createVertexTemplateEntry(e+"star;",30,27,"","Star",null,null,this.getTagsForStencil(c,"star",b).join(" ")),this.createVertexTemplateEntry(e+"stopwatch;",27,28.2,"","Stopwatch",null,null,this.getTagsForStencil(c,"stopwatch",b).join(" ")),this.createVertexTemplateEntry(e+"storage;",30,10.5,"","Storage",null,null,this.getTagsForStencil(c,"storage",b).join(" ")), +this.createVertexTemplateEntry(e+"sun;pointerEvents=1",30,30,"","Sun",null,null,this.getTagsForStencil(c,"sun",b).join(" ")),this.createVertexTemplateEntry(e+"tape;pointerEvents=1",30,12,"","Tape",null,null,this.getTagsForStencil(c,"tape",b).join(" ")),this.createVertexTemplateEntry(e+"tools;pointerEvents=1",29.7,29.7,"","Tools",null,null,this.getTagsForStencil(c,"tools",b).join(" ")),this.createVertexTemplateEntry(e+"trashcan;",24,30,"","Trashcan",null,null,this.getTagsForStencil(c,"trashcan",b).join(" ")), +this.createVertexTemplateEntry(e+"trophy;",28.5,30,"","Trophy",null,null,this.getTagsForStencil(c,"trophy",b).join(" ")),this.createVertexTemplateEntry(e+"umbrella;",30,30,"","Umbrella",null,null,this.getTagsForStencil(c,"umbrella",b).join(" ")),this.createVertexTemplateEntry(e+"unlocked;",24,30,"","Unlocked",null,null,this.getTagsForStencil(c,"unlocked",b).join(" ")),this.createVertexTemplateEntry(e+"up;",21,25.5,"","Up",null,null,this.getTagsForStencil(c,"up",b).join(" ")),this.createVertexTemplateEntry(e+ +"user;",30,30,"","User",null,null,this.getTagsForStencil(c,"user",b).join(" ")),this.createVertexTemplateEntry(e+"video_conversation;",30,15,"","Video Conversation",null,null,this.getTagsForStencil(c,"video_conversation",b).join(" ")),this.createVertexTemplateEntry(e+"volume;pointerEvents=1",30,30,"","Volume",null,null,this.getTagsForStencil(c,"volume",b).join(" ")),this.createVertexTemplateEntry(e+"volume_2;pointerEvents=1",101*.3,28.2,"","Volume",null,null,this.getTagsForStencil(c,"volume_2",b).join(" ")), +this.createVertexTemplateEntry(e+"wallet;",30,24,"","Wallet",null,null,this.getTagsForStencil(c,"wallet",b).join(" ")),this.createVertexTemplateEntry(e+"wifi;pointerEvents=1",29.7,21,"","WiFi",null,null,this.getTagsForStencil(c,"wifi",b).join(" ")),this.createVertexTemplateEntry(e+"window;",30,30,"","Window",null,null,this.getTagsForStencil(c,"window",b).join(" "))]);var e="html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=1;shape=mxgraph.ios7ui.", +d=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;html=1;shadow=0;dashed=0;strokeWidth=1;shape=mxgraph.ios.",b="ios ui ",c="mxgraph.ios7ui",f=[this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=1;shape=mxgraph.ios7.misc.iphone;fillColor=#ffffff;strokeColor=#c0c0c0;",200,400,"","iPhone (Portrait)",null,null,this.getTagsForStencil(c,"phone",b+"portrait").join(" ")), +this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=1;shape=mxgraph.ios7.misc.ipad7inch;fillColor=#ffffff;strokeColor=#c0c0c0;",366,549,"","iPad (7'')",null,null,this.getTagsForStencil(c,"tablet tab 7",b+"portrait").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=1;shape=mxgraph.ios7.misc.ipad10inch;fillColor=#ffffff;strokeColor=#c0c0c0;", +488,693,"","iPad (10'')",null,null,this.getTagsForStencil(c,"tablet tab 10",b+"portrait").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=1;shape=mxgraph.ios7.misc.ipad13inch;fillColor=#ffffff;strokeColor=#c0c0c0;",572,400*2.0325,"","iPad (13'')",null,null,this.getTagsForStencil(c,"tablet tab 10",b+"portrait").join(" ")),this.addDataEntry(b+"app bar portrait",175,15,"App Bar (portrait)","zVVdb4IwFP01fZTw6cejoDNLZmLYkj03o0CzQkmpivv1u0BBEIw+zMUmJL3n3tt7e05LkeUlxUbgLN7ygDBkrZHlCc5lPUsKjzCGTJ0GyFoh09ThQ+bLFa9RefUMC5LKexLMOuGA2Z7USA3k8sQUEMsE2loZyHJzKfg3+aSBjBskxgE/gqGDEeA8JoEywJOVKyRFVO5Oozyf7amGs8zFAvwhZczjjIuqihVWA3CIDih03/hSnsIyruqTCEmKq3utILXRDeEJkeIEIUfVcBkxc+q0mNAobtIUhvPajtrUM3MwUeSNE2kNiPSWvv+69gd8NsQI8gX1XcxolILJSFiaIU/lO/0pA+Ylixn+omn0VjlXpt2PaMwOj7garVYXLHZJV5Cq8MEzteBdTJvjTJ/UmdMUox3mHX2EeMWaIAxLeiC9cmNqqIo7TqGRttxkql0oyMMwJ3KgX9vpXZLaA0kNOPJLx9ltb4l6oeJTaVRcaPTPmqnyE0vvlX+Qhs5Aw8UcNejtSynqfV+5lb5ixVj0Q6ZPKrlxU3B77O/4R4LbzgMEB/P8WNbh3bf0Fw=="), +this.addDataEntry(b+"app bar landscape",280,15,"App Bar (landscape)","zZVdb4IwFIZ/TS81UMDppaIzS2Zi2JJdN6NAs0JJqYr79TvQovJh9MbFJiScj/ac87wlIMdPy7UkebIRIeXIWSHHl0Io/ZaWPuUcYYuFyFkijC14EH69ErXrqJUTSTN1zwasN+wJ31Ht0Y5CHblxJCqFtpY2chaFkuKHfrFQJY0nIaE4gGGBEZIioaExIJJXJ6RlXE03ZqJ42bExyfMFkRCPGOe+4ELWVZyoXuCH7JBB900sExkcszB9UqloeXXW2mUGXVORUiWPkHIwDVfzTjUPK6EsTpptnvaRQtvxaeuZHLwYeMMgnR5Ifx4Eb6ugx7MBI+k31F8QzuIMTE6jyoxEpj7Yb5UwrSjm5Jtl8XsdXGK3ndGYFxxJvU5adSheQjcuU+FT5ObAu0jjYdJHc+fGhugFeW8IvKEmKSeK7Wmr3JAapuJWMGjkVG40GXcUFFFUUNXT79TpXZK6PUltuPJzz9tubonaUfGpNCo7Gv2zZqb8CLfLP0hDr6fhbIoa7+2PUuq5r3yVgaFiz9opkyeV3L4puOs9TnD3EYKDef5Z6vTLf+kf"), +this.createVertexTemplateEntry(e+"slider;barPos=20;strokeColor=#0080f0;fillColor=#ffffff;strokeColor2=#a0a0a0;",150,15,"","Slider",null,null,this.getTagsForStencil(c,b+"slider",null).join(" ")),this.createVertexTemplateEntry("html=1;strokeWidth=1;shadow=0;dashed=0;shape=mxgraph.ios7ui.downloadBar;verticalAlign=middle;fontSize=8;fontColor=#000000;buttonText=;barPos=30;fillColor=#aaaaaa;strokeColor=#0080f0;align=center;",150,30,"Downloading 2 of 6\n\n","Download bar",null,null,this.getTagsForStencil(c, +"downloadBar",b+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.adjust;fillColor=#ffffff;gradientColor=none;",80,20,"","Adjust",null,null,this.getTagsForStencil(c,"adjust",b+"").join(" ")),this.addEntry(b+"horizontal button bar",function(){var b=new mxCell("",new mxGeometry(0,0,164,12.5),"html=1;strokeWidth=1;shadow=0;dashed=0;shape=mxgraph.ios7ui.rrect;rSize=3;strokeColor=#0080F0;fillColor=#ffffff;gradientColor=none;"); b.vertex=!0;var c=new mxCell("Item 1",new mxGeometry(0,0,41,12.5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;strokeWidth=1;shadow=0;dashed=0;shape=mxgraph.ios7ui.leftButton;rSize=3;fontSize=8;");c.vertex=!0;b.insert(c);c=new mxCell("Item 3",new mxGeometry(82,0,41,12.5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;strokeWidth=1;shadow=0;dashed=0;shape=mxgraph.ios7ui.rrect;rSize=0;fontSize=8;");c.vertex=!0;b.insert(c);c=new mxCell("Item 4",new mxGeometry(123, 0,41,12.5),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;strokeWidth=1;shadow=0;dashed=0;shape=mxgraph.ios7ui.rightButton;rSize=3;fontSize=8;");c.vertex=!0;b.insert(c);c=new mxCell("Item 2",new mxGeometry(41,0,41,12.5),"html=1;strokeWidth=1;shadow=0;dashed=0;shape=mxgraph.ios7ui.rrect;rSize=0;strokeColor=#0080F0;fillColor=#0080F0;fontColor=#ffffff;fontSize=8;");c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Horizontal button bar")}), -this.addDataEntry(d+"select bar",165,27,"Select Bar","7ZRNb8IwDIZ/Ta6oTcZ6HmWDy6RJHHaOiEujpU2VBCj79XM+ClTAhrbrIlWKX8dO/LxSCSubfmF4V79qAYqwZ8JKo7WLu6YvQSlCMykImxNKM/wIfbmRzUM267iB1t1TQGPBjqstRCUK1h1UEmrX4LPmOWEz64z+gHcpXI0K9UrNhd5jkGEguK1BpAAzne/Q9Bs/3URqW2zlxIKCtZtx48/3vi8NpQfcToOGbeeF31r5CUmNF5daaRMexaqwMFNJpc50GhbqeKmQCGHItbrFZrM0LhgH/U1kQUq8FqAbcOaAR/Zpbn/icRrLapCbOpXRImrcxnhzLD0ZgJvkwXU/2IUfqwDswpUBr/HJMYY06phZEit9QjLCiPoq8s5pil94I5X3ZQlqB06uOSY6MBKngrOeBrxTy4FEfi9m+iPm4hvKBhR3cgej9n9B/3ATffbkD/4b8EsD0g1vWrYeZj9uPVToqrLgLgw7vuuahxiefpXx+Pmf9As="), -this.addDataEntry(d+"select bar",165,27,"Select Bar","7ZVNb8IwDIZ/Ta4oTddxHmXAZRISh50j6tJoaVMlAcp+/ZyPAlWHhrYdiVQpfh078fMeStK87paat9WbKkCS9JWkuVbKhl3d5SAlYVQUJJ0Txih+hC1uZBOfpS3X0Nh7ClgoOHC5h6AEwdiTjEJla3zWPCHpzFitPuBdFLZChTml4oU6YkAxKLipoIgBZlrXoe52brqJUGa6FxMDErZ2xrU737m+zJeecJt5jbmd7yA+Iarh4lxJpf2j0tIvzJRCyiud+YU6XloIhNDnGtVgs1kcF7SF7iYyL0VeS1A1WH3CI8c4tzvxnIWyCsSuimVsGjRuQrw7l14MwE304Hs/0pEfGw9s5EqPV7vkEEMcdcgsiqW6IBlgRH0TeCc0xgteC+l8WYE8gBVbjokWtMCp4KqnBufUqieR3IuZ/Yg5o7cpa5DcigMM2v8F/dNN9PTFHXwY8EsD4g1rJRoHsxu27itUWRqwI8PO77rLw2zk4ZobCw/z/tm8hP6DexhefnTh+PV/8As="), -this.addEntry(d+"labels",function(){var b=new mxCell("",new mxGeometry(0,0,164,20),"shape=rect;fillColor=#F6F6F8;strokeColor=none;");b.vertex=!0;var c=new mxCell("Label",new mxGeometry(55,0,54,20),"text;fontColor=#000000;fontSize=10;verticalAlign=middle;align=center;spacingTop=2;");c.vertex=!0;b.insert(c);c=new mxCell("Label",new mxGeometry(109,0,55,20),"text;fontColor=#0080f0;fontSize=10;verticalAlign=middle;align=right;spacingTop=2;spacingRight=4;");c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b], -b.geometry.width,b.geometry.height,"Labels")}),this.addEntry(d+"search box",function(){var b=new mxCell("",new mxGeometry(0,0,164,20),"shape=rect;fillColor=#e0e0e0;strokeColor=none;");b.vertex=!0;var c=new mxCell("",new mxGeometry(0,0,164,20),"html=1;strokeWidth=1;shadow=0;dashed=0;shape=mxgraph.ios7ui.marginRect;rx=3;ry=3;rectMargin=5;fillColor=#ffffff;strokeColor=none;");c.vertex=!0;b.insert(c);c=new mxCell("Search",new mxGeometry(.5,.5,6,6),"shape=mxgraph.ios7.icons.looking_glass;strokeColor=#e0e0e0;fillColor=none;fontColor=#e0e0e0;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=middle;fontSize=6;fontStyle=0;spacingTop=2;"); -c.geometry.relative=!0;c.geometry.offset=new mxPoint(-17,-3);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Search Box")}),this.addEntry(d+"search box",function(){var b=new mxCell("",new mxGeometry(0,0,164,20),"shape=rect;fillColor=#F6F6F6;strokeColor=none;");b.vertex=!0;var c=new mxCell("",new mxGeometry(0,0,164,20),"html=1;strokeWidth=1;shadow=0;dashed=0;shape=mxgraph.ios7ui.marginRect;rx=3;ry=3;rectMargin=5;fillColor=#E4E4E4;strokeColor=none;"); -c.vertex=!0;b.insert(c);c=new mxCell("Search",new mxGeometry(.5,.5,6,6),"shape=mxgraph.ios7.icons.looking_glass;strokeColor=#878789;fillColor=none;fontColor=#878789;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=middle;fontSize=6;fontStyle=0;spacingTop=2;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-17,-3);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Search Box")}),this.addDataEntry(d+"status",164,25,"Status", +this.addDataEntry(b+"select bar",165,27,"Select Bar","7ZRNb8IwDIZ/Ta6oTcZ6HmWDy6RJHHaOiEujpU2VBCj79XM+ClTAhrbrIlWKX8dO/LxSCSubfmF4V79qAYqwZ8JKo7WLu6YvQSlCMykImxNKM/wIfbmRzUM267iB1t1TQGPBjqstRCUK1h1UEmrX4LPmOWEz64z+gHcpXI0K9UrNhd5jkGEguK1BpAAzne/Q9Bs/3URqW2zlxIKCtZtx48/3vi8NpQfcToOGbeeF31r5CUmNF5daaRMexaqwMFNJpc50GhbqeKmQCGHItbrFZrM0LhgH/U1kQUq8FqAbcOaAR/Zpbn/icRrLapCbOpXRImrcxnhzLD0ZgJvkwXU/2IUfqwDswpUBr/HJMYY06phZEit9QjLCiPoq8s5pil94I5X3ZQlqB06uOSY6MBKngrOeBrxTy4FEfi9m+iPm4hvKBhR3cgej9n9B/3ATffbkD/4b8EsD0g1vWrYeZj9uPVToqrLgLgw7vuuahxiefpXx+Pmf9As="), +this.addDataEntry(b+"select bar",165,27,"Select Bar","7ZVNb8IwDIZ/Ta4oTddxHmXAZRISh50j6tJoaVMlAcp+/ZyPAlWHhrYdiVQpfh078fMeStK87paat9WbKkCS9JWkuVbKhl3d5SAlYVQUJJ0Txih+hC1uZBOfpS3X0Nh7ClgoOHC5h6AEwdiTjEJla3zWPCHpzFitPuBdFLZChTml4oU6YkAxKLipoIgBZlrXoe52brqJUGa6FxMDErZ2xrU737m+zJeecJt5jbmd7yA+Iarh4lxJpf2j0tIvzJRCyiud+YU6XloIhNDnGtVgs1kcF7SF7iYyL0VeS1A1WH3CI8c4tzvxnIWyCsSuimVsGjRuQrw7l14MwE304Hs/0pEfGw9s5EqPV7vkEEMcdcgsiqW6IBlgRH0TeCc0xgteC+l8WYE8gBVbjokWtMCp4KqnBufUqieR3IuZ/Yg5o7cpa5DcigMM2v8F/dNN9PTFHXwY8EsD4g1rJRoHsxu27itUWRqwI8PO77rLw2zk4ZobCw/z/tm8hP6DexhefnTh+PV/8As="), +this.addEntry(b+"labels",function(){var b=new mxCell("",new mxGeometry(0,0,164,20),"shape=rect;fillColor=#F6F6F8;strokeColor=none;");b.vertex=!0;var c=new mxCell("Label",new mxGeometry(55,0,54,20),"text;fontColor=#000000;fontSize=10;verticalAlign=middle;align=center;spacingTop=2;");c.vertex=!0;b.insert(c);c=new mxCell("Label",new mxGeometry(109,0,55,20),"text;fontColor=#0080f0;fontSize=10;verticalAlign=middle;align=right;spacingTop=2;spacingRight=4;");c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b], +b.geometry.width,b.geometry.height,"Labels")}),this.addEntry(b+"search box",function(){var b=new mxCell("",new mxGeometry(0,0,164,20),"shape=rect;fillColor=#e0e0e0;strokeColor=none;");b.vertex=!0;var c=new mxCell("",new mxGeometry(0,0,164,20),"html=1;strokeWidth=1;shadow=0;dashed=0;shape=mxgraph.ios7ui.marginRect;rx=3;ry=3;rectMargin=5;fillColor=#ffffff;strokeColor=none;");c.vertex=!0;b.insert(c);c=new mxCell("Search",new mxGeometry(.5,.5,6,6),"shape=mxgraph.ios7.icons.looking_glass;strokeColor=#e0e0e0;fillColor=none;fontColor=#e0e0e0;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=middle;fontSize=6;fontStyle=0;spacingTop=2;"); +c.geometry.relative=!0;c.geometry.offset=new mxPoint(-17,-3);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Search Box")}),this.addEntry(b+"search box",function(){var b=new mxCell("",new mxGeometry(0,0,164,20),"shape=rect;fillColor=#F6F6F6;strokeColor=none;");b.vertex=!0;var c=new mxCell("",new mxGeometry(0,0,164,20),"html=1;strokeWidth=1;shadow=0;dashed=0;shape=mxgraph.ios7ui.marginRect;rx=3;ry=3;rectMargin=5;fillColor=#E4E4E4;strokeColor=none;"); +c.vertex=!0;b.insert(c);c=new mxCell("Search",new mxGeometry(.5,.5,6,6),"shape=mxgraph.ios7.icons.looking_glass;strokeColor=#878789;fillColor=none;fontColor=#878789;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=middle;fontSize=6;fontStyle=0;spacingTop=2;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-17,-3);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Search Box")}),this.addDataEntry(b+"status",164,25,"Status", "vZRtb4MgEMc/jS9rnNZ2b1e7NlmyZcnWD8D0VDLkDNDW7tMPhD5qM7cm0xi5/3HA/eDwoqRqloLU5TNmwLzo0YsSgahsq2oSYMwLA5p50dwLw0B/Xri44r1rvUFNBHA1JCC0ARvC1mAVK0i1Y06QJalNU0Cqh5zllLEEGYrWGy0m5tW6VAI/Ye/hyHXMzI0OQkFzdYWt5Ja3BKxAiZ3usqWZKl2PydiGlUCL0oWFsdWItHZxCD3mqxsu5f70o076qzojCjItPq2l0r8X3HaQ6GxaFMjVCYqgfZz+Rr9M51ibJn2aEvbAaMG1prDWKnFWqjmAMABrklJevBvvfBQOpRf+kV5wO71xh54xV1wAyQYy+2ifn5lVNMvMSF1st0DaWa87SP+BLB5eb1VTmGvBpyinPk2RSz/FqkYJnWprD999kAcX9fmbKryC6DzAAQv8HmRxl9heE8CIohs4G6sPo5v/FSlXx8lHe/Ju+tHUv6h9zHMJqrMRhzz69kabx3vWdj+9hr8B"), -this.addDataEntry(d+"message",164,20,"Message","xVbbbqMwEP0aHouICUnzSnp52UirdqU+WzDB1toY2W6b9OvX4IGWW5ZVuyoWkn3GM545x4MI4r083WtasYPKQQTxbRDvtVLWz+RpD0IEJOJ5EN8EhETuDcjdjHXVWKOKaijtEgfiHV6oeAaPeMDYs0DAMFrVUw2ZC5keuRB7JZRurPHdth4ON1ar39BaSlU6nxSjg7Zwms2wgTC9e1ASrD67La88twx3bNbejQEvGLphZRE1fl10ru/1ugmWPF1+PCqfH8AYWsCIBmali3Kz6kp9wvwahNFcvbpF5BY5NQxyXLTsyVNRixxyZbbPPJRUF7x88JTqmpu4npzbiTMcmi0/4FjXS5Ie+oA0DOBfqhoFSJW1SiI8FC+tx0g8Z0mbUXuo0k7hVPCidJho8ktNRTNeFm22O/R85G918ddLrwL5vquwXtAJY92HvHXtMGB60zwz9yHkmSpNmFEJmn6SqjN2fZh4l4/UJWPmdh7SIKjlL9A7bYpNPPCn4i4PEmF6GBjPvlq3h7cR1PFowI7U6NJeJFCyVKDBN+hvSrhTeGUWf61meO87XFJh4v622CdluFrt+kJs/4MMm3+VYa4rUJ4LDSF5plXFcN+o+RbJlVyUqxPogmBTekVfoxfpy/UFXeOW7z8PfvvHf4s/"), -this.addDataEntry(d+"action sheet",164,115,"Action Sheet","7VZNc4IwEP01HOuERNSzUL3UmU576DlKgEwDYUL86q/vQoKi2Err0F7UcWb3ZXez2ffMxCF+upsrmicLGTLhkEeH+EpKbax05zMhHIx46JDAwRjBz8GzL1bdahXlVLFMd0nAJmFDxZoZxACF3gsLFAnNS1OxFZScqlf+UboE7EIr+c58KaQCJJMZLEwjLkQNOZgEOCCBB3isaMihrbNwKB/KLfgIHNsNU5rtvjxRBdnjzJlMmVZ7CNnyUCc2YjQ0aQnjcVKnuZ4BaWGA+JB7HBAYdkaX50Va83qiS6DtfGiJTqFE4B6G9Ga7c8+PHNIiYaF16lmnu7iUxIDLYrzmAy3z6VprmX07/+awI5lpGzhpczJzy68Na+AITdCs7EOxApKbPXdiBl9nxrvAjNUoUkxQzTfspP4ltuwWz5LDzhjZhiy9+xOvTpdRVDDdovrQZSf2hx3ZP/vLtMRwZ+wSY71Q5t0p65GyYR+Ujf7ljl1KuGDT+zX7QwWM+lDAuKUAn2ar3iWQUhXz7MW+c8rjlhyXTRsDFhZViAV+q4uo+vyZLvYnCdeeSeRGldjdHuo6twgD3ONT2IQ3X8qf"), -this.addDataEntry(d+"action sheet",164,115,"Action Sheet","7VhRj6IwEP41PK4BqoiPKyz7suY2t5fc46ULFZotlLR11fv1N5XiouCK52ruEjWadjpTynzfN0OwUJCvHgUusxlPCLPQg4UCwbmqRvkqIIxZrk0TC4WW69rws9zowKqzWbVLLEih+gS4VcA7ZgtSWSqDVGtmDDLDpR4KEsOWU/FCf+spgrFUgr+RgDMuwFLwAhamc8pYbbJcFLohCkdgTwVOKBxrzx22T/gS5jZMzGmIUGR18I42JnM7j4TnRIk1uCxpojLj4Q2rsIzQNKvDnFFlxLIypNvYjwTBwOSoO1/oeL4ylUN06Gzz89MczNm/2wTLjCRmUqc5X6WaDQPK5XhBB4qX04VSvPg09c08z3mhjKPfhiNy9Ne4Ney27duRPocgEoKbZ+4FinsclFEHKMOKnrYgDCv6Tnb27wLKXOKZU7iya5sDGWTXO7M6nM/nkqgWyttT9gJ+2AJ+RqTEKTmqF74okg3KzkHFfCA2aiPm+dHYR12I6U+HsPTaaOo5cB9TjRqNMbtnNAUKhUAnsDL8Stgzl1RRTawwhmgiGu5Pew6vHCiYgwM2+2wjZIljWqQ/9L7h3bAvXVA3XQyA9sBA2KBPrbQme2rbl7Lnbr9OfAl/Rv0LbV0BXrGk8YBDyC+AhPGF6lly55tPXyiG3VCsdhrEeqf8NVXtd1Ra7/xC67X1him7uNiciWc/BKeJzYnCIIpuYusnNjS+gtrGp6tN99sBjXkhB7lmWkeLdd3JJELn6s37VG9oJzteW29eh97s8/XmX/vBpmL57dnmxO40vIRcJi3wv5Wk0A76774sL153txI6VHevXFvHYFlmVJEXMOszL4G7ffni/0v19hoPN3UBahPoiRZvN/L8t+S5SrN2nBZ7AlzE5PDT3l4rybFIafHdsGlluoi+fDWAhdnGxdDnb/vLYZ5dpL+sdwKOvd5AZ3abGmJknw8xTD9eYVXuzTdcfwA="), -this.addDataEntry(d+"cell list",164,120,"Cell List","7ZlNb6MwEIZ/DcdGtgmEHBtSeulKK3WlPbPBgLUGI0PbpL9+HWyaD2BlWlxVBUuR7MEz2O+YRxmwbD/b3/OwSH+wCFPLvrNsnzNWyV629zGlFgIksuythRAQPwsFPVdhfRUUIcd5peOApMNzSJ+wtEhDWR2oMpRpWBy7HO9EyE1ZcfYX+4wyLow5y8W1TUwobUwWsuO6CXvCw4iIpVxNFyEj9iLGQAzUCjCv8L53F7VJbeEeswxX/CCmvJCoStUMdyndUkyStHFT2wdhKQ3Jm+9JFNFRunRrZLc0egj/iFS9SyiWV4/k9TgNAjU+Ew7UTdg5LsWs32p7UFhCSpJc9CmO6+hFuCN58lCPtsg5mX6x4mjRVRa9T9lGWI5pWJFnfBH/I2ovB59Izp7yCEdKJ67ktTXPahCsHQB11bK71TqoZ23hSJdz9ZyOY+kMFE/d8ScjYiEIqPWpKOrmN6vm7k0EFsclrlriv61bKx+Ofj6yfXIE2YKwcrXISLlbcLnnq0QI1d26fVD1S4f/5KArBUPPb3cKbuBVEkykwJ0BNAKArhJ4uAwzasJWn84we3Ncrp7g7uQY5n0BhvWoPhWGrWeGGWPY0gTDmsP1aRBb+ttbIZKm4uvJQQzCL0CxHtmnQjHYrpdnjI2FMdcIxtrVu1mMAbC6DbT/i8Eeyb8zxwZU+MY41qf7ZEDWLutnkI0FMs8IyNpvAcyCzPEcZ6v/QDnTA9mAMt8cyHp0nwzI2rX9DLKxQAaBEZK13wWYJZkXeHdr7cpSnqhJkQwNqPXNkaxH929KMjE8feaV08+/Av8D"), -this.addDataEntry(d+"cell list",164,60,"Cell List","7Vddb4IwFP01PGr4dnucuvniErMt2XMnBZoVStpOZb9+F1pRQCPqfJImJL3nfrXn9D5gOJNkM+Moi19ZgKnhPBvOhDMm1S7ZTDClhm2SwHCmhm2b8Bn2yxGvVXrNDHGcyi4JtkpYIfqDFaIAIXOqARGjrNhyvISSYyE5+8YTRhkHMGUp+MYhoXQLGbYTlgvwiKOAwFEa4VAyYGuwTTD0CTCXeHP0FiWkrzDDLMGS5xCyJoGMdYTvqrQYkyjWab66vYmEsqMqdccJbDQthylyWhTN0RcodRFPLJXv5LcIs0xt7/FmlgtwjgVEferbWYAgSqIU9hSHZfUMLUkafbAMMHsHzEv31OvKq30Zr/pVmRxTJMkK1+pfQ7Z7JtnJJipmZ0iYGA0TIpZDrk7Z4B/I9csFHlpUXDBBJGF7lBZMkSWi84Y7IUFQtK0k2HbYJjxpvApsqqy1edP8uW3hH8vVVTTnsGj1hFyP/9BT9p6kXltQ61xBdfsFI3CqqvfA8mrdB169AgtDgWXrQVSX6PRGvH4grx/Ihn55vcy/6uX3M31ad+++Z3rUz/StZtq9xUw/9DN9WvfRXc00mLv/FhW+/1vzBw=="), -this.addDataEntry(d+"message",164,35,"Message","1VbbbqMwEP0aHhdxyaX72KSbaKWuFO3uSx+98QBuDYNsp0n263cMJikQWqQ2K9URhDme8WXO8YAXL/PDWrEy+4EcpBd/8+KlQjT1U35YgpReFAjuxXdeFAV0edFqoDeseoOSKSjMmICoDnhmcgc1UgPaHKUDdMZK+6hgS0MutFH4BEuUqAgssKC+RSKkbCAvipOqEZ4qxgUtpeNOQ3Lckx2Q4VYAysBhcBcV5LawBszBqCO57AU3mfOYTeqwDESaubB4WmNM13Z6Cj3nhB5cWi6nKO6laAMGFEFr2jXowYTRMKLUMDJnQTBfrW4sjoX5Jf7aERqz5WYb4UyKtCBMQlLRUrKtKNLfWBIWnoH7qvuOkreQ7A/IDWphBNpIVedpYVMvtkzed/pzwbnd08nh1k156hhFXfQ2dUGfuQZTIJkRz9Aa/hKdboYNCpo4Ctx6HP/HltWEY5JoMD0tnBY5Sh6TnjzsYm4n00Fd5IfUnndfoJ77udBbv2GirRNie1a1C9w51t+krlFJl+selR3VOfX8dIRM+kL8WrV3iqAd8EIS06sp4kt4fU1Me5r4TubjTtt1pGjvjK4C9nRPFFVIPqgWyupg2e3UgDHkznulIZy/UmVaZSX6wCN/qVq/l2HHaHgNSmc9Sh9wR8BTgZZEy++eFQa445Zj6tPfA2h6V3B2dD5n8stdWVrU9/3/xf1sFPc3gf19Uu4/4jiTef4Aq91ffp/9Aw=="), -this.addDataEntry(d+"message",164,100,"Message","7Zbfb9sgEMf/Gj8uwjg/2sckTdqHVZqaSntm5myzYmMBbpL99TsM+VUnm9el0h6GFAu+3AF393FwlMzLzb1mdfGoOMgoWUTJXCtlfa/czEHKiBLBo+QuopTgL6LLC7NxO0tqpqGyfRyod3hlsgGveMHYrQyCKVjtuhpSXHJmrFYvMFdSaRQrVeHcLBNS7qSIJlnbUM814wKP8sYcl+RqjWOCg3AC0BY2F6NopRDCPagSrN6iyVpwWwSL8dC7FSDyYudGfPiEGS/ke99DUrAT8nI+R0knRytmG82ZO0GMIUxjNz99vJg6jMyljkmRVzhMMSzAdMxc0CJlchomSsG5bPOpKrsSP5zvKAyP0nvbtj612OW7Zqmo8mdVo5agoMHg6l9D9uK+VaDvrYLXNEhmxSucrH+uMmGLL0rgzgcTlWUGbKd0+5P0quawU80HcEGUrIooepNctXu6SkIaJctOVQtbypA1X4DjPJ6gzZkpgIfBDoZyk7vXfSCUmTRigOWXqun7Zi0mi/FifsSShMz2JGlyIOFz63UXT7pwkba9hQZrMlsXwsIKVbfYGmP4SJBuSZcj+pcchfOMvMM2uI9O/a8C2agLmcDxsyg9YyrDR6oabcAL3xvjTpi7qJBFCASiSS1bRVSNBYM9q/CRiUqYAjvfNLCXjBk7+KcwJeMbslw6XYr6Iez5G2StA+3XvNIurvur5gTXT5d4DVZPAaqYXp3h4EAGSYDg+N+RnKF6Z/deqgPHQ/IBHI87HD8B46gstWjvv34XnvbR/r/v/qiiN1eoKA4PH5Pe/Phb8yc="), -this.addEntry(d+"alert",function(){var b=new mxCell("A dialog text that notifies you of something of which you don't need to make a decision, just to acknowledge it by pressing the close button.",new mxGeometry(0,0,120,70),"shape=rect;rounded=1;strokeColor=none;fillColor=#F6F6F8;gradientColor=none;shadow=0;glass=0;dashed=1;fontFamily=Helvetica;fontSize=7;fontColor=#333333;align=center;html=0;verticalAlign=top;whiteSpace=wrap;spacing=8;spacingTop=0;");b.vertex=!0;var c=new mxCell("Close",new mxGeometry(0, -1,120,20),"shape=text;align=center;verticalAlign=middle;fontSize=8;fontColor=#0680FF;strokeColor=none;fillColor=none;spacingTop=3;resizeWidth=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,-20);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Alert")}),this.addDataEntry(d+"dialog",120,70,"Dialog","5ZZNb9pAEIZ/jY+JjN0SroHW6aVSpVTqeeUde0dZ71rr4cP99Z3FAwFiNyhtDlVB4J3vwc+L5CRfNbuHoFrz1WuwSf45yVfBexpOzW4F1iZZijrJPyVZlvInyYqJ6GwfTVsVwNE1BdlQsFF2DYPnnk2NyvqaD4RkYUjpqLeS0hnVxmOAkocsg187DbHhjK2Ogn+Clbc+sMd5x5nLCq09uJIsL+b8XrC/Dkojr3qRzgO037Kdxhyruk7OWnXmOKnyjgrVoO3Z8QXsBghLJYFH/BlXXIh5Mnx4sV9ZrB37Sl4AOLg01FgZtIEQm9l7ySHfsndrkOCxVWVsvWVocVc20dUyS6zvMX3fSO4vt4PdJKO9SwA9gG+AQs8pW9RkJEM4pgawNlJ2Jz7VDXZ9LH0mzgeBPi6A/BUBwI7ixah4cZ6wQuj42Ps1f/sqKiNONfEe8CpOH4MOIBrkY0MoUUP8TQZLExNLQu8OYVJPcDups/0SI7wuITWotYVzAdz9RgCvSvUgx1OoNxFzgI7b/xA+swlpXMU+exv7XHwBrCLcwFn/MUHIiG8eXUTZy/QLCfmq6oBeCOi42FWa+vBSUwfas3eBPPIvT+eLtCjeCjkfZfwnPPuzghO68xG42d+Be/MudD9O083+V7pSkN7KzflnabP5/PAxpJ8+m/wC"), -this.createVertexTemplateEntry("html=1;strokeWidth=1;shadow=0;dashed=0;shape=mxgraph.ios7.misc.bluetooth;fillColor=#007AFF;strokeColor=none;buttonText=;strokeColor2=#222222;fontColor=#222222;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;align=center;",15,15,"","Bluetooth",null,null,this.getTagsForStencil(b,"bluetooth",d+"").join(" ")),this.createVertexTemplateEntry("html=1;strokeWidth=1;shadow=0;dashed=0;shape=mxgraph.ios7.misc.broadcast;fillColor=#4CDA64;strokeColor=none;buttonText=;strokeColor2=#222222;fontColor=#222222;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;align=center;", -15,15,"","Broadcast",null,null,this.getTagsForStencil(b,"broadcast",d+"").join(" ")),this.createVertexTemplateEntry("html=1;strokeWidth=1;shadow=0;dashed=0;shape=mxgraph.ios7.misc.link;fillColor=#4CDA64;strokeColor=none;buttonText=;strokeColor2=#222222;fontColor=#222222;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;align=center;",15,15,"","Link",null,null,this.getTagsForStencil(b,"link",d+"").join(" ")),this.createVertexTemplateEntry("html=1;strokeWidth=1;shadow=0;dashed=0;shape=mxgraph.ios7.misc.night;fillColor=#5855D6;strokeColor=none;buttonText=;strokeColor2=#222222;fontColor=#222222;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;align=center;", -15,15,"","Night",null,null,this.getTagsForStencil(b,"night",d+"").join(" ")),this.createVertexTemplateEntry("html=1;strokeWidth=1;shadow=0;dashed=0;shape=mxgraph.ios7.misc.notification;fillColor=#FF3B2F;strokeColor=none;buttonText=;strokeColor2=#222222;fontColor=#222222;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;align=center;",15,15,"","Notification",null,null,this.getTagsForStencil(b,"notification",d+"").join(" ")),this.createVertexTemplateEntry("html=1;strokeWidth=1;shadow=0;dashed=0;shape=mxgraph.ios7.misc.settings;fillColor=#8F8E94;strokeColor=none;buttonText=;strokeColor2=#222222;fontColor=#222222;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;align=center;", -15,15,"","Settings",null,null,this.getTagsForStencil(b,"settings",d+"").join(" ")),this.createVertexTemplateEntry("html=1;strokeWidth=1;shadow=0;dashed=0;shape=mxgraph.ios7.misc.switch;fillColor=#8F8E94;strokeColor=none;buttonText=;strokeColor2=#222222;fontColor=#222222;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;align=center;",15,15,"","Switch",null,null,this.getTagsForStencil(b,"switch",d+"").join(" ")),this.createVertexTemplateEntry("html=1;strokeWidth=1;shadow=0;dashed=0;shape=mxgraph.ios7.misc.text_size;fillColor=#007AFF;strokeColor=none;buttonText=;strokeColor2=#222222;fontColor=#222222;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;align=center;", -15,15,"","Text Size",null,null,this.getTagsForStencil(b,"text size",d+"").join(" ")),this.createVertexTemplateEntry("html=1;strokeWidth=1;shadow=0;dashed=0;shape=mxgraph.ios7.misc.travel;fillColor=#FF9501;strokeColor=none;buttonText=;strokeColor2=#222222;fontColor=#222222;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;align=center;",15,15,"","Travel",null,null,this.getTagsForStencil(b,"travel",d+"").join(" ")),this.createVertexTemplateEntry("html=1;strokeWidth=1;shadow=0;dashed=0;shape=mxgraph.ios7.misc.vpn;fillColor=#007AFF;strokeColor=none;buttonText=;strokeColor2=#222222;fontColor=#222222;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;align=center;", -15,15,"","VPN",null,null,this.getTagsForStencil(b,"vpn virtual private network",d+"").join(" ")),this.createVertexTemplateEntry("html=1;strokeWidth=1;shadow=0;dashed=0;shape=mxgraph.ios7.misc.wifi;fillColor=#007AFF;strokeColor=none;buttonText=;strokeColor2=#222222;fontColor=#222222;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;align=center;",15,15,"","WiFi",null,null,this.getTagsForStencil(b,"wifi",d+"").join(" ")),this.createVertexTemplateEntry("html=1;strokeWidth=1;shadow=0;dashed=0;shape=mxgraph.ios7ui.url;fillColor=#e0e0e0;strokeColor=#c0c0c0;buttonText=;strokeColor2=#222222;fontColor=#222222;fontSize=8;spacingTop=2;align=center;", -165,12.5,"draw.io","URL",null,null,this.getTagsForStencil(b,"url",d+"url").join(" ")),this.createVertexTemplateEntry(e+"iconGrid;fillColor=#c0c0c0;gridSize=3,3;",175,280,"","Icon grid",null,null,this.getTagsForStencil(b,"iconGrid",d+"icon grid").join(" ")),this.addEntry(d+"action dialog",function(){var b=new mxCell("",new mxGeometry(0,0,164,60),"shape=rect;fillColor=#a0a0a0;strokeColor=none;shadow=0;");b.vertex=!0;var c=new mxCell("Action",new mxGeometry(8,6,148,21),"html=1;strokeWidth=1;shadow=0;dashed=0;rounded=1;absoluteArcSize=1;arcSize=6;fontColor=#0080F0;fontSize=7;fontSize=14;fillColor=#e0e0e0;strokeColor=none;fontStyle=1;"); -c.vertex=!0;b.insert(c);c=new mxCell("Cancel",new mxGeometry(8,33,148,21),"html=1;strokeWidth=1;shadow=0;dashed=0;rounded=1;absoluteArcSize=1;arcSize=6;fontColor=#0080F0;fontSize=7;fontSize=14;fillColor=#e0e0e0;strokeColor=none;fontStyle=1;");c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Action Dialog")}),this.createVertexTemplateEntry(c+"iKeybLett;",174,100,"","iPhone Keyboard (letters)",null,null,this.getTagsForStencil("mxgraph.ios7.misc", -"keyboard letters",d+"").join(" ")),this.createVertexTemplateEntry(c+"iKeybNumb;",174,100,"","iPhone Keyboard (numbers)",null,null,this.getTagsForStencil("mxgraph.ios7.misc","keyboard letters",d+"").join(" ")),this.createVertexTemplateEntry(c+"iKeybSymb;",174,100,"","iPhone Keyboard (symbols)",null,null,this.getTagsForStencil("mxgraph.ios7.misc","keyboard symbols",d+"").join(" ")),this.createVertexTemplateEntry(c+"iKeybLett;",332,144,"","iPad 7''Keyboard (letters)",null,null,this.getTagsForStencil("mxgraph.ios7.misc", -"keyboard letters",d+"").join(" ")),this.createVertexTemplateEntry(c+"iKeybNumb;",332,144,"","iPad 7'' Keyboard (numbers)",null,null,this.getTagsForStencil("mxgraph.ios7.misc","keyboard letters",d+"").join(" ")),this.createVertexTemplateEntry(c+"iKeybSymb;",332,144,"","iPad 7'' Keyboard (symbols)",null,null,this.getTagsForStencil("mxgraph.ios7.misc","keyboard symbols",d+"").join(" ")),this.createVertexTemplateEntry(c+"iKeybLett;",442,192,"","iPad 10''Keyboard (letters)",null,null,this.getTagsForStencil("mxgraph.ios7.misc", -"keyboard letters",d+"").join(" ")),this.createVertexTemplateEntry(c+"iKeybNumb;",442,192,"","iPad 10'' Keyboard (numbers)",null,null,this.getTagsForStencil("mxgraph.ios7.misc","keyboard letters",d+"").join(" ")),this.createVertexTemplateEntry(c+"iKeybSymb;",442,192,"","iPad 10'' Keyboard (symbols)",null,null,this.getTagsForStencil("mxgraph.ios7.misc","keyboard symbols",d+"").join(" ")),this.createVertexTemplateEntry(c+"iKeybLett;",200*2.53,400*.55,"","iPad 13''Keyboard (letters)",null,null,this.getTagsForStencil("mxgraph.ios7.misc", -"keyboard letters",d+"").join(" ")),this.createVertexTemplateEntry(c+"iKeybNumb;",200*2.53,400*.55,"","iPad 13'' Keyboard (numbers)",null,null,this.getTagsForStencil("mxgraph.ios7.misc","keyboard letters",d+"").join(" ")),this.createVertexTemplateEntry(c+"iKeybSymb;",200*2.53,400*.55,"","iPad 13'' Keyboard (symbols)",null,null,this.getTagsForStencil("mxgraph.ios7.misc","keyboard symbols",d+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.call_pad;", -140,160,"","Call Pad",null,null,this.getTagsForStencil("mxgraph.ios7.misc","call_pad",d+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.number_pad;strokeWidth=1;",140,160,"","Number Pad",null,null,this.getTagsForStencil("mxgraph.ios7.misc","number_pad",d+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.keyboard_(letters);", -175,120,"","Keyboard",null,null,this.getTagsForStencil("mxgraph.ios7.misc","keyboard_(letters)",d+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.scroll_(horizontal);fillColor=#a0a0a0;",80,6,"","Scroll (Horizontal)",null,null,this.getTagsForStencil("mxgraph.ios7.misc","scroll_(horizontal)",d+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.scroll_(vertical);fillColor=#a0a0a0;", -6,80,"","Scroll (Vertical)",null,null,this.getTagsForStencil("mxgraph.ios7.misc","scroll_(vertical)",d+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.add;fillColor=#00dd00;strokeColor=#ffffff;",12,12,"","Add",null,null,this.getTagsForStencil("mxgraph.ios7.misc","add",d+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.delete;fillColor=#ff0000;strokeColor=#ffffff;", -12,12,"","Delete",null,null,this.getTagsForStencil("mxgraph.ios7.misc","delete",d+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.select;fillColor=#0080f0;strokeColor=#ffffff;",12,12,"","Select",null,null,this.getTagsForStencil("mxgraph.ios7.misc","select",d+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.remove;fillColor=#0080f0;strokeColor=#ffffff;", -16,12,"","Remove",null,null,this.getTagsForStencil("mxgraph.ios7.misc","remove",d+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.check;strokeColor=#0080f0;",10,8,"","Check",null,null,this.getTagsForStencil("mxgraph.ios7.misc","check",d+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.flagged;strokeColor=#0080f0;", -12,12,"","Flagged",null,null,this.getTagsForStencil("mxgraph.ios7.misc","flagged",d+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.up;strokeColor=#0080f0;",12,6,"","Up",null,null,this.getTagsForStencil("mxgraph.ios7.misc","up",d+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.down;strokeColor=#0080f0;", -12,6,"","Down",null,null,this.getTagsForStencil("mxgraph.ios7.misc","down",d+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.left;strokeColor=#0080f0;",6,12,"","Left",null,null,this.getTagsForStencil("mxgraph.ios7.misc","left",d+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.right;strokeColor=#0080f0;", -6,12,"","Right",null,null,this.getTagsForStencil("mxgraph.ios7.misc","right",d+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.increase;fillColor=#ffffff;strokeColor=#0080f0;",12,12,"","Increase",null,null,this.getTagsForStencil("mxgraph.ios7.misc","increase",d+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.info;fillColor=#ffffff;strokeColor=#0080f0;", -12,12,"","Info",null,null,this.getTagsForStencil("mxgraph.ios7.misc","info",d+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.more_2;strokeColor=#a0a0a0;",6,8,"","More 2",null,null,this.getTagsForStencil("mxgraph.ios7.misc","more_2",d+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.more;strokeColor=#a0a0a0;", -5,8,"","More",null,null,this.getTagsForStencil("mxgraph.ios7.misc","more",d+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.options;fillColor=#222222;",12,6,"","Options",null,null,this.getTagsForStencil("mxgraph.ios7.misc","options",d+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.pause;fillColor=#ffffff;strokeColor=#0080f0;", -12,12,"","Pause",null,null,this.getTagsForStencil("mxgraph.ios7.misc","pause",d+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.star;fillColor=#0080f0;strokeColor=none;",12,12,"","Star",null,null,this.getTagsForStencil("mxgraph.ios7.misc","star",d+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.contacts_bar;strokeColor=#0080F0;fillColor=#e0e0e0", -175,400*.07,"","Contacts Bar",null,null,this.getTagsForStencil("mxgraph.ios7.misc","contacts_bar",d+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.edit_bar;strokeColor=#0080F0;fillColor=#e0e0e0",175,400*.07,"","Edit Bar",null,null,this.getTagsForStencil("mxgraph.ios7.misc","edit_bar",d+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.message_bar;strokeColor=#0080F0;fillColor=#e0e0e0", -175,400*.07,"","Message Bar",null,null,this.getTagsForStencil("mxgraph.ios7.misc","message_bar",d+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.misc_bar;strokeColor=#0080F0;fillColor=#e0e0e0",175,400*.07,"","Misc Bar",null,null,this.getTagsForStencil("mxgraph.ios7.misc","misc_bar",d+"").join(" ")),this.createVertexTemplateEntry(e+"onOffButton;buttonState=on;strokeColor=#38D145;strokeColor2=#aaaaaa;fillColor=#38D145;fillColor2=#ffffff;", -43.5,15,"","On-off button (On)",null,null,this.getTagsForStencil(b,"onOffButton",d+"").join(" ")),this.createVertexTemplateEntry(e+"onOffButton;buttonState=off;strokeColor=#38D145;strokeColor2=#aaaaaa;fillColor=#38D145;fillColor2=#ffffff;",43.5,15,"","On-off button (Off)",null,null,this.getTagsForStencil(b,"onOffButton",d+"").join(" ")),this.createVertexTemplateEntry("html=1;strokeWidth=1;shadow=0;dashed=0;shape=mxgraph.ios7ui.icon;fontSize=8;fontColor=#ffffff;buttonText=;whiteSpace=wrap;align=center;", -40,36,"Icon","Icon",null,null,this.getTagsForStencil(b,"icon",d+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.loading_circle;",40,40,"","Loading Circle",null,null,this.getTagsForStencil("mxgraph.ios7.misc","loading_circle",d+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.circle;strokeColor=#222222;fillColor=none;", -12,12,"","Circle",null,null,this.getTagsForStencil("mxgraph.ios7.misc","circle",d+"").join(" ")),this.createVertexTemplateEntry(e+"pageControl;fillColor=#222222;strokeColor=#aaaaaa;",50,5,"","Page control",null,null,this.getTagsForStencil(b,"pageControl",d+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.current_location;strokeColor=#ffffff;fillColor=#0080F0",60, -60,"","Current Location",null,null,this.getTagsForStencil("mxgraph.ios7.misc","current_location",d+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.expand;fillColor=#c0c0c0;",24,6,"","Expand",null,null,this.getTagsForStencil("mxgraph.ios7.misc","expand",d+"").join(" ")),this.addDataEntry(d+"volume control",160,14,"Volume Control","vVVdb8IgFP01fbTBVqvPuunTEpM97HFhchUyWhqgWvfrd1to/WjdjHEjacI9cLmcc4AG8Twtl5rm/EUxkEH8HMRzrZR1vbScg5RBRAQL4qcgigh+QbS4MjqsR0lONWT2loTIJeyoLMAhDjD2ID1gOM2rroY1LjkzVqtPmCupNIKZynBsthFSXkB+YdAWyqubqyG/syWoFKw+4JS9YJb7GYkjQDiILW/SRg6jxsXbNvVIFTuebT/z+HbmabmtDAqFMpMwFWYd7pQsUnhnap9dsA+iOKnbNalu0iXq1+XgLQ3HLuVEp6Sr0tRBGiS1YgdnxfqU8/VWSuA22mKDC63VZmPAdpRud3mT+KMHiF/k/yn9ecIPRjRns++83muFLz5o1mmsmfyBNePfreE2xeynYavzm6dfI5zitcCAYMCo4cB80OdoIUIjBQN0afZB9UpVVBLScRC9JcmULJDXTOV0LWylwZCQ7hlY1A1xTjMm4VV8VUVRusccgGnX8WHP5bvjicLw+PA7507/C98="), -this.addDataEntry(d+"picker",175,160,"Picker","7ZZta8IwEMc/Td5Km9i6vV3dZLDBYC/2OqxXE5Y2kkSt+/S7mtQHtEx8gg0Vofe/u9z1/6tQwrKyHhk+Ea86B0XYI2GZ0dr5q7LOQClCI5kTNiSURvgj9KkjGy+z0YQbqNwhDdQ3zLiagle8YN1CBUG4EtcaxoQ9WGf0F3zI3IlWETzXcwwiDHJuBeQhwMykOaGsx83d9aS2g6ns8epTaIP5MBiMg7pz+aUUNh+BLsGZBZbMwwZNxSDxbQLkWLRtqb/riFsvjFe9ay/wItix3xq2Y82zgxKV+FoWFbpy7/K7KYmTEGdaNTmcynjUfFE3YLFqc+ZB5tLjzGXhETGguJMz2Dr/FMP7XYZf7Zn8J4aHEW9a4mQaLbaPaTt0UVhwO4BWix3ELOlixi7MDIG9yArs79To8rOauo9nIZVq9UpXsLMi/avQ0/4FoKdd0Pu3P+oZmN2nF2A26GKW3JidgVlM706HhuH6zc+Xb74Y/gA=")]; -this.addPalette("ios7ui","iOS UI",!1,mxUtils.bind(this,function(a){for(var b=0;b<f.length;b++)a.appendChild(f[b](a))}))}})();(function(){Sidebar.prototype.addLeanMappingPalette=function(){var a=mxConstants.STYLE_STROKEWIDTH+"=2;html=1;shape=mxgraph.lean_mapping.",d=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;html=1;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;strokeWidth=2;shape=mxgraph.lean_mapping.",e=this,b=[this.createVertexTemplateEntry(d+"boat_shipment;align=center;",100,100,"","Boat Shipment",null,null,this.getTagsForStencil("mxgraph.lean_mapping","boat_shipment","value stream lean mapping ").join(" ")),this.addDataEntry("value stream lean mapping data box", +this.addDataEntry(b+"message",164,20,"Message","xVbbbqMwEP0aHouICUnzSnp52UirdqU+WzDB1toY2W6b9OvX4IGWW5ZVuyoWkn3GM545x4MI4r083WtasYPKQQTxbRDvtVLWz+RpD0IEJOJ5EN8EhETuDcjdjHXVWKOKaijtEgfiHV6oeAaPeMDYs0DAMFrVUw2ZC5keuRB7JZRurPHdth4ON1ar39BaSlU6nxSjg7Zwms2wgTC9e1ASrD67La88twx3bNbejQEvGLphZRE1fl10ru/1ugmWPF1+PCqfH8AYWsCIBmali3Kz6kp9wvwahNFcvbpF5BY5NQxyXLTsyVNRixxyZbbPPJRUF7x88JTqmpu4npzbiTMcmi0/4FjXS5Ie+oA0DOBfqhoFSJW1SiI8FC+tx0g8Z0mbUXuo0k7hVPCidJho8ktNRTNeFm22O/R85G918ddLrwL5vquwXtAJY92HvHXtMGB60zwz9yHkmSpNmFEJmn6SqjN2fZh4l4/UJWPmdh7SIKjlL9A7bYpNPPCn4i4PEmF6GBjPvlq3h7cR1PFowI7U6NJeJFCyVKDBN+hvSrhTeGUWf61meO87XFJh4v622CdluFrt+kJs/4MMm3+VYa4rUJ4LDSF5plXFcN+o+RbJlVyUqxPogmBTekVfoxfpy/UFXeOW7z8PfvvHf4s/"), +this.addDataEntry(b+"action sheet",164,115,"Action Sheet","7VZNc4IwEP01HOuERNSzUL3UmU576DlKgEwDYUL86q/vQoKi2Err0F7UcWb3ZXez2ffMxCF+upsrmicLGTLhkEeH+EpKbax05zMhHIx46JDAwRjBz8GzL1bdahXlVLFMd0nAJmFDxZoZxACF3gsLFAnNS1OxFZScqlf+UboE7EIr+c58KaQCJJMZLEwjLkQNOZgEOCCBB3isaMihrbNwKB/KLfgIHNsNU5rtvjxRBdnjzJlMmVZ7CNnyUCc2YjQ0aQnjcVKnuZ4BaWGA+JB7HBAYdkaX50Va83qiS6DtfGiJTqFE4B6G9Ga7c8+PHNIiYaF16lmnu7iUxIDLYrzmAy3z6VprmX07/+awI5lpGzhpczJzy68Na+AITdCs7EOxApKbPXdiBl9nxrvAjNUoUkxQzTfspP4ltuwWz5LDzhjZhiy9+xOvTpdRVDDdovrQZSf2hx3ZP/vLtMRwZ+wSY71Q5t0p65GyYR+Ujf7ljl1KuGDT+zX7QwWM+lDAuKUAn2ar3iWQUhXz7MW+c8rjlhyXTRsDFhZViAV+q4uo+vyZLvYnCdeeSeRGldjdHuo6twgD3ONT2IQ3X8qf"), +this.addDataEntry(b+"action sheet",164,115,"Action Sheet","7VhRj6IwEP41PK4BqoiPKyz7suY2t5fc46ULFZotlLR11fv1N5XiouCK52ruEjWadjpTynzfN0OwUJCvHgUusxlPCLPQg4UCwbmqRvkqIIxZrk0TC4WW69rws9zowKqzWbVLLEih+gS4VcA7ZgtSWSqDVGtmDDLDpR4KEsOWU/FCf+spgrFUgr+RgDMuwFLwAhamc8pYbbJcFLohCkdgTwVOKBxrzx22T/gS5jZMzGmIUGR18I42JnM7j4TnRIk1uCxpojLj4Q2rsIzQNKvDnFFlxLIypNvYjwTBwOSoO1/oeL4ylUN06Gzz89MczNm/2wTLjCRmUqc5X6WaDQPK5XhBB4qX04VSvPg09c08z3mhjKPfhiNy9Ne4Ney27duRPocgEoKbZ+4FinsclFEHKMOKnrYgDCv6Tnb27wLKXOKZU7iya5sDGWTXO7M6nM/nkqgWyttT9gJ+2AJ+RqTEKTmqF74okg3KzkHFfCA2aiPm+dHYR12I6U+HsPTaaOo5cB9TjRqNMbtnNAUKhUAnsDL8Stgzl1RRTawwhmgiGu5Pew6vHCiYgwM2+2wjZIljWqQ/9L7h3bAvXVA3XQyA9sBA2KBPrbQme2rbl7Lnbr9OfAl/Rv0LbV0BXrGk8YBDyC+AhPGF6lly55tPXyiG3VCsdhrEeqf8NVXtd1Ra7/xC67X1him7uNiciWc/BKeJzYnCIIpuYusnNjS+gtrGp6tN99sBjXkhB7lmWkeLdd3JJELn6s37VG9oJzteW29eh97s8/XmX/vBpmL57dnmxO40vIRcJi3wv5Wk0A76774sL153txI6VHevXFvHYFlmVJEXMOszL4G7ffni/0v19hoPN3UBahPoiRZvN/L8t+S5SrN2nBZ7AlzE5PDT3l4rybFIafHdsGlluoi+fDWAhdnGxdDnb/vLYZ5dpL+sdwKOvd5AZ3abGmJknw8xTD9eYVXuzTdcfwA="), +this.addDataEntry(b+"cell list",164,120,"Cell List","7ZlNb6MwEIZ/DcdGtgmEHBtSeulKK3WlPbPBgLUGI0PbpL9+HWyaD2BlWlxVBUuR7MEz2O+YRxmwbD/b3/OwSH+wCFPLvrNsnzNWyV629zGlFgIksuythRAQPwsFPVdhfRUUIcd5peOApMNzSJ+wtEhDWR2oMpRpWBy7HO9EyE1ZcfYX+4wyLow5y8W1TUwobUwWsuO6CXvCw4iIpVxNFyEj9iLGQAzUCjCv8L53F7VJbeEeswxX/CCmvJCoStUMdyndUkyStHFT2wdhKQ3Jm+9JFNFRunRrZLc0egj/iFS9SyiWV4/k9TgNAjU+Ew7UTdg5LsWs32p7UFhCSpJc9CmO6+hFuCN58lCPtsg5mX6x4mjRVRa9T9lGWI5pWJFnfBH/I2ovB59Izp7yCEdKJ67ktTXPahCsHQB11bK71TqoZ23hSJdz9ZyOY+kMFE/d8ScjYiEIqPWpKOrmN6vm7k0EFsclrlriv61bKx+Ofj6yfXIE2YKwcrXISLlbcLnnq0QI1d26fVD1S4f/5KArBUPPb3cKbuBVEkykwJ0BNAKArhJ4uAwzasJWn84we3Ncrp7g7uQY5n0BhvWoPhWGrWeGGWPY0gTDmsP1aRBb+ttbIZKm4uvJQQzCL0CxHtmnQjHYrpdnjI2FMdcIxtrVu1mMAbC6DbT/i8Eeyb8zxwZU+MY41qf7ZEDWLutnkI0FMs8IyNpvAcyCzPEcZ6v/QDnTA9mAMt8cyHp0nwzI2rX9DLKxQAaBEZK13wWYJZkXeHdr7cpSnqhJkQwNqPXNkaxH929KMjE8feaV08+/Av8D"), +this.addDataEntry(b+"cell list",164,60,"Cell List","7Vddb4IwFP01PGr4dnucuvniErMt2XMnBZoVStpOZb9+F1pRQCPqfJImJL3nfrXn9D5gOJNkM+Moi19ZgKnhPBvOhDMm1S7ZTDClhm2SwHCmhm2b8Bn2yxGvVXrNDHGcyi4JtkpYIfqDFaIAIXOqARGjrNhyvISSYyE5+8YTRhkHMGUp+MYhoXQLGbYTlgvwiKOAwFEa4VAyYGuwTTD0CTCXeHP0FiWkrzDDLMGS5xCyJoGMdYTvqrQYkyjWab66vYmEsqMqdccJbDQthylyWhTN0RcodRFPLJXv5LcIs0xt7/FmlgtwjgVEferbWYAgSqIU9hSHZfUMLUkafbAMMHsHzEv31OvKq30Zr/pVmRxTJMkK1+pfQ7Z7JtnJJipmZ0iYGA0TIpZDrk7Z4B/I9csFHlpUXDBBJGF7lBZMkSWi84Y7IUFQtK0k2HbYJjxpvApsqqy1edP8uW3hH8vVVTTnsGj1hFyP/9BT9p6kXltQ61xBdfsFI3CqqvfA8mrdB169AgtDgWXrQVSX6PRGvH4grx/Ihn55vcy/6uX3M31ad+++Z3rUz/StZtq9xUw/9DN9WvfRXc00mLv/FhW+/1vzBw=="), +this.addDataEntry(b+"message",164,35,"Message","1VbbbqMwEP0aHhdxyaX72KSbaKWuFO3uSx+98QBuDYNsp0n263cMJikQWqQ2K9URhDme8WXO8YAXL/PDWrEy+4EcpBd/8+KlQjT1U35YgpReFAjuxXdeFAV0edFqoDeseoOSKSjMmICoDnhmcgc1UgPaHKUDdMZK+6hgS0MutFH4BEuUqAgssKC+RSKkbCAvipOqEZ4qxgUtpeNOQ3Lckx2Q4VYAysBhcBcV5LawBszBqCO57AU3mfOYTeqwDESaubB4WmNM13Z6Cj3nhB5cWi6nKO6laAMGFEFr2jXowYTRMKLUMDJnQTBfrW4sjoX5Jf7aERqz5WYb4UyKtCBMQlLRUrKtKNLfWBIWnoH7qvuOkreQ7A/IDWphBNpIVedpYVMvtkzed/pzwbnd08nh1k156hhFXfQ2dUGfuQZTIJkRz9Aa/hKdboYNCpo4Ctx6HP/HltWEY5JoMD0tnBY5Sh6TnjzsYm4n00Fd5IfUnndfoJ77udBbv2GirRNie1a1C9w51t+krlFJl+selR3VOfX8dIRM+kL8WrV3iqAd8EIS06sp4kt4fU1Me5r4TubjTtt1pGjvjK4C9nRPFFVIPqgWyupg2e3UgDHkznulIZy/UmVaZSX6wCN/qVq/l2HHaHgNSmc9Sh9wR8BTgZZEy++eFQa445Zj6tPfA2h6V3B2dD5n8stdWVrU9/3/xf1sFPc3gf19Uu4/4jiTef4Aq91ffp/9Aw=="), +this.addDataEntry(b+"message",164,100,"Message","7Zbfb9sgEMf/Gj8uwjg/2sckTdqHVZqaSntm5myzYmMBbpL99TsM+VUnm9el0h6GFAu+3AF393FwlMzLzb1mdfGoOMgoWUTJXCtlfa/czEHKiBLBo+QuopTgL6LLC7NxO0tqpqGyfRyod3hlsgGveMHYrQyCKVjtuhpSXHJmrFYvMFdSaRQrVeHcLBNS7qSIJlnbUM814wKP8sYcl+RqjWOCg3AC0BY2F6NopRDCPagSrN6iyVpwWwSL8dC7FSDyYudGfPiEGS/ke99DUrAT8nI+R0knRytmG82ZO0GMIUxjNz99vJg6jMyljkmRVzhMMSzAdMxc0CJlchomSsG5bPOpKrsSP5zvKAyP0nvbtj612OW7Zqmo8mdVo5agoMHg6l9D9uK+VaDvrYLXNEhmxSucrH+uMmGLL0rgzgcTlWUGbKd0+5P0quawU80HcEGUrIooepNctXu6SkIaJctOVQtbypA1X4DjPJ6gzZkpgIfBDoZyk7vXfSCUmTRigOWXqun7Zi0mi/FifsSShMz2JGlyIOFz63UXT7pwkba9hQZrMlsXwsIKVbfYGmP4SJBuSZcj+pcchfOMvMM2uI9O/a8C2agLmcDxsyg9YyrDR6oabcAL3xvjTpi7qJBFCASiSS1bRVSNBYM9q/CRiUqYAjvfNLCXjBk7+KcwJeMbslw6XYr6Iez5G2StA+3XvNIurvur5gTXT5d4DVZPAaqYXp3h4EAGSYDg+N+RnKF6Z/deqgPHQ/IBHI87HD8B46gstWjvv34XnvbR/r/v/qiiN1eoKA4PH5Pe/Phb8yc="), +this.addEntry(b+"alert",function(){var b=new mxCell("A dialog text that notifies you of something of which you don't need to make a decision, just to acknowledge it by pressing the close button.",new mxGeometry(0,0,120,70),"shape=rect;rounded=1;strokeColor=none;fillColor=#F6F6F8;gradientColor=none;shadow=0;glass=0;dashed=1;fontFamily=Helvetica;fontSize=7;fontColor=#333333;align=center;html=0;verticalAlign=top;whiteSpace=wrap;spacing=8;spacingTop=0;");b.vertex=!0;var c=new mxCell("Close",new mxGeometry(0, +1,120,20),"shape=text;align=center;verticalAlign=middle;fontSize=8;fontColor=#0680FF;strokeColor=none;fillColor=none;spacingTop=3;resizeWidth=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,-20);c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Alert")}),this.addDataEntry(b+"dialog",120,70,"Dialog","5ZZNb9pAEIZ/jY+JjN0SroHW6aVSpVTqeeUde0dZ71rr4cP99Z3FAwFiNyhtDlVB4J3vwc+L5CRfNbuHoFrz1WuwSf45yVfBexpOzW4F1iZZijrJPyVZlvInyYqJ6GwfTVsVwNE1BdlQsFF2DYPnnk2NyvqaD4RkYUjpqLeS0hnVxmOAkocsg187DbHhjK2Ogn+Clbc+sMd5x5nLCq09uJIsL+b8XrC/Dkojr3qRzgO037Kdxhyruk7OWnXmOKnyjgrVoO3Z8QXsBghLJYFH/BlXXIh5Mnx4sV9ZrB37Sl4AOLg01FgZtIEQm9l7ySHfsndrkOCxVWVsvWVocVc20dUyS6zvMX3fSO4vt4PdJKO9SwA9gG+AQs8pW9RkJEM4pgawNlJ2Jz7VDXZ9LH0mzgeBPi6A/BUBwI7ixah4cZ6wQuj42Ps1f/sqKiNONfEe8CpOH4MOIBrkY0MoUUP8TQZLExNLQu8OYVJPcDups/0SI7wuITWotYVzAdz9RgCvSvUgx1OoNxFzgI7b/xA+swlpXMU+exv7XHwBrCLcwFn/MUHIiG8eXUTZy/QLCfmq6oBeCOi42FWa+vBSUwfas3eBPPIvT+eLtCjeCjkfZfwnPPuzghO68xG42d+Be/MudD9O083+V7pSkN7KzflnabP5/PAxpJ8+m/wC"), +this.createVertexTemplateEntry("html=1;strokeWidth=1;shadow=0;dashed=0;shape=mxgraph.ios7.misc.bluetooth;fillColor=#007AFF;strokeColor=none;buttonText=;strokeColor2=#222222;fontColor=#222222;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;align=center;",15,15,"","Bluetooth",null,null,this.getTagsForStencil(c,"bluetooth",b+"").join(" ")),this.createVertexTemplateEntry("html=1;strokeWidth=1;shadow=0;dashed=0;shape=mxgraph.ios7.misc.broadcast;fillColor=#4CDA64;strokeColor=none;buttonText=;strokeColor2=#222222;fontColor=#222222;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;align=center;", +15,15,"","Broadcast",null,null,this.getTagsForStencil(c,"broadcast",b+"").join(" ")),this.createVertexTemplateEntry("html=1;strokeWidth=1;shadow=0;dashed=0;shape=mxgraph.ios7.misc.link;fillColor=#4CDA64;strokeColor=none;buttonText=;strokeColor2=#222222;fontColor=#222222;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;align=center;",15,15,"","Link",null,null,this.getTagsForStencil(c,"link",b+"").join(" ")),this.createVertexTemplateEntry("html=1;strokeWidth=1;shadow=0;dashed=0;shape=mxgraph.ios7.misc.night;fillColor=#5855D6;strokeColor=none;buttonText=;strokeColor2=#222222;fontColor=#222222;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;align=center;", +15,15,"","Night",null,null,this.getTagsForStencil(c,"night",b+"").join(" ")),this.createVertexTemplateEntry("html=1;strokeWidth=1;shadow=0;dashed=0;shape=mxgraph.ios7.misc.notification;fillColor=#FF3B2F;strokeColor=none;buttonText=;strokeColor2=#222222;fontColor=#222222;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;align=center;",15,15,"","Notification",null,null,this.getTagsForStencil(c,"notification",b+"").join(" ")),this.createVertexTemplateEntry("html=1;strokeWidth=1;shadow=0;dashed=0;shape=mxgraph.ios7.misc.settings;fillColor=#8F8E94;strokeColor=none;buttonText=;strokeColor2=#222222;fontColor=#222222;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;align=center;", +15,15,"","Settings",null,null,this.getTagsForStencil(c,"settings",b+"").join(" ")),this.createVertexTemplateEntry("html=1;strokeWidth=1;shadow=0;dashed=0;shape=mxgraph.ios7.misc.switch;fillColor=#8F8E94;strokeColor=none;buttonText=;strokeColor2=#222222;fontColor=#222222;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;align=center;",15,15,"","Switch",null,null,this.getTagsForStencil(c,"switch",b+"").join(" ")),this.createVertexTemplateEntry("html=1;strokeWidth=1;shadow=0;dashed=0;shape=mxgraph.ios7.misc.text_size;fillColor=#007AFF;strokeColor=none;buttonText=;strokeColor2=#222222;fontColor=#222222;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;align=center;", +15,15,"","Text Size",null,null,this.getTagsForStencil(c,"text size",b+"").join(" ")),this.createVertexTemplateEntry("html=1;strokeWidth=1;shadow=0;dashed=0;shape=mxgraph.ios7.misc.travel;fillColor=#FF9501;strokeColor=none;buttonText=;strokeColor2=#222222;fontColor=#222222;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;align=center;",15,15,"","Travel",null,null,this.getTagsForStencil(c,"travel",b+"").join(" ")),this.createVertexTemplateEntry("html=1;strokeWidth=1;shadow=0;dashed=0;shape=mxgraph.ios7.misc.vpn;fillColor=#007AFF;strokeColor=none;buttonText=;strokeColor2=#222222;fontColor=#222222;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;align=center;", +15,15,"","VPN",null,null,this.getTagsForStencil(c,"vpn virtual private network",b+"").join(" ")),this.createVertexTemplateEntry("html=1;strokeWidth=1;shadow=0;dashed=0;shape=mxgraph.ios7.misc.wifi;fillColor=#007AFF;strokeColor=none;buttonText=;strokeColor2=#222222;fontColor=#222222;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;align=center;",15,15,"","WiFi",null,null,this.getTagsForStencil(c,"wifi",b+"").join(" ")),this.createVertexTemplateEntry("html=1;strokeWidth=1;shadow=0;dashed=0;shape=mxgraph.ios7ui.url;fillColor=#e0e0e0;strokeColor=#c0c0c0;buttonText=;strokeColor2=#222222;fontColor=#222222;fontSize=8;spacingTop=2;align=center;", +165,12.5,"draw.io","URL",null,null,this.getTagsForStencil(c,"url",b+"url").join(" ")),this.createVertexTemplateEntry(e+"iconGrid;fillColor=#c0c0c0;gridSize=3,3;",175,280,"","Icon grid",null,null,this.getTagsForStencil(c,"iconGrid",b+"icon grid").join(" ")),this.addEntry(b+"action dialog",function(){var b=new mxCell("",new mxGeometry(0,0,164,60),"shape=rect;fillColor=#a0a0a0;strokeColor=none;shadow=0;");b.vertex=!0;var c=new mxCell("Action",new mxGeometry(8,6,148,21),"html=1;strokeWidth=1;shadow=0;dashed=0;rounded=1;absoluteArcSize=1;arcSize=6;fontColor=#0080F0;fontSize=7;fontSize=14;fillColor=#e0e0e0;strokeColor=none;fontStyle=1;"); +c.vertex=!0;b.insert(c);c=new mxCell("Cancel",new mxGeometry(8,33,148,21),"html=1;strokeWidth=1;shadow=0;dashed=0;rounded=1;absoluteArcSize=1;arcSize=6;fontColor=#0080F0;fontSize=7;fontSize=14;fillColor=#e0e0e0;strokeColor=none;fontStyle=1;");c.vertex=!0;b.insert(c);return a.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Action Dialog")}),this.createVertexTemplateEntry(d+"iKeybLett;",174,100,"","iPhone Keyboard (letters)",null,null,this.getTagsForStencil("mxgraph.ios7.misc", +"keyboard letters",b+"").join(" ")),this.createVertexTemplateEntry(d+"iKeybNumb;",174,100,"","iPhone Keyboard (numbers)",null,null,this.getTagsForStencil("mxgraph.ios7.misc","keyboard letters",b+"").join(" ")),this.createVertexTemplateEntry(d+"iKeybSymb;",174,100,"","iPhone Keyboard (symbols)",null,null,this.getTagsForStencil("mxgraph.ios7.misc","keyboard symbols",b+"").join(" ")),this.createVertexTemplateEntry(d+"iKeybLett;",332,144,"","iPad 7''Keyboard (letters)",null,null,this.getTagsForStencil("mxgraph.ios7.misc", +"keyboard letters",b+"").join(" ")),this.createVertexTemplateEntry(d+"iKeybNumb;",332,144,"","iPad 7'' Keyboard (numbers)",null,null,this.getTagsForStencil("mxgraph.ios7.misc","keyboard letters",b+"").join(" ")),this.createVertexTemplateEntry(d+"iKeybSymb;",332,144,"","iPad 7'' Keyboard (symbols)",null,null,this.getTagsForStencil("mxgraph.ios7.misc","keyboard symbols",b+"").join(" ")),this.createVertexTemplateEntry(d+"iKeybLett;",442,192,"","iPad 10''Keyboard (letters)",null,null,this.getTagsForStencil("mxgraph.ios7.misc", +"keyboard letters",b+"").join(" ")),this.createVertexTemplateEntry(d+"iKeybNumb;",442,192,"","iPad 10'' Keyboard (numbers)",null,null,this.getTagsForStencil("mxgraph.ios7.misc","keyboard letters",b+"").join(" ")),this.createVertexTemplateEntry(d+"iKeybSymb;",442,192,"","iPad 10'' Keyboard (symbols)",null,null,this.getTagsForStencil("mxgraph.ios7.misc","keyboard symbols",b+"").join(" ")),this.createVertexTemplateEntry(d+"iKeybLett;",200*2.53,400*.55,"","iPad 13''Keyboard (letters)",null,null,this.getTagsForStencil("mxgraph.ios7.misc", +"keyboard letters",b+"").join(" ")),this.createVertexTemplateEntry(d+"iKeybNumb;",200*2.53,400*.55,"","iPad 13'' Keyboard (numbers)",null,null,this.getTagsForStencil("mxgraph.ios7.misc","keyboard letters",b+"").join(" ")),this.createVertexTemplateEntry(d+"iKeybSymb;",200*2.53,400*.55,"","iPad 13'' Keyboard (symbols)",null,null,this.getTagsForStencil("mxgraph.ios7.misc","keyboard symbols",b+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.call_pad;", +140,160,"","Call Pad",null,null,this.getTagsForStencil("mxgraph.ios7.misc","call_pad",b+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.number_pad;strokeWidth=1;",140,160,"","Number Pad",null,null,this.getTagsForStencil("mxgraph.ios7.misc","number_pad",b+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.keyboard_(letters);", +175,120,"","Keyboard",null,null,this.getTagsForStencil("mxgraph.ios7.misc","keyboard_(letters)",b+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.scroll_(horizontal);fillColor=#a0a0a0;",80,6,"","Scroll (Horizontal)",null,null,this.getTagsForStencil("mxgraph.ios7.misc","scroll_(horizontal)",b+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.scroll_(vertical);fillColor=#a0a0a0;", +6,80,"","Scroll (Vertical)",null,null,this.getTagsForStencil("mxgraph.ios7.misc","scroll_(vertical)",b+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.add;fillColor=#00dd00;strokeColor=#ffffff;",12,12,"","Add",null,null,this.getTagsForStencil("mxgraph.ios7.misc","add",b+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.delete;fillColor=#ff0000;strokeColor=#ffffff;", +12,12,"","Delete",null,null,this.getTagsForStencil("mxgraph.ios7.misc","delete",b+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.select;fillColor=#0080f0;strokeColor=#ffffff;",12,12,"","Select",null,null,this.getTagsForStencil("mxgraph.ios7.misc","select",b+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.remove;fillColor=#0080f0;strokeColor=#ffffff;", +16,12,"","Remove",null,null,this.getTagsForStencil("mxgraph.ios7.misc","remove",b+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.check;strokeColor=#0080f0;",10,8,"","Check",null,null,this.getTagsForStencil("mxgraph.ios7.misc","check",b+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.flagged;strokeColor=#0080f0;", +12,12,"","Flagged",null,null,this.getTagsForStencil("mxgraph.ios7.misc","flagged",b+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.up;strokeColor=#0080f0;",12,6,"","Up",null,null,this.getTagsForStencil("mxgraph.ios7.misc","up",b+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.down;strokeColor=#0080f0;", +12,6,"","Down",null,null,this.getTagsForStencil("mxgraph.ios7.misc","down",b+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.left;strokeColor=#0080f0;",6,12,"","Left",null,null,this.getTagsForStencil("mxgraph.ios7.misc","left",b+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.right;strokeColor=#0080f0;", +6,12,"","Right",null,null,this.getTagsForStencil("mxgraph.ios7.misc","right",b+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.increase;fillColor=#ffffff;strokeColor=#0080f0;",12,12,"","Increase",null,null,this.getTagsForStencil("mxgraph.ios7.misc","increase",b+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.info;fillColor=#ffffff;strokeColor=#0080f0;", +12,12,"","Info",null,null,this.getTagsForStencil("mxgraph.ios7.misc","info",b+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.more_2;strokeColor=#a0a0a0;",6,8,"","More 2",null,null,this.getTagsForStencil("mxgraph.ios7.misc","more_2",b+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.more;strokeColor=#a0a0a0;", +5,8,"","More",null,null,this.getTagsForStencil("mxgraph.ios7.misc","more",b+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.options;fillColor=#222222;",12,6,"","Options",null,null,this.getTagsForStencil("mxgraph.ios7.misc","options",b+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.pause;fillColor=#ffffff;strokeColor=#0080f0;", +12,12,"","Pause",null,null,this.getTagsForStencil("mxgraph.ios7.misc","pause",b+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.star;fillColor=#0080f0;strokeColor=none;",12,12,"","Star",null,null,this.getTagsForStencil("mxgraph.ios7.misc","star",b+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.contacts_bar;strokeColor=#0080F0;fillColor=#e0e0e0", +175,400*.07,"","Contacts Bar",null,null,this.getTagsForStencil("mxgraph.ios7.misc","contacts_bar",b+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.edit_bar;strokeColor=#0080F0;fillColor=#e0e0e0",175,400*.07,"","Edit Bar",null,null,this.getTagsForStencil("mxgraph.ios7.misc","edit_bar",b+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.message_bar;strokeColor=#0080F0;fillColor=#e0e0e0", +175,400*.07,"","Message Bar",null,null,this.getTagsForStencil("mxgraph.ios7.misc","message_bar",b+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.misc_bar;strokeColor=#0080F0;fillColor=#e0e0e0",175,400*.07,"","Misc Bar",null,null,this.getTagsForStencil("mxgraph.ios7.misc","misc_bar",b+"").join(" ")),this.createVertexTemplateEntry(e+"onOffButton;buttonState=on;strokeColor=#38D145;strokeColor2=#aaaaaa;fillColor=#38D145;fillColor2=#ffffff;", +43.5,15,"","On-off button (On)",null,null,this.getTagsForStencil(c,"onOffButton",b+"").join(" ")),this.createVertexTemplateEntry(e+"onOffButton;buttonState=off;strokeColor=#38D145;strokeColor2=#aaaaaa;fillColor=#38D145;fillColor2=#ffffff;",43.5,15,"","On-off button (Off)",null,null,this.getTagsForStencil(c,"onOffButton",b+"").join(" ")),this.createVertexTemplateEntry("html=1;strokeWidth=1;shadow=0;dashed=0;shape=mxgraph.ios7ui.icon;fontSize=8;fontColor=#ffffff;buttonText=;whiteSpace=wrap;align=center;", +40,36,"Icon","Icon",null,null,this.getTagsForStencil(c,"icon",b+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.loading_circle;",40,40,"","Loading Circle",null,null,this.getTagsForStencil("mxgraph.ios7.misc","loading_circle",b+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.circle;strokeColor=#222222;fillColor=none;", +12,12,"","Circle",null,null,this.getTagsForStencil("mxgraph.ios7.misc","circle",b+"").join(" ")),this.createVertexTemplateEntry(e+"pageControl;fillColor=#222222;strokeColor=#aaaaaa;",50,5,"","Page control",null,null,this.getTagsForStencil(c,"pageControl",b+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.current_location;strokeColor=#ffffff;fillColor=#0080F0",60, +60,"","Current Location",null,null,this.getTagsForStencil("mxgraph.ios7.misc","current_location",b+"").join(" ")),this.createVertexTemplateEntry("html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;shadow=0;dashed=0;strokeWidth=2;shape=mxgraph.ios7.misc.expand;fillColor=#c0c0c0;",24,6,"","Expand",null,null,this.getTagsForStencil("mxgraph.ios7.misc","expand",b+"").join(" ")),this.addDataEntry(b+"volume control",160,14,"Volume Control","vVVdb8IgFP01fbTBVqvPuunTEpM97HFhchUyWhqgWvfrd1to/WjdjHEjacI9cLmcc4AG8Twtl5rm/EUxkEH8HMRzrZR1vbScg5RBRAQL4qcgigh+QbS4MjqsR0lONWT2loTIJeyoLMAhDjD2ID1gOM2rroY1LjkzVqtPmCupNIKZynBsthFSXkB+YdAWyqubqyG/syWoFKw+4JS9YJb7GYkjQDiILW/SRg6jxsXbNvVIFTuebT/z+HbmabmtDAqFMpMwFWYd7pQsUnhnap9dsA+iOKnbNalu0iXq1+XgLQ3HLuVEp6Sr0tRBGiS1YgdnxfqU8/VWSuA22mKDC63VZmPAdpRud3mT+KMHiF/k/yn9ecIPRjRns++83muFLz5o1mmsmfyBNePfreE2xeynYavzm6dfI5zitcCAYMCo4cB80OdoIUIjBQN0afZB9UpVVBLScRC9JcmULJDXTOV0LWylwZCQ7hlY1A1xTjMm4VV8VUVRusccgGnX8WHP5bvjicLw+PA7507/C98="), +this.addDataEntry(b+"picker",175,160,"Picker","7ZZta8IwEMc/Td5Km9i6vV3dZLDBYC/2OqxXE5Y2kkSt+/S7mtQHtEx8gg0Vofe/u9z1/6tQwrKyHhk+Ea86B0XYI2GZ0dr5q7LOQClCI5kTNiSURvgj9KkjGy+z0YQbqNwhDdQ3zLiagle8YN1CBUG4EtcaxoQ9WGf0F3zI3IlWETzXcwwiDHJuBeQhwMykOaGsx83d9aS2g6ns8epTaIP5MBiMg7pz+aUUNh+BLsGZBZbMwwZNxSDxbQLkWLRtqb/riFsvjFe9ay/wItix3xq2Y82zgxKV+FoWFbpy7/K7KYmTEGdaNTmcynjUfFE3YLFqc+ZB5tLjzGXhETGguJMz2Dr/FMP7XYZf7Zn8J4aHEW9a4mQaLbaPaTt0UVhwO4BWix3ELOlixi7MDIG9yArs79To8rOauo9nIZVq9UpXsLMi/avQ0/4FoKdd0Pu3P+oZmN2nF2A26GKW3JidgVlM706HhuH6zc+Xb74Y/gA=")]; +this.addPalette("ios7ui","iOS UI",!1,mxUtils.bind(this,function(a){for(var b=0;b<f.length;b++)a.appendChild(f[b](a))}))}})();(function(){Sidebar.prototype.addLeanMappingPalette=function(){var a=mxConstants.STYLE_STROKEWIDTH+"=2;html=1;shape=mxgraph.lean_mapping.",b=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;html=1;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;strokeWidth=2;shape=mxgraph.lean_mapping.",e=this,c=[this.createVertexTemplateEntry(b+"boat_shipment;align=center;",100,100,"","Boat Shipment",null,null,this.getTagsForStencil("mxgraph.lean_mapping","boat_shipment","value stream lean mapping ").join(" ")),this.addDataEntry("value stream lean mapping data box", 60,100,"Data Box","1ZVfT8MgFMU/Da9LB7Pude10LxofNPFxuRZWiLQQirP10wstczbd4p9osz00uT2XA/f8HgCRtKhXBjS/VZRJRK4QSY1StquKOmVSIhwJisgSYRy5D+HrI91p2400GFba7xhwZ9iCfGGd0gmVbWQQKmvUM3sU1HInYEQSbgs36HLqyoqD9uuKOvcZJpJBuS5Aa1HmEwoW1k+q7lvCicxYVh+dupXCyCumCmZN45a8hilcN+6CRZyJnO9cURCh6oT8w7pn4IqA4TASMkDiLQ87Op/RuATu5GSjSnsv3rw490w0ZC7+DdvYAMyHFRnIhRR56WkJSv0eP8aCf4UF/wGV2UEqd6dMpemnHwHSxQBSAjbjZwBpNh6keABpsQUhzwBSPB6ky6/v5RODM/83OO53/yC2vd57+Q4="),this.createVertexTemplateEntry(a+"outside_sources;whiteSpace=wrap;align=center;", 100,70,'<table cellpadding="5" cellspacing="0" style="font-size:1em;width:100%;height:100%;"><tr><td height="50%"></td></tr><tr><td align="center" height="50%">XYZ Corp</td></tr></table>',"Customer/Supplier",null,null,this.getTagsForStencil("mxgraph.lean_mapping","outside_sources","value stream lean mapping ").join(" ")),this.addEntry("value stream lean mapping dedicated process manufacturing",function(){var b=new mxCell("\nDescription",new mxGeometry(0,0,100,70),a+"manufacturing_process;fontSize=12;verticalAlign=middle;html=1;align=center;whiteSpace=wrap;"); -b.vertex=!0;var d=new mxCell("Process",new mxGeometry(0,0,100,13),"text;fontSize=12;spacingLeft=2;verticalAlign=top;html=1;align=center;spacingTop=-5;resizeWidth=1;");d.vertex=!0;b.insert(d);return e.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Dedicated Process")}),this.createVertexTemplateEntry(a+"manufacturing_process_shared;spacingTop=-5;align=center;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;",100,70,"Process","Shared Process",null,null,this.getTagsForStencil("mxgraph.lean_mapping", -"manufacturing_process_shared","value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(d+"work_cell;pointerEvents=1;",70,60,"","Workcell",null,null,this.getTagsForStencil("mxgraph.lean_mapping","work_cell","value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(d+"inventory_box;",100,90,"","Inventory Box",null,null,this.getTagsForStencil("mxgraph.lean_mapping","inventory_box","value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(d+"push_arrow;",100, -30,"","Push Arrow",null,null,this.getTagsForStencil("mxgraph.lean_mapping","push_arrow","value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(a+"supermarket;",60,100,"","Supermarket",null,null,this.getTagsForStencil("mxgraph.lean_mapping","supermarket","value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(d+"physical_pull;pointerEvents=1;",100,100,"","Material Pull",null,null,this.getTagsForStencil("mxgraph.lean_mapping","physical_pull","value stream lean mapping ").join(" ")), +b.vertex=!0;var c=new mxCell("Process",new mxGeometry(0,0,100,13),"text;fontSize=12;spacingLeft=2;verticalAlign=top;html=1;align=center;spacingTop=-5;resizeWidth=1;");c.vertex=!0;b.insert(c);return e.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Dedicated Process")}),this.createVertexTemplateEntry(a+"manufacturing_process_shared;spacingTop=-5;align=center;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;",100,70,"Process","Shared Process",null,null,this.getTagsForStencil("mxgraph.lean_mapping", +"manufacturing_process_shared","value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(b+"work_cell;pointerEvents=1;",70,60,"","Workcell",null,null,this.getTagsForStencil("mxgraph.lean_mapping","work_cell","value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(b+"inventory_box;",100,90,"","Inventory Box",null,null,this.getTagsForStencil("mxgraph.lean_mapping","inventory_box","value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(b+"push_arrow;",100, +30,"","Push Arrow",null,null,this.getTagsForStencil("mxgraph.lean_mapping","push_arrow","value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(a+"supermarket;",60,100,"","Supermarket",null,null,this.getTagsForStencil("mxgraph.lean_mapping","supermarket","value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(b+"physical_pull;pointerEvents=1;",100,100,"","Material Pull",null,null,this.getTagsForStencil("mxgraph.lean_mapping","physical_pull","value stream lean mapping ").join(" ")), this.createVertexTemplateEntry(a+"fifo_lane;overflow=fill;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;align=center;",100,50,'<table cellpadding="0" cellspacing="0" style="font-size:1em;width:100%;height:100%;"><tr><td height="0%">MAX=XX</td></tr><tr><td align="center" height="100%"></td></tr></table>',"FIFO Lane",null,null,this.getTagsForStencil("mxgraph.lean_mapping","fifo_lane","value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(a+"buffer_or_safety_stock;",40,100,"","Safety Stock", -null,null,this.getTagsForStencil("mxgraph.lean_mapping","buffer_or_safety_stock","value stream lean mapping ").join(" ")),this.addEntry(this.getTagsForStencil("mxgraph.lean_mapping","truck_shipment","value stream lean mapping ").join(" "),function(){var b=new mxCell("",new mxGeometry(0,0,100,100),a+"truck_shipment;");b.vertex=!0;var d=new mxCell("2x per\nWeek",new mxGeometry(0,0,60,80),"text;fontSize=12;verticalAlign=middle;html=1;align=center;whiteSpace=wrap;");d.vertex=!0;b.insert(d);return e.createVertexTemplateFromCells([b], +null,null,this.getTagsForStencil("mxgraph.lean_mapping","buffer_or_safety_stock","value stream lean mapping ").join(" ")),this.addEntry(this.getTagsForStencil("mxgraph.lean_mapping","truck_shipment","value stream lean mapping ").join(" "),function(){var b=new mxCell("",new mxGeometry(0,0,100,100),a+"truck_shipment;");b.vertex=!0;var c=new mxCell("2x per\nWeek",new mxGeometry(0,0,60,80),"text;fontSize=12;verticalAlign=middle;html=1;align=center;whiteSpace=wrap;");c.vertex=!0;b.insert(c);return e.createVertexTemplateFromCells([b], b.geometry.width,b.geometry.height,"Truck Shipment")}),this.createVertexTemplateEntry(a+"schedule;whiteSpace=wrap;align=center;",100,70,"Production\nControl","Production Control",null,null,this.getTagsForStencil("mxgraph.lean_mapping","schedule","value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(a+"schedule;whiteSpace=wrap;align=center;",100,70,"Other\nInformation","Other Information",null,null,this.getTagsForStencil("mxgraph.lean_mapping","schedule","value stream lean mapping ").join(" ")), -this.createVertexTemplateEntry(d+"go_see_production_scheduling;pointerEvents=1;",92,60,"","Go See Production Scheduling",null,null,this.getTagsForStencil("mxgraph.lean_mapping","go_see_production_scheduling","value stream lean mapping ").join(" ")),this.addEntry(this.getTagsForStencil("mxgraph.lean_mapping","kaizen_lightening_burst","value stream lean mapping ").join(" "),function(){var a=new mxCell("",new mxGeometry(0,0,90,40),d+"kaizen_lightening_burst;");a.vertex=!0;var b=new mxCell("",new mxGeometry(8, -8,74,24),"rect;fillColor=#000000;strokeColor=none;");b.vertex=!0;a.insert(b);return e.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,"Kaizen Lightening Burst")}),this.createVertexTemplateEntry(d+"kanban_post;",50,100,"","Kanban Post",null,null,this.getTagsForStencil("mxgraph.lean_mapping","kanban_post","value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(d+"load_leveling;",100,30,"","Load Leveling",null,null,this.getTagsForStencil("mxgraph.lean_mapping","load_leveling", -"value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(d+"move_by_forklift;",92,100,"","Move by Forklift",null,null,this.getTagsForStencil("mxgraph.lean_mapping","move_by_forklift","value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(a+"mrp_erp;whiteSpace=wrap;",70,100,"","MRP/ERP",null,null,this.getTagsForStencil("mxgraph.lean_mapping","mrp_erp","value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(d+"operator;",100,84,"","Operator",null,null, -this.getTagsForStencil("mxgraph.lean_mapping","operator","value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(a+"quality_problem;fontSize=24;fontStyle=1;whiteSpace=wrap;align=center;",80,100,"Q","Quality Problem",null,null,this.getTagsForStencil("mxgraph.lean_mapping","quality_problem","value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(d+"verbal;pointerEvents=1;",50,100,"","Verbal Information",null,null,this.getTagsForStencil("mxgraph.lean_mapping","verbal", +this.createVertexTemplateEntry(b+"go_see_production_scheduling;pointerEvents=1;",92,60,"","Go See Production Scheduling",null,null,this.getTagsForStencil("mxgraph.lean_mapping","go_see_production_scheduling","value stream lean mapping ").join(" ")),this.addEntry(this.getTagsForStencil("mxgraph.lean_mapping","kaizen_lightening_burst","value stream lean mapping ").join(" "),function(){var a=new mxCell("",new mxGeometry(0,0,90,40),b+"kaizen_lightening_burst;");a.vertex=!0;var c=new mxCell("",new mxGeometry(8, +8,74,24),"rect;fillColor=#000000;strokeColor=none;");c.vertex=!0;a.insert(c);return e.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,"Kaizen Lightening Burst")}),this.createVertexTemplateEntry(b+"kanban_post;",50,100,"","Kanban Post",null,null,this.getTagsForStencil("mxgraph.lean_mapping","kanban_post","value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(b+"load_leveling;",100,30,"","Load Leveling",null,null,this.getTagsForStencil("mxgraph.lean_mapping","load_leveling", +"value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(b+"move_by_forklift;",92,100,"","Move by Forklift",null,null,this.getTagsForStencil("mxgraph.lean_mapping","move_by_forklift","value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(a+"mrp_erp;whiteSpace=wrap;",70,100,"","MRP/ERP",null,null,this.getTagsForStencil("mxgraph.lean_mapping","mrp_erp","value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(b+"operator;",100,84,"","Operator",null,null, +this.getTagsForStencil("mxgraph.lean_mapping","operator","value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(a+"quality_problem;fontSize=24;fontStyle=1;whiteSpace=wrap;align=center;",80,100,"Q","Quality Problem",null,null,this.getTagsForStencil("mxgraph.lean_mapping","quality_problem","value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(b+"verbal;pointerEvents=1;",50,100,"","Verbal Information",null,null,this.getTagsForStencil("mxgraph.lean_mapping","verbal", "value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(a+"fifo_sequence_flow;pointerEvents=1;fontStyle=0;fontSize=20;align=center;",100,50,"FIFO","FIFO Sequence",null,null,this.getTagsForStencil("mxgraph.lean_mapping","fifo_sequence_flow","value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(a+"production_kanban;overflow=fill;",100,100,'<p style="font-size:2em;margin-right:35px;margin-top:13px;text-align:right">P</p>',"Production Kanban",null,null,this.getTagsForStencil("mxgraph.lean_mapping", "production_kanban","value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(a+"withdrawal_kanban;overflow=fill;",100,100,'<p style="font-size:2em;margin-right:35px;margin-top:13px;text-align:right">W</p>',"Withdrawal Kanban",null,null,this.getTagsForStencil("mxgraph.lean_mapping","withdrawal_kanban","value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(a+"signal_kanban;overflow=fill;",100,90,'<p style="font-size:2em;margin-right:35px;margin-top:4px;text-align:right">S</p>', -"Signal Kanban",null,null,this.getTagsForStencil("mxgraph.lean_mapping","signal_kanban","value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(d+"sequenced_pull_ball;",60,60,"","Sequenced Pull Ball",null,null,this.getTagsForStencil("mxgraph.lean_mapping","sequenced_pull_ball","value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(d+"rail_shipment;",100,30,"","Rail Shipment",null,null,this.getTagsForStencil("mxgraph.lean_mapping","rail_shipment","value stream lean mapping ").join(" ")), -this.createVertexTemplateEntry(d+"airplane_7;",100,45,"","Air Freight",null,null,this.getTagsForStencil("mxgraph.lean_mapping","airplane_7","value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(d+"warehouse;",100,60,"","Warehouse",null,null,this.getTagsForStencil("mxgraph.lean_mapping","warehouse","value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(d+"timeline2;dx1=0;dy1=1;dx2=30;dy2=0;dx3=160;dy3=1;dx4=230;dy4=0;dx5=310;dy5=1;dy6=0;",400,40,"","Timeline",null, -null,this.getTagsForStencil("mxgraph.lean_mapping","timeline","value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(d+"crossDock;",100,80,"","Cross-Dock",null,null,this.getTagsForStencil("mxgraph.lean_mapping","crossDock","value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(a+"orders;overflow=fill;",100,60,'<table cellpadding="0" cellspacing="0" style="font-size:1.5em;width:100%;height:100%;"><tr><td height="65%"></td></tr><tr><td align="center" height="35%">IN</td></tr></table>', -"Orders",null,null,this.getTagsForStencil("mxgraph.lean_mapping","orders","value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(d+"batched_kanban;",200,80,"","Batched Kanban",null,null,this.getTagsForStencil("mxgraph.lean_mapping","batched_kanban","value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(d+"control_center;",80,80,"","Control Center",null,null,this.getTagsForStencil("mxgraph.lean_mapping","control_center","value stream lean mapping ").join(" ")),this.createEdgeTemplateEntry("shape=flexArrow;html=1;", +"Signal Kanban",null,null,this.getTagsForStencil("mxgraph.lean_mapping","signal_kanban","value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(b+"sequenced_pull_ball;",60,60,"","Sequenced Pull Ball",null,null,this.getTagsForStencil("mxgraph.lean_mapping","sequenced_pull_ball","value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(b+"rail_shipment;",100,30,"","Rail Shipment",null,null,this.getTagsForStencil("mxgraph.lean_mapping","rail_shipment","value stream lean mapping ").join(" ")), +this.createVertexTemplateEntry(b+"airplane_7;",100,45,"","Air Freight",null,null,this.getTagsForStencil("mxgraph.lean_mapping","airplane_7","value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(b+"warehouse;",100,60,"","Warehouse",null,null,this.getTagsForStencil("mxgraph.lean_mapping","warehouse","value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(b+"timeline2;dx1=0;dy1=1;dx2=30;dy2=0;dx3=160;dy3=1;dx4=230;dy4=0;dx5=310;dy5=1;dy6=0;",400,40,"","Timeline",null, +null,this.getTagsForStencil("mxgraph.lean_mapping","timeline","value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(b+"crossDock;",100,80,"","Cross-Dock",null,null,this.getTagsForStencil("mxgraph.lean_mapping","crossDock","value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(a+"orders;overflow=fill;",100,60,'<table cellpadding="0" cellspacing="0" style="font-size:1.5em;width:100%;height:100%;"><tr><td height="65%"></td></tr><tr><td align="center" height="35%">IN</td></tr></table>', +"Orders",null,null,this.getTagsForStencil("mxgraph.lean_mapping","orders","value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(b+"batched_kanban;",200,80,"","Batched Kanban",null,null,this.getTagsForStencil("mxgraph.lean_mapping","batched_kanban","value stream lean mapping ").join(" ")),this.createVertexTemplateEntry(b+"control_center;",80,80,"","Control Center",null,null,this.getTagsForStencil("mxgraph.lean_mapping","control_center","value stream lean mapping ").join(" ")),this.createEdgeTemplateEntry("shape=flexArrow;html=1;", 100,100,"","Shipments",null,this.getTagsForStencil("mxgraph.lean_mapping","arrow","value stream lean mapping ").join(" ")),this.createEdgeTemplateEntry("shape=mxgraph.lean_mapping.manual_info_flow_edge;html=1;",100,100,"Daily","Manual Information",null,this.getTagsForStencil("mxgraph.lean_mapping","manual_info_flow_edge","value stream lean mapping ").join(" ")),this.createEdgeTemplateEntry("shape=mxgraph.lean_mapping.electronic_info_flow_edge;html=1;",100,100,"Monthly","Electronic Information",null, -this.getTagsForStencil("mxgraph.lean_mapping","electronic_info_flow_edge","value stream lean mapping ").join(" "))];this.addPalette("lean_mapping",mxResources.get("leanMapping"),!1,mxUtils.bind(this,function(a){for(var c=0;c<b.length;c++)a.appendChild(b[c](a))}))}})();(function(){Sidebar.prototype.addMockupPalette=function(){this.addMockupButtonsPalette();this.addMockupContainersPalette();this.addMockupFormsPalette();this.addMockupGraphicsPalette();this.addMockupMarkupPalette();this.addMockupMiscPalette();this.addMockupNavigationPalette();this.addMockupTextPalette()};Sidebar.prototype.addMockupButtonsPalette=function(){var a=mxConstants.STYLE_STROKEWIDTH+"=1;shadow=0;dashed=0;align=center;html=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.mockup.",d=mxConstants.STYLE_STROKECOLOR+ -"=#999999;",e=this,b=[this.createVertexTemplateEntry(a+"buttons.button;"+(mxConstants.STYLE_STROKECOLOR+"=#666666;")+"fontColor=#ffffff;mainText=;buttonStyle=round;fontSize=17;fontStyle=1;fillColor=#008cff;whiteSpace=wrap;",150,50,"Button Text","Button",null,null,this.getTagsForStencil("mxgraph.mockup.buttons","button","mockup button ").join(" ")),this.addEntry("mockup button formatted multibutton multi",function(){var b=new mxCell("",new mxGeometry(0,0,150,50),a+"buttons.multiButton;fillColor=#008cff;strokeColor=#666666;mainText=;subText=;"); -b.vertex=!0;var d=new mxCell("Main Text",new mxGeometry(0,8,150,20),a+"anchor;fontSize=16;fontColor=#ffffff;fontStyle=1;whiteSpace=wrap;");d.vertex=!0;b.insert(d);d=new mxCell("Sub Text",new mxGeometry(0,30,150,10),a+"anchor;fontSize=12;fontColor=#ffffff;fontStyle=1;whiteSpace=wrap;");d.vertex=!0;b.insert(d);return e.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Formatted Button")}),this.addEntry("mockup button horizontal bar",function(){var b=new mxCell("",new mxGeometry(0, -0,500,50),a+"rrect;rSize=10;fillColor=#ffffff;strokeColor=#666666;");b.vertex=!0;var d=new mxCell("Button 2",new mxGeometry(0,0,125,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+a+"rrect;rSize=0;fontSize=17;fontColor=#666666;fontStyle=1;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(125,0);d.vertex=!0;b.insert(d);d=new mxCell("Button 3",new mxGeometry(0,0,125,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+a+"rrect;rSize=0;fontSize=17;fontColor=#666666;fontStyle=1;resizeHeight=1;"); -d.geometry.relative=!0;d.geometry.offset=new mxPoint(250,0);d.vertex=!0;b.insert(d);d=new mxCell("Button 4",new mxGeometry(1,0,125,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+a+"rightButton;rSize=10;fontSize=17;fontColor=#666666;fontStyle=1;resizeHeight=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(-125,0);d.vertex=!0;b.insert(d);d=new mxCell("Button 1",new mxGeometry(0,0,125,50),a+"leftButton;rSize=10;fontSize=17;fontColor=#ffffff;fontStyle=1;fillColor=#008cff;strokeColor=#008cff;resizeHeight=1;"); -d.geometry.relative=!0;d.vertex=!0;b.insert(d);return e.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Horizontal Button Bar")}),this.addEntry("mockup button vertical bar",function(){var b=new mxCell("",new mxGeometry(0,0,120,200),a+"rrect;rSize=10;fillColor=#ffffff;strokeColor=#666666;");b.vertex=!0;var d=new mxCell("Button 2",new mxGeometry(0,0,120,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+a+"rrect;rSize=0;fontSize=17;fontColor=#666666;fontStyle=1;resizeWidth=1;"); -d.geometry.relative=!0;d.geometry.offset=new mxPoint(0,50);d.vertex=!0;b.insert(d);d=new mxCell("Button 3",new mxGeometry(0,0,120,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+a+"rrect;rSize=0;fontSize=17;fontColor=#666666;fontStyle=1;resizeWidth=1;");d.geometry.relative=!0;d.geometry.offset=new mxPoint(0,100);d.vertex=!0;b.insert(d);d=new mxCell("Button 4",new mxGeometry(0,1,120,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+a+"bottomButton;rSize=10;fontSize=17;fontColor=#666666;fontStyle=1;resizeWidth=1;"); -d.geometry.relative=!0;d.geometry.offset=new mxPoint(0,-50);d.vertex=!0;b.insert(d);d=new mxCell("Button 1",new mxGeometry(0,0,120,50),a+"topButton;rSize=10;fontSize=17;fontColor=#ffffff;fontStyle=1;fillColor=#008cff;strokeColor=#008cff;resizeWidth=1;");d.geometry.relative=!0;d.vertex=!0;b.insert(d);return e.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Vertical Button Bar")}),this.createVertexTemplateEntry(a+"buttons.onOffButton;fillColor=#ffffff;gradientColor=none;"+d+"buttonState=on;fillColor2=#008cff;fontColor=#ffffff;fontSize=17;mainText=;spacingRight=40;fontStyle=1;", -150,50,"ON","On-off button",null,null,this.getTagsForStencil("mxgraph.mockup.buttons","onOffButton","mockup button on off").join(" "))];this.addPalette("mockupButtons","Mockup Buttons",!1,mxUtils.bind(this,function(a){for(var c=0;c<b.length;c++)a.appendChild(b[c](a))}))};Sidebar.prototype.addMockupContainersPalette=function(){var a=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;shadow=0;dashed=0;align=center;html=1;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;strokeWidth=1;"+mxConstants.STYLE_SHAPE+ -"=mxgraph.mockup.",d=mxConstants.STYLE_STROKEWIDTH+"=1;shadow=0;dashed=0;align=center;html=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.mockup.",e=mxConstants.STYLE_STROKECOLOR+"=#666666;",b=mxConstants.STYLE_FILLCOLOR+"=#ffffff;",c=this,f=[this.createVertexTemplateEntry(a+"containers.videoPlayer;"+e+"strokeColor2=#008cff;strokeColor3=#c4c4c4;textColor=#666666;"+b+"fillColor2=#008cff;barHeight=30;barPos=20;",300,200,"","Video Player",null,null,this.getTagsForStencil("mxgraph.mockup.containers","videoPlayer", -"mockup container ").join(" ")),this.addEntry("mockup container accordion",function(){var a=new mxCell("",new mxGeometry(0,0,100,220),d+"containers.rrect;rSize=0;fillColor=#ffffff;strokeColor=#666666;");a.vertex=!0;var b=new mxCell("Group 1",new mxGeometry(0,0,100,26),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+d+"containers.rrect;rSize=0;fontSize=17;fontColor=#666666;fontStyle=1;resizeWidth=1;");b.geometry.relative=!0;b.vertex=!0;a.insert(b);b=new mxCell("Group 2",new mxGeometry(0, -0,100,26),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+d+"containers.rrect;rSize=0;fontSize=17;fontColor=#666666;fontStyle=1;resizeWidth=1;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(0,26);b.vertex=!0;a.insert(b);b=new mxCell("Group 3",new mxGeometry(0,0,100,26),d+"containers.rrect;rSize=0;fontSize=17;fontColor=#ffffff;fontStyle=1;fillColor=#008cff;strokeColor=#008cff;resizeWidth=1;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(0,52);b.vertex=!0;a.insert(b); -b=new mxCell("Group 4",new mxGeometry(0,1,100,26),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+d+"containers.rrect;rSize=0;fontSize=17;fontColor=#666666;fontStyle=1;resizeWidth=1;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(0,-26);b.vertex=!0;a.insert(b);return c.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,"Accordion")}),this.addEntry("mockup container browser window",function(){var a=new mxCell("",new mxGeometry(0,0,550,380),d+"containers.browserWindow;rSize=0;fillColor=#ffffff;strokeColor=#666666;strokeColor2=#008cff;strokeColor3=#c4c4c4;mainText=,;recursiveResize=0;"); -a.vertex=!0;var b=new mxCell("Page 1",new mxGeometry(60,12,110,26),d+"containers.anchor;fontSize=17;fontColor=#666666;align=left;");b.vertex=!0;a.insert(b);b=new mxCell("https://www.draw.io",new mxGeometry(130,60,250,26),d+"containers.anchor;rSize=0;fontSize=17;fontColor=#666666;align=left;");b.vertex=!0;a.insert(b);return c.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,"Browser Window")}),this.createVertexTemplateEntry(a+"containers.userMale;"+e+"strokeColor2=#008cff;"+b,100, -100,"","User, Male",null,null,this.getTagsForStencil("mxgraph.mockup.containers","userMale","mockup container ").join(" ")),this.createVertexTemplateEntry(a+"containers.userFemale;"+e+"strokeColor2=#008cff;"+b,100,100,"","User, Female",null,null,this.getTagsForStencil("mxgraph.mockup.containers","userFemale","mockup container ").join(" ")),this.addEntry("mockup container group",function(){var a=new mxCell("",new mxGeometry(0,0,150,200),"shape=mxgraph.mockup.containers.marginRect;rectMarginTop=10;strokeColor=#666666;fillColor=#ffffff;strokeWidth=1;dashed=0;rounded=1;arcSize=5;recursiveResize=0;"); -a.vertex=!0;var b=new mxCell("Group",new mxGeometry(5,0,90,30),"shape=rect;strokeColor=none;fillColor=#008cff;strokeWidth=1;dashed=0;rounded=1;arcSize=20;fontColor=#ffffff;fontSize=17;spacing=2;spacingTop=-2;align=left;autosize=1;spacingLeft=4;resizeWidth=0;resizeHeight=0;perimeter=none;");b.vertex=!0;a.insert(b);return c.createVertexTemplateFromCells([a],150,200,"Group")}),this.createVertexTemplateEntry(d+"containers.window;align=left;verticalAlign=top;spacingLeft=8;strokeColor2=#008cff;strokeColor3=#c4c4c4;fontColor=#666666;"+ -b+"mainText=;fontSize=17;labelBackgroundColor=none;",550,380,"Window Title","Window",null,null,this.getTagsForStencil("mxgraph.mockup.containers","window","mockup container ").join(" ")),this.addEntry("mockup container horizontal tab bar",function(){var a=new mxCell("",new mxGeometry(0,0,400,200),d+"containers.marginRect2;rectMarginTop=32;strokeColor=#666666;fillColor=#ffffff;gradientColor=none;");a.vertex=!0;var b=new mxCell("Tab 1",new mxGeometry(0,0,60,25),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+ -d+"containers.rrect;rSize=0;fontSize=17;fontColor=#666666;gradientColor=none;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(10,0);b.vertex=!0;a.insert(b);b=new mxCell("Tab 2",new mxGeometry(0,0,60,25),d+"containers.rrect;rSize=0;fontSize=17;fontColor=#ffffff;strokeColor=#008cff;fillColor=#008cff;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(75,0);b.vertex=!0;a.insert(b);b=new mxCell("Tab 3",new mxGeometry(0,0,60,25),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+ -d+"containers.rrect;rSize=0;fontSize=17;fontColor=#666666;gradientColor=none;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(140,0);b.vertex=!0;a.insert(b);b=new mxCell("",new mxGeometry(0,0,400,7),d+"containers.topButton;rSize=5;strokeColor=#008cff;fillColor=#008cff;gradientColor=none;resizeWidth=1;movable=0;deletable=1;");b.vertex=!0;b.geometry.relative=!0;b.geometry.offset=new mxPoint(0,25);a.insert(b);return c.createVertexTemplateFromCells([a],400,200,"Horizontal Tab Bar")}),this.addEntry("mockup container vertical tab bar", -function(){var a=new mxCell("",new mxGeometry(0,0,400,200),d+"containers.marginRect2;rectMarginLeft=67;strokeColor=#666666;fillColor=#ffffff;gradientColor=none;");a.vertex=!0;var b=new mxCell("Tab 1",new mxGeometry(0,0,60,25),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+d+"containers.rrect;rSize=0;fontSize=17;fontColor=#666666;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(0,10);b.vertex=!0;a.insert(b);b=new mxCell("Tab 2",new mxGeometry(0,0,60,25),d+"containers.rrect;rSize=0;fontSize=17;fontColor=#ffffff;strokeColor=#008cff;fillColor=#008cff;"); -b.geometry.relative=!0;b.geometry.offset=new mxPoint(0,40);b.vertex=!0;a.insert(b);b=new mxCell("Tab 3",new mxGeometry(0,0,60,25),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+d+"containers.rrect;rSize=0;fontSize=17;fontColor=#666666;");b.geometry.relative=!0;b.geometry.offset=new mxPoint(0,70);b.vertex=!0;a.insert(b);b=new mxCell("",new mxGeometry(0,0,7,200),d+"containers.leftButton;rSize=5;strokeColor=#008cff;fillColor=#008cff;resizeHeight=1;movable=0;deletable=0;");b.geometry.relative= -!0;b.geometry.offset=new mxPoint(60,0);b.vertex=!0;a.insert(b);return c.createVertexTemplateFromCells([a],400,200,"Vertical Tab Bar")}),this.addDataEntry("mockup container dialog box",250,140,"Dialog Box","7ZZNj5swEIZ/jY+LwA7Z7bFL2j20VStlpZ5dGMBag5FxEtJf3wE7CeGjok0rraoSRbLHnvF4ntcGwqKiedK8yj+pBCRh7wiLtFLGtoomAikJ9UVC2IZQ6uOf0Pczo0E36ldcQ2mWOFDrsOdyB9ayVQWgJYGU76QhdE0oC3zCHhPBpcp6BgON8ax/bY7S+ddGqxf4KhKToyHAeXXOE3XATheF1zkkrsOlyEpsx5gtaDTkppAXr6oNWTRZWx2vUPHLrvJiVRouStC1pzXEuMlHvRXfwUW0q0dKKt2lw9bdgyMpOs7ZXYDgHvt70EbEXL51uRlVofWQCwPbisftvAMm1HoKKXsR0+5pc8BposyeW8cNo2hxRcbI0MyC6kyO0hMgBaOPOOXgKtnCCi1MPweR5Se3lTPy2hqys++FOzYc+mkZsJEMNo62/ywMon1dlIfM5tjOq+GUk4TUXJB97HqbhwHcUpXQZgA1rtnf8yKu9Pe4MmfTILkRe7iKfwvr1Yj1mK6jgo6iqmGqkr7/EHdq76rCv8kzm3HherwXVYxNV+za4eiuNy+0/X49J8pJf7Wcbv0vSmBa58XvaHi1/F0wOH0qTWswIx7nbSxCFI4QRbyM8e3weo/hz67YkXjiVftbcK06Ad1yzpqTTgbkgpFs3kzJJvwzslkNZMPYX5DNeiSbzx/+S+YGydz/a5LB7uXb0k7vf3r+AA=="), +this.getTagsForStencil("mxgraph.lean_mapping","electronic_info_flow_edge","value stream lean mapping ").join(" "))];this.addPalette("lean_mapping",mxResources.get("leanMapping"),!1,mxUtils.bind(this,function(a){for(var b=0;b<c.length;b++)a.appendChild(c[b](a))}))}})();(function(){Sidebar.prototype.addMockupPalette=function(){this.addMockupButtonsPalette();this.addMockupContainersPalette();this.addMockupFormsPalette();this.addMockupGraphicsPalette();this.addMockupMarkupPalette();this.addMockupMiscPalette();this.addMockupNavigationPalette();this.addMockupTextPalette()};Sidebar.prototype.addMockupButtonsPalette=function(){var a=mxConstants.STYLE_STROKEWIDTH+"=1;shadow=0;dashed=0;align=center;html=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.mockup.",b=mxConstants.STYLE_STROKECOLOR+ +"=#999999;",e=this,c=[this.createVertexTemplateEntry(a+"buttons.button;"+(mxConstants.STYLE_STROKECOLOR+"=#666666;")+"fontColor=#ffffff;mainText=;buttonStyle=round;fontSize=17;fontStyle=1;fillColor=#008cff;whiteSpace=wrap;",150,50,"Button Text","Button",null,null,this.getTagsForStencil("mxgraph.mockup.buttons","button","mockup button ").join(" ")),this.addEntry("mockup button formatted multibutton multi",function(){var b=new mxCell("",new mxGeometry(0,0,150,50),a+"buttons.multiButton;fillColor=#008cff;strokeColor=#666666;mainText=;subText=;"); +b.vertex=!0;var c=new mxCell("Main Text",new mxGeometry(0,8,150,20),a+"anchor;fontSize=16;fontColor=#ffffff;fontStyle=1;whiteSpace=wrap;");c.vertex=!0;b.insert(c);c=new mxCell("Sub Text",new mxGeometry(0,30,150,10),a+"anchor;fontSize=12;fontColor=#ffffff;fontStyle=1;whiteSpace=wrap;");c.vertex=!0;b.insert(c);return e.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Formatted Button")}),this.addEntry("mockup button horizontal bar",function(){var b=new mxCell("",new mxGeometry(0, +0,500,50),a+"rrect;rSize=10;fillColor=#ffffff;strokeColor=#666666;");b.vertex=!0;var c=new mxCell("Button 2",new mxGeometry(0,0,125,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+a+"rrect;rSize=0;fontSize=17;fontColor=#666666;fontStyle=1;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(125,0);c.vertex=!0;b.insert(c);c=new mxCell("Button 3",new mxGeometry(0,0,125,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+a+"rrect;rSize=0;fontSize=17;fontColor=#666666;fontStyle=1;resizeHeight=1;"); +c.geometry.relative=!0;c.geometry.offset=new mxPoint(250,0);c.vertex=!0;b.insert(c);c=new mxCell("Button 4",new mxGeometry(1,0,125,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+a+"rightButton;rSize=10;fontSize=17;fontColor=#666666;fontStyle=1;resizeHeight=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(-125,0);c.vertex=!0;b.insert(c);c=new mxCell("Button 1",new mxGeometry(0,0,125,50),a+"leftButton;rSize=10;fontSize=17;fontColor=#ffffff;fontStyle=1;fillColor=#008cff;strokeColor=#008cff;resizeHeight=1;"); +c.geometry.relative=!0;c.vertex=!0;b.insert(c);return e.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Horizontal Button Bar")}),this.addEntry("mockup button vertical bar",function(){var b=new mxCell("",new mxGeometry(0,0,120,200),a+"rrect;rSize=10;fillColor=#ffffff;strokeColor=#666666;");b.vertex=!0;var c=new mxCell("Button 2",new mxGeometry(0,0,120,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+a+"rrect;rSize=0;fontSize=17;fontColor=#666666;fontStyle=1;resizeWidth=1;"); +c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,50);c.vertex=!0;b.insert(c);c=new mxCell("Button 3",new mxGeometry(0,0,120,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+a+"rrect;rSize=0;fontSize=17;fontColor=#666666;fontStyle=1;resizeWidth=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,100);c.vertex=!0;b.insert(c);c=new mxCell("Button 4",new mxGeometry(0,1,120,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+a+"bottomButton;rSize=10;fontSize=17;fontColor=#666666;fontStyle=1;resizeWidth=1;"); +c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,-50);c.vertex=!0;b.insert(c);c=new mxCell("Button 1",new mxGeometry(0,0,120,50),a+"topButton;rSize=10;fontSize=17;fontColor=#ffffff;fontStyle=1;fillColor=#008cff;strokeColor=#008cff;resizeWidth=1;");c.geometry.relative=!0;c.vertex=!0;b.insert(c);return e.createVertexTemplateFromCells([b],b.geometry.width,b.geometry.height,"Vertical Button Bar")}),this.createVertexTemplateEntry(a+"buttons.onOffButton;fillColor=#ffffff;gradientColor=none;"+b+"buttonState=on;fillColor2=#008cff;fontColor=#ffffff;fontSize=17;mainText=;spacingRight=40;fontStyle=1;", +150,50,"ON","On-off button",null,null,this.getTagsForStencil("mxgraph.mockup.buttons","onOffButton","mockup button on off").join(" "))];this.addPalette("mockupButtons","Mockup Buttons",!1,mxUtils.bind(this,function(a){for(var b=0;b<c.length;b++)a.appendChild(c[b](a))}))};Sidebar.prototype.addMockupContainersPalette=function(){var a=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;shadow=0;dashed=0;align=center;html=1;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;strokeWidth=1;"+mxConstants.STYLE_SHAPE+ +"=mxgraph.mockup.",b=mxConstants.STYLE_STROKEWIDTH+"=1;shadow=0;dashed=0;align=center;html=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.mockup.",e=mxConstants.STYLE_STROKECOLOR+"=#666666;",c=mxConstants.STYLE_FILLCOLOR+"=#ffffff;",d=this,f=[this.createVertexTemplateEntry(a+"containers.videoPlayer;"+e+"strokeColor2=#008cff;strokeColor3=#c4c4c4;textColor=#666666;"+c+"fillColor2=#008cff;barHeight=30;barPos=20;",300,200,"","Video Player",null,null,this.getTagsForStencil("mxgraph.mockup.containers","videoPlayer", +"mockup container ").join(" ")),this.addEntry("mockup container accordion",function(){var a=new mxCell("",new mxGeometry(0,0,100,220),b+"containers.rrect;rSize=0;fillColor=#ffffff;strokeColor=#666666;");a.vertex=!0;var c=new mxCell("Group 1",new mxGeometry(0,0,100,26),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+b+"containers.rrect;rSize=0;fontSize=17;fontColor=#666666;fontStyle=1;resizeWidth=1;");c.geometry.relative=!0;c.vertex=!0;a.insert(c);c=new mxCell("Group 2",new mxGeometry(0, +0,100,26),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+b+"containers.rrect;rSize=0;fontSize=17;fontColor=#666666;fontStyle=1;resizeWidth=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,26);c.vertex=!0;a.insert(c);c=new mxCell("Group 3",new mxGeometry(0,0,100,26),b+"containers.rrect;rSize=0;fontSize=17;fontColor=#ffffff;fontStyle=1;fillColor=#008cff;strokeColor=#008cff;resizeWidth=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,52);c.vertex=!0;a.insert(c); +c=new mxCell("Group 4",new mxGeometry(0,1,100,26),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+b+"containers.rrect;rSize=0;fontSize=17;fontColor=#666666;fontStyle=1;resizeWidth=1;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,-26);c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,"Accordion")}),this.addEntry("mockup container browser window",function(){var a=new mxCell("",new mxGeometry(0,0,550,380),b+"containers.browserWindow;rSize=0;fillColor=#ffffff;strokeColor=#666666;strokeColor2=#008cff;strokeColor3=#c4c4c4;mainText=,;recursiveResize=0;"); +a.vertex=!0;var c=new mxCell("Page 1",new mxGeometry(60,12,110,26),b+"containers.anchor;fontSize=17;fontColor=#666666;align=left;");c.vertex=!0;a.insert(c);c=new mxCell("https://www.draw.io",new mxGeometry(130,60,250,26),b+"containers.anchor;rSize=0;fontSize=17;fontColor=#666666;align=left;");c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,"Browser Window")}),this.createVertexTemplateEntry(a+"containers.userMale;"+e+"strokeColor2=#008cff;"+c,100, +100,"","User, Male",null,null,this.getTagsForStencil("mxgraph.mockup.containers","userMale","mockup container ").join(" ")),this.createVertexTemplateEntry(a+"containers.userFemale;"+e+"strokeColor2=#008cff;"+c,100,100,"","User, Female",null,null,this.getTagsForStencil("mxgraph.mockup.containers","userFemale","mockup container ").join(" ")),this.addEntry("mockup container group",function(){var a=new mxCell("",new mxGeometry(0,0,150,200),"shape=mxgraph.mockup.containers.marginRect;rectMarginTop=10;strokeColor=#666666;fillColor=#ffffff;strokeWidth=1;dashed=0;rounded=1;arcSize=5;recursiveResize=0;"); +a.vertex=!0;var b=new mxCell("Group",new mxGeometry(5,0,90,30),"shape=rect;strokeColor=none;fillColor=#008cff;strokeWidth=1;dashed=0;rounded=1;arcSize=20;fontColor=#ffffff;fontSize=17;spacing=2;spacingTop=-2;align=left;autosize=1;spacingLeft=4;resizeWidth=0;resizeHeight=0;perimeter=none;");b.vertex=!0;a.insert(b);return d.createVertexTemplateFromCells([a],150,200,"Group")}),this.createVertexTemplateEntry(b+"containers.window;align=left;verticalAlign=top;spacingLeft=8;strokeColor2=#008cff;strokeColor3=#c4c4c4;fontColor=#666666;"+ +c+"mainText=;fontSize=17;labelBackgroundColor=none;",550,380,"Window Title","Window",null,null,this.getTagsForStencil("mxgraph.mockup.containers","window","mockup container ").join(" ")),this.addEntry("mockup container horizontal tab bar",function(){var a=new mxCell("",new mxGeometry(0,0,400,200),b+"containers.marginRect2;rectMarginTop=32;strokeColor=#666666;fillColor=#ffffff;gradientColor=none;");a.vertex=!0;var c=new mxCell("Tab 1",new mxGeometry(0,0,60,25),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+ +b+"containers.rrect;rSize=0;fontSize=17;fontColor=#666666;gradientColor=none;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(10,0);c.vertex=!0;a.insert(c);c=new mxCell("Tab 2",new mxGeometry(0,0,60,25),b+"containers.rrect;rSize=0;fontSize=17;fontColor=#ffffff;strokeColor=#008cff;fillColor=#008cff;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(75,0);c.vertex=!0;a.insert(c);c=new mxCell("Tab 3",new mxGeometry(0,0,60,25),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+ +b+"containers.rrect;rSize=0;fontSize=17;fontColor=#666666;gradientColor=none;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(140,0);c.vertex=!0;a.insert(c);c=new mxCell("",new mxGeometry(0,0,400,7),b+"containers.topButton;rSize=5;strokeColor=#008cff;fillColor=#008cff;gradientColor=none;resizeWidth=1;movable=0;deletable=1;");c.vertex=!0;c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,25);a.insert(c);return d.createVertexTemplateFromCells([a],400,200,"Horizontal Tab Bar")}),this.addEntry("mockup container vertical tab bar", +function(){var a=new mxCell("",new mxGeometry(0,0,400,200),b+"containers.marginRect2;rectMarginLeft=67;strokeColor=#666666;fillColor=#ffffff;gradientColor=none;");a.vertex=!0;var c=new mxCell("Tab 1",new mxGeometry(0,0,60,25),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+b+"containers.rrect;rSize=0;fontSize=17;fontColor=#666666;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,10);c.vertex=!0;a.insert(c);c=new mxCell("Tab 2",new mxGeometry(0,0,60,25),b+"containers.rrect;rSize=0;fontSize=17;fontColor=#ffffff;strokeColor=#008cff;fillColor=#008cff;"); +c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,40);c.vertex=!0;a.insert(c);c=new mxCell("Tab 3",new mxGeometry(0,0,60,25),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+b+"containers.rrect;rSize=0;fontSize=17;fontColor=#666666;");c.geometry.relative=!0;c.geometry.offset=new mxPoint(0,70);c.vertex=!0;a.insert(c);c=new mxCell("",new mxGeometry(0,0,7,200),b+"containers.leftButton;rSize=5;strokeColor=#008cff;fillColor=#008cff;resizeHeight=1;movable=0;deletable=0;");c.geometry.relative= +!0;c.geometry.offset=new mxPoint(60,0);c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],400,200,"Vertical Tab Bar")}),this.addDataEntry("mockup container dialog box",250,140,"Dialog Box","7ZZNj5swEIZ/jY+LwA7Z7bFL2j20VStlpZ5dGMBag5FxEtJf3wE7CeGjok0rraoSRbLHnvF4ntcGwqKiedK8yj+pBCRh7wiLtFLGtoomAikJ9UVC2IZQ6uOf0Pczo0E36ldcQ2mWOFDrsOdyB9ayVQWgJYGU76QhdE0oC3zCHhPBpcp6BgON8ax/bY7S+ddGqxf4KhKToyHAeXXOE3XATheF1zkkrsOlyEpsx5gtaDTkppAXr6oNWTRZWx2vUPHLrvJiVRouStC1pzXEuMlHvRXfwUW0q0dKKt2lw9bdgyMpOs7ZXYDgHvt70EbEXL51uRlVofWQCwPbisftvAMm1HoKKXsR0+5pc8BposyeW8cNo2hxRcbI0MyC6kyO0hMgBaOPOOXgKtnCCi1MPweR5Se3lTPy2hqys++FOzYc+mkZsJEMNo62/ywMon1dlIfM5tjOq+GUk4TUXJB97HqbhwHcUpXQZgA1rtnf8yKu9Pe4MmfTILkRe7iKfwvr1Yj1mK6jgo6iqmGqkr7/EHdq76rCv8kzm3HherwXVYxNV+za4eiuNy+0/X49J8pJf7Wcbv0vSmBa58XvaHi1/F0wOH0qTWswIx7nbSxCFI4QRbyM8e3weo/hz67YkXjiVftbcK06Ad1yzpqTTgbkgpFs3kzJJvwzslkNZMPYX5DNeiSbzx/+S+YGydz/a5LB7uXb0k7vf3r+AA=="), this.addDataEntry("mockup container dialog box",250,160,"Dialog Box","zZZRb5swEMc/jR+LwC5pX9dk68NWtVIq7dmDA6wajGwnIf30O8AECFClyx5KFMn3x3c+3+9sQdg6rx41L7MnFYMk7Dtha62UbUd5tQYpCfVFTNiGUOrjn9AfC2+D5q1fcg2FvcSBtg57LnfQKluVAyoxJHwnLaErQlngE/aQgzE8hYFiobJeG8DYo3QBjNXqDX6L2GYoBDjPZDxWBzRqp5ibDGJncCnSAscRpgsahczmsvcq65B5ldbl8XIVve1KL1KF5aIAbTytIcJdPuiteAcXsV19raTSTTps1Tz4JkHHJd0FCO7Q3oO2IuLym8vNqhLVQyYsbEse1fMOmFDtKaQcREyap84Bp4kifa0dN4yi4qqMkaFaJNVIDtMjIAarjzjl4CpZ0wpbmn4GIs06t5UTuWmF9OTbg8eBYz/fB2zSB08dbv9VWGT7tTCfQ1uCu9wOXU4SEtsz+9VYm/sP6GowuPBw4xfRpf9GlzlNg+RW7GEU/xritxPiU8QODTqK0sBcOX3/Puqrwv/IE6BB9QpVwBj6RRVj8xUbOxzdLeeFrT2s50w56WfL6dZ/UQLTOi1+Q8PR8jfB2RlUSWLATnictnERonCC6PnnFz6HH12yk8aJbuvfTON85qK95uBVZ41zHAUYtFEw20fh/+mj7u7u+oix6/sIzf4Dop0+/L74Cw==")]; -this.addPalette("mockupContainers","Mockup Containers",!1,mxUtils.bind(this,function(a){for(var b=0;b<f.length;b++)a.appendChild(f[b](a))}))};Sidebar.prototype.addMockupFormsPalette=function(){var a=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;shadow=0;dashed=0;align=center;html=1;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;strokeWidth=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.mockup.",d=mxConstants.STYLE_STROKEWIDTH+"=1;shadow=0;dashed=0;align=center;html=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.mockup.", -e=mxConstants.STYLE_STROKECOLOR+"=#999999;",b=mxConstants.STYLE_FILLCOLOR+"=#ffffff;",c=this,f=[this.createVertexTemplateEntry(d+"forms.rrect;rSize=0;fillColor=#eeeeee;strokeColor=#999999;gradientColor=#cccccc;align=left;spacingLeft=4;fontSize=17;fontColor=#666666;labelPosition=right;",15,15,"Option 1","Checkbox",null,null,this.getTagsForStencil("mxgraph.mockup.forms","checkbox","mockup form ").join(" ")),this.addDataEntry("mockup form checkbox checkboxes",150,120,"Checkboxes","7VZNb8IwDP01uValKV9XYOOyadN22DmkbhuRNlUSoOzXL00yvtZOSGgMabOEFD/32Yn9GorwtKjnklT5o0iAI3yH8FQKod2qqKfAOYpCliA8Q1EUmh+K7juiPRsNKyKh1OcQIkdYE74ChzhA6S33gNJSLOGNJTo3QA/hicpJIjbGCY2TEJVD4h3CWVaaNTXlQRog1wXfs6omZVFnzXGDQtDlqgpSIQsVSAnUbHgiX9k7+GSu8FRwIe1O8NiaiaSM8wM8tdawga6kYmt4AbXP448IUkPd2SYL+R7NQRSg5dY8svHHbp7ou1aGObAs/6T5/oZEOSDbcfddNwvf+PYh4C9DeKo0E6XBerczjpOmg7Vvx2QSJ8yUPohRawdb45A2hVRFKCuzB+vN4qacKLWv3ht6/yDRwJrBOVkAfxaK2Y7hmXTDOW/qUfvUPWHkCFvnDYO+84800SKJ/uWKiLsVcUMv6F9XBL6mJPrdksC/IwmaA10uRH2iCtncvWTBO1RCrLWpJLbWrpLdcC9VSRiOqP2vuJpKBtdUyaBbJfH/xXErF8f4ByVh3P3no40dfV1+AA=="), +this.addPalette("mockupContainers","Mockup Containers",!1,mxUtils.bind(this,function(a){for(var b=0;b<f.length;b++)a.appendChild(f[b](a))}))};Sidebar.prototype.addMockupFormsPalette=function(){var a=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;shadow=0;dashed=0;align=center;html=1;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;strokeWidth=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.mockup.",b=mxConstants.STYLE_STROKEWIDTH+"=1;shadow=0;dashed=0;align=center;html=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.mockup.", +e=mxConstants.STYLE_STROKECOLOR+"=#999999;",c=mxConstants.STYLE_FILLCOLOR+"=#ffffff;",d=this,f=[this.createVertexTemplateEntry(b+"forms.rrect;rSize=0;fillColor=#eeeeee;strokeColor=#999999;gradientColor=#cccccc;align=left;spacingLeft=4;fontSize=17;fontColor=#666666;labelPosition=right;",15,15,"Option 1","Checkbox",null,null,this.getTagsForStencil("mxgraph.mockup.forms","checkbox","mockup form ").join(" ")),this.addDataEntry("mockup form checkbox checkboxes",150,120,"Checkboxes","7VZNb8IwDP01uValKV9XYOOyadN22DmkbhuRNlUSoOzXL00yvtZOSGgMabOEFD/32Yn9GorwtKjnklT5o0iAI3yH8FQKod2qqKfAOYpCliA8Q1EUmh+K7juiPRsNKyKh1OcQIkdYE74ChzhA6S33gNJSLOGNJTo3QA/hicpJIjbGCY2TEJVD4h3CWVaaNTXlQRog1wXfs6omZVFnzXGDQtDlqgpSIQsVSAnUbHgiX9k7+GSu8FRwIe1O8NiaiaSM8wM8tdawga6kYmt4AbXP448IUkPd2SYL+R7NQRSg5dY8svHHbp7ou1aGObAs/6T5/oZEOSDbcfddNwvf+PYh4C9DeKo0E6XBerczjpOmg7Vvx2QSJ8yUPohRawdb45A2hVRFKCuzB+vN4qacKLWv3ht6/yDRwJrBOVkAfxaK2Y7hmXTDOW/qUfvUPWHkCFvnDYO+84800SKJ/uWKiLsVcUMv6F9XBL6mJPrdksC/IwmaA10uRH2iCtncvWTBO1RCrLWpJLbWrpLdcC9VSRiOqP2vuJpKBtdUyaBbJfH/xXErF8f4ByVh3P3no40dfV1+AA=="), this.createVertexTemplateEntry("shape=ellipse;fillColor=#eeeeee;strokeColor=#999999;gradientColor=#cccccc;html=1;align=left;spacingLeft=4;fontSize=17;fontColor=#666666;labelPosition=right;shadow=0;",15,15,"Setting 1","Radiobutton",null,null,this.getTagsForStencil("mxgraph.mockup.forms","radiobutton radio button","mockup form ").join(" ")),this.addDataEntry("mockup form radiobutton radio button group",150,120,"Radiobutton Group","7ZbJboMwEIafhmtEcMhyTdrm0kpVc+jZhQlYMRjZztan72A7C4Eg1LQ5ZSQkzwwztv/PLB6ZZbu5pEX6JmLgHnn2yEwKoe0o282Acy/wWeyRJy8IfLy84OVKtm+yfkEl5LpLQWALNpSvwUZsQOk9dwGlpVjBJ4t1ioG+R6YqpbHYouOjE1OVQuwcylmS4zjC6UFiINUZP1UVZctsl5Tb7WUiWq2L3lLITPWkhAgXPJUL9g2umZ14JriQZiVkYgwzS8b5WXxprKyGaC0V28AHqFMft0WQGnZXZTIhp9EcRAZa7vGWrdt2eUdopfRTYEl6KHP6+lTZQHKsPamOAyd8MwRSg7AArVmeYLBf5+F0xB6sUHAh2oU0YKxVTKQRM9ThLBcZq+I7oOWwLEGpgka4wlfjPQ3KmUWu3UL6I+ef9RwawzinX8DfhWKaibKhtGp2wxQ0Y3IFY1uwt96oF1q/ArGBYXg7wkELwoZH6oGwG0JyT4ZhC0NyG0NqrInhwFgzw6Pef8jQ98eReVfejeHwngyHHb5nNXAXsI5IqrBykUOVRSepwlapSPW413Sa1GWa3K7SqOWkDx5vq9+e9Mk/nnR0T3+FJlf5afwB"), -this.createVertexTemplateEntry(a+"forms.colorPicker;chosenColor=#aaddff;fillColor=#ffffff;",40,40,"","Color Picker",null,null,this.getTagsForStencil("mxgraph.mockup.forms","colorPicker","mockup form ").join(" ")),this.createVertexTemplateEntry(d+"forms.comboBox;"+e+mxConstants.STYLE_FILLCOLOR+"=#ddeeff;align=left;fillColor2=#aaddff;mainText=;fontColor=#666666;fontSize=17;spacingLeft=3;",150,30,"Option 1","Combo Box",null,null,this.getTagsForStencil("mxgraph.mockup.forms","comboBox","mockup form ").join(" ")), -this.createVertexTemplateEntry(d+"forms.spinner;"+e+"spinLayout=right;spinStyle=normal;adjStyle=triangle;fillColor=#aaddff;fontSize=17;fontColor=#666666;mainText=;html=1;overflow=fill;",150,60,'<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td style="width:85%">100</td><td style="width:15%"></td></tr></table>',"Spinner",null,null,this.getTagsForStencil("mxgraph.mockup.forms","spinner","mockup form ").join(" ")),this.addEntry("mockup form menu bar",function(){var a=new mxCell("", -new mxGeometry(0,0,498,30),d+"forms.rrect;rSize=0;strokeColor=#999999;fillColor=#ffffff;");a.vertex=!0;var b=new mxCell("File",new mxGeometry(0,0,83,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+d+"forms.rrect;rSize=0;fontSize=17;fontColor=#666666;");b.vertex=!0;a.insert(b);b=new mxCell("Edit",new mxGeometry(83,0,83,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+d+"forms.rrect;rSize=0;fontSize=17;fontColor=#666666;");b.vertex=!0;a.insert(b);b=new mxCell("Options", -new mxGeometry(166,0,83,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+d+"forms.rrect;rSize=0;fontSize=17;fontColor=#666666;");b.vertex=!0;a.insert(b);b=new mxCell("Tools",new mxGeometry(249,0,83,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+d+"forms.rrect;rSize=0;fontSize=17;fontColor=#666666;");b.vertex=!0;a.insert(b);b=new mxCell("Window",new mxGeometry(332,0,83,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+d+"forms.rrect;rSize=0;fontSize=17;fontColor=#666666;"); -b.vertex=!0;a.insert(b);b=new mxCell("Help",new mxGeometry(415,0,83,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+d+"forms.rrect;rSize=0;fontSize=17;fontColor=#666666;");b.vertex=!0;a.insert(b);return c.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,"Menu Bar")}),this.createVertexTemplateEntry(a+"forms.horSlider;"+e+b+"sliderStyle=basic;sliderPos=20;handleStyle=circle;fillColor2=#ddeeff;",150,30,"","Horizontal Slider",null,null,this.getTagsForStencil("mxgraph.mockup.forms", -"horSlider","mockup form horizontal").join(" ")),this.createVertexTemplateEntry(a+"forms.horSlider;"+e+b+"sliderStyle=basic;sliderPos=20;handleStyle=circle;fillColor2=#ddeeff;direction=north;",30,150,"","Vertical Slider",null,null,this.getTagsForStencil("mxgraph.mockup.forms","horSlider","mockup form vertical").join(" ")),this.addDataEntry("mockup form list box",150,200,"List Box","7ZZdS8MwFIZ/TW9HlmzO3W7qEBQEBa9De9oG06YkUTd/vadJ3FprZX7MOVigkPMmJx/vEw6N2LxYLjSv8muVgIzYecTmWinre8VyDlJGlIgkYmcRpQS/iF70jA7dKKm4htJuk0B9whOXj+AVLxi7kkEwVqsHuBeJzVEYRmxmcp6oZwwIBgk3OSQh4FJkJfZj3B40Crkt5Carqpcslll93UGh4ofHapAqXZiB1hDjgWf6VrxAWMxvPFdSaXcSNnUNR1IhZUNPXUM9XAa0hWWvIU4KbixAFWD1Cqc8hwvWM8beNJKDyPKQRkkQufFCts7d+IudYPHHdrOO3XfCotGH4LkqbUMn5DR2ntd6WGA4+YSNBoOzmlfaihb9Hi0WNA2SW/EErfV/QnDUIXhpoUBluB+IvIzz2usuhzavE9caO0lIa/im4rEosysXnY3/HBT9KqiwxY0SuDMlqzbvtwyVpgZsB+z6YFuxHvex3lORPLL2WHbB+qSPNfs/xfnXsL+r0UkC4Gp0u/qXqoRDfSOTXbyRSd8bGR3rwR5ZT3+BNYabn24/vflP/go="), -this.createVertexTemplateEntry(d+"forms.pwField;"+e+"mainText=;align=left;fillColor=#ffffff;fontColor=#666666;fontSize=17;spacingLeft=3;",150,30,"********","Password Field",null,null,this.getTagsForStencil("mxgraph.mockup.forms","pwField","mockup form ").join(" ")),this.createVertexTemplateEntry(a+"forms.splitter;fillColor=#ffffff;"+e,350,10,"","Horizontal Splitter",null,null,this.getTagsForStencil("mxgraph.mockup.forms","splitter","mockup form ").join(" ")),this.createVertexTemplateEntry(a+"forms.splitter;fillColor=#ffffff;"+ -e+mxConstants.STYLE_DIRECTION+"="+mxConstants.DIRECTION_NORTH+";",10,350,"","Vertical Splitter",null,null,this.getTagsForStencil("mxgraph.mockup.forms","splitter","mockup form ").join(" ")),this.addEntry("mockup form wedge bar",function(){var a=new mxCell("Tab 1",new mxGeometry(10,0,70,30),d+"forms.uRect;fontSize=17;fontColor=#666666;align=left;spacingLeft=5;strokeColor=#666666;fillColor=#ffffff;");a.vertex=!0;var b=new mxCell("Tab 2",new mxGeometry(85,0,70,30),d+"forms.uRect;fontSize=17;fontColor=#ffffff;align=left;spacingLeft=5;strokeColor=#008cff;fillColor=#008cff;"); -b.vertex=!0;var e=new mxCell("Tab 3",new mxGeometry(160,0,70,30),d+"forms.uRect;fontSize=17;fontColor=#666666;align=left;spacingLeft=5;strokeColor=#666666;fillColor=#ffffff;");e.vertex=!0;return c.createVertexTemplateFromCells([a,b,e],230,30,"Wedge Bar")}),this.createVertexTemplateEntry(a+"menus_and_buttons.font_style_selector_1;",136,31,"","Formatting Toolbar 1",null,null,this.getTagsForStencil("mxgraph.mockup.menus_and_buttons","font_style_selector_1","mockup form ").join(" ")),this.createVertexTemplateEntry(a+ -"menus_and_buttons.font_style_selector_2;",235,31,"","Formatting Toolbar 2",null,null,this.getTagsForStencil("mxgraph.mockup.menus_and_buttons","font_style_selector_2","mockup form ").join(" ")),this.createVertexTemplateEntry(a+"menus_and_buttons.font_style_selector_3;",176,38,"","Formatting Toolbar 3",null,null,this.getTagsForStencil("mxgraph.mockup.menus_and_buttons","font_style_selector_3","mockup form ").join(" ")),this.createVertexTemplateEntry(d+"forms.searchBox;"+e+"mainText=;fillColor=#ffffff;strokeColor2=#008cff;fontColor=#666666;fontSize=17;align=left;spacingLeft=3;", +this.createVertexTemplateEntry(a+"forms.colorPicker;chosenColor=#aaddff;fillColor=#ffffff;",40,40,"","Color Picker",null,null,this.getTagsForStencil("mxgraph.mockup.forms","colorPicker","mockup form ").join(" ")),this.createVertexTemplateEntry(b+"forms.comboBox;"+e+mxConstants.STYLE_FILLCOLOR+"=#ddeeff;align=left;fillColor2=#aaddff;mainText=;fontColor=#666666;fontSize=17;spacingLeft=3;",150,30,"Option 1","Combo Box",null,null,this.getTagsForStencil("mxgraph.mockup.forms","comboBox","mockup form ").join(" ")), +this.createVertexTemplateEntry(b+"forms.spinner;"+e+"spinLayout=right;spinStyle=normal;adjStyle=triangle;fillColor=#aaddff;fontSize=17;fontColor=#666666;mainText=;html=1;overflow=fill;",150,60,'<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td style="width:85%">100</td><td style="width:15%"></td></tr></table>',"Spinner",null,null,this.getTagsForStencil("mxgraph.mockup.forms","spinner","mockup form ").join(" ")),this.addEntry("mockup form menu bar",function(){var a=new mxCell("", +new mxGeometry(0,0,498,30),b+"forms.rrect;rSize=0;strokeColor=#999999;fillColor=#ffffff;");a.vertex=!0;var c=new mxCell("File",new mxGeometry(0,0,83,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+b+"forms.rrect;rSize=0;fontSize=17;fontColor=#666666;");c.vertex=!0;a.insert(c);c=new mxCell("Edit",new mxGeometry(83,0,83,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+b+"forms.rrect;rSize=0;fontSize=17;fontColor=#666666;");c.vertex=!0;a.insert(c);c=new mxCell("Options", +new mxGeometry(166,0,83,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+b+"forms.rrect;rSize=0;fontSize=17;fontColor=#666666;");c.vertex=!0;a.insert(c);c=new mxCell("Tools",new mxGeometry(249,0,83,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+b+"forms.rrect;rSize=0;fontSize=17;fontColor=#666666;");c.vertex=!0;a.insert(c);c=new mxCell("Window",new mxGeometry(332,0,83,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+b+"forms.rrect;rSize=0;fontSize=17;fontColor=#666666;"); +c.vertex=!0;a.insert(c);c=new mxCell("Help",new mxGeometry(415,0,83,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+b+"forms.rrect;rSize=0;fontSize=17;fontColor=#666666;");c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,"Menu Bar")}),this.createVertexTemplateEntry(a+"forms.horSlider;"+e+c+"sliderStyle=basic;sliderPos=20;handleStyle=circle;fillColor2=#ddeeff;",150,30,"","Horizontal Slider",null,null,this.getTagsForStencil("mxgraph.mockup.forms", +"horSlider","mockup form horizontal").join(" ")),this.createVertexTemplateEntry(a+"forms.horSlider;"+e+c+"sliderStyle=basic;sliderPos=20;handleStyle=circle;fillColor2=#ddeeff;direction=north;",30,150,"","Vertical Slider",null,null,this.getTagsForStencil("mxgraph.mockup.forms","horSlider","mockup form vertical").join(" ")),this.addDataEntry("mockup form list box",150,200,"List Box","7ZZdS8MwFIZ/TW9HlmzO3W7qEBQEBa9De9oG06YkUTd/vadJ3FprZX7MOVigkPMmJx/vEw6N2LxYLjSv8muVgIzYecTmWinre8VyDlJGlIgkYmcRpQS/iF70jA7dKKm4htJuk0B9whOXj+AVLxi7kkEwVqsHuBeJzVEYRmxmcp6oZwwIBgk3OSQh4FJkJfZj3B40Crkt5Carqpcslll93UGh4ofHapAqXZiB1hDjgWf6VrxAWMxvPFdSaXcSNnUNR1IhZUNPXUM9XAa0hWWvIU4KbixAFWD1Cqc8hwvWM8beNJKDyPKQRkkQufFCts7d+IudYPHHdrOO3XfCotGH4LkqbUMn5DR2ntd6WGA4+YSNBoOzmlfaihb9Hi0WNA2SW/EErfV/QnDUIXhpoUBluB+IvIzz2usuhzavE9caO0lIa/im4rEosysXnY3/HBT9KqiwxY0SuDMlqzbvtwyVpgZsB+z6YFuxHvex3lORPLL2WHbB+qSPNfs/xfnXsL+r0UkC4Gp0u/qXqoRDfSOTXbyRSd8bGR3rwR5ZT3+BNYabn24/vflP/go="), +this.createVertexTemplateEntry(b+"forms.pwField;"+e+"mainText=;align=left;fillColor=#ffffff;fontColor=#666666;fontSize=17;spacingLeft=3;",150,30,"********","Password Field",null,null,this.getTagsForStencil("mxgraph.mockup.forms","pwField","mockup form ").join(" ")),this.createVertexTemplateEntry(a+"forms.splitter;fillColor=#ffffff;"+e,350,10,"","Horizontal Splitter",null,null,this.getTagsForStencil("mxgraph.mockup.forms","splitter","mockup form ").join(" ")),this.createVertexTemplateEntry(a+"forms.splitter;fillColor=#ffffff;"+ +e+mxConstants.STYLE_DIRECTION+"="+mxConstants.DIRECTION_NORTH+";",10,350,"","Vertical Splitter",null,null,this.getTagsForStencil("mxgraph.mockup.forms","splitter","mockup form ").join(" ")),this.addEntry("mockup form wedge bar",function(){var a=new mxCell("Tab 1",new mxGeometry(10,0,70,30),b+"forms.uRect;fontSize=17;fontColor=#666666;align=left;spacingLeft=5;strokeColor=#666666;fillColor=#ffffff;");a.vertex=!0;var c=new mxCell("Tab 2",new mxGeometry(85,0,70,30),b+"forms.uRect;fontSize=17;fontColor=#ffffff;align=left;spacingLeft=5;strokeColor=#008cff;fillColor=#008cff;"); +c.vertex=!0;var f=new mxCell("Tab 3",new mxGeometry(160,0,70,30),b+"forms.uRect;fontSize=17;fontColor=#666666;align=left;spacingLeft=5;strokeColor=#666666;fillColor=#ffffff;");f.vertex=!0;return d.createVertexTemplateFromCells([a,c,f],230,30,"Wedge Bar")}),this.createVertexTemplateEntry(a+"menus_and_buttons.font_style_selector_1;",136,31,"","Formatting Toolbar 1",null,null,this.getTagsForStencil("mxgraph.mockup.menus_and_buttons","font_style_selector_1","mockup form ").join(" ")),this.createVertexTemplateEntry(a+ +"menus_and_buttons.font_style_selector_2;",235,31,"","Formatting Toolbar 2",null,null,this.getTagsForStencil("mxgraph.mockup.menus_and_buttons","font_style_selector_2","mockup form ").join(" ")),this.createVertexTemplateEntry(a+"menus_and_buttons.font_style_selector_3;",176,38,"","Formatting Toolbar 3",null,null,this.getTagsForStencil("mxgraph.mockup.menus_and_buttons","font_style_selector_3","mockup form ").join(" ")),this.createVertexTemplateEntry(b+"forms.searchBox;"+e+"mainText=;fillColor=#ffffff;strokeColor2=#008cff;fontColor=#666666;fontSize=17;align=left;spacingLeft=3;", 150,30,"Search","Search Box",null,null,this.getTagsForStencil("mxgraph.mockup.forms","searchBox","mockup form ").join(" ")),this.addDataEntry("mockup form sign in",200,300,"Sign In","7Vhtb9owEP41+TIJ5DgkLR8HG6jShpBQtc8uubysTowct8B+/RzHQILDFmm4TScsRYrPOft8z3N3sR1vmu3mnGyS7ywE6nhfHW/KGRPVW7abAqUORmnoeF8cjJF8HDy7MOqqUbQhHHLRRQFXCq+EvkAlqQSF2FMtKARnz/AjDUUiBa7jTYqEhGwrO0h2QlIkEOoOoWmcy/e1XB64FCQioyetTTlltovL7Q4ztn5+2QwjxrNiyDmspcETvkp/gZ6sWnjKKOPKEm+smhyJUkpr8kg1KdebAS5gd9EhSqS9MQeWgeB7+clWb7B0CqqchhJI40SreQchKSpBfNQ9+Ve+aBe3u9sz3L0qHYbRQ/4+fif5OindOIlYLrTvXaz7NRcHqtVWohApvKCQSg0jN2Sd5vE3Na6M64QK/isqbhsqmt6IAyUifYXG/G1I6SWWLJUrY3QwSE+zb3YPE7AoKkAYQB/t7IT9qEOoaahomkNbAIQhgCJ6kxu4CbiJybUQuG9BwLWCgGcDAd9A4LGQ0YLRgmRS8PkWgv0JwZENAgQGAX6yJA8ZfIii140OTfB9q/nAb6ODb4MOgQ063Bl0WJKi2DIe3pJBr5LB2LeA/r2B/ifdbtmg59nAdW0QYmwQYvUwX5Q/54t+MMI3GJEz9aN4RobjeejsnBQET0+VvJZcgkNfb+5fGbFvKNT40fbz6F0nXeAmPQZHKl6VHwcS1ggyYzxmpSGnwjHrd+Eo04fiwB8TBTojxejqieMiTdrTiJWyMnCtHPRc1+CJyYkenvQuQ/J2577B2Aoi5jXXArZSUJ3/+hyv3Qo7+j/j884KGVou4ao6/7i81fkPVeevUeZl93TdXn1ev43/DQ=="), this.addDataEntry("mockup form calendar date",160,175,"Calendar","7Zxdc6IwFIZ/DbdOPkDktu62V529cGd6zUoUp2CcSLe6v37Dh7bm0K2dLjk2kRlnIBCF9wnkvMmRgE/L3Z1KN/m9zEQR8O8Bnyopq3at3E1FUQSMrLKAfwsYI/oTsNs39tJmL9mkSqyrcyqwtsLvtHgSbUlbsK32RVewrZR8FA+rrMp1AQ34zTZPM/msN4jeyNJtLrJuIy1Wy7Ven+ufF0oX5FVZvNTa1F9Z7pb15Y5KOX982owWUpXbkVJirk/4Rs1Wf+qDorpC88NTWUjVnAlPmkXvWayK4lX5oll0eXcxQlVi96YgTVGnxp2QpajUXh/y3F1gfcS4FY3kYrXMD9XiqC1Mt23B8lj3RV+90kncLzcHcv+YV/KXlooRRmiII366nue1ljcLua769D5LV9ava1eBd5Lu281Ju/VadNIjetd6P6V52NPEx0V1vCzsph7+u6mfIiFkMm+ael3efQE9HDfrroT+H2STd4ixaBhgUR+w5RXYu8Aoi5GQjQGye+nus4yePsv6dB7oWRYDnX8+uaszR9N5AnR+EO7qHKHpnMD2nLurc4ym8+GJ9UroW+Wu0Ame0BQIPUvdFZridYUUWteZw30hxesMKXStFEdoMxInH4nEB4wAQ4swoJ29kCEbNBgcDwa0qtxzGBEeDGhCkcbTLgZGjAcDOtXIcxgJHgxoZ8eewzADV5s0oOmNfaeB14Uz6IwnvtM4hTG2CAO658RzGBwPBjTYh5bhLY0Ij0aPCffdhcd4NKALP4xHeUsjwaMBbTj13YebAa5NHNCIY2W2XA4OxH4cWnHquxc3bo6JRRrQi1PfzbiZG2aRBvTi1HczHqHR4NCLU9/NeIxHA5px6rsbT/BoQDfOfHfjZoxrEwe049dJcbx+nPfMivvux42bgxKLOKAh935inCPigIbc+9nYGBEHNOTez8cmiDigI79OyGJ2HtCTX6dkEXuPELpy72dlzdvDYjZuCG05990ImneHTRzQl3PfjWCEiMOxXHXjn+5ZJsT5/3T/WARsk5JjSewDUjIDY5uUHMtuH5ASiJdtYnIs731ITJiBgmMZ8UNiMihZTAcO4WDAlx6aGZCSeS/ZpORYCv2AlMxY3CKlCA4cfOlxHIuxuE1KjuXcW4zFbVKCwwxfOxnfZjBuk5Nrafo2o3GbnHpGIC7ZNS0WRC+Q0/HVh6enyiC544vIBggqhpuN0JsvL8Ns9p28K/Mv"), this.addDataEntry("mockup form calendar date",400,300,"Email","7VhLU9swEP41vmacOLyOJQEu9FLa6VnI61igF3qQ0F/fXcmGdJzMtAOmh8QzcbyrfX6fV05cVAu1uXHMtl9NDbKoropq4YwJ+UptFiBlMStFXVTLYjYr8VPMrvesTtNqaZkDHf7GYZYdnpmMkDXXzqis9OFFdkofnHmEn6IOLSqmRXXpW1abNQolCjXzLdSdwKRYabzmWAI4VLRByTcvSyHVZkUtT5Thj9FOGuOUnzDNW+O2IjixagN5WcaFXn3L4nKGqsbosDCSzLG+6jQdqO/aARdgsxeSpOrwuAGjILgXNFl37eHqSUatbKHLSV7nWcd8llevnm/44kUH8W64qwHcD6bVxbx8yHjw/4W9c8AJ6kZIuYVrkw7UuzvxC7ok+7Dvk0totli7TdKyIk3qZMv1Ih3vpG3zJ2VbLFZj0Tgf0HgX7x8IwYMcnJce7gEDYxFwMiDgxgEE7PU4Pu8bn/1cjjZNpwMyv5uDHqSz4VY2FvZnA+wbhzgeH0gfPlE7SB1tos4HrC4WBz1R0/Lznk0XA/CPE/QhE7SLxNFGaFoOaLw89CGaf95zaTo9TtFIU7SDxfGmaPh+4dY4UGRifaTvOnWNxIpAyTBFMcO4JTfaI/QQIq2yWljhBU+/8EuQorPyyDDFIKWIXhkSAyibYgrNRS3qqCl0pJNk95ifrEOfmyTFVppRGimeIpvg1Q9aBy1USk4mIgvPqGQqZ3+KwuOXNkhgJCPYgOMisCCMppRSMsVNnzcbYxt9NSmdsMmRTiz1rbAL0yOA5QSqZ5lTsRioXuFiqrsHT1A2B9ZBC7oGl7BMymcjo8WCIJWecCvBexI53tJvFCRQIp6auBKMzDSVn281VERHZVxtONgAMTOWcDWcM+DJg0crahayd0LAOiNqulEzW5mJVBiP0rKMIQVpGiSX5Bo8uGynjMwFswy9SBD7Vx6jmhzkpkDbgeBMfulCBGNRu25FgDsMQ5nXWPQH7fpnw6fuvNy1X/T/yv9hwyjodWP/rjOt/fEq9Dc=")]; -this.addPalette("mockupForms","Mockup Forms",!1,mxUtils.bind(this,function(a){for(var b=0;b<f.length;b++)a.appendChild(f[b](a))}))};Sidebar.prototype.addMockupGraphicsPalette=function(){var a=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;shadow=0;dashed=0;align=center;html=1;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;strokeWidth=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.mockup.",d=mxConstants.STYLE_STROKEWIDTH+"=1;shadow=0;dashed=0;align=center;html=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.mockup.",e= -mxConstants.STYLE_FILLCOLOR+"=#ffffff;",b=mxConstants.STYLE_STROKECOLOR+"=none;",c=this,f=[this.createVertexTemplateEntry(a+"graphics.barChart;"+e+b+"strokeColor2=none;strokeColor3=#666666;fillColor2=#008cff;fillColor3=#dddddd;",400,200,"","Bar Chart",null,null,this.getTagsForStencil("mxgraph.mockup.graphics","barChart","mockup graphics ").join(" ")),this.createVertexTemplateEntry(a+"graphics.columnChart;"+e+b+"strokeColor2=none;strokeColor3=#666666;fillColor2=#008cff;fillColor3=#dddddd;",400,200, -"","Column Chart",null,null,this.getTagsForStencil("mxgraph.mockup.graphics","columnChart","mockup graphics ").join(" ")),this.createVertexTemplateEntry(a+"graphics.lineChart;"+e+b+"strokeColor2=#666666;strokeColor3=#008cff;strokeColor4=#dddddd;",400,200,"","Line Chart",null,null,this.getTagsForStencil("mxgraph.mockup.graphics","lineChart","mockup graphics ").join(" ")),this.createVertexTemplateEntry(a+"graphics.pieChart;"+mxConstants.STYLE_STROKECOLOR+"=#008cff;parts=10,20,35;partColors=#e0e0e0,#d0d0d0,#c0c0c0,#b0b0b0,#a0a0a0;strokeWidth=2;", +this.addPalette("mockupForms","Mockup Forms",!1,mxUtils.bind(this,function(a){for(var b=0;b<f.length;b++)a.appendChild(f[b](a))}))};Sidebar.prototype.addMockupGraphicsPalette=function(){var a=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;shadow=0;dashed=0;align=center;html=1;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;strokeWidth=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.mockup.",b=mxConstants.STYLE_STROKEWIDTH+"=1;shadow=0;dashed=0;align=center;html=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.mockup.",e= +mxConstants.STYLE_FILLCOLOR+"=#ffffff;",c=mxConstants.STYLE_STROKECOLOR+"=none;",d=this,f=[this.createVertexTemplateEntry(a+"graphics.barChart;"+e+c+"strokeColor2=none;strokeColor3=#666666;fillColor2=#008cff;fillColor3=#dddddd;",400,200,"","Bar Chart",null,null,this.getTagsForStencil("mxgraph.mockup.graphics","barChart","mockup graphics ").join(" ")),this.createVertexTemplateEntry(a+"graphics.columnChart;"+e+c+"strokeColor2=none;strokeColor3=#666666;fillColor2=#008cff;fillColor3=#dddddd;",400,200, +"","Column Chart",null,null,this.getTagsForStencil("mxgraph.mockup.graphics","columnChart","mockup graphics ").join(" ")),this.createVertexTemplateEntry(a+"graphics.lineChart;"+e+c+"strokeColor2=#666666;strokeColor3=#008cff;strokeColor4=#dddddd;",400,200,"","Line Chart",null,null,this.getTagsForStencil("mxgraph.mockup.graphics","lineChart","mockup graphics ").join(" ")),this.createVertexTemplateEntry(a+"graphics.pieChart;"+mxConstants.STYLE_STROKECOLOR+"=#008cff;parts=10,20,35;partColors=#e0e0e0,#d0d0d0,#c0c0c0,#b0b0b0,#a0a0a0;strokeWidth=2;", 200,200,"","Pie Chart",null,null,this.getTagsForStencil("mxgraph.mockup.graphics","pieChart","mockup graphics ").join(" ")),this.createVertexTemplateEntry(a+"graphics.simpleIcon;strokeColor=#999999;fillColor=#ffffff;",50,50,"","Icon Placeholder",null,null,this.getTagsForStencil("mxgraph.mockup.graphics","simpleIcon","mockup graphics icon placeholder").join(" ")),this.addDataEntry("mockup graphics icon grid placeholder",200,200,"Icon Grid","7ZdRa8MgEMc/ja8licu6Pm7pVgYb7G3PNrFRqjWobdNvv4vadYUVRpv5ZCDg/e9OzvuRCyJcyX6hScfeVUMFws8IV1op61eyr6gQqMh4g/AcFUUGLypeLnhz5806ounG/iWh8Ak7IrbUK14w9iCCsKPa8pqIN7Kk4kMZbrnagGuprFUS4SfDSKP2oGRgNMQw2gSDCN4OoTVUQzUIzEo44jyH5XHbxxBjVTfsZbVa00/eWBbiYPduqET27dCliVT1ettNnMFrMzFcdoK+1kNNIb1SQmlXPJ65BzwrLsQPfeUe0MP5oRjaX+yhk0IDF1RJavUBQvahTPCWvs0Zo7xl9lwjxtvtd+YJCCwCk9/54MTnej4hYVr6jAi47hKum3HlRxAReJWJ1/W8DtE/r/uEa7RpGJ/eNNEbbzjGx/eQ8N08K2P+22aJ19jDMia+PEv8Rh+X/wgQzNO13fnObvVf"), -this.createVertexTemplateEntry(a+"graphics.bubbleChart;"+e+b+"strokeColor2=none;strokeColor3=#666666;fillColor2=#008cff;fillColor3=#dddddd;",400,200,"","Bubble Chart",null,null,this.getTagsForStencil("mxgraph.mockup.graphics","bubbleChart","mockup graphics bubble chart").join(" ")),this.addDataEntry("mockup graphics gauge",100,100,"Gauge","zZXdT8IwEMD/mr6S0jqVRxnKiya8GJ/LemwN3bp0BcZ/760tXwKRGEGbLblv7n49MsLTsh1bURdvRoIm/Jnw1BrjglS2KWhNGFWS8BFhjOJL2MsZb997aS0sVO6SBBYSlkIvIFiCoXFrHQ1LsE5lQr+KKeiJaZRTpkLX1DhnSsKHTSGkWaGFoiJFU4CMitAq70Iz7AYsGgpX4oijPoqbsk8xxpm6q+WsmcOHkq6IcVi97jop27yj1CtNNl/UPa+orOnlYpGjfzhTWqdGG+u75jN/thX3PAN/0OMzcSA0s6SLxG5CYBMip1MpsQZLUZYSYCMPBlnma/sKnkvISLuHDysAqfd/ktLHkBBp4+jQnr0xb4rXNQZTgrNrDFlFKF0EDbdKC1B54b4YRWiG5dvc3QKgEHfg9D7wo31IJ+8kwcYTkoyOduPkdf1gGb67ZFFlRQdzODOV2wN778+lYNlpsDEBJ/QZ66hGmnvYkxPU2S9AvzuCTv+e9KaIhpm7Mnh6AP4huRn45Aj89k/0H9DbMO012fNbsUd191XzvoOP3ic="), -this.createVertexTemplateEntry(a+"graphics.plotChart;"+e+mxConstants.STYLE_STROKECOLOR+"=none;strokeColor2=#aaaaaa;strokeColor3=#666666;fillColor2=#99aaff,#0022ff,#008cff;",400,200,"","Plot Chart",null,null,this.getTagsForStencil("mxgraph.mockup.graphics","plotChart","mockup graphics plot chart").join(" ")),this.addEntry("mockup graphics gantt chart",function(){var a=new mxCell("",new mxGeometry(0,0,600,300),d+"graphics.rrect;rSize=0;strokeColor=#999999;fillColor=#ffffff;");a.vertex=!0;var b=new mxCell("#", -new mxGeometry(0,0,20,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+d+"graphics.rrect;rSize=0;fontColor=#666666;");b.vertex=!0;a.insert(b);b=new mxCell("Task",new mxGeometry(20,0,40,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+d+"graphics.rrect;rSize=0;fontColor=#666666;");b.vertex=!0;a.insert(b);b=new mxCell("Start",new mxGeometry(60,0,130,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+d+"graphics.rrect;rSize=0;fontColor=#666666;");b.vertex= -!0;a.insert(b);b=new mxCell("Effort",new mxGeometry(190,0,50,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+d+"graphics.rrect;rSize=0;fontColor=#666666;");b.vertex=!0;a.insert(b);b=new mxCell("20//10//2014",new mxGeometry(240,0,210,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+d+"graphics.rrect;rSize=0;fontColor=#666666;");b.vertex=!0;a.insert(b);b=new mxCell("27//10//2014",new mxGeometry(450,0,150,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+ -d+"graphics.rrect;rSize=0;fontColor=#666666;");b.vertex=!0;a.insert(b);b=new mxCell("M",new mxGeometry(240,20,30,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+d+"graphics.rrect;rSize=0;;fontColor=#666666;");b.vertex=!0;a.insert(b);b=new mxCell("T",new mxGeometry(270,20,30,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+d+"graphics.rrect;rSize=0;fontColor=#666666;");b.vertex=!0;a.insert(b);b=new mxCell("W",new mxGeometry(300,20,30,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+ -d+"graphics.rrect;rSize=0;fontColor=#666666;");b.vertex=!0;a.insert(b);b=new mxCell("T",new mxGeometry(330,20,30,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+d+"graphics.rrect;rSize=0;fontColor=#666666;");b.vertex=!0;a.insert(b);b=new mxCell("F",new mxGeometry(360,20,30,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+d+"graphics.rrect;rSize=0;fontColor=#666666;");b.vertex=!0;a.insert(b);b=new mxCell("S",new mxGeometry(390,20,30,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+ -d+"graphics.rrect;rSize=0;fontColor=#666666;");b.vertex=!0;a.insert(b);b=new mxCell("S",new mxGeometry(420,20,30,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+d+"graphics.rrect;rSize=0;fontColor=#666666;");b.vertex=!0;a.insert(b);b=new mxCell("M",new mxGeometry(450,20,30,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+d+"graphics.rrect;rSize=0;fontColor=#666666;");b.vertex=!0;a.insert(b);b=new mxCell("T",new mxGeometry(480,20,30,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+ -d+"graphics.rrect;rSize=0;fontColor=#666666;");b.vertex=!0;a.insert(b);b=new mxCell("W",new mxGeometry(510,20,30,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+d+"graphics.rrect;rSize=0;fontColor=#666666;");b.vertex=!0;a.insert(b);b=new mxCell("T",new mxGeometry(540,20,30,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+d+"graphics.rrect;rSize=0;fontColor=#666666;");b.vertex=!0;a.insert(b);b=new mxCell("F",new mxGeometry(570,20,30,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+ -d+"graphics.rrect;rSize=0;fontColor=#666666;");b.vertex=!0;a.insert(b);b=new mxCell("",new mxGeometry(0,40,240,260),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+d+"graphics.rrect;rSize=0;fontColor=#666666;");b.vertex=!0;a.insert(b);b=new mxCell("",new mxGeometry(240,40,60,260),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+d+"graphics.rrect;rSize=0;fontColor=#666666;");b.vertex=!0;a.insert(b);b=new mxCell("",new mxGeometry(300,40,60,260),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+ -d+"graphics.rrect;rSize=0;fontColor=#666666;");b.vertex=!0;a.insert(b);b=new mxCell("",new mxGeometry(360,40,60,260),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+d+"graphics.rrect;rSize=0;fontColor=#666666;");b.vertex=!0;a.insert(b);b=new mxCell("",new mxGeometry(420,40,60,260),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+d+"graphics.rrect;rSize=0;fontColor=#666666;");b.vertex=!0;a.insert(b);b=new mxCell("",new mxGeometry(480,40,60,260),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+ -d+"graphics.rrect;rSize=0;fontColor=#666666;");b.vertex=!0;a.insert(b);b=new mxCell("",new mxGeometry(540,40,60,260),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+d+"graphics.rrect;rSize=0;fontColor=#666666;");b.vertex=!0;a.insert(b);b=new mxCell("1",new mxGeometry(0,40,20,20),d+"graphics.anchor;fontColor=#666666;");b.vertex=!0;a.insert(b);b=new mxCell("Task 1",new mxGeometry(20,40,40,20),d+"graphics.anchor;fontColor=#666666;");b.vertex=!0;a.insert(b);b=new mxCell("20//10//2014 8:00 AM", -new mxGeometry(60,40,130,20),d+"graphics.anchor;fontColor=#666666;");b.vertex=!0;a.insert(b);b=new mxCell("40h",new mxGeometry(190,40,50,20),d+"graphics.anchor;fontColor=#666666;");b.vertex=!0;a.insert(b);b=new mxCell("2",new mxGeometry(0,60,20,20),d+"graphics.anchor;fontColor=#666666;");b.vertex=!0;a.insert(b);b=new mxCell("Task 2",new mxGeometry(20,60,40,20),d+"graphics.anchor;fontColor=#666666;");b.vertex=!0;a.insert(b);b=new mxCell("20//10//2014 8:00 AM",new mxGeometry(60,60,130,20),d+"graphics.anchor;fontColor=#666666;"); -b.vertex=!0;a.insert(b);b=new mxCell("40h",new mxGeometry(190,60,50,20),d+"graphics.anchor;fontColor=#666666;");b.vertex=!0;a.insert(b);b=new mxCell("3",new mxGeometry(0,80,20,20),d+"graphics.anchor;fontColor=#666666;");b.vertex=!0;a.insert(b);b=new mxCell("Task 3",new mxGeometry(20,80,40,20),d+"graphics.anchor;fontColor=#666666;");b.vertex=!0;a.insert(b);b=new mxCell("20//10//2014 8:00 AM",new mxGeometry(60,80,130,20),d+"graphics.anchor;fontColor=#666666;");b.vertex=!0;a.insert(b);b=new mxCell("40h", -new mxGeometry(190,80,50,20),d+"graphics.anchor;fontColor=#666666;");b.vertex=!0;a.insert(b);b=new mxCell("4",new mxGeometry(0,100,20,20),d+"graphics.anchor;fontColor=#666666;");b.vertex=!0;a.insert(b);b=new mxCell("Task 4",new mxGeometry(20,100,40,20),d+"graphics.anchor;fontColor=#666666;");b.vertex=!0;a.insert(b);b=new mxCell("20//10//2014 8:00 AM",new mxGeometry(60,100,130,20),d+"graphics.anchor;fontColor=#666666;");b.vertex=!0;a.insert(b);b=new mxCell("40h",new mxGeometry(190,100,50,20),d+"graphics.anchor;fontColor=#666666;"); -b.vertex=!0;a.insert(b);b=new mxCell("",new mxGeometry(250,45,130,10),d+"graphics.rrect;rSize=0;strokeColor=none;fillColor=#aaddff;");b.vertex=!0;a.insert(b);b=new mxCell("",new mxGeometry(250,65,40,10),d+"graphics.rrect;rSize=0;strokeColor=none;fillColor=#aaddff;");b.vertex=!0;a.insert(b);b=new mxCell("",new mxGeometry(280,85,100,10),d+"graphics.rrect;rSize=0;strokeColor=none;fillColor=#aaddff;");b.vertex=!0;a.insert(b);b=new mxCell("",new mxGeometry(340,105,70,10),d+"graphics.rrect;rSize=0;strokeColor=none;fillColor=#aaddff;"); -b.vertex=!0;a.insert(b);return c.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,"Gantt Chart")}),this.createVertexTemplateEntry(a+"misc.map;",250,250,"","Map",null,null,this.getTagsForStencil("mxgraph.mockup.graphics","map","mockup graphics ").join(" "))];this.addPalette("mockupGraphics","Mockup Graphics",!1,mxUtils.bind(this,function(a){for(var b=0;b<f.length;b++)a.appendChild(f[b](a))}))};Sidebar.prototype.addMockupMarkupPalette=function(){var a=mxConstants.STYLE_VERTICAL_LABEL_POSITION+ -"=bottom;shadow=0;dashed=0;align=center;html=1;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;strokeWidth=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.mockup.",d=mxConstants.STYLE_STROKECOLOR+"=#999999;",e=mxConstants.STYLE_STROKECOLOR+"=none;";this.addPaletteFunctions("mockupMarkup","Mockup Markup",!1,[this.createVertexTemplateEntry(a+"markup.curlyBrace;"+d,100,20,"","Horizontal Curly Brace",null,null,this.getTagsForStencil("mxgraph.mockup.markup","curlyBrace","horizontal").join(" ")),this.createVertexTemplateEntry(mxConstants.STYLE_LABEL_POSITION+ -"=right;"+mxConstants.STYLE_ALIGN+"=left;strokeWidth=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.mockup.markup.curlyBrace;html=1;shadow=0;dashed=0;"+d+mxConstants.STYLE_DIRECTION+"="+mxConstants.DIRECTION_NORTH+";",20,100,"","Vertical Curly Brace",null,null,this.getTagsForStencil("mxgraph.mockup.markup","curlyBrace","vertical").join(" ")),this.createVertexTemplateEntry(a+"markup.line;"+d,100,20,"","Horizontal Line",null,null,this.getTagsForStencil("mxgraph.mockup.markup","line","horizontal").join(" ")), -this.createVertexTemplateEntry(a+"markup.line;"+d+mxConstants.STYLE_DIRECTION+"="+mxConstants.DIRECTION_NORTH+";",20,100,"","Vertical Line",null,null,this.getTagsForStencil("mxgraph.mockup.markup","line","vertical").join(" ")),this.createVertexTemplateEntry(mxConstants.STYLE_SHAPE+"=mxgraph.mockup.markup.scratchOut;shadow=0;dashed=0;html=1;"+d+"strokeWidth=4;",200,100,"","Scratch Out",null,null,this.getTagsForStencil("mxgraph.mockup.markup","scratchOut","scratch out").join(" ")),this.createVertexTemplateEntry(mxConstants.STYLE_SHAPE+ -"=mxgraph.mockup.markup.redX;fillColor=#ff0000;html=1;shadow=0;"+e,200,100,"","Red X",null,null,this.getTagsForStencil("mxgraph.mockup.markup","redX","red").join(" "))])};Sidebar.prototype.addMockupMiscPalette=function(){var a=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;shadow=0;dashed=0;align=center;html=1;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;strokeWidth=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.mockup.",d=mxConstants.STYLE_STROKEWIDTH+"=1;shadow=0;dashed=0;align=center;html=1;"+mxConstants.STYLE_SHAPE+ -"=mxgraph.mockup.",e=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=top;shadow=0;dashed=0;align=center;html=1;"+mxConstants.STYLE_VERTICAL_ALIGN+"=bottom;strokeWidth=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.mockup.",b=mxConstants.STYLE_STROKECOLOR+"=#999999;",c=mxConstants.STYLE_STROKECOLOR+"=none;",f=this,g=b+mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;shadow=0;dashed=0;fillColor=#ffffff;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;strokeWidth=2;html=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.mockup.",h= -[this.createVertexTemplateEntry(a+"misc.help_icon;",32,32,"","Help Icon",null,null,this.getTagsForStencil("mxgraph.mockup.misc","help_icon","mockup ").join(" ")),this.createVertexTemplateEntry(a+"misc.playbackControls;fillColor=#ffffff;"+b+"fillColor2=#99ddff;strokeColor2=none;fillColor3=#ffffff;strokeColor3=none;",250,30,"","Playback Controls",null,null,this.getTagsForStencil("mxgraph.mockup.misc","playbackControls","mockup ").join(" ")),this.createVertexTemplateEntry(a+"misc.progressBar;fillColor=#cccccc;"+ -c+"fillColor2=#99ddff;barPos=80;",200,20,"","Progress Bar",null,null,this.getTagsForStencil("mxgraph.mockup.misc","progress bar","mockup ").join(" ")),this.createVertexTemplateEntry(a+"misc.shoppingCart;"+b,50,50,"","Shopping Cart",null,null,this.getTagsForStencil("mxgraph.mockup.misc","shopping cart","mockup ").join(" ")),this.createVertexTemplateEntry(a+"misc.rating;"+b+mxConstants.STYLE_FILLCOLOR+"=#ffff00;emptyFillColor=#ffffff;grade=4;ratingScale=5;ratingStyle=star;",225,30,"","Rating",null, -null,this.getTagsForStencil("mxgraph.mockup.misc","rating","mockup ").join(" ")),this.createVertexTemplateEntry(a+"misc.mail2;fillColor=#ffffff;"+b,100,60,"","Mail",null,null,this.getTagsForStencil("mxgraph.mockup.misc","mail","mockup ").join(" ")),this.createVertexTemplateEntry(a+"misc.volumeSlider;barPos=80;fillColor=#cccccc;"+b+"fillColor2=#ddeeff;",250,30,"","Volume Slider",null,null,this.getTagsForStencil("mxgraph.mockup.misc","volume slider","mockup ").join(" ")),this.createVertexTemplateEntry(g+ +this.createVertexTemplateEntry(a+"graphics.bubbleChart;"+e+c+"strokeColor2=none;strokeColor3=#666666;fillColor2=#008cff;fillColor3=#dddddd;",400,200,"","Bubble Chart",null,null,this.getTagsForStencil("mxgraph.mockup.graphics","bubbleChart","mockup graphics bubble chart").join(" ")),this.addDataEntry("mockup graphics gauge",100,100,"Gauge","zZXdT8IwEMD/mr6S0jqVRxnKiya8GJ/LemwN3bp0BcZ/760tXwKRGEGbLblv7n49MsLTsh1bURdvRoIm/Jnw1BrjglS2KWhNGFWS8BFhjOJL2MsZb997aS0sVO6SBBYSlkIvIFiCoXFrHQ1LsE5lQr+KKeiJaZRTpkLX1DhnSsKHTSGkWaGFoiJFU4CMitAq70Iz7AYsGgpX4oijPoqbsk8xxpm6q+WsmcOHkq6IcVi97jop27yj1CtNNl/UPa+orOnlYpGjfzhTWqdGG+u75jN/thX3PAN/0OMzcSA0s6SLxG5CYBMip1MpsQZLUZYSYCMPBlnma/sKnkvISLuHDysAqfd/ktLHkBBp4+jQnr0xb4rXNQZTgrNrDFlFKF0EDbdKC1B54b4YRWiG5dvc3QKgEHfg9D7wo31IJ+8kwcYTkoyOduPkdf1gGb67ZFFlRQdzODOV2wN778+lYNlpsDEBJ/QZ66hGmnvYkxPU2S9AvzuCTv+e9KaIhpm7Mnh6AP4huRn45Aj89k/0H9DbMO012fNbsUd191XzvoOP3ic="), +this.createVertexTemplateEntry(a+"graphics.plotChart;"+e+mxConstants.STYLE_STROKECOLOR+"=none;strokeColor2=#aaaaaa;strokeColor3=#666666;fillColor2=#99aaff,#0022ff,#008cff;",400,200,"","Plot Chart",null,null,this.getTagsForStencil("mxgraph.mockup.graphics","plotChart","mockup graphics plot chart").join(" ")),this.addEntry("mockup graphics gantt chart",function(){var a=new mxCell("",new mxGeometry(0,0,600,300),b+"graphics.rrect;rSize=0;strokeColor=#999999;fillColor=#ffffff;");a.vertex=!0;var c=new mxCell("#", +new mxGeometry(0,0,20,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+b+"graphics.rrect;rSize=0;fontColor=#666666;");c.vertex=!0;a.insert(c);c=new mxCell("Task",new mxGeometry(20,0,40,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+b+"graphics.rrect;rSize=0;fontColor=#666666;");c.vertex=!0;a.insert(c);c=new mxCell("Start",new mxGeometry(60,0,130,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+b+"graphics.rrect;rSize=0;fontColor=#666666;");c.vertex= +!0;a.insert(c);c=new mxCell("Effort",new mxGeometry(190,0,50,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+b+"graphics.rrect;rSize=0;fontColor=#666666;");c.vertex=!0;a.insert(c);c=new mxCell("20//10//2014",new mxGeometry(240,0,210,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+b+"graphics.rrect;rSize=0;fontColor=#666666;");c.vertex=!0;a.insert(c);c=new mxCell("27//10//2014",new mxGeometry(450,0,150,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+ +b+"graphics.rrect;rSize=0;fontColor=#666666;");c.vertex=!0;a.insert(c);c=new mxCell("M",new mxGeometry(240,20,30,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+b+"graphics.rrect;rSize=0;;fontColor=#666666;");c.vertex=!0;a.insert(c);c=new mxCell("T",new mxGeometry(270,20,30,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+b+"graphics.rrect;rSize=0;fontColor=#666666;");c.vertex=!0;a.insert(c);c=new mxCell("W",new mxGeometry(300,20,30,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+ +b+"graphics.rrect;rSize=0;fontColor=#666666;");c.vertex=!0;a.insert(c);c=new mxCell("T",new mxGeometry(330,20,30,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+b+"graphics.rrect;rSize=0;fontColor=#666666;");c.vertex=!0;a.insert(c);c=new mxCell("F",new mxGeometry(360,20,30,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+b+"graphics.rrect;rSize=0;fontColor=#666666;");c.vertex=!0;a.insert(c);c=new mxCell("S",new mxGeometry(390,20,30,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+ +b+"graphics.rrect;rSize=0;fontColor=#666666;");c.vertex=!0;a.insert(c);c=new mxCell("S",new mxGeometry(420,20,30,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+b+"graphics.rrect;rSize=0;fontColor=#666666;");c.vertex=!0;a.insert(c);c=new mxCell("M",new mxGeometry(450,20,30,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+b+"graphics.rrect;rSize=0;fontColor=#666666;");c.vertex=!0;a.insert(c);c=new mxCell("T",new mxGeometry(480,20,30,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+ +b+"graphics.rrect;rSize=0;fontColor=#666666;");c.vertex=!0;a.insert(c);c=new mxCell("W",new mxGeometry(510,20,30,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+b+"graphics.rrect;rSize=0;fontColor=#666666;");c.vertex=!0;a.insert(c);c=new mxCell("T",new mxGeometry(540,20,30,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+b+"graphics.rrect;rSize=0;fontColor=#666666;");c.vertex=!0;a.insert(c);c=new mxCell("F",new mxGeometry(570,20,30,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+ +b+"graphics.rrect;rSize=0;fontColor=#666666;");c.vertex=!0;a.insert(c);c=new mxCell("",new mxGeometry(0,40,240,260),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+b+"graphics.rrect;rSize=0;fontColor=#666666;");c.vertex=!0;a.insert(c);c=new mxCell("",new mxGeometry(240,40,60,260),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+b+"graphics.rrect;rSize=0;fontColor=#666666;");c.vertex=!0;a.insert(c);c=new mxCell("",new mxGeometry(300,40,60,260),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+ +b+"graphics.rrect;rSize=0;fontColor=#666666;");c.vertex=!0;a.insert(c);c=new mxCell("",new mxGeometry(360,40,60,260),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+b+"graphics.rrect;rSize=0;fontColor=#666666;");c.vertex=!0;a.insert(c);c=new mxCell("",new mxGeometry(420,40,60,260),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+b+"graphics.rrect;rSize=0;fontColor=#666666;");c.vertex=!0;a.insert(c);c=new mxCell("",new mxGeometry(480,40,60,260),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+ +b+"graphics.rrect;rSize=0;fontColor=#666666;");c.vertex=!0;a.insert(c);c=new mxCell("",new mxGeometry(540,40,60,260),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+b+"graphics.rrect;rSize=0;fontColor=#666666;");c.vertex=!0;a.insert(c);c=new mxCell("1",new mxGeometry(0,40,20,20),b+"graphics.anchor;fontColor=#666666;");c.vertex=!0;a.insert(c);c=new mxCell("Task 1",new mxGeometry(20,40,40,20),b+"graphics.anchor;fontColor=#666666;");c.vertex=!0;a.insert(c);c=new mxCell("20//10//2014 8:00 AM", +new mxGeometry(60,40,130,20),b+"graphics.anchor;fontColor=#666666;");c.vertex=!0;a.insert(c);c=new mxCell("40h",new mxGeometry(190,40,50,20),b+"graphics.anchor;fontColor=#666666;");c.vertex=!0;a.insert(c);c=new mxCell("2",new mxGeometry(0,60,20,20),b+"graphics.anchor;fontColor=#666666;");c.vertex=!0;a.insert(c);c=new mxCell("Task 2",new mxGeometry(20,60,40,20),b+"graphics.anchor;fontColor=#666666;");c.vertex=!0;a.insert(c);c=new mxCell("20//10//2014 8:00 AM",new mxGeometry(60,60,130,20),b+"graphics.anchor;fontColor=#666666;"); +c.vertex=!0;a.insert(c);c=new mxCell("40h",new mxGeometry(190,60,50,20),b+"graphics.anchor;fontColor=#666666;");c.vertex=!0;a.insert(c);c=new mxCell("3",new mxGeometry(0,80,20,20),b+"graphics.anchor;fontColor=#666666;");c.vertex=!0;a.insert(c);c=new mxCell("Task 3",new mxGeometry(20,80,40,20),b+"graphics.anchor;fontColor=#666666;");c.vertex=!0;a.insert(c);c=new mxCell("20//10//2014 8:00 AM",new mxGeometry(60,80,130,20),b+"graphics.anchor;fontColor=#666666;");c.vertex=!0;a.insert(c);c=new mxCell("40h", +new mxGeometry(190,80,50,20),b+"graphics.anchor;fontColor=#666666;");c.vertex=!0;a.insert(c);c=new mxCell("4",new mxGeometry(0,100,20,20),b+"graphics.anchor;fontColor=#666666;");c.vertex=!0;a.insert(c);c=new mxCell("Task 4",new mxGeometry(20,100,40,20),b+"graphics.anchor;fontColor=#666666;");c.vertex=!0;a.insert(c);c=new mxCell("20//10//2014 8:00 AM",new mxGeometry(60,100,130,20),b+"graphics.anchor;fontColor=#666666;");c.vertex=!0;a.insert(c);c=new mxCell("40h",new mxGeometry(190,100,50,20),b+"graphics.anchor;fontColor=#666666;"); +c.vertex=!0;a.insert(c);c=new mxCell("",new mxGeometry(250,45,130,10),b+"graphics.rrect;rSize=0;strokeColor=none;fillColor=#aaddff;");c.vertex=!0;a.insert(c);c=new mxCell("",new mxGeometry(250,65,40,10),b+"graphics.rrect;rSize=0;strokeColor=none;fillColor=#aaddff;");c.vertex=!0;a.insert(c);c=new mxCell("",new mxGeometry(280,85,100,10),b+"graphics.rrect;rSize=0;strokeColor=none;fillColor=#aaddff;");c.vertex=!0;a.insert(c);c=new mxCell("",new mxGeometry(340,105,70,10),b+"graphics.rrect;rSize=0;strokeColor=none;fillColor=#aaddff;"); +c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,"Gantt Chart")}),this.createVertexTemplateEntry(a+"misc.map;",250,250,"","Map",null,null,this.getTagsForStencil("mxgraph.mockup.graphics","map","mockup graphics ").join(" "))];this.addPalette("mockupGraphics","Mockup Graphics",!1,mxUtils.bind(this,function(a){for(var b=0;b<f.length;b++)a.appendChild(f[b](a))}))};Sidebar.prototype.addMockupMarkupPalette=function(){var a=mxConstants.STYLE_VERTICAL_LABEL_POSITION+ +"=bottom;shadow=0;dashed=0;align=center;html=1;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;strokeWidth=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.mockup.",b=mxConstants.STYLE_STROKECOLOR+"=#999999;",e=mxConstants.STYLE_STROKECOLOR+"=none;";this.addPaletteFunctions("mockupMarkup","Mockup Markup",!1,[this.createVertexTemplateEntry(a+"markup.curlyBrace;"+b,100,20,"","Horizontal Curly Brace",null,null,this.getTagsForStencil("mxgraph.mockup.markup","curlyBrace","horizontal").join(" ")),this.createVertexTemplateEntry(mxConstants.STYLE_LABEL_POSITION+ +"=right;"+mxConstants.STYLE_ALIGN+"=left;strokeWidth=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.mockup.markup.curlyBrace;html=1;shadow=0;dashed=0;"+b+mxConstants.STYLE_DIRECTION+"="+mxConstants.DIRECTION_NORTH+";",20,100,"","Vertical Curly Brace",null,null,this.getTagsForStencil("mxgraph.mockup.markup","curlyBrace","vertical").join(" ")),this.createVertexTemplateEntry(a+"markup.line;"+b,100,20,"","Horizontal Line",null,null,this.getTagsForStencil("mxgraph.mockup.markup","line","horizontal").join(" ")), +this.createVertexTemplateEntry(a+"markup.line;"+b+mxConstants.STYLE_DIRECTION+"="+mxConstants.DIRECTION_NORTH+";",20,100,"","Vertical Line",null,null,this.getTagsForStencil("mxgraph.mockup.markup","line","vertical").join(" ")),this.createVertexTemplateEntry(mxConstants.STYLE_SHAPE+"=mxgraph.mockup.markup.scratchOut;shadow=0;dashed=0;html=1;"+b+"strokeWidth=4;",200,100,"","Scratch Out",null,null,this.getTagsForStencil("mxgraph.mockup.markup","scratchOut","scratch out").join(" ")),this.createVertexTemplateEntry(mxConstants.STYLE_SHAPE+ +"=mxgraph.mockup.markup.redX;fillColor=#ff0000;html=1;shadow=0;"+e,200,100,"","Red X",null,null,this.getTagsForStencil("mxgraph.mockup.markup","redX","red").join(" "))])};Sidebar.prototype.addMockupMiscPalette=function(){var a=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;shadow=0;dashed=0;align=center;html=1;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;strokeWidth=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.mockup.",b=mxConstants.STYLE_STROKEWIDTH+"=1;shadow=0;dashed=0;align=center;html=1;"+mxConstants.STYLE_SHAPE+ +"=mxgraph.mockup.",e=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=top;shadow=0;dashed=0;align=center;html=1;"+mxConstants.STYLE_VERTICAL_ALIGN+"=bottom;strokeWidth=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.mockup.",c=mxConstants.STYLE_STROKECOLOR+"=#999999;",d=mxConstants.STYLE_STROKECOLOR+"=none;",f=this,g=c+mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;shadow=0;dashed=0;fillColor=#ffffff;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;strokeWidth=2;html=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.mockup.",h= +[this.createVertexTemplateEntry(a+"misc.help_icon;",32,32,"","Help Icon",null,null,this.getTagsForStencil("mxgraph.mockup.misc","help_icon","mockup ").join(" ")),this.createVertexTemplateEntry(a+"misc.playbackControls;fillColor=#ffffff;"+c+"fillColor2=#99ddff;strokeColor2=none;fillColor3=#ffffff;strokeColor3=none;",250,30,"","Playback Controls",null,null,this.getTagsForStencil("mxgraph.mockup.misc","playbackControls","mockup ").join(" ")),this.createVertexTemplateEntry(a+"misc.progressBar;fillColor=#cccccc;"+ +d+"fillColor2=#99ddff;barPos=80;",200,20,"","Progress Bar",null,null,this.getTagsForStencil("mxgraph.mockup.misc","progress bar","mockup ").join(" ")),this.createVertexTemplateEntry(a+"misc.shoppingCart;"+c,50,50,"","Shopping Cart",null,null,this.getTagsForStencil("mxgraph.mockup.misc","shopping cart","mockup ").join(" ")),this.createVertexTemplateEntry(a+"misc.rating;"+c+mxConstants.STYLE_FILLCOLOR+"=#ffff00;emptyFillColor=#ffffff;grade=4;ratingScale=5;ratingStyle=star;",225,30,"","Rating",null, +null,this.getTagsForStencil("mxgraph.mockup.misc","rating","mockup ").join(" ")),this.createVertexTemplateEntry(a+"misc.mail2;fillColor=#ffffff;"+c,100,60,"","Mail",null,null,this.getTagsForStencil("mxgraph.mockup.misc","mail","mockup ").join(" ")),this.createVertexTemplateEntry(a+"misc.volumeSlider;barPos=80;fillColor=#cccccc;"+c+"fillColor2=#ddeeff;",250,30,"","Volume Slider",null,null,this.getTagsForStencil("mxgraph.mockup.misc","volume slider","mockup ").join(" ")),this.createVertexTemplateEntry(g+ "misc.editIcon;",50,50,"","Edit Icon",null,null,this.getTagsForStencil("mxgraph.mockup.misc","editIcon","mockup edit icon").join(" ")),this.createVertexTemplateEntry(g+"misc.printIcon;",50,50,"","Print Icon",null,null,this.getTagsForStencil("mxgraph.mockup.misc","printIcon","mockup print icon").join(" ")),this.createVertexTemplateEntry(g+"misc.shareIcon;",50,50,"","Share Icon",null,null,this.getTagsForStencil("mxgraph.mockup.misc","shareIcon","mockup share icon").join(" ")),this.createVertexTemplateEntry(g+ "misc.trashcanIcon;",50,50,"","Trashcan Icon",null,null,this.getTagsForStencil("mxgraph.mockup.misc","trashcanIcon","mockup trashcan icon").join(" ")),this.createVertexTemplateEntry(g+"misc.copyrightIcon;",25,25,"","Copyright",null,null,this.getTagsForStencil("mxgraph.mockup.misc","copyrightIcon","mockup copyright icon").join(" ")),this.createVertexTemplateEntry(g+"misc.registeredIcon;",25,25,"","Registered",null,null,this.getTagsForStencil("mxgraph.mockup.misc","registeredIcon","mockup registered icon").join(" ")), -this.createVertexTemplateEntry(g+"misc.volumeIcon;",25,25,"","Volume",null,null,this.getTagsForStencil("mxgraph.mockup.misc","volumeIcon","mockup volume icon").join(" ")),this.createVertexTemplateEntry(d+"misc.ruler2;dx=100;rulerOrient=down;unitSize=10;fillColor=#ffffff;fontColor=#999999;spacingLeft=96;align=left;verticalAlign=middle;spacingBottom=10;spacingTop=0;spacingRight=0;spacing=0;"+b,350,30,"1","Horizontal Ruler",null,null,this.getTagsForStencil("mxgraph.mockup.misc","ruler","mockup horizontal").join(" ")), -this.createVertexTemplateEntry(d+"misc.ruler2;dx=100;rulerOrient=up;unitSize=10;fillColor=#ffffff;fontColor=#999999;spacingLeft=96;align=left;verticalAlign=middle;spacingBottom=0;spacingTop=10;spacingRight=0;spacing=0;"+b,350,30,"1","Horizontal Ruler",null,null,this.getTagsForStencil("mxgraph.mockup.misc","ruler","mockup horizontal").join(" ")),this.createVertexTemplateEntry(d+"misc.ruler2;dx=100;rulerOrient=down;unitSize=10;fillColor=#ffffff;fontColor=#999999;spacingLeft=96;align=left;verticalAlign=middle;spacingBottom=10;spacingTop=0;spacingRight=0;rotation=-90;spacing=0;"+ -b,350,30,"1","Vertical Ruler",null,null,this.getTagsForStencil("mxgraph.mockup.misc","ruler","mockup horizontal").join(" ")),this.createVertexTemplateEntry(d+"misc.ruler2;dx=100;rulerOrient=up;unitSize=10;fillColor=#ffffff;fontColor=#999999;spacingLeft=96;align=left;verticalAlign=middle;spacingBottom=0;spacingTop=10;spacingRight=0;rotation=-90;spacing=0;"+b,350,30,"1","Vertical Ruler",null,null,this.getTagsForStencil("mxgraph.mockup.misc","ruler","mockup horizontal").join(" ")),this.addEntry("mockup revision table", -function(){var a=new mxCell("",new mxGeometry(0,0,400,75),d+"misc.rrect;rSize=0;strokeColor=#666666;fillColor=#ffffff;");a.vertex=!0;var b=new mxCell("REVISION HISTORY",new mxGeometry(0,0,400,25),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+d+"misc.rrect;rSize=0;fontSize=17;fontColor=#999999;");b.vertex=!0;a.insert(b);b=new mxCell("REV",new mxGeometry(0,25,50,25),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+d+"misc.rrect;rSize=0;fontSize=17;fontColor=#999999;"); -b.vertex=!0;a.insert(b);b=new mxCell("DATE",new mxGeometry(50,25,150,25),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+d+"misc.rrect;rSize=0;fontSize=17;fontColor=#999999;");b.vertex=!0;a.insert(b);b=new mxCell("DESCRIPTION",new mxGeometry(200,25,200,25),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+d+"misc.rrect;rSize=0;fontSize=17;fontColor=#999999;");b.vertex=!0;a.insert(b);b=new mxCell("A",new mxGeometry(0,50,50,25),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+ -d+"misc.rrect;rSize=0;fontSize=17;fontColor=#999999;");b.vertex=!0;a.insert(b);b=new mxCell("10/23/2014",new mxGeometry(50,50,150,25),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+d+"misc.rrect;rSize=0;fontSize=17;fontColor=#999999;");b.vertex=!0;a.insert(b);b=new mxCell("Design modified",new mxGeometry(200,50,200,25),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+d+"misc.rrect;rSize=0;fontSize=17;fontColor=#999999;");b.vertex=!0;a.insert(b);return f.createVertexTemplateFromCells([a], +this.createVertexTemplateEntry(g+"misc.volumeIcon;",25,25,"","Volume",null,null,this.getTagsForStencil("mxgraph.mockup.misc","volumeIcon","mockup volume icon").join(" ")),this.createVertexTemplateEntry(b+"misc.ruler2;dx=100;rulerOrient=down;unitSize=10;fillColor=#ffffff;fontColor=#999999;spacingLeft=96;align=left;verticalAlign=middle;spacingBottom=10;spacingTop=0;spacingRight=0;spacing=0;"+c,350,30,"1","Horizontal Ruler",null,null,this.getTagsForStencil("mxgraph.mockup.misc","ruler","mockup horizontal").join(" ")), +this.createVertexTemplateEntry(b+"misc.ruler2;dx=100;rulerOrient=up;unitSize=10;fillColor=#ffffff;fontColor=#999999;spacingLeft=96;align=left;verticalAlign=middle;spacingBottom=0;spacingTop=10;spacingRight=0;spacing=0;"+c,350,30,"1","Horizontal Ruler",null,null,this.getTagsForStencil("mxgraph.mockup.misc","ruler","mockup horizontal").join(" ")),this.createVertexTemplateEntry(b+"misc.ruler2;dx=100;rulerOrient=down;unitSize=10;fillColor=#ffffff;fontColor=#999999;spacingLeft=96;align=left;verticalAlign=middle;spacingBottom=10;spacingTop=0;spacingRight=0;rotation=-90;spacing=0;"+ +c,350,30,"1","Vertical Ruler",null,null,this.getTagsForStencil("mxgraph.mockup.misc","ruler","mockup horizontal").join(" ")),this.createVertexTemplateEntry(b+"misc.ruler2;dx=100;rulerOrient=up;unitSize=10;fillColor=#ffffff;fontColor=#999999;spacingLeft=96;align=left;verticalAlign=middle;spacingBottom=0;spacingTop=10;spacingRight=0;rotation=-90;spacing=0;"+c,350,30,"1","Vertical Ruler",null,null,this.getTagsForStencil("mxgraph.mockup.misc","ruler","mockup horizontal").join(" ")),this.addEntry("mockup revision table", +function(){var a=new mxCell("",new mxGeometry(0,0,400,75),b+"misc.rrect;rSize=0;strokeColor=#666666;fillColor=#ffffff;");a.vertex=!0;var c=new mxCell("REVISION HISTORY",new mxGeometry(0,0,400,25),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+b+"misc.rrect;rSize=0;fontSize=17;fontColor=#999999;");c.vertex=!0;a.insert(c);c=new mxCell("REV",new mxGeometry(0,25,50,25),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+b+"misc.rrect;rSize=0;fontSize=17;fontColor=#999999;"); +c.vertex=!0;a.insert(c);c=new mxCell("DATE",new mxGeometry(50,25,150,25),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+b+"misc.rrect;rSize=0;fontSize=17;fontColor=#999999;");c.vertex=!0;a.insert(c);c=new mxCell("DESCRIPTION",new mxGeometry(200,25,200,25),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+b+"misc.rrect;rSize=0;fontSize=17;fontColor=#999999;");c.vertex=!0;a.insert(c);c=new mxCell("A",new mxGeometry(0,50,50,25),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+ +b+"misc.rrect;rSize=0;fontSize=17;fontColor=#999999;");c.vertex=!0;a.insert(c);c=new mxCell("10/23/2014",new mxGeometry(50,50,150,25),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+b+"misc.rrect;rSize=0;fontSize=17;fontColor=#999999;");c.vertex=!0;a.insert(c);c=new mxCell("Design modified",new mxGeometry(200,50,200,25),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+b+"misc.rrect;rSize=0;fontSize=17;fontColor=#999999;");c.vertex=!0;a.insert(c);return f.createVertexTemplateFromCells([a], a.geometry.width,a.geometry.height,"Revision Table")}),this.addDataEntry("mockup status bar",500,30,"Status Bar","7VfRTsIwFP2aPUq6liF7FZUXfcLE57pdtsZuXdoi4Nd713UCDnRETNC4hKT33N2195zTdQRsUqymmlf5vUpBBuwmYBOtlG1GxWoCUgaUiDRg1wGlBH8BvT2QDV2WVFxDafsU0KbghcsFNEgDGLuWHjBWq2d4FKnNEQgDdmVynqolBgSDlJscUh9wKbISxwlODxqB3BZyU1XVjyxWWd3uoFDJ86IaFMIkA60hwfVe6Zl4Bf+sZt6Jkkq7hbDYXZiZCym38Lm7EPe9gLawOsiHgzwZU1AFWL3GW5a+P8xGpOGM5CCy3Jcxj3HTxNl76YZdHHiC95PNOmTPLLcLgxiu2J4F81GH+VKVUJOuSuvvCSMf9xAnTQGcOO0CJczr+UzFE1Fmdy5ys/ZSj+5XzxdETcF6J9pSNoyjrrL0BMoOO8o+OEHJeWynXy0qJV/Kum/DnkLW6JCs7F/W78rKQvKVrOEP7dbReRx6vEzymvpTsDmMdzdJS913aLrsQZNvDwtFZeCDpbwbOwc5IePE+UyDEa/8SbZH/hZxvTgZfcrJBd112EXruC2P0R96c4z/oMVGp7dY3N9iUhxppl4tj49yUPcdtc8/4fH+wXDzze9yO38J3gA="), this.createVertexTemplateEntry(e+"misc.pin;fillColor2=#00dd00;fillColor3=#004400;strokeColor=#006600;",10,25,"","Pin",null,null,this.getTagsForStencil("mxgraph.mockup.misc","pin","mockup ").join(" ")),this.createVertexTemplateEntry(e+"misc.pin;fillColor2=#dd0000;fillColor3=#440000;strokeColor=#660000;",10,25,"","Pin",null,null,this.getTagsForStencil("mxgraph.mockup.misc","pin","mockup ").join(" ")),this.createVertexTemplateEntry(e+"misc.pin;fillColor2=#ccccff;fillColor3=#0000ff;strokeColor=#000066;", 10,25,"","Pin",null,null,this.getTagsForStencil("mxgraph.mockup.misc","pin","mockup ").join(" ")),this.createVertexTemplateEntry(e+"misc.pin;fillColor2=#ffff00;fillColor3=#888800;strokeColor=#999900;",10,25,"","Pin",null,null,this.getTagsForStencil("mxgraph.mockup.misc","pin","mockup ").join(" ")),this.createVertexTemplateEntry(e+"misc.pin;fillColor2=#ffa500;fillColor3=#885000;strokeColor=#997000;",10,25,"","Pin",null,null,this.getTagsForStencil("mxgraph.mockup.misc","pin","mockup ").join(" "))]; -this.addPalette("mockupMisc","Mockup Misc",!1,mxUtils.bind(this,function(a){for(var b=0;b<h.length;b++)a.appendChild(h[b](a))}))};Sidebar.prototype.addMockupNavigationPalette=function(){var a=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;shadow=0;dashed=0;align=center;html=1;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;strokeWidth=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.mockup.",d=mxConstants.STYLE_STROKEWIDTH+"=1;shadow=0;dashed=0;align=center;html=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.mockup.",e= -mxConstants.STYLE_STROKECOLOR+"=#999999;",b=[this.addDataEntry("mockup navigation breadcrumb",300,30,"Breadcrumb","7VaxboMwEP0ar8jYlGQObbK0U4fOFhhsxWBknIT063uAC40CUoeAGGIJyXfnO87v+VlGNMrrg2Gl+NAJV4i+IRoZrW03y+uIK4UIlgmir4gQDB8i+4mo30ZxyQwv7H8SSJdwZurEO887u3IDLleqslflIpU1+si/ZGIFOHxEd5Vgib6AgcFIWCV44gymZFbAPIY+oBzdCZurIatsSuZ11uzby3V8PJVewc4yY1bqwmNFLHSTlerCfsrvZrW/cXakVRODjmjYjt91rtPmF25X3FheTyLTuhwsB65zbs0VllzcBiEaduBhwWUmXBZ1PlZ1dtZnDjDDxCE9jjq9Qx2RMLN946sBnQT3oLN2PBj0+hbwPxyQmTgIJk8+WRkJi518l7C9J2EuIbw8hTDOgR8sp4RwUgl0ZSwsrQR/5D6aSwqbpxTGSejP/QJS2E5KIVgZC2NSwHgbp+lMLIxcSA+SApjDg7eN3byHfwA="), -this.createVertexTemplateEntry(d+"navigation.stepBar;strokeColor=#c4c4c4;textColor=#666666;textColor2=#008cff;mainText=,,+,;textSize=17;fillColor=#666666;overflow=fill;fontSize=17;fontColor=#666666;",300,50,'<table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%" style="font-size:1em;"><tr height="0%"><td width="25%">Layer 1</td><td width="25%">Layer 2</td><td width="25%" style="color:#008cff;">Layer 3</td><td width="25%">Layer 4</td></tr><tr height="100%"><td/></tr></table>', -"Step Bar",null,null,this.getTagsForStencil("mxgraph.mockup.navigation","stepBar","mockup navigation ").join(" ")),this.createVertexTemplateEntry(d+"navigation.stepBar;strokeColor=#c4c4c4;textColor=#666666;textColor2=#008cff;mainText=Layer 1,Layer 2,+Layer 3,Layer 4;textSize=17;fillColor=#666666;overflow=fill;fontSize=17;fontColor=#666666;",300,50,"","Step Bar",null,null,this.getTagsForStencil("mxgraph.mockup.navigation","stepBar","mockup navigation ").join(" ")),this.createVertexTemplateEntry(a+ +this.addPalette("mockupMisc","Mockup Misc",!1,mxUtils.bind(this,function(a){for(var b=0;b<h.length;b++)a.appendChild(h[b](a))}))};Sidebar.prototype.addMockupNavigationPalette=function(){var a=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;shadow=0;dashed=0;align=center;html=1;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;strokeWidth=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.mockup.",b=mxConstants.STYLE_STROKEWIDTH+"=1;shadow=0;dashed=0;align=center;html=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.mockup.",e= +mxConstants.STYLE_STROKECOLOR+"=#999999;",c=[this.addDataEntry("mockup navigation breadcrumb",300,30,"Breadcrumb","7VaxboMwEP0ar8jYlGQObbK0U4fOFhhsxWBknIT063uAC40CUoeAGGIJyXfnO87v+VlGNMrrg2Gl+NAJV4i+IRoZrW03y+uIK4UIlgmir4gQDB8i+4mo30ZxyQwv7H8SSJdwZurEO887u3IDLleqslflIpU1+si/ZGIFOHxEd5Vgib6AgcFIWCV44gymZFbAPIY+oBzdCZurIatsSuZ11uzby3V8PJVewc4yY1bqwmNFLHSTlerCfsrvZrW/cXakVRODjmjYjt91rtPmF25X3FheTyLTuhwsB65zbs0VllzcBiEaduBhwWUmXBZ1PlZ1dtZnDjDDxCE9jjq9Qx2RMLN946sBnQT3oLN2PBj0+hbwPxyQmTgIJk8+WRkJi518l7C9J2EuIbw8hTDOgR8sp4RwUgl0ZSwsrQR/5D6aSwqbpxTGSejP/QJS2E5KIVgZC2NSwHgbp+lMLIxcSA+SApjDg7eN3byHfwA="), +this.createVertexTemplateEntry(b+"navigation.stepBar;strokeColor=#c4c4c4;textColor=#666666;textColor2=#008cff;mainText=,,+,;textSize=17;fillColor=#666666;overflow=fill;fontSize=17;fontColor=#666666;",300,50,'<table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%" style="font-size:1em;"><tr height="0%"><td width="25%">Layer 1</td><td width="25%">Layer 2</td><td width="25%" style="color:#008cff;">Layer 3</td><td width="25%">Layer 4</td></tr><tr height="100%"><td/></tr></table>', +"Step Bar",null,null,this.getTagsForStencil("mxgraph.mockup.navigation","stepBar","mockup navigation ").join(" ")),this.createVertexTemplateEntry(b+"navigation.stepBar;strokeColor=#c4c4c4;textColor=#666666;textColor2=#008cff;mainText=Layer 1,Layer 2,+Layer 3,Layer 4;textSize=17;fillColor=#666666;overflow=fill;fontSize=17;fontColor=#666666;",300,50,"","Step Bar",null,null,this.getTagsForStencil("mxgraph.mockup.navigation","stepBar","mockup navigation ").join(" ")),this.createVertexTemplateEntry(a+ "navigation.coverFlow;strokeColor=#999999;fillColor=#ffffff;",400,200,"","Cover Flow",null,null,this.getTagsForStencil("mxgraph.mockup.navigation","coverFlow","mockup navigation ").join(" ")),this.createVertexTemplateEntry(a+"navigation.scrollBar;fillColor=#ffffff;"+e+"barPos=20;fillColor2=#99ddff;strokeColor2=none;",200,20,"","Horizontal Scroll Bar",null,null,this.getTagsForStencil("mxgraph.mockup.navigation","scrollBar","mockup navigation ").join(" ")),this.createVertexTemplateEntry(a+"navigation.scrollBar;fillColor=#ffffff;"+ -e+"barPos=20;fillColor2=#99ddff;strokeColor2=none;direction=north;",20,200,"","Vertical Scroll Bar",null,null,this.getTagsForStencil("mxgraph.mockup.navigation","scrollBar","mockup navigation ").join(" ")),this.createVertexTemplateEntry(d+"navigation.pagination;linkText=;fontSize=17;fontColor=#0000ff;fontStyle=4;",350,30,"<< Prev 1 2 3 4 5 6 7 8 9 10 Next >>","Pagination",null,null,this.getTagsForStencil("mxgraph.mockup.navigation","pagination","mockup navigation ").join(" ")),this.createVertexTemplateEntry(a+ +e+"barPos=20;fillColor2=#99ddff;strokeColor2=none;direction=north;",20,200,"","Vertical Scroll Bar",null,null,this.getTagsForStencil("mxgraph.mockup.navigation","scrollBar","mockup navigation ").join(" ")),this.createVertexTemplateEntry(b+"navigation.pagination;linkText=;fontSize=17;fontColor=#0000ff;fontStyle=4;",350,30,"<< Prev 1 2 3 4 5 6 7 8 9 10 Next >>","Pagination",null,null,this.getTagsForStencil("mxgraph.mockup.navigation","pagination","mockup navigation ").join(" ")),this.createVertexTemplateEntry(a+ "navigation.pageControl;fillColor=#999999;strokeColor=#ddeeff;",100,30,"","Page Control",null,null,this.getTagsForStencil("mxgraph.mockup.navigation","pageControl","mockup navigation ").join(" ")),this.createVertexTemplateEntry(a+"navigation.mapNavigator;fillColor=#ffffff;fillColor2=#99ddff;strokeColor2=none;strokeColor3=#ffffff;"+e,60,100,"","Map Navigator",null,null,this.getTagsForStencil("mxgraph.mockup.navigation","mapNavigator","mockup navigation ").join(" ")),this.createVertexTemplateEntry(a+ -"misc.loading_circle_1;pointerEvents=1",90,90,"","Wheel Throbber 1",null,null,this.getTagsForStencil("mxgraph.mockup.navigation","loading_circle_1","mockup navigation ").join(" ")),this.createVertexTemplateEntry(a+"misc.loading_circle_2;pointerEvents=1",90,90,"","Wheel Throbber 2",null,null,this.getTagsForStencil("mxgraph.mockup.navigation","loading_circle_2","mockup navigation ").join(" "))];this.addPalette("mockupNavigation","Mockup Navigation",!1,mxUtils.bind(this,function(a){for(var c=0;c<b.length;c++)a.appendChild(b[c](a))}))}; -Sidebar.prototype.addMockupTextPalette=function(){var a=mxConstants.STYLE_STROKEWIDTH+"=1;shadow=0;dashed=0;align=center;html=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.mockup.",d=mxConstants.STYLE_STROKECOLOR+"=#666666;",e=mxConstants.STYLE_STROKECOLOR+"=none;",b=this,c=[this.createVertexTemplateEntry("shape=rectangle;strokeColor=none;fillColor=none;linkText=;fontSize=17;fontColor=#0000ff;fontStyle=4;html=1;align=center;",150,30,"Link","Link",null,null,this.getTagsForStencil("mxgraph.mockup.text","link", -"mockup text ").join(" ")),this.addEntry("mockup text horizontal button bar",function(){var c=new mxCell("",new mxGeometry(0,0,500,25),a+"text.rrect;rSize=0;fillColor=#ffffff;strokeColor=#666666;");c.vertex=!0;var d=new mxCell("Button 2",new mxGeometry(125,0,125,25),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+a+"text.rrect;rSize=0;fontSize=17;fontColor=#0000ff;");d.vertex=!0;c.insert(d);d=new mxCell("Button 3",new mxGeometry(250,0,125,25),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+ -a+"text.rrect;rSize=0;fontSize=17;fontColor=#0000ff;");d.vertex=!0;c.insert(d);d=new mxCell("Button 4",new mxGeometry(375,0,125,25),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+a+"text.rrect;rSize=0;fontSize=17;fontColor=#0000ff;");d.vertex=!0;c.insert(d);d=new mxCell("Button 1",new mxGeometry(0,0,125,25),a+"text.rrect;rSize=0;fontSize=17;fontColor=#ffffff;fillColor=#008cff;strokeColor=#008cff;");d.vertex=!0;c.insert(d);return b.createVertexTemplateFromCells([c],c.geometry.width, -c.geometry.height,"Horizontal Button Bar")}),this.createVertexTemplateEntry(a+"text.callout;linkText=;textSize=17;textColor=#666666;callDir=NW;callStyle=line;fontSize=17;fontColor=#666666;align=left;verticalAlign=top;"+d,200,100,"Callout","Callout",null,null,this.getTagsForStencil("mxgraph.mockup.text","callout","mockup text ").join(" ")),this.createVertexTemplateEntry(a+"text.callout;linkText=;textSize=17;textColor=#666666;callDir=NE;callStyle=line;fontSize=17;fontColor=#666666;align=right;verticalAlign=top;"+ -d,200,100,"Callout","Callout",null,null,this.getTagsForStencil("mxgraph.mockup.text","callout","mockup text ").join(" ")),this.createVertexTemplateEntry(a+"text.callout;linkText=;textSize=17;textColor=#666666;callDir=SW;callStyle=line;fontSize=17;fontColor=#666666;align=left;verticalAlign=bottom;"+d,200,100,"Callout","Callout",null,null,this.getTagsForStencil("mxgraph.mockup.text","callout","mockup text ").join(" ")),this.createVertexTemplateEntry(a+"text.callout;linkText=;textSize=17;textColor=#666666;callDir=SE;callStyle=line;fontSize=17;fontColor=#666666;align=right;verticalAlign=bottom;"+ -d,200,100,"Callout","Callout",null,null,this.getTagsForStencil("mxgraph.mockup.text","callout","mockup text ").join(" ")),this.createVertexTemplateEntry(a+"text.stickyNote;fontColor=#666666;mainText=;fontSize=17;whiteSpace=wrap;",200,200,"Note Line 1\nNote Line 2\nNote Line 3","Sticky Note",null,null,this.getTagsForStencil("mxgraph.mockup.text","stickyNote","mockup text ").join(" ")),this.createVertexTemplateEntry(a+"text.bulletedList;textColor=#666666;mainText=,,,,;textSize=17;bulletStyle=none;"+ -e+mxConstants.STYLE_FILLCOLOR+"=none;align=left;verticalAlign=top;fontSize=17;fontColor=#666666;",150,135,"-Line 1\n-Line 2\n-Line 3\n-Line 4","Bulleted List",null,null,this.getTagsForStencil("mxgraph.mockup.text","bulletedList","mockup text ").join(" ")),this.createVertexTemplateEntry(a+"text.textBox;fillColor=#ffffff;fontColor=#666666;align=left;fontSize=17;spacingLeft=4;spacingTop=-3;"+d+"mainText=",150,30,"Line 1","Text Box",null,null,this.getTagsForStencil("mxgraph.mockup.text","textBox","mockup text ").join(" ")), -this.createVertexTemplateEntry(a+"text.captcha;fillColor=#ffffff;fontColor=#666666;fontSize=25;"+d+"mainText=",150,50,"fG2yQ23","Captcha",null,null,this.getTagsForStencil("mxgraph.mockup.text","captcha","mockup text ").join(" ")),this.createVertexTemplateEntry(a+"text.alphanumeric;linkText=;html=1;fontStyle=4;fontSize=17;fontColor=#0000ff;",450,50,"0-9 A B C D E F G H I J K L M N O P Q R S T U V X Y Z","Alphanumeric",null,null,this.getTagsForStencil("mxgraph.mockup.text","alphanumeric","mockup text ").join(" ")), +"misc.loading_circle_1;pointerEvents=1",90,90,"","Wheel Throbber 1",null,null,this.getTagsForStencil("mxgraph.mockup.navigation","loading_circle_1","mockup navigation ").join(" ")),this.createVertexTemplateEntry(a+"misc.loading_circle_2;pointerEvents=1",90,90,"","Wheel Throbber 2",null,null,this.getTagsForStencil("mxgraph.mockup.navigation","loading_circle_2","mockup navigation ").join(" "))];this.addPalette("mockupNavigation","Mockup Navigation",!1,mxUtils.bind(this,function(a){for(var b=0;b<c.length;b++)a.appendChild(c[b](a))}))}; +Sidebar.prototype.addMockupTextPalette=function(){var a=mxConstants.STYLE_STROKEWIDTH+"=1;shadow=0;dashed=0;align=center;html=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.mockup.",b=mxConstants.STYLE_STROKECOLOR+"=#666666;",e=mxConstants.STYLE_STROKECOLOR+"=none;",c=this,d=[this.createVertexTemplateEntry("shape=rectangle;strokeColor=none;fillColor=none;linkText=;fontSize=17;fontColor=#0000ff;fontStyle=4;html=1;align=center;",150,30,"Link","Link",null,null,this.getTagsForStencil("mxgraph.mockup.text","link", +"mockup text ").join(" ")),this.addEntry("mockup text horizontal button bar",function(){var b=new mxCell("",new mxGeometry(0,0,500,25),a+"text.rrect;rSize=0;fillColor=#ffffff;strokeColor=#666666;");b.vertex=!0;var d=new mxCell("Button 2",new mxGeometry(125,0,125,25),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+a+"text.rrect;rSize=0;fontSize=17;fontColor=#0000ff;");d.vertex=!0;b.insert(d);d=new mxCell("Button 3",new mxGeometry(250,0,125,25),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+ +a+"text.rrect;rSize=0;fontSize=17;fontColor=#0000ff;");d.vertex=!0;b.insert(d);d=new mxCell("Button 4",new mxGeometry(375,0,125,25),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;"+a+"text.rrect;rSize=0;fontSize=17;fontColor=#0000ff;");d.vertex=!0;b.insert(d);d=new mxCell("Button 1",new mxGeometry(0,0,125,25),a+"text.rrect;rSize=0;fontSize=17;fontColor=#ffffff;fillColor=#008cff;strokeColor=#008cff;");d.vertex=!0;b.insert(d);return c.createVertexTemplateFromCells([b],b.geometry.width, +b.geometry.height,"Horizontal Button Bar")}),this.createVertexTemplateEntry(a+"text.callout;linkText=;textSize=17;textColor=#666666;callDir=NW;callStyle=line;fontSize=17;fontColor=#666666;align=left;verticalAlign=top;"+b,200,100,"Callout","Callout",null,null,this.getTagsForStencil("mxgraph.mockup.text","callout","mockup text ").join(" ")),this.createVertexTemplateEntry(a+"text.callout;linkText=;textSize=17;textColor=#666666;callDir=NE;callStyle=line;fontSize=17;fontColor=#666666;align=right;verticalAlign=top;"+ +b,200,100,"Callout","Callout",null,null,this.getTagsForStencil("mxgraph.mockup.text","callout","mockup text ").join(" ")),this.createVertexTemplateEntry(a+"text.callout;linkText=;textSize=17;textColor=#666666;callDir=SW;callStyle=line;fontSize=17;fontColor=#666666;align=left;verticalAlign=bottom;"+b,200,100,"Callout","Callout",null,null,this.getTagsForStencil("mxgraph.mockup.text","callout","mockup text ").join(" ")),this.createVertexTemplateEntry(a+"text.callout;linkText=;textSize=17;textColor=#666666;callDir=SE;callStyle=line;fontSize=17;fontColor=#666666;align=right;verticalAlign=bottom;"+ +b,200,100,"Callout","Callout",null,null,this.getTagsForStencil("mxgraph.mockup.text","callout","mockup text ").join(" ")),this.createVertexTemplateEntry(a+"text.stickyNote;fontColor=#666666;mainText=;fontSize=17;whiteSpace=wrap;",200,200,"Note Line 1\nNote Line 2\nNote Line 3","Sticky Note",null,null,this.getTagsForStencil("mxgraph.mockup.text","stickyNote","mockup text ").join(" ")),this.createVertexTemplateEntry(a+"text.bulletedList;textColor=#666666;mainText=,,,,;textSize=17;bulletStyle=none;"+ +e+mxConstants.STYLE_FILLCOLOR+"=none;align=left;verticalAlign=top;fontSize=17;fontColor=#666666;",150,135,"-Line 1\n-Line 2\n-Line 3\n-Line 4","Bulleted List",null,null,this.getTagsForStencil("mxgraph.mockup.text","bulletedList","mockup text ").join(" ")),this.createVertexTemplateEntry(a+"text.textBox;fillColor=#ffffff;fontColor=#666666;align=left;fontSize=17;spacingLeft=4;spacingTop=-3;"+b+"mainText=",150,30,"Line 1","Text Box",null,null,this.getTagsForStencil("mxgraph.mockup.text","textBox","mockup text ").join(" ")), +this.createVertexTemplateEntry(a+"text.captcha;fillColor=#ffffff;fontColor=#666666;fontSize=25;"+b+"mainText=",150,50,"fG2yQ23","Captcha",null,null,this.getTagsForStencil("mxgraph.mockup.text","captcha","mockup text ").join(" ")),this.createVertexTemplateEntry(a+"text.alphanumeric;linkText=;html=1;fontStyle=4;fontSize=17;fontColor=#0000ff;",450,50,"0-9 A B C D E F G H I J K L M N O P Q R S T U V X Y Z","Alphanumeric",null,null,this.getTagsForStencil("mxgraph.mockup.text","alphanumeric","mockup text ").join(" ")), this.createVertexTemplateEntry("text;spacingTop=-5;fillColor=#ffffff;whiteSpace=wrap;html=1;align=left;fontSize=12;fontFamily=Helvetica;fillColor=none;strokeColor=none;",250,470,"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?", "Paragraph of Text",null,null,this.getTagsForStencil("mxgraph.mockup.text","peragraph of text","mockup text ").join(" ")),this.addEntry("mockup text table",function(){var a=new mxCell('<table cellpadding="4" cellspacing="0" border="1" style="font-size:1em;width:100%;height:100%;"><tr><th>Header 1</th><th>Header 2</th></tr><tr><td>row 1, cell 1</td><td>row 1, cell 2</td></tr><tr><td>row 2, cell 1</td><td>row 2, cell 2</td></tr></table> ',new mxGeometry(0,0,180,80),"verticalAlign=top;align=left;overflow=fill;fillColor=#ffffff;fontSize=12;fontFamily=Helvetica;html=1"); -a.vertex=!0;return b.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,"Table")})];this.addPalette("mockupText","Mockup Text",!1,mxUtils.bind(this,function(a){for(var b=0;b<c.length;b++)a.appendChild(c[b](a))}))}})();(function(){Sidebar.prototype.addMSCAEPalette=function(){this.addMSCAECompaniesPalette();this.addMSCAEEnterpriseFlatPalette();this.addMSCAEGeneralPalette();this.addMSCAECloudPalette();this.addMSCAEEnterprisePalette();this.addMSCAEGeneralSymbolsPalette();this.addMSCAEIntunePalette();this.addMSCAEOMSPalette();this.addMSCAEOpsManagerPalette();this.addMSCAEOtherPalette();this.addMSCAESystemCenterPalette();this.addMSCAEVMPalette();this.addMSCAEDeprecatedPalette();this.addMSCAECloudColorPalette();this.addMSCAEDeprecatedColorPalette()}; -Sidebar.prototype.addMSCAECompaniesPalette=function(){var a=[this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Cache_Redis_Product.svg;",50,42,"","Cache Redis Product Icon",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","azure cache redis product icon","ms microsoft cloud enterprise company companies").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Databricks.svg;", -50,48,"","Databricks",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","azure databricks","ms microsoft cloud enterprise company companies").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/HDInsight.svg;",50,48,"","HDInsight",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","azure hdinsight","ms microsoft cloud enterprise company companies").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.hockeyapp;fillColor=#0079D6;pointerEvents=1;", -50,38,"","HockeyApp",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","azure hockey app hockeyapp","ms microsoft cloud enterprise company companies").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/OpenShift.svg;",50,46,"","OpenShift",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","azure open shift openshift","ms microsoft cloud enterprise company companies").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Cloud_Cycle.svg;", -50,46,"","Cloud Cycle",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","cloud cycle","ms microsoft cloud enterprise company companies").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Kubernetes.svg;",50,48,"","Kubernetes",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","kubernetes","ms microsoft cloud enterprise company companies").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/PluralSight_mono.svg;", -50,50,"","PluralSight Mono",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","pluralsight mono","ms microsoft cloud enterprise company companies").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/DC_OS.svg;",40,50,"","DC OS",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","dc os","ms microsoft cloud enterprise company companies").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Docker.svg;", -50,41,"","Docker",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","docker","ms microsoft cloud enterprise company companies").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/StackOverflow.svg;",40,50,"","StackOverflow",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","stack overflow stackoverflow so","ms microsoft cloud enterprise company companies").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/WebAppUmbraco.svg;", -49,50,"","WebAppUmbraco",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","webappumbraco webapp umbraco","ms microsoft cloud enterprise company companies").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/WebAppWordPress.svg;",49,50,"","WebAppWordPress",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","webappwordpress webapp wordpress","ms microsoft cloud enterprise company companies").join(" "))]; -this.addPalette("mscaeCompanies","CAE / Companies",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addMSCAEEnterpriseFlatPalette=function(){var a=[this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.d;fillColor=#00188D;",40,50,"","Federation Services Proxy",null,null,this.getTagsForStencil("mxgraph.mscae.cloud", -"active directory ad fs federation services proxy","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.ad_fs;fillColor=#00188D;",40,50,"","Federation Services",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","active directory ad fs federation services","ms microsoft cloud enterprise flat").join(" ")), -this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.android_phone;fillColor=#00188D;",30,50,"","Android Phone",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","android phone","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.application;fillColor=#00188D;", -50,34,"","Application",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","application","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.application_blank;fillColor=#00188D;",50,43,"","Application (blank)",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","application blank","ms microsoft cloud enterprise flat").join(" ")), -this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.app_generic;fillColor=#00188D;",50,39,"","Application (generic)",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","application generic","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.application_server;fillColor=#00188D;", -43,50,"","Application Server",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","application server","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.application_server2;fillColor=#00188D;",43,50,"","Application Server",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","application server", -"ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.pack;fillColor=#00188D;",50,45,"","Pack",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","pack","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.backup_local;fillColor=#00188D;", -49,50,"","Backup (local)",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","backup local","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.backup_online;fillColor=#00188D;",50,40,"","Backup (local)",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","backup local","ms microsoft cloud enterprise flat").join(" ")), -this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.calendar;fillColor=#00188D;",50,41,"","Calendar",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","calendar","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.certificate;fillColor=#00188D;", -50,40,"","Certificate",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","certificate","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.client_application;fillColor=#00188D;",50,32,"","Client Application",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","client application", -"ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.cloud;fillColor=#00188D;",50,32,"","Cloud",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","cloud","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.internet;fillColor=#00188D;", -50,31,"","Cloud",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","cloud","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.cluster_server;fillColor=#00188D;",40,50,"","Cluster Server",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","cluster server","ms microsoft cloud enterprise flat").join(" ")), -this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.code_file;fillColor=#00188D;",49,50,"","Code File",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","code file","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.connectors;fillColor=#00188D;", -50,34,"","Connectors",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","connectors","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.database_generic;fillColor=#00188D;",37,50,"","Database (generic)",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","database generic","ms microsoft cloud enterprise flat").join(" ")), -this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.database_server;fillColor=#00188D;",38,50,"","Database (server)",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","database server","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.database_synchronization;fillColor=#00188D;", -39,50,"","Database (synchronization)",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","database synchronization","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.device;fillColor=#00188D;",50,26,"","Device",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","device","ms microsoft cloud enterprise flat").join(" ")), -this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.direct_access_feature;fillColor=#00188D;",50,44,"","Direct Access (feature)",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","direct access feature","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.code_file;fillColor=#00188D;", -47,50,"","Document DB file",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","documentdb document db database file","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.document;fillColor=#00188D;",40,50,"","Document",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","document", -"ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.domain_controller;fillColor=#00188D;",36,50,"","Domain Controller",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","domain controller","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.enterprise;fillColor=#00188D;", -30,50,"","Enterprise Building",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","enterprise building","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.file;fillColor=#00188D;",47,50,"","File (general)",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","file","ms microsoft cloud enterprise flat").join(" ")), -this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.filter;fillColor=#00188D;",50,45,"","Filter",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","filter","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.firewall;fillColor=#00188D;", -50,44,"","Firewall",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","firewall","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.folder;fillColor=#00188D;",50,43,"","Folder",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","folder","ms microsoft cloud enterprise flat").join(" ")), -this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.gateway;fillColor=#00188D;",50,50,"","Gateway",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","gateway","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.graph;fillColor=#00188D;", -50,50,"","Graph",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","graph","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.health_monitoring;fillColor=#00188D;",50,42,"","Health Monitoring",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","health monitoring","ms microsoft cloud enterprise flat").join(" ")), -this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.healthy;fillColor=#00188D;",50,45,"","Healthy",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","healthy","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.import_generic;fillColor=#00188D;", -40,50,"","Import (generic)",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","import generic","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.internet_hollow;fillColor=#00188D;",50,31,"","Internet (hollow)",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","internet hollow", -"ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.internet;fillColor=#00188D;",50,31,"","Internet",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","internet","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.key_permissions;fillColor=#00188D;", -26,50,"","Key, Permissions",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","key permissions","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.keyboard;fillColor=#00188D;",50,30,"","Keyboard",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","keyboard","ms microsoft cloud enterprise flat").join(" ")), -this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.laptop;fillColor=#00188D;",50,30,"","Laptop",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","laptop","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.load_balancer_generic;fillColor=#00188D;", -37,50,"","Load Balancer (generic)",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","load balancer generic","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.load_testing;fillColor=#00188D;",48,50,"","Load Testing",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","load testing", -"ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.lock_unlocked;fillColor=#00188D;",37,50,"","Lock (unlocked)",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","lock unlocked unprotected accessible","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.lock;fillColor=#00188D;", -39,50,"","Lock, protected",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","lock protected","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.maintenance;fillColor=#00188D;",39,50,"","Maintenance",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","maintenance","ms microsoft cloud enterprise flat").join(" ")), -this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.management_console;fillColor=#00188D;",50,34,"","Management Console",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","management console","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.message2;fillColor=#00188D;", -50,37,"","Message",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","message","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.monitor_running_apps;fillColor=#00188D;",50,39,"","Monitor Running Apps",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","monitor running apps","ms microsoft cloud enterprise flat").join(" ")), -this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.computer;fillColor=#00188D;",50,45,"","Monitor",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","monitor computer","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.mouse;fillColor=#00188D;", -30,50,"","Mouse",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","mouse","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.network_card;fillColor=#00188D;",50,35,"","Network Card",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","network card","ms microsoft cloud enterprise flat").join(" ")), -this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.not_allowed;fillColor=#EA1C24;",50,50,"","Not Allowed",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","not allowed","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.performance_monitor;fillColor=#00188D;", -50,36,"","Performance Monitor",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","performance monitor","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.performance;fillColor=#00188D;",50,50,"","Performance",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","performance","ms microsoft cloud enterprise flat").join(" ")), -this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.mobile;fillColor=#00188D;",35,50,"","Mobile",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","mobile","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.plug_and_play;fillColor=#00188D;", -40,50,"","Plug and Play",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","plug and play","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.other.powerpoint;fillColor=#DE5D24;",50,50,"","PowerPoint",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","powerpoint","ms microsoft cloud enterprise flat").join(" ")), -this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.powershell_file;fillColor=#00188D;",47,50,"","PowerShell file",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","powershell file","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.protocol_stack;fillColor=#00188D;", -50,34,"","Protocol Stack",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","protocol stack","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.queue_generic;fillColor=#00188D;",50,15,"","Queue Generic",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","queue generic","ms microsoft cloud enterprise flat").join(" ")), -this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.rms_connector;fillColor=#00188D;",38,50,"","RMS Connector",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","rms connector","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.router;fillColor=#00188D;", -50,39,"","Router",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","router","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.router;fillColor=#00188D;",50,39,"","Router",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","router","ms microsoft cloud enterprise flat").join(" ")), -this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.rdp_remoting_file;fillColor=#0078D7;",48,50,"","RPD Remoting file",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","rpd remoting file","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.script_file;fillColor=#00188D;", -47,50,"","Script file",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","script file","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.secure_virtual_machine;fillColor=#00188D;",50,38,"","Secure Virtual Machine",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","secure virtual machine", -"ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.server;fillColor=#00188D;",50,15,"","Server (blade)",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","server","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.server_generic;fillColor=#00188D;", -24,50,"","Server (generic)",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","server generic","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.server_directory;fillColor=#00188D;",36,50,"","Server Directory",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","server directory", -"ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.server_farm;fillColor=#00188D;",50,32,"","Server Farm",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","server farm","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.server_rack;fillColor=#00188D;", -50,50,"","Server Rack",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","server rack","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.settings;fillColor=#00188D;",50,50,"","Settings",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","settings","ms microsoft cloud enterprise flat").join(" ")), -this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.shared_folder;fillColor=#00188D;",43,50,"","Shared Folder",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","shared folder","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.smartcard;fillColor=#00188D;", -50,32,"","Smartcard",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","smartcard","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.startup_task;fillColor=#0078D7;",48,50,"","Startup Task",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","startup task","ms microsoft cloud enterprise flat").join(" ")), -this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.storage;fillColor=#00188D;",50,41,"","Storage",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","storage","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.table;fillColor=#00188D;", -50,50,"","Table",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","table","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.tablet;fillColor=#00188D;",50,37,"","Tablet",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","tablet","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.tool;fillColor=#00188D;", -50,45,"","Tool",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","tool","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.triggers;fillColor=#0078D7;",47,50,"","Triggers",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","triggers","ms microsoft cloud enterprise flat").join(" ")), -this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.tunnel;fillColor=#00188D;",50,9,"","Tunnel",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","tunnel","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.udf_function;fillColor=#0078D7;", -47,50,"","UDF Function",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","udf function","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.unhealthy;fillColor=#0078D7;",50,41,"","Unhealthy",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","unhealthy","ms microsoft cloud enterprise flat").join(" ")), -this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.unhealthy;fillColor=#00188D;",50,41,"","Unhealthy",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","unhealthy","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.usb;fillColor=#00188D;", -50,23,"","USB",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","usb","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.user;fillColor=#00188D;",47,50,"","User (enterprise)",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","user","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.user_permissions;fillColor=#0078D7;", -47,50,"","User permissions",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","user permissions","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.video;fillColor=#00188D;",49,50,"","Video",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","video","ms microsoft cloud enterprise flat").join(" ")), -this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.virtual_machine_feature;fillColor=#00188D;",50,45,"","Virtual Machine",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","virtual machine","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.web_server;fillColor=#00188D;", -38,50,"","Web Server",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","web server","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.website_generic;fillColor=#7D7D7D;",50,44,"","Website (generic)",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","website generic","ms microsoft cloud enterprise flat").join(" ")), -this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.windows_server;fillColor=#00188D;",39,50,"","Windows Server",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","windows server","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.wireless_connection;fillColor=#00188D;", -42,50,"","Wireless Connection",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","wireless connection","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.workstation_client;fillColor=#00188D;",50,50,"","Workstation Client",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","workstation client", -"ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.xml_web_service;fillColor=#00188D;",50,50,"","XML Web Service",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","xml web service","ms microsoft cloud enterprise flat").join(" "))];this.addPalette("mscaeEnterpriseFlat","CAE / Enterprise (flat)", -!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addMSCAECloudPalette=function(){var a=this,d=[this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.active_directory_b2b;fillColor=#0079D6;pointerEvents=1;",50,50,"","Active Directory B2B",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","active directory b2b","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.active_directory_b2c;fillColor=#0079D6;pointerEvents=1;",50,50,"","Active Directory B2C",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","active directory b2c","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.active_directory_domain_services;fillColor=#0079D6;pointerEvents=1;", -50,50,"","Active Directory Domain Services",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","active directory domain services","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.active_directory_health_monitoring;fillColor=#0079D6;pointerEvents=1;",50,49,"","Active Directory Health Monitoring",null,null,this.getTagsForStencil("mxgraph.mscae.cloud", -"active directory health monitoring","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.access_control;pointerEvents=1;",50,50,"","Access Control",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","access control","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.advisor;fillColor=#0079D6;", -50,50,"","Advisor",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","advisor","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shape=rect;fillColor=none;strokeColor=#0000FF;dashed=1;fontSize=14;align=center;html=1;verticalAlign=top;fontColor=#0078D7;whiteSpace=wrap;",100,100,"Affinity group","Affinity Group",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","affinity group","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.analysis_service;fillColor=#0079D6;pointerEvents=1;", -50,40,"","Analysis Service",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","analysis service","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.api_app;fillColor=#0079D6;pointerEvents=1;",45,50,"","API App",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","api app","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.api_management;fillColor=#0079D6;pointerEvents=1;",50,45,"","API Management",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","api management","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.application_gateway;fillColor=#0079D6;pointerEvents=1;", -50,50,"","Application Gateway",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","application gateway","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.app_service;fillColor=#0079D6;pointerEvents=1;",50,50,"","App Service",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","app application service","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.application_insights;fillColor=#0079D6;",32,50,"","Application Insights",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","application insights","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.autoscale;", -50,30,"","Autoscaling",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","autoscaling autoscale","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shape=rect;fillColor=none;strokeColor=#0000FF;dashed=1;fontSize=14;align=center;html=1;verticalAlign=top;fontColor=#0078D7;whiteSpace=wrap;",100,100,"Availability set","Availability Set",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","availability set","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.virtual_machines_availability_set;fillColor=#0079D6;pointerEvents=1;", -50,50,"","Availability Set",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","virtual machines availability set","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.azure;fillColor=#0079D6;pointerEvents=1;",50,32,"","Azure",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","azure","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.azure_automatic_load_balancer;fillColor=#0079D6;pointerEvents=1;",50,33,"","Azure Automatic Load Balancer",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","automatic load balancer","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.active_directory;fillColor=#0079D6;pointerEvents=1;", -47,50,"","Azure Active Directory",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","azure active directory","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.azure_alert;",50,42,"","Azure Alert",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","azure alert","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.automation;pointerEvents=1;",50,45,"","Azure Automation",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","azure automation","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.azure_batch;fillColor=#0079D6;pointerEvents=1;", -50,43,"","Azure Batch",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","batch","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.azure_cache;",45,50,"","Azure Cache including Redis",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","azure cache including redis","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.azure_files_service;fillColor=#0079D6;",50,43,"","Azure Files Service",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","files service","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.azure_load_balancer_feature;fillColor=#0079D6;pointerEvents=1;", -50,50,"","Azure Load Balancer (feature)",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","load balancer feature","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.azure_logo;fillColor=#0079D6;pointerEvents=1;",50,50,"","Azure Logo",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","azure logo","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.azure_marketplace;",40,50,"","Azure Marketplace",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","azure marketplace","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.azure_rights_management_rms;fillColor=#0079D6;", -40,50,"","Azure Rights Management (RMS)",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","rights management rms","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.azure_sdk;pointerEvents=1;",50,47,"","Azure SDK",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","azure sdk software development kit","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.azure_search;fillColor=#0079D6;",50,35,"","Azure Search",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","search","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.sql_database_sql_azure;pointerEvents=1;", -47,50,"","Azure SQL Database",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","azure sql database","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.azure_storage;fillColor=#0079D6;pointerEvents=1;",50,43,"","Azure Storage",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","storage","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.azure_subscription;",50,35,"","Azure Subscription",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","azure subscription","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.hyper_v_recovery_manager;", -50,45,"","Backup",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","backup","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.backup_service;",50,45,"","Backup Agent",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","backup agent","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.batch;fillColor=#0079D6;pointerEvents=1;", -49,46,"","Batch",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","batch","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.bitbucket_code_source;",42,50,"","Bitbucket Code Source",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","bitbucket code source","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.biztalk_services;pointerEvents=1;", -50,50,"","Biztalk Services",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","biztalk services","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.blockchain;fillColor=#0079D6;",50,38,"","Blockchain",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","blockchain","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.bot_services;fillColor=#0079D6;", -48,48,"","Bot Services",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","bot services","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.building_block;fillColor=#0079D6;pointerEvents=1;",50,44,"","Building Block",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","building block","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.c_series;fillColor=#0079D6;pointerEvents=1;",49,50,"","C-Series",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","c series","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.central;fillColor=#0079D6;pointerEvents=1;", -44,50,"","Central",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","central","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.cloud_office_365;fillColor=#DF3C01;",50,30,"","Cloud Office 365",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","cloud office 365","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.cloud_service;pointerEvents=1;", -50,40,"","Cloud Service",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","cloud service","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.codeplex_code_source;pointerEvents=1;",50,37,"","CodePlex",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","codeplex","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.cognitive_services;fillColor=#0079D6;pointerEvents=1;",50,30,"","Cognitive Services",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","cognitive services","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.container_registry;fillColor=#0079D6;pointerEvents=1;", -50,43,"","Container Registry",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","container registry","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.container_service;fillColor=#0079D6;pointerEvents=1;",50,36,"","Container Service",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","container service","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.content_delivery_network;",50,32,"","Content Delivery Network",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","content delivery network","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.cortona_management_suite;fillColor=#0079D6;pointerEvents=1;", -50,50,"","Cortona Analytics",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","cortona management suite","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.cosmos_db;fillColor=#0079D6;pointerEvents=1;",50,50,"","Cosmos DB",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","cosmos db database","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.customer_insights;fillColor=#0079D6;pointerEvents=1;",48,50,"","Customer Insights",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","customer insights","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.data_bricks;fillColor=#0079D6;pointerEvents=1;", -49,50,"","Data Bricks",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","data bricks","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.data_catalog;fillColor=#0079D6;pointerEvents=1;",32,37,"","Data Catalog",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","data catalog","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.data_factory;fillColor=#0079D6;pointerEvents=1;",50,50,"","Data Factory",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","data factory","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.data_lake;fillColor=#0079D6;", -30,50,"","Data Lake",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","data lake","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.data_lake_analytics;fillColor=#0079D6;pointerEvents=1;",50,50,"","Data Lake Analytics",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","data lake analytics","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.data_lake_store;fillColor=#0079D6;",50,39,"","Data Lake Store",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","data lake store","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.data_warehouse;fillColor=#0079D6;pointerEvents=1;", -72,70,"","Data Warehouse",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","data warehouse","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.devtest_labs;fillColor=#0079D6;pointerEvents=1;",50,49,"","DevTest Labs",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","devtest labs","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.azure_dns;fillColor=#0079D6;pointerEvents=1;",50,50,"","DNS",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","dns","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.docdb_account;fillColor=#0079D6;pointerEvents=1;", -47,50,"","DocDB Account",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","docdb account doc database db document","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.docdb_collections;fillColor=#0079D6;pointerEvents=1;",44,50,"","DocDB Collections",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","docdb collections doc db database document", -"ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.document;fillColor=#0079D6;pointerEvents=1;",43,50,"","Document",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","document","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.documentdb;fillColor=#0079D6;pointerEvents=1;", -38,50,"","DocumentDB",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","documentdb document db database","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.code_file;fillColor=#0079D6;pointerEvents=1;",48,50,"","DocumentDB Document",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","documentdb document db database", -"ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.dps;fillColor=#0079D6;pointerEvents=1;",48,50,"","DPS",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","dps","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.dropbox_code_source;pointerEvents=1;", -50,47,"","Dropbox Code Source",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","dropbox code source","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.event_grid;fillColor=#0079D6;pointerEvents=1;",50,50,"","Event Grid",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","event grid","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.event_hubs;fillColor=#0079D6;pointerEvents=1;",49,50,"","Event Hubs",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","event_hubs","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.express_route;pointerEvents=1;", -50,30,"","Express Route",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","express route","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.functions;fillColor=#0079D6;pointerEvents=1;",50,46,"","Functions",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","functions","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.gateway;fillColor=#0079D6;pointerEvents=1;",44,50,"","Gateway",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","gateway","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.git_repository;", -50,50,"","Git Repository",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","git repository","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.github_code;pointerEvents=1;",50,50,"","GitHub",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","github code","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.hdinsight;fillColor=#0079D6;pointerEvents=1;", -50,36,"","HDInsight",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","hdisight hd insight","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.hockeyapp;fillColor=#0079D6;pointerEvents=1;",50,29,"","HockeyApp",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","hockeyapp","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.hybrid_connection_manager;fillColor=#0079D6;pointerEvents=1;",50,35,"","Hybrid Connection Manager",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","hybrid connection manager","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.hybrid_connections;fillColor=#0079D6;pointerEvents=1;", -47,50,"","Hybrid Connections",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","hybrid connections","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.iot_edge;fillColor=#0079D6;pointerEvents=1;",50,50,"","IoT Edge",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","iot edge internet of things","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.iot;fillColor=#0079D6;pointerEvents=1;",50,50,"","IoT",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","iot internet of things","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.key_vault;fillColor=#0079D6;pointerEvents=1;", -49,50,"","Key Vault",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","key vault","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.logic_app;fillColor=#0079D6;pointerEvents=1;",50,50,"","Logic App",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","logic app application","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.logic_apps;fillColor=#0079D6;pointerEvents=1;",50,39,"","Logic Apps",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","logic apps applications","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.machine_learning2;fillColor=#0079D6;pointerEvents=1;", -47,50,"","Machine Learning",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","machine learning","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.machine_learning_service_plans;fillColor=#0079D6;pointerEvents=1;",47,50,"","Machine Learning - Service Plans",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","machine learning service plans", -"ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.machine_learning_web_services;fillColor=#0079D6;pointerEvents=1;",50,50,"","Machine Learning - Web Services",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","machine learning web services","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.machine_learning_work_spaces;fillColor=#0079D6;pointerEvents=1;", -50,50,"","Machine Learning - Work Spaces",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","machine learning work spaces","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.managed_applications;fillColor=#0079D6;pointerEvents=1;",44,50,"","Managed Applications",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","managed applications", -"ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.managed_discs;fillColor=#0079D6;pointerEvents=1;",46,50,"","Managed Discs",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","managed discs","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.management_portal;fillColor=#0079D6;pointerEvents=1;", -50,42,"","Management Portal",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","management portal","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.media_service;pointerEvents=1;",45,50,"","Media Services",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","media services","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.microsoft_account;fillColor=#0079D6;pointerEvents=1;",50,50,"","MS Account",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","microsoft account","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.microsoft_azure;fillColor=#000000;pointerEvents=1;", -50,32,"","MS Azure",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","microsoft","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.mobile_app;fillColor=#0079D6;pointerEvents=1;",30,50,"","Mobile App",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","mobile app application","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.mobile_engagement;fillColor=#0079D6;pointerEvents=1;",30,50,"","Mobile Engagement",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","mobile engagement","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.monitor;fillColor=#0079D6;pointerEvents=1;", -50,50,"","Monitor",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","monitor","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.multi_factor_authentication;pointerEvents=1;",25,50,"","Multi-Factor Authentication",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","multi factor authentication","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.mysql_database;pointerEvents=1;",37,50,"","MySQL Database",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","mysql database","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.network_watcher;fillColor=#0079D6;pointerEvents=1;", -50,50,"","Network Watcher",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","network watcher","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.notification_hub;pointerEvents=1;",50,50,"","Notification Hub",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","notification hub","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.nsg;fillColor=#0079D6;pointerEvents=1;",36,50,"","NSG",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","nsg","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.office_365;fillColor=#DF3C01;pointerEvents=1;", -42,50,"","Office 365",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","office 365","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.office_365_subscription;fillColor=#DF3C01;pointerEvents=1;",50,34,"","Office 365 Subscription",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","office 365 subscription","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.oms_log_analytics;fillColor=#0079D6;pointerEvents=1;",50,50,"","OMS Log Analytics",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","oms log analytics","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.operational_insights;fillColor=#0079D6;pointerEvents=1;", -50,50,"","Operational Insights",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","operational insights","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.operating_system_image;pointerEvents=1;",50,50,"","OS Image",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","os operating system image","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.power_bi_embedded;fillColor=#000000;pointerEvents=1;",47,50,"","Power BI Embedded",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","power bi embedded","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.recovery_vault;fillColor=#0079D6;pointerEvents=1;", -50,50,"","Recovery Vault",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","recovery vault","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.remoteapp;fillColor=#0079D6;pointerEvents=1;",50,50,"","RemoteApp",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","remoteapp remote app","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.resource_group;fillColor=#0079D6;pointerEvents=1;",50,41,"","Resource Group",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","resource group","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.route_filters;fillColor=#0079D6;pointerEvents=1;", -50,42,"","Route Filters",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","route filters","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.runbooks;fillColor=#0079D6;",46,50,"","Runbooks",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","runbooks","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.scheduler;pointerEvents=1;", -40,50,"","Scheduler",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","scheduler","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.security_center;fillColor=#0079D6;pointerEvents=1;",37,50,"","Security Center",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","security center","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.service_bus2;fillColor=#0079D6;pointerEvents=1;",50,50,"","Service Bus",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","service bus","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.service_bus_relay2;fillColor=#0079D6;pointerEvents=1;", -50,50,"","Service Bus Relay",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","service bus relay","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.service_bus_topics_and_subscriptions;pointerEvents=1;",45,50,"","Service Bus Topic",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","service bus topic", -"ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.service_endpoint;fillColor=#0079D6;",50,9,"","Service Endpoint",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","service endpoint","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.service_endpoint2;fillColor=#0079D6;", -32,12,"","Service Endpoint",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","service endpoint","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.service_fabric;fillColor=#0079D6;pointerEvents=1;",50,50,"","Service Fabric",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","service fabric","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.site_recovery;fillColor=#0079D6;",37,31,"","Site Recovery",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","site recovery","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.snapshot;fillColor=#0079D6;pointerEvents=1;", -65,55,"","Snapshot",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","snapshot","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.sql_datasync;pointerEvents=1;",37,50,"","SQL DataSync",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","sql datasync","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.sql_database;pointerEvents=1;", -37,50,"","SQL Database",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","sql database","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.sql_database_premium;fillColor=#0079D6;pointerEvents=1;",28,38,"","SQL Database Premium",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","sql database premium","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.sql_datawarehouse;fillColor=#0079D6;pointerEvents=1;",50,49,"","SQL DataWarehouse",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","sql datawarehouse","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.sql_elastic_database_pools;fillColor=#0079D6;pointerEvents=1;", -50,50,"","SQL Elastic Database Pools",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","sql elastic database pools","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.sql_stretch_database;fillColor=#0079D6;",50,37,"","SQL Stretch Database",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","sql stretch database","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.stack;fillColor=#0079D6;pointerEvents=1;",50,50,"","Stack",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","stack","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.startup_task;pointerEvents=1;", -47,50,"","Startup Task",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","startup task","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.storage;fillColor=#0079D6;pointerEvents=1;",50,43,"","Storage",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","storage","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.storage_cs;fillColor=#0079D6;pointerEvents=1;", -50,45,"","Storage cs",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","storage cs","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.storage_blob;pointerEvents=1;",50,45,"","Storage Blob",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","storage blob","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.storage_files;fillColor=#0079D6;pointerEvents=1;", -50,43,"","Storage Files",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","storage files","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.storage_queue;pointerEvents=1;",50,45,"","Storage Queue",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","storage queue","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.storage_sync_services;fillColor=#0079D6;pointerEvents=1;",50,50,"","Storage Sync Services",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","storage sync services","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.storage_table;pointerEvents=1;", -50,45,"","Storage Table",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","storage table","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.storsimple;pointerEvents=1;",50,45,"","StorSimple",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","storsimple","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.stream_analytics;fillColor=#0079D6;pointerEvents=1;", -50,39,"","Stream Analytics",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","stream analytics","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.tags;fillColor=#0079D6;",50,50,"","Tags",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","tags","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.time_series_insights;fillColor=#0079D6;", -50,50,"","Time Series Insights",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","time series insights","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.traffic_manager;pointerEvents=1;",50,50,"","Traffic Manager",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","traffic manager","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.unidentified_code_object;pointerEvents=1;",50,41,"","Unidentified Feature Object",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","unidentified feature object","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.vhd;fillColor=#0079D6;pointerEvents=1;", -40,50,"","VHD",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","vhd","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.vhd_data_disk;pointerEvents=1;",37,50,"","VHD Data Disk",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","vhd data disk","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.virtual_machine;pointerEvents=1;", -50,40,"","Virtual Machine",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","virtual machine","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.virtual_machine_container;fillColor=#0079D6;pointerEvents=1;",50,44,"","Virtual Machine Container",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","virtual machine container", -"ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.virtual_machine_feature;pointerEvents=1;",50,45,"","Virtual Machine Feature",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","virtual machine feature","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.virtual_network;pointerEvents=1;", -50,27,"","Virtual Network",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","virtual network","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shape=rect;dashed=1;strokeColor=#0079D6;fillColor=none;fontSize=14;fontColor=#0078D7;align=center;html=1;dashPattern=1 4;",150,100,"","Virtual Network Box",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","virtual network box","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shape=rect;dashed=1;strokeColor=#0079D6;fillColor=none;fontSize=14;fontColor=#0078D7;align=center;html=1;dashPattern=1 4;", -150,100,"","Smart Virtual Network Box",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","virtual network box","ms microsoft cloud enterprise ").join(" ")),this.addEntry("ms microsoft cloud enterprise smart virtual network box",function(){var d=new mxCell("",new mxGeometry(0,0,150,100),"shape=rect;dashed=1;strokeColor=#0079D6;fillColor=none;fontSize=14;fontColor=#0078D7;align=center;html=1;dashPattern=1 4;");d.vertex=!0;var b=new mxCell("Virtual Network",new mxGeometry(1,1,30,18),"shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;shape=mxgraph.azure.virtual_network;fontSize=12;fontColor=#0078D7;align=right;"); -b.geometry.relative=!0;b.geometry.offset=new mxPoint(-20,-8);b.vertex=!0;d.insert(b);return a.createVertexTemplateFromCells([d],d.geometry.width+10,d.geometry.height+10,"Smart Virtual Network Box")}),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.visual_studio_online;",50,37,"","Visual Studio Team Services",null,null,this.getTagsForStencil("mxgraph.mscae.cloud", -"visual studio online","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.vm_scale_set;fillColor=#0079D6;pointerEvents=1;",50,50,"","VM Scale Set",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","vm virtual machine scale set","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.vpn_gateway;fillColor=#0079D6;pointerEvents=1;", -32,50,"","VPN Gateway",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","vpn gateway virtual private network","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.vpn_gateway2;fillColor=#0079D6;pointerEvents=1;",45,50,"","VPN Gateway",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","vpn gateway virtual private network", -"ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.azure_website;pointerEvents=1;",50,50,"","WebApp",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","web app application","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.webhooks;fillColor=#0079D6;pointerEvents=1;", -50,46,"","Webhooks",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","webhooks","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.web_role;pointerEvents=1;",50,40,"","Web Role",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","web role","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.web_roles;pointerEvents=1;", -50,41,"","Web Roles",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","web roles","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.webjobs;fillColor=#0079D6;pointerEvents=1;",50,49,"","WebJobs",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","webjobs web jobs","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.work_account;fillColor=#0079D6;pointerEvents=1;", -50,50,"","Work Account",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","work account","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.worker_pools;fillColor=#0079D6;pointerEvents=1;",50,50,"","Worker Pools",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","worker pools","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.worker_role;pointerEvents=1;",50,40,"","Worker Role",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","worker role","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.worker_roles;pointerEvents=1;", -50,41,"","Worker Roles",null,null,this.getTagsForStencil("mxgraph.mscae.cloud","worker roles","ms microsoft cloud enterprise ").join(" "))];this.addPalette("mscaeCloud","CAE / Cloud",!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addMSCAEDeprecatedPalette=function(){var a=[this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.access_control;fillColor=#0078D7;", -50,50,"","Access Control",null,null,this.getTagsForStencil("mxgraph.mscae.deprecated","access control","ms microsoft cloud enterprise deprecated ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.deprecated.application;fillColor=#00188D;",50,33,"","Application",null,null,this.getTagsForStencil("mxgraph.mscae.deprecated","application","ms microsoft cloud enterprise deprecated ").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.deprecated.application_gateway;fillColor=#0078D7;",50,50,"","Application Gateway",null,null,this.getTagsForStencil("mxgraph.mscae.deprecated","application gateway","ms microsoft cloud enterprise deprecated ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.deprecated.azure;fillColor=#00BCF2;", -50,31,"","Azure",null,null,this.getTagsForStencil("mxgraph.mscae.deprecated","azure","ms microsoft cloud enterprise deprecated ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.deprecated.batch;fillColor=#00188D;",42,41,"","Batch",null,null,this.getTagsForStencil("mxgraph.mscae.deprecated","batch","ms microsoft cloud enterprise deprecated ").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.deprecated.bot;fillColor=#00188D;",31,31,"","Bot",null,null,this.getTagsForStencil("mxgraph.mscae.deprecated","bot","ms microsoft cloud enterprise deprecated ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.file;fillColor=#00BCF2;", -47,50,"","Cloud Service Definition File",null,null,this.getTagsForStencil("mxgraph.mscae.deprecated","cloud service definition file csdef","ms microsoft cloud enterprise deprecated ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.file;fillColor=#00188D;",47,50,"","Cloud Service Definition File",null,null,this.getTagsForStencil("mxgraph.mscae.deprecated", -"cloud service definition file csdef","ms microsoft cloud enterprise deprecated ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.service_package;fillColor=#00BCF2;",44,50,"","Cloud Service Package",null,null,this.getTagsForStencil("mxgraph.mscae.deprecated","cloud service package cspkg","ms microsoft cloud enterprise deprecated ").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.service_package;fillColor=#00188D;",44,50,"","Cloud Service Package",null,null,this.getTagsForStencil("mxgraph.mscae.deprecated","cloud service package cspkg","ms microsoft cloud enterprise deprecated ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.service_package;fillColor=#0078D7;", -44,50,"","Cloud Service Package",null,null,this.getTagsForStencil("mxgraph.mscae.deprecated","cloud service package cspkg","ms microsoft cloud enterprise deprecated ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.deprecated.compute;fillColor=#00188D;",33,24,"","Compute",null,null,this.getTagsForStencil("mxgraph.mscae.deprecated","compute","ms microsoft cloud enterprise deprecated ").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.content_delivery_network;fillColor=#0078D7;",50,32,"","Content Delivery Network",null,null,this.getTagsForStencil("mxgraph.mscae.deprecated","content delivery network","ms microsoft cloud enterprise deprecated ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.deprecated.data_lake;fillColor=#0078D7;", -39,50,"","Data Lake",null,null,this.getTagsForStencil("mxgraph.mscae.deprecated","data lake","ms microsoft cloud enterprise deprecated ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.deprecated.data_lake_analytics;fillColor=#0078D7;",50,50,"","Data Lake Analytics",null,null,this.getTagsForStencil("mxgraph.mscae.deprecated","data lake analytics", -"ms microsoft cloud enterprise deprecated ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.deprecated.data_lake_store;fillColor=#0078D7;",50,50,"","Data Lake Store",null,null,this.getTagsForStencil("mxgraph.mscae.deprecated","data lake store","ms microsoft cloud enterprise deprecated ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.deprecated.data_services;fillColor=#00188D;", -27,35,"","Data Services",null,null,this.getTagsForStencil("mxgraph.mscae.deprecated","data services","ms microsoft cloud enterprise deprecated ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.file_2;fillColor=#7F7F7F;",47,50,"","File",null,null,this.getTagsForStencil("mxgraph.mscae.deprecated","file","ms microsoft cloud enterprise deprecated ").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.hdinsight;fillColor=#00BEF2;",50,50,"","HDInsight",null,null,this.getTagsForStencil("mxgraph.mscae.deprecated","hdinsight hd insight","ms microsoft cloud enterprise deprecated ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.machine_learning;fillColor=#0078D7;", -47,50,"","Machine Learning",null,null,this.getTagsForStencil("mxgraph.mscae.deprecated","machine learning","ms microsoft cloud enterprise deprecated ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.certificate;fillColor=#00BEF2;",50,40,"","Management Certificate",null,null,this.getTagsForStencil("mxgraph.mscae.deprecated","management certificate", -"ms microsoft cloud enterprise deprecated ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.notification_topic;fillColor=#0078D7;",50,50,"","Notification Topic",null,null,this.getTagsForStencil("mxgraph.mscae.deprecated","notification topic","ms microsoft cloud enterprise deprecated ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.operational_insights;fillColor=#0078D7;", -50,50,"","Operational Insights",null,null,this.getTagsForStencil("mxgraph.mscae.deprecated","operational insights","ms microsoft cloud enterprise deprecated ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.operating_system_image;fillColor=#0079D6;",50,50,"","OS Image",null,null,this.getTagsForStencil("mxgraph.mscae.deprecated","os operating system image", -"ms microsoft cloud enterprise deprecated ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.deprecated.poster_arrow;fillColor=#00BCF2;",20,50,"","Poster Arrow",null,null,this.getTagsForStencil("mxgraph.mscae.deprecated","poster arrow","ms microsoft cloud enterprise deprecated ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.service_bus;fillColor=#0078D7;", -45,50,"","Service Bus",null,null,this.getTagsForStencil("mxgraph.mscae.deprecated","service bus","ms microsoft cloud enterprise deprecated ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.service_bus_queues;fillColor=#0078D7;",42,50,"","Service Bus Queues",null,null,this.getTagsForStencil("mxgraph.mscae.deprecated","service bus queues","ms microsoft cloud enterprise deprecated ").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.service_bus_relay;fillColor=#0078D7;",40,50,"","Service Bus Relay",null,null,this.getTagsForStencil("mxgraph.mscae.deprecated","service bus relay","ms microsoft cloud enterprise deprecated ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.service_bus_topics_and_subscriptions;fillColor=#0078D7;", -45,50,"","Service Bus Topic",null,null,this.getTagsForStencil("mxgraph.mscae.deprecated","service bus topic","ms microsoft cloud enterprise deprecated ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.certificate;fillColor=#00BEF2;",50,40,"","Service Certificate",null,null,this.getTagsForStencil("mxgraph.mscae.deprecated","service certificate", -"ms microsoft cloud enterprise deprecated ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.deprecated.sql_data_warehouse;fillColor=#0078D7;",44,50,"","SQL Data Warehouse",null,null,this.getTagsForStencil("mxgraph.mscae.deprecated","sql data warehouse","ms microsoft cloud enterprise deprecated ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.deprecated.sql_server_stretch_db;fillColor=#0078D7;", -50,49,"","SQL Server Stretch DB",null,null,this.getTagsForStencil("mxgraph.mscae.deprecated","sql server stretch db database","ms microsoft cloud enterprise deprecated ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.sql_reporting;fillColor=#0078D7;",40,50,"","SQL Reporting",null,null,this.getTagsForStencil("mxgraph.mscae.deprecated","sql reporting", -"ms microsoft cloud enterprise deprecated ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.vhd;fillColor=#0078D7;",40,50,"","VHD",null,null,this.getTagsForStencil("mxgraph.mscae.deprecated","vhd virtual hard drive","ms microsoft cloud enterprise deprecated ").join(" "))];this.addPalette("mscaeDeprecated","CAE / (Deprecated)",!1,mxUtils.bind(this, -function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addMSCAEEnterprisePalette=function(){var a=[this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.ad_fs;fillColor=#00188D;",40,50,"","AD FS",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","ad fs","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.android_phone;fillColor=#7D7D7D;", -30,50,"","Android Phone",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","android phone mobile","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.app_generic;fillColor=#00188D;",50,39,"","App (generic)",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","app generic","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.application;fillColor=#00188D;",50,34,"","Application",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","application app","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.application_blank;fillColor=#00188D;", -50,43,"","Application (blank)",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","application app blank","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.application_server;fillColor=#00188D;",43,50,"","Application Server",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","application app server", -"ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.application_server2;fillColor=#00188D;",43,50,"","Application Server",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","application app server","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.backup_local;fillColor=#00188D;", -49,50,"","Backup (local)",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","backup local","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.backup_online;fillColor=#00188D;",50,40,"","Backup (online)",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","backup online","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.calendar;fillColor=#00188D;",50,41,"","Calendar",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","calendar","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.certificate;fillColor=#7D7D7D;", -50,40,"","Certificate",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","certificate","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.client_application;fillColor=#00188D;",50,32,"","Client Application",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","client application app","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.cloud;fillColor=#7D7D7D;",50,32,"","Cloud",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","cloud","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.cluster_server;fillColor=#00188D;", -40,50,"","Cluster Server",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","cluster server","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.code_file;fillColor=#7D7D7D;",47,50,"","Code File",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","code file","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.connectors;fillColor=#00188D;",50,34,"","Connectors",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","connectors","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.d;fillColor=#00188D;", -40,50,"","D",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","delta diff difference server","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.database_generic;fillColor=#00188D;",37,50,"","Database (generic)",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","db database generic","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.database_server;fillColor=#00188D;",38,50,"","Database (server)",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","db database server","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.database_synchronization;fillColor=#00188D;", -39,50,"","Database Synchronization",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","database synchronization sync db","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.device;fillColor=#00188D;",50,26,"","Device",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","Device","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.direct_access_feature;fillColor=#00188D;",50,44,"","Direct Access (feature)",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","direct access feature","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.document;fillColor=#7D7D7D;", -40,50,"","Document",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","document doc","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.domain_controller;fillColor=#00188D;",36,50,"","Domain Controller",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","domain controller","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.enterprise;fillColor=#00188D;",30,50,"","Enterprise Building",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","enterprise building","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.file;fillColor=#7D7D7D;", -47,50,"","File general",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","file general","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.filter;fillColor=#00188D;",50,45,"","Filter",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","filter","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.firewall;fillColor=#00188D;",50,44,"","Firewall",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","firewall","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.folder;fillColor=#7D7D7D;", -50,43,"","Folder",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","folder","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.gateway;fillColor=#00188D;",50,50,"","Gateway",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","gateway","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.code_file;fillColor=#00188D;", -47,50,"","Generic Code",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","generic code","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.code_file;fillColor=#00188D;",49,50,"","Generic Code File",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","code file","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.health_monitoring;fillColor=#7D7D7D;",50,42,"","Health Monitoring",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","health monitoring","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.healthy;fillColor=#7D7D7D;", -50,45,"","Healthy",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","healthy","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.healthy;fillColor=#0078D7;",50,45,"","Healthy",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","healthy","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.import_generic;fillColor=#00188D;", -40,50,"","Import (generic)",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","import generic","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.internet;fillColor=#7D7D7D;",50,31,"","Internet",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","internet","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.internet_hollow;fillColor=#7D7D7D;",50,31,"","Internet (hollow)",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","internet hollow","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.iphone;fillColor=#7D7D7D;", -31,50,"","iPhone",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","iphone","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.key_permissions;fillColor=#7D7D7D;",26,50,"","Key, Permissions",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","key permissions","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.keyboard;fillColor=#7D7D7D;",50,30,"","Keyboard",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","keyboard","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.laptop;fillColor=#7D7D7D;", -50,30,"","Laptop",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","laptop computer pc","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.load_balancer_generic;fillColor=#00188D;",37,50,"","Load Balancer (generic)",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","load balancer generic","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.load_balancer_generic;fillColor=#ffffff;",37,50,"","Load Balancer (white)",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","load balancer generic","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.load_testing;fillColor=#00188D;", -48,50,"","Load Testing",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","load testing","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.lock;fillColor=#00188D;",39,50,"","Lock, Protected",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","lock protected","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.lock_unlocked;fillColor=#00188D;",37,50,"","Lock (unlocked)",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","lock unlocked accessible","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.maintenance;fillColor=#00188D;", -34,50,"","Maintenance",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","maintenance","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.management_console;fillColor=#00188D;",50,34,"","Management Console",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","management console","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.message;fillColor=#7D7D7D;",50,37,"","Message",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","message","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.computer;fillColor=#7D7D7D;", -50,45,"","Monitor",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","monitor","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.monitor_running_apps;fillColor=#00188D;",50,39,"","Monitor Running Apps",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","monitor running app application", -"ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.mouse;fillColor=#7D7D7D;",30,50,"","Mouse",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","mouse","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.network_card;fillColor=#00188D;", -50,35,"","Network Card",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","network card","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.not_allowed;fillColor=#00188D;",50,50,"","Not Allowed",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","not allowed","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.not_allowed;fillColor=#EA1C24;",50,50,"","Not Allowed",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","not allowed","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.pack;fillColor=#00188D;", -50,45,"","Pack",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","pack","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.performance;fillColor=#7D7D7D;",50,50,"","Performance",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","performance","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.performance_monitor;fillColor=#00188D;",50,36,"","Performance Monitor",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","performance monitor","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.mobile;fillColor=#7D7D7D;", -35,50,"","Phone",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","mobile phone","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.plug_and_play;fillColor=#7D7D7D;",40,50,"","Plug and Play",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","plug play","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.powershell_file;fillColor=#00188D;",47,50,"","PowerShell Script File",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","powershell script file","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.protocol_stack;fillColor=#00188D;", -50,34,"","Protocol Stack",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","protocol stack","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.queue_generic;fillColor=#00188D;",50,15,"","Queue (general)",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","queue general generic","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.rdp_remoting_file;fillColor=#0078D7;",48,50,"","RPD Remoting File",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","rpd remoting file","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.rms_connector;fillColor=#00188D;", -38,50,"","RMS Connector",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","rms connector","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.router;fillColor=#00188D;",50,39,"","Router",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","router","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.script_file;fillColor=#00188D;",47,50,"","Script File",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","script file","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.secondary_site;fillColor=#00188D;", -42,50,"","Secondary Site",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","secondary site","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.secure_virtual_machine;fillColor=#00188D;",50,38,"","Secure Virtual Machine",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","secure virtual machine", -"ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.server;fillColor=#00188D;",50,15,"","Server (blade)",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","server blade","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.server_generic;fillColor=#00188D;", -24,50,"","Server (generic)",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","server generic","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.server_directory;fillColor=#00188D;",36,50,"","Server Directory",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","server directory","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.server_farm;fillColor=#00188D;",50,32,"","Server Farm",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","server farm","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.server_rack;fillColor=#00188D;", -50,50,"","Server Rack",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","server rack","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.settings;fillColor=#00188D;",50,50,"","Settings",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","settings","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.shared_folder;fillColor=#00188D;",43,50,"","Shared Folder",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","shared folder","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.smartcard;fillColor=#00188D;", -50,32,"","SmartCard",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","smartcard","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.storage;fillColor=#00188D;",50,41,"","Storage",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","storage","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.stored_procedures;fillColor=#0078D7;",47,50,"","Stored Procedures",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","stored procedures","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.table;fillColor=#00188D;", -50,50,"","Table",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","table","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.tablet;fillColor=#7D7D7D;",50,37,"","Tablet",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","tablet","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.tool;fillColor=#7D7D7D;", -50,45,"","Tool",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","tool","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.triggers;fillColor=#0078D7;",47,50,"","Triggers",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","triggers","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;shape=mxgraph.mscae.general.tunnel;fillColor=#00188D;", -50,9,"","Tunnel",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","tunnel","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.udf_function;fillColor=#0078D7;",47,50,"","UDF Function",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","udf function","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.unhealthy;fillColor=#00188D;",50,41,"","Unhealthy",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","unhealthy","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.usb;fillColor=#00188D;", -50,23,"","USB",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","usb","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;shape=mxgraph.azure.user;fillColor=#00188D;",47,50,"","User",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","user","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.user_permissions;fillColor=#0078D7;", -47,50,"","User Permissions",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","user permissions","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;shape=mxgraph.mscae.general.video;fillColor=#00188D;",49,50,"","Video",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","video","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;shape=mxgraph.azure.virtual_machine_feature;fillColor=#00188D;", -50,45,"","Virtual Machine Feature",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","virtual machine feature","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.web;fillColor=#00188D;",50,50,"","Web",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","web","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.web_server;fillColor=#00188D;",38,50,"","Web Server",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","web server","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.website_generic;fillColor=#7D7D7D;", -50,44,"","Website (generic)",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","website generic","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.other.windows;fillColor=#00188D;",48,50,"","Windows",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","windows","ms microsoft cloud enterprise ").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.windows_server;fillColor=#00188D;",39,50,"","Windows Server",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","windows server","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.wireless_connection;fillColor=#00188D;", -42,50,"","Wireless Connection",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","wireless connection","ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.workstation_client;fillColor=#00188D;",50,50,"","Workstation Client",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","workstation client", -"ms microsoft cloud enterprise ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.xml_web_service;fillColor=#00188D;",50,50,"","XML Web Service",null,null,this.getTagsForStencil("mxgraph.mscae.enterprise","xml web service","ms microsoft cloud enterprise ").join(" "))];this.addPalette("mscaeEnterprise","CAE / Enterprise",!1,mxUtils.bind(this, -function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addMSCAEGeneralPalette=function(){var a=[this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.audio;fillColor=#7D7D7D;",50,50,"","Audio",null,null,this.getTagsForStencil("mxgraph.mscae.general","audio","ms microsoft cloud enterprise general ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.bug;fillColor=#7D7D7D;", -50,50,"","Bug",null,null,this.getTagsForStencil("mxgraph.mscae.general","bug","ms microsoft cloud enterprise general ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.enterprise;fillColor=#7D7D7D;pointerEvents=1;",30,50,"","Building",null,null,this.getTagsForStencil("mxgraph.mscae.general","building enterprise","ms microsoft cloud enterprise general ").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.cable_settop_tv_box;strokeColor=#000000;fillColor=#7D7D7D;",50,24,"","Cable Settop TV Box",null,null,this.getTagsForStencil("mxgraph.mscae.general","cable settop tv television box","ms microsoft cloud enterprise general ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.calendar;fillColor=#7D7D7D;pointerEvents=1;", -50,40,"","Calendar",null,null,this.getTagsForStencil("mxgraph.mscae.general","calendar","ms microsoft cloud enterprise general ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.chart;fillColor=#7D7D7D;pointerEvents=1;",50,48,"","Chart",null,null,this.getTagsForStencil("mxgraph.mscae.general","chart","ms microsoft cloud enterprise general ").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.checkmark;fillColor=#91D250;pointerEvents=1;",41,50,"","Checkmark (success)",null,null,this.getTagsForStencil("mxgraph.mscae.general","checkmark success","ms microsoft cloud enterprise general ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.continuous_cycle;fillColor=#7D7D7D;pointerEvents=1;", -48,50,"","Continuous Cycle (circle)",null,null,this.getTagsForStencil("mxgraph.mscae.general","continuous cycle circle","ms microsoft cloud enterprise general ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.crossout;fillColor=#FF0000;pointerEvents=1;",40,50,"","Crossout (failure)",null,null,this.getTagsForStencil("mxgraph.mscae.general","crossout failure", -"ms microsoft cloud enterprise general ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.cut_and_paste;fillColor=#7D7D7D;pointerEvents=1;",50,34,"","Cut and Paste",null,null,this.getTagsForStencil("mxgraph.mscae.general","cut and paste","ms microsoft cloud enterprise general ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.filter;fillColor=#7D7D7D;", -50,45,"","Filter",null,null,this.getTagsForStencil("mxgraph.mscae.general","filter","ms microsoft cloud enterprise general ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.folder;fillColor=#7D7D7D;",50,43,"","Folder",null,null,this.getTagsForStencil("mxgraph.mscae.general","folder","ms microsoft cloud enterprise general ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.game_controller;fillColor=#7D7D7D;", -50,35,"","Game Controller",null,null,this.getTagsForStencil("mxgraph.mscae.general","game controller gamepad","ms microsoft cloud enterprise general ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.gears;fillColor=#7D7D7D;pointerEvents=1;",50,42,"","Gears",null,null,this.getTagsForStencil("mxgraph.mscae.general","gears","ms microsoft cloud enterprise general ").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.graph;fillColor=#7D7D7D;",50,50,"","Graph",null,null,this.getTagsForStencil("mxgraph.mscae.general","graph","ms microsoft cloud enterprise general ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.like;fillColor=#7D7D7D;", -50,47,"","Like",null,null,this.getTagsForStencil("mxgraph.mscae.general","like","ms microsoft cloud enterprise general ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.not_allowed;fillColor=#DE5900;pointerEvents=1;",50,50,"","Not Allowed",null,null,this.getTagsForStencil("mxgraph.mscae.general","not allowed","ms microsoft cloud enterprise general ").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.pointer;fillColor=#91D250;",50,50,"","Pointer (circle)",null,null,this.getTagsForStencil("mxgraph.mscae.general","pointer circle","ms microsoft cloud enterprise general ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.slider_bar_horizontal;fillColor=#7D7D7D;pointerEvents=1;", -50,21,"","Slider Bar (horizontal)",null,null,this.getTagsForStencil("mxgraph.mscae.general","slider bar horizontal hor","ms microsoft cloud enterprise general ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.slider_bar_vertical;fillColor=#7D7D7D;pointerEvents=1;",22,50,"","Slider Bar (vertical)",null,null,this.getTagsForStencil("mxgraph.mscae.general", -"slider bar vertical hor","ms microsoft cloud enterprise general ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.task_list;fillColor=#7D7D7D;pointerEvents=1;",38,47,"","Task List (backlog)",null,null,this.getTagsForStencil("mxgraph.mscae.general","task list backlog","ms microsoft cloud enterprise general ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.tasks;fillColor=#7D7D7D;pointerEvents=1;", -38,50,"","Tasks",null,null,this.getTagsForStencil("mxgraph.mscae.general","tasks","ms microsoft cloud enterprise general ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.tunnel;fillColor=#7D7D7D;",50,9,"","Tunnel",null,null,this.getTagsForStencil("mxgraph.mscae.general","tunnel","ms microsoft cloud enterprise general ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.usb;fillColor=#7D7D7D;pointerEvents=1;", -50,23,"","USB",null,null,this.getTagsForStencil("mxgraph.mscae.general","usb","ms microsoft cloud enterprise general ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.user;fillColor=#7D7D7D;",47,50,"","User",null,null,this.getTagsForStencil("mxgraph.mscae.general","user","ms microsoft cloud enterprise general ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.video;fillColor=#7D7D7D;pointerEvents=1;", -49,50,"","Video",null,null,this.getTagsForStencil("mxgraph.mscae.general","video","ms microsoft cloud enterprise general ").join(" "))];this.addPalette("mscaeGeneral","CAE / General",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addMSCAEGeneralSymbolsPalette=function(){var a=[this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general_symbols.attachments;fillColor=#7D7D7D;", -29,50,"","Attachments",null,null,this.getTagsForStencil("mxgraph.mscae.general_symbols","attachments","ms microsoft cloud enterprise general symbols ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.audio;fillColor=#7D7D7D;",50,50,"","Audio",null,null,this.getTagsForStencil("mxgraph.mscae.general_symbols","audio","ms microsoft cloud enterprise general symbols ").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.bug;fillColor=#7D7D7D;",50,50,"","Bug",null,null,this.getTagsForStencil("mxgraph.mscae.general_symbols","bug","ms microsoft cloud enterprise general symbols ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.cable_settop_tv_box;fillColor=#7D7D7D;", -50,24,"","Cable Settop Box",null,null,this.getTagsForStencil("mxgraph.mscae.general_symbols","cable settop box","ms microsoft cloud enterprise general symbols ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.calendar;fillColor=#7D7D7D;",50,40,"","Calendar",null,null,this.getTagsForStencil("mxgraph.mscae.general_symbols","calendar","ms microsoft cloud enterprise general symbols ").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.chart;fillColor=#7D7D7D;",50,48,"","Chart",null,null,this.getTagsForStencil("mxgraph.mscae.general_symbols","chart","ms microsoft cloud enterprise general symbols ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.checkmark;fillColor=#92D050;", -41,50,"","Checkmark",null,null,this.getTagsForStencil("mxgraph.mscae.general_symbols","checkmark","ms microsoft cloud enterprise general symbols ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general_symbols.clock_time;fillColor=#0078D7;",50,50,"","Clock / Time",null,null,this.getTagsForStencil("mxgraph.mscae.general_symbols","clock time","ms microsoft cloud enterprise general symbols ").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.continuous_cycle;fillColor=#7D7D7D;",48,50,"","Continuous Cycle",null,null,this.getTagsForStencil("mxgraph.mscae.general_symbols","continuous cycle","ms microsoft cloud enterprise general symbols ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.crossout;fillColor=#FF0000;", -40,50,"","Crossout (failure)",null,null,this.getTagsForStencil("mxgraph.mscae.general_symbols","crossout failure","ms microsoft cloud enterprise general symbols ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.cut_and_paste;fillColor=#7D7D7D;",50,34,"","Cut and Paste",null,null,this.getTagsForStencil("mxgraph.mscae.general_symbols","cut and paste", -"ms microsoft cloud enterprise general symbols ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general_symbols.ellipses;fillColor=#0078D7;",50,7,"","Ellipses",null,null,this.getTagsForStencil("mxgraph.mscae.general_symbols","ellipses","ms microsoft cloud enterprise general symbols ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general_symbols.favorite;fillColor=#FDE57B;", -14,20,"","Favorite",null,null,this.getTagsForStencil("mxgraph.mscae.general_symbols","favorite","ms microsoft cloud enterprise general symbols ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.folder;fillColor=#7D7D7D;",50,43,"","Folder",null,null,this.getTagsForStencil("mxgraph.mscae.general_symbols","folder","ms microsoft cloud enterprise general symbols ").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.game_controller;fillColor=#7D7D7D;",50,35,"","Game Controller",null,null,this.getTagsForStencil("mxgraph.mscae.general_symbols","game controller","ms microsoft cloud enterprise general symbols ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general_symbols.gears;fillColor=#7D7D7D;", -50,42,"","Gears",null,null,this.getTagsForStencil("mxgraph.mscae.general_symbols","gears","ms microsoft cloud enterprise general symbols ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.graph;fillColor=#7D7D7D;",50,50,"","Graph",null,null,this.getTagsForStencil("mxgraph.mscae.general_symbols","graph","ms microsoft cloud enterprise general symbols ").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.like;fillColor=#7D7D7D;",50,47,"","Like",null,null,this.getTagsForStencil("mxgraph.mscae.general_symbols","like","ms microsoft cloud enterprise general symbols ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.not_allowed;fillColor=#DD5900;", -50,50,"","Not Allowed",null,null,this.getTagsForStencil("mxgraph.mscae.general_symbols","not allowed","ms microsoft cloud enterprise general symbols ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;shape=ellipse;perimeter=ellipsePerimeter;dashPattern=1 4;strokeColor=none;fillColor=#92D050;fontSize=12;fontColor=#FFFFFF;align=center;spacing=0;fontStyle=1;",25,25,"12","Numbered Label",null,null,this.getTagsForStencil("mxgraph.mscae.general_symbols","numbered label","ms microsoft cloud enterprise general symbols ").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;shape=ellipse;perimeter=ellipsePerimeter;dashPattern=1 4;strokeColor=none;fillColor=#E90D8B;fontSize=12;fontColor=#FFFFFF;align=center;spacing=0;fontStyle=1;",25,25,"1","Number Magenta",null,null,this.getTagsForStencil("mxgraph.mscae.general_symbols","numbered label","ms microsoft cloud enterprise general symbols ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;shape=ellipse;perimeter=ellipsePerimeter;dashPattern=1 4;strokeColor=none;fillColor=#FF8C00;fontSize=12;fontColor=#FFFFFF;align=center;spacing=0;fontStyle=1;", -25,25,"1","Number Orange",null,null,this.getTagsForStencil("mxgraph.mscae.general_symbols","numbered orange","ms microsoft cloud enterprise general symbols ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;shape=ellipse;perimeter=ellipsePerimeter;dashPattern=1 4;strokeColor=none;fillColor=#C00000;fontSize=12;fontColor=#FFFFFF;align=center;spacing=0;fontStyle=1;",25,25,"1","Number Label",null,null,this.getTagsForStencil("mxgraph.mscae.general_symbols","numbered label","ms microsoft cloud enterprise general symbols ").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general_symbols.num_label_rotate;fillColor=#92D050;fontSize=12;fontColor=#FFFFFF;align=center;spacing=0;fontStyle=1;",25,25,"12","Numbered Label Rotate Pointer",null,null,this.getTagsForStencil("mxgraph.mscae.general_symbols","num label rotate","ms microsoft cloud enterprise general symbols ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general_symbols.premium_star;fillColor=#FDE57B;", -12,11,"","Premium Star",null,null,this.getTagsForStencil("mxgraph.mscae.general_symbols","premium star","ms microsoft cloud enterprise general symbols ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general_symbols.slider_bar_horz;fillColor=#7D7D7D;",81,30,"","Slider Bar (horizontal)",null,null,this.getTagsForStencil("mxgraph.mscae.general_symbols", -"slider bar horizontal","ms microsoft cloud enterprise general symbols ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general_symbols.slider_bar_vert;fillColor=#7D7D7D;",35,80,"","Slider Bar (vertical)",null,null,this.getTagsForStencil("mxgraph.mscae.general_symbols","slider bar vertical","ms microsoft cloud enterprise general symbols ").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.task_list;fillColor=#7D7D7D;",41,50,"","Task List",null,null,this.getTagsForStencil("mxgraph.mscae.general_symbols","task list","ms microsoft cloud enterprise general symbols ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.tasks;fillColor=#7D7D7D;", -38,50,"","Tasks",null,null,this.getTagsForStencil("mxgraph.mscae.general_symbols","tasks","ms microsoft cloud enterprise general symbols ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.tunnel;fillColor=#7D7D7D;",50,9,"","Tunnel",null,null,this.getTagsForStencil("mxgraph.mscae.general_symbols","tunnel","ms microsoft cloud enterprise general symbols ").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.user;fillColor=#7D7D7D;",47,50,"","User",null,null,this.getTagsForStencil("mxgraph.mscae.general_symbols","user","ms microsoft cloud enterprise general symbols ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.video;fillColor=#7D7D7D;", -49,50,"","Video",null,null,this.getTagsForStencil("mxgraph.mscae.general_symbols","video","ms microsoft cloud enterprise general symbols ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general_symbols.waiting;fillColor=#7D7D7D;",46,50,"","Waiting",null,null,this.getTagsForStencil("mxgraph.mscae.general_symbols","waiting","ms microsoft cloud enterprise general symbols ").join(" "))]; -this.addPalette("mscaeGeneral Symbols","CAE / General Symbols",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addMSCAEIntunePalette=function(){var a=[this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.account_portal;fillColor=#505050;",43,50,"","Account Portal",null,null,this.getTagsForStencil("mxgraph.mscae.intune", -"account portal","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.administration;fillColor=#505050;",30,50,"","Administration",null,null,this.getTagsForStencil("mxgraph.mscae.intune","administration","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.alerts;fillColor=#505050;", -50,50,"","Alerts",null,null,this.getTagsForStencil("mxgraph.mscae.intune","alerts","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.apps;fillColor=#505050;",50,50,"","Apps",null,null,this.getTagsForStencil("mxgraph.mscae.intune","apps","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.certificate;fillColor=#505050;", -50,49,"","Certificate (Compliance)",null,null,this.getTagsForStencil("mxgraph.mscae.intune","certificate compliance","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.client_software;fillColor=#505050;",50,45,"","Client Software Deployment Wizard",null,null,this.getTagsForStencil("mxgraph.mscae.intune", -"client software deployment wizard","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.company_portal;fillColor=#505050;",50,38,"","Company Portal",null,null,this.getTagsForStencil("mxgraph.mscae.intune","company portal","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.computer_inventory;fillColor=#505050;", -50,45,"","Computer Inventory",null,null,this.getTagsForStencil("mxgraph.mscae.intune","computer inventory","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.conditional_access_exchange;fillColor=#505050;",49,50,"","Conditional Access (Exchange)",null,null,this.getTagsForStencil("mxgraph.mscae.intune", -"conditional access exchange","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.conditional_access_sharepoint;fillColor=#505050;",44,50,"","Conditional Access (Sharepoint)",null,null,this.getTagsForStencil("mxgraph.mscae.intune","conditional access sharepoint","ms microsoft cloud enterprise intune").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.connector;fillColor=#505050;",50,17,"","Connector",null,null,this.getTagsForStencil("mxgraph.mscae.intune","connector","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.dashboard;fillColor=#505050;", -50,40,"","Dashboard",null,null,this.getTagsForStencil("mxgraph.mscae.intune","dashboard","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.data_migration_wizard;fillColor=#505050;",50,48,"","Data Migration Wizard",null,null,this.getTagsForStencil("mxgraph.mscae.intune","data migration wizard","ms microsoft cloud enterprise intune").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.detected_software;fillColor=#505050;",50,50,"","Detected Software",null,null,this.getTagsForStencil("mxgraph.mscae.intune","detected software","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.device_group;fillColor=#505050;", -50,50,"","Device Group",null,null,this.getTagsForStencil("mxgraph.mscae.intune","device group","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.device_health;fillColor=#505050;",50,31,"","Device Health",null,null,this.getTagsForStencil("mxgraph.mscae.intune","device_health","ms microsoft cloud enterprise intune").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.device_history;fillColor=#505050;",45,50,"","Device History",null,null,this.getTagsForStencil("mxgraph.mscae.intune","device history","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.device_os;fillColor=#505050;", -49,50,"","Device OS",null,null,this.getTagsForStencil("mxgraph.mscae.intune","device os operating system","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.end_protection;fillColor=#505050;",48,50,"","End Protection",null,null,this.getTagsForStencil("mxgraph.mscae.intune","end protection","ms microsoft cloud enterprise intune").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.exchange_connector;fillColor=#505050;",50,49,"","Exchange Connector",null,null,this.getTagsForStencil("mxgraph.mscae.intune","exchange connector","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.internet;fillColor=#ffffff;strokeColor=#7f7f7f;", -50,31,"","Expandable Cloud",null,null,this.getTagsForStencil("mxgraph.mscae.intune","expandable cloud","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.groups;fillColor=#505050;",50,48,"","Groups",null,null,this.getTagsForStencil("mxgraph.mscae.intune","groups","ms microsoft cloud enterprise intune").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.hybrid;fillColor=#505050;",50,39,"","Hybrid",null,null,this.getTagsForStencil("mxgraph.mscae.intune","hybrid","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.intune_certificate_profiles;fillColor=#505050;", -40,50,"","Intune Certificate Profiles",null,null,this.getTagsForStencil("mxgraph.mscae.intune","certificate profiles","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.intune_connector;fillColor=#505050;",82,59,"","Intune Connector",null,null,this.getTagsForStencil("mxgraph.mscae.intune","intune connector", -"ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.intune_email_profiles;fillColor=#505050;",50,50,"","Intune Email Profiles",null,null,this.getTagsForStencil("mxgraph.mscae.intune","email profiles","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.intune_managed_app;fillColor=#505050;", -50,38,"","Intune Managed App",null,null,this.getTagsForStencil("mxgraph.mscae.intune","managed app application","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.intune_mobile_application_management;fillColor=#505050;",49,50,"","Intune Mobile Application Management",null,null,this.getTagsForStencil("mxgraph.mscae.intune", -"mobile app aplication management","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.intune_vpn_profiles;fillColor=#505050;",42,50,"","Intune VPN Profiles",null,null,this.getTagsForStencil("mxgraph.mscae.intune","vpn virtual private network profiles","ms microsoft cloud enterprise intune").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.intune_wifi_profiles;fillColor=#505050;",43,50,"","Intune WiFi Profiles",null,null,this.getTagsForStencil("mxgraph.mscae.intune","wifi profiles","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.inventory_license;fillColor=#505050;", -50,48,"","Inventory License",null,null,this.getTagsForStencil("mxgraph.mscae.intune","inventory license","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.inventory_software;fillColor=#505050;",50,49,"","Inventory Software",null,null,this.getTagsForStencil("mxgraph.mscae.intune","inventory software","ms microsoft cloud enterprise intune").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.license_group;fillColor=#505050;",50,49,"","License Group",null,null,this.getTagsForStencil("mxgraph.mscae.intune","license group","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.license_installation;fillColor=#505050;", -50,43,"","License Installation",null,null,this.getTagsForStencil("mxgraph.mscae.intune","license installation","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.microsoft_intune;fillColor=#505050;",50,40,"","MS Intune",null,null,this.getTagsForStencil("mxgraph.mscae.intune","microsoft","ms microsoft cloud enterprise intune").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.mobile_inventory;fillColor=#505050;",44,50,"","Mobile Inventory",null,null,this.getTagsForStencil("mxgraph.mscae.intune","mobile inventory","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.noncompliant_apps;fillColor=#505050;", -46,50,"","Noncompliant Apps",null,null,this.getTagsForStencil("mxgraph.mscae.intune","noncompliant apps applications","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.policy;fillColor=#505050;",50,50,"","Policy",null,null,this.getTagsForStencil("mxgraph.mscae.intune","policy","ms microsoft cloud enterprise intune").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.protection;fillColor=#505050;",48,50,"","Protection",null,null,this.getTagsForStencil("mxgraph.mscae.intune","protection","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.reports;fillColor=#505050;", -46,50,"","Reports",null,null,this.getTagsForStencil("mxgraph.mscae.intune","reports","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.settings;fillColor=#505050;",50,50,"","Settings",null,null,this.getTagsForStencil("mxgraph.mscae.intune","settings","ms microsoft cloud enterprise intune").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.subscription_portal;fillColor=#505050;",50,50,"","Subscription Portal",null,null,this.getTagsForStencil("mxgraph.mscae.intune","subscription portal","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.terms_and_conditions;fillColor=#505050;", -37,50,"","Terms and Conditions",null,null,this.getTagsForStencil("mxgraph.mscae.intune","terms and conditions","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.update;fillColor=#505050;",48,50,"","Update",null,null,this.getTagsForStencil("mxgraph.mscae.intune","update","ms microsoft cloud enterprise intune").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.user_group;fillColor=#505050;",50,37,"","User Group",null,null,this.getTagsForStencil("mxgraph.mscae.intune","user group","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.user_management;fillColor=#505050;", -50,46,"","User Management",null,null,this.getTagsForStencil("mxgraph.mscae.intune","user management","ms microsoft cloud enterprise intune").join(" "))];this.addPalette("mscaeIntune","CAE / Intune",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addMSCAEOMSPalette=function(){var a=[this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.oms.alerts;fillColor=#505050;", -41,50,"","Alerts",null,null,this.getTagsForStencil("mxgraph.mscae.oms","alerts","ms microsoft cloud enterprise oms").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.oms.app_with_changes;fillColor=#505050;",50,32,"","App With Changes",null,null,this.getTagsForStencil("mxgraph.mscae.oms","app with changes","ms microsoft cloud enterprise oms").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.oms.assessments;fillColor=#505050;",47,50,"","Assessments",null,null,this.getTagsForStencil("mxgraph.mscae.oms","assessments","ms microsoft cloud enterprise oms").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.oms.capacity;fillColor=#505050;", -41,50,"","Capacity",null,null,this.getTagsForStencil("mxgraph.mscae.oms","capacity","ms microsoft cloud enterprise oms").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.oms.config_assessment;fillColor=#505050;",50,45,"","Config Assessment",null,null,this.getTagsForStencil("mxgraph.mscae.oms","config assessment","ms microsoft cloud enterprise oms").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.oms.dashboard;fillColor=#505050;",50,41,"","Dashboard",null,null,this.getTagsForStencil("mxgraph.mscae.oms","dashboard","ms microsoft cloud enterprise oms").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.oms.dependency_monitor;fillColor=#505050;", -50,49,"","Dependency Monitor",null,null,this.getTagsForStencil("mxgraph.mscae.oms","dependency monitor","ms microsoft cloud enterprise oms").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.oms.diagnostics;fillColor=#505050;",50,34,"","Diagnostics",null,null,this.getTagsForStencil("mxgraph.mscae.oms","diagnostics","ms microsoft cloud enterprise oms").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.oms.jobs;fillColor=#505050;",50,50,"","Jobs",null,null,this.getTagsForStencil("mxgraph.mscae.oms","jobs","ms microsoft cloud enterprise oms").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.oms.log_management;fillColor=#505050;", -41,50,"","Log Management",null,null,this.getTagsForStencil("mxgraph.mscae.oms","log management","ms microsoft cloud enterprise oms").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.oms.log_search;fillColor=#505050;",50,50,"","Log Search",null,null,this.getTagsForStencil("mxgraph.mscae.oms","log search","ms microsoft cloud enterprise oms").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.oms.malware_assessment;fillColor=#505050;",49,50,"","Malware Assessment",null,null,this.getTagsForStencil("mxgraph.mscae.oms","malware assessment","ms microsoft cloud enterprise oms").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.oms.overview;fillColor=#505050;", -50,41,"","Overview",null,null,this.getTagsForStencil("mxgraph.mscae.oms","overview","ms microsoft cloud enterprise oms").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.runbooks;fillColor=#505050;",46,50,"","Runbooks",null,null,this.getTagsForStencil("mxgraph.mscae.oms","runbooks","ms microsoft cloud enterprise oms").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.oms.security;fillColor=#505050;", -50,50,"","Security",null,null,this.getTagsForStencil("mxgraph.mscae.oms","security","ms microsoft cloud enterprise oms").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.oms.server_width_changes;fillColor=#505050;",47,50,"","Server Width Changes",null,null,this.getTagsForStencil("mxgraph.mscae.oms","server width changes","ms microsoft cloud enterprise oms").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.oms.services;fillColor=#505050;",49,50,"","Services",null,null,this.getTagsForStencil("mxgraph.mscae.oms","services","ms microsoft cloud enterprise oms").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.oms.solutions;fillColor=#505050;", -50,49,"","Solutions",null,null,this.getTagsForStencil("mxgraph.mscae.oms","solutions","ms microsoft cloud enterprise oms").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.oms.system_update;fillColor=#505050;",50,50,"","System Update",null,null,this.getTagsForStencil("mxgraph.mscae.oms","system update","ms microsoft cloud enterprise oms").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.oms.track_changes;fillColor=#505050;",42,50,"","Track Changes",null,null,this.getTagsForStencil("mxgraph.mscae.oms","track changes","ms microsoft cloud enterprise oms").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.oms.wire_data;fillColor=#505050;", -50,50,"","Wire Data",null,null,this.getTagsForStencil("mxgraph.mscae.oms","wire data","ms microsoft cloud enterprise oms").join(" "))];this.addPalette("mscaeOMS","CAE / OMS",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addMSCAEOpsManagerPalette=function(){var a=[this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.opsmanager.advanced_group_policy_management;fillColor=#0078D7;", -48,50,"","Advanced Group Policy Management",null,null,this.getTagsForStencil("mxgraph.mscae.opsmanager","advanced group policy management","ms microsoft cloud enterprise opsmanager ops manager operations").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.opsmanager.applications;fillColor=#0078D7;",49,50,"","Applications",null,null,this.getTagsForStencil("mxgraph.mscae.opsmanager", -"applications","ms microsoft cloud enterprise opsmanager ops manager operations").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.opsmanager.application_virtualization;fillColor=#0078D7;",50,50,"","Application Virtualization",null,null,this.getTagsForStencil("mxgraph.mscae.opsmanager","application virtualization","ms microsoft cloud enterprise opsmanager ops manager operations").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.opsmanager.app_controller;fillColor=#0078D7;",50,43,"","App Controller",null,null,this.getTagsForStencil("mxgraph.mscae.opsmanager","app controller","ms microsoft cloud enterprise opsmanager ops manager operations").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.opsmanager.configuration_manager;fillColor=#0078D7;", -46,50,"","Configuration Manager",null,null,this.getTagsForStencil("mxgraph.mscae.opsmanager","configuration manager","ms microsoft cloud enterprise opsmanager ops manager operations").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.opsmanager.data_protection_manager;fillColor=#0078D7;",44,50,"","Data Protection Manager",null,null,this.getTagsForStencil("mxgraph.mscae.opsmanager", -"data protection manager","ms microsoft cloud enterprise opsmanager ops manager operations").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.opsmanager.middleware;fillColor=#0078D7;",50,34,"","Middleware",null,null,this.getTagsForStencil("mxgraph.mscae.opsmanager","middleware","ms microsoft cloud enterprise opsmanager ops manager operations").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.opsmanager.ms_bitlocker_administration_and_management;fillColor=#0078D7;",46,50,"","MS Bitlocker Administration and management",null,null,this.getTagsForStencil("mxgraph.mscae.opsmanager","bitlocker administration and management","ms microsoft cloud enterprise opsmanager ops manager operations").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.opsmanager.ms_diagnostics_and_recovery_toolset;fillColor=#0078D7;", -50,48,"","MS Diagnostics and Recovery Toolset",null,null,this.getTagsForStencil("mxgraph.mscae.opsmanager","diagnostics and recovery toolset","ms microsoft cloud enterprise opsmanager ops manager operations").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.opsmanager.ms_enterprise_desktop_virtualization;fillColor=#0078D7;",50,50,"","MS Enterprise Desktop Virtualization", -null,null,this.getTagsForStencil("mxgraph.mscae.opsmanager","enterprise desktop virtualization","ms microsoft cloud enterprise opsmanager ops manager operations").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.opsmanager.ms_user_experience_virtualization;fillColor=#0078D7;",50,48,"","MS User Experience Virtualization",null,null,this.getTagsForStencil("mxgraph.mscae.opsmanager", -"user experience virtualization","ms microsoft cloud enterprise opsmanager ops manager operations").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.opsmanager.operations_manager;fillColor=#0078D7;",48,50,"","Operations Manager",null,null,this.getTagsForStencil("mxgraph.mscae.opsmanager","operations manager","ms microsoft cloud enterprise opsmanager ops manager operations").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.opsmanager.orchestrator;fillColor=#0078D7;",50,34,"","Orchestrator",null,null,this.getTagsForStencil("mxgraph.mscae.opsmanager","orchestrator","ms microsoft cloud enterprise opsmanager ops manager operations").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.opsmanager.pack;fillColor=#0078D7;", -44,50,"","Pack",null,null,this.getTagsForStencil("mxgraph.mscae.opsmanager","pack","ms microsoft cloud enterprise opsmanager ops manager operations").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.plug_and_play;fillColor=#0078D7;",40,50,"","Plug and Play",null,null,this.getTagsForStencil("mxgraph.mscae.opsmanager","plug and play","ms microsoft cloud enterprise opsmanager ops manager operations").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.opsmanager.runtime;fillColor=#0078D7;",50,35,"","Runtime",null,null,this.getTagsForStencil("mxgraph.mscae.opsmanager","runtime","ms microsoft cloud enterprise opsmanager ops manager operations").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.opsmanager.service_manager;fillColor=#0078D7;", -50,36,"","Service Manager",null,null,this.getTagsForStencil("mxgraph.mscae.opsmanager","service manager","ms microsoft cloud enterprise opsmanager ops manager operations").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general_symbols.slider_bar_vert;fillColor=#0078D7;",22,50,"","Slider Bar (vertical)",null,null,this.getTagsForStencil("mxgraph.mscae.opsmanager", -"slider bar vertical hor","ms microsoft cloud enterprise opsmanager ops manager operations").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general_symbols.slider_bar_horz;fillColor=#0078D7;",50,21,"","Slider Bar (horizontal)",null,null,this.getTagsForStencil("mxgraph.mscae.opsmanager","slider bar horizontal hor","ms microsoft cloud enterprise opsmanager ops manager operations").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.opsmanager.ssd;fillColor=#0078D7;",50,41,"","SSD",null,null,this.getTagsForStencil("mxgraph.mscae.opsmanager","ssd solid state drive","ms microsoft cloud enterprise opsmanager ops manager operations").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.opsmanager.virtual_machine_manager;fillColor=#0078D7;", -50,38,"","Virtual Machine Manager",null,null,this.getTagsForStencil("mxgraph.mscae.opsmanager","virtual machine manager","ms microsoft cloud enterprise opsmanager ops manager operations").join(" "))];this.addPalette("mscaeOpsManager","CAE / OpsManager",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addMSCAEOtherPalette=function(){var a=[this.createVertexTemplateEntry("shadow=0;dashed=0;strokeColor=none;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.other.access;fillColor=#BA2024;", -50,50,"","Access",null,null,this.getTagsForStencil("mxgraph.mscae.other","access","ms microsoft cloud enterprise other").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;strokeColor=none;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.other.bi_product_icon;fillColor=#000000;pointerEvents=1;",47,50,"","BI Product Icon",null,null,this.getTagsForStencil("mxgraph.mscae.other","bi product icon","ms microsoft cloud enterprise other").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;strokeColor=none;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.other.cortana;fillColor=#2CACE2;pointerEvents=1;",50,50,"","Cortana",null,null,this.getTagsForStencil("mxgraph.mscae.other","cortana","ms microsoft cloud enterprise other").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;strokeColor=none;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.other.excel;fillColor=#008540;", -50,50,"","Excel",null,null,this.getTagsForStencil("mxgraph.mscae.other","excel","ms microsoft cloud enterprise other").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;strokeColor=none;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.other.exchange;fillColor=#2471BA;",50,48,"","Exchange",null,null,this.getTagsForStencil("mxgraph.mscae.other","exchange","ms microsoft cloud enterprise other").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;strokeColor=none;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.other.lync;fillColor=#2471BA;", -50,48,"","Lync",null,null,this.getTagsForStencil("mxgraph.mscae.other","lync","ms microsoft cloud enterprise other").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;strokeColor=none;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.other.microsoft;",50,50,"","Microsoft",null,null,this.getTagsForStencil("mxgraph.mscae.other","microsoft","ms microsoft cloud enterprise other").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;strokeColor=none;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.other.outlook;fillColor=#2471BA;", -50,50,"","Outlook",null,null,this.getTagsForStencil("mxgraph.mscae.other","outlook","ms microsoft cloud enterprise other").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;strokeColor=none;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.other.powerappsicon;fillColor=#992065;",50,50,"","PowerAppsIcon",null,null,this.getTagsForStencil("mxgraph.mscae.other","powerappsicon power apps applications icon","ms microsoft cloud enterprise other").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;strokeColor=none;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.other.powerpoint;fillColor=#DE5D24;",50,50,"","PowerPoint",null,null,this.getTagsForStencil("mxgraph.mscae.other","powerpoint","ms microsoft cloud enterprise other").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;strokeColor=none;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.other.sharepoint;fillColor=#2471BA;", -50,49,"","Sharepoint",null,null,this.getTagsForStencil("mxgraph.mscae.other","sharepoint","ms microsoft cloud enterprise other").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;strokeColor=none;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.other.skype;fillColor=#00AEF2;",50,50,"","Skype",null,null,this.getTagsForStencil("mxgraph.mscae.other","skype","ms microsoft cloud enterprise other").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;strokeColor=none;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.other.windows;fillColor=#00188D;", -48,50,"","Windows",null,null,this.getTagsForStencil("mxgraph.mscae.other","windows","ms microsoft cloud enterprise other").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;strokeColor=none;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.other.word;fillColor=#2C3481;",50,50,"","Word",null,null,this.getTagsForStencil("mxgraph.mscae.other","word","ms microsoft cloud enterprise other").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;strokeColor=none;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.other.xbox;fillColor=#91D250;", -50,48,"","Xbox",null,null,this.getTagsForStencil("mxgraph.mscae.other","xbox","ms microsoft cloud enterprise other").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;strokeColor=none;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.other.xbox_one;",50,16,"","Xbox One",null,null,this.getTagsForStencil("mxgraph.mscae.other","xbox one","ms microsoft cloud enterprise other").join(" "))];this.addPalette("mscaeOther","CAE / Other",!1, -mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addMSCAESystemCenterPalette=function(){var a=[this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;strokeColor=none;shape=mxgraph.mscae.system_center.admin_console;fillColor=#515151;strokeColor=none;pointerEvents=1;",50,36,"","Admin Console",null,null,this.getTagsForStencil("mxgraph.mscae.system_center","admin console", -"ms microsoft cloud enterprise system center").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.database_server;fillColor=#515151;strokeColor=none;",38,50,"","Central Administration Site",null,null,this.getTagsForStencil("mxgraph.mscae.system_center","central administration site","ms microsoft cloud enterprise system center").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;strokeColor=none;shape=mxgraph.mscae.system_center.central_administration_site_sql;fillColor=#515151;strokeColor=none;", -38,50,"","Central Administration Site SQL",null,null,this.getTagsForStencil("mxgraph.mscae.system_center","central administration site sql","ms microsoft cloud enterprise system center").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;strokeColor=none;shape=mxgraph.mscae.system_center.cloud_distribution_point;fillColor=#515151;strokeColor=none;",46,50,"","Cloud Distribution Point",null,null,this.getTagsForStencil("mxgraph.mscae.system_center", -"cloud distribution point","ms microsoft cloud enterprise system center").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;strokeColor=none;shape=mxgraph.mscae.system_center.distribution_point;fillColor=#515151;strokeColor=none;",44,50,"","Distribution Point",null,null,this.getTagsForStencil("mxgraph.mscae.system_center","distribution point","ms microsoft cloud enterprise system center").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;strokeColor=none;shape=mxgraph.mscae.system_center.management_point;fillColor=#515151;strokeColor=none;",48,50,"","Management Point",null,null,this.getTagsForStencil("mxgraph.mscae.system_center","management point","ms microsoft cloud enterprise system center").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;strokeColor=none;shape=mxgraph.mscae.system_center.primary_site;fillColor=#515151;strokeColor=none;", -38,50,"","Primary Site",null,null,this.getTagsForStencil("mxgraph.mscae.system_center","primary site","ms microsoft cloud enterprise system center").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;strokeColor=none;shape=mxgraph.mscae.system_center.roles;fillColor=#515151;strokeColor=none;",42,50,"","Roles",null,null,this.getTagsForStencil("mxgraph.mscae.system_center","roles","ms microsoft cloud enterprise system center").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;strokeColor=none;shape=mxgraph.mscae.system_center.secondary_site;fillColor=#515151;strokeColor=none;pointerEvents=1;",41,50,"","Secondary Site",null,null,this.getTagsForStencil("mxgraph.mscae.system_center","secondary site","ms microsoft cloud enterprise system center").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;strokeColor=none;shape=mxgraph.mscae.system_center.software_update_point;fillColor=#515151;strokeColor=none;pointerEvents=1;", -50,43,"","Software Update Point",null,null,this.getTagsForStencil("mxgraph.mscae.system_center","software update point","ms microsoft cloud enterprise system center").join(" "))];this.addPalette("mscaeSystem Center","CAE / System Center",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addMSCAEVMPalette=function(){var a=[this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;strokeColor=none;shape=mxgraph.mscae.vm.active_directory;fillColor=#00188F;strokeColor=none;", -50,41,"","Active Directory",null,null,this.getTagsForStencil("mxgraph.mscae.vm","active directory","ms microsoft cloud enterprise vm virtual machine ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;strokeColor=none;shape=mxgraph.mscae.vm.active_directory_multi;fillColor=#00188F;strokeColor=none;",58,50,"","Active Directory (multi)",null,null,this.getTagsForStencil("mxgraph.mscae.vm", -"active directory multi","ms microsoft cloud enterprise vm virtual machine ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;strokeColor=none;shape=mxgraph.mscae.vm.application_server;fillColor=#00188F;strokeColor=none;",50,41,"","Application Server",null,null,this.getTagsForStencil("mxgraph.mscae.vm","application server","ms microsoft cloud enterprise vm virtual machine ").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;strokeColor=none;shape=mxgraph.mscae.vm.application_server_multi;fillColor=#00188F;strokeColor=none;",58,50,"","Application Server (multi)",null,null,this.getTagsForStencil("mxgraph.mscae.vm","application server multi","ms microsoft cloud enterprise vm virtual machine ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;strokeColor=none;shape=mxgraph.mscae.vm.database_server;fillColor=#00188F;strokeColor=none;", -50,41,"","Database Server",null,null,this.getTagsForStencil("mxgraph.mscae.vm","database server","ms microsoft cloud enterprise vm virtual machine ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;strokeColor=none;shape=mxgraph.mscae.vm.database_server_multi;fillColor=#00188F;strokeColor=none;",58,50,"","Database Server (multi)",null,null,this.getTagsForStencil("mxgraph.mscae.vm", -"database server multi","ms microsoft cloud enterprise vm virtual machine ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;strokeColor=none;shape=mxgraph.mscae.vm.directory_server;fillColor=#00188F;strokeColor=none;",50,41,"","Directory Server",null,null,this.getTagsForStencil("mxgraph.mscae.vm","directory server","ms microsoft cloud enterprise vm virtual machine ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;strokeColor=none;shape=mxgraph.mscae.vm.directory_server_multi;fillColor=#00188F;strokeColor=none;", -58,50,"","Directory Server (multi)",null,null,this.getTagsForStencil("mxgraph.mscae.vm","directory server multi","ms microsoft cloud enterprise vm virtual machine ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;strokeColor=none;shape=mxgraph.mscae.vm.domain_server;fillColor=#00188F;strokeColor=none;",50,41,"","Domain Server",null,null,this.getTagsForStencil("mxgraph.mscae.vm","domain server", -"ms microsoft cloud enterprise vm virtual machine ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;strokeColor=none;shape=mxgraph.mscae.vm.domain_server_multi;fillColor=#00188F;strokeColor=none;",58,50,"","Domain Server (multi)",null,null,this.getTagsForStencil("mxgraph.mscae.vm","domain server multi","ms microsoft cloud enterprise vm virtual machine ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;strokeColor=none;shape=mxgraph.mscae.vm.file_server2;fillColor=#00188F;strokeColor=none;", -50,41,"","File Server",null,null,this.getTagsForStencil("mxgraph.mscae.vm","file server","ms microsoft cloud enterprise vm virtual machine ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;strokeColor=none;shape=mxgraph.mscae.vm.file_server;fillColor=#00188F;strokeColor=none;",50,41,"","File Server",null,null,this.getTagsForStencil("mxgraph.mscae.vm","file server","ms microsoft cloud enterprise vm virtual machine ").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;strokeColor=none;shape=mxgraph.mscae.vm.file_server_multi;fillColor=#00188F;strokeColor=none;",58,50,"","File Server (multi)",null,null,this.getTagsForStencil("mxgraph.mscae.vm","file server multi","ms microsoft cloud enterprise vm virtual machine ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;strokeColor=none;shape=mxgraph.mscae.vm.web_server;fillColor=#00188F;strokeColor=none;", -50,41,"","Web Server",null,null,this.getTagsForStencil("mxgraph.mscae.vm","web server","ms microsoft cloud enterprise vm virtual machine ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;strokeColor=none;shape=mxgraph.mscae.vm.web_server_multi;fillColor=#00188F;strokeColor=none;",58,50,"","Web Server (multi)",null,null,this.getTagsForStencil("mxgraph.mscae.vm","web server multi","ms microsoft cloud enterprise vm virtual machine ").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;strokeColor=none;shape=mxgraph.mscae.vm.windows_server;fillColor=#00188F;strokeColor=none;",50,41,"","Windows Server",null,null,this.getTagsForStencil("mxgraph.mscae.vm","windows server","ms microsoft cloud enterprise vm virtual machine ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;strokeColor=none;shape=mxgraph.mscae.vm.windows_server_multi;fillColor=#00188F;strokeColor=none;", -58,50,"","Windows Server (multi)",null,null,this.getTagsForStencil("mxgraph.mscae.vm","windows server multi","ms microsoft cloud enterprise vm virtual machine ").join(" "))];this.addPalette("mscaeVirtual Machine","CAE / Virtual Machine",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addMSCAECloudColorPalette=function(){var a=[this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Active_Directory.svg;", -50,50,"","Active Directory",!1,null,this.getTagsForStencil("mxgraph.mscae","active directory","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/ActiveDirectory.svg;",50,50,"","Active Directory",!1,null,this.getTagsForStencil("mxgraph.mscae","active directory","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Active_Directory_Health_Monitoring.svg;", -50,50,"","Active Directory - Health Monitoring",!1,null,this.getTagsForStencil("mxgraph.mscae","active directory health monitoring","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/ActiveDirectoryDomain.svg;",50,50,"","Active Directory - Domain",!1,null,this.getTagsForStencil("mxgraph.mscae","active directory domain","ms microsoft cloud enterprise color ").join(" ")), -this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Address_Space.svg;",50,50*.57,"","Address Space",!1,null,this.getTagsForStencil("mxgraph.mscae","address space","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/AddTeamMember.svg;",50,43.5,"","AddTeamMember",!1,null,this.getTagsForStencil("mxgraph.mscae", -"add team member","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/ADFS.svg;",50,50,"","ADFS",!1,null,this.getTagsForStencil("mxgraph.mscae","adfs","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Advisor.svg;",50,50,"","Advisor", -!1,null,this.getTagsForStencil("mxgraph.mscae","advisor","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Alien.svg;",50,50,"","Alien",!1,null,this.getTagsForStencil("mxgraph.mscae","alien","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/AlienSad.svg;", -47,49,"","AlienSad",!1,null,this.getTagsForStencil("mxgraph.mscae","alien sad","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/API.svg;",50,43,"","API",!1,null,this.getTagsForStencil("mxgraph.mscae","api application programming interface","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/APIDefinition.svg;", -44,50,"","APIDefinition",!1,null,this.getTagsForStencil("mxgraph.mscae","api definition application programming interface","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/API_Management.svg;",50,41.5,"","API Management",!1,null,this.getTagsForStencil("mxgraph.mscae","api management application programming interface","ms microsoft cloud enterprise color ").join(" ")), -this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/App_Service.svg;",50,50,"","App Service",!1,null,this.getTagsForStencil("mxgraph.mscae","app service","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/App_Service_API_Apps.svg;",50,43,"","App Service - API Apps",!1,null,this.getTagsForStencil("mxgraph.mscae", -"app service api apps application programmming interface","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/AppServiceConnectivity.svg;",50,46,"","App Service - Connectivity",!1,null,this.getTagsForStencil("mxgraph.mscae","app service application connectivity","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/AppServiceEnvironment.svg;", -50,46,"","App Service - Environment",!1,null,this.getTagsForStencil("mxgraph.mscae","app service application environment","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/App_Service_Frontend.svg;",50,37,"","App Service - Frontend",!1,null,this.getTagsForStencil("mxgraph.mscae","app service frontend application","ms microsoft cloud enterprise color ").join(" ")), -this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/App_Service_IPAddress.svg;",50,42.5,"","App Service - IP Address",!1,null,this.getTagsForStencil("mxgraph.mscae","app service application ip address internet protocol","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/App_Service_Mobile_App.svg;", -34.5,50,"","App Service - Mobile App",!1,null,this.getTagsForStencil("mxgraph.mscae","app service mobile application","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/App_Service_Worker_Pools.svg;",50,50,"","App Service - Worker Pools",!1,null,this.getTagsForStencil("mxgraph.mscae","app service worker pools application","ms microsoft cloud enterprise color ").join(" ")), -this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Application_Gateway.svg;",50,50,"","Application Gateway",!1,null,this.getTagsForStencil("mxgraph.mscae","application app gateway","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Application_Insights.svg;",32.5,50,"","Application Insights", -!1,null,this.getTagsForStencil("mxgraph.mscae","application app insights","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/ARMExplorer.svg;",50,43,"","ARMExplorer",!1,null,this.getTagsForStencil("mxgraph.mscae","armExplorer","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Auditing.svg;", -40,50,"","Auditing",!1,null,this.getTagsForStencil("mxgraph.mscae","auditing","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/AuditingServer.svg;",50,50,"","Auditing Server",!1,null,this.getTagsForStencil("mxgraph.mscae","auditing server","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/AutoBackup.svg;", -50,50,"","AutoBackup",!1,null,this.getTagsForStencil("mxgraph.mscae","autobackup auto backup","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Automation.svg;",50,50,"","Automation",!1,null,this.getTagsForStencil("mxgraph.mscae","automation","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Avatar.svg;", -50,50,"","Avatar",!1,null,this.getTagsForStencil("mxgraph.mscae","avatar","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/AvatarDefault.svg;",50,50,"","Avatar Default",!1,null,this.getTagsForStencil("mxgraph.mscae","avatar default","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/AvatarUnknown.svg;", -30,30,"","Avatar Unknown",!1,null,this.getTagsForStencil("mxgraph.mscae","avatar unknown","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Avatar.svg;",50,50,"","Avatar",!1,null,this.getTagsForStencil("mxgraph.mscae","avatar","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Backlog.svg;", -50,41.5,"","Backlog",!1,null,this.getTagsForStencil("mxgraph.mscae","backlog","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Backup.svg;",50,41.5,"","Backup",!1,null,this.getTagsForStencil("mxgraph.mscae","backup","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Batch.svg;", -50,46.5,"","Batch",!1,null,this.getTagsForStencil("mxgraph.mscae","batch","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Batch_Task.svg;",50,44,"","Batch Task",!1,null,this.getTagsForStencil("mxgraph.mscae","batch task","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Batch_TaskVM.svg;", -50,47.5,"","Batch TaskVM",!1,null,this.getTagsForStencil("mxgraph.mscae","batch task vm virtual machine","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/BillingHub.svg;",50,50,"","Billing Hub",!1,null,this.getTagsForStencil("mxgraph.mscae","billing hub","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/BlobBlock.svg;", -50,42.5,"","Blob Block",!1,null,this.getTagsForStencil("mxgraph.mscae","blob block","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/BlobPage.svg;",50,42.5,"","Blob Page",!1,null,this.getTagsForStencil("mxgraph.mscae","blob page","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/BizTalk_Services.svg;", -50,50,"","BizTalk Services",!1,null,this.getTagsForStencil("mxgraph.mscae","biztalk services","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/BizTalk_Services_Hybrid_Connections.svg;",50,50,"","BizTalk Services - Hybrid Connections",!1,null,this.getTagsForStencil("mxgraph.mscae","biztalk services hybrid connections","ms microsoft cloud enterprise color ").join(" ")), -this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Blockchain.svg;",50,37.5,"","Blockchain",!1,null,this.getTagsForStencil("mxgraph.mscae","blockchain","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Book.svg;",50,38,"","Book",!1,null,this.getTagsForStencil("mxgraph.mscae","book", -"ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Branch.svg;",50,50,"","Branch",!1,null,this.getTagsForStencil("mxgraph.mscae","branch","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Browser.svg;",50,42.5,"","Browser",!1,null, -this.getTagsForStencil("mxgraph.mscae","browser","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Bug.svg;",50,50,"","Bug",!1,null,this.getTagsForStencil("mxgraph.mscae","bug","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Building_Blocks.svg;", -50,44.5,"","Building Blocks",!1,null,this.getTagsForStencil("mxgraph.mscae","building blocks","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Builds.svg;",50,50,"","Builds",!1,null,this.getTagsForStencil("mxgraph.mscae","builds","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Calendar.svg;", -50,50,"","Calendar",!1,null,this.getTagsForStencil("mxgraph.mscae","calendar","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Cache_including_Redis.svg;",50,50,"","Cache (including Redis)",!1,null,this.getTagsForStencil("mxgraph.mscae","Cache including Redis","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Cache_Redis_Product.svg;", -50,42,"","Cache (Redis Product)",!1,null,this.getTagsForStencil("mxgraph.mscae","cache redis product","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/CDNrocket.svg;",50,50,"","CDNrocket",!1,null,this.getTagsForStencil("mxgraph.mscae","cdn rocket","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Certificate.svg;", -50,42,"","Certificate",!1,null,this.getTagsForStencil("mxgraph.mscae","certificate","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Chart.svg;",50,48.5,"","Chart",!1,null,this.getTagsForStencil("mxgraph.mscae","chart","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Check.svg;", -50,43,"","Check",!1,null,this.getTagsForStencil("mxgraph.mscae","check","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/ClassicIPAddress.svg;",50,42.5,"","ClassicIPAddress",!1,null,this.getTagsForStencil("mxgraph.mscae","classicipaddress classic ip address internet protocol","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/ClassicStorage.svg;", -50,43,"","ClassicStorage",!1,null,this.getTagsForStencil("mxgraph.mscae","classicstorage classic storage","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Clock.svg;",50,50,"","Clock",!1,null,this.getTagsForStencil("mxgraph.mscae","clock time","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Cloud_Service.svg;", -50,42.5,"","Cloud Service",!1,null,this.getTagsForStencil("mxgraph.mscae","cloud service","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Code.svg;",50,42.5,"","Code",!1,null,this.getTagsForStencil("mxgraph.mscae","code","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Cognitive_Services_Computer_Vision.svg;", -50,50,"","Cognitive Services - Computer Vision",!1,null,this.getTagsForStencil("mxgraph.mscae","cognitive services computer vision","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Cognitive_Services_emotion.svg;",50,50,"","Cognitive Services - Emotion",!1,null,this.getTagsForStencil("mxgraph.mscae","cognitive services emotion","ms microsoft cloud enterprise color ").join(" ")), -this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Cognitive_Services_face.svg;",50,50,"","Cognitive Services - Face",!1,null,this.getTagsForStencil("mxgraph.mscae","cognitive services face","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Cognitive_Services_luis.svg;",50,50,"", -"Cognitive Services - Luis",!1,null,this.getTagsForStencil("mxgraph.mscae","cognitive services luis","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Cognitive_Services_recommendations.svg;",50,50,"","Cognitive Services - Recommendations",!1,null,this.getTagsForStencil("mxgraph.mscae","cognitive services recommendations","ms microsoft cloud enterprise color ").join(" ")), -this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Cognitive_Services_Speech.svg;",50,50,"","Cognitive Services - Speech",!1,null,this.getTagsForStencil("mxgraph.mscae","cognitive services speech","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Cognitive_Services_textanalytics.svg;", -50,50,"","Cognitive Services - Textanalytics",!1,null,this.getTagsForStencil("mxgraph.mscae","cognitive services textanalytics","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Cognitive_Services_web_language_model.svg;",50,50,"","Cognitive Services - Web Language Model",!1,null,this.getTagsForStencil("mxgraph.mscae","cognitive services web language model","ms microsoft cloud enterprise color ").join(" ")), -this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Commits.svg;",50,47,"","Commits",!1,null,this.getTagsForStencil("mxgraph.mscae","commits","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Connection.svg;",50,31,"","Connection",!1,null,this.getTagsForStencil("mxgraph.mscae","connection", -"ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/ContactInfo.svg;",50,50,"","Contact Info",!1,null,this.getTagsForStencil("mxgraph.mscae","contactinfo contact info","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Container_Service.svg;", -50,37,"","Container Service",!1,null,this.getTagsForStencil("mxgraph.mscae","container_Service","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Content_Delivery_Network.svg;",50,23,"","Content Delivery Network",!1,null,this.getTagsForStencil("mxgraph.mscae","content delivery network","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/ContentManagementSystem.svg;", -50,50,"","Content Management System",!1,null,this.getTagsForStencil("mxgraph.mscae","content management system","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/ContinuousExport.svg;",50,50,"","Continuous Export",!1,null,this.getTagsForStencil("mxgraph.mscae","continuous export","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Controls.svg;", -42,50,"","Controls",!1,null,this.getTagsForStencil("mxgraph.mscae","controls vertical","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/ControlsHorizontal.svg;",50,42,"","Controls Horizontal",!1,null,this.getTagsForStencil("mxgraph.mscae","controls horizontal","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/CosmosDB.svg;", -50,50,"","CosmosDB",!1,null,this.getTagsForStencil("mxgraph.mscae","cosmosdb cosmos db database","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Counter.svg;",50,40,"","Counter",!1,null,this.getTagsForStencil("mxgraph.mscae","counter","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Cubes.svg;", -50,49,"","Cubes",!1,null,this.getTagsForStencil("mxgraph.mscae","cubes","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/CustomDomain.svg;",50,42.5,"","Custom Domain",!1,null,this.getTagsForStencil("mxgraph.mscae","custom domain","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/CustomerInsights.svg;", -50,50,"","CustomerInsights",!1,null,this.getTagsForStencil("mxgraph.mscae","customerinsights customer insights","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Data_Catalog.svg;",47,50,"","Data Catalog",!1,null,this.getTagsForStencil("mxgraph.mscae","data catalog","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Data_Factory.svg;", -50,50,"","Data Factory",!1,null,this.getTagsForStencil("mxgraph.mscae","data factory","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Data_Lake_Analytics.svg;",50,50,"","Data Lake - Analytics",!1,null,this.getTagsForStencil("mxgraph.mscae","data lake analytics","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Data_Lake_Store.svg;", -50,39,"","Data Lake - Store",!1,null,this.getTagsForStencil("mxgraph.mscae","data lake store","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Data_Warehouse.svg;",50,48.5,"","Data Warehouse",!1,null,this.getTagsForStencil("mxgraph.mscae","data warehouse","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Database_General.svg;", -37.5,50,"","Database (general)",!1,null,this.getTagsForStencil("mxgraph.mscae","database general","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/DatabaseRestore.svg;",38,50,"","Database Restore",!1,null,this.getTagsForStencil("mxgraph.mscae","database restore","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/dataExport.svg;", -37.5,50,"","dataExport",!1,null,this.getTagsForStencil("mxgraph.mscae","dataexport data export","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/dataRetention.svg;",37.5,50,"","dataRetention",!1,null,this.getTagsForStencil("mxgraph.mscae","dataretention","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Databricks.svg;", -47.5,50,"","Databricks",!1,null,this.getTagsForStencil("mxgraph.mscae","databricks","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/DataServices_category_rollup.svg;",37.5,50,"","DataServices - Category Rollup",!1,null,this.getTagsForStencil("mxgraph.mscae","dataservices category rollup","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/DevConsole.svg;", -50,42.5,"","DevConsole",!1,null,this.getTagsForStencil("mxgraph.mscae","devconsole dev developer console","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/DevTest_Labs.svg;",50,50,"","DevTest Labs",!1,null,this.getTagsForStencil("mxgraph.mscae","devtest labs","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/DirectorySync.svg;", -50,50,"","DirectorySync",!1,null,this.getTagsForStencil("mxgraph.mscae","directorysync directory sync","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Discard.svg;",50,50,"","Discard",!1,null,this.getTagsForStencil("mxgraph.mscae","discard","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Discs.svg;", -50,42.5,"","Discs",!1,null,this.getTagsForStencil("mxgraph.mscae","discs","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/DNS.svg;",50,50,"","DNS",!1,null,this.getTagsForStencil("mxgraph.mscae","dns domain name server","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/DocumentDB.svg;", -38,50,"","DocumentDB",!1,null,this.getTagsForStencil("mxgraph.mscae","documentdb document db database","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Download.svg;",50,46,"","Download",!1,null,this.getTagsForStencil("mxgraph.mscae","download","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Elastic_Database_Pools.svg;", -50,50,"","Elastic Database Pools",!1,null,this.getTagsForStencil("mxgraph.mscae","elastic database pools","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Event_Grid.svg;",50,50,"","Event Grid",!1,null,this.getTagsForStencil("mxgraph.mscae","event grid","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Event_Hubs.svg;", -48.5,50,"","Event Hubs",!1,null,this.getTagsForStencil("mxgraph.mscae","event hubs","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/EventLog.svg;",45,50,"","Event Log",!1,null,this.getTagsForStencil("mxgraph.mscae","event log","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Express_Route.svg;", -50,30.5,"","Express Route",!1,null,this.getTagsForStencil("mxgraph.mscae","express route","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Extensions.svg;",50,50,"","Extensions",!1,null,this.getTagsForStencil("mxgraph.mscae","extensions","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Favorite.svg;", -35,50,"","Favorite",!1,null,this.getTagsForStencil("mxgraph.mscae","favorite","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/File.svg;",44,50,"","File",!1,null,this.getTagsForStencil("mxgraph.mscae","file","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Files.svg;", -48,50,"","Files",!1,null,this.getTagsForStencil("mxgraph.mscae","files","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Folder.svg;",50,46,"","Folder",!1,null,this.getTagsForStencil("mxgraph.mscae","folder","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/FolderBlank.svg;", -50,46,"","Folder (Blank)",!1,null,this.getTagsForStencil("mxgraph.mscae","folder blank","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/FolderCube.svg;",50,46,"","Folder (Cube)",!1,null,this.getTagsForStencil("mxgraph.mscae","folder cube","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/FolderWebsite.svg;", -50,46,"","Folder (Website)",!1,null,this.getTagsForStencil("mxgraph.mscae","folder website","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/ForPlacementOnly.svg;",50,50,"","For Placement Only",!1,null,this.getTagsForStencil("mxgraph.mscae","for placement only","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Ftp.svg;", -50,42.5,"","FTP",!1,null,this.getTagsForStencil("mxgraph.mscae","ftp file transfer protocol","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Functions.svg;",50,46,"","Functions",!1,null,this.getTagsForStencil("mxgraph.mscae","functions","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/GalleryManagement.svg;", -50,50,"","Gallery Management",!1,null,this.getTagsForStencil("mxgraph.mscae","gallery management","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Gateway.svg;",44,50,"","Gateway",!1,null,this.getTagsForStencil("mxgraph.mscae","gateway","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Gear.svg;", -50,50,"","Gear",!1,null,this.getTagsForStencil("mxgraph.mscae","gear","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Gear_2.svg;",50,50,"","Gear",!1,null,this.getTagsForStencil("mxgraph.mscae","gear","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/GearAlternate.svg;", -50,50,"","Gear (Alternate)",!1,null,this.getTagsForStencil("mxgraph.mscae","gear alternate","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/GearAlternate_2.svg;",50,50,"","Gear (Alternate)",!1,null,this.getTagsForStencil("mxgraph.mscae","gear alternate","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/GeoReplicationPremium.svg;", -50,50,"","GeoReplication Premium",!1,null,this.getTagsForStencil("mxgraph.mscae","geo replication premium","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/GeoReplicationStandard.svg;",45,47.5,"","GeoReplication Standard",!1,null,this.getTagsForStencil("mxgraph.mscae","geo replication standard","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/GetMoreLicense.svg;", -50,50,"","GetMoreLicense",!1,null,this.getTagsForStencil("mxgraph.mscae","get more license","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/GetStarted.svg;",50,37,"","GetStarted",!1,null,this.getTagsForStencil("mxgraph.mscae","get started","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Gift.svg;", -48,50,"","Gift",!1,null,this.getTagsForStencil("mxgraph.mscae","gift","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Globe.svg;",43.5,50,"","Globe",!1,null,this.getTagsForStencil("mxgraph.mscae","globe","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/GlobeError.svg;", -43.5,50,"","Globe (Error)",!1,null,this.getTagsForStencil("mxgraph.mscae","globe error","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/GlobeSuccess.svg;",43.5,50,"","Globe (Success)",!1,null,this.getTagsForStencil("mxgraph.mscae","globe success","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/GlobeWarning.svg;", -43.5,50,"","Globe (Warning)",!1,null,this.getTagsForStencil("mxgraph.mscae","globe warning","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Go.svg;",50,50,"","Go",!1,null,this.getTagsForStencil("mxgraph.mscae","go","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/GreatScott.svg;", -50,44,"","Great Scott",!1,null,this.getTagsForStencil("mxgraph.mscae","great scott","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Grid.svg;",50,50,"","Grid",!1,null,this.getTagsForStencil("mxgraph.mscae","grid","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Grid3x3.svg;", -37,37,"","Grid 3x3",!1,null,this.getTagsForStencil("mxgraph.mscae","grid 3x3 3by3","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Guide.svg;",50,50,"","Guide",!1,null,this.getTagsForStencil("mxgraph.mscae","guide","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Guide_2.svg;", -50,50,"","Guide",!1,null,this.getTagsForStencil("mxgraph.mscae","guide","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Hammer.svg;",50,50,"","Hammer",!1,null,this.getTagsForStencil("mxgraph.mscae","hammer","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/HDInsight.svg;", -50,38.5,"","HDInsight",!1,null,this.getTagsForStencil("mxgraph.mscae","hdinsight","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/HealthErrorBadge.svg;",50,39,"","Health Error Badge",!1,null,this.getTagsForStencil("mxgraph.mscae","health error badge","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/HealthWarningBadge.svg;", -50,36.5,"","Health Warning Badge",!1,null,this.getTagsForStencil("mxgraph.mscae","health error badge","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Heart.svg;",50,42.5,"","Heart",!1,null,this.getTagsForStencil("mxgraph.mscae","heart","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/HeartPulse.svg;", -50,42.5,"","Heart (Pulse)",!1,null,this.getTagsForStencil("mxgraph.mscae","heart pulse","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Home.svg;",50,45,"","Home",!1,null,this.getTagsForStencil("mxgraph.mscae","home","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/HybridConnectionEndpoint.svg;", -50,33,"","Hybrid Connection Endpoint",!1,null,this.getTagsForStencil("mxgraph.mscae","hybrid connection endpoint","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Image.svg;",50,39,"","Image",!1,null,this.getTagsForStencil("mxgraph.mscae","image","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/InboundNAT.svg;", -50,50,"","Inbound NAT",!1,null,this.getTagsForStencil("mxgraph.mscae","inbound nat netowrk address translation","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/InboundRule.svg;",50,50,"","Inbound Rule",!1,null,this.getTagsForStencil("mxgraph.mscae","inbound rule","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Info.svg;", -50,50,"","Info",!1,null,this.getTagsForStencil("mxgraph.mscae","info","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Info_2.svg;",50,50,"","Info",!1,null,this.getTagsForStencil("mxgraph.mscae","info","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Input.svg;", -50,45,"","Input",!1,null,this.getTagsForStencil("mxgraph.mscae","input","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/InputOutput.svg;",68.5,45,"","Input Output",!1,null,this.getTagsForStencil("mxgraph.mscae","input output","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/InstallVisualStudio.svg;", -50,50,"","Install Visual Studio",!1,null,this.getTagsForStencil("mxgraph.mscae","install visual studio","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/IOT_edge.svg;",48,50,"","IOT - Edge",!1,null,this.getTagsForStencil("mxgraph.mscae","IOT edge internet of things","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Job.svg;", -50,50,"","Job",!1,null,this.getTagsForStencil("mxgraph.mscae","job","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/JourneyHub.svg;",46,50,"","Journey Hub",!1,null,this.getTagsForStencil("mxgraph.mscae","journey hub","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Key.svg;", -31,50,"","Key",!1,null,this.getTagsForStencil("mxgraph.mscae","key","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/KeyboardShortcuts.svg;",50,30.5,"","Keyboard Shortcuts",!1,null,this.getTagsForStencil("mxgraph.mscae","keyboard shortcuts","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/KeyVault.svg;", -45,50,"","KeyVault",!1,null,this.getTagsForStencil("mxgraph.mscae","KeyVault","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/KuduKnife.svg;",41,50,"","Kudu Knife",!1,null,this.getTagsForStencil("mxgraph.mscae","kudu knife","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/LaunchPortal.svg;", -50,50,"","Launch Portal",!1,null,this.getTagsForStencil("mxgraph.mscae","launch portal","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Load_Balancer_feature.svg;",50,50,"","Load Balancer (feature)",!1,null,this.getTagsForStencil("mxgraph.mscae","load balancer feature","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/LocalNetwork.svg;", -30,50,"","Local Network",!1,null,this.getTagsForStencil("mxgraph.mscae","local network","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Location.svg;",23,50,"","Location",!1,null,this.getTagsForStencil("mxgraph.mscae","location","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Log.svg;", -45,50,"","Log",!1,null,this.getTagsForStencil("mxgraph.mscae","log","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/LogDiagnostics.svg;",45,50,"","Log (Diagnostics)",!1,null,this.getTagsForStencil("mxgraph.mscae","log diagnostics","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/LogStreaming.svg;", -45,50,"","Log (Streaming)",!1,null,this.getTagsForStencil("mxgraph.mscae","log streaming","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Logic_Apps.svg;",50,39,"","Logic Apps",!1,null,this.getTagsForStencil("mxgraph.mscae","logic apps","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Machine_Learning.svg;", -49,50,"","Machine Learning",!1,null,this.getTagsForStencil("mxgraph.mscae","machine learning","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/MachineLearningServicePlans.svg;",49,50,"","Machine Learning - Service Plans",!1,null,this.getTagsForStencil("mxgraph.mscae","machine learning service plans","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/MachineLearningWebServices.svg;", -49,50,"","Machine Learning - Web Services",!1,null,this.getTagsForStencil("mxgraph.mscae","machine learning web services","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/MachineLearningWorkspaces.svg;",49,50,"","Machine Learning - Workspaces",!1,null,this.getTagsForStencil("mxgraph.mscae","machine learning workspaces","ms microsoft cloud enterprise color ").join(" ")), -this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/ManagedApplications.svg;",44,50,"","Managed Applications",!1,null,this.getTagsForStencil("mxgraph.mscae","managed applications","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/ManagePortal.svg;",50,50,"","Manage Portal",!1,null, -this.getTagsForStencil("mxgraph.mscae","manage portal","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Management_Portal.svg;",50,42.5,"","Management Portal",!1,null,this.getTagsForStencil("mxgraph.mscae","management portal","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/MD_snapshot.svg;", -50,42,"","MD Snapshot",!1,null,this.getTagsForStencil("mxgraph.mscae","md snapshot","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/MediaFile.svg;",44,50,"","Media File",!1,null,this.getTagsForStencil("mxgraph.mscae","media file","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Media_Services.svg;", -43.5,50,"","Media Services",!1,null,this.getTagsForStencil("mxgraph.mscae","media services","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Module.svg;",37,37,"","Module",!1,null,this.getTagsForStencil("mxgraph.mscae","module","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Mobile_Engagement.svg;", -34.5,50,"","Mobile Engagement",!1,null,this.getTagsForStencil("mxgraph.mscae","mobile engagement","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Monitoring.svg;",50,50,"","Monitoring",!1,null,this.getTagsForStencil("mxgraph.mscae","monitoring","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Multi_Factor_Authentication.svg;", -23,50,"","Multi-Factor Authentication",!1,null,this.getTagsForStencil("mxgraph.mscae","multi factor authentication","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/MySQL_ClearDB_database.svg;",38,50,"","MySQL ClearDB Database",!1,null,this.getTagsForStencil("mxgraph.mscae","mysql cleardb database","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/NetworkInterfaceCard.svg;", -44.5,50,"","Network Interface Card",!1,null,this.getTagsForStencil("mxgraph.mscae","network interface card","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Network_watcher.svg;",50,50,"","Network Watcher",!1,null,this.getTagsForStencil("mxgraph.mscae","network watcher","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/New.svg;", -50,50,"","New",!1,null,this.getTagsForStencil("mxgraph.mscae","new","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/NextBill.svg;",50,50,"","Next Bill",!1,null,this.getTagsForStencil("mxgraph.mscae","next bill","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Notification.svg;", -50,50,"","Notification",!1,null,this.getTagsForStencil("mxgraph.mscae","notification","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Notification_Hubs.svg;",50,50,"","Notification Hubs",!1,null,this.getTagsForStencil("mxgraph.mscae","notification hubs","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/NSG.svg;", -36.5,50,"","NSG",!1,null,this.getTagsForStencil("mxgraph.mscae","nsg","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Offer.svg;",50,50,"","Offer",!1,null,this.getTagsForStencil("mxgraph.mscae","offer","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/OnPremiseSetup.svg;", -44.5,50,"","On-Premise Setup",!1,null,this.getTagsForStencil("mxgraph.mscae","on premise setup","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Operations_Management_Suite.svg;",50,50,"","Operations Management Suite",!1,null,this.getTagsForStencil("mxgraph.mscae","operations management suite","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/OutboundNAT.svg;", -50,50,"","Outbound NAT",!1,null,this.getTagsForStencil("mxgraph.mscae","outbound nat network address translation","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/OutboundRule.svg;",50,50,"","Outbound Rule",!1,null,this.getTagsForStencil("mxgraph.mscae","outbound rule","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Output.svg;", -50,38,"","Output",!1,null,this.getTagsForStencil("mxgraph.mscae","output","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/overageCosts.svg;",50,50,"","Overage Costs",!1,null,this.getTagsForStencil("mxgraph.mscae","overage costs","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Paused.svg;", -41.5,50,"","Paused",!1,null,this.getTagsForStencil("mxgraph.mscae","overage costs","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Peerings.svg;",50,50,"","Peerings",!1,null,this.getTagsForStencil("mxgraph.mscae","peerings","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Pending.svg;", -50,50,"","Pending",!1,null,this.getTagsForStencil("mxgraph.mscae","pending","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Person.svg;",37,50,"","Person",!1,null,this.getTagsForStencil("mxgraph.mscae","person","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/PersonWithFriend.svg;", -50,49.5,"","Person with Friend",!1,null,this.getTagsForStencil("mxgraph.mscae","person with friend","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Phone.svg;",50,50,"","Phone",!1,null,this.getTagsForStencil("mxgraph.mscae","phone","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/PortalCurrent.svg;", -50,42.5,"","Portal (Current)",!1,null,this.getTagsForStencil("mxgraph.mscae","portal current","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Postpone.svg;",50,50,"","Postpone",!1,null,this.getTagsForStencil("mxgraph.mscae","postpone","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Power.svg;", -31,50,"","Power",!1,null,this.getTagsForStencil("mxgraph.mscae","power","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Powershell.svg;",50,42.5,"","Powershell",!1,null,this.getTagsForStencil("mxgraph.mscae","powershell","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/PowerUp.svg;", -50,50,"","PowerUp",!1,null,this.getTagsForStencil("mxgraph.mscae","powerup","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/PowerUp_2.svg;",50,50,"","PowerUp",!1,null,this.getTagsForStencil("mxgraph.mscae","powerup","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/PreviewRight.svg;", -50,50,"","PreviewRight",!1,null,this.getTagsForStencil("mxgraph.mscae","preview right","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Probe.svg;",45,50,"","Probe",!1,null,this.getTagsForStencil("mxgraph.mscae","probe","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/ProcessExplorer.svg;", -50,46,"","Process Explorer",!1,null,this.getTagsForStencil("mxgraph.mscae","process explorers","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/ProductionReadyDB.svg;",37.5,50,"","Production Ready DB",!1,null,this.getTagsForStencil("mxgraph.mscae","production ready db database","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Publish.svg;", -50,45,"","Publish",!1,null,this.getTagsForStencil("mxgraph.mscae","publish","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/PullRequest.svg;",41.5,50,"","Pull Request",!1,null,this.getTagsForStencil("mxgraph.mscae","pull request","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/QSDiagnostics.svg;", -50,39.5,"","QS Diagnostics",!1,null,this.getTagsForStencil("mxgraph.mscae","qs diagnostics","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/QSFile.svg;",44.5,50,"","QS File",!1,null,this.getTagsForStencil("mxgraph.mscae","qs file","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/QSMail.svg;", -50,38,"","QS Mail",!1,null,this.getTagsForStencil("mxgraph.mscae","qs mail","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/QSWarning.svg;",50,44.5,"","QS Warning",!1,null,this.getTagsForStencil("mxgraph.mscae","qs warning","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Queued.svg;", -50,37.5,"","Queued",!1,null,this.getTagsForStencil("mxgraph.mscae","queued","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Quickstart.svg;",50,34,"","Quickstart",!1,null,this.getTagsForStencil("mxgraph.mscae","quickstart","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Quota.svg;", -50,50,"","Quota",!1,null,this.getTagsForStencil("mxgraph.mscae","quota","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Rain.svg;",50,50,"","Raid",!1,null,this.getTagsForStencil("mxgraph.mscae","rain","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/RDMA.svg;", -50,49,"","RDMA",!1,null,this.getTagsForStencil("mxgraph.mscae","rdma","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Recommendation.svg;",50,34,"","Recommendation",!1,null,this.getTagsForStencil("mxgraph.mscae","recommendation","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/RemoteApp.svg;", -50,50,"","RemoteApp",!1,null,this.getTagsForStencil("mxgraph.mscae","remoteapp","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/ResourceDefault.svg;",45,50,"","Resource (Default)",!1,null,this.getTagsForStencil("mxgraph.mscae","resource default","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/ResourceGroup.svg;", -50,40.5,"","Resource Group",!1,null,this.getTagsForStencil("mxgraph.mscae","resource group","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/ResourceLinked.svg;",50,50,"","Resource Linked",!1,null,this.getTagsForStencil("mxgraph.mscae","resource linked","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/ResourceProvider.svg;", -50,50,"","Resource Provider",!1,null,this.getTagsForStencil("mxgraph.mscae","resource provider","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/ResourceRole.svg;",48.5,50,"","Resource Role",!1,null,this.getTagsForStencil("mxgraph.mscae","resource role","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Route_Filter.svg;", -50,42,"","Route Filter",!1,null,this.getTagsForStencil("mxgraph.mscae","route filter","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Rule.svg;",32.5,50,"","Rule",!1,null,this.getTagsForStencil("mxgraph.mscae","rule","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Runbooks.svg;", -46.5,50,"","Runbooks",!1,null,this.getTagsForStencil("mxgraph.mscae","runbooks","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/RunbookSource.svg;",50,50,"","Runbook Source",!1,null,this.getTagsForStencil("mxgraph.mscae","runbook source","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Scale.svg;", -50,50,"","Scale",!1,null,this.getTagsForStencil("mxgraph.mscae","scale","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/ScaleAlt.svg;",50,50,"","Scale Alt",!1,null,this.getTagsForStencil("mxgraph.mscae","scale alt","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/SchedulerJob.svg;", -42.5,50,"","Scheduler Job",!1,null,this.getTagsForStencil("mxgraph.mscae","scheduler job","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/SchedulerJobCollection.svg;",50,43.5,"","Scheduler Job Collection",!1,null,this.getTagsForStencil("mxgraph.mscae","scheduler job collection","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/SDK.svg;", -50,50,"","SDK",!1,null,this.getTagsForStencil("mxgraph.mscae","sdk software development kit","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Search.svg;",50,50,"","Search",!1,null,this.getTagsForStencil("mxgraph.mscae","search","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/SearchGrid.svg;", -50,49,"","Search Grid",!1,null,this.getTagsForStencil("mxgraph.mscae","search grid","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Security_Center.svg;",36.5,50,"","Security Center",!1,null,this.getTagsForStencil("mxgraph.mscae","security center","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Server.svg;", -29.5,50,"","Server",!1,null,this.getTagsForStencil("mxgraph.mscae","server","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Service_Bus.svg;",50,50,"","Service Bus",!1,null,this.getTagsForStencil("mxgraph.mscae","service bus","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Service_Bus_Queues.svg;", -50,50,"","Service Bus - Queues",!1,null,this.getTagsForStencil("mxgraph.mscae","service bus queues","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Service_Bus_Relay.svg;",50,50,"","Service Bus - Relay",!1,null,this.getTagsForStencil("mxgraph.mscae","service bus relay","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Service_Bus_Topics.svg;", -50,50,"","Service Bus - Topics",!1,null,this.getTagsForStencil("mxgraph.mscae","service bus topics","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Service_Fabric.svg;",50,50,"","Service Fabric",!1,null,this.getTagsForStencil("mxgraph.mscae","service fabric","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/ServerFarm.svg;", -49.5,50,"","Server Farm",!1,null,this.getTagsForStencil("mxgraph.mscae","server farm","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/ServiceHealth.svg;",50,44,"","Service Health",!1,null,this.getTagsForStencil("mxgraph.mscae","service health","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/ServerProxy.svg;", -40,50,"","Server Proxy",!1,null,this.getTagsForStencil("mxgraph.mscae","server proxy","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/serversAndMobileDevices.svg;",46,50,"","Servers and Mobile Devices",!1,null,this.getTagsForStencil("mxgraph.mscae","server servers mobile device devices","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/ShieldFirewall.svg;", -36.5,50,"","Shield Firewall",!1,null,this.getTagsForStencil("mxgraph.mscae","shield firewall","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Site_Recovery.svg;",50,42,"","Site Recovery",!1,null,this.getTagsForStencil("mxgraph.mscae","site recovery","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/SQL_Database_generic.svg;", -37.5,50,"","SQL Database (generic)",!1,null,this.getTagsForStencil("mxgraph.mscae","sql database generic","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/SQL_DataWarehouse.svg;",50,48.5,"","SQL Data Warehouse",!1,null,this.getTagsForStencil("mxgraph.mscae","sql data warehouse","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/SQLQueryPerformanceCheck.svg;", -50,50,"","SQL Query Performance Check",!1,null,this.getTagsForStencil("mxgraph.mscae","sql query performance check","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/SQL_Stretch_Database.svg;",50,34.5,"","SQL Stretch Database",!1,null,this.getTagsForStencil("mxgraph.mscae","sql stretch database","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/SSD.svg;", -50,40,"","SSD",!1,null,this.getTagsForStencil("mxgraph.mscae","ssd solid state drive","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/StackOverflow.svg;",40,50,"","StackOverflow",!1,null,this.getTagsForStencil("mxgraph.mscae","stackoverflow stack overflow","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Storage.svg;", -50,43,"","Storage",!1,null,this.getTagsForStencil("mxgraph.mscae","storage","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/StorageAzureFiles.svg;",50,42.5,"","Storage (Azure Files)",!1,null,this.getTagsForStencil("mxgraph.mscae","storage azure files","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/StorageContainer.svg;", -50,42.5,"","Storage (Container)",!1,null,this.getTagsForStencil("mxgraph.mscae","storage container","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/StorageQueue.svg;",50,42.5,"","Storage Queue",!1,null,this.getTagsForStencil("mxgraph.mscae","storage queue","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/StorageReplica.svg;", -50,50,"","Storage Replica",!1,null,this.getTagsForStencil("mxgraph.mscae","storage replica","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Storage_sync_service.svg;",50,50,"","Storage Sync Service",!1,null,this.getTagsForStencil("mxgraph.mscae","storage sync service","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Store_Marketplace.svg;", -43.5,50,"","Store Marketplace",!1,null,this.getTagsForStencil("mxgraph.mscae","store marketplace","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/StorSimple.svg;",50,45,"","StorSimple",!1,null,this.getTagsForStencil("mxgraph.mscae","storsimple","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Stream_Analytics.svg;", -50,39,"","Stream Analytics",!1,null,this.getTagsForStencil("mxgraph.mscae","stream analytics","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Subnet.svg;",50,50*.57,"","Subnet",!1,null,this.getTagsForStencil("mxgraph.mscae","subnet","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Support.svg;", -32.5,50,"","Support",!1,null,this.getTagsForStencil("mxgraph.mscae","support","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Support_2.svg;",32.5,50,"","Support",!1,null,this.getTagsForStencil("mxgraph.mscae","support","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Tag.svg;", -50,49.5,"","Tag",!1,null,this.getTagsForStencil("mxgraph.mscae","tag","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Tags.svg;",42,50,"","Tags",!1,null,this.getTagsForStencil("mxgraph.mscae","tags","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Task.svg;", -50,44,"","Task",!1,null,this.getTagsForStencil("mxgraph.mscae","task","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Tasks.svg;",50,38,"","Tasks",!1,null,this.getTagsForStencil("mxgraph.mscae","tasks","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/TasksPolychromatic.svg;", -50,38.5,"","Tasks (Polychromatic)",!1,null,this.getTagsForStencil("mxgraph.mscae","tasks polychromatic","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/TaskVM.svg;",50,47.5,"","Task VM",!1,null,this.getTagsForStencil("mxgraph.mscae","task vm virtual machine","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Tax.svg;", -50,50,"","Tax",!1,null,this.getTagsForStencil("mxgraph.mscae","tax","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/TeamProject.svg;",50,49.5,"","Team Project",!1,null,this.getTagsForStencil("mxgraph.mscae","team project","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/TFSVCRepository.svg;", -50,50,"","TFSVCRepository",!1,null,this.getTagsForStencil("mxgraph.mscae","tfsvc repository","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/TimeSeriesInsights.svg;",50,50,"","TimeSeriesInsights",!1,null,this.getTagsForStencil("mxgraph.mscae","timeseriesinsights time series insights","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Toolbox.svg;", -50,45,"","Toolbox",!1,null,this.getTagsForStencil("mxgraph.mscae","toolbox","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Tools.svg;",47,50,"","Tools",!1,null,this.getTagsForStencil("mxgraph.mscae","tools","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Traffic_Manager.svg;", -50,50,"","Traffic Manager",!1,null,this.getTagsForStencil("mxgraph.mscae","traffic manager","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/TrafficManagerDisabled.svg;",50,50,"","Traffic Manager (Disabled)",!1,null,this.getTagsForStencil("mxgraph.mscae","traffic manager disabled","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/TrafficManagerEnabled.svg;", -50,50,"","Traffic Manager (Enabled)",!1,null,this.getTagsForStencil("mxgraph.mscae","traffic manager enabled","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Unidentified_Feature_Object.svg;",50,50,"","Unidentified Feature Object",!1,null,this.getTagsForStencil("mxgraph.mscae","unidentified feature object","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/UserDefinedRoute.svg;", -50,50,"","User Defined Route",!1,null,this.getTagsForStencil("mxgraph.mscae","user defined route","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Variables.svg;",50,48,"","Variables",!1,null,this.getTagsForStencil("mxgraph.mscae","variables","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Versions.svg;", -50,44.5,"","Versions",!1,null,this.getTagsForStencil("mxgraph.mscae","versions","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Virtual_Datacenter.svg;",50,50,"","Virtual Datacenter",!1,null,this.getTagsForStencil("mxgraph.mscae","virtual datacenter","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Virtual_Machine.svg;", -50,46,"","Virtual Machine",!1,null,this.getTagsForStencil("mxgraph.mscae","virtual machine","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Virtual_Machine_2.svg;",50,46,"","Virtual Machine",!1,null,this.getTagsForStencil("mxgraph.mscae","virtual machine","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/VM_Scale_Set.svg;", -50,50,"","Virtual Machine - Scale Set",!1,null,this.getTagsForStencil("mxgraph.mscae","vm scale set virtual machine","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Virtual_Machines_Availability_Set.svg;",50,50,"","Virtual Machines - Availability Set",!1,null,this.getTagsForStencil("mxgraph.mscae","virtual machines availability set","ms microsoft cloud enterprise color ").join(" ")), -this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Virtual_Machines_Linux.svg;",41,50,"","Virtual Machines - Linux",!1,null,this.getTagsForStencil("mxgraph.mscae","virtual machines linux","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/VirtualMachineLinux.svg;",50,46,"","Virtual Machines - Linux", -!1,null,this.getTagsForStencil("mxgraph.mscae","virtual machines linux","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/VirtualMachineWindows.svg;",50,46,"","Virtual Machines - Windows",!1,null,this.getTagsForStencil("mxgraph.mscae","virtual machines windows","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Virtual_Network.svg;", -50,50*.57,"","Virtual Network",!1,null,this.getTagsForStencil("mxgraph.mscae","virtual network","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Visual_Studio_Team_Services_CodePlex_source.svg;",50,37.5,"","Visual Studio Team Services - CodePlex Source",!1,null,this.getTagsForStencil("mxgraph.mscae","visual studio team services codePlex source","ms microsoft cloud enterprise color ").join(" ")), -this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/VMScale.svg;",50,50,"","VM Scale",!1,null,this.getTagsForStencil("mxgraph.mscae","vm virtual machine scale","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/VPN_Gateway.svg;",45,50,"","VPN Gateway",!1,null,this.getTagsForStencil("mxgraph.mscae", -"vpn gateway virtual private network","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/VPNPointToSite.svg;",50,50,"","VPN Point to Site",!1,null,this.getTagsForStencil("mxgraph.mscae","vpn point to site virtual private network","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/VPNSiteToSite.svg;", -44.5,50,"","VPN Site to Site",!1,null,this.getTagsForStencil("mxgraph.mscae","vpn site to site virtual private network","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/WebEnvironment.svg;",50,41.5,"","Web Environment",!1,null,this.getTagsForStencil("mxgraph.mscae","web environment","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/WebHosting.svg;", -50,50,"","Web Hosting",!1,null,this.getTagsForStencil("mxgraph.mscae","web hosting","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/WebNetwork.svg;",50,45.5,"","Web Network",!1,null,this.getTagsForStencil("mxgraph.mscae","web network","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/WebApp_WebJobs.svg;", -50,50,"","WebApp - WebJobs",!1,null,this.getTagsForStencil("mxgraph.mscae","webapp webjobs","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Webhooks.svg;",50,50,"","Webhooks",!1,null,this.getTagsForStencil("mxgraph.mscae","webhooks","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/WebsitePower.svg;", -50,50,"","Website Power",!1,null,this.getTagsForStencil("mxgraph.mscae","website power","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/WebsiteReplicator.svg;",50,50,"","Website Replicator",!1,null,this.getTagsForStencil("mxgraph.mscae","website replicator","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/WebsiteSettings.svg;", -50,50,"","Website Settings",!1,null,this.getTagsForStencil("mxgraph.mscae","website settings","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/WebsiteStaging.svg;",43.5,50,"","Website Staging",!1,null,this.getTagsForStencil("mxgraph.mscae","website staging","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/WebSlots.svg;", -47.5,50,"","Web Slots",!1,null,this.getTagsForStencil("mxgraph.mscae","web slots","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/WebTest.svg;",50,46,"","Web Test",!1,null,this.getTagsForStencil("mxgraph.mscae","web test","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Workflow.svg;", -50,50,"","Workflow",!1,null,this.getTagsForStencil("mxgraph.mscae","workflow","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Wrench.svg;",50,50,"","Wrench",!1,null,this.getTagsForStencil("mxgraph.mscae","wrench","ms microsoft cloud enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/XboxController.svg;", -50,35,"","Xbox Controller",!1,null,this.getTagsForStencil("mxgraph.mscae","xbox controller","ms microsoft cloud enterprise color ").join(" "))];this.addPalette("mscaeCloud Color","CAE / Cloud (color)",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addMSCAEDeprecatedColorPalette=function(){var a=[this.createVertexTemplateEntry("aspect=fixed;html=1;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/dep/App_Service_Logic_App.svg;", -50,50,"","App Service - Logic App",!1,null,this.getTagsForStencil("mxgraph.mscae","app service logic app","ms microsoft deprecated enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/dep/Application_Gateway.svg;",50,50,"","Application Gateway",!1,null,this.getTagsForStencil("mxgraph.mscae","application gateway","ms microsoft deprecated enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/dep/Content_Delivery_Network.svg;", -50,50,"","Content Delivery Network",!1,null,this.getTagsForStencil("mxgraph.mscae","content delivery network","ms microsoft deprecated enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/dep/Data_Lake.svg;",50,50,"","Data Lake",!1,null,this.getTagsForStencil("mxgraph.mscae","data lake","ms microsoft deprecated enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/dep/Data_Lake_Analytics.svg;", -50,50,"","Data Lake Analytics",!1,null,this.getTagsForStencil("mxgraph.mscae","data lake analytics","ms microsoft deprecated enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/dep/Data_Lake_Store.svg;",50,50,"","Data Lake Store",!1,null,this.getTagsForStencil("mxgraph.mscae","data lake store","ms microsoft deprecated enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/dep/DataWarehouse.svg;", -50,50,"","DataWarehouse",!1,null,this.getTagsForStencil("mxgraph.mscae","datawarehouse","ms microsoft deprecated enterprise color ").join(" ")),this.createVertexTemplateEntry("aspect=fixed;html=1;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/dep/SQL_Server_Stretch_DB.svg;",50,50,"","SQL Server Stretch DB",!1,null,this.getTagsForStencil("mxgraph.mscae","sql server stretch db database","ms microsoft deprecated enterprise color ").join(" "))];this.addPalette("mscaeDeprecated Color", -"CAE / Deprecated (color)",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))}})();(function(){Sidebar.prototype.addNetworkPalette=function(){this.addPaletteFunctions("network","Network",!1,[this.addDataEntry("computer network ring bus",100,100,"Ring Bus","7VfJboMwEP0arpWBkNJjgTanSpF66NmKJ2DVYDQ429/XYIclKi2Nkp5AQrLfrLzHsDh+nB9XSMvsTTIQjv/i+DFKqcwqP8YghOMRzhw/cTyP6NPxXkesbmMlJUUo1JQAzwTsqdiBQQxQqZOwQKZy3VbiOn605ULEUkhsLH7cHBqvFMpP6FmWYehGfm3JaFnn0VV5WelVVALyHBRgh647KEqRMq6bPycrZAE9OOEIG8Vl0ZhQZXVXsnPXtbfN0Xb1wVntlXgasRcLqOA4SlgDWbZWIHVjeNIuNsALTMRpuD3YKnoXGMZJBjzN1BCjldmnbd5OG72w8nwvlf+7VOM6AEvh3TpaSlHuCgZ1clI7FOwZUR46O6NV1pp7N8EYrXWJAamKYgpqcJ9N4BlBUMX3w1Tf8WZD15LrjK0+l0xXcocbsE4XZLdVJ/G/mPmfwH8YPAwnxF2cgdtLEsySTJDEJWSgyP1GZDnrcc2IdMDtJXmcJfnDW+P8zCJ3G5Fw1mPKI2vxjyPyNEvykyR3f2u4ZBbgmpm44ZeV3nb/nMa9/0v6BQ=="), +a.vertex=!0;return c.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,"Table")})];this.addPalette("mockupText","Mockup Text",!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))}})();(function(){Sidebar.prototype.addMSCAEPalette=function(){this.addMSCAECompaniesPalette("mxgraph.mscae",100,this,"aspect=fixed;html=1;points=[];align=center;image;fontSize=12;image=img/lib/mscae/");this.addMSCAEEnterpriseFlatPalette("mxgraph.mscae",100,this);this.addMSCAEIntuneFlatPalette("mxgraph.mscae",100,this);this.addMSCAEOMSFlatPalette("mxgraph.mscae",100,this);this.addMSCAESystemCenterFlatPalette("mxgraph.mscae",100,this);this.addMSCAEAIandMLServicePalette("mxgraph.mscae",100,this,"aspect=fixed;html=1;points=[];align=center;image;fontSize=12;image=img/lib/mscae/"); +this.addMSCAEAnalyticsServicePalette("mxgraph.mscae",100,this,"aspect=fixed;html=1;points=[];align=center;image;fontSize=12;image=img/lib/mscae/");this.addMSCAEComputeServicePalette("mxgraph.mscae",100,this,"aspect=fixed;html=1;points=[];align=center;image;fontSize=12;image=img/lib/mscae/");this.addMSCAEComputeServiceVMPalette("mxgraph.mscae",100,this,"aspect=fixed;html=1;points=[];align=center;image;fontSize=12;image=img/lib/mscae/");this.addMSCAEContainerServiceVMPalette("mxgraph.mscae",100,this, +"aspect=fixed;html=1;points=[];align=center;image;fontSize=12;image=img/lib/mscae/");this.addMSCAEDatabasesServicePalette("mxgraph.mscae",100,this,"aspect=fixed;html=1;points=[];align=center;image;fontSize=12;image=img/lib/mscae/");this.addMSCAEDevOpsServicePalette("mxgraph.mscae",100,this,"aspect=fixed;html=1;points=[];align=center;image;fontSize=12;image=img/lib/mscae/");this.addMSCAEGeneralServicePalette("mxgraph.mscae",100,this,"aspect=fixed;html=1;points=[];align=center;image;fontSize=12;image=img/lib/mscae/"); +this.addMSCAEIdentityServicePalette("mxgraph.mscae",100,this,"aspect=fixed;html=1;points=[];align=center;image;fontSize=12;image=img/lib/mscae/");this.addMSCAEIntegrationServicePalette("mxgraph.mscae",100,this,"aspect=fixed;html=1;points=[];align=center;image;fontSize=12;image=img/lib/mscae/");this.addMSCAEInternetOfThingsServicePalette("mxgraph.mscae",100,this,"aspect=fixed;html=1;points=[];align=center;image;fontSize=12;image=img/lib/mscae/");this.addMSCAEIntuneServicePalette("mxgraph.mscae",100, +this,"aspect=fixed;html=1;points=[];align=center;image;fontSize=12;image=img/lib/mscae/");this.addMSCAEManagementGovernanceServicePalette("mxgraph.mscae",100,this,"aspect=fixed;html=1;points=[];align=center;image;fontSize=12;image=img/lib/mscae/");this.addMSCAEManagementGovernanceMediaServicePalette("mxgraph.mscae",100,this,"aspect=fixed;html=1;points=[];align=center;image;fontSize=12;image=img/lib/mscae/");this.addMSCAEMigrateServicePalette("mxgraph.mscae",100,this,"aspect=fixed;html=1;points=[];align=center;image;fontSize=12;image=img/lib/mscae/"); +this.addMSCAEMixedRealityServicePalette("mxgraph.mscae",100,this,"aspect=fixed;html=1;points=[];align=center;image;fontSize=12;image=img/lib/mscae/");this.addMSCAEMobileServicePalette("mxgraph.mscae",100,this,"aspect=fixed;html=1;points=[];align=center;image;fontSize=12;image=img/lib/mscae/");this.addMSCAENetworkingServicePalette("mxgraph.mscae",100,this,"aspect=fixed;html=1;points=[];align=center;image;fontSize=12;image=img/lib/mscae/");this.addMSCAEOtherCategoryServicePalette("mxgraph.mscae",100, +this,"aspect=fixed;html=1;points=[];align=center;image;fontSize=12;image=img/lib/mscae/");this.addMSCAESecurityServicePalette("mxgraph.mscae",100,this,"aspect=fixed;html=1;points=[];align=center;image;fontSize=12;image=img/lib/mscae/");this.addMSCAEStorageServicePalette("mxgraph.mscae",100,this,"aspect=fixed;html=1;points=[];align=center;image;fontSize=12;image=img/lib/mscae/");this.addMSCAEWebServicePalette("mxgraph.mscae",100,this,"aspect=fixed;html=1;points=[];align=center;image;fontSize=12;image=img/lib/mscae/")}; +Sidebar.prototype.addMSCAECompaniesPalette=function(a,b,e,c){var d=[this.createVertexTemplateEntry(c+"Cache_Redis_Product.svg;",.5*b,.42*b,"","Cache Redis Product Icon",null,null,this.getTagsForStencil(a,"azure cache redis product icon","ms microsoft cloud enterprise company companies").join(" ")),this.createVertexTemplateEntry(c+"Databricks.svg;",.5*b,.48*b,"","Databricks",null,null,this.getTagsForStencil(a,"azure databricks","ms microsoft cloud enterprise company companies").join(" ")),this.createVertexTemplateEntry(c+ +"HDInsight.svg;",.5*b,.48*b,"","HDInsight",null,null,this.getTagsForStencil(a,"azure hdinsight","ms microsoft cloud enterprise company companies").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.hockeyapp;fillColor=#0079D6;pointerEvents=1;",.5*b,.38*b,"","HockeyApp",null,null,this.getTagsForStencil(a,"azure hockey app hockeyapp","ms microsoft cloud enterprise company companies").join(" ")), +this.createVertexTemplateEntry(c+"OpenShift.svg;",.5*b,.46*b,"","OpenShift",null,null,this.getTagsForStencil(a,"azure open shift openshift","ms microsoft cloud enterprise company companies").join(" ")),this.createVertexTemplateEntry(c+"Cloud_Cycle.svg;",.5*b,.46*b,"","Cloud Cycle",null,null,this.getTagsForStencil(a,"cloud cycle","ms microsoft cloud enterprise company companies").join(" ")),this.createVertexTemplateEntry(c+"Kubernetes.svg;",.5*b,.48*b,"","Kubernetes",null,null,this.getTagsForStencil(a, +"kubernetes","ms microsoft cloud enterprise company companies").join(" ")),this.createVertexTemplateEntry(c+"PluralSight_mono.svg;",.5*b,.5*b,"","PluralSight Mono",null,null,this.getTagsForStencil(a,"pluralsight mono","ms microsoft cloud enterprise company companies").join(" ")),this.createVertexTemplateEntry(c+"DC_OS.svg;",.4*b,.5*b,"","DC OS",null,null,this.getTagsForStencil(a,"dc os","ms microsoft cloud enterprise company companies").join(" ")),this.createVertexTemplateEntry(c+"Docker.svg;",.5* +b,.41*b,"","Docker",null,null,this.getTagsForStencil(a,"docker","ms microsoft cloud enterprise company companies").join(" ")),this.createVertexTemplateEntry(c+"StackOverflow.svg;",.4*b,.5*b,"","StackOverflow",null,null,this.getTagsForStencil(a,"stack overflow stackoverflow so","ms microsoft cloud enterprise company companies").join(" ")),this.createVertexTemplateEntry(c+"WebAppUmbraco.svg;",.49*b,.5*b,"","WebAppUmbraco",null,null,this.getTagsForStencil(a,"webappumbraco webapp umbraco","ms microsoft cloud enterprise company companies").join(" ")), +this.createVertexTemplateEntry(c+"WebAppWordPress.svg;",.49*b,.5*b,"","WebAppWordPress",null,null,this.getTagsForStencil(a,"webappwordpress webapp wordpress","ms microsoft cloud enterprise company companies").join(" "))];this.addPalette("mscaeCompanies","CAE / Companies",!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addMSCAEEnterpriseFlatPalette=function(a,b,e){var c=[this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.d", +.4*b,.5*b,"","Federation Services Proxy",null,null,this.getTagsForStencil(a,"active directory ad fs federation services proxy","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.ad_fs",.4*b,.5*b,"","Federation Services",null,null,this.getTagsForStencil(a,"active directory ad fs federation services", +"ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.android_phone",.3*b,.5*b,"","Android Phone",null,null,this.getTagsForStencil(a,"android phone","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.application", +.5*b,.34*b,"","Application",null,null,this.getTagsForStencil(a,"application","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.application_blank",.5*b,.43*b,"","Application (blank)",null,null,this.getTagsForStencil(a,"application blank","ms microsoft cloud enterprise flat").join(" ")), +this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.app_generic",.5*b,.39*b,"","Application (generic)",null,null,this.getTagsForStencil(a,"application generic","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.application_server", +.43*b,.5*b,"","Application Server",null,null,this.getTagsForStencil(a,"application server","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.application_server2",.43*b,.5*b,"","Application Server",null,null,this.getTagsForStencil(a,"application server","ms microsoft cloud enterprise flat").join(" ")), +this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.pack",.5*b,.45*b,"","Pack",null,null,this.getTagsForStencil(a,"pack","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.backup_local", +.49*b,.5*b,"","Backup (local)",null,null,this.getTagsForStencil(a,"backup local","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.backup_online",.5*b,.4*b,"","Backup (local)",null,null,this.getTagsForStencil(a,"backup local","ms microsoft cloud enterprise flat").join(" ")), +this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.calendar",.5*b,.41*b,"","Calendar",null,null,this.getTagsForStencil(a,"calendar","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.azure.certificate", +.5*b,.4*b,"","Certificate",null,null,this.getTagsForStencil(a,"certificate","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.client_application",.5*b,.32*b,"","Client Application",null,null,this.getTagsForStencil(a,"client application","ms microsoft cloud enterprise flat").join(" ")), +this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.azure.cloud",.5*b,.32*b,"","Cloud",null,null,this.getTagsForStencil(a,"cloud","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.internet", +.5*b,.31*b,"","Cloud",null,null,this.getTagsForStencil(a,"cloud","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.cluster_server",.4*b,.5*b,"","Cluster Server",null,null,this.getTagsForStencil(a,"cluster server","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.code_file", +.49*b,.5*b,"","Code File",null,null,this.getTagsForStencil(a,"code file","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.connectors",.5*b,.34*b,"","Connectors",null,null,this.getTagsForStencil(a,"connectors","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.database_generic", +.37*b,.5*b,"","Database (generic)",null,null,this.getTagsForStencil(a,"database generic","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.database_server",.38*b,.5*b,"","Database (server)",null,null,this.getTagsForStencil(a,"database server","ms microsoft cloud enterprise flat").join(" ")), +this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.database_synchronization",.39*b,.5*b,"","Database (synchronization)",null,null,this.getTagsForStencil(a,"database synchronization","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.device", +.5*b,.26*b,"","Device",null,null,this.getTagsForStencil(a,"device","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.direct_access_feature",.5*b,.44*b,"","Direct Access (feature)",null,null,this.getTagsForStencil(a,"direct access feature","ms microsoft cloud enterprise flat").join(" ")), +this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.azure.code_file",.47*b,.5*b,"","Document DB file",null,null,this.getTagsForStencil(a,"documentdb document db database file","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.document", +.4*b,.5*b,"","Document",null,null,this.getTagsForStencil(a,"document","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.domain_controller",.36*b,.5*b,"","Domain Controller",null,null,this.getTagsForStencil(a,"domain controller","ms microsoft cloud enterprise flat").join(" ")), +this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.azure.enterprise",.3*b,.5*b,"","Enterprise Building",null,null,this.getTagsForStencil(a,"enterprise building","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.azure.file", +.47*b,.5*b,"","File (general)",null,null,this.getTagsForStencil(a,"file","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.filter",.5*b,.45*b,"","Filter",null,null,this.getTagsForStencil(a,"filter","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.firewall", +.5*b,.44*b,"","Firewall",null,null,this.getTagsForStencil(a,"firewall","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.folder",.5*b,.43*b,"","Folder",null,null,this.getTagsForStencil(a,"folder","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.gateway", +.5*b,.5*b,"","Gateway",null,null,this.getTagsForStencil(a,"gateway","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.general.graph",.5*b,.5*b,"","Graph",null,null,this.getTagsForStencil(a,"graph","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.azure.health_monitoring", +.5*b,.42*b,"","Health Monitoring",null,null,this.getTagsForStencil(a,"health monitoring","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.azure.healthy",.5*b,.45*b,"","Healthy",null,null,this.getTagsForStencil(a,"healthy","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.import_generic", +.4*b,.5*b,"","Import (generic)",null,null,this.getTagsForStencil(a,"import generic","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.internet_hollow",.5*b,.31*b,"","Internet (hollow)",null,null,this.getTagsForStencil(a,"internet hollow","ms microsoft cloud enterprise flat").join(" ")), +this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.internet",.5*b,.31*b,"","Internet",null,null,this.getTagsForStencil(a,"internet","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.key_permissions", +.26*b,.5*b,"","Key, Permissions",null,null,this.getTagsForStencil(a,"key permissions","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.keyboard",.5*b,.3*b,"","Keyboard",null,null,this.getTagsForStencil(a,"keyboard","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.azure.laptop", +.5*b,.3*b,"","Laptop",null,null,this.getTagsForStencil(a,"laptop","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.azure.load_balancer_generic",.37*b,.5*b,"","Load Balancer (generic)",null,null,this.getTagsForStencil(a,"load balancer generic","ms microsoft cloud enterprise flat").join(" ")), +this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.load_testing",.48*b,.5*b,"","Load Testing",null,null,this.getTagsForStencil(a,"load testing","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.lock_unlocked", +.37*b,.5*b,"","Lock (unlocked)",null,null,this.getTagsForStencil(a,"lock unlocked unprotected accessible","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.lock",.39*b,.5*b,"","Lock, protected",null,null,this.getTagsForStencil(a,"lock protected","ms microsoft cloud enterprise flat").join(" ")), +this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.maintenance",.39*b,.5*b,"","Maintenance",null,null,this.getTagsForStencil(a,"maintenance","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.management_console;", +.5*b,.34*b,"","Management Console",null,null,this.getTagsForStencil(a,"management console","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.azure.message2;",.5*b,.37*b,"","Message",null,null,this.getTagsForStencil(a,"message","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.monitor_running_apps", +.5*b,.39*b,"","Monitor Running Apps",null,null,this.getTagsForStencil(a,"monitor running apps","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.azure.computer",.5*b,.45*b,"","Monitor",null,null,this.getTagsForStencil(a,"monitor computer","ms microsoft cloud enterprise flat").join(" ")), +this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.mouse",.3*b,.5*b,"","Mouse",null,null,this.getTagsForStencil(a,"mouse","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.network_card", +.5*b,.35*b,"","Network Card",null,null,this.getTagsForStencil(a,"network card","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.not_allowed;fillColor=#EA1C24;",.5*b,.5*b,"","Not Allowed",null,null,this.getTagsForStencil(a,"not allowed","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.performance_monitor", +.5*b,.36*b,"","Performance Monitor",null,null,this.getTagsForStencil(a,"performance monitor","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.performance",.5*b,.5*b,"","Performance",null,null,this.getTagsForStencil(a,"performance","ms microsoft cloud enterprise flat").join(" ")), +this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.azure.mobile",.35*b,.5*b,"","Mobile",null,null,this.getTagsForStencil(a,"mobile","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.plug_and_play", +.4*b,.5*b,"","Plug and Play",null,null,this.getTagsForStencil(a,"plug and play","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.other.powerpoint;fillColor=#DE5D24;",.5*b,.5*b,"","PowerPoint",null,null,this.getTagsForStencil(a,"powerpoint","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.azure.powershell_file", +.47*b,.5*b,"","PowerShell file",null,null,this.getTagsForStencil(a,"powershell file","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.protocol_stack",.5*b,.34*b,"","Protocol Stack",null,null,this.getTagsForStencil(a,"protocol stack","ms microsoft cloud enterprise flat").join(" ")), +this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.azure.queue_generic",.5*b,.15*b,"","Queue Generic",null,null,this.getTagsForStencil(a,"queue generic","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.rms_connector", +.38*b,.5*b,"","RMS Connector",null,null,this.getTagsForStencil(a,"rms connector","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.router",.5*b,.39*b,"","Router",null,null,this.getTagsForStencil(a,"router","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.router", +.5*b,.39*b,"","Router",null,null,this.getTagsForStencil(a,"router","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.rdp_remoting_file;fillColor=#0078D7;",.48*b,.5*b,"","RPD Remoting file",null,null,this.getTagsForStencil(a,"rpd remoting file","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.azure.script_file", +.47*b,.5*b,"","Script file",null,null,this.getTagsForStencil(a,"script file","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.secure_virtual_machine",.5*b,.38*b,"","Secure Virtual Machine",null,null,this.getTagsForStencil(a,"secure virtual machine","ms microsoft cloud enterprise flat").join(" ")), +this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.azure.server",.5*b,.15*b,"","Server (blade)",null,null,this.getTagsForStencil(a,"server","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.server_generic", +.24*b,.5*b,"","Server (generic)",null,null,this.getTagsForStencil(a,"server generic","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.server_directory",.36*b,.5*b,"","Server Directory",null,null,this.getTagsForStencil(a,"server directory","ms microsoft cloud enterprise flat").join(" ")), +this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.server_farm",.5*b,.32*b,"","Server Farm",null,null,this.getTagsForStencil(a,"server farm","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.azure.server_rack", +.5*b,.5*b,"","Server Rack",null,null,this.getTagsForStencil(a,"server rack","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.settings",.5*b,.5*b,"","Settings",null,null,this.getTagsForStencil(a,"settings","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.shared_folder", +.43*b,.5*b,"","Shared Folder",null,null,this.getTagsForStencil(a,"shared folder","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.smartcard",.5*b,.32*b,"","Smartcard",null,null,this.getTagsForStencil(a,"smartcard","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.startup_task;fillColor=#0078D7;", +.48*b,.5*b,"","Startup Task",null,null,this.getTagsForStencil(a,"startup task","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.storage",.5*b,.41*b,"","Storage",null,null,this.getTagsForStencil(a,"storage","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.table", +.5*b,.5*b,"","Table",null,null,this.getTagsForStencil(a,"table","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.azure.tablet;",.5*b,.37*b,"","Tablet",null,null,this.getTagsForStencil(a,"tablet","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.tool;", +.5*b,.45*b,"","Tool",null,null,this.getTagsForStencil(a,"tool","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.triggers;fillColor=#0078D7;",.47*b,.5*b,"","Triggers",null,null,this.getTagsForStencil(a,"triggers","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.general.tunnel", +.5*b,.09*b,"","Tunnel",null,null,this.getTagsForStencil(a,"tunnel","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.udf_function;fillColor=#0078D7;",.47*b,.5*b,"","UDF Function",null,null,this.getTagsForStencil(a,"udf function","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.unhealthy;fillColor=#0078D7;", +.5*b,.41*b,"","Unhealthy",null,null,this.getTagsForStencil(a,"unhealthy","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.unhealthy",.5*b,.41*b,"","Unhealthy",null,null,this.getTagsForStencil(a,"unhealthy","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.usb", +.5*b,.23*b,"","USB",null,null,this.getTagsForStencil(a,"usb","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.azure.user",.47*b,.5*b,"","User (enterprise)",null,null,this.getTagsForStencil(a,"user","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.user_permissions;fillColor=#0078D7;", +.47*b,.5*b,"","User permissions",null,null,this.getTagsForStencil(a,"user permissions","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.general.video",.49*b,.5*b,"","Video",null,null,this.getTagsForStencil(a,"video","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.azure.virtual_machine_feature", +.5*b,.45*b,"","Virtual Machine",null,null,this.getTagsForStencil(a,"virtual machine","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.web_server",.38*b,.5*b,"","Web Server",null,null,this.getTagsForStencil(a,"web server","ms microsoft cloud enterprise flat").join(" ")), +this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.website_generic;fillColor=#7D7D7D;",.5*b,.44*b,"","Website (generic)",null,null,this.getTagsForStencil(a,"website generic","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.windows_server", +.39*b,.5*b,"","Windows Server",null,null,this.getTagsForStencil(a,"windows server","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.wireless_connection",.42*b,.5*b,"","Wireless Connection",null,null,this.getTagsForStencil(a,"wireless connection","ms microsoft cloud enterprise flat").join(" ")), +this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.workstation_client",.5*b,.5*b,"","Workstation Client",null,null,this.getTagsForStencil(a,"workstation client","ms microsoft cloud enterprise flat").join(" ")),this.createVertexTemplateEntry("aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.xml_web_service", +.5*b,.5*b,"","XML Web Service",null,null,this.getTagsForStencil(a,"xml web service","ms microsoft cloud enterprise flat").join(" "))];this.addPalette("mscaeEnterpriseFlat","CAE / Enterprise (flat)",!1,mxUtils.bind(this,function(a){for(var b=0;b<c.length;b++)a.appendChild(c[b](a))}))};Sidebar.prototype.addMSCAEIntuneFlatPalette=function(a,b,e){var c=[this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.account_portal", +.43*b,.5*b,"","Account Portal",null,null,this.getTagsForStencil(a,"account portal","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.administration",.3*b,.5*b,"","Administration",null,null,this.getTagsForStencil(a,"administration","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.alerts", +.5*b,.5*b,"","Alerts",null,null,this.getTagsForStencil(a,"alerts","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.apps",.5*b,.5*b,"","Apps",null,null,this.getTagsForStencil(a,"apps","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.certificate", +.5*b,.49*b,"","Certificate (Compliance)",null,null,this.getTagsForStencil(a,"certificate compliance","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.client_software",.5*b,.45*b,"","Client Software Deployment Wizard",null,null,this.getTagsForStencil(a,"client software deployment wizard", +"ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.company_portal",.5*b,.38*b,"","Company Portal",null,null,this.getTagsForStencil(a,"company portal","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.computer_inventory", +.5*b,.45*b,"","Computer Inventory",null,null,this.getTagsForStencil(a,"computer inventory","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.conditional_access_exchange",.49*b,.5*b,"","Conditional Access (Exchange)",null,null,this.getTagsForStencil(a,"conditional access exchange","ms microsoft cloud enterprise intune").join(" ")), +this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.conditional_access_sharepoint",.44*b,.5*b,"","Conditional Access (Sharepoint)",null,null,this.getTagsForStencil(a,"conditional access sharepoint","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.connector", +.5*b,.17*b,"","Connector",null,null,this.getTagsForStencil(a,"connector","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.dashboard",.5*b,.4*b,"","Dashboard",null,null,this.getTagsForStencil(a,"dashboard","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.data_migration_wizard", +.5*b,.48*b,"","Data Migration Wizard",null,null,this.getTagsForStencil(a,"data migration wizard","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.detected_software",.5*b,.5*b,"","Detected Software",null,null,this.getTagsForStencil(a,"detected software","ms microsoft cloud enterprise intune").join(" ")), +this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.device_group",.5*b,.5*b,"","Device Group",null,null,this.getTagsForStencil(a,"device group","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.device_health", +.5*b,.31*b,"","Device Health",null,null,this.getTagsForStencil(a,"device_health","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.device_history",.45*b,.5*b,"","Device History",null,null,this.getTagsForStencil(a,"device history","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.device_os", +.49*b,.5*b,"","Device OS",null,null,this.getTagsForStencil(a,"device os operating system","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.end_protection",.48*b,.5*b,"","End Protection",null,null,this.getTagsForStencil(a,"end protection","ms microsoft cloud enterprise intune").join(" ")), +this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.exchange_connector",.5*b,.49*b,"","Exchange Connector",null,null,this.getTagsForStencil(a,"exchange connector","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.groups", +.5*b,.48*b,"","Groups",null,null,this.getTagsForStencil(a,"groups","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.hybrid",.5*b,.39*b,"","Hybrid",null,null,this.getTagsForStencil(a,"hybrid","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.intune_certificate_profiles", +.4*b,.5*b,"","Intune Certificate Profiles",null,null,this.getTagsForStencil(a,"certificate profiles","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.intune_connector",.82*b,.59*b,"","Intune Connector",null,null,this.getTagsForStencil(a,"intune connector","ms microsoft cloud enterprise intune").join(" ")), +this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.intune_email_profiles",.5*b,.5*b,"","Intune Email Profiles",null,null,this.getTagsForStencil(a,"email profiles","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.intune_managed_app", +.5*b,.38*b,"","Intune Managed App",null,null,this.getTagsForStencil(a,"managed app application","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.intune_mobile_application_management",.49*b,.5*b,"","Intune Mobile Application Management",null,null,this.getTagsForStencil(a,"mobile app aplication management", +"ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.intune_vpn_profiles",.42*b,.5*b,"","Intune VPN Profiles",null,null,this.getTagsForStencil(a,"vpn virtual private network profiles","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.intune_wifi_profiles", +.43*b,.5*b,"","Intune WiFi Profiles",null,null,this.getTagsForStencil(a,"wifi profiles","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.inventory_license",.5*b,.48*b,"","Inventory License",null,null,this.getTagsForStencil(a,"inventory license","ms microsoft cloud enterprise intune").join(" ")), +this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.inventory_software",.5*b,.49*b,"","Inventory Software",null,null,this.getTagsForStencil(a,"inventory software","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.license_group", +.5*b,.49*b,"","License Group",null,null,this.getTagsForStencil(a,"license group","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.license_installation",.5*b,.43*b,"","License Installation",null,null,this.getTagsForStencil(a,"license installation","ms microsoft cloud enterprise intune").join(" ")), +this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.microsoft_intune",.5*b,.4*b,"","MS Intune",null,null,this.getTagsForStencil(a,"microsoft","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.mobile_inventory", +.44*b,.5*b,"","Mobile Inventory",null,null,this.getTagsForStencil(a,"mobile inventory","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.noncompliant_apps",.46*b,.5*b,"","Noncompliant Apps",null,null,this.getTagsForStencil(a,"noncompliant apps applications","ms microsoft cloud enterprise intune").join(" ")), +this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.policy",.5*b,.5*b,"","Policy",null,null,this.getTagsForStencil(a,"policy","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.protection", +.48*b,.5*b,"","Protection",null,null,this.getTagsForStencil(a,"protection","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.reports",.46*b,.5*b,"","Reports",null,null,this.getTagsForStencil(a,"reports","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.enterprise.settings", +.5*b,.5*b,"","Settings",null,null,this.getTagsForStencil(a,"settings","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.subscription_portal",.5*b,.5*b,"","Subscription Portal",null,null,this.getTagsForStencil(a,"subscription portal","ms microsoft cloud enterprise intune").join(" ")), +this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.terms_and_conditions",.37*b,.5*b,"","Terms and Conditions",null,null,this.getTagsForStencil(a,"terms and conditions","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.update", +.48*b,.5*b,"","Update",null,null,this.getTagsForStencil(a,"update","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.user_group",.5*b,.37*b,"","User Group",null,null,this.getTagsForStencil(a,"user group","ms microsoft cloud enterprise intune").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.user_management", +.5*b,.46*b,"","User Management",null,null,this.getTagsForStencil(a,"user management","ms microsoft cloud enterprise intune").join(" "))];this.addPalette("mscaeIntuneFlat","CAE / Intune (flat)",!1,mxUtils.bind(this,function(a){for(var b=0;b<c.length;b++)a.appendChild(c[b](a))}))};Sidebar.prototype.addMSCAEOMSFlatPalette=function(a,b,e){var c=[this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.oms.alerts", +.41*b,.5*b,"","Alerts",null,null,this.getTagsForStencil(a,"alerts","ms microsoft cloud enterprise oms").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.oms.app_with_changes",.5*b,.32*b,"","App With Changes",null,null,this.getTagsForStencil(a,"app with changes","ms microsoft cloud enterprise oms").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.oms.assessments", +.47*b,.5*b,"","Assessments",null,null,this.getTagsForStencil(a,"assessments","ms microsoft cloud enterprise oms").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.oms.capacity",.41*b,.5*b,"","Capacity",null,null,this.getTagsForStencil(a,"capacity","ms microsoft cloud enterprise oms").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.oms.config_assessment", +.5*b,.45*b,"","Config Assessment",null,null,this.getTagsForStencil(a,"config assessment","ms microsoft cloud enterprise oms").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.oms.dashboard",.5*b,.41*b,"","Dashboard",null,null,this.getTagsForStencil(a,"dashboard","ms microsoft cloud enterprise oms").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.oms.dependency_monitor", +.5*b,.49*b,"","Dependency Monitor",null,null,this.getTagsForStencil(a,"dependency monitor","ms microsoft cloud enterprise oms").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.oms.diagnostics",.5*b,.34*b,"","Diagnostics",null,null,this.getTagsForStencil(a,"diagnostics","ms microsoft cloud enterprise oms").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.oms.jobs", +.5*b,.5*b,"","Jobs",null,null,this.getTagsForStencil(a,"jobs","ms microsoft cloud enterprise oms").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.oms.log_management",.41*b,.5*b,"","Log Management",null,null,this.getTagsForStencil(a,"log management","ms microsoft cloud enterprise oms").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.oms.log_search", +.5*b,.5*b,"","Log Search",null,null,this.getTagsForStencil(a,"log search","ms microsoft cloud enterprise oms").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.oms.malware_assessment",.49*b,.5*b,"","Malware Assessment",null,null,this.getTagsForStencil(a,"malware assessment","ms microsoft cloud enterprise oms").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.oms.overview", +.5*b,.41*b,"","Overview",null,null,this.getTagsForStencil(a,"overview","ms microsoft cloud enterprise oms").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.oms.security",.5*b,.5*b,"","Security",null,null,this.getTagsForStencil(a,"security","ms microsoft cloud enterprise oms").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.oms.server_width_changes", +.47*b,.5*b,"","Server Width Changes",null,null,this.getTagsForStencil(a,"server width changes","ms microsoft cloud enterprise oms").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.oms.services",.49*b,.5*b,"","Services",null,null,this.getTagsForStencil(a,"services","ms microsoft cloud enterprise oms").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.oms.solutions", +.5*b,.49*b,"","Solutions",null,null,this.getTagsForStencil(a,"solutions","ms microsoft cloud enterprise oms").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.oms.system_update",.5*b,.5*b,"","System Update",null,null,this.getTagsForStencil(a,"system update","ms microsoft cloud enterprise oms").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.oms.track_changes", +.42*b,.5*b,"","Track Changes",null,null,this.getTagsForStencil(a,"track changes","ms microsoft cloud enterprise oms").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.oms.wire_data",.5*b,.5*b,"","Wire Data",null,null,this.getTagsForStencil(a,"wire data","ms microsoft cloud enterprise oms").join(" "))];this.addPalette("mscaeOMSFlat", +"CAE / OMS (flat)",!1,mxUtils.bind(this,function(a){for(var b=0;b<c.length;b++)a.appendChild(c[b](a))}))};Sidebar.prototype.addMSCAESystemCenterFlatPalette=function(a,b,e){var c=[this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#515151;shape=mxgraph.mscae.system_center.admin_console",.5*b,.36*b,"","Admin Console",null,null,this.getTagsForStencil(a,"admin console","ms microsoft cloud enterprise system center").join(" ")), +this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#515151;shape=mxgraph.mscae.enterprise.database_server",.38*b,.5*b,"","Central Administration Site",null,null,this.getTagsForStencil(a,"central administration site","ms microsoft cloud enterprise system center").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#515151;shape=mxgraph.mscae.system_center.central_administration_site_sql", +.38*b,.5*b,"","Central Administration Site SQL",null,null,this.getTagsForStencil(a,"central administration site sql","ms microsoft cloud enterprise system center").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#515151;shape=mxgraph.mscae.system_center.cloud_distribution_point",.46*b,.5*b,"","Cloud Distribution Point",null,null,this.getTagsForStencil(a,"cloud distribution point", +"ms microsoft cloud enterprise system center").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#515151;shape=mxgraph.mscae.system_center.distribution_point",.44*b,.5*b,"","Distribution Point",null,null,this.getTagsForStencil(a,"distribution point","ms microsoft cloud enterprise system center").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#515151;shape=mxgraph.mscae.system_center.management_point", +.48*b,.5*b,"","Management Point",null,null,this.getTagsForStencil(a,"management point","ms microsoft cloud enterprise system center").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#515151;shape=mxgraph.mscae.system_center.primary_site",.38*b,.5*b,"","Primary Site",null,null,this.getTagsForStencil(a,"primary site","ms microsoft cloud enterprise system center").join(" ")), +this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#515151;shape=mxgraph.mscae.system_center.roles",.42*b,.5*b,"","Roles",null,null,this.getTagsForStencil(a,"roles","ms microsoft cloud enterprise system center").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#515151;shape=mxgraph.mscae.system_center.secondary_site", +.41*b,.5*b,"","Secondary Site",null,null,this.getTagsForStencil(a,"secondary site","ms microsoft cloud enterprise system center").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#515151;shape=mxgraph.mscae.system_center.software_update_point",.5*b,.43*b,"","Software Update Point",null,null,this.getTagsForStencil(a,"software update point","ms microsoft cloud enterprise system center").join(" "))]; +this.addPalette("mscaeSystem CenterFlat","CAE / System Center (flat)",!1,mxUtils.bind(this,function(a){for(var b=0;b<c.length;b++)a.appendChild(c[b](a))}))};Sidebar.prototype.addMSCAEAIandMLServicePalette=function(a,b,e,c){var d=[this.createVertexTemplateEntry(c+"Batch_AI.svg;",.36*b,.5*b,"","Batch AI",null,null,this.getTagsForStencil(a,"batch ai","ms microsoft cloud enterprise ai ml service").join(" ")),this.createVertexTemplateEntry(c+"Bot_Services.svg;",.5*b,.5*b,"","Bot Services",null,null,this.getTagsForStencil(a, +"bot services","ms microsoft cloud enterprise ai ml service").join(" ")),this.createVertexTemplateEntry(c+"Cognitive_Services.svg;",.5*b,.3*b,"","Cognitive Services",null,null,this.getTagsForStencil(a,"cognitive services","ms microsoft cloud enterprise ai ml service").join(" ")),this.createVertexTemplateEntry(c+"Genomics_Accounts.svg;",.26*b,.5*b,"","Genomics Accounts",null,null,this.getTagsForStencil(a,"genomics accounts","ms microsoft cloud enterprise ai ml service").join(" ")),this.createVertexTemplateEntry(c+ +"Machine_Learning_Service_Workspaces.svg;",.46*b,.5*b,"","Machine Learning Service Workspaces",null,null,this.getTagsForStencil(a,"machine learning service workspaces","ms microsoft cloud enterprise ai ml service").join(" ")),this.createVertexTemplateEntry(c+"Machine_Learning_Studio_Web_Service_Plans.svg;",.5*b,.5*b,"","Machine Learning Studio Web Service Plans",null,null,this.getTagsForStencil(a,"machine learning studio web service plans","ms microsoft cloud enterprise ai ml service").join(" ")), +this.createVertexTemplateEntry(c+"Machine_Learning_Studio_Web_Services.svg;",.5*b,.5*b,"","Machine Learning Studio Web Services",null,null,this.getTagsForStencil(a,"machine learning studio web services","ms microsoft cloud enterprise ai ml service").join(" ")),this.createVertexTemplateEntry(c+"Machine_Learning_Studio_Workspaces.svg;",.5*b,.5*b,"","Machine Learning Studio Workspaces",null,null,this.getTagsForStencil(a,"machine learning studio workspaces","ms microsoft cloud enterprise ai ml service").join(" "))]; +this.addPalette("mscaeAI and ML Service","CAE / AI and ML Service",!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addMSCAEAnalyticsServicePalette=function(a,b,e,c){var d=[this.createVertexTemplateEntry(c+"Analysis_Services.svg;",.5*b,.39*b,"","Analysis_Services",null,null,this.getTagsForStencil(a,"analysis services","ms microsoft cloud enterprise analytics service").join(" ")),this.createVertexTemplateEntry(c+"Azure_Data_Explorer_Clusters.svg;", +.5*b,.5*b,"","Azure_Data_Explorer_Clusters",null,null,this.getTagsForStencil(a,"azure data explorer clusters","ms microsoft cloud enterprise analytics service").join(" ")),this.createVertexTemplateEntry(c+"Databricks.svg;",.5*b,.48*b,"","Databricks",null,null,this.getTagsForStencil(a,"azure databricks","ms microsoft cloud enterprise analytics service").join(" ")),this.createVertexTemplateEntry(c+"Data_Factory.svg;",.5*b,.5*b,"","Data Factories",null,null,this.getTagsForStencil(a,"data factory factories", +"ms microsoft cloud enterprise analytics service").join(" ")),this.createVertexTemplateEntry(c+"Data_Lake_Analytics.svg;",.5*b,.5*b,"","Data Lake Analytics",null,null,this.getTagsForStencil(a,"data lake analytics","ms microsoft cloud enterprise analytics service").join(" ")),this.createVertexTemplateEntry(c+"Data_Lake_Store.svg;",.5*b,.39*b,"","Data Lake Store",null,null,this.getTagsForStencil(a,"data lake store","ms microsoft cloud enterprise analytics service").join(" ")),this.createVertexTemplateEntry(c+ +"Event_Hub_Clusters.svg;",.5*b,.48*b,"","Event Hub Clusters",null,null,this.getTagsForStencil(a,"event hub clusters","ms microsoft cloud enterprise analytics service").join(" ")),this.createVertexTemplateEntry(c+"Event_Hubs.svg;",.48*b,.5*b,"","Event Hubs",null,null,this.getTagsForStencil(a,"event hubs","ms microsoft cloud enterprise analytics service").join(" ")),this.createVertexTemplateEntry(c+"HDInsightClusters.svg;",.5*b,.49*b,"","HDInsight Clusters",null,null,this.getTagsForStencil(a,"hdinsight clusters", +"ms microsoft cloud enterprise analytics service").join(" ")),this.createVertexTemplateEntry(c+"Log_Analytics_Workspaces.svg;",.5*b,.5*b,"","Log Analytics Workspaces",null,null,this.getTagsForStencil(a,"log analytics workspaces","ms microsoft cloud enterprise analytics service").join(" ")),this.createVertexTemplateEntry(c+"Stream_Analytics.svg;",.5*b,.39*b,"","Stream Analytics",null,null,this.getTagsForStencil(a,"stream analytics","ms microsoft cloud enterprise analytics service").join(" "))];this.addPalette("mscaeAnalytics Service", +"CAE / Analytics Service",!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addMSCAEComputeServicePalette=function(a,b,e,c){var d=[this.createVertexTemplateEntry(c+"Batch_Accounts.svg;",.5*b,.48*b,"","Batch Accounts",null,null,this.getTagsForStencil(a,"batch accounts","ms microsoft cloud enterprise compute service").join(" ")),this.createVertexTemplateEntry(c+"Citrix_Virtual_Desktops_Essentials.svg;",.5*b,.5*b,"","Citrix Virtual Desktops Essentials", +null,null,this.getTagsForStencil(a,"citrix virtual desktops essentials","ms microsoft cloud enterprise compute service").join(" ")),this.createVertexTemplateEntry(c+"Cloud_Services_Classic.svg;",.5*b,.42*b,"","Cloud Services (classic)",null,null,this.getTagsForStencil(a,"cloud services classic","ms microsoft cloud enterprise compute service").join(" ")),this.createVertexTemplateEntry(c+"Cloud_Service.svg;",.5*b,.42*b,"","Cloud Services",null,null,this.getTagsForStencil(a,"cloud services","ms microsoft cloud enterprise compute service").join(" ")), +this.createVertexTemplateEntry(c+"CloudSimple_Virtual_Machines.svg;",.5*b,.32*b,"","CloudSimple Virtual Machines",null,null,this.getTagsForStencil(a,"cloudsimple virtual machines","ms microsoft cloud enterprise compute service").join(" ")),this.createVertexTemplateEntry(c+"MD_snapshot.svg;",.5*b,.42*b,"","Disk Snapshots",null,null,this.getTagsForStencil(a,"disk snapshots","ms microsoft cloud enterprise compute service").join(" ")),this.createVertexTemplateEntry(c+"Discs.svg;",.5*b,.42*b,"","Disks", +null,null,this.getTagsForStencil(a,"disks","ms microsoft cloud enterprise compute service").join(" ")),this.createVertexTemplateEntry(c+"Functions.svg;",.5*b,.46*b,"","Function Apps",null,null,this.getTagsForStencil(a,"function apps","ms microsoft cloud enterprise compute service").join(" ")),this.createVertexTemplateEntry(c+"SAP_HANA_on_Azure.svg;",.5*b,.25*b,"","SAP HANA on Azure",null,null,this.getTagsForStencil(a,"sap hana on azure","ms microsoft cloud enterprise compute service").join(" ")), +this.createVertexTemplateEntry(c+"Service_Fabric.svg;",.5*b,.5*b,"","Service Fabric",null,null,this.getTagsForStencil(a,"service fabric","ms microsoft cloud enterprise compute service").join(" ")),this.createVertexTemplateEntry(c+"VM_Images.svg;",.5*b,.46*b,"","VM Images",null,null,this.getTagsForStencil(a,"vm virtual machine images","ms microsoft cloud enterprise compute service").join(" "))];this.addPalette("mscaeCompute Service","CAE / Compute Service",!1,mxUtils.bind(this,function(a){for(var b= +0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addMSCAEComputeServiceVMPalette=function(a,b,e,c){var d=[this.createVertexTemplateEntry(c+"Virtual_Machines_Availability_Set.svg;",.5*b,.5*b,"","Availability Sets",null,null,this.getTagsForStencil(a,"availability sets","ms microsoft cloud enterprise compute service vm virtual machine").join(" ")),this.createVertexTemplateEntry(c+"Non_Azure_Machine.svg;",.31*b,.5*b,"","Non-Azure Machine",null,null,this.getTagsForStencil(a,"non azure machine", +"ms microsoft cloud enterprise compute service vm virtual machine").join(" ")),this.createVertexTemplateEntry(c+"OS_Images_Classic.svg;",.5*b,.46*b,"","OS Images (classic)",null,null,this.getTagsForStencil(a,"os images classic","ms microsoft cloud enterprise compute service vm virtual machine").join(" ")),this.createVertexTemplateEntry(c+"Virtual_Machine_2.svg;",.5*b,.46*b,"","VM",null,null,this.getTagsForStencil(a,"","ms microsoft cloud enterprise compute service vm virtual machine").join(" ")), +this.createVertexTemplateEntry(c+"VM_Scale_Set.svg;",.5*b,.5*b,"","VM Scale Sets",null,null,this.getTagsForStencil(a,"scale sets","ms microsoft cloud enterprise compute service vm virtual machine").join(" ")),this.createVertexTemplateEntry(c+"Virtual_Machine.svg;",.5*b,.46*b,"","VM",null,null,this.getTagsForStencil(a,"","ms microsoft cloud enterprise compute service vm virtual machine").join(" ")),this.createVertexTemplateEntry(c+"VM_Linux.svg;",.5*b,.46*b,"","VM (Linux)",null,null,this.getTagsForStencil(a, +"linux","ms microsoft cloud enterprise compute service vm virtual machine").join(" ")),this.createVertexTemplateEntry(c+"VM_Linux_Non_Azure.svg;",.5*b,.46*b,"","VM (Linux, Non-Azure)",null,null,this.getTagsForStencil(a,"linux non azure","ms microsoft cloud enterprise compute service vm virtual machine").join(" ")),this.createVertexTemplateEntry(c+"VirtualMachineWindows.svg;",.5*b,.46*b,"","VM (Windows)",null,null,this.getTagsForStencil(a,"windows","ms microsoft cloud enterprise compute service vm virtual machine").join(" ")), +this.createVertexTemplateEntry(c+"VM_Windows_Non_Azure.svg;",.5*b,.46*b,"","VM (Windows, Non-Azure)",null,null,this.getTagsForStencil(a,"windows non azure","ms microsoft cloud enterprise compute service vm virtual machine").join(" "))];this.addPalette("mscaeCompute Service VM","CAE / Compute Service VM",!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addMSCAEContainerServiceVMPalette=function(a,b,e,c){var d=[this.createVertexTemplateEntry(c+ +"Container_Instances.svg;",.5*b,.5*b,"","Container Instances",null,null,this.getTagsForStencil(a,"container instances","ms microsoft cloud enterprise container service").join(" ")),this.createVertexTemplateEntry(c+"Container_Registries.svg;",.5*b,.43*b,"","Container Registries",null,null,this.getTagsForStencil(a,"container registries","ms microsoft cloud enterprise container service").join(" ")),this.createVertexTemplateEntry(c+"Kubernetes_Services.svg;",.5*b,.37*b,"","Kubernetes Services",null,null, +this.getTagsForStencil(a,"kubernetes services","ms microsoft cloud enterprise container service").join(" "))];this.addPalette("mscaeContainer Service","CAE / Container Service",!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addMSCAEDatabasesServicePalette=function(a,b,e,c){var d=[this.createVertexTemplateEntry(c+"Azure_Cache_for_Redis.svg;",.5*b,.5*b,"","Azure Cache for Redis",null,null,this.getTagsForStencil(a,"azure cache for redis","ms microsoft cloud enterprise database databases db service").join(" ")), +this.createVertexTemplateEntry(c+"Cache_including_Redis.svg;",.5*b,.5*b,"","Cache plus Redis",null,null,this.getTagsForStencil(a,"cache including plus redis","ms microsoft cloud enterprise database databases db service").join(" ")),this.createVertexTemplateEntry(c+"CosmosDB.svg;",.5*b,.5*b,"","CosmosDB",null,null,this.getTagsForStencil(a,"cosmosdb db database","ms microsoft cloud enterprise database databases db service").join(" ")),this.createVertexTemplateEntry(c+"Database_General.svg;",.38*b,.5* +b,"","Database (generic)",null,null,this.getTagsForStencil(a,"database generic","ms microsoft cloud enterprise database databases db service").join(" ")),this.createVertexTemplateEntry(c+"aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Azure_Database_for_MariaDB_servers.svg;",.38*b,.5*b,"","Azure Database for MariaDB servers",null,null,this.getTagsForStencil(a,"azure database for mariadb servers","ms microsoft cloud enterprise database databases db service").join(" ")), +this.createVertexTemplateEntry(c+"Azure_Database_for_MySQL_servers.svg;",.38*b,.5*b,"","Azure Database for MySQL servers",null,null,this.getTagsForStencil(a,"azure database db for mysql servers","ms microsoft cloud enterprise database databases db service").join(" ")),this.createVertexTemplateEntry(c+"Azure_Database_for_PostgreSQL_servers.svg;",.38*b,.5*b,"","Azure Database for PostgreSQL servers",null,null,this.getTagsForStencil(a,"azure database db for postgresql servers","ms microsoft cloud enterprise database databases db service").join(" ")), +this.createVertexTemplateEntry(c+"SQL_DataWarehouse.svg;",.5*b,.48*b,"","Azure SQL DataWarehouse",null,null,this.getTagsForStencil(a,"azure sql datawarehouse","ms microsoft cloud enterprise database databases db service").join(" ")),this.createVertexTemplateEntry(c+"BlobBlock.svg;",.5*b,.42*b,"","Blob Storage",null,null,this.getTagsForStencil(a,"blob storage","ms microsoft cloud enterprise database databases db service").join(" ")),this.createVertexTemplateEntry(c+"Data_Lake.svg;",.38*b,.5*b,"","Data Lake", +null,null,this.getTagsForStencil(a,"data lake","ms microsoft cloud enterprise database databases db service").join(" ")),this.createVertexTemplateEntry(c+"Elastic_Database_Pools.svg;",.5*b,.5*b,"","Elastic Database Pools",null,null,this.getTagsForStencil(a,"elastic database pools","ms microsoft cloud enterprise database databases db service").join(" ")),this.createVertexTemplateEntry(c+"Elastic_Job_Agents.svg;",.42*b,.5*b,"","Elastic Job Agents",null,null,this.getTagsForStencil(a,"elastic job agents", +"ms microsoft cloud enterprise database databases db service").join(" ")),this.createVertexTemplateEntry(c+"Managed_Databases.svg;",.47*b,.5*b,"","Managed Databases",null,null,this.getTagsForStencil(a,"managed databases","ms microsoft cloud enterprise database databases db service").join(" ")),this.createVertexTemplateEntry(c+"SQL_Database_generic.svg;",.38*b,.5*b,"","SQL Databases",null,null,this.getTagsForStencil(a,"sql databases","ms microsoft cloud enterprise database databases db service").join(" ")), +this.createVertexTemplateEntry(c+"SQL_Managed_Instances.svg;",.38*b,.5*b,"","SQL Managed Instances",null,null,this.getTagsForStencil(a,"sql managed instances","ms microsoft cloud enterprise database databases db service").join(" ")),this.createVertexTemplateEntry(c+"dep/SQL_Server_Stretch_DB.svg;",.5*b,.5*b,"","SQL Server Stretch DB",null,null,this.getTagsForStencil(a,"sql server stretch db database","ms microsoft cloud enterprise database databases db service").join(" ")),this.createVertexTemplateEntry(c+ +"SQL_Servers.svg;",.5*b,.5*b,"","SQL Servers",null,null,this.getTagsForStencil(a,"sql servers","ms microsoft cloud enterprise database databases db service").join(" ")),this.createVertexTemplateEntry(c+"Virtual_Clusters.svg;",.5*b,.48*b,"","Virtual Clusters",null,null,this.getTagsForStencil(a,"virtual clusters","ms microsoft cloud enterprise database databases db service").join(" ")),this.createVertexTemplateEntry(c+"Virtual_Datacenter.svg;",.5*b,.5*b,"","Virtual Datacenter",null,null,this.getTagsForStencil(a, +"virtual datacenter","ms microsoft cloud enterprise database databases db service").join(" "))];this.addPalette("mscaeDatabases Service","CAE / Databases Service",!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addMSCAEDevOpsServicePalette=function(a,b,e,c){var d=[this.createVertexTemplateEntry(c+"Application_Insights.svg;",.32*b,.5*b,"","Application Insights",null,null,this.getTagsForStencil(a,"application insights","ms microsoft cloud enterprise devops service").join(" ")), +this.createVertexTemplateEntry(c+"Azure_Artifacts.svg;",.5*b,.5*b,"","Azure Artifacts",null,null,this.getTagsForStencil(a,"azure artifacts","ms microsoft cloud enterprise devops service").join(" ")),this.createVertexTemplateEntry(c+"Azure_Boards.svg;",.5*b,.5*b,"","Azure Boards",null,null,this.getTagsForStencil(a,"azure boards","ms microsoft cloud enterprise devops service").join(" ")),this.createVertexTemplateEntry(c+"Azure_DevOps.svg;",.5*b,.5*b,"","Azure DevOps",null,null,this.getTagsForStencil(a, +"azure devops","ms microsoft cloud enterprise devops service").join(" ")),this.createVertexTemplateEntry(c+"DevTest_Labs.svg;",.5*b,.5*b,"","Azure DevTest Labs",null,null,this.getTagsForStencil(a,"azure devtest labs","ms microsoft cloud enterprise devops service").join(" ")),this.createVertexTemplateEntry(c+"Azure_Pipelines\t.svg;",.5*b,.5*b,"","Azure Pipelines",null,null,this.getTagsForStencil(a,"azure pipelines","ms microsoft cloud enterprise devops service").join(" ")),this.createVertexTemplateEntry(c+ +"Azure_Repos.svg;",.45*b,.5*b,"","Azure Repos",null,null,this.getTagsForStencil(a,"azure repos","ms microsoft cloud enterprise devops service").join(" ")),this.createVertexTemplateEntry(c+"Azure_Test_Plans.svg;",.45*b,.5*b,"","Azure Test Plans",null,null,this.getTagsForStencil(a,"azure test plans","ms microsoft cloud enterprise devops service").join(" "))];this.addPalette("mscaeDevOps Service","CAE / DevOps Service",!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))}; +Sidebar.prototype.addMSCAEGeneralServicePalette=function(a,b,e,c){var d=[this.createVertexTemplateEntry(c+"Grid3x3.svg;",.5*b,.5*b,"","All Resources",null,null,this.getTagsForStencil(a,"all resources","ms microsoft cloud enterprise general service").join(" ")),this.createVertexTemplateEntry(c+"Azure_Home.svg;",.5*b,.4*b,"","Azure Home",null,null,this.getTagsForStencil(a,"azure home","ms microsoft cloud enterprise general service").join(" ")),this.createVertexTemplateEntry(c+"Developer_Tools.svg;", +.47*b,.5*b,"","Developer Tools",null,null,this.getTagsForStencil(a,"developer tools","ms microsoft cloud enterprise general service").join(" ")),this.createVertexTemplateEntry(c+"Support_2.svg;",.32*b,.5*b,"","Help, Support",null,null,this.getTagsForStencil(a,"help support","ms microsoft cloud enterprise general service").join(" ")),this.createVertexTemplateEntry(c+"Info_2.svg;",.5*b,.5*b,"","Information",null,null,this.getTagsForStencil(a,"info information","ms microsoft cloud enterprise general service").join(" ")), +this.createVertexTemplateEntry(c+"Management_Groups.svg;",.5*b,.4*b,"","Management Groups",null,null,this.getTagsForStencil(a,"management groups","ms microsoft cloud enterprise general service").join(" ")),this.createVertexTemplateEntry(c+"Store_Marketplace.svg;",.44*b,.5*b,"","Marketplace",null,null,this.getTagsForStencil(a,"marketplace store","ms microsoft cloud enterprise general service").join(" ")),this.createVertexTemplateEntry(c+"Store_Marketplace.svg;",.44*b,.5*b,"","Marketplace",null,null, +this.getTagsForStencil(a,"marketplace store","ms microsoft cloud enterprise general service").join(" ")),this.createVertexTemplateEntry(c+"Quick_Start_Center.svg;",.5*b,.5*b,"","Quick Start Center",null,null,this.getTagsForStencil(a,"quick start center","ms microsoft cloud enterprise general service").join(" ")),this.createVertexTemplateEntry(c+"Clock.svg;",.5*b,.5*b,"","Recent",null,null,this.getTagsForStencil(a,"clock recent","ms microsoft cloud enterprise general service").join(" ")),this.createVertexTemplateEntry(c+ +"Reservations.svg;",.5*b,.5*b,"","Reservations",null,null,this.getTagsForStencil(a,"reservations","ms microsoft cloud enterprise general service").join(" ")),this.createVertexTemplateEntry(c+"ResourceGroup.svg;",.5*b,.4*b,"","Resource Groups",null,null,this.getTagsForStencil(a,"resource group groups","ms microsoft cloud enterprise general service").join(" ")),this.createVertexTemplateEntry(c+"ServiceHealth.svg;",.5*b,.44*b,"","Service Health",null,null,this.getTagsForStencil(a,"service health","ms microsoft cloud enterprise general service").join(" ")), +this.createVertexTemplateEntry(c+"Shared_Dashboard.svg;",.5*b,.41*b,"","Shared Dashboard",null,null,this.getTagsForStencil(a,"shared dashboard","ms microsoft cloud enterprise general service").join(" ")),this.createVertexTemplateEntry(c+"Key.svg;",.31*b,.5*b,"","Subscriptions",null,null,this.getTagsForStencil(a,"subscriptions key","ms microsoft cloud enterprise general service").join(" ")),this.createVertexTemplateEntry(c+"Support_Requests.svg;",.5*b,.46*b,"","Support Requests",null,null,this.getTagsForStencil(a, +"support requests","ms microsoft cloud enterprise general service").join(" ")),this.createVertexTemplateEntry(c+"Tag.svg;",.5*b,.5*b,"","Tag",null,null,this.getTagsForStencil(a,"tag","ms microsoft cloud enterprise general service").join(" ")),this.createVertexTemplateEntry(c+"Tags.svg;",.42*b,.5*b,"","Tags",null,null,this.getTagsForStencil(a,"tags","ms microsoft cloud enterprise general service").join(" ")),this.createVertexTemplateEntry(c+"Templates.svg;",.44*b,.5*b,"","Templates",null,null,this.getTagsForStencil(a, +"templates","ms microsoft cloud enterprise general service").join(" ")),this.createVertexTemplateEntry(c+"Two_User_Icon.svg;",.5*b,.5*b,"","Two User Icon",null,null,this.getTagsForStencil(a,"two user icon","ms microsoft cloud enterprise general service").join(" ")),this.createVertexTemplateEntry(c+"User_Health_Icon.svg;",.46*b,.5*b,"","User Health Icon",null,null,this.getTagsForStencil(a,"user health icon","ms microsoft cloud enterprise general service").join(" ")),this.createVertexTemplateEntry(c+ +"Person.svg;",.37*b,.5*b,"","User",null,null,this.getTagsForStencil(a,"user person","ms microsoft cloud enterprise general service").join(" ")),this.createVertexTemplateEntry(c+"User_Privacy.svg;",.36*b,.5*b,"","User Privacy",null,null,this.getTagsForStencil(a,"user privacy","ms microsoft cloud enterprise general service").join(" ")),this.createVertexTemplateEntry(c+"User_Resource.svg;",.48*b,.5*b,"","User Resource",null,null,this.getTagsForStencil(a,"user resource","ms microsoft cloud enterprise general service").join(" ")), +this.createVertexTemplateEntry(c+"Info.svg;",.5*b,.5*b,"","What's New",null,null,this.getTagsForStencil(a,"info whats new","ms microsoft cloud enterprise general service").join(" "))];this.addPalette("mscaeGeneral Service","CAE / General Service",!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addMSCAEIdentityServicePalette=function(a,b,e,c){var d=[this.createVertexTemplateEntry(c+"Access_Review.svg;",.5*b,.5*b,"","Access Review",null,null, +this.getTagsForStencil(a,"access review","ms microsoft cloud enterprise identity service").join(" ")),this.createVertexTemplateEntry(c+"Active_Directory_Health_Monitoring.svg;",.5*b,.5*b,"","Active Directory Connect Health",null,null,this.getTagsForStencil(a,"active directory connect health","ms microsoft cloud enterprise identity service").join(" ")),this.createVertexTemplateEntry(c+"Active_Directory.svg;",.5*b,.5*b,"","Active Directory",null,null,this.getTagsForStencil(a,"active directory","ms microsoft cloud enterprise identity service").join(" ")), +this.createVertexTemplateEntry(c+"App_Registrations.svg;",.5*b,.5*b,"","App Registrations",null,null,this.getTagsForStencil(a,"app registrations","ms microsoft cloud enterprise identity service").join(" ")),this.createVertexTemplateEntry(c+"Azure_AD_B2C.svg;",.5*b,.46*b,"","Azure AD B2C",null,null,this.getTagsForStencil(a,"azure ad b2c","ms microsoft cloud enterprise identity service").join(" ")),this.createVertexTemplateEntry(c+"Azure_AD_Domain_Services.svg;",.5*b,.5*b,"","Azure AD Domain Services", +null,null,this.getTagsForStencil(a,"azure ad domain services","ms microsoft cloud enterprise identity service").join(" ")),this.createVertexTemplateEntry(c+"Azure_AD_Identity_Protection.svg;",.5*b,.5*b,"","Azure AD Identity Protection",null,null,this.getTagsForStencil(a,"azure ad identity protection","ms microsoft cloud enterprise identity service").join(" ")),this.createVertexTemplateEntry(c+"Azure_AD_Privileged_Identity_Management.svg;",.5*b,.5*b,"","Azure AD Privileged Identity Management",null, +null,this.getTagsForStencil(a,"azure ad privileged identity management","ms microsoft cloud enterprise identity service").join(" ")),this.createVertexTemplateEntry("aspect=fixed;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.azure_rights_management_rms;fillColor=#58B4D9;",.42*b,.5*b,"","Azure Information Protection",null,null,this.getTagsForStencil(a,"azure information protection","ms microsoft cloud enterprise identity service").join(" ")), +this.createVertexTemplateEntry(c+"Security_Center.svg;",.36*b,.5*b,"","Conditional Access",null,null,this.getTagsForStencil(a,"conditional access security center","ms microsoft cloud enterprise identity service").join(" ")),this.createVertexTemplateEntry(c+"Enterprise_Applications.svg;",.49*b,.5*b,"","Enterprise Applications",null,null,this.getTagsForStencil(a,"enterprise applications","ms microsoft cloud enterprise identity service").join(" ")),this.createVertexTemplateEntry(c+"Identity_Governance.svg;", +.5*b,.5*b,"","Identity Governance",null,null,this.getTagsForStencil(a,"identity governance","ms microsoft cloud enterprise identity service").join(" ")),this.createVertexTemplateEntry(c+"Managed_Identities.svg;",.38*b,.5*b,"","Managed Identitties",null,null,this.getTagsForStencil(a,"managed identities","ms microsoft cloud enterprise identity service").join(" "))];this.addPalette("mscaeIdentity Service","CAE / Identity Service",!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))}; +Sidebar.prototype.addMSCAEIntegrationServicePalette=function(a,b,e,c){var d=[this.createVertexTemplateEntry(c+"API_Management.svg;",.5*b,.42*b,"","API Management Service",null,null,this.getTagsForStencil(a,"api application programming interface management service","ms microsoft cloud enterprise integration service").join(" ")),this.createVertexTemplateEntry(c+"App_Configuration.svg;",.5*b,.49*b,"","App Configuration",null,null,this.getTagsForStencil(a,"app configuration","ms microsoft cloud enterprise integration service").join(" ")), +this.createVertexTemplateEntry(c+"Azure_API_for_FHIR.svg;",.5*b,.5*b,"","Azure API for FHIR",null,null,this.getTagsForStencil(a,"azure api application programming interface for fhir","ms microsoft cloud enterprise integration service").join(" ")),this.createVertexTemplateEntry(c+"Data_Catalog.svg;",.47*b,.5*b,"","Azure Data Catalog",null,null,this.getTagsForStencil(a,"azure data catalog","ms microsoft cloud enterprise integration service").join(" ")),this.createVertexTemplateEntry(c+"Service_Bus_Relay.svg;", +.5*b,.5*b,"","Azure Service Bus Relays",null,null,this.getTagsForStencil(a,"azure service bus relay relays","ms microsoft cloud enterprise integration service").join(" ")),this.createVertexTemplateEntry(c+"Service_Bus_Relay.svg;",.5*b,.5*b,"","Azure Service Bus Relays",null,null,this.getTagsForStencil(a,"azure service bus relay relays","ms microsoft cloud enterprise integration service").join(" ")),this.createVertexTemplateEntry(c+"Service_Bus.svg;",.5*b,.5*b,"","Azure Service Bus",null,null,this.getTagsForStencil(a, +"azure service bus","ms microsoft cloud enterprise integration service").join(" ")),this.createVertexTemplateEntry(c+"StorSimple.svg;",.5*b,.45*b,"","Azure StorSimple Device Managers",null,null,this.getTagsForStencil(a,"azure storsimple device managers","ms microsoft cloud enterprise integration service").join(" ")),this.createVertexTemplateEntry(c+"Event_Grid.svg;",.5*b,.5*b,"","Event Grid Domains and Subscriptions",null,null,this.getTagsForStencil(a,"event grid domains subscriptions","ms microsoft cloud enterprise integration service").join(" ")), +this.createVertexTemplateEntry(c+"Event_Grid_Topics.svg;",.5*b,.5*b,"","Event Grid Topics",null,null,this.getTagsForStencil(a,"event grid topics","ms microsoft cloud enterprise integration service").join(" ")),this.createVertexTemplateEntry(c+"Event_Grid_Topics.svg;",.5*b,.5*b,"","Event Grid Topics",null,null,this.getTagsForStencil(a,"event grid topics","ms microsoft cloud enterprise integration service").join(" ")),this.createVertexTemplateEntry(c+"Integration_Accounts.svg;",.5*b,.5*b,"","Integration Accounts", +null,null,this.getTagsForStencil(a,"integration accounts","ms microsoft cloud enterprise integration service").join(" ")),this.createVertexTemplateEntry(c+"Integration_Service_Environments.svg;",.5*b,.5*b,"","Integration Service Environments",null,null,this.getTagsForStencil(a,"integration service environments","ms microsoft cloud enterprise integration service").join(" ")),this.createVertexTemplateEntry(c+"Logic_Apps_Custom_Connector.svg;",.5*b,.5*b,"","Logic Apps Custom Connector",null,null,this.getTagsForStencil(a, +"logic apps custom connector","ms microsoft cloud enterprise integration service").join(" ")),this.createVertexTemplateEntry(c+"Logic_Apps.svg;",.5*b,.39*b,"","Logic Apps",null,null,this.getTagsForStencil(a,"logic apps","ms microsoft cloud enterprise integration service").join(" ")),this.createVertexTemplateEntry(c+"SendGrid_Accounts.svg;",.5*b,.5*b,"","SendGrid Accounts",null,null,this.getTagsForStencil(a,"sendgrid accounts","ms microsoft cloud enterprise integration service").join(" ")),this.createVertexTemplateEntry(c+ +"Service_Catalog_Managed_Application_Definitions.svg;",.47*b,.5*b,"","Service Catalog Managed Application Definitions",null,null,this.getTagsForStencil(a,"service catalog managed application definitions","ms microsoft cloud enterprise integration service").join(" ")),this.createVertexTemplateEntry(c+"Software_as_a_Service.svg;",.5*b,.5*b,"","Software as a Service (SaaS)",null,null,this.getTagsForStencil(a,"software service saas","ms microsoft cloud enterprise integration service").join(" "))];this.addPalette("mscaeIntegration Service", +"CAE / Integration Service",!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addMSCAEInternetOfThingsServicePalette=function(a,b,e,c){var d=[this.createVertexTemplateEntry(c+"Azure_Digital_Twins.svg;",.45*b,.5*b,"","Azure Digital Twins",null,null,this.getTagsForStencil(a,"azure digital twins","ms microsoft cloud enterprise iot internet of things").join(" ")),this.createVertexTemplateEntry(c+"Azure_IoT_Hub_Security.svg;",.37*b,.5*b,"","Azure IoT Hub Security", +null,null,this.getTagsForStencil(a,"azure hub security","ms microsoft cloud enterprise iot internet of things").join(" ")),this.createVertexTemplateEntry(c+"Azure_IoT_Hub.svg;",.5*b,.5*b,"","Azure IoT Hub",null,null,this.getTagsForStencil(a,"azure hub","ms microsoft cloud enterprise iot internet of things").join(" ")),this.createVertexTemplateEntry(c+"Azure_Maps.svg;",.39*b,.5*b,"","Azure Maps",null,null,this.getTagsForStencil(a,"azure maps","ms microsoft cloud enterprise iot internet of things").join(" ")), +this.createVertexTemplateEntry(c+"Azure_Sphere.svg;",.48*b,.5*b,"","Azure Sphere",null,null,this.getTagsForStencil(a,"azure sphere","ms microsoft cloud enterprise iot internet of things").join(" ")),this.createVertexTemplateEntry(c+"Device_Provisioning_Services.svg;",.48*b,.5*b,"","Device Provisioning Services",null,null,this.getTagsForStencil(a,"device provisioning services","ms microsoft cloud enterprise iot internet of things").join(" ")),this.createVertexTemplateEntry("aspect=fixed;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.central;fillColor=#0079D6;pointerEvents=1;", +.44*b,.5*b,"","IoT Central Applications",null,null,this.getTagsForStencil(a,"central applications","ms microsoft cloud enterprise iot internet of things").join(" ")),this.createVertexTemplateEntry(c+"Time_Series_Insights_environments.svg;",.49*b,.5*b,"","Time Series Insights environments",null,null,this.getTagsForStencil(a,"time series insights environments","ms microsoft cloud enterprise iot internet of things").join(" ")),this.createVertexTemplateEntry(c+"Input.svg;",.5*b,.45*b,"","Time Series Insights Events Sources", +null,null,this.getTagsForStencil(a,"time series insights events sources input","ms microsoft cloud enterprise iot internet of things").join(" ")),this.createVertexTemplateEntry(c+"Windows_10_IoT_Core_Services.svg;",.5*b,.5*b,"","Windows 10 IoT Core Services",null,null,this.getTagsForStencil(a,"windows 10 core services","ms microsoft cloud enterprise iot internet of things").join(" "))];this.addPalette("mscaeInternet of Things Service","CAE / Internet of Things Service",!1,mxUtils.bind(this,function(a){for(var b= +0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addMSCAEIntuneServicePalette=function(a,b,e,c){var d=[this.createVertexTemplateEntry(c+"Client_Apps.svg;",.5*b,.5*b,"","Client Apps",null,null,this.getTagsForStencil(a,"client apps","ms microsoft cloud enterprise intune service").join(" ")),this.createVertexTemplateEntry(c+"Dedicated_Event_Hub.svg;",.5*b,.48*b,"","Dedicated Event Hub",null,null,this.getTagsForStencil(a,"dedicated event hub","ms microsoft cloud enterprise intune service").join(" ")), +this.createVertexTemplateEntry(c+"Device_Compliance.svg;",.41*b,.5*b,"","Device Compliance",null,null,this.getTagsForStencil(a,"device compliance","ms microsoft cloud enterprise intune service").join(" ")),this.createVertexTemplateEntry(c+"Device_Config.svg;",.44*b,.5*b,"","Device Config",null,null,this.getTagsForStencil(a,"device config","ms microsoft cloud enterprise intune service").join(" ")),this.createVertexTemplateEntry(c+"Devices_Groups.svg;",.5*b,.5*b,"","Devices Groups",null,null,this.getTagsForStencil(a, +"devices groups","ms microsoft cloud enterprise intune service").join(" ")),this.createVertexTemplateEntry(c+"eBooks.svg;",.5*b,.41*b,"","eBooks",null,null,this.getTagsForStencil(a,"ebooks","ms microsoft cloud enterprise intune service").join(" ")),this.createVertexTemplateEntry(c+"Enrollment.svg;",.5*b,.5*b,"","Enrollment",null,null,this.getTagsForStencil(a,"enrollment","ms microsoft cloud enterprise intune service").join(" ")),this.createVertexTemplateEntry(c+"Exchange_On_premises_Access.svg;", +.29*b,.5*b,"","Exchange On-premises Access",null,null,this.getTagsForStencil(a,"exchange on premises access","ms microsoft cloud enterprise intune service").join(" ")),this.createVertexTemplateEntry(c+"Intune_App_Protection.svg;",.5*b,.4*b,"","Intune App Protection",null,null,this.getTagsForStencil(a,"intune app protection","ms microsoft cloud enterprise intune service").join(" ")),this.createVertexTemplateEntry(c+"Managed_Desktop.svg;",.5*b,.36*b,"","Managed Desktop",null,null,this.getTagsForStencil(a, +"managed desktop","ms microsoft cloud enterprise intune service").join(" ")),this.createVertexTemplateEntry(c+"Security_Baselines.svg;",.44*b,.5*b,"","Security Baselines",null,null,this.getTagsForStencil(a,"security baselines","ms microsoft cloud enterprise intune service").join(" ")),this.createVertexTemplateEntry(c+"Software_Update.svg;",.5*b,.45*b,"","Software Update",null,null,this.getTagsForStencil(a,"software update","ms microsoft cloud enterprise intune service").join(" ")),this.createVertexTemplateEntry(c+ +"Tools.svg;",.47*b,.5*b,"","Tools",null,null,this.getTagsForStencil(a,"tools","ms microsoft cloud enterprise intune service").join(" "))];this.addPalette("mscaeIntune Service","CAE / Intune Service",!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addMSCAEManagementGovernanceServicePalette=function(a,b,e,c){var d=[this.createVertexTemplateEntry(c+"Log.svg;",.45*b,.5*b,"","Activity Log",null,null,this.getTagsForStencil(a,"activity log","ms microsoft cloud enterprise management and governance service").join(" ")), +this.createVertexTemplateEntry(c+"Advisor.svg;",.5*b,.5*b,"","Advisor",null,null,this.getTagsForStencil(a,"advisor","ms microsoft cloud enterprise management and governance service").join(" ")),this.createVertexTemplateEntry(c+"Notification.svg;",.5*b,.5*b,"","Alerts",null,null,this.getTagsForStencil(a,"notification alert alerts","ms microsoft cloud enterprise management and governance service").join(" ")),this.createVertexTemplateEntry(c+"Automation.svg;",.5*b,.5*b,"","Automation Accounts",null, +null,this.getTagsForStencil(a,"automation accounts","ms microsoft cloud enterprise management and governance service").join(" ")),this.createVertexTemplateEntry(c+"Blueprints.svg;",.5*b,.48*b,"","Blueprints",null,null,this.getTagsForStencil(a,"blueprints","ms microsoft cloud enterprise management and governance service").join(" ")),this.createVertexTemplateEntry(c+"BillingHub.svg;",.5*b,.5*b,"","BillingHub",null,null,this.getTagsForStencil(a,"billinghub","ms microsoft cloud enterprise management and governance service").join(" ")), +this.createVertexTemplateEntry(c+"LogDiagnostics.svg;",.45*b,.5*b,"","Diagnostic Settings",null,null,this.getTagsForStencil(a,"diagnostic settings log","ms microsoft cloud enterprise management and governance service").join(" ")),this.createVertexTemplateEntry(c+"Free_Services.svg;",.5*b,.46*b,"","Free Services",null,null,this.getTagsForStencil(a,"free services","ms microsoft cloud enterprise management and governance service").join(" ")),this.createVertexTemplateEntry(c+"Guest_Assignments.svg;", +.44*b,.5*b,"","Guest Assignments",null,null,this.getTagsForStencil(a,"guest assignments","ms microsoft cloud enterprise management and governance service").join(" ")),this.createVertexTemplateEntry(c+"Managed_Applications.svg;",.47*b,.5*b,"","Managed Applications",null,null,this.getTagsForStencil(a,"managed applications","ms microsoft cloud enterprise management and governance service").join(" ")),this.createVertexTemplateEntry(c+"Chart.svg;",.5*b,.48*b,"","Metrics",null,null,this.getTagsForStencil(a, +"metrics chart","ms microsoft cloud enterprise management and governance service").join(" ")),this.createVertexTemplateEntry(c+"Monitor.svg;",.5*b,.5*b,"","Monitor",null,null,this.getTagsForStencil(a,"monitor","ms microsoft cloud enterprise management and governance service").join(" ")),this.createVertexTemplateEntry(c+"Network_watcher.svg;",.5*b,.5*b,"","Network Watcher",null,null,this.getTagsForStencil(a,"network watcher","ms microsoft cloud enterprise management and governance service").join(" ")), +this.createVertexTemplateEntry(c+"Policy.svg;",.45*b,.5*b,"","Policy",null,null,this.getTagsForStencil(a,"policy","ms microsoft cloud enterprise management and governance service").join(" ")),this.createVertexTemplateEntry(c+"Backup.svg;",.5*b,.42*b,"","Recovery Services Vault",null,null,this.getTagsForStencil(a,"recovery services vault backup","ms microsoft cloud enterprise management and governance service").join(" ")),this.createVertexTemplateEntry(c+"Resource_Graph_Explorer.svg;",.49*b,.5*b,"", +"Resource Graph Explorer",null,null,this.getTagsForStencil(a,"resource graph explorer","ms microsoft cloud enterprise management and governance service").join(" ")),this.createVertexTemplateEntry(c+"SchedulerJobCollection.svg;",.5*b,.43*b,"","Scheduler Job Collections",null,null,this.getTagsForStencil(a,"scheduler job collection collections","ms microsoft cloud enterprise management and governance service").join(" ")),this.createVertexTemplateEntry(c+"Solutions.svg;",.5*b,.5*b,"","Solutions",null, +null,this.getTagsForStencil(a,"solutions","ms microsoft cloud enterprise management and governance service").join(" "))];this.addPalette("mscaeManagement and Governance Service","CAE / Management and Governance Service",!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addMSCAEManagementGovernanceMediaServicePalette=function(a,b,e,c){var d=[this.createVertexTemplateEntry(c+"Azure_Media_Player.svg;",.45*b,.5*b,"","Azure Media Player",null,null, +this.getTagsForStencil(a,"azure media player","ms microsoft cloud enterprise management and governance service media").join(" ")),this.createVertexTemplateEntry(c+"Content_Protection.svg;",.45*b,.5*b,"","Content Protection",null,null,this.getTagsForStencil(a,"content protection","ms microsoft cloud enterprise management and governance service media").join(" ")),this.createVertexTemplateEntry(c+"Media_Encoding.svg;",.43*b,.5*b,"","Media Encoding",null,null,this.getTagsForStencil(a,"media encoding", +"ms microsoft cloud enterprise management and governance service media").join(" ")),this.createVertexTemplateEntry(c+"Media_On_Demand.svg;",.5*b,.5*b,"","Media On Demand",null,null,this.getTagsForStencil(a,"media_on_demand","ms microsoft cloud enterprise management and governance service media").join(" "))];this.addPalette("mscaeManagement and Governance Service Media","CAE / Management and Governance Service - Media",!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))}; +Sidebar.prototype.addMSCAEMigrateServicePalette=function(a,b,e,c){var d=[this.createVertexTemplateEntry(c+"Azure_Database_Migration_Services.svg;",.5*b,.5*b,"","Azure Database Migration Services",null,null,this.getTagsForStencil(a,"azure database migration services","ms microsoft cloud enterprise migrate service").join(" ")),this.createVertexTemplateEntry(c+"Migration_Projects.svg;",.5*b,.32*b,"","Migration Projects",null,null,this.getTagsForStencil(a,"migration projects","ms microsoft cloud enterprise migrate service").join(" ")), +this.createVertexTemplateEntry(c+"Backup.svg;",.5*b,.42*b,"","Recovery Services Vaults",null,null,this.getTagsForStencil(a,"recovery services vaults vault","ms microsoft cloud enterprise migrate service").join(" "))];this.addPalette("mscaeMigrate Service","CAE / Migrate Service",!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addMSCAEMixedRealityServicePalette=function(a,b,e,c){var d=[this.createVertexTemplateEntry(c+"Spatial_Anchor.svg;",.48* +b,.5*b,"","Spatial Anchor",null,null,this.getTagsForStencil(a,"spatial anchor","ms microsoft cloud enterprise mixed reality service").join(" "))];this.addPalette("mscaeMixed Reality Service","CAE / Mixed Reality Service",!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addMSCAEMobileServicePalette=function(a,b,e,c){var d=[this.createVertexTemplateEntry(c+"App_Service_Mobile_App.svg;",.34*b,.5*b,"","Azure App Service - Mobile",null,null,this.getTagsForStencil(a, +"azure app service mobile","ms microsoft cloud enterprise mobile service").join(" ")),this.createVertexTemplateEntry(c+"Mobile_Engagement.svg;",.34*b,.5*b,"","Azure Mobile Engagement",null,null,this.getTagsForStencil(a,"azure mobile engagement","ms microsoft cloud enterprise mobile service").join(" ")),this.createVertexTemplateEntry(c+"Notification_Hubs.svg;",.5*b,.5*b,"","Notification_Hubs",null,null,this.getTagsForStencil(a,"notification hubs","ms microsoft cloud enterprise mobile service").join(" "))]; +this.addPalette("mscaeMobile Service","CAE / Mobile Service",!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addMSCAENetworkingServicePalette=function(a,b,e,c){var d=[this.createVertexTemplateEntry(c+"Application_Gateway.svg;",.5*b,.5*b,"","Application Gateway",null,null,this.getTagsForStencil(a,"application gateway","ms microsoft cloud enterprise networking service").join(" ")),this.createVertexTemplateEntry(c+"Application_Security_Groups.svg;", +.37*b,.5*b,"","Application Security Groups",null,null,this.getTagsForStencil(a,"application security groups","ms microsoft cloud enterprise networking service").join(" ")),this.createVertexTemplateEntry(c+"Azure_Firewall.svg;",.5*b,.5*b,"","Azure Firewall",null,null,this.getTagsForStencil(a,"azure firewall","ms microsoft cloud enterprise networking service").join(" ")),this.createVertexTemplateEntry(c+"Content_Delivery_Network.svg;",.5*b,.23*b,"","CDN Profiles",null,null,this.getTagsForStencil(a, +"cdn profiles content delivery network","ms microsoft cloud enterprise networking service").join(" ")),this.createVertexTemplateEntry(c+"Connections.svg;",.5*b,.5*b,"","Connections",null,null,this.getTagsForStencil(a,"connections","ms microsoft cloud enterprise networking service").join(" ")),this.createVertexTemplateEntry(c+"Connections.svg;",.5*b,.5*b,"","Connections",null,null,this.getTagsForStencil(a,"connections","ms microsoft cloud enterprise networking service").join(" ")),this.createVertexTemplateEntry(c+ +"DDOS_Protection_Plans.svg;",.37*b,.5*b,"","DDOS Protection Plans",null,null,this.getTagsForStencil(a,"ddos protection plans","ms microsoft cloud enterprise networking service").join(" ")),this.createVertexTemplateEntry(c+"DNS_Private_Zones.svg;",.5*b,.5*b,"","DNS Private Zones",null,null,this.getTagsForStencil(a,"dns domain name server private zones","ms microsoft cloud enterprise networking service").join(" ")),this.createVertexTemplateEntry(c+"DNS.svg;",.5*b,.5*b,"","DNS Zones",null,null,this.getTagsForStencil(a, +"dns domain name server zones","ms microsoft cloud enterprise networking service").join(" ")),this.createVertexTemplateEntry(c+"Express_Route.svg;",.5*b,.3*b,"","Express Route Circuits",null,null,this.getTagsForStencil(a,"express route circuits","ms microsoft cloud enterprise networking service").join(" ")),this.createVertexTemplateEntry(c+"Front_Doors.svg;",.5*b,.44*b,"","Front Doors",null,null,this.getTagsForStencil(a,"front doors","ms microsoft cloud enterprise networking service").join(" ")), +this.createVertexTemplateEntry(c+"Load_Balancer_feature.svg;",.5*b,.5*b,"","Load Balancers",null,null,this.getTagsForStencil(a,"load balancer balancers","ms microsoft cloud enterprise networking service").join(" ")),this.createVertexTemplateEntry(c+"Local_Network_Gateways.svg;",.5*b,.5*b,"","Local Network Gateways",null,null,this.getTagsForStencil(a,"local network gateways","ms microsoft cloud enterprise networking service").join(" ")),this.createVertexTemplateEntry(c+"NetworkInterfaceCard.svg;", +.44*b,.5*b,"","Network Interface Card",null,null,this.getTagsForStencil(a,"network interface card","ms microsoft cloud enterprise networking service").join(" ")),this.createVertexTemplateEntry(c+"Network_Security_Groups_Classic.svg;",.37*b,.5*b,"","Network Security Groups (Classic)",null,null,this.getTagsForStencil(a,"network security group classic","ms microsoft cloud enterprise networking service").join(" ")),this.createVertexTemplateEntry(c+"Network_watcher.svg;",.5*b,.5*b,"","Network Watcher", +null,null,this.getTagsForStencil(a,"network watcher","ms microsoft cloud enterprise networking service").join(" ")),this.createVertexTemplateEntry(c+"On_Premises_Data_Gateways.svg;",.5*b,.5*b,"","On-Premises Data Gateways",null,null,this.getTagsForStencil(a,"on premises data gateways","ms microsoft cloud enterprise networking service").join(" ")),this.createVertexTemplateEntry(c+"App_Service_IPAddress.svg;",.5*b,.42*b,"","Public IP Addresses",null,null,this.getTagsForStencil(a,"app service ip internet protocol address addresses", +"ms microsoft cloud enterprise networking service").join(" ")),this.createVertexTemplateEntry(c+"ClassicIPAddress.svg;",.5*b,.42*b,"","Reserved IP Addresses (Classic)",null,null,this.getTagsForStencil(a,"classic ip internet protocol address adresses","ms microsoft cloud enterprise networking service").join(" ")),this.createVertexTemplateEntry(c+"Route_Filter.svg;",.5*b,.42*b,"","Route Filters",null,null,this.getTagsForStencil(a,"route filters","ms microsoft cloud enterprise networking service").join(" ")), +this.createVertexTemplateEntry(c+"UserDefinedRoute.svg;",.5*b,.5*b,"","Route Tables",null,null,this.getTagsForStencil(a,"route tables","ms microsoft cloud enterprise networking service").join(" ")),this.createVertexTemplateEntry(c+"Service_Endpoint_Policies.svg;",.49*b,.5*b,"","Service Endpoint Policies",null,null,this.getTagsForStencil(a,"service endpoint policies","ms microsoft cloud enterprise networking service").join(" ")),this.createVertexTemplateEntry(c+"Traffic_Manager.svg;",.5*b,.5*b,"", +"Traffic Manager Profiles",null,null,this.getTagsForStencil(a,"traffic manager profiles","ms microsoft cloud enterprise networking service").join(" ")),this.createVertexTemplateEntry(c+"Virtual_Network_Classic.svg;",.5*b,.28*b,"","Virtual Network (Classic)",null,null,this.getTagsForStencil(a,"virtual network classic","ms microsoft cloud enterprise networking service").join(" ")),this.createVertexTemplateEntry(c+"VPN_Gateway.svg;",.45*b,.5*b,"","Virtual Network Gateways",null,null,this.getTagsForStencil(a, +"vpn gateway gateways virtual private network","ms microsoft cloud enterprise networking service").join(" ")),this.createVertexTemplateEntry(c+"Virtual_Network.svg;",.5*b,.28*b,"","Virtual Networks",null,null,this.getTagsForStencil(a,"virtual network networks","ms microsoft cloud enterprise networking service").join(" ")),this.createVertexTemplateEntry(c+"aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Virtual_WANs.svg;",.5*b,.5*b,"","Virtual WANs", +null,null,this.getTagsForStencil(a,"virtual wans wan wide area network networks","ms microsoft cloud enterprise networking service").join(" "))];this.addPalette("mscaeNetworking Service","CAE / Networking Service",!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addMSCAEOtherCategoryServicePalette=function(a,b,e,c){var d=[this.createVertexTemplateEntry(c+"CloudSimple_Nodes.svg;",.49*b,.5*b,"","CloudSimple Nodes",null,null,this.getTagsForStencil(a, +"cloudsimple nodes","ms microsoft cloud enterprise other category service").join(" ")),this.createVertexTemplateEntry(c+"CloudSimple_Services.svg;",.5*b,.5*b,"","CloudSimple Services",null,null,this.getTagsForStencil(a,"cloudsimple services","ms microsoft cloud enterprise other category service").join(" ")),this.createVertexTemplateEntry(c+"CloudSimple_Virtual_Machines.svg;",.5*b,.32*b,"","CloudSimple Virtual Machines",null,null,this.getTagsForStencil(a,"cloudsimple virtual machines","ms microsoft cloud enterprise other category service").join(" ")), +this.createVertexTemplateEntry(c+"Controllers.svg;",.5*b,.44*b,"","Controllers",null,null,this.getTagsForStencil(a,"controllers","ms microsoft cloud enterprise other category service").join(" ")),this.createVertexTemplateEntry(c+"Customer_Lockbox.svg;",.47*b,.5*b,"","Customer Lockbox",null,null,this.getTagsForStencil(a,"customer lockbox","ms microsoft cloud enterprise other category service").join(" ")),this.createVertexTemplateEntry(c+"Education.svg;",.5*b,.39*b,"","Education",null,null,this.getTagsForStencil(a, +"education","ms microsoft cloud enterprise other category service").join(" ")),this.createVertexTemplateEntry(c+"Image_Definitions.svg;",.5*b,.39*b,"","Image Definitions",null,null,this.getTagsForStencil(a,"image definitions","ms microsoft cloud enterprise other category service").join(" ")),this.createVertexTemplateEntry(c+"Image_Versions.svg;",.5*b,.48*b,"","Image Versions",null,null,this.getTagsForStencil(a,"image versions","ms microsoft cloud enterprise other category service").join(" ")),this.createVertexTemplateEntry(c+ +"Resource_Explorer.svg;",.5*b,.46*b,"","Resource Explorer",null,null,this.getTagsForStencil(a,"resource explorer","ms microsoft cloud enterprise other category service").join(" ")),this.createVertexTemplateEntry(c+"Shared_Image_Galleries.svg;",.5*b,.5*b,"","Shared Image Galleries",null,null,this.getTagsForStencil(a,"shared image galleries","ms microsoft cloud enterprise other category service").join(" ")),this.createVertexTemplateEntry(c+"Tenant_Status.svg;",.46*b,.5*b,"","Tenant Status",null,null, +this.getTagsForStencil(a,"tenant status","ms microsoft cloud enterprise other category service").join(" ")),this.createVertexTemplateEntry(c+"Web_App_Firewall.svg;",.5*b,.5*b,"","Web App Firewall",null,null,this.getTagsForStencil(a,"web app firewall","ms microsoft cloud enterprise other category service").join(" "))];this.addPalette("mscaeOther Category Service","CAE / Other Category Service",!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addMSCAESecurityServicePalette= +function(a,b,e,c){var d=[this.createVertexTemplateEntry(c+"Azure_Sentinel.svg;",.44*b,.5*b,"","Azure Sentinel",null,null,this.getTagsForStencil(a,"azure sentinel","ms microsoft cloud enterprise security service").join(" ")),this.createVertexTemplateEntry(c+"Key_Vaults.svg;",.48*b,.5*b,"","Key Vaults",null,null,this.getTagsForStencil(a,"key vaults","ms microsoft cloud enterprise security service").join(" ")),this.createVertexTemplateEntry(c+"Security_Center.svg;",.36*b,.5*b,"","Security Center",null, +null,this.getTagsForStencil(a,"security center","ms microsoft cloud enterprise security service").join(" "))];this.addPalette("mscaeSecurity Service","CAE / Security Service",!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addMSCAEStorageServicePalette=function(a,b,e,c){var d=[this.createVertexTemplateEntry(c+"Archive_Storage.svg;",.5*b,.48*b,"","Archive Storage",null,null,this.getTagsForStencil(a,"archive storage","ms microsoft cloud enterprise storage service").join(" ")), +this.createVertexTemplateEntry(c+"Azure_NetApp_files.svg;",.5*b,.42*b,"","Azure NetApp files",null,null,this.getTagsForStencil(a,"azure netapp files","ms microsoft cloud enterprise storage service").join(" ")),this.createVertexTemplateEntry(c+"StorSimple.svg;",.5*b,.45*b,"","StorSimple",null,null,this.getTagsForStencil(a,"storsimple","ms microsoft cloud enterprise storage service").join(" ")),this.createVertexTemplateEntry(c+"AzureFXTEdgeFiler.svg;",.5*b,.5*b,"","AzureFXTEdgeFiler",null,null,this.getTagsForStencil(a, +"azurefxtedgefiler","ms microsoft cloud enterprise storage service").join(" ")),this.createVertexTemplateEntry(c+"Blog_Storage.svg;",.5*b,.46*b,"","Blog Storage",null,null,this.getTagsForStencil(a,"blog storage","ms microsoft cloud enterprise storage service").join(" ")),this.createVertexTemplateEntry(c+"Data_Box_Edge_Data_Box_Gateway.svg;",.5*b,.32*b,"","Data Box Edge - Data Box Gateway",null,null,this.getTagsForStencil(a,"data box edge data gateway","ms microsoft cloud enterprise storage service").join(" ")), +this.createVertexTemplateEntry(c+"Data_Box.svg;",.5*b,.47*b,"","Data Box / Import Export Storage",null,null,this.getTagsForStencil(a,"data box","ms microsoft cloud enterprise storage service").join(" ")),this.createVertexTemplateEntry(c+"Data_Lake_Storage.svg;",.5*b,.46*b,"","Data Lake Storage",null,null,this.getTagsForStencil(a,"data lake storage","ms microsoft cloud enterprise storage service").join(" ")),this.createVertexTemplateEntry(c+"General_Storage.svg;",.5*b,.5*b,"","General Storage",null, +null,this.getTagsForStencil(a,"general storage","ms microsoft cloud enterprise storage service").join(" ")),this.createVertexTemplateEntry(c+"Queues_Storage.svg;",.5*b,.44*b,"","Queues Storage",null,null,this.getTagsForStencil(a,"queues storage","ms microsoft cloud enterprise storage service").join(" ")),this.createVertexTemplateEntry(c+"ClassicStorage.svg;",.5*b,.43*b,"","Classic Storage",null,null,this.getTagsForStencil(a,"classic storage","ms microsoft cloud enterprise storage service").join(" ")), +this.createVertexTemplateEntry(c+"Storage_Accounts.svg;",.5*b,.45*b,"","Storage Accounts",null,null,this.getTagsForStencil(a,"storage accounts","ms microsoft cloud enterprise storage service").join(" ")),this.createVertexTemplateEntry(c+"Storage_Explorer.svg;",.5*b,.5*b,"","Storage Explorer",null,null,this.getTagsForStencil(a,"storage explorer","ms microsoft cloud enterprise storage service").join(" ")),this.createVertexTemplateEntry(c+"Storage_sync_service.svg;",.5*b,.5*b,"","Storage Sync Services", +null,null,this.getTagsForStencil(a,"storage sync services","ms microsoft cloud enterprise storage service").join(" ")),this.createVertexTemplateEntry(c+"StorSimple_Data_Managers.svg;",.37*b,.5*b,"","StorSimple Data Managers",null,null,this.getTagsForStencil(a,"storsimple data managers","ms microsoft cloud enterprise storage service").join(" ")),this.createVertexTemplateEntry("aspect=fixed;verticalLabelPosition=bottom;html=1;verticalAlign=top;align=center;strokeColor=none;fillColor=#00BEF2;shape=mxgraph.azure.storsimple;", +.5*b,.45*b,"","StorSimple Device Managers",null,null,this.getTagsForStencil(a,"storsimple device managers","ms microsoft cloud enterprise storage service").join(" ")),this.createVertexTemplateEntry(c+"StorSimple_Data_Managers.svg;",.37*b,.5*b,"","StorSimple Data Managers",null,null,this.getTagsForStencil(a,"storsimple data managers","ms microsoft cloud enterprise storage service").join(" ")),this.createVertexTemplateEntry(c+"Table_Storage.svg;",.5*b,.48*b,"","Table Storage",null,null,this.getTagsForStencil(a, +"table storage","ms microsoft cloud enterprise storage service").join(" "))];this.addPalette("mscaeStorage Service","CAE / Storage Service",!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))};Sidebar.prototype.addMSCAEWebServicePalette=function(a,b,e,c){var d=[this.createVertexTemplateEntry(c+"Connection.svg;",.5*b,.31*b,"","Connection",null,null,this.getTagsForStencil(a,"connection","ms microsoft cloud enterprise web service").join(" ")),this.createVertexTemplateEntry(c+ +"Certificate.svg;",.5*b,.42*b,"","App Service Certificates",null,null,this.getTagsForStencil(a,"app application certificates certificate","ms microsoft cloud enterprise web service").join(" ")),this.createVertexTemplateEntry(c+"CustomDomain.svg;",.5*b,.42*b,"","App Service Domains",null,null,this.getTagsForStencil(a,"app service domain domains","ms microsoft cloud enterprise web service").join(" ")),this.createVertexTemplateEntry(c+"App_Service.svg;",.5*b,.5*b,"","App Service Environments",null,null, +this.getTagsForStencil(a,"app service environments","ms microsoft cloud enterprise web service").join(" ")),this.createVertexTemplateEntry(c+"WebHosting.svg;",.5*b,.5*b,"","App Service Plans",null,null,this.getTagsForStencil(a,"app plans web hosting","ms microsoft cloud enterprise web service").join(" ")),this.createVertexTemplateEntry(c+"App_Services.svg;",.5*b,.5*b,"","App Services",null,null,this.getTagsForStencil(a,"app services","ms microsoft cloud enterprise web service").join(" ")),this.createVertexTemplateEntry(c+ +"Media_Services.svg;",.44*b,.5*b,"","Azure Media Services",null,null,this.getTagsForStencil(a,"azure media services","ms microsoft cloud enterprise web service").join(" ")),this.createVertexTemplateEntry(c+"Search.svg;",.5*b,.5*b,"","Azure Search",null,null,this.getTagsForStencil(a,"azure search","ms microsoft cloud enterprise web service").join(" ")),this.createVertexTemplateEntry(c+"Notification_Hubs.svg;",.5*b,.5*b,"","Notification Hub Namespaces",null,null,this.getTagsForStencil(a,"notification hub namespace namespaces", +"ms microsoft cloud enterprise web service").join(" ")),this.createVertexTemplateEntry(c+"SignalR.svg;",.5*b,.5*b,"","SignalR",null,null,this.getTagsForStencil(a,"signalr","ms microsoft cloud enterprise web service").join(" "))];this.addPalette("mscaeWeb Service","CAE / Web Service",!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))}})();(function(){Sidebar.prototype.addNetworkPalette=function(){this.addPaletteFunctions("network","Network",!1,[this.addDataEntry("computer network ring bus",100,100,"Ring Bus","7VfJboMwEP0arpWBkNJjgTanSpF66NmKJ2DVYDQ429/XYIclKi2Nkp5AQrLfrLzHsDh+nB9XSMvsTTIQjv/i+DFKqcwqP8YghOMRzhw/cTyP6NPxXkesbmMlJUUo1JQAzwTsqdiBQQxQqZOwQKZy3VbiOn605ULEUkhsLH7cHBqvFMpP6FmWYehGfm3JaFnn0VV5WelVVALyHBRgh647KEqRMq6bPycrZAE9OOEIG8Vl0ZhQZXVXsnPXtbfN0Xb1wVntlXgasRcLqOA4SlgDWbZWIHVjeNIuNsALTMRpuD3YKnoXGMZJBjzN1BCjldmnbd5OG72w8nwvlf+7VOM6AEvh3TpaSlHuCgZ1clI7FOwZUR46O6NV1pp7N8EYrXWJAamKYgpqcJ9N4BlBUMX3w1Tf8WZD15LrjK0+l0xXcocbsE4XZLdVJ/G/mPmfwH8YPAwnxF2cgdtLEsySTJDEJWSgyP1GZDnrcc2IdMDtJXmcJfnDW+P8zCJ3G5Fw1mPKI2vxjyPyNEvykyR3f2u4ZBbgmpm44ZeV3nb/nMa9/0v6BQ=="), this.addDataEntry("computer network bus backbone",260,140,"Bus","7ZdNj4IwEIZ/DVcD1HXd4wK7njYx8bDnKiM0FmqGori/fltaBb8Ws5EbJCb0nel0fF4yBIeEWTVDuk2/RAzcIR8OCVEIae6yKgTOHd9lsUMix/dd9XP8zztRr466W4qQy0c2+GbDjvISjGKEQh64FVKZqbYizyHBmnEeCi6wjpCwvpReSBQbaEUm06kXEBVJkMZM9XKM5SKHlhwxhJVkIq9DKNNTsW8W61XkayWlW91MViUa1CgHuRe4KUbLsvjfGWvRpKt21/Wl9C0gy0CC1pd0tVmqUvNGC47agv3ohhRcEliCgBKquy7UkrVgBkLVw4NKOZjoxJjk7u2f1sYctRRYktoq1kyXFmadnCo1Fqsb6/Jtx0m34/fthDiBhU20mFGUeQy6uIYBefyOKPZNvPX4XDtrjtZVz8hJignIsyf0AZgInEq2Oy91C5XdOhdMVfRd69r4Am4hSlyBTbrgezr1IeTjAflt5J7bG/OXgfkd5pPemE8G5reZXw3u5zF/HZj/Pc7tK9brb7xPBws6xnv/HrwNHnSM+/498NzBhI75/3QT1LL5WDTp7W/JXw=="), this.createVertexTemplateEntry("html=1;outlineConnect=0;fillColor=#CCCCCC;strokeColor=#6881B3;gradientColor=none;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.bus;gradientColor=none;gradientDirection=north;fontColor=#ffffff;perimeter=backbonePerimeter;backboneSize=20;",200,20,"","Bus",null,null,this.getTagsForStencil("mxgraph.networks","bus backbone","computer network ").join(" ")),this.createEdgeTemplateEntry("html=1;outlineConnect=0;fillColor=#CCCCCC;strokeColor=#6881B3;gradientColor=none;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.comm_link_edge;html=1;", 100,100,"","Comm Link",null,this.getTagsForStencil("mxgraph.networks","comm_link_edge","computer network ").join(" ")),this.createVertexTemplateEntry("fontColor=#0066CC;verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;fillColor=#CCCCCC;strokeColor=#6881B3;gradientColor=none;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.biometric_reader;",60,100,"","Biometric Reader",null,null,this.getTagsForStencil("mxgraph.networks","biometric_reader", @@ -6906,7 +6567,7 @@ this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeC "office cloud ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;outlineConnect=0;verticalAlign=top;align=center;shape=mxgraph.office.clouds.office_365;",101,61,"","Office 365",null,null,this.getTagsForStencil("mxgraph.office.clouds","office 365","office cloud ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;outlineConnect=0;verticalAlign=top;align=center;shape=mxgraph.office.clouds.online_backup;", 94,101,"","Online Backup",null,null,this.getTagsForStencil("mxgraph.office.clouds","online backup","office cloud ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;outlineConnect=0;verticalAlign=top;align=center;shape=mxgraph.office.clouds.online_user;",93,74,"","Online User",null,null,this.getTagsForStencil("mxgraph.office.clouds","online user","office cloud ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;outlineConnect=0;verticalAlign=top;align=center;shape=mxgraph.office.clouds.private_cloud;", 94,55,"","Private Cloud",null,null,this.getTagsForStencil("mxgraph.office.clouds","private cloud","office cloud ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;outlineConnect=0;verticalAlign=top;align=center;shape=mxgraph.office.clouds.public_cloud;",101,81,"","Public Cloud",null,null,this.getTagsForStencil("mxgraph.office.clouds","public cloud","office cloud ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;outlineConnect=0;verticalAlign=top;align=center;shape=mxgraph.office.clouds.public_im_cloud_service;", -102,99,"","Public IM Cloud Service",null,null,this.getTagsForStencil("mxgraph.office.clouds","public im instant message cloud service","office cloud ").join(" "))];this.addPalette("officeClouds","Office / Clouds",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addOfficeCommunicationsPalette=function(){var a=[this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.communications.3rd_party_call_center_solution;", +102,99,"","Public IM Cloud Service",null,null,this.getTagsForStencil("mxgraph.office.clouds","public im instant message cloud service","office cloud ").join(" "))];this.addPalette("officeClouds","Office / Clouds",!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))};Sidebar.prototype.addOfficeCommunicationsPalette=function(){var a=[this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.communications.3rd_party_call_center_solution;", 98,101,"","3rd Party Call Center Solution",null,null,this.getTagsForStencil("mxgraph.office.communications","3rd party call center solution","office communication ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.communications.3rd_party_integration;",54,55,"","3rd Party Integration",null,null,this.getTagsForStencil("mxgraph.office.communications", "3rd party integration","office communication ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.communications.3rd_party_service;",53,54,"","3rd Party Service",null,null,this.getTagsForStencil("mxgraph.office.communications","3rd party service","office communication ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.communications.application_sharing_workload;", 57,49,"","Application Sharing Workload",null,null,this.getTagsForStencil("mxgraph.office.communications","application sharing workload","office communication ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.communications.audio_conferencing_application;",59,46,"","Audio Conferencing Application",null,null,this.getTagsForStencil("mxgraph.office.communications", @@ -6955,7 +6616,7 @@ null,null,this.getTagsForStencil("mxgraph.office.communications","skype for busi 46,56,"","Voice Mail Preview",null,null,this.getTagsForStencil("mxgraph.office.communications","voice mail preview","office communication ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.communications.voice_workload;",58,51,"","Voice Workload",null,null,this.getTagsForStencil("mxgraph.office.communications", "voice workload","office communication ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.communications.voip_gateway;",51,15,"","VoIP Gateway",null,null,this.getTagsForStencil("mxgraph.office.communications","voip gateway voice over ip internet protocol","office communication ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.communications.watcher_node;", 52,56,"","Watcher Node",null,null,this.getTagsForStencil("mxgraph.office.communications","watcher node","office communication ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.communications.xmpp_service;",58,52,"","XMPP Service",null,null,this.getTagsForStencil("mxgraph.office.communications","xmpp service", -"office communication ").join(" "))];this.addPalette("officeCommunications","Office / Communications",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addOfficeConceptsPalette=function(){var a=[this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.concepts.address_book;", +"office communication ").join(" "))];this.addPalette("officeCommunications","Office / Communications",!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))};Sidebar.prototype.addOfficeConceptsPalette=function(){var a=[this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.concepts.address_book;", 55,44,"","Address Book",null,null,this.getTagsForStencil("mxgraph.office.concepts","address book","office concept ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.concepts.address_book;",40,31,"","Address Book (small)",null,null,this.getTagsForStencil("mxgraph.office.concepts","address book small","office concept ").join(" ")), this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.concepts.anti_spam;",55,47,"","Anti-Spam",null,null,this.getTagsForStencil("mxgraph.office.concepts","anti spam","office concept ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.concepts.application_android;", 60,51,"","Application Android",null,null,this.getTagsForStencil("mxgraph.office.concepts","application android","office concept ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.concepts.application_generic;",53,40,"","Application Generic",null,null,this.getTagsForStencil("mxgraph.office.concepts","application generic", @@ -7039,7 +6700,7 @@ this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeC this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.concepts.web_page;",50,54,"","Web Page",null,null,this.getTagsForStencil("mxgraph.office.concepts","web page","office concept ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.concepts.web_part;", 45,52,"","Web Part",null,null,this.getTagsForStencil("mxgraph.office.concepts","web part","office concept ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.concepts.web_services;",60,56,"","Web Services",null,null,this.getTagsForStencil("mxgraph.office.concepts","web services","office concept ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.concepts.whats_new;", 55,38,"","Whats New",null,null,this.getTagsForStencil("mxgraph.office.concepts","whats new","office concept ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.concepts.writing_pen;",54,54,"","Writing, Pen",null,null,this.getTagsForStencil("mxgraph.office.concepts","writing pen","office concept ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.concepts.writing_pencil;", -50,50,"","Writing, Pencil",null,null,this.getTagsForStencil("mxgraph.office.concepts","writing pencil","office concept ").join(" "))];this.addPalette("officeConcepts","Office / Concepts",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addOfficeDatabasesPalette=function(){var a=[this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.databases.address_book_store;", +50,50,"","Writing, Pencil",null,null,this.getTagsForStencil("mxgraph.office.concepts","writing pencil","office concept ").join(" "))];this.addPalette("officeConcepts","Office / Concepts",!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))};Sidebar.prototype.addOfficeDatabasesPalette=function(){var a=[this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.databases.address_book_store;", 50,54,"","Address Book Store",null,null,this.getTagsForStencil("mxgraph.office.databases","address_book_store","office database db ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.databases.application_store;",49,53,"","Application Store",null,null,this.getTagsForStencil("mxgraph.office.databases","application store","office database db ").join(" ")), this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.databases.database;",35,49,"","Database",null,null,this.getTagsForStencil("mxgraph.office.databases","","office database db ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.databases.database;fillColor=#2072B8;", 35,49,"","Database (blue)",null,null,this.getTagsForStencil("mxgraph.office.databases","","office database db ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.databases.database;fillColor=#DA4026;",35,49,"","Database (orange)",null,null,this.getTagsForStencil("mxgraph.office.databases","","office database db ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.databases.database;fillColor=#7FBA42;", @@ -7068,7 +6729,7 @@ this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillCo this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.databases.database_server_ghosted;",43,57,"","Database Server (ghosted)",null,null,this.getTagsForStencil("mxgraph.office.databases","server blue","office database db ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.databases.mailbox_database;", 53,55,"","Mailbox Database",null,null,this.getTagsForStencil("mxgraph.office.databases","mailbox","office database db ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.databases.monitoring_store;",58,58,"","Monitoring Store",null,null,this.getTagsForStencil("mxgraph.office.databases","monitoring store","office database db ").join(" ")), this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.databases.unified_contact_store;",54,55,"","Unified Contact Store",null,null,this.getTagsForStencil("mxgraph.office.databases","unified contact store","office database db ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.databases.web_store;", -50,54,"","Web Store",null,null,this.getTagsForStencil("mxgraph.office.databases","web store","office database db ").join(" "))];this.addPalette("officeDatabases","Office / Databases",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addOfficeDevicesPalette=function(){var a=[this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.devices.bluetooth;", +50,54,"","Web Store",null,null,this.getTagsForStencil("mxgraph.office.databases","web store","office database db ").join(" "))];this.addPalette("officeDatabases","Office / Databases",!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))};Sidebar.prototype.addOfficeDevicesPalette=function(){var a=[this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.devices.bluetooth;", 56,57,"","Bluetooth",null,null,this.getTagsForStencil("mxgraph.office.devices","bluetooth","office device ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.devices.cd_dvd;",49,49,"","CD, DVD",null,null,this.getTagsForStencil("mxgraph.office.devices","cd dvd compact disc digital video drive","office device ").join(" ")), this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.devices.cell_phone_android_proportional;",17,31,"","Cell Phone, Android, Proportional",null,null,this.getTagsForStencil("mxgraph.office.devices","cell phone android proportional","office device ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.devices.cell_phone_android_standalone;", 24,44,"","Cell Phone, Android, Standalone",null,null,this.getTagsForStencil("mxgraph.office.devices","cell phone android standalone","office device ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.devices.cell_phone_generic;",26,47,"","Cell Phone, Generic",null,null,this.getTagsForStencil("mxgraph.office.devices", @@ -7100,7 +6761,7 @@ this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeC this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.devices.webcam;",40,50,"","Webcam",null,null,this.getTagsForStencil("mxgraph.office.devices","webcam","office device ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.devices.webcam_hd;", 56,59,"","Webcam, HD",null,null,this.getTagsForStencil("mxgraph.office.devices","webcam hd high definition","office device ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.devices.workstation;",53,56,"","Workstation",null,null,this.getTagsForStencil("mxgraph.office.devices","workstation","office device ").join(" ")), this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.devices.workstation_pc;",53,59,"","Workstation, PC",null,null,this.getTagsForStencil("mxgraph.office.devices","workstation pc personal computer","office device ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.devices.workstation_visual_studio;", -53,59,"","Workstation, Visual Studio",null,null,this.getTagsForStencil("mxgraph.office.devices","workstation visual studio","office device ").join(" "))];this.addPalette("officeDevices","Office / Devices",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addOfficeSecurityPalette=function(){var a=[this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.security.active_directory;", +53,59,"","Workstation, Visual Studio",null,null,this.getTagsForStencil("mxgraph.office.devices","workstation visual studio","office device ").join(" "))];this.addPalette("officeDevices","Office / Devices",!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))};Sidebar.prototype.addOfficeSecurityPalette=function(){var a=[this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.security.active_directory;", 53,46,"","Active Directory",null,null,this.getTagsForStencil("mxgraph.office.security","active directory","office security ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.security.address_book_policies;",55,53,"","Address Book Policies",null,null,this.getTagsForStencil("mxgraph.office.security","address book policies", "office security ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.security.certificate;",58,50,"","Certificate",null,null,this.getTagsForStencil("mxgraph.office.security","certificate","office security ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.security.certificate;", 39,33,"","Certificate (small)",null,null,this.getTagsForStencil("mxgraph.office.security","certificate small","office security ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.security.credentials;",56,58,"","Credentials",null,null,this.getTagsForStencil("mxgraph.office.security","credentials","office security ").join(" ")), @@ -7135,7 +6796,7 @@ this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeC 29,37,"","Token (small)",null,null,this.getTagsForStencil("mxgraph.office.security","token small","office security ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.security.token_service;",60,56,"","Token Service",null,null,this.getTagsForStencil("mxgraph.office.security","token service","office security ").join(" ")), this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.security.trusted_application_server;",46,57,"","Trusted Application Server",null,null,this.getTagsForStencil("mxgraph.office.security","trusted application server","office security ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.security.um_mailbox_policy;", 55,53,"","UM Mailbox Policy",null,null,this.getTagsForStencil("mxgraph.office.security","um mailbox policy","office security ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.security.universal_security_group;",58,58,"","Universal Security Group",null,null,this.getTagsForStencil("mxgraph.office.security","universal security group", -"office security ").join(" "))];this.addPalette("officeSecurity","Office / Security",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addOfficeServersPalette=function(){var a=[this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.servers.3rd_party_mail_server;",47,59,"","3rd Party Mail Server", +"office security ").join(" "))];this.addPalette("officeSecurity","Office / Security",!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))};Sidebar.prototype.addOfficeServersPalette=function(){var a=[this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.servers.3rd_party_mail_server;",47,59,"","3rd Party Mail Server", null,null,this.getTagsForStencil("mxgraph.office.servers","3rd party mail server","office server ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.servers.active_directory_federation_services_proxy;",44,55,"","Active Directory Federation Services Proxy",null,null,this.getTagsForStencil("mxgraph.office.servers", "active directory federation services proxy","office server ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.servers.active_directory_federation_services_server;",45,56,"","Active Directory Federation Services Server",null,null,this.getTagsForStencil("mxgraph.office.servers","active directory federation services server", "office server ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.servers.active_directory_federation_services_server_blue;",45,56,"","Active Directory Federation Services Server (blue)",null,null,this.getTagsForStencil("mxgraph.office.servers","active directory federation services server","office server ").join(" ")), @@ -7201,7 +6862,7 @@ this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeC 48,57,"","Web Server (blue)",null,null,this.getTagsForStencil("mxgraph.office.servers","web server","office server ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.servers.web_server_orange;",48,57,"","Web Server (orange)",null,null,this.getTagsForStencil("mxgraph.office.servers","web server","office server ").join(" ")), this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.servers.web_server_green;",48,57,"","Web Server (green)",null,null,this.getTagsForStencil("mxgraph.office.servers","web server","office server ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.servers.web_server_ghosted;", 48,57,"","Web Server (ghosted)",null,null,this.getTagsForStencil("mxgraph.office.servers","web server","office server ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.servers.windows_router;",52,59,"","Windows Router",null,null,this.getTagsForStencil("mxgraph.office.servers","windows router","office server ").join(" ")), -this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.servers.windows_server;",52,55,"","Windows Server",null,null,this.getTagsForStencil("mxgraph.office.servers","windows server","office server ").join(" "))];this.addPalette("officeServers","Office / Servers",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))}; +this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.servers.windows_server;",52,55,"","Windows Server",null,null,this.getTagsForStencil("mxgraph.office.servers","windows server","office server ").join(" "))];this.addPalette("officeServers","Office / Servers",!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))}; Sidebar.prototype.addOfficeServicesPalette=function(){var a=[this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.services.3rd_party_service;",53,54,"","3rd Party Service",null,null,this.getTagsForStencil("mxgraph.office.services","3rd party service","office service ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.services.access_services;", 59,49,"","Access Services",null,null,this.getTagsForStencil("mxgraph.office.services","access services","office service ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.services.business_connectivity_services;",34,51,"","Business Connectivity Services",null,null,this.getTagsForStencil("mxgraph.office.services", "business connectivity services","office service ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.services.call_admission_control_service;",50,59,"","Call Admission Control Service",null,null,this.getTagsForStencil("mxgraph.office.services","call admission control service","office service ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.services.central_management_service;", @@ -7219,7 +6880,7 @@ this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeC "skype for business storage service","office service ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.services.user_services;",59,59,"","User Services",null,null,this.getTagsForStencil("mxgraph.office.services","user services","office service ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.services.verification_service;", 57,59,"","Verification Service",null,null,this.getTagsForStencil("mxgraph.office.services","verification service","office service ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.services.web_services;",60,56,"","Web Services",null,null,this.getTagsForStencil("mxgraph.office.services","web services","office service ").join(" ")), this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.services.word_automation_services;",60,49,"","Word Automation Services",null,null,this.getTagsForStencil("mxgraph.office.services","word automation services","office service ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.services.xmpp_service;", -58,52,"","XMPP Service",null,null,this.getTagsForStencil("mxgraph.office.services","xmpp service","office service ").join(" "))];this.addPalette("officeServices","Office / Services",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addOfficeSitesPalette=function(){var a=[this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.sites.access_services;", +58,52,"","XMPP Service",null,null,this.getTagsForStencil("mxgraph.office.services","xmpp service","office service ").join(" "))];this.addPalette("officeServices","Office / Services",!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))};Sidebar.prototype.addOfficeSitesPalette=function(){var a=[this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.sites.access_services;", 59,49,"","Access Services",null,null,this.getTagsForStencil("mxgraph.office.sites","access services","office site ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.sites.blog_site;",56,49,"","Blog Site",null,null,this.getTagsForStencil("mxgraph.office.sites","blog site","office site ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.sites.business_connectivity_services;", 34,51,"","Business Connectivity Services",null,null,this.getTagsForStencil("mxgraph.office.sites","business connectivity services","office site ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.sites.excel_services;",60,49,"","Excel Services",null,null,this.getTagsForStencil("mxgraph.office.sites","excel services", "office site ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.sites.meeting_workspace_site;",58,50,"","Meeting Workspace Site",null,null,this.getTagsForStencil("mxgraph.office.sites","meeting workspace site","office site ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.sites.my_site;", @@ -7232,7 +6893,7 @@ this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeC 38,29,"","Subsite (small)",null,null,this.getTagsForStencil("mxgraph.office.sites","substitute small","office site ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.sites.upgrade_site;",59,48,"","Upgrade Site",null,null,this.getTagsForStencil("mxgraph.office.sites","upgrade site","office site ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.sites.website;", 59,49,"","Website",null,null,this.getTagsForStencil("mxgraph.office.sites","website","office site ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.sites.website_public;",58,48,"","Website, Public",null,null,this.getTagsForStencil("mxgraph.office.sites","website public","office site ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.sites.wiki_site;", 59,50,"","Wiki Site",null,null,this.getTagsForStencil("mxgraph.office.sites","wiki_site","office site ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.sites.word_automation_services;",60,49,"","Word Automation Services",null,null,this.getTagsForStencil("mxgraph.office.sites","word automation services","office site ").join(" "))]; -this.addPalette("officeSites","Office / Sites",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addOfficeUsersPalette=function(){var a=[this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.users.administrator;",58,56,"","Administrator",null,null,this.getTagsForStencil("mxgraph.office.users", +this.addPalette("officeSites","Office / Sites",!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))};Sidebar.prototype.addOfficeUsersPalette=function(){var a=[this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.users.administrator;",58,56,"","Administrator",null,null,this.getTagsForStencil("mxgraph.office.users", "administrator","office user ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.users.approver;",59,55,"","Approver",null,null,this.getTagsForStencil("mxgraph.office.users","approver","office user ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.users.call_center_agent;", 46,55,"","Call Center Agent",null,null,this.getTagsForStencil("mxgraph.office.users","call center agent","office user ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.users.communications;",54,58,"","Communications",null,null,this.getTagsForStencil("mxgraph.office.users","communications","office user ").join(" ")), this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.users.conferencing_attendant;",53,59,"","Conferencing Attendant",null,null,this.getTagsForStencil("mxgraph.office.users","conferencing attendant","office user ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.users.credentials;", @@ -7258,7 +6919,7 @@ this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeC this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.users.user_accounts;",59,59,"","User Accounts",null,null,this.getTagsForStencil("mxgraph.office.users","user accounts","office user ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.users.user_external;", 59,50,"","User External",null,null,this.getTagsForStencil("mxgraph.office.users","user external","office user ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.users.user_services;",59,59,"","User Services",null,null,this.getTagsForStencil("mxgraph.office.users","user services","office user ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.users.user_store;", 50,55,"","User Store",null,null,this.getTagsForStencil("mxgraph.office.users","user store","office user ").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.users.writer;",54,59,"","Writer",null,null,this.getTagsForStencil("mxgraph.office.users","writer","office user ").join(" "))];this.addPalette("officeUsers", -"Office / Users",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))}})();(function(){Sidebar.prototype.addPidInstrumentsPalette=function(){var a="html=1;outlineConnect=0;align=center;dashed=0;aspect=fixed;"+mxConstants.STYLE_SHAPE+"=mxgraph.pid2",d="html=1;outlineConnect=0;align=center;dashed=0;"+mxConstants.STYLE_SHAPE+"=mxgraph.pid2";this.addPaletteFunctions("pidInstruments","Proc. Eng. / Instruments",!1,[this.createVertexTemplateEntry(a+"inst.discInst;mounting=room",50,50,'<table cellpadding="4" cellspacing="0" border="0" style="font-size:1em;width:100%;height:100%;"><tr><td>TI</td></tr><tr><td>##</td></table> ', +"Office / Users",!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))}})();(function(){Sidebar.prototype.addPidInstrumentsPalette=function(){var a="html=1;outlineConnect=0;align=center;dashed=0;aspect=fixed;"+mxConstants.STYLE_SHAPE+"=mxgraph.pid2",b="html=1;outlineConnect=0;align=center;dashed=0;"+mxConstants.STYLE_SHAPE+"=mxgraph.pid2";this.addPaletteFunctions("pidInstruments","Proc. Eng. / Instruments",!1,[this.createVertexTemplateEntry(a+"inst.discInst;mounting=room",50,50,'<table cellpadding="4" cellspacing="0" border="0" style="font-size:1em;width:100%;height:100%;"><tr><td>TI</td></tr><tr><td>##</td></table> ', "Discrete Instrument (control room)",null,null,this.getTagsForStencil("mxgraph.pid2inst","discInst","pid process instrumentation engineering instrument engineering discrete control room").join(" ")),this.createVertexTemplateEntry(a+"inst.discInst;mounting=field",50,50,'<table cellpadding="4" cellspacing="0" border="0" style="font-size:1em;width:100%;height:100%;"><tr><td>TI</td></tr><tr><td>##</td></table> ',"Discrete Instrument (field)",null,null,this.getTagsForStencil("mxgraph.pid2inst","discInst", "pid process instrumentation engineering instrument engineering discrete field").join(" ")),this.createVertexTemplateEntry(a+"inst.discInst;mounting=inaccessible",50,50,'<table cellpadding="4" cellspacing="0" border="0" style="font-size:1em;width:100%;height:100%;"><tr><td>TI</td></tr><tr><td>##</td></table> ',"Discrete Instrument (inaccessible)",null,null,this.getTagsForStencil("mxgraph.pid2inst","discInst","pid process instrumentation engineering instrument engineering discrete inaccessible").join(" ")), this.createVertexTemplateEntry(a+"inst.discInst;mounting=local",50,50,'<table cellpadding="4" cellspacing="0" border="0" style="font-size:1em;width:100%;height:100%;"><tr><td>TI</td></tr><tr><td>##</td></table> ',"Discrete Instrument (local panel)",null,null,this.getTagsForStencil("mxgraph.pid2inst","discInst","pid process instrumentation engineering instrument engineering discrete local panel").join(" ")),this.createVertexTemplateEntry(a+"inst.sharedCont;mounting=room",50,50,'<table cellpadding="4" cellspacing="0" border="0" style="font-size:1em;width:100%;height:100%;"><tr><td>TI</td></tr><tr><td>##</td></table> ', @@ -7274,43 +6935,43 @@ this.createVertexTemplateEntry(a+"inst.progLogCont;mounting=room",50,50,'<table this.getTagsForStencil("mxgraph.pid2inst","progLogCont","pid process instrumentation engineering instrument engineering programmable logic control plc local panel").join(" ")),this.createVertexTemplateEntry(a+"inst.logic;mounting=room",50,50,'<table cellpadding="4" cellspacing="0" border="0" style="font-size:1em;width:100%;height:100%;"><tr><td>TI</td></tr><tr><td>##</td></table> ',"Logic (control room)",null,null,this.getTagsForStencil("mxgraph.pid2inst","logic","pid process instrumentation engineering instrument engineering control room").join(" ")), this.createVertexTemplateEntry(a+"inst.logic;mounting=field",50,50,'<table cellpadding="4" cellspacing="0" border="0" style="font-size:1em;width:100%;height:100%;"><tr><td>TI</td></tr><tr><td>##</td></table> ',"Logic (field)",null,null,this.getTagsForStencil("mxgraph.pid2inst","logic","pid process instrumentation engineering instrument engineering field").join(" ")),this.createVertexTemplateEntry(a+"inst.logic;mounting=inaccessible",50,50,'<table cellpadding="4" cellspacing="0" border="0" style="font-size:1em;width:100%;height:100%;"><tr><td>TI</td></tr><tr><td>##</td></table> ', "Logic (inaccessible)",null,null,this.getTagsForStencil("mxgraph.pid2inst","logic","pid process instrumentation engineering instrument engineering inaccessible").join(" ")),this.createVertexTemplateEntry(a+"inst.logic;mounting=local",50,50,'<table cellpadding="4" cellspacing="0" border="0" style="font-size:1em;width:100%;height:100%;"><tr><td>TI</td></tr><tr><td>##</td></table> ',"Logic (local panel)",null,null,this.getTagsForStencil("mxgraph.pid2inst","logic","pid process instrumentation engineering instrument engineering local panel").join(" ")), -this.createVertexTemplateEntry(d+"inst.indicator;mounting=room;overflow=fill;indType=inst",50,100,'<table cellpadding="0" cellspacing="0" style="font-size:1em;width:100%;height:100%;"><tr><td align="center" height="25">TI</td></tr><tr><td align="center" height="25">##</td></tr><tr><td align="center" valign="bottom"></td></tr></table>',"Indicator (Instrument)",null,null,this.getTagsForStencil("mxgraph.pid2inst","indicator","pid process instrumentation engineering instrument engineering indicator").join(" ")), -this.createVertexTemplateEntry(d+"inst.indicator;mounting=room;overflow=fill;indType=ctrl",50,100,'<table cellpadding="0" cellspacing="0" style="font-size:1em;width:100%;height:100%;"><tr><td align="center" height="25">TI</td></tr><tr><td align="center" height="25">##</td></tr><tr><td align="center" valign="bottom"></td></tr></table>',"Indicator (Control)",null,null,this.getTagsForStencil("mxgraph.pid2inst","indicator","pid process instrumentation engineering instrument engineering indicator control").join(" ")), -this.createVertexTemplateEntry(d+"inst.indicator;mounting=room;overflow=fill;indType=func",50,100,'<table cellpadding="0" cellspacing="0" style="font-size:1em;width:100%;height:100%;"><tr><td align="center" height="25">TI</td></tr><tr><td align="center" height="25">##</td></tr><tr><td align="center" valign="bottom"></td></tr></table>',"Indicator (Function)",null,null,this.getTagsForStencil("mxgraph.pid2inst","indicator","pid process instrumentation engineering instrument engineering indicator function").join(" ")), -this.createVertexTemplateEntry(d+"inst.indicator;mounting=room;overflow=fill;indType=plc",50,100,'<table cellpadding="0" cellspacing="0" style="font-size:1em;width:100%;height:100%;"><tr><td align="center" height="25">TI</td></tr><tr><td align="center" height="25">##</td></tr><tr><td align="center" valign="bottom"></td></tr></table>',"Indicator (PLC)",null,null,this.getTagsForStencil("mxgraph.pid2inst","indicator","pid process instrumentation engineering instrument engineering indicator plc programmable logic control").join(" "))])}; -Sidebar.prototype.addPidValvesPalette=function(){var a="dashed=0;outlineConnect=0;html=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.pid2",d=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;align=center;html=1;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;pointerEvents=1;dashed=0;"+mxConstants.STYLE_SHAPE+"=mxgraph.pid2valves.valve;valveType=",a=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;align=center;html=1;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;pointerEvents=1;dashed=0;"+mxConstants.STYLE_SHAPE+"=mxgraph.pid2valves."; -this.addPaletteFunctions("pidValves","Proc. Eng. / Valves",!1,[this.createVertexTemplateEntry(d+"gate",100,60,"","Gate Valve",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering gate").join(" ")),this.createVertexTemplateEntry(d+"gate;defState=closed",100,60,"","Normally Closed Gate Valve",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering normally closed nc gate").join(" ")),this.createVertexTemplateEntry(d+ -"ball",100,60,"","Ball Valve",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering ball").join(" ")),this.createVertexTemplateEntry(d+"ball;defState=closed",100,60,"","Normally Closed Ball Valve",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering normally closed nc ball").join(" ")),this.createVertexTemplateEntry(d+"globe",100,60,"","Globe Valve",null,null,this.getTagsForStencil("mxgraph.pid2valves", -"valve","pid process instrumentation engineering globe").join(" ")),this.createVertexTemplateEntry(d+"butterfly",100,60,"","Butterfly Valve",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering butterfly").join(" ")),this.createVertexTemplateEntry(d+"check;",100,60,"","Check Valve",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering check").join(" ")),this.createVertexTemplateEntry(d+"plug",100,60, -"","Plug Valve",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering plug").join(" ")),this.createVertexTemplateEntry(d+"needle",100,60,"","Needle Valve",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering needle").join(" ")),this.createVertexTemplateEntry(d+"selfDrain",100,60,"","Self Draining Valve",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering self draining").join(" ")), -this.createVertexTemplateEntry(d+"gate;actuator=man",100,100,"","Gate Valve (Manual)",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering gate manual").join(" ")),this.createVertexTemplateEntry(d+"gate;actuator=diaph",100,100,"","Gate Valve (Diaphragm)",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering gate diaphragm").join(" ")),this.createVertexTemplateEntry(d+"gate;actuator=balDiaph",100,100, -"","Gate Valve (Balanced Diaphragm)",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering gate balanced diaphragm").join(" ")),this.addEntry("pid process instrumentation engineering valve gate powered",function(){var a=new mxCell("",new mxGeometry(0,0,100,100),d+"gate;actuator=powered");a.vertex=!0;var b=new mxCell("",new mxGeometry(32.5,0,35,35),"part=1;strokeColor=none;fillColor=none;fontStyle=1;fontSize=14;");b.vertex=!0;a.insert(b);return sb.createVertexTemplateFromCells([a], -100,100,"Gate Valve (Powered)")}),this.createVertexTemplateEntry(d+"gate;actuator=digital",100,100,"","Gate Valve (Digital)",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering gate digital").join(" ")),this.createVertexTemplateEntry(d+"gate;actuator=elHyd",100,100,"","Gate Valve (Electro-Hydraulic)",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering gate electro hydraulic").join(" ")),this.createVertexTemplateEntry(d+ -"gate;actuator=key",100,100,"","Gate Valve (Key)",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering gate key").join(" ")),this.createVertexTemplateEntry(d+"gate;actuator=motor",100,100,"","Gate Valve (Motor)",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering gate motor").join(" ")),this.createVertexTemplateEntry(d+"gate;actuator=pilot",100,100,"","Gate Valve (Pilot)",null,null,this.getTagsForStencil("mxgraph.pid2valves", -"valve","pid process instrumentation engineering gate pilot").join(" ")),this.createVertexTemplateEntry(d+"gate;actuator=solenoid",100,100,"","Gate Valve (Solenoid)",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering gate solenoid").join(" ")),this.createVertexTemplateEntry(d+"gate;actuator=solenoidManRes",100,100,"","Gate Valve (Solenoid With Manual Reset)",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering gate solenoid manual reset").join(" ")), -this.createVertexTemplateEntry(d+"gate;actuator=spring",100,100,"","Gate Valve (Spring)",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering gate spring").join(" ")),this.createVertexTemplateEntry(d+"gate;actuator=weight",100,100,"","Gate Valve (Weight)",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering gate weight").join(" ")),this.createVertexTemplateEntry(d+"gate;actuator=singActing",100,100, -"","Gate Valve (Single Acting Cylinder)",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering gate single acting cylinder").join(" ")),this.createVertexTemplateEntry(d+"gate;actuator=dblActing",100,100,"","Gate Valve (Double Acting Cylinder)",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering gate double acting cylinder").join(" ")),this.createVertexTemplateEntry(d+"gate;actuator=angBlow",100,100, +this.createVertexTemplateEntry(b+"inst.indicator;mounting=room;overflow=fill;indType=inst",50,100,'<table cellpadding="0" cellspacing="0" style="font-size:1em;width:100%;height:100%;"><tr><td align="center" height="25">TI</td></tr><tr><td align="center" height="25">##</td></tr><tr><td align="center" valign="bottom"></td></tr></table>',"Indicator (Instrument)",null,null,this.getTagsForStencil("mxgraph.pid2inst","indicator","pid process instrumentation engineering instrument engineering indicator").join(" ")), +this.createVertexTemplateEntry(b+"inst.indicator;mounting=room;overflow=fill;indType=ctrl",50,100,'<table cellpadding="0" cellspacing="0" style="font-size:1em;width:100%;height:100%;"><tr><td align="center" height="25">TI</td></tr><tr><td align="center" height="25">##</td></tr><tr><td align="center" valign="bottom"></td></tr></table>',"Indicator (Control)",null,null,this.getTagsForStencil("mxgraph.pid2inst","indicator","pid process instrumentation engineering instrument engineering indicator control").join(" ")), +this.createVertexTemplateEntry(b+"inst.indicator;mounting=room;overflow=fill;indType=func",50,100,'<table cellpadding="0" cellspacing="0" style="font-size:1em;width:100%;height:100%;"><tr><td align="center" height="25">TI</td></tr><tr><td align="center" height="25">##</td></tr><tr><td align="center" valign="bottom"></td></tr></table>',"Indicator (Function)",null,null,this.getTagsForStencil("mxgraph.pid2inst","indicator","pid process instrumentation engineering instrument engineering indicator function").join(" ")), +this.createVertexTemplateEntry(b+"inst.indicator;mounting=room;overflow=fill;indType=plc",50,100,'<table cellpadding="0" cellspacing="0" style="font-size:1em;width:100%;height:100%;"><tr><td align="center" height="25">TI</td></tr><tr><td align="center" height="25">##</td></tr><tr><td align="center" valign="bottom"></td></tr></table>',"Indicator (PLC)",null,null,this.getTagsForStencil("mxgraph.pid2inst","indicator","pid process instrumentation engineering instrument engineering indicator plc programmable logic control").join(" "))])}; +Sidebar.prototype.addPidValvesPalette=function(){var a="dashed=0;outlineConnect=0;html=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.pid2",b=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;align=center;html=1;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;pointerEvents=1;dashed=0;"+mxConstants.STYLE_SHAPE+"=mxgraph.pid2valves.valve;valveType=",a=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;align=center;html=1;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;pointerEvents=1;dashed=0;"+mxConstants.STYLE_SHAPE+"=mxgraph.pid2valves."; +this.addPaletteFunctions("pidValves","Proc. Eng. / Valves",!1,[this.createVertexTemplateEntry(b+"gate",100,60,"","Gate Valve",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering gate").join(" ")),this.createVertexTemplateEntry(b+"gate;defState=closed",100,60,"","Normally Closed Gate Valve",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering normally closed nc gate").join(" ")),this.createVertexTemplateEntry(b+ +"ball",100,60,"","Ball Valve",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering ball").join(" ")),this.createVertexTemplateEntry(b+"ball;defState=closed",100,60,"","Normally Closed Ball Valve",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering normally closed nc ball").join(" ")),this.createVertexTemplateEntry(b+"globe",100,60,"","Globe Valve",null,null,this.getTagsForStencil("mxgraph.pid2valves", +"valve","pid process instrumentation engineering globe").join(" ")),this.createVertexTemplateEntry(b+"butterfly",100,60,"","Butterfly Valve",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering butterfly").join(" ")),this.createVertexTemplateEntry(b+"check;",100,60,"","Check Valve",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering check").join(" ")),this.createVertexTemplateEntry(b+"plug",100,60, +"","Plug Valve",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering plug").join(" ")),this.createVertexTemplateEntry(b+"needle",100,60,"","Needle Valve",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering needle").join(" ")),this.createVertexTemplateEntry(b+"selfDrain",100,60,"","Self Draining Valve",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering self draining").join(" ")), +this.createVertexTemplateEntry(b+"gate;actuator=man",100,100,"","Gate Valve (Manual)",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering gate manual").join(" ")),this.createVertexTemplateEntry(b+"gate;actuator=diaph",100,100,"","Gate Valve (Diaphragm)",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering gate diaphragm").join(" ")),this.createVertexTemplateEntry(b+"gate;actuator=balDiaph",100,100, +"","Gate Valve (Balanced Diaphragm)",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering gate balanced diaphragm").join(" ")),this.addEntry("pid process instrumentation engineering valve gate powered",function(){var a=new mxCell("",new mxGeometry(0,0,100,100),b+"gate;actuator=powered");a.vertex=!0;var c=new mxCell("",new mxGeometry(32.5,0,35,35),"part=1;strokeColor=none;fillColor=none;fontStyle=1;fontSize=14;");c.vertex=!0;a.insert(c);return sb.createVertexTemplateFromCells([a], +100,100,"Gate Valve (Powered)")}),this.createVertexTemplateEntry(b+"gate;actuator=digital",100,100,"","Gate Valve (Digital)",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering gate digital").join(" ")),this.createVertexTemplateEntry(b+"gate;actuator=elHyd",100,100,"","Gate Valve (Electro-Hydraulic)",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering gate electro hydraulic").join(" ")),this.createVertexTemplateEntry(b+ +"gate;actuator=key",100,100,"","Gate Valve (Key)",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering gate key").join(" ")),this.createVertexTemplateEntry(b+"gate;actuator=motor",100,100,"","Gate Valve (Motor)",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering gate motor").join(" ")),this.createVertexTemplateEntry(b+"gate;actuator=pilot",100,100,"","Gate Valve (Pilot)",null,null,this.getTagsForStencil("mxgraph.pid2valves", +"valve","pid process instrumentation engineering gate pilot").join(" ")),this.createVertexTemplateEntry(b+"gate;actuator=solenoid",100,100,"","Gate Valve (Solenoid)",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering gate solenoid").join(" ")),this.createVertexTemplateEntry(b+"gate;actuator=solenoidManRes",100,100,"","Gate Valve (Solenoid With Manual Reset)",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering gate solenoid manual reset").join(" ")), +this.createVertexTemplateEntry(b+"gate;actuator=spring",100,100,"","Gate Valve (Spring)",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering gate spring").join(" ")),this.createVertexTemplateEntry(b+"gate;actuator=weight",100,100,"","Gate Valve (Weight)",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering gate weight").join(" ")),this.createVertexTemplateEntry(b+"gate;actuator=singActing",100,100, +"","Gate Valve (Single Acting Cylinder)",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering gate single acting cylinder").join(" ")),this.createVertexTemplateEntry(b+"gate;actuator=dblActing",100,100,"","Gate Valve (Double Acting Cylinder)",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering gate double acting cylinder").join(" ")),this.createVertexTemplateEntry(b+"gate;actuator=angBlow",100,100, "","Angle Blowdown Valve",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering angle blowdown").join(" ")),this.createVertexTemplateEntry(a+"blockBleedValve;actuator=none",100,130,"","Integrated Block and Bleed Valve",null,null,this.getTagsForStencil("mxgraph.pid2valves","blockBleedValve","pid process instrumentation engineering integrated block bleed").join(" ")),this.createVertexTemplateEntry(a+"blockBleedValve;actuator=man",100,170,"","Integrated Block and Bleed Valve (Manual)", -null,null,this.getTagsForStencil("mxgraph.pid2valves","blockBleedValve","pid process instrumentation engineering integrated block bleed manual").join(" ")),this.createVertexTemplateEntry(d+"angle;actuator=none",100,80,"","Angle Valve",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering angle").join(" ")),this.createVertexTemplateEntry(d+"angle;actuator=man",100,120,"","Angle Valve (Manual)",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve", -"pid process instrumentation engineering angle manual").join(" ")),this.createVertexTemplateEntry(d+"angleGlobe;actuator=none",100,80,"","Angle Globe Valve",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering angle globe").join(" ")),this.createVertexTemplateEntry(d+"angleGlobe;actuator=man",100,120,"","Angle Globe Valve (Manual)",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering angle globe manual").join(" ")), -this.createVertexTemplateEntry(d+"threeWay;actuator=none",100,80,"","3 Way Valve",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering three way").join(" ")),this.createVertexTemplateEntry(d+"threeWay;actuator=man",100,120,"","3 Way Valve (Manual)",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering three way manual").join(" ")),this.createVertexTemplateEntry(a+"autoRecircValve",100,60,"","Auto Recirculation Valve", +null,null,this.getTagsForStencil("mxgraph.pid2valves","blockBleedValve","pid process instrumentation engineering integrated block bleed manual").join(" ")),this.createVertexTemplateEntry(b+"angle;actuator=none",100,80,"","Angle Valve",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering angle").join(" ")),this.createVertexTemplateEntry(b+"angle;actuator=man",100,120,"","Angle Valve (Manual)",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve", +"pid process instrumentation engineering angle manual").join(" ")),this.createVertexTemplateEntry(b+"angleGlobe;actuator=none",100,80,"","Angle Globe Valve",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering angle globe").join(" ")),this.createVertexTemplateEntry(b+"angleGlobe;actuator=man",100,120,"","Angle Globe Valve (Manual)",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering angle globe manual").join(" ")), +this.createVertexTemplateEntry(b+"threeWay;actuator=none",100,80,"","3 Way Valve",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering three way").join(" ")),this.createVertexTemplateEntry(b+"threeWay;actuator=man",100,120,"","3 Way Valve (Manual)",null,null,this.getTagsForStencil("mxgraph.pid2valves","valve","pid process instrumentation engineering three way manual").join(" ")),this.createVertexTemplateEntry(a+"autoRecircValve",100,60,"","Auto Recirculation Valve", null,null,this.getTagsForStencil("mxgraph.pid2valves","blockBleedValve","pid process instrumentation engineering auto recirculation").join(" "))])};Sidebar.prototype.addPidCompressorsPalette=function(){var a=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;outlineConnect=0;align=center;dashed=0;html=1;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;"+mxConstants.STYLE_SHAPE+"=mxgraph.pid.compressors.";this.addPaletteFunctions("pidCompressors","Proc. Eng. / Compressors",!1,[this.createVertexTemplateEntry(a+ "ac_air_compressor",100,65,"","AC Air Compressor",null,null,this.getTagsForStencil("mxgraph.pid.compressors","ac_air_compressor","pid process instrumentation engineering ").join(" ")),this.createVertexTemplateEntry(a+"centrifugal_compressor",70,70,"","Centrifugal Compressor",null,null,this.getTagsForStencil("mxgraph.pid.compressors","centrifugal_compressor","pid process instrumentation engineering ").join(" ")),this.createVertexTemplateEntry(mxConstants.STYLE_SHAPE+"=mxgraph.pid.compressors.centrifugal_compressor_-_turbine_driven;dashed=0;fontSize=8;html=1;overflow=fill;", 100,70,'<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr style="height:25%;"><td></td></tr><tr style="height:75%;"><td align="left" style="padding-left:11%;width:100%">T</td></tr></table>',"Centrifugal Compressor - Turbine Driven",null,null,this.getTagsForStencil("mxgraph.pid.compressors","centrifugal_compressor_-_turbine_driven","pid process instrumentation engineering ").join(" ")),this.createVertexTemplateEntry(a+"compressor",100,100,"","Compressor",null,null,this.getTagsForStencil("mxgraph.pid.compressors", "compressor","pid process instrumentation engineering ").join(" ")),this.createVertexTemplateEntry(a+"compressor_and_silencers;pointerEvents=1",90,80,"","Compressor and Silencers",null,null,this.getTagsForStencil("mxgraph.pid.compressors","compressor_and_silencers","pid process instrumentation engineering silencer").join(" ")),this.createVertexTemplateEntry(a+"liquid_ring_compressor",90,90,"","Liquid Ring Compressor",null,null,this.getTagsForStencil("mxgraph.pid.compressors","liquid_ring_compressor", "pid process instrumentation engineering ").join(" ")),this.createVertexTemplateEntry(a+"reciprocating_compressor",100,40,"","Reciprocating Compressor",null,null,this.getTagsForStencil("mxgraph.pid.compressors","reciprocating_compressor","pid process instrumentation engineering ").join(" ")),this.createVertexTemplateEntry(a+"reciprocating_compressor_2",50,65,"","Reciprocating Compressor 2",null,null,this.getTagsForStencil("mxgraph.pid.compressors","reciprocating_compressor_2","pid process instrumentation engineering ").join(" ")), -this.createVertexTemplateEntry(a+"rotary_compressor",42,91,"","Rotary Compressor",null,null,this.getTagsForStencil("mxgraph.pid.compressors","rotary_compressor","pid process instrumentation engineering ").join(" "))])};Sidebar.prototype.addPidEnginesPalette=function(){var a="dashed=0;outlineConnect=0;align=center;html=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.pid.engines.",d=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;align=center;dashed=0;html=1;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;"+mxConstants.STYLE_SHAPE+ +this.createVertexTemplateEntry(a+"rotary_compressor",42,91,"","Rotary Compressor",null,null,this.getTagsForStencil("mxgraph.pid.compressors","rotary_compressor","pid process instrumentation engineering ").join(" "))])};Sidebar.prototype.addPidEnginesPalette=function(){var a="dashed=0;outlineConnect=0;align=center;html=1;"+mxConstants.STYLE_SHAPE+"=mxgraph.pid.engines.",b=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;align=center;dashed=0;html=1;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;"+mxConstants.STYLE_SHAPE+ "=mxgraph.pid.engines.";this.addPaletteFunctions("pidEngines","Proc. Eng. / Engines",!1,[this.createVertexTemplateEntry(a+"electric_motor;fontSize=45;",100,100,"M","Electric Motor",null,null,this.getTagsForStencil("mxgraph.pid.engines","electric_motor","pid process instrumentation engine motor ").join(" ")),this.createVertexTemplateEntry(a+"electric_motor_(ac);fontSize=45;",100,100,"M","Electric Motor (AC)",null,null,this.getTagsForStencil("mxgraph.pid.engines","electric_motor_(ac)","pid process instrumentation engine motor ").join(" ")), this.createVertexTemplateEntry(a+"electric_motor_(dc);fontSize=45;",100,100,"M","Electric Motor (DC)",null,null,this.getTagsForStencil("mxgraph.pid.engines","electric_motor_(dc)","pid process instrumentation engine motor ").join(" ")),this.createVertexTemplateEntry(a+"gear;fontSize=45;",100,100,"G","Gear",null,null,this.getTagsForStencil("mxgraph.pid.engines","gear","pid process instrumentation engine motor ").join(" ")),this.createVertexTemplateEntry(a+"generator;fontSize=45;",100,100,"G","Generator", null,null,this.getTagsForStencil("mxgraph.pid.engines","generator","pid process instrumentation engine motor ").join(" ")),this.createVertexTemplateEntry(a+"generator_(ac);fontSize=45;",100,100,"G","Generator (AC)",null,null,this.getTagsForStencil("mxgraph.pid.engines","generator_(ac)","pid process instrumentation engine motor ").join(" ")),this.createVertexTemplateEntry(a+"generator_(dc);fontSize=45;",100,100,"G","Generator (DC)",null,null,this.getTagsForStencil("mxgraph.pid.engines","generator_(dc)", -"pid process instrumentation engine motor ").join(" ")),this.createVertexTemplateEntry(d+"turbine",70,100,"","Turbine",null,null,this.getTagsForStencil("mxgraph.pid.engines","turbine","pid process instrumentation engine motor ").join(" "))])};Sidebar.prototype.addPidFiltersPalette=function(){var a="html=1;dashed=0;outlineConnect=0;align=center;"+mxConstants.STYLE_SHAPE+"=mxgraph.pid.filters.",d=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;align=center;dashed=0;html=1;"+mxConstants.STYLE_VERTICAL_ALIGN+ -"=top;"+mxConstants.STYLE_SHAPE+"=mxgraph.pid.filters.";this.addPaletteFunctions("pidFilters","Proc. Eng. / Filters",!1,[this.createVertexTemplateEntry(d+"filter;",50,50,"","Filter",null,null,this.getTagsForStencil("mxgraph.pid.filters","filter","pid process instrumentation filter ").join(" ")),this.createVertexTemplateEntry(d+"gas_filter;",50,100,"","Gas Filter",null,null,this.getTagsForStencil("mxgraph.pid.filters","gas_filter","pid process instrumentation filter ").join(" ")),this.createVertexTemplateEntry(d+ -"gas_filter_(bag,_candle,_cartridge);",50,100,"","Gas Filter (Bag, Candle, Cartridge)",null,null,this.getTagsForStencil("mxgraph.pid.filters","gas_filter_(bag,_candle,_cartridge)","pid process instrumentation filter ").join(" ")),this.createVertexTemplateEntry(d+"gas_filter_(belt,_roll);",50,100,"","Gas Filter (Belt, Roll)",null,null,this.getTagsForStencil("mxgraph.pid.filters","gas_filter_(belt,_roll)","pid process instrumentation filter ").join(" ")),this.createVertexTemplateEntry(d+"gas_filter_(fixed_bed);", -50,100,"","Gas Filter (Fixed Bed)",null,null,this.getTagsForStencil("mxgraph.pid.filters","gas_filter_(fixed_bed)","pid process instrumentation filter ").join(" ")),this.createVertexTemplateEntry(a+"gas_filter_(hepa);",50,100,"HEPA","Gas Filter (HEPA)",null,null,this.getTagsForStencil("mxgraph.pid.filters","gas_filter_(hepa)","pid process instrumentation filter ").join(" ")),this.createVertexTemplateEntry(d+"liquid_filter;",50,100,"","Liquid Filter",null,null,this.getTagsForStencil("mxgraph.pid.filters", -"liquid_filter","pid process instrumentation filter ").join(" ")),this.createVertexTemplateEntry(d+"liquid_Filter_(bag,_candle,_cartridge);",50,100,"","Liquid Filter (Bag, Candle, Cartridge)",null,null,this.getTagsForStencil("mxgraph.pid.filters","liquid_Filter_(bag,_candle,_cartridge)","pid process instrumentation filter ").join(" ")),this.createVertexTemplateEntry(d+"liquid_filter_(belt,_roll);",50,100,"","Liquid Filter (Belt, Roll)",null,null,this.getTagsForStencil("mxgraph.pid.filters","liquid_filter_(belt,_roll)", -"pid process instrumentation filter ").join(" ")),this.createVertexTemplateEntry(a+"liquid_filter_(biological);",50,100,"BIO","Liquid Filter (Biological)",null,null,this.getTagsForStencil("mxgraph.pid.filters","liquid_filter_(biological)","pid process instrumentation filter ").join(" ")),this.createVertexTemplateEntry(d+"liquid_filter_(fixed_bed);",50,100,"","Liquid Filter (Fixed Bed)",null,null,this.getTagsForStencil("mxgraph.pid.filters","liquid_filter_(fixed_bed)","pid process instrumentation filter ").join(" ")), -this.createVertexTemplateEntry(a+"liquid_filter_(ion_exchanger);",50,100,"ION","Liquid Filter (Ion Exchanger)",null,null,this.getTagsForStencil("mxgraph.pid.filters","liquid_filter_(ion_exchanger)","pid process instrumentation filter ").join(" ")),this.createVertexTemplateEntry(d+"liquid_filter_(rotary,_drum_or_disc);",50,100,"","Liquid Filter (Rotary, Drum or Disc)",null,null,this.getTagsForStencil("mxgraph.pid.filters","liquid_filter_(rotary,_drum_or_disc)","pid process instrumentation filter ").join(" ")), -this.createVertexTemplateEntry(d+"liquid_filter_(rotary,_drum_or_disc,_scraper);",55,100,"","Liquid Filter (Rotary, Drum or Disc, Scraper)",null,null,this.getTagsForStencil("mxgraph.pid.filters","liquid_filter_(rotary,_drum_or_disc,_scraper)","pid process instrumentation filter ").join(" ")),this.createVertexTemplateEntry(d+"press_filter;",100,50,"","Press Filter",null,null,this.getTagsForStencil("mxgraph.pid.filters","press_filter","pid process instrumentation filter ").join(" ")),this.createVertexTemplateEntry(d+ +"pid process instrumentation engine motor ").join(" ")),this.createVertexTemplateEntry(b+"turbine",70,100,"","Turbine",null,null,this.getTagsForStencil("mxgraph.pid.engines","turbine","pid process instrumentation engine motor ").join(" "))])};Sidebar.prototype.addPidFiltersPalette=function(){var a="html=1;dashed=0;outlineConnect=0;align=center;"+mxConstants.STYLE_SHAPE+"=mxgraph.pid.filters.",b=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;align=center;dashed=0;html=1;"+mxConstants.STYLE_VERTICAL_ALIGN+ +"=top;"+mxConstants.STYLE_SHAPE+"=mxgraph.pid.filters.";this.addPaletteFunctions("pidFilters","Proc. Eng. / Filters",!1,[this.createVertexTemplateEntry(b+"filter;",50,50,"","Filter",null,null,this.getTagsForStencil("mxgraph.pid.filters","filter","pid process instrumentation filter ").join(" ")),this.createVertexTemplateEntry(b+"gas_filter;",50,100,"","Gas Filter",null,null,this.getTagsForStencil("mxgraph.pid.filters","gas_filter","pid process instrumentation filter ").join(" ")),this.createVertexTemplateEntry(b+ +"gas_filter_(bag,_candle,_cartridge);",50,100,"","Gas Filter (Bag, Candle, Cartridge)",null,null,this.getTagsForStencil("mxgraph.pid.filters","gas_filter_(bag,_candle,_cartridge)","pid process instrumentation filter ").join(" ")),this.createVertexTemplateEntry(b+"gas_filter_(belt,_roll);",50,100,"","Gas Filter (Belt, Roll)",null,null,this.getTagsForStencil("mxgraph.pid.filters","gas_filter_(belt,_roll)","pid process instrumentation filter ").join(" ")),this.createVertexTemplateEntry(b+"gas_filter_(fixed_bed);", +50,100,"","Gas Filter (Fixed Bed)",null,null,this.getTagsForStencil("mxgraph.pid.filters","gas_filter_(fixed_bed)","pid process instrumentation filter ").join(" ")),this.createVertexTemplateEntry(a+"gas_filter_(hepa);",50,100,"HEPA","Gas Filter (HEPA)",null,null,this.getTagsForStencil("mxgraph.pid.filters","gas_filter_(hepa)","pid process instrumentation filter ").join(" ")),this.createVertexTemplateEntry(b+"liquid_filter;",50,100,"","Liquid Filter",null,null,this.getTagsForStencil("mxgraph.pid.filters", +"liquid_filter","pid process instrumentation filter ").join(" ")),this.createVertexTemplateEntry(b+"liquid_Filter_(bag,_candle,_cartridge);",50,100,"","Liquid Filter (Bag, Candle, Cartridge)",null,null,this.getTagsForStencil("mxgraph.pid.filters","liquid_Filter_(bag,_candle,_cartridge)","pid process instrumentation filter ").join(" ")),this.createVertexTemplateEntry(b+"liquid_filter_(belt,_roll);",50,100,"","Liquid Filter (Belt, Roll)",null,null,this.getTagsForStencil("mxgraph.pid.filters","liquid_filter_(belt,_roll)", +"pid process instrumentation filter ").join(" ")),this.createVertexTemplateEntry(a+"liquid_filter_(biological);",50,100,"BIO","Liquid Filter (Biological)",null,null,this.getTagsForStencil("mxgraph.pid.filters","liquid_filter_(biological)","pid process instrumentation filter ").join(" ")),this.createVertexTemplateEntry(b+"liquid_filter_(fixed_bed);",50,100,"","Liquid Filter (Fixed Bed)",null,null,this.getTagsForStencil("mxgraph.pid.filters","liquid_filter_(fixed_bed)","pid process instrumentation filter ").join(" ")), +this.createVertexTemplateEntry(a+"liquid_filter_(ion_exchanger);",50,100,"ION","Liquid Filter (Ion Exchanger)",null,null,this.getTagsForStencil("mxgraph.pid.filters","liquid_filter_(ion_exchanger)","pid process instrumentation filter ").join(" ")),this.createVertexTemplateEntry(b+"liquid_filter_(rotary,_drum_or_disc);",50,100,"","Liquid Filter (Rotary, Drum or Disc)",null,null,this.getTagsForStencil("mxgraph.pid.filters","liquid_filter_(rotary,_drum_or_disc)","pid process instrumentation filter ").join(" ")), +this.createVertexTemplateEntry(b+"liquid_filter_(rotary,_drum_or_disc,_scraper);",55,100,"","Liquid Filter (Rotary, Drum or Disc, Scraper)",null,null,this.getTagsForStencil("mxgraph.pid.filters","liquid_filter_(rotary,_drum_or_disc,_scraper)","pid process instrumentation filter ").join(" ")),this.createVertexTemplateEntry(b+"press_filter;",100,50,"","Press Filter",null,null,this.getTagsForStencil("mxgraph.pid.filters","press_filter","pid process instrumentation filter ").join(" ")),this.createVertexTemplateEntry(b+ "suction_filter;",50,100,"","Suction Filter",null,null,this.getTagsForStencil("mxgraph.pid.filters","suction_filter","pid process instrumentation filter ").join(" "))])};Sidebar.prototype.addPidFlowSensorsPalette=function(){var a=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;align=center;outlineConnect=0;dashed=0;html=1;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;"+mxConstants.STYLE_SHAPE+"=mxgraph.pid.flow_sensors.";this.addPaletteFunctions("pidFlow Sensors","Proc. Eng. / Flow Sensors",!1,[this.createVertexTemplateEntry(a+ "averging_pitot_tube;",50,50,"","Averging Pitot Tube",null,null,this.getTagsForStencil("mxgraph.pid.flow_sensors","averging_pitot_tube","process instrumentation sensor ").join(" ")),this.createVertexTemplateEntry(a+"coriolis;",50,50,"","Coriolis",null,null,this.getTagsForStencil("mxgraph.pid.flow_sensors","coriolis","process instrumentation sensor ").join(" ")),this.createVertexTemplateEntry(a+"flow_nozzle;",50,25,"","Flow Nozzle",null,null,this.getTagsForStencil("mxgraph.pid.flow_sensors","flow_nozzle", "process instrumentation sensor ").join(" ")),this.createVertexTemplateEntry(a+"flume;pointerEvents=1;",50,50,"","Flume",null,null,this.getTagsForStencil("mxgraph.pid.flow_sensors","flume","process instrumentation sensor ").join(" ")),this.createVertexTemplateEntry(mxConstants.STYLE_SHAPE+"=mxgraph.pid.flow_sensors.magnetic;dashed=0;align=center;html=1;fontSize=25;",50,50,"M","Magnetic",null,null,this.getTagsForStencil("mxgraph.pid.flow_sensors","magnetic","process instrumentation sensor ").join(" ")), @@ -7318,55 +6979,55 @@ this.createVertexTemplateEntry(a+"pitot_tube;",50,50,"","Pitot Tube",null,null,t "rotameter","process instrumentation sensor ").join(" ")),this.createVertexTemplateEntry(a+"target;",50,50,"","Target",null,null,this.getTagsForStencil("mxgraph.pid.flow_sensors","target","process instrumentation sensor ").join(" ")),this.createVertexTemplateEntry(a+"turbine;",50,50,"","Turbine",null,null,this.getTagsForStencil("mxgraph.pid.flow_sensors","turbine","process instrumentation sensor ").join(" ")),this.createVertexTemplateEntry(a+"ultrasonic;",50,50,"","Ultrasonic",null,null,this.getTagsForStencil("mxgraph.pid.flow_sensors", "ultrasonic","process instrumentation sensor ").join(" ")),this.createVertexTemplateEntry(a+"v-cone;",50,50,"","V-cone",null,null,this.getTagsForStencil("mxgraph.pid.flow_sensors","v-cone","process instrumentation sensor ").join(" ")),this.createVertexTemplateEntry(a+"venturi;",50,40,"","Venturi",null,null,this.getTagsForStencil("mxgraph.pid.flow_sensors","venturi","process instrumentation sensor ").join(" ")),this.createVertexTemplateEntry(a+"vortex;",50,50,"","Vortex",null,null,this.getTagsForStencil("mxgraph.pid.flow_sensors", "vortex","process instrumentation sensor ").join(" ")),this.createVertexTemplateEntry(a+"wedge;",50,50,"","Wedge",null,null,this.getTagsForStencil("mxgraph.pid.flow_sensors","wedge","process instrumentation sensor ").join(" ")),this.createVertexTemplateEntry(a+"weir;",50,50,"","Weir",null,null,this.getTagsForStencil("mxgraph.pid.flow_sensors","weir","process instrumentation sensor ").join(" "))])};Sidebar.prototype.addPidPipingPalette=function(){var a="html=1;dashed=0;outlineConnect=0;align=center;"+ -mxConstants.STYLE_SHAPE+"=mxgraph.pid.piping.",d=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;align=center;dashed=0;html=1;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;"+mxConstants.STYLE_SHAPE+"=mxgraph.pid.piping.";this.addPaletteFunctions("pidPiping","Proc. Eng. / Piping",!1,[this.createVertexTemplateEntry(d+"basket_strainer;",50,45,"","Basket Strainer",null,null,this.getTagsForStencil("mxgraph.pid.piping","basket_strainer","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(d+ -"blank;",20,60,"","Blank",null,null,this.getTagsForStencil("mxgraph.pid.piping","blank","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(d+"breather;",50,30,"","Breather",null,null,this.getTagsForStencil("mxgraph.pid.piping","breather","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(d+"cap;",10,20,"","Cap",null,null,this.getTagsForStencil("mxgraph.pid.piping","cap","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(d+ -"closed_figure_8_blind;",20,80,"","Closed Figure 8 Blind",null,null,this.getTagsForStencil("mxgraph.pid.piping","closed_figure_8_blind","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(d+"concentric_reducer;",20,20,"","Concentric Reducer",null,null,this.getTagsForStencil("mxgraph.pid.piping","concentric_reducer","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(d+"cone_strainer;",30,30,"","Cone Strainer",null,null,this.getTagsForStencil("mxgraph.pid.piping", -"cone_strainer","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(d+"damper;",50,20,"","Damper",null,null,this.getTagsForStencil("mxgraph.pid.piping","damper","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(a+"desuper_heater;",50,50,"DS","Desuper Heater",null,null,this.getTagsForStencil("mxgraph.pid.piping","desuper_heater","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(a+"detonation_arrestor;",50,20,"D","Detonation Arrestor", -null,null,this.getTagsForStencil("mxgraph.pid.piping","detonation_arrestor","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(d+"diverter_valve;pointerEvents=1;",50,35,"","Diverter Valve",null,null,this.getTagsForStencil("mxgraph.pid.piping","diverter_valve","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(d+"double_flange;pointerEvents=1;",5,20,"","Double Flange",null,null,this.getTagsForStencil("mxgraph.pid.piping","double_flange","process instrumentation piping ").join(" ")), -this.createVertexTemplateEntry(d+"duplex_strainer;",50,40,"","Duplex Strainer",null,null,this.getTagsForStencil("mxgraph.pid.piping","duplex_strainer","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(d+"eccentric_reducer;",20,15,"","Eccentric Reducer",null,null,this.getTagsForStencil("mxgraph.pid.piping","eccentric_reducer","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(d+"excess_flow_valve;",50,25,"","Excess Flow Valve",null,null,this.getTagsForStencil("mxgraph.pid.piping", -"excess_flow_valve","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(d+"exhaust_head;",50,40,"","Exhaust Head",null,null,this.getTagsForStencil("mxgraph.pid.piping","exhaust_head","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(d+"expansion_joint;",50,20,"","Expansion Joint",null,null,this.getTagsForStencil("mxgraph.pid.piping","expansion_joint","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(a+"flame_arrestor;", -50,20,"F","Flame Arrestor",null,null,this.getTagsForStencil("mxgraph.pid.piping","flame_arrestor","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(d+"flange;pointerEvents=1;",5,20,"","Flange",null,null,this.getTagsForStencil("mxgraph.pid.piping","flange","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(d+"flange_in;pointerEvents=1;",10,20,"","Flange In",null,null,this.getTagsForStencil("mxgraph.pid.piping","flange_in","process instrumentation piping ").join(" ")), -this.createVertexTemplateEntry(d+"flexible_hose;pointerEvents=1;",50,25,"","Flexible Hose",null,null,this.getTagsForStencil("mxgraph.pid.piping","flexible_hose","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(d+"hose_connection;pointerEvents=1;",20,20,"","Hose Connection",null,null,this.getTagsForStencil("mxgraph.pid.piping","hose_connection","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(d+"in-line_mixer;",50,10,"","In-Line Mixer",null,null, -this.getTagsForStencil("mxgraph.pid.piping","in-line_mixer","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(a+"in-line_silencer;",50,20,"S","In-Line Silencer",null,null,this.getTagsForStencil("mxgraph.pid.piping","in-line_silencer","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(d+"open_figure_8_blind;",20,80,"","Open Figure 8 Blind",null,null,this.getTagsForStencil("mxgraph.pid.piping","open_figure_8_blind","process instrumentation piping ").join(" ")), -this.createVertexTemplateEntry(d+"orifice_(quick_change);",10,50,"","Orifice (Quick Change)",null,null,this.getTagsForStencil("mxgraph.pid.piping","orifice_(quick_change)","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(d+"plug;",10,10,"","Plug",null,null,this.getTagsForStencil("mxgraph.pid.piping","plug","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(d+"pulsation_dampener;",50,150,"","Pulsation Dampener",null,null,this.getTagsForStencil("mxgraph.pid.piping", +mxConstants.STYLE_SHAPE+"=mxgraph.pid.piping.",b=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;align=center;dashed=0;html=1;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;"+mxConstants.STYLE_SHAPE+"=mxgraph.pid.piping.";this.addPaletteFunctions("pidPiping","Proc. Eng. / Piping",!1,[this.createVertexTemplateEntry(b+"basket_strainer;",50,45,"","Basket Strainer",null,null,this.getTagsForStencil("mxgraph.pid.piping","basket_strainer","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(b+ +"blank;",20,60,"","Blank",null,null,this.getTagsForStencil("mxgraph.pid.piping","blank","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(b+"breather;",50,30,"","Breather",null,null,this.getTagsForStencil("mxgraph.pid.piping","breather","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(b+"cap;",10,20,"","Cap",null,null,this.getTagsForStencil("mxgraph.pid.piping","cap","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(b+ +"closed_figure_8_blind;",20,80,"","Closed Figure 8 Blind",null,null,this.getTagsForStencil("mxgraph.pid.piping","closed_figure_8_blind","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(b+"concentric_reducer;",20,20,"","Concentric Reducer",null,null,this.getTagsForStencil("mxgraph.pid.piping","concentric_reducer","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(b+"cone_strainer;",30,30,"","Cone Strainer",null,null,this.getTagsForStencil("mxgraph.pid.piping", +"cone_strainer","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(b+"damper;",50,20,"","Damper",null,null,this.getTagsForStencil("mxgraph.pid.piping","damper","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(a+"desuper_heater;",50,50,"DS","Desuper Heater",null,null,this.getTagsForStencil("mxgraph.pid.piping","desuper_heater","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(a+"detonation_arrestor;",50,20,"D","Detonation Arrestor", +null,null,this.getTagsForStencil("mxgraph.pid.piping","detonation_arrestor","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(b+"diverter_valve;pointerEvents=1;",50,35,"","Diverter Valve",null,null,this.getTagsForStencil("mxgraph.pid.piping","diverter_valve","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(b+"double_flange;pointerEvents=1;",5,20,"","Double Flange",null,null,this.getTagsForStencil("mxgraph.pid.piping","double_flange","process instrumentation piping ").join(" ")), +this.createVertexTemplateEntry(b+"duplex_strainer;",50,40,"","Duplex Strainer",null,null,this.getTagsForStencil("mxgraph.pid.piping","duplex_strainer","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(b+"eccentric_reducer;",20,15,"","Eccentric Reducer",null,null,this.getTagsForStencil("mxgraph.pid.piping","eccentric_reducer","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(b+"excess_flow_valve;",50,25,"","Excess Flow Valve",null,null,this.getTagsForStencil("mxgraph.pid.piping", +"excess_flow_valve","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(b+"exhaust_head;",50,40,"","Exhaust Head",null,null,this.getTagsForStencil("mxgraph.pid.piping","exhaust_head","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(b+"expansion_joint;",50,20,"","Expansion Joint",null,null,this.getTagsForStencil("mxgraph.pid.piping","expansion_joint","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(a+"flame_arrestor;", +50,20,"F","Flame Arrestor",null,null,this.getTagsForStencil("mxgraph.pid.piping","flame_arrestor","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(b+"flange;pointerEvents=1;",5,20,"","Flange",null,null,this.getTagsForStencil("mxgraph.pid.piping","flange","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(b+"flange_in;pointerEvents=1;",10,20,"","Flange In",null,null,this.getTagsForStencil("mxgraph.pid.piping","flange_in","process instrumentation piping ").join(" ")), +this.createVertexTemplateEntry(b+"flexible_hose;pointerEvents=1;",50,25,"","Flexible Hose",null,null,this.getTagsForStencil("mxgraph.pid.piping","flexible_hose","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(b+"hose_connection;pointerEvents=1;",20,20,"","Hose Connection",null,null,this.getTagsForStencil("mxgraph.pid.piping","hose_connection","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(b+"in-line_mixer;",50,10,"","In-Line Mixer",null,null, +this.getTagsForStencil("mxgraph.pid.piping","in-line_mixer","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(a+"in-line_silencer;",50,20,"S","In-Line Silencer",null,null,this.getTagsForStencil("mxgraph.pid.piping","in-line_silencer","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(b+"open_figure_8_blind;",20,80,"","Open Figure 8 Blind",null,null,this.getTagsForStencil("mxgraph.pid.piping","open_figure_8_blind","process instrumentation piping ").join(" ")), +this.createVertexTemplateEntry(b+"orifice_(quick_change);",10,50,"","Orifice (Quick Change)",null,null,this.getTagsForStencil("mxgraph.pid.piping","orifice_(quick_change)","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(b+"plug;",10,10,"","Plug",null,null,this.getTagsForStencil("mxgraph.pid.piping","plug","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(b+"pulsation_dampener;",50,150,"","Pulsation Dampener",null,null,this.getTagsForStencil("mxgraph.pid.piping", "pulsation_dampener","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(mxConstants.STYLE_VERTICAL_ALIGN+"=bottom;pointerEvents=1;dashed=0;"+mxConstants.STYLE_SHAPE+"=mxgraph.pid.piping.removable_spool;html=1;overflow=fill;",50,30,'<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td valign="bottom" align="center">RS</td></tr></table>',"Removable Spool",null,null,this.getTagsForStencil("mxgraph.pid.piping","removable_spool","process instrumentation piping ").join(" ")), -this.createVertexTemplateEntry(d+"rotary_valve;pointerEvents=1;",50,20,"","Rotary Valve",null,null,this.getTagsForStencil("mxgraph.pid.piping","rotary_valve","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(d+"spacer;",20,60,"","Spacer",null,null,this.getTagsForStencil("mxgraph.pid.piping","spacer","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(a+"steam_trap;",50,50,"T","Steam Trap",null,null,this.getTagsForStencil("mxgraph.pid.piping","steam_trap", -"process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(d+"t-type_strainer;",20,35,"","T-Type Strainer",null,null,this.getTagsForStencil("mxgraph.pid.piping","t-type_strainer","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(d+"temporary_strainer;",30,30,"","Temporary Strainer",null,null,this.getTagsForStencil("mxgraph.pid.piping","temporary_strainer","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(a+"vent_silencer;",20, -80,"S","Vent Silencer",null,null,this.getTagsForStencil("mxgraph.pid.piping","vent_silencer","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(d+"welded_connection;",50,20,"","Welded Connection",null,null,this.getTagsForStencil("mxgraph.pid.piping","welded_connection","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(d+"y-type_strainer;pointerEvents=1;",50,35,"","Y-Type Strainer",null,null,this.getTagsForStencil("mxgraph.pid.piping","y-type_strainer", -"process instrumentation piping ").join(" "))])};Sidebar.prototype.addPidMiscPalette=function(){var a=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;outlineConnect=0;align=center;dashed=0;html=1;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;"+mxConstants.STYLE_SHAPE+"=mxgraph.pid2",d=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;outlineConnect=0;align=center;dashed=0;html=1;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;"+mxConstants.STYLE_SHAPE+"=mxgraph.pid.misc.";this.addPaletteFunctions("pidMisc", +this.createVertexTemplateEntry(b+"rotary_valve;pointerEvents=1;",50,20,"","Rotary Valve",null,null,this.getTagsForStencil("mxgraph.pid.piping","rotary_valve","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(b+"spacer;",20,60,"","Spacer",null,null,this.getTagsForStencil("mxgraph.pid.piping","spacer","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(a+"steam_trap;",50,50,"T","Steam Trap",null,null,this.getTagsForStencil("mxgraph.pid.piping","steam_trap", +"process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(b+"t-type_strainer;",20,35,"","T-Type Strainer",null,null,this.getTagsForStencil("mxgraph.pid.piping","t-type_strainer","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(b+"temporary_strainer;",30,30,"","Temporary Strainer",null,null,this.getTagsForStencil("mxgraph.pid.piping","temporary_strainer","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(a+"vent_silencer;",20, +80,"S","Vent Silencer",null,null,this.getTagsForStencil("mxgraph.pid.piping","vent_silencer","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(b+"welded_connection;",50,20,"","Welded Connection",null,null,this.getTagsForStencil("mxgraph.pid.piping","welded_connection","process instrumentation piping ").join(" ")),this.createVertexTemplateEntry(b+"y-type_strainer;pointerEvents=1;",50,35,"","Y-Type Strainer",null,null,this.getTagsForStencil("mxgraph.pid.piping","y-type_strainer", +"process instrumentation piping ").join(" "))])};Sidebar.prototype.addPidMiscPalette=function(){var a=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;outlineConnect=0;align=center;dashed=0;html=1;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;"+mxConstants.STYLE_SHAPE+"=mxgraph.pid2",b=mxConstants.STYLE_VERTICAL_LABEL_POSITION+"=bottom;outlineConnect=0;align=center;dashed=0;html=1;"+mxConstants.STYLE_VERTICAL_ALIGN+"=top;"+mxConstants.STYLE_SHAPE+"=mxgraph.pid.misc.";this.addPaletteFunctions("pidMisc", "Proc. Eng. / Misc",!1,[this.createVertexTemplateEntry(a+"misc.fan;fanType=common",50,50,"","Fan",null,null,this.getTagsForStencil("mxgraph.pid.misc","fan","process instrumentation ").join(" ")),this.createVertexTemplateEntry(a+"misc.column;columnType=common",50,120,"","Column",null,null,this.getTagsForStencil("mxgraph.pid.misc","column","process instrumentation ").join(" ")),this.createVertexTemplateEntry(a+"misc.column;columnType=tray",50,120,"","Column (Tray)",null,null,this.getTagsForStencil("mxgraph.pid.misc", "column","process instrumentation tray").join(" ")),this.createVertexTemplateEntry(a+"misc.column;columnType=fixed",50,180,"","Column (Fixed Bed)",null,null,this.getTagsForStencil("mxgraph.pid.misc","column","process instrumentation fixed bed").join(" ")),this.createVertexTemplateEntry(a+"misc.column;columnType=fluid",50,120,"","Column (Fluidized Bed)",null,null,this.getTagsForStencil("mxgraph.pid.misc","column","process instrumentation fluidized bed").join(" ")),this.createVertexTemplateEntry(a+ "misc.column;columnType=baffle",50,120,"","Column (Staggered Baffle Trays)",null,null,this.getTagsForStencil("mxgraph.pid.misc","column","process instrumentation staggered baffle tray").join(" ")),this.createVertexTemplateEntry(a+"misc.column;columnType=bubble",50,120,"","Column (Bubble Cap Trays)",null,null,this.getTagsForStencil("mxgraph.pid.misc","column","process instrumentation bubble cap tray").join(" ")),this.createVertexTemplateEntry(a+"misc.column;columnType=valve",50,120,"","Column (Valve Trays)", null,null,this.getTagsForStencil("mxgraph.pid.misc","column","process instrumentation valve tray").join(" ")),this.createVertexTemplateEntry(a+"misc.column;columnType=nozzle",50,180,"","Column (Fixed Bed, Spray Nozzle)",null,null,this.getTagsForStencil("mxgraph.pid.misc","column","process instrumentation fixed bed spray nozzle").join(" ")),this.createVertexTemplateEntry(a+"misc.conveyor",200,50,"","Conveyor",null,null,this.getTagsForStencil("mxgraph.pid.misc","conveyor","process instrumentation ").join(" ")), -this.createVertexTemplateEntry(d+"aerator_with_sparger;",35,100,"","Aerator With Sparger",null,null,this.getTagsForStencil("mxgraph.pid.misc","aerator_with_sparger","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"air_cooler;",70,20,"","Air Cooler",null,null,this.getTagsForStencil("mxgraph.pid.misc","air_cooler","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"air_filter;",40,65,"","Air Filter",null,null,this.getTagsForStencil("mxgraph.pid.misc","air_filter", -"process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"air_separator;",65.5,106,"","Air Separator",null,null,this.getTagsForStencil("mxgraph.pid.misc","air_separator","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"back_draft_damper;",62,32,"","Back Draft Damper",null,null,this.getTagsForStencil("mxgraph.pid.misc","back_draft_damper","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"bag_filling_machine;",80,100,"","Bag Filling Machine", -null,null,this.getTagsForStencil("mxgraph.pid.misc","bag_filling_machine","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"belt_skimmer;",70,98,"","Belt Skimmer",null,null,this.getTagsForStencil("mxgraph.pid.misc","belt_skimmer","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"bin;",100,65,"","Bin",null,null,this.getTagsForStencil("mxgraph.pid.misc","bin","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"boiler_(dome);",100,120, -"","Boiler (Dome)",null,null,this.getTagsForStencil("mxgraph.pid.misc","boiler_(dome)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"boiler_(dome,_hot_liquid);",100,120,"","Boiler (Dome, Hot Liquid)",null,null,this.getTagsForStencil("mxgraph.pid.misc","boiler_(dome,_hot_liquid)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"box_truck;",120,80,"","Box Truck",null,null,this.getTagsForStencil("mxgraph.pid.misc","box_truck","process instrumentation ").join(" ")), -this.createVertexTemplateEntry(d+"bucket_elevator;",65,200,"","Bucket Elevator",null,null,this.getTagsForStencil("mxgraph.pid.misc","bucket_elevator","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"chiller;",155,115,"","Chiller",null,null,this.getTagsForStencil("mxgraph.pid.misc","chiller","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"combustion_chamber;",130,100,"","Combustion Chamber",null,null,this.getTagsForStencil("mxgraph.pid.misc","combustion_chamber", -"process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"conveyor;",200,60,"","Conveyor",null,null,this.getTagsForStencil("mxgraph.pid.misc","conveyor","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"conveyor_(belt);",200,50,"","Conveyor (Belt)",null,null,this.getTagsForStencil("mxgraph.pid.misc","conveyor_(belt)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"conveyor_(belt,_closed);",240,80,"","Conveyor (Belt, Closed)",null,null, -this.getTagsForStencil("mxgraph.pid.misc","conveyor_(belt,_closed)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"conveyor_(belt,_closed,_reversible);",240,80,"","Conveyor (Belt, Closed, Reversible)",null,null,this.getTagsForStencil("mxgraph.pid.misc","conveyor_(belt,_closed,_reversible)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"conveyor_(chain,_closed);",240,80,"","Conveyor (Chain, Closed)",null,null,this.getTagsForStencil("mxgraph.pid.misc", -"conveyor_(chain,_closed)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"conveyor_(screw,_closed);",220,80,"","Conveyor (Screw, Closed)",null,null,this.getTagsForStencil("mxgraph.pid.misc","conveyor_(screw,_closed)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"conveyor_(vibrating,_closed);",240,80,"","Conveyor (Vibrating, Closed)",null,null,this.getTagsForStencil("mxgraph.pid.misc","conveyor_(vibrating,_closed)","process instrumentation ").join(" ")), -this.createVertexTemplateEntry(d+"cooler;",85,90,"","Cooler",null,null,this.getTagsForStencil("mxgraph.pid.misc","cooler","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"cooling_tower",100,120,"","Cooling Tower",null,null,this.getTagsForStencil("mxgraph.pid.misc","cooling_tower","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"cooling_tower_(dry,_forced_draught);",100,120,"","Cooling Tower (Dry, Forced Draught)",null,null,this.getTagsForStencil("mxgraph.pid.misc", -"cooling_tower_(dry,_forced_draught)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"cooling_tower_(dry,_induced_draught);",100,120,"","Cooling Tower (Dry, Induced Draught)",null,null,this.getTagsForStencil("mxgraph.pid.misc","cooling_tower_(dry,_induced_draught)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"cooling_tower_(dry,_natural_draught);",100,120,"","Cooling Tower (Dry, Natural Draught)",null,null,this.getTagsForStencil("mxgraph.pid.misc", -"cooling_tower_(dry,_natural_draught)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"cooling_tower_(wet,_forced_draught);",100,120,"","Cooling Tower (Wet, Forced Draught)",null,null,this.getTagsForStencil("mxgraph.pid.misc","cooling_tower_(wet,_forced_draught)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"cooling_tower_(wet,_induced_draught);",100,120,"","Cooling Tower (Wet, Induced Draught)",null,null,this.getTagsForStencil("mxgraph.pid.misc", -"cooling_tower_(wet,_induced_draught)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"cooling_tower_(wet,_natural_draught);",100,120,"","Cooling Tower (Wet, Natural Draught)",null,null,this.getTagsForStencil("mxgraph.pid.misc","cooling_tower_(wet,_natural_draught)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"cooling_tower_(wet-dry,_natural_draught);",100,120,"","Cooling Tower (Wet-Dry, Natural Draught)",null,null,this.getTagsForStencil("mxgraph.pid.misc", -"cooling_tower_(wet-dry,_natural_draught)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"covered_gas_vent;pointerEvents=1;",80,100,"","Covered Gas Vent",null,null,this.getTagsForStencil("mxgraph.pid.misc","covered_gas_vent","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"crane;",100,100,"","Crane",null,null,this.getTagsForStencil("mxgraph.pid.misc","crane","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"curved_gas_vent;pointerEvents=1;", -30,70,"","Curved Gas Vent",null,null,this.getTagsForStencil("mxgraph.pid.misc","curved_gas_vent","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"cyclone;",100,80,"","Cyclone",null,null,this.getTagsForStencil("mxgraph.pid.misc","cyclone","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"dryer;",80,100,"","Dryer",null,null,this.getTagsForStencil("mxgraph.pid.misc","dryer","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"elevator_(bucket);", -160,250,"","Elevator (Bucket)",null,null,this.getTagsForStencil("mxgraph.pid.misc","elevator_(bucket)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"elevator_(bucket,_z-form);",430,250,"","Elevator (Bucket, Z-Form)",null,null,this.getTagsForStencil("mxgraph.pid.misc","elevator_(bucket,_z-form)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"fan;",100,100,"","Fan",null,null,this.getTagsForStencil("mxgraph.pid.misc","fan","process instrumentation ").join(" ")), -this.createVertexTemplateEntry(d+"fan_2;",58,8,"","Fan 2",null,null,this.getTagsForStencil("mxgraph.pid.misc","fan_2","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"filter;",100,100,"","Filter",null,null,this.getTagsForStencil("mxgraph.pid.misc","filter","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"filter_2;",100,100,"","Filter 2",null,null,this.getTagsForStencil("mxgraph.pid.misc","filter_2","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+ -"firing_system,_burner;",100,100,"","Firing System, Burner",null,null,this.getTagsForStencil("mxgraph.pid.misc","firing_system,_burner","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"flame_arrestor;",100,40,"","Flame Arrestor",null,null,this.getTagsForStencil("mxgraph.pid.misc","flame_arrestor","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"flexible_pipe;pointerEvents=1;",60,16,"","Flexible Pipe",null,null,this.getTagsForStencil("mxgraph.pid.misc", -"flexible_pipe","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"forced_flow_air_cooler;",70,30,"","Forced Flow Air Cooler",null,null,this.getTagsForStencil("mxgraph.pid.misc","forced_flow_air_cooler","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"forklift_(manual);",140,100,"","Forklift (Manual)",null,null,this.getTagsForStencil("mxgraph.pid.misc","forklift_(manual)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"forklift_(truck);", -140,100,"","Forklift (Truck)",null,null,this.getTagsForStencil("mxgraph.pid.misc","forklift_(truck)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"funnel;pointerEvents=1;",40,80,"","Funnel",null,null,this.getTagsForStencil("mxgraph.pid.misc","funnel","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"gas_flare;",60,100,"","Gas Flare",null,null,this.getTagsForStencil("mxgraph.pid.misc","gas_flare","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+ -"induced_flow_air_cooler;",93,30,"","Induced Flow Air Cooler",null,null,this.getTagsForStencil("mxgraph.pid.misc","induced_flow_air_cooler","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"industrial_truck;pointerEvents=1;",120,20,"","Industrial Truck",null,null,this.getTagsForStencil("mxgraph.pid.misc","industrial_truck","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"lift;",100,100,"","Lift",null,null,this.getTagsForStencil("mxgraph.pid.misc","lift", -"process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"loading_arm;pointerEvents=1;",120,80,"","Loading Arm",null,null,this.getTagsForStencil("mxgraph.pid.misc","loading_arm","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"mixer;",80,100,"","Mixer",null,null,this.getTagsForStencil("mxgraph.pid.misc","mixer","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"palletizer;",80,100,"","Palletizer",null,null,this.getTagsForStencil("mxgraph.pid.misc", -"palletizer","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"protective_palette_covering;",80,100,"","Protective Palette Covering",null,null,this.getTagsForStencil("mxgraph.pid.misc","protective_palette_covering","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"roller_conveyor;",160,20,"","Roller Conveyor",null,null,this.getTagsForStencil("mxgraph.pid.misc","roller_conveyor","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"rolling_bin;", -100,65,"","Rolling Bin",null,null,this.getTagsForStencil("mxgraph.pid.misc","rolling_bin","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"rotary_screen;",100,65,"","Rotary Screen",null,null,this.getTagsForStencil("mxgraph.pid.misc","rotary_screen","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"screening_device,_sieve,_strainer;",80,120,"","Screening Device, Sieve, Strainer",null,null,this.getTagsForStencil("mxgraph.pid.misc","screening_device,_sieve,_strainer", -"process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"screening_device,_sieve,_strainer_(basket_reel);",80,180,"","Screening Device, Sieve, Strainer (Basket Reel)",null,null,this.getTagsForStencil("mxgraph.pid.misc","screening_device,_sieve,_strainer_(basket_reel)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"screening_device,_sieve,_strainer_(coarse_and_fine_screens);",80,120,"","Screening Device, Sieve, Strainer (Coarse and Fine Screens)",null,null, -this.getTagsForStencil("mxgraph.pid.misc","screening_device,_sieve,_strainer_(coarse_and_fine_screens)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"screening_device,_sieve,_strainer_(coarse_rake);",80,120,"","Screening Device, Sieve, Strainer (Coarse Rake)",null,null,this.getTagsForStencil("mxgraph.pid.misc","screening_device,_sieve,_strainer_(coarse_rake)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"screening_device,_sieve,_strainer_(fine_rake);", -80,120,"","Screening Device, Sieve, Strainer (Fine Rake)",null,null,this.getTagsForStencil("mxgraph.pid.misc","screening_device,_sieve,_strainer_(fine_rake)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"screening_device,_sieve,_strainer_(rotating_drum)",80,120,"","Screening Device, Sieve, Strainer (Rotating Drum)",null,null,this.getTagsForStencil("mxgraph.pid.misc","screening_device,_sieve,_strainer_(rotating_drum)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+ -"screening_device,_sieve,_strainer_(vibrating);",80,120,"","Screening Device, Sieve, Strainer (Vibrating)",null,null,this.getTagsForStencil("mxgraph.pid.misc","screening_device,_sieve,_strainer_(vibrating)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"ship",105,60,"","Ship",null,null,this.getTagsForStencil("mxgraph.pid.misc","ship","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"silencer;",100,30,"","Silencer",null,null,this.getTagsForStencil("mxgraph.pid.misc", -"silencer","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"spraying_device;pointerEvents=1;",60,20,"","Spraying Device",null,null,this.getTagsForStencil("mxgraph.pid.misc","spraying_device","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"spray_cooler;",100,120,"","Spray Cooler",null,null,this.getTagsForStencil("mxgraph.pid.misc","spray_cooler","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"stack,_chimney;",60,100,"","Stack, Chimney", -null,null,this.getTagsForStencil("mxgraph.pid.misc","stack,_chimney","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"steam_trap;",53,53,"","Steam Trap",null,null,this.getTagsForStencil("mxgraph.pid.misc","steam_trap","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+"tank_car,_tank_wagon;",127,80,"","Tank Car, Tank Wagon",null,null,this.getTagsForStencil("mxgraph.pid.misc","tank_car,_tank_wagon","process instrumentation ").join(" ")),this.createVertexTemplateEntry(d+ +this.createVertexTemplateEntry(b+"aerator_with_sparger;",35,100,"","Aerator With Sparger",null,null,this.getTagsForStencil("mxgraph.pid.misc","aerator_with_sparger","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"air_cooler;",70,20,"","Air Cooler",null,null,this.getTagsForStencil("mxgraph.pid.misc","air_cooler","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"air_filter;",40,65,"","Air Filter",null,null,this.getTagsForStencil("mxgraph.pid.misc","air_filter", +"process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"air_separator;",65.5,106,"","Air Separator",null,null,this.getTagsForStencil("mxgraph.pid.misc","air_separator","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"back_draft_damper;",62,32,"","Back Draft Damper",null,null,this.getTagsForStencil("mxgraph.pid.misc","back_draft_damper","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"bag_filling_machine;",80,100,"","Bag Filling Machine", +null,null,this.getTagsForStencil("mxgraph.pid.misc","bag_filling_machine","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"belt_skimmer;",70,98,"","Belt Skimmer",null,null,this.getTagsForStencil("mxgraph.pid.misc","belt_skimmer","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"bin;",100,65,"","Bin",null,null,this.getTagsForStencil("mxgraph.pid.misc","bin","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"boiler_(dome);",100,120, +"","Boiler (Dome)",null,null,this.getTagsForStencil("mxgraph.pid.misc","boiler_(dome)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"boiler_(dome,_hot_liquid);",100,120,"","Boiler (Dome, Hot Liquid)",null,null,this.getTagsForStencil("mxgraph.pid.misc","boiler_(dome,_hot_liquid)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"box_truck;",120,80,"","Box Truck",null,null,this.getTagsForStencil("mxgraph.pid.misc","box_truck","process instrumentation ").join(" ")), +this.createVertexTemplateEntry(b+"bucket_elevator;",65,200,"","Bucket Elevator",null,null,this.getTagsForStencil("mxgraph.pid.misc","bucket_elevator","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"chiller;",155,115,"","Chiller",null,null,this.getTagsForStencil("mxgraph.pid.misc","chiller","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"combustion_chamber;",130,100,"","Combustion Chamber",null,null,this.getTagsForStencil("mxgraph.pid.misc","combustion_chamber", +"process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"conveyor;",200,60,"","Conveyor",null,null,this.getTagsForStencil("mxgraph.pid.misc","conveyor","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"conveyor_(belt);",200,50,"","Conveyor (Belt)",null,null,this.getTagsForStencil("mxgraph.pid.misc","conveyor_(belt)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"conveyor_(belt,_closed);",240,80,"","Conveyor (Belt, Closed)",null,null, +this.getTagsForStencil("mxgraph.pid.misc","conveyor_(belt,_closed)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"conveyor_(belt,_closed,_reversible);",240,80,"","Conveyor (Belt, Closed, Reversible)",null,null,this.getTagsForStencil("mxgraph.pid.misc","conveyor_(belt,_closed,_reversible)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"conveyor_(chain,_closed);",240,80,"","Conveyor (Chain, Closed)",null,null,this.getTagsForStencil("mxgraph.pid.misc", +"conveyor_(chain,_closed)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"conveyor_(screw,_closed);",220,80,"","Conveyor (Screw, Closed)",null,null,this.getTagsForStencil("mxgraph.pid.misc","conveyor_(screw,_closed)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"conveyor_(vibrating,_closed);",240,80,"","Conveyor (Vibrating, Closed)",null,null,this.getTagsForStencil("mxgraph.pid.misc","conveyor_(vibrating,_closed)","process instrumentation ").join(" ")), +this.createVertexTemplateEntry(b+"cooler;",85,90,"","Cooler",null,null,this.getTagsForStencil("mxgraph.pid.misc","cooler","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"cooling_tower",100,120,"","Cooling Tower",null,null,this.getTagsForStencil("mxgraph.pid.misc","cooling_tower","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"cooling_tower_(dry,_forced_draught);",100,120,"","Cooling Tower (Dry, Forced Draught)",null,null,this.getTagsForStencil("mxgraph.pid.misc", +"cooling_tower_(dry,_forced_draught)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"cooling_tower_(dry,_induced_draught);",100,120,"","Cooling Tower (Dry, Induced Draught)",null,null,this.getTagsForStencil("mxgraph.pid.misc","cooling_tower_(dry,_induced_draught)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"cooling_tower_(dry,_natural_draught);",100,120,"","Cooling Tower (Dry, Natural Draught)",null,null,this.getTagsForStencil("mxgraph.pid.misc", +"cooling_tower_(dry,_natural_draught)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"cooling_tower_(wet,_forced_draught);",100,120,"","Cooling Tower (Wet, Forced Draught)",null,null,this.getTagsForStencil("mxgraph.pid.misc","cooling_tower_(wet,_forced_draught)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"cooling_tower_(wet,_induced_draught);",100,120,"","Cooling Tower (Wet, Induced Draught)",null,null,this.getTagsForStencil("mxgraph.pid.misc", +"cooling_tower_(wet,_induced_draught)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"cooling_tower_(wet,_natural_draught);",100,120,"","Cooling Tower (Wet, Natural Draught)",null,null,this.getTagsForStencil("mxgraph.pid.misc","cooling_tower_(wet,_natural_draught)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"cooling_tower_(wet-dry,_natural_draught);",100,120,"","Cooling Tower (Wet-Dry, Natural Draught)",null,null,this.getTagsForStencil("mxgraph.pid.misc", +"cooling_tower_(wet-dry,_natural_draught)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"covered_gas_vent;pointerEvents=1;",80,100,"","Covered Gas Vent",null,null,this.getTagsForStencil("mxgraph.pid.misc","covered_gas_vent","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"crane;",100,100,"","Crane",null,null,this.getTagsForStencil("mxgraph.pid.misc","crane","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"curved_gas_vent;pointerEvents=1;", +30,70,"","Curved Gas Vent",null,null,this.getTagsForStencil("mxgraph.pid.misc","curved_gas_vent","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"cyclone;",100,80,"","Cyclone",null,null,this.getTagsForStencil("mxgraph.pid.misc","cyclone","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"dryer;",80,100,"","Dryer",null,null,this.getTagsForStencil("mxgraph.pid.misc","dryer","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"elevator_(bucket);", +160,250,"","Elevator (Bucket)",null,null,this.getTagsForStencil("mxgraph.pid.misc","elevator_(bucket)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"elevator_(bucket,_z-form);",430,250,"","Elevator (Bucket, Z-Form)",null,null,this.getTagsForStencil("mxgraph.pid.misc","elevator_(bucket,_z-form)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"fan;",100,100,"","Fan",null,null,this.getTagsForStencil("mxgraph.pid.misc","fan","process instrumentation ").join(" ")), +this.createVertexTemplateEntry(b+"fan_2;",58,8,"","Fan 2",null,null,this.getTagsForStencil("mxgraph.pid.misc","fan_2","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"filter;",100,100,"","Filter",null,null,this.getTagsForStencil("mxgraph.pid.misc","filter","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"filter_2;",100,100,"","Filter 2",null,null,this.getTagsForStencil("mxgraph.pid.misc","filter_2","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+ +"firing_system,_burner;",100,100,"","Firing System, Burner",null,null,this.getTagsForStencil("mxgraph.pid.misc","firing_system,_burner","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"flame_arrestor;",100,40,"","Flame Arrestor",null,null,this.getTagsForStencil("mxgraph.pid.misc","flame_arrestor","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"flexible_pipe;pointerEvents=1;",60,16,"","Flexible Pipe",null,null,this.getTagsForStencil("mxgraph.pid.misc", +"flexible_pipe","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"forced_flow_air_cooler;",70,30,"","Forced Flow Air Cooler",null,null,this.getTagsForStencil("mxgraph.pid.misc","forced_flow_air_cooler","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"forklift_(manual);",140,100,"","Forklift (Manual)",null,null,this.getTagsForStencil("mxgraph.pid.misc","forklift_(manual)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"forklift_(truck);", +140,100,"","Forklift (Truck)",null,null,this.getTagsForStencil("mxgraph.pid.misc","forklift_(truck)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"funnel;pointerEvents=1;",40,80,"","Funnel",null,null,this.getTagsForStencil("mxgraph.pid.misc","funnel","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"gas_flare;",60,100,"","Gas Flare",null,null,this.getTagsForStencil("mxgraph.pid.misc","gas_flare","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+ +"induced_flow_air_cooler;",93,30,"","Induced Flow Air Cooler",null,null,this.getTagsForStencil("mxgraph.pid.misc","induced_flow_air_cooler","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"industrial_truck;pointerEvents=1;",120,20,"","Industrial Truck",null,null,this.getTagsForStencil("mxgraph.pid.misc","industrial_truck","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"lift;",100,100,"","Lift",null,null,this.getTagsForStencil("mxgraph.pid.misc","lift", +"process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"loading_arm;pointerEvents=1;",120,80,"","Loading Arm",null,null,this.getTagsForStencil("mxgraph.pid.misc","loading_arm","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"mixer;",80,100,"","Mixer",null,null,this.getTagsForStencil("mxgraph.pid.misc","mixer","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"palletizer;",80,100,"","Palletizer",null,null,this.getTagsForStencil("mxgraph.pid.misc", +"palletizer","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"protective_palette_covering;",80,100,"","Protective Palette Covering",null,null,this.getTagsForStencil("mxgraph.pid.misc","protective_palette_covering","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"roller_conveyor;",160,20,"","Roller Conveyor",null,null,this.getTagsForStencil("mxgraph.pid.misc","roller_conveyor","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"rolling_bin;", +100,65,"","Rolling Bin",null,null,this.getTagsForStencil("mxgraph.pid.misc","rolling_bin","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"rotary_screen;",100,65,"","Rotary Screen",null,null,this.getTagsForStencil("mxgraph.pid.misc","rotary_screen","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"screening_device,_sieve,_strainer;",80,120,"","Screening Device, Sieve, Strainer",null,null,this.getTagsForStencil("mxgraph.pid.misc","screening_device,_sieve,_strainer", +"process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"screening_device,_sieve,_strainer_(basket_reel);",80,180,"","Screening Device, Sieve, Strainer (Basket Reel)",null,null,this.getTagsForStencil("mxgraph.pid.misc","screening_device,_sieve,_strainer_(basket_reel)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"screening_device,_sieve,_strainer_(coarse_and_fine_screens);",80,120,"","Screening Device, Sieve, Strainer (Coarse and Fine Screens)",null,null, +this.getTagsForStencil("mxgraph.pid.misc","screening_device,_sieve,_strainer_(coarse_and_fine_screens)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"screening_device,_sieve,_strainer_(coarse_rake);",80,120,"","Screening Device, Sieve, Strainer (Coarse Rake)",null,null,this.getTagsForStencil("mxgraph.pid.misc","screening_device,_sieve,_strainer_(coarse_rake)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"screening_device,_sieve,_strainer_(fine_rake);", +80,120,"","Screening Device, Sieve, Strainer (Fine Rake)",null,null,this.getTagsForStencil("mxgraph.pid.misc","screening_device,_sieve,_strainer_(fine_rake)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"screening_device,_sieve,_strainer_(rotating_drum)",80,120,"","Screening Device, Sieve, Strainer (Rotating Drum)",null,null,this.getTagsForStencil("mxgraph.pid.misc","screening_device,_sieve,_strainer_(rotating_drum)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+ +"screening_device,_sieve,_strainer_(vibrating);",80,120,"","Screening Device, Sieve, Strainer (Vibrating)",null,null,this.getTagsForStencil("mxgraph.pid.misc","screening_device,_sieve,_strainer_(vibrating)","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"ship",105,60,"","Ship",null,null,this.getTagsForStencil("mxgraph.pid.misc","ship","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"silencer;",100,30,"","Silencer",null,null,this.getTagsForStencil("mxgraph.pid.misc", +"silencer","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"spraying_device;pointerEvents=1;",60,20,"","Spraying Device",null,null,this.getTagsForStencil("mxgraph.pid.misc","spraying_device","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"spray_cooler;",100,120,"","Spray Cooler",null,null,this.getTagsForStencil("mxgraph.pid.misc","spray_cooler","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"stack,_chimney;",60,100,"","Stack, Chimney", +null,null,this.getTagsForStencil("mxgraph.pid.misc","stack,_chimney","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"steam_trap;",53,53,"","Steam Trap",null,null,this.getTagsForStencil("mxgraph.pid.misc","steam_trap","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+"tank_car,_tank_wagon;",127,80,"","Tank Car, Tank Wagon",null,null,this.getTagsForStencil("mxgraph.pid.misc","tank_car,_tank_wagon","process instrumentation ").join(" ")),this.createVertexTemplateEntry(b+ "viewing_glass;",80,50,"","Viewing Glass",null,null,this.getTagsForStencil("mxgraph.pid.misc","viewing_glass","process instrumentation ").join(" "))])}})();(function(){Sidebar.prototype.addRackGeneralPalette=function(){this.addPaletteFunctions("rackGeneral","Rack / General",!1,[this.createVertexTemplateEntry("strokeColor=#666666;html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;outlineConnect=0;shadow=0;dashed=0;shape=mxgraph.rackGeneral.container;fillColor2=#f4f4f4;fillColor=#ffffff;container=1;collapsible=0;childLayout=rack;allowGaps=1;marginLeft=9;marginRight=9;marginTop=21;marginBottom=22;textColor=#666666;numDisp=off;", 180,228.6,"","Rack Cabinet",null,null,"rack equipment cabinet"),this.createVertexTemplateEntry("strokeColor=#666666;html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;outlineConnect=0;shadow=0;dashed=0;shape=mxgraph.rackGeneral.container;fillColor2=#f4f4f4;fillColor=#ffffff;container=1;collapsible=0;childLayout=rack;allowGaps=1;marginLeft=33;marginRight=9;marginTop=21;marginBottom=22;textColor=#666666;numDisp=ascend;",210,228.6,"","Numbered Rack Cabinet",null,null, "rack equipment cabinet numbered"),this.createVertexTemplateEntry("strokeColor=#666666;html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;outlineConnect=0;shadow=0;dashed=0;shape=mxgraph.rackGeneral.container;container=1;collapsible=0;childLayout=rack;allowGaps=1;marginLeft=9;marginRight=9;marginTop=21;marginBottom=22;textColor=#666666;numDisp=off;",180,228.6,"","Rack Cabinet",null,null,"rack equipment cabinet"),this.createVertexTemplateEntry("strokeColor=#666666;html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;outlineConnect=0;shadow=0;dashed=0;shape=mxgraph.rackGeneral.container;container=1;collapsible=0;childLayout=rack;allowGaps=1;marginLeft=33;marginRight=9;marginTop=21;marginBottom=22;textColor=#666666;numDisp=ascend;", @@ -7416,26 +7077,26 @@ this.createVertexTemplateEntry("strokeColor=#666666;html=1;labelPosition=right;a 120,70,"Sports","Sports",null,null,this.getTagsForStencil("mxgraph.sitemap","sports","").join(" ")),this.createVertexTemplateEntry("html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=middle;verticalAlign=top;align=center;fontSize=12;outlineConnect=0;spacingTop=-6;fontColor=#FFFFFF;shape=mxgraph.sitemap.success;",120,70,"Success","Success",null,null,this.getTagsForStencil("mxgraph.sitemap","success","").join(" ")),this.createVertexTemplateEntry("html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=middle;verticalAlign=top;align=center;fontSize=12;outlineConnect=0;spacingTop=-6;fontColor=#FFFFFF;shape=mxgraph.sitemap.text;", 120,70,"Text","Text",null,null,this.getTagsForStencil("mxgraph.sitemap","text","").join(" ")),this.createVertexTemplateEntry("html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=middle;verticalAlign=top;align=center;fontSize=12;outlineConnect=0;spacingTop=-6;fontColor=#FFFFFF;shape=mxgraph.sitemap.upload;",120,70,"Upload","Upload",null,null,this.getTagsForStencil("mxgraph.sitemap","upload","").join(" ")),this.createVertexTemplateEntry("html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=middle;verticalAlign=top;align=center;fontSize=12;outlineConnect=0;spacingTop=-6;fontColor=#FFFFFF;shape=mxgraph.sitemap.user;", 120,70,"User","User",null,null,this.getTagsForStencil("mxgraph.sitemap","user","").join(" ")),this.createVertexTemplateEntry("html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=middle;verticalAlign=top;align=center;fontSize=12;outlineConnect=0;spacingTop=-6;fontColor=#FFFFFF;shape=mxgraph.sitemap.video;",120,70,"Video","Video",null,null,this.getTagsForStencil("mxgraph.sitemap","video","").join(" ")),this.createVertexTemplateEntry("html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=middle;verticalAlign=top;align=center;fontSize=12;outlineConnect=0;spacingTop=-6;fontColor=#FFFFFF;shape=mxgraph.sitemap.warning;", -120,70,"Warning","Warning",null,null,this.getTagsForStencil("mxgraph.sitemap","warning","").join(" "))];this.addPalette("sitemap","Sitemap",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))}})();(function(){Sidebar.prototype.addSysMLModelElementsPalette=function(a){var d=this,e=[this.addDataEntry("sysml model element comment",180,80,"Comment","1ZS7bsMgFIafhrXCOJGytk6bpZUqZWlHFE4NEgYLn8ROn74Hg5I4FylDlg6W///cgM8WrKyaYRVkqz+8AsvKV1ZWwXtMqhkqsJYJbhQrl0wITg8TbzeyxZjlrQzg8J4GkRp20m4hRSrfNLFZcIQBU7rDvc3pTss2SueRXi+d+Y2umJOW1tSOjIUfjKlWboyr30e3LDiFNDY2apK9NghrKontPZ2fYnkvEGjlm+cZQ/kwK/ANYNhTyT5lZ+m4vDcKdW6Y55gGU2uc1sku+fow6QiLROZ1nV15we6CFqga1tk67yIxcOo5BN+fRAaDX2T50yy77+hIK9lpUJnYCby0Thw+wdT5bdjA5MPeQW6KOoCVaHbTwdco5UGf3ow/S54izriiDDVgLjpDe9jDXbRnD6e9+Pe0i8WjcJM9Xjqp/PRO+gM="), +120,70,"Warning","Warning",null,null,this.getTagsForStencil("mxgraph.sitemap","warning","").join(" "))];this.addPalette("sitemap","Sitemap",!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))}})();(function(){Sidebar.prototype.addSysMLModelElementsPalette=function(a){var b=this,e=[this.addDataEntry("sysml model element comment",180,80,"Comment","1ZS7bsMgFIafhrXCOJGytk6bpZUqZWlHFE4NEgYLn8ROn74Hg5I4FylDlg6W///cgM8WrKyaYRVkqz+8AsvKV1ZWwXtMqhkqsJYJbhQrl0wITg8TbzeyxZjlrQzg8J4GkRp20m4hRSrfNLFZcIQBU7rDvc3pTss2SueRXi+d+Y2umJOW1tSOjIUfjKlWboyr30e3LDiFNDY2apK9NghrKontPZ2fYnkvEGjlm+cZQ/kwK/ANYNhTyT5lZ+m4vDcKdW6Y55gGU2uc1sku+fow6QiLROZ1nV15we6CFqga1tk67yIxcOo5BN+fRAaDX2T50yy77+hIK9lpUJnYCby0Thw+wdT5bdjA5MPeQW6KOoCVaHbTwdco5UGf3ow/S54izriiDDVgLjpDe9jDXbRnD6e9+Pe0i8WjcJM9Xjqp/PRO+gM="), this.addDataEntry("sysml model element constraint note",180,80,"Constraint Note","1ZQxb8IwEIV/jVcUO1BYIaUsVKrE0o4WvsaWHDtyDEn663uOLSAUJAaWDlHuPd8921+kkLyouo3jtXy3AjTJ1yQvnLU+VlVXgNaEZUqQ/JUwluFD2NudVTqsZjV3YPwjAywOHLk+QHTIfFVQki/RxXJLyRzdbE0nXXDYS4m5q+CwST+shfnG9zrNN5LXoTTW42vVqJ+g6AxrrlVpUGj4DiFNzffKlNtBvdIMLekrHWosW6k87LAljLcIaNh2OCw4D93dCw9Wuu0GbAXe9djSx9Vp5JG1SniZBmbJk6BK6cd9vIm6PCWdaWKRgN6Gm/+Fe00LRAm7JI01gRgYsXTOthdOp/wnymwyTeorKKwFbySIROwCXtwnhI8wNfbg9jD68g+QG6N2oLlXx3HwLUop6MMqzD+lsCuunrsSfGq6Qns6w0O0p0+nvfj3tOniWbhRnv9Ksf3yp/UL"), this.addDataEntry("sysml model element constraint textual note",160,60,"Constraint Textual Note","lVNNb8MgDP01SNuNgtSel6TrZZMm9bAzTdyASiAidEn362cCaZV+SN0ByX72g+dnQXjeDBsnWvlpK9CErwnPnbU+Rs2Qg9aEUVURXhDGKB7C3h9UF2OVtsKB8c8QWCT8CH2EiKw1NEjGm5aE8QUlPHsR5oRNdVCpShH4BsW+Rm7nTzpxOynaEDoo8fWs884e4FtVXiLIENlb47epf4G59I1OYS+Vh20rylDr8SnEhFa1wbREQeAQSGrBeRgeTjxCadwN2Aa8C/L7pCN0LKMrVIKqZaJNmOhiXp+pF/8wSBbet5Pf2ElWWWkNOiEU6mMUhXuyKm6sm0bVsPdzY8K0wfW31NGoqgqsTIsd6C/bKa9sKLg4y5nwcVWfEzNRHmpnj6bKrbZobmGsgWlH6ndcUbIEJzC4UrGb1NKnFsHuL2K4WsIpefd//zG9fJWxNvtJfw=="), this.addDataEntry("sysml model element constraint textual note",160,0,"Constraint Textual Note","lVNBbsIwEHyNj5WMI5UzCS2nSpU49GySJVg4XuQsNPD6rmNDSBskerDkHc+s7RlbZEXTrbw+7D6wAiuyN5EVHpHirOkKsFYoaSqRLYVSkodQ7w9WZ/2qPGgPjp4RqCg4aXuEiIh5XqJryWvDLZQk6EjMl5HX0tkm3gk8mVLbhTW1Y2iDRNiILN9Rw9dYzngKrlp4j99cOnQQkKqGdWqSIKs3YHNd7muPR1cVaNEPq1t0tDaXwJ9JrvlguIcvU9GOIcVIPFlo/NCDHkoGrAAbIH9migeryZzGOt3Gsr7xbtJPjJZcKS0efQkJvTf5SuxS51c57k3a10B/hDy5O98A9ZlN55dN5adduF0dHlVIqDeD7ZoI0UNrLnrTl3KcnU65Wtiyi/nvuAkP/84ubs+vy0FJadfbC5VhB+geZqimM0yCl6R4OtKR54PBXA6fL+Zx/zd/AA=="), this.createVertexTemplateEntry("html=1;shape=mxgraph.sysml.composite;symbol0=folder;fontStyle=1;spacingTop=15;tabWidth=80;tabHeight=20;tabPosition=left;symbol1=triangle;symbol1Width=7;symbol1Height=10;symbol1Align=right;symbol1VerticalAlign=top;symbol1Spacing=8;symbol1VSpacing=25;symbol1Direction=north;strokeWidth=2;whiteSpace=wrap;align=center;",160,90,"Model","Model",null,null,this.getTagsForStencil("","","sysml model element model").join(" ")),this.addEntry("sysml model element package diagram", -function(){var a=new mxCell('<p style="margin:0px;margin-top:4px;margin-left:10px;text-align:left;"><b>pkg</b> Name</p>',new mxGeometry(0,0,300,120),"html=1;shape=mxgraph.sysml.package;xSize=90;align=left;spacingLeft=10;overflow=fill;strokeWidth=1;recursiveResize=0;");a.vertex=!0;var c=new mxCell("\nSubpackage1",new mxGeometry(15,60,100,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=folder;spacingLeft=10;tabWidth=40;tabHeight=14;tabPosition=left;fontSize=10;html=1;whiteSpace=wrap;"); -c.vertex=!0;a.insert(c);var e=new mxCell("\nSubpackage2",new mxGeometry(190,20,100,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=folder;spacingLeft=10;tabWidth=40;tabHeight=14;tabPosition=left;fontSize=10;html=1;whiteSpace=wrap;");e.vertex=!0;a.insert(e);var g=new mxCell("<<import>>",new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;edgeStyle=none;endArrow=open;dashed=1;verticalAlign=top;labelBackgroundColor=none;endSize=12;html=1;"); -g.geometry.relative=!0;g.edge=!0;c.insertEdge(g,!0);e.insertEdge(g,!1);a.insert(g);return d.createVertexTemplateFromCells([a],300,120,"Package Diagram")}),this.addEntry("sysml model element package tab",function(){var a=new mxCell("Package1",new mxGeometry(0,0,300,120),"shape=folder;xSize=90;align=left;spacingLeft=10;align=left;verticalAlign=top;spacingLeft=5;spacingTop=-4;tabWidth=70;tabHeight=20;tabPosition=left;html=1;strokeWidth=1;recursiveResize=0;");a.vertex=!0;var c=new mxCell("\nSubpackage1", -new mxGeometry(15,60,100,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=folder;spacingLeft=10;tabWidth=40;tabHeight=14;tabPosition=left;fontSize=10;html=1;whiteSpace=wrap;");c.vertex=!0;a.insert(c);var e=new mxCell("\nSubpackage2",new mxGeometry(190,30,100,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=folder;spacingLeft=10;tabWidth=40;tabHeight=14;tabPosition=left;fontSize=10;html=1;whiteSpace=wrap;");e.vertex=!0;a.insert(e);var g=new mxCell("<<import>>", -new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;edgeStyle=none;endArrow=open;dashed=1;verticalAlign=top;labelBackgroundColor=none;endSize=12;html=1;");g.geometry.relative=!0;g.edge=!0;c.insertEdge(g,!0);e.insertEdge(g,!1);a.insert(g);return d.createVertexTemplateFromCells([a],300,120,"Package (Tab)")}),this.createVertexTemplateEntry("shape=folder;tabWidth=80;tabHeight=20;tabPosition=left;strokeWidth=2;html=1;whiteSpace=wrap;align=center;",160,90,"Package1","Package (Name)", +function(){var a=new mxCell('<p style="margin:0px;margin-top:4px;margin-left:10px;text-align:left;"><b>pkg</b> Name</p>',new mxGeometry(0,0,300,120),"html=1;shape=mxgraph.sysml.package;xSize=90;align=left;spacingLeft=10;overflow=fill;strokeWidth=1;recursiveResize=0;");a.vertex=!0;var d=new mxCell("\nSubpackage1",new mxGeometry(15,60,100,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=folder;spacingLeft=10;tabWidth=40;tabHeight=14;tabPosition=left;fontSize=10;html=1;whiteSpace=wrap;"); +d.vertex=!0;a.insert(d);var f=new mxCell("\nSubpackage2",new mxGeometry(190,20,100,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=folder;spacingLeft=10;tabWidth=40;tabHeight=14;tabPosition=left;fontSize=10;html=1;whiteSpace=wrap;");f.vertex=!0;a.insert(f);var e=new mxCell("<<import>>",new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;edgeStyle=none;endArrow=open;dashed=1;verticalAlign=top;labelBackgroundColor=none;endSize=12;html=1;"); +e.geometry.relative=!0;e.edge=!0;d.insertEdge(e,!0);f.insertEdge(e,!1);a.insert(e);return b.createVertexTemplateFromCells([a],300,120,"Package Diagram")}),this.addEntry("sysml model element package tab",function(){var a=new mxCell("Package1",new mxGeometry(0,0,300,120),"shape=folder;xSize=90;align=left;spacingLeft=10;align=left;verticalAlign=top;spacingLeft=5;spacingTop=-4;tabWidth=70;tabHeight=20;tabPosition=left;html=1;strokeWidth=1;recursiveResize=0;");a.vertex=!0;var d=new mxCell("\nSubpackage1", +new mxGeometry(15,60,100,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=folder;spacingLeft=10;tabWidth=40;tabHeight=14;tabPosition=left;fontSize=10;html=1;whiteSpace=wrap;");d.vertex=!0;a.insert(d);var f=new mxCell("\nSubpackage2",new mxGeometry(190,30,100,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=folder;spacingLeft=10;tabWidth=40;tabHeight=14;tabPosition=left;fontSize=10;html=1;whiteSpace=wrap;");f.vertex=!0;a.insert(f);var e=new mxCell("<<import>>", +new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;edgeStyle=none;endArrow=open;dashed=1;verticalAlign=top;labelBackgroundColor=none;endSize=12;html=1;");e.geometry.relative=!0;e.edge=!0;d.insertEdge(e,!0);f.insertEdge(e,!1);a.insert(e);return b.createVertexTemplateFromCells([a],300,120,"Package (Tab)")}),this.createVertexTemplateEntry("shape=folder;tabWidth=80;tabHeight=20;tabPosition=left;strokeWidth=2;html=1;whiteSpace=wrap;align=center;",160,90,"Package1","Package (Name)", null,null,this.getTagsForStencil("","","sysml model element package name").join(" ")),this.createVertexTemplateEntry("shape=note;size=15;align=left;spacingLeft=10;html=1;whiteSpace=wrap;",160,60,"<<problem>>\nDescription","Problem",null,null,this.getTagsForStencil("","","sysml model element problem").join(" ")),this.createVertexTemplateEntry("shape=note;size=15;align=left;spacingLeft=10;html=1;whiteSpace=wrap;",160,60,"<<rationale>>\nDescription","Rationale",null,null,this.getTagsForStencil("", "","sysml model element rationale").join(" ")),this.createVertexTemplateEntry("shape=folder;tabWidth=80;tabHeight=20;tabPosition=left;html=1;whiteSpace=wrap;align=center;",160,80,"\n<<view>>\n{viewpoint = View name}\nName","View (Name)",null,null,this.getTagsForStencil("","","sysml model element view name").join(" ")),this.createVertexTemplateEntry("shape=folder;html=1;tabWidth=80;tabHeight=40;tabPosition=left;align=left;verticalAlign=top;spacingLeft=10;whiteSpace=wrap;",160,120,"<<view>>\nName", "View",null,null,this.getTagsForStencil("","","sysml model element view").join(" ")),this.createVertexTemplateEntry("shape=rect;html=1;overflow=fill;whiteSpace=wrap;",120,140,'<p style="margin:0px;margin-top:4px;text-align:center;"><<viewpoint>><br/><b>Name</b></p><hr/><p style="margin:0px;margin-left:8px;text-align:left;">stakeholders="..."<br/>purpose="..."<br>concerns="..."<br>languages="..."<br>methods="..."</p>',"Viewpoint",null,null,this.getTagsForStencil("","","sysml model element viewpoint").join(" ")), this.createEdgeTemplateEntry("edgeStyle=none;html=1;endArrow=open;endSize=12;dashed=1;verticalAlign=bottom;",160,0,"<<conform>>","Conform",null,this.getTagsForStencil("","","sysml model element conform").join(" ")),this.createEdgeTemplateEntry("edgeStyle=none;html=1;endArrow=open;endSize=12;dashed=1;verticalAlign=bottom;",160,0,"<<stereotype1>>\ndependency1","Dependency",null,this.getTagsForStencil("","","sysml model element dependency").join(" ")),this.createEdgeTemplateEntry("edgeStyle=none;html=1;endArrow=open;endSize=12;dashed=1;verticalAlign=bottom;", 160,0,"<<import>>","Public Package Import",null,this.getTagsForStencil("","","sysml model element public package import").join(" ")),this.createEdgeTemplateEntry("edgeStyle=none;html=1;endArrow=open;endSize=12;dashed=1;verticalAlign=bottom;",160,0,"<<access>>","Private Package Import",null,this.getTagsForStencil("","","sysml model element private package import").join(" ")),this.createEdgeTemplateEntry("edgeStyle=none;html=1;"+mxConstants.STYLE_STARTARROW+"=sysMLPackCont;startSize=12;"+ mxConstants.STYLE_ENDARROW+"=none;",160,0,"","Package Containment",null,this.getTagsForStencil("","","sysml model element package containment").join(" ")),this.createEdgeTemplateEntry("edgeStyle=none;html=1;endSize=12;endArrow=block;endFill=0;dashed=1;",160,0,"","Realization",null,this.getTagsForStencil("","","sysml model element realization").join(" ")),this.createEdgeTemplateEntry("edgeStyle=none;html=1;endArrow=open;endSize=12;dashed=1;verticalAlign=bottom;",160,0,"<<refine>>","Refine", -null,this.getTagsForStencil("","","sysml model element refine").join(" "))];this.addPalette("sysmlModel Elements","SysML / Model Elements",a||!1,mxUtils.bind(this,function(a){for(var b=0;b<e.length;b++)a.appendChild(e[b](a))}))};Sidebar.prototype.addSysMLBlocksPalette=function(a){var d=this,e=[this.addEntry("sysml block block definition diagram",function(){var a=new mxCell('<p style="margin:0px;margin-top:4px;margin-left:10px;text-align:left;"><b>bdd</b> Namespace1</p>',new mxGeometry(0,0,300,100), -"html=1;strokeWidth=1;shape=mxgraph.sysml.package;labelX=120;align=left;spacingLeft=10;overflow=fill;recursiveResize=0;");a.vertex=!0;var c=new mxCell("Block1",new mxGeometry(15,30,100,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;fontStyle=1;html=1;whiteSpace=wrap;align=center;");c.vertex=!0;a.insert(c);var e=new mxCell("Block2",new mxGeometry(190,30,100,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;fontStyle=1;html=1;whiteSpace=wrap;align=center;"); -e.vertex=!0;a.insert(e);var g=new mxCell("part1",new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;align=right;html=1;verticalAlign=bottom;endArrow=none;startArrow=diamondThin;startSize=14;startFill=1;edgeStyle=none;endFill=0;labelBackgroundColor=none;");g.geometry.relative=!0;g.geometry.x=1;g.edge=!0;a.insert(g);var h=new mxCell("1",new mxGeometry(-1,0,0,0),"resizable=0;html=1;align=left;verticalAlign=top;labelBackgroundColor=none;fontSize=10");h.geometry.relative= -!0;h.setConnectable(!1);h.vertex=!0;g.insert(h);h=new mxCell("0..*",new mxGeometry(1,0,0,0),"resizable=0;html=1;align=right;verticalAlign=top;labelBackgroundColor=none;fontSize=10");h.geometry.relative=!0;h.setConnectable(!1);h.vertex=!0;g.insert(h);c.insertEdge(g,!0);e.insertEdge(g,!1);return d.createVertexTemplateFromCells([a],300,100,"Block Definition Diagram")}),this.addDataEntry("sysml block relation",160,0,"Relation","zVRNb8IwDP01vUwaCi3aHcrgNGkS+wOhMW20NEapYYVfP9MmLVVh2qYddqjkPNvPHy9NlKRlvXZyX7ygAhMlz1GSOkRqrbJOwZgoFlpFyTKKY8FfFK/ueKeNV+ylA0vfSYjbhKM0B2gRziVPU9HJeFQanVs2nc4LJl4UVHKvyymbR3CkM2nmPmSLRFiyA6yaO4cfjFm0TLSoiMkDprQs0aq3Qtvg2ujzpd50FoCVNqEMqBw2viFP13Z5cdydvoH86GvAEsidOKQeJDgwkvRxyCKr9ph3WR3RK2rm70MqPLgMPHq97BAYyj2JITePmAONEtm46raHGu1u65iMdBxr6KDSZ7ltjmKoYZDXwI5uSEq4Z9TILZiFzN5zhwerUjToejF2aDv9/JgZWgsZ+ZLdXRQXeqjvahZ/qdnjT0UbbPWLFc5GKxSTycNvthh+kv+8xj/aIh/7x6q9t9dv2Sc="), +null,this.getTagsForStencil("","","sysml model element refine").join(" "))];this.addPalette("sysmlModel Elements","SysML / Model Elements",a||!1,mxUtils.bind(this,function(a){for(var b=0;b<e.length;b++)a.appendChild(e[b](a))}))};Sidebar.prototype.addSysMLBlocksPalette=function(a){var b=this,e=[this.addEntry("sysml block block definition diagram",function(){var a=new mxCell('<p style="margin:0px;margin-top:4px;margin-left:10px;text-align:left;"><b>bdd</b> Namespace1</p>',new mxGeometry(0,0,300,100), +"html=1;strokeWidth=1;shape=mxgraph.sysml.package;labelX=120;align=left;spacingLeft=10;overflow=fill;recursiveResize=0;");a.vertex=!0;var d=new mxCell("Block1",new mxGeometry(15,30,100,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;fontStyle=1;html=1;whiteSpace=wrap;align=center;");d.vertex=!0;a.insert(d);var f=new mxCell("Block2",new mxGeometry(190,30,100,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;fontStyle=1;html=1;whiteSpace=wrap;align=center;"); +f.vertex=!0;a.insert(f);var e=new mxCell("part1",new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;align=right;html=1;verticalAlign=bottom;endArrow=none;startArrow=diamondThin;startSize=14;startFill=1;edgeStyle=none;endFill=0;labelBackgroundColor=none;");e.geometry.relative=!0;e.geometry.x=1;e.edge=!0;a.insert(e);var h=new mxCell("1",new mxGeometry(-1,0,0,0),"resizable=0;html=1;align=left;verticalAlign=top;labelBackgroundColor=none;fontSize=10");h.geometry.relative= +!0;h.setConnectable(!1);h.vertex=!0;e.insert(h);h=new mxCell("0..*",new mxGeometry(1,0,0,0),"resizable=0;html=1;align=right;verticalAlign=top;labelBackgroundColor=none;fontSize=10");h.geometry.relative=!0;h.setConnectable(!1);h.vertex=!0;e.insert(h);d.insertEdge(e,!0);f.insertEdge(e,!1);return b.createVertexTemplateFromCells([a],300,100,"Block Definition Diagram")}),this.addDataEntry("sysml block relation",160,0,"Relation","zVRNb8IwDP01vUwaCi3aHcrgNGkS+wOhMW20NEapYYVfP9MmLVVh2qYddqjkPNvPHy9NlKRlvXZyX7ygAhMlz1GSOkRqrbJOwZgoFlpFyTKKY8FfFK/ueKeNV+ylA0vfSYjbhKM0B2gRziVPU9HJeFQanVs2nc4LJl4UVHKvyymbR3CkM2nmPmSLRFiyA6yaO4cfjFm0TLSoiMkDprQs0aq3Qtvg2ujzpd50FoCVNqEMqBw2viFP13Z5cdydvoH86GvAEsidOKQeJDgwkvRxyCKr9ph3WR3RK2rm70MqPLgMPHq97BAYyj2JITePmAONEtm46raHGu1u65iMdBxr6KDSZ7ltjmKoYZDXwI5uSEq4Z9TILZiFzN5zhwerUjToejF2aDv9/JgZWgsZ+ZLdXRQXeqjvahZ/qdnjT0UbbPWLFc5GKxSTycNvthh+kv+8xj/aIh/7x6q9t9dv2Sc="), this.createVertexTemplateEntry("shape=rect;html=1;overflow=fill;verticalAlign=top;align=left;whiteSpace=wrap;",220,340,'<p style="margin:0px;margin-top:4px;text-align:center;"><<block>><br/>{encapsulated}<br/><b>Block1</b></p><hr/><p style="font-size:10px;margin:0px;text-align:center;"><i>constraints</i></p><p style="margin:0px;margin-left:8px;text-align:left;">{x > y}</p><hr/><p style="font-size:10px;margin:0px;text-align:center;"><i>operations</i></p><p style="margin:0px;margin-left:8px;text-align:left;">operation1 (p1 : Type1) : Type2</p><hr/><p style="font-size:10px;margin:0px;text-align:center;"><i>parts</i></p><p style="margin:0px;margin-left:8px;text-align:left;">property1 : Block2</p><hr/><p style="font-size:10px;margin:0px;text-align:center;"><i>references</i></p><p style="margin:0px;margin-left:8px;text-align:left;">property2 : Block3 [0..*] {ordered}</p><hr/><p style="font-size:10px;margin:0px;text-align:center;"><i>values</i></p><p style="margin:0px;margin-left:8px;text-align:left;">property3 : Integer = 99 {readOnly}<br/>property4 : Real = 10.0</p><hr/><p style="font-size:10px;margin:0px;text-align:center;"><i>properties</i></p><p style="margin:0px;margin-left:8px;text-align:left;">property5 : Type1</p>', "Block",null,null,this.getTagsForStencil("","","sysml block block").join(" ")),this.createVertexTemplateEntry("shape=umlActor;html=1;verticalLabelPosition=bottom;verticalAlign=top;align=center;",30,60,"ActorName","Actor",null,null,this.getTagsForStencil("","","sysml block actor").join(" ")),this.createVertexTemplateEntry("shape=rect;html=1;overflow=fill;whiteSpace=wrap;align=center;",160,80,"<p><<actor>><br/><b>ActorName</b></p>","Actor",null,null,this.getTagsForStencil("","","sysml block actor").join(" ")), this.createVertexTemplateEntry("shape=rect;html=1;overflow=fill;whiteSpace=wrap;",200,180,'<p style="margin:0px;margin-top:4px;text-align:center;"><<valueType>><br/><b>ValueType1</b></p><hr/><p style="font-size:10px;margin:0px;text-align:center;"><i>operations</i></p><p style="margin:0px;margin-left:8px;text-align:left;">operation1 (p1 : Type1) : Type2</p><hr/><p style="font-size:10px;margin:0px;text-align:center;"><i>properties</i></p><p style="margin:0px;margin-left:8px;text-align:left;">property1 : Type3</p><hr/><p style="margin:0px;margin-left:8px;text-align:center;"><<valueType>></p><p style="margin:0px;margin-left:8px;text-align:left;">unit = UnitName</p>', @@ -7443,20 +7104,20 @@ this.createVertexTemplateEntry("shape=rect;html=1;overflow=fill;whiteSpace=wrap; 80,40,'<p style="margin:13px;"><b><i>Name</i></b></p>',"Abstract Definition",null,null,this.getTagsForStencil("","","sysml block abstract definition").join(" ")),this.createVertexTemplateEntry("shape=rect;html=1;overflow=fill;whiteSpace=wrap;align=center;",80,40,'<p style="margin:5px;">{abstract}<br/><b><i>Name</i></b></p>',"Abstract Definition",null,null,this.getTagsForStencil("","","sysml block abstract definition").join(" ")),this.createVertexTemplateEntry("shape=rect;html=1;overflow=fill;whiteSpace=wrap;align=center;", 80,40,'<p style="margin:5px;"><b><i>Name</i></b><br/>{abstract}</p>',"Abstract Definition",null,null,this.getTagsForStencil("","","sysml block abstract definition").join(" ")),this.createVertexTemplateEntry("shape=rect;html=1;overflow=fill;whiteSpace=wrap;align=center;",200,80,'<p style="margin:0px;margin-top:4px;text-align:center;"><<stereotype1>><br/><b>Block1</b></p><hr/><p style="margin:0px;margin-left:8px;text-align:center;"><<stereotype1>></p><p style="margin:0px;margin-left:8px;text-align:left;">property1 = value</p>', "Stereotype Property Compartment",null,null,this.getTagsForStencil("","","sysml block stereotype property compartment").join(" ")),this.addEntry("sysml block namespace compartment",function(){var a=new mxCell('<p style="margin:0px;margin-top:4px;text-align:center;"><b>Block1</b></p><hr/><p style="font-size:10px;margin:0px;text-align:center;"><i>namespace</i></p>',new mxGeometry(0,0,300,120),"shape=rect;align=left;html=1;overflow=fill;whiteSpace=wrap;strokeWidth=1;recursiveResize=0;");a.vertex=!0; -var c=new mxCell("Block2",new mxGeometry(15,60,100,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;fontStyle=1;whiteSpace=wrap;align=center;");c.vertex=!0;a.insert(c);var e=new mxCell("Block3",new mxGeometry(190,60,100,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;fontStyle=1;whiteSpace=wrap;align=center;");e.vertex=!0;a.insert(e);var g=new mxCell("part1",new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;align=right;verticalAlign=bottom;endArrow=none;startArrow=diamondThin;startSize=14;startFill=1;edgeStyle=none;html=1;labelBackgroundColor=none;"); -g.geometry.relative=!0;g.geometry.x=1;g.edge=!0;a.insert(g);var h=new mxCell("1",new mxGeometry(-1,0,0,0),"resizable=0;html=1;align=left;verticalAlign=top;labelBackgroundColor=none;fontSize=10");h.geometry.relative=!0;h.setConnectable(!1);h.vertex=!0;g.insert(h);h=new mxCell("0..*",new mxGeometry(1,0,0,0),"resizable=0;html=1;align=right;verticalAlign=top;labelBackgroundColor=none;fontSize=10");h.geometry.relative=!0;h.setConnectable(!1);h.vertex=!0;g.insert(h);c.insertEdge(g,!0);e.insertEdge(g,!1); -return d.createVertexTemplateFromCells([a],300,100,"Namespace Compartment")}),this.createVertexTemplateEntry("shape=rect;html=1;overflow=fill;whiteSpace=wrap;",250,100,'<p style="margin:0px;margin-top:4px;text-align:center;"><b>Block1</b></p><hr/><p style="font-size:10px;margin:0px;text-align:center;"><i>namespace</i></p>',"Block",null,null,this.getTagsForStencil("","","sysml block block").join(" ")),this.addEntry("sysml block structure compartment",function(){var a=new mxCell('<p style="margin:0px;margin-top:4px;text-align:center;"><b>Block1</b></p><hr/><p style="font-size:10px;margin:0px;text-align:center;"><i>structure</i></p>', -new mxGeometry(0,0,300,120),"shape=rect;align=left;html=1;overflow=fill;whiteSpace=wrap;strokeWidth=1;recursiveResize=0;");a.vertex=!0;var c=new mxCell("Block2",new mxGeometry(15,60,100,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;fontStyle=1;whiteSpace=wrap;align=center;");c.vertex=!0;a.insert(c);var e=new mxCell("Block3",new mxGeometry(190,60,100,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;fontStyle=1;whiteSpace=wrap;align=center;"); -e.vertex=!0;a.insert(e);var g=new mxCell("c1:",new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;verticalAlign=bottom;html=1;endArrow=none;edgeStyle=none;labelBackgroundColor=none;");g.geometry.relative=!0;g.edge=!0;a.insert(g);var h=new mxCell("e1",new mxGeometry(1,0,0,0),"resizable=0;html=1;align=right;verticalAlign=top;labelBackgroundColor=none;fontSize=10");h.geometry.relative=!0;h.setConnectable(!1);h.vertex=!0;g.insert(h);h=new mxCell("1",new mxGeometry(1, -0,0,0),"resizable=0;html=1;align=right;verticalAlign=bottom;labelBackgroundColor=none;fontSize=10");h.geometry.relative=!0;h.setConnectable(!1);h.vertex=!0;g.insert(h);c.insertEdge(g,!0);e.insertEdge(g,!1);return d.createVertexTemplateFromCells([a],300,100,"Structure Compartment")}),this.addDataEntry("sysml block relation",160,0,"Relation","3VTLboMwEPwa3x2Ieg/kcapUKV/gwNZYNV60bFKSr68BB4IIVQ499YDkHe+MvTMWIk7L5kCqKt4xByvinYhTQuR+VTYpWCsiaXIRb0UUSf+JaL+wu+p2ZaUIHL9CiHrCRdkz9EgWNGq+2gBdgNhkym6s0c5DJ2TGUsRJwaW/8Xbll+DyDRF++9Kh88SkZkX8DDuaWyu8Wt+BvbGtjGxlcg3HcDISF6jRKbsb0aS/Xdu3OHIHhXkPgCUwXX0LgVVsLlOeqvtSD30D9QONVxxbajxTBgF99PTe2ATlNznV9jNq4BnRLx7uN0JdRM/jimdxzdMiqM1NnbpSTkNSIUAyuvBeJYvBWnUCm6jsSxOeXZ6iRRpT/EQ3hBhGzdA5yDgcOzw72Z4AzWJS0fOkpoSXc5sY+4uL65mL8Kc2Mlb/zUNfjj+l/uE+/rN+AA=="), +var d=new mxCell("Block2",new mxGeometry(15,60,100,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;fontStyle=1;whiteSpace=wrap;align=center;");d.vertex=!0;a.insert(d);var f=new mxCell("Block3",new mxGeometry(190,60,100,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;fontStyle=1;whiteSpace=wrap;align=center;");f.vertex=!0;a.insert(f);var e=new mxCell("part1",new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;align=right;verticalAlign=bottom;endArrow=none;startArrow=diamondThin;startSize=14;startFill=1;edgeStyle=none;html=1;labelBackgroundColor=none;"); +e.geometry.relative=!0;e.geometry.x=1;e.edge=!0;a.insert(e);var h=new mxCell("1",new mxGeometry(-1,0,0,0),"resizable=0;html=1;align=left;verticalAlign=top;labelBackgroundColor=none;fontSize=10");h.geometry.relative=!0;h.setConnectable(!1);h.vertex=!0;e.insert(h);h=new mxCell("0..*",new mxGeometry(1,0,0,0),"resizable=0;html=1;align=right;verticalAlign=top;labelBackgroundColor=none;fontSize=10");h.geometry.relative=!0;h.setConnectable(!1);h.vertex=!0;e.insert(h);d.insertEdge(e,!0);f.insertEdge(e,!1); +return b.createVertexTemplateFromCells([a],300,100,"Namespace Compartment")}),this.createVertexTemplateEntry("shape=rect;html=1;overflow=fill;whiteSpace=wrap;",250,100,'<p style="margin:0px;margin-top:4px;text-align:center;"><b>Block1</b></p><hr/><p style="font-size:10px;margin:0px;text-align:center;"><i>namespace</i></p>',"Block",null,null,this.getTagsForStencil("","","sysml block block").join(" ")),this.addEntry("sysml block structure compartment",function(){var a=new mxCell('<p style="margin:0px;margin-top:4px;text-align:center;"><b>Block1</b></p><hr/><p style="font-size:10px;margin:0px;text-align:center;"><i>structure</i></p>', +new mxGeometry(0,0,300,120),"shape=rect;align=left;html=1;overflow=fill;whiteSpace=wrap;strokeWidth=1;recursiveResize=0;");a.vertex=!0;var d=new mxCell("Block2",new mxGeometry(15,60,100,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;fontStyle=1;whiteSpace=wrap;align=center;");d.vertex=!0;a.insert(d);var f=new mxCell("Block3",new mxGeometry(190,60,100,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;fontStyle=1;whiteSpace=wrap;align=center;"); +f.vertex=!0;a.insert(f);var e=new mxCell("c1:",new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;verticalAlign=bottom;html=1;endArrow=none;edgeStyle=none;labelBackgroundColor=none;");e.geometry.relative=!0;e.edge=!0;a.insert(e);var h=new mxCell("e1",new mxGeometry(1,0,0,0),"resizable=0;html=1;align=right;verticalAlign=top;labelBackgroundColor=none;fontSize=10");h.geometry.relative=!0;h.setConnectable(!1);h.vertex=!0;e.insert(h);h=new mxCell("1",new mxGeometry(1, +0,0,0),"resizable=0;html=1;align=right;verticalAlign=bottom;labelBackgroundColor=none;fontSize=10");h.geometry.relative=!0;h.setConnectable(!1);h.vertex=!0;e.insert(h);d.insertEdge(e,!0);f.insertEdge(e,!1);return b.createVertexTemplateFromCells([a],300,100,"Structure Compartment")}),this.addDataEntry("sysml block relation",160,0,"Relation","3VTLboMwEPwa3x2Ieg/kcapUKV/gwNZYNV60bFKSr68BB4IIVQ499YDkHe+MvTMWIk7L5kCqKt4xByvinYhTQuR+VTYpWCsiaXIRb0UUSf+JaL+wu+p2ZaUIHL9CiHrCRdkz9EgWNGq+2gBdgNhkym6s0c5DJ2TGUsRJwaW/8Xbll+DyDRF++9Kh88SkZkX8DDuaWyu8Wt+BvbGtjGxlcg3HcDISF6jRKbsb0aS/Xdu3OHIHhXkPgCUwXX0LgVVsLlOeqvtSD30D9QONVxxbajxTBgF99PTe2ATlNznV9jNq4BnRLx7uN0JdRM/jimdxzdMiqM1NnbpSTkNSIUAyuvBeJYvBWnUCm6jsSxOeXZ6iRRpT/EQ3hBhGzdA5yDgcOzw72Z4AzWJS0fOkpoSXc5sY+4uL65mL8Kc2Mlb/zUNfjj+l/uE+/rN+AA=="), this.createVertexTemplateEntry("shape=rect;html=1;overflow=fill;whiteSpace=wrap;",200,60,'<p style="margin:0px;margin-top:10px;text-align:center;"><<unit>><br/><p style="margin:0px;margin-left:8px;text-align:center;">{quantityKind = QuantityKind1}<br/><b>Unit1</b></p>',"Unit",null,null,this.getTagsForStencil("","","sysml block unit").join(" ")),this.createVertexTemplateEntry("shape=rect;html=1;overflow=fill;whiteSpace=wrap;",200,80,'<p style="margin:0px;margin-top:4px;text-align:center;"><b>Unit1</b></p><hr/><p style="margin:0px;margin-left:8px;text-align:center;"><<unit>><br/>{quantityKind = QuantityKind1}</p>', "Unit",null,null,this.getTagsForStencil("","","sysml block unit").join(" ")),this.createVertexTemplateEntry("shape=rect;html=1;overflow=fill;whiteSpace=wrap;",200,60,'<p style="margin:0px;margin-top:10px;text-align:center;"><<quantityKind>><br/><p style="margin:0px;margin-left:8px;text-align:center;"><b>QuantityKind1</b></p>',"Quantity Kind",null,null,this.getTagsForStencil("","","sysml block quantity kind").join(" ")),this.createVertexTemplateEntry("shape=rect;html=1;overflow=fill;fontSize=15;whiteSpace=wrap;", 70,30,'<p style="margin:0px;margin-top:4px;text-align:center;text-decoration:underline;"><B>i1: Type1</b><br/>',"Instance Specification",null,null,this.getTagsForStencil("","","sysml block instance specification").join(" ")),this.addDataEntry("sysml block instance specification",280,30,"Instance Specification","3VVNj5swEP01HFcCk416DWG7p5VWSv+AgQlYNR7XOF/76zvGBkLYtDmt1B6ieJ7nDeP3PBCl2/b8arhu3rACGaUvUbo1iNav2vMWpIxYLKoozSPGYvpF7Pud3aTfjTU3oOwjBOYJRy4P4JGIrSVRM01wZy/Sw+tfB9dS1nJTCxWlm1ifx/DJoiZo1UMWzvaJS1G7rJLaADOgFZRouBXotg6qAiOFovrZVJ9WdfjvuxgBkRCHWvpx0ZAMu3Su4pZRGHfaEWSzY7Cu4dotDZRuv7EtSZ5T7QyPYPYSTxTuBWmUZntUdic+XHryTPGpERZ2mpcOOZFl4wOISge8a0EPBf1fAVuw5kIpJ1HZxmd88y7FDYi6Caw0YLzzcT0yJz9pESz93N70n7GXTfay/8PeQGBx8PEL7F4t7N4kC43caUTJ5cabmBdoLbZztUBVG2N6tVCD8sggFnNhVcMu1ERjG6xRcfkyoUE6lzcTrsODKWH28rF0y8DOLuwD8hqQdNeO8+qfiReo7yio4pTiGwno9RtySBwMX98Y49tdEHtvxv4esut5YZdOF3YZ6MQHL/ownrsUxjA3/hZlt872c5tJXoDMePmzNkhTuUWJNLK5wn42r6cgHLREpWh+wjPHT8jfxmD1xzEIhIddu3PlKZw+jl7y62/nbw=="), this.addDataEntry("sysml block relation",160,0,"Relation","jVPBbsIwDP2a3Esi7U4L4zRpEl8QWi+NlsaV60Lh65c2gdIBEodK9rP9Er/XCFU0w450W39hBU6orVAFIXKMmqEA54TMbCXURkiZhU/IzxfV1VTNWk3g+Z0BGQeO2vUQkXXi6PjsEnQEYltqt3bW+AAdkBkbofKam3DjzSqE4Ks1EZ5Cii34iOztZaRYyTGtDOwTJxLXaNBrt53RPJ479r1cZoLSJjvABpjOoYXAabbH5ZzuYmpufbfRb7SBcW7psKcSEnqv1rVxSMwf2ZKbNRngh8EQ3N1vhibxnxuhHoxo1YMRBJ296MOUZkv9dfKGrKmDWPl/zxjbgDp9AJfr8tcQ9r4q0CGFokc/GvCDnq+WpUVL9B5KTmfefqdspIfhpU/yuU/LgbddW8g6axjS+aFEye/f0R8="),this.createVertexTemplateEntry("shape=rect;html=1;overflow=fill;whiteSpace=wrap;", 120,60,'<p style="margin:0px;margin-top:10px;text-align:center;text-decoration:underline;">instance1: Type1<br/></p><p style="margin:0px;margin-top:4px;text-align:center;">value1</p>',"Instance Specification",null,null,this.getTagsForStencil("","","sysml block instance specification").join(" ")),this.createVertexTemplateEntry("shape=rect;html=1;overflow=fill;whiteSpace=wrap;",160,80,'<p style="margin:0px;margin-top:10px;text-align:center;text-decoration:underline;">instance1: Type1<br/></p><hr/><p style="margin:0px;margin-top:4px;margin-left:4px;text-align:left;">property1 = 10<br/>property2 = "value"</p>', -"Instance Specification",null,null,this.getTagsForStencil("","","sysml block instance specification").join(" ")),this.addEntry("sysml block instance specification",function(){var a=new mxCell('<p style="margin:0px;margin-top:5px;text-align:center;text-decoration:underline;">: Type1<hr/></p>',new mxGeometry(0,0,200,180),"shape=rect;html=1;overflow=fill;whiteSpace=wrap;strokeWidth=1;recursiveResize=0;");a.vertex=!0;var c=new mxCell('<p style="margin:0px;margin-top:5px;text-align:center;text-decoration:underline;">instance1 / property1: Type2<hr/></p>', -new mxGeometry(10,30,180,140),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;overflow=fill;whiteSpace=wrap;");c.vertex=!0;a.insert(c);c=new mxCell('<p style="margin:0px;margin-top:5px;text-align:center;text-decoration:underline;">instance2 / property2:<br/>Type3<hr/></p><p style="margin:0px;margin-top:4px;margin-left:4px;text-align:left;">property1 = 10<br/>property2 = "value"</p>',new mxGeometry(20,60,160,100),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;overflow=fill;whiteSpace=wrap;"); -c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],200,180,"Instance Specification")}),this.createVertexTemplateEntry("shape=rect;html=1;overflow=fill;whiteSpace=wrap;",200,160,'<p style="margin:0px;margin-top:4px;text-align:center;text-decoration:underline;">: Type1</p><hr/>',"Instance Specification",null,null,this.getTagsForStencil("","","sysml block instance specification").join(" ")),this.createEdgeTemplateEntry("edgeStyle=none;html=1;endArrow=open;endSize=12;dashed=1;verticalAlign=bottom;", +"Instance Specification",null,null,this.getTagsForStencil("","","sysml block instance specification").join(" ")),this.addEntry("sysml block instance specification",function(){var a=new mxCell('<p style="margin:0px;margin-top:5px;text-align:center;text-decoration:underline;">: Type1<hr/></p>',new mxGeometry(0,0,200,180),"shape=rect;html=1;overflow=fill;whiteSpace=wrap;strokeWidth=1;recursiveResize=0;");a.vertex=!0;var d=new mxCell('<p style="margin:0px;margin-top:5px;text-align:center;text-decoration:underline;">instance1 / property1: Type2<hr/></p>', +new mxGeometry(10,30,180,140),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;overflow=fill;whiteSpace=wrap;");d.vertex=!0;a.insert(d);d=new mxCell('<p style="margin:0px;margin-top:5px;text-align:center;text-decoration:underline;">instance2 / property2:<br/>Type3<hr/></p><p style="margin:0px;margin-top:4px;margin-left:4px;text-align:left;">property1 = 10<br/>property2 = "value"</p>',new mxGeometry(20,60,160,100),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;overflow=fill;whiteSpace=wrap;"); +d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],200,180,"Instance Specification")}),this.createVertexTemplateEntry("shape=rect;html=1;overflow=fill;whiteSpace=wrap;",200,160,'<p style="margin:0px;margin-top:4px;text-align:center;text-decoration:underline;">: Type1</p><hr/>',"Instance Specification",null,null,this.getTagsForStencil("","","sysml block instance specification").join(" ")),this.createEdgeTemplateEntry("edgeStyle=none;html=1;endArrow=open;endSize=12;dashed=1;verticalAlign=bottom;", 160,0,"<<stereotype>>\ndependency1","Dependency",null,null,this.getTagsForStencil("","","sysml block dependency").join(" ")),this.addDataEntry("sysml block reference association",250,0,"Reference Association","3VRRa4MwEP41eRlMoq6UPda269Ng0F+Q6lXDYk7OtLP99Yuaap11jMJg7EHIfXffJfm+eCxc5tWGRJG9YgKKhWsWLgnRtKu8WoJSLOAyYeGKBQG3HwteJrJ+k+WFINDmJ4SgJRyFOkCLiLLEWAojUbtupTkplzwCGRkLtVAy1RbaoTGYszDKTG7PvvLtEnSyIMIPG2IBukW28ly38IM6TFLYup5IJsMUtVDrHo3afeu6yWs1kLvTBjAHQydbQqDs0Y9DnijbMO3qOuobStuxLynxQDE49Fq3S2HldJvxYW8jKAUzItrF1fl6qLHhtiXhyBLueWMrCEp5Frsm5EMHhHNHwd6qFX01zWBhUSV2oCIRv6eEB50sUSHZpEZdO7BHbS6euZvGqDXExm3ZvSxet4dq0qjgtlGO8OgYP/ZtIOw3Kj6NVGTzCCkBgoTNbcx9z3u4R1WSafbXZeXe8y/pOhvpWpD9zcmc7nqiU2J2g+Wf6WnDfri3w+F69n8C"), this.addDataEntry("sysml block reference association",250,0,"Reference Association","3ZVRb4IwEMc/TV+WzFSYM3sUdD4tWeInqHBis9IjR3Xop1+BDmTIYoxLzB5Iete74/r7H5T5YVosSWTbN4xBMX/B/JAQTb1KixCUYh6XMfPnzPO4fZj3OrA7rnZ5Jgi0uSTBqxP2Qu2g9og8x0gKI1G7ark5KLe5BzIyEmqmZKKta43GYMr8YGtS2/t8bJeg4xkRflpTo4bSEyewckWQzBYT1EItWm9Qv6iMGzxH5XKHWAKmYOhgQwiU7XXfzRN5bSZNXJP6jtJWbENy3FEEznsK6juwcKAmvFvbCErA9BLt4qS/1lVxP6+B39OgD54gl0exrkze5S2cFgo2FlXwUyKDmfUqsQYViOgjIdzpOESF1Aq0QW1W8lgWH7tjRqg1RMa9spkjXpaHYlAl77xKLuHRZVwsWofqLwifeggzwsy2evBuiLKZ9n9Oc9KjyaYBUgwEMZtam/PR6OEasCST7b0PKR+9/BHX58EpveqDH4J5Z2N6M57WbC/G+j97em9+AQ=="), this.addDataEntry("sysml block part association",250,0,"Part Association","3VXLasMwEPwaXQo1st0QeozzOhUK6Q8o1sYWlbVmraRJvr6yrThO3ZQQKJQeDNrZ3Vlpxkgsnhb7JYkyf0EJmsVzFk8J0barYj8FrVnElWTxjEURdx+LFleyYZPlpSAw9paGqG3YCb2FFhFVhakSVqHxbJU9aJ/cAVmVCj3RKjMOWqO1WLA4yW3h9j4L3RKMnBDhhwuxBNMiK3WsKcKoDmUGK8+JZHPM0Ag9P6NJZQXZhdInyibuUzTAaYpUokAj33JVD2v3XM+4KkkDeT2WgAVYOrgSAu2OvbvsE1UbZl1d1/qKyjGeSyrcUgoe7Wt+Ktx7zUf8ktsdJgM7aHSL3v7OUGPh93bGAzt5EAxtJKjUUaybkF+6J7yzGjZOreSr4RZLh2qxBp2I9D0j3Bo5RY3kkgZN7d4GTWeWP2mKxkBq/cjur+Q1PeyvGhV9b5RveOTBc9tzs3MX0v6g49NARzZOkCQQSDZ2MQ+D4OEeXUll+V8X9vd0HQ10LcldEmQPd/2k18TsrqV/pqcLz09Dez30X45P"), @@ -7470,73 +7131,73 @@ this.addDataEntry("sysml block generalization set",140,50,"Generalization Set"," this.addDataEntry("sysml block generalization set",150,80,"Generalization Set","5ZXBboMwDIafJncITPQ6YO1pUqU+QVo8iGYSFFIGe/oFErUwilYxqZceEPlt/5blT1FIkJTtTrGqeJcZIAneSJAoKbU9lW0CiIR6PCNBSij1zEfodiHrD1mvYgqEvsdAraFheAYbsYFad+gCkOVwcFJIYX5xoUszaeqbI4jsVSn5ZeQR5enThrYc+wLPqgP/7s0+NdK273suTjyE3Lg7kCVo1ZkSBcg0b6Y+VluZX+ou1r3kpiP1Wmfwpg7NVA7aFY03tODrrNz8alPLszrBrI05jIa/hob130YRPA2KcCWK8FEowqdBEa1EET0KxcscRRTLBhSyquIiJ1G6no1LZqwuIHNpZEfAvay55lKYmOJ5YRDEDHnea4QP/S9i7cSwll93+yotLH7GbzPld+eN/JufkdfHy5aP37Yf"), this.addDataEntry("sysml block block namespace containment",140,70,"Block Namespace Containment","7ZXPjoIwEMafhjtQ192roOtlTUx8gmpHaCyMKfUPPv0OtKJ1McvBwx6WxKTztfMxfD8MAUuL81zzfb5AASpgs4ClGtHYVXFOQakgDqUI2DSI45B+Qfz5ZDdqd8M911CaIQ2xbThydQCrWKEytXLCEbSRG64mSmYlSWs0BouAJbkpaN5pREsylfuKGpKtVCpFhbptZmF7kV4ZjTvo23ET0F3g/PQpWsk9whywAKNrOuIaxh+2o7Ylc+VJCpNbaWSVHGSWG0/ilS2zzvUWFy1cYv3psd/TA5HBypWg1nia3QQvwVKs5KU5FcW2nGiNJ6qrulp8Lflml2KTRtK6kJ6jlheSOFkkGg+lgGasJlLuUCnYNh2PBAspBN2/HbWZz0u9woPegPd2DAfhPDQobuTRN+4L2hktUZJ/5/IeejijsW9guM7AuJ4HWN1Ig/iNXsjPUblm3RN798e5g1tiCT/w/V0y0chHcyX1ejRv/2gGonk1Cipv3x97/P7z9A0="), this.addDataEntry("sysml block participant property",400,140,"Participant Property","5ZfbbtswDEC/xi8DWviS2x7tZOvLBhTrFyg2YwuVLU9WmmRfP+qW1LfBRdKhQB+aiqTpkEekqHjRujw+CFIXP3kGzIu+edFacC7NqjyugTEv9GnmRRsvDH3888LvI9ZAW/2aCKjkFIfQOLwQtgejSRhPn626kSdm1U1BarUUkOKLk0KWGOsmwOWOV/LJPqjkQ0ElPNUkVYoDZoY6wmheoZhiWCBQYb8WhITjaOhaZeN+AF6CFCd85EAzWZgn5iY7vwCaF9bLZuyTxsj52fPCARcWxTCWaBhL8JGxWIfIMfkPmGY9TF64YApE3cK0+L1XBZ2UROQUE479+ngW7yRHFvFMqzBveWexxK+wuDfgKrf/9fdsnSJuGp5SIimvAmfE8Lddh0Ko7DpKVNVd3VsyYLBDY7x6awqkVFXA+hJut6QprQnuuTO0nazke8sEqkwtVJh+LXiN1aPqIfCWWhNoY4yfuoa1xdHrwHjXeEIbT9iLJxzeh8mtxrFhdowfUNxRVayDzXaD3nJ9dDLiot9pkT/QaqsbtNq812rtiu/AgiwHd/pUvII2MNyhWAgNzBoVFpoSFtsTacul5OWZmnpdi1nD9yKF1gyR2AsgW+fnBLICGKbw0n77NaAWPVCuBgeGGlYIrfIfun03URuSO5xNc48TYmQL7JE3VO2Eqk+z8UafkPQ5F3xfZWvOuLgA1+OB/tHTwZZHyqsKa5tsXXj+pJKd/7Nk76zHzTkve5wHpuMVfPVU+KxwV6NFPAr5lz1vRig7cJPL2G7LxwD9Xpy/9i8wy4SLDARkZlz59/dfbox8uLI/BW8XdOvGeOXoykhTQGbNE8bV7Pazybo+cqruRw5i6LevC0HnGmAGpnXqMDxHMYQVxcsvRPP46x+QfwE="), -this.addEntry("sysml block participant property",function(){var a=new mxCell("Block2",new mxGeometry(0,0,50,20),"shape=rect;html=1;strokeWidth=1;fontStyle=1;whiteSpace=wrap;align=center;");a.vertex=!0;var c=new mxCell("Block1",new mxGeometry(350,0,50,20),"shape=rect;html=1;strokeWidth=1;fontStyle=1;whiteSpace=wrap;align=center;");c.vertex=!0;var e=new mxCell('<p style="margin:0px;margin-top:4px;text-align:center;"><b>Association1</b></p><hr/><p style="margin:0px;text-align:center;"><i>structure</i></p>', -new mxGeometry(20,60,360,150),"shape=rect;html=1;strokeWidth=1;overflow=fill;whiteSpace=wrap;recursiveResize=0;");e.vertex=!0;var g=new mxCell('<p style="margin:0px;margin-top:4px;text-align:center;"><<participant>><br/>{end = property 2}<br/><br/><b>p2 : Block 2</b></p>',new mxGeometry(20,50,150,80),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;overflow=fill;dashed=1;whiteSpace=wrap;");g.vertex=!0;e.insert(g);g=new mxCell('<p style="margin:0px;margin-top:4px;text-align:center;"><<participant>><br/>{end = property 1}<br/><br/><b>p1 : Block 1</b></p>', -new mxGeometry(190,50,150,80),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;overflow=fill;dashed=1;whiteSpace=wrap;");g.vertex=!0;e.insert(g);g=new mxCell("Association1",new mxGeometry(0,0,0,0),"edgeStyle=none;html=1;endArrow=none;verticalAlign=bottom;");g.geometry.relative=!0;g.edge=!0;a.insertEdge(g,!0);c.insertEdge(g,!1);var h=new mxCell("",new mxGeometry(0,0,0,0),"edgeStyle=none;html=1;endArrow=none;dashed=1;");h.geometry.setTerminalPoint(new mxPoint(200,10),!1); -h.geometry.relative=!0;h.edge=!0;e.insertEdge(h,!0);var k=new mxCell("property2",new mxGeometry(-1,0,0,0),"spacingLeft=3;html=1;align=left;verticalAlign=bottom;labelPosition=right;labelBackgroundColor=none;fontSize=10");k.geometry.relative=!0;k.setConnectable(!1);k.vertex=!0;g.insert(k);k=new mxCell("1",new mxGeometry(-1,0,0,0),"spacingLeft=3;html=1;align=left;verticalAlign=top;labelPosition=right;labelBackgroundColor=none;fontSize=10");k.geometry.relative=!0;k.setConnectable(!1);k.vertex=!0;g.insert(k); -k=new mxCell("property1",new mxGeometry(1,0,0,0),"spacingRight=3;html=1;align=right;verticalAlign=bottom;labelPosition=left;labelBackgroundColor=none;fontSize=10");k.geometry.relative=!0;k.setConnectable(!1);k.vertex=!0;g.insert(k);k=new mxCell("{ordered} 0..*",new mxGeometry(1,0,0,0),"spacingRight=3;html=1;align=right;verticalAlign=top;labelPosition=left;labelBackgroundColor=none;fontSize=10");k.geometry.relative=!0;k.setConnectable(!1);k.vertex=!0;g.insert(k);return d.createVertexTemplateFromCells([a, -c,e,g,h],400,260,"Participant Property")}),this.addDataEntry("sysml block participant property",400,80,"Participant Property","5ZZfT+MwDMA/TV+QDvXPxu4e18Hxckjo+ARZY9qINK7SjG18etwm3ShpUREDIfEwLXbi1P7FjhMkq3J3rVlV3CAHGSRXQbLSiMaOyt0KpAziUPAguQziOKRfEP8dmY3a2bBiGpSZYhBbg0cmN2A1qcTswalrs5dOXResaoYaMto4LUxJvl5GNLxHZe7cwkbeFsLAXcWyRrGlyEjHpMgViRm5BZoU7rOgDexGXW9Vzu9rwBKM3tOSreCmsCvmNrqwAJEXzspFHLLayvnB8siBBg7FMJZkGEv0nbE4g6Rj8gWYZh6mZV1jJpgRqN4D6wRxRzMX0N7KFz6GKP4kDnOPgxc78By6dFCo6C8FxZda4/ao8Yg0Vj0eNW50Br3aNUznYHp5O4GaBkmn9Njf/SMMLjwGlcaKTnQ/cJlQGQiV/4P7xsmkH3lXFLKdTZukEBmTS6deozFY0oRka5C3WIsm2Zqssmdq9SnLHnKNG8VXKFEfEbdlKZ7aqnQnn6FSlJFs3bkXTkrH+Zvp+MtZnJzzwuM8UGgf4Guw+rlwf48m8Sjk/+4qGaHcgZucxu5Yvgfoz+L8x78wFylqDhp4sCA5DM/Pz06MfDizfwTvzul3dqgXcP1mxVldAJ/erman703O9BYF7XiASMnTewlErzq8bZjO6BXDgxdDWEk8vszt8pcP92c="), +this.addEntry("sysml block participant property",function(){var a=new mxCell("Block2",new mxGeometry(0,0,50,20),"shape=rect;html=1;strokeWidth=1;fontStyle=1;whiteSpace=wrap;align=center;");a.vertex=!0;var d=new mxCell("Block1",new mxGeometry(350,0,50,20),"shape=rect;html=1;strokeWidth=1;fontStyle=1;whiteSpace=wrap;align=center;");d.vertex=!0;var f=new mxCell('<p style="margin:0px;margin-top:4px;text-align:center;"><b>Association1</b></p><hr/><p style="margin:0px;text-align:center;"><i>structure</i></p>', +new mxGeometry(20,60,360,150),"shape=rect;html=1;strokeWidth=1;overflow=fill;whiteSpace=wrap;recursiveResize=0;");f.vertex=!0;var e=new mxCell('<p style="margin:0px;margin-top:4px;text-align:center;"><<participant>><br/>{end = property 2}<br/><br/><b>p2 : Block 2</b></p>',new mxGeometry(20,50,150,80),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;overflow=fill;dashed=1;whiteSpace=wrap;");e.vertex=!0;f.insert(e);e=new mxCell('<p style="margin:0px;margin-top:4px;text-align:center;"><<participant>><br/>{end = property 1}<br/><br/><b>p1 : Block 1</b></p>', +new mxGeometry(190,50,150,80),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;overflow=fill;dashed=1;whiteSpace=wrap;");e.vertex=!0;f.insert(e);e=new mxCell("Association1",new mxGeometry(0,0,0,0),"edgeStyle=none;html=1;endArrow=none;verticalAlign=bottom;");e.geometry.relative=!0;e.edge=!0;a.insertEdge(e,!0);d.insertEdge(e,!1);var h=new mxCell("",new mxGeometry(0,0,0,0),"edgeStyle=none;html=1;endArrow=none;dashed=1;");h.geometry.setTerminalPoint(new mxPoint(200,10),!1); +h.geometry.relative=!0;h.edge=!0;f.insertEdge(h,!0);var k=new mxCell("property2",new mxGeometry(-1,0,0,0),"spacingLeft=3;html=1;align=left;verticalAlign=bottom;labelPosition=right;labelBackgroundColor=none;fontSize=10");k.geometry.relative=!0;k.setConnectable(!1);k.vertex=!0;e.insert(k);k=new mxCell("1",new mxGeometry(-1,0,0,0),"spacingLeft=3;html=1;align=left;verticalAlign=top;labelPosition=right;labelBackgroundColor=none;fontSize=10");k.geometry.relative=!0;k.setConnectable(!1);k.vertex=!0;e.insert(k); +k=new mxCell("property1",new mxGeometry(1,0,0,0),"spacingRight=3;html=1;align=right;verticalAlign=bottom;labelPosition=left;labelBackgroundColor=none;fontSize=10");k.geometry.relative=!0;k.setConnectable(!1);k.vertex=!0;e.insert(k);k=new mxCell("{ordered} 0..*",new mxGeometry(1,0,0,0),"spacingRight=3;html=1;align=right;verticalAlign=top;labelPosition=left;labelBackgroundColor=none;fontSize=10");k.geometry.relative=!0;k.setConnectable(!1);k.vertex=!0;e.insert(k);return b.createVertexTemplateFromCells([a, +d,f,e,h],400,260,"Participant Property")}),this.addDataEntry("sysml block participant property",400,80,"Participant Property","5ZZfT+MwDMA/TV+QDvXPxu4e18Hxckjo+ARZY9qINK7SjG18etwm3ShpUREDIfEwLXbi1P7FjhMkq3J3rVlV3CAHGSRXQbLSiMaOyt0KpAziUPAguQziOKRfEP8dmY3a2bBiGpSZYhBbg0cmN2A1qcTswalrs5dOXResaoYaMto4LUxJvl5GNLxHZe7cwkbeFsLAXcWyRrGlyEjHpMgViRm5BZoU7rOgDexGXW9Vzu9rwBKM3tOSreCmsCvmNrqwAJEXzspFHLLayvnB8siBBg7FMJZkGEv0nbE4g6Rj8gWYZh6mZV1jJpgRqN4D6wRxRzMX0N7KFz6GKP4kDnOPgxc78By6dFCo6C8FxZda4/ao8Yg0Vj0eNW50Br3aNUznYHp5O4GaBkmn9Njf/SMMLjwGlcaKTnQ/cJlQGQiV/4P7xsmkH3lXFLKdTZukEBmTS6deozFY0oRka5C3WIsm2Zqssmdq9SnLHnKNG8VXKFEfEbdlKZ7aqnQnn6FSlJFs3bkXTkrH+Zvp+MtZnJzzwuM8UGgf4Guw+rlwf48m8Sjk/+4qGaHcgZucxu5Yvgfoz+L8x78wFylqDhp4sCA5DM/Pz06MfDizfwTvzul3dqgXcP1mxVldAJ/erman703O9BYF7XiASMnTewlErzq8bZjO6BXDgxdDWEk8vszt8pcP92c="), this.createVertexTemplateEntry("shape=rect;html=1;overflow=fill;whiteSpace=wrap;",300,80,'<p style="margin:0px;margin-top:4px;text-align:center;"><b>Association1</b></p><hr/><p style="margin:0px;margin-left:8px;text-align:center;"><<participant>> {end = property 1} p1 : Blcok 1<br/><<participant>> {end = property 2} p2 : Blcok 2</p>',"Association",null,null,this.getTagsForStencil("","","sysml block association").join(" ")),this.createVertexTemplateEntry("shape=rect;html=1;overflow=fill;whiteSpace=wrap;", 300,80,'<p style="margin:0px;margin-top:4px;text-align:center;"><b>Association1</b></p><hr/><p style="margin:0px;text-align:center;"><i>structure</i></p>',"Association",null,null,this.getTagsForStencil("","","sysml block association").join(" ")),this.createVertexTemplateEntry("shape=rect;html=1;overflow=fill;dashed=1;whiteSpace=wrap;",150,80,'<p style="margin:0px;margin-top:4px;text-align:center;"><<participant>><br/>{end = property 1}<br/><br/><b>p1 : Block 1</b></p>',"Participant",null, null,this.getTagsForStencil("","","sysml block participant").join(" ")),this.addEntry("sysml block connector property",function(){var a=new mxCell('<p style="margin:0px;margin-top:4px;text-align:center;"><b>Block1</b><hr/></p><p style="margin:0px;margin-top:-6px;margin-left:10px;text-align:left;"><<connector>> c1 : Association1<br/><<connector>> c2 : Association2<hr/></p><p style="margin:0px;margin-top:-6px;text-align:center;font-size:10px;"><i>structure</i></p>',new mxGeometry(0, -0,400,250),"shape=rect;html=1;overflow=fill;whiteSpace=wrap;strokeWidth=1;recursiveResize=0;");a.vertex=!0;var c=new mxCell("p1:\nType1",new mxGeometry(20,100,80,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;fontStyle=1;whiteSpace=wrap;align=center;");c.vertex=!0;a.insert(c);var e=new mxCell("p2:\nType2",new mxGeometry(300,100,80,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;fontStyle=1;whiteSpace=wrap;align=center;");e.vertex= -!0;a.insert(e);var g=new mxCell("c1: Association1",new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;edgeStyle=none;html=1;endArrow=none;verticalAlign=bottom;labelBackgroundColor=none;");g.geometry.relative=!0;g.edge=!0;c.insertEdge(g,!0);e.insertEdge(g,!1);a.insert(g);c=new mxCell("1",new mxGeometry(1,0,0,0),"spacingRight=3;html=1;align=right;verticalAlign=bottom;labelPosition=left;labelBackgroundColor=none;fontSize=10");c.geometry.relative=!0;c.setConnectable(!1); -c.vertex=!0;g.insert(c);c=new mxCell("e1",new mxGeometry(1,0,0,0),"spacingRight=3;html=1;align=right;verticalAlign=top;labelPosition=left;labelBackgroundColor=none;fontSize=10");c.geometry.relative=!0;c.setConnectable(!1);c.vertex=!0;g.insert(c);c=new mxCell("p3:\nType3",new mxGeometry(20,160,80,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;fontStyle=1;whiteSpace=wrap;align=center;");c.vertex=!0;a.insert(c);e=new mxCell("p4:\nType4",new mxGeometry(300,160,80,40), -"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;fontStyle=1;whiteSpace=wrap;align=center;");e.vertex=!0;a.insert(e);g=new mxCell("",new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;edgeStyle=none;html=1;endArrow=none;");g.geometry.relative=!0;g.edge=!0;c.insertEdge(g,!0);e.insertEdge(g,!1);a.insert(g);c=new mxCell("1",new mxGeometry(1,0,0,0),"spacingRight=3;html=1;align=right;verticalAlign=bottom;labelPosition=left;labelBackgroundColor=none;fontSize=10"); -c.geometry.relative=!0;c.setConnectable(!1);c.vertex=!0;g.insert(c);c=new mxCell("e1",new mxGeometry(1,0,0,0),"spacingRight=3;html=1;align=right;verticalAlign=top;labelPosition=left;labelBackgroundColor=none;fontSize=10");c.geometry.relative=!0;c.setConnectable(!1);c.vertex=!0;g.insert(c);g=new mxCell("c2: Association2",new mxGeometry(140,210,120,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;align=center;");g.vertex=!0;a.insert(g);c=new mxCell("",new mxGeometry(0, -0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;edgeStyle=none;html=1;endArrow=none;dashed=1;");c.geometry.setTerminalPoint(new mxPoint(200,180),!1);c.geometry.relative=!0;c.edge=!0;g.insertEdge(c,!0);a.insert(c);return d.createVertexTemplateFromCells([a],400,250,"Connector Property")}),this.createVertexTemplateEntry("shape=rect;html=1;overflow=fill;whiteSpace=wrap;",200,120,'<p style="margin:0px;margin-top:4px;text-align:center;"><b>Block1</b><hr/><<connector>> c1 : Association1<br/><<connector>> c2 : Association2<hr/></p>', -"Connector Property",null,null,this.getTagsForStencil("","","sysml block connector property").join(" ")),this.addEntry("sysml block internal block diagram",function(){var a=new mxCell('<p style="margin:0px;margin-top:4px;margin-left:10px;text-align:left;"><b>ibd</b> Block1</p>',new mxGeometry(0,0,300,100),"html=1;strokeWidth=1;shape=mxgraph.sysml.package;labelX=100;align=left;spacingLeft=10;html=1;overflow=fill;whiteSpace=wrap;strokeWidth=0;recursiveResize=0;");a.vertex=!0;var c=new mxCell("p1:\nType1", -new mxGeometry(15,30,100,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;fontStyle=1;whiteSpace=wrap;align=center;");c.vertex=!0;a.insert(c);var e=new mxCell("p2:\nType2",new mxGeometry(190,30,100,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;fontStyle=1;whiteSpace=wrap;align=center;");e.vertex=!0;a.insert(e);var g=new mxCell("c1:a1",new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;verticalAlign=bottom;html=1;endArrow=none;edgeStyle=none;labelBackgroundColor=none;"); -g.geometry.relative=!0;g.edge=!0;var h=new mxCell("1",new mxGeometry(1,0,0,0),"resizable=0;html=1;align=right;verticalAlign=bottom;labelBackgroundColor=none;fontSize=10");h.geometry.relative=!0;h.setConnectable(!1);h.vertex=!0;g.insert(h);h=new mxCell("p3",new mxGeometry(1,0,0,0),"resizable=0;html=1;align=right;verticalAlign=top;labelBackgroundColor=none;fontSize=10");h.geometry.relative=!0;h.setConnectable(!1);h.vertex=!0;g.insert(h);c.insertEdge(g,!0);e.insertEdge(g,!1);a.insert(g);return d.createVertexTemplateFromCells([a], -300,100,"Internal Block Diagram")}),this.addEntry("sysml block property",function(){var a=new mxCell("",new mxGeometry(0,0,300,120),"shape=rect;html=1;strokeWidth=2;whiteSpace=wrap;strokeWidth=1;recursiveResize=0;");a.vertex=!0;var c=new mxCell('<p style="margin:0px;margin-top:4px;margin-right:4px;text-align:right;font-size:10px;">0..*</p><p style="margin:0px;text-align:center;"><b>p1 : Type1</b><hr/>x : Integer = 4</p>',new mxGeometry(20,20,140,80),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;overflow=fill;strokeWidth=2;whiteSpace=wrap;align=center;"); -c.vertex=!0;a.insert(c);c=new mxCell("r1: Type2",new mxGeometry(180,30,100,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;fontStyle=1;dashed=1;strokeWidth=2;whiteSpace=wrap;align=center;");c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],300,120,"Property")}),this.createVertexTemplateEntry("html=1;strokeWidth=1;shape=mxgraph.sysml.package;html=1;overflow=fill;whiteSpace=wrap;",300,135,'<p style="margin:0px;margin-top:4px;margin-left:10px;text-align:left;"><b>idb</b> Block1</p>', +0,400,250),"shape=rect;html=1;overflow=fill;whiteSpace=wrap;strokeWidth=1;recursiveResize=0;");a.vertex=!0;var d=new mxCell("p1:\nType1",new mxGeometry(20,100,80,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;fontStyle=1;whiteSpace=wrap;align=center;");d.vertex=!0;a.insert(d);var f=new mxCell("p2:\nType2",new mxGeometry(300,100,80,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;fontStyle=1;whiteSpace=wrap;align=center;");f.vertex= +!0;a.insert(f);var e=new mxCell("c1: Association1",new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;edgeStyle=none;html=1;endArrow=none;verticalAlign=bottom;labelBackgroundColor=none;");e.geometry.relative=!0;e.edge=!0;d.insertEdge(e,!0);f.insertEdge(e,!1);a.insert(e);d=new mxCell("1",new mxGeometry(1,0,0,0),"spacingRight=3;html=1;align=right;verticalAlign=bottom;labelPosition=left;labelBackgroundColor=none;fontSize=10");d.geometry.relative=!0;d.setConnectable(!1); +d.vertex=!0;e.insert(d);d=new mxCell("e1",new mxGeometry(1,0,0,0),"spacingRight=3;html=1;align=right;verticalAlign=top;labelPosition=left;labelBackgroundColor=none;fontSize=10");d.geometry.relative=!0;d.setConnectable(!1);d.vertex=!0;e.insert(d);d=new mxCell("p3:\nType3",new mxGeometry(20,160,80,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;fontStyle=1;whiteSpace=wrap;align=center;");d.vertex=!0;a.insert(d);f=new mxCell("p4:\nType4",new mxGeometry(300,160,80,40), +"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;fontStyle=1;whiteSpace=wrap;align=center;");f.vertex=!0;a.insert(f);e=new mxCell("",new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;edgeStyle=none;html=1;endArrow=none;");e.geometry.relative=!0;e.edge=!0;d.insertEdge(e,!0);f.insertEdge(e,!1);a.insert(e);d=new mxCell("1",new mxGeometry(1,0,0,0),"spacingRight=3;html=1;align=right;verticalAlign=bottom;labelPosition=left;labelBackgroundColor=none;fontSize=10"); +d.geometry.relative=!0;d.setConnectable(!1);d.vertex=!0;e.insert(d);d=new mxCell("e1",new mxGeometry(1,0,0,0),"spacingRight=3;html=1;align=right;verticalAlign=top;labelPosition=left;labelBackgroundColor=none;fontSize=10");d.geometry.relative=!0;d.setConnectable(!1);d.vertex=!0;e.insert(d);e=new mxCell("c2: Association2",new mxGeometry(140,210,120,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;align=center;");e.vertex=!0;a.insert(e);d=new mxCell("",new mxGeometry(0, +0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;edgeStyle=none;html=1;endArrow=none;dashed=1;");d.geometry.setTerminalPoint(new mxPoint(200,180),!1);d.geometry.relative=!0;d.edge=!0;e.insertEdge(d,!0);a.insert(d);return b.createVertexTemplateFromCells([a],400,250,"Connector Property")}),this.createVertexTemplateEntry("shape=rect;html=1;overflow=fill;whiteSpace=wrap;",200,120,'<p style="margin:0px;margin-top:4px;text-align:center;"><b>Block1</b><hr/><<connector>> c1 : Association1<br/><<connector>> c2 : Association2<hr/></p>', +"Connector Property",null,null,this.getTagsForStencil("","","sysml block connector property").join(" ")),this.addEntry("sysml block internal block diagram",function(){var a=new mxCell('<p style="margin:0px;margin-top:4px;margin-left:10px;text-align:left;"><b>ibd</b> Block1</p>',new mxGeometry(0,0,300,100),"html=1;strokeWidth=1;shape=mxgraph.sysml.package;labelX=100;align=left;spacingLeft=10;html=1;overflow=fill;whiteSpace=wrap;strokeWidth=0;recursiveResize=0;");a.vertex=!0;var d=new mxCell("p1:\nType1", +new mxGeometry(15,30,100,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;fontStyle=1;whiteSpace=wrap;align=center;");d.vertex=!0;a.insert(d);var f=new mxCell("p2:\nType2",new mxGeometry(190,30,100,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;fontStyle=1;whiteSpace=wrap;align=center;");f.vertex=!0;a.insert(f);var e=new mxCell("c1:a1",new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;verticalAlign=bottom;html=1;endArrow=none;edgeStyle=none;labelBackgroundColor=none;"); +e.geometry.relative=!0;e.edge=!0;var h=new mxCell("1",new mxGeometry(1,0,0,0),"resizable=0;html=1;align=right;verticalAlign=bottom;labelBackgroundColor=none;fontSize=10");h.geometry.relative=!0;h.setConnectable(!1);h.vertex=!0;e.insert(h);h=new mxCell("p3",new mxGeometry(1,0,0,0),"resizable=0;html=1;align=right;verticalAlign=top;labelBackgroundColor=none;fontSize=10");h.geometry.relative=!0;h.setConnectable(!1);h.vertex=!0;e.insert(h);d.insertEdge(e,!0);f.insertEdge(e,!1);a.insert(e);return b.createVertexTemplateFromCells([a], +300,100,"Internal Block Diagram")}),this.addEntry("sysml block property",function(){var a=new mxCell("",new mxGeometry(0,0,300,120),"shape=rect;html=1;strokeWidth=2;whiteSpace=wrap;strokeWidth=1;recursiveResize=0;");a.vertex=!0;var d=new mxCell('<p style="margin:0px;margin-top:4px;margin-right:4px;text-align:right;font-size:10px;">0..*</p><p style="margin:0px;text-align:center;"><b>p1 : Type1</b><hr/>x : Integer = 4</p>',new mxGeometry(20,20,140,80),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;overflow=fill;strokeWidth=2;whiteSpace=wrap;align=center;"); +d.vertex=!0;a.insert(d);d=new mxCell("r1: Type2",new mxGeometry(180,30,100,50),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;fontStyle=1;dashed=1;strokeWidth=2;whiteSpace=wrap;align=center;");d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],300,120,"Property")}),this.createVertexTemplateEntry("html=1;strokeWidth=1;shape=mxgraph.sysml.package;html=1;overflow=fill;whiteSpace=wrap;",300,135,'<p style="margin:0px;margin-top:4px;margin-left:10px;text-align:left;"><b>idb</b> Block1</p>', "Package",null,null,this.getTagsForStencil("","","sysml block package").join(" ")),this.createVertexTemplateEntry("shape=rect;html=1;overflow=fill;whiteSpace=wrap;align=center;",100,80,'<p style="margin:0px;margin-top:4px;margin-right:4px;text-align:right;font-size:10px;">0..*</p><p style="margin:0px;text-align:center;"><b>p1 : Type1</b><hr/>x : Integer = 4</p>',"Property",null,null,this.getTagsForStencil("","","sysml block property").join(" ")),this.addEntry("sysml block property",function(){var a= -new mxCell('<p style="margin:0px;margin-top:4px;margin-right:4px;text-align:right;font-size:10px;">0..*</p><p style="margin:0px;text-align:center;">p1 : Type1<hr/></p>',new mxGeometry(0,0,250,160),"shape=rect;html=1;overflow=fill;whiteSpace=wrap;strokeWidth=1;recursiveResize=0;");a.vertex=!0;var c=new mxCell('<p style="margin:0px;margin-top:4px;text-align:center;"><b>p3 : Type3</b></p><hr/><p style="font-size:10px;margin:0px;margin-top:4px;text-align:center;"><i>initialValues</i></p><p style="margin:0px;margin-top:4px;margin-left:10px;text-align:left;">x1 = 5.0<br/>x2 = "today"</p>', -new mxGeometry(30,50,140,100),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;overflow=fill;whiteSpace=wrap;");c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],250,160,"Property")}),this.createVertexTemplateEntry("shape=rect;html=1;overflow=fill;whiteSpace=wrap;",100,100,'<p style="margin:0px;margin-top:4px;text-align:center;"><b>p3 : Type3</b></p><hr/><p style="font-size:10px;margin:0px;margin-top:4px;text-align:center;"><i>initialValues</i></p><p style="margin:0px;margin-top:4px;margin-left:10px;text-align:left;">x1 = 5.0<br/>x2 = "today"</p>', +new mxCell('<p style="margin:0px;margin-top:4px;margin-right:4px;text-align:right;font-size:10px;">0..*</p><p style="margin:0px;text-align:center;">p1 : Type1<hr/></p>',new mxGeometry(0,0,250,160),"shape=rect;html=1;overflow=fill;whiteSpace=wrap;strokeWidth=1;recursiveResize=0;");a.vertex=!0;var d=new mxCell('<p style="margin:0px;margin-top:4px;text-align:center;"><b>p3 : Type3</b></p><hr/><p style="font-size:10px;margin:0px;margin-top:4px;text-align:center;"><i>initialValues</i></p><p style="margin:0px;margin-top:4px;margin-left:10px;text-align:left;">x1 = 5.0<br/>x2 = "today"</p>', +new mxGeometry(30,50,140,100),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;overflow=fill;whiteSpace=wrap;");d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],250,160,"Property")}),this.createVertexTemplateEntry("shape=rect;html=1;overflow=fill;whiteSpace=wrap;",100,100,'<p style="margin:0px;margin-top:4px;text-align:center;"><b>p3 : Type3</b></p><hr/><p style="font-size:10px;margin:0px;margin-top:4px;text-align:center;"><i>initialValues</i></p><p style="margin:0px;margin-top:4px;margin-left:10px;text-align:left;">x1 = 5.0<br/>x2 = "today"</p>', "Property",null,null,this.getTagsForStencil("","","sysml block property").join(" ")),this.createVertexTemplateEntry("shape=rect;html=1;overflow=fill;whiteSpace=wrap;",300,70,'<p style="margin:0px;margin-top:4px;text-align:center;"><b>p1 : [Type1]</b></p><hr/><p style="font-size:10px;margin:0px;margin-top:4px;text-align:center;"><i>values</i></p><p style="margin:0px;margin-top:4px;margin-left:10px;text-align:left;"><<normal>> {mean = 2, stdDeviation = 0.1} x : Real</p>',"Property Specific Type", null,null,this.getTagsForStencil("","","sysml block property specific type").join(" ")),this.createVertexTemplateEntry("shape=rect;html=1;overflow=fill;whiteSpace=wrap;",100,70,'<p style="margin:0px;margin-top:4px;text-align:center;"><b>p2</b></p><hr/><p style="font-size:10px;margin:0px;margin-top:4px;text-align:center;"><i>values</i></p><p style="margin:0px;margin-top:4px;margin-left:10px;text-align:left;">y : Integer = 5</p>',"Property Specific Type",null,null,this.getTagsForStencil("","","sysml block property specific type").join(" ")), this.createEdgeTemplateEntry("edgeStyle=none;html=1;endArrow=open;endSize=12;dashed=1;verticalAlign=bottom;",160,0,"<<stereotype1>>\ndependency1","Dependency",null,null,this.getTagsForStencil("","","sysml block dependency").join(" ")),this.addDataEntry("sysml block property",160,0,"Property","zVTBboMwDP2aXCatgjDtXmjX06RJPeycggtRQ4yM29F+/QJkpYx2qqYddohkv/g58XtRRJSUzYpUVbxiBkZESxElhMh9VDYJGCNkoDMRLYSUgVtCvtzYDbvdoFIElu8hyJ5wUGYPPdIDNR+NBw5ArFNl5kbn1kEbZMZSRHHBpbvvInQh2GxOhB8utWihRbIc1r4JEheYo1VmOaBxzYQ7eNcZF65GOqQ/umXenKaD/CgrwBKYjq6EwCjWhzFP1X2an+vO1DfUruNQUuOeUvDopVxfhY3v/ByMe7OiHHhCdMHF/QaoU/+6E9HEiXBiBUGtT2rTpcHYAeXdMbB1UsXfTWOsHGrUBkys0l1OuLdZggZpsGyLltf61DYP/ZgpWgsp+yPPrylo20Nz0yV53SVPePSMu00bqfqDhE8TCYPZ7OE3KpLOi/8u4x+p6NLhu+nf7eVv9Ak="), this.addDataEntry("sysml block binding connector",160,0,"Binding Connector","zVSxboMwEP0aj5XAVNlDknaqVClDZwcuxorxpceRknx9DbgQmqTKkKEDku/53jN+72SRLMrmldS+eMMcrEhWIlkQIverslmAtUJGJhfJUkgZ+U/Ilxu7cbcb7RWB43sIsicclK2hR4ScqXIvktR6gXRawWet7ADpSUOoWrWKjzaoHYDYZMrOrdHOQxtkxtJ3Flz6yy7jVtXlcyL88qVDBy2Sa1gHESQuUKNTdjWiacWEO/gwORe+Rw5Ht8ybVnRQ8OEVsASmo28hsIrNYcpTVV/qoW+gvqPximNLhTVlENBzr38am6A8i6barEgDXxD94uz/RqiL7nqMyUWM8UUUBJU5qU1XRtMEVEjHwrZN8XdojN0EqA3YVGU7TVi7fIEWaYxsi47X5tSKx+GaGToHGYcjh1GMWnlobqYkr6cUCE+BcXdoE1f/sPD5MRaS0cV/9/BBFvpyfKj6oT1/x74B"), this.addDataEntry("sysml block bidirectional connector",160,0,"Bidirectional Connector","3VXBboMwDP2aXCatCrD1XmjX06RJ/YIUXIgWYhRMR/v1C5BBGe1UTZ1U7QCKH89O/J5FWBDl9dqIInvFBBQLViyIDCJ1q7yOQCnmc5mwYMl8n9uH+S8XvnrtV14IA5quSfC7hL1QFXRIbGtwFizsW5QlxlKQRN3RSjooR9uDIRkLtVAy1RbaIhHmLAgzym0XS88uQScLY/DDhho1NEiSwsYVQUMZpqiFWg1o2G3U8C521EKunTVgDmQOlmJA2aPux3mi7MK05/WpbyhtxYFSYmVicOipZF/E2lWe83FtEiYFmiTaxcn5Bqh14LwbwcQNPpt5E+0NlPIotm3Ix5ILZ4eCnVUr/O4SYWFRJbagQhG/pwYrnUSo0Awe7VDTRh6b4p7rNEatISa3ZT9UvCkP9UWj/PNGuYRHl3G1byNhf1DxaaJicUsN+0n/5zI+nxvGh98IaWSa3fs0/pWK8+kw+rfU8M6m8UYy2nC4A7sf6ekV+Qk="), this.addDataEntry("sysml block unidirectional connector",160,0,"Unidirectional Connector","3VXBboMwDP2aXCatCrD1XmjX06RJ/YIUXIgWYhRMR/v1C5BBGe1UTZ1U7QCKH89O/J5FWBDl9dqIInvFBBQLViyIDCJ1q7yOQCnmc5mwYMl8n9uH+S8XvnrtV14IA5quSfC7hL1QFXRIbGtwFizsW5QlxlKQRN3RSjooR9uDIRkLtVAy1RbaIhHmLAgzym0XS88uQScLY/DDhho1NEiSwsYVQUMZpqiFWg1o2G3U8C521EKunTVgDmQOlmJA2aPux3mi7MK05/WpbyhtxYFSYmVicOipZF/E2lWe83FtEiYFmiTaxcn5Bqh14LwbwcQNPpt5E+0NlPIotm3Ix5ILZ4eCnVUr/O4SYWFRJbagQhG/pwYrnUSo0Awe7VDTRh6b4p7rNEatISa3ZT9UvCkP9UWj/PNGuYRHl3G1byNhf1DxaaJicUsN+0n/5zI+nxvGh98IaWSa3fs0/pWK8+kw+rfU8M6m8UYy2nC4A7sf6ekV+Qk=")]; -this.addPalette("sysmlBlocks","SysML / Blocks",a||!1,mxUtils.bind(this,function(a){for(var b=0;b<e.length;b++)a.appendChild(e[b](a))}))};Sidebar.prototype.addSysMLPortsAndFlowsPalette=function(a){var d=this,e=[this.addEntry("sysml port flow port",function(){var a=new mxCell("Transmission",new mxGeometry(0,0,160,60),"html=1;shape=mxgraph.sysml.port1;fontStyle=1;whiteSpace=wrap;align=center;points=[[0,0.5,0],[1,0.5,0]];");a.vertex=!0;var c=new mxCell("p1",new mxGeometry(0,20,20,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;points=[[0,0.5,0]];html=1;resizable=1;align=right;verticalAlign=bottom;labelPosition=left;verticalLabelPosition=top;labelBackgroundColor=none;fontSize=10;part=1;"); -c.geometry.relative=!1;c.vertex=!0;a.insert(c);c=new mxCell("p2",new mxGeometry(140,20,20,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;points=[[1,0.5,0]];html=1;resizable=1;labelBackgroundColor=none;fontSize=10;part=1;");c.geometry.relative=!1;c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,"Port")}),this.addEntry("sysml port flow port conjugated",function(){var a=new mxCell("Transmission",new mxGeometry(0,0,200, -60),"html=1;shape=mxgraph.sysml.port2;fontStyle=1;spacingRight=20;whiteSpace=wrap;align=center;");a.vertex=!0;var c=new mxCell("p1 : ~T1",new mxGeometry(0,20,20,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;points=[[0,0.5,0]];html=1;resizable=1;align=right;verticalAlign=bottom;labelPositin=left;verticalLabelPosition=top;labelBackgroundColor=none;fontSize=10;part=1;");c.geometry.relative=!1;c.vertex=!0;a.insert(c);c=new mxCell("p2 : ~T2",new mxGeometry(140,20,60,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;points=[[1,0.5,0]];html=1;resizable=1;labelBackgroundColor=none;fontSize=10;part=1;"); -c.geometry.relative=!1;c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,"Port (Conjugated Ports)")}),this.addDataEntry("sysml port flow port flow property",160,80,"Ports with Flow Properties","7ZTLboMwEEW/xtuI4KbqtoE2m1aqlP6AAxOwanuQPWkgX18DJi9S9aFI3XSBZN87V5o5g8x4ouuFFVX5jDkoxh8YTywi9SddJ6AUiyOZM56yOI78x+LHT9xp50aVsGDoO4G4D7wLtYFeebXCOC2dk2h601GjglmS9i2mU8bnrhRVq+q6aLufuMZpNanQEvfuGg0tQ66t3paSYFmJrBW2PuA1oWRh/DXzvYL1QugFLEH96TydFIZZAGog2/iSrcypDBW3/cxRCbIoQ+wuaML192IfPdDxhwDoMiw+glVNR4gsOLkTq+4a+aGOkA0D276teTupzIS6D/oKiVB7Q4kVqBd0ktol8FTB+rj+6cwmrIbQXGRvhcWNyRNU6KGmBg0MC5G7bh8BRYbGQEah1/2v8tUC4ssLaELgCpxvxpzjf86nnGdX4Dwbc+a/4XyG7TLmvyM2BIZnIRDkPyfor4enufNOXu4P"), +this.addPalette("sysmlBlocks","SysML / Blocks",a||!1,mxUtils.bind(this,function(a){for(var b=0;b<e.length;b++)a.appendChild(e[b](a))}))};Sidebar.prototype.addSysMLPortsAndFlowsPalette=function(a){var b=this,e=[this.addEntry("sysml port flow port",function(){var a=new mxCell("Transmission",new mxGeometry(0,0,160,60),"html=1;shape=mxgraph.sysml.port1;fontStyle=1;whiteSpace=wrap;align=center;points=[[0,0.5,0],[1,0.5,0]];");a.vertex=!0;var d=new mxCell("p1",new mxGeometry(0,20,20,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;points=[[0,0.5,0]];html=1;resizable=1;align=right;verticalAlign=bottom;labelPosition=left;verticalLabelPosition=top;labelBackgroundColor=none;fontSize=10;part=1;"); +d.geometry.relative=!1;d.vertex=!0;a.insert(d);d=new mxCell("p2",new mxGeometry(140,20,20,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;points=[[1,0.5,0]];html=1;resizable=1;labelBackgroundColor=none;fontSize=10;part=1;");d.geometry.relative=!1;d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,"Port")}),this.addEntry("sysml port flow port conjugated",function(){var a=new mxCell("Transmission",new mxGeometry(0,0,200, +60),"html=1;shape=mxgraph.sysml.port2;fontStyle=1;spacingRight=20;whiteSpace=wrap;align=center;");a.vertex=!0;var d=new mxCell("p1 : ~T1",new mxGeometry(0,20,20,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;points=[[0,0.5,0]];html=1;resizable=1;align=right;verticalAlign=bottom;labelPositin=left;verticalLabelPosition=top;labelBackgroundColor=none;fontSize=10;part=1;");d.geometry.relative=!1;d.vertex=!0;a.insert(d);d=new mxCell("p2 : ~T2",new mxGeometry(140,20,60,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;points=[[1,0.5,0]];html=1;resizable=1;labelBackgroundColor=none;fontSize=10;part=1;"); +d.geometry.relative=!1;d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,"Port (Conjugated Ports)")}),this.addDataEntry("sysml port flow port flow property",160,80,"Ports with Flow Properties","7ZTLboMwEEW/xtuI4KbqtoE2m1aqlP6AAxOwanuQPWkgX18DJi9S9aFI3XSBZN87V5o5g8x4ouuFFVX5jDkoxh8YTywi9SddJ6AUiyOZM56yOI78x+LHT9xp50aVsGDoO4G4D7wLtYFeebXCOC2dk2h601GjglmS9i2mU8bnrhRVq+q6aLufuMZpNanQEvfuGg0tQ66t3paSYFmJrBW2PuA1oWRh/DXzvYL1QugFLEH96TydFIZZAGog2/iSrcypDBW3/cxRCbIoQ+wuaML192IfPdDxhwDoMiw+glVNR4gsOLkTq+4a+aGOkA0D276teTupzIS6D/oKiVB7Q4kVqBd0ktol8FTB+rj+6cwmrIbQXGRvhcWNyRNU6KGmBg0MC5G7bh8BRYbGQEah1/2v8tUC4ssLaELgCpxvxpzjf86nnGdX4Dwbc+a/4XyG7TLmvyM2BIZnIRDkPyfor4enufNOXu4P"), this.createVertexTemplateEntry("shape=rect;html=1;overflow=fill;whiteSpace=wrap;",160,70,'<p style="margin:0px;margin-top:4px;text-align:center;"><b>Transmission</b></p><hr/><p style="font-size:10px;margin:0px;margin-top:4px;text-align:center;"><i>ports</i></p><p style="margin:0px;margin-top:4px;margin-left:10px;text-align:left;">p1 : ITransCmd</p>',"Port (Compartment Notation)",null,null,this.getTagsForStencil("","","sysml port flow port compartment notation").join(" ")),this.addDataEntry("sysml port flow nested port", 160,60,"Nested Port","7ZXLboMwEEW/xtsIcJp9gTabVoqU/oADE7DqB7KdBvL1tbHJk6iPdFVlgeS54yvPnLEwwhlv54o09assgSH8hHCmpDR+xdsMGENJREuEc5Qkkf1Q8nwlG/fZqCEKhPmOIfGGD8I24JU3RYTmVGsqhU9q07GQrA23JeYxwqmuSeNU3lau+onuNGcTAdpAuZDKnp6upTDLYHaWbU0NLBtSOGFrXVYjjFbChoUtGJQVQkGgDLRXm+ql0NEcJAejOrtlS0tThx0z33hUA63qYBs0on1c7a0HRHYRKI0TwxfEmngSX5BSoOmOrPowsm0dkRtaVr6w1PVKC8Ieg85pWTpfysgK2EJqatwscM5gfbz/5SxtZDOYUlK8V0puRJlJJi3WXEgBw0jorp9IgFFIIaAwodb9jflqBMn4CLpgmN5OejpGOrmTPiWN/+BOP4yRxnfSp6Sns9tJz0ZI/4bzGbZ/gTkYhjdp+JP8/H7b8PCC9rmTB/YT"), -this.addEntry("sysml port flow proxy port",function(){var a=new mxCell("Transmission",new mxGeometry(0,0,160,60),"html=1;shape=mxgraph.sysml.port1;fontStyle=1;whiteSpace=wrap;align=center;");a.vertex=!0;var c=new mxCell("<<proxy>>\np1",new mxGeometry(0,20,20,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;points=[[0,0.5,0]];html=1;resizable=1;align=right;verticalAlign=bottom;labelPosition=left;verticalLabelPosition=top;labelBackgroundColor=none;fontSize=10;part=1;"); -c.geometry.relative=!1;c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,"Proxy Port")}),this.addEntry("sysml port flow full port",function(){var a=new mxCell("Transmission",new mxGeometry(0,0,160,60),"html=1;shape=mxgraph.sysml.port1;fontStyle=1;whiteSpace=wrap;align=center;");a.vertex=!0;var c=new mxCell("<<full>>\np1",new mxGeometry(0,20,20,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;points=[[0,0.5,0]];html=1;resizable=1;align=right;verticalAlign=bottom;labelPosition=left;verticalLabelPosition=top;labelBackgroundColor=none;fontSize=10;paart=1;"); -c.geometry.relative=!1;c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,"Full Port")}),this.createVertexTemplateEntry("shape=rect;html=1;overflow=fill;whiteSpace=wrap;",200,100,'<p style="margin:0px;margin-top:4px;text-align:center;"><b>Transmission</b></p><hr/><p style="font-size:10px;margin:0px;margin-top:4px;text-align:center;"><i>flow properties</i></p><p style="margin:0px;margin-top:4px;margin-left:10px;text-align:left;">in gearSelect: Gear<br/>in engineTorque: Torque<br/>out wheelsTorque: Torque</p>', +this.addEntry("sysml port flow proxy port",function(){var a=new mxCell("Transmission",new mxGeometry(0,0,160,60),"html=1;shape=mxgraph.sysml.port1;fontStyle=1;whiteSpace=wrap;align=center;");a.vertex=!0;var d=new mxCell("<<proxy>>\np1",new mxGeometry(0,20,20,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;points=[[0,0.5,0]];html=1;resizable=1;align=right;verticalAlign=bottom;labelPosition=left;verticalLabelPosition=top;labelBackgroundColor=none;fontSize=10;part=1;"); +d.geometry.relative=!1;d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,"Proxy Port")}),this.addEntry("sysml port flow full port",function(){var a=new mxCell("Transmission",new mxGeometry(0,0,160,60),"html=1;shape=mxgraph.sysml.port1;fontStyle=1;whiteSpace=wrap;align=center;");a.vertex=!0;var d=new mxCell("<<full>>\np1",new mxGeometry(0,20,20,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;points=[[0,0.5,0]];html=1;resizable=1;align=right;verticalAlign=bottom;labelPosition=left;verticalLabelPosition=top;labelBackgroundColor=none;fontSize=10;paart=1;"); +d.geometry.relative=!1;d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,"Full Port")}),this.createVertexTemplateEntry("shape=rect;html=1;overflow=fill;whiteSpace=wrap;",200,100,'<p style="margin:0px;margin-top:4px;text-align:center;"><b>Transmission</b></p><hr/><p style="font-size:10px;margin:0px;margin-top:4px;text-align:center;"><i>flow properties</i></p><p style="margin:0px;margin-top:4px;margin-left:10px;text-align:left;">in gearSelect: Gear<br/>in engineTorque: Torque<br/>out wheelsTorque: Torque</p>', "Flow Property",null,null,this.getTagsForStencil("","","sysml port flow flow property").join(" ")),this.createVertexTemplateEntry("shape=rect;html=1;overflow=fill;whiteSpace=wrap;",250,150,'<p style="margin:0px;margin-top:4px;text-align:center;"><b>Transmission</b></p><hr/><p style="font-size:10px;margin:0px;margin-top:4px;text-align:center;"><i>operations</i></p><p style="margin:0px;margin-top:4px;margin-left:10px;text-align:left;">prov Boolean selectGear(g : Gear)<br/>reqd Torque getTorque()</p><hr/><p style="font-size:10px;margin:0px;margin-top:4px;text-align:center;"><i>properties</i></p><p style="margin:0px;margin-top:4px;margin-left:10px;text-align:left;">prov temperature : Integer<br/>reqd geometry : Spline</p>', "Required and Provided Features",null,null,this.getTagsForStencil("","","sysml port flow required provided feature").join(" ")),this.createVertexTemplateEntry("shape=rect;html=1;overflow=fill;whiteSpace=wrap;",200,80,'<p style="margin:0px;margin-top:4px;text-align:center;"><<interfaceBlock>>\n<b>ISpeedObserver</b></p><hr/><p style="margin:0px;margin-top:4px;margin-left:10px;text-align:left;">notifySpeedChange(): void</p>',"Interface Block",null,null,this.getTagsForStencil("","","sysml port flow interface block").join(" ")), this.addDataEntry("sysml port flow item flow",120,180,"Item Flow","1ZXBbtswDIafRscFjt0Gu8bJ2ks3DEgO21GxGVuYLHkUk9h9+lG2nMRNuhVYVmAHA+JPUhY/UrZIFlXziLIuP9sctEg+iWSB1lK/qpoFaC3iSOUiWYo4jvgR8cMr3mnnjWqJYOgtCXGfsJd6B70CphDJnDVeKAMinok4mUYiSftQR60OoSVVfODllH2ulLVXq6bwtUxc6yo9UQTVg7YHDthaQ6uQ6hO2LC8VsrUK1rrtdrA7Pnh6KDl3VcvMSwfekjWpVWHYzLg2wOOB9oAEzav1d1Io/hFsBYQth4SEgCc6qJzKXvoYpBJUUYZNZkGTrreL40YntrwIeK+jTi5Qn7ElNK7HvkZpXKWcU9b8I+JfxsSVeQ/gbfBeIX7Ubo387gL52uJPXr/kCnkBAytjeeqT9Az1wAH706Vg8jmihzwEQ6PoG5vR5D5Y30MuY8H2zOVN7ztdKP/uEUxnd5jB6H6SxAJoNEdvQI6gJan9ePe/4Xl/wbO+QIng1LPcdGZ0naOGrcfoeNqUKZ46a9ldAz9aKpN6HiLJ+jnUcgP6q3WK/J045g/BTy/cG0tkqyEvldmPAu3O5AurLZ561t0P9Qz9u7syMmsMZBROf/x4/mni7377ifkQMm7ejdl7d2MM9r9tyI36webpP935Rr/xXw=="), this.addDataEntry("sysml port flow item flow property",140,180,"Item Flow (Item Property)","1ZXfb5swEMf/Gj8uIpBGew3J2pdumpQ+bI8OXMCqsZl9SaB//c7YkFDardLSSntA8n3vB/bnfMCSddXcGV6XX3UOkiVfWLI2WqNfVc0apGRxJHKWbFgcR/Sw+PYV77zzRjU3oPAtCbFPOHJ5AK+AKliyIo0WQgGLlyxO5hFLUh9qsZUhtMSKNryZk8+WvHZq1RTuLDPb2krOBEJ1K/WJAvZa4TakuoQ9yRthyNoG66HtKugDbTw9lZS7rXnmpBOVJI1LUSgyMzobmGFDRzAIzavn76Rw+DvQFaBpKSQkLDye6CRyLL30OUgliKIMRZZB49bbxVDozJYWAe/LqJMJ6gu2aJT12B8MV7YS1gqt3on4tzFxoT4QeLiPURuC42kDBu3aHVhMOoDa/HLrDrxfP0cOeQE9RqVpIJL0ogs9IuN3moLKV8Y4/n0wNAJ/kBnNboL1M+QSMdNeuJzpfOdZc+8ecbb6YDIYjS5yUwCOrtgbumFAchTHcfV/YXszYVtPUBqw4onvOjN6maOEvcNo6SIKVdx31qabEHfrRMblKkSidldU8h3I79oKdOMy5PfB98/cO42oqz4v5dljYfRB5WsttTn3rBsd8QT+3d0xMq0UZBh2P3xX/zYMiz8Ow6eQcfVuLD+6G2Ow/21DrtQPMs+/8M43+sP/Bg=="), this.createVertexTemplateEntry("html=1;shape=mxgraph.sysml.itemFlow;fontStyle=1;flowDir=n;flowType=in;whiteSpace=wrap;align=center;",200,80,"eng:Engine","Item Flow North In",null,null,this.getTagsForStencil("","","sysml port flow item flow north in").join(" ")),this.createVertexTemplateEntry("html=1;shape=mxgraph.sysml.itemFlow;fontStyle=1;flowDir=e;flowType=out;whiteSpace=wrap;align=center;",200,80,"eng:Engine","Item Flow East Out",null,null,this.getTagsForStencil("","","sysml port flow item flow east out").join(" ")), -this.addEntry("sysml port flow item flow",function(){var a=new mxCell("eng: engine",new mxGeometry(40,0,100,60),"html=1;shape=mxgraph.sysml.itemFlow;fontStyle=1;strokeWidth=1;flowDir=e;flowType=none;spacingRight=20;whiteSpace=wrap;align=center;");a.vertex=!0;var c=new mxCell("trns: Translation",new mxGeometry(260,0,140,60),"html=1;shape=mxgraph.sysml.itemFlow;strokeWidth=1;fontStyle=1;flowDir=w;flowType=none;spacingLeft=15;whiteSpace=wrap;align=center;");c.vertex=!0;var e=new mxCell("Torque",new mxGeometry(0, -0,0,0),"edgeStyle=none;html=1;align=left;verticalAlign=top;endArrow=none;exitX=1;exitY=0.5;entryX=0;entryY=0.5;");e.geometry.relative=!0;e.edge=!0;var g=new mxCell("ep:EP",new mxGeometry(0,0,0,0),"resizable=0;html=1;align=left;spacingLeft=5;verticalAlign=bottom;labelPosition=left;verticalLabelPosition=bottom;labelBackgroundColor=none;fontSize=10");g.geometry.relative=!0;g.geometry.x=-1;g.setConnectable(!1);g.vertex=!0;e.insert(g);g=new mxCell("tp:TP",new mxGeometry(0,0,0,0),"resizable=0;html=1;align=right;spacingRight=5;verticalAlign=bottom;labelPosition=left;verticalLabelPosition=bottom;labelBackgroundColor=none;fontSize=10"); -g.geometry.relative=!0;g.geometry.x=1;g.setConnectable(!1);g.vertex=!0;e.insert(g);a.insertEdge(e,!0);c.insertEdge(e,!1);g=new mxCell('<p style="margin:0px;margin-top:4px;text-align:center;"><b>c1: Association-1</b></p><hr/><p style="margin:0px;margin-left:4px;text-align:left;font-size:0.9em;"><<participant>>{end = ep} epInLink : EP[1]<br/><<participant>>{end = tp} etInLink : TP[1]<hr/></p><p style="margin:0px;text-align:center;font-size:0.9em;">structure</p>',new mxGeometry(0, -120,470,250),"shape=rect;html=1;overflow=fill;whiteSpace=wrap;strokeWidth=1;recursiveResize=0;");g.vertex=!0;var h=new mxCell("",new mxGeometry(0,0,0,0),"endArrow=none;html=1;edgeStyle=elbowEdgeStyle;elbow=horizontal;dashed=1;");h.geometry.relative=!0;h.geometry.setTerminalPoint(new mxPoint(160,30),!0);h.edge=!0;g.insertEdge(h,!1);var k=new mxCell("epInLink : EP",new mxGeometry(30,100,160,120),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shape=mxgraph.sysml.itemFlowRight;fontStyle=1;spacingRight=40;whiteSpace=wrap;align=center;"); -k.vertex=!0;g.insert(k);var l=new mxCell("ep.1",new mxGeometry(160,30,0,0),"resizable=0;html=1;align=right;spacingRight=22;verticalAlign=middle;labelPosition=right;verticalLabelPosition=top;labelBackgroundColor=none;fontSize=10");l.geometry.relative=!1;l.setConnectable(!1);l.vertex=!0;k.insert(l);l=new mxCell("ep.2",new mxGeometry(160,60,0,0),"resizable=0;html=1;align=right;spacingRight=22;verticalAlign=middle;labelPosition=right;verticalLabelPosition=top;labelBackgroundColor=none;fontSize=10");l.geometry.relative= +this.addEntry("sysml port flow item flow",function(){var a=new mxCell("eng: engine",new mxGeometry(40,0,100,60),"html=1;shape=mxgraph.sysml.itemFlow;fontStyle=1;strokeWidth=1;flowDir=e;flowType=none;spacingRight=20;whiteSpace=wrap;align=center;");a.vertex=!0;var d=new mxCell("trns: Translation",new mxGeometry(260,0,140,60),"html=1;shape=mxgraph.sysml.itemFlow;strokeWidth=1;fontStyle=1;flowDir=w;flowType=none;spacingLeft=15;whiteSpace=wrap;align=center;");d.vertex=!0;var f=new mxCell("Torque",new mxGeometry(0, +0,0,0),"edgeStyle=none;html=1;align=left;verticalAlign=top;endArrow=none;exitX=1;exitY=0.5;entryX=0;entryY=0.5;");f.geometry.relative=!0;f.edge=!0;var e=new mxCell("ep:EP",new mxGeometry(0,0,0,0),"resizable=0;html=1;align=left;spacingLeft=5;verticalAlign=bottom;labelPosition=left;verticalLabelPosition=bottom;labelBackgroundColor=none;fontSize=10");e.geometry.relative=!0;e.geometry.x=-1;e.setConnectable(!1);e.vertex=!0;f.insert(e);e=new mxCell("tp:TP",new mxGeometry(0,0,0,0),"resizable=0;html=1;align=right;spacingRight=5;verticalAlign=bottom;labelPosition=left;verticalLabelPosition=bottom;labelBackgroundColor=none;fontSize=10"); +e.geometry.relative=!0;e.geometry.x=1;e.setConnectable(!1);e.vertex=!0;f.insert(e);a.insertEdge(f,!0);d.insertEdge(f,!1);e=new mxCell('<p style="margin:0px;margin-top:4px;text-align:center;"><b>c1: Association-1</b></p><hr/><p style="margin:0px;margin-left:4px;text-align:left;font-size:0.9em;"><<participant>>{end = ep} epInLink : EP[1]<br/><<participant>>{end = tp} etInLink : TP[1]<hr/></p><p style="margin:0px;text-align:center;font-size:0.9em;">structure</p>',new mxGeometry(0, +120,470,250),"shape=rect;html=1;overflow=fill;whiteSpace=wrap;strokeWidth=1;recursiveResize=0;");e.vertex=!0;var h=new mxCell("",new mxGeometry(0,0,0,0),"endArrow=none;html=1;edgeStyle=elbowEdgeStyle;elbow=horizontal;dashed=1;");h.geometry.relative=!0;h.geometry.setTerminalPoint(new mxPoint(160,30),!0);h.edge=!0;e.insertEdge(h,!1);var k=new mxCell("epInLink : EP",new mxGeometry(30,100,160,120),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shape=mxgraph.sysml.itemFlowRight;fontStyle=1;spacingRight=40;whiteSpace=wrap;align=center;"); +k.vertex=!0;e.insert(k);var l=new mxCell("ep.1",new mxGeometry(160,30,0,0),"resizable=0;html=1;align=right;spacingRight=22;verticalAlign=middle;labelPosition=right;verticalLabelPosition=top;labelBackgroundColor=none;fontSize=10");l.geometry.relative=!1;l.setConnectable(!1);l.vertex=!0;k.insert(l);l=new mxCell("ep.2",new mxGeometry(160,60,0,0),"resizable=0;html=1;align=right;spacingRight=22;verticalAlign=middle;labelPosition=right;verticalLabelPosition=top;labelBackgroundColor=none;fontSize=10");l.geometry.relative= !1;l.setConnectable(!1);l.vertex=!0;k.insert(l);l=new mxCell("ep.3",new mxGeometry(160,90,0,0),"resizable=0;html=1;align=right;spacingRight=22;verticalAlign=middle;labelPosition=right;verticalLabelPosition=top;labelBackgroundColor=none;fontSize=10");l.geometry.relative=!1;l.setConnectable(!1);l.vertex=!0;k.insert(l);l=new mxCell("tpInLink : TP",new mxGeometry(280,100,160,120),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shape=mxgraph.sysml.itemFlowLeft;fontStyle=1;spacingLeft=40;whiteSpace=wrap;align=center;"); -l.vertex=!0;g.insert(l);var m=new mxCell("tp.1",new mxGeometry(0,30,0,0),"resizable=0;html=1;align=left;spacingLeft=22;verticalAlign=middle;labelPosition=left;verticalLabelPosition=top;labelBackgroundColor=none;fontSize=10");m.geometry.relative=!1;m.setConnectable(!1);m.vertex=!0;l.insert(m);m=new mxCell("tp.2",new mxGeometry(0,60,0,0),"resizable=0;html=1;align=left;spacingLeft=22;verticalAlign=middle;labelPosition=left;verticalLabelPosition=top;labelBackgroundColor=none;fontSize=10");m.geometry.relative= +l.vertex=!0;e.insert(l);var m=new mxCell("tp.1",new mxGeometry(0,30,0,0),"resizable=0;html=1;align=left;spacingLeft=22;verticalAlign=middle;labelPosition=left;verticalLabelPosition=top;labelBackgroundColor=none;fontSize=10");m.geometry.relative=!1;m.setConnectable(!1);m.vertex=!0;l.insert(m);m=new mxCell("tp.2",new mxGeometry(0,60,0,0),"resizable=0;html=1;align=left;spacingLeft=22;verticalAlign=middle;labelPosition=left;verticalLabelPosition=top;labelBackgroundColor=none;fontSize=10");m.geometry.relative= !1;m.setConnectable(!1);m.vertex=!0;l.insert(m);m=new mxCell("tp.3",new mxGeometry(0,90,0,0),"resizable=0;html=1;align=left;spacingLeft=22;verticalAlign=middle;labelPosition=left;verticalLabelPosition=top;labelBackgroundColor=none;fontSize=10");m.geometry.relative=!1;m.setConnectable(!1);m.vertex=!0;l.insert(m);m=new mxCell("Vibration",new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;edgeStyle=none;html=1;verticalAlign=bottom;endArrow=none;exitX=1;exitY=0.25;entryX=0;entryY=0.25;labelBackgroundColor=none;"); -m.geometry.relative=!0;m.edge=!0;k.insertEdge(m,!0);l.insertEdge(m,!1);g.insert(m);m=new mxCell("Heat",new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;edgeStyle=none;html=1;verticalAlign=bottom;endArrow=none;exitX=1;exitY=0.5;entryX=0;entryY=0.5;labelBackgroundColor=none;");m.geometry.relative=!0;m.edge=!0;k.insertEdge(m,!0);l.insertEdge(m,!1);g.insert(m);m=new mxCell("Current",new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;edgeStyle=none;html=1;verticalAlign=bottom;endArrow=none;exitX=1;exitY=0.75;entryX=0;entryY=0.75;labelBackgroundColor=none;"); -m.geometry.relative=!0;m.edge=!0;k.insertEdge(m,!0);l.insertEdge(m,!1);g.insert(m);return d.createVertexTemplateFromCells([a,c,e,g,h],470,370,"Item Flow")}),this.addDataEntry("sysml port flow item flow",200,120,"Item Flow","7ZXfasIwFMafJrdSm22wS1unDBwI7gVie2yD+VOSuLY+/U6bVN1WcYNdetGQfOd84ZzfKYTQVDZLw6ryTecgCH0hNDVaO7+TTQpCkDjiOaFzEscRfiReXIlO+2hUMQPK/cYQe8MHEwfwiqte1YqrPaqEznB9X/sc61oRckonsdL5lNDElqzqVNkUXRMT21opJtyBXAhdr2CHZSQ7rdwm2DtTXWLCpmJZJ9ToQ40JXig8Zlg5GBRCZWAcNFe766XQ2hK0BGdaTKl57srQYeQJRCXwohxsAUvErBeKk/cMCzeB1zg7OsJuMv0By4DlR7btj4g0uYA39Cw8JotEuCo8tHnXWNK1zzMmZiFT8jzvbkoE24JYa8sd1xdXDPmrb2Gnq8GUsGxfGH1QeaqFRtJzpRUMU+LHfkgBT6aVgsyF6k9/062pxONTaQO3f2D/MMY+vrO/xf7pH9g/jrGnd/a32D//nT0ez29BH/vyVHwC"), +m.geometry.relative=!0;m.edge=!0;k.insertEdge(m,!0);l.insertEdge(m,!1);e.insert(m);m=new mxCell("Heat",new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;edgeStyle=none;html=1;verticalAlign=bottom;endArrow=none;exitX=1;exitY=0.5;entryX=0;entryY=0.5;labelBackgroundColor=none;");m.geometry.relative=!0;m.edge=!0;k.insertEdge(m,!0);l.insertEdge(m,!1);e.insert(m);m=new mxCell("Current",new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;edgeStyle=none;html=1;verticalAlign=bottom;endArrow=none;exitX=1;exitY=0.75;entryX=0;entryY=0.75;labelBackgroundColor=none;"); +m.geometry.relative=!0;m.edge=!0;k.insertEdge(m,!0);l.insertEdge(m,!1);e.insert(m);return b.createVertexTemplateFromCells([a,d,f,e,h],470,370,"Item Flow")}),this.addDataEntry("sysml port flow item flow",200,120,"Item Flow","7ZXfasIwFMafJrdSm22wS1unDBwI7gVie2yD+VOSuLY+/U6bVN1WcYNdetGQfOd84ZzfKYTQVDZLw6ryTecgCH0hNDVaO7+TTQpCkDjiOaFzEscRfiReXIlO+2hUMQPK/cYQe8MHEwfwiqte1YqrPaqEznB9X/sc61oRckonsdL5lNDElqzqVNkUXRMT21opJtyBXAhdr2CHZSQ7rdwm2DtTXWLCpmJZJ9ToQ40JXig8Zlg5GBRCZWAcNFe766XQ2hK0BGdaTKl57srQYeQJRCXwohxsAUvErBeKk/cMCzeB1zg7OsJuMv0By4DlR7btj4g0uYA39Cw8JotEuCo8tHnXWNK1zzMmZiFT8jzvbkoE24JYa8sd1xdXDPmrb2Gnq8GUsGxfGH1QeaqFRtJzpRUMU+LHfkgBT6aVgsyF6k9/062pxONTaQO3f2D/MMY+vrO/xf7pH9g/jrGnd/a32D//nT0ez29BH/vyVHwC"), this.addDataEntry("sysml port flow item flow",200,120,"Item Flow","7ZVdb4IwFIZ/TW8N0m3JLgXULHGJmb+gwhk09oO0dYC/fgco6hxmH/HSC0j79rzNOc9LAqGxrJeGlcWrzkAQOic0Nlq7fiXrGIQgYcAzQhMShgE+JFxcOZ12p0HJDCj3G0PYGz6Y2EOvQPmiVlztUCV0hu/5uq+xrhG+pnASO02mhEa2YGWryjpvh5jYxkox4Q7kQujqjecF9hG9a+U23t+6qgIrNiVLW6FCI2pM8FzhNsXWwaDgWwPjoL46Xif52ZagJTjTYEnFM1f4EYMeQVBA301n81wCZnshP3pPtHDhgY3DoyPwJtNvtAxYfmDbbotMozN6w8zGc7KIhKvcY0va0aIWAE+ZmPlaybOsvSsSbAtirS13XJ9fMhhWF+dOl4MrYukuN3qvslgLjbATpRUMQfFDl5MnlGqlIHV+gOMX9VMw4Xgw9UUojUd5gzgexuII73H8I46nG8TxOBYHvcfxjzie/x4Hbk9/ke7sy0/mEw=="), this.createVertexTemplateEntry("shape=rect;html=1;overflow=fill;whiteSpace=wrap;",200,80,'<p style="margin:0px;margin-top:4px;text-align:center;"><<interface>><br/><b>ISpeedObserver</b></p><hr/><p style="margin:0px;margin-top:4px;margin-left:4px;text-align:left;">notifySpeedChange(): void</p>',"Interface",null,null,this.getTagsForStencil("","","sysml port flow interface").join(" ")),this.addEntry("sysml port flow required interface",function(){var a=new mxCell("Transmission",new mxGeometry(90, -0,160,60),"html=1;shape=mxgraph.sysml.port4;fontStyle=1;whiteSpace=wrap;align=center;");a.vertex=!0;var c=new mxCell("p1",new mxGeometry(0,20,20,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;resizable=0;align=left;verticalAlign=bottom;labelPosition=right;verticalLabelPosition=top;labelBackgroundColor=none;fontSize=10;");c.geometry.relative=!1;c.setConnectable(!1);c.vertex=!0;a.insert(c);c=new mxCell("ITransCmd",new mxGeometry(0,0,0,0),"edgeStyle=none;html=1;align=left;verticalAlign=bottom;endArrow=sysMLReqInt;endSize=8;exitX=0;exitY=0.5;fillColor=#ffffff;"); -c.geometry.setTerminalPoint(new mxPoint(0,0),!1);c.geometry.relative=!0;c.geometry.x=1;c.edge=!0;a.insertEdge(c,!0);var e=new mxCell("ITransData",new mxGeometry(0,0,0,0),"edgeStyle=none;html=1;align=left;verticalAlign=top;endArrow=sysMLProvInt;endSize=12;exitX=0;exitY=0.5;fillColor=#ffffff;");e.geometry.setTerminalPoint(new mxPoint(0,60),!1);e.geometry.relative=!0;e.geometry.x=1;e.edge=!0;a.insertEdge(e,!0);return d.createVertexTemplateFromCells([a,c,e],250,60,"Required Interface")}),this.addEntry("sysml port flow provided interface", -function(){var a=new mxCell("Transmission",new mxGeometry(90,0,160,60),"html=1;shape=mxgraph.sysml.port4;fontStyle=1;whiteSpace=wrap;align=center;");a.vertex=!0;var c=new mxCell("p1",new mxGeometry(0,20,20,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;resizable=0;labelBackgroundColor=none;fontSize=10;");c.geometry.relative=!1;c.setConnectable(!1);c.vertex=!0;a.insert(c);c=new mxCell("ITransCmd",new mxGeometry(0,0,0,0),"edgeStyle=none;html=1;align=left;verticalAlign=bottom;endArrow=sysMLReqInt;endSize=8;exitX=0;exitY=0.5;fillColor=#ffffff;"); -c.geometry.setTerminalPoint(new mxPoint(0,0),!1);c.geometry.relative=!0;c.geometry.x=1;c.edge=!0;a.insertEdge(c,!0);var e=new mxCell("ITransData",new mxGeometry(0,0,0,0),"edgeStyle=none;html=1;align=left;verticalAlign=top;endArrow=sysMLProvInt;endSize=12;exitX=0;exitY=0.5;fillColor=#ffffff;");e.geometry.setTerminalPoint(new mxPoint(0,60),!1);e.geometry.relative=!0;e.geometry.x=1;e.edge=!0;a.insertEdge(e,!0);return d.createVertexTemplateFromCells([a,c,e],250,60,"Provided Interface")})];this.addPalette("sysmlPorts and Flows", -"SysML / Ports and Flows",a||!1,mxUtils.bind(this,function(a){for(var b=0;b<e.length;b++)a.appendChild(e[b](a))}))};Sidebar.prototype.addSysMLConstraintBlocksPalette=function(a){var d=this,e=[this.createVertexTemplateEntry("shape=rect;html=1;overflow=fill;whiteSpace=wrap;",200,180,'<p style="margin:0px;margin-top:4px;text-align:center;"><<constraint>><br/><b>ConstraintBlock1</b></p><hr/><p style="font-size:10px;margin:0px;margin-top:4px;text-align:center;"><i>constraints</i></p><p style="margin:0px;margin-top:4px;margin-left:10px;text-align:left;">{{L1} x > y }<br/>nested: ConstraintBlock2</p><hr/><p style="font-size:10px;margin:0px;margin-top:4px;text-align:center;"><i>parameters</i></p><p style="margin:0px;margin-top:4px;margin-left:10px;text-align:left;">x: Real<br/>y: Real</p>', -"Constraint Block",null,null,this.getTagsForStencil("","","sysml constraint block ").join(" ")),this.addEntry("sysml constraint block parametric diagram",function(){var a=new mxCell('<p style="margin:0px;margin-top:4px;margin-left:10px;text-align:left;"><b>par</b> Block1</p>',new mxGeometry(0,0,300,170),"html=1;shape=mxgraph.sysml.package;labelX=120;align=left;spacingLeft=10;overflow=fill;whiteSpace=wrap;strokeWidth=1;recursiveResize=0;");a.vertex=!0;var c=new mxCell("C1: Constraint",new mxGeometry(130, -50,150,100),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shape=mxgraph.sysml.paramDgm;fontStyle=1;whiteSpace=wrap;align=center;");c.vertex=!0;a.insert(c);var e=new mxCell("x:",new mxGeometry(0,25,0,0),"html=1;resizable=0;align=left;verticalAlign=middle;labelPosition=left;verticalLabelPosition=middle;labelBackgroundColor=none;fontSize=10;spacingLeft=22;fontStyle=1;");e.geometry.relative=!1;e.setConnectable(!1);e.vertex=!0;c.insert(e);e=new mxCell("y:",new mxGeometry(0,75,0,0), -"html=1;resizable=0;align=left;verticalAlign=middle;labelPosition=left;verticalLabelPosition=middle;labelBackgroundColor=none;fontSize=10;spacingLeft=22;fontStyle=1;");e.geometry.relative=!1;e.setConnectable(!1);e.vertex=!0;c.insert(e);var g=new mxCell("length: Real",new mxGeometry(30,65,20,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;fontSize=10;verticalLabelPosition=top;verticalAlign=bottom;");g.vertex=!0;a.insert(g);e=new mxCell("width: Real",new mxGeometry(30, -115,20,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;fontSize=10;verticalLabelPosition=top;verticalAlign=bottom;");e.vertex=!0;a.insert(e);var h=new mxCell("",new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;endArrow=none;html=1;edgeStyle=none;exitY=0.25;exitX=0;entryY=0.5;entryX=1;");h.geometry.relative=!0;h.geometry.x=1;h.edge=!0;c.insertEdge(h,!0);g.insertEdge(h,!1);a.insert(h);g=new mxCell("",new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;endArrow=none;html=1;edgeStyle=none;exitY=0.75;exitX=0;entryY=0.5;entryX=1;"); -g.geometry.relative=!0;g.geometry.x=1;g.edge=!0;c.insertEdge(g,!0);e.insertEdge(g,!1);a.insert(g);return d.createVertexTemplateFromCells([a],300,170,"Parametric Diagram")}),this.addDataEntry("sysml constraint block constraint property",150,100,"Constraint Property","7VTLbsIwEPwaX1FIinrOo+VCpap8gUkW26ofkW1Kwtd3nRgoDaituPYQyZ7dsXdmIpOsVN3S0pa/mAYkyZ5IVlpj/LhSXQlSkjQRDckqkqYJfiR9vlGdD9WkpRa0/w0hHQkfVO5gRMo5yfLSaOctFdrHE53vZWzgXuGYFbYVjtM2oKpjQcHM9U7JGd5OVcUUNmyN9utIDYQ9Fx7WLa0DsEcOYlQKpnFb48hgEYgjgfXQ3ZQ1QFHTEowCb3ts2YvG89ixGKUnHATjR1oSQepGgJ24Z5dwEY26blo2MQ3nzBF5Ayonfllw4kA3wzZBeV/8O0qXsMX5iiBZ1FTmEVaiaQKtkHQD8tU44YW50r/6Vr7kFbR+Z9bsdFMaadDgShsNx3DEYcgmDOYwF6HZaji8CvZO8hvF1UZrqH3UdPrHfoosvR5ZH6uL+4N5mATT/wdzbzCPfw8Gt+cnbKhdvHCf"), +0,160,60),"html=1;shape=mxgraph.sysml.port4;fontStyle=1;whiteSpace=wrap;align=center;");a.vertex=!0;var d=new mxCell("p1",new mxGeometry(0,20,20,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;resizable=0;align=left;verticalAlign=bottom;labelPosition=right;verticalLabelPosition=top;labelBackgroundColor=none;fontSize=10;");d.geometry.relative=!1;d.setConnectable(!1);d.vertex=!0;a.insert(d);d=new mxCell("ITransCmd",new mxGeometry(0,0,0,0),"edgeStyle=none;html=1;align=left;verticalAlign=bottom;endArrow=sysMLReqInt;endSize=8;exitX=0;exitY=0.5;fillColor=#ffffff;"); +d.geometry.setTerminalPoint(new mxPoint(0,0),!1);d.geometry.relative=!0;d.geometry.x=1;d.edge=!0;a.insertEdge(d,!0);var f=new mxCell("ITransData",new mxGeometry(0,0,0,0),"edgeStyle=none;html=1;align=left;verticalAlign=top;endArrow=sysMLProvInt;endSize=12;exitX=0;exitY=0.5;fillColor=#ffffff;");f.geometry.setTerminalPoint(new mxPoint(0,60),!1);f.geometry.relative=!0;f.geometry.x=1;f.edge=!0;a.insertEdge(f,!0);return b.createVertexTemplateFromCells([a,d,f],250,60,"Required Interface")}),this.addEntry("sysml port flow provided interface", +function(){var a=new mxCell("Transmission",new mxGeometry(90,0,160,60),"html=1;shape=mxgraph.sysml.port4;fontStyle=1;whiteSpace=wrap;align=center;");a.vertex=!0;var d=new mxCell("p1",new mxGeometry(0,20,20,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;resizable=0;labelBackgroundColor=none;fontSize=10;");d.geometry.relative=!1;d.setConnectable(!1);d.vertex=!0;a.insert(d);d=new mxCell("ITransCmd",new mxGeometry(0,0,0,0),"edgeStyle=none;html=1;align=left;verticalAlign=bottom;endArrow=sysMLReqInt;endSize=8;exitX=0;exitY=0.5;fillColor=#ffffff;"); +d.geometry.setTerminalPoint(new mxPoint(0,0),!1);d.geometry.relative=!0;d.geometry.x=1;d.edge=!0;a.insertEdge(d,!0);var f=new mxCell("ITransData",new mxGeometry(0,0,0,0),"edgeStyle=none;html=1;align=left;verticalAlign=top;endArrow=sysMLProvInt;endSize=12;exitX=0;exitY=0.5;fillColor=#ffffff;");f.geometry.setTerminalPoint(new mxPoint(0,60),!1);f.geometry.relative=!0;f.geometry.x=1;f.edge=!0;a.insertEdge(f,!0);return b.createVertexTemplateFromCells([a,d,f],250,60,"Provided Interface")})];this.addPalette("sysmlPorts and Flows", +"SysML / Ports and Flows",a||!1,mxUtils.bind(this,function(a){for(var b=0;b<e.length;b++)a.appendChild(e[b](a))}))};Sidebar.prototype.addSysMLConstraintBlocksPalette=function(a){var b=this,e=[this.createVertexTemplateEntry("shape=rect;html=1;overflow=fill;whiteSpace=wrap;",200,180,'<p style="margin:0px;margin-top:4px;text-align:center;"><<constraint>><br/><b>ConstraintBlock1</b></p><hr/><p style="font-size:10px;margin:0px;margin-top:4px;text-align:center;"><i>constraints</i></p><p style="margin:0px;margin-top:4px;margin-left:10px;text-align:left;">{{L1} x > y }<br/>nested: ConstraintBlock2</p><hr/><p style="font-size:10px;margin:0px;margin-top:4px;text-align:center;"><i>parameters</i></p><p style="margin:0px;margin-top:4px;margin-left:10px;text-align:left;">x: Real<br/>y: Real</p>', +"Constraint Block",null,null,this.getTagsForStencil("","","sysml constraint block ").join(" ")),this.addEntry("sysml constraint block parametric diagram",function(){var a=new mxCell('<p style="margin:0px;margin-top:4px;margin-left:10px;text-align:left;"><b>par</b> Block1</p>',new mxGeometry(0,0,300,170),"html=1;shape=mxgraph.sysml.package;labelX=120;align=left;spacingLeft=10;overflow=fill;whiteSpace=wrap;strokeWidth=1;recursiveResize=0;");a.vertex=!0;var d=new mxCell("C1: Constraint",new mxGeometry(130, +50,150,100),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shape=mxgraph.sysml.paramDgm;fontStyle=1;whiteSpace=wrap;align=center;");d.vertex=!0;a.insert(d);var f=new mxCell("x:",new mxGeometry(0,25,0,0),"html=1;resizable=0;align=left;verticalAlign=middle;labelPosition=left;verticalLabelPosition=middle;labelBackgroundColor=none;fontSize=10;spacingLeft=22;fontStyle=1;");f.geometry.relative=!1;f.setConnectable(!1);f.vertex=!0;d.insert(f);f=new mxCell("y:",new mxGeometry(0,75,0,0), +"html=1;resizable=0;align=left;verticalAlign=middle;labelPosition=left;verticalLabelPosition=middle;labelBackgroundColor=none;fontSize=10;spacingLeft=22;fontStyle=1;");f.geometry.relative=!1;f.setConnectable(!1);f.vertex=!0;d.insert(f);var e=new mxCell("length: Real",new mxGeometry(30,65,20,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;fontSize=10;verticalLabelPosition=top;verticalAlign=bottom;");e.vertex=!0;a.insert(e);f=new mxCell("width: Real",new mxGeometry(30, +115,20,20),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;fontSize=10;verticalLabelPosition=top;verticalAlign=bottom;");f.vertex=!0;a.insert(f);var h=new mxCell("",new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;endArrow=none;html=1;edgeStyle=none;exitY=0.25;exitX=0;entryY=0.5;entryX=1;");h.geometry.relative=!0;h.geometry.x=1;h.edge=!0;d.insertEdge(h,!0);e.insertEdge(h,!1);a.insert(h);e=new mxCell("",new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;endArrow=none;html=1;edgeStyle=none;exitY=0.75;exitX=0;entryY=0.5;entryX=1;"); +e.geometry.relative=!0;e.geometry.x=1;e.edge=!0;d.insertEdge(e,!0);f.insertEdge(e,!1);a.insert(e);return b.createVertexTemplateFromCells([a],300,170,"Parametric Diagram")}),this.addDataEntry("sysml constraint block constraint property",150,100,"Constraint Property","7VTLbsIwEPwaX1FIinrOo+VCpap8gUkW26ofkW1Kwtd3nRgoDaituPYQyZ7dsXdmIpOsVN3S0pa/mAYkyZ5IVlpj/LhSXQlSkjQRDckqkqYJfiR9vlGdD9WkpRa0/w0hHQkfVO5gRMo5yfLSaOctFdrHE53vZWzgXuGYFbYVjtM2oKpjQcHM9U7JGd5OVcUUNmyN9utIDYQ9Fx7WLa0DsEcOYlQKpnFb48hgEYgjgfXQ3ZQ1QFHTEowCb3ts2YvG89ixGKUnHATjR1oSQepGgJ24Z5dwEY26blo2MQ3nzBF5Ayonfllw4kA3wzZBeV/8O0qXsMX5iiBZ1FTmEVaiaQKtkHQD8tU44YW50r/6Vr7kFbR+Z9bsdFMaadDgShsNx3DEYcgmDOYwF6HZaji8CvZO8hvF1UZrqH3UdPrHfoosvR5ZH6uL+4N5mATT/wdzbzCPfw8Gt+cnbKhdvHCf"), this.addDataEntry("sysml constraint block constraint property",150,120,"Constraint Property","3VTLboMwEPwaHxMRk0a9xtDmkkpR0x9wwAGrflDbSUi/vmswIPJQK/VS9YDwzu7Y3pkFFCeyXhlalS86ZwLFTyhOjNauXck6YUIgHPEcxSnCOIIH4ec72VmTjSpqmHI/IeCWcKTiwFoE4YUAKqkAtu4sWnjxcfBXIpKagisUL6Oq7sOJ0xVA8wZyrHYTKnjhqzK4BjOADjvAqghvKoFGxHWUaWWdoRx66PAxp4ua6p3x/Q3btmAHJDO4B/SS9HvOuhqg7S55gFWXWDk+AI+UwaWTYFsKxxBb0sqjsi68o1N7tlJMfTcb4yUi+sjMXugT1Ow5GBGTU8kd21Y087wTsPojoBS0vOtrAwVTV0xL5swZSk48d2WoeGi9j0rGi7KjhYGIqG2BoucOYwKLMCm3pya+mpq6FfmVUXElkGGWf9JdE0ZezkGwMCepYHuvrW+ZZ1QsAyx5nnsaEXTHxEZb7ri+Ub++SI95hGbvhdEHlSdaaJjGVGnlsxZk56pYN5ulXs4OevNupV6rmOy1ctvQzax3B0xVLHOhrf47+841fNu135gxvzLj/C/NePyDZkA4/Kub3OhX/gU=")]; -this.addPalette("sysmlConstraint Blocks","SysML / Constraint Blocks",a||!1,mxUtils.bind(this,function(a){for(var b=0;b<e.length;b++)a.appendChild(e[b](a))}))};Sidebar.prototype.addSysMLActivitiesPalette=function(a){var d=this,e=[this.createVertexTemplateEntry("shape=rect;html=1;rounded=1;whiteSpace=wrap;align=center;",160,80,"Action","Action",null,null,this.getTagsForStencil("","","sysml activity action").join(" ")),this.createVertexTemplateEntry("html=1;shape=mxgraph.sysml.callBehAct;whiteSpace=wrap;align=center;", +this.addPalette("sysmlConstraint Blocks","SysML / Constraint Blocks",a||!1,mxUtils.bind(this,function(a){for(var b=0;b<e.length;b++)a.appendChild(e[b](a))}))};Sidebar.prototype.addSysMLActivitiesPalette=function(a){var b=this,e=[this.createVertexTemplateEntry("shape=rect;html=1;rounded=1;whiteSpace=wrap;align=center;",160,80,"Action","Action",null,null,this.getTagsForStencil("","","sysml activity action").join(" ")),this.createVertexTemplateEntry("html=1;shape=mxgraph.sysml.callBehAct;whiteSpace=wrap;align=center;", 160,80,"action name:\nbehavior name","Call Behavior Action",null,null,this.getTagsForStencil("","callBehAct","sysml activity call behavior action").join(" ")),this.createVertexTemplateEntry("html=1;shape=mxgraph.sysml.accEvent;strokeWidth=2;whiteSpace=wrap;align=center;",100,60,"Event","Accept Event Action",null,null,this.getTagsForStencil("","accEvent","sysml activity accept event action").join(" ")),this.createVertexTemplateEntry("html=1;shape=mxgraph.sysml.timeEvent;strokeWidth=2;verticalLabelPosition=bottom;verticalAlignment=top;", 35,40,"","Time Event",null,null,this.getTagsForStencil("","timeEvent","sysml activity time event").join(" ")),this.createVertexTemplateEntry("html=1;shape=mxgraph.sysml.sendSigAct;strokeWidth=2;whiteSpace=wrap;align=center;",100,60,"Signal","Send Signal Action",null,null,this.getTagsForStencil("","sendSigAct","sysml activity send signal action").join(" ")),this.createVertexTemplateEntry("html=1;shape=mxgraph.sysml.actFinal;strokeWidth=2;verticalLabelPosition=bottom;verticalAlignment=top;",40,40,"", "Activity Final",null,null,this.getTagsForStencil("","actFinal","sysml activity activity final").join(" ")),this.createVertexTemplateEntry("html=1;shape=mxgraph.sysml.actParamNode;align=left;spacingLeft=15;verticalAlign=top;spacingTop=-3;",300,135,"act","Activity Parameter Node",null,null,this.getTagsForStencil("","act","sysml activity activity parameter node").join(" ")),this.createVertexTemplateEntry("shape=rect;rounded=1;html=1;whiteSpace=wrap;align=center;",160,80,"<<controlOperator>>\nCallBehaviorAction", @@ -7547,117 +7208,117 @@ this.createVertexTemplateEntry("shape=ellipse;html=1;illColor=#000000;strokeWidt this.addDataEntry("sysml activity is control",300,60,"Is Control","zVTLboMwEPwaXyMCbaMeA0lzqlQpl/bowApbMjYymwD5+q7BQEgTKYdW6gFpd/bh8Qwyi5Ki2VleineTgWLRlkWJNQb7qGgSUIqFgcxYtGFhGNDHwrc71WVXDUpuQeMjA2E/cOLqCD2yTlEa3cMVtsrDAgsit1myKK4ELx1aNLnjvajaqlALWSVGozXUFddCIuxLnrq2mpoI40rmmtKUmIElwJ8MFqG5y76DPPUdmALQttTiB177ywW1zFD4AX/hQIDMhd/y4jFe9Xk+bpqkocCrc1up6IdSbBWn/sqrzQ/BIMth71NQB1NvJyC+ULOrUSyMlWdax52AFXKLa2u7iimBhIutOeoMHJvAjelsqGuj3U6npEy5WnuhDwbRFK61kfg5jFH85eLF83DMXp4dx2U4euKozxypzNGmMPtjHjDJguIoT/NVtyzwox9G0sYwaL3gV6YR1xzQN135Np76kJVPf2zl4MTcpps23jeN2LSjay6ZbKOl/860ZjDNu/bbJlI6vYp9++Wj+Q0="), this.addDataEntry("sysml activity is stream",300,60,"Is Stream","zVTLboMwEPwaXyMCbaMeA0lzqlQpl/bowAos2RjZmwD5+q7BQEgTKYdW6gFpd/bhYQbMokQ1O8Or4l1nIFm0ZVFitMY+Uk0CUrIwEBmLNiwMA3pY+HanuuyqQcUNlPjIQNgPnLg8Qo+sUxS67GGLrfRwgYrIbZYsim3BK4eqJne8F7a1Si6ETXSJRlNXXBcCYV/x1LXV1EQYlyIvKU2JGRgC/MlgEJq77DvIU9+BVoCmpRY/8Nq/XFCLDAs/4F84KEDkhd/y4jFu+zwfN03SUODVua1U9EMptootGuCKrTY/9IIsh71PQR50vZ2A+ELMrkZxoY04k4Dc6WeRG1wb01V0BaRbbPSxzMCRCdxYmQ31UpdupxNSpFyuvc4HjaiVa20Efg5jFH+5ePE8HLMXZ8dxGY6WOOozQ6w+mhRmH8wDHhmQHMVpvuqWA370QwvaGAat1/vKM+KaA/qmK9vGUx9y8ulvnRyMmLt008X7ntGf1I6muWRyjZb+O8+awTNv2m97SOl0J/btl1fmNw=="), this.addDataEntry("sysml activity is stream",300,60,"Is Stream","zVTJboMwEP0aXyMCbaUes58qVeKSHl0YYUtekJkEyNd3DCaQTcohhx6QZt4sfn7PgiUr3ewcL8WXzUGxZMOSlbMW+0g3K1CKxZHMWbJmcRzRx+Ltg+q8q0Yld2DwmYG4HzhydYAeWWQorenhClsVYIGayK3nLFlWgpce1U3hec+qttJqJqsUHXBNDbWQCGnJM99VUw9hXMnCUJoRMXAEhIPBITQPyXdQYL4DqwFdSy1h4LO/W1TLHEUYCPeNBMhChC0fAeNVnxfnTaMyFARx7guV3Ah1IxHkBaQhBfVr680ILCf6dTWKhXXyZA1y5UVF7nDhXFexJZBWS2cPJgdPIPJjJh/qxhq/ExqJ+6FK8Y+PZ+/DtlSePJV5fFbbM7zQurIHl8HFU3hCfgeKozxerronbhj9tpI2xlEbpLyyg7gWgKHpypHzqU+Z9PZ6k/wDlVln0cSABwYR0f00GQ2h2X9nRzPYEfx4tT2Ujj+yvn36n/sD"), -this.addEntry("sysml activity is stream",function(){var a=new mxCell("act",new mxGeometry(0,0,200,100),"html=1;shape=mxgraph.sysml.isActStream;align=left;spacingLeft=5;verticalAlign=top;spacingTop=-3;");a.vertex=!0;var c=new mxCell("{stream}",new mxGeometry(200,50,0,0),"resizable=0;html=1;align=left;verticalAlign=top;labelPosition=left;verticalLabelPosition=middle;labelBackgroundColor=none;fontSize=10;spacingTop=5;");c.geometry.relative=!1;c.setConnectable(!1);c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a], +this.addEntry("sysml activity is stream",function(){var a=new mxCell("act",new mxGeometry(0,0,200,100),"html=1;shape=mxgraph.sysml.isActStream;align=left;spacingLeft=5;verticalAlign=top;spacingTop=-3;");a.vertex=!0;var d=new mxCell("{stream}",new mxGeometry(200,50,0,0),"resizable=0;html=1;align=left;verticalAlign=top;labelPosition=left;verticalLabelPosition=middle;labelBackgroundColor=none;fontSize=10;spacingTop=5;");d.geometry.relative=!1;d.setConnectable(!1);d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a], 250,100,"Is Stream")}),this.addDataEntry("sysml activity local pre precondition post postcondition",150,180,"Local Pre- and Postconditions","5ZVNb4MwDIZ/Te6QtL33a71s0qQeds7Ag2ghQcEtbX/9HEhbEEWqtHWatAPCfp03kCeGMLEsDhsny/zFpqCZWDOxdNZiGxWHJWjNeKRSJlaM84guxp9GqnFTjUrpwOA9Bt4a9lLvoFW0TaR+dZBYkypU1jA+Y1zEERML0ip0UtHcja3Cow62KpelD41Fui1yLGgtq5jCSp18IZ76GJ39hDeVYk4SJ0VqlRmKNXygH1DKRJnsuclW3lLnCmFLsp+kJlAdU0KrBEdCWAU4hMMoiUYKGDZgC0B3pCF1eBs/ItCKclBZHmyToMmqzbOL9cqVgoD2NmYxwDxPWrYjGIk/9jE6uzMppGeoA5AP53Q2BBzHNp1N27RLMbpBcfoDFCcjzWor/DfdGgy8vwvxuUm72yAe1MzTwTYM+EKawTakoN9tvb4KXdpNjeLcOnWyBqXudbrfRTDp3LlmlLEGLvj8I3rwKrtzCfR+ayhdBtj7BO9A7EBLVPv+7N8BNvv7wMQQ2OTXgFF6PfGaWu9A/AI="), this.addDataEntry("sysml activity merge node",200,80,"Merge Node","7ZXPboMwDMafJncInbRrS7teNqlSnyAUC6KFGAXTf0+/hKQUunbrpE7aYQck53PsON8PKSxJq/3SiLp8wxwUSxYsSQ0i+ajap6AU45HMWTJnnEf2Y/zlRjbuslEtDGi6p4D7gq1QLXjFCw0dVBCaUtQuNCVWWduwZFZSZQedxzbcgiG5EepVZKBW2EiSqG2OsB5kp0oWuvIjZUiElU2Gk+0W2N+cvpPC6EvACsgc7JZQ8OwvF+1kTqWXJkEqQRYljTXR+HXRNzo7Y4NgznWjku+NgryAdViCynC3OAtDz7qcjUs08oiahE3MhLPIuezHHls3tM1gq3NwU0V2pZzvM7F5Lzo9RYXGpjRqdyjofGpMdxjWoL2ylkc3Ycx7Bm7wEYEGW7OB0R9yBxQDSpDcjltd8zyUrlDajj3MOAqYDmO4pw4kTAEUii7A9VPcxXLyeJYnXF+Ra+wN6DOPkxKY/YRv1/Gv8uQXPPmv8Xz65/mbPB/Nzy7PD5zfPnz/PgA="), this.addDataEntry("sysml activity no buffer",300,60,"No Buffer","zZTBboMwDIafJteKwlZpx9JuPU2a1Mt2TMGFSCFGwW2hTz8HApSulXrYoQck+4/t2P4AEa2KemNlmX9iClpE7yJaWUTqrKJegdYiDFQqorUIw4AfEX7cOZ23p0EpLRh6JCHsEo5SH6BTlgkpNJ1cUaO9nFPBza3nIoqrXJZOLerM9T2rmqrQM1Wt0JBFjopPuSLYljJxYScOYk1qlRl2E+4MLAv+ZrAE9d3uW8m3vgEsgGzDIT7hrRsuOKmUcp/gBw5yUFnuqyy8JqvOz4ZK42rY8Nu5vanoz6ZEuJCFG01TO86lZzA+7Pc8Z69mkxjvXe0Y0gy23gW9w9P7KMQXANoztnO06sxLl27nFUlLS2vbEyyBdx1bPJgU3ACBSzNpf27QuJpu+SqReunZ7JAICxdaK/ru09j+cfbstb9mq86ux3k4TOFan0Cs8GATmLxkD3C1oCWp47TULWo+9QsVVwyDxjO64sy9ZkA+6Ar1cOtD9F+ej34Pb0r2Jvn7nPmLbQbQzhlJc9Gn41z3nD3o/+bO7vjv7cIvf82/"), -this.createVertexTemplateEntry("shape=rect;html=1;whiteSpace=wrap;align=center;",160,80,"object node name:\n type name\n[state, state ...]","Object Node",null,null,this.getTagsForStencil("","","sysml activity object node").join(" ")),this.addEntry("sysml activity object node",function(){var a=new mxCell("Action",new mxGeometry(0,0,120,60),"html=1;shape=mxgraph.sysml.isControl;whiteSpace=wrap;align=center;");a.vertex=!0;var c=new mxCell("pin name: type name\n[state, state ...]",new mxGeometry(0,30, -0,0),"resizable=0;html=1;align=right;verticalAlign=middle;labelPosition=left;verticalLabelPosition=middle;labelBackgroundColor=none;spacingRight=5;");c.geometry.relative=!1;c.setConnectable(!1);c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,"Object Node")}),this.addDataEntry("sysml activity optional",300,60,"Optional","zZTBboMwDIafJteKwlZpx9J2PU2a1Mt2TMGCSAlGwS3Qp58DAUrXSj3ssAOS/cd2bH+AiDam2VtZ5h+YghbRTkQbi0i9ZZoNaC3CQKUi2oowDPgR4fuD02V3GpTSQkHPJIR9wlnqE/TKOiGFRS9X1Gov52S4ue1SRHGVy9Kppslc34uqrYxeqGqDBVnkqLjOFcGhlIkLqzmINalVVrCbcGdgWfA3gyVoHnbfSb71PaABsi2H+IS3frigVinlPsEPHOSgstxXWXlNVr2fjZWm1bDht3N/U9GvTYlwJY0bTVM3zrWHpdui1KOazWK8d7NjSDM4eBf0EevdJMRXALoztnO06sJLl27nFUlLa2u7EyyBdx1bPBUpuAECl1akw3mBhavplq8SqdeezRGJ0LjQRtHXkMb2t7MXr8M1B3VxPS7DcQrX+gxihSebwOwle4KrBS1Jneel7lHzqZ+ouGIYtJ7RDWfuNQPyQTeox1ufov/y/+gP8OZk75J/zJm/2HYE7ZyJNBf9d5ybgbMH/dfc2Z3+vX349a/5Bw=="), -this.addEntry("sysml activity optional",function(){var a=new mxCell("act",new mxGeometry(0,0,200,100),"html=1;shape=mxgraph.sysml.isActStream;align=left;spacingLeft=5;verticalAlign=top;spacingTop=-3;fontStyle=1;");a.vertex=!0;var c=new mxCell("<<optional>>",new mxGeometry(200,50,0,0),"resizable=0;html=1;align=left;verticalAlign=top;labelPosition=left;verticalLabelPosition=middle;labelBackgroundColor=none;fontSize=10;spacingTop=5;");c.geometry.relative=!1;c.setConnectable(!1);c.vertex= -!0;a.insert(c);return d.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,"Optional")}),this.addDataEntry("sysml activity overwrite",300,60,"Overwrite","zZTBboMwDIafJteKwlZpx9J2PU2a1Mt2TMGCSCFGwS3Qp58DAUrXSj3ssAOS/cd2bH+AiDZFs7eyzD8wBS2inYg2FpF6q2g2oLUIA5WKaCvCMOBHhO8PTpfdaVBKC4aeSQj7hLPUJ+iVdUIKTS9X1Gov51Rwc9uliOIql6VTiyZzfS+qtir0QlUbNGSRo+I6VwSHUiYurOYg1qRWmWE34c7AsuBvBkvQPOy+k3zre8ACyLYc4hPe+uGCWqWU+wQ/cJCDynJfZeU1WfV+NlaaVsOG3879TUW/NiXClSzcaJq6ca495Llqy1sY5WwW5L2bJUOawcG7oI9Y7yYhviLQnbGdo1UX3rp0S69IWlpb251gCbzs2OLJpOAmCFyaSYdzg8bVdNtXidRrD+eIRFi40EbR15DG9rezF6/DNQd1cT0uw3EK1/qMYoUnm8DsLXsCrAUtSZ3npe5h86mfqLhiGLQe0g1o7jUD8kE3rMdbn8L/8g/xD/TmaO+ifwyav9l2JO2cCTUX/XegmwG0J/3X4Nmd/r59+PXP+Qc="), +this.createVertexTemplateEntry("shape=rect;html=1;whiteSpace=wrap;align=center;",160,80,"object node name:\n type name\n[state, state ...]","Object Node",null,null,this.getTagsForStencil("","","sysml activity object node").join(" ")),this.addEntry("sysml activity object node",function(){var a=new mxCell("Action",new mxGeometry(0,0,120,60),"html=1;shape=mxgraph.sysml.isControl;whiteSpace=wrap;align=center;");a.vertex=!0;var d=new mxCell("pin name: type name\n[state, state ...]",new mxGeometry(0,30, +0,0),"resizable=0;html=1;align=right;verticalAlign=middle;labelPosition=left;verticalLabelPosition=middle;labelBackgroundColor=none;spacingRight=5;");d.geometry.relative=!1;d.setConnectable(!1);d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,"Object Node")}),this.addDataEntry("sysml activity optional",300,60,"Optional","zZTBboMwDIafJteKwlZpx9J2PU2a1Mt2TMGCSAlGwS3Qp58DAUrXSj3ssAOS/cd2bH+AiDam2VtZ5h+YghbRTkQbi0i9ZZoNaC3CQKUi2oowDPgR4fuD02V3GpTSQkHPJIR9wlnqE/TKOiGFRS9X1Gov52S4ue1SRHGVy9Kppslc34uqrYxeqGqDBVnkqLjOFcGhlIkLqzmINalVVrCbcGdgWfA3gyVoHnbfSb71PaABsi2H+IS3frigVinlPsEPHOSgstxXWXlNVr2fjZWm1bDht3N/U9GvTYlwJY0bTVM3zrWHpdui1KOazWK8d7NjSDM4eBf0EevdJMRXALoztnO06sJLl27nFUlLa2u7EyyBdx1bPBUpuAECl1akw3mBhavplq8SqdeezRGJ0LjQRtHXkMb2t7MXr8M1B3VxPS7DcQrX+gxihSebwOwle4KrBS1Jneel7lHzqZ+ouGIYtJ7RDWfuNQPyQTeox1ufov/y/+gP8OZk75J/zJm/2HYE7ZyJNBf9d5ybgbMH/dfc2Z3+vX349a/5Bw=="), +this.addEntry("sysml activity optional",function(){var a=new mxCell("act",new mxGeometry(0,0,200,100),"html=1;shape=mxgraph.sysml.isActStream;align=left;spacingLeft=5;verticalAlign=top;spacingTop=-3;fontStyle=1;");a.vertex=!0;var d=new mxCell("<<optional>>",new mxGeometry(200,50,0,0),"resizable=0;html=1;align=left;verticalAlign=top;labelPosition=left;verticalLabelPosition=middle;labelBackgroundColor=none;fontSize=10;spacingTop=5;");d.geometry.relative=!1;d.setConnectable(!1);d.vertex= +!0;a.insert(d);return b.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,"Optional")}),this.addDataEntry("sysml activity overwrite",300,60,"Overwrite","zZTBboMwDIafJteKwlZpx9J2PU2a1Mt2TMGCSCFGwS3Qp58DAUrXSj3ssAOS/cd2bH+AiDZFs7eyzD8wBS2inYg2FpF6q2g2oLUIA5WKaCvCMOBHhO8PTpfdaVBKC4aeSQj7hLPUJ+iVdUIKTS9X1Gov51Rwc9uliOIql6VTiyZzfS+qtir0QlUbNGSRo+I6VwSHUiYurOYg1qRWmWE34c7AsuBvBkvQPOy+k3zre8ACyLYc4hPe+uGCWqWU+wQ/cJCDynJfZeU1WfV+NlaaVsOG3879TUW/NiXClSzcaJq6ca495Llqy1sY5WwW5L2bJUOawcG7oI9Y7yYhviLQnbGdo1UX3rp0S69IWlpb251gCbzs2OLJpOAmCFyaSYdzg8bVdNtXidRrD+eIRFi40EbR15DG9rezF6/DNQd1cT0uw3EK1/qMYoUnm8DsLXsCrAUtSZ3npe5h86mfqLhiGLQe0g1o7jUD8kE3rMdbn8L/8g/xD/TmaO+ifwyav9l2JO2cCTUX/XegmwG0J/3X4Nmd/r59+PXP+Qc="), this.createVertexTemplateEntry("html=1;shape=mxgraph.sysml.paramSet;whiteSpace=wrap;align=center;",160,100,"Action","Parameter Set",null,null,this.getTagsForStencil("","paramSet","sysml activity parameter set").join(" ")),this.createVertexTemplateEntry("html=1;shape=mxgraph.sysml.paramActSet;align=left;spacingLeft=15;verticalAlign=top;spacingTop=-3;fontStyle=1;",250,120,"act","Parameter Set",null,null,this.getTagsForStencil("","paramActSet","sysml activity parameter set").join(" ")),this.addDataEntry("sysml activity probability", 120,160,"Probability","zVTLboMwEPwaXyNi2uQcoM2llSqlP2DMBqwaG9lOA/n6rsEhb7WRqqoHJO/sjj2eQSZxWrdLw5rqVRcgSfxE4tRo7YZV3aYgJaGRKEicEUoj/Ah9vtGd9t2oYQaU+wmBDoRPJjcwIAvuhFYDbF0nA1y5GsVlUxIntmKNR+u29LontrO1nDRG5ywXUrgOZ7aVcLBqGPeDWxxDjElRKiw5agODQDgbjIP2pv4eCuKXoGtwpsORrShcFSbCHaMKRFntabMAMjsA5cg92IGL4Mh1d+ILd8g88fqO7oqH+86M0HiKy6QfXjXAxVpwNngZkXl24agBK3Ys70tPPHJ475SEtfNbokO4l1wEONfO6RobkuUg37QV/TEX8y9n7VNewvhHafRGFamWGvPIlFYoJllr5VZi53X1N7IYo1BlEtgZfRyz41op4C7cYvzbvsuUXs+0PcuzG+qHX0jy4X8m6XRzf4xHpHszfPfUPw9wrO9IEMvDK9j3Th7JLw=="), this.addDataEntry("sysml activity probability",120,160,"Probability","zVRdb4MgFP01PK6x0I/nqVtfuqRJ9wdQqZIh1yDttL9+gFRb22Zrsix7MOGec0+4nCMgEpXNStGqeIOMCUReEIkUgO5WZRMxIRAOeIZIjDAOzIfw6x126tigoopJ/RMB7gQHKvasQ2iqO6zWrfBYoUszWTxFJKwLWlm0bHI79KRu61JMjGijIDE8FTyXhhdsp217RVMu87Wr4rlBDkxpnlLx7Bs1VEPfuy3iJ2KQHUi99SPYjf2gRs2au4d1kD/pikHJtGpNyyfPdOE7vCFBwXhenGQLD9K6A/JeO3hnFt6+21aSKyvRMrTzGWNowgXXdhTHLBAm08CaYZu3FUv5zniiOUjbsoyvElCs5keauNIKzxIZOT72NwGtoTSEoAkTG6i52+aqfz2iL3UhTT9yBXuZRSBAGV6CZKeY+NGlFAxBhl4d43mfXQpSslT7U/S/5neZ4tuZNqM8266e/UKSs/+ZZHdTHozxTPRoht1l/OsA+/qBBE05PJmOu3hRvwA="), this.createVertexTemplateEntry("shape=rect;html=1;whiteSpace=wrap;align=center;",120,60,"<<continuous>>\nObject Node","Rate",null,null,this.getTagsForStencil("","","sysml activity rate").join(" ")),this.createVertexTemplateEntry("shape=rect;html=1;whiteSpace=wrap;align=center;",120,60,"<<discrete>>\nObject Node","Rate",null,null,this.getTagsForStencil("","","sysml activity rate").join(" ")),this.createVertexTemplateEntry("shape=rect;html=1;whiteSpace=wrap;align=center;",140, 120,"{ rate = constant }\n{ rate = distribution }\n<<continuous>>\n<<discrete>>\nObject Node","Rate",null,null,this.getTagsForStencil("","","sysml activity rate").join(" ")),this.createVertexTemplateEntry("shape=rect;html=1;overflow=fill;whiteSpace=wrap;",140,80,'<p style="margin:0px;margin-top:4px;text-align:center;">Object Node</p><hr/><p style="margin:0px;margin-top:4px;text-align:center;"><<rate>><br/>rate = constant<br/>rate = distribution</p>',"Rate",null, -null,this.getTagsForStencil("","","sysml activity rate").join(" ")),this.addEntry("sysml activity rate",function(){var a=new mxCell("act",new mxGeometry(0,0,200,100),"html=1;shape=mxgraph.sysml.isActStream;align=left;spacingLeft=5;verticalAlign=top;spacingTop=-3;fontStyle=1;");a.vertex=!0;var c=new mxCell("{ rate = constant }\n{ rate = distributuion}\n<<continuous>>\n<<discrete>>",new mxGeometry(200,50,0,0),"resizable=0;html=1;align=left;verticalAlign=top;labelPosition=left;verticalLabelPosition=middle;labelBackgroundColor=none;fontSize=10;spacingTop=5;"); -c.geometry.relative=!1;c.setConnectable(!1);c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,"Rate")}),this.addDataEntry("sysml activity rate",300,60,"Rate","7ZVNj5swEIZ/ja8RgTarHgO73dNKK+XSHh0YgbXGg+xhA/vrOwZDlnxUqOqhhx5QPK/H43dGD0EkWd09W9lUL1iAFsmTSDKLSOOq7jLQWsSRKkTyKOI44kfE3+/sbofdqJEWDK05EI8H3qVuYVT2OSk0o+yo10GuqGZzj1uRpK6SjVfrrvS+N653td4ol6Ehi5yVnipFcGhk7tNOnMSa1Ko0HObsDCwL4WawBN1d94MUrD8D1kC255Rw4NvYXHRSBVXhQGg4qkCVVaiyC5p0Y1zOlc6j4UWYzu1JJVeTEg/cQ2QlAf8MUpSjcSTZPAsPLOxEnGwj3+x1bqEcWXVsqfXzXmbHO1n7oWm6ivgKUqbF1s16uciaojXF2ENuwZv6XakLFKAo4RBC0Ec8PZ2F9BMnwx6vK7Tqg11LjwaPx9Le2mEHG2AkUoutKcDP2fsFU0z7Bo2v6RlRudT7gBChNwedoh/TGV7/9OvNV9+aPIJOZf5WDpUz1GjP1QYHB/Xh7W/juUHf1QJDh63NYfGarCDTgpak3pelbnEXjr6iGnDpA2UXpLLXEigkXcA637qK3y//+f1Dfif8lmzeZPcOqfy/2M+o+mAtq3zfP0dqN5EaUP3b5HJ4/v6N6Z8/j78A"), -this.addEntry("sysml activity control flow",function(){var a=new mxCell("",new mxGeometry(0,0,60,40),"shape=rect;html=1;rounded=1;whiteSpace=wrap;");a.vertex=!0;var c=new mxCell("",new mxGeometry(100,0,60,40),"shape=rect;html=1;rounded=1;whiteSpace=wrap;");c.vertex=!0;var e=new mxCell("",new mxGeometry(0,0,0,0),"edgeStyle=elbowEdgeStyle;html=1;elbow=horizontal;endArrow=open;labelBackgroundColor=none;endSize=12;");e.geometry.relative=!0;e.edge=!0;a.insertEdge(e,!0);c.insertEdge(e,!1);return d.createVertexTemplateFromCells([a, -c,e],160,60,"Control Flow")}),this.addDataEntry("sysml activity control flow",160,60,"Control Flow","zVNNb4MwDP01ufNR7d7Srqed+AUpsUi0ECMTCu2vnyEZDGnVusu0QyT72c/4PRKRF814JtnqN1RgRX4SeUGIPkTNWIC1IkuMEvlRZFnCR2SvD6rpXE1aSeD8M4QsEK7S9hCQAHT+ZiPQadlOIUHFIw/aN7zlMeWQsHcKVMwGbTyUraym5oEVMRanA3kYH244Q3G9M2ADnm7cMhjldeh4CSISDabWkbWLmOxCXi/MVS4HUfH36vP/q/6TkESZf+DG7mc3QNVQxhTsBYfTCnz1Zq5xrJHMHZ2XdgKd2hPNOLbgGLHyAvYgq/d6NrNAi8RVh26ap2SnF3+ZXJr79N00W6yd1tkY22FPFWyutpdUg9/87yfsJ7DSm+t2+i/M5XR9xHNt88Y/AA=="),this.addDataEntry("sysml activity object flow", +null,this.getTagsForStencil("","","sysml activity rate").join(" ")),this.addEntry("sysml activity rate",function(){var a=new mxCell("act",new mxGeometry(0,0,200,100),"html=1;shape=mxgraph.sysml.isActStream;align=left;spacingLeft=5;verticalAlign=top;spacingTop=-3;fontStyle=1;");a.vertex=!0;var d=new mxCell("{ rate = constant }\n{ rate = distributuion}\n<<continuous>>\n<<discrete>>",new mxGeometry(200,50,0,0),"resizable=0;html=1;align=left;verticalAlign=top;labelPosition=left;verticalLabelPosition=middle;labelBackgroundColor=none;fontSize=10;spacingTop=5;"); +d.geometry.relative=!1;d.setConnectable(!1);d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,"Rate")}),this.addDataEntry("sysml activity rate",300,60,"Rate","7ZVNj5swEIZ/ja8RgTarHgO73dNKK+XSHh0YgbXGg+xhA/vrOwZDlnxUqOqhhx5QPK/H43dGD0EkWd09W9lUL1iAFsmTSDKLSOOq7jLQWsSRKkTyKOI44kfE3+/sbofdqJEWDK05EI8H3qVuYVT2OSk0o+yo10GuqGZzj1uRpK6SjVfrrvS+N653td4ol6Ehi5yVnipFcGhk7tNOnMSa1Ko0HObsDCwL4WawBN1d94MUrD8D1kC255Rw4NvYXHRSBVXhQGg4qkCVVaiyC5p0Y1zOlc6j4UWYzu1JJVeTEg/cQ2QlAf8MUpSjcSTZPAsPLOxEnGwj3+x1bqEcWXVsqfXzXmbHO1n7oWm6ivgKUqbF1s16uciaojXF2ENuwZv6XakLFKAo4RBC0Ec8PZ2F9BMnwx6vK7Tqg11LjwaPx9Le2mEHG2AkUoutKcDP2fsFU0z7Bo2v6RlRudT7gBChNwedoh/TGV7/9OvNV9+aPIJOZf5WDpUz1GjP1QYHB/Xh7W/juUHf1QJDh63NYfGarCDTgpak3pelbnEXjr6iGnDpA2UXpLLXEigkXcA637qK3y//+f1Dfif8lmzeZPcOqfy/2M+o+mAtq3zfP0dqN5EaUP3b5HJ4/v6N6Z8/j78A"), +this.addEntry("sysml activity control flow",function(){var a=new mxCell("",new mxGeometry(0,0,60,40),"shape=rect;html=1;rounded=1;whiteSpace=wrap;");a.vertex=!0;var d=new mxCell("",new mxGeometry(100,0,60,40),"shape=rect;html=1;rounded=1;whiteSpace=wrap;");d.vertex=!0;var f=new mxCell("",new mxGeometry(0,0,0,0),"edgeStyle=elbowEdgeStyle;html=1;elbow=horizontal;endArrow=open;labelBackgroundColor=none;endSize=12;");f.geometry.relative=!0;f.edge=!0;a.insertEdge(f,!0);d.insertEdge(f,!1);return b.createVertexTemplateFromCells([a, +d,f],160,60,"Control Flow")}),this.addDataEntry("sysml activity control flow",160,60,"Control Flow","zVNNb4MwDP01ufNR7d7Srqed+AUpsUi0ECMTCu2vnyEZDGnVusu0QyT72c/4PRKRF814JtnqN1RgRX4SeUGIPkTNWIC1IkuMEvlRZFnCR2SvD6rpXE1aSeD8M4QsEK7S9hCQAHT+ZiPQadlOIUHFIw/aN7zlMeWQsHcKVMwGbTyUraym5oEVMRanA3kYH244Q3G9M2ADnm7cMhjldeh4CSISDabWkbWLmOxCXi/MVS4HUfH36vP/q/6TkESZf+DG7mc3QNVQxhTsBYfTCnz1Zq5xrJHMHZ2XdgKd2hPNOLbgGLHyAvYgq/d6NrNAi8RVh26ap2SnF3+ZXJr79N00W6yd1tkY22FPFWyutpdUg9/87yfsJ7DSm+t2+i/M5XR9xHNt88Y/AA=="),this.addDataEntry("sysml activity object flow", 260,60,"Object Flow","3ZVNb8IwDIZ/Te4lZdxHYZw49bBzaKwmIo0rN1Dg189tM1g10JDQkLZDJft1X8d5+hGRZtVhRao2a9TgRLoUaUaIYYiqQwbOCZlYLdKFkDLhS8i3G9VJX01qReDDPQY5GPbK7WBQBqEJRxeFxqi6CwkKbjk3oeIpFxMOCXdeg45ZEwi38G51MKxIVlpjA+S1Kjp7y3tkLa4HFOBwc+ZeigOvACsIdORb2tibq7NhW4kBW5romkZNNUNenp0XABxEBtd5pI/w+H0Cn4YkbvUJRKZ/6Q2JBvlEPi8/8wFdQh5TcBtslxfhK62+xrFBsif0QblO9PqVqNexBs+KUxtwc1Vsyx5vhg6Jqx49XIXMHXJ76hafyDPfbqYR3QZ3VMDorxAUlRBGH8Ydz4DAqWD34+6PEJ79Q8Lpd8LTpxHm9HLC9LXRAfQB"),this.addEntry("sysml activity object flow", -function(){var a=new mxCell("",new mxGeometry(0,0,60,40),"html=1;shape=mxgraph.sysml.objFlowR;strokeWidth=2;whiteSpace=wrap;");a.vertex=!0;var c=new mxCell("",new mxGeometry(140,0,60,40),"html=1;shape=mxgraph.sysml.objFlowL;strokeWidth=2;whiteSpace=wrap;");c.vertex=!0;var e=new mxCell("",new mxGeometry(0,0,0,0),"edgeStyle=elbowEdgeStyle;html=1;elbow=horizontal;endArrow=open;labelBackgroundColor=none;strokeWidth=2;endSize=12;");e.geometry.relative=!0;e.edge=!0;a.insertEdge(e,!0);c.insertEdge(e,!1); -return d.createVertexTemplateFromCells([a,c,e],200,60,"Object Flow")}),this.createVertexTemplateEntry("html=1;shape=mxgraph.sysml.objFlowR;whiteSpace=wrap;",120,60,"","Object Flow",null,null,this.getTagsForStencil("","objFlowR","sysml activity object flow").join(" ")),this.createVertexTemplateEntry("html=1;shape=mxgraph.sysml.objFlowL;whiteSpace=wrap;",120,60,"","Object Flow",null,null,this.getTagsForStencil("","objFlowL","sysml activity object flow").join(" ")),this.addDataEntry("sysml activity probability", +function(){var a=new mxCell("",new mxGeometry(0,0,60,40),"html=1;shape=mxgraph.sysml.objFlowR;strokeWidth=2;whiteSpace=wrap;");a.vertex=!0;var d=new mxCell("",new mxGeometry(140,0,60,40),"html=1;shape=mxgraph.sysml.objFlowL;strokeWidth=2;whiteSpace=wrap;");d.vertex=!0;var f=new mxCell("",new mxGeometry(0,0,0,0),"edgeStyle=elbowEdgeStyle;html=1;elbow=horizontal;endArrow=open;labelBackgroundColor=none;strokeWidth=2;endSize=12;");f.geometry.relative=!0;f.edge=!0;a.insertEdge(f,!0);d.insertEdge(f,!1); +return b.createVertexTemplateFromCells([a,d,f],200,60,"Object Flow")}),this.createVertexTemplateEntry("html=1;shape=mxgraph.sysml.objFlowR;whiteSpace=wrap;",120,60,"","Object Flow",null,null,this.getTagsForStencil("","objFlowR","sysml activity object flow").join(" ")),this.createVertexTemplateEntry("html=1;shape=mxgraph.sysml.objFlowL;whiteSpace=wrap;",120,60,"","Object Flow",null,null,this.getTagsForStencil("","objFlowL","sysml activity object flow").join(" ")),this.addDataEntry("sysml activity probability", 350,80,"Probability","7ZXbboMwDIafhnsKZb3uabvZpEp9ggAeiRZiFExPTz+H0FK2Vuu0TdvFLpCc3wdsf0EE8bzcPVhRySfMQQfxMojnFpG8Ve7moHUQhSoP4kUQRSE/QXR/xTtqvWElLBi6JSHyCRuhG/CKF2ra606opaicaSWWaVMH8UxSyY0uRmxupSJYVyJzEVseg7UNWFKZ0I8iBb3CWpFCw+4UibA8C5hqVZjSd0roUrtu2A+7qxO1UjfOA2AJZPccckxIEp+y9+exX0C4VTnJoSRBFZKGmqj9uTgV7rfHRrfAy8uMP14m5AWsuyPoFLfLXjjfa+tjW6JVBzQk2DETbl+OhG97uMfzBYPJp9a2BQwaV9piY3JwfYZ80o7MTGQvRavPUaPtY2sSlo75WIE5amt1cH2PohMpN86AU42NzWBwt25AZ0ELUpthqUskutQVKq7YI58kwxRutgDqot7wO732JqTj90gnMzeUxVSkSity/bceH7SuIFPPTKW99OyaLL58CY6cb0TeIfsMcs7+q3DjJBx8z3fhT7FO/ln/FuvvZsvH/h/qw89/sa8="), this.addDataEntry("sysml activity probability",250,60,"Probability","7VRNb4MwDP01uVYU1vVc6NrTpGlctmMAF7IFjEJaYL9+Dkk/aJlU7bTDkBD284t5PIewICq7reJ18YwZSBY8sSBSiNpGZReBlMz3RMaCNfN9j27mb36ozoeqV3MFlb5ngW8XHLjcg0VWqRZYWbjRvXRwoUsSt56zIGwKXhu07HKje9b0TSlnmHxsJLavRGgLoSGueWpYLXEI41LkFaUpCQNFgHsxKA3dj+IHyCnfApagVU+UVmS6cIxH+4FeASIv3LIjxhub56elZysocG5MOxPcOMOWoZGnMOGJkEIbJUPFkuIaUrETKbf+eWy5vnERshxil1ZY0SO8MPbGI+MONZQrV0hQayypAFW2UgpbwrCGyiKx+DJ9575JO6HfXFsTv1PszRaU7YSUEUpUg6JgN1yES56ADHn6mSvcV9mR4lTaLzHyR7NqcK9SGG2lO8Y3nrcCSZYdxo2nJucavaCg/qcu/uJq2JqrHLRjXc37JOKuLfDwB7eAxvp//pPz76f//V9vB0rP57ClXx7T3w=="), this.addDataEntry("sysml activity probability",250,60,"Probability","3VRNb4MwDP01XCcK23ou7dbTPiQu2zGAC9lCjIJb6H79HJK2o2ulqqdpSAj72THPfoYgntf90oimesICVBA/BPHcIJKz6n4OSgVRKIsgXgRRFPIdRI9nopMhGjbCgKZLDkTuwEaoNTjkJfuAnBh7Zj4u2tJW+WhbicaaxubESVdJgrQRucU67oIxoWSp2c2ZAhgG/CvAEPRnaQ6Q57gErIHMllM6WVDlM+5dK2EFsqz8sR0mWueX+6OHptnwfZ+eQfxrBsE0sfQMZiKTSpJlMkRcUtpALlcyFyRR29B08WtQUJSQelej5kdSUc0UFpNTM7LT4YJq5gMZEmHNAdDFzBjsGMMGtENS+WXrTiLr9pLefFlrv7Md3sTsraRSc1RoBkbxargYVyIDlYj8szS41sUuxbN0nVj6I61aXJscRktzgXxjvQ0oHtlmXPiUcr7QK0pNhyrR3ZHYJEwJ5LOO9N6TuGgFbv/gChA21+s//c/6b09/+1evA7uHP65L//lD/gY="), this.createEdgeTemplateEntry("edgeStyle=none;html=1;endArrow=open;endSize=12;verticalAlign=top;labelBackgroundColor=none;",160,0,"{ rate = constant }\n{rate = distribution}\n<<continuous>>\n<<discrete>>","Rate",null,null,this.getTagsForStencil("","","sysml activity rate").join(" ")),this.addEntry("sysml activity in block definition diagram activity association",function(){var a=new mxCell("bdd",new mxGeometry(0,0,330,250),"html=1;shape=mxgraph.sysml.package;labelX=45;align=left;spacingLeft=5;verticalAlign=top;spacingTop=-3;fontStyle=1;strokeWidth=1;recursiveResize=0;"); -a.vertex=!0;var c=new mxCell("<<activity>>\nactivity name",new mxGeometry(30,40,120,60),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;whiteSpace=wrap;align=center;");c.vertex=!0;a.insert(c);var e=new mxCell("<<activity>>\nactivity name",new mxGeometry(30,160,120,60),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;whiteSpace=wrap;align=center;");e.vertex=!0;a.insert(e);var g=new mxCell("action\nname",new mxGeometry(0, -0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;endArrow=none;html=1;edgeStyle=none;endFill=0;startArrow=diamondThin;startFill=1;startSize=12;align=left;verticalAlign=bottom;labelBackgroundColor=none;");g.geometry.relative=!0;g.geometry.x=1;g.edge=!0;c.insertEdge(g,!0);e.insertEdge(g,!1);a.insert(g);c=new mxCell("<<activity>>\nactivity name",new mxGeometry(180,40,120,60),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;whiteSpace=wrap;align=center;"); -c.vertex=!0;a.insert(c);e=new mxCell("<<block>>\nblock name",new mxGeometry(180,160,120,60),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;whiteSpace=wrap;align=center;");e.vertex=!0;a.insert(e);g=new mxCell("object\nnode\nname",new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;endArrow=none;html=1;edgeStyle=none;endFill=0;startFill=1;startSize=12;align=left;verticalAlign=bottom;labelBackgroundColor=none;");g.geometry.relative= -!0;g.geometry.x=1;g.edge=!0;c.insertEdge(g,!0);e.insertEdge(g,!1);a.insert(g);return d.createVertexTemplateFromCells([a],400,250,"In Block Definition Diagrams, Activity, Association")}),this.createVertexTemplateEntry("html=1;shape=mxgraph.sysml.actPart;strokeWidth=3;verticalAlign=top;rotation=-90;whiteSpace=wrap;",100,100,"Partition Name","Activity Partition",null,null,this.getTagsForStencil("","actPart","sysml activity activity partition").join(" ")),this.createVertexTemplateEntry("shape=rect;html=1;rounded=1;strokeWidth=2;verticalAlign=top;whiteSpace=wrap;align=center;", -140,50,"(Partition Name)\nAction","Activity Partition",null,null,this.getTagsForStencil("","","sysml activity activity partition").join(" ")),this.addEntry("sysml activity interruptible activity region",function(){var a=new mxCell("region name",new mxGeometry(0,0,160,60),"shape=rect;html=1;rounded=1;verticalAlign=top;dashed=1;strokeWidth=2;whiteSpace=wrap;align=center;");a.vertex=!0;var c=new mxCell("",new mxGeometry(0,0,0,0),"shape=mxgraph.lean_mapping.electronic_info_flow_edge;html=1;edgeStyle=none;align=center;verticalAlign=bottom;exitX=1;exitY=0.5;fillColor=#ffffff;"); -c.geometry.setTerminalPoint(new mxPoint(250,30),!1);c.geometry.relative=!0;c.geometry.x=1;c.edge=!0;a.insertEdge(c,!0);return d.createVertexTemplateFromCells([a,c],250,60,"Interruptible Activity Region")}),this.createVertexTemplateEntry("shape=rect;html=1;rounded=1;dashed=1;strokeWidth=2;verticalAlign=top;whiteSpace=wrap;align=center;",160,60,"<<structured>> node name","Structured Activity Node",null,null,this.getTagsForStencil("","","sysml activity structured activity node").join(" "))]; -this.addPalette("sysmlActivities","SysML / Activities",a||!1,mxUtils.bind(this,function(a){for(var b=0;b<e.length;b++)a.appendChild(e[b](a))}))};Sidebar.prototype.addSysMLInteractionsPalette=function(a){var d=this,e=[this.createVertexTemplateEntry("html=1;shape=mxgraph.sysml.package;overflow=fill;labelX=95;align=left;spacingLeft=5;verticalAlign=top;spacingTop=-3;",160,80,'<p style="margin:0px;margin-top:4px;margin-left:5px;text-align:left;"><b>sd</b> Interaction1</p>',"Sequence Diagram",null,null, -this.getTagsForStencil("","package","sysml interaction sequence diagram").join(" ")),this.addEntry("sysml interaction lifeline",function(){var a=new mxCell("b1:Block1",new mxGeometry(0,0,160,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");a.vertex=!0;var c=new mxCell("",new mxGeometry(0,0,0,0),"edgeStyle=none;html=1;dashed=1;endArrow=none;align=center;verticalAlign=bottom;exitX=0.5;exitY=1;");c.geometry.setTerminalPoint(new mxPoint(80,150),!1);c.geometry.relative=!0;c.geometry.x=1;c.edge=!0; -a.insertEdge(c,!0);return d.createVertexTemplateFromCells([a,c],160,150,"Lifeline")}),this.addDataEntry("sysml interaction execution specification",160,220,"Execution Specification","xZTbboMwDIafJveU7NDbQrdeTZrUJ8iIR6IFgkJa6NvPJS40W6sxddKQkOLTj/1hhfG86jdONOrFSjCMPzGeO2t9OFV9DsawNNGS8TVL0wRflj5fiS6GaNIIB7WfU5CGgr0wOwietwXjq8zY4oPEWn8wFGuVaI5HBwWqZ8pX2PAaC7JOaQ/bRhTHcIfjoE8YXdZoFtgLOHTQt8B56K/2O7io2Q3YCrw7YEqnpVeU8RBmShToUlHZySfaYJdj6TQ9HgjAZRj8G4xfEHjXxuTWWDckchieG4emgkea7UDJCdlnTNILSJZ/gOTuZyQgS9iSWdsaYixStAokGVDLlXO2mzKD2lEiYtPanSsgWlEvXAk++lEzCDowwut9rH4LkPv/BzJ/+njhZrMgoVerUX9UWcZbOK7cSSH8ICr6AnTs6RJjNKcLL6Sf34ef"), +a.vertex=!0;var d=new mxCell("<<activity>>\nactivity name",new mxGeometry(30,40,120,60),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;whiteSpace=wrap;align=center;");d.vertex=!0;a.insert(d);var f=new mxCell("<<activity>>\nactivity name",new mxGeometry(30,160,120,60),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;whiteSpace=wrap;align=center;");f.vertex=!0;a.insert(f);var e=new mxCell("action\nname",new mxGeometry(0, +0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;endArrow=none;html=1;edgeStyle=none;endFill=0;startArrow=diamondThin;startFill=1;startSize=12;align=left;verticalAlign=bottom;labelBackgroundColor=none;");e.geometry.relative=!0;e.geometry.x=1;e.edge=!0;d.insertEdge(e,!0);f.insertEdge(e,!1);a.insert(e);d=new mxCell("<<activity>>\nactivity name",new mxGeometry(180,40,120,60),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;whiteSpace=wrap;align=center;"); +d.vertex=!0;a.insert(d);f=new mxCell("<<block>>\nblock name",new mxGeometry(180,160,120,60),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;whiteSpace=wrap;align=center;");f.vertex=!0;a.insert(f);e=new mxCell("object\nnode\nname",new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;endArrow=none;html=1;edgeStyle=none;endFill=0;startFill=1;startSize=12;align=left;verticalAlign=bottom;labelBackgroundColor=none;");e.geometry.relative= +!0;e.geometry.x=1;e.edge=!0;d.insertEdge(e,!0);f.insertEdge(e,!1);a.insert(e);return b.createVertexTemplateFromCells([a],400,250,"In Block Definition Diagrams, Activity, Association")}),this.createVertexTemplateEntry("html=1;shape=mxgraph.sysml.actPart;strokeWidth=3;verticalAlign=top;rotation=-90;whiteSpace=wrap;",100,100,"Partition Name","Activity Partition",null,null,this.getTagsForStencil("","actPart","sysml activity activity partition").join(" ")),this.createVertexTemplateEntry("shape=rect;html=1;rounded=1;strokeWidth=2;verticalAlign=top;whiteSpace=wrap;align=center;", +140,50,"(Partition Name)\nAction","Activity Partition",null,null,this.getTagsForStencil("","","sysml activity activity partition").join(" ")),this.addEntry("sysml activity interruptible activity region",function(){var a=new mxCell("region name",new mxGeometry(0,0,160,60),"shape=rect;html=1;rounded=1;verticalAlign=top;dashed=1;strokeWidth=2;whiteSpace=wrap;align=center;");a.vertex=!0;var d=new mxCell("",new mxGeometry(0,0,0,0),"shape=mxgraph.lean_mapping.electronic_info_flow_edge;html=1;edgeStyle=none;align=center;verticalAlign=bottom;exitX=1;exitY=0.5;fillColor=#ffffff;"); +d.geometry.setTerminalPoint(new mxPoint(250,30),!1);d.geometry.relative=!0;d.geometry.x=1;d.edge=!0;a.insertEdge(d,!0);return b.createVertexTemplateFromCells([a,d],250,60,"Interruptible Activity Region")}),this.createVertexTemplateEntry("shape=rect;html=1;rounded=1;dashed=1;strokeWidth=2;verticalAlign=top;whiteSpace=wrap;align=center;",160,60,"<<structured>> node name","Structured Activity Node",null,null,this.getTagsForStencil("","","sysml activity structured activity node").join(" "))]; +this.addPalette("sysmlActivities","SysML / Activities",a||!1,mxUtils.bind(this,function(a){for(var b=0;b<e.length;b++)a.appendChild(e[b](a))}))};Sidebar.prototype.addSysMLInteractionsPalette=function(a){var b=this,e=[this.createVertexTemplateEntry("html=1;shape=mxgraph.sysml.package;overflow=fill;labelX=95;align=left;spacingLeft=5;verticalAlign=top;spacingTop=-3;",160,80,'<p style="margin:0px;margin-top:4px;margin-left:5px;text-align:left;"><b>sd</b> Interaction1</p>',"Sequence Diagram",null,null, +this.getTagsForStencil("","package","sysml interaction sequence diagram").join(" ")),this.addEntry("sysml interaction lifeline",function(){var a=new mxCell("b1:Block1",new mxGeometry(0,0,160,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");a.vertex=!0;var d=new mxCell("",new mxGeometry(0,0,0,0),"edgeStyle=none;html=1;dashed=1;endArrow=none;align=center;verticalAlign=bottom;exitX=0.5;exitY=1;");d.geometry.setTerminalPoint(new mxPoint(80,150),!1);d.geometry.relative=!0;d.geometry.x=1;d.edge=!0; +a.insertEdge(d,!0);return b.createVertexTemplateFromCells([a,d],160,150,"Lifeline")}),this.addDataEntry("sysml interaction execution specification",160,220,"Execution Specification","xZTbboMwDIafJveU7NDbQrdeTZrUJ8iIR6IFgkJa6NvPJS40W6sxddKQkOLTj/1hhfG86jdONOrFSjCMPzGeO2t9OFV9DsawNNGS8TVL0wRflj5fiS6GaNIIB7WfU5CGgr0wOwietwXjq8zY4oPEWn8wFGuVaI5HBwWqZ8pX2PAaC7JOaQ/bRhTHcIfjoE8YXdZoFtgLOHTQt8B56K/2O7io2Q3YCrw7YEqnpVeU8RBmShToUlHZySfaYJdj6TQ9HgjAZRj8G4xfEHjXxuTWWDckchieG4emgkea7UDJCdlnTNILSJZ/gOTuZyQgS9iSWdsaYixStAokGVDLlXO2mzKD2lEiYtPanSsgWlEvXAk++lEzCDowwut9rH4LkPv/BzJ/+njhZrMgoVerUX9UWcZbOK7cSSH8ICr6AnTs6RJjNKcLL6Sf34ef"), this.addDataEntry("sysml interaction execution specification",160,220,"Execution Specification","zZTNbsIwDMefJvfSbBNXKBsnpEl9giyxmmhpU6WBlrefIaaQUaRKm7QdKsVf/9q/WGG8qIetF63eOQWW8VfGC+9ciKd6KMBalmdGMb5heZ7hx/K3B9HFOZq1wkMT5hTkseAg7B6i52PB+GptnfwksS4cLcU6LdrT0YNE9bUONTa8wYJ1r02AshXyFO5xHPQJa6oGTYm9gEcH/Qt8gOFhv2cXNbsFV0PwR0zpjQqaMl7iTJkGU2kqu/hEF+1qLL1OjwcCMA2D38GAAWTZgvxPJKiALjY7UnJG9i2ofALU8hdAPd2BugMEqoKSzMY1kEJSotOgyIBGrbx3/TUzqp0kEjid23sJyeIG4SsIyfXNQOjBimAOqfpPgDz/PZD506cbN5sFCb07g/qjyjJdw3EtLwrxgqjoG9CxpynGaF6fwZh++0p+AQ=="), -this.addEntry("sysml interaction use",function(){var a=new mxCell("Interaction3",new mxGeometry(0,0,160,60),"html=1;shape=mxgraph.sysml.package;labelX=40;whiteSpace=wrap;align=center;");a.vertex=!0;var c=new mxCell("ref",new mxGeometry(0,0,0,0),"html=1;align=left;verticalAlign=top;labelPosition=left;verticalLabelPosition=top;labelBackgroundColor=none;spacingLeft=5;spacingTop=-2;fontStyle=1;");c.geometry.relative=!1;c.setConnectable(!1);c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a], -a.geometry.width,a.geometry.height,"Interaction Use")}),this.addEntry("sysml interaction combined fragment",function(){var a=new mxCell('<p style="margin:0px;margin-top:4px;margin-left:10px;text-align:left;"><b>sd</b> Interaction1</p>',new mxGeometry(0,0,350,320),"html=1;shape=mxgraph.sysml.package;labelX=100;html=1;overflow=fill;strokeWidth=1;recursiveResize=0;");a.vertex=!0;var c=new mxCell("b1: Block1",new mxGeometry(30,40,80,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;whiteSpace=wrap;align=center;"); -c.vertex=!0;a.insert(c);var e=new mxCell("b2: Block2",new mxGeometry(140,40,80,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;whiteSpace=wrap;align=center;");e.vertex=!0;a.insert(e);var g=new mxCell("b3: Block3",new mxGeometry(250,40,80,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;whiteSpace=wrap;align=center;");g.vertex=!0;a.insert(g);var h=new mxCell("alt",new mxGeometry(20,90,200,160),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shape=mxgraph.sysml.package;labelX=35;fontStyle=1;align=left;verticalAlign=top;spacingLeft=5;spacingTop=-3;"); -h.vertex=!0;a.insert(h);h=new mxCell("",new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;endArrow=none;html=1;edgeStyle=none;dashed=1;");h.geometry.setTerminalPoint(new mxPoint(70,300),!1);h.geometry.relative=!0;h.edge=!0;c.insertEdge(h,!0);a.insert(h);c=new mxCell("",new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;endArrow=none;html=1;edgeStyle=none;dashed=1;");c.geometry.setTerminalPoint(new mxPoint(180,300),!1);c.geometry.relative= -!0;c.edge=!0;a.insert(c);e.insertEdge(c,!0);e=new mxCell("",new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;endArrow=none;html=1;edgeStyle=none;dashed=1;");e.geometry.setTerminalPoint(new mxPoint(290,300),!1);e.geometry.relative=!0;e.edge=!0;a.insert(e);g.insertEdge(e,!0);g=new mxCell("",new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;endArrow=none;html=1;edgeStyle=none;dashed=1;");g.geometry.setTerminalPoint(new mxPoint(20, -170),!1);g.geometry.setTerminalPoint(new mxPoint(220,170),!0);g.geometry.relative=!0;g.edge=!0;a.insert(g);g=new mxCell("[if x < 10]",new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;endArrow=open;html=1;edgeStyle=none;verticalAlign=bottom;labelBackgroundColor=none;endSize=12;");g.geometry.setTerminalPoint(new mxPoint(70,150),!0);g.geometry.setTerminalPoint(new mxPoint(180,150),!1);g.geometry.relative=!0;g.geometry.x=-1;g.edge=!0;a.insert(g);e=new mxCell("msg1", -new mxGeometry(1,0,0,0),"align=right;html=1;verticalAlign=bottom;labelBackgroundColor=none;");e.geometry.relative=!0;e.setConnectable(!1);e.vertex=!0;g.insert(e);g=new mxCell("[else]",new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;endArrow=open;html=1;edgeStyle=none;verticalAlign=bottom;labelBackgroundColor=none;align=right;endSize=12;");g.geometry.setTerminalPoint(new mxPoint(70,230),!0);g.geometry.setTerminalPoint(new mxPoint(180,230),!1);g.geometry.relative= -!0;g.geometry.x=-1;g.edge=!0;a.insert(g);e=new mxCell("msg2",new mxGeometry(1,0,0,0),"align=right;html=1;verticalAlign=bottom;labelBackgroundColor=none;");e.geometry.relative=!0;e.setConnectable(!1);e.vertex=!0;g.insert(e);a.insert(g);g=new mxCell("msg3",new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;endArrow=open;html=1;edgeStyle=none;verticalAlign=bottom;labelBackgroundColor=none;endSize=12;");g.geometry.setTerminalPoint(new mxPoint(70,290),!0);g.geometry.setTerminalPoint(new mxPoint(290, -290),!1);g.geometry.relative=!0;g.edge=!0;a.insert(g);return d.createVertexTemplateFromCells([a],350,320,"Combined Fragment")}),this.addDataEntry("sysml interaction state invariant configuration",120,220,"State Invariant / Continuations","xVTLboMwEPwaXyMCpfeEtDlFqpRTjxbeYksGI9sJ8Pdd4gVCHhJSpfSAvM9hZ7wyS7Ky3Vtey4MRoFnywZLMGuODVbYZaM3iSAmW7FgcR/ix+PNJdn3JRjW3UPklDXFoOHN9ghBhyeY7BJ3vNAWd5HVvWsgRdit9iZPu1mg2Unk41jzv0w3ywBjXqqjQzXEIsBign4D10D4d9BKiKfdgSvC2w5JGCS+pgshEElQhqS2lGHfBL8bWiTYaxPyxCsmdCnV/IMP0Toor7oMqZVv0F7hynSv1Kjc9o+0PHkdqe4lQHWUjEuQVwr3dr8+tXiAKGHSoTAXz9RHcSRDkQCU21ppmqgxoPcRMDWdONofZBntuC/Cz61ygmQXNvTrP0f8iSPr/gixnP1+xxVoQ0JdRiD+ivNM60RoOD8+IEC6Imm4EHWd6pDG603sYyq+fy18="), +this.addEntry("sysml interaction use",function(){var a=new mxCell("Interaction3",new mxGeometry(0,0,160,60),"html=1;shape=mxgraph.sysml.package;labelX=40;whiteSpace=wrap;align=center;");a.vertex=!0;var d=new mxCell("ref",new mxGeometry(0,0,0,0),"html=1;align=left;verticalAlign=top;labelPosition=left;verticalLabelPosition=top;labelBackgroundColor=none;spacingLeft=5;spacingTop=-2;fontStyle=1;");d.geometry.relative=!1;d.setConnectable(!1);d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a], +a.geometry.width,a.geometry.height,"Interaction Use")}),this.addEntry("sysml interaction combined fragment",function(){var a=new mxCell('<p style="margin:0px;margin-top:4px;margin-left:10px;text-align:left;"><b>sd</b> Interaction1</p>',new mxGeometry(0,0,350,320),"html=1;shape=mxgraph.sysml.package;labelX=100;html=1;overflow=fill;strokeWidth=1;recursiveResize=0;");a.vertex=!0;var d=new mxCell("b1: Block1",new mxGeometry(30,40,80,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;whiteSpace=wrap;align=center;"); +d.vertex=!0;a.insert(d);var f=new mxCell("b2: Block2",new mxGeometry(140,40,80,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;whiteSpace=wrap;align=center;");f.vertex=!0;a.insert(f);var e=new mxCell("b3: Block3",new mxGeometry(250,40,80,30),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;whiteSpace=wrap;align=center;");e.vertex=!0;a.insert(e);var h=new mxCell("alt",new mxGeometry(20,90,200,160),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;html=1;shape=mxgraph.sysml.package;labelX=35;fontStyle=1;align=left;verticalAlign=top;spacingLeft=5;spacingTop=-3;"); +h.vertex=!0;a.insert(h);h=new mxCell("",new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;endArrow=none;html=1;edgeStyle=none;dashed=1;");h.geometry.setTerminalPoint(new mxPoint(70,300),!1);h.geometry.relative=!0;h.edge=!0;d.insertEdge(h,!0);a.insert(h);d=new mxCell("",new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;endArrow=none;html=1;edgeStyle=none;dashed=1;");d.geometry.setTerminalPoint(new mxPoint(180,300),!1);d.geometry.relative= +!0;d.edge=!0;a.insert(d);f.insertEdge(d,!0);f=new mxCell("",new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;endArrow=none;html=1;edgeStyle=none;dashed=1;");f.geometry.setTerminalPoint(new mxPoint(290,300),!1);f.geometry.relative=!0;f.edge=!0;a.insert(f);e.insertEdge(f,!0);e=new mxCell("",new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;endArrow=none;html=1;edgeStyle=none;dashed=1;");e.geometry.setTerminalPoint(new mxPoint(20, +170),!1);e.geometry.setTerminalPoint(new mxPoint(220,170),!0);e.geometry.relative=!0;e.edge=!0;a.insert(e);e=new mxCell("[if x < 10]",new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;endArrow=open;html=1;edgeStyle=none;verticalAlign=bottom;labelBackgroundColor=none;endSize=12;");e.geometry.setTerminalPoint(new mxPoint(70,150),!0);e.geometry.setTerminalPoint(new mxPoint(180,150),!1);e.geometry.relative=!0;e.geometry.x=-1;e.edge=!0;a.insert(e);f=new mxCell("msg1", +new mxGeometry(1,0,0,0),"align=right;html=1;verticalAlign=bottom;labelBackgroundColor=none;");f.geometry.relative=!0;f.setConnectable(!1);f.vertex=!0;e.insert(f);e=new mxCell("[else]",new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;endArrow=open;html=1;edgeStyle=none;verticalAlign=bottom;labelBackgroundColor=none;align=right;endSize=12;");e.geometry.setTerminalPoint(new mxPoint(70,230),!0);e.geometry.setTerminalPoint(new mxPoint(180,230),!1);e.geometry.relative= +!0;e.geometry.x=-1;e.edge=!0;a.insert(e);f=new mxCell("msg2",new mxGeometry(1,0,0,0),"align=right;html=1;verticalAlign=bottom;labelBackgroundColor=none;");f.geometry.relative=!0;f.setConnectable(!1);f.vertex=!0;e.insert(f);a.insert(e);e=new mxCell("msg3",new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;endArrow=open;html=1;edgeStyle=none;verticalAlign=bottom;labelBackgroundColor=none;endSize=12;");e.geometry.setTerminalPoint(new mxPoint(70,290),!0);e.geometry.setTerminalPoint(new mxPoint(290, +290),!1);e.geometry.relative=!0;e.edge=!0;a.insert(e);return b.createVertexTemplateFromCells([a],350,320,"Combined Fragment")}),this.addDataEntry("sysml interaction state invariant configuration",120,220,"State Invariant / Continuations","xVTLboMwEPwaXyMCpfeEtDlFqpRTjxbeYksGI9sJ8Pdd4gVCHhJSpfSAvM9hZ7wyS7Ky3Vtey4MRoFnywZLMGuODVbYZaM3iSAmW7FgcR/ix+PNJdn3JRjW3UPklDXFoOHN9ghBhyeY7BJ3vNAWd5HVvWsgRdit9iZPu1mg2Unk41jzv0w3ywBjXqqjQzXEIsBign4D10D4d9BKiKfdgSvC2w5JGCS+pgshEElQhqS2lGHfBL8bWiTYaxPyxCsmdCnV/IMP0Toor7oMqZVv0F7hynSv1Kjc9o+0PHkdqe4lQHWUjEuQVwr3dr8+tXiAKGHSoTAXz9RHcSRDkQCU21ppmqgxoPcRMDWdONofZBntuC/Cz61ygmQXNvTrP0f8iSPr/gixnP1+xxVoQ0JdRiD+ivNM60RoOD8+IEC6Imm4EHWd6pDG603sYyq+fy18="), this.addDataEntry("sysml interaction coregion",250,220,"Coregion","1ZZbb4IwFIB/TV8NUJjuUXHzackSH/bcwRk0K5S09bZfv0ILCmjmJmpmYtJz5ZzvlFKEw2y7EKRIX3gMDOEnhEPBuTKrbBsCY8hzaIzwHHmeo//Iez5hdSurUxABuTonwDMBa8JWYDQSBbMVCuYIT2fGKNWO1caUFOVSQKTTz1KV6Yrnrl5uUqpgWZCoNG90P1pHGE1yLUa6GBBaYR8GQsH2ZMGVyla7AJ6BEjvtsqGxSq2HY5pyUqBJasMCqyPSyEkTum9fLyyB4zRwj0aPwEHLNYxsm5TzG8mdzNgo4gISyvPSQQn+CW+2cHwhABvg2z53HRYHfLwjeMYD4PF/xlMz0YG0kNDeIx+UsZAzLipf7FS/gahM2lTcSY+K34fiX84k+D9M/FsxefiZCcQJLK2Y87wDJSYyhdgKkMdTIfhm72mylSlaZCRfiQha55oiIoF2Y2fwE8CIout29kuAjO8PxO8DCe4HZHJ/IFfo3oa+cqozNq9h0D6wm9O5zmBGYoM6CJsqzqL62KOa4WG5Sl2sqnW8gPIrV55RNCJsar/271wpntXOS/pVPsn1frVNrz+V7ljc643FdfpzGXi/X30uN3tbenPp3uv+PBct7u/Vxv3w2v0N"), this.addDataEntry("sysml interaction creation destruction event",250,220,"Creation/Destruction Event","1Zdtb4MgEIB/jd8VtNs+tt3LlzVZ0l9A9aZkKAZZbffrh4J2SJfZ9W0zacLdcVfuOTzEw/N88yRImS14AszDDx6eC86lHuWbOTDmIZ8mHr73EPLVz0OP31iD1uqXREAhxzgg7bAm7B20ZhV4eDpjPH4zwSq5ZcZWZaRshgJiFX2WyVwt+F45zOqMSliWJG7MtUpH6QijaaHEWK0FhFKY/wIhYfPteluVWewT8Byk2KopNU1kZmb4Oic/A5pmxg0bHam0nPauu+zVwADYDwO7MFAHA/0lGJ1DZJLeajk04iVYhQ6rnwC9UsbmnHHRWjG0jw3uFEzubCY3LhO0B0nP6Rgm0XgmypGWFbhY/PY5OZbw1qISYYdK6EIJj0cy+TdIgk4+O5Obn5lAksLSiAUvGigJqTJITPpQJFMheL0zO2yaEBaZir+LGKy2L4lIQVqbdwQ/AYxIurajHwPk9vpAIhfI5HpA7q4P5AzZG9cXTlXE/jUcnGF9d+4i6JIYpwHCfhWjqAa+gzUWQCSMgfuFJy9BneSzpvnQmLCpOdlXXEqe66lL+tH4BugUGxFfqhTDWgRnrEVw2BYHtuL1w06xpx7tFCV2dTm2EhO3EuHVKhGdrxLuFeDA96HaVovnjYW7SczuR4exvxxof9B+ht+BvwatxN01Tk//esv7BA=="), this.addDataEntry("sysml interaction duration constraint",250,250,"Duration Constraint","zZbNjpswEMefxpdKQXwsjXoMod1DVW2ltA/g4hFYMhjZzibp03ccuwnBREFbVO0himfsGWZ+/5GBZNv2+Kxo33yTDATJPpNsq6Q0btUetyAESWPOSFaSNI3xR9Ivd3aT827cUwWdmROQuoBXKvbgPCTb/NSgnF+bk/B+3dDeLhVUmLloTIvFlgkuDw03sOtpZbcP2Ar6qOB1h2aFdWCyrPDPAWXgeLfWs8sX+gyyBaNOeOTAmWn8idj1EzfA68aH5d5HtbPrS+i1c1z45qdBZCGIdcGiKPvAyLoMaAza/wumPdZWxkifdCsixlvoNJcIoVDSUHNelqtPMTosBl5RsfGUjLTMNCLkXf3DGuUq/xdiPmDl1Y9PI3qPiD4tQPQpJDqmCKyGnTc72eFfwahugHm00LGNUvJw3R5wd9lsihs6Wu5VBTfTPQOYAoESvd6mmureh36XHDNeQOe3nIOJNFTVYHzQCOGlillU84DqFu8N9Nh9tldu0GaAHpAcYJY9dBMD+ksaI1t3dMd/2zRJel+D/w58PeLthiDgHaR5lGc53T6GulHFXva2GLxp4ihKsqmLZjHl/O1SeLvM36+ayUwZHsoZJLozF2/Qcx3o+fJ1cfEm3gvvWLY0Xkq28evnzbKhef2WcseHn1p/AA=="), this.addDataEntry("sysml interaction duration constraint",250,200,"Time Constraint","3ZbbUoMwEIafJpcyHFq5LqC9cJw6U18gJStkDIQJoQef3kBiQZFprVSrF0yzm/13tv9HMiAvzLZzgYv0nhNgyLtBXig4l3qVbUNgDLk2JciLkOva6kHu7cCu0+zaBRaQy2MErhasMatAZ3SilDtmEkASWJow57n6CVKZqUkjRy0JLlMgJoCczITgm7ZSd6tbDA7YpMx0c+AZSLFTJQIYlnT9XodLHSb7ur30gVPV0bW35o/Z7xUlr0QMpqhryIBu9xZ+6COxSED2+qhFZ/o21dj9ufXev7XeO9V778fMn/TMD7Egi6qeBvmBbVmOh/zoi0Q6EHgBucqsQUgaYzZjNFFxtOJS8kxtlAWOaZ4EJo6mWr6kL3Vrx72Es2MwOJPjMBzk2Ws08GKcwHPa47m4Gx2e5EVL7rEOLhqbPxY252zYrvt3oB9Iy1J9g++dP7OJDTpBk1SZHzC8Ahbg+DkRvMpJyBkXY1yZxroro/htkkPC8cj5PXKy8XEzGjIGT3+I2KGr7ujDNz3XnanC9rtSl3c/O18B"), this.addDataEntry("sysml interaction message",250,250,"Message","zZbfboIwFMafhmS7gzJ1t4LTqyVLeIIKJ9CsUFKqyJ5+B1tUQDNHCHpB6L/zcc7vowXL9dPDRtI8+RQRcMv9sFxfCqF0Kz34wLlFbBZZ7soixMbLIusbs85x1s6phEzdE0B0wJ7yHeiRrWO5S4+L8NuIFariZq5IaF43JYSo7iUqxYRXGOCVCVMQ5DSsp0ssB8coZ3GG3RBzAYkD5lkgFRxu5nscMsluQKSgZIVLShapxKywdU12AixOTJhrxmih+/Ep9Fw9NgyA6zDcPgzSwCDPBKMJmJmip4Dz1oPTIwJRDIHpZiLDmxfRIoHIcLlABFm0lFKU55VarZZo0SjETobQelnvACSBU8X2balr1ZvQL8FQ8QS24VqZ5846/BSVMSgT1EF4yuIuqrPHU3WnokrsybDOe1hpUWVhgHuQ8nsIX4cqcsA97NWbloWUL82e3gqlRKqXBuynlnHIbfiTv7+LDmftfo/zn4Z1dcbza9Hzq7bLp5y/IC2avg73bFuf3v8wDbtrxhuhZ7HQmY/kYU9oPBPfB51lo+y0tmmt4/FhDvaOO3ughd2vUVdnsIPYPf9p6uWXP6K/"), this.createEdgeTemplateEntry("edgeStyle=none;html=1;endArrow=sysMLLost;endSize=12;verticalAlign=bottom;",160,0,"lost","Lost Message",null,this.getTagsForStencil("","","sysml interaction lost message").join(" ")),this.createEdgeTemplateEntry("edgeStyle=none;html=1;endArrow=open;endSize=12;verticalAlign=bottom;startArrow=sysMLFound;startSize=12;",160,0,"found","Found Message",null,this.getTagsForStencil("","","sysml interaction found message").join(" ")),this.createEdgeTemplateEntry("edgeStyle=none;html=1;endArrow=none;verticalAlign=bottom;dashed=1;strokeWidth=2;", -160,0,"","General Ordering",null,this.getTagsForStencil("","","sysml interaction general ordering").join(" "))];this.addPalette("sysmlInteractions","SysML / Interactions",a||!1,mxUtils.bind(this,function(a){for(var b=0;b<e.length;b++)a.appendChild(e[b](a))}))};Sidebar.prototype.addSysMLStateMachinesPalette=function(a){var d=this,e=[this.addDataEntry("sysml state machine choice pseudo state",150,100,"Choice Pseudo State","zZXbcoIwEIafJvcctPeC1ulFZ5zxCYLZQqaBZUJQ9OmbkKCgMqVjnfaCmd1/k+zyfxxIGOfNWtIye0cGgoQrEsYSUdkob2IQggQeZyRckiDw9EWC15Gq31a9kkoo1JQNgd2wp6IGq1ihUkfhhCqjpQllhnlSVySMMpXrQZe+DgVNQGyw4opjYRbxNNONIyp4anIBHybdg1R8R8XCyTlnTJ9ve+saNKPzt5Ibfg2Yg5JHveTo5re35x04U5mVZk7KwM7S12hl8/R80MUbHTh77lsVfm8VsBS2LgWR4GF1EfqutTUdZyj5CQtFRc+yzsJrzxJUCnNdkFgXDMxUXkcgorvPtNVjFCh1qcDCNIWCLaRsm2EJhVW2/GQm9LWvkb0HM/iAgKIyBTV4RiZAkSCo4vvhUfc8d1s3yPWJgdcMYXY7KqzlDtyiK1DnrpPYzW7ZzaM3RoIXYaw2ZnhkvnwYaMfsDs5bEj/kOIGaNeyPqLk30veuKNpH6TcozkcppsbhpyF0H7HHCI6+zv8YrT9/FludXn5ydnn/H/gF"), -this.addEntry("sysml state machine composite state",function(){var a=new mxCell("CompositeState1",new mxGeometry(0,0,220,190),"shape=mxgraph.sysml.compState;align=left;verticalAlign=top;spacingTop=-3;spacingLeft=18;strokeWidth=1;recursiveResize=0;");a.vertex=!0;var c=new mxCell("",new mxGeometry(20,50,20,20),"shape=ellipse;html=1;fillColor=#000000;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;");c.vertex=!0;a.insert(c);var e=new mxCell("State1",new mxGeometry(80,60,100, +160,0,"","General Ordering",null,this.getTagsForStencil("","","sysml interaction general ordering").join(" "))];this.addPalette("sysmlInteractions","SysML / Interactions",a||!1,mxUtils.bind(this,function(a){for(var b=0;b<e.length;b++)a.appendChild(e[b](a))}))};Sidebar.prototype.addSysMLStateMachinesPalette=function(a){var b=this,e=[this.addDataEntry("sysml state machine choice pseudo state",150,100,"Choice Pseudo State","zZXbcoIwEIafJvcctPeC1ulFZ5zxCYLZQqaBZUJQ9OmbkKCgMqVjnfaCmd1/k+zyfxxIGOfNWtIye0cGgoQrEsYSUdkob2IQggQeZyRckiDw9EWC15Gq31a9kkoo1JQNgd2wp6IGq1ihUkfhhCqjpQllhnlSVySMMpXrQZe+DgVNQGyw4opjYRbxNNONIyp4anIBHybdg1R8R8XCyTlnTJ9ve+saNKPzt5Ibfg2Yg5JHveTo5re35x04U5mVZk7KwM7S12hl8/R80MUbHTh77lsVfm8VsBS2LgWR4GF1EfqutTUdZyj5CQtFRc+yzsJrzxJUCnNdkFgXDMxUXkcgorvPtNVjFCh1qcDCNIWCLaRsm2EJhVW2/GQm9LWvkb0HM/iAgKIyBTV4RiZAkSCo4vvhUfc8d1s3yPWJgdcMYXY7KqzlDtyiK1DnrpPYzW7ZzaM3RoIXYaw2ZnhkvnwYaMfsDs5bEj/kOIGaNeyPqLk30veuKNpH6TcozkcppsbhpyF0H7HHCI6+zv8YrT9/FludXn5ydnn/H/gF"), +this.addEntry("sysml state machine composite state",function(){var a=new mxCell("CompositeState1",new mxGeometry(0,0,220,190),"shape=mxgraph.sysml.compState;align=left;verticalAlign=top;spacingTop=-3;spacingLeft=18;strokeWidth=1;recursiveResize=0;");a.vertex=!0;var d=new mxCell("",new mxGeometry(20,50,20,20),"shape=ellipse;html=1;fillColor=#000000;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;");d.vertex=!0;a.insert(d);var e=new mxCell("State1",new mxGeometry(80,60,100, 40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;rounded=1;whiteSpace=wrap;align=center;");e.vertex=!0;a.insert(e);var g=new mxCell("State2",new mxGeometry(80,130,100,40),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;rounded=1;whiteSpace=wrap;align=center;");g.vertex=!0;a.insert(g);var h=new mxCell("",new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;edgeStyle=none;html=1;endArrow=open;endSize=12;"); -h.geometry.relative=!0;h.edge=!0;c.insertEdge(h,!0);e.insertEdge(h,!1);a.insert(h);c=new mxCell("",new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;edgeStyle=none;html=1;endArrow=open;endSize=12;");c.geometry.relative=!0;c.edge=!0;e.insertEdge(c,!0);g.insertEdge(c,!1);a.insert(c);return d.createVertexTemplateFromCells([a],220,190,"Composite State")}),this.createVertexTemplateEntry("shape=mxgraph.sysml.compState;html=1;align=left;verticalAlign=top;spacingTop=-3;spacingLeft=18;", +h.geometry.relative=!0;h.edge=!0;d.insertEdge(h,!0);e.insertEdge(h,!1);a.insert(h);d=new mxCell("",new mxGeometry(0,0,0,0),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;edgeStyle=none;html=1;endArrow=open;endSize=12;");d.geometry.relative=!0;d.edge=!0;e.insertEdge(d,!0);g.insertEdge(d,!1);a.insert(d);return b.createVertexTemplateFromCells([a],220,190,"Composite State")}),this.createVertexTemplateEntry("shape=mxgraph.sysml.compState;html=1;align=left;verticalAlign=top;spacingTop=-3;spacingLeft=18;", 200,160,"CompositeState1","Composite State",null,null,this.getTagsForStencil("","compState","sysml state machine composite state").join(" ")),this.createVertexTemplateEntry("ellipse;html=1;labelPosition=left;verticalLabelPosition=bottom;spacingBottom=10;align=right;verticalAlign=bottom;resizable=0;",20,20,"again","Entry Point",null,null,this.getTagsForStencil("","compState","sysml state machine entry point").join(" ")),this.addEntry("sysml state machine exit point",function(){var a=new mxCell("aborted", -new mxGeometry(0,10,20,20),"shape=mxgraph.sysml.flowFinal;labelPosition=right;verticalLabelPosition=top;spacingTop=5;spacingLeft=3;align=left;verticalAlign=top;resizable=0;");a.vertex=!0;return d.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,"Exit Point")}),this.createVertexTemplateEntry("shape=mxgraph.sysml.actFinal;html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;",40,40,"","Final State",null,null,this.getTagsForStencil("","actFinal","sysml state machine final state").join(" ")), +new mxGeometry(0,10,20,20),"shape=mxgraph.sysml.flowFinal;labelPosition=right;verticalLabelPosition=top;spacingTop=5;spacingLeft=3;align=left;verticalAlign=top;resizable=0;");a.vertex=!0;return b.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,"Exit Point")}),this.createVertexTemplateEntry("shape=mxgraph.sysml.actFinal;html=1;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;verticalAlign=top;",40,40,"","Final State",null,null,this.getTagsForStencil("","actFinal","sysml state machine final state").join(" ")), this.createVertexTemplateEntry("shape=ellipse;html=1;fontSize=18;align=center;",40,40,"H*","History, Deep Pseudo State",null,null,this.getTagsForStencil("","","sysml state machine history deep pseudo state").join(" ")),this.createVertexTemplateEntry("shape=ellipse;html=1;fontSize=18;align=center;",40,40,"H","History, Shallow Pseudo State",null,null,this.getTagsForStencil("","","sysml state machine history shallow pseudo state").join(" ")),this.createVertexTemplateEntry("shape=ellipse;html=1;fillColor=#000000;fontSize=18;fontColor=#ffffff;", 40,40,"","Initial Pseudo State",null,null,this.getTagsForStencil("","","sysml state machine initial pseudo state").join(" ")),this.createVertexTemplateEntry("shape=ellipse;html=1;fillColor=#000000;fontSize=18;fontColor=#ffffff;",40,40,"","Junction Pseudo State",null,null,this.getTagsForStencil("","","sysml state machine junction pseudo state").join(" ")),this.createVertexTemplateEntry("shape=mxgraph.sysml.accEvent;flipH=1;whiteSpace=wrap;align=center;",140,40,"Req(Id)","Receive Signal Action",null, null,this.getTagsForStencil("","accEvent","sysml state machine receive signal action").join(" ")),this.createVertexTemplateEntry("shape=mxgraph.sysml.sendSigAct;whiteSpace=wrap;align=center;",140,40,"TurnOn","Send Signal Action",null,null,this.getTagsForStencil("","sendSigAct","sysml state machine send signal action").join(" ")),this.createVertexTemplateEntry("shape=rect;html=1;whiteSpace=wrap;align=center;",140,40,"MinorReq := Id;","Action",null,null,this.getTagsForStencil("","","sysml state machine action").join(" ")), this.createVertexTemplateEntry("shape=mxgraph.sysml.region;align=left;verticalAlign=top;spacingTop=-3;spacingLeft=25;",200,160,"S","Region",null,null,this.getTagsForStencil("","","sysml state machine region").join(" ")),this.createVertexTemplateEntry("shape=rect;rounded=1;html=1;whiteSpace=wrap;align=center;",100,40,"State1","Simple State",null,null,this.getTagsForStencil("","","sysml state machine simple state").join(" ")),this.createVertexTemplateEntry("shape=mxgraph.sysml.simpleState;html=1;overflow=fill;whiteSpace=wrap;align=center;", 200,100,'<p style="margin:0px;margin-top:4px;text-align:center;">State2<hr/></p><p style="margin:0px;margin-left:8px;text-align:left;">entry / entryActivity<br/>do / doActivity<br/>exit / exitActivity</p>',"Simple State",null,null,this.getTagsForStencil("","simpleState","sysml state machine simple state").join(" ")),this.createVertexTemplateEntry("shape=rect;rounded=1;html=1;whiteSpace=wrap;align=center;",120,40,"State1, State2","State List",null,null,this.getTagsForStencil("","","sysml state machine state list").join(" ")), -this.addEntry("sysml state machine state machine",function(){var a=new mxCell("ReadAmountSM",new mxGeometry(0,0,160,120),"shape=mxgraph.sysml.stateMachine;verticalAlign=top;whiteSpace=wrap;align=center;");a.vertex=!0;var c=new mxCell("aborted",new mxGeometry(160,60,0,0),"resizable=0;html=1;verticalAlign=top;align=left;labelBackgroundColor=none;spacingLeft=5;spacingTop=-2;");c.geometry.relative=!1;c.setConnectable(!1);c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],a.geometry.width, -a.geometry.height,"State Machine")}),this.createVertexTemplateEntry("shape=mxgraph.sysml.x;",40,40,"","Terminate Node",null,null,this.getTagsForStencil("","x","sysml state machine terminate node").join(" ")),this.addEntry("sysml state machine submachine state",function(){var a=new mxCell("ReadAmount :\nReadAmountSM",new mxGeometry(0,0,160,120),"shape=mxgraph.sysml.submState;whiteSpace=wrap;align=center;");a.vertex=!0;var c=new mxCell("aborted",new mxGeometry(160,60,0,0),"resizable=0;html=1;verticalAlign=bottom;align=left;labelBackgroundColor=none;spacingLeft=5;spacingBottom=2;"); -c.geometry.relative=!1;c.setConnectable(!1);c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,"Submachine State")}),this.createEdgeTemplateEntry("edgeStyle=none;html=1;endArrow=open;endSize=12;strokeWidth=3;verticalAlign=bottom;",160,0,"trigger[guard]/activity","Transition",null,this.getTagsForStencil("","","sysml state machine transition").join(" "))];this.addPalette("sysmlState Machines","SysML / State Machines",a||!1,mxUtils.bind(this,function(a){for(var b= -0;b<e.length;b++)a.appendChild(e[b](a))}))};Sidebar.prototype.addSysMLUseCasesPalette=function(a){var d=this,e=[this.createVertexTemplateEntry("shape=ellipse;html=1;strokeWidth=3;fontStyle=1;whiteSpace=wrap;align=center;perimeter=ellipsePerimeter;",120,60,"UseCaseName","Use Case",null,null,this.getTagsForStencil("","","sysml use case use case").join(" ")),this.addEntry("sysml use case ",function(){var a=new mxCell("\nextension points\np1, p2",new mxGeometry(0,0,160,80),"html=1;shape=mxgraph.sysml.useCaseExtPt;whiteSpace=wrap;align=center;"); -a.vertex=!0;var c=new mxCell("UseCaseName",new mxGeometry(80,17,0,0),"resizable=0;html=1;verticalAlign=middle;align=center;labelBackgroundColor=none;fontStyle=1;");c.geometry.relative=!1;c.setConnectable(!1);c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,"Use Case")}),this.createVertexTemplateEntry("shape=umlActor;html=1;verticalLabelPosition=bottom;verticalAlign=top;align=center;",30,60,"ActorName","Actor",null,null,this.getTagsForStencil("", +this.addEntry("sysml state machine state machine",function(){var a=new mxCell("ReadAmountSM",new mxGeometry(0,0,160,120),"shape=mxgraph.sysml.stateMachine;verticalAlign=top;whiteSpace=wrap;align=center;");a.vertex=!0;var d=new mxCell("aborted",new mxGeometry(160,60,0,0),"resizable=0;html=1;verticalAlign=top;align=left;labelBackgroundColor=none;spacingLeft=5;spacingTop=-2;");d.geometry.relative=!1;d.setConnectable(!1);d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],a.geometry.width, +a.geometry.height,"State Machine")}),this.createVertexTemplateEntry("shape=mxgraph.sysml.x;",40,40,"","Terminate Node",null,null,this.getTagsForStencil("","x","sysml state machine terminate node").join(" ")),this.addEntry("sysml state machine submachine state",function(){var a=new mxCell("ReadAmount :\nReadAmountSM",new mxGeometry(0,0,160,120),"shape=mxgraph.sysml.submState;whiteSpace=wrap;align=center;");a.vertex=!0;var d=new mxCell("aborted",new mxGeometry(160,60,0,0),"resizable=0;html=1;verticalAlign=bottom;align=left;labelBackgroundColor=none;spacingLeft=5;spacingBottom=2;"); +d.geometry.relative=!1;d.setConnectable(!1);d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,"Submachine State")}),this.createEdgeTemplateEntry("edgeStyle=none;html=1;endArrow=open;endSize=12;strokeWidth=3;verticalAlign=bottom;",160,0,"trigger[guard]/activity","Transition",null,this.getTagsForStencil("","","sysml state machine transition").join(" "))];this.addPalette("sysmlState Machines","SysML / State Machines",a||!1,mxUtils.bind(this,function(a){for(var b= +0;b<e.length;b++)a.appendChild(e[b](a))}))};Sidebar.prototype.addSysMLUseCasesPalette=function(a){var b=this,e=[this.createVertexTemplateEntry("shape=ellipse;html=1;strokeWidth=3;fontStyle=1;whiteSpace=wrap;align=center;perimeter=ellipsePerimeter;",120,60,"UseCaseName","Use Case",null,null,this.getTagsForStencil("","","sysml use case use case").join(" ")),this.addEntry("sysml use case ",function(){var a=new mxCell("\nextension points\np1, p2",new mxGeometry(0,0,160,80),"html=1;shape=mxgraph.sysml.useCaseExtPt;whiteSpace=wrap;align=center;"); +a.vertex=!0;var d=new mxCell("UseCaseName",new mxGeometry(80,17,0,0),"resizable=0;html=1;verticalAlign=middle;align=center;labelBackgroundColor=none;fontStyle=1;");d.geometry.relative=!1;d.setConnectable(!1);d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,"Use Case")}),this.createVertexTemplateEntry("shape=umlActor;html=1;verticalLabelPosition=bottom;verticalAlign=top;align=center;",30,60,"ActorName","Actor",null,null,this.getTagsForStencil("", "umlActor","sysml use case ").join(" ")),this.createVertexTemplateEntry("shape=rect;html=1;overflow=fill;html=1;whiteSpace=wrap;align=center;",80,40,'<p style="margin:0px;margin-top:4px;text-align:center;"><<actor>><br/><b>ActorName</b></p>',"Actor",null,null,this.getTagsForStencil("","","sysml use case ").join(" ")),this.createVertexTemplateEntry("shape=rect;html=1;verticalAlign=top;fontStyle=1;whiteSpace=wrap;align=center;",120,60,"SubjectName","Subject",null,null,this.getTagsForStencil("", "","sysml use case subject").join(" ")),this.createEdgeTemplateEntry("edgeStyle=none;html=1;endArrow=none;verticalAlign=bottom;",160,0,"","Communication Path",null,this.getTagsForStencil("","","sysml use case communication path").join(" ")),this.createEdgeTemplateEntry("edgeStyle=none;html=1;endArrow=open;verticalAlign=bottom;dashed=1;labelBackgroundColor=none;",160,0,"<<include>>","Include",null,this.getTagsForStencil("","","sysml use case include").join(" ")),this.createEdgeTemplateEntry("edgeStyle=none;html=1;startArrow=open;endArrow=none;startSize=12;verticalAlign=bottom;dashed=1;labelBackgroundColor=none;", 160,0,"<<extend>>","Extend",null,this.getTagsForStencil("","","sysml use case extend").join(" ")),this.addDataEntry("sysml use case extend condition",250,80,"Extend with Condition","tVTLjtswDPwaXQvH2kevsbfdSwsUyKU9KjFrC5VFQ1Y2Tr++pMRknWyyj0MPgcUhh6JmFCld99NjMEP3HRtwSn9Rug6IMa/6qQbnVFnYRukHVZYF/VT59Up2kbLFYAL4+B5CmQlPxm0hIzX6xkaLXuklZdR9tUZ0YDwFMA0BxpGT91R7p0q9KJSuYIrgE0x7o+WtmTvQODV/ZZcx7p3sMnZm4KXHSJ9qtH85WtzyejAb69tv8JtPwIhxtqVxHlyCql1nI6yoiik7ko4wOQaECNNVKRIkOjwC9hDDnkqEIEoVO9vETiAtWAe27aTLjWBmzHF77PSsMy1E6suy6xeyk5qm55O4mI4zj5K8zRFrTyokOtP3IFnIc1dd7B0LTEsWyW6MW0rJGmPEnhIBt74BnpA9dWYNrjKbP23Ca3QYkmGeDaN5liHgjhAcwGdkJS6SyFVjxi71WhzHg6aFj3oTwJlon055l5QX6o90+8pinys+n3kVTWghStH8b3HgHS7PnRCv9BlxGzbwok+y/Tj9u27CzYWbcOYl67aSUOSf2TlzQpIf8fHEJphs/Mm0T7cS/XrdwCzDyUvyHz09eFO87s0Vj9/2hsLnhzeXz9/lfw=="), -this.createEdgeTemplateEntry("edgeStyle=none;html=1;endArrow=block;endFill=0;endSize=12;verticalAlign=bottom;",160,0,"","Generalization",null,this.getTagsForStencil("","","sysml use case generalization").join(" "))];this.addPalette("sysmlUse Cases","SysML / UseCases",a||!1,mxUtils.bind(this,function(a){for(var b=0;b<e.length;b++)a.appendChild(e[b](a))}))};Sidebar.prototype.addSysMLAllocationsPalette=function(a){var d=this,e=[this.createVertexTemplateEntry("shape=rect;html=1;overflow=fill;html=1;whiteSpace=wrap;align=center;", +this.createEdgeTemplateEntry("edgeStyle=none;html=1;endArrow=block;endFill=0;endSize=12;verticalAlign=bottom;",160,0,"","Generalization",null,this.getTagsForStencil("","","sysml use case generalization").join(" "))];this.addPalette("sysmlUse Cases","SysML / UseCases",a||!1,mxUtils.bind(this,function(a){for(var b=0;b<e.length;b++)a.appendChild(e[b](a))}))};Sidebar.prototype.addSysMLAllocationsPalette=function(a){var b=this,e=[this.createVertexTemplateEntry("shape=rect;html=1;overflow=fill;html=1;whiteSpace=wrap;align=center;", 120,60,'<p style="margin:0px;margin-top:4px;text-align:center;"><<allocated>><br/><b>Named<br/>Element</b></p>',"Allocated Stereotype",null,null,this.getTagsForStencil("","","sysml allocation allocated stereotype").join(" ")),this.createVertexTemplateEntry("shape=rect;html=1;overflow=fill;strokeWidth=2;whiteSpace=wrap;align=center;",200,120,'<p style="margin:0px;margin-top:4px;text-align:center;"><b>BlockName</b></p><hr/><p style="font-size:10px;margin:0px;text-align:center;"><i>allocatedFrom</i></p><p style="margin:0px;margin-left:8px;text-align:left;"><<elementType>> ElementName</p><hr/><p style="font-size:10px;margin:0px;text-align:center;"><i>allocatedTo</i></p><p style="margin:0px;margin-left:8px;text-align:left;"><<elementType>> ElementName</p>', "Allocation derived properties (Block)",null,null,this.getTagsForStencil("","","sysml allocation derived property block").join(" ")),this.addDataEntry("sysml allocation derived property comment",270,140,"Allocation derived properties (Comment)","xVRNb+MgEP01HCPZOK16rZO2l3Yv6R8g9sRGHQzF5Ku/fgdM7bKJpVZa7R4sz7xhhuHxGFas1OnJCtO+6BqQFQ+sWFmt3WCp0woQGc9kzYo14zyjj/HHmWgeopkRFjr3nQQ+JBwE7mFAGL9FSi0Nwb074wDfvu99S6UStpEdK+4zcxrdhdOGoDzBEHZuAh2c3EKgbHzuECqnqmQ18R/23n4CAlFXwkH9aLX6jNJpthcZ1p9xAoWijkq89ABBETevZwNjIE2KXvYwrPwlFMztMtPsq/7/rdIeZtqEJ5fJ+1YYb3ba0a9snSLhrXMye/nhA/mNt42oZNc8h9ta34QThgtcxwv8kqcPYHeoj+TuJCmsKI+tdLChEr7ekQT+Jb+iZsGOnVEu6WNWwQGK8n0CrcDZMy2JCctB4NlR1q6Noi4i1oJs2ljlLmKiH/xmrDQ9DzLiC7n+WoqL15IwP8OyhcqztdOd28Ro/i8IOsdodslQzq8wtPwLDC2vzJM/aLF639Xg12ephlBsAUtRvTVhyUqjtkGknRcpdPW9tUFhEalF34Y6+UgU1A0kNPV6bytIZp2j+QQuudBvkGkBhZOHtPoPmCJ3muohlgz93w=="), -this.addEntry("sysml allocation derived property internal block diagram",function(){var a=new mxCell('<p style="margin:0px;margin-top:4px;text-align:center;"><<block>><br/><b>BlockName</b></p><hr/>',new mxGeometry(0,0,250,160),"shape=rect;html=1;overflow=fill;strokeWidth=2;whiteSpace=wrap;align=center;verticalAlign=top;recursiveResize=0;");a.vertex=!0;var c=new mxCell('<p style="margin:0px;margin-top:4px;text-align:center;"><b>PartName</b><hr/></p><p style="font-size:10px;margin:0px;text-align:center;"><i>allocatedFrom</i></p><p style="margin:0px;margin-left:8px;text-align:left;"><<elementType>> ElementName</p>', -new mxGeometry(20,60,210,80),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;overflow=fill;strokeWidth=2;whiteSpace=wrap;align=center;");c.vertex=!0;a.insert(c);return d.createVertexTemplateFromCells([a],250,160,"Allocation derived properties (Internal Block Diagram)")}),this.createVertexTemplateEntry("html=1;shape=mxgraph.sysml.simpleState;html=1;overflow=fill;whiteSpace=wrap;align=center;",200,100,'<p style="margin:0px;margin-top:4px;text-align:center;"><b>ActivityName</b><hr/></p><p style="font-size:10px;margin:0px;text-align:center;"><i>allocatedTo</i></p><p style="margin:0px;margin-left:8px;text-align:left;"><<elementType>> ElementName</p>', -"Allocation Derived Properties (Activity Diagram)",null,null,this.getTagsForStencil("","","sysml allocation derived property activity diagram").join(" ")),this.addEntry("sysml allocation activity partition",function(){var a=new mxCell('<p style="margin:0px;margin-top:4px;text-align:center;"><<allocate>><br/>:ElementName<hr/></p>',new mxGeometry(0,0,250,160),"shape=rect;html=1;overflow=fill;whiteSpace=wrap;align=center;verticalAlign=top;");a.vertex=!0;var c=new mxCell("ActionName",new mxGeometry(65, -70,120,60),"html=1;shape=mxgraph.sysml.cont;fontStyle=1;whiteSpace=wrap;align=center;");c.vertex=!0;return d.createVertexTemplateFromCells([a,c],250,160,"Allocation Activity Partition")}),this.addEntry("sysml allocation general",function(){var a=new mxCell("Client",new mxGeometry(0,0,100,60),"shape=rect;html=1;fontStyle=1;whiteSpace=wrap;align=center;");a.vertex=!0;var c=new mxCell("Supplier",new mxGeometry(200,0,100,60),"shape=rect;html=1;fontStyle=1;whiteSpace=wrap;align=center;");c.vertex=!0;var e= -new mxCell("<<allocate>>",new mxGeometry(0,0,0,0),"rounded=0;html=1;verticalAlign=top;labelBackgroundColor=none;endArrow=open;dashed=1;endSize=12;");e.geometry.relative=!0;e.edge=!0;a.insertEdge(e,!0);c.insertEdge(e,!1);return d.createVertexTemplateFromCells([a,c,e],300,60,"Allocation (General)")})];this.addPalette("sysmlAllocations","SysML / Allocations",a||!1,mxUtils.bind(this,function(a){for(var b=0;b<e.length;b++)a.appendChild(e[b](a))}))};Sidebar.prototype.addSysMLRequirementsPalette= -function(a){var d=this,e=[this.createVertexTemplateEntry("html=1;shape=mxgraph.sysml.package;overflow=fill;labelX=110;strokeWidth=2;align=center;",160,80,'<p style="margin:0px;margin-top:4px;margin-left:7px;text-align:left;"><b>req</b> ReqDiagram</p>',"Requirement Diagram",null,null,this.getTagsForStencil("","package","sysml requirement diagram").join(" ")),this.createVertexTemplateEntry("shape=rect;overflow=fill;html=1;whiteSpace=wrap;align=center;",200,100,'<p style="margin:0px;margin-top:4px;text-align:center;"><<requirement>><br/><b>Requirement Name</b><hr/></p><p style="margin:0px;margin-left:8px;text-align:left;">text="The system shall do"<br/>Id="62j32."</p>', +this.addEntry("sysml allocation derived property internal block diagram",function(){var a=new mxCell('<p style="margin:0px;margin-top:4px;text-align:center;"><<block>><br/><b>BlockName</b></p><hr/>',new mxGeometry(0,0,250,160),"shape=rect;html=1;overflow=fill;strokeWidth=2;whiteSpace=wrap;align=center;verticalAlign=top;recursiveResize=0;");a.vertex=!0;var d=new mxCell('<p style="margin:0px;margin-top:4px;text-align:center;"><b>PartName</b><hr/></p><p style="font-size:10px;margin:0px;text-align:center;"><i>allocatedFrom</i></p><p style="margin:0px;margin-left:8px;text-align:left;"><<elementType>> ElementName</p>', +new mxGeometry(20,60,210,80),"strokeColor=inherit;fillColor=inherit;gradientColor=inherit;shape=rect;html=1;overflow=fill;strokeWidth=2;whiteSpace=wrap;align=center;");d.vertex=!0;a.insert(d);return b.createVertexTemplateFromCells([a],250,160,"Allocation derived properties (Internal Block Diagram)")}),this.createVertexTemplateEntry("html=1;shape=mxgraph.sysml.simpleState;html=1;overflow=fill;whiteSpace=wrap;align=center;",200,100,'<p style="margin:0px;margin-top:4px;text-align:center;"><b>ActivityName</b><hr/></p><p style="font-size:10px;margin:0px;text-align:center;"><i>allocatedTo</i></p><p style="margin:0px;margin-left:8px;text-align:left;"><<elementType>> ElementName</p>', +"Allocation Derived Properties (Activity Diagram)",null,null,this.getTagsForStencil("","","sysml allocation derived property activity diagram").join(" ")),this.addEntry("sysml allocation activity partition",function(){var a=new mxCell('<p style="margin:0px;margin-top:4px;text-align:center;"><<allocate>><br/>:ElementName<hr/></p>',new mxGeometry(0,0,250,160),"shape=rect;html=1;overflow=fill;whiteSpace=wrap;align=center;verticalAlign=top;");a.vertex=!0;var d=new mxCell("ActionName",new mxGeometry(65, +70,120,60),"html=1;shape=mxgraph.sysml.cont;fontStyle=1;whiteSpace=wrap;align=center;");d.vertex=!0;return b.createVertexTemplateFromCells([a,d],250,160,"Allocation Activity Partition")}),this.addEntry("sysml allocation general",function(){var a=new mxCell("Client",new mxGeometry(0,0,100,60),"shape=rect;html=1;fontStyle=1;whiteSpace=wrap;align=center;");a.vertex=!0;var d=new mxCell("Supplier",new mxGeometry(200,0,100,60),"shape=rect;html=1;fontStyle=1;whiteSpace=wrap;align=center;");d.vertex=!0;var e= +new mxCell("<<allocate>>",new mxGeometry(0,0,0,0),"rounded=0;html=1;verticalAlign=top;labelBackgroundColor=none;endArrow=open;dashed=1;endSize=12;");e.geometry.relative=!0;e.edge=!0;a.insertEdge(e,!0);d.insertEdge(e,!1);return b.createVertexTemplateFromCells([a,d,e],300,60,"Allocation (General)")})];this.addPalette("sysmlAllocations","SysML / Allocations",a||!1,mxUtils.bind(this,function(a){for(var b=0;b<e.length;b++)a.appendChild(e[b](a))}))};Sidebar.prototype.addSysMLRequirementsPalette= +function(a){var b=this,e=[this.createVertexTemplateEntry("html=1;shape=mxgraph.sysml.package;overflow=fill;labelX=110;strokeWidth=2;align=center;",160,80,'<p style="margin:0px;margin-top:4px;margin-left:7px;text-align:left;"><b>req</b> ReqDiagram</p>',"Requirement Diagram",null,null,this.getTagsForStencil("","package","sysml requirement diagram").join(" ")),this.createVertexTemplateEntry("shape=rect;overflow=fill;html=1;whiteSpace=wrap;align=center;",200,100,'<p style="margin:0px;margin-top:4px;text-align:center;"><<requirement>><br/><b>Requirement Name</b><hr/></p><p style="margin:0px;margin-left:8px;text-align:left;">text="The system shall do"<br/>Id="62j32."</p>', "Requirement",null,null,this.getTagsForStencil("","package","sysml requirement ").join(" ")),this.createVertexTemplateEntry("shape=rect;overflow=fill;html=1;whiteSpace=wrap;align=center;",200,100,'<p style="margin:0px;margin-top:4px;text-align:center;"><<testCase>><br/><b>TestCaseName</b><hr/></p>',"Test Case",null,null,this.getTagsForStencil("","package","sysml requirement test case").join(" ")),this.addDataEntry("sysml requirement containment relationship",300,180,"Requirement Containment Relationship", "5ZXfboIwFMafpvdQnNkuB27ezMTEJ6hwQpsVykoR2dPvtBRdjSYmy5zJLkjOn37fob8GSpKs2i81a/hKFSBJ8kKSTCtlxqjaZyAloZEoSLIglEb4EPp6oRu7btQwDbW5RkBHwY7JDsYKoXNWNSRJJRqkYabhoxMaKms+Ncpg2ZQRmsQRhuvxTdyQ1gzSD2k5a2yoIbcCbirc+SLGsOfCwKZhuW33yAVrTIqyxjRHK9BugHtp0Ab2FzfuSn7XS1AVGD3gEi94GrlEvSgM9wLPKuIgSu5d5r7G2jEvD05Hqhh4sOchJ78MOeNCFvE9QR5OiN6C8uwWlOk9UZ4Ej57eX1B/OEP9hJBWXV2AXR+FgCTbgkxZ/l66JZmSCpEsalWjMoW6eNZa9d8qRQkb7wtyq/qXYyF1BWxYlCJnOCNtDdNm8miHdvW2xmGZsljH5kZ8WrOYHk7CzgjOoVWdziH4W6KyBBN821eclgbJjNiF7j9BP//n6Gc3Q4/p8Up2veDG/gI="), -this.addEntry("sysml requirement copy dependency",function(){var a=new mxCell("<<requirement>>\nSlave",new mxGeometry(0,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");a.vertex=!0;var c=new mxCell("<<requirement>>\nMaster",new mxGeometry(240,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");c.vertex=!0;var e=new mxCell("<<copy>>",new mxGeometry(0,0,0,0),"endArrow=open;edgeStyle=none;endSize=12;dashed=1;html=1;");e.geometry.relative=!0;e.edge= -!0;a.insertEdge(e,!0);c.insertEdge(e,!1);return d.createVertexTemplateFromCells([a,c,e],360,60,"Copy Dependency")}),this.addEntry("sysml requirement master callout",function(){var a=new mxCell("Master\n<<requirement>> Master",new mxGeometry(0,0,160,60),"shape=note;html=1;size=15;align=left;spacingLeft=5;whiteSpace=wrap;align=center;");a.vertex=!0;var c=new mxCell("<<requirement>> Slave",new mxGeometry(200,0,160,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");c.vertex= -!0;var e=new mxCell("",new mxGeometry(0,0,0,0),"endArrow=none;html=1;edgeStyle=none;dashed=1;");e.geometry.relative=!0;e.edge=!0;a.insertEdge(e,!0);c.insertEdge(e,!1);return d.createVertexTemplateFromCells([a,c,e],360,60,"Master Callout")}),this.addEntry("sysml requirement derive dependency",function(){var a=new mxCell("<<requirement>>\nClient",new mxGeometry(0,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");a.vertex=!0;var c=new mxCell("<<requirement>>\nSupplier", -new mxGeometry(240,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");c.vertex=!0;var e=new mxCell("<<deriveReq>>",new mxGeometry(0,0,0,0),"endArrow=open;html=1;edgeStyle=none;endSize=12;dashed=1;");e.geometry.relative=!0;e.edge=!0;a.insertEdge(e,!0);c.insertEdge(e,!1);return d.createVertexTemplateFromCells([a,c,e],360,60,"Derive Dependency")}),this.addEntry("sysml requirement derive callout",function(){var a=new mxCell("<<requirement>>\nReqA",new mxGeometry(0,0, -120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");a.vertex=!0;var c=new mxCell("Derived\n<<requirement>> ReqB",new mxGeometry(200,0,160,60),"shape=note;html=1;size=15;align=left;spacingLeft=5;whiteSpace=wrap;align=center;");c.vertex=!0;var e=new mxCell("",new mxGeometry(0,0,0,0),"endArrow=none;html=1;edgeStyle=none;dashed=1;");e.geometry.relative=!0;e.edge=!0;a.insertEdge(e,!0);c.insertEdge(e,!1);return d.createVertexTemplateFromCells([a,c,e],360,60,"Derive Callout")}),this.addEntry("sysml requirement derive callout", -function(){var a=new mxCell("DerivedFrom\n<<requirement>> ReqA",new mxGeometry(0,0,160,60),"shape=note;html=1;size=15;align=left;spacingLeft=5;whiteSpace=wrap;align=center;");a.vertex=!0;var c=new mxCell("<<requirement>>\nReqB",new mxGeometry(240,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");c.vertex=!0;var e=new mxCell("",new mxGeometry(0,0,0,0),"endArrow=none;edgeStyle=none;dashed=1;html=1;");e.geometry.relative=!0;e.edge=!0;a.insertEdge(e,!0);c.insertEdge(e, -!1);return d.createVertexTemplateFromCells([a,c,e],360,60,"Derive Callout")}),this.addEntry("sysml requirement satisfy dependency",function(){var a=new mxCell("NamedElement",new mxGeometry(0,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");a.vertex=!0;var c=new mxCell("<<requirement>>\nSupplier",new mxGeometry(240,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");c.vertex=!0;var e=new mxCell("<<satisfy>>",new mxGeometry(0,0,0,0),"endArrow=open;edgeStyle=none;endSize=12;dashed=1;html=1;"); -e.geometry.relative=!0;e.edge=!0;a.insertEdge(e,!0);c.insertEdge(e,!1);return d.createVertexTemplateFromCells([a,c,e],360,60,"Satisfy Dependency")}),this.addEntry("sysml requirement satisfy callout",function(){var a=new mxCell("NamedElement",new mxGeometry(0,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");a.vertex=!0;var c=new mxCell("Satisfies\n<<requirement>> ReqA",new mxGeometry(200,0,160,60),"shape=note;size=15;align=left;spacingLeft=5;html=1;whiteSpace=wrap;align=center;"); -c.vertex=!0;var e=new mxCell("",new mxGeometry(0,0,0,0),"endArrow=none;edgeStyle=none;dashed=1;html=1;");e.geometry.relative=!0;e.edge=!0;a.insertEdge(e,!0);c.insertEdge(e,!1);return d.createVertexTemplateFromCells([a,c,e],360,60,"Satisfy Callout")}),this.addEntry("sysml requirement satisfy callout",function(){var a=new mxCell("SatisfiedBy\nNamedElement",new mxGeometry(0,0,160,60),"shape=note;size=15;align=left;spacingLeft=5;html=1;whiteSpace=wrap;align=center;");a.vertex=!0;var c=new mxCell("<<requirement>>\nReqA", -new mxGeometry(240,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");c.vertex=!0;var e=new mxCell("",new mxGeometry(0,0,0,0),"endArrow=none;edgeStyle=none;dashed=1;html=1;");e.geometry.relative=!0;e.edge=!0;a.insertEdge(e,!0);c.insertEdge(e,!1);return d.createVertexTemplateFromCells([a,c,e],360,60,"Satisfy Callout")}),this.addEntry("sysml requirement verify dependency",function(){var a=new mxCell("NamedElement",new mxGeometry(0,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;"); -a.vertex=!0;var c=new mxCell("<<requirement>>\nSupplier",new mxGeometry(240,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");c.vertex=!0;var e=new mxCell("<<verify>>",new mxGeometry(0,0,0,0),"endArrow=open;edgeStyle=none;endSize=12;dashed=1;html=1;");e.geometry.relative=!0;e.edge=!0;a.insertEdge(e,!0);c.insertEdge(e,!1);return d.createVertexTemplateFromCells([a,c,e],360,60,"Verify Dependency")}),this.addEntry("sysml requirement verify callout",function(){var a= -new mxCell("NamedElement",new mxGeometry(0,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");a.vertex=!0;var c=new mxCell("Verifies\n<<requirement>> ReqA",new mxGeometry(200,0,160,60),"shape=note;size=15;align=left;spacingLeft=5;html=1;whiteSpace=wrap;align=center;");c.vertex=!0;var e=new mxCell("",new mxGeometry(0,0,0,0),"endArrow=none;edgeStyle=none;dashed=1;html=1;");e.geometry.relative=!0;e.edge=!0;a.insertEdge(e,!0);c.insertEdge(e,!1);return d.createVertexTemplateFromCells([a, -c,e],360,60,"Verify Callout")}),this.addEntry("sysml requirement verify callout",function(){var a=new mxCell("VerifiedBy\nNamedElement",new mxGeometry(0,0,160,60),"shape=note;size=15;align=left;spacingLeft=5;html=1;whiteSpace=wrap;align=center;");a.vertex=!0;var c=new mxCell("<<requirement>>\nReqA",new mxGeometry(240,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");c.vertex=!0;var e=new mxCell("",new mxGeometry(0,0,0,0),"endArrow=none;edgeStyle=none;dashed=1;html=1;");e.geometry.relative= -!0;e.edge=!0;a.insertEdge(e,!0);c.insertEdge(e,!1);return d.createVertexTemplateFromCells([a,c,e],360,60,"Verify Callout")}),this.addEntry("sysml requirement refine dependency",function(){var a=new mxCell("NamedElement",new mxGeometry(0,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");a.vertex=!0;var c=new mxCell("<<requirement>>\nClient",new mxGeometry(240,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");c.vertex=!0;var e=new mxCell("<<refine>>",new mxGeometry(0, -0,0,0),"endArrow=open;edgeStyle=none;endSize=12;dashed=1;html=1;");e.geometry.relative=!0;e.edge=!0;a.insertEdge(e,!0);c.insertEdge(e,!1);return d.createVertexTemplateFromCells([a,c,e],360,60,"Refine Dependency")}),this.addEntry("sysml requirement refine dependency",function(){var a=new mxCell("NamedElement",new mxGeometry(0,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");a.vertex=!0;var c=new mxCell("Refines\n<<requirement>> ReqA",new mxGeometry(200,0,160,60),"shape=note;size=15;align=left;spacingLeft=5;html=1;whiteSpace=wrap;align=center;"); -c.vertex=!0;var e=new mxCell("",new mxGeometry(0,0,0,0),"endArrow=none;edgeStyle=none;dashed=1;html=1;");e.geometry.relative=!0;e.edge=!0;a.insertEdge(e,!0);c.insertEdge(e,!1);return d.createVertexTemplateFromCells([a,c,e],360,60,"Refine Callout")}),this.addEntry("sysml requirement refine dependency",function(){var a=new mxCell("RefinedBy\nNamedElement",new mxGeometry(0,0,160,60),"shape=note;size=15;align=left;spacingLeft=5;html=1;whiteSpace=wrap;align=center;");a.vertex=!0;var c=new mxCell("<<requirement>>\nReqA", -new mxGeometry(240,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");c.vertex=!0;var e=new mxCell("",new mxGeometry(0,0,0,0),"endArrow=none;edgeStyle=none;dashed=1;html=1;");e.geometry.relative=!0;e.edge=!0;a.insertEdge(e,!0);c.insertEdge(e,!1);return d.createVertexTemplateFromCells([a,c,e],360,60,"Refine Callout")}),this.addEntry("sysml requirement trace dependency",function(){var a=new mxCell("<<requirement>>\nClient",new mxGeometry(0,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;"); -a.vertex=!0;var c=new mxCell("<<requirement>>\nSupplier",new mxGeometry(240,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");c.vertex=!0;var e=new mxCell("<<trace>>",new mxGeometry(0,0,0,0),"endArrow=open;edgeStyle=none;endSize=12;dashed=1;html=1;");e.geometry.relative=!0;e.edge=!0;a.insertEdge(e,!0);c.insertEdge(e,!1);return d.createVertexTemplateFromCells([a,c,e],360,60,"Trace Dependency")}),this.addEntry("sysml requirement refine callout",function(){var a=new mxCell("NamedElement", -new mxGeometry(0,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");a.vertex=!0;var c=new mxCell("TracedFrom\n<<requirement>> ReqA",new mxGeometry(200,0,160,60),"shape=note;size=15;align=left;spacingLeft=5;html=1;whiteSpace=wrap;align=center;");c.vertex=!0;var e=new mxCell("",new mxGeometry(0,0,0,0),"endArrow=none;edgeStyle=none;dashed=1;html=1;");e.geometry.relative=!0;e.edge=!0;a.insertEdge(e,!0);c.insertEdge(e,!1);return d.createVertexTemplateFromCells([a,c,e],360,60,"Refine Callout")}), -this.addEntry("sysml requirement trace callout",function(){var a=new mxCell("TracedTo\nNamedElement",new mxGeometry(0,0,160,60),"shape=note;size=15;align=left;spacingLeft=5;html=1;whiteSpace=wrap;align=center;");a.vertex=!0;var c=new mxCell("<<requirement>>\nReqA",new mxGeometry(240,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");c.vertex=!0;var e=new mxCell("",new mxGeometry(0,0,0,0),"endArrow=none;edgeStyle=none;dashed=1;html=1;");e.geometry.relative=!0;e.edge=!0;a.insertEdge(e, -!0);c.insertEdge(e,!1);return d.createVertexTemplateFromCells([a,c,e],360,60,"Trace Callout")})];this.addPalette("sysmlRequirements","SysML / Requirements",a||!1,mxUtils.bind(this,function(a){for(var b=0;b<e.length;b++)a.appendChild(e[b](a))}))};Sidebar.prototype.addSysMLProfilesPalette=function(a){var d=this,e=[this.createVertexTemplateEntry("shape=rect;html=1;whiteSpace=wrap;align=center;",160,80,"<<stereotype>>\nStereotypeName","Stereotype",null,null,this.getTagsForStencil("","","sysml profile stereotype").join(" ")), +this.addEntry("sysml requirement copy dependency",function(){var a=new mxCell("<<requirement>>\nSlave",new mxGeometry(0,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");a.vertex=!0;var d=new mxCell("<<requirement>>\nMaster",new mxGeometry(240,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");d.vertex=!0;var e=new mxCell("<<copy>>",new mxGeometry(0,0,0,0),"endArrow=open;edgeStyle=none;endSize=12;dashed=1;html=1;");e.geometry.relative=!0;e.edge= +!0;a.insertEdge(e,!0);d.insertEdge(e,!1);return b.createVertexTemplateFromCells([a,d,e],360,60,"Copy Dependency")}),this.addEntry("sysml requirement master callout",function(){var a=new mxCell("Master\n<<requirement>> Master",new mxGeometry(0,0,160,60),"shape=note;html=1;size=15;align=left;spacingLeft=5;whiteSpace=wrap;align=center;");a.vertex=!0;var d=new mxCell("<<requirement>> Slave",new mxGeometry(200,0,160,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");d.vertex= +!0;var e=new mxCell("",new mxGeometry(0,0,0,0),"endArrow=none;html=1;edgeStyle=none;dashed=1;");e.geometry.relative=!0;e.edge=!0;a.insertEdge(e,!0);d.insertEdge(e,!1);return b.createVertexTemplateFromCells([a,d,e],360,60,"Master Callout")}),this.addEntry("sysml requirement derive dependency",function(){var a=new mxCell("<<requirement>>\nClient",new mxGeometry(0,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");a.vertex=!0;var d=new mxCell("<<requirement>>\nSupplier", +new mxGeometry(240,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");d.vertex=!0;var e=new mxCell("<<deriveReq>>",new mxGeometry(0,0,0,0),"endArrow=open;html=1;edgeStyle=none;endSize=12;dashed=1;");e.geometry.relative=!0;e.edge=!0;a.insertEdge(e,!0);d.insertEdge(e,!1);return b.createVertexTemplateFromCells([a,d,e],360,60,"Derive Dependency")}),this.addEntry("sysml requirement derive callout",function(){var a=new mxCell("<<requirement>>\nReqA",new mxGeometry(0,0, +120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");a.vertex=!0;var d=new mxCell("Derived\n<<requirement>> ReqB",new mxGeometry(200,0,160,60),"shape=note;html=1;size=15;align=left;spacingLeft=5;whiteSpace=wrap;align=center;");d.vertex=!0;var e=new mxCell("",new mxGeometry(0,0,0,0),"endArrow=none;html=1;edgeStyle=none;dashed=1;");e.geometry.relative=!0;e.edge=!0;a.insertEdge(e,!0);d.insertEdge(e,!1);return b.createVertexTemplateFromCells([a,d,e],360,60,"Derive Callout")}),this.addEntry("sysml requirement derive callout", +function(){var a=new mxCell("DerivedFrom\n<<requirement>> ReqA",new mxGeometry(0,0,160,60),"shape=note;html=1;size=15;align=left;spacingLeft=5;whiteSpace=wrap;align=center;");a.vertex=!0;var d=new mxCell("<<requirement>>\nReqB",new mxGeometry(240,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");d.vertex=!0;var e=new mxCell("",new mxGeometry(0,0,0,0),"endArrow=none;edgeStyle=none;dashed=1;html=1;");e.geometry.relative=!0;e.edge=!0;a.insertEdge(e,!0);d.insertEdge(e, +!1);return b.createVertexTemplateFromCells([a,d,e],360,60,"Derive Callout")}),this.addEntry("sysml requirement satisfy dependency",function(){var a=new mxCell("NamedElement",new mxGeometry(0,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");a.vertex=!0;var d=new mxCell("<<requirement>>\nSupplier",new mxGeometry(240,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");d.vertex=!0;var e=new mxCell("<<satisfy>>",new mxGeometry(0,0,0,0),"endArrow=open;edgeStyle=none;endSize=12;dashed=1;html=1;"); +e.geometry.relative=!0;e.edge=!0;a.insertEdge(e,!0);d.insertEdge(e,!1);return b.createVertexTemplateFromCells([a,d,e],360,60,"Satisfy Dependency")}),this.addEntry("sysml requirement satisfy callout",function(){var a=new mxCell("NamedElement",new mxGeometry(0,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");a.vertex=!0;var d=new mxCell("Satisfies\n<<requirement>> ReqA",new mxGeometry(200,0,160,60),"shape=note;size=15;align=left;spacingLeft=5;html=1;whiteSpace=wrap;align=center;"); +d.vertex=!0;var e=new mxCell("",new mxGeometry(0,0,0,0),"endArrow=none;edgeStyle=none;dashed=1;html=1;");e.geometry.relative=!0;e.edge=!0;a.insertEdge(e,!0);d.insertEdge(e,!1);return b.createVertexTemplateFromCells([a,d,e],360,60,"Satisfy Callout")}),this.addEntry("sysml requirement satisfy callout",function(){var a=new mxCell("SatisfiedBy\nNamedElement",new mxGeometry(0,0,160,60),"shape=note;size=15;align=left;spacingLeft=5;html=1;whiteSpace=wrap;align=center;");a.vertex=!0;var d=new mxCell("<<requirement>>\nReqA", +new mxGeometry(240,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");d.vertex=!0;var e=new mxCell("",new mxGeometry(0,0,0,0),"endArrow=none;edgeStyle=none;dashed=1;html=1;");e.geometry.relative=!0;e.edge=!0;a.insertEdge(e,!0);d.insertEdge(e,!1);return b.createVertexTemplateFromCells([a,d,e],360,60,"Satisfy Callout")}),this.addEntry("sysml requirement verify dependency",function(){var a=new mxCell("NamedElement",new mxGeometry(0,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;"); +a.vertex=!0;var d=new mxCell("<<requirement>>\nSupplier",new mxGeometry(240,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");d.vertex=!0;var e=new mxCell("<<verify>>",new mxGeometry(0,0,0,0),"endArrow=open;edgeStyle=none;endSize=12;dashed=1;html=1;");e.geometry.relative=!0;e.edge=!0;a.insertEdge(e,!0);d.insertEdge(e,!1);return b.createVertexTemplateFromCells([a,d,e],360,60,"Verify Dependency")}),this.addEntry("sysml requirement verify callout",function(){var a= +new mxCell("NamedElement",new mxGeometry(0,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");a.vertex=!0;var d=new mxCell("Verifies\n<<requirement>> ReqA",new mxGeometry(200,0,160,60),"shape=note;size=15;align=left;spacingLeft=5;html=1;whiteSpace=wrap;align=center;");d.vertex=!0;var e=new mxCell("",new mxGeometry(0,0,0,0),"endArrow=none;edgeStyle=none;dashed=1;html=1;");e.geometry.relative=!0;e.edge=!0;a.insertEdge(e,!0);d.insertEdge(e,!1);return b.createVertexTemplateFromCells([a, +d,e],360,60,"Verify Callout")}),this.addEntry("sysml requirement verify callout",function(){var a=new mxCell("VerifiedBy\nNamedElement",new mxGeometry(0,0,160,60),"shape=note;size=15;align=left;spacingLeft=5;html=1;whiteSpace=wrap;align=center;");a.vertex=!0;var d=new mxCell("<<requirement>>\nReqA",new mxGeometry(240,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");d.vertex=!0;var e=new mxCell("",new mxGeometry(0,0,0,0),"endArrow=none;edgeStyle=none;dashed=1;html=1;");e.geometry.relative= +!0;e.edge=!0;a.insertEdge(e,!0);d.insertEdge(e,!1);return b.createVertexTemplateFromCells([a,d,e],360,60,"Verify Callout")}),this.addEntry("sysml requirement refine dependency",function(){var a=new mxCell("NamedElement",new mxGeometry(0,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");a.vertex=!0;var d=new mxCell("<<requirement>>\nClient",new mxGeometry(240,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");d.vertex=!0;var e=new mxCell("<<refine>>",new mxGeometry(0, +0,0,0),"endArrow=open;edgeStyle=none;endSize=12;dashed=1;html=1;");e.geometry.relative=!0;e.edge=!0;a.insertEdge(e,!0);d.insertEdge(e,!1);return b.createVertexTemplateFromCells([a,d,e],360,60,"Refine Dependency")}),this.addEntry("sysml requirement refine dependency",function(){var a=new mxCell("NamedElement",new mxGeometry(0,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");a.vertex=!0;var d=new mxCell("Refines\n<<requirement>> ReqA",new mxGeometry(200,0,160,60),"shape=note;size=15;align=left;spacingLeft=5;html=1;whiteSpace=wrap;align=center;"); +d.vertex=!0;var e=new mxCell("",new mxGeometry(0,0,0,0),"endArrow=none;edgeStyle=none;dashed=1;html=1;");e.geometry.relative=!0;e.edge=!0;a.insertEdge(e,!0);d.insertEdge(e,!1);return b.createVertexTemplateFromCells([a,d,e],360,60,"Refine Callout")}),this.addEntry("sysml requirement refine dependency",function(){var a=new mxCell("RefinedBy\nNamedElement",new mxGeometry(0,0,160,60),"shape=note;size=15;align=left;spacingLeft=5;html=1;whiteSpace=wrap;align=center;");a.vertex=!0;var d=new mxCell("<<requirement>>\nReqA", +new mxGeometry(240,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");d.vertex=!0;var e=new mxCell("",new mxGeometry(0,0,0,0),"endArrow=none;edgeStyle=none;dashed=1;html=1;");e.geometry.relative=!0;e.edge=!0;a.insertEdge(e,!0);d.insertEdge(e,!1);return b.createVertexTemplateFromCells([a,d,e],360,60,"Refine Callout")}),this.addEntry("sysml requirement trace dependency",function(){var a=new mxCell("<<requirement>>\nClient",new mxGeometry(0,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;"); +a.vertex=!0;var d=new mxCell("<<requirement>>\nSupplier",new mxGeometry(240,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");d.vertex=!0;var e=new mxCell("<<trace>>",new mxGeometry(0,0,0,0),"endArrow=open;edgeStyle=none;endSize=12;dashed=1;html=1;");e.geometry.relative=!0;e.edge=!0;a.insertEdge(e,!0);d.insertEdge(e,!1);return b.createVertexTemplateFromCells([a,d,e],360,60,"Trace Dependency")}),this.addEntry("sysml requirement refine callout",function(){var a=new mxCell("NamedElement", +new mxGeometry(0,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");a.vertex=!0;var d=new mxCell("TracedFrom\n<<requirement>> ReqA",new mxGeometry(200,0,160,60),"shape=note;size=15;align=left;spacingLeft=5;html=1;whiteSpace=wrap;align=center;");d.vertex=!0;var e=new mxCell("",new mxGeometry(0,0,0,0),"endArrow=none;edgeStyle=none;dashed=1;html=1;");e.geometry.relative=!0;e.edge=!0;a.insertEdge(e,!0);d.insertEdge(e,!1);return b.createVertexTemplateFromCells([a,d,e],360,60,"Refine Callout")}), +this.addEntry("sysml requirement trace callout",function(){var a=new mxCell("TracedTo\nNamedElement",new mxGeometry(0,0,160,60),"shape=note;size=15;align=left;spacingLeft=5;html=1;whiteSpace=wrap;align=center;");a.vertex=!0;var d=new mxCell("<<requirement>>\nReqA",new mxGeometry(240,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");d.vertex=!0;var e=new mxCell("",new mxGeometry(0,0,0,0),"endArrow=none;edgeStyle=none;dashed=1;html=1;");e.geometry.relative=!0;e.edge=!0;a.insertEdge(e, +!0);d.insertEdge(e,!1);return b.createVertexTemplateFromCells([a,d,e],360,60,"Trace Callout")})];this.addPalette("sysmlRequirements","SysML / Requirements",a||!1,mxUtils.bind(this,function(a){for(var b=0;b<e.length;b++)a.appendChild(e[b](a))}))};Sidebar.prototype.addSysMLProfilesPalette=function(a){var b=this,e=[this.createVertexTemplateEntry("shape=rect;html=1;whiteSpace=wrap;align=center;",160,80,"<<stereotype>>\nStereotypeName","Stereotype",null,null,this.getTagsForStencil("","","sysml profile stereotype").join(" ")), this.createVertexTemplateEntry("shape=rect;html=1;whiteSpace=wrap;align=center;",160,80,"<<metaclass>>\nMetaClassName","Metaclass",null,null,this.getTagsForStencil("","","sysml profile metaclass").join(" ")),this.createVertexTemplateEntry("shape=folder;tabWidth=80;tabHeight=20;tabPosition=left;html=1;whiteSpace=wrap;align=center;",160,100,"<<profile>>\nProfileName","Profile",null,null,this.getTagsForStencil("","","sysml profile profile").join(" ")),this.createVertexTemplateEntry("shape=folder;tabWidth=80;tabHeight=20;tabPosition=left;html=1;whiteSpace=wrap;align=center;", -160,100,"<<modelLibrary>>\nLibraryName","Model Library",null,null,this.getTagsForStencil("","","sysml profile model library").join(" ")),this.addEntry("sysml profile extension",function(){var a=new mxCell("<<metaclass>>\nMetaClassName",new mxGeometry(0,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");a.vertex=!0;var c=new mxCell("<<stereotype>>\nStereotypeName",new mxGeometry(0,120,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");c.vertex= -!0;var e=new mxCell("{required}",new mxGeometry(0,0,0,0),"endArrow=block;html=1;endFill=1;edgeStyle=none;endSize=12;labelBackgroundColor=none;align=left;");e.geometry.relative=!0;e.edge=!0;a.insertEdge(e,!1);c.insertEdge(e,!0);return d.createVertexTemplateFromCells([a,c,e],120,180,"Extension")}),this.addEntry("sysml profile generalization",function(){var a=new mxCell("<<stereotype>>\nStereotypeName",new mxGeometry(0,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");a.vertex= -!0;var c=new mxCell("<<stereotype>>\nStereotypeName",new mxGeometry(0,120,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");c.vertex=!0;var e=new mxCell("",new mxGeometry(0,0,0,0),"endArrow=block;html=1;endFill=0;edgeStyle=none;endSize=12;labelBackgroundColor=none;align=left;");e.geometry.relative=!0;e.edge=!0;a.insertEdge(e,!1);c.insertEdge(e,!0);return d.createVertexTemplateFromCells([a,c,e],120,180,"Generalization")}),this.createEdgeTemplateEntry("edgeStyle=none;html=1;endArrow=open;endSize=12;dashed=1;verticalAlign=bottom;", +160,100,"<<modelLibrary>>\nLibraryName","Model Library",null,null,this.getTagsForStencil("","","sysml profile model library").join(" ")),this.addEntry("sysml profile extension",function(){var a=new mxCell("<<metaclass>>\nMetaClassName",new mxGeometry(0,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");a.vertex=!0;var d=new mxCell("<<stereotype>>\nStereotypeName",new mxGeometry(0,120,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");d.vertex= +!0;var e=new mxCell("{required}",new mxGeometry(0,0,0,0),"endArrow=block;html=1;endFill=1;edgeStyle=none;endSize=12;labelBackgroundColor=none;align=left;");e.geometry.relative=!0;e.edge=!0;a.insertEdge(e,!1);d.insertEdge(e,!0);return b.createVertexTemplateFromCells([a,d,e],120,180,"Extension")}),this.addEntry("sysml profile generalization",function(){var a=new mxCell("<<stereotype>>\nStereotypeName",new mxGeometry(0,0,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");a.vertex= +!0;var d=new mxCell("<<stereotype>>\nStereotypeName",new mxGeometry(0,120,120,60),"shape=rect;html=1;whiteSpace=wrap;align=center;");d.vertex=!0;var e=new mxCell("",new mxGeometry(0,0,0,0),"endArrow=block;html=1;endFill=0;edgeStyle=none;endSize=12;labelBackgroundColor=none;align=left;");e.geometry.relative=!0;e.edge=!0;a.insertEdge(e,!1);d.insertEdge(e,!0);return b.createVertexTemplateFromCells([a,d,e],120,180,"Generalization")}),this.createEdgeTemplateEntry("edgeStyle=none;html=1;endArrow=open;endSize=12;dashed=1;verticalAlign=bottom;", 160,0,"<<apply>>{strict}","Profile Application",null,this.getTagsForStencil("","","sysml profile profile application").join(" ")),this.createEdgeTemplateEntry("edgeStyle=none;html=1;endArrow=open;endSize=12;dashed=1;verticalAlign=top;",160,0,"<<reference>>","Metamodel Reference",null,this.getTagsForStencil("","","sysml profile metamodel reference").join(" ")),this.createEdgeTemplateEntry("edgeStyle=none;html=1;endArrow=open;endSize=12;verticalAlign=bottom;",160,0,"propertyName", -"Unidirectional Association",null,this.getTagsForStencil("","","sysml profile unidirectional association").join(" "))];this.addPalette("sysmlProfiles","SysML / Profiles",a||!1,mxUtils.bind(this,function(a){for(var b=0;b<e.length;b++)a.appendChild(e[b](a))}))};Sidebar.prototype.addSysMLStereotypesPalette=function(a){var d=[this.addDataEntry("sysml stereotype note",320,150,"Stereotype Note","3ZZdb5swFIZ/DZeVwCTRbgPpetNOkSLt3oETsGYwM4ck7NfvGDtQAkk7tdKkXkSx3/Nh8/Aa8MK4OD9pXuUvKgXphY9eGGul0I6KcwxSeswXqRduPMZ8+nns+41o0EX9imso8T0FzBYcuWzAKh5bSSqNKpJrbKWVV78bs6Wo4DoTpReu/ercTx9QVSQFI03CAQcR4YwPXIrM1NpQNHSlUeb+u7X3rwReUO9ITmc1ggaFbQU/eAF9bFw3bqsNCNd6q1UFGtuuONz8NAR2qEWZzaa/NBLFvZqYeL3VJFJKAi9HbVweZe2vMZBWDRob3RBW57wyw1IhGBrij5kFSzOueEJbeO4wb4ySYyFNlIbqCPog1YmmB0FeCKNTLhB2VGManMiK/XKUSjfuprU6yfnqCVQBqFtKcQUL6zz/JFLMndu+OS0HkeWuy0XjtZ1nfafBtzRw1p23cTix8aOEwmyUrTwWBj5dkqV9g6KGxFA+qBJ3LhqMuc1RcobeJLQS6A9ia100mHKbw7b4BGyLL4DNFVwedP8D43KCccsxnwWnVVOmYOoMW8n3ICOe/Mo6PVZS6e5Il+ZIGx4i4XLtcHVP2QjKdK11d35d3h36dn1IMxhhrVWjExgdHaSnNuDIFu+Ar0FyFMdx94+gXM28j+4inOJIeZ134X9nwT7/wl3pVglzqi5uDZZXbg2vbGhvh6u6wtdvY44oTYevB5v++uPiLw=="), +"Unidirectional Association",null,this.getTagsForStencil("","","sysml profile unidirectional association").join(" "))];this.addPalette("sysmlProfiles","SysML / Profiles",a||!1,mxUtils.bind(this,function(a){for(var b=0;b<e.length;b++)a.appendChild(e[b](a))}))};Sidebar.prototype.addSysMLStereotypesPalette=function(a){var b=[this.addDataEntry("sysml stereotype note",320,150,"Stereotype Note","3ZZdb5swFIZ/DZeVwCTRbgPpetNOkSLt3oETsGYwM4ck7NfvGDtQAkk7tdKkXkSx3/Nh8/Aa8MK4OD9pXuUvKgXphY9eGGul0I6KcwxSeswXqRduPMZ8+nns+41o0EX9imso8T0FzBYcuWzAKh5bSSqNKpJrbKWVV78bs6Wo4DoTpReu/ercTx9QVSQFI03CAQcR4YwPXIrM1NpQNHSlUeb+u7X3rwReUO9ITmc1ggaFbQU/eAF9bFw3bqsNCNd6q1UFGtuuONz8NAR2qEWZzaa/NBLFvZqYeL3VJFJKAi9HbVweZe2vMZBWDRob3RBW57wyw1IhGBrij5kFSzOueEJbeO4wb4ySYyFNlIbqCPog1YmmB0FeCKNTLhB2VGManMiK/XKUSjfuprU6yfnqCVQBqFtKcQUL6zz/JFLMndu+OS0HkeWuy0XjtZ1nfafBtzRw1p23cTix8aOEwmyUrTwWBj5dkqV9g6KGxFA+qBJ3LhqMuc1RcobeJLQS6A9ia100mHKbw7b4BGyLL4DNFVwedP8D43KCccsxnwWnVVOmYOoMW8n3ICOe/Mo6PVZS6e5Il+ZIGx4i4XLtcHVP2QjKdK11d35d3h36dn1IMxhhrVWjExgdHaSnNuDIFu+Ar0FyFMdx94+gXM28j+4inOJIeZ134X9nwT7/wl3pVglzqi5uDZZXbg2vbGhvh6u6wtdvY44oTYevB5v++uPiLw=="), this.addDataEntry("sysml stereotype note",320,150,"Stereotype Note","rZRNj9owEIZ/jY8rJTGLet3Adi/daiWk3r1kSCw5tutMgPTXdxybZA2hXak9IMbvfNg8fjHjm/b84oRtXk0FivFnxjfOGAxRe96AUqzIZMX4lhVFRh9WfL2TzcdsZoUDjZ9pKELDUagegsKKtaLW0pLc4aCCvP7Z+yOVrXC11Iw/ZfY8LR/QWJLyRFNwwFlEOOODULL2vSFVzlMpquP3uPf7B0G0NLtUt6sOwYHBwcJ30cKUS/vSsc6DiKPfnLHgcBib+faHJ7BDJ3W9WP7aK5R/6tkQr78NKY1RIHQyJtZR1fs1BtLsrBXJhRRdI6wPtUHwNOQvv8offWzFno7wbcS89UqDrfJZCs0R3EGZEy0PkrzAy1MjEXbU4wecyIrTdlRKF3fXWqMUffUCpgV0A5XEhlVwXnaSFTbRbV+i1oCsmzjlookurOtp0uxbCqJ1l23Mb2z8rKD1By3WrOB5Rj8p0L5D0cHeUz4YjbuYzVNuS5Siobd72gncP2IbYja/5baEbfUfsK0W/v1XgJzpdQW+3jMEXT05N5pHG+19V4muGdNXuMIgqGpIOHSmd3tI3h6k9wIwucdP0HKgBMpjOn2JRWx9M9K74WLO/DHiu1DnVzjDqWLXFdHpGEuQaTk/36H84+v+Gw=="), this.createVertexTemplateEntry("shape=rect;html=1;whiteSpace=wrap;align=center;",160,80,"<<stereotypeName>>\n{PropertyName=ValueString;\nBooleanPropertyName}\nNodeName","Stereotype (Node)",null,null,this.getTagsForStencil("","","sysml stereotype node").join(" ")),this.createVertexTemplateEntry("shape=rect;html=1;overflow=fill;whiteSpace=wrap;align=center;",400,100,'<p style="margin:0px;margin-top:4px;text-align:center;"><b>NodeName</b><hr/></p><p style="margin:0px;margin-left:10px;text-align:left;"><<stereotypeName>>{PropertyName=ValueString}ElementName<br/><<stereotypeName>>{PropertyName=ValueString};<br/>BooleanPropertyName<br/>ElementName</p>', "Stereotype (Compartment)",null,null,this.getTagsForStencil("","","sysml stereotype compartment").join(" ")),this.addDataEntry("sysml stereotype edge",200,180,"Stereotype (Edge)","3VTBboMwDP2a3CmZ2vOgXU+bKlXaPQM3iRYSZEwp+/oFCO2ytVJ32WEHJD8/G/OeQxjPq9MWRa2eXQmG8Q3jOTpHU1SdcjCGpYkuGV+zNE38w9KnG+xiZJNaIFi6pyGdGo7CtDBlNgaqoTldspQvEsazF1HBVNZQb0JZo0Q9hAiFH5QdnKV9YBceK6pMCDulCfa1KAau80p9ThgtrYeFnwToE+EzAAlON6WMqaBjC64Cwt6XdLokFSqC3ESBliq0LUNONBOW59aLMT4I3lz3if8Dn/pvHv2Fbw8/fPOGiWrQZmjU8xU1XiRQ72CyMlAyKpzR7DpbZTt0tXekH7v4+nUYtifUVsalmXMGhI3KV+udIHV1dWDLR0TXeWSdhXhbUEqYFxlYI97AZKJ4l+haW+bOOLyw8yoNHK4dhBHrjxEm50UPU6I1N67FAqIzSQIlUPQ733EYEIwgfYzf/otNe3i5pUYuusQ+AQ=="), this.createVertexTemplateEntry("shape=rect;html=1;overflow=fill;whiteSpace=wrap;align=center;",300,120,'<p style="margin:0px;margin-top:4px;text-align:center;"><b><<stereotypeName>></br>NodeName</b><hr/></p><p style="margin:0px;margin-left:10px;text-align:left;"><<stereotypeName>><br/>PropertyName=ValueString<br/>MultiPropertyName=ValueString, ValueString<br/>BooleanPropertyName<br/></p>',"Stereotype (Compartment)",null,null,this.getTagsForStencil("","","sysml stereotype compartment").join(" "))]; -this.addPalette("sysmlStereotypes","SysML / Stereotypes",a||!1,mxUtils.bind(this,function(a){for(var b=0;b<d.length;b++)a.appendChild(d[b](a))}))}})();(function(){Sidebar.prototype.addVeeamPalette=function(){this.addVeeamDataCenterPalette();this.addVeeamMiscPalette();this.addVeeamSoftwarePalette();this.addVeeamStoragePalette();this.addVeeamUsersStatusPalette();this.addVeeamVASComponentsPalette();this.addVeeamBackupReplicationPalette();this.addVeeamProductsPalette();this.addVeeamVMsTapePalette();this.addVeeam3DPalette()};Sidebar.prototype.addVeeamDataCenterPalette=function(){var a=[this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.hyper_v_vmware_host;", +this.addPalette("sysmlStereotypes","SysML / Stereotypes",a||!1,mxUtils.bind(this,function(a){for(var c=0;c<b.length;c++)a.appendChild(b[c](a))}))}})();(function(){Sidebar.prototype.addVeeamPalette=function(){this.addVeeamDataCenterPalette();this.addVeeamMiscPalette();this.addVeeamSoftwarePalette();this.addVeeamStoragePalette();this.addVeeamUsersStatusPalette();this.addVeeamVASComponentsPalette();this.addVeeamBackupReplicationPalette();this.addVeeamProductsPalette();this.addVeeamVMsTapePalette();this.addVeeam3DPalette()};Sidebar.prototype.addVeeamDataCenterPalette=function(){var a=[this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.hyper_v_vmware_host;", 108,104,"","VMware/Hyper-V Host",null,null,this.getTagsForStencil("mxgraph.veeam.data_center","hyper vmware host","veeam vmware virtual machine data center").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.hyper_v_host;",108,104,"","Hyper-V Host",null,null,this.getTagsForStencil("mxgraph.veeam.data_center","hyper host", "veeam vmware virtual machine data center").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.vmware_host;",108,104,"","VMware Host",null,null,this.getTagsForStencil("mxgraph.veeam.data_center","vmware host","veeam vmware virtual machine data center").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.virtual_host;", 108,104,"","Virtual Host",null,null,this.getTagsForStencil("mxgraph.veeam.data_center","virtual host","veeam vmware virtual machine data center").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#EF8F21;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.production_site;",44.8,44.8,"","Production Site",null,null,this.getTagsForStencil("mxgraph.veeam.data_center","production site", @@ -7678,7 +7339,7 @@ this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeC this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.switch;",64,10.8,"","Network Switch",null,null,this.getTagsForStencil("mxgraph.veeam.data_center","network switch","veeam vmware virtual machine data center").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.service_vnic;", 56.8,54,"","Service vNIC",null,null,this.getTagsForStencil("mxgraph.veeam.data_center","service vnic","veeam vmware virtual machine data center").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.virtual_switch;",44.8,44.8,"","Virtual Switch",null,null,this.getTagsForStencil("mxgraph.veeam.data_center","switch", "veeam vmware virtual machine data center").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.vnic;",44.8,44.8,"","vNIC",null,null,this.getTagsForStencil("mxgraph.veeam.data_center","vnic","veeam vmware virtual machine data center").join(" "))];this.addPalette("veeamData Center","Veeam / Data Center",!1,mxUtils.bind(this, -function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addVeeamMiscPalette=function(){var a=[this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.alarm;",52.8,37.6,"","Alarm",null,null,this.getTagsForStencil("mxgraph.veeam.misc","alarm","veeam vmware virtual machine misc miscellaneous").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.building;", +function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))};Sidebar.prototype.addVeeamMiscPalette=function(){var a=[this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.alarm;",52.8,37.6,"","Alarm",null,null,this.getTagsForStencil("mxgraph.veeam.misc","alarm","veeam vmware virtual machine misc miscellaneous").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.building;", 63.2,55.2,"","Building",null,null,this.getTagsForStencil("mxgraph.veeam.misc","building","veeam vmware virtual machine misc miscellaneous").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.cloud;",58.8,41.6,"","Cloud",null,null,this.getTagsForStencil("mxgraph.veeam.misc","cloud","veeam vmware virtual machine misc miscellaneous").join(" ")), this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.checked_doc;",50.8,61.6,"","Checked doc",null,null,this.getTagsForStencil("mxgraph.veeam.misc","checked doc document","veeam vmware virtual machine misc miscellaneous").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.download;", 44.8,44.8,"","Download",null,null,this.getTagsForStencil("mxgraph.veeam.misc","download","veeam vmware virtual machine misc miscellaneous").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.dns;",44.8,44.8,"","DNS",null,null,this.getTagsForStencil("mxgraph.veeam.misc","dns domain name server","veeam vmware virtual machine misc miscellaneous").join(" ")), @@ -7696,7 +7357,7 @@ this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillCo 55.6,50.8,"","Private Key",null,null,this.getTagsForStencil("mxgraph.veeam.misc","private key","veeam vmware virtual machine misc miscellaneous").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.report;",36.8,50.8,"","Report",null,null,this.getTagsForStencil("mxgraph.veeam.misc","report","veeam vmware virtual machine misc miscellaneous").join(" ")), this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.privilege;",60.4,58,"","Policy",null,null,this.getTagsForStencil("mxgraph.veeam.misc","policy","veeam vmware virtual machine misc miscellaneous").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.restore;pointerEvents=1;", 44.8,44.8,"","Restore",null,null,this.getTagsForStencil("mxgraph.veeam.misc","restore","veeam vmware virtual machine misc miscellaneous").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.role;",36.8,50.8,"","Role",null,null,this.getTagsForStencil("mxgraph.veeam.misc","role","veeam vmware virtual machine misc miscellaneous").join(" ")), -this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.transportation;",55.2,38.4,"","Transportation",null,null,this.getTagsForStencil("mxgraph.veeam.misc","transportation","veeam vmware virtual machine misc miscellaneous").join(" "))];this.addPalette("veeamMisc","Veeam / Miscellaneous",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))}; +this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.transportation;",55.2,38.4,"","Transportation",null,null,this.getTagsForStencil("mxgraph.veeam.misc","transportation","veeam vmware virtual machine misc miscellaneous").join(" "))];this.addPalette("veeamMisc","Veeam / Miscellaneous",!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))}; Sidebar.prototype.addVeeamSoftwarePalette=function(){var a=[this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#07B152;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.veeam_logo;",109.6,19.2,"","Veeam logo",null,null,this.getTagsForStencil("mxgraph.veeam.software","veeam logo","veeam vmware virtual machine software").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#EF8F21;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.active_directory;", 44.8,44.8,"","Active Directory",null,null,this.getTagsForStencil("mxgraph.veeam.software","active directory","veeam vmware virtual machine software").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.agent;pointerEvents=1;",44.8,44.8,"","Agent",null,null,this.getTagsForStencil("mxgraph.veeam.software","agent","veeam vmware virtual machine software").join(" ")), this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.automated_testing;",44.8,44.8,"","Automated Testing",null,null,this.getTagsForStencil("mxgraph.veeam.software","automated testing","veeam vmware virtual machine software").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.backup_browser;", @@ -7717,7 +7378,7 @@ this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillCo 44.8,44.8,"","PowerShell Extension",null,null,this.getTagsForStencil("mxgraph.veeam.software","powershell extension","veeam vmware virtual machine software").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#EF8F21;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.vcloud_director",44.8,44.8,"","vCloud Director",null,null,this.getTagsForStencil("mxgraph.veeam.software","vcloud director virtual cloud", "veeam vmware virtual machine software").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#EF8F21;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.vsphere",44.8,44.8,"","vSphere",null,null,this.getTagsForStencil("mxgraph.veeam.software","vsphere virtual sphere","veeam vmware virtual machine software").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.web_ui;", 44.8,44.8,"","Web UI",null,null,this.getTagsForStencil("mxgraph.veeam.software","web ui user interface","veeam vmware virtual machine software").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.transport_service;pointerEvents=1;",44.8,44.8,"","Transport Service",null,null,this.getTagsForStencil("mxgraph.veeam.software","transport service", -"veeam vmware virtual machine software").join(" "))];this.addPalette("veeamSoftware","Veeam / Software",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addVeeamStoragePalette=function(){var a=[this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.backup_repository;",54,50,"","Backup Repository", +"veeam vmware virtual machine software").join(" "))];this.addPalette("veeamSoftware","Veeam / Software",!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))};Sidebar.prototype.addVeeamStoragePalette=function(){var a=[this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.backup_repository;",54,50,"","Backup Repository", null,null,this.getTagsForStencil("mxgraph.veeam.storage","backup repository","veeam vmware virtual machine storage").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.remote_repository;",47.6,46.4,"","Remote Repository",null,null,this.getTagsForStencil("mxgraph.veeam.storage","remote repository","veeam vmware virtual machine storage").join(" ")), this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.shared_folder;",55.2,64,"","Shared Folder",null,null,this.getTagsForStencil("mxgraph.veeam.storage","shared folder","veeam vmware virtual machine storage").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.datastore;", 44.4,45.2,"","Datastore",null,null,this.getTagsForStencil("mxgraph.veeam.storage","datastore","veeam vmware virtual machine storage").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.snapshot;",55.6,48.8,"","Snapshot",null,null,this.getTagsForStencil("mxgraph.veeam.storage","snapshot","veeam vmware virtual machine storage").join(" ")), @@ -7735,7 +7396,7 @@ this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillCo 36.8,50.8,"","Google document",null,null,this.getTagsForStencil("mxgraph.veeam.storage","google document","veeam vmware virtual machine storage").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.video_file;",36.8,50.8,"","Video file",null,null,this.getTagsForStencil("mxgraph.veeam.storage","video file","veeam vmware virtual machine storage").join(" ")), this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.vsb_file;",36.8,50.8,"","VSB file",null,null,this.getTagsForStencil("mxgraph.veeam.storage","vsb file","veeam vmware virtual machine storage").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.windows_repository;", 53.2,49.2,"","Windows Repository",null,null,this.getTagsForStencil("mxgraph.veeam.storage","windows repository","veeam vmware virtual machine storage").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.linux_repository;",53.6,49.6,"","Linux Repository",null,null,this.getTagsForStencil("mxgraph.veeam.storage","linux repository","veeam vmware virtual machine storage").join(" "))]; -this.addPalette("veeamStorage","Veeam / Storage",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addVeeamUsersStatusPalette=function(){var a=[this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.user;",32,58,"","User",null,null,this.getTagsForStencil("mxgraph.veeam.storage","user","veeam vmware virtual machine users status").join(" ")), +this.addPalette("veeamStorage","Veeam / Storage",!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))};Sidebar.prototype.addVeeamUsersStatusPalette=function(){var a=[this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.user;",32,58,"","User",null,null,this.getTagsForStencil("mxgraph.veeam.storage","user","veeam vmware virtual machine users status").join(" ")), this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.group;",53.6,60.4,"","User Group",null,null,this.getTagsForStencil("mxgraph.veeam.storage","user group","veeam vmware virtual machine users status").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.company_user;", 44.4,48.8,"","Company User",null,null,this.getTagsForStencil("mxgraph.veeam.storage","company user","veeam vmware virtual machine users status").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.company_owner;",44.4,48.8,"","Company Owner",null,null,this.getTagsForStencil("mxgraph.veeam.storage","company owner","veeam vmware virtual machine users status").join(" ")), this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.portal_admin;",44.4,48.8,"","Portal Admin",null,null,this.getTagsForStencil("mxgraph.veeam.storage","portal admin","veeam vmware virtual machine users status").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.company_administrator;", @@ -7749,7 +7410,7 @@ this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillCo this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#EF8F21;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.active;",36,36,"","Active",null,null,this.getTagsForStencil("mxgraph.veeam.storage","active","veeam vmware virtual machine users status").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#EF8F21;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.delayed;", 36,36,"","Delayed",null,null,this.getTagsForStencil("mxgraph.veeam.storage","delayed","veeam vmware virtual machine users status").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.restore;pointerEvents=1;",31.2,29.6,"","Restore",null,null,this.getTagsForStencil("mxgraph.veeam.storage","restore","veeam vmware virtual machine users status").join(" ")), this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#EF8F21;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.locked;",30.4,34.4,"","Locked",null,null,this.getTagsForStencil("mxgraph.veeam.storage","locked","veeam vmware virtual machine users status").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#EF8F21;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.unlocked;", -41.6,34.8,"","Unlocked",null,null,this.getTagsForStencil("mxgraph.veeam.storage","unlocked","veeam vmware virtual machine users status").join(" "))];this.addPalette("veeamUsersStatus","Veeam / Users and Status",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addVeeamVASComponentsPalette=function(){var a=[this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.database_server;", +41.6,34.8,"","Unlocked",null,null,this.getTagsForStencil("mxgraph.veeam.storage","unlocked","veeam vmware virtual machine users status").join(" "))];this.addPalette("veeamUsersStatus","Veeam / Users and Status",!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))};Sidebar.prototype.addVeeamVASComponentsPalette=function(){var a=[this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.database_server;", 76,72,"","Database Server",null,null,this.getTagsForStencil("mxgraph.veeam.vascomponent","database server","veeam vmware virtual machine vas availability suite component").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.gateway_server;",76,72,"","Gateway Server",null,null,this.getTagsForStencil("mxgraph.veeam.vascomponent","gateway server", "veeam vmware virtual machine vas availability suite component").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.mount_server;",76,72,"","Mount Server",null,null,this.getTagsForStencil("mxgraph.veeam.vascomponent","mount server","veeam vmware virtual machine vas availability suite component").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.proxy_server;", 76,72,"","Proxy Server",null,null,this.getTagsForStencil("mxgraph.veeam.vascomponent","proxy server","veeam vmware virtual machine vas availability suite component").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.repository_server;",76,72,"","Repository Server",null,null,this.getTagsForStencil("mxgraph.veeam.vascomponent","repository server", @@ -7768,7 +7429,7 @@ this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillCo 44.8,44.8,"","Enterprise Manager",null,null,this.getTagsForStencil("mxgraph.veeam.vascomponent","enterprise manager","veeam vmware virtual machine vas availability suite component").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.linux_repository;",48.8,44.8,"","Linux Repository",null,null,this.getTagsForStencil("mxgraph.veeam.vascomponent", "linux repository","veeam vmware virtual machine vas availability suite component").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.windows_repository;",48.8,44.8,"","Windows Repository",null,null,this.getTagsForStencil("mxgraph.veeam.vascomponent","windows repository","veeam vmware virtual machine vas availability suite component").join(" ")), this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.flr_helper_appliance;",49.6,50,"","FLR Helper Appliance",null,null,this.getTagsForStencil("mxgraph.veeam.vascomponent","flr helper appliance","veeam vmware virtual machine vas availability suite component").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.one_client;", -90.8,61.6,"","ONE client",null,null,this.getTagsForStencil("mxgraph.veeam.vascomponent","one client","veeam vmware virtual machine vas availability suite component").join(" "))];this.addPalette("veeamVASComponents","Veeam / Availability Suite components",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addVeeamBackupReplicationPalette=function(){var a=[this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#EF8F21;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.built_in_wan_acceleration;", +90.8,61.6,"","ONE client",null,null,this.getTagsForStencil("mxgraph.veeam.vascomponent","one client","veeam vmware virtual machine vas availability suite component").join(" "))];this.addPalette("veeamVASComponents","Veeam / Availability Suite components",!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))};Sidebar.prototype.addVeeamBackupReplicationPalette=function(){var a=[this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#EF8F21;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.built_in_wan_acceleration;", 44.8,44.8,"","Built-in WAN Acceleration",null,null,this.getTagsForStencil("mxgraph.veeam.backup_replication","built in wan acceleration wireless area network","veeam vmware virtual machine backup replication").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#EF8F21;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.1_click_failover_orchestration;",44.8,44.8,"","1 Click Failover Orchestration", null,null,this.getTagsForStencil("mxgraph.veeam.backup_replication","one click failover orchestration","veeam vmware virtual machine backup replication").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#EF8F21;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.advanced_refs_integration;",44.8,44.8,"","Advanced ReFS integration",null,null,this.getTagsForStencil("mxgraph.veeam.backup_replication", "advanced refs integration","veeam vmware virtual machine backup replication").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#EF8F21;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.assisted_failover_and_failback;",44.8,44.8,"","Assisted Failover and Failback",null,null,this.getTagsForStencil("mxgraph.veeam.backup_replication","assisted failover and failback","veeam vmware virtual machine backup replication").join(" ")), @@ -7794,7 +7455,7 @@ this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillCo "vcloud director support","veeam vmware virtual machine backup replication").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#EF8F21;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.virtual_lab;",44.8,44.8,"","Virtual Lab",null,null,this.getTagsForStencil("mxgraph.veeam.backup_replication","virtual lab","veeam vmware virtual machine backup replication").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#EF8F21;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.sure_backup;", 44.8,44.8,"","SureBackup",null,null,this.getTagsForStencil("mxgraph.veeam.backup_replication","sure backup","veeam vmware virtual machine backup replication").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.scale_out_repository;",64.8,57.2,"","Scale Out Repository",null,null,this.getTagsForStencil("mxgraph.veeam.backup_replication", "scale out repository","veeam vmware virtual machine backup replication").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#EF8F21;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.veeamzip;",44.8,44.8,"","VeeamZIP",null,null,this.getTagsForStencil("mxgraph.veeam.backup_replication","veeamzip zip","veeam vmware virtual machine backup replication").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#EF8F21;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.veeam_explorer;", -44.8,44.8,"","Veeam Explorer",null,null,this.getTagsForStencil("mxgraph.veeam.backup_replication","explorer","veeam vmware virtual machine backup replication").join(" "))];this.addPalette("veeamBackup Replication","Veeam / Backup and Replication",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addVeeamProductsPalette=function(){var a=[this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#07B152;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.veeam_logo;", +44.8,44.8,"","Veeam Explorer",null,null,this.getTagsForStencil("mxgraph.veeam.backup_replication","explorer","veeam vmware virtual machine backup replication").join(" "))];this.addPalette("veeamBackup Replication","Veeam / Backup and Replication",!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))};Sidebar.prototype.addVeeamProductsPalette=function(){var a=[this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#07B152;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.veeam_logo;", 109.6,19.2,"","Veeam logo",null,null,this.getTagsForStencil("mxgraph.veeam.products","veeam logo","veeam vmware virtual machine products").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#EF8F21;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.backup_replication;",44.8,44.8,"","Backup and Replication",null,null,this.getTagsForStencil("mxgraph.veeam.products","backup and replication", "veeam vmware virtual machine products").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#EF8F21;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.enterprise_manager;",44.8,44.8,"","Enterprise Manager",null,null,this.getTagsForStencil("mxgraph.veeam.products","enterprise manager","veeam vmware virtual machine products").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#EF8F21;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.veeam_availability_suite;", 44.8,44.8,"","Availability Suite",null,null,this.getTagsForStencil("mxgraph.veeam.products","availability suite","veeam vmware virtual machine products").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#EF8F21;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.availability_console;",44.8,44.8,"","Availability Console",null,null,this.getTagsForStencil("mxgraph.veeam.products","availability console", @@ -7804,7 +7465,7 @@ this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillCo 44.8,44.8,"","Endpoint Backup",null,null,this.getTagsForStencil("mxgraph.veeam.products","endpoint backup","veeam vmware virtual machine products").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#EF8F21;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.veeam_one_monitor;",44.8,44.8,"","ONE Monitor",null,null,this.getTagsForStencil("mxgraph.veeam.products","one monitor","veeam vmware virtual machine products").join(" ")), this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#EF8F21;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.veeam_one_reporter;",44.8,44.8,"","ONE Reporter",null,null,this.getTagsForStencil("mxgraph.veeam.products","one reporter","veeam vmware virtual machine products").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#EF8F21;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.veeam_one_business_view;", 44.8,44.8,"","ONE (Business View)",null,null,this.getTagsForStencil("mxgraph.veeam.products","one business view","veeam vmware virtual machine products").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#EF8F21;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.veeam_one_server;",44.8,44.8,"","ONE Server",null,null,this.getTagsForStencil("mxgraph.veeam.products","one server","veeam vmware virtual machine products").join(" "))]; -this.addPalette("veeamProducts","Veeam / Products",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addVeeamVMsTapePalette=function(){var a=[this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.virtual_machine;",44.8,44,"","Virtual Machine",null,null,this.getTagsForStencil("mxgraph.veeam.vmstape", +this.addPalette("veeamProducts","Veeam / Products",!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))};Sidebar.prototype.addVeeamVMsTapePalette=function(){var a=[this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.virtual_machine;",44.8,44,"","Virtual Machine",null,null,this.getTagsForStencil("mxgraph.veeam.vmstape", "","veeam vmware virtual machine vm tape").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.vm_checked;",54,52,"","VM Checked",null,null,this.getTagsForStencil("mxgraph.veeam.vmstape","checked","veeam vmware virtual machine vm tape").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.vm_running;", 54,52,"","VM Started",null,null,this.getTagsForStencil("mxgraph.veeam.vmstape","vm started","veeam vmware virtual machine vm tape").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.vm_locked;",55.6,52,"","VM Locked",null,null,this.getTagsForStencil("mxgraph.veeam.vmstape","vm locked","veeam vmware virtual machine vm tape").join(" ")), this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.vm_paused;",54,52,"","VM Paused",null,null,this.getTagsForStencil("mxgraph.veeam.vmstape","vm paused","veeam vmware virtual machine vm tape").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.vm_failed;", @@ -7819,7 +7480,7 @@ this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillCo 75.6,49.6,"","Tape eject",null,null,this.getTagsForStencil("mxgraph.veeam.vmstape","tape eject","veeam vmware virtual machine vm tape").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.tape_locked;",70.4,40,"","Tape locked",null,null,this.getTagsForStencil("mxgraph.veeam.vmstape","tape locked","veeam vmware virtual machine vm tape").join(" ")), this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.tape_licensed;",75.2,44.4,"","Tape Licensed",null,null,this.getTagsForStencil("mxgraph.veeam.vmstape","tape licensed","veeam vmware virtual machine vm tape").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.tape_recording;", 71.2,47.2,"","Tape Recording",null,null,this.getTagsForStencil("mxgraph.veeam.vmstape","tape recording","veeam vmware virtual machine vm tape").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#4495D1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.2d.tape_checked;",75.2,45.6,"","Tape Checked",null,null,this.getTagsForStencil("mxgraph.veeam.vmstape","tape checked","veeam vmware virtual machine vm tape").join(" "))]; -this.addPalette("veeamVMs and Tape","Veeam / VMs and Tape",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))};Sidebar.prototype.addVeeam3DPalette=function(){var a=[this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.3d.1ftvm;",68,62,"","1FTVM",null,null,this.getTagsForStencil("mxgraph.veeam.3d","1ftvm","veeam 3d vmware virtual machine ").join(" ")), +this.addPalette("veeamVMs and Tape","Veeam / VMs and Tape",!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))};Sidebar.prototype.addVeeam3DPalette=function(){var a=[this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.3d.1ftvm;",68,62,"","1FTVM",null,null,this.getTagsForStencil("mxgraph.veeam.3d","1ftvm","veeam 3d vmware virtual machine ").join(" ")), this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.3d.1ftvm_error;",68,62,"","1FTVM Error",null,null,this.getTagsForStencil("mxgraph.veeam.3d","1ftvm error","veeam 3d vmware virtual machine ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.3d.1ftvm_running;", 68,62,"","1FTVM Running",null,null,this.getTagsForStencil("mxgraph.veeam.3d","1ftvm running","veeam 3d vmware virtual machine ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.3d.1ftvm_unavailable;",68,62,"","1FTVM Unavailable",null,null,this.getTagsForStencil("mxgraph.veeam.3d","1ftvm unavailable","veeam 3d vmware virtual machine ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.3d.1ftvm_warning;", 68,62,"","1FTVM Warning",null,null,this.getTagsForStencil("mxgraph.veeam.3d","1ftvm warning","veeam 3d vmware virtual machine ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.3d.2ftvm;",68,62,"","2FTVM",null,null,this.getTagsForStencil("mxgraph.veeam.3d","2ftvm","veeam 3d vmware virtual machine ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.3d.2ftvm_error;", @@ -7854,7 +7515,7 @@ this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;labelPosition=center;ve 56,46,"","VM Problem",null,null,this.getTagsForStencil("mxgraph.veeam.3d","vm problem","veeam 3d vmware virtual machine ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.3d.vm_running;",56,46,"","VM Running",null,null,this.getTagsForStencil("mxgraph.veeam.3d","vm running","veeam 3d vmware virtual machine ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.3d.vm_saved_state;", 58,48,"","VM Saved State",null,null,this.getTagsForStencil("mxgraph.veeam.3d","vm saved state","veeam 3d vmware virtual machine ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.3d.vm_windows;",46,60,"","VM Windows",null,null,this.getTagsForStencil("mxgraph.veeam.3d","vm windows","veeam 3d vmware virtual machine ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.3d.vnic;", 62,62,"","vNIC",null,null,this.getTagsForStencil("mxgraph.veeam.3d","vnic","veeam 3d vmware virtual machine ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.3d.wan_accelerator;",46,46,"","WAN Accelerator",null,null,this.getTagsForStencil("mxgraph.veeam.3d","wan accelerator","veeam 3d vmware virtual machine ").join(" ")),this.createVertexTemplateEntry("shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam.3d.workstation;", -76,62,"","Workstation",null,null,this.getTagsForStencil("mxgraph.veeam.3d","workstation","veeam 3d vmware virtual machine ").join(" "))];this.addPalette("veeam3D","Veeam / 3D",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))}})();(function(){Sidebar.prototype.addVVDPalette=function(){var a=[this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#434445;aspect=fixed;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.vvd.administrator;",21.5,50,"","Administrator",null,null,this.getTagsForStencil("mxgraph.vvd","administrator","vmware validated design").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;aspect=fixed;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.vvd.administrator;fillColor=#066A90;", +76,62,"","Workstation",null,null,this.getTagsForStencil("mxgraph.veeam.3d","workstation","veeam 3d vmware virtual machine ").join(" "))];this.addPalette("veeam3D","Veeam / 3D",!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))}})();(function(){Sidebar.prototype.addVVDPalette=function(){var a=[this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#434445;aspect=fixed;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.vvd.administrator;",21.5,50,"","Administrator",null,null,this.getTagsForStencil("mxgraph.vvd","administrator","vmware validated design").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;aspect=fixed;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.vvd.administrator;fillColor=#066A90;", 21.5,50,"","Infrastructure Role",null,null,this.getTagsForStencil("mxgraph.vvd","administrator","vmware validated design").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;aspect=fixed;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.vvd.administrator;fillColor=#65B245;",21.5,50,"","Tenant Role",null,null,this.getTagsForStencil("mxgraph.vvd","administrator","vmware validated design").join(" ")), this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#434445;aspect=fixed;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.vvd.app;",50,50,"","App",null,null,this.getTagsForStencil("mxgraph.vvd","app application","vmware validated design").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#434445;aspect=fixed;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.vvd.volumes_agent;", 49,50,"","Volumes Agent",null,null,this.getTagsForStencil("mxgraph.vvd","volumes agent","vmware validated design").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#434445;aspect=fixed;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.vvd.appstack_volume;",50,35,"","AppStack Volume",null,null,this.getTagsForStencil("mxgraph.vvd","appstack volume","vmware validated design").join(" ")), @@ -7912,7 +7573,7 @@ this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeC 49.5,50,"","VM Group",null,null,this.getTagsForStencil("mxgraph.vvd","vm group","vmware validated design").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#434445;aspect=fixed;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.vvd.vnf_m;",50,43.5,"","VNF-M",null,null,this.getTagsForStencil("mxgraph.vvd","vnf","vmware validated design").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#434445;aspect=fixed;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.vvd.vxlan;", 50,50,"","VXLAN",null,null,this.getTagsForStencil("mxgraph.vvd","vxlan","vmware validated design").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#434445;aspect=fixed;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.vvd.writable_volume;",50,40.5,"","Writable Volume",null,null,this.getTagsForStencil("mxgraph.vvd","writable volume","vmware validated design").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#434445;aspect=fixed;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.vvd.wavefront;", 43,50,"","Wavefront",null,null,this.getTagsForStencil("mxgraph.vvd","wavefront","vmware validated design").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#434445;aspect=fixed;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.vvd.web_browser;",50,35.5,"","Web Browser",null,null,this.getTagsForStencil("mxgraph.vvd","web browser","vmware validated design").join(" ")),this.createVertexTemplateEntry("pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#434445;aspect=fixed;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.vvd.wi_fi;", -50,50,"","Wi-Fi",null,null,this.getTagsForStencil("mxgraph.vvd","wi fi wifi","vmware validated design").join(" "))];this.addPalette("vvd","VMware Validated Design",!1,mxUtils.bind(this,function(d){for(var e=0;e<a.length;e++)d.appendChild(a[e](d))}))}})();(function(){Sidebar.prototype.addWebIconsPalette=function(){var a="dashed=0;outlineConnect=0;html=1;align=center;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;"+mxConstants.STYLE_SHAPE+"=mxgraph.webicons.";this.addPaletteFunctions("webicons","Web Icons",!1,[this.createVertexTemplateEntry(a+"adfty;fillColor=#66E8F3;gradientColor=#1C7CBA",102.4,102.4,"","Adfty",null,null,this.getTagsForStencil("mxgraph.webicons","adfty","web icons icon").join(" ")),this.createVertexTemplateEntry(a+ +50,50,"","Wi-Fi",null,null,this.getTagsForStencil("mxgraph.vvd","wi fi wifi","vmware validated design").join(" "))];this.addPalette("vvd","VMware Validated Design",!1,mxUtils.bind(this,function(b){for(var e=0;e<a.length;e++)b.appendChild(a[e](b))}))}})();(function(){Sidebar.prototype.addWebIconsPalette=function(){var a="dashed=0;outlineConnect=0;html=1;align=center;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;"+mxConstants.STYLE_SHAPE+"=mxgraph.webicons.";this.addPaletteFunctions("webicons","Web Icons",!1,[this.createVertexTemplateEntry(a+"adfty;fillColor=#66E8F3;gradientColor=#1C7CBA",102.4,102.4,"","Adfty",null,null,this.getTagsForStencil("mxgraph.webicons","adfty","web icons icon").join(" ")),this.createVertexTemplateEntry(a+ "adobe_pdf;fillColor=#F40C0C;gradientColor=#610603",102.4,102.4,"","Adobe PDF",null,null,this.getTagsForStencil("mxgraph.webicons","adobe pdf","web icons icon").join(" ")),this.createVertexTemplateEntry(a+"aim;fillColor=#27E1E5;gradientColor=#0A4361",102.4,102.4,"","Aim",null,null,this.getTagsForStencil("mxgraph.webicons","aim","web icons icon").join(" ")),this.createVertexTemplateEntry(a+"allvoices;fillColor=#807E7E;gradientColor=#1B1C1C",102.4,102.4,"","Allvoices",null,null,this.getTagsForStencil("mxgraph.webicons", "allvoices","web icons icon").join(" ")),this.createVertexTemplateEntry(a+"amazon;fillColor=#FFFFFF;gradientColor=#DFDEDE",102.4,102.4,"","Amazon",null,null,this.getTagsForStencil("mxgraph.webicons","amazon","web icons icon").join(" ")),this.createVertexTemplateEntry(a+"amazon_2;fillColor=#605658;gradientColor=#231F20",102.4,102.4,"","Amazon",null,null,this.getTagsForStencil("mxgraph.webicons","amazon","web icons icon").join(" ")),this.createVertexTemplateEntry(a+"android;fillColor=#FFFFFF;gradientColor=#DFDEDE", 102.4,102.4,"","Android",null,null,this.getTagsForStencil("mxgraph.webicons","android","web icons icon").join(" ")),this.createVertexTemplateEntry(a+"apache;fillColor=#FFFFFF;gradientColor=#DFDEDE",102.4,102.4,"","Apache",null,null,this.getTagsForStencil("mxgraph.webicons","apache db database","web icons icon").join(" ")),this.createVertexTemplateEntry(a+"apple;fillColor=#807E7E;gradientColor=#1B1C1C",102.4,102.4,"","Apple",null,null,this.getTagsForStencil("mxgraph.webicons","apple","web icons icon").join(" ")), @@ -8199,7 +7860,7 @@ k.geometry.width=30;k.geometry.height=26;n.insert(k);k=a.editor.graph.getPreferr c){if(0<f.length){d=a.editor.graph;n=null;B=[];for(z=g=0;z<f.length;z++)";"!=f[z].charAt(0)&&(0==f[z].length?n=null:null==n?(n=new mxCell(f[z],new mxGeometry(g,0,160,30),"swimlane;fontStyle=1;childLayout=stackLayout;horizontal=1;startSize=26;horizontalStack=0;resizeParent=1;resizeLast=0;collapsible=1;marginBottom=0;swimlaneFillColor=#ffffff;"),n.vertex=!0,B.push(n),k=d.getPreferredSizeForCell(n),null!=k&&n.geometry.width<k.width+10&&(n.geometry.width=k.width+10),g+=n.geometry.width+40):"--"==f[z]? (k=new mxCell("",new mxGeometry(0,0,40,8),"line;strokeWidth=1;fillColor=none;align=left;verticalAlign=middle;spacingTop=-1;spacingLeft=3;spacingRight=3;rotatable=0;labelPosition=right;points=[];portConstraint=eastwest;"),k.vertex=!0,n.geometry.height+=k.geometry.height,n.insert(k)):0<f[z].length&&(u=new mxCell(f[z],new mxGeometry(0,0,60,26),"text;strokeColor=none;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;"), u.vertex=!0,k=d.getPreferredSizeForCell(u),null!=k&&u.geometry.width<k.width&&(u.geometry.width=k.width),n.geometry.width=Math.max(n.geometry.width,u.geometry.width),n.geometry.height+=u.geometry.height,n.insert(u)));if(0<B.length){d.getModel().beginUpdate();try{B=d.importCells(B,e.x,e.y);k=[];for(z=0;z<B.length;z++)k.push(B[z]),k=k.concat(B[z].children);d.fireEvent(new mxEventObject("cellsInserted","cells",k))}finally{d.getModel().endUpdate()}d.setSelectionCells(B);d.scrollCellToVisible(d.getSelectionCell())}}}else{for(var n= -function(a){var b=q[a];null==b&&(b=new mxCell(a,new mxGeometry(0,0,80,30),"whiteSpace=wrap;html=1;"),b.vertex=!0,q[a]=b,B.push(b));return b},q={},B=[],z=0;z<f.length;z++)if(";"!=f[z].charAt(0)){var H=f[z].split("->");if(2<=H.length){var m=n(H[0]),I=n(H[H.length-1]),H=new mxCell(2<H.length?H[1]:"",new mxGeometry);H.edge=!0;m.insertEdge(H,!0);I.insertEdge(H,!1);B.push(H)}}if(0<B.length){f=document.createElement("div");f.style.visibility="hidden";document.body.appendChild(f);d=new Graph(f);d.getModel().beginUpdate(); +function(a){var b=q[a];null==b&&(b=new mxCell(a,new mxGeometry(0,0,80,30),"whiteSpace=wrap;html=1;"),b.vertex=!0,q[a]=b,B.push(b));return b},q={},B=[],z=0;z<f.length;z++)if(";"!=f[z].charAt(0)){var I=f[z].split("->");if(2<=I.length){var m=n(I[0]),H=n(I[I.length-1]),I=new mxCell(2<I.length?I[1]:"",new mxGeometry);I.edge=!0;m.insertEdge(I,!0);H.insertEdge(I,!1);B.push(I)}}if(0<B.length){f=document.createElement("div");f.style.visibility="hidden";document.body.appendChild(f);d=new Graph(f);d.getModel().beginUpdate(); try{B=d.importCells(B);for(z=0;z<B.length;z++)d.getModel().isVertex(B[z])&&(k=d.getPreferredSizeForCell(B[z]),B[z].geometry.width=Math.max(B[z].geometry.width,k.width),B[z].geometry.height=Math.max(B[z].geometry.height,k.height));g=new mxFastOrganicLayout(d);g.disableEdgeStyle=!1;g.forceConstant=120;g.execute(d.getDefaultParent());u=new mxParallelEdgeLayout(d);u.spacing=20;u.execute(d.getDefaultParent())}finally{d.getModel().endUpdate()}d.clearCellOverlays();k=[];a.editor.graph.getModel().beginUpdate(); try{k=a.editor.graph.importCells(d.getModel().getChildren(d.getDefaultParent()),e.x,e.y),a.editor.graph.fireEvent(new mxEventObject("cellsInserted","cells",k))}finally{a.editor.graph.getModel().endUpdate()}a.editor.graph.setSelectionCells(k);a.editor.graph.scrollCellToVisible(a.editor.graph.getSelectionCell());d.destroy();f.parentNode.removeChild(f)}}}function g(){return"list"==m.value?"Person\n-name: String\n-birthDate: Date\n--\n+getName(): String\n+setName(String): void\n+isBirthday(): boolean\n\nAddress\n-street: String\n-city: String\n-state: String": "table"==m.value?"CREATE TABLE Suppliers\n(\nsupplier_id int NOT NULL PRIMARY KEY,\nsupplier_name char(50) NOT NULL,\ncontact_name char(50),\n);\nCREATE TABLE Customers\n(\ncustomer_id int NOT NULL PRIMARY KEY,\ncustomer_name char(50) NOT NULL,\naddress char(50),\ncity char(50),\nstate char(25),\nzip_code char(10)\n);\n":"plantUmlPng"==m.value?"@startuml\nskinparam backgroundcolor transparent\nskinparam shadowing false\nAlice -> Bob: Authentication Request\nBob --\x3e Alice: Authentication Response\n\nAlice -> Bob: Another authentication Request\nAlice <-- Bob: another authentication Response\n@enduml": @@ -8208,28 +7869,28 @@ try{k=a.editor.graph.importCells(d.getModel().getChildren(d.getDefaultParent()), n=document.createElement("option");n.setAttribute("value","diagram");mxUtils.write(n,mxResources.get("diagram"));"plantUml"!=b&&m.appendChild(n);n=document.createElement("option");n.setAttribute("value","plantUmlSvg");mxUtils.write(n,mxResources.get("plantUml")+" ("+mxResources.get("formatSvg")+")");"plantUml"==b&&n.setAttribute("selected","selected");var q=document.createElement("option");q.setAttribute("value","plantUmlPng");mxUtils.write(q,mxResources.get("plantUml")+" ("+mxResources.get("formatPng")+ ")");var f=document.createElement("option");f.setAttribute("value","plantUmlTxt");mxUtils.write(f,mxResources.get("plantUml")+" ("+mxResources.get("text")+")");EditorUi.enablePlantUml&&Graph.fileSupport&&!a.isOffline()&&"plantUml"==b&&(m.appendChild(n),m.appendChild(q),m.appendChild(f));var l=g();k.value=l;c.appendChild(k);this.init=function(){k.focus()};Graph.fileSupport&&(k.addEventListener("dragover",function(a){a.stopPropagation();a.preventDefault()},!1),k.addEventListener("drop",function(a){a.stopPropagation(); a.preventDefault();if(0<a.dataTransfer.files.length){a=a.dataTransfer.files[0];var b=new FileReader;b.onload=function(a){k.value=a.target.result};b.readAsText(a)}},!1));c.appendChild(m);mxEvent.addListener(m,"change",function(){var a=g();if(0==k.value.length||k.value==l)l=a,k.value=l});b=mxUtils.button(mxResources.get("close"),function(){k.value==l?a.hideDialog():a.confirm(mxResources.get("areYouSure"),function(){a.hideDialog()})});b.className="geBtn";a.editor.cancelFirst&&c.appendChild(b);n=mxUtils.button(mxResources.get("insert"), -function(){a.hideDialog();d(k.value,m.value)});c.appendChild(n);n.className="geBtn gePrimaryBtn";a.editor.cancelFirst||c.appendChild(b);this.container=c},NewDialog=function(a,c,b,d,g,e,k,m,n,q,f,l,p,u,v,t,y){function x(){var a=!0;if(null!=U)for(;H<U.length&&(a||0!=mxUtils.mod(H,30));)a=U[H++],B(a.url,a.libs,a.title,a.tooltip?a.tooltip:a.title,a.select,a.imgUrl,a.info,a.onClick,a.preview,a.noImg,a.clibs),a=!1}function C(){if(V)b||a.hideDialog(),u(V,ba,G.value);else if(d)b||a.hideDialog(),d(fa,G.value); -else{var c=G.value;null!=c&&0<c.length&&a.pickFolder(a.mode,function(b){a.createFile(c,fa,null!=Z&&0<Z.length?Z:null,null,function(){a.hideDialog()},null,b,null,null!=ha&&0<ha.length?ha:null)},a.mode!=App.MODE_GOOGLE||null==a.stateArg||null==a.stateArg.folderId)}}function A(a,b,c,f,d,l){null!=da&&(da.style.backgroundColor="transparent",da.style.border="1px solid transparent");E.removeAttribute("disabled");fa=b;Z=c;ha=l;da=a;V=f;ba=d;da.style.backgroundColor=m;da.style.border=n}function B(b,c,f,d, +function(){a.hideDialog();d(k.value,m.value)});c.appendChild(n);n.className="geBtn gePrimaryBtn";a.editor.cancelFirst||c.appendChild(b);this.container=c},NewDialog=function(a,c,b,d,g,e,k,m,n,q,f,l,p,u,v,t,y){function x(){var a=!0;if(null!=U)for(;I<U.length&&(a||0!=mxUtils.mod(I,30));)a=U[I++],B(a.url,a.libs,a.title,a.tooltip?a.tooltip:a.title,a.select,a.imgUrl,a.info,a.onClick,a.preview,a.noImg,a.clibs),a=!1}function C(){if(V)b||a.hideDialog(),u(V,ba,G.value);else if(d)b||a.hideDialog(),d(fa,G.value); +else{var c=G.value;null!=c&&0<c.length&&a.pickFolder(a.mode,function(b){a.createFile(c,fa,null!=Z&&0<Z.length?Z:null,null,function(){a.hideDialog()},null,b,null,null!=ha&&0<ha.length?ha:null)},a.mode!=App.MODE_GOOGLE||null==a.stateArg||null==a.stateArg.folderId)}}function A(a,b,c,f,d,l){null!=da&&(da.style.backgroundColor="transparent",da.style.border="1px solid transparent");F.removeAttribute("disabled");fa=b;Z=c;ha=l;da=a;V=f;ba=d;da.style.backgroundColor=m;da.style.border=n}function B(b,c,f,d, l,p,e,k,t,z,g){var u=document.createElement("div");u.className="geTemplate";u.style.height=Y+"px";u.style.width=ea+"px";null!=d&&0<d.length&&u.setAttribute("title",d);if(null!=p)u.style.backgroundImage="url("+p+")",u.style.backgroundSize="contain",u.style.backgroundPosition="center center",u.style.backgroundRepeat="no-repeat",mxEvent.addListener(u,"click",function(a){A(u,null,null,b,e,g)}),mxEvent.addListener(u,"dblclick",function(a){C()});else if(!z&&null!=b&&0<b.length){f=t||TEMPLATE_PATH+"/"+b.substring(0, -b.length-4)+".png";u.style.backgroundImage="url("+f+")";u.style.backgroundPosition="center center";u.style.backgroundRepeat="no-repeat";var B=!1;mxEvent.addListener(u,"click",function(f){E.setAttribute("disabled","disabled");u.style.backgroundColor="transparent";u.style.border="1px solid transparent";f=b;f=/^https?:\/\//.test(f)&&!a.editor.isCorsEnabledForUrl(f)?PROXY_URL+"?url="+encodeURIComponent(f):TEMPLATE_PATH+"/"+f;I.spin(Q);mxUtils.get(f,mxUtils.bind(this,function(a){I.stop();200<=a.getStatus()&& +b.length-4)+".png";u.style.backgroundImage="url("+f+")";u.style.backgroundPosition="center center";u.style.backgroundRepeat="no-repeat";var B=!1;mxEvent.addListener(u,"click",function(f){F.setAttribute("disabled","disabled");u.style.backgroundColor="transparent";u.style.border="1px solid transparent";f=b;f=/^https?:\/\//.test(f)&&!a.editor.isCorsEnabledForUrl(f)?PROXY_URL+"?url="+encodeURIComponent(f):TEMPLATE_PATH+"/"+f;H.spin(Q);mxUtils.get(f,mxUtils.bind(this,function(a){H.stop();200<=a.getStatus()&& 299>=a.getStatus()&&(A(u,a.getText(),c,null,null,g),B&&C())}))});mxEvent.addListener(u,"dblclick",function(a){B=!0})}else u.innerHTML='<table width="100%" height="100%" style="line-height:1em;word-break: break-all;"><tr><td align="center" valign="middle">'+mxResources.get(f,null,f)+"</td></tr></table>",l&&A(u),null!=k?mxEvent.addListener(u,"click",k):(mxEvent.addListener(u,"click",function(a){A(u,null,null,b,e)}),mxEvent.addListener(u,"dblclick",function(a){C()}));Q.appendChild(u)}function D(){S&& (S=!1,mxEvent.addListener(Q,"scroll",function(a){Q.scrollTop+Q.clientHeight>=Q.scrollHeight&&(x(),mxEvent.consume(a))}));var a=null;if(0<ca){var b=document.createElement("div");b.style.cssText="font-weight: bold;background: #f9f9f9;padding: 5px 0 5px 0;text-align: center;";mxUtils.write(b,mxResources.get("custom"));aa.appendChild(b);for(var c in N){var f=document.createElement("div"),b=c,d=N[c];18<b.length&&(b=b.substring(0,18)+"…");f.style.cssText="display:block;cursor:pointer;padding:6px;white-space:nowrap;margin-bottom:-1px;overflow:hidden;text-overflow:ellipsis;"; -f.setAttribute("title",b+" ("+d.length+")");mxUtils.write(f,f.getAttribute("title"));null!=q&&(f.style.padding=q);aa.appendChild(f);(function(b,c){mxEvent.addListener(f,"click",function(){a!=c&&(a.style.backgroundColor="",a=c,a.style.backgroundColor=k,Q.scrollTop=0,Q.innerHTML="",H=0,U=N[b],M=null,x())})})(c,f)}b=document.createElement("div");b.style.cssText="font-weight: bold;background: #f9f9f9;padding: 5px 0 5px 0;text-align: center;";mxUtils.write(b,"draw.io");aa.appendChild(b)}for(c in P)f=document.createElement("div"), +f.setAttribute("title",b+" ("+d.length+")");mxUtils.write(f,f.getAttribute("title"));null!=q&&(f.style.padding=q);aa.appendChild(f);(function(b,c){mxEvent.addListener(f,"click",function(){a!=c&&(a.style.backgroundColor="",a=c,a.style.backgroundColor=k,Q.scrollTop=0,Q.innerHTML="",I=0,U=N[b],M=null,x())})})(c,f)}b=document.createElement("div");b.style.cssText="font-weight: bold;background: #f9f9f9;padding: 5px 0 5px 0;text-align: center;";mxUtils.write(b,"draw.io");aa.appendChild(b)}for(c in P)f=document.createElement("div"), b=mxResources.get(c),d=P[c],null==b&&(b=c.substring(0,1).toUpperCase()+c.substring(1)),18<b.length&&(b=b.substring(0,18)+"…"),f.style.cssText="display:block;cursor:pointer;padding:6px;white-space:nowrap;margin-bottom:-1px;overflow:hidden;text-overflow:ellipsis;",f.setAttribute("title",b+" ("+d.length+")"),mxUtils.write(f,f.getAttribute("title")),null!=q&&(f.style.padding=q),aa.appendChild(f),null==a&&0<d.length&&(a=f,a.style.backgroundColor=k,U=d),function(b,c){mxEvent.addListener(f,"click", -function(){a!=c&&(a.style.backgroundColor="",a=c,a.style.backgroundColor=k,Q.scrollTop=0,Q.innerHTML="",H=0,U=P[b],M=null,x())})}(c,f);x()}b=null!=b?b:!0;g=null!=g?g:!1;k=null!=k?k:"#ebf2f9";m=null!=m?m:"#e6eff8";n=null!=n?n:"1px solid #ccd9ea";f=null!=f?f:EditorUi.templateFile;var z=document.createElement("div");z.style.height="100%";var J=document.createElement("div");J.style.whiteSpace="nowrap";J.style.height="46px";b&&z.appendChild(J);var F=document.createElement("img");F.setAttribute("border", -"0");F.setAttribute("align","absmiddle");F.style.width="40px";F.style.height="40px";F.style.marginRight="10px";F.style.paddingBottom="4px";F.src=a.mode==App.MODE_GOOGLE?IMAGE_PATH+"/google-drive-logo.svg":a.mode==App.MODE_DROPBOX?IMAGE_PATH+"/dropbox-logo.svg":a.mode==App.MODE_ONEDRIVE?IMAGE_PATH+"/onedrive-logo.svg":a.mode==App.MODE_GITHUB?IMAGE_PATH+"/github-logo.svg":a.mode==App.MODE_GITLAB?IMAGE_PATH+"/gitlab-logo.svg":a.mode==App.MODE_TRELLO?IMAGE_PATH+"/trello-logo.svg":a.mode==App.MODE_BROWSER? -IMAGE_PATH+"/osa_database.png":IMAGE_PATH+"/osa_drive-harddisk.png";!c&&b&&J.appendChild(F);b&&mxUtils.write(J,(null==a.mode||a.mode==App.MODE_GOOGLE||a.mode==App.MODE_BROWSER?mxResources.get("diagramName"):mxResources.get("filename"))+":");F=".drawio";a.mode==App.MODE_GOOGLE&&null!=a.drive?F=a.drive.extension:a.mode==App.MODE_DROPBOX&&null!=a.dropbox?F=a.dropbox.extension:a.mode==App.MODE_ONEDRIVE&&null!=a.oneDrive?F=a.oneDrive.extension:a.mode==App.MODE_GITHUB&&null!=a.gitHub?F=a.gitHub.extension: -a.mode==App.MODE_GITLAB&&null!=a.gitLab?F=a.gitLab.extension:a.mode==App.MODE_TRELLO&&null!=a.trello&&(F=a.trello.extension);var G=document.createElement("input");G.setAttribute("value",a.defaultFilename+F);G.style.marginLeft="10px";G.style.width=c?"220px":"430px";this.init=function(){b&&(G.focus(),mxClient.IS_GC||mxClient.IS_FF||5<=document.documentMode||mxClient.IS_QUIRKS?G.select():document.execCommand("selectAll",!1,null))};b&&(J.appendChild(G),null!=a.editor.fileExtensions&&(F=FilenameDialog.createTypeHint(a, -G,a.editor.fileExtensions),F.style.marginTop="12px",J.appendChild(F)));var J=!1,H=0,I=new Spinner({lines:12,length:10,width:5,radius:10,rotate:0,color:"#000",speed:1.5,trail:60,shadow:!1,hwaccel:!1,top:"40%",zIndex:2E9}),E=mxUtils.button(t||mxResources.get("create"),function(){E.setAttribute("disabled","disabled");C();E.removeAttribute("disabled")});E.className="geBtn gePrimaryBtn";if(l||p){var K=[],M=null,R=null,X=null,T=function(a){E.setAttribute("disabled","disabled");for(var b=0;b<K.length;b++)K[b].className= -b==a?"geBtn gePrimaryBtn":"geBtn"},J=!0;t=document.createElement("div");t.style.whiteSpace="nowrap";t.style.height="30px";z.appendChild(t);F=mxUtils.button(mxResources.get("Templates",null,"Templates"),function(){aa.style.display="";Q.style.left="160px";T(0);Q.scrollTop=0;Q.innerHTML="";H=0;M!=U&&(U=M,P=R,ca=X,aa.innerHTML="",D(),M=null)});K.push(F);t.appendChild(F);var L=function(a){aa.style.display="none";Q.style.left="30px";T(a?-1:1);null==M&&(M=U);Q.scrollTop=0;Q.innerHTML="";I.spin(Q);var b= -function(a,b,c){H=0;I.stop();U=a;c=c||{};var f=0,d;for(d in c)f+=c[d].length;if(b)Q.innerHTML=b;else if(0==a.length&&0==f)Q.innerHTML=mxUtils.htmlEntities(mxResources.get("noDiagrams",null,"No Diagrams Found"));else if(Q.innerHTML="",0<f){aa.style.display="";Q.style.left="160px";aa.innerHTML="";ca=0;P={"draw.io":a};for(d in c)P[d]=c[d];D()}else x()};a?p(W.value,b):l(b)};l&&(F=mxUtils.button(mxResources.get("Recent",null,"Recent"),function(){L()}),t.appendChild(F),K.push(F));if(p){F=document.createElement("span"); -F.style.marginLeft="10px";F.innerHTML=mxUtils.htmlEntities(mxResources.get("search")+":");t.appendChild(F);var W=document.createElement("input");W.style.marginRight="10px";W.style.marginLeft="10px";W.style.width="220px";mxEvent.addListener(W,"keypress",function(a){13==a.keyCode&&L(!0)});t.appendChild(W);F=mxUtils.button(mxResources.get("search"),function(){L(!0)});F.className="geBtn";t.appendChild(F)}T(0)}var Z=null,ha=null,fa=null,da=null,V=null,ba=null,Q=document.createElement("div");Q.style.border= +function(){a!=c&&(a.style.backgroundColor="",a=c,a.style.backgroundColor=k,Q.scrollTop=0,Q.innerHTML="",I=0,U=P[b],M=null,x())})}(c,f);x()}b=null!=b?b:!0;g=null!=g?g:!1;k=null!=k?k:"#ebf2f9";m=null!=m?m:"#e6eff8";n=null!=n?n:"1px solid #ccd9ea";f=null!=f?f:EditorUi.templateFile;var z=document.createElement("div");z.style.height="100%";var J=document.createElement("div");J.style.whiteSpace="nowrap";J.style.height="46px";b&&z.appendChild(J);var E=document.createElement("img");E.setAttribute("border", +"0");E.setAttribute("align","absmiddle");E.style.width="40px";E.style.height="40px";E.style.marginRight="10px";E.style.paddingBottom="4px";E.src=a.mode==App.MODE_GOOGLE?IMAGE_PATH+"/google-drive-logo.svg":a.mode==App.MODE_DROPBOX?IMAGE_PATH+"/dropbox-logo.svg":a.mode==App.MODE_ONEDRIVE?IMAGE_PATH+"/onedrive-logo.svg":a.mode==App.MODE_GITHUB?IMAGE_PATH+"/github-logo.svg":a.mode==App.MODE_GITLAB?IMAGE_PATH+"/gitlab-logo.svg":a.mode==App.MODE_TRELLO?IMAGE_PATH+"/trello-logo.svg":a.mode==App.MODE_BROWSER? +IMAGE_PATH+"/osa_database.png":IMAGE_PATH+"/osa_drive-harddisk.png";!c&&b&&J.appendChild(E);b&&mxUtils.write(J,(null==a.mode||a.mode==App.MODE_GOOGLE||a.mode==App.MODE_BROWSER?mxResources.get("diagramName"):mxResources.get("filename"))+":");E=".drawio";a.mode==App.MODE_GOOGLE&&null!=a.drive?E=a.drive.extension:a.mode==App.MODE_DROPBOX&&null!=a.dropbox?E=a.dropbox.extension:a.mode==App.MODE_ONEDRIVE&&null!=a.oneDrive?E=a.oneDrive.extension:a.mode==App.MODE_GITHUB&&null!=a.gitHub?E=a.gitHub.extension: +a.mode==App.MODE_GITLAB&&null!=a.gitLab?E=a.gitLab.extension:a.mode==App.MODE_TRELLO&&null!=a.trello&&(E=a.trello.extension);var G=document.createElement("input");G.setAttribute("value",a.defaultFilename+E);G.style.marginLeft="10px";G.style.width=c?"220px":"430px";this.init=function(){b&&(G.focus(),mxClient.IS_GC||mxClient.IS_FF||5<=document.documentMode||mxClient.IS_QUIRKS?G.select():document.execCommand("selectAll",!1,null))};b&&(J.appendChild(G),null!=a.editor.fileExtensions&&(E=FilenameDialog.createTypeHint(a, +G,a.editor.fileExtensions),E.style.marginTop="12px",J.appendChild(E)));var J=!1,I=0,H=new Spinner({lines:12,length:10,width:5,radius:10,rotate:0,color:"#000",speed:1.5,trail:60,shadow:!1,hwaccel:!1,top:"40%",zIndex:2E9}),F=mxUtils.button(t||mxResources.get("create"),function(){F.setAttribute("disabled","disabled");C();F.removeAttribute("disabled")});F.className="geBtn gePrimaryBtn";if(l||p){var K=[],M=null,R=null,X=null,T=function(a){F.setAttribute("disabled","disabled");for(var b=0;b<K.length;b++)K[b].className= +b==a?"geBtn gePrimaryBtn":"geBtn"},J=!0;t=document.createElement("div");t.style.whiteSpace="nowrap";t.style.height="30px";z.appendChild(t);E=mxUtils.button(mxResources.get("Templates",null,"Templates"),function(){aa.style.display="";Q.style.left="160px";T(0);Q.scrollTop=0;Q.innerHTML="";I=0;M!=U&&(U=M,P=R,ca=X,aa.innerHTML="",D(),M=null)});K.push(E);t.appendChild(E);var L=function(a){aa.style.display="none";Q.style.left="30px";T(a?-1:1);null==M&&(M=U);Q.scrollTop=0;Q.innerHTML="";H.spin(Q);var b= +function(a,b,c){I=0;H.stop();U=a;c=c||{};var f=0,d;for(d in c)f+=c[d].length;if(b)Q.innerHTML=b;else if(0==a.length&&0==f)Q.innerHTML=mxUtils.htmlEntities(mxResources.get("noDiagrams",null,"No Diagrams Found"));else if(Q.innerHTML="",0<f){aa.style.display="";Q.style.left="160px";aa.innerHTML="";ca=0;P={"draw.io":a};for(d in c)P[d]=c[d];D()}else x()};a?p(W.value,b):l(b)};l&&(E=mxUtils.button(mxResources.get("Recent",null,"Recent"),function(){L()}),t.appendChild(E),K.push(E));if(p){E=document.createElement("span"); +E.style.marginLeft="10px";E.innerHTML=mxUtils.htmlEntities(mxResources.get("search")+":");t.appendChild(E);var W=document.createElement("input");W.style.marginRight="10px";W.style.marginLeft="10px";W.style.width="220px";mxEvent.addListener(W,"keypress",function(a){13==a.keyCode&&L(!0)});t.appendChild(W);E=mxUtils.button(mxResources.get("search"),function(){L(!0)});E.className="geBtn";t.appendChild(E)}T(0)}var Z=null,ha=null,fa=null,da=null,V=null,ba=null,Q=document.createElement("div");Q.style.border= "1px solid #d3d3d3";Q.style.position="absolute";Q.style.left="160px";Q.style.right="34px";J=(b?72:40)+(J?30:0);Q.style.top=J+"px";Q.style.bottom="68px";Q.style.margin="6px 0 0 -1px";Q.style.padding="6px";Q.style.overflow="auto";var aa=document.createElement("div");aa.style.cssText="position:absolute;left:30px;width:128px;top:"+J+"px;bottom:68px;margin-top:6px;overflow:auto;border:1px solid #d3d3d3;";var Y=140,ea=140,P={},N={},ca=0,S=!0;P.basic=[{title:"blankDiagram",select:!0}];var U=P.basic;if(!c){var ja= function(){mxUtils.get(O,function(a){if(!ka){ka=!0;a=a.getXml().documentElement.firstChild;for(var b={};null!=a;){if("undefined"!==typeof a.getAttribute)if("clibs"==a.nodeName){for(var c=a.getAttribute("name"),f=a.getElementsByTagName("add"),d=[],l=0;l<f.length;l++)d.push(encodeURIComponent(mxUtils.getTextContent(f[l])));null!=c&&0<d.length&&(b[c]=d.join(";"))}else c=a.getAttribute("url"),null!=c&&(f=a.getAttribute("section"),null==f&&(f=c.indexOf("/"),f=c.substring(0,f)),c=P[f],null==c&&(c=[],P[f]= -c),f=a.getAttribute("clibs"),null!=b[f]&&(f=b[f]),c.push({url:a.getAttribute("url"),libs:a.getAttribute("libs"),title:a.getAttribute("title"),tooltip:a.getAttribute("url"),preview:a.getAttribute("preview"),clibs:f}));a=a.nextSibling}I.stop();D()}})};z.appendChild(aa);z.appendChild(Q);var ka=!1,O=f;/^https?:\/\//.test(O)&&!a.editor.isCorsEnabledForUrl(O)&&(O=PROXY_URL+"?url="+encodeURIComponent(O));I.spin(Q);null!=y?y(function(a,b){N=a;X=ca=b;ja()},ja):ja();R=P}mxEvent.addListener(G,"keypress",function(b){a.dialog.container.firstChild== +c),f=a.getAttribute("clibs"),null!=b[f]&&(f=b[f]),c.push({url:a.getAttribute("url"),libs:a.getAttribute("libs"),title:a.getAttribute("title"),tooltip:a.getAttribute("url"),preview:a.getAttribute("preview"),clibs:f}));a=a.nextSibling}H.stop();D()}})};z.appendChild(aa);z.appendChild(Q);var ka=!1,O=f;/^https?:\/\//.test(O)&&!a.editor.isCorsEnabledForUrl(O)&&(O=PROXY_URL+"?url="+encodeURIComponent(O));H.spin(Q);null!=y?y(function(a,b){N=a;X=ca=b;ja()},ja):ja();R=P}mxEvent.addListener(G,"keypress",function(b){a.dialog.container.firstChild== z&&13==b.keyCode&&C()});f=document.createElement("div");f.style.marginTop=c?"4px":"16px";f.style.textAlign="right";f.style.position="absolute";f.style.left="40px";f.style.bottom="24px";f.style.right="40px";c||a.isOffline()||!b||null!=d||g||(y=mxUtils.button(mxResources.get("help"),function(){a.openLink("https://support.draw.io/display/DO/Creating+and+Opening+Files")}),y.className="geBtn",f.appendChild(y));y=mxUtils.button(mxResources.get("cancel"),function(){null!=e&&e();a.hideDialog(!0)});y.className= "geBtn";!a.editor.cancelFirst||g&&null==e||f.appendChild(y);c||"1"==urlParams.embed||g||(c=mxUtils.button(mxResources.get("fromTemplateUrl"),function(){var b=new FilenameDialog(a,"",mxResources.get("create"),function(b){null!=b&&0<b.length&&(b=a.getUrl(window.location.pathname+"?mode="+a.mode+"&title="+encodeURIComponent(G.value)+"&create="+encodeURIComponent(b)),null==a.getCurrentFile()?window.location.href=b:window.openWindow(b))},mxResources.get("url"));a.showDialog(b.container,300,80,!0,!0);b.init()}), -c.className="geBtn",f.appendChild(c));Graph.fileSupport&&v&&(v=mxUtils.button(mxResources.get("import"),function(){if(null==a.newDlgFileInputElt){var b=document.createElement("input");b.setAttribute("multiple","multiple");b.setAttribute("type","file");mxEvent.addListener(b,"change",function(c){a.openFiles(b.files,!0);b.value=""});b.style.display="none";document.body.appendChild(b);a.newDlgFileInputElt=b}a.newDlgFileInputElt.click()}),v.className="geBtn",f.appendChild(v));f.appendChild(E);a.editor.cancelFirst|| +c.className="geBtn",f.appendChild(c));Graph.fileSupport&&v&&(v=mxUtils.button(mxResources.get("import"),function(){if(null==a.newDlgFileInputElt){var b=document.createElement("input");b.setAttribute("multiple","multiple");b.setAttribute("type","file");mxEvent.addListener(b,"change",function(c){a.openFiles(b.files,!0);b.value=""});b.style.display="none";document.body.appendChild(b);a.newDlgFileInputElt=b}a.newDlgFileInputElt.click()}),v.className="geBtn",f.appendChild(v));f.appendChild(F);a.editor.cancelFirst|| null!=d||g&&null==e||f.appendChild(y);z.appendChild(f);this.container=z},CreateDialog=function(a,c,b,d,g,e,k,m,n,q,f,l,p,u,v,t){function y(b,f,d,p){function e(){mxEvent.addListener(t,"click",function(){var b=d;if(k){var f=A.value,l=f.lastIndexOf(".");if(0>c.lastIndexOf(".")&&0>l){var b=null!=b?b:z.value,p="";b==App.MODE_GOOGLE?p=a.drive.extension:b==App.MODE_GITHUB?p=a.gitHub.extension:b==App.MODE_GITLAB?p=a.gitLab.extension:b==App.MODE_TRELLO?p=a.trello.extension:b==App.MODE_DROPBOX?p=a.dropbox.extension: b==App.MODE_ONEDRIVE?p=a.oneDrive.extension:b==App.MODE_DEVICE&&(p=".drawio");0<=l&&(f=f.substring(0,l));A.value=f+p}}x(d)})}var t=document.createElement("a");t.style.overflow="hidden";var g=document.createElement("img");g.src=b;g.setAttribute("border","0");g.setAttribute("align","absmiddle");g.style.width="60px";g.style.height="60px";g.style.paddingBottom="6px";t.style.display=mxClient.IS_QUIRKS?"inline":"inline-block";t.className="geBaseButton";t.style.position="relative";t.style.margin="4px";t.style.padding= "8px 8px 10px 8px";t.style.whiteSpace="nowrap";t.appendChild(g);mxClient.IS_QUIRKS&&(t.style.cssFloat="left",t.style.zoom="1");t.style.color="gray";t.style.fontSize="11px";var u=document.createElement("div");t.appendChild(u);mxUtils.write(u,f);if(null!=p&&null==a[p]){g.style.visibility="hidden";mxUtils.setOpacity(u,10);var v=new Spinner({lines:12,length:12,width:5,radius:10,rotate:0,color:"#000",speed:1.5,trail:60,shadow:!1,hwaccel:!1,top:"40%",zIndex:2E9});v.spin(t);var m=window.setTimeout(function(){null== @@ -8286,20 +7947,20 @@ function(){return null};Editor.MathJaxRender&&m.addListener(mxEvent.SIZE,mxUtils C.setAttribute("title",mxResources.get("zoomIn"));C.style.outline="none";C.style.border="none";C.style.margin="2px";C.setAttribute("disabled","disabled");mxUtils.setOpacity(C,20);var A=mxUtils.button("",function(){null!=y&&m.zoomOut()});A.className="geSprite geSprite-zoomout";A.setAttribute("title",mxResources.get("zoomOut"));A.style.outline="none";A.style.border="none";A.style.margin="2px";A.setAttribute("disabled","disabled");mxUtils.setOpacity(A,20);var B=mxUtils.button("",function(){null!=y&& (m.maxFitScale=8,m.fit(8),m.center())});B.className="geSprite geSprite-fit";B.setAttribute("title",mxResources.get("fit"));B.style.outline="none";B.style.border="none";B.style.margin="2px";B.setAttribute("disabled","disabled");mxUtils.setOpacity(B,20);var D=mxUtils.button("",function(){null!=y&&(m.zoomActual(),m.center())});D.className="geSprite geSprite-actualsize";D.setAttribute("title",mxResources.get("actualSize"));D.style.outline="none";D.style.border="none";D.style.margin="2px";D.setAttribute("disabled", "disabled");mxUtils.setOpacity(D,20);var z=document.createElement("div");z.style.position="absolute";z.style.textAlign="right";z.style.color="gray";z.style.marginTop="10px";z.style.backgroundColor="transparent";z.style.top="440px";z.style.right="32px";z.style.maxWidth="380px";z.style.cursor="default";var J=mxUtils.button(mxResources.get("download"),function(){if(null!=y){var b=mxUtils.getXml(y.documentElement),c=a.getBaseFilename()+".drawio";a.isLocalFileSave()?a.saveLocalFile(b,c,"text/xml"):(b= -"undefined"===typeof pako?"&xml="+encodeURIComponent(b):"&data="+encodeURIComponent(Graph.compress(b)),(new mxXmlRequest(SAVE_URL,"filename="+encodeURIComponent(c)+"&format=xml"+b)).simulate(document,"_blank"))}});J.className="geBtn";J.setAttribute("disabled","disabled");var F=mxUtils.button(mxResources.get("restore"),function(){null!=y&&null!=x&&a.confirm(mxResources.get("areYouSure"),function(){null!=b?b(x):a.spinner.spin(document.body,mxResources.get("restoring"))&&u.save(!0,function(b){a.spinner.stop(); -a.replaceFileData(x);a.hideDialog()},function(b){a.spinner.stop();a.editor.setStatus("");a.handleError(b,null!=b?mxResources.get("errorSavingFile"):null)})})});F.className="geBtn";F.setAttribute("disabled","disabled");var G=document.createElement("select");G.setAttribute("disabled","disabled");G.style.maxWidth="80px";G.style.position="relative";G.style.top="-2px";G.style.verticalAlign="bottom";G.style.marginRight="6px";G.style.display="none";var H=null;mxEvent.addListener(G,"change",function(a){null!= -H&&(H(a),mxEvent.consume(a))});var I=mxUtils.button(mxResources.get("edit"),function(){null!=y&&(window.openFile=new OpenFile(function(){window.openFile=null}),window.openFile.setData(mxUtils.getXml(y.documentElement)),a.openLink(a.getUrl(),null,!0))});I.className="geBtn";I.setAttribute("disabled","disabled");null!=b&&(I.style.display="none");var E=mxUtils.button(mxResources.get("show"),function(){null!=t&&a.openLink(t.getUrl(G.selectedIndex))});E.className="geBtn gePrimaryBtn";E.setAttribute("disabled", -"disabled");null!=b&&(E.style.display="none",F.className="geBtn gePrimaryBtn");g=document.createElement("div");g.style.position="absolute";g.style.top="482px";g.style.width="640px";g.style.textAlign="right";var K=document.createElement("div");K.className="geToolbarContainer";K.style.backgroundColor="transparent";K.style.padding="2px";K.style.border="none";K.style.left="199px";K.style.top="442px";var M=null;if(null!=c&&0<c.length){k.style.cursor="move";var R=document.createElement("table");R.style.border= +"undefined"===typeof pako?"&xml="+encodeURIComponent(b):"&data="+encodeURIComponent(Graph.compress(b)),(new mxXmlRequest(SAVE_URL,"filename="+encodeURIComponent(c)+"&format=xml"+b)).simulate(document,"_blank"))}});J.className="geBtn";J.setAttribute("disabled","disabled");var E=mxUtils.button(mxResources.get("restore"),function(){null!=y&&null!=x&&a.confirm(mxResources.get("areYouSure"),function(){null!=b?b(x):a.spinner.spin(document.body,mxResources.get("restoring"))&&u.save(!0,function(b){a.spinner.stop(); +a.replaceFileData(x);a.hideDialog()},function(b){a.spinner.stop();a.editor.setStatus("");a.handleError(b,null!=b?mxResources.get("errorSavingFile"):null)})})});E.className="geBtn";E.setAttribute("disabled","disabled");var G=document.createElement("select");G.setAttribute("disabled","disabled");G.style.maxWidth="80px";G.style.position="relative";G.style.top="-2px";G.style.verticalAlign="bottom";G.style.marginRight="6px";G.style.display="none";var I=null;mxEvent.addListener(G,"change",function(a){null!= +I&&(I(a),mxEvent.consume(a))});var H=mxUtils.button(mxResources.get("edit"),function(){null!=y&&(window.openFile=new OpenFile(function(){window.openFile=null}),window.openFile.setData(mxUtils.getXml(y.documentElement)),a.openLink(a.getUrl(),null,!0))});H.className="geBtn";H.setAttribute("disabled","disabled");null!=b&&(H.style.display="none");var F=mxUtils.button(mxResources.get("show"),function(){null!=t&&a.openLink(t.getUrl(G.selectedIndex))});F.className="geBtn gePrimaryBtn";F.setAttribute("disabled", +"disabled");null!=b&&(F.style.display="none",E.className="geBtn gePrimaryBtn");g=document.createElement("div");g.style.position="absolute";g.style.top="482px";g.style.width="640px";g.style.textAlign="right";var K=document.createElement("div");K.className="geToolbarContainer";K.style.backgroundColor="transparent";K.style.padding="2px";K.style.border="none";K.style.left="199px";K.style.top="442px";var M=null;if(null!=c&&0<c.length){k.style.cursor="move";var R=document.createElement("table");R.style.border= "1px solid lightGray";R.style.borderCollapse="collapse";R.style.borderSpacing="0px";R.style.width="100%";var X=document.createElement("tbody"),T=(new Date).toDateString();null!=a.currentPage&&null!=a.pages&&(n=mxUtils.indexOf(a.pages,a.currentPage));for(var L=c.length-1;0<=L;L--){var W=function(b){var d=new Date(b.modifiedDate),l=null;if(0<=d.getTime()){var e=function(c){p.stop();var e=mxUtils.parseXml(c),t=a.editor.extractGraphModel(e.documentElement,!0);if(null!=t){var g=function(a){null!=a&&(a= v(mxUtils.parseXml(Graph.decompress(mxUtils.getTextContent(a))).documentElement));return a},v=function(a){var b=a.getAttribute("background");if(null==b||""==b||b==mxConstants.NONE)b="#ffffff";k.style.backgroundColor=b;(new mxCodec(a.ownerDocument)).decode(a,m.getModel());m.maxFitScale=1;m.fit(8);m.center();return a};G.style.display="none";G.innerHTML="";y=e;x=c;q=parseSelectFunction=null;f=0;if("mxfile"==t.nodeName){e=t.getElementsByTagName("diagram");q=[];for(c=0;c<e.length;c++)q.push(e[c]);f=Math.min(n, -q.length-1);0<q.length&&g(q[f]);if(1<q.length)for(G.removeAttribute("disabled"),G.style.display="",c=0;c<q.length;c++)e=document.createElement("option"),mxUtils.write(e,q[c].getAttribute("name")||mxResources.get("pageWithNumber",[c+1])),e.setAttribute("value",c),c==f&&e.setAttribute("selected","selected"),G.appendChild(e);H=function(){try{var b=parseInt(G.value);f=n=b;g(q[b])}catch(N){G.value=n,a.handleError(N)}}}else v(t);c=b.lastModifyingUserName;null!=c&&20<c.length&&(c=c.substring(0,20)+"..."); -z.innerHTML="";mxUtils.write(z,(null!=c?c+" ":"")+d.toLocaleDateString()+" "+d.toLocaleTimeString());z.setAttribute("title",l.getAttribute("title"));C.removeAttribute("disabled");A.removeAttribute("disabled");B.removeAttribute("disabled");D.removeAttribute("disabled");null!=u&&u.isRestricted()||(a.editor.graph.isEnabled()&&F.removeAttribute("disabled"),J.removeAttribute("disabled"),E.removeAttribute("disabled"),I.removeAttribute("disabled"));mxUtils.setOpacity(C,60);mxUtils.setOpacity(A,60);mxUtils.setOpacity(B, +q.length-1);0<q.length&&g(q[f]);if(1<q.length)for(G.removeAttribute("disabled"),G.style.display="",c=0;c<q.length;c++)e=document.createElement("option"),mxUtils.write(e,q[c].getAttribute("name")||mxResources.get("pageWithNumber",[c+1])),e.setAttribute("value",c),c==f&&e.setAttribute("selected","selected"),G.appendChild(e);I=function(){try{var b=parseInt(G.value);f=n=b;g(q[b])}catch(N){G.value=n,a.handleError(N)}}}else v(t);c=b.lastModifyingUserName;null!=c&&20<c.length&&(c=c.substring(0,20)+"..."); +z.innerHTML="";mxUtils.write(z,(null!=c?c+" ":"")+d.toLocaleDateString()+" "+d.toLocaleTimeString());z.setAttribute("title",l.getAttribute("title"));C.removeAttribute("disabled");A.removeAttribute("disabled");B.removeAttribute("disabled");D.removeAttribute("disabled");null!=u&&u.isRestricted()||(a.editor.graph.isEnabled()&&E.removeAttribute("disabled"),J.removeAttribute("disabled"),F.removeAttribute("disabled"),H.removeAttribute("disabled"));mxUtils.setOpacity(C,60);mxUtils.setOpacity(A,60);mxUtils.setOpacity(B, 60);mxUtils.setOpacity(D,60)}else G.style.display="none",G.innerHTML="",z.innerHTML="",mxUtils.write(z,mxResources.get("errorLoadingFile"))},l=document.createElement("tr");l.style.borderBottom="1px solid lightGray";l.style.fontSize="12px";l.style.cursor="pointer";var g=document.createElement("td");g.style.padding="6px";g.style.whiteSpace="nowrap";b==c[c.length-1]?mxUtils.write(g,mxResources.get("current")):d.toDateString()===T?mxUtils.write(g,d.toLocaleTimeString()):mxUtils.write(g,d.toLocaleDateString()+ " "+d.toLocaleTimeString());l.appendChild(g);l.setAttribute("title",d.toLocaleDateString()+" "+d.toLocaleTimeString()+(null!=b.fileSize?" "+a.formatFileSize(parseInt(b.fileSize)):"")+(null!=b.lastModifyingUserName?" "+b.lastModifyingUserName:""));mxEvent.addListener(l,"click",function(a){t!=b&&(p.stop(),null!=v&&(v.style.backgroundColor=""),t=b,v=l,v.style.backgroundColor="#ebf2f9",x=y=null,z.removeAttribute("title"),z.innerHTML=mxUtils.htmlEntities(mxResources.get("loading")+"..."),k.style.backgroundColor= -"#ffffff",m.getModel().clear(),F.setAttribute("disabled","disabled"),J.setAttribute("disabled","disabled"),C.setAttribute("disabled","disabled"),A.setAttribute("disabled","disabled"),D.setAttribute("disabled","disabled"),B.setAttribute("disabled","disabled"),I.setAttribute("disabled","disabled"),E.setAttribute("disabled","disabled"),G.setAttribute("disabled","disabled"),mxUtils.setOpacity(C,20),mxUtils.setOpacity(A,20),mxUtils.setOpacity(B,20),mxUtils.setOpacity(D,20),p.spin(k),b.getXml(function(a){if(t== -b)try{e(a)}catch(aa){z.innerHTML=mxUtils.htmlEntities(mxResources.get("error")+": "+aa.message)}},function(a){p.stop();G.style.display="none";G.innerHTML="";z.innerHTML="";mxUtils.write(z,mxResources.get("errorLoadingFile"))}),mxEvent.consume(a))});mxEvent.addListener(l,"dblclick",function(a){E.click();window.getSelection?window.getSelection().removeAllRanges():document.selection&&document.selection.empty();mxEvent.consume(a)},!1);X.appendChild(l)}return l}(c[L]);null!=W&&L==c.length-1&&(M=W)}R.appendChild(X); +"#ffffff",m.getModel().clear(),E.setAttribute("disabled","disabled"),J.setAttribute("disabled","disabled"),C.setAttribute("disabled","disabled"),A.setAttribute("disabled","disabled"),D.setAttribute("disabled","disabled"),B.setAttribute("disabled","disabled"),H.setAttribute("disabled","disabled"),F.setAttribute("disabled","disabled"),G.setAttribute("disabled","disabled"),mxUtils.setOpacity(C,20),mxUtils.setOpacity(A,20),mxUtils.setOpacity(B,20),mxUtils.setOpacity(D,20),p.spin(k),b.getXml(function(a){if(t== +b)try{e(a)}catch(aa){z.innerHTML=mxUtils.htmlEntities(mxResources.get("error")+": "+aa.message)}},function(a){p.stop();G.style.display="none";G.innerHTML="";z.innerHTML="";mxUtils.write(z,mxResources.get("errorLoadingFile"))}),mxEvent.consume(a))});mxEvent.addListener(l,"dblclick",function(a){F.click();window.getSelection?window.getSelection().removeAllRanges():document.selection&&document.selection.empty();mxEvent.consume(a)},!1);X.appendChild(l)}return l}(c[L]);null!=W&&L==c.length-1&&(M=W)}R.appendChild(X); e.appendChild(R)}else null==u||null==a.drive&&u.constructor==window.DriveFile||null==a.dropbox&&u.constructor==window.DropboxFile?(k.style.display="none",K.style.display="none",mxUtils.write(e,mxResources.get("notAvailable"))):(k.style.display="none",K.style.display="none",mxUtils.write(e,mxResources.get("noRevisions")));this.init=function(){null!=M&&M.click()};e=mxUtils.button(mxResources.get("close"),function(){a.hideDialog()});e.className="geBtn";K.appendChild(G);K.appendChild(C);K.appendChild(A); -K.appendChild(D);K.appendChild(B);a.editor.cancelFirst?(g.appendChild(e),g.appendChild(J),g.appendChild(I),g.appendChild(F),g.appendChild(E)):(g.appendChild(J),g.appendChild(I),g.appendChild(F),g.appendChild(E),g.appendChild(e));d.appendChild(g);d.appendChild(K);d.appendChild(z);this.container=d},DraftDialog=function(a,c,b,d,g,e,k,m){var n=document.createElement("div"),q=document.createElement("div");q.style.marginTop="0px";q.style.whiteSpace="nowrap";q.style.overflow="auto";mxUtils.write(q,c);n.appendChild(q); +K.appendChild(D);K.appendChild(B);a.editor.cancelFirst?(g.appendChild(e),g.appendChild(J),g.appendChild(H),g.appendChild(E),g.appendChild(F)):(g.appendChild(J),g.appendChild(H),g.appendChild(E),g.appendChild(F),g.appendChild(e));d.appendChild(g);d.appendChild(K);d.appendChild(z);this.container=d},DraftDialog=function(a,c,b,d,g,e,k,m){var n=document.createElement("div"),q=document.createElement("div");q.style.marginTop="0px";q.style.whiteSpace="nowrap";q.style.overflow="auto";mxUtils.write(q,c);n.appendChild(q); var f=document.createElement("div");f.style.position="absolute";f.style.border="1px solid lightGray";f.style.marginTop="10px";f.style.width="640px";f.style.top="46px";f.style.bottom="74px";f.style.overflow="hidden";mxEvent.disableContextMenu(f);n.appendChild(f);var l=new Graph(f);l.setEnabled(!1);l.setPanning(!0);l.panningHandler.ignoreCell=!0;l.panningHandler.useLeftButtonForPanning=!0;l.minFitScale=null;l.maxFitScale=null;l.centerZoom=!0;c=mxUtils.parseXml(b);var p=a.editor.extractGraphModel(c.documentElement, !0),u=0,v=null,t=l.getGlobalVariable;l.getGlobalVariable=function(a){return"page"==a&&null!=v&&null!=v[u]?v[u].getAttribute("name"):"pagenumber"==a?u+1:"pagecount"==a?null!=v?v.length:1:t.apply(this,arguments)};l.getLinkForCell=function(){return null};c=mxUtils.button("",function(){l.zoomIn()});c.className="geSprite geSprite-zoomin";c.setAttribute("title",mxResources.get("zoomIn"));c.style.outline="none";c.style.border="none";c.style.margin="2px";mxUtils.setOpacity(c,60);b=mxUtils.button("",function(){l.zoomOut()}); b.className="geSprite geSprite-zoomout";b.setAttribute("title",mxResources.get("zoomOut"));b.style.outline="none";b.style.border="none";b.style.margin="2px";mxUtils.setOpacity(b,60);q=mxUtils.button("",function(){l.maxFitScale=8;l.fit(8);l.center()});q.className="geSprite geSprite-fit";q.setAttribute("title",mxResources.get("fit"));q.style.outline="none";q.style.border="none";q.style.margin="2px";mxUtils.setOpacity(q,60);var y=mxUtils.button("",function(){l.zoomActual();l.center()});y.className="geSprite geSprite-actualsize"; @@ -8361,16 +8022,16 @@ m=document.createElement("tr");n=document.createElement("td");q=document.createE "geBtn";var C=mxUtils.button(mxResources.get("apply"),function(){a.hideDialog();b.getModel().beginUpdate();try{for(var d=0;d<c.length;d++){var e=b.getCellGeometry(c[d]);null!=e&&(e=e.clone(),b.isCellMovable(c[d])&&(e.relative=f.checked,0<mxUtils.trim(l.value).length&&(e.x=Number(l.value)),0<mxUtils.trim(p.value).length&&(e.y=Number(p.value)),0<mxUtils.trim(u.value).length&&(null==e.offset&&(e.offset=new mxPoint),e.offset.x=Number(u.value)),0<mxUtils.trim(v.value).length&&(null==e.offset&&(e.offset= new mxPoint),e.offset.y=Number(v.value))),b.isCellResizable(c[d])&&(0<mxUtils.trim(t.value).length&&(e.width=Number(t.value)),0<mxUtils.trim(y.value).length&&(e.height=Number(y.value))),b.getModel().setGeometry(c[d],e));0<mxUtils.trim(x.value).length&&b.setCellStyles(mxConstants.STYLE_ROTATION,Number(x.value),[c[d]])}}finally{b.getModel().endUpdate()}});C.className="geBtn gePrimaryBtn";mxEvent.addListener(g,"keypress",function(a){13==a.keyCode&&C.click()});e=document.createElement("div");e.style.marginTop= "20px";e.style.textAlign="right";a.editor.cancelFirst?(e.appendChild(d),e.appendChild(C)):(e.appendChild(C),e.appendChild(d));g.appendChild(e);this.container=g},LibraryDialog=function(a,c,b,d,g,e){function k(a){for(a=document.elementFromPoint(a.clientX,a.clientY);null!=a&&a.parentNode!=u;)a=a.parentNode;var b=null;if(null!=a)for(var c=u.firstChild,b=0;null!=c&&c!=a;)c=c.nextSibling,b++;return b}function m(b,c,d,l,p,e,g,z,n){try{if(a.spinner.stop(),null==c||"image/"==c.substring(0,6))if(null==b&&null!= -g||null==t[b]){var J=function(){I.innerHTML="";I.style.cursor="pointer";I.style.whiteSpace="nowrap";I.style.textOverflow="ellipsis";mxUtils.write(I,null!=M.title&&0<M.title.length?M.title:mxResources.get("untitled"));I.style.color=null==M.title||0==M.title.length?"#d0d0d0":""};u.style.backgroundImage="";v.style.display="none";var D=p,x=e;if(p>a.maxImageSize||e>a.maxImageSize){var q=Math.min(1,Math.min(a.maxImageSize/Math.max(1,p)),a.maxImageSize/Math.max(1,e));p*=q;e*=q}D>x?(x=Math.round(100*x/D), -D=100):(D=Math.round(100*D/x),x=100);var F=document.createElement("div");F.setAttribute("draggable","true");F.style.display=mxClient.IS_QUIRKS?"inline":"inline-block";F.style.position="relative";F.style.cursor="move";mxUtils.setPrefixedStyle(F.style,"transition","transform .1s ease-in-out");if(null!=b){var E=document.createElement("img");E.setAttribute("src",A.convert(b));E.style.width=D+"px";E.style.height=x+"px";E.style.margin="10px";E.style.paddingBottom=Math.floor((100-x)/2)+"px";E.style.paddingLeft= -Math.floor((100-D)/2)+"px";F.appendChild(E)}else if(null!=g){var H=a.stringToCells(Graph.decompress(g.xml));0<H.length&&(a.sidebar.createThumb(H,100,100,F,null,!0,!1),F.firstChild.style.display=mxClient.IS_QUIRKS?"inline":"inline-block",F.firstChild.style.cursor="")}var G=document.createElement("img");G.setAttribute("src",Editor.closeImage);G.setAttribute("border","0");G.setAttribute("title",mxResources.get("delete"));G.setAttribute("align","top");G.style.paddingTop="4px";G.style.position="absolute"; -G.style.marginLeft="-12px";G.style.zIndex="1";G.style.cursor="pointer";mxEvent.addListener(G,"dragstart",function(a){mxEvent.consume(a)});(function(a,b,c){mxEvent.addListener(G,"click",function(d){t[b]=null;for(var l=0;l<f.length;l++)if(null!=f[l].data&&f[l].data==b||null!=f[l].xml&&null!=c&&f[l].xml==c.xml){f.splice(l,1);break}F.parentNode.removeChild(a);0==f.length&&(u.style.backgroundImage="url('"+IMAGE_PATH+"/droptarget.png')",v.style.display="");mxEvent.consume(d)});mxEvent.addListener(G,"dblclick", -function(a){mxEvent.consume(a)})})(F,b,g);F.appendChild(G);F.style.marginBottom="30px";var I=document.createElement("div");I.style.position="absolute";I.style.boxSizing="border-box";I.style.bottom="-18px";I.style.left="10px";I.style.right="10px";I.style.backgroundColor="#ffffff";I.style.overflow="hidden";I.style.textAlign="center";var M=null;null!=b?(M={data:b,w:p,h:e,title:n},null!=z&&(M.aspect=z),t[b]=E,f.push(M)):null!=g&&(g.aspect="fixed",f.push(g),M=g);mxEvent.addListener(I,"keydown",function(a){13== -a.keyCode&&null!=C&&(C(),C=null,mxEvent.consume(a))});J();F.appendChild(I);mxEvent.addListener(I,"mousedown",function(a){"true"!=I.getAttribute("contentEditable")&&mxEvent.consume(a)});H=function(b){if(mxClient.IS_IOS||mxClient.IS_QUIRKS||mxClient.IS_FF||!(null==document.documentMode||9<document.documentMode)){var c=new FilenameDialog(a,M.title||"",mxResources.get("ok"),function(a){null!=a&&(M.title=a,J())},mxResources.get("enterValue"));a.showDialog(c.container,300,80,!0,!0);c.init();mxEvent.consume(b)}else if("true"!= -I.getAttribute("contentEditable")){null!=C&&(C(),C=null);if(null==M.title||0==M.title.length)I.innerHTML="";I.style.textOverflow="";I.style.whiteSpace="";I.style.cursor="text";I.style.color="";I.setAttribute("contentEditable","true");I.focus();document.execCommand("selectAll",!1,null);C=function(){I.removeAttribute("contentEditable");I.style.cursor="pointer";M.title=I.innerHTML;J()};mxEvent.consume(b)}};mxEvent.addListener(I,"click",H);mxEvent.addListener(F,"dblclick",H);u.appendChild(F);mxEvent.addListener(F, -"dragstart",function(a){null==b&&null!=g&&(G.style.visibility="hidden",I.style.visibility="hidden");mxClient.IS_FF&&null!=g.xml&&a.dataTransfer.setData("Text",g.xml);y=k(a);mxClient.IS_GC&&(F.style.opacity="0.9");window.setTimeout(function(){mxUtils.setPrefixedStyle(F.style,"transform","scale(0.5,0.5)");mxUtils.setOpacity(F,30);G.style.visibility="";I.style.visibility=""},0)});mxEvent.addListener(F,"dragend",function(a){"hidden"==G.style.visibility&&(G.style.visibility="",I.style.visibility="");y= -null;mxUtils.setOpacity(F,100);mxUtils.setPrefixedStyle(F.style,"transform",null)})}else B||(B=!0,a.handleError({message:mxResources.get("fileExists")}));else{p=!1;try{if(D=mxUtils.parseXml(b),"mxlibrary"==D.documentElement.nodeName){x=JSON.parse(mxUtils.getTextContent(D.documentElement));if(null!=x&&0<x.length)for(var K=0;K<x.length;K++)null!=x[K].xml?m(null,null,0,0,0,0,x[K]):m(x[K].data,null,0,0,x[K].w,x[K].h,null,"fixed",x[K].title);p=!0}else if("mxfile"==D.documentElement.nodeName){for(var R= -D.documentElement.getElementsByTagName("diagram"),K=0;K<R.length;K++){var x=mxUtils.getTextContent(R[K]),H=a.stringToCells(Graph.decompress(x)),Y=a.editor.graph.getBoundingBoxFromGeometry(H);m(null,null,0,0,0,0,{xml:x,w:Y.width,h:Y.height})}p=!0}}catch(ea){}p||(a.spinner.stop(),a.handleError({message:mxResources.get("errorLoadingFile")}))}}catch(ea){}return null}function n(a){a.dataTransfer.dropEffect=null!=y?"move":"copy";a.stopPropagation();a.preventDefault()}function q(b){b.stopPropagation();b.preventDefault(); +g||null==t[b]){var J=function(){H.innerHTML="";H.style.cursor="pointer";H.style.whiteSpace="nowrap";H.style.textOverflow="ellipsis";mxUtils.write(H,null!=M.title&&0<M.title.length?M.title:mxResources.get("untitled"));H.style.color=null==M.title||0==M.title.length?"#d0d0d0":""};u.style.backgroundImage="";v.style.display="none";var D=p,x=e;if(p>a.maxImageSize||e>a.maxImageSize){var q=Math.min(1,Math.min(a.maxImageSize/Math.max(1,p)),a.maxImageSize/Math.max(1,e));p*=q;e*=q}D>x?(x=Math.round(100*x/D), +D=100):(D=Math.round(100*D/x),x=100);var E=document.createElement("div");E.setAttribute("draggable","true");E.style.display=mxClient.IS_QUIRKS?"inline":"inline-block";E.style.position="relative";E.style.cursor="move";mxUtils.setPrefixedStyle(E.style,"transition","transform .1s ease-in-out");if(null!=b){var F=document.createElement("img");F.setAttribute("src",A.convert(b));F.style.width=D+"px";F.style.height=x+"px";F.style.margin="10px";F.style.paddingBottom=Math.floor((100-x)/2)+"px";F.style.paddingLeft= +Math.floor((100-D)/2)+"px";E.appendChild(F)}else if(null!=g){var I=a.stringToCells(Graph.decompress(g.xml));0<I.length&&(a.sidebar.createThumb(I,100,100,E,null,!0,!1),E.firstChild.style.display=mxClient.IS_QUIRKS?"inline":"inline-block",E.firstChild.style.cursor="")}var G=document.createElement("img");G.setAttribute("src",Editor.closeImage);G.setAttribute("border","0");G.setAttribute("title",mxResources.get("delete"));G.setAttribute("align","top");G.style.paddingTop="4px";G.style.position="absolute"; +G.style.marginLeft="-12px";G.style.zIndex="1";G.style.cursor="pointer";mxEvent.addListener(G,"dragstart",function(a){mxEvent.consume(a)});(function(a,b,c){mxEvent.addListener(G,"click",function(d){t[b]=null;for(var l=0;l<f.length;l++)if(null!=f[l].data&&f[l].data==b||null!=f[l].xml&&null!=c&&f[l].xml==c.xml){f.splice(l,1);break}E.parentNode.removeChild(a);0==f.length&&(u.style.backgroundImage="url('"+IMAGE_PATH+"/droptarget.png')",v.style.display="");mxEvent.consume(d)});mxEvent.addListener(G,"dblclick", +function(a){mxEvent.consume(a)})})(E,b,g);E.appendChild(G);E.style.marginBottom="30px";var H=document.createElement("div");H.style.position="absolute";H.style.boxSizing="border-box";H.style.bottom="-18px";H.style.left="10px";H.style.right="10px";H.style.backgroundColor="#ffffff";H.style.overflow="hidden";H.style.textAlign="center";var M=null;null!=b?(M={data:b,w:p,h:e,title:n},null!=z&&(M.aspect=z),t[b]=F,f.push(M)):null!=g&&(g.aspect="fixed",f.push(g),M=g);mxEvent.addListener(H,"keydown",function(a){13== +a.keyCode&&null!=C&&(C(),C=null,mxEvent.consume(a))});J();E.appendChild(H);mxEvent.addListener(H,"mousedown",function(a){"true"!=H.getAttribute("contentEditable")&&mxEvent.consume(a)});I=function(b){if(mxClient.IS_IOS||mxClient.IS_QUIRKS||mxClient.IS_FF||!(null==document.documentMode||9<document.documentMode)){var c=new FilenameDialog(a,M.title||"",mxResources.get("ok"),function(a){null!=a&&(M.title=a,J())},mxResources.get("enterValue"));a.showDialog(c.container,300,80,!0,!0);c.init();mxEvent.consume(b)}else if("true"!= +H.getAttribute("contentEditable")){null!=C&&(C(),C=null);if(null==M.title||0==M.title.length)H.innerHTML="";H.style.textOverflow="";H.style.whiteSpace="";H.style.cursor="text";H.style.color="";H.setAttribute("contentEditable","true");H.focus();document.execCommand("selectAll",!1,null);C=function(){H.removeAttribute("contentEditable");H.style.cursor="pointer";M.title=H.innerHTML;J()};mxEvent.consume(b)}};mxEvent.addListener(H,"click",I);mxEvent.addListener(E,"dblclick",I);u.appendChild(E);mxEvent.addListener(E, +"dragstart",function(a){null==b&&null!=g&&(G.style.visibility="hidden",H.style.visibility="hidden");mxClient.IS_FF&&null!=g.xml&&a.dataTransfer.setData("Text",g.xml);y=k(a);mxClient.IS_GC&&(E.style.opacity="0.9");window.setTimeout(function(){mxUtils.setPrefixedStyle(E.style,"transform","scale(0.5,0.5)");mxUtils.setOpacity(E,30);G.style.visibility="";H.style.visibility=""},0)});mxEvent.addListener(E,"dragend",function(a){"hidden"==G.style.visibility&&(G.style.visibility="",H.style.visibility="");y= +null;mxUtils.setOpacity(E,100);mxUtils.setPrefixedStyle(E.style,"transform",null)})}else B||(B=!0,a.handleError({message:mxResources.get("fileExists")}));else{p=!1;try{if(D=mxUtils.parseXml(b),"mxlibrary"==D.documentElement.nodeName){x=JSON.parse(mxUtils.getTextContent(D.documentElement));if(null!=x&&0<x.length)for(var K=0;K<x.length;K++)null!=x[K].xml?m(null,null,0,0,0,0,x[K]):m(x[K].data,null,0,0,x[K].w,x[K].h,null,"fixed",x[K].title);p=!0}else if("mxfile"==D.documentElement.nodeName){for(var R= +D.documentElement.getElementsByTagName("diagram"),K=0;K<R.length;K++){var x=mxUtils.getTextContent(R[K]),I=a.stringToCells(Graph.decompress(x)),Y=a.editor.graph.getBoundingBoxFromGeometry(I);m(null,null,0,0,0,0,{xml:x,w:Y.width,h:Y.height})}p=!0}}catch(ea){}p||(a.spinner.stop(),a.handleError({message:mxResources.get("errorLoadingFile")}))}}catch(ea){}return null}function n(a){a.dataTransfer.dropEffect=null!=y?"move":"copy";a.stopPropagation();a.preventDefault()}function q(b){b.stopPropagation();b.preventDefault(); B=!1;x=k(b);if(null!=y)null!=x&&x<u.children.length?(f.splice(x>y?x-1:x,0,f.splice(y,1)[0]),u.insertBefore(u.children[y],u.children[x])):(f.push(f.splice(y,1)[0]),u.appendChild(u.children[y]));else if(0<b.dataTransfer.files.length)a.importFiles(b.dataTransfer.files,0,0,a.maxImageSize,D(b));else if(0<=mxUtils.indexOf(b.dataTransfer.types,"text/uri-list")){var c=decodeURIComponent(b.dataTransfer.getData("text/uri-list"));(/(\.jpg)($|\?)/i.test(c)||/(\.png)($|\?)/i.test(c)||/(\.gif)($|\?)/i.test(c)|| /(\.svg)($|\?)/i.test(c))&&a.loadImage(c,function(a){m(c,null,0,0,a.width,a.height);u.scrollTop=u.scrollHeight})}b.stopPropagation();b.preventDefault()}var f=[];b=document.createElement("div");b.style.height="100%";var l=document.createElement("div");l.style.whiteSpace="nowrap";l.style.height="40px";b.appendChild(l);mxUtils.write(l,mxResources.get("filename")+":");null==c&&(c=a.defaultLibraryName+".xml");var p=document.createElement("input");p.setAttribute("value",c);p.style.marginRight="20px";p.style.marginLeft= "10px";p.style.width="500px";null==g||g.isRenamable()||p.setAttribute("disabled","true");this.init=function(){if(null==g||g.isRenamable())p.focus(),mxClient.IS_GC||mxClient.IS_FF||5<=document.documentMode||mxClient.IS_QUIRKS?p.select():document.execCommand("selectAll",!1,null)};l.appendChild(p);var u=document.createElement("div");u.style.borderWidth="1px 0px 1px 0px";u.style.borderColor="#d3d3d3";u.style.borderStyle="solid";u.style.marginTop="6px";u.style.overflow="auto";u.style.height="340px";u.style.backgroundPosition= @@ -8394,10 +8055,10 @@ mxResources.get("showAll",null,"+ Show all")+'</div></div></div><div class="geTe mxResources.get("allDiagrams",null,"All diagrams")+'</span></div><div class="geTempDlgSpacer"> </div><div class="geTempDlgRadioBtn geTempDlgRadioBtnSmall geTempDlgRadioBtnActive" data-id="tilesBtn"><img src="/images/tiles-sel.svg" class="geTempDlgTilesBtnImg"></div><div class="geTempDlgRadioBtn geTempDlgRadioBtnSmall" data-id="listBtn"><img src="/images/list.svg" class="geTempDlgListBtnImg"></div></div></div><div class="geTempDlgDiagramsTiles"></div></div></div><br style="clear:both;"/><div class="geTempDlgFooter"><span class="geTempDlgLinkToDiagram geTempDlgLinkToDiagramHint">🛈 '+ mxResources.get("linkToDiagramHint",null,"Add a link to this diagram. The diagram can only be edited from the page that owns it.")+'</span><button class="geTempDlgLinkToDiagram geTempDlgLinkToDiagramBtn">'+mxResources.get("linkToDiagram",null,"Link to Diagram")+'</button><div class="geTempDlgCreateBtn">'+mxResources.get("create",null,"Create")+'</div><div class="geTempDlgCancelBtn">'+mxResources.get("cancel",null,"Cancel")+"</div></div>",c=document.createElement("div");c.innerHTML=a;c.className="geTemplateDlg"; var a=window.innerWidth,b=window.innerHeight,d=987,g=712;.9*a<d&&(d=Math.max(.9*a,600),c.style.width=d+"px");.9*b<g&&(g=Math.max(.9*b,300),c.style.height=g+"px");this.width=d;this.height=g;this.container=c}; -TemplatesDialog.prototype.init=function(a,c,b,d,g,e,k,m,n,q){function f(){null!=F&&(F.style.fontWeight="normal",F.style.textDecoration="none",F=null)}function l(a,b,c,f,d,l,p){if(-1<a.className.indexOf("geTempDlgRadioBtnActive"))return!1;a.className+=" geTempDlgRadioBtnActive";D.querySelector(".geTempDlgRadioBtn[data-id="+f+"]").className="geTempDlgRadioBtn "+(p?"geTempDlgRadioBtnLarge":"geTempDlgRadioBtnSmall");D.querySelector("."+b).src="/images/"+c+"-sel.svg";D.querySelector("."+d).src="/images/"+ +TemplatesDialog.prototype.init=function(a,c,b,d,g,e,k,m,n,q){function f(){null!=E&&(E.style.fontWeight="normal",E.style.textDecoration="none",E=null)}function l(a,b,c,f,d,l,p){if(-1<a.className.indexOf("geTempDlgRadioBtnActive"))return!1;a.className+=" geTempDlgRadioBtnActive";D.querySelector(".geTempDlgRadioBtn[data-id="+f+"]").className="geTempDlgRadioBtn "+(p?"geTempDlgRadioBtnLarge":"geTempDlgRadioBtnSmall");D.querySelector("."+b).src="/images/"+c+"-sel.svg";D.querySelector("."+d).src="/images/"+ l+".svg";return!0}function p(a){function b(a){Z.removeChild(f);D.removeChild(c);Z.scrollTop=l}a=a.prevImgUrl||a.imgUrl||TEMPLATE_PATH+"/"+a.url.substring(0,a.url.length-4)+".png";var c=document.createElement("div");c.className="geTempDlgDialogMask";D.appendChild(c);var f=document.createElement("div");f.className="geTempDlgDiagramPreviewBox";var d=document.createElement("img");d.src=a;f.appendChild(d);a=document.createElement("img");a.src="/images/close.png";a.className="geTempDlgPreviewCloseBtn"; -a.setAttribute("title",mxResources.get("close"));f.appendChild(a);var l=Z.scrollTop;mxEvent.addListener(a,"click",b);mxEvent.addListener(c,"click",b);Z.appendChild(f);Z.scrollTop=0;f.style.lineHeight=f.clientHeight+"px"}function u(a,b,c){if(null!=G){for(var f=G.className.split(" "),d=0;d<f.length;d++)if(-1<f[d].indexOf("Active")){f.splice(d,1);break}G.className=f.join(" ")}null!=a?(G=a,G.className+=" "+b,H=c,V.className="geTempDlgCreateBtn"):(H=G=null,V.className="geTempDlgCreateBtn geTempDlgCreateBtnDisabled")} -function v(b){if(null!=H){var f=H;H=null;V.className="geTempDlgCreateBtn geTempDlgCreateBtnDisabled geTempDlgCreateBtnBusy";f.isExternal?(1==b?q(f.url,f,"nameInput.value"):n(f.url,f,"nameInput.value"),a.hideDialog(!0)):mxUtils.get(TEMPLATE_PATH+"/"+f.url,mxUtils.bind(this,function(b){200<=b.getStatus()&&299>=b.getStatus()&&(c(b.getText(),"nameInput.value"),a.hideDialog(!0))}))}}function t(a){a=a?"":"none";for(var b=D.querySelectorAll(".geTempDlgLinkToDiagram"),c=0;c<b.length;c++)b[c].style.display= +a.setAttribute("title",mxResources.get("close"));f.appendChild(a);var l=Z.scrollTop;mxEvent.addListener(a,"click",b);mxEvent.addListener(c,"click",b);Z.appendChild(f);Z.scrollTop=0;f.style.lineHeight=f.clientHeight+"px"}function u(a,b,c){if(null!=G){for(var f=G.className.split(" "),d=0;d<f.length;d++)if(-1<f[d].indexOf("Active")){f.splice(d,1);break}G.className=f.join(" ")}null!=a?(G=a,G.className+=" "+b,I=c,V.className="geTempDlgCreateBtn"):(I=G=null,V.className="geTempDlgCreateBtn geTempDlgCreateBtnDisabled")} +function v(b){if(null!=I){var f=I;I=null;V.className="geTempDlgCreateBtn geTempDlgCreateBtnDisabled geTempDlgCreateBtnBusy";f.isExternal?(1==b?q(f.url,f,"nameInput.value"):n(f.url,f,"nameInput.value"),a.hideDialog(!0)):mxUtils.get(TEMPLATE_PATH+"/"+f.url,mxUtils.bind(this,function(b){200<=b.getStatus()&&299>=b.getStatus()&&(c(b.getText(),"nameInput.value"),a.hideDialog(!0))}))}}function t(a){a=a?"":"none";for(var b=D.querySelectorAll(".geTempDlgLinkToDiagram"),c=0;c<b.length;c++)b[c].style.display= a}function y(a,b,c){function f(){V.innerHTML=b?mxUtils.htmlEntities(mxResources.get("create")):mxUtils.htmlEntities(mxResources.get("copy"));t(!b)}T.innerHTML="";u();M=a;var d=null;if(c){d=document.createElement("table");d.className="geTempDlgDiagramsListGrid";var l=document.createElement("tr"),e=document.createElement("th");e.style.width="50%";e.innerHTML=mxUtils.htmlEntities(mxResources.get("diagram",null,"Diagram"));l.appendChild(e);e=document.createElement("th");e.style.width="25%";e.innerHTML= mxUtils.htmlEntities(mxResources.get("changedBy",null,"Changed By"));l.appendChild(e);e=document.createElement("th");e.style.width="25%";e.innerHTML=mxUtils.htmlEntities(mxResources.get("lastModifiedOn",null,"Last modified on"));l.appendChild(e);d.appendChild(l);T.appendChild(d)}for(l=0;l<a.length;l++){a[l].isExternal=!b;var k=a[l].url,e=mxUtils.htmlEntities(a[l].title),g=a[l].tooltip||a[l].title,z=a[l].imgUrl,A=mxUtils.htmlEntities(a[l].changedBy||""),B=mxUtils.htmlEntities(a[l].lastModifiedOn|| "");z||(z=TEMPLATE_PATH+"/"+k.substring(0,k.length-4)+".png");k=c?50:15;null!=e&&e.length>k&&(e=e.substring(0,k)+"…");if(c){var m=document.createElement("tr"),z=document.createElement("td"),n=document.createElement("img");n.src="/images/icon-search.svg";n.className="geTempDlgDiagramListPreviewBtn";n.setAttribute("title",mxResources.get("preview"));z.appendChild(n);g=document.createElement("span");g.className="geTempDlgDiagramTitle";g.innerHTML=e;z.appendChild(g);m.appendChild(z);z=document.createElement("td"); @@ -8406,15 +8067,15 @@ a[l]));A=document.createElement("div");A.className="geTempDlgDiagramTileImg geTe n=document.createElement("img");n.src="/images/icon-search.svg";n.className="geTempDlgDiagramPreviewBtn";n.setAttribute("title",mxResources.get("preview"));y.appendChild(n);(function(a,b){mxEvent.addListener(y,"click",function(){G!=b&&(f(),u(b,"geTempDlgDiagramTileActive",a))});mxEvent.addListener(y,"dblclick",v);mxEvent.addListener(n,"click",function(){p(a)})})(a[l],y);T.appendChild(y)}}}function x(a,b){da.innerHTML="";u();for(var c=!b&&5<a.length?5:a.length,f=0;f<c;f++){var d=a[f];d.isCategory= !0;var l=document.createElement("div"),p=mxResources.get(d.title);null==p&&(p=d.title.substring(0,1).toUpperCase()+d.title.substring(1));l.className="geTempDlgNewDiagramCatItem";l.setAttribute("title",p);p=mxUtils.htmlEntities(p);15<p.length&&(p=p.substring(0,15)+"…");null==G&&(V.innerHTML=mxUtils.htmlEntities(mxResources.get("create")),t(),u(l,"geTempDlgNewDiagramCatItemActive",d));var e=document.createElement("div");e.className="geTempDlgNewDiagramCatItemImg";var k=document.createElement("img"); k.src=NEW_DIAGRAM_CATS_PATH+"/"+d.img;e.appendChild(k);l.appendChild(e);e=document.createElement("div");e.className="geTempDlgNewDiagramCatItemLbl";e.innerHTML=p;l.appendChild(e);da.appendChild(l);(function(a,b){mxEvent.addListener(l,"click",function(){G!=b&&(V.innerHTML=mxUtils.htmlEntities(mxResources.get("create")),t(),u(b,"geTempDlgNewDiagramCatItemActive",a))});mxEvent.addListener(l,"dblclick",v)})(d,l)}X.style.display=5>a.length?"none":""}function C(a){var b=D.querySelector(".geTemplatesList"), -c;for(c in a){var f=document.createElement("div"),d=mxResources.get(c),l=a[c];null==d&&(d=c.substring(0,1).toUpperCase()+c.substring(1));f.className="geTemplateCatLink";f.setAttribute("title",d+" ("+l.length+")");d=mxUtils.htmlEntities(d);15<d.length&&(d=d.substring(0,15)+"…");f.innerHTML=d+" ("+l.length+")";b.appendChild(f);(function(b,c,d){mxEvent.addListener(f,"click",function(){F!=d&&(null!=F?(F.style.fontWeight="normal",F.style.textDecoration="none"):(fa.style.display="none",ha.style.minHeight= -"100%"),F=d,F.style.fontWeight="bold",F.style.textDecoration="underline",Z.scrollTop=0,z&&(J=!0),L.innerHTML=c,W.style.display="none",y(a[b],!0))})})(c,d,f)}}function A(a){k&&(Z.scrollTop=0,T.innerHTML="",ba.spin(T),J=!1,z=!0,L.innerHTML=mxUtils.htmlEntities(mxResources.get("recentDiag",null,"Recent Diagrams")),R=null,k(N,a?null:e))}function B(a){f();Z.scrollTop=0;T.innerHTML="";ba.spin(T);J=!1;z=!0;ca=null;L.innerHTML=mxUtils.htmlEntities(mxResources.get("searchResults",null,"Search Results"))+' "'+ -mxUtils.htmlEntities(a)+'"';m(a,N,E?null:e);R=a}d=null!=d?d:TEMPLATE_PATH+"/index.xml";g=null!=g?g:NEW_DIAGRAM_CATS_PATH+"/index.xml";var D=this.container,z=!1,J=!1,F=null,G=null,H=null,I=!1,E=!0,K=!1,M=[],R,X=D.querySelector(".geTempDlgShowAllBtn"),T=D.querySelector(".geTempDlgDiagramsTiles"),L=D.querySelector(".geTempDlgDiagramsListTitle"),W=D.querySelector(".geTempDlgDiagramsListBtns"),Z=D.querySelector(".geTempDlgContent"),ha=D.querySelector(".geTempDlgDiagramsList"),fa=D.querySelector(".geTempDlgNewDiagramCat"), -da=D.querySelector(".geTempDlgNewDiagramCatList"),V=D.querySelector(".geTempDlgCreateBtn"),ba=new Spinner({lines:12,length:10,width:5,radius:10,rotate:0,color:"#000",speed:1.5,trail:60,shadow:!1,hwaccel:!1,top:"50px",zIndex:2E9});mxEvent.addListener(D.querySelector(".geTempDlgNewDiagramlbl"),"click",function(){f();fa.style.display="";ha.style.minHeight="calc(100% - 280px)";A(E)});mxEvent.addListener(D.querySelector(".geTempDlgRadioBtn[data-id=allDiagramsBtn]"),"click",function(){l(this,"geTempDlgAllDiagramsBtnImg", -"all-diagrams","myDiagramsBtn","geTempDlgMyDiagramsBtnImg","my-diagrams",!0)&&(E=!0,null==R?A(E):B(R))});mxEvent.addListener(D.querySelector(".geTempDlgRadioBtn[data-id=myDiagramsBtn]"),"click",function(){l(this,"geTempDlgMyDiagramsBtnImg","my-diagrams","allDiagramsBtn","geTempDlgAllDiagramsBtnImg","all-diagrams",!0)&&(E=!1,null==R?A(E):B(R))});mxEvent.addListener(D.querySelector(".geTempDlgRadioBtn[data-id=listBtn]"),"click",function(){l(this,"geTempDlgListBtnImg","list","tilesBtn","geTempDlgTilesBtnImg", -"tiles",!1)&&(K=!0,y(M,!1,K))});mxEvent.addListener(D.querySelector(".geTempDlgRadioBtn[data-id=tilesBtn]"),"click",function(){l(this,"geTempDlgTilesBtnImg","tiles","listBtn","geTempDlgListBtnImg","list",!1)&&(K=!1,y(M,!1,K))});mxEvent.addListener(X,"click",function(){I?(fa.style.height="280px",da.style.height="190px",X.innerHTML=mxUtils.htmlEntities(mxResources.get("showAll",null,"+ Show all")),x(ea)):(fa.style.height="440px",da.style.height="355px",X.innerHTML=mxUtils.htmlEntities(mxResources.get("showLess", -null,"- Show less")),x(ea,!0));I=!I});var Q=!1,aa=!1,Y={},ea=[],P=1;mxUtils.get(d,function(a){if(!Q){Q=!0;for(a=a.getXml().documentElement.firstChild;null!=a;){if("undefined"!==typeof a.getAttribute){var b=a.getAttribute("url");if(null!=b){var c=b.indexOf("/"),b=b.substring(0,c),c=Y[b];null==c&&(P++,c=[],Y[b]=c);c.push({url:a.getAttribute("url"),libs:a.getAttribute("libs"),clibs:a.getAttribute("clibs"),title:a.getAttribute("title"),tooltip:a.getAttribute("url"),imgUrl:a.getAttribute("imgUrl")})}}a= +c;for(c in a){var f=document.createElement("div"),d=mxResources.get(c),l=a[c];null==d&&(d=c.substring(0,1).toUpperCase()+c.substring(1));f.className="geTemplateCatLink";f.setAttribute("title",d+" ("+l.length+")");d=mxUtils.htmlEntities(d);15<d.length&&(d=d.substring(0,15)+"…");f.innerHTML=d+" ("+l.length+")";b.appendChild(f);(function(b,c,d){mxEvent.addListener(f,"click",function(){E!=d&&(null!=E?(E.style.fontWeight="normal",E.style.textDecoration="none"):(fa.style.display="none",ha.style.minHeight= +"100%"),E=d,E.style.fontWeight="bold",E.style.textDecoration="underline",Z.scrollTop=0,z&&(J=!0),L.innerHTML=c,W.style.display="none",y(a[b],!0))})})(c,d,f)}}function A(a){k&&(Z.scrollTop=0,T.innerHTML="",ba.spin(T),J=!1,z=!0,L.innerHTML=mxUtils.htmlEntities(mxResources.get("recentDiag",null,"Recent Diagrams")),R=null,k(N,a?null:e))}function B(a){f();Z.scrollTop=0;T.innerHTML="";ba.spin(T);J=!1;z=!0;ca=null;L.innerHTML=mxUtils.htmlEntities(mxResources.get("searchResults",null,"Search Results"))+' "'+ +mxUtils.htmlEntities(a)+'"';m(a,N,F?null:e);R=a}d=null!=d?d:TEMPLATE_PATH+"/index.xml";g=null!=g?g:NEW_DIAGRAM_CATS_PATH+"/index.xml";var D=this.container,z=!1,J=!1,E=null,G=null,I=null,H=!1,F=!0,K=!1,M=[],R,X=D.querySelector(".geTempDlgShowAllBtn"),T=D.querySelector(".geTempDlgDiagramsTiles"),L=D.querySelector(".geTempDlgDiagramsListTitle"),W=D.querySelector(".geTempDlgDiagramsListBtns"),Z=D.querySelector(".geTempDlgContent"),ha=D.querySelector(".geTempDlgDiagramsList"),fa=D.querySelector(".geTempDlgNewDiagramCat"), +da=D.querySelector(".geTempDlgNewDiagramCatList"),V=D.querySelector(".geTempDlgCreateBtn"),ba=new Spinner({lines:12,length:10,width:5,radius:10,rotate:0,color:"#000",speed:1.5,trail:60,shadow:!1,hwaccel:!1,top:"50px",zIndex:2E9});mxEvent.addListener(D.querySelector(".geTempDlgNewDiagramlbl"),"click",function(){f();fa.style.display="";ha.style.minHeight="calc(100% - 280px)";A(F)});mxEvent.addListener(D.querySelector(".geTempDlgRadioBtn[data-id=allDiagramsBtn]"),"click",function(){l(this,"geTempDlgAllDiagramsBtnImg", +"all-diagrams","myDiagramsBtn","geTempDlgMyDiagramsBtnImg","my-diagrams",!0)&&(F=!0,null==R?A(F):B(R))});mxEvent.addListener(D.querySelector(".geTempDlgRadioBtn[data-id=myDiagramsBtn]"),"click",function(){l(this,"geTempDlgMyDiagramsBtnImg","my-diagrams","allDiagramsBtn","geTempDlgAllDiagramsBtnImg","all-diagrams",!0)&&(F=!1,null==R?A(F):B(R))});mxEvent.addListener(D.querySelector(".geTempDlgRadioBtn[data-id=listBtn]"),"click",function(){l(this,"geTempDlgListBtnImg","list","tilesBtn","geTempDlgTilesBtnImg", +"tiles",!1)&&(K=!0,y(M,!1,K))});mxEvent.addListener(D.querySelector(".geTempDlgRadioBtn[data-id=tilesBtn]"),"click",function(){l(this,"geTempDlgTilesBtnImg","tiles","listBtn","geTempDlgListBtnImg","list",!1)&&(K=!1,y(M,!1,K))});mxEvent.addListener(X,"click",function(){H?(fa.style.height="280px",da.style.height="190px",X.innerHTML=mxUtils.htmlEntities(mxResources.get("showAll",null,"+ Show all")),x(ea)):(fa.style.height="440px",da.style.height="355px",X.innerHTML=mxUtils.htmlEntities(mxResources.get("showLess", +null,"- Show less")),x(ea,!0));H=!H});var Q=!1,aa=!1,Y={},ea=[],P=1;mxUtils.get(d,function(a){if(!Q){Q=!0;for(a=a.getXml().documentElement.firstChild;null!=a;){if("undefined"!==typeof a.getAttribute){var b=a.getAttribute("url");if(null!=b){var c=b.indexOf("/"),b=b.substring(0,c),c=Y[b];null==c&&(P++,c=[],Y[b]=c);c.push({url:a.getAttribute("url"),libs:a.getAttribute("libs"),clibs:a.getAttribute("clibs"),title:a.getAttribute("title"),tooltip:a.getAttribute("url"),imgUrl:a.getAttribute("imgUrl")})}}a= a.nextSibling}C(Y)}});mxUtils.get(g,function(a){if(!aa){aa=!0;for(a=a.getXml().documentElement.firstChild;null!=a;)"undefined"!==typeof a.getAttribute&&null!=a.getAttribute("title")&&ea.push({img:a.getAttribute("img"),libs:a.getAttribute("libs"),clibs:a.getAttribute("clibs"),title:a.getAttribute("title")}),a=a.nextSibling;x(ea)}});var N=function(a,b){W.style.display="";ba.stop();z=!1;J?J=!1:b?T.innerHTML=b:0==a.length?T.innerHTML=mxUtils.htmlEntities(mxResources.get("noDiagrams",null,"No Diagrams Found")): -y(a,!1,K)};A(E);var ca=null;m&&mxEvent.addListener(D.querySelector(".geTempDlgSearchBox"),"keyup",function(a){var b=this;null!=ca&&clearTimeout(ca);13==a.keyCode?B(b.value):ca=setTimeout(function(){B(b.value)},500)});mxEvent.addListener(V,"click",v);mxEvent.addListener(D.querySelector(".geTempDlgLinkToDiagramBtn"),"click",function(a){v(!0)});mxEvent.addListener(D.querySelector(".geTempDlgCancelBtn"),"click",function(){null!=b&&b();a.hideDialog(!0)})}; +y(a,!1,K)};A(F);var ca=null;m&&mxEvent.addListener(D.querySelector(".geTempDlgSearchBox"),"keyup",function(a){var b=this;null!=ca&&clearTimeout(ca);13==a.keyCode?B(b.value):ca=setTimeout(function(){B(b.value)},500)});mxEvent.addListener(V,"click",v);mxEvent.addListener(D.querySelector(".geTempDlgLinkToDiagramBtn"),"click",function(a){v(!0)});mxEvent.addListener(D.querySelector(".geTempDlgCancelBtn"),"click",function(){null!=b&&b();a.hideDialog(!0)})}; var BtnDialog=function(a,c,b,d){var g=document.createElement("div");g.style.textAlign="center";var e=document.createElement("p");e.style.fontSize="16pt";e.style.padding="0px";e.style.margin="0px";e.style.color="gray";mxUtils.write(e,mxResources.get("done"));var k="Unknown",m=document.createElement("img");m.setAttribute("border","0");m.setAttribute("align","absmiddle");m.style.marginRight="10px";c==a.drive?(k=mxResources.get("googleDrive"),m.src=IMAGE_PATH+"/google-drive-logo-white.svg"):c==a.dropbox? (k=mxResources.get("dropbox"),m.src=IMAGE_PATH+"/dropbox-logo-white.svg"):c==a.oneDrive?(k=mxResources.get("oneDrive"),m.src=IMAGE_PATH+"/onedrive-logo-white.svg"):c==a.gitHub?(k=mxResources.get("github"),m.src=IMAGE_PATH+"/github-logo-white.svg"):c==a.gitLab?(k=mxResources.get("gitlab"),m.src=IMAGE_PATH+"/gitlab-logo.svg"):c==a.trello&&(k=mxResources.get("trello"),m.src=IMAGE_PATH+"/trello-logo-white.svg");a=document.createElement("p");mxUtils.write(a,mxResources.get("authorizedIn",[k],"You are now authorized in {1}")); b=mxUtils.button(b,d);b.insertBefore(m,b.firstChild);b.style.marginTop="6px";b.className="geBigButton";b.style.fontSize="18px";b.style.padding="14px";g.appendChild(e);g.appendChild(a);g.appendChild(b);this.container=g};(function(){Editor.prototype.appName="draw.io";Editor.prototype.fileExtensions=[{ext:"html",title:"filetypeHtml"},{ext:"png",title:"filetypePng"},{ext:"svg",title:"filetypeSvg"}];Editor.closeImage=mxClient.IS_SVG?"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAZCAMAAADzN3VRAAAApVBMVEUAAAD////k5OT///8AAAB1dXXMzMz9/f39/f37+/v5+fn+/v7///9iYmJaWlqFhYWnp6ejo6OHh4f////////////////7+/v5+fnx8fH///8AAAD///8bGxv7+/v5+fkoKCghISFDQ0MYGBjh4eHY2Njb29tQUFBvb29HR0c/Pz82NjYrKyu/v78SEhLu7u7s7OzV1dVVVVU7OzsVFRXAv78QEBBzqehMAAAAG3RSTlMAA/7p/vz5xZlrTiPL/v78+/v7+OXd2TYQDs8L70ZbAAABKUlEQVQoz3VS13LCMBBUXHChd8iukDslQChJ/v/TchaG4cXS+OSb1c7trU7V60OpdRz2ZtNZL4zXNlcN8BEtSG6+NxIXkeRPoBuQ1cjvZ31/VJFB10ISli6diYfH8iYO3WUNCcNlB0gTrXOtkxTo0O1aKKiBBMhhv2MNBQKoiA5wxlZo0JDzD3AYKbWacyj3fs01wxey0pyEP+R8pWKWXoqtIZ0DDg5pbki9krEKOa6LVDQsdoXEsi46Zqh69KFz7B1u7Hb2yDV8firXDKBlZ4UFiswKGRhXTS93/ECK7yxnJ3+S3y/ThpO+cfSD017nqa18aasabU0/t7d+tk0/1oMEJ1NaD67iwdF68OabFSLn+eHb0+vjy+uk8br9fdrftH0O2menfd7+AQfYM/lNjoDHAAAAAElFTkSuQmCC": @@ -8444,27 +8105,27 @@ Editor.extractGraphModel=function(a,b){if(null!=a&&"undefined"!==typeof pako){va (f=mxUtils.parseXml(c),a=f.documentElement))))}if(null!=a&&"svg"==a.nodeName)if(c=a.getAttribute("content"),null!=c&&"<"!=c.charAt(0)&&"%"!=c.charAt(0)&&(c=unescape(window.atob?atob(c):Base64.decode(cont,c))),null!=c&&"%"==c.charAt(0)&&(c=decodeURIComponent(c)),null!=c&&0<c.length)a=mxUtils.parseXml(c).documentElement;else throw{message:mxResources.get("notADiagramFile")};null==a||b||(f=null,"diagram"==a.nodeName?f=a:"mxfile"==a.nodeName&&(c=a.getElementsByTagName("diagram"),0<c.length&&(f=c[Math.max(0, Math.min(c.length-1,urlParams.page||0))])),null!=f&&(a=Editor.parseDiagramNode(f)));null==a||"mxGraphModel"==a.nodeName||b&&"mxfile"==a.nodeName||(a=null);return a};Editor.parseDiagramNode=function(a){var b=mxUtils.trim(mxUtils.getTextContent(a)),c=null;0<b.length?(a=Graph.decompress(b),null!=a&&0<a.length&&(c=mxUtils.parseXml(a).documentElement)):(a=mxUtils.getChildNodes(a),0<a.length&&(c=mxUtils.createXmlDocument(),c.appendChild(c.importNode(a[0],!0)),c=c.documentElement));return c};Editor.getDiagramNodeXml= function(a){var b=mxUtils.getTextContent(a),c=null;0<b.length?c=Graph.decompress(b):null!=a.firstChild&&(c=mxUtils.getXml(a.firstChild));return c};Editor.extractGraphModelFromPng=function(a){var b=null;try{var c=a.substring(a.indexOf(",")+1),f=window.atob&&!mxClient.IS_SF?atob(c):Base64.decode(c,!0);EditorUi.parsePng(f,mxUtils.bind(this,function(a,c,d){a=f.substring(a+8,a+8+d);"zTXt"==c?(d=a.indexOf(String.fromCharCode(0)),"mxGraphModel"==a.substring(0,d)&&(a=Graph.bytesToString(pako.inflateRaw(a.substring(d+ -2))).replace(/\+/g," "),null!=a&&0<a.length&&(b=a))):"tEXt"==c&&(a=a.split(String.fromCharCode(0)),1<a.length&&("mxGraphModel"==a[0]||"mxfile"==a[0])&&(b=a[1]));if(null!=b||"IDAT"==c)return!0}))}catch(H){}null!=b&&"%"==b.charAt(0)&&(b=decodeURIComponent(b));null!=b&&"%"==b.charAt(0)&&(b=decodeURIComponent(b));return b};Editor.shadowOptionEnabled=!0;Editor.config=null;Editor.configVersion=null;Editor.configure=function(a,b){if(null!=a){Editor.config=a;Editor.configVersion=a.version;Menus.prototype.defaultFonts= +2))).replace(/\+/g," "),null!=a&&0<a.length&&(b=a))):"tEXt"==c&&(a=a.split(String.fromCharCode(0)),1<a.length&&("mxGraphModel"==a[0]||"mxfile"==a[0])&&(b=a[1]));if(null!=b||"IDAT"==c)return!0}))}catch(I){}null!=b&&"%"==b.charAt(0)&&(b=decodeURIComponent(b));null!=b&&"%"==b.charAt(0)&&(b=decodeURIComponent(b));return b};Editor.shadowOptionEnabled=!0;Editor.config=null;Editor.configVersion=null;Editor.configure=function(a,b){if(null!=a){Editor.config=a;Editor.configVersion=a.version;Menus.prototype.defaultFonts= a.defaultFonts||Menus.prototype.defaultFonts;ColorDialog.prototype.presetColors=a.presetColors||ColorDialog.prototype.presetColors;ColorDialog.prototype.defaultColors=a.defaultColors||ColorDialog.prototype.defaultColors;StyleFormatPanel.prototype.defaultColorSchemes=a.defaultColorSchemes||StyleFormatPanel.prototype.defaultColorSchemes;Graph.prototype.defaultEdgeLength=a.defaultEdgeLength||Graph.prototype.defaultEdgeLength;DrawioFile.prototype.autosaveDelay=a.autosaveDelay||DrawioFile.prototype.autosaveDelay; -null!=a.templateFile&&(EditorUi.templateFile=a.templateFile);a.customFonts&&(Menus.prototype.defaultFonts=a.customFonts.concat(Menus.prototype.defaultFonts));a.customPresetColors&&(ColorDialog.prototype.presetColors=a.customPresetColors.concat(ColorDialog.prototype.presetColors));null!=a.customColorSchemes&&(StyleFormatPanel.prototype.defaultColorSchemes=a.customColorSchemes.concat(StyleFormatPanel.prototype.defaultColorSchemes));if(null!=a.css){var c=document.createElement("style");c.setAttribute("type", -"text/css");c.appendChild(document.createTextNode(a.css));var f=document.getElementsByTagName("script")[0];f.parentNode.insertBefore(c,f)}null!=a.libraries&&(Sidebar.prototype.customEntries=a.libraries);null!=a.enabledLibraries&&(Sidebar.prototype.enabledLibraries=a.enabledLibraries);null!=a.defaultLibraries&&(Sidebar.prototype.defaultEntries=a.defaultLibraries);null!=a.defaultCustomLibraries&&(Editor.defaultCustomLibraries=a.defaultCustomLibraries);null!=a.enableCustomLibraries&&(Editor.enableCustomLibraries= -a.enableCustomLibraries);null!=a.defaultVertexStyle&&(Graph.prototype.defaultVertexStyle=a.defaultVertexStyle);null!=a.defaultEdgeStyle&&(Graph.prototype.defaultEdgeStyle=a.defaultEdgeStyle);a.emptyDiagramXml&&(EditorUi.prototype.emptyDiagramXml=a.emptyDiagramXml);a.thumbWidth&&(Sidebar.prototype.thumbWidth=a.thumbWidth);a.thumbHeight&&(Sidebar.prototype.thumbHeight=a.thumbHeight);a.emptyLibraryXml&&(EditorUi.prototype.emptyLibraryXml=a.emptyLibraryXml);a.sidebarWidth&&(EditorUi.prototype.hsplitPosition= -a.sidebarWidth);a.fontCss&&(c=document.createElement("style"),c.setAttribute("type","text/css"),c.appendChild(document.createTextNode(a.fontCss)),f=document.getElementsByTagName("script")[0],f.parentNode.insertBefore(c,f),Editor.prototype.fontCss=a.fontCss);if(null!=a.plugins&&!b)for(App.initPluginCallback(),c=0;c<a.plugins.length;c++)mxscript(a.plugins[c])}};Editor.GUID_ALPHABET="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ-_";Editor.GUID_LENGTH=20;Editor.guid=function(a){a=null!= -a?a:Editor.GUID_LENGTH;for(var b=[],c=0;c<a;c++)b.push(Editor.GUID_ALPHABET.charAt(Math.floor(Math.random()*Editor.GUID_ALPHABET.length)));return b.join("")};Editor.prototype.timeout=25E3;Editor.prototype.useForeignObjectForMath=!1;Editor.prototype.editButtonLink=null!=urlParams.edit?decodeURIComponent(urlParams.edit):null;var a=Editor.prototype.setGraphXml;Editor.prototype.setGraphXml=function(b){b=null!=b&&"mxlibrary"!=b.nodeName?this.extractGraphModel(b):null;if(null!=b){var c=b.getElementsByTagName("parsererror"); -if(null!=c&&0<c.length){var c=c[0],f=c.getElementsByTagName("div");null!=f&&0<f.length&&(c=f[0]);throw{message:mxUtils.getTextContent(c)};}if("mxGraphModel"==b.nodeName){c=b.getAttribute("style")||"default-style2";if("1"==urlParams.embed||null!=c&&""!=c)c!=this.graph.currentStyle&&(f=null!=this.graph.themes?this.graph.themes[c]:mxUtils.load(STYLE_PATH+"/"+c+".xml").getDocumentElement(),null!=f&&(d=new mxCodec(f.ownerDocument),d.decode(f,this.graph.getStylesheet())));else if(f=null!=this.graph.themes? -this.graph.themes["default-old"]:mxUtils.load(STYLE_PATH+"/default-old.xml").getDocumentElement(),null!=f){var d=new mxCodec(f.ownerDocument);d.decode(f,this.graph.getStylesheet())}this.graph.currentStyle=c;this.graph.mathEnabled="1"==urlParams.math||"1"==b.getAttribute("math");c=b.getAttribute("backgroundImage");null!=c?(c=JSON.parse(c),this.graph.setBackgroundImage(new mxImage(c.src,c.width,c.height))):this.graph.setBackgroundImage(null);mxClient.NO_FO=this.graph.mathEnabled&&!this.useForeignObjectForMath? -!0:this.originalNoForeignObject;this.graph.useCssTransforms=!mxClient.NO_FO&&this.isChromelessView()&&this.graph.isCssTransformsSupported();this.graph.updateCssTransform();this.graph.setShadowVisible("1"==b.getAttribute("shadow"),!1)}a.apply(this,arguments)}else throw{message:mxResources.get("notADiagramFile")||"Invalid data",toString:function(){return this.message}};};var c=Editor.prototype.getGraphXml;Editor.prototype.getGraphXml=function(a){a=null!=a?a:!0;var b=c.apply(this,arguments);null!=this.graph.currentStyle&& -"default-style2"!=this.graph.currentStyle&&b.setAttribute("style",this.graph.currentStyle);null!=this.graph.backgroundImage&&b.setAttribute("backgroundImage",JSON.stringify(this.graph.backgroundImage));b.setAttribute("math",this.graph.mathEnabled?"1":"0");b.setAttribute("shadow",this.graph.shadowVisible?"1":"0");return b};Editor.prototype.isDataSvg=function(a){try{var b=mxUtils.parseXml(a).documentElement.getAttribute("content");if(null!=b&&(null!=b&&"<"!=b.charAt(0)&&"%"!=b.charAt(0)&&(b=unescape(window.atob? -atob(b):Base64.decode(cont,b))),null!=b&&"%"==b.charAt(0)&&(b=decodeURIComponent(b)),null!=b&&0<b.length)){var c=mxUtils.parseXml(b).documentElement;return"mxfile"==c.nodeName||"mxGraphModel"==c.nodeName}}catch(G){}return!1};Editor.prototype.extractGraphModel=function(a,b){return Editor.extractGraphModel.apply(this,arguments)};var b=Editor.prototype.resetGraph;Editor.prototype.resetGraph=function(){this.graph.mathEnabled="1"==urlParams.math;this.graph.view.x0=null;this.graph.view.y0=null;mxClient.NO_FO= -this.graph.mathEnabled&&!this.useForeignObjectForMath?!0:this.originalNoForeignObject;this.graph.useCssTransforms=!mxClient.NO_FO&&this.isChromelessView()&&this.graph.isCssTransformsSupported();this.graph.updateCssTransform();b.apply(this,arguments)};var d=Editor.prototype.updateGraphComponents;Editor.prototype.updateGraphComponents=function(){d.apply(this,arguments);mxClient.NO_FO=this.graph.mathEnabled&&!this.useForeignObjectForMath&&null!=Editor.MathJaxRender?!0:this.originalNoForeignObject;this.graph.useCssTransforms= -!mxClient.NO_FO&&this.isChromelessView()&&this.graph.isCssTransformsSupported();this.graph.updateCssTransform()};Editor.initMath=function(a,b){a=null!=a?a:DRAW_MATH_URL+"/MathJax.js?config=TeX-MML-AM_HTMLorMML";Editor.mathJaxQueue=[];Editor.doMathJaxRender=function(a){window.setTimeout(function(){"hidden"!=a.style.visibility&&MathJax.Hub.Queue(["Typeset",MathJax.Hub,a])},0)};window.MathJax={skipStartupTypeset:!0,showMathMenu:!1,messageStyle:"none",AuthorInit:function(){MathJax.Hub.Config(b||{jax:["input/TeX", -"input/MathML","input/AsciiMath","output/HTML-CSS"],extensions:["tex2jax.js","mml2jax.js","asciimath2jax.js"],"HTML-CSS":{imageFont:null},TeX:{extensions:["AMSmath.js","AMSsymbols.js","noErrors.js","noUndefined.js"]},tex2jax:{ignoreClass:"mxCellEditor"},asciimath2jax:{ignoreClass:"mxCellEditor"}});MathJax.Hub.Register.StartupHook("Begin",function(){for(var a=0;a<Editor.mathJaxQueue.length;a++)Editor.doMathJaxRender(Editor.mathJaxQueue[a])})}};Editor.MathJaxRender=function(a){"undefined"!==typeof MathJax&& -"undefined"!==typeof MathJax.Hub?Editor.doMathJaxRender(a):Editor.mathJaxQueue.push(a)};Editor.MathJaxClear=function(){Editor.mathJaxQueue=[]};var c=Editor.prototype.init;Editor.prototype.init=function(){c.apply(this,arguments);this.graph.addListener(mxEvent.SIZE,mxUtils.bind(this,function(a,b){null!=this.graph.container&&this.graph.mathEnabled&&!this.graph.blockMathRender&&Editor.MathJaxRender(this.graph.container)}))};var f=document.getElementsByTagName("script");if(null!=f&&0<f.length){var d=document.createElement("script"); -d.type="text/javascript";d.src=a;f[0].parentNode.appendChild(d)}};Editor.prototype.csvToArray=function(a){if(!/^\s*(?:'[^'\\]*(?:\\[\S\s][^'\\]*)*'|"[^"\\]*(?:\\[\S\s][^"\\]*)*"|[^,'"\s\\]*(?:\s+[^,'"\s\\]+)*)\s*(?:,\s*(?:'[^'\\]*(?:\\[\S\s][^'\\]*)*'|"[^"\\]*(?:\\[\S\s][^"\\]*)*"|[^,'"\s\\]*(?:\s+[^,'"\s\\]+)*)\s*)*$/.test(a))return null;var b=[];a.replace(/(?!\s*$)\s*(?:'([^'\\]*(?:\\[\S\s][^'\\]*)*)'|"([^"\\]*(?:\\[\S\s][^"\\]*)*)"|([^,'"\s\\]*(?:\s+[^,'"\s\\]+)*))\s*(?:,|$)/g,function(a,c,f,d){void 0!== -c?b.push(c.replace(/\\'/g,"'")):void 0!==f?b.push(f.replace(/\\"/g,'"')):void 0!==d&&b.push(d);return""});/,\s*$/.test(a)&&b.push("");return b};Editor.prototype.isCorsEnabledForUrl=function(a){null!=urlParams.cors&&null==this.corsRegExp&&(this.corsRegExp=new RegExp(decodeURIComponent(urlParams.cors)));return null!=this.corsRegExp&&this.corsRegExp.test(a)||"https://raw.githubusercontent.com/"===a.substring(0,34)||"https://cdn.rawgit.com/"===a.substring(0,23)||"https://rawgit.com/"===a.substring(0, -19)||/^https?:\/\/[^\/]*\.blob.core.windows.net\//.test(a)||/^https?:\/\/[^\/]*\.iconfinder.com\//.test(a)||/^https?:\/\/[^\/]*\.draw\.io\/proxy/.test(a)||/^https?:\/\/[^\/]*\.github\.io\//.test(a)};Editor.prototype.createImageUrlConverter=function(){var a=new mxUrlConverter;a.updateBaseUrl();var b=a.convert,c=this;a.convert=function(f){if(null!=f){var d="http://"==f.substring(0,7)||"https://"==f.substring(0,8);d&&!navigator.onLine?f=EditorUi.prototype.svgBrokenImage.src:!d||f.substring(0,a.baseUrl.length)== -a.baseUrl||EditorUi.prototype.crossOriginImages&&c.isCorsEnabledForUrl(f)?"chrome-extension://"==f.substring(0,19)||mxClient.IS_CHROMEAPP||(f=b.apply(this,arguments)):f=PROXY_URL+"?url="+encodeURIComponent(f)}return f};return a};Editor.prototype.createSvgDataUri=function(a){return"data:image/svg+xml;base64,"+btoa(unescape(encodeURIComponent(a)))};Editor.prototype.convertImageToDataUri=function(a,b){if(/(\.svg)$/i.test(a))mxUtils.get(a,mxUtils.bind(this,function(a){b(this.createSvgDataUri(a.getText()))}), -function(){b(EditorUi.prototype.svgBrokenImage.src)});else{var c=new Image;EditorUi.prototype.crossOriginImages&&(c.crossOrigin="anonymous");c.onload=function(){var a=document.createElement("canvas"),f=a.getContext("2d");a.height=c.height;a.width=c.width;f.drawImage(c,0,0);try{b(a.toDataURL())}catch(I){b(EditorUi.prototype.svgBrokenImage.src)}};c.onerror=function(){b(EditorUi.prototype.svgBrokenImage.src)};c.src=a}};Editor.prototype.convertImages=function(a,b,c,f){null==f&&(f=this.createImageUrlConverter()); +null!=a.templateFile&&(EditorUi.templateFile=a.templateFile);null!=a.globalVars&&(Editor.globalVars=a.globalVars);a.customFonts&&(Menus.prototype.defaultFonts=a.customFonts.concat(Menus.prototype.defaultFonts));a.customPresetColors&&(ColorDialog.prototype.presetColors=a.customPresetColors.concat(ColorDialog.prototype.presetColors));null!=a.customColorSchemes&&(StyleFormatPanel.prototype.defaultColorSchemes=a.customColorSchemes.concat(StyleFormatPanel.prototype.defaultColorSchemes));if(null!=a.css){var c= +document.createElement("style");c.setAttribute("type","text/css");c.appendChild(document.createTextNode(a.css));var f=document.getElementsByTagName("script")[0];f.parentNode.insertBefore(c,f)}null!=a.libraries&&(Sidebar.prototype.customEntries=a.libraries);null!=a.enabledLibraries&&(Sidebar.prototype.enabledLibraries=a.enabledLibraries);null!=a.defaultLibraries&&(Sidebar.prototype.defaultEntries=a.defaultLibraries);null!=a.defaultCustomLibraries&&(Editor.defaultCustomLibraries=a.defaultCustomLibraries); +null!=a.enableCustomLibraries&&(Editor.enableCustomLibraries=a.enableCustomLibraries);null!=a.defaultVertexStyle&&(Graph.prototype.defaultVertexStyle=a.defaultVertexStyle);null!=a.defaultEdgeStyle&&(Graph.prototype.defaultEdgeStyle=a.defaultEdgeStyle);a.emptyDiagramXml&&(EditorUi.prototype.emptyDiagramXml=a.emptyDiagramXml);a.thumbWidth&&(Sidebar.prototype.thumbWidth=a.thumbWidth);a.thumbHeight&&(Sidebar.prototype.thumbHeight=a.thumbHeight);a.emptyLibraryXml&&(EditorUi.prototype.emptyLibraryXml=a.emptyLibraryXml); +a.sidebarWidth&&(EditorUi.prototype.hsplitPosition=a.sidebarWidth);a.fontCss&&(c=document.createElement("style"),c.setAttribute("type","text/css"),c.appendChild(document.createTextNode(a.fontCss)),f=document.getElementsByTagName("script")[0],f.parentNode.insertBefore(c,f),Editor.prototype.fontCss=a.fontCss);if(null!=a.plugins&&!b)for(App.initPluginCallback(),c=0;c<a.plugins.length;c++)mxscript(a.plugins[c])}};Editor.GUID_ALPHABET="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ-_"; +Editor.GUID_LENGTH=20;Editor.guid=function(a){a=null!=a?a:Editor.GUID_LENGTH;for(var b=[],c=0;c<a;c++)b.push(Editor.GUID_ALPHABET.charAt(Math.floor(Math.random()*Editor.GUID_ALPHABET.length)));return b.join("")};Editor.prototype.timeout=25E3;Editor.prototype.useForeignObjectForMath=!1;Editor.prototype.editButtonLink=null!=urlParams.edit?decodeURIComponent(urlParams.edit):null;var a=Editor.prototype.setGraphXml;Editor.prototype.setGraphXml=function(b){b=null!=b&&"mxlibrary"!=b.nodeName?this.extractGraphModel(b): +null;if(null!=b){var c=b.getElementsByTagName("parsererror");if(null!=c&&0<c.length){var c=c[0],f=c.getElementsByTagName("div");null!=f&&0<f.length&&(c=f[0]);throw{message:mxUtils.getTextContent(c)};}if("mxGraphModel"==b.nodeName){c=b.getAttribute("style")||"default-style2";if("1"==urlParams.embed||null!=c&&""!=c)c!=this.graph.currentStyle&&(f=null!=this.graph.themes?this.graph.themes[c]:mxUtils.load(STYLE_PATH+"/"+c+".xml").getDocumentElement(),null!=f&&(d=new mxCodec(f.ownerDocument),d.decode(f, +this.graph.getStylesheet())));else if(f=null!=this.graph.themes?this.graph.themes["default-old"]:mxUtils.load(STYLE_PATH+"/default-old.xml").getDocumentElement(),null!=f){var d=new mxCodec(f.ownerDocument);d.decode(f,this.graph.getStylesheet())}this.graph.currentStyle=c;this.graph.mathEnabled="1"==urlParams.math||"1"==b.getAttribute("math");c=b.getAttribute("backgroundImage");null!=c?(c=JSON.parse(c),this.graph.setBackgroundImage(new mxImage(c.src,c.width,c.height))):this.graph.setBackgroundImage(null); +mxClient.NO_FO=this.graph.mathEnabled&&!this.useForeignObjectForMath?!0:this.originalNoForeignObject;this.graph.useCssTransforms=!mxClient.NO_FO&&this.isChromelessView()&&this.graph.isCssTransformsSupported();this.graph.updateCssTransform();this.graph.setShadowVisible("1"==b.getAttribute("shadow"),!1)}a.apply(this,arguments)}else throw{message:mxResources.get("notADiagramFile")||"Invalid data",toString:function(){return this.message}};};var c=Editor.prototype.getGraphXml;Editor.prototype.getGraphXml= +function(a){a=null!=a?a:!0;var b=c.apply(this,arguments);null!=this.graph.currentStyle&&"default-style2"!=this.graph.currentStyle&&b.setAttribute("style",this.graph.currentStyle);null!=this.graph.backgroundImage&&b.setAttribute("backgroundImage",JSON.stringify(this.graph.backgroundImage));b.setAttribute("math",this.graph.mathEnabled?"1":"0");b.setAttribute("shadow",this.graph.shadowVisible?"1":"0");return b};Editor.prototype.isDataSvg=function(a){try{var b=mxUtils.parseXml(a).documentElement.getAttribute("content"); +if(null!=b&&(null!=b&&"<"!=b.charAt(0)&&"%"!=b.charAt(0)&&(b=unescape(window.atob?atob(b):Base64.decode(cont,b))),null!=b&&"%"==b.charAt(0)&&(b=decodeURIComponent(b)),null!=b&&0<b.length)){var c=mxUtils.parseXml(b).documentElement;return"mxfile"==c.nodeName||"mxGraphModel"==c.nodeName}}catch(G){}return!1};Editor.prototype.extractGraphModel=function(a,b){return Editor.extractGraphModel.apply(this,arguments)};var b=Editor.prototype.resetGraph;Editor.prototype.resetGraph=function(){this.graph.mathEnabled= +"1"==urlParams.math;this.graph.view.x0=null;this.graph.view.y0=null;mxClient.NO_FO=this.graph.mathEnabled&&!this.useForeignObjectForMath?!0:this.originalNoForeignObject;this.graph.useCssTransforms=!mxClient.NO_FO&&this.isChromelessView()&&this.graph.isCssTransformsSupported();this.graph.updateCssTransform();b.apply(this,arguments)};var d=Editor.prototype.updateGraphComponents;Editor.prototype.updateGraphComponents=function(){d.apply(this,arguments);mxClient.NO_FO=this.graph.mathEnabled&&!this.useForeignObjectForMath&& +null!=Editor.MathJaxRender?!0:this.originalNoForeignObject;this.graph.useCssTransforms=!mxClient.NO_FO&&this.isChromelessView()&&this.graph.isCssTransformsSupported();this.graph.updateCssTransform()};Editor.initMath=function(a,b){a=null!=a?a:DRAW_MATH_URL+"/MathJax.js?config=TeX-MML-AM_HTMLorMML";Editor.mathJaxQueue=[];Editor.doMathJaxRender=function(a){window.setTimeout(function(){"hidden"!=a.style.visibility&&MathJax.Hub.Queue(["Typeset",MathJax.Hub,a])},0)};window.MathJax={skipStartupTypeset:!0, +showMathMenu:!1,messageStyle:"none",AuthorInit:function(){MathJax.Hub.Config(b||{jax:["input/TeX","input/MathML","input/AsciiMath","output/HTML-CSS"],extensions:["tex2jax.js","mml2jax.js","asciimath2jax.js"],"HTML-CSS":{imageFont:null},TeX:{extensions:["AMSmath.js","AMSsymbols.js","noErrors.js","noUndefined.js"]},tex2jax:{ignoreClass:"mxCellEditor"},asciimath2jax:{ignoreClass:"mxCellEditor"}});MathJax.Hub.Register.StartupHook("Begin",function(){for(var a=0;a<Editor.mathJaxQueue.length;a++)Editor.doMathJaxRender(Editor.mathJaxQueue[a])})}}; +Editor.MathJaxRender=function(a){"undefined"!==typeof MathJax&&"undefined"!==typeof MathJax.Hub?Editor.doMathJaxRender(a):Editor.mathJaxQueue.push(a)};Editor.MathJaxClear=function(){Editor.mathJaxQueue=[]};var c=Editor.prototype.init;Editor.prototype.init=function(){c.apply(this,arguments);this.graph.addListener(mxEvent.SIZE,mxUtils.bind(this,function(a,b){null!=this.graph.container&&this.graph.mathEnabled&&!this.graph.blockMathRender&&Editor.MathJaxRender(this.graph.container)}))};var f=document.getElementsByTagName("script"); +if(null!=f&&0<f.length){var d=document.createElement("script");d.type="text/javascript";d.src=a;f[0].parentNode.appendChild(d)}};Editor.prototype.csvToArray=function(a){if(!/^\s*(?:'[^'\\]*(?:\\[\S\s][^'\\]*)*'|"[^"\\]*(?:\\[\S\s][^"\\]*)*"|[^,'"\s\\]*(?:\s+[^,'"\s\\]+)*)\s*(?:,\s*(?:'[^'\\]*(?:\\[\S\s][^'\\]*)*'|"[^"\\]*(?:\\[\S\s][^"\\]*)*"|[^,'"\s\\]*(?:\s+[^,'"\s\\]+)*)\s*)*$/.test(a))return null;var b=[];a.replace(/(?!\s*$)\s*(?:'([^'\\]*(?:\\[\S\s][^'\\]*)*)'|"([^"\\]*(?:\\[\S\s][^"\\]*)*)"|([^,'"\s\\]*(?:\s+[^,'"\s\\]+)*))\s*(?:,|$)/g, +function(a,c,f,d){void 0!==c?b.push(c.replace(/\\'/g,"'")):void 0!==f?b.push(f.replace(/\\"/g,'"')):void 0!==d&&b.push(d);return""});/,\s*$/.test(a)&&b.push("");return b};Editor.prototype.isCorsEnabledForUrl=function(a){null!=urlParams.cors&&null==this.corsRegExp&&(this.corsRegExp=new RegExp(decodeURIComponent(urlParams.cors)));return null!=this.corsRegExp&&this.corsRegExp.test(a)||"https://raw.githubusercontent.com/"===a.substring(0,34)||"https://cdn.rawgit.com/"===a.substring(0,23)||"https://rawgit.com/"=== +a.substring(0,19)||/^https?:\/\/[^\/]*\.blob.core.windows.net\//.test(a)||/^https?:\/\/[^\/]*\.iconfinder.com\//.test(a)||/^https?:\/\/[^\/]*\.draw\.io\/proxy/.test(a)||/^https?:\/\/[^\/]*\.github\.io\//.test(a)};Editor.prototype.createImageUrlConverter=function(){var a=new mxUrlConverter;a.updateBaseUrl();var b=a.convert,c=this;a.convert=function(f){if(null!=f){var d="http://"==f.substring(0,7)||"https://"==f.substring(0,8);d&&!navigator.onLine?f=EditorUi.prototype.svgBrokenImage.src:!d||f.substring(0, +a.baseUrl.length)==a.baseUrl||EditorUi.prototype.crossOriginImages&&c.isCorsEnabledForUrl(f)?"chrome-extension://"==f.substring(0,19)||mxClient.IS_CHROMEAPP||(f=b.apply(this,arguments)):f=PROXY_URL+"?url="+encodeURIComponent(f)}return f};return a};Editor.prototype.createSvgDataUri=function(a){return"data:image/svg+xml;base64,"+btoa(unescape(encodeURIComponent(a)))};Editor.prototype.convertImageToDataUri=function(a,b){if(/(\.svg)$/i.test(a))mxUtils.get(a,mxUtils.bind(this,function(a){b(this.createSvgDataUri(a.getText()))}), +function(){b(EditorUi.prototype.svgBrokenImage.src)});else{var c=new Image;EditorUi.prototype.crossOriginImages&&(c.crossOrigin="anonymous");c.onload=function(){var a=document.createElement("canvas"),f=a.getContext("2d");a.height=c.height;a.width=c.width;f.drawImage(c,0,0);try{b(a.toDataURL())}catch(H){b(EditorUi.prototype.svgBrokenImage.src)}};c.onerror=function(){b(EditorUi.prototype.svgBrokenImage.src)};c.src=a}};Editor.prototype.convertImages=function(a,b,c,f){null==f&&(f=this.createImageUrlConverter()); var d=0,l=c||{};c=mxUtils.bind(this,function(c,p){for(var e=a.getElementsByTagName(c),k=0;k<e.length;k++)mxUtils.bind(this,function(c){var e=f.convert(c.getAttribute(p));if(null!=e&&"data:"!=e.substring(0,5)){var k=l[e];null==k?(d++,this.convertImageToDataUri(e,function(f){null!=f&&(l[e]=f,c.setAttribute(p,f));d--;0==d&&b(a)})):c.setAttribute(p,k)}else null!=e&&c.setAttribute(p,e)})(e[k])});c("image","xlink:href");c("img","src");0==d&&b(a)};Editor.prototype.base64Encode=function(a){for(var b="",c= 0,f=a.length,d,l,p;c<f;){d=a.charCodeAt(c++)&255;if(c==f){b+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt(d>>2);b+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt((d&3)<<4);b+="==";break}l=a.charCodeAt(c++);if(c==f){b+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt(d>>2);b+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt((d&3)<<4|(l&240)>>4);b+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt((l& 15)<<2);b+="=";break}p=a.charCodeAt(c++);b+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt(d>>2);b+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt((d&3)<<4|(l&240)>>4);b+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt((l&15)<<2|(p&192)>>6);b+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt(p&63)}return b};Editor.prototype.loadUrl=function(a,b,c,f,d,l){try{var p=f||/(\.png)($|\?)/i.test(a)||/(\.jpe?g)($|\?)/i.test(a)|| @@ -8505,7 +8166,7 @@ type:"float",min:0,defVal:20},{name:"dy",dispName:"Width2",type:"float",min:0,de stroke:"#B09500",font:"#ffffff"},{fill:"#6d8764",stroke:"#3A5431",font:"#ffffff"},{fill:"#647687",stroke:"#314354",font:"#ffffff"},{fill:"#76608a",stroke:"#432D57",font:"#ffffff"},{fill:"#a0522d",stroke:"#6D1F00",font:"#ffffff"}],[{fill:"",stroke:""},{fill:mxConstants.NONE,stroke:""},{fill:"#fad7ac",stroke:"#b46504"},{fill:"#fad9d5",stroke:"#ae4132"},{fill:"#b0e3e6",stroke:"#0e8088"},{fill:"#b1ddf0",stroke:"#10739e"},{fill:"#d0cee2",stroke:"#56517e"},{fill:"#bac8d3",stroke:"#23445d"}],[{fill:"",stroke:""}, {fill:"#f5f5f5",stroke:"#666666",gradient:"#b3b3b3"},{fill:"#dae8fc",stroke:"#6c8ebf",gradient:"#7ea6e0"},{fill:"#d5e8d4",stroke:"#82b366",gradient:"#97d077"},{fill:"#ffcd28",stroke:"#d79b00",gradient:"#ffa500"},{fill:"#fff2cc",stroke:"#d6b656",gradient:"#ffd966"},{fill:"#f8cecc",stroke:"#b85450",gradient:"#ea6b66"},{fill:"#e6d0de",stroke:"#996185",gradient:"#d5739d"}],[{fill:"",stroke:""},{fill:"#eeeeee",stroke:"#36393d"},{fill:"#f9f7ed",stroke:"#36393d"},{fill:"#ffcc99",stroke:"#36393d"},{fill:"#cce5ff", stroke:"#36393d"},{fill:"#ffff88",stroke:"#36393d"},{fill:"#cdeb8b",stroke:"#36393d"},{fill:"#ffcccc",stroke:"#36393d"}]];StyleFormatPanel.prototype.customColorSchemes=null;StyleFormatPanel.prototype.findCommonProperties=function(a,b,c){if(null!=b){var f=function(a){if(null!=a)if(c)for(var f=0;f<a.length;f++)b[a[f].name]=a[f];else for(var d in b){for(var l=!1,f=0;f<a.length;f++)if(a[f].name==d&&a[f].type==b[d].type){l=!0;break}l||delete b[d]}},d=this.editorUi.editor.graph.view.getState(a);null!=d&& -null!=d.shape&&(d.shape.commonCustomPropAdded||(d.shape.commonCustomPropAdded=!0,d.shape.customProperties=d.shape.customProperties||[],d.cell.vertex?Array.prototype.push.apply(d.shape.customProperties,Editor.commonVertexProperties):Array.prototype.push.apply(d.shape.customProperties,Editor.commonEdgeProperties)),f(d.shape.customProperties));a=a.getAttribute("customProperties");if(null!=a)try{f(JSON.parse(a))}catch(I){}}};var f=StyleFormatPanel.prototype.init;StyleFormatPanel.prototype.init=function(){var a= +null!=d.shape&&(d.shape.commonCustomPropAdded||(d.shape.commonCustomPropAdded=!0,d.shape.customProperties=d.shape.customProperties||[],d.cell.vertex?Array.prototype.push.apply(d.shape.customProperties,Editor.commonVertexProperties):Array.prototype.push.apply(d.shape.customProperties,Editor.commonEdgeProperties)),f(d.shape.customProperties));a=a.getAttribute("customProperties");if(null!=a)try{f(JSON.parse(a))}catch(H){}}};var f=StyleFormatPanel.prototype.init;StyleFormatPanel.prototype.init=function(){var a= this.format.createSelectionState();"image"==a.style.shape||a.containsLabel||this.container.appendChild(this.addStyles(this.createPanel()));f.apply(this,arguments);if(Editor.enableCustomProperties){for(var b={},c=a.vertices,d=a.edges,l=0;l<c.length;l++)this.findCommonProperties(c[l],b,0==l);for(l=0;l<d.length;l++)this.findCommonProperties(d[l],b,0==c.length&&0==l);null!=Object.getOwnPropertyNames&&0<Object.getOwnPropertyNames(b).length&&this.container.appendChild(this.addProperties(this.createPanel(), b,a))}};var l=StyleFormatPanel.prototype.addStyleOps;StyleFormatPanel.prototype.addStyleOps=function(a){var b=mxUtils.button(mxResources.get("copyStyle"),mxUtils.bind(this,function(a){this.editorUi.actions.get("copyStyle").funct()}));b.setAttribute("title",mxResources.get("copyStyle")+" ("+this.editorUi.actions.get("copyStyle").shortcut+")");b.style.marginBottom="2px";b.style.width="100px";b.style.marginRight="2px";a.appendChild(b);b=mxUtils.button(mxResources.get("pasteStyle"),mxUtils.bind(this, function(a){this.editorUi.actions.get("pasteStyle").funct()}));b.setAttribute("title",mxResources.get("pasteStyle")+" ("+this.editorUi.actions.get("pasteStyle").shortcut+")");b.style.marginBottom="2px";b.style.width="100px";a.appendChild(b);mxUtils.br(a);return l.apply(this,arguments)};EditorUi.prototype.propertiesCollapsed=!0;StyleFormatPanel.prototype.addProperties=function(a,b,c){function f(a,b,c,f){A.getModel().beginUpdate();try{var d=[],l=[];if(null!=c.index){for(var p=[],e=c.parentRow.nextSibling;e&& @@ -8521,8 +8182,8 @@ m,u)):(n.innerHTML=c,mxEvent.addListener(n,"click",mxUtils.bind(t,function(){fun "int"==z?"1":"any",null!=g.min&&(p.min=parseFloat(g.min)),null!=g.max&&(p.max=parseFloat(g.max)));a.appendChild(p);mxEvent.addListener(p,"keypress",function(a){13==a.keyCode&&l()});p.focus();mxEvent.addListener(p,"blur",function(){l()})})));g.isDeletable&&(u=mxUtils.button("-",mxUtils.bind(t,function(a){f(b,"",g,g.index);mxEvent.consume(a)})),u.style.height="16px",u.style.width="25px",u.style["float"]="right",u.className="geColorBtn",n.appendChild(u));m.appendChild(n);return m}var t=this,A=this.editorUi.editor.graph, u=[];a.style.position="relative";a.style.padding="0";var B=document.createElement("table");B.style.whiteSpace="nowrap";B.style.width="100%";var z=document.createElement("tr");z.className="gePropHeader";var m=document.createElement("th");m.className="gePropHeaderCell";var n=document.createElement("img");n.src=Sidebar.prototype.expandedImage;m.appendChild(n);mxUtils.write(m,mxResources.get("property"));z.style.cursor="pointer";var v=function(){var b=B.querySelectorAll(".gePropNonHeaderRow"),c;if(t.editorUi.propertiesCollapsed){n.src= Sidebar.prototype.collapsedImage;c="none";for(var f=a.childNodes.length-1;0<=f;f--)try{var d=a.childNodes[f],l=d.nodeName.toUpperCase();"INPUT"!=l&&"SELECT"!=l||a.removeChild(d)}catch(O){}}else n.src=Sidebar.prototype.expandedImage,c="";for(f=0;f<b.length;f++)b[f].style.display=c};mxEvent.addListener(z,"click",function(){t.editorUi.propertiesCollapsed=!t.editorUi.propertiesCollapsed;v()});z.appendChild(m);m=document.createElement("th");m.className="gePropHeaderCell";m.innerHTML=mxResources.get("value"); -z.appendChild(m);B.appendChild(z);var y=!1,D=!1,x;for(x in b)if(z=b[x],"function"!=typeof z.isVisible||z.isVisible(c)){var C=null!=c.style[x]?mxUtils.htmlEntities(c.style[x]+""):z.defVal;if("separator"==z.type)D=!D;else{if("staticArr"==z.type)z.size=parseInt(c.style[z.sizeProperty]||b[z.sizeProperty].defVal)||0;else if(null!=z.dependentProps){for(var q=z.dependentProps,J=[],F=[],m=0;m<q.length;m++){var N=c.style[q[m]];F.push(b[q[m]].subDefVal);J.push(null!=N?N.split(","):[])}z.dependentPropsDefVal= -F;z.dependentPropsVals=J}B.appendChild(g(x,C,z,y,D));y=!y}}for(m=0;m<u.length;m++)for(z=u[m],b=z.parentRow,c=0;c<z.values.length;c++)x=g(z.name,z.values[c],{type:z.type,parentRow:z.parentRow,isDeletable:z.isDeletable,index:c,defVal:z.defVal,countProperty:z.countProperty,size:z.size},0==c%2,z.flipBkg),b.parentNode.insertBefore(x,b.nextSibling),b=x;a.appendChild(B);v();return a};StyleFormatPanel.prototype.addStyles=function(a){function b(a){function b(a){var b=mxUtils.button("",function(b){f.getModel().beginUpdate(); +z.appendChild(m);B.appendChild(z);var y=!1,D=!1,x;for(x in b)if(z=b[x],"function"!=typeof z.isVisible||z.isVisible(c)){var C=null!=c.style[x]?mxUtils.htmlEntities(c.style[x]+""):z.defVal;if("separator"==z.type)D=!D;else{if("staticArr"==z.type)z.size=parseInt(c.style[z.sizeProperty]||b[z.sizeProperty].defVal)||0;else if(null!=z.dependentProps){for(var q=z.dependentProps,J=[],E=[],m=0;m<q.length;m++){var N=c.style[q[m]];E.push(b[q[m]].subDefVal);J.push(null!=N?N.split(","):[])}z.dependentPropsDefVal= +E;z.dependentPropsVals=J}B.appendChild(g(x,C,z,y,D));y=!y}}for(m=0;m<u.length;m++)for(z=u[m],b=z.parentRow,c=0;c<z.values.length;c++)x=g(z.name,z.values[c],{type:z.type,parentRow:z.parentRow,isDeletable:z.isDeletable,index:c,defVal:z.defVal,countProperty:z.countProperty,size:z.size},0==c%2,z.flipBkg),b.parentNode.insertBefore(x,b.nextSibling),b=x;a.appendChild(B);v();return a};StyleFormatPanel.prototype.addStyles=function(a){function b(a){function b(a){var b=mxUtils.button("",function(b){f.getModel().beginUpdate(); try{var c=f.getSelectionCells();for(b=0;b<c.length;b++){for(var d=f.getModel().getStyle(c[b]),p=0;p<l.length;p++)d=mxUtils.removeStylename(d,l[p]);var e=f.getModel().isVertex(c[b])?f.defaultVertexStyle:f.defaultEdgeStyle;null!=a?(d=mxUtils.setStyle(d,mxConstants.STYLE_GRADIENTCOLOR,a.gradient||mxUtils.getValue(e,mxConstants.STYLE_GRADIENTCOLOR,null)),d=""==a.fill?mxUtils.setStyle(d,mxConstants.STYLE_FILLCOLOR,null):mxUtils.setStyle(d,mxConstants.STYLE_FILLCOLOR,a.fill||mxUtils.getValue(e,mxConstants.STYLE_FILLCOLOR, null)),d=""==a.stroke?mxUtils.setStyle(d,mxConstants.STYLE_STROKECOLOR,null):mxUtils.setStyle(d,mxConstants.STYLE_STROKECOLOR,a.stroke||mxUtils.getValue(e,mxConstants.STYLE_STROKECOLOR,null)),f.getModel().isVertex(c[b])&&(d=mxUtils.setStyle(d,mxConstants.STYLE_FONTCOLOR,a.font||mxUtils.getValue(e,mxConstants.STYLE_FONTCOLOR,null)))):(d=mxUtils.setStyle(d,mxConstants.STYLE_FILLCOLOR,mxUtils.getValue(e,mxConstants.STYLE_FILLCOLOR,"#ffffff")),d=mxUtils.setStyle(d,mxConstants.STYLE_STROKECOLOR,mxUtils.getValue(e, mxConstants.STYLE_STROKECOLOR,"#000000")),d=mxUtils.setStyle(d,mxConstants.STYLE_GRADIENTCOLOR,mxUtils.getValue(e,mxConstants.STYLE_GRADIENTCOLOR,null)),f.getModel().isVertex(c[b])&&(d=mxUtils.setStyle(d,mxConstants.STYLE_FONTCOLOR,mxUtils.getValue(e,mxConstants.STYLE_FONTCOLOR,null))));f.getModel().setStyle(c[b],d)}}finally{f.getModel().endUpdate()}});b.className="geStyleButton";b.style.width="36px";b.style.height="30px";b.style.margin="0px 6px 6px 0px";if(null!=a)null!=a.gradient?mxClient.IS_IE&& @@ -8536,58 +8197,58 @@ mxEvent.addListener(p,"click",mxUtils.bind(this,function(){this.editorUi.current function(a){this.editorUi.actions.get("editShape").funct()})),b.setAttribute("title",mxResources.get("editShape")),b.style.marginBottom="2px",null==c?b.style.width="202px":(c.style.width="100px",b.style.width="100px",b.style.marginLeft="2px"),a.appendChild(b)):b.image&&(b=mxUtils.button(mxResources.get("editImage"),mxUtils.bind(this,function(a){this.editorUi.actions.get("image").funct()})),b.setAttribute("title",mxResources.get("editImage")),b.style.marginBottom="2px",null==c?b.style.width="202px": (c.style.width="100px",b.style.width="100px",b.style.marginLeft="2px"),a.appendChild(b));return a}}Graph.prototype.defaultThemeName="default-style2";Graph.prototype.lastPasteXml=null;Graph.prototype.pasteCounter=0;Graph.prototype.defaultScrollbars="0"!=urlParams.sb;Graph.prototype.defaultPageVisible="0"!=urlParams.pv;Graph.prototype.shadowId="dropShadow";Graph.prototype.svgShadowColor="#3D4574";Graph.prototype.svgShadowOpacity="0.4";Graph.prototype.svgShadowBlur="1.7";Graph.prototype.svgShadowSize= "3";Graph.prototype.edgeMode="move"!=urlParams.edge;var p=Graph.prototype.init;Graph.prototype.init=function(){function a(a){b=a;try{if(mxClient.IS_QUIRKS||7==document.documentMode||8==document.documentMode)b=document.createEventObject(a),b.type=a.type,b.canBubble=a.canBubble,b.cancelable=a.cancelable,b.view=a.view,b.detail=a.detail,b.screenX=a.screenX,b.screenY=a.screenY,b.clientX=a.clientX,b.clientY=a.clientY,b.ctrlKey=a.ctrlKey,b.altKey=a.altKey,b.shiftKey=a.shiftKey,b.metaKey=a.metaKey,b.button= -a.button,b.relatedTarget=a.relatedTarget}catch(I){}}p.apply(this,arguments);window.mxFreehand&&(this.freehand=new mxFreehand(this));var b=null;mxEvent.addListener(this.container,"mouseenter",a);mxEvent.addListener(this.container,"mousemove",a);mxEvent.addListener(this.container,"mouseleave",function(a){b=null});this.isMouseInsertPoint=function(){return null!=b};var c=this.getInsertPoint;this.getInsertPoint=function(){return null!=b?this.getPointForEvent(b):c.apply(this,arguments)};var f=this.layoutManager.getLayout; +a.button,b.relatedTarget=a.relatedTarget}catch(H){}}p.apply(this,arguments);window.mxFreehand&&(this.freehand=new mxFreehand(this));var b=null;mxEvent.addListener(this.container,"mouseenter",a);mxEvent.addListener(this.container,"mousemove",a);mxEvent.addListener(this.container,"mouseleave",function(a){b=null});this.isMouseInsertPoint=function(){return null!=b};var c=this.getInsertPoint;this.getInsertPoint=function(){return null!=b?this.getPointForEvent(b):c.apply(this,arguments)};var f=this.layoutManager.getLayout; this.layoutManager.getLayout=function(a){var b=this.graph.getCellStyle(a);if(null!=b){if("rack"==b.childLayout){var c=new mxStackLayout(this.graph,!1);c.gridSize=null!=b.rackUnitSize?parseFloat(b.rackUnitSize):"undefined"!==typeof mxRackContainer?mxRackContainer.unitSize:20;c.fill=!0;c.marginLeft=b.marginLeft||0;c.marginRight=b.marginRight||0;c.marginTop=b.marginTop||0;c.marginBottom=b.marginBottom||0;c.allowGaps=b.allowGaps||0;c.resizeParent=!1;return c}if("undefined"!==typeof mxTableLayout&&"tableLayout"== b.childLayout)return c=new mxTableLayout(this.graph),c.rows=b.tableRows||2,c.columns=b.tableColumns||2,c.colPercentages=b.colPercentages,c.rowPercentages=b.rowPercentages,c.equalColumns="1"==mxUtils.getValue(b,"equalColumns",c.colPercentages?"0":"1"),c.equalRows="1"==mxUtils.getValue(b,"equalRows",c.rowPercentages?"0":"1"),c.resizeParent="1"==mxUtils.getValue(b,"resizeParent","1"),c.border=b.tableBorder||c.border,c.marginLeft=b.marginLeft||0,c.marginRight=b.marginRight||0,c.marginTop=b.marginTop|| -0,c.marginBottom=b.marginBottom||0,c.autoAddCol="1"==mxUtils.getValue(b,"autoAddCol","0"),c.autoAddRow="1"==mxUtils.getValue(b,"autoAddRow",c.autoAddCol?"0":"1"),c.colWidths=b.colWidths||"100",c.rowHeights=b.rowHeights||"50",c}return f.apply(this,arguments)};this.updateGlobalUrlVariables()};Graph.prototype.updateGlobalUrlVariables=function(){if(null!=urlParams.vars)try{this.globalUrlVars=JSON.parse(decodeURIComponent(urlParams.vars))}catch(z){null!=window.console&&console.log("Error in vars URL parameter: "+ -z)}};Graph.prototype.getExportVariables=function(){return null!=this.globalUrlVars?this.globalUrlVars:{}};var u=Graph.prototype.getGlobalVariable;Graph.prototype.getGlobalVariable=function(a){var b=u.apply(this,arguments);null==b&&null!=this.globalUrlVars&&(b=this.globalUrlVars[a]);return b};Graph.prototype.getDefaultStylesheet=function(){if(null==this.defaultStylesheet){var a=this.themes["default-style2"];this.defaultStylesheet=(new mxCodec(a.ownerDocument)).decode(a)}return this.defaultStylesheet}; -Graph.prototype.isViewer=function(){return urlParams.viewer};var v=Graph.prototype.getSvg;Graph.prototype.getSvg=function(){var a=null;null!=this.themes&&"darkTheme"==this.defaultThemeName&&(a=this.stylesheet,this.stylesheet=this.getDefaultStylesheet(),this.refresh());var b=v.apply(this,arguments);null!=a&&(this.stylesheet=a,this.refresh());return b};var t=Graph.prototype.isCssTransformsSupported;Graph.prototype.isCssTransformsSupported=function(){return t.apply(this,arguments)&&!mxClient.IS_SF}; -var y=mxGraphView.prototype.validateBackgroundPage;mxGraphView.prototype.validateBackgroundPage=function(){y.apply(this,arguments);if(mxClient.IS_GC&&null!=this.getDrawPane()){var a=this.getDrawPane().parentNode;!this.graph.mathEnabled||mxClient.NO_FO||null!=this.webKitForceRepaintNode&&null!=this.webKitForceRepaintNode.parentNode||"svg"!=this.graph.container.firstChild.nodeName?null==this.webKitForceRepaintNode||this.graph.mathEnabled&&("svg"==this.graph.container.firstChild.nodeName||this.graph.container.firstChild== -this.webKitForceRepaintNode)||(null!=this.webKitForceRepaintNode.parentNode&&this.webKitForceRepaintNode.parentNode.removeChild(this.webKitForceRepaintNode),this.webKitForceRepaintNode=null):(this.webKitForceRepaintNode=document.createElement("div"),this.webKitForceRepaintNode.style.cssText="position:absolute;",a.ownerSVGElement.parentNode.insertBefore(this.webKitForceRepaintNode,a.ownerSVGElement))}};var x=Graph.prototype.loadStylesheet;Graph.prototype.loadStylesheet=function(){x.apply(this,arguments); -this.currentStyle="default-style2"};Graph.prototype.handleCustomLink=function(a){if("data:action/json,"==a.substring(0,17)&&(a=JSON.parse(a.substring(17)),null!=a.actions)){for(var b=0;b<a.actions.length;b++){var c=a.actions[b];if(null!=c.open)if(this.isCustomLink(c.open)){if(!this.customLinkClicked(c.open))return}else this.openLink(c.open)}this.model.beginUpdate();try{for(b=0;b<a.actions.length;b++)c=a.actions[b],null!=c.toggle&&this.toggleCells(this.getCellsForAction(c.toggle,!0)),null!=c.show&& -this.setCellsVisible(this.getCellsForAction(c.show,!0),!0),null!=c.hide&&this.setCellsVisible(this.getCellsForAction(c.hide,!0),!1)}finally{this.model.endUpdate()}for(b=0;b<a.actions.length;b++){var c=a.actions[b],f=[];null!=c.select&&this.isEnabled()&&(f=this.getCellsForAction(c.select),this.setSelectionCells(f));null!=c.highlight&&(f=this.getCellsForAction(c.highlight),this.highlightCells(f,c.highlight.color,c.highlight.duration,c.highlight.opacity));null!=c.scroll&&(f=this.getCellsForAction(c.scroll)); -0<f.length&&this.scrollCellToVisible(f[0])}}};Graph.prototype.updateCustomLinksForCell=function(a,b){var c=this.getLinkForCell(b);null!=c&&"data:action/json,"==c.substring(0,17)&&this.setLinkForCell(b,this.updateCustomLink(a,c));if(this.isHtmlLabel(b)){var f=document.createElement("div");f.innerHTML=this.getLabel(b);for(var d=f.getElementsByTagName("a"),l=!1,p=0;p<d.length;p++)c=d[p].getAttribute("href"),null!=c&&"data:action/json,"==c.substring(0,17)&&(d[p].setAttribute("href",this.updateCustomLink(a, -c)),l=!0);l&&this.labelChanged(b,f.innerHTML)}};Graph.prototype.updateCustomLink=function(a,b){if("data:action/json,"==b.substring(0,17))try{var c=JSON.parse(b.substring(17));null!=c.actions&&(this.updateCustomLinkActions(a,c.actions),b="data:action/json,"+JSON.stringify(c))}catch(G){}return b};Graph.prototype.updateCustomLinkActions=function(a,b){for(var c=0;c<b.length;c++){var f=b[c];this.updateCustomLinkAction(a,f.toggle);this.updateCustomLinkAction(a,f.show);this.updateCustomLinkAction(a,f.hide); -this.updateCustomLinkAction(a,f.select);this.updateCustomLinkAction(a,f.highlight);this.updateCustomLinkAction(a,f.scroll)}};Graph.prototype.updateCustomLinkAction=function(a,b){if(null!=b&&null!=b.cells){for(var c=[],f=0;f<b.cells.length;f++)if("*"==b.cells[f])c.push(b.cells[f]);else{var d=a[b.cells[f]];null!=d?""!=d&&c.push(d):c.push(b.cells[f])}b.cells=c}};Graph.prototype.getCellsForAction=function(a,b){return this.getCellsById(a.cells).concat(this.getCellsForTags(a.tags,null,null,b))};Graph.prototype.getCellsById= -function(a){var b=[];if(null!=a)for(var c=0;c<a.length;c++)if("*"==a[c])var f=this.getDefaultParent(),b=b.concat(this.model.filterDescendants(function(a){return a!=f},f));else{var d=this.model.getCell(a[c]);null!=d&&b.push(d)}return b};Graph.prototype.getCellsForTags=function(a,b,c,f){var d=[];if(null!=a){b=null!=b?b:this.model.getDescendants(this.model.getRoot());c=null!=c?c:"tags";for(var l=0,p={},e=0;e<a.length;e++)0<a[e].length&&(p[a[e].toLowerCase()]=!0,l++);for(e=0;e<b.length;e++)if(f&&this.model.getParent(b[e])== -this.model.root||this.model.isVertex(b[e])||this.model.isEdge(b[e])){var k=null!=b[e].value&&"object"==typeof b[e].value?mxUtils.trim(b[e].value.getAttribute(c)||""):"",g=!1;if(0<k.length){if(k=k.toLowerCase().split(" "),k.length>=a.length){for(var t=g=0;t<k.length&&g<l;t++)null!=p[k[t]]&&g++;g=g==l}}else g=0==a.length;g&&d.push(b[e])}}return d};Graph.prototype.toggleCells=function(a){this.model.beginUpdate();try{for(var b=0;b<a.length;b++)this.model.setVisible(a[b],!this.model.isVisible(a[b]))}finally{this.model.endUpdate()}}; -Graph.prototype.setCellsVisible=function(a,b){this.model.beginUpdate();try{for(var c=0;c<a.length;c++)this.model.setVisible(a[c],b)}finally{this.model.endUpdate()}};Graph.prototype.highlightCells=function(a,b,c,f){for(var d=0;d<a.length;d++)this.highlightCell(a[d],b,c,f)};Graph.prototype.highlightCell=function(a,b,c,f){b=null!=b?b:mxConstants.DEFAULT_VALID_COLOR;c=null!=c?c:1E3;a=this.view.getState(a);if(null!=a){var d=Math.max(5,mxUtils.getValue(a.style,mxConstants.STYLE_STROKEWIDTH,1)+4),l=new mxCellHighlight(this, -b,d,!1);null!=f&&(l.opacity=f);l.highlight(a);window.setTimeout(function(){null!=l.shape&&(mxUtils.setPrefixedStyle(l.shape.node.style,"transition","all 1200ms ease-in-out"),l.shape.node.style.opacity=0);window.setTimeout(function(){l.destroy()},1200)},c)}};Graph.prototype.addSvgShadow=function(a,b,c){c=null!=c?c:!1;var f=a.ownerDocument,d=null!=f.createElementNS?f.createElementNS(mxConstants.NS_SVG,"filter"):f.createElement("filter");d.setAttribute("id",this.shadowId);var l=null!=f.createElementNS? -f.createElementNS(mxConstants.NS_SVG,"feGaussianBlur"):f.createElement("feGaussianBlur");l.setAttribute("in","SourceAlpha");l.setAttribute("stdDeviation",this.svgShadowBlur);l.setAttribute("result","blur");d.appendChild(l);l=null!=f.createElementNS?f.createElementNS(mxConstants.NS_SVG,"feOffset"):f.createElement("feOffset");l.setAttribute("in","blur");l.setAttribute("dx",this.svgShadowSize);l.setAttribute("dy",this.svgShadowSize);l.setAttribute("result","offsetBlur");d.appendChild(l);l=null!=f.createElementNS? -f.createElementNS(mxConstants.NS_SVG,"feFlood"):f.createElement("feFlood");l.setAttribute("flood-color",this.svgShadowColor);l.setAttribute("flood-opacity",this.svgShadowOpacity);l.setAttribute("result","offsetColor");d.appendChild(l);l=null!=f.createElementNS?f.createElementNS(mxConstants.NS_SVG,"feComposite"):f.createElement("feComposite");l.setAttribute("in","offsetColor");l.setAttribute("in2","offsetBlur");l.setAttribute("operator","in");l.setAttribute("result","offsetBlur");d.appendChild(l); -l=null!=f.createElementNS?f.createElementNS(mxConstants.NS_SVG,"feBlend"):f.createElement("feBlend");l.setAttribute("in","SourceGraphic");l.setAttribute("in2","offsetBlur");d.appendChild(l);l=a.getElementsByTagName("defs");0==l.length?(f=null!=f.createElementNS?f.createElementNS(mxConstants.NS_SVG,"defs"):f.createElement("defs"),null!=a.firstChild?a.insertBefore(f,a.firstChild):a.appendChild(f)):f=l[0];f.appendChild(d);c||(b=null!=b?b:a.getElementsByTagName("g")[0],null!=b&&(b.setAttribute("filter", -"url(#"+this.shadowId+")"),isNaN(parseInt(a.getAttribute("width")))||(a.setAttribute("width",parseInt(a.getAttribute("width"))+6),a.setAttribute("height",parseInt(a.getAttribute("height"))+6),b=a.getAttribute("viewBox"),null!=b&&0<b.length&&(b=b.split(" "),3<b.length&&(w=parseFloat(b[2])+6,h=parseFloat(b[3])+6,a.setAttribute("viewBox",b[0]+" "+b[1]+" "+w+" "+h))))));return d};Graph.prototype.setShadowVisible=function(a,b){mxClient.IS_SVG&&(b=null!=b?b:!0,(this.shadowVisible=a)?this.view.getDrawPane().setAttribute("filter", -"url(#"+this.shadowId+")"):this.view.getDrawPane().removeAttribute("filter"),b&&this.fireEvent(new mxEventObject("shadowVisibleChanged")))};Graph.prototype.selectUnlockedLayer=function(){if(null==this.defaultParent){var a=this.model.getChildCount(this.model.root),b,c=0;do b=this.model.getChildAt(this.model.root,c);while(c++<a&&"1"==mxUtils.getValue(this.getCellStyle(b),"locked","0"));null!=b&&this.setDefaultParent(b)}};mxStencilRegistry.libraries.mockup=[SHAPES_PATH+"/mockup/mxMockupButtons.js"]; -mxStencilRegistry.libraries.arrows2=[SHAPES_PATH+"/mxArrows.js"];mxStencilRegistry.libraries.atlassian=[STENCIL_PATH+"/atlassian.xml",SHAPES_PATH+"/mxAtlassian.js"];mxStencilRegistry.libraries.bpmn=[SHAPES_PATH+"/bpmn/mxBpmnShape2.js",STENCIL_PATH+"/bpmn.xml"];mxStencilRegistry.libraries.dfd=[SHAPES_PATH+"/mxDFD.js"];mxStencilRegistry.libraries.er=[SHAPES_PATH+"/er/mxER.js"];mxStencilRegistry.libraries.flowchart=[SHAPES_PATH+"/mxFlowchart.js",STENCIL_PATH+"/flowchart.xml"];mxStencilRegistry.libraries.ios= -[SHAPES_PATH+"/mockup/mxMockupiOS.js"];mxStencilRegistry.libraries.rackGeneral=[SHAPES_PATH+"/rack/mxRack.js",STENCIL_PATH+"/rack/general.xml"];mxStencilRegistry.libraries.rackF5=[STENCIL_PATH+"/rack/f5.xml"];mxStencilRegistry.libraries.lean_mapping=[SHAPES_PATH+"/mxLeanMap.js",STENCIL_PATH+"/lean_mapping.xml"];mxStencilRegistry.libraries.basic=[SHAPES_PATH+"/mxBasic.js",STENCIL_PATH+"/basic.xml"];mxStencilRegistry.libraries.ios7icons=[STENCIL_PATH+"/ios7/icons.xml"];mxStencilRegistry.libraries.ios7ui= -[SHAPES_PATH+"/ios7/mxIOS7Ui.js",STENCIL_PATH+"/ios7/misc.xml"];mxStencilRegistry.libraries.android=[SHAPES_PATH+"/mxAndroid.js",STENCIL_PATH+"/android/android.xml"];mxStencilRegistry.libraries["electrical/miscellaneous"]=[SHAPES_PATH+"/mxElectrical.js",STENCIL_PATH+"/electrical/miscellaneous.xml"];mxStencilRegistry.libraries["electrical/transmission"]=[SHAPES_PATH+"/mxElectrical.js",STENCIL_PATH+"/electrical/transmission.xml"];mxStencilRegistry.libraries["electrical/logic_gates"]=[SHAPES_PATH+"/mxElectrical.js", -STENCIL_PATH+"/electrical/logic_gates.xml"];mxStencilRegistry.libraries["electrical/abstract"]=[SHAPES_PATH+"/mxElectrical.js",STENCIL_PATH+"/electrical/abstract.xml"];mxStencilRegistry.libraries.infographic=[SHAPES_PATH+"/mxInfographic.js"];mxStencilRegistry.libraries["mockup/buttons"]=[SHAPES_PATH+"/mockup/mxMockupButtons.js"];mxStencilRegistry.libraries["mockup/containers"]=[SHAPES_PATH+"/mockup/mxMockupContainers.js"];mxStencilRegistry.libraries["mockup/forms"]=[SHAPES_PATH+"/mockup/mxMockupForms.js"]; -mxStencilRegistry.libraries["mockup/graphics"]=[SHAPES_PATH+"/mockup/mxMockupGraphics.js",STENCIL_PATH+"/mockup/misc.xml"];mxStencilRegistry.libraries["mockup/markup"]=[SHAPES_PATH+"/mockup/mxMockupMarkup.js"];mxStencilRegistry.libraries["mockup/misc"]=[SHAPES_PATH+"/mockup/mxMockupMisc.js",STENCIL_PATH+"/mockup/misc.xml"];mxStencilRegistry.libraries["mockup/navigation"]=[SHAPES_PATH+"/mockup/mxMockupNavigation.js",STENCIL_PATH+"/mockup/misc.xml"];mxStencilRegistry.libraries["mockup/text"]=[SHAPES_PATH+ -"/mockup/mxMockupText.js"];mxStencilRegistry.libraries.floorplan=[SHAPES_PATH+"/mxFloorplan.js",STENCIL_PATH+"/floorplan.xml"];mxStencilRegistry.libraries.bootstrap=[SHAPES_PATH+"/mxBootstrap.js",STENCIL_PATH+"/bootstrap.xml"];mxStencilRegistry.libraries.gmdl=[SHAPES_PATH+"/mxGmdl.js",STENCIL_PATH+"/gmdl.xml"];mxStencilRegistry.libraries.gcp2=[SHAPES_PATH+"/mxGCP2.js",STENCIL_PATH+"/gcp2.xml"];mxStencilRegistry.libraries.cabinets=[SHAPES_PATH+"/mxCabinets.js",STENCIL_PATH+"/cabinets.xml"];mxStencilRegistry.libraries.archimate= -[SHAPES_PATH+"/mxArchiMate.js"];mxStencilRegistry.libraries.archimate3=[SHAPES_PATH+"/mxArchiMate3.js"];mxStencilRegistry.libraries.sysml=[SHAPES_PATH+"/mxSysML.js"];mxStencilRegistry.libraries.eip=[SHAPES_PATH+"/mxEip.js",STENCIL_PATH+"/eip.xml"];mxStencilRegistry.libraries.networks=[SHAPES_PATH+"/mxNetworks.js",STENCIL_PATH+"/networks.xml"];mxStencilRegistry.libraries.aws3d=[SHAPES_PATH+"/mxAWS3D.js",STENCIL_PATH+"/aws3d.xml"];mxStencilRegistry.libraries.aws4=[SHAPES_PATH+"/mxAWS4.js",STENCIL_PATH+ -"/aws4.xml"];mxStencilRegistry.libraries.aws4b=[SHAPES_PATH+"/mxAWS4.js",STENCIL_PATH+"/aws4.xml"];mxStencilRegistry.libraries.veeam=[STENCIL_PATH+"/veeam/2d.xml",STENCIL_PATH+"/veeam/3d.xml",STENCIL_PATH+"/veeam/veeam.xml"];mxStencilRegistry.libraries.pid2inst=[SHAPES_PATH+"/pid2/mxPidInstruments.js"];mxStencilRegistry.libraries.pid2misc=[SHAPES_PATH+"/pid2/mxPidMisc.js",STENCIL_PATH+"/pid/misc.xml"];mxStencilRegistry.libraries.pid2valves=[SHAPES_PATH+"/pid2/mxPidValves.js"];mxStencilRegistry.libraries.pidFlowSensors= -[STENCIL_PATH+"/pid/flow_sensors.xml"];mxMarker.getPackageForType=function(a){var b=null;null!=a&&0<a.length&&("ER"==a.substring(0,2)?b="mxgraph.er":"sysML"==a.substring(0,5)&&(b="mxgraph.sysml"));return b};var C=mxMarker.createMarker;mxMarker.createMarker=function(a,b,c,f,d,l,p,e,k,g){if(null!=c&&null==mxMarker.markers[c]){var t=this.getPackageForType(c);null!=t&&mxStencilRegistry.getStencil(t)}return C.apply(this,arguments)};PrintDialog.prototype.create=function(a,b){function c(){B.value=Math.max(1, -Math.min(e,Math.max(parseInt(B.value),parseInt(A.value))));A.value=Math.max(1,Math.min(e,Math.min(parseInt(B.value),parseInt(A.value))))}function f(b){function c(b,c,d){var l=b.getGraphBounds(),p=0,e=0,k=ja.get(),g=1/b.pageScale,t=z.checked;if(t)var g=parseInt(S.value),A=parseInt(U.value),g=Math.min(k.height*A/(l.height/b.view.scale),k.width*g/(l.width/b.view.scale));else g=parseInt(v.value)/(100*b.pageScale),isNaN(g)&&(f=1/b.pageScale,v.value="100 %");k=mxRectangle.fromRectangle(k);k.width=Math.ceil(k.width* -f);k.height=Math.ceil(k.height*f);g*=f;!t&&b.pageVisible?(l=b.getPageLayout(),p-=l.x*k.width,e-=l.y*k.height):t=!0;if(null==c){c=PrintDialog.createPrintPreview(b,g,k,0,p,e,t);c.pageSelector=!1;c.mathEnabled=!1;b=a.getCurrentFile();null!=b&&(c.title=b.getTitle());var u=c.writeHead;c.writeHead=function(b){u.apply(this,arguments);null!=a.editor.fontCss&&(b.writeln('<style type="text/css">'),b.writeln(a.editor.fontCss),b.writeln("</style>"))};if("undefined"!==typeof MathJax){var B=c.renderPage;c.renderPage= -function(a,b,c,f,d,l){var p=mxClient.NO_FO;mxClient.NO_FO=this.graph.mathEnabled&&!this.useForeignObjectForMath?!0:this.originalNoForeignObject;var e=B.apply(this,arguments);mxClient.NO_FO=p;this.graph.mathEnabled?this.mathEnabled=this.mathEnabled||!0:e.className="geDisableMathJax";return e}}c.open(null,null,d,!0)}else{k=b.background;if(null==k||""==k||k==mxConstants.NONE)k="#ffffff";c.backgroundColor=k;c.autoOrigin=t;c.appendGraph(b,g,p,e,d,!0)}return c}var f=parseInt(ka.value)/100;isNaN(f)&&(f= -1,ka.value="100 %");var f=.75*f,l=A.value,p=B.value,e=!t.checked,g=null;e&&(e=l==k&&p==k);if(!e&&null!=a.pages&&a.pages.length){var u=0,e=a.pages.length-1;t.checked||(u=parseInt(l)-1,e=parseInt(p)-1);for(var m=u;m<=e;m++){var n=a.pages[m],l=n==a.currentPage?d:null;if(null==l){var l=a.createTemporaryGraph(d.getStylesheet()),p=!0,u=!1,y=null,D=null;null==n.viewState&&null==n.root&&a.updatePageRoot(n);null!=n.viewState&&(p=n.viewState.pageVisible,u=n.viewState.mathEnabled,y=n.viewState.background,D= -n.viewState.backgroundImage);l.background=y;l.backgroundImage=null!=D?new mxImage(D.src,D.width,D.height):null;l.pageVisible=p;l.mathEnabled=u;var x=l.getGlobalVariable;l.getGlobalVariable=function(b){return"page"==b?n.getName():"pagenumber"==b?m+1:"pagecount"==b?null!=a.pages?a.pages.length:1:x.apply(this,arguments)};document.body.appendChild(l.container);a.updatePageRoot(n);l.model.setRoot(n.root)}g=c(l,g,m!=e);l!=d&&l.container.parentNode.removeChild(l.container)}}else g=c(d);null==g?a.handleError({message:mxResources.get("errorUpdatingPreview")}): -(g.mathEnabled&&(e=g.wnd.document,e.writeln('<script type="text/x-mathjax-config">'),e.writeln("MathJax.Hub.Config({"),e.writeln("showMathMenu: false,"),e.writeln('messageStyle: "none",'),e.writeln('jax: ["input/TeX", "input/MathML", "input/AsciiMath", "output/HTML-CSS"],'),e.writeln('extensions: ["tex2jax.js", "mml2jax.js", "asciimath2jax.js"],'),e.writeln('"HTML-CSS": {'),e.writeln("imageFont: null"),e.writeln("},"),e.writeln("TeX: {"),e.writeln('extensions: ["AMSmath.js", "AMSsymbols.js", "noErrors.js", "noUndefined.js"]'), -e.writeln("},"),e.writeln("tex2jax: {"),e.writeln('\tignoreClass: "geDisableMathJax"'),e.writeln("},"),e.writeln("asciimath2jax: {"),e.writeln('\tignoreClass: "geDisableMathJax"'),e.writeln("}"),e.writeln("});"),b&&(e.writeln("MathJax.Hub.Queue(function () {"),e.writeln("window.print();"),e.writeln("});")),e.writeln("\x3c/script>"),e.writeln('<script type="text/javascript" src="'+DRAW_MATH_URL+'/MathJax.js">\x3c/script>')),g.closeDocument(),!g.mathEnabled&&b&&PrintDialog.printPreview(g))}var d=a.editor.graph, -l=document.createElement("div"),p=document.createElement("h3");p.style.width="100%";p.style.textAlign="center";p.style.marginTop="0px";mxUtils.write(p,b||mxResources.get("print"));l.appendChild(p);var e=1,k=1,g=document.createElement("div");g.style.cssText="border-bottom:1px solid lightGray;padding-bottom:12px;margin-bottom:12px;";var t=document.createElement("input");t.style.cssText="margin-right:8px;margin-bottom:8px;";t.setAttribute("value","all");t.setAttribute("type","radio");t.setAttribute("name", -"pages-printdialog");g.appendChild(t);p=document.createElement("span");mxUtils.write(p,mxResources.get("printAllPages"));g.appendChild(p);mxUtils.br(g);var u=t.cloneNode(!0);t.setAttribute("checked","checked");u.setAttribute("value","range");g.appendChild(u);p=document.createElement("span");mxUtils.write(p,mxResources.get("pages")+":");g.appendChild(p);var A=document.createElement("input");A.style.cssText="margin:0 8px 0 8px;";A.setAttribute("value","1");A.setAttribute("type","number");A.setAttribute("min", -"1");A.style.width="50px";g.appendChild(A);p=document.createElement("span");mxUtils.write(p,mxResources.get("to"));g.appendChild(p);var B=A.cloneNode(!0);g.appendChild(B);mxEvent.addListener(A,"focus",function(){u.checked=!0});mxEvent.addListener(B,"focus",function(){u.checked=!0});mxEvent.addListener(A,"change",c);mxEvent.addListener(B,"change",c);if(null!=a.pages&&(e=a.pages.length,null!=a.currentPage))for(p=0;p<a.pages.length;p++)if(a.currentPage==a.pages[p]){k=p+1;A.value=k;B.value=k;break}A.setAttribute("max", -e);B.setAttribute("max",e);1<e&&l.appendChild(g);var m=document.createElement("div");m.style.marginBottom="10px";var n=document.createElement("input");n.style.marginRight="8px";n.setAttribute("value","adjust");n.setAttribute("type","radio");n.setAttribute("name","printZoom");m.appendChild(n);p=document.createElement("span");mxUtils.write(p,mxResources.get("adjustTo"));m.appendChild(p);var v=document.createElement("input");v.style.cssText="margin:0 8px 0 8px;";v.setAttribute("value","100 %");v.style.width= -"50px";m.appendChild(v);mxEvent.addListener(v,"focus",function(){n.checked=!0});l.appendChild(m);var g=g.cloneNode(!1),z=n.cloneNode(!0);z.setAttribute("value","fit");n.setAttribute("checked","checked");p=document.createElement("div");p.style.cssText="display:inline-block;height:100%;vertical-align:top;padding-top:2px;";p.appendChild(z);g.appendChild(p);m=document.createElement("table");m.style.display="inline-block";var y=document.createElement("tbody"),D=document.createElement("tr"),x=D.cloneNode(!0), -C=document.createElement("td"),q=C.cloneNode(!0),J=C.cloneNode(!0),P=C.cloneNode(!0),N=C.cloneNode(!0),ca=C.cloneNode(!0);C.style.textAlign="right";P.style.textAlign="right";mxUtils.write(C,mxResources.get("fitTo"));var S=document.createElement("input");S.style.cssText="margin:0 8px 0 8px;";S.setAttribute("value","1");S.setAttribute("min","1");S.setAttribute("type","number");S.style.width="40px";q.appendChild(S);p=document.createElement("span");mxUtils.write(p,mxResources.get("fitToSheetsAcross")); -J.appendChild(p);mxUtils.write(P,mxResources.get("fitToBy"));var U=S.cloneNode(!0);N.appendChild(U);mxEvent.addListener(S,"focus",function(){z.checked=!0});mxEvent.addListener(U,"focus",function(){z.checked=!0});p=document.createElement("span");mxUtils.write(p,mxResources.get("fitToSheetsDown"));ca.appendChild(p);D.appendChild(C);D.appendChild(q);D.appendChild(J);x.appendChild(P);x.appendChild(N);x.appendChild(ca);y.appendChild(D);y.appendChild(x);m.appendChild(y);g.appendChild(m);l.appendChild(g); -g=document.createElement("div");p=document.createElement("div");p.style.fontWeight="bold";p.style.marginBottom="12px";mxUtils.write(p,mxResources.get("paperSize"));g.appendChild(p);p=document.createElement("div");p.style.marginBottom="12px";var ja=PageSetupDialog.addPageFormatPanel(p,"printdialog",a.editor.graph.pageFormat||mxConstants.PAGE_FORMAT_A4_PORTRAIT);g.appendChild(p);p=document.createElement("span");mxUtils.write(p,mxResources.get("pageScale"));g.appendChild(p);var ka=document.createElement("input"); -ka.style.cssText="margin:0 8px 0 8px;";ka.setAttribute("value","100 %");ka.style.width="60px";g.appendChild(ka);l.appendChild(g);p=document.createElement("div");p.style.cssText="text-align:right;margin:48px 0 0 0;";g=mxUtils.button(mxResources.get("cancel"),function(){a.hideDialog()});g.className="geBtn";a.editor.cancelFirst&&p.appendChild(g);a.isOffline()||(m=mxUtils.button(mxResources.get("help"),function(){d.openLink("https://desk.draw.io/support/solutions/articles/16000048947")}),m.className= -"geBtn",p.appendChild(m));PrintDialog.previewEnabled&&(m=mxUtils.button(mxResources.get("preview"),function(){a.hideDialog();f(!1)}),m.className="geBtn",p.appendChild(m));m=mxUtils.button(mxResources.get(PrintDialog.previewEnabled?"print":"ok"),function(){a.hideDialog();f(!0)});m.className="geBtn gePrimaryBtn";p.appendChild(m);a.editor.cancelFirst||p.appendChild(g);l.appendChild(p);this.container=l};var A=ChangePageSetup.prototype.execute;ChangePageSetup.prototype.execute=function(){null==this.page&& -(this.page=this.ui.currentPage);this.page!=this.ui.currentPage?null!=this.page.viewState&&(this.ignoreColor||(this.page.viewState.background=this.color),this.ignoreImage||(this.page.viewState.backgroundImage=this.image),null!=this.format&&(this.page.viewState.pageFormat=this.format),null!=this.mathEnabled&&(this.page.viewState.mathEnabled=this.mathEnabled),null!=this.shadowVisible&&(this.page.viewState.shadowVisible=this.shadowVisible)):(A.apply(this,arguments),null!=this.mathEnabled&&this.mathEnabled!= -this.ui.isMathEnabled()&&(this.ui.setMathEnabled(this.mathEnabled),this.mathEnabled=!this.mathEnabled),null!=this.shadowVisible&&this.shadowVisible!=this.ui.editor.graph.shadowVisible&&(this.ui.editor.graph.setShadowVisible(this.shadowVisible),this.shadowVisible=!this.shadowVisible))};Editor.prototype.useCanvasForExport=!1;try{var B=document.createElement("canvas"),D=new Image;D.onload=function(){try{B.getContext("2d").drawImage(D,0,0);var a=B.toDataURL("image/png");Editor.prototype.useCanvasForExport= +0,c.marginBottom=b.marginBottom||0,c.autoAddCol="1"==mxUtils.getValue(b,"autoAddCol","0"),c.autoAddRow="1"==mxUtils.getValue(b,"autoAddRow",c.autoAddCol?"0":"1"),c.colWidths=b.colWidths||"100",c.rowHeights=b.rowHeights||"50",c}return f.apply(this,arguments)};this.updateGlobalUrlVariables()};Graph.prototype.updateGlobalUrlVariables=function(){this.globalVars=Editor.globalVars;if(null!=urlParams.vars)try{this.globalVars=null!=this.globalVars?mxUtils.clone(this.globalVars):{};var a=JSON.parse(decodeURIComponent(urlParams.vars)); +if(null!=a)for(var b in a)this.globalVars[b]=a[b]}catch(E){null!=window.console&&console.log("Error in vars URL parameter: "+E)}};Graph.prototype.getExportVariables=function(){return null!=this.globalVars?mxUtils.clone(this.globalVars):{}};var u=Graph.prototype.getGlobalVariable;Graph.prototype.getGlobalVariable=function(a){var b=u.apply(this,arguments);null==b&&null!=this.globalVars&&(b=this.globalVars[a]);return b};Graph.prototype.getDefaultStylesheet=function(){if(null==this.defaultStylesheet){var a= +this.themes["default-style2"];this.defaultStylesheet=(new mxCodec(a.ownerDocument)).decode(a)}return this.defaultStylesheet};Graph.prototype.isViewer=function(){return urlParams.viewer};var v=Graph.prototype.getSvg;Graph.prototype.getSvg=function(){var a=null;null!=this.themes&&"darkTheme"==this.defaultThemeName&&(a=this.stylesheet,this.stylesheet=this.getDefaultStylesheet(),this.refresh());var b=v.apply(this,arguments);null!=a&&(this.stylesheet=a,this.refresh());return b};var t=Graph.prototype.isCssTransformsSupported; +Graph.prototype.isCssTransformsSupported=function(){return t.apply(this,arguments)&&!mxClient.IS_SF};var y=mxGraphView.prototype.validateBackgroundPage;mxGraphView.prototype.validateBackgroundPage=function(){y.apply(this,arguments);if(mxClient.IS_GC&&null!=this.getDrawPane()){var a=this.getDrawPane().parentNode;!this.graph.mathEnabled||mxClient.NO_FO||null!=this.webKitForceRepaintNode&&null!=this.webKitForceRepaintNode.parentNode||"svg"!=this.graph.container.firstChild.nodeName?null==this.webKitForceRepaintNode|| +this.graph.mathEnabled&&("svg"==this.graph.container.firstChild.nodeName||this.graph.container.firstChild==this.webKitForceRepaintNode)||(null!=this.webKitForceRepaintNode.parentNode&&this.webKitForceRepaintNode.parentNode.removeChild(this.webKitForceRepaintNode),this.webKitForceRepaintNode=null):(this.webKitForceRepaintNode=document.createElement("div"),this.webKitForceRepaintNode.style.cssText="position:absolute;",a.ownerSVGElement.parentNode.insertBefore(this.webKitForceRepaintNode,a.ownerSVGElement))}}; +var x=Graph.prototype.loadStylesheet;Graph.prototype.loadStylesheet=function(){x.apply(this,arguments);this.currentStyle="default-style2"};Graph.prototype.handleCustomLink=function(a){if("data:action/json,"==a.substring(0,17)&&(a=JSON.parse(a.substring(17)),null!=a.actions)){for(var b=0;b<a.actions.length;b++){var c=a.actions[b];if(null!=c.open)if(this.isCustomLink(c.open)){if(!this.customLinkClicked(c.open))return}else this.openLink(c.open)}this.model.beginUpdate();try{for(b=0;b<a.actions.length;b++)c= +a.actions[b],null!=c.toggle&&this.toggleCells(this.getCellsForAction(c.toggle,!0)),null!=c.show&&this.setCellsVisible(this.getCellsForAction(c.show,!0),!0),null!=c.hide&&this.setCellsVisible(this.getCellsForAction(c.hide,!0),!1)}finally{this.model.endUpdate()}for(b=0;b<a.actions.length;b++){var c=a.actions[b],f=[];null!=c.select&&this.isEnabled()&&(f=this.getCellsForAction(c.select),this.setSelectionCells(f));null!=c.highlight&&(f=this.getCellsForAction(c.highlight),this.highlightCells(f,c.highlight.color, +c.highlight.duration,c.highlight.opacity));null!=c.scroll&&(f=this.getCellsForAction(c.scroll));0<f.length&&this.scrollCellToVisible(f[0])}}};Graph.prototype.updateCustomLinksForCell=function(a,b){var c=this.getLinkForCell(b);null!=c&&"data:action/json,"==c.substring(0,17)&&this.setLinkForCell(b,this.updateCustomLink(a,c));if(this.isHtmlLabel(b)){var f=document.createElement("div");f.innerHTML=this.getLabel(b);for(var d=f.getElementsByTagName("a"),l=!1,p=0;p<d.length;p++)c=d[p].getAttribute("href"), +null!=c&&"data:action/json,"==c.substring(0,17)&&(d[p].setAttribute("href",this.updateCustomLink(a,c)),l=!0);l&&this.labelChanged(b,f.innerHTML)}};Graph.prototype.updateCustomLink=function(a,b){if("data:action/json,"==b.substring(0,17))try{var c=JSON.parse(b.substring(17));null!=c.actions&&(this.updateCustomLinkActions(a,c.actions),b="data:action/json,"+JSON.stringify(c))}catch(G){}return b};Graph.prototype.updateCustomLinkActions=function(a,b){for(var c=0;c<b.length;c++){var f=b[c];this.updateCustomLinkAction(a, +f.toggle);this.updateCustomLinkAction(a,f.show);this.updateCustomLinkAction(a,f.hide);this.updateCustomLinkAction(a,f.select);this.updateCustomLinkAction(a,f.highlight);this.updateCustomLinkAction(a,f.scroll)}};Graph.prototype.updateCustomLinkAction=function(a,b){if(null!=b&&null!=b.cells){for(var c=[],f=0;f<b.cells.length;f++)if("*"==b.cells[f])c.push(b.cells[f]);else{var d=a[b.cells[f]];null!=d?""!=d&&c.push(d):c.push(b.cells[f])}b.cells=c}};Graph.prototype.getCellsForAction=function(a,b){return this.getCellsById(a.cells).concat(this.getCellsForTags(a.tags, +null,null,b))};Graph.prototype.getCellsById=function(a){var b=[];if(null!=a)for(var c=0;c<a.length;c++)if("*"==a[c])var f=this.getDefaultParent(),b=b.concat(this.model.filterDescendants(function(a){return a!=f},f));else{var d=this.model.getCell(a[c]);null!=d&&b.push(d)}return b};Graph.prototype.getCellsForTags=function(a,b,c,f){var d=[];if(null!=a){b=null!=b?b:this.model.getDescendants(this.model.getRoot());c=null!=c?c:"tags";for(var l=0,p={},e=0;e<a.length;e++)0<a[e].length&&(p[a[e].toLowerCase()]= +!0,l++);for(e=0;e<b.length;e++)if(f&&this.model.getParent(b[e])==this.model.root||this.model.isVertex(b[e])||this.model.isEdge(b[e])){var k=null!=b[e].value&&"object"==typeof b[e].value?mxUtils.trim(b[e].value.getAttribute(c)||""):"",g=!1;if(0<k.length){if(k=k.toLowerCase().split(" "),k.length>=a.length){for(var t=g=0;t<k.length&&g<l;t++)null!=p[k[t]]&&g++;g=g==l}}else g=0==a.length;g&&d.push(b[e])}}return d};Graph.prototype.toggleCells=function(a){this.model.beginUpdate();try{for(var b=0;b<a.length;b++)this.model.setVisible(a[b], +!this.model.isVisible(a[b]))}finally{this.model.endUpdate()}};Graph.prototype.setCellsVisible=function(a,b){this.model.beginUpdate();try{for(var c=0;c<a.length;c++)this.model.setVisible(a[c],b)}finally{this.model.endUpdate()}};Graph.prototype.highlightCells=function(a,b,c,f){for(var d=0;d<a.length;d++)this.highlightCell(a[d],b,c,f)};Graph.prototype.highlightCell=function(a,b,c,f){b=null!=b?b:mxConstants.DEFAULT_VALID_COLOR;c=null!=c?c:1E3;a=this.view.getState(a);if(null!=a){var d=Math.max(5,mxUtils.getValue(a.style, +mxConstants.STYLE_STROKEWIDTH,1)+4),l=new mxCellHighlight(this,b,d,!1);null!=f&&(l.opacity=f);l.highlight(a);window.setTimeout(function(){null!=l.shape&&(mxUtils.setPrefixedStyle(l.shape.node.style,"transition","all 1200ms ease-in-out"),l.shape.node.style.opacity=0);window.setTimeout(function(){l.destroy()},1200)},c)}};Graph.prototype.addSvgShadow=function(a,b,c){c=null!=c?c:!1;var f=a.ownerDocument,d=null!=f.createElementNS?f.createElementNS(mxConstants.NS_SVG,"filter"):f.createElement("filter"); +d.setAttribute("id",this.shadowId);var l=null!=f.createElementNS?f.createElementNS(mxConstants.NS_SVG,"feGaussianBlur"):f.createElement("feGaussianBlur");l.setAttribute("in","SourceAlpha");l.setAttribute("stdDeviation",this.svgShadowBlur);l.setAttribute("result","blur");d.appendChild(l);l=null!=f.createElementNS?f.createElementNS(mxConstants.NS_SVG,"feOffset"):f.createElement("feOffset");l.setAttribute("in","blur");l.setAttribute("dx",this.svgShadowSize);l.setAttribute("dy",this.svgShadowSize);l.setAttribute("result", +"offsetBlur");d.appendChild(l);l=null!=f.createElementNS?f.createElementNS(mxConstants.NS_SVG,"feFlood"):f.createElement("feFlood");l.setAttribute("flood-color",this.svgShadowColor);l.setAttribute("flood-opacity",this.svgShadowOpacity);l.setAttribute("result","offsetColor");d.appendChild(l);l=null!=f.createElementNS?f.createElementNS(mxConstants.NS_SVG,"feComposite"):f.createElement("feComposite");l.setAttribute("in","offsetColor");l.setAttribute("in2","offsetBlur");l.setAttribute("operator","in"); +l.setAttribute("result","offsetBlur");d.appendChild(l);l=null!=f.createElementNS?f.createElementNS(mxConstants.NS_SVG,"feBlend"):f.createElement("feBlend");l.setAttribute("in","SourceGraphic");l.setAttribute("in2","offsetBlur");d.appendChild(l);l=a.getElementsByTagName("defs");0==l.length?(f=null!=f.createElementNS?f.createElementNS(mxConstants.NS_SVG,"defs"):f.createElement("defs"),null!=a.firstChild?a.insertBefore(f,a.firstChild):a.appendChild(f)):f=l[0];f.appendChild(d);c||(b=null!=b?b:a.getElementsByTagName("g")[0], +null!=b&&(b.setAttribute("filter","url(#"+this.shadowId+")"),isNaN(parseInt(a.getAttribute("width")))||(a.setAttribute("width",parseInt(a.getAttribute("width"))+6),a.setAttribute("height",parseInt(a.getAttribute("height"))+6),b=a.getAttribute("viewBox"),null!=b&&0<b.length&&(b=b.split(" "),3<b.length&&(w=parseFloat(b[2])+6,h=parseFloat(b[3])+6,a.setAttribute("viewBox",b[0]+" "+b[1]+" "+w+" "+h))))));return d};Graph.prototype.setShadowVisible=function(a,b){mxClient.IS_SVG&&(b=null!=b?b:!0,(this.shadowVisible= +a)?this.view.getDrawPane().setAttribute("filter","url(#"+this.shadowId+")"):this.view.getDrawPane().removeAttribute("filter"),b&&this.fireEvent(new mxEventObject("shadowVisibleChanged")))};Graph.prototype.selectUnlockedLayer=function(){if(null==this.defaultParent){var a=this.model.getChildCount(this.model.root),b,c=0;do b=this.model.getChildAt(this.model.root,c);while(c++<a&&"1"==mxUtils.getValue(this.getCellStyle(b),"locked","0"));null!=b&&this.setDefaultParent(b)}};mxStencilRegistry.libraries.mockup= +[SHAPES_PATH+"/mockup/mxMockupButtons.js"];mxStencilRegistry.libraries.arrows2=[SHAPES_PATH+"/mxArrows.js"];mxStencilRegistry.libraries.atlassian=[STENCIL_PATH+"/atlassian.xml",SHAPES_PATH+"/mxAtlassian.js"];mxStencilRegistry.libraries.bpmn=[SHAPES_PATH+"/bpmn/mxBpmnShape2.js",STENCIL_PATH+"/bpmn.xml"];mxStencilRegistry.libraries.dfd=[SHAPES_PATH+"/mxDFD.js"];mxStencilRegistry.libraries.er=[SHAPES_PATH+"/er/mxER.js"];mxStencilRegistry.libraries.flowchart=[SHAPES_PATH+"/mxFlowchart.js",STENCIL_PATH+ +"/flowchart.xml"];mxStencilRegistry.libraries.ios=[SHAPES_PATH+"/mockup/mxMockupiOS.js"];mxStencilRegistry.libraries.rackGeneral=[SHAPES_PATH+"/rack/mxRack.js",STENCIL_PATH+"/rack/general.xml"];mxStencilRegistry.libraries.rackF5=[STENCIL_PATH+"/rack/f5.xml"];mxStencilRegistry.libraries.lean_mapping=[SHAPES_PATH+"/mxLeanMap.js",STENCIL_PATH+"/lean_mapping.xml"];mxStencilRegistry.libraries.basic=[SHAPES_PATH+"/mxBasic.js",STENCIL_PATH+"/basic.xml"];mxStencilRegistry.libraries.ios7icons=[STENCIL_PATH+ +"/ios7/icons.xml"];mxStencilRegistry.libraries.ios7ui=[SHAPES_PATH+"/ios7/mxIOS7Ui.js",STENCIL_PATH+"/ios7/misc.xml"];mxStencilRegistry.libraries.android=[SHAPES_PATH+"/mxAndroid.js",STENCIL_PATH+"/android/android.xml"];mxStencilRegistry.libraries["electrical/miscellaneous"]=[SHAPES_PATH+"/mxElectrical.js",STENCIL_PATH+"/electrical/miscellaneous.xml"];mxStencilRegistry.libraries["electrical/transmission"]=[SHAPES_PATH+"/mxElectrical.js",STENCIL_PATH+"/electrical/transmission.xml"];mxStencilRegistry.libraries["electrical/logic_gates"]= +[SHAPES_PATH+"/mxElectrical.js",STENCIL_PATH+"/electrical/logic_gates.xml"];mxStencilRegistry.libraries["electrical/abstract"]=[SHAPES_PATH+"/mxElectrical.js",STENCIL_PATH+"/electrical/abstract.xml"];mxStencilRegistry.libraries.infographic=[SHAPES_PATH+"/mxInfographic.js"];mxStencilRegistry.libraries["mockup/buttons"]=[SHAPES_PATH+"/mockup/mxMockupButtons.js"];mxStencilRegistry.libraries["mockup/containers"]=[SHAPES_PATH+"/mockup/mxMockupContainers.js"];mxStencilRegistry.libraries["mockup/forms"]= +[SHAPES_PATH+"/mockup/mxMockupForms.js"];mxStencilRegistry.libraries["mockup/graphics"]=[SHAPES_PATH+"/mockup/mxMockupGraphics.js",STENCIL_PATH+"/mockup/misc.xml"];mxStencilRegistry.libraries["mockup/markup"]=[SHAPES_PATH+"/mockup/mxMockupMarkup.js"];mxStencilRegistry.libraries["mockup/misc"]=[SHAPES_PATH+"/mockup/mxMockupMisc.js",STENCIL_PATH+"/mockup/misc.xml"];mxStencilRegistry.libraries["mockup/navigation"]=[SHAPES_PATH+"/mockup/mxMockupNavigation.js",STENCIL_PATH+"/mockup/misc.xml"];mxStencilRegistry.libraries["mockup/text"]= +[SHAPES_PATH+"/mockup/mxMockupText.js"];mxStencilRegistry.libraries.floorplan=[SHAPES_PATH+"/mxFloorplan.js",STENCIL_PATH+"/floorplan.xml"];mxStencilRegistry.libraries.bootstrap=[SHAPES_PATH+"/mxBootstrap.js",STENCIL_PATH+"/bootstrap.xml"];mxStencilRegistry.libraries.gmdl=[SHAPES_PATH+"/mxGmdl.js",STENCIL_PATH+"/gmdl.xml"];mxStencilRegistry.libraries.gcp2=[SHAPES_PATH+"/mxGCP2.js",STENCIL_PATH+"/gcp2.xml"];mxStencilRegistry.libraries.cabinets=[SHAPES_PATH+"/mxCabinets.js",STENCIL_PATH+"/cabinets.xml"]; +mxStencilRegistry.libraries.archimate=[SHAPES_PATH+"/mxArchiMate.js"];mxStencilRegistry.libraries.archimate3=[SHAPES_PATH+"/mxArchiMate3.js"];mxStencilRegistry.libraries.sysml=[SHAPES_PATH+"/mxSysML.js"];mxStencilRegistry.libraries.eip=[SHAPES_PATH+"/mxEip.js",STENCIL_PATH+"/eip.xml"];mxStencilRegistry.libraries.networks=[SHAPES_PATH+"/mxNetworks.js",STENCIL_PATH+"/networks.xml"];mxStencilRegistry.libraries.aws3d=[SHAPES_PATH+"/mxAWS3D.js",STENCIL_PATH+"/aws3d.xml"];mxStencilRegistry.libraries.aws4= +[SHAPES_PATH+"/mxAWS4.js",STENCIL_PATH+"/aws4.xml"];mxStencilRegistry.libraries.aws4b=[SHAPES_PATH+"/mxAWS4.js",STENCIL_PATH+"/aws4.xml"];mxStencilRegistry.libraries.veeam=[STENCIL_PATH+"/veeam/2d.xml",STENCIL_PATH+"/veeam/3d.xml",STENCIL_PATH+"/veeam/veeam.xml"];mxStencilRegistry.libraries.pid2inst=[SHAPES_PATH+"/pid2/mxPidInstruments.js"];mxStencilRegistry.libraries.pid2misc=[SHAPES_PATH+"/pid2/mxPidMisc.js",STENCIL_PATH+"/pid/misc.xml"];mxStencilRegistry.libraries.pid2valves=[SHAPES_PATH+"/pid2/mxPidValves.js"]; +mxStencilRegistry.libraries.pidFlowSensors=[STENCIL_PATH+"/pid/flow_sensors.xml"];mxMarker.getPackageForType=function(a){var b=null;null!=a&&0<a.length&&("ER"==a.substring(0,2)?b="mxgraph.er":"sysML"==a.substring(0,5)&&(b="mxgraph.sysml"));return b};var C=mxMarker.createMarker;mxMarker.createMarker=function(a,b,c,f,d,l,p,e,k,g){if(null!=c&&null==mxMarker.markers[c]){var t=this.getPackageForType(c);null!=t&&mxStencilRegistry.getStencil(t)}return C.apply(this,arguments)};PrintDialog.prototype.create= +function(a,b){function c(){B.value=Math.max(1,Math.min(e,Math.max(parseInt(B.value),parseInt(A.value))));A.value=Math.max(1,Math.min(e,Math.min(parseInt(B.value),parseInt(A.value))))}function f(b){function c(b,c,d){var l=b.getGraphBounds(),p=0,e=0,k=ja.get(),g=1/b.pageScale,t=z.checked;if(t)var g=parseInt(S.value),A=parseInt(U.value),g=Math.min(k.height*A/(l.height/b.view.scale),k.width*g/(l.width/b.view.scale));else g=parseInt(v.value)/(100*b.pageScale),isNaN(g)&&(f=1/b.pageScale,v.value="100 %"); +k=mxRectangle.fromRectangle(k);k.width=Math.ceil(k.width*f);k.height=Math.ceil(k.height*f);g*=f;!t&&b.pageVisible?(l=b.getPageLayout(),p-=l.x*k.width,e-=l.y*k.height):t=!0;if(null==c){c=PrintDialog.createPrintPreview(b,g,k,0,p,e,t);c.pageSelector=!1;c.mathEnabled=!1;b=a.getCurrentFile();null!=b&&(c.title=b.getTitle());var u=c.writeHead;c.writeHead=function(b){u.apply(this,arguments);null!=a.editor.fontCss&&(b.writeln('<style type="text/css">'),b.writeln(a.editor.fontCss),b.writeln("</style>"))};if("undefined"!== +typeof MathJax){var B=c.renderPage;c.renderPage=function(a,b,c,f,d,l){var p=mxClient.NO_FO;mxClient.NO_FO=this.graph.mathEnabled&&!this.useForeignObjectForMath?!0:this.originalNoForeignObject;var e=B.apply(this,arguments);mxClient.NO_FO=p;this.graph.mathEnabled?this.mathEnabled=this.mathEnabled||!0:e.className="geDisableMathJax";return e}}c.open(null,null,d,!0)}else{k=b.background;if(null==k||""==k||k==mxConstants.NONE)k="#ffffff";c.backgroundColor=k;c.autoOrigin=t;c.appendGraph(b,g,p,e,d,!0)}return c} +var f=parseInt(ka.value)/100;isNaN(f)&&(f=1,ka.value="100 %");var f=.75*f,l=A.value,p=B.value,e=!t.checked,g=null;e&&(e=l==k&&p==k);if(!e&&null!=a.pages&&a.pages.length){var u=0,e=a.pages.length-1;t.checked||(u=parseInt(l)-1,e=parseInt(p)-1);for(var m=u;m<=e;m++){var n=a.pages[m],l=n==a.currentPage?d:null;if(null==l){var l=a.createTemporaryGraph(d.getStylesheet()),p=!0,u=!1,y=null,D=null;null==n.viewState&&null==n.root&&a.updatePageRoot(n);null!=n.viewState&&(p=n.viewState.pageVisible,u=n.viewState.mathEnabled, +y=n.viewState.background,D=n.viewState.backgroundImage);l.background=y;l.backgroundImage=null!=D?new mxImage(D.src,D.width,D.height):null;l.pageVisible=p;l.mathEnabled=u;var x=l.getGlobalVariable;l.getGlobalVariable=function(b){return"page"==b?n.getName():"pagenumber"==b?m+1:"pagecount"==b?null!=a.pages?a.pages.length:1:x.apply(this,arguments)};document.body.appendChild(l.container);a.updatePageRoot(n);l.model.setRoot(n.root)}g=c(l,g,m!=e);l!=d&&l.container.parentNode.removeChild(l.container)}}else g= +c(d);null==g?a.handleError({message:mxResources.get("errorUpdatingPreview")}):(g.mathEnabled&&(e=g.wnd.document,e.writeln('<script type="text/x-mathjax-config">'),e.writeln("MathJax.Hub.Config({"),e.writeln("showMathMenu: false,"),e.writeln('messageStyle: "none",'),e.writeln('jax: ["input/TeX", "input/MathML", "input/AsciiMath", "output/HTML-CSS"],'),e.writeln('extensions: ["tex2jax.js", "mml2jax.js", "asciimath2jax.js"],'),e.writeln('"HTML-CSS": {'),e.writeln("imageFont: null"),e.writeln("},"),e.writeln("TeX: {"), +e.writeln('extensions: ["AMSmath.js", "AMSsymbols.js", "noErrors.js", "noUndefined.js"]'),e.writeln("},"),e.writeln("tex2jax: {"),e.writeln('\tignoreClass: "geDisableMathJax"'),e.writeln("},"),e.writeln("asciimath2jax: {"),e.writeln('\tignoreClass: "geDisableMathJax"'),e.writeln("}"),e.writeln("});"),b&&(e.writeln("MathJax.Hub.Queue(function () {"),e.writeln("window.print();"),e.writeln("});")),e.writeln("\x3c/script>"),e.writeln('<script type="text/javascript" src="'+DRAW_MATH_URL+'/MathJax.js">\x3c/script>')), +g.closeDocument(),!g.mathEnabled&&b&&PrintDialog.printPreview(g))}var d=a.editor.graph,l=document.createElement("div"),p=document.createElement("h3");p.style.width="100%";p.style.textAlign="center";p.style.marginTop="0px";mxUtils.write(p,b||mxResources.get("print"));l.appendChild(p);var e=1,k=1,g=document.createElement("div");g.style.cssText="border-bottom:1px solid lightGray;padding-bottom:12px;margin-bottom:12px;";var t=document.createElement("input");t.style.cssText="margin-right:8px;margin-bottom:8px;"; +t.setAttribute("value","all");t.setAttribute("type","radio");t.setAttribute("name","pages-printdialog");g.appendChild(t);p=document.createElement("span");mxUtils.write(p,mxResources.get("printAllPages"));g.appendChild(p);mxUtils.br(g);var u=t.cloneNode(!0);t.setAttribute("checked","checked");u.setAttribute("value","range");g.appendChild(u);p=document.createElement("span");mxUtils.write(p,mxResources.get("pages")+":");g.appendChild(p);var A=document.createElement("input");A.style.cssText="margin:0 8px 0 8px;"; +A.setAttribute("value","1");A.setAttribute("type","number");A.setAttribute("min","1");A.style.width="50px";g.appendChild(A);p=document.createElement("span");mxUtils.write(p,mxResources.get("to"));g.appendChild(p);var B=A.cloneNode(!0);g.appendChild(B);mxEvent.addListener(A,"focus",function(){u.checked=!0});mxEvent.addListener(B,"focus",function(){u.checked=!0});mxEvent.addListener(A,"change",c);mxEvent.addListener(B,"change",c);if(null!=a.pages&&(e=a.pages.length,null!=a.currentPage))for(p=0;p<a.pages.length;p++)if(a.currentPage== +a.pages[p]){k=p+1;A.value=k;B.value=k;break}A.setAttribute("max",e);B.setAttribute("max",e);1<e&&l.appendChild(g);var m=document.createElement("div");m.style.marginBottom="10px";var n=document.createElement("input");n.style.marginRight="8px";n.setAttribute("value","adjust");n.setAttribute("type","radio");n.setAttribute("name","printZoom");m.appendChild(n);p=document.createElement("span");mxUtils.write(p,mxResources.get("adjustTo"));m.appendChild(p);var v=document.createElement("input");v.style.cssText= +"margin:0 8px 0 8px;";v.setAttribute("value","100 %");v.style.width="50px";m.appendChild(v);mxEvent.addListener(v,"focus",function(){n.checked=!0});l.appendChild(m);var g=g.cloneNode(!1),z=n.cloneNode(!0);z.setAttribute("value","fit");n.setAttribute("checked","checked");p=document.createElement("div");p.style.cssText="display:inline-block;height:100%;vertical-align:top;padding-top:2px;";p.appendChild(z);g.appendChild(p);m=document.createElement("table");m.style.display="inline-block";var y=document.createElement("tbody"), +D=document.createElement("tr"),x=D.cloneNode(!0),C=document.createElement("td"),q=C.cloneNode(!0),J=C.cloneNode(!0),P=C.cloneNode(!0),N=C.cloneNode(!0),ca=C.cloneNode(!0);C.style.textAlign="right";P.style.textAlign="right";mxUtils.write(C,mxResources.get("fitTo"));var S=document.createElement("input");S.style.cssText="margin:0 8px 0 8px;";S.setAttribute("value","1");S.setAttribute("min","1");S.setAttribute("type","number");S.style.width="40px";q.appendChild(S);p=document.createElement("span");mxUtils.write(p, +mxResources.get("fitToSheetsAcross"));J.appendChild(p);mxUtils.write(P,mxResources.get("fitToBy"));var U=S.cloneNode(!0);N.appendChild(U);mxEvent.addListener(S,"focus",function(){z.checked=!0});mxEvent.addListener(U,"focus",function(){z.checked=!0});p=document.createElement("span");mxUtils.write(p,mxResources.get("fitToSheetsDown"));ca.appendChild(p);D.appendChild(C);D.appendChild(q);D.appendChild(J);x.appendChild(P);x.appendChild(N);x.appendChild(ca);y.appendChild(D);y.appendChild(x);m.appendChild(y); +g.appendChild(m);l.appendChild(g);g=document.createElement("div");p=document.createElement("div");p.style.fontWeight="bold";p.style.marginBottom="12px";mxUtils.write(p,mxResources.get("paperSize"));g.appendChild(p);p=document.createElement("div");p.style.marginBottom="12px";var ja=PageSetupDialog.addPageFormatPanel(p,"printdialog",a.editor.graph.pageFormat||mxConstants.PAGE_FORMAT_A4_PORTRAIT);g.appendChild(p);p=document.createElement("span");mxUtils.write(p,mxResources.get("pageScale"));g.appendChild(p); +var ka=document.createElement("input");ka.style.cssText="margin:0 8px 0 8px;";ka.setAttribute("value","100 %");ka.style.width="60px";g.appendChild(ka);l.appendChild(g);p=document.createElement("div");p.style.cssText="text-align:right;margin:48px 0 0 0;";g=mxUtils.button(mxResources.get("cancel"),function(){a.hideDialog()});g.className="geBtn";a.editor.cancelFirst&&p.appendChild(g);a.isOffline()||(m=mxUtils.button(mxResources.get("help"),function(){d.openLink("https://desk.draw.io/support/solutions/articles/16000048947")}), +m.className="geBtn",p.appendChild(m));PrintDialog.previewEnabled&&(m=mxUtils.button(mxResources.get("preview"),function(){a.hideDialog();f(!1)}),m.className="geBtn",p.appendChild(m));m=mxUtils.button(mxResources.get(PrintDialog.previewEnabled?"print":"ok"),function(){a.hideDialog();f(!0)});m.className="geBtn gePrimaryBtn";p.appendChild(m);a.editor.cancelFirst||p.appendChild(g);l.appendChild(p);this.container=l};var A=ChangePageSetup.prototype.execute;ChangePageSetup.prototype.execute=function(){null== +this.page&&(this.page=this.ui.currentPage);this.page!=this.ui.currentPage?null!=this.page.viewState&&(this.ignoreColor||(this.page.viewState.background=this.color),this.ignoreImage||(this.page.viewState.backgroundImage=this.image),null!=this.format&&(this.page.viewState.pageFormat=this.format),null!=this.mathEnabled&&(this.page.viewState.mathEnabled=this.mathEnabled),null!=this.shadowVisible&&(this.page.viewState.shadowVisible=this.shadowVisible)):(A.apply(this,arguments),null!=this.mathEnabled&& +this.mathEnabled!=this.ui.isMathEnabled()&&(this.ui.setMathEnabled(this.mathEnabled),this.mathEnabled=!this.mathEnabled),null!=this.shadowVisible&&this.shadowVisible!=this.ui.editor.graph.shadowVisible&&(this.ui.editor.graph.setShadowVisible(this.shadowVisible),this.shadowVisible=!this.shadowVisible))};Editor.prototype.useCanvasForExport=!1;try{var B=document.createElement("canvas"),D=new Image;D.onload=function(){try{B.getContext("2d").drawImage(D,0,0);var a=B.toDataURL("image/png");Editor.prototype.useCanvasForExport= null!=a&&6<a.length}catch(J){}};D.src="data:image/svg+xml;base64,"+btoa(unescape(encodeURIComponent('<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1px" height="1px" version="1.1"><foreignObject pointer-events="all" width="1" height="1"><div xmlns="http://www.w3.org/1999/xhtml"></div></foreignObject></svg>')))}catch(z){}})(); -(function(){var a=new mxObjectCodec(new ChangePageSetup,["ui","previousColor","previousImage","previousFormat"]);a.beforeDecode=function(a,b,d){d.ui=a.ui;return b};a.afterDecode=function(a,b,d){d.previousColor=d.color;d.previousImage=d.image;d.previousFormat=d.format;null!=d.foldingEnabled&&(d.foldingEnabled=!d.foldingEnabled);null!=d.mathEnabled&&(d.mathEnabled=!d.mathEnabled);null!=d.shadowVisible&&(d.shadowVisible=!d.shadowVisible);return d};mxCodecRegistry.register(a)})();(function(){EditorUi.VERSION="11.2.8";EditorUi.compactUi="atlas"!=uiTheme;EditorUi.enableLogging="1"!=urlParams.stealth&&/.*\.draw\.io$/.test(window.location.hostname)&&"support.draw.io"!=window.location.hostname;EditorUi.drawHost="https://www.draw.io";EditorUi.lastErrorMessage=null;EditorUi.ignoredAnonymizedChars="\n\t`~!@#$%^&*()_+{}|:\"<>?-=[];'./,\n\t";EditorUi.templateFile=TEMPLATE_PATH+"/index.xml";EditorUi.cacheUrl="1"==urlParams.dev?"/cache":"https://rt.draw.io/cache";EditorUi.enablePlantUml= +(function(){var a=new mxObjectCodec(new ChangePageSetup,["ui","previousColor","previousImage","previousFormat"]);a.beforeDecode=function(a,b,d){d.ui=a.ui;return b};a.afterDecode=function(a,b,d){d.previousColor=d.color;d.previousImage=d.image;d.previousFormat=d.format;null!=d.foldingEnabled&&(d.foldingEnabled=!d.foldingEnabled);null!=d.mathEnabled&&(d.mathEnabled=!d.mathEnabled);null!=d.shadowVisible&&(d.shadowVisible=!d.shadowVisible);return d};mxCodecRegistry.register(a)})();(function(){EditorUi.VERSION="11.2.9";EditorUi.compactUi="atlas"!=uiTheme;EditorUi.enableLogging="1"!=urlParams.stealth&&/.*\.draw\.io$/.test(window.location.hostname)&&"support.draw.io"!=window.location.hostname;EditorUi.drawHost="https://www.draw.io";EditorUi.lastErrorMessage=null;EditorUi.ignoredAnonymizedChars="\n\t`~!@#$%^&*()_+{}|:\"<>?-=[];'./,\n\t";EditorUi.templateFile=TEMPLATE_PATH+"/index.xml";EditorUi.cacheUrl="1"==urlParams.dev?"/cache":"https://rt.draw.io/cache";EditorUi.enablePlantUml= EditorUi.enableLogging;EditorUi.isElectronApp=null!=window&&null!=window.process&&null!=window.process.versions&&null!=window.process.versions.electron;EditorUi.scratchpadHelpLink="https://desk.draw.io/support/solutions/articles/16000042367";EditorUi.logError=function(a,b,c,d,e){if("1"==urlParams.dev)EditorUi.debug("logError",a,b,c,d,e);else if(EditorUi.enableLogging)try{if(a!=EditorUi.lastErrorMessage&&(null==a||null==b||-1==a.indexOf("Script error")&&-1==a.indexOf("extension"))&&null!=a&&0>a.indexOf("DocumentClosedError")){EditorUi.lastErrorMessage= a;var f=0<=a.indexOf("NetworkError")||0<=a.indexOf("SecurityError")||0<=a.indexOf("NS_ERROR_FAILURE")||0<=a.indexOf("out of memory")?"CONFIG":"SEVERE",l=null!=window.DRAWIO_LOG_URL?window.DRAWIO_LOG_URL:"";e=null!=e?e:Error(a);(new Image).src=l+"/log?severity="+f+"&v="+encodeURIComponent(EditorUi.VERSION)+"&msg=clientError:"+encodeURIComponent(a)+":url:"+encodeURIComponent(window.location.href)+":lnum:"+encodeURIComponent(c)+(null!=d?":colno:"+encodeURIComponent(d):"")+(null!=e&&null!=e.stack?"&stack="+ encodeURIComponent(e.stack):"")}}catch(x){}};EditorUi.logEvent=function(a){if("1"==urlParams.dev)EditorUi.debug("logEvent",a);else if(EditorUi.enableLogging)try{var b=null!=window.DRAWIO_LOG_URL?window.DRAWIO_LOG_URL:"";(new Image).src=b+"/images/1x1.png?v="+encodeURIComponent(EditorUi.VERSION)+(null!=a?"&data="+encodeURIComponent(JSON.stringify(a)):"")}catch(p){}};EditorUi.sendReport=function(a,b){if("1"==urlParams.dev)EditorUi.debug("sendReport",a);else if(EditorUi.enableLogging)try{b=null!=b?b: @@ -8633,15 +8294,15 @@ null!=this.currentPage&&(this.currentPage.root=this.editor.graph.model.root)};Ed (b=b+"-"+this.currentPage.getName());return b};EditorUi.prototype.downloadFile=function(a,b,c,d,e,k,g,m,n,A){try{d=null!=d?d:this.editor.graph.isSelectionEmpty();var f=this.getBaseFilename(!e),l=f+"."+a;if("xml"==a){var p='<?xml version="1.0" encoding="UTF-8"?>\n'+this.getFileData(!0,null,null,null,d,e,null,null,null,b);this.saveData(l,a,p,"text/xml")}else if("html"==a)p=this.getHtml2(this.getFileData(!0),this.editor.graph,f),this.saveData(l,a,p,"text/html");else if("svg"!=a&&"xmlsvg"!=a||!this.spinner.spin(document.body, mxResources.get("export")))"xmlpng"==a?l=f+".png":"jpeg"==a&&(l=f+".jpg"),this.saveRequest(l,a,mxUtils.bind(this,function(b,c){try{var f=this.editor.graph.pageVisible;null!=k&&(this.editor.graph.pageVisible=k);var l=this.createDownloadRequest(b,a,d,c,g,e,m,n,A);this.editor.graph.pageVisible=f;return l}catch(R){this.handleError(R)}}));else{var t=null,u=mxUtils.bind(this,function(a){a.length<=MAX_REQUEST_SIZE?this.saveData(l,"svg",a,"image/svg+xml"):this.handleError({message:mxResources.get("drawingTooLarge")}, mxResources.get("error"),mxUtils.bind(this,function(){mxUtils.popup(t)}))});if("svg"==a){var v=this.editor.graph.background;if(g||v==mxConstants.NONE)v=null;var y=this.editor.graph.getSvg(v,null,null,null,null,d);c&&this.editor.graph.addSvgShadow(y);this.convertImages(y,mxUtils.bind(this,mxUtils.bind(this,function(a){this.spinner.stop();u('<?xml version="1.0" encoding="UTF-8"?>\n<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">\n'+mxUtils.getXml(a))})))}else l= -f+".svg",t=this.getFileData(!1,!0,null,mxUtils.bind(this,function(a){this.spinner.stop();u(a)}),d)}}catch(I){this.handleError(I)}};EditorUi.prototype.createDownloadRequest=function(a,b,c,d,e,k,g,m,n){var f=this.editor.graph,l=f.getGraphBounds();c=this.getFileData(!0,null,null,null,c,0==k?!1:"xmlpng"!=b);var p="",t="";if(l.width*l.height>MAX_AREA||c.length>MAX_REQUEST_SIZE)throw{message:mxResources.get("drawingTooLarge")};l="0";"pdf"==b&&0==k&&(t="&allPages=1");if("xmlpng"==b&&(l="1",b="png",null!= +f+".svg",t=this.getFileData(!1,!0,null,mxUtils.bind(this,function(a){this.spinner.stop();u(a)}),d)}}catch(H){this.handleError(H)}};EditorUi.prototype.createDownloadRequest=function(a,b,c,d,e,k,g,m,n){var f=this.editor.graph,l=f.getGraphBounds();c=this.getFileData(!0,null,null,null,c,0==k?!1:"xmlpng"!=b);var p="",t="";if(l.width*l.height>MAX_AREA||c.length>MAX_REQUEST_SIZE)throw{message:mxResources.get("drawingTooLarge")};l="0";"pdf"==b&&0==k&&(t="&allPages=1");if("xmlpng"==b&&(l="1",b="png",null!= this.pages&&null!=this.currentPage))for(k=0;k<this.pages.length;k++)if(this.pages[k]==this.currentPage){p="&from="+k;break}k=f.background;"png"==b&&e?k=mxConstants.NONE:e||null!=k&&k!=mxConstants.NONE||(k="#ffffff");e={globalVars:f.getExportVariables()};n&&(e.grid={size:f.gridSize,steps:f.view.gridSteps,color:f.view.gridColor});return new mxXmlRequest(EXPORT_URL,"format="+b+p+t+"&bg="+(null!=k?k:mxConstants.NONE)+"&base64="+d+"&embedXml="+l+"&xml="+encodeURIComponent(c)+(null!=a?"&filename="+encodeURIComponent(a): "")+"&extras="+encodeURIComponent(JSON.stringify(e))+(null!=g?"&scale="+g:"")+(null!=m?"&border="+m:""))};EditorUi.prototype.setMode=function(a,b){this.mode=a};EditorUi.prototype.loadDescriptor=function(a,b,c){var f=window.location.hash,d=mxUtils.bind(this,function(c){var d=null!=a.data?a.data:"";null!=c&&0<c.length&&(0<d.length&&(d+="\n"),d+=c);c=new LocalFile(this,"csv"!=a.format&&0<d.length?d:this.emptyDiagramXml,null!=urlParams.title?decodeURIComponent(urlParams.title):this.defaultFilename,!0); c.getHash=function(){return f};this.fileLoaded(c);"csv"==a.format&&this.importCsv(d,mxUtils.bind(this,function(a){this.editor.undoManager.clear();this.editor.setModified(!1);this.editor.setStatus("")}));if(null!=a.update){var l=null!=a.interval?parseInt(a.interval):6E4,e=null,p=mxUtils.bind(this,function(){var b=this.currentPage;mxUtils.post(a.update,"xml="+encodeURIComponent(mxUtils.getXml(this.editor.getGraphXml())),mxUtils.bind(this,function(a){b===this.currentPage&&(200<=a.getStatus()&&300>=a.getStatus()? (this.updateDiagram(a.getText()),k()):this.handleError({message:mxResources.get("error")+" "+a.getStatus()}))}),mxUtils.bind(this,function(a){this.handleError(a)}))}),k=mxUtils.bind(this,function(){window.clearTimeout(e);e=window.setTimeout(p,l)});this.editor.addListener("pageSelected",mxUtils.bind(this,function(){k();p()}));k();p()}null!=b&&b()});if(null!=a.url&&0<a.url.length){var l=a.url;/^https?:\/\//.test(l)&&!this.editor.isCorsEnabledForUrl(l)&&(l=PROXY_URL+"?url="+encodeURIComponent(l));this.loadUrl(l, mxUtils.bind(this,function(a){d(a)}),mxUtils.bind(this,function(a){null!=c&&c(a)}))}else d("")};EditorUi.prototype.updateDiagram=function(a){function b(a){var b=new mxCellOverlay(a.image||d.warningImage,a.tooltip,a.align,a.valign,a.offset);b.addListener(mxEvent.CLICK,function(b,c){f.alert(a.tooltip)});return b}var c=null,f=this;if(null!=a&&0<a.length&&(c=mxUtils.parseXml(a),a=null!=c?c.documentElement:null,null!=a&&"updates"==a.nodeName)){var d=this.editor.graph,e=d.getModel();e.beginUpdate();var k= null;try{for(a=a.firstChild;null!=a;){if("update"==a.nodeName){var g=e.getCell(a.getAttribute("id"));if(null!=g){try{var m=a.getAttribute("value");if(null!=m){var A=mxUtils.parseXml(m).documentElement;if(null!=A)if("1"==A.getAttribute("replace-value"))e.setValue(g,A);else for(var B=A.attributes,n=0;n<B.length;n++)d.setAttributeForCell(g,B[n].nodeName,0<B[n].nodeValue.length?B[n].nodeValue:null)}}catch(K){null!=window.console&&console.log("Error in value for "+g.id+": "+K)}try{var z=a.getAttribute("style"); -null!=z&&d.model.setStyle(g,z)}catch(K){null!=window.console&&console.log("Error in style for "+g.id+": "+K)}try{var q=a.getAttribute("icon");if(null!=q){var F=0<q.length?JSON.parse(q):null;null!=F&&F.append||d.removeCellOverlays(g);null!=F&&d.addCellOverlay(g,b(F))}}catch(K){null!=window.console&&console.log("Error in icon for "+g.id+": "+K)}try{var G=a.getAttribute("geometry");if(null!=G){var G=JSON.parse(G),H=d.getCellGeometry(g);if(null!=H){H=H.clone();for(key in G){var I=parseFloat(G[key]);"dx"== -key?H.x+=I:"dy"==key?H.y+=I:"dw"==key?H.width+=I:"dh"==key?H.height+=I:H[key]=parseFloat(G[key])}d.model.setGeometry(g,H)}}}catch(K){null!=window.console&&console.log("Error in icon for "+g.id+": "+K)}}}else if("model"==a.nodeName){for(var E=a.firstChild;null!=E&&E.nodeType!=mxConstants.NODETYPE_ELEMENT;)E=E.nextSibling;null!=E&&(new mxCodec(a.firstChild)).decode(E,e)}else if("view"==a.nodeName){if(a.hasAttribute("scale")&&(d.view.scale=parseFloat(a.getAttribute("scale"))),a.hasAttribute("dx")||a.hasAttribute("dy"))d.view.translate= +null!=z&&d.model.setStyle(g,z)}catch(K){null!=window.console&&console.log("Error in style for "+g.id+": "+K)}try{var q=a.getAttribute("icon");if(null!=q){var E=0<q.length?JSON.parse(q):null;null!=E&&E.append||d.removeCellOverlays(g);null!=E&&d.addCellOverlay(g,b(E))}}catch(K){null!=window.console&&console.log("Error in icon for "+g.id+": "+K)}try{var G=a.getAttribute("geometry");if(null!=G){var G=JSON.parse(G),I=d.getCellGeometry(g);if(null!=I){I=I.clone();for(key in G){var H=parseFloat(G[key]);"dx"== +key?I.x+=H:"dy"==key?I.y+=H:"dw"==key?I.width+=H:"dh"==key?I.height+=H:I[key]=parseFloat(G[key])}d.model.setGeometry(g,I)}}}catch(K){null!=window.console&&console.log("Error in icon for "+g.id+": "+K)}}}else if("model"==a.nodeName){for(var F=a.firstChild;null!=F&&F.nodeType!=mxConstants.NODETYPE_ELEMENT;)F=F.nextSibling;null!=F&&(new mxCodec(a.firstChild)).decode(F,e)}else if("view"==a.nodeName){if(a.hasAttribute("scale")&&(d.view.scale=parseFloat(a.getAttribute("scale"))),a.hasAttribute("dx")||a.hasAttribute("dy"))d.view.translate= new mxPoint(parseFloat(a.getAttribute("dx")||0),parseFloat(a.getAttribute("dy")||0))}else"fit"==a.nodeName&&(k=a.hasAttribute("max-scale")?parseFloat(a.getAttribute("max-scale")):1);a=a.nextSibling}}finally{e.endUpdate()}null!=k&&this.chromelessResize&&this.chromelessResize(!0,k)}return c};EditorUi.prototype.getCopyFilename=function(a,b){var c=null!=a&&null!=a.getTitle()?a.getTitle():this.defaultFilename,f="",d=c.lastIndexOf(".");0<=d&&(f=c.substring(d),c=c.substring(0,d));if(b)var l=new Date,d=l.getFullYear(), e=l.getMonth()+1,k=l.getDate(),g=l.getHours(),A=l.getMinutes(),l=l.getSeconds(),c=c+(" "+(d+"-"+e+"-"+k+"-"+g+"-"+A+"-"+l));return c=mxResources.get("copyOf",[c])+f};EditorUi.prototype.fileLoaded=function(a,b){var c=this.getCurrentFile();this.fileLoadedError=null;this.setCurrentFile(null);var f=!1;this.hideDialog();null!=c&&(c.removeListener(this.descriptorChangedListener),c.close());this.editor.graph.model.clear();this.editor.undoManager.clear();var d=mxUtils.bind(this,function(){this.setGraphEnabled(!1); this.setCurrentFile(null);null!=c&&this.updateDocumentTitle();this.editor.graph.model.clear();this.editor.undoManager.clear();this.setBackgroundImage(null);!b&&null!=window.location.hash&&0<window.location.hash.length&&(window.location.hash="");null!=this.fname&&(this.fnameWrapper.style.display="none",this.fname.innerHTML="",this.fname.setAttribute("title",mxResources.get("rename")));this.editor.setStatus("");this.updateUi();b||this.showSplash()});if(null!=a)try{mxClient.IS_SF&&"min"==uiTheme&&(this.diagramContainer.style.visibility= @@ -8659,20 +8320,20 @@ a.constructor!=LocalLibrary&&mxSettings.removeCustomLibrary(a.getHash()),".scrat EditorUi.prototype.libraryLoaded=function(a,b,c){if(null!=this.sidebar){a.constructor!=LocalLibrary&&mxSettings.addCustomLibrary(a.getHash());".scratchpad"==a.title&&(this.scratchpad=a);var d=this.sidebar.palettes[a.getHash()],d=null!=d?d[d.length-1].nextSibling:null;this.removeLibrarySidebar(a.getHash());var f=null,l=mxUtils.bind(this,function(b,c){0==b.length&&a.isEditable()?(null==f&&(f=document.createElement("div"),f.className="geDropTarget",mxUtils.write(f,mxResources.get("dragElementsHere"))), c.appendChild(f)):this.addLibraryEntries(b,c)});null!=this.sidebar&&null!=b&&this.sidebar.addEntries(b);c=null!=c&&0<c.length?c:a.getTitle();var e=this.sidebar.addPalette(a.getHash(),c,!0,mxUtils.bind(this,function(a){l(b,a)}));this.repositionLibrary(d);var p=e.parentNode.previousSibling;c=p.getAttribute("title");null!=c&&0<c.length&&".scratchpad"!=a.title&&p.setAttribute("title",this.getLibraryStorageHint(a)+"\n"+c);var k=document.createElement("div");k.style.position="absolute";k.style.right="0px"; k.style.top="0px";k.style.padding="8px";mxClient.IS_QUIRKS||8==document.documentMode||(k.style.backgroundColor="inherit");p.style.position="relative";var g=document.createElement("img");g.setAttribute("src",Dialog.prototype.closeImage);g.setAttribute("title",mxResources.get("close"));g.setAttribute("valign","absmiddle");g.setAttribute("border","0");g.style.margin="0 3px";var B=null;if(".scratchpad"!=a.title||this.closableScratchpad)k.appendChild(g),mxEvent.addListener(g,"click",mxUtils.bind(this, -function(b){if(!mxEvent.isConsumed(b)){var c=mxUtils.bind(this,function(){this.closeLibrary(a)});null!=B?this.confirm(mxResources.get("allChangesLost"),null,c,mxResources.get("cancel"),mxResources.get("discardChanges")):c();mxEvent.consume(b)}}));if(a.isEditable()){var m=this.editor.graph,n=null,q=mxUtils.bind(this,function(c){this.showLibraryDialog(a.getTitle(),e,b,a,a.getMode());mxEvent.consume(c)}),F=mxUtils.bind(this,function(c){a.setModified(!0);a.isAutosave()?(null!=n&&null!=n.parentNode&&n.parentNode.removeChild(n), +function(b){if(!mxEvent.isConsumed(b)){var c=mxUtils.bind(this,function(){this.closeLibrary(a)});null!=B?this.confirm(mxResources.get("allChangesLost"),null,c,mxResources.get("cancel"),mxResources.get("discardChanges")):c();mxEvent.consume(b)}}));if(a.isEditable()){var m=this.editor.graph,n=null,q=mxUtils.bind(this,function(c){this.showLibraryDialog(a.getTitle(),e,b,a,a.getMode());mxEvent.consume(c)}),E=mxUtils.bind(this,function(c){a.setModified(!0);a.isAutosave()?(null!=n&&null!=n.parentNode&&n.parentNode.removeChild(n), n=g.cloneNode(!1),n.setAttribute("src",Editor.spinImage),n.setAttribute("title",mxResources.get("saving")),n.style.cursor="default",n.style.marginRight="2px",n.style.marginTop="-2px",k.insertBefore(n,k.firstChild),p.style.paddingRight=18*k.childNodes.length+"px",this.saveLibrary(a.getTitle(),b,a,a.getMode(),!0,!0,function(){null!=n&&null!=n.parentNode&&(n.parentNode.removeChild(n),p.style.paddingRight=18*k.childNodes.length+"px")})):null==B&&(B=g.cloneNode(!1),B.setAttribute("src",IMAGE_PATH+"/download.png"), B.setAttribute("title",mxResources.get("save")),k.insertBefore(B,k.firstChild),mxEvent.addListener(B,"click",mxUtils.bind(this,function(c){this.saveLibrary(a.getTitle(),b,a,a.getMode(),a.constructor==LocalLibrary,!0,function(){null==B||a.isModified()||(p.style.paddingRight=18*k.childNodes.length+"px",B.parentNode.removeChild(B),B=null)});mxEvent.consume(c)})),p.style.paddingRight=18*k.childNodes.length+"px")}),G=mxUtils.bind(this,function(a,c,d,l){a=m.cloneCells(mxUtils.sortCells(m.model.getTopmostCells(a))); -for(var p=0;p<a.length;p++){var k=m.getCellGeometry(a[p]);null!=k&&k.translate(-c.x,-c.y)}e.appendChild(this.sidebar.createVertexTemplateFromCells(a,c.width,c.height,l||"",!0,!1,!1));a={xml:Graph.compress(mxUtils.getXml(this.editor.graph.encodeCells(a))),w:c.width,h:c.height};null!=l&&(a.title=l);b.push(a);F(d);null!=f&&null!=f.parentNode&&0<b.length&&(f.parentNode.removeChild(f),f=null)}),H=mxUtils.bind(this,function(a){if(m.isSelectionEmpty())m.getRubberband().isActive()?(m.getRubberband().execute(a), +for(var p=0;p<a.length;p++){var k=m.getCellGeometry(a[p]);null!=k&&k.translate(-c.x,-c.y)}e.appendChild(this.sidebar.createVertexTemplateFromCells(a,c.width,c.height,l||"",!0,!1,!1));a={xml:Graph.compress(mxUtils.getXml(this.editor.graph.encodeCells(a))),w:c.width,h:c.height};null!=l&&(a.title=l);b.push(a);E(d);null!=f&&null!=f.parentNode&&0<b.length&&(f.parentNode.removeChild(f),f=null)}),I=mxUtils.bind(this,function(a){if(m.isSelectionEmpty())m.getRubberband().isActive()?(m.getRubberband().execute(a), m.getRubberband().reset()):this.showError(mxResources.get("error"),mxResources.get("nothingIsSelected"),mxResources.get("ok"));else{var b=m.getSelectionCells(),c=m.view.getBounds(b),d=m.view.scale;c.x/=d;c.y/=d;c.width/=d;c.height/=d;c.x-=m.view.translate.x;c.y-=m.view.translate.y;G(b,c)}mxEvent.consume(a)});mxEvent.addGestureListeners(e,function(){},mxUtils.bind(this,function(a){m.isMouseDown&&null!=m.panningManager&&null!=m.graphHandler.shape&&(m.graphHandler.shape.node.style.visibility="hidden", e.style.backgroundColor="#f1f3f4",e.style.cursor="copy",m.panningManager.stop(),m.autoScroll=!1,null!=m.graphHandler.guide&&m.graphHandler.guide.setVisible(!1),null!=m.graphHandler.hint&&(m.graphHandler.hint.style.visibility="hidden"),mxEvent.consume(a))}),mxUtils.bind(this,function(a){m.isMouseDown&&null!=m.panningManager&&null!=m.graphHandler&&(e.style.backgroundColor="",e.style.cursor="default",this.sidebar.showTooltips=!0,m.panningManager.stop(),m.graphHandler.reset(),m.isMouseDown=!1,m.autoScroll= -!0,H(a),mxEvent.consume(a))}));mxEvent.addListener(e,"mouseleave",mxUtils.bind(this,function(a){m.isMouseDown&&null!=m.graphHandler.shape&&(m.graphHandler.shape.node.style.visibility="visible",e.style.backgroundColor="",e.style.cursor="",m.autoScroll=!0,null!=m.graphHandler.guide&&m.graphHandler.guide.setVisible(!0),null!=m.graphHandler.hint&&(m.graphHandler.hint.style.visibility="visible"))}));Graph.fileSupport&&(mxEvent.addListener(e,"dragover",mxUtils.bind(this,function(a){e.style.backgroundColor= +!0,I(a),mxEvent.consume(a))}));mxEvent.addListener(e,"mouseleave",mxUtils.bind(this,function(a){m.isMouseDown&&null!=m.graphHandler.shape&&(m.graphHandler.shape.node.style.visibility="visible",e.style.backgroundColor="",e.style.cursor="",m.autoScroll=!0,null!=m.graphHandler.guide&&m.graphHandler.guide.setVisible(!0),null!=m.graphHandler.hint&&(m.graphHandler.hint.style.visibility="visible"))}));Graph.fileSupport&&(mxEvent.addListener(e,"dragover",mxUtils.bind(this,function(a){e.style.backgroundColor= "#f1f3f4";a.dataTransfer.dropEffect="copy";e.style.cursor="copy";this.sidebar.hideTooltip();a.stopPropagation();a.preventDefault()})),mxEvent.addListener(e,"drop",mxUtils.bind(this,function(a){e.style.cursor="";e.style.backgroundColor="";0<a.dataTransfer.files.length&&this.importFiles(a.dataTransfer.files,0,0,this.maxImageSize,mxUtils.bind(this,function(c,d,p,k,g,t,A,m,B){if(null!=c&&"image/"==d.substring(0,6))c="shape=image;verticalLabelPosition=bottom;verticalAlign=top;aspect=fixed;image="+this.convertDataUri(c), -c=[new mxCell("",new mxGeometry(0,0,g,t),c)],c[0].vertex=!0,G(c,new mxRectangle(0,0,g,t),a,mxEvent.isAltDown(a)?null:A.substring(0,A.lastIndexOf(".")).replace(/_/g," ")),null!=f&&null!=f.parentNode&&0<b.length&&(f.parentNode.removeChild(f),f=null);else{var n=!1,u=mxUtils.bind(this,function(c,d){if(null!=c&&"text/xml"==d){var p=mxUtils.parseXml(c);if("mxlibrary"==p.documentElement.nodeName)try{var k=JSON.parse(mxUtils.getTextContent(p.documentElement));l(k,e);b=b.concat(k);F(a);this.spinner.stop(); +c=[new mxCell("",new mxGeometry(0,0,g,t),c)],c[0].vertex=!0,G(c,new mxRectangle(0,0,g,t),a,mxEvent.isAltDown(a)?null:A.substring(0,A.lastIndexOf(".")).replace(/_/g," ")),null!=f&&null!=f.parentNode&&0<b.length&&(f.parentNode.removeChild(f),f=null);else{var n=!1,u=mxUtils.bind(this,function(c,d){if(null!=c&&"text/xml"==d){var p=mxUtils.parseXml(c);if("mxlibrary"==p.documentElement.nodeName)try{var k=JSON.parse(mxUtils.getTextContent(p.documentElement));l(k,e);b=b.concat(k);E(a);this.spinner.stop(); n=!0}catch(P){}else if("mxfile"==p.documentElement.nodeName)try{for(var g=p.documentElement.getElementsByTagName("diagram"),p=0;p<g.length;p++){var t=this.stringToCells(Editor.getDiagramNodeXml(g[p])),A=this.editor.graph.getBoundingBoxFromGeometry(t);G(t,new mxRectangle(0,0,A.width,A.height),a)}n=!0}catch(P){null!=window.console&&console.log("error in drop handler:",P)}}n||(this.spinner.stop(),this.handleError({message:mxResources.get("errorLoadingFile")}));null!=f&&null!=f.parentNode&&0<b.length&& (f.parentNode.removeChild(f),f=null)});null!=B&&null!=A&&(/(\.v(dx|sdx?))($|\?)/i.test(A)||/(\.vs(x|sx?))($|\?)/i.test(A))?this.importVisio(B,function(a){u(a,"text/xml")},null,A):!this.isOffline()&&(new XMLHttpRequest).upload&&this.isRemoteFileFormat(c,A)&&null!=B?this.parseFile(B,mxUtils.bind(this,function(a){4==a.readyState&&(this.spinner.stop(),200<=a.status&&299>=a.status?u(a.responseText,"text/xml"):this.handleError({message:mxResources.get(413==a.status?"drawingTooLarge":"invalidOrMissingFile")}, mxResources.get("errorLoadingFile")))})):u(c,d)}}));a.stopPropagation();a.preventDefault()})),mxEvent.addListener(e,"dragleave",function(a){e.style.cursor="";e.style.backgroundColor="";a.stopPropagation();a.preventDefault()}));g=g.cloneNode(!1);g.setAttribute("src",Editor.editImage);g.setAttribute("title",mxResources.get("edit"));k.insertBefore(g,k.firstChild);mxEvent.addListener(g,"click",q);mxEvent.addListener(e,"dblclick",function(a){mxEvent.getSource(a)==e&&q(a)});c=g.cloneNode(!1);c.setAttribute("src", -Editor.plusImage);c.setAttribute("title",mxResources.get("add"));k.insertBefore(c,k.firstChild);mxEvent.addListener(c,"click",H);this.isOffline()||".scratchpad"!=a.title||null==EditorUi.scratchpadHelpLink||(c=document.createElement("span"),c.setAttribute("title",mxResources.get("help")),c.style.cssText="color:#a3a3a3;text-decoration:none;margin-right:2px;",mxUtils.write(c,"?"),mxEvent.addGestureListeners(c,mxUtils.bind(this,function(a){this.openLink(EditorUi.scratchpadHelpLink);mxEvent.consume(a)})), -k.insertBefore(c,k.firstChild))}p.appendChild(k);p.style.paddingRight=18*k.childNodes.length+"px"}};EditorUi.prototype.addLibraryEntries=function(a,b){for(var c=0;c<a.length;c++){var d=a[c],f=d.data;if(null!=f){var f=this.convertDataUri(f),e="shape=image;verticalLabelPosition=bottom;verticalAlign=top;imageAspect=0;";"fixed"==d.aspect&&(e+="aspect=fixed;");b.appendChild(this.sidebar.createVertexTemplate(e+"image="+f,d.w,d.h,"",d.title||"",!1,!1,!0))}else null!=d.xml&&(f=this.stringToCells(Graph.decompress(d.xml)), +Editor.plusImage);c.setAttribute("title",mxResources.get("add"));k.insertBefore(c,k.firstChild);mxEvent.addListener(c,"click",I);this.isOffline()||".scratchpad"!=a.title||null==EditorUi.scratchpadHelpLink||(c=document.createElement("span"),c.setAttribute("title",mxResources.get("help")),c.style.cssText="color:#a3a3a3;text-decoration:none;margin-right:2px;",mxUtils.write(c,"?"),mxEvent.addGestureListeners(c,mxUtils.bind(this,function(a){this.openLink(EditorUi.scratchpadHelpLink);mxEvent.consume(a)})), +k.insertBefore(c,k.firstChild))}p.appendChild(k);p.style.paddingRight=18*k.childNodes.length+"px"}};EditorUi.prototype.addLibraryEntries=function(a,b){for(var c=0;c<a.length;c++){var d=a[c],f=d.data;if(null!=f){var f=this.convertDataUri(f),l="shape=image;verticalLabelPosition=bottom;verticalAlign=top;imageAspect=0;";"fixed"==d.aspect&&(l+="aspect=fixed;");b.appendChild(this.sidebar.createVertexTemplate(l+"image="+f,d.w,d.h,"",d.title||"",!1,!1,!0))}else null!=d.xml&&(f=this.stringToCells(Graph.decompress(d.xml)), 0<f.length&&b.appendChild(this.sidebar.createVertexTemplateFromCells(f,d.w,d.h,d.title||"",!0,!1,!0)))}};EditorUi.prototype.getResource=function(a){return null!=a?a[mxLanguage]||a.main:null};EditorUi.prototype.footerHeight=0;"1"==urlParams.offline||EditorUi.isElectronApp||("1"==urlParams.savesidebar&&(Sidebar.prototype.thumbWidth=64,Sidebar.prototype.thumbHeight=64),EditorUi.prototype.createFooter=function(){return document.getElementById("geFooter")});EditorUi.initTheme=function(){"atlas"==uiTheme? (mxClient.link("stylesheet",STYLE_PATH+"/atlas.css"),"undefined"!==typeof Toolbar&&(Toolbar.prototype.unselectedBackground=mxClient.IS_QUIRKS?"none":"linear-gradient(rgb(255, 255, 255) 0px, rgb(242, 242, 242) 100%)",Toolbar.prototype.selectedBackground="rgb(242, 242, 242)"),Editor.prototype.initialTopSpacing=3,EditorUi.prototype.menubarHeight=41,EditorUi.prototype.toolbarHeight=38):"dark"==uiTheme&&(mxClient.link("stylesheet",STYLE_PATH+"/dark.css"),Dialog.backdropColor="#2a2a2a",Graph.prototype.defaultThemeName= "darkTheme",Graph.prototype.defaultPageBackgroundColor="#2a2a2a",Graph.prototype.defaultPageBorderColor="#505759",Format.prototype.inactiveTabBackgroundColor="black",BaseFormatPanel.prototype.buttonBackgroundColor="#2a2a2a",Sidebar.prototype.dragPreviewBorder="1px dashed #cccccc",mxGraphHandler.prototype.previewColor="#cccccc",StyleFormatPanel.prototype.defaultStrokeColor="#cccccc",mxClient.IS_SVG&&(Editor.helpImage="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAP1BMVEUAAAD///////////////////////////////////////////////////////////////////////////////9Du/pqAAAAFXRSTlMAT30qCJRBboyDZyCgRzUUdF46MJlgXETgAAAAeklEQVQY022O2w4DIQhEQUURda/9/28tUO2+7CQS5sgQ4F1RapX78YUwRqQjTU8ILqQfKerTKTvACJ4nLX3krt+8aS82oI8aQC4KavRgtvEW/mDvsICgA03PSGRr79MqX1YPNIxzjyqtw8ZnnRo4t5a5undtJYRywau+ds4Cyza3E6YAAAAASUVORK5CYII=", @@ -8720,24 +8381,24 @@ null,null,null,null,!g);b='<div class="mxgraph" style="'+(k?"max-width:100%;":"" "/js/viewer.min.js")+'">\x3c/script>')};EditorUi.prototype.showHtmlDialog=function(a,b,c,d){var f=document.createElement("div");f.style.whiteSpace="nowrap";var e=document.createElement("h3");mxUtils.write(e,mxResources.get("html"));e.style.cssText="width:100%;text-align:center;margin-top:0px;margin-bottom:12px";f.appendChild(e);var l=document.createElement("div");l.style.cssText="border-bottom:1px solid lightGray;padding-bottom:8px;margin-bottom:12px;";var k=document.createElement("input");k.style.cssText= "margin-right:8px;margin-top:8px;margin-bottom:8px;";k.setAttribute("value","url");k.setAttribute("type","radio");k.setAttribute("name","type-embedhtmldialog");e=k.cloneNode(!0);e.setAttribute("value","copy");l.appendChild(e);var g=document.createElement("span");mxUtils.write(g,mxResources.get("includeCopyOfMyDiagram"));l.appendChild(g);mxUtils.br(l);l.appendChild(k);g=document.createElement("span");mxUtils.write(g,mxResources.get("publicDiagramUrl"));l.appendChild(g);var p=this.getCurrentFile(); null==c&&null!=p&&p.constructor==window.DriveFile&&(g=document.createElement("a"),g.style.paddingLeft="12px",g.style.color="gray",g.setAttribute("href","javascript:void(0);"),mxUtils.write(g,mxResources.get("share")),l.appendChild(g),mxEvent.addListener(g,"click",mxUtils.bind(this,function(){this.hideDialog();this.drive.showPermissions(p.getId())})));e.setAttribute("checked","checked");null==c&&k.setAttribute("disabled","disabled");f.appendChild(l);var m=this.addLinkSection(f),n=this.addCheckbox(f, -mxResources.get("zoom"),!0,null,!0);mxUtils.write(f,":");var u=document.createElement("input");u.setAttribute("type","text");u.style.marginRight="16px";u.style.width="60px";u.style.marginLeft="4px";u.style.marginRight="12px";u.value="100%";f.appendChild(u);var q=this.addCheckbox(f,mxResources.get("fit"),!0),l=null!=this.pages&&1<this.pages.length,F=F=this.addCheckbox(f,mxResources.get("allPages"),l,!l),G=this.addCheckbox(f,mxResources.get("layers"),!0),H=this.addCheckbox(f,mxResources.get("lightbox"), -!0),I=this.addEditButton(f,H),E=I.getEditInput();E.style.marginBottom="16px";mxEvent.addListener(H,"change",function(){H.checked?E.removeAttribute("disabled"):E.setAttribute("disabled","disabled");E.checked&&H.checked?I.getEditSelect().removeAttribute("disabled"):I.getEditSelect().setAttribute("disabled","disabled")});a=new CustomDialog(this,f,mxUtils.bind(this,function(){d(k.checked?c:null,n.checked,u.value,m.getTarget(),m.getColor(),q.checked,F.checked,G.checked,H.checked,I.getLink())}),null,a, +mxResources.get("zoom"),!0,null,!0);mxUtils.write(f,":");var u=document.createElement("input");u.setAttribute("type","text");u.style.marginRight="16px";u.style.width="60px";u.style.marginLeft="4px";u.style.marginRight="12px";u.value="100%";f.appendChild(u);var q=this.addCheckbox(f,mxResources.get("fit"),!0),l=null!=this.pages&&1<this.pages.length,E=E=this.addCheckbox(f,mxResources.get("allPages"),l,!l),G=this.addCheckbox(f,mxResources.get("layers"),!0),I=this.addCheckbox(f,mxResources.get("lightbox"), +!0),H=this.addEditButton(f,I),F=H.getEditInput();F.style.marginBottom="16px";mxEvent.addListener(I,"change",function(){I.checked?F.removeAttribute("disabled"):F.setAttribute("disabled","disabled");F.checked&&I.checked?H.getEditSelect().removeAttribute("disabled"):H.getEditSelect().setAttribute("disabled","disabled")});a=new CustomDialog(this,f,mxUtils.bind(this,function(){d(k.checked?c:null,n.checked,u.value,m.getTarget(),m.getColor(),q.checked,E.checked,G.checked,I.checked,H.getLink())}),null,a, b);this.showDialog(a.container,340,384,!0,!0);e.focus()};EditorUi.prototype.showPublishLinkDialog=function(a,b,c,d,e,k){var f=document.createElement("div");f.style.whiteSpace="nowrap";var l=document.createElement("h3");mxUtils.write(l,a||mxResources.get("link"));l.style.cssText="width:100%;text-align:center;margin-top:0px;margin-bottom:12px";f.appendChild(l);var g=this.getCurrentFile(),l="https://desk.draw.io/support/solutions/articles/16000051941";a=0;if(null!=g&&g.constructor==window.DriveFile&& !b){a=80;var l="https://desk.draw.io/support/solutions/articles/16000039384",p=document.createElement("div");p.style.cssText="border-bottom:1px solid lightGray;padding-bottom:14px;padding-top:6px;margin-bottom:14px;text-align:center;";var t=document.createElement("div");t.style.whiteSpace="normal";mxUtils.write(t,mxResources.get("linkAccountRequired"));p.appendChild(t);t=mxUtils.button(mxResources.get("share"),mxUtils.bind(this,function(){this.drive.showPermissions(g.getId())}));t.style.marginTop= "12px";t.className="geBtn";p.appendChild(t);f.appendChild(p);t=document.createElement("a");t.style.paddingLeft="12px";t.style.color="gray";t.style.fontSize="11px";t.setAttribute("href","javascript:void(0);");mxUtils.write(t,mxResources.get("check"));p.appendChild(t);mxEvent.addListener(t,"click",mxUtils.bind(this,function(){this.spinner.spin(document.body,mxResources.get("loading"))&&this.getPublicUrl(this.getCurrentFile(),mxUtils.bind(this,function(a){this.spinner.stop();a=new ErrorDialog(this,null, mxResources.get(null!=a?"diagramIsPublic":"diagramIsNotPublic"),mxResources.get("ok"));this.showDialog(a.container,300,80,!0,!1);a.init()}))}))}var m=null,n=null;if(null!=c||null!=d)a+=30,mxUtils.write(f,mxResources.get("width")+":"),m=document.createElement("input"),m.setAttribute("type","text"),m.style.marginRight="16px",m.style.width="50px",m.style.marginLeft="6px",m.style.marginRight="16px",m.style.marginBottom="10px",m.value="100%",f.appendChild(m),mxUtils.write(f,mxResources.get("height")+":"), -n=document.createElement("input"),n.setAttribute("type","text"),n.style.width="50px",n.style.marginLeft="6px",n.style.marginBottom="10px",n.value=d+"px",f.appendChild(n),mxUtils.br(f);var u=this.addLinkSection(f,k);c=null!=this.pages&&1<this.pages.length;var q=null;if(null==g||g.constructor!=window.DriveFile||b)q=this.addCheckbox(f,mxResources.get("allPages"),c,!c);var v=this.addCheckbox(f,mxResources.get("lightbox"),!0),H=this.addEditButton(f,v),I=H.getEditInput(),E=this.addCheckbox(f,mxResources.get("layers"), -!0);E.style.marginLeft=I.style.marginLeft;E.style.marginBottom="16px";E.style.marginTop="8px";mxEvent.addListener(v,"change",function(){v.checked?(E.removeAttribute("disabled"),I.removeAttribute("disabled")):(E.setAttribute("disabled","disabled"),I.setAttribute("disabled","disabled"));I.checked&&v.checked?H.getEditSelect().removeAttribute("disabled"):H.getEditSelect().setAttribute("disabled","disabled")});b=new CustomDialog(this,f,mxUtils.bind(this,function(){e(u.getTarget(),u.getColor(),null==q? -!0:q.checked,v.checked,H.getLink(),E.checked,null!=m?m.value:null,null!=n?n.value:null)}),null,mxResources.get("create"),l);this.showDialog(b.container,340,254+a,!0,!0);null!=m?(m.focus(),mxClient.IS_GC||mxClient.IS_FF||5<=document.documentMode||mxClient.IS_QUIRKS?m.select():document.execCommand("selectAll",!1,null)):u.focus()};EditorUi.prototype.showRemoteExportDialog=function(a,b,c,d,e){var f=document.createElement("div");f.style.whiteSpace="nowrap";var l=document.createElement("h3");mxUtils.write(l, +n=document.createElement("input"),n.setAttribute("type","text"),n.style.width="50px",n.style.marginLeft="6px",n.style.marginBottom="10px",n.value=d+"px",f.appendChild(n),mxUtils.br(f);var u=this.addLinkSection(f,k);c=null!=this.pages&&1<this.pages.length;var q=null;if(null==g||g.constructor!=window.DriveFile||b)q=this.addCheckbox(f,mxResources.get("allPages"),c,!c);var v=this.addCheckbox(f,mxResources.get("lightbox"),!0),I=this.addEditButton(f,v),H=I.getEditInput(),F=this.addCheckbox(f,mxResources.get("layers"), +!0);F.style.marginLeft=H.style.marginLeft;F.style.marginBottom="16px";F.style.marginTop="8px";mxEvent.addListener(v,"change",function(){v.checked?(F.removeAttribute("disabled"),H.removeAttribute("disabled")):(F.setAttribute("disabled","disabled"),H.setAttribute("disabled","disabled"));H.checked&&v.checked?I.getEditSelect().removeAttribute("disabled"):I.getEditSelect().setAttribute("disabled","disabled")});b=new CustomDialog(this,f,mxUtils.bind(this,function(){e(u.getTarget(),u.getColor(),null==q? +!0:q.checked,v.checked,I.getLink(),F.checked,null!=m?m.value:null,null!=n?n.value:null)}),null,mxResources.get("create"),l);this.showDialog(b.container,340,254+a,!0,!0);null!=m?(m.focus(),mxClient.IS_GC||mxClient.IS_FF||5<=document.documentMode||mxClient.IS_QUIRKS?m.select():document.execCommand("selectAll",!1,null)):u.focus()};EditorUi.prototype.showRemoteExportDialog=function(a,b,c,d,e){var f=document.createElement("div");f.style.whiteSpace="nowrap";var l=document.createElement("h3");mxUtils.write(l, mxResources.get("image"));l.style.cssText="width:100%;text-align:center;margin-top:0px;margin-bottom:"+(e?"10":"4")+"px";f.appendChild(l);if(e){mxUtils.write(f,mxResources.get("zoom")+":");var k=document.createElement("input");k.setAttribute("type","text");k.style.marginRight="16px";k.style.width="60px";k.style.marginLeft="4px";k.style.marginRight="12px";k.value=this.lastExportZoom||"100%";f.appendChild(k);mxUtils.write(f,mxResources.get("borderWidth")+":");var g=document.createElement("input");g.setAttribute("type", "text");g.style.marginRight="16px";g.style.width="60px";g.style.marginLeft="4px";g.value=this.lastExportBorder||"0";f.appendChild(g);mxUtils.br(f)}var p=this.addCheckbox(f,mxResources.get("selectionOnly"),!1,this.editor.graph.isSelectionEmpty()),m=d?null:this.addCheckbox(f,mxResources.get("includeCopyOfMyDiagram"),!0),l=this.editor.graph,n=d?null:this.addCheckbox(f,mxResources.get("transparentBackground"),l.background==mxConstants.NONE||null==l.background);null!=n&&(n.style.marginBottom="16px");a= new CustomDialog(this,f,mxUtils.bind(this,function(){var a=parseInt(k.value)/100||1,b=parseInt(g.value)||0;c(!p.checked,null!=m?m.checked:!1,null!=n?n.checked:!1,a,b)}),null,a,b);this.showDialog(a.container,300,(e?25:0)+(d?125:210),!0,!0)};EditorUi.prototype.showExportDialog=function(a,b,c,d,e,k,g,m){g=null!=g?g:!0;var f=document.createElement("div");f.style.whiteSpace="nowrap";var l=this.editor.graph,p="jpeg"==m?196:300,t=document.createElement("h3");mxUtils.write(t,a);t.style.cssText="width:100%;text-align:center;margin-top:0px;margin-bottom:10px"; f.appendChild(t);mxUtils.write(f,mxResources.get("zoom")+":");var n=document.createElement("input");n.setAttribute("type","text");n.style.marginRight="16px";n.style.width="60px";n.style.marginLeft="4px";n.style.marginRight="12px";n.value=this.lastExportZoom||"100%";f.appendChild(n);mxUtils.write(f,mxResources.get("borderWidth")+":");var u=document.createElement("input");u.setAttribute("type","text");u.style.marginRight="16px";u.style.width="60px";u.style.marginLeft="4px";u.value=this.lastExportBorder|| "0";f.appendChild(u);mxUtils.br(f);var q=this.addCheckbox(f,mxResources.get("transparentBackground"),!1,null,null,"jpeg"!=m),v=this.addCheckbox(f,mxResources.get("selectionOnly"),!1,l.isSelectionEmpty()),x=document.createElement("input");x.style.marginTop="16px";x.style.marginRight="8px";x.style.marginLeft="24px";x.setAttribute("disabled","disabled");x.setAttribute("type","checkbox");k&&(f.appendChild(x),mxUtils.write(f,mxResources.get("crop")),mxUtils.br(f),p+=26,mxEvent.addListener(v,"change",function(){v.checked? -x.removeAttribute("disabled"):x.setAttribute("disabled","disabled")}));l.isSelectionEmpty()||(x.setAttribute("checked","checked"),x.defaultChecked=!0);var y=this.addCheckbox(f,mxResources.get("shadow"),l.shadowVisible),E=document.createElement("input");E.style.marginTop="16px";E.style.marginRight="8px";E.setAttribute("type","checkbox");!this.isOffline()&&this.canvasSupported||E.setAttribute("disabled","disabled");b&&(f.appendChild(E),mxUtils.write(f,mxResources.get("embedImages")),mxUtils.br(f),p+= +x.removeAttribute("disabled"):x.setAttribute("disabled","disabled")}));l.isSelectionEmpty()||(x.setAttribute("checked","checked"),x.defaultChecked=!0);var y=this.addCheckbox(f,mxResources.get("shadow"),l.shadowVisible),F=document.createElement("input");F.style.marginTop="16px";F.style.marginRight="8px";F.setAttribute("type","checkbox");!this.isOffline()&&this.canvasSupported||F.setAttribute("disabled","disabled");b&&(f.appendChild(F),mxUtils.write(f,mxResources.get("embedImages")),mxUtils.br(f),p+= 26);var K=null;if("png"==m||"jpeg"==m)K=this.addCheckbox(f,mxResources.get("grid"),!1,this.isOffline()||!this.canvasSupported,!1,!0),p+=26;var M=this.addCheckbox(f,mxResources.get("includeCopyOfMyDiagram"),g,null,null,"jpeg"!=m),R=null!=this.pages&&1<this.pages.length,X=this.addCheckbox(f,R?mxResources.get("allPages"):"",R,!R,null,"jpeg"!=m);X.style.marginLeft="24px";X.style.marginBottom="16px";R||(X.style.display="none");mxEvent.addListener(M,"change",function(){M.checked&&R?X.removeAttribute("disabled"): X.setAttribute("disabled","disabled")});g&&R||X.setAttribute("disabled","disabled");var T=document.createElement("select");T.style.maxWidth="260px";T.style.marginLeft="8px";T.style.marginRight="10px";T.className="geBtn";a=document.createElement("option");a.setAttribute("value","auto");mxUtils.write(a,mxResources.get("automatic"));T.appendChild(a);a=document.createElement("option");a.setAttribute("value","blank");mxUtils.write(a,mxResources.get("openInNewWindow"));T.appendChild(a);a=document.createElement("option"); -a.setAttribute("value","self");mxUtils.write(a,mxResources.get("openInThisWindow"));T.appendChild(a);"svg"==m&&(mxUtils.write(f,mxResources.get("links")+":"),f.appendChild(T),mxUtils.br(f),mxUtils.br(f),p+=26);c=new CustomDialog(this,f,mxUtils.bind(this,function(){this.lastExportBorder=u.value;this.lastExportZoom=n.value;e(n.value,q.checked,!v.checked,y.checked,M.checked,E.checked,u.value,x.checked,!X.checked,T.value,null!=K?K.checked:null)}),null,c,d);this.showDialog(c.container,340,p,!0,!0,null, +a.setAttribute("value","self");mxUtils.write(a,mxResources.get("openInThisWindow"));T.appendChild(a);"svg"==m&&(mxUtils.write(f,mxResources.get("links")+":"),f.appendChild(T),mxUtils.br(f),mxUtils.br(f),p+=26);c=new CustomDialog(this,f,mxUtils.bind(this,function(){this.lastExportBorder=u.value;this.lastExportZoom=n.value;e(n.value,q.checked,!v.checked,y.checked,M.checked,F.checked,u.value,x.checked,!X.checked,T.value,null!=K?K.checked:null)}),null,c,d);this.showDialog(c.container,340,p,!0,!0,null, null,null,null,!0);n.focus();mxClient.IS_GC||mxClient.IS_FF||5<=document.documentMode||mxClient.IS_QUIRKS?n.select():document.execCommand("selectAll",!1,null)};EditorUi.prototype.showEmbedImageDialog=function(a,b,c,d,e){var f=document.createElement("div");f.style.whiteSpace="nowrap";var l=this.editor.graph;if(null!=b){var k=document.createElement("h3");mxUtils.write(k,b);k.style.cssText="width:100%;text-align:center;margin-top:0px;margin-bottom:4px";f.appendChild(k)}var g=this.addCheckbox(f,mxResources.get("fit"), !0),p=this.addCheckbox(f,mxResources.get("shadow"),l.shadowVisible&&d,!d),m=this.addCheckbox(f,c),n=this.addCheckbox(f,mxResources.get("lightbox"),!0),u=this.addEditButton(f,n),q=u.getEditInput(),v=1<l.model.getChildCount(l.model.getRoot()),G=this.addCheckbox(f,mxResources.get("layers"),v,!v);G.style.marginLeft=q.style.marginLeft;G.style.marginBottom="12px";G.style.marginTop="8px";mxEvent.addListener(n,"change",function(){n.checked?(v&&G.removeAttribute("disabled"),q.removeAttribute("disabled")): (G.setAttribute("disabled","disabled"),q.setAttribute("disabled","disabled"));q.checked&&n.checked?u.getEditSelect().removeAttribute("disabled"):u.getEditSelect().setAttribute("disabled","disabled")});b=new CustomDialog(this,f,mxUtils.bind(this,function(){a(g.checked,p.checked,m.checked,n.checked,u.getLink(),G.checked)}),null,mxResources.get("embed"),e);this.showDialog(b.container,280,280,!0,!0)};EditorUi.prototype.createEmbedImage=function(a,b,c,d,e,k,g,m){function f(b){var f=" ",p="";d&&(f=" onclick=\"(function(img){if(img.wnd!=null&&!img.wnd.closed){img.wnd.focus();}else{var r=function(evt){if(evt.data=='ready'&&evt.source==img.wnd){img.wnd.postMessage(decodeURIComponent(img.getAttribute('src')),'*');window.removeEventListener('message',r);}};window.addEventListener('message',r);img.wnd=window.open('"+ @@ -8755,18 +8416,18 @@ mxUtils.getXml(a))}));else return(d?"":'<?xml version="1.0" encoding="UTF-8"?>\n function(a){this.spinner.stop();try{this.saveCanvas(a,e?this.getFileData(!0,null,null,null,c,m):null,n,!m,B)}catch(J){"Invalid image"==J.message?this.downloadFile(n):this.handleError(J)}}),null,this.thumbImageCache,null,mxUtils.bind(this,function(a){this.spinner.stop();this.handleError(a)}),null,c,a||1,b,d,null,null,k,g,A)}catch(z){this.spinner.stop(),this.handleError(z)}}};EditorUi.prototype.loadFonts=function(a){if(null!=this.editor.fontCss&&null==this.editor.resolvedFontCss){var b=function(a){return a.replace(RegExp("^[\\s\"']+", "g"),"").replace(RegExp("[\\s\"']+$","g"),"")},c=this.editor.fontCss.split("url("),d=0,f={},e=mxUtils.bind(this,function(){if(0==d){for(var e=[c[0]],k=1;k<c.length;k++){var l=c[k].indexOf(")");e.push('url("');e.push(f[b(c[k].substring(0,l))]);e.push('"'+c[k].substring(l))}this.editor.resolvedFontCss=e.join("");a()}});if(0<c.length)for(var k=1;k<c.length;k++){var g=c[k].indexOf(")"),m=null,n=c[k].indexOf("format(",g);0<n&&(m=b(c[k].substring(n+7,c[k].indexOf(")",n))));mxUtils.bind(this,function(a){if(null== f[a]){f[a]=a;d++;var b="application/x-font-ttf";if("svg"==m||/(\.svg)($|\?)/i.test(a))b="image/svg+xml";else if("otf"==m||"embedded-opentype"==m||/(\.otf)($|\?)/i.test(a))b="application/x-font-opentype";else if("woff"==m||/(\.woff)($|\?)/i.test(a))b="application/font-woff";else if("woff2"==m||/(\.woff2)($|\?)/i.test(a))b="application/font-woff2";else if("eot"==m||/(\.eot)($|\?)/i.test(a))b="application/vnd.ms-fontobject";else if("sfnt"==m||/(\.sfnt)($|\?)/i.test(a))b="application/font-sfnt";var c= -a;/^https?:\/\//.test(c)&&!this.editor.isCorsEnabledForUrl(c)&&(c=PROXY_URL+"?url="+encodeURIComponent(a));this.loadUrl(c,mxUtils.bind(this,function(b){f[a]=b;d--;e()}),mxUtils.bind(this,function(a){d--;e()}),!0,null,"data:"+b+";charset=utf-8;base64,")}})(b(c[k].substring(0,g)),m)}}else a()};EditorUi.prototype.exportToCanvas=function(a,b,c,d,e,k,g,m,n,A,B,q,z,J,F){try{k=null!=k?k:!0;g=null!=g?g:!0;q=null!=q?q:this.editor.graph;z=null!=z?z:0;var f=n?null:q.background;f==mxConstants.NONE&&(f=null); +a;/^https?:\/\//.test(c)&&!this.editor.isCorsEnabledForUrl(c)&&(c=PROXY_URL+"?url="+encodeURIComponent(a));this.loadUrl(c,mxUtils.bind(this,function(b){f[a]=b;d--;e()}),mxUtils.bind(this,function(a){d--;e()}),!0,null,"data:"+b+";charset=utf-8;base64,")}})(b(c[k].substring(0,g)),m)}}else a()};EditorUi.prototype.exportToCanvas=function(a,b,c,d,e,k,g,m,n,A,B,q,z,J,E){try{k=null!=k?k:!0;g=null!=g?g:!0;q=null!=q?q:this.editor.graph;z=null!=z?z:0;var f=n?null:q.background;f==mxConstants.NONE&&(f=null); null==f&&(f=d);null==f&&0==n&&(f="#ffffff");this.convertImages(q.getSvg(null,null,null,J,null,g,null,null,null,A),mxUtils.bind(this,function(c){var d=new Image;d.onload=mxUtils.bind(this,function(){try{var l=function(){mxClient.IS_SF?window.setTimeout(function(){t.drawImage(d,z/m,z/m);a(g)},0):(t.drawImage(d,z/m,z/m),a(g))},g=document.createElement("canvas"),p=parseInt(c.getAttribute("width")),n=parseInt(c.getAttribute("height"));m=null!=m?m:1;null!=b&&(m=k?Math.min(1,Math.min(3*b/(4*n),b/p)):b/p); -p=Math.ceil(m*p)+2*z;n=Math.ceil(m*n)+2*z;g.setAttribute("width",p);g.setAttribute("height",n);var t=g.getContext("2d");null!=f&&(t.beginPath(),t.rect(0,0,p,n),t.fillStyle=f,t.fill());t.scale(m,m);if(F){var A=q.view,B=btoa(unescape(encodeURIComponent(A.createSvgGrid(A.gridColor)))),B="data:image/svg+xml;base64,"+B,u=q.gridSize*A.gridSteps*m,D=q.getGraphBounds(),v=D.x*m,x=D.y*m,y=new Image;y.src=B;y.onload=function(){for(var a=-Math.round(u-mxUtils.mod(A.translate.x*m-v,u)),b=-Math.round(u-mxUtils.mod(A.translate.y* +p=Math.ceil(m*p)+2*z;n=Math.ceil(m*n)+2*z;g.setAttribute("width",p);g.setAttribute("height",n);var t=g.getContext("2d");null!=f&&(t.beginPath(),t.rect(0,0,p,n),t.fillStyle=f,t.fill());t.scale(m,m);if(E){var A=q.view,B=btoa(unescape(encodeURIComponent(A.createSvgGrid(A.gridColor)))),B="data:image/svg+xml;base64,"+B,u=q.gridSize*A.gridSteps*m,D=q.getGraphBounds(),v=D.x*m,x=D.y*m,y=new Image;y.src=B;y.onload=function(){for(var a=-Math.round(u-mxUtils.mod(A.translate.x*m-v,u)),b=-Math.round(u-mxUtils.mod(A.translate.y* m-x,u));a<p;a+=u)for(var c=b;c<n;c+=u)t.drawImage(y,a/m,c/m);l()}}else l()}catch(ba){null!=e&&e(ba)}});d.onerror=function(a){null!=e&&e(a)};try{A&&this.editor.graph.addSvgShadow(c);var l=mxUtils.bind(this,function(){if(null!=this.editor.resolvedFontCss){var a=document.createElement("style");a.setAttribute("type","text/css");a.innerHTML=this.editor.resolvedFontCss;c.getElementsByTagName("defs")[0].appendChild(a)}this.convertMath(q,c,!0,mxUtils.bind(this,function(){d.src=this.createSvgDataUri(mxUtils.getXml(c))}))}); -this.loadFonts(l)}catch(K){null!=e&&e(K)}}),c,B)}catch(H){null!=e&&e(H)}};EditorUi.prototype.createImageUrlConverter=function(){var a=new mxUrlConverter;a.updateBaseUrl();var b=a.convert,c=this;a.convert=function(d){if(null!=d){var f="http://"==d.substring(0,7)||"https://"==d.substring(0,8);f&&!navigator.onLine?d=c.svgBrokenImage.src:!f||d.substring(0,a.baseUrl.length)==a.baseUrl||c.crossOriginImages&&c.editor.isCorsEnabledForUrl(d)?"chrome-extension://"==d.substring(0,19)||mxClient.IS_CHROMEAPP|| +this.loadFonts(l)}catch(K){null!=e&&e(K)}}),c,B)}catch(I){null!=e&&e(I)}};EditorUi.prototype.createImageUrlConverter=function(){var a=new mxUrlConverter;a.updateBaseUrl();var b=a.convert,c=this;a.convert=function(d){if(null!=d){var f="http://"==d.substring(0,7)||"https://"==d.substring(0,8);f&&!navigator.onLine?d=c.svgBrokenImage.src:!f||d.substring(0,a.baseUrl.length)==a.baseUrl||c.crossOriginImages&&c.editor.isCorsEnabledForUrl(d)?"chrome-extension://"==d.substring(0,19)||mxClient.IS_CHROMEAPP|| (d=b.apply(this,arguments)):d=PROXY_URL+"?url="+encodeURIComponent(d)}return d};return a};EditorUi.prototype.convertImages=function(a,b,c,d){null==d&&(d=this.createImageUrlConverter());var f=0,e=c||{};c=mxUtils.bind(this,function(c,k){for(var l=a.getElementsByTagName(c),g=0;g<l.length;g++)mxUtils.bind(this,function(c){try{if(null!=c){var l=d.convert(c.getAttribute(k));if(null!=l&&"data:"!=l.substring(0,5)){var g=e[l];null==g?(f++,this.convertImageToDataUri(l,function(d){null!=d&&(e[l]=d,c.setAttribute(k, d));f--;0==f&&b(a)})):c.setAttribute(k,g)}else null!=l&&c.setAttribute(k,l)}}catch(J){}})(l[g])});c("image","xlink:href");c("img","src");0==f&&b(a)};EditorUi.prototype.loadUrl=function(a,b,c,d,e,k,g){try{var f=!g&&(d||/(\.png)($|\?)/i.test(a)||/(\.jpe?g)($|\?)/i.test(a)||/(\.gif)($|\?)/i.test(a));e=null!=e?e:!0;var l=mxUtils.bind(this,function(){mxUtils.get(a,mxUtils.bind(this,function(a){if(200<=a.getStatus()&&299>=a.getStatus()){if(null!=b){var d=a.getText();if(f){if((9==document.documentMode|| 10==document.documentMode)&&"undefined"!==typeof window.mxUtilsBinaryToArray){a=mxUtilsBinaryToArray(a.request.responseBody).toArray();for(var d=Array(a.length),e=0;e<a.length;e++)d[e]=String.fromCharCode(a[e]);d=d.join("")}k=null!=k?k:"data:image/png;base64,";d=k+this.base64Encode(d)}b(d)}}else null!=c&&c({message:mxResources.get("error")+" "+a.getStatus()},a)}),function(a){null!=c&&c({message:mxResources.get("error")+" "+a.getStatus()})},f,this.timeout,function(){e&&null!=c&&c({code:App.ERROR_TIMEOUT, retry:l})})});l()}catch(A){null!=c&&c(A)}};EditorUi.prototype.isCorsEnabledForUrl=function(a){return this.editor.isCorsEnabledForUrl(a)};EditorUi.prototype.convertImageToDataUri=function(a,b){try{var c=!0,d=window.setTimeout(mxUtils.bind(this,function(){c=!1;b(this.svgBrokenImage.src)}),this.timeout);if(/(\.svg)$/i.test(a))mxUtils.get(a,mxUtils.bind(this,function(a){window.clearTimeout(d);c&&b(this.createSvgDataUri(a.getText()))}),function(){window.clearTimeout(d);c&&b(this.svgBrokenImage.src)}); else{var f=new Image,e=this;this.crossOriginImages&&(f.crossOrigin="anonymous");f.onload=function(){window.clearTimeout(d);if(c)try{var a=document.createElement("canvas"),k=a.getContext("2d");a.height=f.height;a.width=f.width;k.drawImage(f,0,0);b(a.toDataURL())}catch(C){b(e.svgBrokenImage.src)}};f.onerror=function(){window.clearTimeout(d);c&&b(e.svgBrokenImage.src)};f.src=a}}catch(y){b(this.svgBrokenImage.src)}};EditorUi.prototype.importXml=function(a,b,c,d,e){b=null!=b?b:0;c=null!=c?c:0;var f=[]; try{var k=this.editor.graph;if(null!=a&&0<a.length){k.model.beginUpdate();try{var l=mxUtils.parseXml(a),g=this.editor.extractGraphModel(l.documentElement,null!=this.pages);if(null!=g&&"mxfile"==g.nodeName&&null!=this.pages){var p=g.getElementsByTagName("diagram");if(1==p.length)g=Editor.parseDiagramNode(p[0]);else if(1<p.length){a={};var l=[],m=0;null!=this.pages&&1==this.pages.length&&this.isDiagramEmpty()&&(g=Editor.parseDiagramNode(p[0]),d=!1,m=1);for(;m<p.length;m++){var n=p[m].getAttribute("id"); -p[m].removeAttribute("id");var u=this.updatePageRoot(new DiagramPage(p[m]));a[n]=p[m].getAttribute("id");var q=this.pages.length;null==u.getName()&&u.setName(mxResources.get("pageWithNumber",[q+1]));k.model.execute(new ChangePage(this,u,u,q,!0));l.push(u)}this.updatePageLinks(a,l)}}null!=g&&"mxGraphModel"===g.nodeName&&(f=k.importGraphModel(g,b,c,d))}finally{k.model.endUpdate()}}}catch(F){if(e)throw F;this.handleError(F)}return f};EditorUi.prototype.updatePageLinks=function(a,b){for(var c=0;c<b.length;c++)this.updatePageLinksForCell(a, +p[m].removeAttribute("id");var u=this.updatePageRoot(new DiagramPage(p[m]));a[n]=p[m].getAttribute("id");var q=this.pages.length;null==u.getName()&&u.setName(mxResources.get("pageWithNumber",[q+1]));k.model.execute(new ChangePage(this,u,u,q,!0));l.push(u)}this.updatePageLinks(a,l)}}null!=g&&"mxGraphModel"===g.nodeName&&(f=k.importGraphModel(g,b,c,d))}finally{k.model.endUpdate()}}}catch(E){if(e)throw E;this.handleError(E)}return f};EditorUi.prototype.updatePageLinks=function(a,b){for(var c=0;c<b.length;c++)this.updatePageLinksForCell(a, b[c].root)};EditorUi.prototype.updatePageLinksForCell=function(a,b){var c=document.createElement("div"),d=this.editor.graph,f=d.getLinkForCell(b);null!=f&&d.setLinkForCell(b,this.updatePageLink(a,f));if(d.isHtmlLabel(b)){c.innerHTML=d.getLabel(b);for(var e=c.getElementsByTagName("a"),k=!1,l=0;l<e.length;l++)f=e[l].getAttribute("href"),null!=f&&(e[l].setAttribute("href",this.updatePageLink(a,f)),k=!0);k&&d.labelChanged(b,c.innerHTML)}for(l=0;l<d.model.getChildCount(b);l++)this.updatePageLinksForCell(a, d.model.getChildAt(b,l))};EditorUi.prototype.updatePageLink=function(a,b){if("data:page/id,"==b.substring(0,13)){var c=a[b.substring(b.indexOf(",")+1)];b=null!=c?"data:page/id,"+c:null}else if("data:action/json,"==b.substring(0,17))try{var d=JSON.parse(b.substring(17));if(null!=d.actions){for(var f=0;f<d.actions.length;f++){var e=d.actions[f];null!=e.open&&"data:page/id,"==e.open.substring(0,13)&&(c=a[e.open.substring(e.open.indexOf(",")+1)],null!=c?e.open="data:page/id,"+c:delete e.open)}b="data:action/json,"+ JSON.stringify(d)}}catch(y){}return b};EditorUi.prototype.isRemoteVisioFormat=function(a){return/(\.v(sd|dx))($|\?)/i.test(a)||/(\.vs(s|x))($|\?)/i.test(a)};EditorUi.prototype.importVisio=function(a,b,c,d){d=null!=d?d:a.name;c=null!=c?c:mxUtils.bind(this,function(a){this.handleError(a)});var f=mxUtils.bind(this,function(){this.loadingExtensions=!1;if(this.doImportVisio){var f=this.isRemoteVisioFormat(d);try{var e="UNKNOWN-VISIO",k=d.lastIndexOf(".");0<=k&&k<d.length&&(e=d.substring(k+1).toUpperCase()); @@ -8868,7 +8529,7 @@ xml:b,blank:b==this.emptyDiagramXml,name:c}),"*"):(a(b,e,b!=this.emptyDiagramXml docUrl:a,info:b,name:c}),"*")}),null,null,p?mxUtils.bind(this,function(a){this.remoteInvoke("getCustomTemplates",null,null,a,function(){a({},0)})}):null);this.showDialog(l.container,620,440,!0,!1,mxUtils.bind(this,function(a){a&&this.actions.get("exit").funct()}));l.init();return}if("textContent"==g.action){l=this.getDiagramTextContent();k.postMessage(JSON.stringify({event:"textContent",data:l,message:g}),"*");return}if("status"==g.action){null!=g.messageKey?this.editor.setStatus(mxUtils.htmlEntities(mxResources.get(g.messageKey))): null!=g.message&&this.editor.setStatus(mxUtils.htmlEntities(g.message));null!=g.modified&&(this.editor.modified=g.modified);return}if("spinner"==g.action){var n=null!=g.messageKey?mxResources.get(g.messageKey):g.message;null==g.show||g.show?this.spinner.spin(document.body,n):this.spinner.stop();return}if("export"==g.action){if("png"==g.format||"xmlpng"==g.format){if(null==g.spin&&null==g.spinKey||this.spinner.spin(document.body,null!=g.spinKey?mxResources.get(g.spinKey):g.spin)){var t=null!=g.xml? g.xml:this.getFileData(!0);this.editor.graph.setEnabled(!1);var q=this.editor.graph,u=mxUtils.bind(this,function(a){this.editor.graph.setEnabled(!0);this.spinner.stop();var b=this.createLoadMessage("export");b.format=g.format;b.message=g;b.data=a;b.xml=encodeURIComponent(t);k.postMessage(JSON.stringify(b),"*")}),x=mxUtils.bind(this,function(a){null==a&&(a=Editor.blankImage);"xmlpng"==g.format&&(a=this.writeGraphModelToPng(a,"tEXt","mxfile",encodeURIComponent(t)));q!=this.editor.graph&&q.container.parentNode.removeChild(q.container); -u(a)});if(this.isExportToCanvas()){if(null!=this.pages&&this.currentPage!=this.pages[0]){var y=q.getGlobalVariable,q=this.createTemporaryGraph(q.getStylesheet()),E=this.pages[0];q.getGlobalVariable=function(a){return"page"==a?E.getName():"pagenumber"==a?1:y.apply(this,arguments)};document.body.appendChild(q.container);q.model.setRoot(E.root)}this.exportToCanvas(mxUtils.bind(this,function(a){x(a.toDataURL("image/png"))}),null,null,null,mxUtils.bind(this,function(){x(null)}),null,null,g.scale,null, +u(a)});if(this.isExportToCanvas()){if(null!=this.pages&&this.currentPage!=this.pages[0]){var y=q.getGlobalVariable,q=this.createTemporaryGraph(q.getStylesheet()),F=this.pages[0];q.getGlobalVariable=function(a){return"page"==a?F.getName():"pagenumber"==a?1:y.apply(this,arguments)};document.body.appendChild(q.container);q.model.setRoot(F.root)}this.exportToCanvas(mxUtils.bind(this,function(a){x(a.toDataURL("image/png"))}),null,null,null,mxUtils.bind(this,function(){x(null)}),null,null,g.scale,null, null,null,q)}else(new mxXmlRequest(EXPORT_URL,"format=png&embedXml="+("xmlpng"==g.format?"1":"0")+(null!=g.scale?"&scale="+g.scale:"")+"&base64=1&xml="+encodeURIComponent(encodeURIComponent(t)))).send(mxUtils.bind(this,function(a){200<=a.getStatus()&&299>=a.getStatus()?u("data:image/png;base64,"+a.getText()):x(null)}),mxUtils.bind(this,function(){x(null)}))}}else{null!=g.xml&&0<g.xml.length&&this.setFileData(g.xml);n=this.createLoadMessage("export");if("html2"==g.format||"html"==g.format&&("0"!=urlParams.pages|| null!=this.pages&&1<this.pages.length))l=this.getXmlFileData(),n.xml=mxUtils.getXml(l),n.data=this.getFileData(null,null,!0,null,null,null,l),n.format=g.format;else if("html"==g.format)t=this.editor.getGraphXml(),n.data=this.getHtml(t,this.editor.graph),n.xml=mxUtils.getXml(t),n.format=g.format;else{mxSvgCanvas2D.prototype.foAltText=null;l=this.editor.graph.background;l==mxConstants.NONE&&(l=null);n.xml=this.getFileData(!0);n.format="svg";if(g.embedImages||null==g.embedImages){if(null==g.spin&&null== g.spinKey||this.spinner.spin(document.body,null!=g.spinKey?mxResources.get(g.spinKey):g.spin))this.editor.graph.setEnabled(!1),"xmlsvg"==g.format?this.getEmbeddedSvg(n.xml,this.editor.graph,null,!0,mxUtils.bind(this,function(a){this.editor.graph.setEnabled(!0);this.spinner.stop();n.data=this.createSvgDataUri(a);k.postMessage(JSON.stringify(n),"*")})):this.convertImages(this.editor.graph.getSvg(l),mxUtils.bind(this,function(a){this.editor.graph.setEnabled(!0);this.spinner.stop();n.data=this.createSvgDataUri(mxUtils.getXml(a)); @@ -8883,16 +8544,16 @@ a.style.position="absolute";a.style.paddingTop="atlas"==uiTheme?"2px":"0px";a.st mxResources.get("save")+" ("+Editor.ctrlKey+"+S)"),mxEvent.addListener(b,"click",mxUtils.bind(this,function(){this.actions.get("save").funct()})),a.appendChild(b),"1"==urlParams.saveAndExit&&(b=document.createElement("a"),mxUtils.write(b,mxResources.get("saveAndExit")),b.setAttribute("title",mxResources.get("saveAndExit")),b.className="geBigButton geBigStandardButton",b.style.marginLeft="6px",mxEvent.addListener(b,"click",mxUtils.bind(this,function(){this.actions.get("saveAndExit").funct()})),a.appendChild(b))); b=document.createElement("a");mxUtils.write(b,mxResources.get("exit"));b.setAttribute("title",mxResources.get("exit"));b.className="geBigButton geBigStandardButton";b.style.marginLeft="6px";b.style.marginRight="20px";mxEvent.addListener(b,"click",mxUtils.bind(this,function(){this.actions.get("exit").funct()}));a.appendChild(b);this.toolbar.container.appendChild(a);this.toolbar.staticElements.push(a);a.style.right="atlas"!=uiTheme?"52px":"42px"}};EditorUi.prototype.showImportCsvDialog=function(){null== this.importCsvDialog&&(this.importCsvDialog=new TextareaDialog(this,mxResources.get("csv")+":",Editor.defaultCsvValue,mxUtils.bind(this,function(a){this.importCsv(a)}),null,null,620,430,null,!0,!0,mxResources.get("import"),this.isOffline()?null:"https://about.draw.io/import-from-csv-to-drawio/"));this.showDialog(this.importCsvDialog.container,640,520,!0,!0,null,null,null,null,!0);this.importCsvDialog.init()};EditorUi.prototype.executeLayoutList=function(a,b){for(var c=this.editor.graph,d=c.getSelectionCells(), -f=0;f<a.length;f++){var e=new window[a[f].layout](c);if(null!=a[f].config)for(var k in a[f].config)e[k]=a[f].config[k];this.executeLayout(function(){e.execute(c.getDefaultParent(),0==d.length?null:d)},f==a.length-1,b)}};EditorUi.prototype.importCsv=function(a,b){try{var c=a.split("\n"),d=[],f=[],e={};if(0<c.length){var k={},g=null,l=null,m=null,n=null,q=null,z=null,J=null,F=null,G="",H="auto",I="auto",E=null,K=null,M=40,R=40,X=100,T=0,L=this.editor.graph;L.getGraphBounds();for(var W=function(){null!= -b?b(la):(L.setSelectionCells(la),L.scrollCellToVisible(L.getSelectionCell()))},Z=L.getFreeInsertPoint(),ha=Z.x,fa=Z.y,Z=fa,da=null,V="auto",F=null,ba=[],Q=null,aa=null,Y=0;Y<c.length&&"#"==c[Y].charAt(0);){a=c[Y];for(Y++;Y<c.length&&"\\"==a.charAt(a.length-1)&&"#"==c[Y].charAt(0);)a=a.substring(0,a.length-1)+mxUtils.trim(c[Y].substring(1)),Y++;if("#"!=a.charAt(1)){var ea=a.indexOf(":");if(0<ea){var P=mxUtils.trim(a.substring(1,ea)),N=mxUtils.trim(a.substring(ea+1));"label"==P?da=L.sanitizeHtml(N): -"labelname"==P&&0<N.length&&"-"!=N?n=N:"labels"==P&&0<N.length&&"-"!=N?q=JSON.parse(N):"style"==P?g=N:"parentstyle"==P?z=N:"stylename"==P&&0<N.length&&"-"!=N?m=N:"styles"==P&&0<N.length&&"-"!=N?l=JSON.parse(N):"identity"==P&&0<N.length&&"-"!=N?J=N:"parent"==P&&0<N.length&&"-"!=N?F=N:"namespace"==P&&0<N.length&&"-"!=N?G=N:"width"==P?H=N:"height"==P?I=N:"left"==P&&0<N.length?E=N:"top"==P&&0<N.length?K=N:"ignore"==P?aa=N.split(","):"connect"==P?ba.push(JSON.parse(N)):"link"==P?Q=N:"padding"==P?T=parseFloat(N): -"edgespacing"==P?M=parseFloat(N):"nodespacing"==P?R=parseFloat(N):"levelspacing"==P?X=parseFloat(N):"layout"==P&&(V=N)}}}if(null==c[Y])throw Error(mxResources.get("invalidOrMissingFile"));var ca=this.editor.csvToArray(c[Y]),P=ea=null;if(null!=J||null!=F)for(var S=0;S<ca.length;S++)J==ca[S]&&(ea=S),F==ca[S]&&(P=S);null==da&&(da="%"+ca[0]+"%");if(null!=ba)for(var U=0;U<ba.length;U++)null==k[ba[U].to]&&(k[ba[U].to]={});L.model.beginUpdate();try{for(S=Y+1;S<c.length;S++){var ja=this.editor.csvToArray(c[S]); +f=0;f<a.length;f++){var e=new window[a[f].layout](c);if(null!=a[f].config)for(var k in a[f].config)e[k]=a[f].config[k];this.executeLayout(function(){e.execute(c.getDefaultParent(),0==d.length?null:d)},f==a.length-1,b)}};EditorUi.prototype.importCsv=function(a,b){try{var c=a.split("\n"),d=[],f=[],e={};if(0<c.length){var k={},g=null,l=null,m=null,n=null,q=null,z=null,J=null,E=null,G="",I="auto",H="auto",F=null,K=null,M=40,R=40,X=100,T=0,L=this.editor.graph;L.getGraphBounds();for(var W=function(){null!= +b?b(la):(L.setSelectionCells(la),L.scrollCellToVisible(L.getSelectionCell()))},Z=L.getFreeInsertPoint(),ha=Z.x,fa=Z.y,Z=fa,da=null,V="auto",E=null,ba=[],Q=null,aa=null,Y=0;Y<c.length&&"#"==c[Y].charAt(0);){a=c[Y];for(Y++;Y<c.length&&"\\"==a.charAt(a.length-1)&&"#"==c[Y].charAt(0);)a=a.substring(0,a.length-1)+mxUtils.trim(c[Y].substring(1)),Y++;if("#"!=a.charAt(1)){var ea=a.indexOf(":");if(0<ea){var P=mxUtils.trim(a.substring(1,ea)),N=mxUtils.trim(a.substring(ea+1));"label"==P?da=L.sanitizeHtml(N): +"labelname"==P&&0<N.length&&"-"!=N?n=N:"labels"==P&&0<N.length&&"-"!=N?q=JSON.parse(N):"style"==P?g=N:"parentstyle"==P?z=N:"stylename"==P&&0<N.length&&"-"!=N?m=N:"styles"==P&&0<N.length&&"-"!=N?l=JSON.parse(N):"identity"==P&&0<N.length&&"-"!=N?J=N:"parent"==P&&0<N.length&&"-"!=N?E=N:"namespace"==P&&0<N.length&&"-"!=N?G=N:"width"==P?I=N:"height"==P?H=N:"left"==P&&0<N.length?F=N:"top"==P&&0<N.length?K=N:"ignore"==P?aa=N.split(","):"connect"==P?ba.push(JSON.parse(N)):"link"==P?Q=N:"padding"==P?T=parseFloat(N): +"edgespacing"==P?M=parseFloat(N):"nodespacing"==P?R=parseFloat(N):"levelspacing"==P?X=parseFloat(N):"layout"==P&&(V=N)}}}if(null==c[Y])throw Error(mxResources.get("invalidOrMissingFile"));var ca=this.editor.csvToArray(c[Y]),P=ea=null;if(null!=J||null!=E)for(var S=0;S<ca.length;S++)J==ca[S]&&(ea=S),E==ca[S]&&(P=S);null==da&&(da="%"+ca[0]+"%");if(null!=ba)for(var U=0;U<ba.length;U++)null==k[ba[U].to]&&(k[ba[U].to]={});L.model.beginUpdate();try{for(S=Y+1;S<c.length;S++){var ja=this.editor.csvToArray(c[S]); if(null==ja){var ka=40<c[S].length?c[S].substring(0,40)+"...":c[S];throw Error(S+" ("+ka+") "+mxResources.get("containsValidationErrors"));}if(ja.length==ca.length){var O=null,ma=null!=ea?G+ja[ea]:null;null!=ma&&(O=L.model.getCell(ma));var J=null!=O,ga=new mxCell(da,new mxGeometry(ha,Z,0,0),g||"whiteSpace=wrap;html=1;");ga.vertex=!0;ga.id=ma;for(var ia=0;ia<ja.length;ia++)L.setAttributeForCell(ga,ca[ia],ja[ia]);if(null!=n&&null!=q){var ua=q[ga.getAttribute(n)];null!=ua&&L.labelChanged(ga,ua)}if(null!= m&&null!=l){var va=l[ga.getAttribute(m)];null!=va&&(ga.style=va)}L.setAttributeForCell(ga,"placeholders","1");ga.style=L.replacePlaceholders(ga,ga.style);J&&(L.model.setGeometry(O,ga.geometry),L.model.setStyle(O,ga.style),0>mxUtils.indexOf(f,O)&&f.push(O));O=ga;if(!J)for(U=0;U<ba.length;U++)k[ba[U].to][O.getAttribute(ba[U].to)]=O;null!=Q&&"link"!=Q&&(L.setLinkForCell(O,O.getAttribute(Q)),L.setAttributeForCell(O,Q,null));L.fireEvent(new mxEventObject("cellsInserted","cells",[O]));var wa=this.editor.graph.getPreferredSizeForCell(O); -O.vertex&&(null!=E&&null!=O.getAttribute(E)&&(O.geometry.x=ha+parseFloat(O.getAttribute(E))),null!=K&&null!=O.getAttribute(K)&&(O.geometry.y=fa+parseFloat(O.getAttribute(K))),"@"==H.charAt(0)&&null!=O.getAttribute(H.substring(1))?O.geometry.width=parseFloat(O.getAttribute(H.substring(1))):O.geometry.width="auto"==H?wa.width+T:parseFloat(H),"@"==I.charAt(0)&&null!=O.getAttribute(I.substring(1))?O.geometry.height=parseFloat(O.getAttribute(I.substring(1))):O.geometry.height="auto"==I?wa.height+T:parseFloat(I), -Z+=O.geometry.height+R);J?(null==e[ma]&&(e[ma]=[]),e[ma].push(O)):(F=null!=P?L.model.getCell(G+ja[P]):null,d.push(O),null!=F?(F.style=L.replacePlaceholders(F,z),L.addCell(O,F)):f.push(L.addCell(O)))}}for(var na=f.slice(),la=f.slice(),U=0;U<ba.length;U++)for(var xa=ba[U],S=0;S<f.length;S++){var O=f[S],ya=mxUtils.bind(this,function(a,b,c){var d=b.getAttribute(c.from);if(null!=d){L.setAttributeForCell(b,c.from,null);for(var d=d.split(","),f=0;f<d.length;f++){var e=k[c.to][d[f]];if(null!=e){var g=c.label; +O.vertex&&(null!=F&&null!=O.getAttribute(F)&&(O.geometry.x=ha+parseFloat(O.getAttribute(F))),null!=K&&null!=O.getAttribute(K)&&(O.geometry.y=fa+parseFloat(O.getAttribute(K))),"@"==I.charAt(0)&&null!=O.getAttribute(I.substring(1))?O.geometry.width=parseFloat(O.getAttribute(I.substring(1))):O.geometry.width="auto"==I?wa.width+T:parseFloat(I),"@"==H.charAt(0)&&null!=O.getAttribute(H.substring(1))?O.geometry.height=parseFloat(O.getAttribute(H.substring(1))):O.geometry.height="auto"==H?wa.height+T:parseFloat(H), +Z+=O.geometry.height+R);J?(null==e[ma]&&(e[ma]=[]),e[ma].push(O)):(E=null!=P?L.model.getCell(G+ja[P]):null,d.push(O),null!=E?(E.style=L.replacePlaceholders(E,z),L.addCell(O,E)):f.push(L.addCell(O)))}}for(var na=f.slice(),la=f.slice(),U=0;U<ba.length;U++)for(var xa=ba[U],S=0;S<f.length;S++){var O=f[S],ya=mxUtils.bind(this,function(a,b,c){var d=b.getAttribute(c.from);if(null!=d){L.setAttributeForCell(b,c.from,null);for(var d=d.split(","),f=0;f<d.length;f++){var e=k[c.to][d[f]];if(null!=e){var g=c.label; null!=c.fromlabel&&(g=(b.getAttribute(c.fromlabel)||"")+(g||""));null!=c.tolabel&&(g=(g||"")+(e.getAttribute(c.tolabel)||""));la.push(L.insertEdge(null,null,g||"",c.invert?e:a,c.invert?a:e,c.style||L.createCurrentEdgeStyle()));mxUtils.remove(c.invert?a:e,na)}}}});ya(O,O,xa);if(null!=e[O.id])for(ia=0;ia<e[O.id].length;ia++)ya(O,e[O.id][ia],xa)}if(null!=aa)for(S=0;S<d.length;S++)for(O=d[S],ia=0;ia<aa.length;ia++)L.setAttributeForCell(O,mxUtils.trim(aa[ia]),null);if(0<f.length){var oa=new mxParallelEdgeLayout(L); -oa.spacing=M;var ta=function(){0<oa.spacing&&oa.execute(L.getDefaultParent());for(var a=0;a<f.length;a++){var b=L.getCellGeometry(f[a]);b.x=Math.round(L.snap(b.x));b.y=Math.round(L.snap(b.y));"auto"==H&&(b.width=Math.round(L.snap(b.width)));"auto"==I&&(b.height=Math.round(L.snap(b.height)))}};if("["==V.charAt(0)){var za=W;L.view.validate();this.executeLayoutList(JSON.parse(V),function(){ta();za()});W=null}else if("circle"==V){var ra=new mxCircleLayout(L);ra.resetEdges=!1;var Aa=ra.isVertexIgnored; +oa.spacing=M;var ta=function(){0<oa.spacing&&oa.execute(L.getDefaultParent());for(var a=0;a<f.length;a++){var b=L.getCellGeometry(f[a]);b.x=Math.round(L.snap(b.x));b.y=Math.round(L.snap(b.y));"auto"==I&&(b.width=Math.round(L.snap(b.width)));"auto"==H&&(b.height=Math.round(L.snap(b.height)))}};if("["==V.charAt(0)){var za=W;L.view.validate();this.executeLayoutList(JSON.parse(V),function(){ta();za()});W=null}else if("circle"==V){var ra=new mxCircleLayout(L);ra.resetEdges=!1;var Aa=ra.isVertexIgnored; ra.isVertexIgnored=function(a){return Aa.apply(this,arguments)||0>mxUtils.indexOf(f,a)};this.executeLayout(function(){ra.execute(L.getDefaultParent());ta()},!0,W);W=null}else if("horizontaltree"==V||"verticaltree"==V||"auto"==V&&la.length==2*f.length-1&&1==na.length){L.view.validate();var sa=new mxCompactTreeLayout(L,"horizontaltree"==V);sa.levelDistance=R;sa.edgeRouting=!1;sa.resetEdges=!1;this.executeLayout(function(){sa.execute(L.getDefaultParent(),0<na.length?na[0]:null)},!0,W);W=null}else if("horizontalflow"== V||"verticalflow"==V||"auto"==V&&1==na.length){L.view.validate();var pa=new mxHierarchicalLayout(L,"horizontalflow"==V?mxConstants.DIRECTION_WEST:mxConstants.DIRECTION_NORTH);pa.intraCellSpacing=R;pa.parallelEdgeSpacing=M;pa.interRankCellSpacing=X;pa.disableEdgeStyle=!1;this.executeLayout(function(){pa.execute(L.getDefaultParent(),la);L.moveCells(la,ha,fa)},!0,W);W=null}else if("organic"==V||"auto"==V&&la.length>f.length){L.view.validate();var qa=new mxFastOrganicLayout(L);qa.forceConstant=3*R;qa.resetEdges= !1;var Ba=qa.isVertexIgnored;qa.isVertexIgnored=function(a){return Ba.apply(this,arguments)||0>mxUtils.indexOf(f,a)};oa=new mxParallelEdgeLayout(L);oa.spacing=M;this.executeLayout(function(){qa.execute(L.getDefaultParent());ta()},!0,W);W=null}}this.hideDialog()}finally{L.model.endUpdate()}null!=W&&W()}}catch(Ca){this.handleError(Ca)}};EditorUi.prototype.getSearch=function(a){var b="";if("1"!=urlParams.offline&&"1"!=urlParams.demo&&null!=a&&0<window.location.search.length){var c="?",d;for(d in urlParams)0> @@ -8933,21 +8594,21 @@ var CommentsWindow=function(a,c,b,d,g,e){function k(){for(var a=C.getElementsByT "geCommentEditTxtArea";l.style.minHeight=f.offsetHeight+"px";l.value=a.content;b.insertBefore(l,f);var m=document.createElement("div");m.className="geCommentEditBtns";var n=mxUtils.button(mxResources.get("cancel"),function(){d?(b.parentNode.removeChild(b),k()):e();t=null});n.className="geCommentEditBtn";m.appendChild(n);var p=mxUtils.button(mxResources.get("save"),function(){f.innerHTML="";a.content=l.value;mxUtils.write(f,a.content);e();c(a);t=null});mxEvent.addListener(l,"keydown",mxUtils.bind(this, function(a){mxEvent.isConsumed(a)||((mxEvent.isControlDown(a)||mxClient.IS_MAC&&mxEvent.isMetaDown(a))&&13==a.keyCode?(p.click(),mxEvent.consume(a)):27==a.keyCode&&(n.click(),mxEvent.consume(a)))}));p.focus();p.className="geCommentEditBtn gePrimaryBtn";m.appendChild(p);b.insertBefore(m,f);g.style.display="none";f.style.display="none";l.focus()}function n(b,c){c.innerHTML="";var d=new Date(b.modifiedDate),e=a.timeSince(d);null==e&&(e=mxResources.get("lessThanAMinute"));mxUtils.write(c,mxResources.get("timeAgo", [e],"{1} ago"));c.setAttribute("title",d.toLocaleDateString()+" "+d.toLocaleTimeString())}function q(a){var b=document.createElement("img");b.className="geCommentBusyImg";b.src=IMAGE_PATH+"/spin.gif";a.appendChild(b);a.busyImg=b}function f(a){a.style.border="1px solid red";a.removeChild(a.busyImg)}function l(a){a.style.border="";a.removeChild(a.busyImg)}function p(b,c,d,e,g){function B(a,c,d){var e=document.createElement("li");e.className="geCommentAction";var f=document.createElement("a");f.className= -"geCommentActionLnk";mxUtils.write(f,a);e.appendChild(f);mxEvent.addListener(f,"click",function(a){c(a,b);a.preventDefault();mxEvent.consume(a)});F.appendChild(e);d&&(e.style.display="none")}function D(){function a(b){c.push(d);if(null!=b.replies)for(var e=0;e<b.replies.length;e++)d=d.nextSibling,a(b.replies[e])}var c=[],d=E;a(b);return{pdiv:d,replies:c}}function x(c,d,g,k,n){function t(){q(u);b.addReply(z,function(a){z.id=a;b.replies.push(z);l(u);g&&g()},function(b){A();f(u);a.handleError(b,null, -null,null,mxUtils.htmlEntities(mxResources.get("objectNotFound")))},k,n)}function A(){m(z,u,function(a){t()},!0)}var B=D().pdiv,z=a.newComment(c,a.getCurrentUser());z.pCommentId=b.id;null==b.replies&&(b.replies=[]);var u=p(z,b.replies,B,e+1);d?A():t()}if(g||!b.isResolved){A.style.display="none";var E=document.createElement("div");E.className="geCommentContainer";E.setAttribute("data-commentId",b.id);E.style.marginLeft=20*e+5+"px";b.isResolved&&"dark"!=uiTheme&&(E.style.backgroundColor="ghostWhite"); -var y=document.createElement("div");y.className="geCommentHeader";var J=document.createElement("img");J.className="geCommentUserImg";J.src=b.user.pictureUrl||Editor.userImage;y.appendChild(J);J=document.createElement("div");J.className="geCommentHeaderTxt";y.appendChild(J);var H=document.createElement("div");H.className="geCommentUsername";mxUtils.write(H,b.user.displayName||"");J.appendChild(H);H=document.createElement("div");H.className="geCommentDate";H.setAttribute("data-commentId",b.id);n(b, -H);J.appendChild(H);E.appendChild(y);y=document.createElement("div");y.className="geCommentTxt";mxUtils.write(y,b.content||"");E.appendChild(y);y=document.createElement("div");y.className="geCommentActions";var F=document.createElement("ul");F.className="geCommentActionsList";y.appendChild(F);u||0!=e&&!v||B(mxResources.get("reply"),function(){x("",!0)},b.isResolved);J=a.getCurrentUser();null==J||J.id!=b.user.id||u||(B(mxResources.get("edit"),function(){function c(){m(b,E,function(){q(E);b.editComment(b.content, -function(){l(E)},function(b){f(E);c();a.handleError(b,null,null,null,mxUtils.htmlEntities(mxResources.get("objectNotFound")))})})}c()},b.isResolved),B(mxResources.get("delete"),function(){a.confirm(mxResources.get("areYouSure"),function(){q(E);b.deleteComment(function(){for(var a=D(b).replies,d=0;d<a.length;d++)C.removeChild(a[d]);for(d=0;d<c.length;d++)if(c[d]==b){c.splice(d,1);break}A.style.display=0==C.getElementsByTagName("div").length?"block":"none"},function(b){f(E);a.handleError(b,null,null, +"geCommentActionLnk";mxUtils.write(f,a);e.appendChild(f);mxEvent.addListener(f,"click",function(a){c(a,b);a.preventDefault();mxEvent.consume(a)});I.appendChild(e);d&&(e.style.display="none")}function D(){function a(b){c.push(d);if(null!=b.replies)for(var e=0;e<b.replies.length;e++)d=d.nextSibling,a(b.replies[e])}var c=[],d=F;a(b);return{pdiv:d,replies:c}}function x(c,d,g,k,n){function t(){q(u);b.addReply(z,function(a){z.id=a;b.replies.push(z);l(u);g&&g()},function(b){A();f(u);a.handleError(b,null, +null,null,mxUtils.htmlEntities(mxResources.get("objectNotFound")))},k,n)}function A(){m(z,u,function(a){t()},!0)}var B=D().pdiv,z=a.newComment(c,a.getCurrentUser());z.pCommentId=b.id;null==b.replies&&(b.replies=[]);var u=p(z,b.replies,B,e+1);d?A():t()}if(g||!b.isResolved){A.style.display="none";var F=document.createElement("div");F.className="geCommentContainer";F.setAttribute("data-commentId",b.id);F.style.marginLeft=20*e+5+"px";b.isResolved&&"dark"!=uiTheme&&(F.style.backgroundColor="ghostWhite"); +var y=document.createElement("div");y.className="geCommentHeader";var J=document.createElement("img");J.className="geCommentUserImg";J.src=b.user.pictureUrl||Editor.userImage;y.appendChild(J);J=document.createElement("div");J.className="geCommentHeaderTxt";y.appendChild(J);var E=document.createElement("div");E.className="geCommentUsername";mxUtils.write(E,b.user.displayName||"");J.appendChild(E);E=document.createElement("div");E.className="geCommentDate";E.setAttribute("data-commentId",b.id);n(b, +E);J.appendChild(E);F.appendChild(y);y=document.createElement("div");y.className="geCommentTxt";mxUtils.write(y,b.content||"");F.appendChild(y);y=document.createElement("div");y.className="geCommentActions";var I=document.createElement("ul");I.className="geCommentActionsList";y.appendChild(I);u||0!=e&&!v||B(mxResources.get("reply"),function(){x("",!0)},b.isResolved);J=a.getCurrentUser();null==J||J.id!=b.user.id||u||(B(mxResources.get("edit"),function(){function c(){m(b,F,function(){q(F);b.editComment(b.content, +function(){l(F)},function(b){f(F);c();a.handleError(b,null,null,null,mxUtils.htmlEntities(mxResources.get("objectNotFound")))})})}c()},b.isResolved),B(mxResources.get("delete"),function(){a.confirm(mxResources.get("areYouSure"),function(){q(F);b.deleteComment(function(){for(var a=D(b).replies,d=0;d<a.length;d++)C.removeChild(a[d]);for(d=0;d<c.length;d++)if(c[d]==b){c.splice(d,1);break}A.style.display=0==C.getElementsByTagName("div").length?"block":"none"},function(b){f(F);a.handleError(b,null,null, null,mxUtils.htmlEntities(mxResources.get("objectNotFound")))})})},b.isResolved));u||0!=e||B(b.isResolved?mxResources.get("reopen"):mxResources.get("resolve"),function(a){function c(){var c=a.target;c.innerHTML="";b.isResolved=!b.isResolved;mxUtils.write(c,b.isResolved?mxResources.get("reopen"):mxResources.get("resolve"));for(var d=b.isResolved?"none":"",e=D(b).replies,f="dark"==uiTheme?"transparent":b.isResolved?"ghostWhite":"white",g=0;g<e.length;g++){e[g].style.backgroundColor=f;for(var l=e[g].querySelectorAll(".geCommentAction"), -m=0;m<l.length;m++)l[m]!=c.parentNode&&(l[m].style.display=d);z||(e[g].style.display="none")}k()}b.isResolved?x(mxResources.get("reOpened")+": ",!0,c,!1,!0):x(mxResources.get("markedAsResolved"),!1,c,!0)});E.appendChild(y);null!=d?C.insertBefore(E,d.nextSibling):C.appendChild(E);for(d=0;null!=b.replies&&d<b.replies.length;d++)y=b.replies[d],y.isResolved=b.isResolved,p(y,b.replies,null,e+1,g);null!=t&&(t.comment.id==b.id?(g=b.content,b.content=t.comment.content,m(b,E,t.saveCallback,t.deleteOnCancel), -b.content=g):null==t.comment.id&&t.comment.pCommentId==b.id&&(C.appendChild(t.div),m(t.comment,t.div,t.saveCallback,t.deleteOnCancel)));return E}}var u=!a.canComment(),v=a.canReplyToReplies(),t=null,y=document.createElement("div");y.className="geCommentsWin";y.style.background="white"==Dialog.backdropColor?"whiteSmoke":Dialog.backdropColor;var x=EditorUi.compactUi?"26px":"30px",C=document.createElement("div");C.className="geCommentsList";C.style.backgroundColor="white"==Dialog.backdropColor?"whiteSmoke": +m=0;m<l.length;m++)l[m]!=c.parentNode&&(l[m].style.display=d);z||(e[g].style.display="none")}k()}b.isResolved?x(mxResources.get("reOpened")+": ",!0,c,!1,!0):x(mxResources.get("markedAsResolved"),!1,c,!0)});F.appendChild(y);null!=d?C.insertBefore(F,d.nextSibling):C.appendChild(F);for(d=0;null!=b.replies&&d<b.replies.length;d++)y=b.replies[d],y.isResolved=b.isResolved,p(y,b.replies,null,e+1,g);null!=t&&(t.comment.id==b.id?(g=b.content,b.content=t.comment.content,m(b,F,t.saveCallback,t.deleteOnCancel), +b.content=g):null==t.comment.id&&t.comment.pCommentId==b.id&&(C.appendChild(t.div),m(t.comment,t.div,t.saveCallback,t.deleteOnCancel)));return F}}var u=!a.canComment(),v=a.canReplyToReplies(),t=null,y=document.createElement("div");y.className="geCommentsWin";y.style.background="white"==Dialog.backdropColor?"whiteSmoke":Dialog.backdropColor;var x=EditorUi.compactUi?"26px":"30px",C=document.createElement("div");C.className="geCommentsList";C.style.backgroundColor="white"==Dialog.backdropColor?"whiteSmoke": Dialog.backdropColor;C.style.bottom=parseInt(x)+7+"px";y.appendChild(C);var A=document.createElement("span");A.style.cssText="display:none;padding-top:10px;text-align:center;";mxUtils.write(A,mxResources.get("noCommentsFound"));var B=document.createElement("div");B.className="geToolbarContainer geCommentsToolbar";B.style.height=x;B.style.padding=EditorUi.compactUi?"4px 0px 3px 0px":"1px";B.style.backgroundColor="white"==Dialog.backdropColor?"whiteSmoke":Dialog.backdropColor;mxClient.IS_QUIRKS&&(B.style.filter= "none");x=document.createElement("a");x.className="geButton";mxClient.IS_QUIRKS&&(x.style.filter="none");if(!u){var D=x.cloneNode();D.innerHTML='<div class="geSprite geSprite-plus" style="display:inline-block;"></div>';D.setAttribute("title",mxResources.get("create")+"...");mxEvent.addListener(D,"click",function(b){function c(){m(d,e,function(b){q(e);a.addComment(b,function(a){b.id=a;J.push(b);l(e)},function(b){f(e);c();a.handleError(b,null,null,null,mxUtils.htmlEntities(mxResources.get("objectNotFound")))})}, -!0)}var d=a.newComment("",a.getCurrentUser()),e=p(d,J,null,0);c();b.preventDefault();mxEvent.consume(b)});B.appendChild(D)}D=x.cloneNode();D.innerHTML='<img src="'+IMAGE_PATH+'/check.png" style="width: 16px; padding: 2px;">';D.setAttribute("title",mxResources.get("showResolved"));var z=!1;"dark"==uiTheme&&(D.style.filter="invert(100%)");mxEvent.addListener(D,"click",function(a){this.className=(z=!z)?"geButton geCheckedBtn":"geButton";F();a.preventDefault();mxEvent.consume(a)});B.appendChild(D);a.commentsRefreshNeeded()&& -(D=x.cloneNode(),D.innerHTML='<img src="'+IMAGE_PATH+'/update16.png" style="width: 16px; padding: 2px;">',D.setAttribute("title",mxResources.get("refresh")),"dark"==uiTheme&&(D.style.filter="invert(100%)"),mxEvent.addListener(D,"click",function(a){F();a.preventDefault();mxEvent.consume(a)}),B.appendChild(D));a.commentsSaveNeeded()&&(x=x.cloneNode(),x.innerHTML='<img src="'+IMAGE_PATH+'/save.png" style="width: 20px; padding: 2px;">',x.setAttribute("title",mxResources.get("save")),"dark"==uiTheme&& -(x.style.filter="invert(100%)"),mxEvent.addListener(x,"click",function(a){e();a.preventDefault();mxEvent.consume(a)}),B.appendChild(x));y.appendChild(B);var J=[],F=mxUtils.bind(this,function(){this.hasError=!1;if(null!=t){t.div=t.div.cloneNode(!0);var b=t.div.querySelector(".geCommentEditTxtArea"),c=t.div.querySelector(".geCommentEditBtns");t.comment.content=b.value;b.parentNode.removeChild(b);c.parentNode.removeChild(c)}C.innerHTML='<div style="padding-top:10px;text-align:center;"><img src="'+IMAGE_PATH+ +!0)}var d=a.newComment("",a.getCurrentUser()),e=p(d,J,null,0);c();b.preventDefault();mxEvent.consume(b)});B.appendChild(D)}D=x.cloneNode();D.innerHTML='<img src="'+IMAGE_PATH+'/check.png" style="width: 16px; padding: 2px;">';D.setAttribute("title",mxResources.get("showResolved"));var z=!1;"dark"==uiTheme&&(D.style.filter="invert(100%)");mxEvent.addListener(D,"click",function(a){this.className=(z=!z)?"geButton geCheckedBtn":"geButton";E();a.preventDefault();mxEvent.consume(a)});B.appendChild(D);a.commentsRefreshNeeded()&& +(D=x.cloneNode(),D.innerHTML='<img src="'+IMAGE_PATH+'/update16.png" style="width: 16px; padding: 2px;">',D.setAttribute("title",mxResources.get("refresh")),"dark"==uiTheme&&(D.style.filter="invert(100%)"),mxEvent.addListener(D,"click",function(a){E();a.preventDefault();mxEvent.consume(a)}),B.appendChild(D));a.commentsSaveNeeded()&&(x=x.cloneNode(),x.innerHTML='<img src="'+IMAGE_PATH+'/save.png" style="width: 20px; padding: 2px;">',x.setAttribute("title",mxResources.get("save")),"dark"==uiTheme&& +(x.style.filter="invert(100%)"),mxEvent.addListener(x,"click",function(a){e();a.preventDefault();mxEvent.consume(a)}),B.appendChild(x));y.appendChild(B);var J=[],E=mxUtils.bind(this,function(){this.hasError=!1;if(null!=t){t.div=t.div.cloneNode(!0);var b=t.div.querySelector(".geCommentEditTxtArea"),c=t.div.querySelector(".geCommentEditBtns");t.comment.content=b.value;b.parentNode.removeChild(b);c.parentNode.removeChild(c)}C.innerHTML='<div style="padding-top:10px;text-align:center;"><img src="'+IMAGE_PATH+ '/spin.gif" valign="middle"> '+mxUtils.htmlEntities(mxResources.get("loading"))+"...</div>";v=a.canReplyToReplies();a.commentsSupported()?a.getComments(function(a){function b(a){if(null!=a){a.sort(function(a,b){return new Date(a.modifiedDate)-new Date(b.modifiedDate)});for(var c=0;c<a.length;c++)b(a[c].replies)}}a.sort(function(a,b){return new Date(a.modifiedDate)-new Date(b.modifiedDate)});C.innerHTML="";C.appendChild(A);A.style.display="block";J=a;for(a=0;a<J.length;a++)b(J[a].replies),p(J[a],J, -null,0,z);null!=t&&null==t.comment.id&&null==t.comment.pCommentId&&(C.appendChild(t.div),m(t.comment,t.div,t.saveCallback,t.deleteOnCancel))},mxUtils.bind(this,function(a){C.innerHTML=mxUtils.htmlEntities(mxResources.get("error")+(a&&a.message?": "+a.message:""));this.hasError=!0})):C.innerHTML=mxUtils.htmlEntities(mxResources.get("error"))});F();this.refreshComments=F;B=mxUtils.bind(this,function(){function a(b){var d=c[b.id];if(null!=d)for(n(b,d),d=0;null!=b.replies&&d<b.replies.length;d++)a(b.replies[d])} +null,0,z);null!=t&&null==t.comment.id&&null==t.comment.pCommentId&&(C.appendChild(t.div),m(t.comment,t.div,t.saveCallback,t.deleteOnCancel))},mxUtils.bind(this,function(a){C.innerHTML=mxUtils.htmlEntities(mxResources.get("error")+(a&&a.message?": "+a.message:""));this.hasError=!0})):C.innerHTML=mxUtils.htmlEntities(mxResources.get("error"))});E();this.refreshComments=E;B=mxUtils.bind(this,function(){function a(b){var d=c[b.id];if(null!=d)for(n(b,d),d=0;null!=b.replies&&d<b.replies.length;d++)a(b.replies[d])} if(this.window.isVisible()){for(var b=C.querySelectorAll(".geCommentDate"),c={},d=0;d<b.length;d++){var e=b[d];c[e.getAttribute("data-commentId")]=e}for(d=0;d<J.length;d++)a(J[d])}});setInterval(B,6E4);this.refreshCommentsTime=B;this.window=new mxWindow(mxResources.get("comments"),y,c,b,d,g,!0,!0);this.window.minimumSize=new mxRectangle(0,0,300,200);this.window.destroyOnClose=!1;this.window.setMaximizable(!1);this.window.setResizable(!0);this.window.setClosable(!0);this.window.setVisible(!0);this.window.addListener(mxEvent.SHOW, mxUtils.bind(this,function(){this.window.fit()}));this.window.setLocation=function(a,b){var c=window.innerHeight||document.body.clientHeight||document.documentElement.clientHeight;a=Math.max(0,Math.min(a,(window.innerWidth||document.body.clientWidth||document.documentElement.clientWidth)-this.table.clientWidth));b=Math.max(0,Math.min(b,c-this.table.clientHeight-48));this.getX()==a&&this.getY()==b||mxWindow.prototype.setLocation.apply(this,arguments)};var G=mxUtils.bind(this,function(){var a=this.window.getX(), b=this.window.getY();this.window.setLocation(a,b)});mxEvent.addListener(window,"resize",G);this.destroy=function(){mxEvent.removeListener(window,"resize",G);this.window.destroy()}},ConfirmDialog=function(a,c,b,d,g,e,k,m,n,q){var f=document.createElement("div");f.style.textAlign="center";var l=document.createElement("div");l.style.padding="6px";l.style.overflow="auto";l.style.maxHeight="44px";l.style.lineHeight="1.2em";mxClient.IS_QUIRKS&&(l.style.height="60px");mxUtils.write(l,c);f.appendChild(l); @@ -9079,13 +8740,13 @@ DriveFile.prototype.loadPatchDescriptor=function(a,c){this.ui.drive.executeReque DriveFile.prototype.commentsSupported=function(){return!0}; DriveFile.prototype.getComments=function(a,c){function b(a,c,k){if(c.deleted)return null;k=new DriveComment(a,c.commentId||c.replyId,c.content,c.modifiedDate,c.createdDate,"resolved"==c.status,c.author.isAuthenticatedUser?d:new DrawioUser(c.author.permissionId,c.author.emailAddress,c.author.displayName,c.author.picture.url),k);for(var e=0;null!=c.replies&&e<c.replies.length;e++)k.addReplyDirect(b(a,c.replies[e],c.commentId));return k}var d=this.ui.getCurrentUser();this.ui.drive.executeRequest(gapi.client.drive.comments.list({fileId:this.getId()}), mxUtils.bind(this,function(c){for(var d=[],k=0;k<c.items.length;k++){var g=b(this,c.items[k]);null!=g&&d.push(g)}a(d)}),c)};DriveFile.prototype.addComment=function(a,c,b){a={content:a.content};this.ui.drive.executeRequest(gapi.client.drive.comments.insert({fileId:this.getId(),resource:a}),mxUtils.bind(this,function(a){c(a.commentId)}),b)};DriveFile.prototype.canReplyToReplies=function(){return!1};DriveFile.prototype.canComment=function(){return this.desc.canComment}; -DriveFile.prototype.newComment=function(a,c){return new DriveComment(this,null,a,Date.now(),Date.now(),!1,c)};DriveLibrary=function(a,c,b){DriveFile.call(this,a,c,b)};mxUtils.extend(DriveLibrary,DriveFile);DriveLibrary.prototype.isAutosave=function(){return!0};DriveLibrary.prototype.save=function(a,c,b){this.ui.drive.saveFile(this,a,mxUtils.bind(this,function(a){this.desc=a;null!=c&&c(a)}),b)};DriveLibrary.prototype.open=function(){};DriveClient=function(a){mxEventSource.call(this);this.ui=a;this.xmlMimeType="application/vnd.jgraph.mxfile";this.mimeType="application/vnd.jgraph.mxfile.realtime";this.ui.editor.chromeless&&!this.ui.editor.editable&&"1"!=urlParams.rt?(this.appId="850530949725",this.clientId="850530949725.apps.googleusercontent.com",this.scopes=["https://www.googleapis.com/auth/drive.readonly","https://www.googleapis.com/auth/userinfo.profile"]):this.ui.isDriveDomain()?(this.appId="671128082532",this.clientId="671128082532.apps.googleusercontent.com"): -(this.appId="420247213240",this.clientId="420247213240-hnbju1pt13seqrc1hhd5htpotk4g9q7u.apps.googleusercontent.com",this.mimeType="application/vnd.jgraph.mxfile.rtlegacy");this.mimeTypes=this.xmlMimeType+"application/mxe,application/mxr,application/vnd.jgraph.mxfile.realtime,application/vnd.jgraph.mxfile.rtlegacy";"1"==urlParams.photos&&this.scopes.push("https://www.googleapis.com/auth/photos.upload")};mxUtils.extend(DriveClient,mxEventSource); +DriveFile.prototype.newComment=function(a,c){return new DriveComment(this,null,a,Date.now(),Date.now(),!1,c)};DriveLibrary=function(a,c,b){DriveFile.call(this,a,c,b)};mxUtils.extend(DriveLibrary,DriveFile);DriveLibrary.prototype.isAutosave=function(){return!0};DriveLibrary.prototype.save=function(a,c,b){this.ui.drive.saveFile(this,a,mxUtils.bind(this,function(a){this.desc=a;null!=c&&c(a)}),b)};DriveLibrary.prototype.open=function(){};DriveClient=function(a){mxEventSource.call(this);this.ui=a;this.xmlMimeType="application/vnd.jgraph.mxfile";this.mimeType="application/vnd.jgraph.mxfile.realtime";this.ui.editor.chromeless&&!this.ui.editor.editable&&"1"!=urlParams.rt?(this.appId=window.DRAWIO_GOOGLE_VIEWER_APP_ID||"850530949725",this.clientId=window.DRAWIO_GOOGLE_VIEWER_CLIENT_ID||"850530949725.apps.googleusercontent.com",this.scopes=["https://www.googleapis.com/auth/drive.readonly","https://www.googleapis.com/auth/userinfo.profile"]): +(this.appId=window.DRAWIO_GOOGLE_APP_ID||"671128082532",this.clientId=window.DRAWIO_GOOGLE_CLIENT_ID||"671128082532-jhphbq6d0e1gnsus9mn7vf8a6fjn10mp.apps.googleusercontent.com");this.mimeTypes=this.xmlMimeType+"application/mxe,application/mxr,application/vnd.jgraph.mxfile.realtime,application/vnd.jgraph.mxfile.rtlegacy";"1"==urlParams.photos&&this.scopes.push("https://www.googleapis.com/auth/photos.upload")};mxUtils.extend(DriveClient,mxEventSource); DriveClient.prototype.scopes=["https://www.googleapis.com/auth/drive.file","https://www.googleapis.com/auth/drive.install","https://www.googleapis.com/auth/userinfo.profile"];DriveClient.prototype.allFields="kind,id,parents,headRevisionId,etag,title,mimeType,modifiedDate,editable,copyable,canComment,labels,properties,downloadUrl,webContentLink,userPermission,fileSize";DriveClient.prototype.catchupFields="etag,headRevisionId,modifiedDate,properties(key,value)"; DriveClient.prototype.enableThumbnails=!0;DriveClient.prototype.thumbnailWidth=1E3;DriveClient.prototype.maxThumbnailSize=2E6; DriveClient.prototype.placeholderThumbnail="iVBORw0KGgoAAAANSUhEUgAAAJYAAACWCAMAAAAL34HQAAACN1BMVEXwhwXvhgX4iwXzhwXgbQzvhgXhbAzocgzqcwzldAoAAADhbgvjcQnmdgrlbgDwhgXsfwXufgjwhgXwgQfziAXxgADibgz4iwX4jAX3iwTpcwr1igXoewjsfgj3igX4iwXqcQv4jAX3iwXtfQnndQrvhAbibArwhwXgbQz//////v39jwX6jQX+/v7fagHfawzdVQDwhADgbhPgbhXwhwPocQ3uvKvwiA/faQDscgzxiAT97+XgciTgcSP6jAXgbQ3gcCHwiRfpcQzwhwfeXQD77ef74NLvhgTvegD66uPgbAf66+TvfADwjCzgcCfwiSD67ObhcjjwiBHhczvwiyrgbxj///777ujgcSHgcB/xiRzgbhveWgDeVwDhdEDgbRDqfgffYgDfXwD97+bvfQDxiz7//vvwiRr118rrcgztggbfZgDfZAD++PT98+3gbBPsgAb99vD33tPgcB7icAvuhAX//Pn66N/00sTyy7vuuqbjekLwhwzkcgr88er449n++vfutp/kh1vgcBvhbwvmdwnwgwDwgADeWQD87eLxxrTssJjqpIf0roHmjWTkhFP759n63czvvanomnjnlHDhczD22cr4y6/wwa/3xKX2wJ3rqpH0tY7qp4vpnoDymlbjf0vxjjntcwzldAroegj/kgX12s7518PzqnnnkWfynmLieUjpewjrdAD40Lj1uZTzpm3idTbiciLydQzzfwnyiQTsfgD3xqnzp3TxlkzgbCrdTwDdSwBLKUlNAAAAJ3RSTlP8/b2X/YH8wb+FAIuIggJbQin5opAM9+a/ubaubyD78NjSyr2WgRp4sjN4AAAI70lEQVR42u2cZ38SQRDGT8WGvfde4E4BxVMRRaKiUURRlJhQRDCCSgQVO/bee++9994+nMt5ywoezFJd/fm8uITi3p9n5mbYkcCpO6rVnVu2YEXd+3dRIySuo7pLv4GjGNKg7j3UHTl1l14PajmG9OFBnx7Ird4PumpYEtf1QXc112l0M7OGKXEfeg3guo3iNIyJG92Jaz61mYYxcaNacs1H/8f6j6X5j1WI/mMVIsawRFEzI49SjwOqAJa43emclk8Rp2c7AFZ+LDGyvXE2kmO2Q1Lq17RSd6ND48QIwFVuLNHTOPbEpTOz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".replace(/\+/g,"-").replace(/\//g, -"_");DriveClient.prototype.placeholderMimeType="image/png";DriveClient.prototype.libraryMimeType="application/vnd.jgraph.mxlibrary";DriveClient.prototype.newAppHostname="www.draw.io";DriveClient.prototype.oldAppHostname="legacy.draw.io";DriveClient.prototype.extension=".drawio";DriveClient.prototype.tokenRefreshInterval=0;DriveClient.prototype.lastTokenRefresh=0;DriveClient.prototype.maxRetries=5;DriveClient.prototype.coolOff=1E3;DriveClient.prototype.mimeTypeCheckCoolOff=6E4; -DriveClient.prototype.user=null;DriveClient.prototype.setUser=function(a){this.user=a;null==this.user&&null!=this.tokenRefreshThread&&(window.clearTimeout(this.tokenRefreshThread),this.tokenRefreshThread=null);this.fireEvent(new mxEventObject("userChanged"))};DriveClient.prototype.getUser=function(){return this.user}; +"_");DriveClient.prototype.placeholderMimeType="image/png";DriveClient.prototype.libraryMimeType="application/vnd.jgraph.mxlibrary";DriveClient.prototype.newAppHostname="www.draw.io";DriveClient.prototype.extension=".drawio";DriveClient.prototype.tokenRefreshInterval=0;DriveClient.prototype.lastTokenRefresh=0;DriveClient.prototype.maxRetries=5;DriveClient.prototype.coolOff=1E3;DriveClient.prototype.mimeTypeCheckCoolOff=6E4;DriveClient.prototype.user=null; +DriveClient.prototype.setUser=function(a){this.user=a;null==this.user&&null!=this.tokenRefreshThread&&(window.clearTimeout(this.tokenRefreshThread),this.tokenRefreshThread=null);this.fireEvent(new mxEventObject("userChanged"))};DriveClient.prototype.getUser=function(){return this.user}; DriveClient.prototype.setUserId=function(a,c){if(c)if(isLocalStorage)localStorage.setItem(".guid",a);else if("undefined"!=typeof Storage)try{var b=new Date;b.setYear(b.getFullYear()+1);document.cookie="GUID="+a+"; expires="+b.toUTCString()}catch(d){}};DriveClient.prototype.clearUserId=function(){if(isLocalStorage)localStorage.removeItem(".guid");else if("undefined"!=typeof Storage){var a=new Date;a.setYear(a.getFullYear()-1);document.cookie="GUID=; expires="+a.toUTCString()}}; DriveClient.prototype.getUserId=function(){var a=null;null!=this.user&&(a=this.user.id);null==a&&isLocalStorage&&(a=localStorage.getItem(".guid"));if(null==a&&"undefined"!=typeof Storage){for(var c=document.cookie.split(";"),b=0;b<c.length;b++){var d=mxUtils.trim(c[b]);if("GUID="==d.substring(0,5)){a=d.substring(5);break}}null!=a&&isLocalStorage&&(c=new Date,c.setYear(c.getFullYear()-1),document.cookie="GUID=; expires="+c.toUTCString(),localStorage.setItem(".guid",a))}return a}; DriveClient.prototype.execute=function(a){var c=mxUtils.bind(this,function(b){this.ui.showAuthDialog(this,!0,mxUtils.bind(this,function(b,c){this.authorize(!1,mxUtils.bind(this,function(){null!=c&&c();a()}),mxUtils.bind(this,function(a){var b=mxResources.get("cannotLogin");null!=a&&null!=a.error&&403==a.error.code&&null!=a.error.data&&0<a.error.data.length&&"domainPolicy"==a.error.data[0].reason&&(b=a.error.message);this.ui.drive.clearUserId();this.ui.drive.setUser(null);gapi.auth.signOut();this.ui.showError(mxResources.get("error"), @@ -9105,24 +8766,24 @@ DriveClient.prototype.getFile=function(a,c,b,d,g){d=null!=d?d:!1;g=null!=g?g:!1; e){var m=a.downloadUrl+"&access_token="+gapi.auth.getToken().access_token;this.ui.convertFile(m,a.title,a.mimeType,this.extension,c,b)}else d||g||a.mimeType==this.libraryMimeType||a.mimeType==this.xmlMimeType?this.getXmlFile(a,c,b,!0,g):this.isGoogleRealtimeMimeType(a.mimeType)?this.convertRealtimeFile(a,c,b):this.getXmlFile(a,c,b)}else b({message:mxResources.get("loggedOut")})}catch(n){if(null!=b)b(n);else throw n;}}),b)}; DriveClient.prototype.isGoogleRealtimeMimeType=function(a){return null!=a&&"application/vnd.jgraph.mxfile."==a.substring(0,30)}; DriveClient.prototype.getRealtimeData=function(a,c,b,d){0>App.GOOGLE_REALTIME_EOL-Date.now()?b({message:"Google Realtime API export endpoint no longer available"}):this.executeRequest(gapi.client.drive.realtime.get({fileId:a,supportsTeamDrives:!0}),mxUtils.bind(this,function(d){d=null!=d.result?d.result.data:null;null!=d&&null!=d.value&&null!=d.value.diagrams?c(d):null!=b&&b({message:"realtime.get returned invalid data for "+a})}),mxUtils.bind(this,function(g){null==d&&(d=0);3>d?window.setTimeout(mxUtils.bind(this, -function(){this.getRealtimeData(a,c,b,d+1)}),100*(d+1)):null!=b&&b({message:"realtime.get failed for "+a})}))};DriveClient.prototype.loadRealtime=function(a,c,b){"1"==urlParams.ignoremime||"420247213240"!=this.appId||"application/vnd.jgraph.mxfile.realtime"!=a.mimeType&&"application/mxr"!=a.mimeType?c():this.redirectToNewApp(b,a.id)}; +function(){this.getRealtimeData(a,c,b,d+1)}),100*(d+1)):null!=b&&b({message:"realtime.get failed for "+a})}))}; DriveClient.prototype.getXmlFile=function(a,c,b,d,g){try{var e=gapi.auth.getToken().access_token,k=a.downloadUrl+"&access_token="+e;this.ui.loadUrl(k,mxUtils.bind(this,function(d){try{if(null==d)b({message:mxResources.get("invalidOrMissingFile")});else if(a.mimeType==this.libraryMimeType||g)a.mimeType!=this.libraryMimeType||g?c(new DriveLibrary(this.ui,d,a)):b({message:mxResources.get("notADiagramFile")});else{var e=!1;if(/\.png$/i.test(a.title)){var m=d.lastIndexOf(",");if(0<m){var f=this.ui.extractGraphModelFromPng(d.substring(m+ 1));if(null!=f&&0<f.length)d=f;else try{var f=d.substring(m+1),l=!window.atob||mxClient.IS_IE||mxClient.IS_IE11?Base64.decode(f):atob(f),p=this.ui.editor.extractGraphModel(mxUtils.parseXml(l).documentElement,!0);null==p||0<p.getElementsByTagName("parsererror").length?e=!0:d=l}catch(u){e=!0}}}else"data:image/png;base64,PG14ZmlsZS"==d.substring(0,32)&&(l=d.substring(22),d=window.atob&&!mxClient.IS_SF?atob(l):Base64.decode(l));Graph.fileSupport&&(new XMLHttpRequest).upload&&this.ui.isRemoteFileFormat(d, k)?this.ui.parseFile(new Blob([d],{type:"application/octet-stream"}),mxUtils.bind(this,function(d){try{4==d.readyState&&(200<=d.status&&299>=d.status?c(new LocalFile(this.ui,d.responseText,a.title+this.extension,!0)):null!=b&&b({message:mxResources.get("errorLoadingFile")}))}catch(v){if(null!=b)b(v);else throw v;}}),a.title):c(e?new LocalFile(this.ui,d,a.title,!0):new DriveFile(this.ui,d,a))}}catch(u){if(null!=b)b(u);else throw u;}}),b,null!=a.mimeType&&"image/"==a.mimeType.substring(0,6)&&"image/svg"!= a.mimeType.substring(0,9)||/\.png$/i.test(a.title)||/\.jpe?g$/i.test(a.title))}catch(m){if(null!=b)b(m);else throw m;}}; DriveClient.prototype.saveFile=function(a,c,b,d,g,e,k,m){try{a.saveLevel=1;var n=mxUtils.bind(this,function(b){a.saveLevel=null;if(null!=d)d(b);else throw b;try{if(!a.isConflict(b)){var c="error_"+(a.getErrorMessage(b)||"unknown");null!=b&&null!=b.error&&null!=b.error.code&&(c+="-code_"+b.error.code);EditorUi.logEvent({category:"ERROR-SAVE-FILE-"+a.getHash()+"-rev_"+a.desc.headRevisionId+"-mod_"+a.desc.modifiedDate+"-size_"+a.getSize()+"-mime_"+a.desc.mimeType+(this.ui.editor.autosave?"":"-nosave")+ (a.isAutosave()?"":"-noauto")+(a.changeListenerEnabled?"":"-nolisten")+(a.inConflictState?"-conflict":"")+(a.invalidChecksum?"-invalid":""),action:c,label:(null!=this.user?"user_"+this.user.id:"nouser")+(null!=a.sync?"-client_"+a.sync.clientId:"-nosync")})}}catch(A){}}),q=mxUtils.bind(this,function(b){n(b);try{EditorUi.logError(b.message,null,null,b),EditorUi.sendReport("Critical error in DriveClient.saveFile "+(new Date).toISOString()+":\n\nBrowser="+navigator.userAgent+"\nFile="+a.desc.id+"."+a.desc.headRevisionId+ -"\nUser="+(null!=this.user?this.user.id:"nouser")+(null!=a.sync?"-client_"+a.sync.clientId:"-nosync")+"\nMessage="+b.message+"\n\nStack:\n"+b.stack)}catch(C){}});if(a.isEditable()&&null!=a.desc){var f=(new Date).getTime(),l=a.desc.etag,p=a.desc.modifiedDate,u=a.desc.headRevisionId,v=this.ui.useCanvasForExport&&/(\.png)$/i.test(a.getTitle());g=null!=g?g:!this.ui.isLegacyDriveDomain()||"1"==urlParams.ignoremime;e=null!=e?e:!1;var t=mxUtils.bind(this,function(d,g,t){try{a.saveLevel=3;var A=null,D=!1, -z={mimeType:a.desc.mimeType,title:a.getTitle()};this.isGoogleRealtimeMimeType(a.desc.mimeType)?(z.mimeType=this.xmlMimeType,A=a.desc,D=c=!0):"application/octet-stream"==z.mimeType&&(z.mimeType=this.xmlMimeType);a.constructor==DriveFile&&(null==m&&(m=[]),null==a.getChannelId()&&m.push({key:"channel",value:Editor.guid(32)}),null==a.getChannelKey()&&m.push({key:"key",value:Editor.guid(32)}),m.push({key:"secret",value:Editor.guid(32)}));t||(null!=d||e||(d=this.placeholderThumbnail,g=this.placeholderMimeType), -null!=d&&null!=g&&(z.thumbnail={image:d,mimeType:g}));var y=a.getData(),x=mxUtils.bind(this,function(d){try{a.saveDelay=(new Date).getTime()-f;var e=(new Date(d.modifiedDate)).getTime()-(new Date(p)).getTime();if(0>=e||l==d.etag||c&&u==d.headRevisionId){var g=[];0>=e&&g.push("invalid modified time");l==d.etag&&g.push("stale etag");c&&u==d.headRevisionId&&g.push("stale revision");var k=g.join(", ");n({message:mxResources.get("errorSavingFile")+": "+k},d);try{EditorUi.sendReport("Critical: Error saving to Google Drive "+ -(new Date).toISOString()+":\n\nBrowser="+navigator.userAgent+"\nFile="+a.desc.id+" "+a.desc.mimeType+"\nUser="+(null!=this.user?this.user.id:"nouser")+(null!=a.sync?"-client_"+a.sync.clientId:"-nosync")+"\nErrors="+k+"\nOld="+u+" "+p+" etag-hash="+this.ui.hashValue(l)+"\nNew="+d.headRevisionId+" "+d.modifiedDate+" etag-hash="+this.ui.hashValue(d.etag)),EditorUi.logError("Critical: Error saving to Google Drive "+a.desc.id,null,"from-"+u+"."+p+"-"+this.ui.hashValue(l)+"-to-"+d.headRevisionId+"."+d.modifiedDate+ -"-"+this.ui.hashValue(d.etag)+(0<k.length?"-errors-"+k:""),"user-"+(null!=this.user?this.user.id:"nouser")+(null!=a.sync?"-client_"+a.sync.clientId:"-nosync"))}catch(M){}}else{a.saveLevel=null;b(d,y);if(null!=A){this.executeRequest(gapi.client.drive.revisions.get({fileId:A.id,revisionId:A.headRevisionId,supportsTeamDrives:!0}),mxUtils.bind(this,mxUtils.bind(this,function(a){a.pinned=!0;this.executeRequest(gapi.client.drive.revisions.update({fileId:A.id,revisionId:A.headRevisionId,resource:a}))}))); -try{EditorUi.logEvent({category:a.convertedFrom+"-CONVERT-FILE-"+a.getHash(),action:"from_"+A.id+"."+A.headRevisionId+"-to_"+a.desc.id+"."+a.desc.headRevisionId,label:null!=this.user?"user_"+this.user.id:"nouser"+(null!=a.sync?"-client_"+a.sync.clientId:"nosync")})}catch(M){}}try{EditorUi.logEvent({category:"SUCCESS-SAVE-FILE-"+a.getHash()+"-rev0_"+u+"-mod0_"+p,action:"rev-"+d.headRevisionId+"-mod_"+d.modifiedDate+"-size_"+a.getSize()+"-mime_"+a.desc.mimeType+(this.ui.editor.autosave?"":"-nosave")+ -(a.isAutosave()?"":"-noauto")+(a.changeListenerEnabled?"":"-nolisten")+(a.inConflictState?"-conflict":"")+(a.invalidChecksum?"-invalid":""),label:(null!=this.user?"user_"+this.user.id:"nouser")+(null!=a.sync?"-client_"+a.sync.clientId:"-nosync")})}catch(M){}}}catch(M){q(M)}}),C=mxUtils.bind(this,function(b,e){a.saveLevel=4;try{null!=m&&(z.properties=m);var f=k||a.constructor!=DriveFile||"manual"!=DrawioFile.SYNC&&"auto"!=DrawioFile.SYNC?null:a.getCurrentEtag(),g=0,l=mxUtils.bind(this,function(d){a.saveLevel= -5;try{var k=a.desc.mimeType!=this.xmlMimeType&&a.desc.mimeType!=this.mimeType&&a.desc.mimeType!=this.libraryMimeType,m=!0,p=window.setTimeout(mxUtils.bind(this,function(){m=!1;n({code:App.ERROR_TIMEOUT,message:mxResources.get("timeout")})}),4*this.ui.timeout);this.executeRequest(this.createUploadRequest(a.getId(),z,b,c||d||k,e,d?null:f,D),mxUtils.bind(this,function(a){window.clearTimeout(p);m&&x(a)}),mxUtils.bind(this,function(b){window.clearTimeout(p);if(m){a.saveLevel=6;try{a.isConflict(b)?this.executeRequest(gapi.client.drive.files.get({fileId:a.getId(), +"\nUser="+(null!=this.user?this.user.id:"nouser")+(null!=a.sync?"-client_"+a.sync.clientId:"-nosync")+"\nMessage="+b.message+"\n\nStack:\n"+b.stack)}catch(C){}});if(a.isEditable()&&null!=a.desc){var f=(new Date).getTime(),l=a.desc.etag,p=a.desc.modifiedDate,u=a.desc.headRevisionId,v=this.ui.useCanvasForExport&&/(\.png)$/i.test(a.getTitle());g=null!=g?g:"1"==urlParams.ignoremime;e=null!=e?e:!1;var t=mxUtils.bind(this,function(d,g,t){try{a.saveLevel=3;var A=null,D=!1,z={mimeType:a.desc.mimeType,title:a.getTitle()}; +this.isGoogleRealtimeMimeType(a.desc.mimeType)?(z.mimeType=this.xmlMimeType,A=a.desc,D=c=!0):"application/octet-stream"==z.mimeType&&(z.mimeType=this.xmlMimeType);a.constructor==DriveFile&&(null==m&&(m=[]),null==a.getChannelId()&&m.push({key:"channel",value:Editor.guid(32)}),null==a.getChannelKey()&&m.push({key:"key",value:Editor.guid(32)}),m.push({key:"secret",value:Editor.guid(32)}));t||(null!=d||e||(d=this.placeholderThumbnail,g=this.placeholderMimeType),null!=d&&null!=g&&(z.thumbnail={image:d, +mimeType:g}));var y=a.getData(),x=mxUtils.bind(this,function(d){try{a.saveDelay=(new Date).getTime()-f;var e=(new Date(d.modifiedDate)).getTime()-(new Date(p)).getTime();if(0>=e||l==d.etag||c&&u==d.headRevisionId){var g=[];0>=e&&g.push("invalid modified time");l==d.etag&&g.push("stale etag");c&&u==d.headRevisionId&&g.push("stale revision");var k=g.join(", ");n({message:mxResources.get("errorSavingFile")+": "+k},d);try{EditorUi.sendReport("Critical: Error saving to Google Drive "+(new Date).toISOString()+ +":\n\nBrowser="+navigator.userAgent+"\nFile="+a.desc.id+" "+a.desc.mimeType+"\nUser="+(null!=this.user?this.user.id:"nouser")+(null!=a.sync?"-client_"+a.sync.clientId:"-nosync")+"\nErrors="+k+"\nOld="+u+" "+p+" etag-hash="+this.ui.hashValue(l)+"\nNew="+d.headRevisionId+" "+d.modifiedDate+" etag-hash="+this.ui.hashValue(d.etag)),EditorUi.logError("Critical: Error saving to Google Drive "+a.desc.id,null,"from-"+u+"."+p+"-"+this.ui.hashValue(l)+"-to-"+d.headRevisionId+"."+d.modifiedDate+"-"+this.ui.hashValue(d.etag)+ +(0<k.length?"-errors-"+k:""),"user-"+(null!=this.user?this.user.id:"nouser")+(null!=a.sync?"-client_"+a.sync.clientId:"-nosync"))}catch(M){}}else{a.saveLevel=null;b(d,y);if(null!=A){this.executeRequest(gapi.client.drive.revisions.get({fileId:A.id,revisionId:A.headRevisionId,supportsTeamDrives:!0}),mxUtils.bind(this,mxUtils.bind(this,function(a){a.pinned=!0;this.executeRequest(gapi.client.drive.revisions.update({fileId:A.id,revisionId:A.headRevisionId,resource:a}))})));try{EditorUi.logEvent({category:a.convertedFrom+ +"-CONVERT-FILE-"+a.getHash(),action:"from_"+A.id+"."+A.headRevisionId+"-to_"+a.desc.id+"."+a.desc.headRevisionId,label:null!=this.user?"user_"+this.user.id:"nouser"+(null!=a.sync?"-client_"+a.sync.clientId:"nosync")})}catch(M){}}try{EditorUi.logEvent({category:"SUCCESS-SAVE-FILE-"+a.getHash()+"-rev0_"+u+"-mod0_"+p,action:"rev-"+d.headRevisionId+"-mod_"+d.modifiedDate+"-size_"+a.getSize()+"-mime_"+a.desc.mimeType+(this.ui.editor.autosave?"":"-nosave")+(a.isAutosave()?"":"-noauto")+(a.changeListenerEnabled? +"":"-nolisten")+(a.inConflictState?"-conflict":"")+(a.invalidChecksum?"-invalid":""),label:(null!=this.user?"user_"+this.user.id:"nouser")+(null!=a.sync?"-client_"+a.sync.clientId:"-nosync")})}catch(M){}}}catch(M){q(M)}}),C=mxUtils.bind(this,function(b,e){a.saveLevel=4;try{null!=m&&(z.properties=m);var f=k||a.constructor!=DriveFile||"manual"!=DrawioFile.SYNC&&"auto"!=DrawioFile.SYNC?null:a.getCurrentEtag(),g=0,l=mxUtils.bind(this,function(d){a.saveLevel=5;try{var k=a.desc.mimeType!=this.xmlMimeType&& +a.desc.mimeType!=this.mimeType&&a.desc.mimeType!=this.libraryMimeType,m=!0,p=window.setTimeout(mxUtils.bind(this,function(){m=!1;n({code:App.ERROR_TIMEOUT,message:mxResources.get("timeout")})}),4*this.ui.timeout);this.executeRequest(this.createUploadRequest(a.getId(),z,b,c||d||k,e,d?null:f,D),mxUtils.bind(this,function(a){window.clearTimeout(p);m&&x(a)}),mxUtils.bind(this,function(b){window.clearTimeout(p);if(m){a.saveLevel=6;try{a.isConflict(b)?this.executeRequest(gapi.client.drive.files.get({fileId:a.getId(), fields:this.catchupFields,supportsTeamDrives:!0}),mxUtils.bind(this,function(c){a.saveLevel=7;try{if(null!=c&&c.etag==f)if(g<this.maxRetries)g++,window.setTimeout(l,2*g*this.coolOff*(1+.1*(Math.random()-.5)));else{l(!0);try{EditorUi.logError("Warning: Stale Etag Overwrite "+a.getHash(),null,a.desc.id+"."+a.desc.headRevisionId,(null!=this.user?"user_"+this.user.id:"nouser")+(null!=a.sync?"-client_"+a.sync.clientId:"-nosync"))}catch(fa){}}else n(b,c)}catch(fa){q(fa)}}),mxUtils.bind(this,function(){n(b)})): n(b)}catch(ha){q(ha)}}}))}catch(Z){q(Z)}});if(v&&null==d){a.saveLevel=8;var p=new Image;p.onload=mxUtils.bind(this,function(){try{var a=this.thumbnailWidth/p.width,b=document.createElement("canvas");b.width=this.thumbnailWidth;b.height=Math.floor(p.height*a);b.getContext("2d").drawImage(p,0,0,b.width,b.height);var c=b.toDataURL(),c=c.substring(c.indexOf(",")+1).replace(/\+/g,"-").replace(/\//g,"_");z.thumbnail={image:c,mimeType:"image/png"};l(!1)}catch(W){l(!1)}});p.src="data:image/png;base64,"+b}else l(!1)}catch(X){q(X)}}); -v?this.ui.getEmbeddedPng(mxUtils.bind(this,function(a){C(a,!0)}),n,this.ui.getCurrentFile()!=a?y:null):C(y,!1)}catch(H){q(H)}}),y=mxUtils.bind(this,function(){try{if(a.saveLevel=2,e||v||a.constructor==DriveLibrary||!this.enableThumbnails||"0"==urlParams.thumb||null!=a.desc.mimeType&&"application/vnd.jgraph.mxfile"!=a.desc.mimeType.substring(0,29)||!this.ui.getThumbnail(this.thumbnailWidth,mxUtils.bind(this,function(b){try{var c=a.thumbTime=null;try{null!=b&&(c=b.toDataURL("image/png")),null!=c&&(c= +v?this.ui.getEmbeddedPng(mxUtils.bind(this,function(a){C(a,!0)}),n,this.ui.getCurrentFile()!=a?y:null):C(y,!1)}catch(I){q(I)}}),y=mxUtils.bind(this,function(){try{if(a.saveLevel=2,e||v||a.constructor==DriveLibrary||!this.enableThumbnails||"0"==urlParams.thumb||null!=a.desc.mimeType&&"application/vnd.jgraph.mxfile"!=a.desc.mimeType.substring(0,29)||!this.ui.getThumbnail(this.thumbnailWidth,mxUtils.bind(this,function(b){try{var c=a.thumbTime=null;try{null!=b&&(c=b.toDataURL("image/png")),null!=c&&(c= c.length>this.maxThumbnailSize?null:c.substring(c.indexOf(",")+1).replace(/\+/g,"-").replace(/\//g,"_"))}catch(A){c=null}t(c,"image/png")}catch(A){q(A)}})))a.thumbTime=null,t(null,null,a.constructor!=DriveLibrary)}catch(x){q(x)}});g||!c?y():this.verifyMimeType(a.getId(),y,!0)}else this.ui.editor.graph.reset(),n({message:mxResources.get("readOnly")})}catch(x){q(x)}}; DriveClient.prototype.verifyMimeType=function(a,c,b,d){null==this.lastMimeCheck&&(this.lastMimeCheck=0);var g=(new Date).getTime();if(b||g-this.lastMimeCheck>this.mimeTypeCheckCoolOff)this.lastMimeCheck=g,this.checkingMimeType||(this.checkingMimeType=!0,this.executeRequest(gapi.client.drive.files.get({fileId:a,fields:"mimeType",supportsTeamDrives:!0}),mxUtils.bind(this,function(b){this.checkingMimeType=!1;null!=b&&"application/vnd.jgraph.mxfile.realtime"==b.mimeType?this.redirectToNewApp(d,a):null!= c&&c()})))}; @@ -9158,11 +8819,11 @@ DriveClient.prototype.convertRealtimeFiles=function(){var a=document.createEleme (b("draw.io ("+EditorUi.VERSION+") is searching files to be converted..."),b('<a href="https://desk.draw.io/support/solutions/articles/16000092210" target="_blank">Click here for help</a>'),this.ui.spinner.spin(document.body,"Searching files...")?this.checkToken(mxUtils.bind(this,function(){var a={},g=0,e=0,k=0,m=0,n=0,q=0,f=0,l=0,p=0,u=null!=this.user&&null!=this.user.email?this.user.email:null,v="mimeType='application/vnd.jgraph.mxfile.realtime'"+(null!=u?" and '"+u+"' in writers":""),t=mxUtils.bind(this, function(){this.ui.spinner.stop();b("<br>Conversion complete. Successfully converted "+g+" file(s).",!0);0<f?b(" Failed to convert "+f+' file(s).<br><br><b>ACTION REQUIRED:</b><br><ul><li>Click <a target="_blank" href="https://drive.google.com/drive/u/0/search?q=type:application/vnd.jgraph.mxfile.realtime">here</a> to list all affected files</li><li>Open each file in turn by right-clicking the file and selecting open with draw.io</li><li>Open each file in turn. When loaded, select File->Save</li></ul>'): b("<br><br>This window can now be closed.");try{var a=Date.now()-c;EditorUi.logEvent({category:"AUTO-CONVERT",action:"total_"+l+"-done_"+g+"-fail_"+f+"-xml_"+k+"-json_"+e+"-load_"+m+"-save_"+q+"-invalid_"+n+"-dt-"+Math.round(a/1E3),label:null!=this.user?"user_"+this.user.id:"-nouser"})}catch(D){}}),y=function(a){return null==a?"":null!=a.message?a.message:null!=a.error&&null!=a.error.message?a.error.message:""},x=mxUtils.bind(this,function(){if(this.ui.spinner.spin(document.body,"Converting "+l+" file(s)")){b("Found "+ -l+" file(s). This will take up to "+Math.ceil(5E3*l/6E4)+" minute(s). <b>Please do not close this window!</b><br>");var c=0,d=mxUtils.bind(this,function(A,B){var z={maxResults:1,q:v,includeTeamDriveItems:!0,supportsTeamDrives:!0};null!=A&&(z.pageToken=A);var u=!0,D=window.setTimeout(mxUtils.bind(this,function(){u=!1;d(A,B)}),this.ui.timeout);this.executeRequest(gapi.client.drive.files.list(z),mxUtils.bind(this,function(z){window.clearTimeout(D);if(u){var E=mxUtils.bind(this,function(){null!=z.nextPageToken? +l+" file(s). This will take up to "+Math.ceil(5E3*l/6E4)+" minute(s). <b>Please do not close this window!</b><br>");var c=0,d=mxUtils.bind(this,function(A,B){var z={maxResults:1,q:v,includeTeamDriveItems:!0,supportsTeamDrives:!0};null!=A&&(z.pageToken=A);var u=!0,D=window.setTimeout(mxUtils.bind(this,function(){u=!1;d(A,B)}),this.ui.timeout);this.executeRequest(gapi.client.drive.files.list(z),mxUtils.bind(this,function(z){window.clearTimeout(D);if(u){var F=mxUtils.bind(this,function(){null!=z.nextPageToken? d(z.nextPageToken):t()});if(null!=z&&null!=z.error)p++,4>p?d(A,B):(this.ui.spinner.stop(),b("Query for next file failed multiple times. Exiting.<br><br>This window can now be closed."));else if(null==z||null!=z.items&&0!=z.items.length||null==z.nextPageToken)if(null!=z&&null!=z.items&&0<z.items.length){var x=z.items[0].id;this.ui.spinner.stop();c++;this.ui.spinner.spin(document.body,"Converting file "+c+" of "+l)&&(b("Converting "+c+" of "+l+': "'+mxUtils.htmlEntities(z.items[0].title)+'" (<a href="https://drive.google.com/open?id='+ -x+'" target="_blank">'+x+"</a>)... ",!0),window.setTimeout(mxUtils.bind(this,function(){null==a[x]?(u=a[x]=!0,D=window.setTimeout(mxUtils.bind(this,function(){u=!1;f++;m++;b('<img src="'+this.ui.editor.graph.warningImage.src+'" border="0" valign="absmiddle"/> Timeout');E()}),this.ui.timeout),this.getFile(x,mxUtils.bind(this,function(a){window.clearTimeout(D);u&&(a.constructor==DriveFile?("json"==a.convertedFrom?e++:k++,u=!0,D=window.setTimeout(mxUtils.bind(this,function(){u=!1;f++;q++;b('<img src="'+ -this.ui.editor.graph.warningImage.src+'" border="0" valign="absmiddle"/> Timeout');E()}),this.ui.timeout),this.saveFile(a,null,mxUtils.bind(this,function(){window.clearTimeout(D);u&&(g++,b('OK <img src="'+Editor.checkmarkImage+'" border="0" valign="middle"/>'),E())}),mxUtils.bind(this,function(a){window.clearTimeout(D);u&&(a=y(a),f++,q++,b('<img src="'+this.ui.editor.graph.warningImage.src+'" border="0" valign="absmiddle"/> '+a),E())}))):(f++,n++,b('<img src="'+this.ui.editor.graph.warningImage.src+ -'" border="0" valign="absmiddle"/> Invalid file'),E()))}),mxUtils.bind(this,function(a){window.clearTimeout(D);u&&(a=y(a),f++,m++,b('<img src="'+this.ui.editor.graph.warningImage.src+'" border="0" valign="absmiddle"/> '+a),E())}))):(this.ui.spinner.stop(),b("Search returned duplicate file "+x+". Exiting.<br><br>This window can now be closed."))}),null!=B?B:2E3))}else t();else d(z.nextPageToken,1E4)}}))});d()}}),C={maxResults:1E4,q:v,includeTeamDriveItems:!0,supportsTeamDrives:!0},A=mxUtils.bind(this, +x+'" target="_blank">'+x+"</a>)... ",!0),window.setTimeout(mxUtils.bind(this,function(){null==a[x]?(u=a[x]=!0,D=window.setTimeout(mxUtils.bind(this,function(){u=!1;f++;m++;b('<img src="'+this.ui.editor.graph.warningImage.src+'" border="0" valign="absmiddle"/> Timeout');F()}),this.ui.timeout),this.getFile(x,mxUtils.bind(this,function(a){window.clearTimeout(D);u&&(a.constructor==DriveFile?("json"==a.convertedFrom?e++:k++,u=!0,D=window.setTimeout(mxUtils.bind(this,function(){u=!1;f++;q++;b('<img src="'+ +this.ui.editor.graph.warningImage.src+'" border="0" valign="absmiddle"/> Timeout');F()}),this.ui.timeout),this.saveFile(a,null,mxUtils.bind(this,function(){window.clearTimeout(D);u&&(g++,b('OK <img src="'+Editor.checkmarkImage+'" border="0" valign="middle"/>'),F())}),mxUtils.bind(this,function(a){window.clearTimeout(D);u&&(a=y(a),f++,q++,b('<img src="'+this.ui.editor.graph.warningImage.src+'" border="0" valign="absmiddle"/> '+a),F())}))):(f++,n++,b('<img src="'+this.ui.editor.graph.warningImage.src+ +'" border="0" valign="absmiddle"/> Invalid file'),F()))}),mxUtils.bind(this,function(a){window.clearTimeout(D);u&&(a=y(a),f++,m++,b('<img src="'+this.ui.editor.graph.warningImage.src+'" border="0" valign="absmiddle"/> '+a),F())}))):(this.ui.spinner.stop(),b("Search returned duplicate file "+x+". Exiting.<br><br>This window can now be closed."))}),null!=B?B:2E3))}else t();else d(z.nextPageToken,1E4)}}))});d()}}),C={maxResults:1E4,q:v,includeTeamDriveItems:!0,supportsTeamDrives:!0},A=mxUtils.bind(this, function(a){null!=a&&(C.pageToken=a);this.executeRequest(gapi.client.drive.files.list(C),mxUtils.bind(this,function(a){l+=null!=a&&null!=a.items?a.items.length:0;null!=a.nextPageToken?A(a.nextPageToken):(this.ui.spinner.stop(),this.ui.showError("Confirm","You are about to convert "+l+" file(s)","Cancel",mxUtils.bind(this,function(){b("Cancelled by user.<br><br>This window can now be closed.")}),null,"OK",x,"Help",function(){window.open("https://desk.draw.io/support/solutions/articles/16000092210")}, 340,120))}))});A()})):(this.ui.spinner.stop(),b("Busy. <br><br>This window can now be closed.")))};DropboxFile=function(a,c,b){DrawioFile.call(this,a,c);this.stat=b};mxUtils.extend(DropboxFile,DrawioFile);DropboxFile.prototype.getId=function(){return this.stat.path_display.substring(1)};DropboxFile.prototype.getHash=function(){return"D"+encodeURIComponent(this.getId())};DropboxFile.prototype.getMode=function(){return App.MODE_DROPBOX};DropboxFile.prototype.isAutosaveOptional=function(){return!0};DropboxFile.prototype.getTitle=function(){return this.stat.name}; DropboxFile.prototype.isRenamable=function(){return!0};DropboxFile.prototype.getSize=function(){return this.stat.size};DropboxFile.prototype.isRevisionHistorySupported=function(){return!0}; @@ -9346,7 +9007,7 @@ a.constructor==DriveFile&&null!=a.desc&&null!=this.drive&&(b.label+=(null!=this. (new Image).src=mxGraph.prototype.warningImage.src;window.openWindow=mxUtils.bind(this,function(a,b,c){var d=null;try{d=window.open(a)}catch(m){}null==d||void 0===d?this.showDialog((new PopupDialog(this,a,b,c)).container,320,140,!0,!0):null!=b&&b()});this.updateDocumentTitle();this.updateUi();window.showOpenAlert=mxUtils.bind(this,function(a){null!=window.openFile&&window.openFile.cancel(!0);this.handleError(a)});this.editor.chromeless&&!this.editor.editable||this.addFileDropHandler([document]);if(null!= App.DrawPlugins){for(a=0;a<App.DrawPlugins.length;a++)try{App.DrawPlugins[a](this)}catch(d){null!=window.console&&console.log("Plugin Error:",d,App.DrawPlugins[a])}finally{App.embedModePluginsCount--,this.initializeEmbedMode()}window.Draw.loadPlugin=mxUtils.bind(this,function(a){try{a(this)}finally{App.embedModePluginsCount--,this.initializeEmbedMode()}});setTimeout(mxUtils.bind(this,function(){0<App.embedModePluginsCount&&(App.embedModePluginsCount=0,this.initializeEmbedMode())}),5E3)}this.load()}; App.ERROR_TIMEOUT="timeout";App.ERROR_BUSY="busy";App.ERROR_UNKNOWN="unknown";App.MODE_GOOGLE="google";App.MODE_DROPBOX="dropbox";App.MODE_ONEDRIVE="onedrive";App.MODE_GITHUB="github";App.MODE_GITLAB="gitlab";App.MODE_DEVICE="device";App.MODE_BROWSER="browser";App.MODE_TRELLO="trello";App.DROPBOX_APPKEY="libwls2fa9szdji";App.DROPBOX_URL="js/dropbox/Dropbox-sdk.min.js";App.DROPINS_URL="https://www.dropbox.com/static/api/2/dropins.js"; -App.ONEDRIVE_URL=mxClient.IS_IE11?"https://js.live.net/v7.2/OneDrive.js":"js/onedrive/OneDrive.js";App.TRELLO_URL="https://api.trello.com/1/client.js";App.TRELLO_JQUERY_URL="https://code.jquery.com/jquery-1.7.1.min.js";App.FOOTER_PLUGIN_URL="https://www.jgraph.com/drawio-footer.js";App.PUSHER_KEY="1e756b07a690c5bdb054";App.PUSHER_CLUSTER="eu";App.PUSHER_URL="https://js.pusher.com/4.3/pusher.min.js";App.GOOGLE_APIS="client,drive-share";App.GOOGLE_REALTIME_EOL=15695352E5;App.startTime=new Date; +App.ONEDRIVE_URL=mxClient.IS_IE11?"https://js.live.net/v7.2/OneDrive.js":"js/onedrive/OneDrive.js";App.TRELLO_URL="https://api.trello.com/1/client.js";App.TRELLO_JQUERY_URL="https://code.jquery.com/jquery-1.7.1.min.js";App.PUSHER_KEY="1e756b07a690c5bdb054";App.PUSHER_CLUSTER="eu";App.PUSHER_URL="https://js.pusher.com/4.3/pusher.min.js";App.GOOGLE_APIS="client,drive-share";App.GOOGLE_REALTIME_EOL=15695352E5;App.startTime=new Date; App.pluginRegistry={"4xAKTrabTpTzahoLthkwPNUn":"/plugins/explore.js",ex:"/plugins/explore.js",p1:"/plugins/p1.js",ac:"/plugins/connect.js",acj:"/plugins/connectJira.js",ac148:"/plugins/cConf-1-4-8.js",voice:"/plugins/voice.js",tips:"/plugins/tooltips.js",svgdata:"/plugins/svgdata.js",electron:"plugins/electron.js",number:"/plugins/number.js",sql:"/plugins/sql.js",props:"/plugins/props.js",text:"/plugins/text.js",anim:"/plugins/animation.js",update:"/plugins/update.js",trees:"/plugins/trees/trees.js", "import":"/plugins/import.js",replay:"/plugins/replay.js",anon:"/plugins/anonymize.js",tr:"/plugins/trello.js",f5:"/plugins/rackF5.js",tickets:"/plugins/tickets.js",flow:"/plugins/flow.js",webcola:"/plugins/webcola/webcola.js",rnd:"/plugins/random.js",page:"/plugins/page.js",gd:"/plugins/googledrive.js",tags:"/plugins/tags.js"}; App.getStoredMode=function(){var a=null;null==a&&isLocalStorage&&(a=localStorage.getItem(".mode"));if(null==a&&"undefined"!=typeof Storage){for(var c=document.cookie.split(";"),b=0;b<c.length;b++){var d=mxUtils.trim(c[b]);if("MODE="==d.substring(0,5)){a=d.substring(5);break}}null!=a&&isLocalStorage&&(c=new Date,c.setYear(c.getFullYear()-1),document.cookie="MODE=; expires="+c.toUTCString(),localStorage.setItem(".mode",a))}return a}; @@ -9364,8 +9025,9 @@ null!=a&&(a.innerHTML="Error loading page. <a>Please try refreshing.</a>",a.getE App.initPluginCallback();null!=e&&App.loadPlugins(e.split(";"));if(null!=g&&0<g.length&&"0"!=urlParams.plugins){for(var e=window.location.protocol+"//"+window.location.host,k=!0,m=0;m<g.length&&k;m++)"/"!=g[m].charAt(0)&&g[m].substring(0,e.length)!=e&&(k=!1);if(k||mxUtils.confirm(mxResources.replacePlaceholders("The page has requested to load the following plugin(s):\n \n {1}\n \n Would you like to load these plugin(s) now?\n \n NOTE : Only allow plugins to run if you fully understand the security implications of doing so.\n", [g.join("\n")]).replace(/\\n/g,"\n")))for(m=0;m<g.length;m++)try{null==App.pluginsLoaded[g[m]]&&(App.pluginsLoaded[g[m]]=!0,App.embedModePluginsCount++,"/"==g[m].charAt(0)&&(g[m]=PLUGINS_BASE_PATH+g[m]),mxscript(g[m]))}catch(l){}}}"function"===typeof window.DriveClient&&"undefined"===typeof gapi&&("1"!=urlParams.embed&&"0"!=urlParams.gapi||"1"==urlParams.embed&&"1"==urlParams.gapi)&&isSvgBrowser&&isLocalStorage&&(null==document.documentMode||10<=document.documentMode)?mxscript("https://apis.google.com/js/api.js?onload=DrawGapiClientCallback", null,null,null,mxClient.IS_SVG):"undefined"===typeof window.gapi&&(window.DriveClient=null)}"0"!=urlParams.math&&Editor.initMath();try{if(null!=mxSettings.settings){if(null!=mxSettings.settings.autosaveDelay){var n=parseInt(mxSettings.settings.autosaveDelay);!isNaN(n)&&0<n?(DrawioFile.prototype.autosaveDelay=n,null!=window.console&&console.log("Setting autosaveDelay to "+DrawioFile.prototype.autosaveDelay)):null!=window.console&&console.log("Invalid value for autosaveDelay")}null!=mxSettings.settings.defaultEdgeLength&& -(n=parseInt(mxSettings.settings.defaultEdgeLength),!isNaN(n)&&0<n?(Graph.prototype.defaultEdgeLength=n,null!=window.console&&console.log("Setting defaultEdgeLength to "+Graph.prototype.defaultEdgeLength)):null!=window.console&&console.log("Invalid value for defaultEdgeLength"))}}catch(l){null!=window.console&&console.error(l)}if("1"==urlParams.configure){var q=window.opener||window.parent,f=function(a){if(a.source==q)try{var b=JSON.parse(a.data);null!=b&&"configure"==b.action&&(mxEvent.removeListener(window, -"message",f),Editor.configure(b.config,!0),mxSettings.load(),d())}catch(u){null!=window.console&&console.log("Error in configuration: "+u)}};mxEvent.addListener(window,"message",f);q.postMessage(JSON.stringify({event:"configure"}),"*")}else d()};mxUtils.extend(App,EditorUi);App.prototype.defaultUserPicture="https://lh3.googleusercontent.com/-HIzvXUy6QUY/AAAAAAAAAAI/AAAAAAAAAAA/giuR7PQyjEk/photo.jpg?sz=30";App.prototype.shareImage="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2RpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDowOTgwMTE3NDA3MjA2ODExODhDNkFGMDBEQkQ0RTgwOSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoxMjU2NzdEMTcwRDIxMUUxQjc0MDkxRDhCNUQzOEFGRCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoxMjU2NzdEMDcwRDIxMUUxQjc0MDkxRDhCNUQzOEFGRCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IFdpbmRvd3MiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDowNjgwMTE3NDA3MjA2ODExODcxRkM4MUY1OTFDMjQ5OCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDowNzgwMTE3NDA3MjA2ODExODhDNkFGMDBEQkQ0RTgwOSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PrM/fs0AAADgSURBVHjaYmDAA/7//88MwgzkAKDGFiD+BsQ/QWxSNaf9RwN37twpI8WAS+gGfP78+RpQSoRYA36iG/D379+vQClNdLVMOMz4gi7w79+/n0CKg1gD9qELvH379hzIHGK9oA508ieY8//8+fO5rq4uFCilRKwL1JmYmNhhHEZGRiZ+fn6Q2meEbDYG4u3/cYCfP38uA7kOm0ZOIJ7zn0jw48ePPiDFhmzArv8kgi9fvuwB+w5qwH9ykjswbFSZyM4sEMDPBDTlL5BxkFSd7969OwZ2BZKYGhDzkmjOJ4AAAwBhpRqGnEFb8QAAAABJRU5ErkJggg=="; +(n=parseInt(mxSettings.settings.defaultEdgeLength),!isNaN(n)&&0<n?(Graph.prototype.defaultEdgeLength=n,null!=window.console&&console.log("Setting defaultEdgeLength to "+Graph.prototype.defaultEdgeLength)):null!=window.console&&console.log("Invalid value for defaultEdgeLength"))}}catch(l){null!=window.console&&console.error(l)}if(null!=window.DRAWIO_CONFIG)try{Editor.configure(window.DRAWIO_CONFIG,!0)}catch(l){null!=window.console&&console.log("Error in global configuration: "+l,window.DRAWIO_CONFIG)}if("1"== +urlParams.configure){var q=window.opener||window.parent,f=function(a){if(a.source==q)try{var b=JSON.parse(a.data);null!=b&&"configure"==b.action&&(mxEvent.removeListener(window,"message",f),Editor.configure(b.config,!0),mxSettings.load(),d())}catch(u){null!=window.console&&console.log("Error in configuration: "+u)}};mxEvent.addListener(window,"message",f);q.postMessage(JSON.stringify({event:"configure"}),"*")}else d()};mxUtils.extend(App,EditorUi);App.prototype.defaultUserPicture="https://lh3.googleusercontent.com/-HIzvXUy6QUY/AAAAAAAAAAI/AAAAAAAAAAA/giuR7PQyjEk/photo.jpg?sz=30"; +App.prototype.shareImage="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2RpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDowOTgwMTE3NDA3MjA2ODExODhDNkFGMDBEQkQ0RTgwOSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoxMjU2NzdEMTcwRDIxMUUxQjc0MDkxRDhCNUQzOEFGRCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoxMjU2NzdEMDcwRDIxMUUxQjc0MDkxRDhCNUQzOEFGRCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IFdpbmRvd3MiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDowNjgwMTE3NDA3MjA2ODExODcxRkM4MUY1OTFDMjQ5OCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDowNzgwMTE3NDA3MjA2ODExODhDNkFGMDBEQkQ0RTgwOSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PrM/fs0AAADgSURBVHjaYmDAA/7//88MwgzkAKDGFiD+BsQ/QWxSNaf9RwN37twpI8WAS+gGfP78+RpQSoRYA36iG/D379+vQClNdLVMOMz4gi7w79+/n0CKg1gD9qELvH379hzIHGK9oA508ieY8//8+fO5rq4uFCilRKwL1JmYmNhhHEZGRiZ+fn6Q2meEbDYG4u3/cYCfP38uA7kOm0ZOIJ7zn0jw48ePPiDFhmzArv8kgi9fvuwB+w5qwH9ykjswbFSZyM4sEMDPBDTlL5BxkFSd7969OwZ2BZKYGhDzkmjOJ4AAAwBhpRqGnEFb8QAAAABJRU5ErkJggg=="; App.prototype.chevronUpImage=mxClient.IS_SVG?"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDg2NEE3NUY1MUVBMTFFM0I3MUVEMTc0N0YyOUI4QzEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NDg2NEE3NjA1MUVBMTFFM0I3MUVEMTc0N0YyOUI4QzEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo0ODY0QTc1RDUxRUExMUUzQjcxRUQxNzQ3RjI5QjhDMSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo0ODY0QTc1RTUxRUExMUUzQjcxRUQxNzQ3RjI5QjhDMSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pg+qUokAAAAMUExURQAAANnZ2b+/v////5bgre4AAAAEdFJOU////wBAKqn0AAAAL0lEQVR42mJgRgMMRAswMKAKMDDARBjg8lARBoR6KImkH0wTbygT6YaS4DmAAAMAYPkClOEDDD0AAAAASUVORK5CYII=": IMAGE_PATH+"/chevron-up.png"; App.prototype.chevronDownImage=mxClient.IS_SVG?"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDg2NEE3NUI1MUVBMTFFM0I3MUVEMTc0N0YyOUI4QzEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NDg2NEE3NUM1MUVBMTFFM0I3MUVEMTc0N0YyOUI4QzEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo0ODY0QTc1OTUxRUExMUUzQjcxRUQxNzQ3RjI5QjhDMSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo0ODY0QTc1QTUxRUExMUUzQjcxRUQxNzQ3RjI5QjhDMSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PsCtve8AAAAMUExURQAAANnZ2b+/v////5bgre4AAAAEdFJOU////wBAKqn0AAAALUlEQVR42mJgRgMMRAkwQEXBNAOcBSPhclB1cNVwfcxI+vEZykSpoSR6DiDAAF23ApT99bZ+AAAAAElFTkSuQmCC":IMAGE_PATH+ @@ -9395,7 +9057,7 @@ this.initializeViewerMode()};App.prototype.scheduleSanityCheck=function(){null== App.prototype.sanityCheck=function(){var a=this.getCurrentFile();if(null!=a&&a.isModified()&&a.isAutosave()&&a.isOverdue()){var c={category:"WARN-FILE-"+a.getHash(),action:(a.savingFile?"saving":"")+(a.savingFile&&null!=a.savingFileTime?"_"+Math.round((Date.now()-a.savingFileTime.getTime())/1E3):"")+(null!=a.saveLevel?"-sl_"+a.saveLevel:"")+"-age_"+(null!=a.ageStart?Math.round((Date.now()-a.ageStart.getTime())/1E3):"x")+(this.editor.autosave?"":"-nosave")+(a.isAutosave()?"":"-noauto")+"-open_"+(null!= a.opened?Math.round((Date.now()-a.opened.getTime())/1E3):"x")+"-save_"+(null!=a.lastSaved?Math.round((Date.now()-a.lastSaved.getTime())/1E3):"x")+"-change_"+(null!=a.lastChanged?Math.round((Date.now()-a.lastChanged.getTime())/1E3):"x")+"-alive_"+Math.round((Date.now()-App.startTime.getTime())/1E3),label:null!=a.sync?"client_"+a.sync.clientId:"nosync"};a.constructor==DriveFile&&null!=a.desc&&null!=this.drive&&(c.label+=(null!=this.drive.user?"-user_"+this.drive.user.id:"-nouser")+"-rev_"+a.desc.headRevisionId+ "-mod_"+a.desc.modifiedDate+"-size_"+a.getSize()+"-mime_"+a.desc.mimeType);EditorUi.logEvent(c);c=mxResources.get("ensureDataSaved");null!=a.lastSaved&&(c=this.timeSince(a.lastSaved),null==c&&(c=mxResources.get("lessThanAMinute")),c=mxResources.get("lastSaved",[c]));this.showError(mxResources.get("unsavedChanges"),c,mxResources.get("ignore"),mxUtils.bind(this,function(){this.hideDialog()}),null,mxResources.get("save"),mxUtils.bind(this,function(){this.stopSanityCheck();this.actions.get(null!=this.mode&& -a.isEditable()?"save":"saveAs").funct()}),null,null,360,120,null,mxUtils.bind(this,function(){this.scheduleSanityCheck()}))}};App.prototype.isDriveDomain=function(){return"0"!=urlParams.drive&&("test.draw.io"==window.location.hostname||"cdn.draw.io"==window.location.hostname||"www.draw.io"==window.location.hostname||"drive.draw.io"==window.location.hostname||"jgraph.github.io"==window.location.hostname)};App.prototype.isLegacyDriveDomain=function(){return 0==urlParams.drive||"legacy.draw.io"==window.location.hostname}; +a.isEditable()?"save":"saveAs").funct()}),null,null,360,120,null,mxUtils.bind(this,function(){this.scheduleSanityCheck()}))}};App.prototype.isDriveDomain=function(){return"0"!=urlParams.drive&&("test.draw.io"==window.location.hostname||"www.draw.io"==window.location.hostname||"drive.draw.io"==window.location.hostname||"jgraph.github.io"==window.location.hostname)}; App.prototype.getPusher=function(){null==this.pusher&&"function"===typeof window.Pusher&&(this.pusher=new Pusher(App.PUSHER_KEY,{cluster:App.PUSHER_CLUSTER,encrypted:!0}));return this.pusher}; App.prototype.checkLicense=function(){var a=this.drive.getUser(),c=("1"==urlParams.dev?urlParams.lic:null)||(null!=a?a.email:null);if(!this.isOffline()&&!this.editor.chromeless&&null!=c){var b=c.lastIndexOf("@"),d=c;0<=b&&(d=c.substring(b+1),c=this.crc32(c.substring(0,b))+"@"+d);mxUtils.post("/license","domain="+encodeURIComponent(d)+"&email="+encodeURIComponent(c)+"&lc="+encodeURIComponent(a.locale)+"&ts="+(new Date).getTime(),mxUtils.bind(this,function(a){try{if(200<=a.getStatus()&&299>=a.getStatus()){var b= a.getText();if(0<b.length){var c=JSON.parse(b);null!=c&&this.handleLicense(c,d)}}}catch(m){}}))}};App.prototype.handleLicense=function(a,c){null!=a&&null!=a.plugins&&App.loadPlugins(a.plugins.split(";"),!0)};App.prototype.getEditBlankXml=function(){var a=this.getCurrentFile();return null!=a&&this.editor.isChromelessView()&&this.editor.graph.isLightboxView()?a.getData():this.getFileData(!0)};App.prototype.updateActionStates=function(){EditorUi.prototype.updateActionStates.apply(this,arguments);this.actions.get("revisionHistory").setEnabled(this.isRevisionHistoryEnabled())}; @@ -9542,10 +9204,10 @@ App.prototype.getCurrentUser=function(){var a=null;null!=this.drive&&null!=this. Editor.prototype.resetGraph=function(){editorResetGraph.apply(this,arguments);this.graph.pageFormat=mxSettings.getPageFormat()};(function(){var a=mxPopupMenu.prototype.showMenu;mxPopupMenu.prototype.showMenu=function(){a.apply(this,arguments);this.div.style.overflowY="auto";this.div.style.overflowX="hidden";this.div.style.maxHeight=Math.max(document.body.clientHeight,document.documentElement.clientHeight)-10+"px"};Menus.prototype.createHelpLink=function(a){var b=document.createElement("span");b.setAttribute("title",mxResources.get("help"));b.style.cssText="color:blue;text-decoration:underline;margin-left:8px;cursor:help;"; var c=document.createElement("img");mxUtils.setOpacity(c,50);c.style.height="16px";c.style.width="16px";c.setAttribute("border","0");c.setAttribute("valign","bottom");c.setAttribute("src",Editor.helpImage);b.appendChild(c);mxEvent.addGestureListeners(b,mxUtils.bind(this,function(b){null!=this.editorUi.menubar&&this.editorUi.menubar.hideMenu();this.editorUi.openLink(a);mxEvent.consume(b)}));return b};Menus.prototype.addLinkToItem=function(a,c){null!=a&&a.firstChild.nextSibling.appendChild(this.createHelpLink(c))}; var c=Menus.prototype.init;Menus.prototype.init=function(){c.apply(this,arguments);var a=this.editorUi,d=a.editor.graph,g=mxUtils.bind(d,d.isEnabled),e=("1"!=urlParams.embed&&"0"!=urlParams.gapi||"1"==urlParams.embed&&"1"==urlParams.gapi)&&mxClient.IS_SVG&&isLocalStorage&&(null==document.documentMode||10<=document.documentMode),k=("1"!=urlParams.embed&&"0"!=urlParams.db||"1"==urlParams.embed&&"1"==urlParams.db)&&mxClient.IS_SVG&&(null==document.documentMode||9<document.documentMode),m=("www.draw.io"== -window.location.hostname||"test.draw.io"==window.location.hostname||"drive.draw.io"==window.location.hostname||"legacy.draw.io"==window.location.hostname)&&("1"!=urlParams.embed&&"0"!=urlParams.od||"1"==urlParams.embed&&"1"==urlParams.od)&&!navigator.userAgent.match(/(iPad|iPhone|iPod)/g)&&(0>navigator.userAgent.indexOf("MSIE")||10<=document.documentMode),n=("1"!=urlParams.embed&&"0"!=urlParams.tr||"1"==urlParams.embed&&"1"==urlParams.tr)&&mxClient.IS_SVG&&(null==document.documentMode||9<document.documentMode); -mxClient.IS_SVG||a.isOffline()||((new Image).src=IMAGE_PATH+"/help.png");a.actions.addAction("new...",function(){var b=a.isOffline(),c=new NewDialog(a,b);a.showDialog(c.container,b?350:620,b?70:440,!0,!0,function(b){b&&null==a.getCurrentFile()&&a.showSplash()});c.init()});a.actions.put("exportSvg",new Action(mxResources.get("formatSvg")+"...",function(){a.showExportDialog(mxResources.get("formatSvg"),!0,mxResources.get("export"),"https://support.draw.io/display/DO/Exporting+Files",mxUtils.bind(this, -function(b,c,d,e,f,g,k,l,m,n){b=parseInt(b);!isNaN(b)&&0<b&&a.exportSvg(b/100,c,d,e,f,g,k,!l,m,n)}),!0,null,"svg")}));a.actions.put("insertTemplate",new Action(mxResources.get("template")+"...",function(){var b=new NewDialog(a,null,!1,function(b){a.hideDialog();if(null!=b){var c=a.editor.graph.getFreeInsertPoint();d.setSelectionCells(a.importXml(b,Math.max(c.x,20),Math.max(c.y,20),!0));d.scrollCellToVisible(d.getSelectionCell())}},null,null,null,null,null,null,null,null,null,null,!1,mxResources.get("insert")); -a.showDialog(b.container,620,440,!0,!0)})).isEnabled=g;var q=a.actions.addAction("points",function(){a.editor.graph.view.setUnit(mxConstants.POINTS)});q.setToggleAction(!0);q.setSelectedCallback(function(){return a.editor.graph.view.unit==mxConstants.POINTS});q=a.actions.addAction("inches",function(){a.editor.graph.view.setUnit(mxConstants.INCHES)});q.setToggleAction(!0);q.setSelectedCallback(function(){return a.editor.graph.view.unit==mxConstants.INCHES});q=a.actions.addAction("millimeters",function(){a.editor.graph.view.setUnit(mxConstants.MILLIMETERS)}); +window.location.hostname||"test.draw.io"==window.location.hostname||"drive.draw.io"==window.location.hostname)&&("1"!=urlParams.embed&&"0"!=urlParams.od||"1"==urlParams.embed&&"1"==urlParams.od)&&!navigator.userAgent.match(/(iPad|iPhone|iPod)/g)&&(0>navigator.userAgent.indexOf("MSIE")||10<=document.documentMode),n=("1"!=urlParams.embed&&"0"!=urlParams.tr||"1"==urlParams.embed&&"1"==urlParams.tr)&&mxClient.IS_SVG&&(null==document.documentMode||9<document.documentMode);mxClient.IS_SVG||a.isOffline()|| +((new Image).src=IMAGE_PATH+"/help.png");a.actions.addAction("new...",function(){var b=a.isOffline(),c=new NewDialog(a,b);a.showDialog(c.container,b?350:620,b?70:440,!0,!0,function(b){b&&null==a.getCurrentFile()&&a.showSplash()});c.init()});a.actions.put("exportSvg",new Action(mxResources.get("formatSvg")+"...",function(){a.showExportDialog(mxResources.get("formatSvg"),!0,mxResources.get("export"),"https://support.draw.io/display/DO/Exporting+Files",mxUtils.bind(this,function(b,c,d,e,f,g,k,l,m,n){b= +parseInt(b);!isNaN(b)&&0<b&&a.exportSvg(b/100,c,d,e,f,g,k,!l,m,n)}),!0,null,"svg")}));a.actions.put("insertTemplate",new Action(mxResources.get("template")+"...",function(){var b=new NewDialog(a,null,!1,function(b){a.hideDialog();if(null!=b){var c=a.editor.graph.getFreeInsertPoint();d.setSelectionCells(a.importXml(b,Math.max(c.x,20),Math.max(c.y,20),!0));d.scrollCellToVisible(d.getSelectionCell())}},null,null,null,null,null,null,null,null,null,null,!1,mxResources.get("insert"));a.showDialog(b.container, +620,440,!0,!0)})).isEnabled=g;var q=a.actions.addAction("points",function(){a.editor.graph.view.setUnit(mxConstants.POINTS)});q.setToggleAction(!0);q.setSelectedCallback(function(){return a.editor.graph.view.unit==mxConstants.POINTS});q=a.actions.addAction("inches",function(){a.editor.graph.view.setUnit(mxConstants.INCHES)});q.setToggleAction(!0);q.setSelectedCallback(function(){return a.editor.graph.view.unit==mxConstants.INCHES});q=a.actions.addAction("millimeters",function(){a.editor.graph.view.setUnit(mxConstants.MILLIMETERS)}); q.setToggleAction(!0);q.setSelectedCallback(function(){return a.editor.graph.view.unit==mxConstants.MILLIMETERS});this.put("units",new Menu(mxUtils.bind(this,function(a,b){this.addMenuItems(a,["points","millimeters"],b)})));q=a.actions.addAction("ruler",function(){mxSettings.setRulerOn(!mxSettings.isRulerOn());mxSettings.save();null!=a.ruler?(a.ruler.destroy(),a.ruler=null):a.ruler=new mxDualRuler(a,a.editor.graph.view.unit)});q.setToggleAction(!0);q.setSelectedCallback(function(){return null!=a.ruler}); window.mxFreehand&&(a.actions.put("insertFreehand",new Action(mxResources.get("freehand")+"...",function(b){d.isEnabled()&&(null==this.freehandWindow&&(this.freehandWindow=new FreehandWindow(a,document.body.offsetWidth-420,102,176,104)),d.freehand.isDrawing()?d.freehand.stopDrawing():d.freehand.startDrawing(),this.freehandWindow.window.setVisible(d.freehand.isDrawing()))})).isEnabled=g);a.actions.put("exportXml",new Action(mxResources.get("formatXml")+"...",function(){var b=document.createElement("div"); b.style.whiteSpace="nowrap";var c=null==a.pages||1>=a.pages.length,e=document.createElement("h3");mxUtils.write(e,mxResources.get("formatXml"));e.style.cssText="width:100%;text-align:center;margin-top:0px;margin-bottom:4px";b.appendChild(e);var f=a.addCheckbox(b,mxResources.get("selectionOnly"),!1,d.isSelectionEmpty()),g=a.addCheckbox(b,mxResources.get("compressed"),!0),k=a.addCheckbox(b,mxResources.get("allPages"),!c,c);k.style.marginBottom="16px";mxEvent.addListener(f,"change",function(){f.checked? @@ -9581,14 +9243,14 @@ mxEvent.addGestureListeners(e,function(a){document.activeElement!=e&&e.focus();m mxResources.parse("testXmlImageExport=XML Image Export"),mxResources.parse("testDownloadRtModel=Export RT model"),mxResources.parse("testImportRtModel=Import RT model"),a.actions.addAction("createSidebarEntry",mxUtils.bind(this,function(){d.isSelectionEmpty()||a.showTextDialog("Create Sidebar Entry","sb.createVertexTemplateFromData('"+Graph.compress(mxUtils.getXml(d.encodeCells(d.getSelectionCells())))+"', width, height, 'Title');")})),a.actions.addAction("showBoundingBox",mxUtils.bind(this,function(){var a= d.getGraphBounds(),b=d.view.translate,c=d.view.scale;d.insertVertex(d.getDefaultParent(),null,"",a.x/c-b.x,a.y/c-b.y,a.width/c,a.height/c,"fillColor=none;strokeColor=red;")})),a.actions.addAction("testCheckFile",mxUtils.bind(this,function(){var b=null!=a.pages&&null!=a.getCurrentFile()?a.getCurrentFile().getAnonymizedXmlForPages(a.pages):"",b=new TextareaDialog(a,"Paste Data:",b,function(b){if(0<b.length)try{var c=function(a){function b(a){if(null==n[a]){if(n[a]=!0,null!=e[a]){for(;0<e[a].length;){var d= e[a].pop();b(d)}delete e[a]}}else mxLog.debug(c+": Visited: "+a)}var c=a.parentNode.id,d=a.childNodes;a={};for(var e={},f=null,g={},k=0;k<d.length;k++){var l=d[k];if(null!=l.id&&0<l.id.length)if(null==a[l.id]){a[l.id]=l.id;var m=l.getAttribute("parent");null==m?null!=f?mxLog.debug(c+": Multiple roots: "+l.id):f=l.id:(null==e[m]&&(e[m]=[]),e[m].push(l.id))}else g[l.id]=l.id}0<Object.keys(g).length?(d=c+": "+Object.keys(g).length+" Duplicates: "+Object.keys(g).join(", "),mxLog.debug(d+" (see console)")): -mxLog.debug(c+": Checked");var n={};null==f?mxLog.debug(c+": No root"):(b(f),Object.keys(n).length!=Object.keys(a).length&&(mxLog.debug(c+": Invalid tree: (see console)"),console.log(c+": Invalid tree",e)))};"<"!=b.charAt(0)&&(b=Graph.decompress(b),mxLog.debug("See console for uncompressed XML"),console.log("xml",b));var d=mxUtils.parseXml(b),e=a.getPagesForNode(d.documentElement,"mxGraphModel");if(null!=e&&0<e.length)try{var f=a.getHashValueForPages(e);mxLog.debug("Checksum: ",f)}catch(H){mxLog.debug("Error: ", -H.message)}else mxLog.debug("No pages found for checksum");var g=d.getElementsByTagName("root");for(b=0;b<g.length;b++)c(g[b]);mxLog.show()}catch(H){a.handleError(H),console.error(H)}});b.textarea.style.width="600px";b.textarea.style.height="380px";a.showDialog(b.container,620,460,!0,!0);b.init()})),a.actions.addAction("testDiff",mxUtils.bind(this,function(){if(null!=a.pages){var b=new TextareaDialog(a,"Paste Data:","",function(b){if(0<b.length)try{console.log(JSON.stringify(a.diffPages(a.pages,a.getPagesForNode(mxUtils.parseXml(b).documentElement)), +mxLog.debug(c+": Checked");var n={};null==f?mxLog.debug(c+": No root"):(b(f),Object.keys(n).length!=Object.keys(a).length&&(mxLog.debug(c+": Invalid tree: (see console)"),console.log(c+": Invalid tree",e)))};"<"!=b.charAt(0)&&(b=Graph.decompress(b),mxLog.debug("See console for uncompressed XML"),console.log("xml",b));var d=mxUtils.parseXml(b),e=a.getPagesForNode(d.documentElement,"mxGraphModel");if(null!=e&&0<e.length)try{var f=a.getHashValueForPages(e);mxLog.debug("Checksum: ",f)}catch(I){mxLog.debug("Error: ", +I.message)}else mxLog.debug("No pages found for checksum");var g=d.getElementsByTagName("root");for(b=0;b<g.length;b++)c(g[b]);mxLog.show()}catch(I){a.handleError(I),console.error(I)}});b.textarea.style.width="600px";b.textarea.style.height="380px";a.showDialog(b.container,620,460,!0,!0);b.init()})),a.actions.addAction("testDiff",mxUtils.bind(this,function(){if(null!=a.pages){var b=new TextareaDialog(a,"Paste Data:","",function(b){if(0<b.length)try{console.log(JSON.stringify(a.diffPages(a.pages,a.getPagesForNode(mxUtils.parseXml(b).documentElement)), null,2))}catch(D){a.handleError(D),console.error(D)}});b.textarea.style.width="600px";b.textarea.style.height="380px";a.showDialog(b.container,620,460,!0,!0);b.init()}else a.alert("No pages")})),a.actions.addAction("testInspect",mxUtils.bind(this,function(){console.log(a,d.getModel())})),a.actions.addAction("testXmlImageExport",mxUtils.bind(this,function(){var a=new mxImageExport,b=d.getGraphBounds(),c=d.view.scale,e=mxUtils.createXmlDocument(),f=e.createElement("output");e.appendChild(f);e=new mxXmlCanvas2D(f); e.translate(Math.floor((1-b.x)/c),Math.floor((1-b.y)/c));e.scale(1/c);var g=0,k=e.save;e.save=function(){g++;k.apply(this,arguments)};var l=e.restore;e.restore=function(){g--;l.apply(this,arguments)};var m=a.drawShape;a.drawShape=function(a){mxLog.debug("entering shape",a,g);m.apply(this,arguments);mxLog.debug("leaving shape",a,g)};a.drawState(d.getView().getState(d.model.root),e);mxLog.show();mxLog.debug(mxUtils.getXml(f));mxLog.debug("stateCounter",g)})),a.actions.addAction("testDownloadRtModel...", mxUtils.bind(this,function(){null==a.drive?a.handleError({message:mxResources.get("serviceUnavailableOrBlocked")}):a.drive.execute(mxUtils.bind(this,function(){var b=prompt("File ID","");if(null!=b&&0<b.length&&a.spinner.spin(document.body,mxResources.get("export"))){var c=new mxXmlRequest("https://www.googleapis.com/drive/v2/files/"+b+"/realtime?supportsTeamDrives=true",null,"GET");c.setRequestHeaders=function(a){mxXmlRequest.prototype.setRequestHeaders.apply(this,arguments);var b=gapi.auth.getToken().access_token; a.setRequestHeader("authorization","Bearer "+b)};c.send(function(c){a.spinner.stop();200<=c.getStatus()&&299>=c.getStatus()?a.saveLocalFile(c.getText(),"json-"+b+".txt","text/plain"):a.handleError({message:mxResources.get("fileNotFound")},mxResources.get("errorLoadingFile"))})}}))})),a.actions.addAction("testShowConsole",function(){mxLog.isVisible()?mxLog.window.fit():mxLog.show();mxLog.window.div.style.zIndex=mxPopupMenu.prototype.zIndex-1}),this.put("testDevelop",new Menu(mxUtils.bind(this,function(b, c){this.addMenuItems(b,"createSidebarEntry showBoundingBox - testCheckFile testDiff - testInspect - testXmlImageExport - testDownloadRtModel".split(" "),c);b.addItem(mxResources.get("testImportRtModel")+"...",null,function(){var b=document.createElement("input");b.setAttribute("type","file");mxEvent.addListener(b,"change",mxUtils.bind(this,function(){if(null!=b.files){var c=new FileReader;c.onload=mxUtils.bind(this,function(c){try{a.openLocalFile(mxUtils.getXml(a.drive.convertJsonToXml(JSON.parse(c.target.result).data)), -b.files[0].name,!0)}catch(F){a.handleError(F,mxResources.get("errorLoadingFile"))}});c.readAsText(b.files[0])}}));b.click()},c);this.addMenuItems(b,["-","testShowConsole"],c)}))));a.actions.addAction("shapes...",function(){mxClient.IS_CHROMEAPP||!a.isOffline()?a.showDialog((new MoreShapesDialog(a,!0)).container,640,isLocalStorage?mxClient.IS_IOS?480:460:440,!0,!0):a.showDialog((new MoreShapesDialog(a,!1)).container,360,isLocalStorage?mxClient.IS_IOS?300:280:260,!0,!0)});a.actions.put("createShape", +b.files[0].name,!0)}catch(E){a.handleError(E,mxResources.get("errorLoadingFile"))}});c.readAsText(b.files[0])}}));b.click()},c);this.addMenuItems(b,["-","testShowConsole"],c)}))));a.actions.addAction("shapes...",function(){mxClient.IS_CHROMEAPP||!a.isOffline()?a.showDialog((new MoreShapesDialog(a,!0)).container,640,isLocalStorage?mxClient.IS_IOS?480:460:440,!0,!0):a.showDialog((new MoreShapesDialog(a,!1)).container,360,isLocalStorage?mxClient.IS_IOS?300:280:260,!0,!0)});a.actions.put("createShape", new Action(mxResources.get("shape")+"...",function(b){d.isEnabled()&&(b=new mxCell("",new mxGeometry(0,0,120,120),a.defaultCustomShapeStyle),b.vertex=!0,b=new EditShapeDialog(a,b,mxResources.get("editShape")+":",630,400),a.showDialog(b.container,640,480,!0,!1),b.init())})).isEnabled=g;a.actions.put("embedHtml",new Action(mxResources.get("html")+"...",function(){a.spinner.spin(document.body,mxResources.get("loading"))&&a.getPublicUrl(a.getCurrentFile(),function(b){a.spinner.stop();a.showHtmlDialog(mxResources.get("create"), "https://desk.draw.io/support/solutions/articles/16000042542",b,function(b,c,d,e,f,g,k,l,m,n){a.createHtml(b,c,d,e,f,g,k,l,m,n,mxUtils.bind(this,function(b,c){var d=new EmbedDialog(a,b+"\n"+c,null,null,function(){var d=window.open(),e=d.document;if(null!=e){"CSS1Compat"===document.compatMode&&e.writeln("<!DOCTYPE html>");e.writeln("<html>");e.writeln("<head><title>"+encodeURIComponent(mxResources.get("preview"))+'</title><meta charset="utf-8"></head>');e.writeln("<body>");e.writeln(b);var f=mxClient.IS_IE|| mxClient.IS_EDGE||null!=document.documentMode;f&&e.writeln(c);e.writeln("</body>");e.writeln("</html>");e.close();if(!f){var g=d.document.createElement("div");g.marginLeft="26px";g.marginTop="26px";mxUtils.write(g,mxResources.get("updatingDocument"));f=d.document.createElement("img");f.setAttribute("src",window.location.protocol+"//"+window.location.hostname+"/"+IMAGE_PATH+"/spin.gif");f.style.marginLeft="6px";g.appendChild(f);d.document.body.insertBefore(g,d.document.body.firstChild);window.setTimeout(function(){var a= @@ -9731,20 +9393,20 @@ m,!0);else if(b(a[q])&&(u=t.getIncomingEdges(a[q]),0<u.length))if(!e)b(m)&&0>mxU f.beginUpdate();try{if(g=D.apply(this,arguments),b(a))for(var k=0;k<g.length;k++)if(f.isEdge(g[k])&&null==f.getTerminal(g[k],!0)){f.setTerminal(g[k],a,!0);var l=t.getCellGeometry(g[k]);l.points=null;null!=l.getTerminalPoint(!0)&&l.setTerminalPoint(null,!0)}}finally{f.endUpdate()}return g}}var z={88:v.actions.get("selectChildren"),84:v.actions.get("selectSubtree"),80:v.actions.get("selectParent"),83:v.actions.get("selectSiblings")},J=v.onKeyDown;v.onKeyDown=function(a){try{if(t.isEnabled()&&!t.isEditing()&& b(t.getSelectionCell())&&1==t.getSelectionCount()){var c=null;0<t.getIncomingEdges(t.getSelectionCell()).length&&(9==a.which?c=mxEvent.isShiftDown(a)?f(t.getSelectionCell()):l(t.getSelectionCell()):13==a.which&&(c=q(t.getSelectionCell(),!mxEvent.isShiftDown(a))));if(null!=c&&0<c.length)1==c.length&&t.model.isEdge(c[0])?t.setSelectionCell(t.model.getTerminal(c[0],!1)):t.setSelectionCell(c[c.length-1]),null!=v.hoverIcons&&v.hoverIcons.update(t.view.getState(t.getSelectionCell())),t.startEditingAtCell(t.getSelectionCell()), mxEvent.consume(a);else if(mxEvent.isAltDown(a)&&mxEvent.isShiftDown(a)){var d=z[a.keyCode];null!=d&&(d.funct(a),mxEvent.consume(a))}else 37==a.keyCode?(u(t.getSelectionCell(),mxConstants.DIRECTION_WEST),mxEvent.consume(a)):38==a.keyCode?(u(t.getSelectionCell(),mxConstants.DIRECTION_NORTH),mxEvent.consume(a)):39==a.keyCode?(u(t.getSelectionCell(),mxConstants.DIRECTION_EAST),mxEvent.consume(a)):40==a.keyCode&&(u(t.getSelectionCell(),mxConstants.DIRECTION_SOUTH),mxEvent.consume(a))}}catch(R){console.log("error", -R)}mxEvent.isConsumed(a)||J.apply(this,arguments)};var F=t.connectVertex;t.connectVertex=function(a,c,d,e,g,k){var m=t.getIncomingEdges(a);return b(a)&&0<m.length?(d=n(a),e=d==mxConstants.DIRECTION_EAST||d==mxConstants.DIRECTION_WEST,g=c==mxConstants.DIRECTION_EAST||c==mxConstants.DIRECTION_WEST,d==c?l(a):e==g?f(a):q(a,c!=mxConstants.DIRECTION_NORTH&&c!=mxConstants.DIRECTION_WEST)):F.call(this,a,c,d,e,g,k)};t.getSubtree=function(a){var d=[a];!c(a)&&!b(a)||m(a)||t.traverse(a,!0,function(a,b){null!= +R)}mxEvent.isConsumed(a)||J.apply(this,arguments)};var E=t.connectVertex;t.connectVertex=function(a,c,d,e,g,k){var m=t.getIncomingEdges(a);return b(a)&&0<m.length?(d=n(a),e=d==mxConstants.DIRECTION_EAST||d==mxConstants.DIRECTION_WEST,g=c==mxConstants.DIRECTION_EAST||c==mxConstants.DIRECTION_WEST,d==c?l(a):e==g?f(a):q(a,c!=mxConstants.DIRECTION_NORTH&&c!=mxConstants.DIRECTION_WEST)):E.call(this,a,c,d,e,g,k)};t.getSubtree=function(a){var d=[a];!c(a)&&!b(a)||m(a)||t.traverse(a,!0,function(a,b){null!= b&&0>mxUtils.indexOf(d,b)&&d.push(b);0>mxUtils.indexOf(d,a)&&d.push(a);return!0});return d};var G=mxVertexHandler.prototype.init;mxVertexHandler.prototype.init=function(){G.apply(this,arguments);(c(this.state.cell)||b(this.state.cell))&&0<this.graph.getOutgoingEdges(this.state.cell).length&&(this.moveHandle=mxUtils.createImage(a),this.moveHandle.setAttribute("title","Move Subtree"),this.moveHandle.style.position="absolute",this.moveHandle.style.cursor="pointer",this.moveHandle.style.width="18px", this.moveHandle.style.height="18px",this.graph.container.appendChild(this.moveHandle),mxEvent.addGestureListeners(this.moveHandle,mxUtils.bind(this,function(a){this.graph.graphHandler.start(this.state.cell,mxEvent.getClientX(a),mxEvent.getClientY(a));this.graph.graphHandler.cells=this.graph.getSubtree(this.state.cell);this.graph.graphHandler.bounds=this.state.view.getBounds(this.graph.graphHandler.cells);this.graph.graphHandler.pBounds=this.graph.graphHandler.getPreviewBounds(this.graph.graphHandler.cells); -this.graph.graphHandler.cellWasClicked=!0;this.graph.isMouseTrigger=mxEvent.isMouseEvent(a);this.graph.isMouseDown=!0;mxEvent.consume(a)})))};var H=mxVertexHandler.prototype.redrawHandles;mxVertexHandler.prototype.redrawHandles=function(){H.apply(this,arguments);null!=this.moveHandle&&(this.moveHandle.style.left=this.state.x+this.state.width+(40>this.state.width?10:0)+2+"px",this.moveHandle.style.top=this.state.y+this.state.height+(40>this.state.height?10:0)+2+"px")};var I=mxVertexHandler.prototype.destroy; -mxVertexHandler.prototype.destroy=function(a,b){I.apply(this,arguments);null!=this.moveHandle&&(this.moveHandle.parentNode.removeChild(this.moveHandle),this.moveHandle=null)}};if("undefined"!==typeof Sidebar){var d=Sidebar.prototype.createAdvancedShapes;Sidebar.prototype.createAdvancedShapes=function(){var a=d.apply(this,arguments),b=this.graph;return a.concat([this.addEntry("tree container",function(){var a=new mxCell("Tree Container",new mxGeometry(0,0,220,160),"swimlane;html=1;startSize=20;horizontal=1;containerType=tree;"); -a.vertex=!0;return sb.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,a.value)}),this.addEntry("tree mindmap central idea branch topic",function(){var a=new mxCell("Mindmap",new mxGeometry(0,0,420,126),"swimlane;html=1;startSize=20;horizontal=1;containerType=tree;");a.vertex=!0;var b=new mxCell("Central Idea",new mxGeometry(160,60,100,40),"ellipse;whiteSpace=wrap;html=1;align=center;container=1;recursiveResize=0;treeFolding=1;treeMoving=1;");b.vertex=!0;var c=new mxCell("Topic", +this.graph.graphHandler.cellWasClicked=!0;this.graph.isMouseTrigger=mxEvent.isMouseEvent(a);this.graph.isMouseDown=!0;mxEvent.consume(a)})))};var I=mxVertexHandler.prototype.redrawHandles;mxVertexHandler.prototype.redrawHandles=function(){I.apply(this,arguments);null!=this.moveHandle&&(this.moveHandle.style.left=this.state.x+this.state.width+(40>this.state.width?10:0)+2+"px",this.moveHandle.style.top=this.state.y+this.state.height+(40>this.state.height?10:0)+2+"px")};var H=mxVertexHandler.prototype.destroy; +mxVertexHandler.prototype.destroy=function(a,b){H.apply(this,arguments);null!=this.moveHandle&&(this.moveHandle.parentNode.removeChild(this.moveHandle),this.moveHandle=null)}};if("undefined"!==typeof Sidebar){var d=Sidebar.prototype.createAdvancedShapes;Sidebar.prototype.createAdvancedShapes=function(){var a=d.apply(this,arguments),b=this.graph;return a.concat([this.addEntry("tree container",function(){var a=new mxCell("Tree Container",new mxGeometry(0,0,220,160),"swimlane;html=1;startSize=20;horizontal=1;containerType=tree;"); +a.vertex=!0;return sb.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,a.value)}),this.addEntry("tree mindmap mindmaps central idea branch topic",function(){var a=new mxCell("Mindmap",new mxGeometry(0,0,420,126),"swimlane;html=1;startSize=20;horizontal=1;containerType=tree;");a.vertex=!0;var b=new mxCell("Central Idea",new mxGeometry(160,60,100,40),"ellipse;whiteSpace=wrap;html=1;align=center;container=1;recursiveResize=0;treeFolding=1;treeMoving=1;");b.vertex=!0;var c=new mxCell("Topic", new mxGeometry(320,40,80,20),"whiteSpace=wrap;html=1;rounded=1;arcSize=50;align=center;verticalAlign=middle;container=1;recursiveResize=0;strokeWidth=1;autosize=1;spacing=4;treeFolding=1;treeMoving=1;");c.vertex=!0;var d=new mxCell("",new mxGeometry(0,0,0,0),"edgeStyle=entityRelationEdgeStyle;startArrow=none;endArrow=none;segment=10;curved=1;");d.geometry.relative=!0;d.edge=!0;b.insertEdge(d,!0);c.insertEdge(d,!1);var e=new mxCell("Branch",new mxGeometry(320,80,72,26),"whiteSpace=wrap;html=1;shape=partialRectangle;top=0;left=0;bottom=1;right=0;points=[[0,1],[1,1]];strokeColor=#000000;fillColor=none;align=center;verticalAlign=bottom;routingCenterY=0.5;snapToPoint=1;container=1;recursiveResize=0;autosize=1;treeFolding=1;treeMoving=1;"); e.vertex=!0;var g=new mxCell("",new mxGeometry(0,0,0,0),"edgeStyle=entityRelationEdgeStyle;startArrow=none;endArrow=none;segment=10;curved=1;");g.geometry.relative=!0;g.edge=!0;b.insertEdge(g,!0);e.insertEdge(g,!1);var p=new mxCell("Topic",new mxGeometry(20,40,80,20),"whiteSpace=wrap;html=1;rounded=1;arcSize=50;align=center;verticalAlign=middle;container=1;recursiveResize=0;strokeWidth=1;autosize=1;spacing=4;treeFolding=1;treeMoving=1;");p.vertex=!0;var u=new mxCell("",new mxGeometry(0,0,0,0),"edgeStyle=entityRelationEdgeStyle;startArrow=none;endArrow=none;segment=10;curved=1;"); u.geometry.relative=!0;u.edge=!0;b.insertEdge(u,!0);p.insertEdge(u,!1);var v=new mxCell("Branch",new mxGeometry(20,80,72,26),"whiteSpace=wrap;html=1;shape=partialRectangle;top=0;left=0;bottom=1;right=0;points=[[0,1],[1,1]];strokeColor=#000000;fillColor=none;align=center;verticalAlign=bottom;routingCenterY=0.5;snapToPoint=1;container=1;recursiveResize=0;autosize=1;treeFolding=1;treeMoving=1;");v.vertex=!0;var t=new mxCell("",new mxGeometry(0,0,0,0),"edgeStyle=entityRelationEdgeStyle;startArrow=none;endArrow=none;segment=10;curved=1;"); -t.geometry.relative=!0;t.edge=!0;b.insertEdge(t,!0);v.insertEdge(t,!1);a.insert(d);a.insert(g);a.insert(u);a.insert(t);a.insert(b);a.insert(c);a.insert(e);a.insert(p);a.insert(v);return sb.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,a.value)}),this.addEntry("tree mindmap central idea",function(){var a=new mxCell("Central Idea",new mxGeometry(0,0,100,40),"ellipse;whiteSpace=wrap;html=1;align=center;container=1;recursiveResize=0;treeFolding=1;treeMoving=1;");a.vertex=!0;return sb.createVertexTemplateFromCells([a], -a.geometry.width,a.geometry.height,a.value)}),this.addEntry("tree mindmap branch",function(){var a=new mxCell("Branch",new mxGeometry(0,0,80,20),"whiteSpace=wrap;html=1;shape=partialRectangle;top=0;left=0;bottom=1;right=0;points=[[0,1],[1,1]];strokeColor=#000000;fillColor=none;align=center;verticalAlign=bottom;routingCenterY=0.5;snapToPoint=1;container=1;recursiveResize=0;autosize=1;treeFolding=1;treeMoving=1;");a.vertex=!0;var b=new mxCell("",new mxGeometry(0,0,0,0),"edgeStyle=entityRelationEdgeStyle;startArrow=none;endArrow=none;segment=10;curved=1;"); -b.geometry.setTerminalPoint(new mxPoint(-40,40),!0);b.geometry.relative=!0;b.edge=!0;a.insertEdge(b,!1);return sb.createVertexTemplateFromCells([a,b],a.geometry.width,a.geometry.height,a.value)}),this.addEntry("tree mindmap sub topic",function(){var a=new mxCell("Sub Topic",new mxGeometry(0,0,72,26),"whiteSpace=wrap;html=1;rounded=1;arcSize=50;align=center;verticalAlign=middle;container=1;recursiveResize=0;strokeWidth=1;autosize=1;spacing=4;treeFolding=1;treeMoving=1;");a.vertex=!0;var b=new mxCell("", -new mxGeometry(0,0,0,0),"edgeStyle=entityRelationEdgeStyle;startArrow=none;endArrow=none;segment=10;curved=1;");b.geometry.setTerminalPoint(new mxPoint(-40,40),!0);b.geometry.relative=!0;b.edge=!0;a.insertEdge(b,!1);return sb.createVertexTemplateFromCells([a,b],a.geometry.width,a.geometry.height,a.value)}),this.addEntry("tree orgchart organization division",function(){var a=new mxCell("Orgchart",new mxGeometry(0,0,280,220),"swimlane;html=1;startSize=20;horizontal=1;containerType=tree;");a.vertex= -!0;var c=new mxCell("Organization",new mxGeometry(80,40,120,60),"whiteSpace=wrap;html=1;align=center;treeFolding=1;treeMoving=1;container=1;recursiveResize=0;");b.setAttributeForCell(c,"treeRoot","1");c.vertex=!0;var d=new mxCell("Division",new mxGeometry(20,140,100,60),"whiteSpace=wrap;html=1;align=center;verticalAlign=middle;container=1;recursiveResize=0;treeFolding=1;treeMoving=1;");d.vertex=!0;var e=new mxCell("",new mxGeometry(0,0,0,0),"edgeStyle=elbowEdgeStyle;elbow=vertical;startArrow=none;endArrow=none;rounded=0;"); +t.geometry.relative=!0;t.edge=!0;b.insertEdge(t,!0);v.insertEdge(t,!1);a.insert(d);a.insert(g);a.insert(u);a.insert(t);a.insert(b);a.insert(c);a.insert(e);a.insert(p);a.insert(v);return sb.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,a.value)}),this.addEntry("tree mindmap mindmaps central idea",function(){var a=new mxCell("Central Idea",new mxGeometry(0,0,100,40),"ellipse;whiteSpace=wrap;html=1;align=center;container=1;recursiveResize=0;treeFolding=1;treeMoving=1;");a.vertex= +!0;return sb.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,a.value)}),this.addEntry("tree mindmap mindmaps branch",function(){var a=new mxCell("Branch",new mxGeometry(0,0,80,20),"whiteSpace=wrap;html=1;shape=partialRectangle;top=0;left=0;bottom=1;right=0;points=[[0,1],[1,1]];strokeColor=#000000;fillColor=none;align=center;verticalAlign=bottom;routingCenterY=0.5;snapToPoint=1;container=1;recursiveResize=0;autosize=1;treeFolding=1;treeMoving=1;");a.vertex=!0;var b=new mxCell("", +new mxGeometry(0,0,0,0),"edgeStyle=entityRelationEdgeStyle;startArrow=none;endArrow=none;segment=10;curved=1;");b.geometry.setTerminalPoint(new mxPoint(-40,40),!0);b.geometry.relative=!0;b.edge=!0;a.insertEdge(b,!1);return sb.createVertexTemplateFromCells([a,b],a.geometry.width,a.geometry.height,a.value)}),this.addEntry("tree mindmap mindmaps sub topic",function(){var a=new mxCell("Sub Topic",new mxGeometry(0,0,72,26),"whiteSpace=wrap;html=1;rounded=1;arcSize=50;align=center;verticalAlign=middle;container=1;recursiveResize=0;strokeWidth=1;autosize=1;spacing=4;treeFolding=1;treeMoving=1;"); +a.vertex=!0;var b=new mxCell("",new mxGeometry(0,0,0,0),"edgeStyle=entityRelationEdgeStyle;startArrow=none;endArrow=none;segment=10;curved=1;");b.geometry.setTerminalPoint(new mxPoint(-40,40),!0);b.geometry.relative=!0;b.edge=!0;a.insertEdge(b,!1);return sb.createVertexTemplateFromCells([a,b],a.geometry.width,a.geometry.height,a.value)}),this.addEntry("tree orgchart organization division",function(){var a=new mxCell("Orgchart",new mxGeometry(0,0,280,220),"swimlane;html=1;startSize=20;horizontal=1;containerType=tree;"); +a.vertex=!0;var c=new mxCell("Organization",new mxGeometry(80,40,120,60),"whiteSpace=wrap;html=1;align=center;treeFolding=1;treeMoving=1;container=1;recursiveResize=0;");b.setAttributeForCell(c,"treeRoot","1");c.vertex=!0;var d=new mxCell("Division",new mxGeometry(20,140,100,60),"whiteSpace=wrap;html=1;align=center;verticalAlign=middle;container=1;recursiveResize=0;treeFolding=1;treeMoving=1;");d.vertex=!0;var e=new mxCell("",new mxGeometry(0,0,0,0),"edgeStyle=elbowEdgeStyle;elbow=vertical;startArrow=none;endArrow=none;rounded=0;"); e.geometry.relative=!0;e.edge=!0;c.insertEdge(e,!0);d.insertEdge(e,!1);var f=new mxCell("Division",new mxGeometry(160,140,100,60),"whiteSpace=wrap;html=1;align=center;verticalAlign=middle;container=1;recursiveResize=0;treeFolding=1;treeMoving=1;");f.vertex=!0;var g=new mxCell("",new mxGeometry(0,0,0,0),"edgeStyle=elbowEdgeStyle;elbow=vertical;startArrow=none;endArrow=none;rounded=0;");g.geometry.relative=!0;g.edge=!0;c.insertEdge(g,!0);f.insertEdge(g,!1);a.insert(e);a.insert(g);a.insert(c);a.insert(d); a.insert(f);return sb.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,a.value)}),this.addEntry("tree root",function(){var a=new mxCell("Organization",new mxGeometry(0,0,120,60),"whiteSpace=wrap;html=1;align=center;treeFolding=1;treeMoving=1;container=1;recursiveResize=0;");b.setAttributeForCell(a,"treeRoot","1");a.vertex=!0;return sb.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,a.value)}),this.addEntry("tree division",function(){var a=new mxCell("Division", new mxGeometry(20,40,100,60),"whiteSpace=wrap;html=1;align=center;verticalAlign=middle;container=1;recursiveResize=0;treeFolding=1;treeMoving=1;");a.vertex=!0;var b=new mxCell("",new mxGeometry(0,0,0,0),"edgeStyle=elbowEdgeStyle;elbow=vertical;startArrow=none;endArrow=none;rounded=0;");b.geometry.setTerminalPoint(new mxPoint(0,0),!0);b.geometry.relative=!0;b.edge=!0;a.insertEdge(b,!1);return sb.createVertexTemplateFromCells([a,b],a.geometry.width,a.geometry.height,a.value)}),this.addEntry("tree sub sections", @@ -9804,27 +9466,27 @@ null],60)}c=k.menus.get("language");null!=c&&!mxClient.IS_CHROMEAPP&&!EditorUi.i null==urlParams.libs||c(this);var k=this,l=k.editor.graph;k.toolbar=this.createToolbar(k.createDiv("geToolbar"));k.defaultLibraryName=mxResources.get("untitledLibrary");var m=document.createElement("div");m.style.cssText="position:absolute;left:0px;right:0px;top:0px;height:30px;padding:8px;border-bottom:1px solid lightgray;background-color:#ffffff;text-align:left;white-space:nowrap;";var n=null,p=new Menubar(k,m);k.statusContainer=k.createStatusContainer();k.statusContainer.style.position="relative"; k.statusContainer.style.maxWidth="";k.statusContainer.style.marginTop="7px";k.statusContainer.style.marginLeft="6px";k.statusContainer.style.color="gray";k.statusContainer.style.cursor="default";k.editor.addListener("statusChanged",mxUtils.bind(this,function(){k.setStatusText(k.editor.getStatus())}));var q=k.descriptorChanged;k.descriptorChanged=function(){q.apply(this,arguments);var a=k.getCurrentFile();if(null!=a&&null!=a.getTitle()){var b=a.getMode();"google"==b?b="googleDrive":"github"==b?b="gitHub": "gitlab"==b?b="gitLab":"onedrive"==b&&(b="oneDrive");b=mxResources.get(b);m.setAttribute("title",a.getTitle()+(null!=b?" ("+b+")":""))}else m.removeAttribute("title")};k.setStatusText(k.editor.getStatus());m.appendChild(k.statusContainer);k.buttonContainer=document.createElement("div");k.buttonContainer.style.cssText="position:absolute;right:0px;padding-right:34px;top:10px;white-space:nowrap;padding-top:2px;background-color:inherit;";m.appendChild(k.buttonContainer);k.menubarContainer=k.buttonContainer; -k.tabContainer=document.createElement("div");k.tabContainer.style.cssText="position:absolute;left:0px;right:0px;bottom:0px;height:30px;white-space:nowrap;border-bottom:1px solid lightgray;background-color:#ffffff;border-top:1px solid lightgray;margin-bottom:-2px;visibility:hidden;";var g=k.diagramContainer.parentNode,u=document.createElement("div");u.style.cssText="position:absolute;top:0px;left:0px;right:0px;bottom:0px;overflow:hidden;";k.diagramContainer.style.top="47px";var I=k.menus.get("viewZoom"); -if(null!=I){this.tabContainer.style.right="70px";var E=p.addMenu("100%",I.funct);E.setAttribute("title",mxResources.get("zoom")+" (Alt+Mousewheel)");E.style.whiteSpace="nowrap";E.style.backgroundImage="url("+mxWindow.prototype.minimizeImage+")";E.style.backgroundPosition="right 6px center";E.style.backgroundRepeat="no-repeat";E.style.backgroundColor="#ffffff";E.style.paddingRight="10px";E.style.display="block";E.style.position="absolute";E.style.textDecoration="none";E.style.textDecoration="none"; -E.style.right="0px";E.style.bottom="0px";E.style.overflow="hidden";E.style.visibility="hidden";E.style.textAlign="center";E.style.color="#000";E.style.fontSize="12px";E.style.color="#707070";E.style.width="59px";E.style.cursor="pointer";E.style.borderTop="1px solid lightgray";E.style.borderLeft="1px solid lightgray";E.style.height=parseInt(k.tabContainerHeight)-1+"px";E.style.lineHeight=parseInt(k.tabContainerHeight)+1+"px";u.appendChild(E);I=mxUtils.bind(this,function(){E.innerHTML=Math.round(100* -k.editor.graph.view.scale)+"%"});k.editor.graph.view.addListener(mxEvent.EVENT_SCALE,I);k.editor.addListener("resetGraphView",I);k.editor.addListener("pageSelected",I);var K=k.setGraphEnabled;k.setGraphEnabled=function(){K.apply(this,arguments);null!=this.tabContainer&&(E.style.visibility=this.tabContainer.style.visibility,this.diagramContainer.style.bottom="hidden"!=this.tabContainer.style.visibility?this.tabContainerHeight+"px":"0px")}}u.appendChild(k.tabContainer);u.appendChild(m);u.appendChild(k.diagramContainer); +k.tabContainer=document.createElement("div");k.tabContainer.style.cssText="position:absolute;left:0px;right:0px;bottom:0px;height:30px;white-space:nowrap;border-bottom:1px solid lightgray;background-color:#ffffff;border-top:1px solid lightgray;margin-bottom:-2px;visibility:hidden;";var g=k.diagramContainer.parentNode,u=document.createElement("div");u.style.cssText="position:absolute;top:0px;left:0px;right:0px;bottom:0px;overflow:hidden;";k.diagramContainer.style.top="47px";var H=k.menus.get("viewZoom"); +if(null!=H){this.tabContainer.style.right="70px";var F=p.addMenu("100%",H.funct);F.setAttribute("title",mxResources.get("zoom")+" (Alt+Mousewheel)");F.style.whiteSpace="nowrap";F.style.backgroundImage="url("+mxWindow.prototype.minimizeImage+")";F.style.backgroundPosition="right 6px center";F.style.backgroundRepeat="no-repeat";F.style.backgroundColor="#ffffff";F.style.paddingRight="10px";F.style.display="block";F.style.position="absolute";F.style.textDecoration="none";F.style.textDecoration="none"; +F.style.right="0px";F.style.bottom="0px";F.style.overflow="hidden";F.style.visibility="hidden";F.style.textAlign="center";F.style.color="#000";F.style.fontSize="12px";F.style.color="#707070";F.style.width="59px";F.style.cursor="pointer";F.style.borderTop="1px solid lightgray";F.style.borderLeft="1px solid lightgray";F.style.height=parseInt(k.tabContainerHeight)-1+"px";F.style.lineHeight=parseInt(k.tabContainerHeight)+1+"px";u.appendChild(F);H=mxUtils.bind(this,function(){F.innerHTML=Math.round(100* +k.editor.graph.view.scale)+"%"});k.editor.graph.view.addListener(mxEvent.EVENT_SCALE,H);k.editor.addListener("resetGraphView",H);k.editor.addListener("pageSelected",H);var K=k.setGraphEnabled;k.setGraphEnabled=function(){K.apply(this,arguments);null!=this.tabContainer&&(F.style.visibility=this.tabContainer.style.visibility,this.diagramContainer.style.bottom="hidden"!=this.tabContainer.style.visibility?this.tabContainerHeight+"px":"0px")}}u.appendChild(k.tabContainer);u.appendChild(m);u.appendChild(k.diagramContainer); g.appendChild(u);k.updateTabContainer();var M=null;f();mxEvent.addListener(window,"resize",function(){f();null!=k.sidebarWindow&&k.sidebarWindow.window.fit();null!=k.formatWindow&&k.formatWindow.window.fit();null!=k.actions.outlineWindow&&k.actions.outlineWindow.window.fit();null!=k.actions.layersWindow&&k.actions.layersWindow.window.fit();null!=k.menus.tagsWindow&&k.menus.tagsWindow.window.fit();null!=k.menus.findWindow&&k.menus.findWindow.window.fit()})}}}; (function(){var a=!1;"min"!=uiTheme||a||mxClient.IS_CHROMEAPP||(EditorUi.initMinimalTheme(),a=!0);var c=EditorUi.initTheme;EditorUi.initTheme=function(){c.apply(this,arguments);"min"!=uiTheme||a||(this.initMinimalTheme(),a=!0)}})();(function(){var a=mxGuide.prototype.move;mxGuide.prototype.move=function(b,c,e,k){var d=c.y,g=c.x,q=!1,f=!1;if(null!=this.states&&null!=b&&null!=c){var l=this,p=new mxCellState,u=this.graph.getView().scale,v=Math.max(2,this.getGuideTolerance()/2);p.x=b.x+g;p.y=b.y+d;p.width=b.width;p.height=b.height;for(var t=[],y=[],x=0;x<this.states.length;x++){var C=this.states[x];C instanceof mxCellState&&(k||!this.graph.isCellSelected(C.cell))&&((p.x>=C.x&&p.x<=C.x+C.width||C.x>=p.x&&C.x<=p.x+p.width)&&(p.y> -C.y+C.height+4||p.y+p.height+4<C.y)?t.push(C):(p.y>=C.y&&p.y<=C.y+C.height||C.y>=p.y&&C.y<=p.y+p.height)&&(p.x>C.x+C.width+4||p.x+p.width+4<C.x)&&y.push(C))}var A=0,B=0,D=C=0,z=0,J=0,F=0,G=0,H=5*u;if(1<t.length){t.push(p);t.sort(function(a,b){return a.y-b.y});var I=!1,x=p==t[0],u=p==t[t.length-1];if(!x&&!u)for(x=1;x<t.length-1;x++)if(p==t[x]){u=t[x-1];x=t[x+1];C=B=D=(x.y-u.y-u.height-p.height)/2;break}for(x=0;x<t.length-1;x++){var u=t[x],E=t[x+1],K=p==u||p==E,E=E.y-u.y-u.height,I=I|p==u;if(0==B&& -0==A)B=E,A=1;else if(Math.abs(B-E)<=(K||1==x&&I?v:0))A+=1;else if(1<A&&I){t=t.slice(0,x+1);break}else if(3<=t.length-x&&!I)A=0,C=B=0!=D?D:0,t.splice(0,0==x?1:x),x=-1;else break;0!=C||K||(B=C=E)}3==t.length&&t[1]==p&&(C=0)}if(1<y.length){y.push(p);y.sort(function(a,b){return a.x-b.x});I=!1;x=p==y[0];u=p==y[y.length-1];if(!x&&!u)for(x=1;x<y.length-1;x++)if(p==y[x]){u=y[x-1];x=y[x+1];F=J=G=(x.x-u.x-u.width-p.width)/2;break}for(x=0;x<y.length-1;x++){u=y[x];E=y[x+1];K=p==u||p==E;E=E.x-u.x-u.width;I|=p== -u;if(0==J&&0==z)J=E,z=1;else if(Math.abs(J-E)<=(K||1==x&&I?v:0))z+=1;else if(1<z&&I){y=y.slice(0,x+1);break}else if(3<=y.length-x&&!I)z=0,F=J=0!=G?G:0,y.splice(0,0==x?1:x),x=-1;else break;0!=F||K||(J=F=E)}3==y.length&&y[1]==p&&(F=0)}v=function(a,b,c,d){var e=[],f;d?(d=H,f=0):(d=0,f=H);e.push(new mxPoint(a.x-d,a.y-f));e.push(new mxPoint(a.x+d,a.y+f));e.push(a);e.push(b);e.push(new mxPoint(b.x-d,b.y-f));e.push(new mxPoint(b.x+d,b.y+f));if(null!=c)return c.points=e,c;a=new mxPolyline(e,mxConstants.GUIDE_COLOR, -mxConstants.GUIDE_STROKEWIDTH);a.dialect=mxConstants.DIALECT_SVG;a.pointerEvents=!1;a.init(l.graph.getView().getOverlayPane());return a};J=function(a,b){if(a&&null!=l.guidesArrHor)for(var c=0;c<l.guidesArrHor.length;c++)l.guidesArrHor[c].node.style.visibility="hidden";if(b&&null!=l.guidesArrVer)for(c=0;c<l.guidesArrVer.length;c++)l.guidesArrVer[c].node.style.visibility="hidden"};if(1<z&&z==y.length-1){z=[];G=l.guidesArrHor;q=[];g=0;x=y[0]==p?1:0;I=y[x].y+y[x].height;if(0<F)for(x=0;x<y.length-1;x++)u= -y[x],E=y[x+1],p==u?(g=E.x-u.width-F,q.push(new mxPoint(g+u.width+H,I)),q.push(new mxPoint(E.x-H,I))):p==E?(q.push(new mxPoint(u.x+u.width+H,I)),g=u.x+u.width+F,q.push(new mxPoint(g-H,I))):(q.push(new mxPoint(u.x+u.width+H,I)),q.push(new mxPoint(E.x-H,I)));else u=y[0],x=y[2],g=u.x+u.width+(x.x-u.x-u.width-p.width)/2,q.push(new mxPoint(u.x+u.width+H,I)),q.push(new mxPoint(g-H,I)),q.push(new mxPoint(g+p.width+H,I)),q.push(new mxPoint(x.x-H,I));for(x=0;x<q.length;x+=2)y=q[x],F=q[x+1],y=v(y,F,null!=G? -G[x/2]:null),y.node.style.visibility="visible",y.redraw(),z.push(y);for(x=q.length/2;null!=G&&x<G.length;x++)G[x].destroy();l.guidesArrHor=z;g-=b.x;q=!0}else J(!0);if(1<A&&A==t.length-1){z=[];G=l.guidesArrVer;f=[];d=0;x=t[0]==p?1:0;A=t[x].x+t[x].width;if(0<C)for(x=0;x<t.length-1;x++)u=t[x],E=t[x+1],p==u?(d=E.y-u.height-C,f.push(new mxPoint(A,d+u.height+H)),f.push(new mxPoint(A,E.y-H))):p==E?(f.push(new mxPoint(A,u.y+u.height+H)),d=u.y+u.height+C,f.push(new mxPoint(A,d-H))):(f.push(new mxPoint(A,u.y+ -u.height+H)),f.push(new mxPoint(A,E.y-H)));else u=t[0],x=t[2],d=u.y+u.height+(x.y-u.y-u.height-p.height)/2,f.push(new mxPoint(A,u.y+u.height+H)),f.push(new mxPoint(A,d-H)),f.push(new mxPoint(A,d+p.height+H)),f.push(new mxPoint(A,x.y-H));for(x=0;x<f.length;x+=2)y=f[x],F=f[x+1],y=v(y,F,null!=G?G[x/2]:null,!0),y.node.style.visibility="visible",y.redraw(),z.push(y);for(x=f.length/2;null!=G&&x<G.length;x++)G[x].destroy();l.guidesArrVer=z;d-=b.y;f=!0}else J(!1,!0)}if(q||f)return p=new mxPoint(g,d),t=a.call(this, +C.y+C.height+4||p.y+p.height+4<C.y)?t.push(C):(p.y>=C.y&&p.y<=C.y+C.height||C.y>=p.y&&C.y<=p.y+p.height)&&(p.x>C.x+C.width+4||p.x+p.width+4<C.x)&&y.push(C))}var A=0,B=0,D=C=0,z=0,J=0,E=0,G=0,I=5*u;if(1<t.length){t.push(p);t.sort(function(a,b){return a.y-b.y});var H=!1,x=p==t[0],u=p==t[t.length-1];if(!x&&!u)for(x=1;x<t.length-1;x++)if(p==t[x]){u=t[x-1];x=t[x+1];C=B=D=(x.y-u.y-u.height-p.height)/2;break}for(x=0;x<t.length-1;x++){var u=t[x],F=t[x+1],K=p==u||p==F,F=F.y-u.y-u.height,H=H|p==u;if(0==B&& +0==A)B=F,A=1;else if(Math.abs(B-F)<=(K||1==x&&H?v:0))A+=1;else if(1<A&&H){t=t.slice(0,x+1);break}else if(3<=t.length-x&&!H)A=0,C=B=0!=D?D:0,t.splice(0,0==x?1:x),x=-1;else break;0!=C||K||(B=C=F)}3==t.length&&t[1]==p&&(C=0)}if(1<y.length){y.push(p);y.sort(function(a,b){return a.x-b.x});H=!1;x=p==y[0];u=p==y[y.length-1];if(!x&&!u)for(x=1;x<y.length-1;x++)if(p==y[x]){u=y[x-1];x=y[x+1];E=J=G=(x.x-u.x-u.width-p.width)/2;break}for(x=0;x<y.length-1;x++){u=y[x];F=y[x+1];K=p==u||p==F;F=F.x-u.x-u.width;H|=p== +u;if(0==J&&0==z)J=F,z=1;else if(Math.abs(J-F)<=(K||1==x&&H?v:0))z+=1;else if(1<z&&H){y=y.slice(0,x+1);break}else if(3<=y.length-x&&!H)z=0,E=J=0!=G?G:0,y.splice(0,0==x?1:x),x=-1;else break;0!=E||K||(J=E=F)}3==y.length&&y[1]==p&&(E=0)}v=function(a,b,c,d){var e=[],f;d?(d=I,f=0):(d=0,f=I);e.push(new mxPoint(a.x-d,a.y-f));e.push(new mxPoint(a.x+d,a.y+f));e.push(a);e.push(b);e.push(new mxPoint(b.x-d,b.y-f));e.push(new mxPoint(b.x+d,b.y+f));if(null!=c)return c.points=e,c;a=new mxPolyline(e,mxConstants.GUIDE_COLOR, +mxConstants.GUIDE_STROKEWIDTH);a.dialect=mxConstants.DIALECT_SVG;a.pointerEvents=!1;a.init(l.graph.getView().getOverlayPane());return a};J=function(a,b){if(a&&null!=l.guidesArrHor)for(var c=0;c<l.guidesArrHor.length;c++)l.guidesArrHor[c].node.style.visibility="hidden";if(b&&null!=l.guidesArrVer)for(c=0;c<l.guidesArrVer.length;c++)l.guidesArrVer[c].node.style.visibility="hidden"};if(1<z&&z==y.length-1){z=[];G=l.guidesArrHor;q=[];g=0;x=y[0]==p?1:0;H=y[x].y+y[x].height;if(0<E)for(x=0;x<y.length-1;x++)u= +y[x],F=y[x+1],p==u?(g=F.x-u.width-E,q.push(new mxPoint(g+u.width+I,H)),q.push(new mxPoint(F.x-I,H))):p==F?(q.push(new mxPoint(u.x+u.width+I,H)),g=u.x+u.width+E,q.push(new mxPoint(g-I,H))):(q.push(new mxPoint(u.x+u.width+I,H)),q.push(new mxPoint(F.x-I,H)));else u=y[0],x=y[2],g=u.x+u.width+(x.x-u.x-u.width-p.width)/2,q.push(new mxPoint(u.x+u.width+I,H)),q.push(new mxPoint(g-I,H)),q.push(new mxPoint(g+p.width+I,H)),q.push(new mxPoint(x.x-I,H));for(x=0;x<q.length;x+=2)y=q[x],E=q[x+1],y=v(y,E,null!=G? +G[x/2]:null),y.node.style.visibility="visible",y.redraw(),z.push(y);for(x=q.length/2;null!=G&&x<G.length;x++)G[x].destroy();l.guidesArrHor=z;g-=b.x;q=!0}else J(!0);if(1<A&&A==t.length-1){z=[];G=l.guidesArrVer;f=[];d=0;x=t[0]==p?1:0;A=t[x].x+t[x].width;if(0<C)for(x=0;x<t.length-1;x++)u=t[x],F=t[x+1],p==u?(d=F.y-u.height-C,f.push(new mxPoint(A,d+u.height+I)),f.push(new mxPoint(A,F.y-I))):p==F?(f.push(new mxPoint(A,u.y+u.height+I)),d=u.y+u.height+C,f.push(new mxPoint(A,d-I))):(f.push(new mxPoint(A,u.y+ +u.height+I)),f.push(new mxPoint(A,F.y-I)));else u=t[0],x=t[2],d=u.y+u.height+(x.y-u.y-u.height-p.height)/2,f.push(new mxPoint(A,u.y+u.height+I)),f.push(new mxPoint(A,d-I)),f.push(new mxPoint(A,d+p.height+I)),f.push(new mxPoint(A,x.y-I));for(x=0;x<f.length;x+=2)y=f[x],E=f[x+1],y=v(y,E,null!=G?G[x/2]:null,!0),y.node.style.visibility="visible",y.redraw(),z.push(y);for(x=f.length/2;null!=G&&x<G.length;x++)G[x].destroy();l.guidesArrVer=z;d-=b.y;f=!0}else J(!1,!0)}if(q||f)return p=new mxPoint(g,d),t=a.call(this, b,p,e,k),q&&!f?p.y=t.y:f&&!q&&(p.x=t.x),t.y!=p.y&&null!=this.guideY&&null!=this.guideY.node&&(this.guideY.node.style.visibility="hidden"),t.x!=p.x&&null!=this.guideX&&null!=this.guideX.node&&(this.guideX.node.style.visibility="hidden"),p;J(!0,!0);return a.apply(this,arguments)};var c=mxGuide.prototype.setVisible;mxGuide.prototype.setVisible=function(a){c.call(this,a);var b=this.guidesArrVer,d=this.guidesArrHor;if(null!=b)for(var k=0;k<b.length;k++)b[k].node.style.visibility=a?"visible":"hidden";if(null!= d)for(k=0;k<d.length;k++)d[k].node.style.visibility=a?"visible":"hidden"};var b=mxGuide.prototype.destroy;mxGuide.prototype.destroy=function(){b.call(this);var a=this.guidesArrVer,c=this.guidesArrHor;if(null!=a){for(var e=0;e<a.length;e++)a[e].destroy();this.guidesArrVer=null}if(null!=c){for(e=0;e<c.length;e++)c[e].destroy();this.guidesArrHor=null}}})();function mxRuler(a,c,b,d){function g(){n.style.top=a.origContTop+"px";n.style.left=a.origContLeft+"px";n.style.width=(b?14:a.origContWidth)+"px";n.style.height=(b?a.origContHeight:14)+"px"}function e(a,b,c){var d;return function(){var e=this,f=arguments,g=c&&!d;clearTimeout(d);d=setTimeout(function(){d=null;c||a.apply(e,f)},b);g&&a.apply(e,f)}}var k=this;this.unit=c;var m="dark"!=window.uiTheme?{bkgClr:"#ffffff",outBkgClr:"#e8e9ed",cornerClr:"#fbfbfb",strokeClr:"#dadce0",fontClr:"#BBBBBB",guideClr:"#0000BB"}: {bkgClr:"#202020",outBkgClr:"#2a2a2a",cornerClr:"#2a2a2a",strokeClr:"#505759",fontClr:"#BBBBBB",guideClr:"#0088cf"},n=document.createElement("div");n.style.position="absolute";n.style.background=m.bkgClr;n.style[b?"borderRight":"borderBottom"]="0.5px solid "+m.strokeClr;n.style.borderLeft="0.5px solid "+m.strokeClr;document.body.appendChild(n);mxEvent.disableContextMenu(n);this.editorUiRefresh=a.refresh;a.refresh=function(c){1!=c&&k.editorUiRefresh.apply(a,arguments);var e=a.diagramContainer;d||(a.origContTop= e.offsetTop,a.origContLeft=e.offsetLeft,a.origContWidth=e.offsetWidth,a.origContHeight=e.offsetHeight);g();b?e.style.left=e.offsetLeft+14+"px":e.style.top=e.offsetTop+14+"px"};a.refresh(!0);g();var q=document.createElement("canvas");q.width=n.offsetWidth;q.height=n.offsetHeight;n.style.overflow="hidden";q.style.position="relative";n.appendChild(q);var f=q.getContext("2d");this.ui=a;var l=a.editor.graph;this.graph=l;this.container=n;this.canvas=q;var p=function(a,c,d,e,g){a=Math.round(a);c=Math.round(c); d=Math.round(d);e=Math.round(e);f.beginPath();f.moveTo(a+.5,c+.5);f.lineTo(d+.5,e+.5);f.stroke();g&&(b?(f.save(),f.translate(a,c),f.rotate(-Math.PI/2),f.fillText(g,0,0),f.restore()):f.fillText(g,a,c))},u=function(){f.clearRect(0,0,q.width,q.height);f.beginPath();f.lineWidth=.7;f.strokeStyle=m.strokeClr;f.setLineDash([]);f.font="9px Arial";f.textAlign="center";var a=l.view.scale,c=l.view.getBackgroundPageBounds(),d=l.view.translate,e=l.view.getGraphBounds(),g=l.pageVisible,n=g?14+(b?c.y-l.container.scrollTop: -c.x-l.container.scrollLeft):14+(b?d.y-l.container.scrollTop:d.x-l.container.scrollLeft),u=0;g&&(u=b?Math.floor(((e.y+1)/a-d.y)/l.pageFormat.height)*l.pageFormat.height*a:Math.floor(((e.x+1)/a-d.x)/l.pageFormat.width)*l.pageFormat.width*a);var z,v,F;switch(k.unit){case mxConstants.POINTS:z=F=10;v=[3,5,5,5,5,10,5,5,5,5];break;case mxConstants.MILLIMETERS:F=10;z=mxConstants.PIXELS_PER_MM;v=[5,3,3,3,3,6,3,3,3,3];break;case mxConstants.INCHES:F=.5>=a||4<=a?8:16,z=mxConstants.PIXELS_PER_INCH/F,v=[5,3,5, -3,7,3,5,3,7,3,5,3,7,3,5,3]}d=z;2<=a?d=z/(2*Math.floor(a/2)):.5>=a&&(d=z*Math.floor(1/a/2)*(k.unit==mxConstants.MILLIMETERS?2:1));z=null;c=g?Math.min(n+(b?c.height:c.width),b?q.height:q.width):b?q.height:q.width;g&&(f.fillStyle=m.outBkgClr,b?(f.fillRect(0,14,14,n-14),f.fillRect(0,c,14,q.height)):(f.fillRect(14,0,n-14,14),f.fillRect(c,0,q.width,14)));f.fillStyle=m.fontClr;for(g=g?n:n%(d*a);g<=c;g+=d*a)if(e=Math.round((g-n)/a/d),!(14>g||e==z)){z=e;var G=null;0==e%F&&(G=k.formatText(u+e*d)+"");b?p(14- -v[Math.abs(e)%F],g,14,g,G):p(g,14-v[Math.abs(e)%F],g,14,G)}f.lineWidth=1;p(b?0:14,b?14:0,14,14);f.fillStyle=m.cornerClr;f.fillRect(0,0,14,14)};this.drawRuler=u;this.sizeListener=c=e(function(){var a=l.container;b?(a=a.offsetHeight+14,q.height!=a&&(q.height=a,n.style.height=a+"px",u())):(a=a.offsetWidth+14,q.width!=a&&(q.width=a,n.style.width=a+"px",u()))},10);this.pageListener=function(){u()};var v=e(function(){var a=b?l.container.scrollTop:l.container.scrollLeft;k.lastScroll!=a&&(k.lastScroll=a, +c.x-l.container.scrollLeft):14+(b?d.y-l.container.scrollTop:d.x-l.container.scrollLeft),u=0;g&&(u=b?Math.floor(((e.y+1)/a-d.y)/l.pageFormat.height)*l.pageFormat.height*a:Math.floor(((e.x+1)/a-d.x)/l.pageFormat.width)*l.pageFormat.width*a);var z,v,E;switch(k.unit){case mxConstants.POINTS:z=E=10;v=[3,5,5,5,5,10,5,5,5,5];break;case mxConstants.MILLIMETERS:E=10;z=mxConstants.PIXELS_PER_MM;v=[5,3,3,3,3,6,3,3,3,3];break;case mxConstants.INCHES:E=.5>=a||4<=a?8:16,z=mxConstants.PIXELS_PER_INCH/E,v=[5,3,5, +3,7,3,5,3,7,3,5,3,7,3,5,3]}d=z;2<=a?d=z/(2*Math.floor(a/2)):.5>=a&&(d=z*Math.floor(1/a/2)*(k.unit==mxConstants.MILLIMETERS?2:1));z=null;c=g?Math.min(n+(b?c.height:c.width),b?q.height:q.width):b?q.height:q.width;g&&(f.fillStyle=m.outBkgClr,b?(f.fillRect(0,14,14,n-14),f.fillRect(0,c,14,q.height)):(f.fillRect(14,0,n-14,14),f.fillRect(c,0,q.width,14)));f.fillStyle=m.fontClr;for(g=g?n:n%(d*a);g<=c;g+=d*a)if(e=Math.round((g-n)/a/d),!(14>g||e==z)){z=e;var G=null;0==e%E&&(G=k.formatText(u+e*d)+"");b?p(14- +v[Math.abs(e)%E],g,14,g,G):p(g,14-v[Math.abs(e)%E],g,14,G)}f.lineWidth=1;p(b?0:14,b?14:0,14,14);f.fillStyle=m.cornerClr;f.fillRect(0,0,14,14)};this.drawRuler=u;this.sizeListener=c=e(function(){var a=l.container;b?(a=a.offsetHeight+14,q.height!=a&&(q.height=a,n.style.height=a+"px",u())):(a=a.offsetWidth+14,q.width!=a&&(q.width=a,n.style.width=a+"px",u()))},10);this.pageListener=function(){u()};var v=e(function(){var a=b?l.container.scrollTop:l.container.scrollLeft;k.lastScroll!=a&&(k.lastScroll=a, u())},10);this.scrollListener=v;this.unitListener=function(a,b){k.setUnit(b.getProperty("unit"))};l.addListener(mxEvent.SIZE,c);l.container.addEventListener("scroll",v);l.view.addListener("unitChanged",this.unitListener);a.addListener("pageViewChanged",this.pageListener);a.addListener("pageScaleChanged",this.pageListener);a.addListener("pageFormatChanged",this.pageListener);this.setStyle=function(a){m=a;n.style.background=m.bkgClr;u()};this.origGuideMove=mxGuide.prototype.move;mxGuide.prototype.move= function(a,c,d,e){null!=k.guidePart&&(f.putImageData(k.guidePart.imgData1,k.guidePart.x1,k.guidePart.y1),f.putImageData(k.guidePart.imgData2,k.guidePart.x2,k.guidePart.y2),f.putImageData(k.guidePart.imgData3,k.guidePart.x3,k.guidePart.y3));var g=k.origGuideMove.apply(this,arguments),l,n,q,t,u,v,x,y,C;f.lineWidth=.5;f.strokeStyle=m.guideClr;f.setLineDash([2]);b?(n=a.y+g.y+14-this.graph.container.scrollTop,l=0,u=n+a.height/2,t=7,y=n+a.height,x=0,q=f.getImageData(l,n,14,5),p(l,n,14,n),v=f.getImageData(t, u,14,5),p(t,u,14,u),C=f.getImageData(x,y,14,5),p(x,y,14,y)):(n=0,l=a.x+g.x+14-this.graph.container.scrollLeft,u=7,t=l+a.width/2,y=0,x=l+a.width,q=f.getImageData(l,n,5,14),p(l,n,l,14),v=f.getImageData(t,u,5,14),p(t,u,t,14),C=f.getImageData(x,y,5,14),p(x,y,x,14));if(null==k.guidePart||k.guidePart.x1!=l||k.guidePart.y1!=n)k.guidePart={imgData1:q,x1:l,y1:n,imgData2:v,x2:t,y2:u,imgData3:C,x3:x,y3:y};return g};this.origGuideDestroy=mxGuide.prototype.destroy;mxGuide.prototype.destroy=function(){var a=k.origGuideDestroy.apply(this, diff --git a/src/main/webapp/js/diagramly/App.js b/src/main/webapp/js/diagramly/App.js index 8168d5fe8bc5ff1e4b404a4e19231e6069e10cd1..f3a0401968b0240f718d3c96872b55b5487343ee 100644 --- a/src/main/webapp/js/diagramly/App.js +++ b/src/main/webapp/js/diagramly/App.js @@ -240,7 +240,7 @@ App.DROPBOX_APPKEY = 'libwls2fa9szdji'; App.DROPBOX_URL = 'js/dropbox/Dropbox-sdk.min.js'; /** - * Sets the delay for autosave in milliseconds. Default is 2000. + * Sets URL to load the Dropbox dropins JS from. */ App.DROPINS_URL = 'https://www.dropbox.com/static/api/2/dropins.js'; @@ -260,11 +260,6 @@ App.TRELLO_URL = 'https://api.trello.com/1/client.js'; */ App.TRELLO_JQUERY_URL = 'https://code.jquery.com/jquery-1.7.1.min.js'; -/** - * Trello JQuery dependency - */ -App.FOOTER_PLUGIN_URL = 'https://www.jgraph.com/drawio-footer.js'; - /** * Specifies the key for the pusher project. */ @@ -853,6 +848,21 @@ App.main = function(callback, createUi) } } + if (window.DRAWIO_CONFIG != null) + { + try + { + Editor.configure(window.DRAWIO_CONFIG, true); + } + catch (e) + { + if (window.console != null) + { + console.log('Error in global configuration: ' + e, window.DRAWIO_CONFIG); + } + } + } + // Sends load event if configuration is requested and waits for configure action if (urlParams['configure'] == '1') { @@ -1599,20 +1609,11 @@ App.prototype.isDriveDomain = function() { return urlParams['drive'] != '0' && (window.location.hostname == 'test.draw.io' || - window.location.hostname == 'cdn.draw.io' || window.location.hostname == 'www.draw.io' || window.location.hostname == 'drive.draw.io' || window.location.hostname == 'jgraph.github.io'); }; -/** - * Returns true if the current domain is for the old drive app. - */ -App.prototype.isLegacyDriveDomain = function() -{ - return urlParams['drive'] == 0 || window.location.hostname == 'legacy.draw.io'; -}; - /** * Returns the pusher instance for notifications. Creates the instance of none exists. */ diff --git a/src/main/webapp/js/diagramly/DriveClient.js b/src/main/webapp/js/diagramly/DriveClient.js index c346540159bea0e3b5f9b2eaea63f17f79ea9dde..fa299f4f4a681cac6a2a15733b3883339aaebf31 100644 --- a/src/main/webapp/js/diagramly/DriveClient.js +++ b/src/main/webapp/js/diagramly/DriveClient.js @@ -1,6 +1,6 @@ /** - * Copyright (c) 2006-2017, JGraph Ltd - * Copyright (c) 2006-2017, Gaudenz Alder + * Copyright (c) 2006-2019, JGraph Ltd + * Copyright (c) 2006-2019, draw.io AG */ DriveClient = function(editorUi) { @@ -18,23 +18,15 @@ DriveClient = function(editorUi) // Reading files now possible with no initial click in drive if (this.ui.editor.chromeless && !this.ui.editor.editable && urlParams['rt'] != '1') { - this.appId = '850530949725'; - this.clientId = '850530949725.apps.googleusercontent.com'; + this.appId = window.DRAWIO_GOOGLE_VIEWER_APP_ID || '850530949725'; + this.clientId = window.DRAWIO_GOOGLE_VIEWER_CLIENT_ID || '850530949725.apps.googleusercontent.com'; this.scopes = ['https://www.googleapis.com/auth/drive.readonly', 'https://www.googleapis.com/auth/userinfo.profile']; } - else if (this.ui.isDriveDomain()) - { - this.appId = '671128082532'; - this.clientId = '671128082532.apps.googleusercontent.com'; - } else { - // Uses a different mime-type and realtime model than the drive domain - // because realtime models for different app IDs are not compatible - this.appId = '420247213240'; - this.clientId = '420247213240-hnbju1pt13seqrc1hhd5htpotk4g9q7u.apps.googleusercontent.com'; - this.mimeType = 'application/vnd.jgraph.mxfile.rtlegacy'; + this.appId = window.DRAWIO_GOOGLE_APP_ID || '671128082532'; + this.clientId = window.DRAWIO_GOOGLE_CLIENT_ID || '671128082532-jhphbq6d0e1gnsus9mn7vf8a6fjn10mp.apps.googleusercontent.com'; } this.mimeTypes = this.xmlMimeType + 'application/mxe,application/mxr,' + @@ -108,11 +100,6 @@ DriveClient.prototype.libraryMimeType = 'application/vnd.jgraph.mxlibrary'; */ DriveClient.prototype.newAppHostname = 'www.draw.io'; -/** - * Contains the hostname of the old app. - */ -DriveClient.prototype.oldAppHostname = 'legacy.draw.io'; - /** * Executes the first step for connecting to Google Drive. */ @@ -916,25 +903,6 @@ DriveClient.prototype.getRealtimeData = function(id, success, error, retryCount) } }; -/** - * Checks if the client is authorized and calls the next step. - */ -DriveClient.prototype.loadRealtime = function(resp, success, error) -{ - // Redirects to new app because the realtime models of different apps are not visible - if (urlParams['ignoremime'] != '1' && this.appId == '420247213240' && - (resp.mimeType == 'application/vnd.jgraph.mxfile.realtime' || - resp.mimeType == 'application/mxr')) - { - this.redirectToNewApp(error, resp.id); - } - // Shows the file as read-only without conversion - else - { - success(); - } -}; - /** * Checks if the client is authorized and calls the next step. The ignoreMime argument is * used for import via getFile. Default is false. The optional @@ -1170,7 +1138,7 @@ DriveClient.prototype.saveFile = function(file, revision, success, errFn, noChec var mod0 = file.desc.modifiedDate; var head0 = file.desc.headRevisionId; var saveAsPng = this.ui.useCanvasForExport && /(\.png)$/i.test(file.getTitle()); - noCheck = (noCheck != null) ? noCheck : (!this.ui.isLegacyDriveDomain() || urlParams['ignoremime'] == '1'); + noCheck = (noCheck != null) ? noCheck : urlParams['ignoremime'] == '1'; // NOTE: Unloading arg is currently ignored, saving during unload/beforeUnload is not possible using // asynchronous code, which is needed to create the thumbnail, or asynchronous requests which is the only diff --git a/src/main/webapp/js/diagramly/Editor.js b/src/main/webapp/js/diagramly/Editor.js index 8051085852b9798fdd6042b03342f16b86eed4c7..ccb2eb7fd79b576f10c8a9e3d82272cf86f7be11 100644 --- a/src/main/webapp/js/diagramly/Editor.js +++ b/src/main/webapp/js/diagramly/Editor.js @@ -616,6 +616,11 @@ EditorUi.templateFile = config.templateFile; } + if (config.globalVars != null) + { + Editor.globalVars = config.globalVars; + } + if (config.customFonts) { Menus.prototype.defaultFonts = config.customFonts. @@ -3727,11 +3732,22 @@ */ Graph.prototype.updateGlobalUrlVariables = function() { + this.globalVars = Editor.globalVars; + if (urlParams['vars'] != null) { try { - this.globalUrlVars = JSON.parse(decodeURIComponent(urlParams['vars'])); + this.globalVars = (this.globalVars != null) ? mxUtils.clone(this.globalVars) : {}; + var vars = JSON.parse(decodeURIComponent(urlParams['vars'])); + + if (vars != null) + { + for (var key in vars) + { + this.globalVars[key] = vars[key]; + } + } } catch (e) { @@ -3749,7 +3765,7 @@ */ Graph.prototype.getExportVariables = function() { - return (this.globalUrlVars != null) ? this.globalUrlVars : {}; + return (this.globalVars != null) ? mxUtils.clone(this.globalVars) : {}; }; /** @@ -3761,9 +3777,9 @@ { var val = graphGetGlobalVariable.apply(this, arguments); - if (val == null && this.globalUrlVars != null) + if (val == null && this.globalVars != null) { - val = this.globalUrlVars[name]; + val = this.globalVars[name]; } return val; diff --git a/src/main/webapp/js/diagramly/Init.js b/src/main/webapp/js/diagramly/Init.js index f098397f1b8905aa8af643d4ead0e956c023aa50..cb600afe9fab7c78c0135a5964ec8497b2c309df 100644 --- a/src/main/webapp/js/diagramly/Init.js +++ b/src/main/webapp/js/diagramly/Init.js @@ -42,6 +42,9 @@ window.PLUGINS_BASE_PATH = window.PLUGINS_BASE_PATH || ''; window.RESOURCES_PATH = window.RESOURCES_PATH || 'resources'; window.RESOURCE_BASE = window.RESOURCE_BASE || RESOURCES_PATH + '/dia'; +// Specifies global configuration via variable +window.DRAWIO_CONFIG = window.DRAWIO_CONFIG || null; + // Sets the base path, the UI language via URL param and configures the // supported languages to avoid 404s. The loading of all core language // resources is disabled as all required resources are in grapheditor. diff --git a/src/main/webapp/js/diagramly/Menus.js b/src/main/webapp/js/diagramly/Menus.js index 5e15e95e6391fe6b6acff64d4130a0b6a7e04cba..24f82efe3bcb51adb06a2ccd2e26bbc3f26a83be 100644 --- a/src/main/webapp/js/diagramly/Menus.js +++ b/src/main/webapp/js/diagramly/Menus.js @@ -1,6 +1,6 @@ /** - * Copyright (c) 2006-2017, JGraph Ltd - * Copyright (c) 2006-2017, Gaudenz Alder + * Copyright (c) 2006-2019, JGraph Ltd + * Copyright (c) 2006-2019, draw.io AG */ (function() { @@ -66,7 +66,7 @@ var dropboxEnabled = ((urlParams['embed'] != '1' && urlParams['db'] != '0') || (urlParams['embed'] == '1' && urlParams['db'] == '1')) && mxClient.IS_SVG && (document.documentMode == null || document.documentMode > 9); var oneDriveEnabled = (window.location.hostname == 'www.draw.io' || window.location.hostname == 'test.draw.io' || - window.location.hostname == 'drive.draw.io' || window.location.hostname == 'legacy.draw.io') && + window.location.hostname == 'drive.draw.io') && (((urlParams['embed'] != '1' && urlParams['od'] != '0') || (urlParams['embed'] == '1' && urlParams['od'] == '1')) && !navigator.userAgent.match(/(iPad|iPhone|iPod)/g) && (navigator.userAgent.indexOf('MSIE') < 0 || document.documentMode >= 10)); diff --git a/src/main/webapp/js/diagramly/Trees.js b/src/main/webapp/js/diagramly/Trees.js index c51fa0ea0a02b3537db522b1d5d1f251ff0449a5..e62ce9787cee063238cd89f9dd77362fa59d38c0 100644 --- a/src/main/webapp/js/diagramly/Trees.js +++ b/src/main/webapp/js/diagramly/Trees.js @@ -1189,7 +1189,7 @@ return sb.createVertexTemplateFromCells([cell], cell.geometry.width, cell.geometry.height, cell.value); }), - this.addEntry('tree mindmap central idea branch topic', function() + this.addEntry('tree mindmap mindmaps central idea branch topic', function() { var mindmap = new mxCell('Mindmap', new mxGeometry(0, 0, 420, 126), 'swimlane;html=1;startSize=20;horizontal=1;containerType=tree;'); @@ -1267,7 +1267,7 @@ return sb.createVertexTemplateFromCells([mindmap], mindmap.geometry.width, mindmap.geometry.height, mindmap.value); }), - this.addEntry('tree mindmap central idea', function() + this.addEntry('tree mindmap mindmaps central idea', function() { var cell = new mxCell('Central Idea', new mxGeometry(0, 0, 100, 40), 'ellipse;whiteSpace=wrap;html=1;align=center;' + @@ -1277,7 +1277,7 @@ return sb.createVertexTemplateFromCells([cell], cell.geometry.width, cell.geometry.height, cell.value); }), - this.addEntry('tree mindmap branch', function() + this.addEntry('tree mindmap mindmaps branch', function() { var cell = new mxCell('Branch', new mxGeometry(0, 0, 80, 20), 'whiteSpace=wrap;html=1;shape=partialRectangle;top=0;left=0;bottom=1;right=0;points=[[0,1],[1,1]];' + @@ -1296,7 +1296,7 @@ return sb.createVertexTemplateFromCells([cell, edge], cell.geometry.width, cell.geometry.height, cell.value); }), - this.addEntry('tree mindmap sub topic', function() + this.addEntry('tree mindmap mindmaps sub topic', function() { var cell = new mxCell('Sub Topic', new mxGeometry(0, 0, 72, 26), 'whiteSpace=wrap;html=1;rounded=1;arcSize=50;align=center;verticalAlign=middle;' + diff --git a/src/main/webapp/js/diagramly/sidebar/Sidebar-Electrical.js b/src/main/webapp/js/diagramly/sidebar/Sidebar-Electrical.js index 2656fad12e640c7d4a9b66bcb1b280ec898a2088..1471cde98b3316623fa6c2caa9f6b71edfd2a684 100644 --- a/src/main/webapp/js/diagramly/sidebar/Sidebar-Electrical.js +++ b/src/main/webapp/js/diagramly/sidebar/Sidebar-Electrical.js @@ -314,8 +314,8 @@ 75, 24, '', 'Limit Switch NO', null, null, this.getTagsForStencil(gnmeem, 'limit switch no normally open', dtmeem).join(' ')), this.createVertexTemplateEntry(meem + 'limit_switch_nc;', 75, 13, '', 'Limit Switch NC', null, null, this.getTagsForStencil(gnmeem, 'limit switch nc normally closed', dtmeem).join(' ')), - this.createVertexTemplateEntry(meem + 'dpdt;', - 75, 32, '', 'DPDT', null, null, this.getTagsForStencil(gnmeem, 'dpdt', dtmeem).join(' ')), + this.createVertexTemplateEntry(meem + 'dpdt2;', + 58, 62, '', 'DPDT', null, null, this.getTagsForStencil(gnmeem, 'dpdt', dtmeem).join(' ')), this.createVertexTemplateEntry(meem + '2_position_switch;', 75, 70, '', '2-Position Switch', null, null, this.getTagsForStencil(gnmeem, '2 position switch', dtmeem).join(' ')), this.createVertexTemplateEntry(meem + '3_position_switch;', diff --git a/src/main/webapp/js/diagramly/sidebar/Sidebar-MSCAE.js b/src/main/webapp/js/diagramly/sidebar/Sidebar-MSCAE.js index 641f4a4138224f5cc14473e94a2160ac0637eb3f..b27843d301c26df7db5d32f530f16a39c994aa26 100644 --- a/src/main/webapp/js/diagramly/sidebar/Sidebar-MSCAE.js +++ b/src/main/webapp/js/diagramly/sidebar/Sidebar-MSCAE.js @@ -3,63 +3,72 @@ // Adds MSCAE shapes Sidebar.prototype.addMSCAEPalette = function() { - this.addMSCAECompaniesPalette(); - this.addMSCAEEnterpriseFlatPalette(); + var gn = 'mxgraph.mscae'; + var r = 100; + var sb = this; + var s = 'aspect=fixed;html=1;points=[];align=center;image;fontSize=12;image=img/lib/mscae/'; - this.addMSCAEGeneralPalette(); - this.addMSCAECloudPalette(); - this.addMSCAEEnterprisePalette(); - this.addMSCAEGeneralSymbolsPalette(); - this.addMSCAEIntunePalette(); - this.addMSCAEOMSPalette(); - this.addMSCAEOpsManagerPalette(); - this.addMSCAEOtherPalette(); - this.addMSCAESystemCenterPalette(); - this.addMSCAEVMPalette(); - this.addMSCAEDeprecatedPalette(); - this.addMSCAECloudColorPalette(); - this.addMSCAEDeprecatedColorPalette(); + this.addMSCAECompaniesPalette(gn, r, sb, s); + this.addMSCAEEnterpriseFlatPalette(gn, r, sb); + this.addMSCAEIntuneFlatPalette(gn, r, sb); + this.addMSCAEOMSFlatPalette(gn, r, sb); + this.addMSCAESystemCenterFlatPalette(gn, r, sb); + this.addMSCAEAIandMLServicePalette(gn, r, sb, s); + this.addMSCAEAnalyticsServicePalette(gn, r, sb, s); + this.addMSCAEComputeServicePalette(gn, r, sb, s); + this.addMSCAEComputeServiceVMPalette(gn, r, sb, s); + this.addMSCAEContainerServiceVMPalette(gn, r, sb, s); + this.addMSCAEDatabasesServicePalette(gn, r, sb, s); + this.addMSCAEDevOpsServicePalette(gn, r, sb, s); + this.addMSCAEGeneralServicePalette(gn, r, sb, s); + this.addMSCAEIdentityServicePalette(gn, r, sb, s); + this.addMSCAEIntegrationServicePalette(gn, r, sb, s); + this.addMSCAEInternetOfThingsServicePalette(gn, r, sb, s); + this.addMSCAEIntuneServicePalette(gn, r, sb, s); + this.addMSCAEManagementGovernanceServicePalette(gn, r, sb, s); + this.addMSCAEManagementGovernanceMediaServicePalette(gn, r, sb, s); + this.addMSCAEMigrateServicePalette(gn, r, sb, s); + this.addMSCAEMixedRealityServicePalette(gn, r, sb, s); + this.addMSCAEMobileServicePalette(gn, r, sb, s); + this.addMSCAENetworkingServicePalette(gn, r, sb, s); + this.addMSCAEOtherCategoryServicePalette(gn, r, sb, s); + this.addMSCAESecurityServicePalette(gn, r, sb, s); + this.addMSCAEStorageServicePalette(gn, r, sb, s); + this.addMSCAEWebServicePalette(gn, r, sb, s); }; - Sidebar.prototype.addMSCAECompaniesPalette = function() + Sidebar.prototype.addMSCAECompaniesPalette = function(gn, r, sb, s) { - var s = 'shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.'; - var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.'; - - // Space savers - var sb = this; - var gn = 'mxgraph.mscae.cloud'; var dt = 'ms microsoft cloud enterprise company companies'; - var r = 100; var fns = [ - this.createVertexTemplateEntry('aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Cache_Redis_Product.svg;', + this.createVertexTemplateEntry(s + 'Cache_Redis_Product.svg;', r * 0.5, r * 0.42, '', 'Cache Redis Product Icon', null, null, this.getTagsForStencil(gn, 'azure cache redis product icon', dt).join(' ')), - this.createVertexTemplateEntry('aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Databricks.svg;', + this.createVertexTemplateEntry(s + 'Databricks.svg;', r * 0.5, r * 0.48, '', 'Databricks', null, null, this.getTagsForStencil(gn, 'azure databricks', dt).join(' ')), - this.createVertexTemplateEntry('aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/HDInsight.svg;', + this.createVertexTemplateEntry(s + 'HDInsight.svg;', r * 0.5, r * 0.48, '', 'HDInsight', null, null, this.getTagsForStencil(gn, 'azure hdinsight', dt).join(' ')), this.createVertexTemplateEntry('shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.hockeyapp;fillColor=#0079D6;pointerEvents=1;', r * 0.5, r * 0.38, '', 'HockeyApp', null, null, this.getTagsForStencil(gn, 'azure hockey app hockeyapp', dt).join(' ')), - this.createVertexTemplateEntry('aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/OpenShift.svg;', + this.createVertexTemplateEntry(s + 'OpenShift.svg;', r * 0.5, r * 0.46, '', 'OpenShift', null, null, this.getTagsForStencil(gn, 'azure open shift openshift', dt).join(' ')), - this.createVertexTemplateEntry('aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Cloud_Cycle.svg;', + this.createVertexTemplateEntry(s + 'Cloud_Cycle.svg;', r * 0.5, r * 0.46, '', 'Cloud Cycle', null, null, this.getTagsForStencil(gn, 'cloud cycle', dt).join(' ')), - this.createVertexTemplateEntry('aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Kubernetes.svg;', + this.createVertexTemplateEntry(s + 'Kubernetes.svg;', r * 0.5, r * 0.48, '', 'Kubernetes', null, null, this.getTagsForStencil(gn, 'kubernetes', dt).join(' ')), - this.createVertexTemplateEntry('aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/PluralSight_mono.svg;', + this.createVertexTemplateEntry(s + 'PluralSight_mono.svg;', r * 0.5, r * 0.5, '', 'PluralSight Mono', null, null, this.getTagsForStencil(gn, 'pluralsight mono', dt).join(' ')), - this.createVertexTemplateEntry('aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/DC_OS.svg;', + this.createVertexTemplateEntry(s + 'DC_OS.svg;', r * 0.4, r * 0.5, '', 'DC OS', null, null, this.getTagsForStencil(gn, 'dc os', dt).join(' ')), - this.createVertexTemplateEntry('aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Docker.svg;', + this.createVertexTemplateEntry(s + 'Docker.svg;', r * 0.5, r * 0.41, '', 'Docker', null, null, this.getTagsForStencil(gn, 'docker', dt).join(' ')), - this.createVertexTemplateEntry('aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/StackOverflow.svg;', + this.createVertexTemplateEntry(s + 'StackOverflow.svg;', r * 0.4, r * 0.5, '', 'StackOverflow', null, null, this.getTagsForStencil(gn, 'stack overflow stackoverflow so', dt).join(' ')), - this.createVertexTemplateEntry('aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/WebAppUmbraco.svg;', + this.createVertexTemplateEntry(s + 'WebAppUmbraco.svg;', r * 0.49, r * 0.5, '', 'WebAppUmbraco', null, null, this.getTagsForStencil(gn, 'webappumbraco webapp umbraco', dt).join(' ')), - this.createVertexTemplateEntry('aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/WebAppWordPress.svg;', - r * 0.49, r * 0.5, '', 'WebAppWordPress', null, null, this.getTagsForStencil(gn, 'webappwordpress webapp wordpress', dt).join(' ')), + this.createVertexTemplateEntry(s + 'WebAppWordPress.svg;', + r * 0.49, r * 0.5, '', 'WebAppWordPress', null, null, this.getTagsForStencil(gn, 'webappwordpress webapp wordpress', dt).join(' ')) ]; this.addPalette('mscaeCompanies', 'CAE / Companies', false, mxUtils.bind(this, function(content) @@ -71,310 +80,305 @@ })); }; - Sidebar.prototype.addMSCAEEnterpriseFlatPalette = function() + Sidebar.prototype.addMSCAEEnterpriseFlatPalette = function(gn, r, sb) { - var s = 'shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.'; - var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.'; - - // Space savers - var sb = this; - var gn = 'mxgraph.mscae.cloud'; + var s = 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.'; + var s2 = 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.'; var dt = 'ms microsoft cloud enterprise flat'; - var r = 100; var fns = [ this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.d;fillColor=#00188D;', + s + 'mscae.enterprise.d', r * 0.4, r * 0.5, '', 'Federation Services Proxy', null, null, this.getTagsForStencil(gn, 'active directory ad fs federation services proxy', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.ad_fs;fillColor=#00188D;', + s + 'mscae.enterprise.ad_fs', r * 0.4, r * 0.5, '', 'Federation Services', null, null, this.getTagsForStencil(gn, 'active directory ad fs federation services', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.android_phone;fillColor=#00188D;', + s + 'mscae.enterprise.android_phone', r * 0.3, r * 0.5, '', 'Android Phone', null, null, this.getTagsForStencil(gn, 'android phone', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.application;fillColor=#00188D;', + s + 'mscae.enterprise.application', r * 0.5, r * 0.34, '', 'Application', null, null, this.getTagsForStencil(gn, 'application', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.application_blank;fillColor=#00188D;', + s + 'mscae.enterprise.application_blank', r * 0.5, r * 0.43, '', 'Application (blank)', null, null, this.getTagsForStencil(gn, 'application blank', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.app_generic;fillColor=#00188D;', + s + 'mscae.enterprise.app_generic', r * 0.5, r * 0.39, '', 'Application (generic)', null, null, this.getTagsForStencil(gn, 'application generic', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.application_server;fillColor=#00188D;', + s + 'mscae.enterprise.application_server', r * 0.43, r * 0.5, '', 'Application Server', null, null, this.getTagsForStencil(gn, 'application server', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.application_server2;fillColor=#00188D;', + s + 'mscae.enterprise.application_server2', r * 0.43, r * 0.5, '', 'Application Server', null, null, this.getTagsForStencil(gn, 'application server', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.pack;fillColor=#00188D;', + s + 'mscae.enterprise.pack', r * 0.5, r * 0.45, '', 'Pack', null, null, this.getTagsForStencil(gn, 'pack', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.backup_local;fillColor=#00188D;', + s + 'mscae.enterprise.backup_local', r * 0.49, r * 0.5, '', 'Backup (local)', null, null, this.getTagsForStencil(gn, 'backup local', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.backup_online;fillColor=#00188D;', + s + 'mscae.enterprise.backup_online', r * 0.5, r * 0.4, '', 'Backup (local)', null, null, this.getTagsForStencil(gn, 'backup local', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.calendar;fillColor=#00188D;', + s + 'mscae.enterprise.calendar', r * 0.5, r * 0.41, '', 'Calendar', null, null, this.getTagsForStencil(gn, 'calendar', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.certificate;fillColor=#00188D;', + s + 'azure.certificate', r * 0.5, r * 0.4, '', 'Certificate', null, null, this.getTagsForStencil(gn, 'certificate', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.client_application;fillColor=#00188D;', + s + 'mscae.enterprise.client_application', r * 0.5, r * 0.32, '', 'Client Application', null, null, this.getTagsForStencil(gn, 'client application', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.cloud;fillColor=#00188D;', + s + 'azure.cloud', r * 0.5, r * 0.32, '', 'Cloud', null, null, this.getTagsForStencil(gn, 'cloud', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.internet;fillColor=#00188D;', + s + 'mscae.enterprise.internet', r * 0.5, r * 0.31, '', 'Cloud', null, null, this.getTagsForStencil(gn, 'cloud', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.cluster_server;fillColor=#00188D;', + s + 'mscae.enterprise.cluster_server', r * 0.4, r * 0.5, '', 'Cluster Server', null, null, this.getTagsForStencil(gn, 'cluster server', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.code_file;fillColor=#00188D;', + s + 'mscae.enterprise.code_file', r * 0.49, r * 0.5, '', 'Code File', null, null, this.getTagsForStencil(gn, 'code file', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.connectors;fillColor=#00188D;', + s + 'mscae.enterprise.connectors', r * 0.5, r * 0.34, '', 'Connectors', null, null, this.getTagsForStencil(gn, 'connectors', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.database_generic;fillColor=#00188D;', + s + 'mscae.enterprise.database_generic', r * 0.37, r * 0.5, '', 'Database (generic)', null, null, this.getTagsForStencil(gn, 'database generic', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.database_server;fillColor=#00188D;', + s + 'mscae.enterprise.database_server', r * 0.38, r * 0.5, '', 'Database (server)', null, null, this.getTagsForStencil(gn, 'database server', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.database_synchronization;fillColor=#00188D;', + s + 'mscae.enterprise.database_synchronization', r * 0.39, r * 0.5, '', 'Database (synchronization)', null, null, this.getTagsForStencil(gn, 'database synchronization', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.device;fillColor=#00188D;', + s + 'mscae.enterprise.device', r * 0.5, r * 0.26, '', 'Device', null, null, this.getTagsForStencil(gn, 'device', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.direct_access_feature;fillColor=#00188D;', + s + 'mscae.enterprise.direct_access_feature', r * 0.5, r * 0.44, '', 'Direct Access (feature)', null, null, this.getTagsForStencil(gn, 'direct access feature', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.code_file;fillColor=#00188D;', + s + 'azure.code_file', r * 0.47, r * 0.5, '', 'Document DB file', null, null, this.getTagsForStencil(gn, 'documentdb document db database file', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.document;fillColor=#00188D;', + s + 'mscae.enterprise.document', r * 0.4, r * 0.5, '', 'Document', null, null, this.getTagsForStencil(gn, 'document', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.domain_controller;fillColor=#00188D;', + s + 'mscae.enterprise.domain_controller', r * 0.36, r * 0.5, '', 'Domain Controller', null, null, this.getTagsForStencil(gn, 'domain controller', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.enterprise;fillColor=#00188D;', + s + 'azure.enterprise', r * 0.3, r * 0.5, '', 'Enterprise Building', null, null, this.getTagsForStencil(gn, 'enterprise building', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.file;fillColor=#00188D;', + s + 'azure.file', r * 0.47, r * 0.5, '', 'File (general)', null, null, this.getTagsForStencil(gn, 'file', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.filter;fillColor=#00188D;', + s + 'mscae.enterprise.filter', r * 0.5, r * 0.45, '', 'Filter', null, null, this.getTagsForStencil(gn, 'filter', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.firewall;fillColor=#00188D;', + s + 'mscae.enterprise.firewall', r * 0.5, r * 0.44, '', 'Firewall', null, null, this.getTagsForStencil(gn, 'firewall', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.folder;fillColor=#00188D;', + s + 'mscae.enterprise.folder', r * 0.5, r * 0.43, '', 'Folder', null, null, this.getTagsForStencil(gn, 'folder', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.gateway;fillColor=#00188D;', + s + 'mscae.enterprise.gateway', r * 0.5, r * 0.5, '', 'Gateway', null, null, this.getTagsForStencil(gn, 'gateway', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.graph;fillColor=#00188D;', + s + 'mscae.general.graph', r * 0.5, r * 0.5, '', 'Graph', null, null, this.getTagsForStencil(gn, 'graph', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.health_monitoring;fillColor=#00188D;', + s + 'azure.health_monitoring', r * 0.5, r * 0.42, '', 'Health Monitoring', null, null, this.getTagsForStencil(gn, 'health monitoring', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.healthy;fillColor=#00188D;', + s + 'azure.healthy', r * 0.5, r * 0.45, '', 'Healthy', null, null, this.getTagsForStencil(gn, 'healthy', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.import_generic;fillColor=#00188D;', + s + 'mscae.enterprise.import_generic', r * 0.4, r * 0.5, '', 'Import (generic)', null, null, this.getTagsForStencil(gn, 'import generic', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.internet_hollow;fillColor=#00188D;', + s + 'mscae.enterprise.internet_hollow', r * 0.5, r * 0.31, '', 'Internet (hollow)', null, null, this.getTagsForStencil(gn, 'internet hollow', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.internet;fillColor=#00188D;', + s + 'mscae.enterprise.internet', r * 0.5, r * 0.31, '', 'Internet', null, null, this.getTagsForStencil(gn, 'internet', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.key_permissions;fillColor=#00188D;', + s + 'mscae.enterprise.key_permissions', r * 0.26, r * 0.5, '', 'Key, Permissions', null, null, this.getTagsForStencil(gn, 'key permissions', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.keyboard;fillColor=#00188D;', + s + 'mscae.enterprise.keyboard', r * 0.5, r * 0.3, '', 'Keyboard', null, null, this.getTagsForStencil(gn, 'keyboard', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.laptop;fillColor=#00188D;', + s + 'azure.laptop', r * 0.5, r * 0.3, '', 'Laptop', null, null, this.getTagsForStencil(gn, 'laptop', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.load_balancer_generic;fillColor=#00188D;', + s + 'azure.load_balancer_generic', r * 0.37, r * 0.5, '', 'Load Balancer (generic)', null, null, this.getTagsForStencil(gn, 'load balancer generic', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.load_testing;fillColor=#00188D;', + s + 'mscae.enterprise.load_testing', r * 0.48, r * 0.5, '', 'Load Testing', null, null, this.getTagsForStencil(gn, 'load testing', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.lock_unlocked;fillColor=#00188D;', + s + 'mscae.enterprise.lock_unlocked', r * 0.37, r * 0.5, '', 'Lock (unlocked)', null, null, this.getTagsForStencil(gn, 'lock unlocked unprotected accessible', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.lock;fillColor=#00188D;', + s + 'mscae.enterprise.lock', r * 0.39, r * 0.5, '', 'Lock, protected', null, null, this.getTagsForStencil(gn, 'lock protected', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.maintenance;fillColor=#00188D;', + s + 'mscae.enterprise.maintenance', r * 0.39, r * 0.5, '', 'Maintenance', null, null, this.getTagsForStencil(gn, 'maintenance', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.management_console;fillColor=#00188D;', + s + 'mscae.enterprise.management_console;', r * 0.5, r * 0.34, '', 'Management Console', null, null, this.getTagsForStencil(gn, 'management console', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.message2;fillColor=#00188D;', + s + 'azure.message2;', r * 0.5, r * 0.37, '', 'Message', null, null, this.getTagsForStencil(gn, 'message', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.monitor_running_apps;fillColor=#00188D;', + s + 'mscae.enterprise.monitor_running_apps', r * 0.5, r * 0.39, '', 'Monitor Running Apps', null, null, this.getTagsForStencil(gn, 'monitor running apps', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.computer;fillColor=#00188D;', + s + 'azure.computer', r * 0.5, r * 0.45, '', 'Monitor', null, null, this.getTagsForStencil(gn, 'monitor computer', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.mouse;fillColor=#00188D;', + s + 'mscae.enterprise.mouse', r * 0.3, r * 0.5, '', 'Mouse', null, null, this.getTagsForStencil(gn, 'mouse', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.network_card;fillColor=#00188D;', + s + 'mscae.enterprise.network_card', r * 0.5, r * 0.35, '', 'Network Card', null, null, this.getTagsForStencil(gn, 'network card', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.not_allowed;fillColor=#EA1C24;', + s2 + 'mscae.enterprise.not_allowed;fillColor=#EA1C24;', r * 0.5, r * 0.5, '', 'Not Allowed', null, null, this.getTagsForStencil(gn, 'not allowed', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.performance_monitor;fillColor=#00188D;', + s + 'mscae.enterprise.performance_monitor', r * 0.5, r * 0.36, '', 'Performance Monitor', null, null, this.getTagsForStencil(gn, 'performance monitor', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.performance;fillColor=#00188D;', + s + 'mscae.enterprise.performance', r * 0.5, r * 0.5, '', 'Performance', null, null, this.getTagsForStencil(gn, 'performance', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.mobile;fillColor=#00188D;', + s + 'azure.mobile', r * 0.35, r * 0.5, '', 'Mobile', null, null, this.getTagsForStencil(gn, 'mobile', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.plug_and_play;fillColor=#00188D;', + s + 'mscae.enterprise.plug_and_play', r * 0.4, r * 0.5, '', 'Plug and Play', null, null, this.getTagsForStencil(gn, 'plug and play', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.other.powerpoint;fillColor=#DE5D24;', + s2 + 'mscae.other.powerpoint;fillColor=#DE5D24;', r * 0.5, r * 0.5, '', 'PowerPoint', null, null, this.getTagsForStencil(gn, 'powerpoint', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.powershell_file;fillColor=#00188D;', + s + 'azure.powershell_file', r * 0.47, r * 0.5, '', 'PowerShell file', null, null, this.getTagsForStencil(gn, 'powershell file', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.protocol_stack;fillColor=#00188D;', + s + 'mscae.enterprise.protocol_stack', r * 0.5, r * 0.34, '', 'Protocol Stack', null, null, this.getTagsForStencil(gn, 'protocol stack', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.queue_generic;fillColor=#00188D;', + s + 'azure.queue_generic', r * 0.5, r * 0.15, '', 'Queue Generic', null, null, this.getTagsForStencil(gn, 'queue generic', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.rms_connector;fillColor=#00188D;', + s + 'mscae.enterprise.rms_connector', r * 0.38, r * 0.5, '', 'RMS Connector', null, null, this.getTagsForStencil(gn, 'rms connector', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.router;fillColor=#00188D;', + s + 'mscae.enterprise.router', r * 0.5, r * 0.39, '', 'Router', null, null, this.getTagsForStencil(gn, 'router', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.router;fillColor=#00188D;', + s + 'mscae.enterprise.router', r * 0.5, r * 0.39, '', 'Router', null, null, this.getTagsForStencil(gn, 'router', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.rdp_remoting_file;fillColor=#0078D7;', + s2 + 'azure.rdp_remoting_file;fillColor=#0078D7;', r * 0.48, r * 0.5, '', 'RPD Remoting file', null, null, this.getTagsForStencil(gn, 'rpd remoting file', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.script_file;fillColor=#00188D;', + s + 'azure.script_file', r * 0.47, r * 0.5, '', 'Script file', null, null, this.getTagsForStencil(gn, 'script file', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.secure_virtual_machine;fillColor=#00188D;', + s + 'mscae.enterprise.secure_virtual_machine', r * 0.5, r * 0.38, '', 'Secure Virtual Machine', null, null, this.getTagsForStencil(gn, 'secure virtual machine', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.server;fillColor=#00188D;', + s + 'azure.server', r * 0.5, r * 0.15, '', 'Server (blade)', null, null, this.getTagsForStencil(gn, 'server', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.server_generic;fillColor=#00188D;', + s + 'mscae.enterprise.server_generic', r * 0.24, r * 0.5, '', 'Server (generic)', null, null, this.getTagsForStencil(gn, 'server generic', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.server_directory;fillColor=#00188D;', + s + 'mscae.enterprise.server_directory', r * 0.36, r * 0.5, '', 'Server Directory', null, null, this.getTagsForStencil(gn, 'server directory', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.server_farm;fillColor=#00188D;', + s + 'mscae.enterprise.server_farm', r * 0.5, r * 0.32, '', 'Server Farm', null, null, this.getTagsForStencil(gn, 'server farm', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.server_rack;fillColor=#00188D;', + s + 'azure.server_rack', r * 0.5, r * 0.5, '', 'Server Rack', null, null, this.getTagsForStencil(gn, 'server rack', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.settings;fillColor=#00188D;', + s + 'mscae.enterprise.settings', r * 0.5, r * 0.5, '', 'Settings', null, null, this.getTagsForStencil(gn, 'settings', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.shared_folder;fillColor=#00188D;', + s + 'mscae.enterprise.shared_folder', r * 0.43, r * 0.5, '', 'Shared Folder', null, null, this.getTagsForStencil(gn, 'shared folder', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.smartcard;fillColor=#00188D;', + s + 'mscae.enterprise.smartcard', r * 0.5, r * 0.32, '', 'Smartcard', null, null, this.getTagsForStencil(gn, 'smartcard', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.startup_task;fillColor=#0078D7;', + s2 + 'azure.startup_task;fillColor=#0078D7;', r * 0.48, r * 0.5, '', 'Startup Task', null, null, this.getTagsForStencil(gn, 'startup task', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.storage;fillColor=#00188D;', + s + 'mscae.enterprise.storage', r * 0.5, r * 0.41, '', 'Storage', null, null, this.getTagsForStencil(gn, 'storage', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.table;fillColor=#00188D;', + s + 'mscae.enterprise.table', r * 0.5, r * 0.5, '', 'Table', null, null, this.getTagsForStencil(gn, 'table', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.tablet;fillColor=#00188D;', + s + 'azure.tablet;', r * 0.5, r * 0.37, '', 'Tablet', null, null, this.getTagsForStencil(gn, 'tablet', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.tool;fillColor=#00188D;', + s + 'mscae.enterprise.tool;', r * 0.5, r * 0.45, '', 'Tool', null, null, this.getTagsForStencil(gn, 'tool', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.triggers;fillColor=#0078D7;', + s2 + 'mscae.enterprise.triggers;fillColor=#0078D7;', r * 0.47, r * 0.5, '', 'Triggers', null, null, this.getTagsForStencil(gn, 'triggers', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.tunnel;fillColor=#00188D;', + s + 'mscae.general.tunnel', r * 0.5, r * 0.09, '', 'Tunnel', null, null, this.getTagsForStencil(gn, 'tunnel', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.udf_function;fillColor=#0078D7;', + s2 + 'mscae.enterprise.udf_function;fillColor=#0078D7;', r * 0.47, r * 0.5, '', 'UDF Function', null, null, this.getTagsForStencil(gn, 'udf function', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.unhealthy;fillColor=#0078D7;', + s2 + 'mscae.enterprise.unhealthy;fillColor=#0078D7;', r * 0.5, r * 0.41, '', 'Unhealthy', null, null, this.getTagsForStencil(gn, 'unhealthy', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.unhealthy;fillColor=#00188D;', + s + 'mscae.enterprise.unhealthy', r * 0.5, r * 0.41, '', 'Unhealthy', null, null, this.getTagsForStencil(gn, 'unhealthy', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.usb;fillColor=#00188D;', + s + 'mscae.enterprise.usb', r * 0.5, r * 0.23, '', 'USB', null, null, this.getTagsForStencil(gn, 'usb', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.user;fillColor=#00188D;', + s + 'azure.user', r * 0.47, r * 0.5, '', 'User (enterprise)', null, null, this.getTagsForStencil(gn, 'user', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.user_permissions;fillColor=#0078D7;', + s2 + 'mscae.enterprise.user_permissions;fillColor=#0078D7;', r * 0.47, r * 0.5, '', 'User permissions', null, null, this.getTagsForStencil(gn, 'user permissions', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.video;fillColor=#00188D;', + s + 'mscae.general.video', r * 0.49, r * 0.5, '', 'Video', null, null, this.getTagsForStencil(gn, 'video', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.virtual_machine_feature;fillColor=#00188D;', + s + 'azure.virtual_machine_feature', r * 0.5, r * 0.45, '', 'Virtual Machine', null, null, this.getTagsForStencil(gn, 'virtual machine', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.web_server;fillColor=#00188D;', + s + 'mscae.enterprise.web_server', r * 0.38, r * 0.5, '', 'Web Server', null, null, this.getTagsForStencil(gn, 'web server', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.website_generic;fillColor=#7D7D7D;', + s2 + 'mscae.enterprise.website_generic;fillColor=#7D7D7D;', r * 0.5, r * 0.44, '', 'Website (generic)', null, null, this.getTagsForStencil(gn, 'website generic', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.windows_server;fillColor=#00188D;', + s + 'mscae.enterprise.windows_server', r * 0.39, r * 0.5, '', 'Windows Server', null, null, this.getTagsForStencil(gn, 'windows server', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.wireless_connection;fillColor=#00188D;', + s + 'mscae.enterprise.wireless_connection', r * 0.42, r * 0.5, '', 'Wireless Connection', null, null, this.getTagsForStencil(gn, 'wireless connection', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.workstation_client;fillColor=#00188D;', + s + 'mscae.enterprise.workstation_client', r * 0.5, r * 0.5, '', 'Workstation Client', null, null, this.getTagsForStencil(gn, 'workstation client', dt).join(' ')), this.createVertexTemplateEntry( - 'aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.xml_web_service;fillColor=#00188D;', - r * 0.5, r * 0.5, '', 'XML Web Service', null, null, this.getTagsForStencil(gn, 'xml web service', dt).join(' ')), + s + 'mscae.enterprise.xml_web_service', + r * 0.5, r * 0.5, '', 'XML Web Service', null, null, this.getTagsForStencil(gn, 'xml web service', dt).join(' ')) ]; this.addPalette('mscaeEnterpriseFlat', 'CAE / Enterprise (flat)', false, mxUtils.bind(this, function(content) @@ -386,367 +390,107 @@ })); }; - Sidebar.prototype.addMSCAECloudPalette = function() + Sidebar.prototype.addMSCAEIntuneFlatPalette = function(gn, r, sb) { - var s = 'shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.'; - var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.'; - - // Space savers - var sb = this; - var gn = 'mxgraph.mscae.cloud'; - var dt = 'ms microsoft cloud enterprise '; + var s = 'pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.intune.'; + var s2 = 'pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.'; + var dt = 'ms microsoft cloud enterprise intune'; var fns = [ - this.createVertexTemplateEntry(s2 + 'active_directory_b2b;fillColor=#0079D6;pointerEvents=1;', - 50, 50, '', 'Active Directory B2B', null, null, this.getTagsForStencil(gn, 'active directory b2b', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'active_directory_b2c;fillColor=#0079D6;pointerEvents=1;', - 50, 50, '', 'Active Directory B2C', null, null, this.getTagsForStencil(gn, 'active directory b2c', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'active_directory_domain_services;fillColor=#0079D6;pointerEvents=1;', - 50, 50, '', 'Active Directory Domain Services', null, null, this.getTagsForStencil(gn, 'active directory domain services', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'active_directory_health_monitoring;fillColor=#0079D6;pointerEvents=1;', - 50, 49, '', 'Active Directory Health Monitoring', null, null, this.getTagsForStencil(gn, 'active directory health monitoring', dt).join(' ')), - this.createVertexTemplateEntry(s + 'access_control;pointerEvents=1;', - 50, 50, '', 'Access Control', null, null, this.getTagsForStencil(gn, 'access control', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'advisor;fillColor=#0079D6;', - 50, 50, '', 'Advisor', null, null, this.getTagsForStencil(gn, 'advisor', dt).join(' ')), - this.createVertexTemplateEntry('shape=rect;fillColor=none;strokeColor=#0000FF;dashed=1;fontSize=14;align=center;html=1;verticalAlign=top;fontColor=#0078D7;whiteSpace=wrap;', - 100, 100, 'Affinity group', 'Affinity Group', null, null, this.getTagsForStencil(gn, 'affinity group', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'analysis_service;fillColor=#0079D6;pointerEvents=1;', - 50, 40, '', 'Analysis Service', null, null, this.getTagsForStencil(gn, 'analysis service', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'api_app;fillColor=#0079D6;pointerEvents=1;', - 45, 50, '', 'API App', null, null, this.getTagsForStencil(gn, 'api app', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'api_management;fillColor=#0079D6;pointerEvents=1;', - 50, 45, '', 'API Management', null, null, this.getTagsForStencil(gn, 'api management', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'application_gateway;fillColor=#0079D6;pointerEvents=1;', - 50, 50, '', 'Application Gateway', null, null, this.getTagsForStencil(gn, 'application gateway', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'app_service;fillColor=#0079D6;pointerEvents=1;', - 50, 50, '', 'App Service', null, null, this.getTagsForStencil(gn, 'app application service', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'application_insights;fillColor=#0079D6;', - 32, 50, '', 'Application Insights', null, null, this.getTagsForStencil(gn, 'application insights', dt).join(' ')), - this.createVertexTemplateEntry(s + 'autoscale;', - 50, 30, '', 'Autoscaling', null, null, this.getTagsForStencil(gn, 'autoscaling autoscale', dt).join(' ')), - this.createVertexTemplateEntry('shape=rect;fillColor=none;strokeColor=#0000FF;dashed=1;fontSize=14;align=center;html=1;verticalAlign=top;fontColor=#0078D7;whiteSpace=wrap;', - 100, 100, 'Availability set', 'Availability Set', null, null, this.getTagsForStencil(gn, 'availability set', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'virtual_machines_availability_set;fillColor=#0079D6;pointerEvents=1;', - 50, 50, '', 'Availability Set', null, null, this.getTagsForStencil(gn, 'virtual machines availability set', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'azure;fillColor=#0079D6;pointerEvents=1;', - 50, 32, '', 'Azure', null, null, this.getTagsForStencil(gn, 'azure', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'azure_automatic_load_balancer;fillColor=#0079D6;pointerEvents=1;', - 50, 33, '', 'Azure Automatic Load Balancer', null, null, this.getTagsForStencil(gn, 'automatic load balancer', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'active_directory;fillColor=#0079D6;pointerEvents=1;', - 47, 50, '', 'Azure Active Directory', null, null, this.getTagsForStencil(gn, 'azure active directory', dt).join(' ')), - this.createVertexTemplateEntry(s + 'azure_alert;', - 50, 42, '', 'Azure Alert', null, null, this.getTagsForStencil(gn, 'azure alert', dt).join(' ')), - this.createVertexTemplateEntry(s + 'automation;pointerEvents=1;', - 50, 45, '', 'Azure Automation', null, null, this.getTagsForStencil(gn, 'azure automation', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'azure_batch;fillColor=#0079D6;pointerEvents=1;', - 50, 43, '', 'Azure Batch', null, null, this.getTagsForStencil(gn, 'batch', dt).join(' ')), - this.createVertexTemplateEntry(s + 'azure_cache;', - 45, 50, '', 'Azure Cache including Redis', null, null, this.getTagsForStencil(gn, 'azure cache including redis', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'azure_files_service;fillColor=#0079D6;', - 50, 43, '', 'Azure Files Service', null, null, this.getTagsForStencil(gn, 'files service', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'azure_load_balancer_feature;fillColor=#0079D6;pointerEvents=1;', - 50, 50, '', 'Azure Load Balancer (feature)', null, null, this.getTagsForStencil(gn, 'load balancer feature', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'azure_logo;fillColor=#0079D6;pointerEvents=1;', - 50, 50, '', 'Azure Logo', null, null, this.getTagsForStencil(gn, 'azure logo', dt).join(' ')), - this.createVertexTemplateEntry(s + 'azure_marketplace;', - 40, 50, '', 'Azure Marketplace', null, null, this.getTagsForStencil(gn, 'azure marketplace', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'azure_rights_management_rms;fillColor=#0079D6;', - 40, 50, '', 'Azure Rights Management (RMS)', null, null, this.getTagsForStencil(gn, 'rights management rms', dt).join(' ')), - this.createVertexTemplateEntry(s + 'azure_sdk;pointerEvents=1;', - 50, 47, '', 'Azure SDK', null, null, this.getTagsForStencil(gn, 'azure sdk software development kit', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'azure_search;fillColor=#0079D6;', - 50, 35, '', 'Azure Search', null, null, this.getTagsForStencil(gn, 'search', dt).join(' ')), - this.createVertexTemplateEntry(s + 'sql_database_sql_azure;pointerEvents=1;', - 47, 50, '', 'Azure SQL Database', null, null, this.getTagsForStencil(gn, 'azure sql database', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'azure_storage;fillColor=#0079D6;pointerEvents=1;', - 50, 43, '', 'Azure Storage', null, null, this.getTagsForStencil(gn, 'storage', dt).join(' ')), - this.createVertexTemplateEntry(s + 'azure_subscription;', - 50, 35, '', 'Azure Subscription', null, null, this.getTagsForStencil(gn, 'azure subscription', dt).join(' ')), - this.createVertexTemplateEntry(s + 'hyper_v_recovery_manager;', - 50, 45, '', 'Backup', null, null, this.getTagsForStencil(gn, 'backup', dt).join(' ')), - this.createVertexTemplateEntry(s + 'backup_service;', - 50, 45, '', 'Backup Agent', null, null, this.getTagsForStencil(gn, 'backup agent', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'batch;fillColor=#0079D6;pointerEvents=1;', - 49, 46, '', 'Batch', null, null, this.getTagsForStencil(gn, 'batch', dt).join(' ')), - this.createVertexTemplateEntry(s + 'bitbucket_code_source;', - 42, 50, '', 'Bitbucket Code Source', null, null, this.getTagsForStencil(gn, 'bitbucket code source', dt).join(' ')), - this.createVertexTemplateEntry(s + 'biztalk_services;pointerEvents=1;', - 50, 50, '', 'Biztalk Services', null, null, this.getTagsForStencil(gn, 'biztalk services', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'blockchain;fillColor=#0079D6;', - 50, 38, '', 'Blockchain', null, null, this.getTagsForStencil(gn, 'blockchain', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'bot_services;fillColor=#0079D6;', - 48, 48, '', 'Bot Services', null, null, this.getTagsForStencil(gn, 'bot services', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'building_block;fillColor=#0079D6;pointerEvents=1;', - 50, 44, '', 'Building Block', null, null, this.getTagsForStencil(gn, 'building block', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'c_series;fillColor=#0079D6;pointerEvents=1;', - 49, 50, '', 'C-Series', null, null, this.getTagsForStencil(gn, 'c series', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'central;fillColor=#0079D6;pointerEvents=1;', - 44, 50, '', 'Central', null, null, this.getTagsForStencil(gn, 'central', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'cloud_office_365;fillColor=#DF3C01;', - 50, 30, '', 'Cloud Office 365', null, null, this.getTagsForStencil(gn, 'cloud office 365', dt).join(' ')), - this.createVertexTemplateEntry(s + 'cloud_service;pointerEvents=1;', - 50, 40, '', 'Cloud Service', null, null, this.getTagsForStencil(gn, 'cloud service', dt).join(' ')), - this.createVertexTemplateEntry(s + 'codeplex_code_source;pointerEvents=1;', - 50, 37, '', 'CodePlex', null, null, this.getTagsForStencil(gn, 'codeplex', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'cognitive_services;fillColor=#0079D6;pointerEvents=1;', - 50, 30, '', 'Cognitive Services', null, null, this.getTagsForStencil(gn, 'cognitive services', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'container_registry;fillColor=#0079D6;pointerEvents=1;', - 50, 43, '', 'Container Registry', null, null, this.getTagsForStencil(gn, 'container registry', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'container_service;fillColor=#0079D6;pointerEvents=1;', - 50, 36, '', 'Container Service', null, null, this.getTagsForStencil(gn, 'container service', dt).join(' ')), - this.createVertexTemplateEntry(s + 'content_delivery_network;', - 50, 32, '', 'Content Delivery Network', null, null, this.getTagsForStencil(gn, 'content delivery network', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'cortona_management_suite;fillColor=#0079D6;pointerEvents=1;', - 50, 50, '', 'Cortona Analytics', null, null, this.getTagsForStencil(gn, 'cortona management suite', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'cosmos_db;fillColor=#0079D6;pointerEvents=1;', - 50, 50, '', 'Cosmos DB', null, null, this.getTagsForStencil(gn, 'cosmos db database', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'customer_insights;fillColor=#0079D6;pointerEvents=1;', - 48, 50, '', 'Customer Insights', null, null, this.getTagsForStencil(gn, 'customer insights', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'data_bricks;fillColor=#0079D6;pointerEvents=1;', - 49, 50, '', 'Data Bricks', null, null, this.getTagsForStencil(gn, 'data bricks', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'data_catalog;fillColor=#0079D6;pointerEvents=1;', - 32, 37, '', 'Data Catalog', null, null, this.getTagsForStencil(gn, 'data catalog', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'data_factory;fillColor=#0079D6;pointerEvents=1;', - 50, 50, '', 'Data Factory', null, null, this.getTagsForStencil(gn, 'data factory', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'data_lake;fillColor=#0079D6;', - 30, 50, '', 'Data Lake', null, null, this.getTagsForStencil(gn, 'data lake', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'data_lake_analytics;fillColor=#0079D6;pointerEvents=1;', - 50, 50, '', 'Data Lake Analytics', null, null, this.getTagsForStencil(gn, 'data lake analytics', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'data_lake_store;fillColor=#0079D6;', - 50, 39, '', 'Data Lake Store', null, null, this.getTagsForStencil(gn, 'data lake store', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'data_warehouse;fillColor=#0079D6;pointerEvents=1;', - 72, 70, '', 'Data Warehouse', null, null, this.getTagsForStencil(gn, 'data warehouse', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'devtest_labs;fillColor=#0079D6;pointerEvents=1;', - 50, 49, '', 'DevTest Labs', null, null, this.getTagsForStencil(gn, 'devtest labs', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'azure_dns;fillColor=#0079D6;pointerEvents=1;', - 50, 50, '', 'DNS', null, null, this.getTagsForStencil(gn, 'dns', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'docdb_account;fillColor=#0079D6;pointerEvents=1;', - 47, 50, '', 'DocDB Account', null, null, this.getTagsForStencil(gn, 'docdb account doc database db document', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'docdb_collections;fillColor=#0079D6;pointerEvents=1;', - 44, 50, '', 'DocDB Collections', null, null, this.getTagsForStencil(gn, 'docdb collections doc db database document', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'document;fillColor=#0079D6;pointerEvents=1;', - 43, 50, '', 'Document', null, null, this.getTagsForStencil(gn, 'document', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'documentdb;fillColor=#0079D6;pointerEvents=1;', - 38, 50, '', 'DocumentDB', null, null, this.getTagsForStencil(gn, 'documentdb document db database', dt).join(' ')), - this.createVertexTemplateEntry(s + 'code_file;fillColor=#0079D6;pointerEvents=1;', - 48, 50, '', 'DocumentDB Document', null, null, this.getTagsForStencil(gn, 'documentdb document db database', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'dps;fillColor=#0079D6;pointerEvents=1;', - 48, 50, '', 'DPS', null, null, this.getTagsForStencil(gn, 'dps', dt).join(' ')), - this.createVertexTemplateEntry(s + 'dropbox_code_source;pointerEvents=1;', - 50, 47, '', 'Dropbox Code Source', null, null, this.getTagsForStencil(gn, 'dropbox code source', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'event_grid;fillColor=#0079D6;pointerEvents=1;', - 50, 50, '', 'Event Grid', null, null, this.getTagsForStencil(gn, 'event grid', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'event_hubs;fillColor=#0079D6;pointerEvents=1;', - 49, 50, '', 'Event Hubs', null, null, this.getTagsForStencil(gn, 'event_hubs', dt).join(' ')), - this.createVertexTemplateEntry(s + 'express_route;pointerEvents=1;', - 50, 30, '', 'Express Route', null, null, this.getTagsForStencil(gn, 'express route', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'functions;fillColor=#0079D6;pointerEvents=1;', - 50, 46, '', 'Functions', null, null, this.getTagsForStencil(gn, 'functions', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'gateway;fillColor=#0079D6;pointerEvents=1;', - 44, 50, '', 'Gateway', null, null, this.getTagsForStencil(gn, 'gateway', dt).join(' ')), - this.createVertexTemplateEntry(s + 'git_repository;', - 50, 50, '', 'Git Repository', null, null, this.getTagsForStencil(gn, 'git repository', dt).join(' ')), - this.createVertexTemplateEntry(s + 'github_code;pointerEvents=1;', - 50, 50, '', 'GitHub', null, null, this.getTagsForStencil(gn, 'github code', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'hdinsight;fillColor=#0079D6;pointerEvents=1;', - 50, 36, '', 'HDInsight', null, null, this.getTagsForStencil(gn, 'hdisight hd insight', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'hockeyapp;fillColor=#0079D6;pointerEvents=1;', - 50, 29, '', 'HockeyApp', null, null, this.getTagsForStencil(gn, 'hockeyapp', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'hybrid_connection_manager;fillColor=#0079D6;pointerEvents=1;', - 50, 35, '', 'Hybrid Connection Manager', null, null, this.getTagsForStencil(gn, 'hybrid connection manager', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'hybrid_connections;fillColor=#0079D6;pointerEvents=1;', - 47, 50, '', 'Hybrid Connections', null, null, this.getTagsForStencil(gn, 'hybrid connections', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'iot_edge;fillColor=#0079D6;pointerEvents=1;', - 50, 50, '', 'IoT Edge', null, null, this.getTagsForStencil(gn, 'iot edge internet of things', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'iot;fillColor=#0079D6;pointerEvents=1;', - 50, 50, '', 'IoT', null, null, this.getTagsForStencil(gn, 'iot internet of things', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'key_vault;fillColor=#0079D6;pointerEvents=1;', - 49, 50, '', 'Key Vault', null, null, this.getTagsForStencil(gn, 'key vault', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'logic_app;fillColor=#0079D6;pointerEvents=1;', - 50, 50, '', 'Logic App', null, null, this.getTagsForStencil(gn, 'logic app application', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'logic_apps;fillColor=#0079D6;pointerEvents=1;', - 50, 39, '', 'Logic Apps', null, null, this.getTagsForStencil(gn, 'logic apps applications', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'machine_learning2;fillColor=#0079D6;pointerEvents=1;', - 47, 50, '', 'Machine Learning', null, null, this.getTagsForStencil(gn, 'machine learning', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'machine_learning_service_plans;fillColor=#0079D6;pointerEvents=1;', - 47, 50, '', 'Machine Learning - Service Plans', null, null, this.getTagsForStencil(gn, 'machine learning service plans', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'machine_learning_web_services;fillColor=#0079D6;pointerEvents=1;', - 50, 50, '', 'Machine Learning - Web Services', null, null, this.getTagsForStencil(gn, 'machine learning web services', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'machine_learning_work_spaces;fillColor=#0079D6;pointerEvents=1;', - 50, 50, '', 'Machine Learning - Work Spaces', null, null, this.getTagsForStencil(gn, 'machine learning work spaces', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'managed_applications;fillColor=#0079D6;pointerEvents=1;', - 44, 50, '', 'Managed Applications', null, null, this.getTagsForStencil(gn, 'managed applications', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'managed_discs;fillColor=#0079D6;pointerEvents=1;', - 46, 50, '', 'Managed Discs', null, null, this.getTagsForStencil(gn, 'managed discs', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'management_portal;fillColor=#0079D6;pointerEvents=1;', - 50, 42, '', 'Management Portal', null, null, this.getTagsForStencil(gn, 'management portal', dt).join(' ')), - this.createVertexTemplateEntry(s + 'media_service;pointerEvents=1;', - 45, 50, '', 'Media Services', null, null, this.getTagsForStencil(gn, 'media services', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'microsoft_account;fillColor=#0079D6;pointerEvents=1;', - 50, 50, '', 'MS Account', null, null, this.getTagsForStencil(gn, 'microsoft account', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'microsoft_azure;fillColor=#000000;pointerEvents=1;', - 50, 32, '', 'MS Azure', null, null, this.getTagsForStencil(gn, 'microsoft', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'mobile_app;fillColor=#0079D6;pointerEvents=1;', - 30, 50, '', 'Mobile App', null, null, this.getTagsForStencil(gn, 'mobile app application', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'mobile_engagement;fillColor=#0079D6;pointerEvents=1;', - 30, 50, '', 'Mobile Engagement', null, null, this.getTagsForStencil(gn, 'mobile engagement', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'monitor;fillColor=#0079D6;pointerEvents=1;', - 50, 50, '', 'Monitor', null, null, this.getTagsForStencil(gn, 'monitor', dt).join(' ')), - this.createVertexTemplateEntry(s + 'multi_factor_authentication;pointerEvents=1;', - 25, 50, '', 'Multi-Factor Authentication', null, null, this.getTagsForStencil(gn, 'multi factor authentication', dt).join(' ')), - this.createVertexTemplateEntry(s + 'mysql_database;pointerEvents=1;', - 37, 50, '', 'MySQL Database', null, null, this.getTagsForStencil(gn, 'mysql database', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'network_watcher;fillColor=#0079D6;pointerEvents=1;', - 50, 50, '', 'Network Watcher', null, null, this.getTagsForStencil(gn, 'network watcher', dt).join(' ')), - this.createVertexTemplateEntry(s + 'notification_hub;pointerEvents=1;', - 50, 50, '', 'Notification Hub', null, null, this.getTagsForStencil(gn, 'notification hub', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'nsg;fillColor=#0079D6;pointerEvents=1;', - 36, 50, '', 'NSG', null, null, this.getTagsForStencil(gn, 'nsg', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'office_365;fillColor=#DF3C01;pointerEvents=1;', - 42, 50, '', 'Office 365', null, null, this.getTagsForStencil(gn, 'office 365', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'office_365_subscription;fillColor=#DF3C01;pointerEvents=1;', - 50, 34, '', 'Office 365 Subscription', null, null, this.getTagsForStencil(gn, 'office 365 subscription', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'oms_log_analytics;fillColor=#0079D6;pointerEvents=1;', - 50, 50, '', 'OMS Log Analytics', null, null, this.getTagsForStencil(gn, 'oms log analytics', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'operational_insights;fillColor=#0079D6;pointerEvents=1;', - 50, 50, '', 'Operational Insights', null, null, this.getTagsForStencil(gn, 'operational insights', dt).join(' ')), - this.createVertexTemplateEntry(s + 'operating_system_image;pointerEvents=1;', - 50, 50, '', 'OS Image', null, null, this.getTagsForStencil(gn, 'os operating system image', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'power_bi_embedded;fillColor=#000000;pointerEvents=1;', - 47, 50, '', 'Power BI Embedded', null, null, this.getTagsForStencil(gn, 'power bi embedded', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'recovery_vault;fillColor=#0079D6;pointerEvents=1;', - 50, 50, '', 'Recovery Vault', null, null, this.getTagsForStencil(gn, 'recovery vault', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'remoteapp;fillColor=#0079D6;pointerEvents=1;', - 50, 50, '', 'RemoteApp', null, null, this.getTagsForStencil(gn, 'remoteapp remote app', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'resource_group;fillColor=#0079D6;pointerEvents=1;', - 50, 41, '', 'Resource Group', null, null, this.getTagsForStencil(gn, 'resource group', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'route_filters;fillColor=#0079D6;pointerEvents=1;', - 50, 42, '', 'Route Filters', null, null, this.getTagsForStencil(gn, 'route filters', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'runbooks;fillColor=#0079D6;', - 46, 50, '', 'Runbooks', null, null, this.getTagsForStencil(gn, 'runbooks', dt).join(' ')), - this.createVertexTemplateEntry(s + 'scheduler;pointerEvents=1;', - 40, 50, '', 'Scheduler', null, null, this.getTagsForStencil(gn, 'scheduler', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'security_center;fillColor=#0079D6;pointerEvents=1;', - 37, 50, '', 'Security Center', null, null, this.getTagsForStencil(gn, 'security center', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'service_bus2;fillColor=#0079D6;pointerEvents=1;', - 50, 50, '', 'Service Bus', null, null, this.getTagsForStencil(gn, 'service bus', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'service_bus_relay2;fillColor=#0079D6;pointerEvents=1;', - 50, 50, '', 'Service Bus Relay', null, null, this.getTagsForStencil(gn, 'service bus relay', dt).join(' ')), - this.createVertexTemplateEntry(s + 'service_bus_topics_and_subscriptions;pointerEvents=1;', - 45, 50, '', 'Service Bus Topic', null, null, this.getTagsForStencil(gn, 'service bus topic', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'service_endpoint;fillColor=#0079D6;', - 50, 9, '', 'Service Endpoint', null, null, this.getTagsForStencil(gn, 'service endpoint', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'service_endpoint2;fillColor=#0079D6;', - 32, 12, '', 'Service Endpoint', null, null, this.getTagsForStencil(gn, 'service endpoint', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'service_fabric;fillColor=#0079D6;pointerEvents=1;', - 50, 50, '', 'Service Fabric', null, null, this.getTagsForStencil(gn, 'service fabric', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'site_recovery;fillColor=#0079D6;', - 37, 31, '', 'Site Recovery', null, null, this.getTagsForStencil(gn, 'site recovery', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'snapshot;fillColor=#0079D6;pointerEvents=1;', - 65, 55, '', 'Snapshot', null, null, this.getTagsForStencil(gn, 'snapshot', dt).join(' ')), - this.createVertexTemplateEntry(s + 'sql_datasync;pointerEvents=1;', - 37, 50, '', 'SQL DataSync', null, null, this.getTagsForStencil(gn, 'sql datasync', dt).join(' ')), - this.createVertexTemplateEntry(s + 'sql_database;pointerEvents=1;', - 37, 50, '', 'SQL Database', null, null, this.getTagsForStencil(gn, 'sql database', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'sql_database_premium;fillColor=#0079D6;pointerEvents=1;', - 28, 38, '', 'SQL Database Premium', null, null, this.getTagsForStencil(gn, 'sql database premium', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'sql_datawarehouse;fillColor=#0079D6;pointerEvents=1;', - 50, 49, '', 'SQL DataWarehouse', null, null, this.getTagsForStencil(gn, 'sql datawarehouse', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'sql_elastic_database_pools;fillColor=#0079D6;pointerEvents=1;', - 50, 50, '', 'SQL Elastic Database Pools', null, null, this.getTagsForStencil(gn, 'sql elastic database pools', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'sql_stretch_database;fillColor=#0079D6;', - 50, 37, '', 'SQL Stretch Database', null, null, this.getTagsForStencil(gn, 'sql stretch database', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'stack;fillColor=#0079D6;pointerEvents=1;', - 50, 50, '', 'Stack', null, null, this.getTagsForStencil(gn, 'stack', dt).join(' ')), - this.createVertexTemplateEntry(s + 'startup_task;pointerEvents=1;', - 47, 50, '', 'Startup Task', null, null, this.getTagsForStencil(gn, 'startup task', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'storage;fillColor=#0079D6;pointerEvents=1;', - 50, 43, '', 'Storage', null, null, this.getTagsForStencil(gn, 'storage', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'storage_cs;fillColor=#0079D6;pointerEvents=1;', - 50, 45, '', 'Storage cs', null, null, this.getTagsForStencil(gn, 'storage cs', dt).join(' ')), - this.createVertexTemplateEntry(s + 'storage_blob;pointerEvents=1;', - 50, 45, '', 'Storage Blob', null, null, this.getTagsForStencil(gn, 'storage blob', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'storage_files;fillColor=#0079D6;pointerEvents=1;', - 50, 43, '', 'Storage Files', null, null, this.getTagsForStencil(gn, 'storage files', dt).join(' ')), - this.createVertexTemplateEntry(s + 'storage_queue;pointerEvents=1;', - 50, 45, '', 'Storage Queue', null, null, this.getTagsForStencil(gn, 'storage queue', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'storage_sync_services;fillColor=#0079D6;pointerEvents=1;', - 50, 50, '', 'Storage Sync Services', null, null, this.getTagsForStencil(gn, 'storage sync services', dt).join(' ')), - this.createVertexTemplateEntry(s + 'storage_table;pointerEvents=1;', - 50, 45, '', 'Storage Table', null, null, this.getTagsForStencil(gn, 'storage table', dt).join(' ')), - this.createVertexTemplateEntry(s + 'storsimple;pointerEvents=1;', - 50, 45, '', 'StorSimple', null, null, this.getTagsForStencil(gn, 'storsimple', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'stream_analytics;fillColor=#0079D6;pointerEvents=1;', - 50, 39, '', 'Stream Analytics', null, null, this.getTagsForStencil(gn, 'stream analytics', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'tags;fillColor=#0079D6;', - 50, 50, '', 'Tags', null, null, this.getTagsForStencil(gn, 'tags', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'time_series_insights;fillColor=#0079D6;', - 50, 50, '', 'Time Series Insights', null, null, this.getTagsForStencil(gn, 'time series insights', dt).join(' ')), - this.createVertexTemplateEntry(s + 'traffic_manager;pointerEvents=1;', - 50, 50, '', 'Traffic Manager', null, null, this.getTagsForStencil(gn, 'traffic manager', dt).join(' ')), - this.createVertexTemplateEntry(s + 'unidentified_code_object;pointerEvents=1;', - 50, 41, '', 'Unidentified Feature Object', null, null, this.getTagsForStencil(gn, 'unidentified feature object', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'vhd;fillColor=#0079D6;pointerEvents=1;', - 40, 50, '', 'VHD', null, null, this.getTagsForStencil(gn, 'vhd', dt).join(' ')), - this.createVertexTemplateEntry(s + 'vhd_data_disk;pointerEvents=1;', - 37, 50, '', 'VHD Data Disk', null, null, this.getTagsForStencil(gn, 'vhd data disk', dt).join(' ')), - this.createVertexTemplateEntry(s + 'virtual_machine;pointerEvents=1;', - 50, 40, '', 'Virtual Machine', null, null, this.getTagsForStencil(gn, 'virtual machine', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'virtual_machine_container;fillColor=#0079D6;pointerEvents=1;', - 50, 44, '', 'Virtual Machine Container', null, null, this.getTagsForStencil(gn, 'virtual machine container', dt).join(' ')), - this.createVertexTemplateEntry(s + 'virtual_machine_feature;pointerEvents=1;', - 50, 45, '', 'Virtual Machine Feature', null, null, this.getTagsForStencil(gn, 'virtual machine feature', dt).join(' ')), - this.createVertexTemplateEntry(s + 'virtual_network;pointerEvents=1;', - 50, 27, '', 'Virtual Network', null, null, this.getTagsForStencil(gn, 'virtual network', dt).join(' ')), - this.createVertexTemplateEntry('shape=rect;dashed=1;strokeColor=#0079D6;fillColor=none;fontSize=14;fontColor=#0078D7;align=center;html=1;dashPattern=1 4;', - 150, 100, '', 'Virtual Network Box', null, null, this.getTagsForStencil(gn, 'virtual network box', dt).join(' ')), - this.createVertexTemplateEntry('shape=rect;dashed=1;strokeColor=#0079D6;fillColor=none;fontSize=14;fontColor=#0078D7;align=center;html=1;dashPattern=1 4;', - 150, 100, '', 'Smart Virtual Network Box', null, null, this.getTagsForStencil(gn, 'virtual network box', dt).join(' ')), - - this.addEntry(dt + 'smart virtual network box', function() - { - var bg = new mxCell('', new mxGeometry(0, 0, 150, 100), 'shape=rect;dashed=1;strokeColor=#0079D6;fillColor=none;fontSize=14;fontColor=#0078D7;align=center;html=1;dashPattern=1 4;'); - bg.vertex = true; - var part1 = new mxCell('Virtual Network', new mxGeometry(1, 1, 30, 18), 'shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#0079D6;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;shape=mxgraph.azure.virtual_network;fontSize=12;fontColor=#0078D7;align=right;'); - part1.geometry.relative = true; - part1.geometry.offset = new mxPoint(-20, -8); - part1.vertex = true; - bg.insert(part1); - - return sb.createVertexTemplateFromCells([bg], bg.geometry.width + 10, bg.geometry.height + 10, 'Smart Virtual Network Box'); - }), - - this.createVertexTemplateEntry(s + 'visual_studio_online;', - 50, 37, '', 'Visual Studio Team Services', null, null, this.getTagsForStencil(gn, 'visual studio online', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'vm_scale_set;fillColor=#0079D6;pointerEvents=1;', - 50, 50, '', 'VM Scale Set', null, null, this.getTagsForStencil(gn, 'vm virtual machine scale set', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'vpn_gateway;fillColor=#0079D6;pointerEvents=1;', - 32, 50, '', 'VPN Gateway', null, null, this.getTagsForStencil(gn, 'vpn gateway virtual private network', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'vpn_gateway2;fillColor=#0079D6;pointerEvents=1;', - 45, 50, '', 'VPN Gateway', null, null, this.getTagsForStencil(gn, 'vpn gateway virtual private network', dt).join(' ')), - this.createVertexTemplateEntry(s + 'azure_website;pointerEvents=1;', - 50, 50, '', 'WebApp', null, null, this.getTagsForStencil(gn, 'web app application', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'webhooks;fillColor=#0079D6;pointerEvents=1;', - 50, 46, '', 'Webhooks', null, null, this.getTagsForStencil(gn, 'webhooks', dt).join(' ')), - this.createVertexTemplateEntry(s + 'web_role;pointerEvents=1;', - 50, 40, '', 'Web Role', null, null, this.getTagsForStencil(gn, 'web role', dt).join(' ')), - this.createVertexTemplateEntry(s + 'web_roles;pointerEvents=1;', - 50, 41, '', 'Web Roles', null, null, this.getTagsForStencil(gn, 'web roles', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'webjobs;fillColor=#0079D6;pointerEvents=1;', - 50, 49, '', 'WebJobs', null, null, this.getTagsForStencil(gn, 'webjobs web jobs', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'work_account;fillColor=#0079D6;pointerEvents=1;', - 50, 50, '', 'Work Account', null, null, this.getTagsForStencil(gn, 'work account', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'worker_pools;fillColor=#0079D6;pointerEvents=1;', - 50, 50, '', 'Worker Pools', null, null, this.getTagsForStencil(gn, 'worker pools', dt).join(' ')), - this.createVertexTemplateEntry(s + 'worker_role;pointerEvents=1;', - 50, 40, '', 'Worker Role', null, null, this.getTagsForStencil(gn, 'worker role', dt).join(' ')), - this.createVertexTemplateEntry(s + 'worker_roles;pointerEvents=1;', - 50, 41, '', 'Worker Roles', null, null, this.getTagsForStencil(gn, 'worker roles', dt).join(' ')) + this.createVertexTemplateEntry(s + 'account_portal', + r * 0.43, r * 0.5, '', 'Account Portal', null, null, this.getTagsForStencil(gn, 'account portal', dt).join(' ')), + this.createVertexTemplateEntry(s + 'administration', + r * 0.3, r * 0.5, '', 'Administration', null, null, this.getTagsForStencil(gn, 'administration', dt).join(' ')), + this.createVertexTemplateEntry(s + 'alerts', + r * 0.5, r * 0.5, '', 'Alerts', null, null, this.getTagsForStencil(gn, 'alerts', dt).join(' ')), + this.createVertexTemplateEntry(s + 'apps', + r * 0.5, r * 0.5, '', 'Apps', null, null, this.getTagsForStencil(gn, 'apps', dt).join(' ')), + this.createVertexTemplateEntry(s + 'certificate', + r * 0.5, r * 0.49, '', 'Certificate (Compliance)', null, null, this.getTagsForStencil(gn, 'certificate compliance', dt).join(' ')), + this.createVertexTemplateEntry(s + 'client_software', + r * 0.5, r * 0.45, '', 'Client Software Deployment Wizard', null, null, this.getTagsForStencil(gn, 'client software deployment wizard', dt).join(' ')), + this.createVertexTemplateEntry(s + 'company_portal', + r * 0.5, r * 0.38, '', 'Company Portal', null, null, this.getTagsForStencil(gn, 'company portal', dt).join(' ')), + this.createVertexTemplateEntry(s + 'computer_inventory', + r * 0.5, r * 0.45, '', 'Computer Inventory', null, null, this.getTagsForStencil(gn, 'computer inventory', dt).join(' ')), + this.createVertexTemplateEntry(s + 'conditional_access_exchange', + r * 0.49, r * 0.5, '', 'Conditional Access (Exchange)', null, null, this.getTagsForStencil(gn, 'conditional access exchange', dt).join(' ')), + this.createVertexTemplateEntry(s + 'conditional_access_sharepoint', + r * 0.44, r * 0.5, '', 'Conditional Access (Sharepoint)', null, null, this.getTagsForStencil(gn, 'conditional access sharepoint', dt).join(' ')), + this.createVertexTemplateEntry(s + 'connector', + r * 0.5, r * 0.17, '', 'Connector', null, null, this.getTagsForStencil(gn, 'connector', dt).join(' ')), + this.createVertexTemplateEntry(s + 'dashboard', + r * 0.5, r * 0.4, '', 'Dashboard', null, null, this.getTagsForStencil(gn, 'dashboard', dt).join(' ')), + this.createVertexTemplateEntry(s + 'data_migration_wizard', + r * 0.5, r * 0.48, '', 'Data Migration Wizard', null, null, this.getTagsForStencil(gn, 'data migration wizard', dt).join(' ')), + this.createVertexTemplateEntry(s + 'detected_software', + r * 0.5, r * 0.5, '', 'Detected Software', null, null, this.getTagsForStencil(gn, 'detected software', dt).join(' ')), + this.createVertexTemplateEntry(s + 'device_group', + r * 0.5, r * 0.5, '', 'Device Group', null, null, this.getTagsForStencil(gn, 'device group', dt).join(' ')), + this.createVertexTemplateEntry(s + 'device_health', + r * 0.5, r * 0.31, '', 'Device Health', null, null, this.getTagsForStencil(gn, 'device_health', dt).join(' ')), + this.createVertexTemplateEntry(s + 'device_history', + r * 0.45, r * 0.5, '', 'Device History', null, null, this.getTagsForStencil(gn, 'device history', dt).join(' ')), + this.createVertexTemplateEntry(s + 'device_os', + r * 0.49, r * 0.5, '', 'Device OS', null, null, this.getTagsForStencil(gn, 'device os operating system', dt).join(' ')), + this.createVertexTemplateEntry(s + 'end_protection', + r * 0.48, r * 0.5, '', 'End Protection', null, null, this.getTagsForStencil(gn, 'end protection', dt).join(' ')), + this.createVertexTemplateEntry(s + 'exchange_connector', + r * 0.5, r * 0.49, '', 'Exchange Connector', null, null, this.getTagsForStencil(gn, 'exchange connector', dt).join(' ')), + this.createVertexTemplateEntry(s + 'groups', + r * 0.5, r * 0.48, '', 'Groups', null, null, this.getTagsForStencil(gn, 'groups', dt).join(' ')), + this.createVertexTemplateEntry(s + 'hybrid', + r * 0.5, r * 0.39, '', 'Hybrid', null, null, this.getTagsForStencil(gn, 'hybrid', dt).join(' ')), + this.createVertexTemplateEntry(s + 'intune_certificate_profiles', + r * 0.4, r * 0.5, '', 'Intune Certificate Profiles', null, null, this.getTagsForStencil(gn, 'certificate profiles', dt).join(' ')), + this.createVertexTemplateEntry(s + 'intune_connector', + r * 0.82, r * 0.59, '', 'Intune Connector', null, null, this.getTagsForStencil(gn, 'intune connector', dt).join(' ')), + this.createVertexTemplateEntry(s + 'intune_email_profiles', + r * 0.5, r * 0.5, '', 'Intune Email Profiles', null, null, this.getTagsForStencil(gn, 'email profiles', dt).join(' ')), + this.createVertexTemplateEntry(s + 'intune_managed_app', + r * 0.5, r * 0.38, '', 'Intune Managed App', null, null, this.getTagsForStencil(gn, 'managed app application', dt).join(' ')), + this.createVertexTemplateEntry(s + 'intune_mobile_application_management', + r * 0.49, r * 0.5, '', 'Intune Mobile Application Management', null, null, this.getTagsForStencil(gn, 'mobile app aplication management', dt).join(' ')), + this.createVertexTemplateEntry(s + 'intune_vpn_profiles', + r * 0.42, r * 0.5, '', 'Intune VPN Profiles', null, null, this.getTagsForStencil(gn, 'vpn virtual private network profiles', dt).join(' ')), + this.createVertexTemplateEntry(s + 'intune_wifi_profiles', + r * 0.43, r * 0.5, '', 'Intune WiFi Profiles', null, null, this.getTagsForStencil(gn, 'wifi profiles', dt).join(' ')), + this.createVertexTemplateEntry(s + 'inventory_license', + r * 0.5, r * 0.48, '', 'Inventory License', null, null, this.getTagsForStencil(gn, 'inventory license', dt).join(' ')), + this.createVertexTemplateEntry(s + 'inventory_software', + r * 0.5, r * 0.49, '', 'Inventory Software', null, null, this.getTagsForStencil(gn, 'inventory software', dt).join(' ')), + this.createVertexTemplateEntry(s + 'license_group', + r * 0.5, r * 0.49, '', 'License Group', null, null, this.getTagsForStencil(gn, 'license group', dt).join(' ')), + this.createVertexTemplateEntry(s + 'license_installation', + r * 0.5, r * 0.43, '', 'License Installation', null, null, this.getTagsForStencil(gn, 'license installation', dt).join(' ')), + this.createVertexTemplateEntry(s + 'microsoft_intune', + r * 0.5, r * 0.4, '', 'MS Intune', null, null, this.getTagsForStencil(gn, 'microsoft', dt).join(' ')), + this.createVertexTemplateEntry(s + 'mobile_inventory', + r * 0.44, r * 0.5, '', 'Mobile Inventory', null, null, this.getTagsForStencil(gn, 'mobile inventory', dt).join(' ')), + this.createVertexTemplateEntry(s + 'noncompliant_apps', + r * 0.46, r * 0.5, '', 'Noncompliant Apps', null, null, this.getTagsForStencil(gn, 'noncompliant apps applications', dt).join(' ')), + this.createVertexTemplateEntry(s + 'policy', + r * 0.5, r * 0.5, '', 'Policy', null, null, this.getTagsForStencil(gn, 'policy', dt).join(' ')), + this.createVertexTemplateEntry(s + 'protection', + r * 0.48, r * 0.5, '', 'Protection', null, null, this.getTagsForStencil(gn, 'protection', dt).join(' ')), + this.createVertexTemplateEntry(s + 'reports', + r * 0.46, r * 0.5, '', 'Reports', null, null, this.getTagsForStencil(gn, 'reports', dt).join(' ')), + this.createVertexTemplateEntry(s2 + 'enterprise.settings', + r * 0.5, r * 0.5, '', 'Settings', null, null, this.getTagsForStencil(gn, 'settings', dt).join(' ')), + this.createVertexTemplateEntry(s + 'subscription_portal', + r * 0.5, r * 0.5, '', 'Subscription Portal', null, null, this.getTagsForStencil(gn, 'subscription portal', dt).join(' ')), + this.createVertexTemplateEntry(s + 'terms_and_conditions', + r * 0.37, r * 0.5, '', 'Terms and Conditions', null, null, this.getTagsForStencil(gn, 'terms and conditions', dt).join(' ')), + this.createVertexTemplateEntry(s + 'update', + r * 0.48, r * 0.5, '', 'Update', null, null, this.getTagsForStencil(gn, 'update', dt).join(' ')), + this.createVertexTemplateEntry(s + 'user_group', + r * 0.5, r * 0.37, '', 'User Group', null, null, this.getTagsForStencil(gn, 'user group', dt).join(' ')), + this.createVertexTemplateEntry(s + 'user_management', + r * 0.5, r * 0.46, '', 'User Management', null, null, this.getTagsForStencil(gn, 'user management', dt).join(' ')) ]; - this.addPalette('mscaeCloud', 'CAE / Cloud', false, mxUtils.bind(this, function(content) + this.addPalette('mscaeIntuneFlat', 'CAE / Intune (flat)', false, mxUtils.bind(this, function(content) { for (var i = 0; i < fns.length; i++) { @@ -754,91 +498,57 @@ } })); }; - - Sidebar.prototype.addMSCAEDeprecatedPalette = function() + + Sidebar.prototype.addMSCAEOMSFlatPalette = function(gn, r, sb) { - var s = 'pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.'; - var s2 = 'pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.deprecated.'; - var s3 = 'pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.'; - - // Space savers - var sb = this; - var gn = 'mxgraph.mscae.deprecated'; - var dt = 'ms microsoft cloud enterprise deprecated '; + var s = 'pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#505050;shape=mxgraph.mscae.oms.'; + var dt = 'ms microsoft cloud enterprise oms'; var fns = [ - this.createVertexTemplateEntry(s + 'access_control;fillColor=#0078D7;', - 50, 50, '', 'Access Control', null, null, this.getTagsForStencil(gn, 'access control', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'application;fillColor=#00188D;', - 50, 33, '', 'Application', null, null, this.getTagsForStencil(gn, 'application', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'application_gateway;fillColor=#0078D7;', - 50, 50, '', 'Application Gateway', null, null, this.getTagsForStencil(gn, 'application gateway', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'azure;fillColor=#00BCF2;', - 50, 31, '', 'Azure', null, null, this.getTagsForStencil(gn, 'azure', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'batch;fillColor=#00188D;', - 42, 41, '', 'Batch', null, null, this.getTagsForStencil(gn, 'batch', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'bot;fillColor=#00188D;', - 31, 31, '', 'Bot', null, null, this.getTagsForStencil(gn, 'bot', dt).join(' ')), - this.createVertexTemplateEntry(s + 'file;fillColor=#00BCF2;', - 47, 50, '', 'Cloud Service Definition File', null, null, this.getTagsForStencil(gn, 'cloud service definition file csdef', dt).join(' ')), - this.createVertexTemplateEntry(s + 'file;fillColor=#00188D;', - 47, 50, '', 'Cloud Service Definition File', null, null, this.getTagsForStencil(gn, 'cloud service definition file csdef', dt).join(' ')), - this.createVertexTemplateEntry(s3 + 'cloud.service_package;fillColor=#00BCF2;', - 44, 50, '', 'Cloud Service Package', null, null, this.getTagsForStencil(gn, 'cloud service package cspkg', dt).join(' ')), - this.createVertexTemplateEntry(s3 + 'cloud.service_package;fillColor=#00188D;', - 44, 50, '', 'Cloud Service Package', null, null, this.getTagsForStencil(gn, 'cloud service package cspkg', dt).join(' ')), - this.createVertexTemplateEntry(s3 + 'cloud.service_package;fillColor=#0078D7;', - 44, 50, '', 'Cloud Service Package', null, null, this.getTagsForStencil(gn, 'cloud service package cspkg', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'compute;fillColor=#00188D;', - 33, 24, '', 'Compute', null, null, this.getTagsForStencil(gn, 'compute', dt).join(' ')), - this.createVertexTemplateEntry(s + 'content_delivery_network;fillColor=#0078D7;', - 50, 32, '', 'Content Delivery Network', null, null, this.getTagsForStencil(gn, 'content delivery network', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'data_lake;fillColor=#0078D7;', - 39, 50, '', 'Data Lake', null, null, this.getTagsForStencil(gn, 'data lake', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'data_lake_analytics;fillColor=#0078D7;', - 50, 50, '', 'Data Lake Analytics', null, null, this.getTagsForStencil(gn, 'data lake analytics', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'data_lake_store;fillColor=#0078D7;', - 50, 50, '', 'Data Lake Store', null, null, this.getTagsForStencil(gn, 'data lake store', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'data_services;fillColor=#00188D;', - 27, 35, '', 'Data Services', null, null, this.getTagsForStencil(gn, 'data services', dt).join(' ')), - this.createVertexTemplateEntry(s + 'file_2;fillColor=#7F7F7F;', - 47, 50, '', 'File', null, null, this.getTagsForStencil(gn, 'file', dt).join(' ')), - this.createVertexTemplateEntry(s + 'hdinsight;fillColor=#00BEF2;', - 50, 50, '', 'HDInsight', null, null, this.getTagsForStencil(gn, 'hdinsight hd insight', dt).join(' ')), - this.createVertexTemplateEntry(s3 + 'cloud.machine_learning;fillColor=#0078D7;', - 47, 50, '', 'Machine Learning', null, null, this.getTagsForStencil(gn, 'machine learning', dt).join(' ')), - this.createVertexTemplateEntry(s + 'certificate;fillColor=#00BEF2;', - 50, 40, '', 'Management Certificate', null, null, this.getTagsForStencil(gn, 'management certificate', dt).join(' ')), - this.createVertexTemplateEntry(s + 'notification_topic;fillColor=#0078D7;', - 50, 50, '', 'Notification Topic', null, null, this.getTagsForStencil(gn, 'notification topic', dt).join(' ')), - this.createVertexTemplateEntry(s3 + 'cloud.operational_insights;fillColor=#0078D7;', - 50, 50, '', 'Operational Insights', null, null, this.getTagsForStencil(gn, 'operational insights', dt).join(' ')), - this.createVertexTemplateEntry(s + 'operating_system_image;fillColor=#0079D6;', - 50, 50, '', 'OS Image', null, null, this.getTagsForStencil(gn, 'os operating system image', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'poster_arrow;fillColor=#00BCF2;', - 20, 50, '', 'Poster Arrow', null, null, this.getTagsForStencil(gn, 'poster arrow', dt).join(' ')), - this.createVertexTemplateEntry(s + 'service_bus;fillColor=#0078D7;', - 45, 50, '', 'Service Bus', null, null, this.getTagsForStencil(gn, 'service bus', dt).join(' ')), - this.createVertexTemplateEntry(s + 'service_bus_queues;fillColor=#0078D7;', - 42, 50, '', 'Service Bus Queues', null, null, this.getTagsForStencil(gn, 'service bus queues', dt).join(' ')), - this.createVertexTemplateEntry(s + 'service_bus_relay;fillColor=#0078D7;', - 40, 50, '', 'Service Bus Relay', null, null, this.getTagsForStencil(gn, 'service bus relay', dt).join(' ')), - this.createVertexTemplateEntry(s + 'service_bus_topics_and_subscriptions;fillColor=#0078D7;', - 45, 50, '', 'Service Bus Topic', null, null, this.getTagsForStencil(gn, 'service bus topic', dt).join(' ')), - this.createVertexTemplateEntry(s + 'certificate;fillColor=#00BEF2;', - 50, 40, '', 'Service Certificate', null, null, this.getTagsForStencil(gn, 'service certificate', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'sql_data_warehouse;fillColor=#0078D7;', - 44, 50, '', 'SQL Data Warehouse', null, null, this.getTagsForStencil(gn, 'sql data warehouse', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'sql_server_stretch_db;fillColor=#0078D7;', - 50, 49, '', 'SQL Server Stretch DB', null, null, this.getTagsForStencil(gn, 'sql server stretch db database', dt).join(' ')), - this.createVertexTemplateEntry(s + 'sql_reporting;fillColor=#0078D7;', - 40, 50, '', 'SQL Reporting', null, null, this.getTagsForStencil(gn, 'sql reporting', dt).join(' ')), - this.createVertexTemplateEntry(s + 'vhd;fillColor=#0078D7;', - 40, 50, '', 'VHD', null, null, this.getTagsForStencil(gn, 'vhd virtual hard drive', dt).join(' ')) + this.createVertexTemplateEntry(s + 'alerts', + r * 0.41, r * 0.5, '', 'Alerts', null, null, this.getTagsForStencil(gn, 'alerts', dt).join(' ')), + this.createVertexTemplateEntry(s + 'app_with_changes', + r * 0.5, r * 0.32, '', 'App With Changes', null, null, this.getTagsForStencil(gn, 'app with changes', dt).join(' ')), + this.createVertexTemplateEntry(s + 'assessments', + r * 0.47, r * 0.5, '', 'Assessments', null, null, this.getTagsForStencil(gn, 'assessments', dt).join(' ')), + this.createVertexTemplateEntry(s + 'capacity', + r * 0.41, r * 0.5, '', 'Capacity', null, null, this.getTagsForStencil(gn, 'capacity', dt).join(' ')), + this.createVertexTemplateEntry(s + 'config_assessment', + r * 0.5, r * 0.45, '', 'Config Assessment', null, null, this.getTagsForStencil(gn, 'config assessment', dt).join(' ')), + this.createVertexTemplateEntry(s + 'dashboard', + r * 0.5, r * 0.41, '', 'Dashboard', null, null, this.getTagsForStencil(gn, 'dashboard', dt).join(' ')), + this.createVertexTemplateEntry(s + 'dependency_monitor', + r * 0.5, r * 0.49, '', 'Dependency Monitor', null, null, this.getTagsForStencil(gn, 'dependency monitor', dt).join(' ')), + this.createVertexTemplateEntry(s + 'diagnostics', + r * 0.5, r * 0.34, '', 'Diagnostics', null, null, this.getTagsForStencil(gn, 'diagnostics', dt).join(' ')), + this.createVertexTemplateEntry(s + 'jobs', + r * 0.5, r * 0.5, '', 'Jobs', null, null, this.getTagsForStencil(gn, 'jobs', dt).join(' ')), + this.createVertexTemplateEntry(s + 'log_management', + r * 0.41, r * 0.5, '', 'Log Management', null, null, this.getTagsForStencil(gn, 'log management', dt).join(' ')), + this.createVertexTemplateEntry(s + 'log_search', + r * 0.5, r * 0.5, '', 'Log Search', null, null, this.getTagsForStencil(gn, 'log search', dt).join(' ')), + this.createVertexTemplateEntry(s + 'malware_assessment', + r * 0.49, r * 0.5, '', 'Malware Assessment', null, null, this.getTagsForStencil(gn, 'malware assessment', dt).join(' ')), + this.createVertexTemplateEntry(s + 'overview', + r * 0.5, r * 0.41, '', 'Overview', null, null, this.getTagsForStencil(gn, 'overview', dt).join(' ')), + this.createVertexTemplateEntry(s + 'security', + r * 0.5, r * 0.5, '', 'Security', null, null, this.getTagsForStencil(gn, 'security', dt).join(' ')), + this.createVertexTemplateEntry(s + 'server_width_changes', + r * 0.47, r * 0.5, '', 'Server Width Changes', null, null, this.getTagsForStencil(gn, 'server width changes', dt).join(' ')), + this.createVertexTemplateEntry(s + 'services', + r * 0.49, r * 0.5, '', 'Services', null, null, this.getTagsForStencil(gn, 'services', dt).join(' ')), + this.createVertexTemplateEntry(s + 'solutions', + r * 0.5, r * 0.49, '', 'Solutions', null, null, this.getTagsForStencil(gn, 'solutions', dt).join(' ')), + this.createVertexTemplateEntry(s + 'system_update', + r * 0.5, r * 0.5, '', 'System Update', null, null, this.getTagsForStencil(gn, 'system update', dt).join(' ')), + this.createVertexTemplateEntry(s + 'track_changes', + r * 0.42, r * 0.5, '', 'Track Changes', null, null, this.getTagsForStencil(gn, 'track changes', dt).join(' ')), + this.createVertexTemplateEntry(s + 'wire_data', + r * 0.5, r * 0.5, '', 'Wire Data', null, null, this.getTagsForStencil(gn, 'wire data', dt).join(' ')) ]; - this.addPalette('mscaeDeprecated', 'CAE / (Deprecated)', false, mxUtils.bind(this, function(content) + this.addPalette('mscaeOMSFlat', 'CAE / OMS (flat)', false, mxUtils.bind(this, function(content) { for (var i = 0; i < fns.length; i++) { @@ -847,222 +557,37 @@ })); }; - Sidebar.prototype.addMSCAEEnterprisePalette = function() + Sidebar.prototype.addMSCAESystemCenterFlatPalette = function(gn, r, sb) { - var s = 'pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.'; - var s2 = 'pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.enterprise.'; - var s3 = 'pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.'; - - // Space savers - var sb = this; - var gn = 'mxgraph.mscae.enterprise'; - var dt = 'ms microsoft cloud enterprise '; + var s = 'pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#515151;shape=mxgraph.mscae.system_center.'; + var s2 = 'pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#515151;shape=mxgraph.mscae.'; + var dt = 'ms microsoft cloud enterprise system center'; var fns = [ - this.createVertexTemplateEntry(s2 + 'ad_fs;fillColor=#00188D;', - 40, 50, '', 'AD FS', null, null, this.getTagsForStencil(gn, 'ad fs', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'android_phone;fillColor=#7D7D7D;', - 30, 50, '', 'Android Phone', null, null, this.getTagsForStencil(gn, 'android phone mobile', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'app_generic;fillColor=#00188D;', - 50, 39, '', 'App (generic)', null, null, this.getTagsForStencil(gn, 'app generic', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'application;fillColor=#00188D;', - 50, 34, '', 'Application', null, null, this.getTagsForStencil(gn, 'application app', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'application_blank;fillColor=#00188D;', - 50, 43, '', 'Application (blank)', null, null, this.getTagsForStencil(gn, 'application app blank', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'application_server;fillColor=#00188D;', - 43, 50, '', 'Application Server', null, null, this.getTagsForStencil(gn, 'application app server', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'application_server2;fillColor=#00188D;', - 43, 50, '', 'Application Server', null, null, this.getTagsForStencil(gn, 'application app server', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'backup_local;fillColor=#00188D;', - 49, 50, '', 'Backup (local)', null, null, this.getTagsForStencil(gn, 'backup local', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'backup_online;fillColor=#00188D;', - 50, 40, '', 'Backup (online)', null, null, this.getTagsForStencil(gn, 'backup online', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'calendar;fillColor=#00188D;', - 50, 41, '', 'Calendar', null, null, this.getTagsForStencil(gn, 'calendar', dt).join(' ')), - this.createVertexTemplateEntry(s + 'certificate;fillColor=#7D7D7D;', - 50, 40, '', 'Certificate', null, null, this.getTagsForStencil(gn, 'certificate', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'client_application;fillColor=#00188D;', - 50, 32, '', 'Client Application', null, null, this.getTagsForStencil(gn, 'client application app', dt).join(' ')), - this.createVertexTemplateEntry(s + 'cloud;fillColor=#7D7D7D;', - 50, 32, '', 'Cloud', null, null, this.getTagsForStencil(gn, 'cloud', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'cluster_server;fillColor=#00188D;', - 40, 50, '', 'Cluster Server', null, null, this.getTagsForStencil(gn, 'cluster server', dt).join(' ')), - this.createVertexTemplateEntry(s + 'code_file;fillColor=#7D7D7D;', - 47, 50, '', 'Code File', null, null, this.getTagsForStencil(gn, 'code file', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'connectors;fillColor=#00188D;', - 50, 34, '', 'Connectors', null, null, this.getTagsForStencil(gn, 'connectors', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'd;fillColor=#00188D;', - 40, 50, '', 'D', null, null, this.getTagsForStencil(gn, 'delta diff difference server', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'database_generic;fillColor=#00188D;', - 37, 50, '', 'Database (generic)', null, null, this.getTagsForStencil(gn, 'db database generic', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'database_server;fillColor=#00188D;', - 38, 50, '', 'Database (server)', null, null, this.getTagsForStencil(gn, 'db database server', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'database_synchronization;fillColor=#00188D;', - 39, 50, '', 'Database Synchronization', null, null, this.getTagsForStencil(gn, 'database synchronization sync db', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'device;fillColor=#00188D;', - 50, 26, '', 'Device', null, null, this.getTagsForStencil(gn, 'Device', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'direct_access_feature;fillColor=#00188D;', - 50, 44, '', 'Direct Access (feature)', null, null, this.getTagsForStencil(gn, 'direct access feature', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'document;fillColor=#7D7D7D;', - 40, 50, '', 'Document', null, null, this.getTagsForStencil(gn, 'document doc', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'domain_controller;fillColor=#00188D;', - 36, 50, '', 'Domain Controller', null, null, this.getTagsForStencil(gn, 'domain controller', dt).join(' ')), - this.createVertexTemplateEntry(s + 'enterprise;fillColor=#00188D;', - 30, 50, '', 'Enterprise Building', null, null, this.getTagsForStencil(gn, 'enterprise building', dt).join(' ')), - this.createVertexTemplateEntry(s + 'file;fillColor=#7D7D7D;', - 47, 50, '', 'File general', null, null, this.getTagsForStencil(gn, 'file general', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'filter;fillColor=#00188D;', - 50, 45, '', 'Filter', null, null, this.getTagsForStencil(gn, 'filter', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'firewall;fillColor=#00188D;', - 50, 44, '', 'Firewall', null, null, this.getTagsForStencil(gn, 'firewall', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'folder;fillColor=#7D7D7D;', - 50, 43, '', 'Folder', null, null, this.getTagsForStencil(gn, 'folder', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'gateway;fillColor=#00188D;', - 50, 50, '', 'Gateway', null, null, this.getTagsForStencil(gn, 'gateway', dt).join(' ')), - this.createVertexTemplateEntry(s + 'code_file;fillColor=#00188D;', - 47, 50, '', 'Generic Code', null, null, this.getTagsForStencil(gn, 'generic code', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'code_file;fillColor=#00188D;', - 49, 50, '', 'Generic Code File', null, null, this.getTagsForStencil(gn, 'code file', dt).join(' ')), - this.createVertexTemplateEntry(s + 'health_monitoring;fillColor=#7D7D7D;', - 50, 42, '', 'Health Monitoring', null, null, this.getTagsForStencil(gn, 'health monitoring', dt).join(' ')), - this.createVertexTemplateEntry(s + 'healthy;fillColor=#7D7D7D;', - 50, 45, '', 'Healthy', null, null, this.getTagsForStencil(gn, 'healthy', dt).join(' ')), - this.createVertexTemplateEntry(s + 'healthy;fillColor=#0078D7;', - 50, 45, '', 'Healthy', null, null, this.getTagsForStencil(gn, 'healthy', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'import_generic;fillColor=#00188D;', - 40, 50, '', 'Import (generic)', null, null, this.getTagsForStencil(gn, 'import generic', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'internet;fillColor=#7D7D7D;', - 50, 31, '', 'Internet', null, null, this.getTagsForStencil(gn, 'internet', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'internet_hollow;fillColor=#7D7D7D;', - 50, 31, '', 'Internet (hollow)', null, null, this.getTagsForStencil(gn, 'internet hollow', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'iphone;fillColor=#7D7D7D;', - 31, 50, '', 'iPhone', null, null, this.getTagsForStencil(gn, 'iphone', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'key_permissions;fillColor=#7D7D7D;', - 26, 50, '', 'Key, Permissions', null, null, this.getTagsForStencil(gn, 'key permissions', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'keyboard;fillColor=#7D7D7D;', - 50, 30, '', 'Keyboard', null, null, this.getTagsForStencil(gn, 'keyboard', dt).join(' ')), - this.createVertexTemplateEntry(s + 'laptop;fillColor=#7D7D7D;', - 50, 30, '', 'Laptop', null, null, this.getTagsForStencil(gn, 'laptop computer pc', dt).join(' ')), - this.createVertexTemplateEntry(s + 'load_balancer_generic;fillColor=#00188D;', - 37, 50, '', 'Load Balancer (generic)', null, null, this.getTagsForStencil(gn, 'load balancer generic', dt).join(' ')), - this.createVertexTemplateEntry(s + 'load_balancer_generic;fillColor=#ffffff;', - 37, 50, '', 'Load Balancer (white)', null, null, this.getTagsForStencil(gn, 'load balancer generic', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'load_testing;fillColor=#00188D;', - 48, 50, '', 'Load Testing', null, null, this.getTagsForStencil(gn, 'load testing', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'lock;fillColor=#00188D;', - 39, 50, '', 'Lock, Protected', null, null, this.getTagsForStencil(gn, 'lock protected', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'lock_unlocked;fillColor=#00188D;', - 37, 50, '', 'Lock (unlocked)', null, null, this.getTagsForStencil(gn, 'lock unlocked accessible', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'maintenance;fillColor=#00188D;', - 34, 50, '', 'Maintenance', null, null, this.getTagsForStencil(gn, 'maintenance', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'management_console;fillColor=#00188D;', - 50, 34, '', 'Management Console', null, null, this.getTagsForStencil(gn, 'management console', dt).join(' ')), - this.createVertexTemplateEntry(s + 'message;fillColor=#7D7D7D;', - 50, 37, '', 'Message', null, null, this.getTagsForStencil(gn, 'message', dt).join(' ')), - this.createVertexTemplateEntry(s + 'computer;fillColor=#7D7D7D;', - 50, 45, '', 'Monitor', null, null, this.getTagsForStencil(gn, 'monitor', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'monitor_running_apps;fillColor=#00188D;', - 50, 39, '', 'Monitor Running Apps', null, null, this.getTagsForStencil(gn, 'monitor running app application', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'mouse;fillColor=#7D7D7D;', - 30, 50, '', 'Mouse', null, null, this.getTagsForStencil(gn, 'mouse', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'network_card;fillColor=#00188D;', - 50, 35, '', 'Network Card', null, null, this.getTagsForStencil(gn, 'network card', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'not_allowed;fillColor=#00188D;', - 50, 50, '', 'Not Allowed', null, null, this.getTagsForStencil(gn, 'not allowed', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'not_allowed;fillColor=#EA1C24;', - 50, 50, '', 'Not Allowed', null, null, this.getTagsForStencil(gn, 'not allowed', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'pack;fillColor=#00188D;', - 50, 45, '', 'Pack', null, null, this.getTagsForStencil(gn, 'pack', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'performance;fillColor=#7D7D7D;', - 50, 50, '', 'Performance', null, null, this.getTagsForStencil(gn, 'performance', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'performance_monitor;fillColor=#00188D;', - 50, 36, '', 'Performance Monitor', null, null, this.getTagsForStencil(gn, 'performance monitor', dt).join(' ')), - this.createVertexTemplateEntry(s + 'mobile;fillColor=#7D7D7D;', - 35, 50, '', 'Phone', null, null, this.getTagsForStencil(gn, 'mobile phone', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'plug_and_play;fillColor=#7D7D7D;', - 40, 50, '', 'Plug and Play', null, null, this.getTagsForStencil(gn, 'plug play', dt).join(' ')), - this.createVertexTemplateEntry(s + 'powershell_file;fillColor=#00188D;', - 47, 50, '', 'PowerShell Script File', null, null, this.getTagsForStencil(gn, 'powershell script file', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'protocol_stack;fillColor=#00188D;', - 50, 34, '', 'Protocol Stack', null, null, this.getTagsForStencil(gn, 'protocol stack', dt).join(' ')), - this.createVertexTemplateEntry(s + 'queue_generic;fillColor=#00188D;', - 50, 15, '', 'Queue (general)', null, null, this.getTagsForStencil(gn, 'queue general generic', dt).join(' ')), - this.createVertexTemplateEntry(s + 'rdp_remoting_file;fillColor=#0078D7;', - 48, 50, '', 'RPD Remoting File', null, null, this.getTagsForStencil(gn, 'rpd remoting file', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'rms_connector;fillColor=#00188D;', - 38, 50, '', 'RMS Connector', null, null, this.getTagsForStencil(gn, 'rms connector', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'router;fillColor=#00188D;', - 50, 39, '', 'Router', null, null, this.getTagsForStencil(gn, 'router', dt).join(' ')), - this.createVertexTemplateEntry(s + 'script_file;fillColor=#00188D;', - 47, 50, '', 'Script File', null, null, this.getTagsForStencil(gn, 'script file', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'secondary_site;fillColor=#00188D;', - 42, 50, '', 'Secondary Site', null, null, this.getTagsForStencil(gn, 'secondary site', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'secure_virtual_machine;fillColor=#00188D;', - 50, 38, '', 'Secure Virtual Machine', null, null, this.getTagsForStencil(gn, 'secure virtual machine', dt).join(' ')), - this.createVertexTemplateEntry(s + 'server;fillColor=#00188D;', - 50, 15, '', 'Server (blade)', null, null, this.getTagsForStencil(gn, 'server blade', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'server_generic;fillColor=#00188D;', - 24, 50, '', 'Server (generic)', null, null, this.getTagsForStencil(gn, 'server generic', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'server_directory;fillColor=#00188D;', - 36, 50, '', 'Server Directory', null, null, this.getTagsForStencil(gn, 'server directory', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'server_farm;fillColor=#00188D;', - 50, 32, '', 'Server Farm', null, null, this.getTagsForStencil(gn, 'server farm', dt).join(' ')), - this.createVertexTemplateEntry(s + 'server_rack;fillColor=#00188D;', - 50, 50, '', 'Server Rack', null, null, this.getTagsForStencil(gn, 'server rack', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'settings;fillColor=#00188D;', - 50, 50, '', 'Settings', null, null, this.getTagsForStencil(gn, 'settings', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'shared_folder;fillColor=#00188D;', - 43, 50, '', 'Shared Folder', null, null, this.getTagsForStencil(gn, 'shared folder', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'smartcard;fillColor=#00188D;', - 50, 32, '', 'SmartCard', null, null, this.getTagsForStencil(gn, 'smartcard', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'storage;fillColor=#00188D;', - 50, 41, '', 'Storage', null, null, this.getTagsForStencil(gn, 'storage', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'stored_procedures;fillColor=#0078D7;', - 47, 50, '', 'Stored Procedures', null, null, this.getTagsForStencil(gn, 'stored procedures', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'table;fillColor=#00188D;', - 50, 50, '', 'Table', null, null, this.getTagsForStencil(gn, 'table', dt).join(' ')), - this.createVertexTemplateEntry(s + 'tablet;fillColor=#7D7D7D;', - 50, 37, '', 'Tablet', null, null, this.getTagsForStencil(gn, 'tablet', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'tool;fillColor=#7D7D7D;', - 50, 45, '', 'Tool', null, null, this.getTagsForStencil(gn, 'tool', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'triggers;fillColor=#0078D7;', - 47, 50, '', 'Triggers', null, null, this.getTagsForStencil(gn, 'triggers', dt).join(' ')), - this.createVertexTemplateEntry('shadow=0;dashed=0;html=1;strokeColor=none;shape=mxgraph.mscae.general.tunnel;fillColor=#00188D;', - 50, 9, '', 'Tunnel', null, null, this.getTagsForStencil(gn, 'tunnel', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'udf_function;fillColor=#0078D7;', - 47, 50, '', 'UDF Function', null, null, this.getTagsForStencil(gn, 'udf function', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'unhealthy;fillColor=#00188D;', - 50, 41, '', 'Unhealthy', null, null, this.getTagsForStencil(gn, 'unhealthy', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'usb;fillColor=#00188D;', - 50, 23, '', 'USB', null, null, this.getTagsForStencil(gn, 'usb', dt).join(' ')), - this.createVertexTemplateEntry('shadow=0;dashed=0;html=1;strokeColor=none;shape=mxgraph.azure.user;fillColor=#00188D;', - 47, 50, '', 'User', null, null, this.getTagsForStencil(gn, 'user', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'user_permissions;fillColor=#0078D7;', - 47, 50, '', 'User Permissions', null, null, this.getTagsForStencil(gn, 'user permissions', dt).join(' ')),//zzz - this.createVertexTemplateEntry('shadow=0;dashed=0;html=1;strokeColor=none;shape=mxgraph.mscae.general.video;fillColor=#00188D;', - 49, 50, '', 'Video', null, null, this.getTagsForStencil(gn, 'video', dt).join(' ')), - this.createVertexTemplateEntry('shadow=0;dashed=0;html=1;strokeColor=none;shape=mxgraph.azure.virtual_machine_feature;fillColor=#00188D;', - 50, 45, '', 'Virtual Machine Feature', null, null, this.getTagsForStencil(gn, 'virtual machine feature', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'web;fillColor=#00188D;', - 50, 50, '', 'Web', null, null, this.getTagsForStencil(gn, 'web', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'web_server;fillColor=#00188D;', - 38, 50, '', 'Web Server', null, null, this.getTagsForStencil(gn, 'web server', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'website_generic;fillColor=#7D7D7D;', - 50, 44, '', 'Website (generic)', null, null, this.getTagsForStencil(gn, 'website generic', dt).join(' ')), - this.createVertexTemplateEntry(s3 + 'other.windows;fillColor=#00188D;', - 48, 50, '', 'Windows', null, null, this.getTagsForStencil(gn, 'windows', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'windows_server;fillColor=#00188D;', - 39, 50, '', 'Windows Server', null, null, this.getTagsForStencil(gn, 'windows server', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'wireless_connection;fillColor=#00188D;', - 42, 50, '', 'Wireless Connection', null, null, this.getTagsForStencil(gn, 'wireless connection', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'workstation_client;fillColor=#00188D;', - 50, 50, '', 'Workstation Client', null, null, this.getTagsForStencil(gn, 'workstation client', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'xml_web_service;fillColor=#00188D;', - 50, 50, '', 'XML Web Service', null, null, this.getTagsForStencil(gn, 'xml web service', dt).join(' ')) + this.createVertexTemplateEntry(s + 'admin_console', + r * 0.5, r * 0.36, '', 'Admin Console', null, null, this.getTagsForStencil(gn, 'admin console', dt).join(' ')), + this.createVertexTemplateEntry(s2 + 'enterprise.database_server', + r * 0.38, r * 0.5, '', 'Central Administration Site', null, null, this.getTagsForStencil(gn, 'central administration site', dt).join(' ')), + this.createVertexTemplateEntry(s + 'central_administration_site_sql', + r * 0.38, r * 0.5, '', 'Central Administration Site SQL', null, null, this.getTagsForStencil(gn, 'central administration site sql', dt).join(' ')), + this.createVertexTemplateEntry(s + 'cloud_distribution_point', + r * 0.46, r * 0.5, '', 'Cloud Distribution Point', null, null, this.getTagsForStencil(gn, 'cloud distribution point', dt).join(' ')), + this.createVertexTemplateEntry(s + 'distribution_point', + r * 0.44, r * 0.5, '', 'Distribution Point', null, null, this.getTagsForStencil(gn, 'distribution point', dt).join(' ')), + this.createVertexTemplateEntry(s + 'management_point', + r * 0.48, r * 0.5, '', 'Management Point', null, null, this.getTagsForStencil(gn, 'management point', dt).join(' ')), + this.createVertexTemplateEntry(s + 'primary_site', + r * 0.38, r * 0.5, '', 'Primary Site', null, null, this.getTagsForStencil(gn, 'primary site', dt).join(' ')), + this.createVertexTemplateEntry(s + 'roles', + r * 0.42, r * 0.5, '', 'Roles', null, null, this.getTagsForStencil(gn, 'roles', dt).join(' ')), + this.createVertexTemplateEntry(s + 'secondary_site', + r * 0.41, r * 0.5, '', 'Secondary Site', null, null, this.getTagsForStencil(gn, 'secondary site', dt).join(' ')), + this.createVertexTemplateEntry(s + 'software_update_point', + r * 0.5, r * 0.43, '', 'Software Update Point', null, null, this.getTagsForStencil(gn, 'software update point', dt).join(' ')) ]; - this.addPalette('mscaeEnterprise', 'CAE / Enterprise', false, mxUtils.bind(this, function(content) + this.addPalette('mscaeSystem CenterFlat', 'CAE / System Center (flat)', false, mxUtils.bind(this, function(content) { for (var i = 0; i < fns.length; i++) { @@ -1071,75 +596,31 @@ })); }; - Sidebar.prototype.addMSCAEGeneralPalette = function() + Sidebar.prototype.addMSCAEAIandMLServicePalette = function(gn, r, sb, s) { - var s = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.'; - var s2 = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.'; - var s3 = 'shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.'; - var s4 = 'shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general.'; - - // Space savers - var sb = this; - var gn = 'mxgraph.mscae.general'; - var dt = 'ms microsoft cloud enterprise general '; + var dt = 'ms microsoft cloud enterprise ai ml service'; var fns = [ - this.createVertexTemplateEntry(s2 + 'audio;fillColor=#7D7D7D;', - 50, 50, '', 'Audio', null, null, this.getTagsForStencil(gn, 'audio', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'bug;fillColor=#7D7D7D;', - 50, 50, '', 'Bug', null, null, this.getTagsForStencil(gn, 'bug', dt).join(' ')), - this.createVertexTemplateEntry(s + 'enterprise;fillColor=#7D7D7D;pointerEvents=1;', - 30, 50, '', 'Building', null, null, this.getTagsForStencil(gn, 'building enterprise', dt).join(' ')), - this.createVertexTemplateEntry(s4 + 'cable_settop_tv_box;strokeColor=#000000;fillColor=#7D7D7D;', - 50, 24, '', 'Cable Settop TV Box', null, null, this.getTagsForStencil(gn, 'cable settop tv television box', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'calendar;fillColor=#7D7D7D;pointerEvents=1;', - 50, 40, '', 'Calendar', null, null, this.getTagsForStencil(gn, 'calendar', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'chart;fillColor=#7D7D7D;pointerEvents=1;', - 50, 48, '', 'Chart', null, null, this.getTagsForStencil(gn, 'chart', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'checkmark;fillColor=#91D250;pointerEvents=1;', - 41, 50, '', 'Checkmark (success)', null, null, this.getTagsForStencil(gn, 'checkmark success', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'continuous_cycle;fillColor=#7D7D7D;pointerEvents=1;', - 48, 50, '', 'Continuous Cycle (circle)', null, null, this.getTagsForStencil(gn, 'continuous cycle circle', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'crossout;fillColor=#FF0000;pointerEvents=1;', - 40, 50, '', 'Crossout (failure)', null, null, this.getTagsForStencil(gn, 'crossout failure', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'cut_and_paste;fillColor=#7D7D7D;pointerEvents=1;', - 50, 34, '', 'Cut and Paste', null, null, this.getTagsForStencil(gn, 'cut and paste', dt).join(' ')), - this.createVertexTemplateEntry(s3 + 'enterprise.filter;fillColor=#7D7D7D;', - 50, 45, '', 'Filter', null, null, this.getTagsForStencil(gn, 'filter', dt).join(' ')), - this.createVertexTemplateEntry(s3 + 'enterprise.folder;fillColor=#7D7D7D;', - 50, 43, '', 'Folder', null, null, this.getTagsForStencil(gn, 'folder', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'game_controller;fillColor=#7D7D7D;', - 50, 35, '', 'Game Controller', null, null, this.getTagsForStencil(gn, 'game controller gamepad', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'gears;fillColor=#7D7D7D;pointerEvents=1;', - 50, 42, '', 'Gears', null, null, this.getTagsForStencil(gn, 'gears', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'graph;fillColor=#7D7D7D;', - 50, 50, '', 'Graph', null, null, this.getTagsForStencil(gn, 'graph', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'like;fillColor=#7D7D7D;', - 50, 47, '', 'Like', null, null, this.getTagsForStencil(gn, 'like', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'not_allowed;fillColor=#DE5900;pointerEvents=1;', - 50, 50, '', 'Not Allowed', null, null, this.getTagsForStencil(gn, 'not allowed', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'pointer;fillColor=#91D250;', - 50, 50, '', 'Pointer (circle)', null, null, this.getTagsForStencil(gn, 'pointer circle', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'slider_bar_horizontal;fillColor=#7D7D7D;pointerEvents=1;', - 50, 21, '', 'Slider Bar (horizontal)', null, null, this.getTagsForStencil(gn, 'slider bar horizontal hor', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'slider_bar_vertical;fillColor=#7D7D7D;pointerEvents=1;', - 22, 50, '', 'Slider Bar (vertical)', null, null, this.getTagsForStencil(gn, 'slider bar vertical hor', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'task_list;fillColor=#7D7D7D;pointerEvents=1;', - 38, 47, '', 'Task List (backlog)', null, null, this.getTagsForStencil(gn, 'task list backlog', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'tasks;fillColor=#7D7D7D;pointerEvents=1;', - 38, 50, '', 'Tasks', null, null, this.getTagsForStencil(gn, 'tasks', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'tunnel;fillColor=#7D7D7D;', - 50, 9, '', 'Tunnel', null, null, this.getTagsForStencil(gn, 'tunnel', dt).join(' ')), - this.createVertexTemplateEntry(s3 + 'enterprise.usb;fillColor=#7D7D7D;pointerEvents=1;', - 50, 23, '', 'USB', null, null, this.getTagsForStencil(gn, 'usb', dt).join(' ')), - this.createVertexTemplateEntry(s + 'user;fillColor=#7D7D7D;', - 47, 50, '', 'User', null, null, this.getTagsForStencil(gn, 'user', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'video;fillColor=#7D7D7D;pointerEvents=1;', - 49, 50, '', 'Video', null, null, this.getTagsForStencil(gn, 'video', dt).join(' ')) + this.createVertexTemplateEntry(s + 'Batch_AI.svg;', + r * 0.36, r * 0.5, '', 'Batch AI', null, null, this.getTagsForStencil(gn, 'batch ai', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Bot_Services.svg;', + r * 0.5, r * 0.5, '', 'Bot Services', null, null, this.getTagsForStencil(gn, 'bot services', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Cognitive_Services.svg;', + r * 0.5, r * 0.3, '', 'Cognitive Services', null, null, this.getTagsForStencil(gn, 'cognitive services', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Genomics_Accounts.svg;', + r * 0.26, r * 0.5, '', 'Genomics Accounts', null, null, this.getTagsForStencil(gn, 'genomics accounts', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Machine_Learning_Service_Workspaces.svg;', + r * 0.46, r * 0.5, '', 'Machine Learning Service Workspaces', null, null, this.getTagsForStencil(gn, 'machine learning service workspaces', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Machine_Learning_Studio_Web_Service_Plans.svg;', + r * 0.5, r * 0.5, '', 'Machine Learning Studio Web Service Plans', null, null, this.getTagsForStencil(gn, 'machine learning studio web service plans', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Machine_Learning_Studio_Web_Services.svg;', + r * 0.5, r * 0.5, '', 'Machine Learning Studio Web Services', null, null, this.getTagsForStencil(gn, 'machine learning studio web services', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Machine_Learning_Studio_Workspaces.svg;', + r * 0.5, r * 0.5, '', 'Machine Learning Studio Workspaces', null, null, this.getTagsForStencil(gn, 'machine learning studio workspaces', dt).join(' ')) ]; - this.addPalette('mscaeGeneral', 'CAE / General', false, mxUtils.bind(this, function(content) + this.addPalette('mscaeAI and ML Service', 'CAE / AI and ML Service', false, mxUtils.bind(this, function(content) { for (var i = 0; i < fns.length; i++) { @@ -1148,90 +629,37 @@ })); }; - Sidebar.prototype.addMSCAEGeneralSymbolsPalette = function() + Sidebar.prototype.addMSCAEAnalyticsServicePalette = function(gn, r, sb, s) { - var s = 'pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.'; - var s2 = 'pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general_symbols.'; - var s3 = 'pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.'; - var s4 = 'pointerEvents=1;shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.general_symbols.'; - var s5 = 'pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.'; - - // Space savers - var sb = this; - var gn = 'mxgraph.mscae.general_symbols'; - var dt = 'ms microsoft cloud enterprise general symbols '; + var dt = 'ms microsoft cloud enterprise analytics service'; var fns = [ - this.createVertexTemplateEntry(s2 + 'attachments;fillColor=#7D7D7D;', - 29, 50, '', 'Attachments', null, null, this.getTagsForStencil(gn, 'attachments', dt).join(' ')), - this.createVertexTemplateEntry(s5 + 'general.audio;fillColor=#7D7D7D;', - 50, 50, '', 'Audio', null, null, this.getTagsForStencil(gn, 'audio', dt).join(' ')), - this.createVertexTemplateEntry(s5 + 'general.bug;fillColor=#7D7D7D;', - 50, 50, '', 'Bug', null, null, this.getTagsForStencil(gn, 'bug', dt).join(' ')), - this.createVertexTemplateEntry(s5 + 'general.cable_settop_tv_box;fillColor=#7D7D7D;', - 50, 24, '', 'Cable Settop Box', null, null, this.getTagsForStencil(gn, 'cable settop box', dt).join(' ')), - this.createVertexTemplateEntry(s5 + 'general.calendar;fillColor=#7D7D7D;', - 50, 40, '', 'Calendar', null, null, this.getTagsForStencil(gn, 'calendar', dt).join(' ')), - this.createVertexTemplateEntry(s5 + 'general.chart;fillColor=#7D7D7D;', - 50, 48, '', 'Chart', null, null, this.getTagsForStencil(gn, 'chart', dt).join(' ')), - this.createVertexTemplateEntry(s5 + 'general.checkmark;fillColor=#92D050;', - 41, 50, '', 'Checkmark', null, null, this.getTagsForStencil(gn, 'checkmark', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'clock_time;fillColor=#0078D7;', - 50, 50, '', 'Clock / Time', null, null, this.getTagsForStencil(gn, 'clock time', dt).join(' ')), - this.createVertexTemplateEntry(s5 + 'general.continuous_cycle;fillColor=#7D7D7D;', - 48, 50, '', 'Continuous Cycle', null, null, this.getTagsForStencil(gn, 'continuous cycle', dt).join(' ')), - this.createVertexTemplateEntry(s3 + 'general.crossout;fillColor=#FF0000;', - 40, 50, '', 'Crossout (failure)', null, null, this.getTagsForStencil(gn, 'crossout failure', dt).join(' ')), - this.createVertexTemplateEntry(s5 + 'general.cut_and_paste;fillColor=#7D7D7D;', - 50, 34, '', 'Cut and Paste', null, null, this.getTagsForStencil(gn, 'cut and paste', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'ellipses;fillColor=#0078D7;', - 50, 7, '', 'Ellipses', null, null, this.getTagsForStencil(gn, 'ellipses', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'favorite;fillColor=#FDE57B;', - 14, 20, '', 'Favorite', null, null, this.getTagsForStencil(gn, 'favorite', dt).join(' ')), - this.createVertexTemplateEntry(s5 + 'enterprise.folder;fillColor=#7D7D7D;', - 50, 43, '', 'Folder', null, null, this.getTagsForStencil(gn, 'folder', dt).join(' ')), - this.createVertexTemplateEntry(s5 + 'general.game_controller;fillColor=#7D7D7D;', - 50, 35, '', 'Game Controller', null, null, this.getTagsForStencil(gn, 'game controller', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'gears;fillColor=#7D7D7D;', - 50, 42, '', 'Gears', null, null, this.getTagsForStencil(gn, 'gears', dt).join(' ')), - this.createVertexTemplateEntry(s5 + 'general.graph;fillColor=#7D7D7D;', - 50, 50, '', 'Graph', null, null, this.getTagsForStencil(gn, 'graph', dt).join(' ')), - this.createVertexTemplateEntry(s5 + 'general.like;fillColor=#7D7D7D;', - 50, 47, '', 'Like', null, null, this.getTagsForStencil(gn, 'like', dt).join(' ')), - this.createVertexTemplateEntry(s5 + 'enterprise.not_allowed;fillColor=#DD5900;', - 50, 50, '', 'Not Allowed', null, null, this.getTagsForStencil(gn, 'not allowed', dt).join(' ')), - this.createVertexTemplateEntry('shadow=0;dashed=0;html=1;shape=ellipse;perimeter=ellipsePerimeter;dashPattern=1 4;strokeColor=none;fillColor=#92D050;fontSize=12;fontColor=#FFFFFF;align=center;spacing=0;fontStyle=1;', - 25, 25, '12', 'Numbered Label', null, null, this.getTagsForStencil(gn, 'numbered label', dt).join(' ')), - this.createVertexTemplateEntry('shadow=0;dashed=0;html=1;shape=ellipse;perimeter=ellipsePerimeter;dashPattern=1 4;strokeColor=none;fillColor=#E90D8B;fontSize=12;fontColor=#FFFFFF;align=center;spacing=0;fontStyle=1;', - 25, 25, '1', 'Number Magenta', null, null, this.getTagsForStencil(gn, 'numbered label', dt).join(' ')), - this.createVertexTemplateEntry('shadow=0;dashed=0;html=1;shape=ellipse;perimeter=ellipsePerimeter;dashPattern=1 4;strokeColor=none;fillColor=#FF8C00;fontSize=12;fontColor=#FFFFFF;align=center;spacing=0;fontStyle=1;', - 25, 25, '1', 'Number Orange', null, null, this.getTagsForStencil(gn, 'numbered orange', dt).join(' ')), - this.createVertexTemplateEntry('shadow=0;dashed=0;html=1;shape=ellipse;perimeter=ellipsePerimeter;dashPattern=1 4;strokeColor=none;fillColor=#C00000;fontSize=12;fontColor=#FFFFFF;align=center;spacing=0;fontStyle=1;', - 25, 25, '1', 'Number Label', null, null, this.getTagsForStencil(gn, 'numbered label', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'num_label_rotate;fillColor=#92D050;fontSize=12;fontColor=#FFFFFF;align=center;spacing=0;fontStyle=1;', - 25, 25, '12', 'Numbered Label Rotate Pointer', null, null, this.getTagsForStencil(gn, 'num label rotate', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'premium_star;fillColor=#FDE57B;', - 12, 11, '', 'Premium Star', null, null, this.getTagsForStencil(gn, 'premium star', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'slider_bar_horz;fillColor=#7D7D7D;', - 81, 30, '', 'Slider Bar (horizontal)', null, null, this.getTagsForStencil(gn, 'slider bar horizontal', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'slider_bar_vert;fillColor=#7D7D7D;', - 35, 80, '', 'Slider Bar (vertical)', null, null, this.getTagsForStencil(gn, 'slider bar vertical', dt).join(' ')), - this.createVertexTemplateEntry(s5 + 'general.task_list;fillColor=#7D7D7D;', - 41, 50, '', 'Task List', null, null, this.getTagsForStencil(gn, 'task list', dt).join(' ')), - this.createVertexTemplateEntry(s5 + 'general.tasks;fillColor=#7D7D7D;', - 38, 50, '', 'Tasks', null, null, this.getTagsForStencil(gn, 'tasks', dt).join(' ')), - this.createVertexTemplateEntry(s5 + 'general.tunnel;fillColor=#7D7D7D;', - 50, 9, '', 'Tunnel', null, null, this.getTagsForStencil(gn, 'tunnel', dt).join(' ')), - this.createVertexTemplateEntry(s + 'user;fillColor=#7D7D7D;', - 47, 50, '', 'User', null, null, this.getTagsForStencil(gn, 'user', dt).join(' ')), - this.createVertexTemplateEntry(s5 + 'general.video;fillColor=#7D7D7D;', - 49, 50, '', 'Video', null, null, this.getTagsForStencil(gn, 'video', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'waiting;fillColor=#7D7D7D;', - 46, 50, '', 'Waiting', null, null, this.getTagsForStencil(gn, 'waiting', dt).join(' ')) + this.createVertexTemplateEntry(s + 'Analysis_Services.svg;', + r * 0.5, r * 0.39, '', 'Analysis_Services', null, null, this.getTagsForStencil(gn, 'analysis services', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Azure_Data_Explorer_Clusters.svg;', + r * 0.5, r * 0.5, '', 'Azure_Data_Explorer_Clusters', null, null, this.getTagsForStencil(gn, 'azure data explorer clusters', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Databricks.svg;', + r * 0.5, r * 0.48, '', 'Databricks', null, null, this.getTagsForStencil(gn, 'azure databricks', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Data_Factory.svg;', + r * 0.5, r * 0.5, '', 'Data Factories', null, null, this.getTagsForStencil(gn, 'data factory factories', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Data_Lake_Analytics.svg;', + r * 0.5, r * 0.5, '', 'Data Lake Analytics', null, null, this.getTagsForStencil(gn, 'data lake analytics', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Data_Lake_Store.svg;', + r * 0.5, r * 0.39, '', 'Data Lake Store', null, null, this.getTagsForStencil(gn, 'data lake store', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Event_Hub_Clusters.svg;', + r * 0.5, r * 0.48, '', 'Event Hub Clusters', null, null, this.getTagsForStencil(gn, 'event hub clusters', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Event_Hubs.svg;', + r * 0.48, r * 0.5, '', 'Event Hubs', null, null, this.getTagsForStencil(gn, 'event hubs', dt).join(' ')), + this.createVertexTemplateEntry(s + 'HDInsightClusters.svg;', + r * 0.5, r * 0.49, '', 'HDInsight Clusters', null, null, this.getTagsForStencil(gn, 'hdinsight clusters', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Log_Analytics_Workspaces.svg;', + r * 0.5, r * 0.5, '', 'Log Analytics Workspaces', null, null, this.getTagsForStencil(gn, 'log analytics workspaces', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Stream_Analytics.svg;', + r * 0.5, r * 0.39, '', 'Stream Analytics', null, null, this.getTagsForStencil(gn, 'stream analytics', dt).join(' ')) ]; - this.addPalette('mscaeGeneral Symbols', 'CAE / General Symbols', false, mxUtils.bind(this, function(content) + this.addPalette('mscaeAnalytics Service', 'CAE / Analytics Service', false, mxUtils.bind(this, function(content) { for (var i = 0; i < fns.length; i++) { @@ -1240,114 +668,37 @@ })); }; - Sidebar.prototype.addMSCAEIntunePalette = function() + Sidebar.prototype.addMSCAEComputeServicePalette = function(gn, r, sb, s) { - var s = 'pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.'; - var s2 = 'pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.intune.'; - var s3 = 'pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.'; - - // Space savers - var sb = this; - var gn = 'mxgraph.mscae.intune'; - var dt = 'ms microsoft cloud enterprise intune'; + var dt = 'ms microsoft cloud enterprise compute service'; var fns = [ - this.createVertexTemplateEntry(s2 + 'account_portal;fillColor=#505050;', - 43, 50, '', 'Account Portal', null, null, this.getTagsForStencil(gn, 'account portal', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'administration;fillColor=#505050;', - 30, 50, '', 'Administration', null, null, this.getTagsForStencil(gn, 'administration', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'alerts;fillColor=#505050;', - 50, 50, '', 'Alerts', null, null, this.getTagsForStencil(gn, 'alerts', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'apps;fillColor=#505050;', - 50, 50, '', 'Apps', null, null, this.getTagsForStencil(gn, 'apps', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'certificate;fillColor=#505050;', - 50, 49, '', 'Certificate (Compliance)', null, null, this.getTagsForStencil(gn, 'certificate compliance', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'client_software;fillColor=#505050;', - 50, 45, '', 'Client Software Deployment Wizard', null, null, this.getTagsForStencil(gn, 'client software deployment wizard', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'company_portal;fillColor=#505050;', - 50, 38, '', 'Company Portal', null, null, this.getTagsForStencil(gn, 'company portal', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'computer_inventory;fillColor=#505050;', - 50, 45, '', 'Computer Inventory', null, null, this.getTagsForStencil(gn, 'computer inventory', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'conditional_access_exchange;fillColor=#505050;', - 49, 50, '', 'Conditional Access (Exchange)', null, null, this.getTagsForStencil(gn, 'conditional access exchange', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'conditional_access_sharepoint;fillColor=#505050;', - 44, 50, '', 'Conditional Access (Sharepoint)', null, null, this.getTagsForStencil(gn, 'conditional access sharepoint', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'connector;fillColor=#505050;', - 50, 17, '', 'Connector', null, null, this.getTagsForStencil(gn, 'connector', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'dashboard;fillColor=#505050;', - 50, 40, '', 'Dashboard', null, null, this.getTagsForStencil(gn, 'dashboard', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'data_migration_wizard;fillColor=#505050;', - 50, 48, '', 'Data Migration Wizard', null, null, this.getTagsForStencil(gn, 'data migration wizard', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'detected_software;fillColor=#505050;', - 50, 50, '', 'Detected Software', null, null, this.getTagsForStencil(gn, 'detected software', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'device_group;fillColor=#505050;', - 50, 50, '', 'Device Group', null, null, this.getTagsForStencil(gn, 'device group', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'device_health;fillColor=#505050;', - 50, 31, '', 'Device Health', null, null, this.getTagsForStencil(gn, 'device_health', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'device_history;fillColor=#505050;', - 45, 50, '', 'Device History', null, null, this.getTagsForStencil(gn, 'device history', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'device_os;fillColor=#505050;', - 49, 50, '', 'Device OS', null, null, this.getTagsForStencil(gn, 'device os operating system', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'end_protection;fillColor=#505050;', - 48, 50, '', 'End Protection', null, null, this.getTagsForStencil(gn, 'end protection', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'exchange_connector;fillColor=#505050;', - 50, 49, '', 'Exchange Connector', null, null, this.getTagsForStencil(gn, 'exchange connector', dt).join(' ')), - this.createVertexTemplateEntry(s3 + 'enterprise.internet;fillColor=#ffffff;strokeColor=#7f7f7f;', - 50, 31, '', 'Expandable Cloud', null, null, this.getTagsForStencil(gn, 'expandable cloud', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'groups;fillColor=#505050;', - 50, 48, '', 'Groups', null, null, this.getTagsForStencil(gn, 'groups', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'hybrid;fillColor=#505050;', - 50, 39, '', 'Hybrid', null, null, this.getTagsForStencil(gn, 'hybrid', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'intune_certificate_profiles;fillColor=#505050;', - 40, 50, '', 'Intune Certificate Profiles', null, null, this.getTagsForStencil(gn, 'certificate profiles', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'intune_connector;fillColor=#505050;', - 82, 59, '', 'Intune Connector', null, null, this.getTagsForStencil(gn, 'intune connector', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'intune_email_profiles;fillColor=#505050;', - 50, 50, '', 'Intune Email Profiles', null, null, this.getTagsForStencil(gn, 'email profiles', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'intune_managed_app;fillColor=#505050;', - 50, 38, '', 'Intune Managed App', null, null, this.getTagsForStencil(gn, 'managed app application', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'intune_mobile_application_management;fillColor=#505050;', - 49, 50, '', 'Intune Mobile Application Management', null, null, this.getTagsForStencil(gn, 'mobile app aplication management', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'intune_vpn_profiles;fillColor=#505050;', - 42, 50, '', 'Intune VPN Profiles', null, null, this.getTagsForStencil(gn, 'vpn virtual private network profiles', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'intune_wifi_profiles;fillColor=#505050;', - 43, 50, '', 'Intune WiFi Profiles', null, null, this.getTagsForStencil(gn, 'wifi profiles', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'inventory_license;fillColor=#505050;', - 50, 48, '', 'Inventory License', null, null, this.getTagsForStencil(gn, 'inventory license', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'inventory_software;fillColor=#505050;', - 50, 49, '', 'Inventory Software', null, null, this.getTagsForStencil(gn, 'inventory software', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'license_group;fillColor=#505050;', - 50, 49, '', 'License Group', null, null, this.getTagsForStencil(gn, 'license group', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'license_installation;fillColor=#505050;', - 50, 43, '', 'License Installation', null, null, this.getTagsForStencil(gn, 'license installation', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'microsoft_intune;fillColor=#505050;', - 50, 40, '', 'MS Intune', null, null, this.getTagsForStencil(gn, 'microsoft', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'mobile_inventory;fillColor=#505050;', - 44, 50, '', 'Mobile Inventory', null, null, this.getTagsForStencil(gn, 'mobile inventory', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'noncompliant_apps;fillColor=#505050;', - 46, 50, '', 'Noncompliant Apps', null, null, this.getTagsForStencil(gn, 'noncompliant apps applications', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'policy;fillColor=#505050;', - 50, 50, '', 'Policy', null, null, this.getTagsForStencil(gn, 'policy', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'protection;fillColor=#505050;', - 48, 50, '', 'Protection', null, null, this.getTagsForStencil(gn, 'protection', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'reports;fillColor=#505050;', - 46, 50, '', 'Reports', null, null, this.getTagsForStencil(gn, 'reports', dt).join(' ')), - this.createVertexTemplateEntry(s3 + 'enterprise.settings;fillColor=#505050;', - 50, 50, '', 'Settings', null, null, this.getTagsForStencil(gn, 'settings', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'subscription_portal;fillColor=#505050;', - 50, 50, '', 'Subscription Portal', null, null, this.getTagsForStencil(gn, 'subscription portal', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'terms_and_conditions;fillColor=#505050;', - 37, 50, '', 'Terms and Conditions', null, null, this.getTagsForStencil(gn, 'terms and conditions', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'update;fillColor=#505050;', - 48, 50, '', 'Update', null, null, this.getTagsForStencil(gn, 'update', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'user_group;fillColor=#505050;', - 50, 37, '', 'User Group', null, null, this.getTagsForStencil(gn, 'user group', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'user_management;fillColor=#505050;', - 50, 46, '', 'User Management', null, null, this.getTagsForStencil(gn, 'user management', dt).join(' ')) + this.createVertexTemplateEntry(s + 'Batch_Accounts.svg;', + r * 0.5, r * 0.48, '', 'Batch Accounts', null, null, this.getTagsForStencil(gn, 'batch accounts', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Citrix_Virtual_Desktops_Essentials.svg;', + r * 0.5, r * 0.5, '', 'Citrix Virtual Desktops Essentials', null, null, this.getTagsForStencil(gn, 'citrix virtual desktops essentials', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Cloud_Services_Classic.svg;', + r * 0.5, r * 0.42, '', 'Cloud Services (classic)', null, null, this.getTagsForStencil(gn, 'cloud services classic', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Cloud_Service.svg;', + r * 0.5, r * 0.42, '', 'Cloud Services', null, null, this.getTagsForStencil(gn, 'cloud services', dt).join(' ')), + this.createVertexTemplateEntry(s + 'CloudSimple_Virtual_Machines.svg;', + r * 0.5, r * 0.32, '', 'CloudSimple Virtual Machines', null, null, this.getTagsForStencil(gn, 'cloudsimple virtual machines', dt).join(' ')), + this.createVertexTemplateEntry(s + 'MD_snapshot.svg;', + r * 0.5, r * 0.42, '', 'Disk Snapshots', null, null, this.getTagsForStencil(gn, 'disk snapshots', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Discs.svg;', + r * 0.5, r * 0.42, '', 'Disks', null, null, this.getTagsForStencil(gn, 'disks', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Functions.svg;', + r * 0.5, r * 0.46, '', 'Function Apps', null, null, this.getTagsForStencil(gn, 'function apps', dt).join(' ')), + this.createVertexTemplateEntry(s + 'SAP_HANA_on_Azure.svg;', + r * 0.5, r * 0.25, '', 'SAP HANA on Azure', null, null, this.getTagsForStencil(gn, 'sap hana on azure', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Service_Fabric.svg;', + r * 0.5, r * 0.5, '', 'Service Fabric', null, null, this.getTagsForStencil(gn, 'service fabric', dt).join(' ')), + this.createVertexTemplateEntry(s + 'VM_Images.svg;', + r * 0.5, r * 0.46, '', 'VM Images', null, null, this.getTagsForStencil(gn, 'vm virtual machine images', dt).join(' ')) ]; - this.addPalette('mscaeIntune', 'CAE / Intune', false, mxUtils.bind(this, function(content) + this.addPalette('mscaeCompute Service', 'CAE / Compute Service', false, mxUtils.bind(this, function(content) { for (var i = 0; i < fns.length; i++) { @@ -1356,64 +707,35 @@ })); }; - Sidebar.prototype.addMSCAEOMSPalette = function() + Sidebar.prototype.addMSCAEComputeServiceVMPalette = function(gn, r, sb, s) { - var s = 'pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.'; - var s2 = 'pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.oms.'; - var s3 = 'pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.'; - - // Space savers - var sb = this; - var gn = 'mxgraph.mscae.oms'; - var dt = 'ms microsoft cloud enterprise oms'; + var dt = 'ms microsoft cloud enterprise compute service vm virtual machine'; var fns = [ - this.createVertexTemplateEntry(s2 + 'alerts;fillColor=#505050;', - 41, 50, '', 'Alerts', null, null, this.getTagsForStencil(gn, 'alerts', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'app_with_changes;fillColor=#505050;', - 50, 32, '', 'App With Changes', null, null, this.getTagsForStencil(gn, 'app with changes', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'assessments;fillColor=#505050;', - 47, 50, '', 'Assessments', null, null, this.getTagsForStencil(gn, 'assessments', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'capacity;fillColor=#505050;', - 41, 50, '', 'Capacity', null, null, this.getTagsForStencil(gn, 'capacity', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'config_assessment;fillColor=#505050;', - 50, 45, '', 'Config Assessment', null, null, this.getTagsForStencil(gn, 'config assessment', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'dashboard;fillColor=#505050;', - 50, 41, '', 'Dashboard', null, null, this.getTagsForStencil(gn, 'dashboard', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'dependency_monitor;fillColor=#505050;', - 50, 49, '', 'Dependency Monitor', null, null, this.getTagsForStencil(gn, 'dependency monitor', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'diagnostics;fillColor=#505050;', - 50, 34, '', 'Diagnostics', null, null, this.getTagsForStencil(gn, 'diagnostics', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'jobs;fillColor=#505050;', - 50, 50, '', 'Jobs', null, null, this.getTagsForStencil(gn, 'jobs', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'log_management;fillColor=#505050;', - 41, 50, '', 'Log Management', null, null, this.getTagsForStencil(gn, 'log management', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'log_search;fillColor=#505050;', - 50, 50, '', 'Log Search', null, null, this.getTagsForStencil(gn, 'log search', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'malware_assessment;fillColor=#505050;', - 49, 50, '', 'Malware Assessment', null, null, this.getTagsForStencil(gn, 'malware assessment', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'overview;fillColor=#505050;', - 50, 41, '', 'Overview', null, null, this.getTagsForStencil(gn, 'overview', dt).join(' ')), - this.createVertexTemplateEntry(s3 + 'cloud.runbooks;fillColor=#505050;', - 46, 50, '', 'Runbooks', null, null, this.getTagsForStencil(gn, 'runbooks', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'security;fillColor=#505050;', - 50, 50, '', 'Security', null, null, this.getTagsForStencil(gn, 'security', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'server_width_changes;fillColor=#505050;', - 47, 50, '', 'Server Width Changes', null, null, this.getTagsForStencil(gn, 'server width changes', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'services;fillColor=#505050;', - 49, 50, '', 'Services', null, null, this.getTagsForStencil(gn, 'services', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'solutions;fillColor=#505050;', - 50, 49, '', 'Solutions', null, null, this.getTagsForStencil(gn, 'solutions', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'system_update;fillColor=#505050;', - 50, 50, '', 'System Update', null, null, this.getTagsForStencil(gn, 'system update', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'track_changes;fillColor=#505050;', - 42, 50, '', 'Track Changes', null, null, this.getTagsForStencil(gn, 'track changes', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'wire_data;fillColor=#505050;', - 50, 50, '', 'Wire Data', null, null, this.getTagsForStencil(gn, 'wire data', dt).join(' ')) + this.createVertexTemplateEntry(s + 'Virtual_Machines_Availability_Set.svg;', + r * 0.5, r * 0.5, '', 'Availability Sets', null, null, this.getTagsForStencil(gn, 'availability sets', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Non_Azure_Machine.svg;', + r * 0.31, r * 0.5, '', 'Non-Azure Machine', null, null, this.getTagsForStencil(gn, 'non azure machine', dt).join(' ')), + this.createVertexTemplateEntry(s + 'OS_Images_Classic.svg;', + r * 0.5, r * 0.46, '', 'OS Images (classic)', null, null, this.getTagsForStencil(gn, 'os images classic', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Virtual_Machine_2.svg;', + r * 0.5, r * 0.46, '', 'VM', null, null, this.getTagsForStencil(gn, '', dt).join(' ')), + this.createVertexTemplateEntry(s + 'VM_Scale_Set.svg;', + r * 0.5, r * 0.5, '', 'VM Scale Sets', null, null, this.getTagsForStencil(gn, 'scale sets', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Virtual_Machine.svg;', + r * 0.5, r * 0.46, '', 'VM', null, null, this.getTagsForStencil(gn, '', dt).join(' ')), + this.createVertexTemplateEntry(s + 'VM_Linux.svg;', + r * 0.5, r * 0.46, '', 'VM (Linux)', null, null, this.getTagsForStencil(gn, 'linux', dt).join(' ')), + this.createVertexTemplateEntry(s + 'VM_Linux_Non_Azure.svg;', + r * 0.5, r * 0.46, '', 'VM (Linux, Non-Azure)', null, null, this.getTagsForStencil(gn, 'linux non azure', dt).join(' ')), + this.createVertexTemplateEntry(s + 'VirtualMachineWindows.svg;', + r * 0.5, r * 0.46, '', 'VM (Windows)', null, null, this.getTagsForStencil(gn, 'windows', dt).join(' ')), + this.createVertexTemplateEntry(s + 'VM_Windows_Non_Azure.svg;', + r * 0.5, r * 0.46, '', 'VM (Windows, Non-Azure)', null, null, this.getTagsForStencil(gn, 'windows non azure', dt).join(' ')) ]; - this.addPalette('mscaeOMS', 'CAE / OMS', false, mxUtils.bind(this, function(content) + this.addPalette('mscaeCompute Service VM', 'CAE / Compute Service VM', false, mxUtils.bind(this, function(content) { for (var i = 0; i < fns.length; i++) { @@ -1422,119 +744,76 @@ })); }; - Sidebar.prototype.addMSCAEOpsManagerPalette = function() + Sidebar.prototype.addMSCAEContainerServiceVMPalette = function(gn, r, sb, s) { - var s = 'pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.'; - var s2 = 'pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.opsmanager.'; - var s3 = 'pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.'; - - // Space savers - var sb = this; - var gn = 'mxgraph.mscae.opsmanager'; - var dt = 'ms microsoft cloud enterprise opsmanager ops manager operations'; + var dt = 'ms microsoft cloud enterprise container service'; var fns = [ - this.createVertexTemplateEntry(s2 + 'advanced_group_policy_management;fillColor=#0078D7;', - 48, 50, '', 'Advanced Group Policy Management', null, null, this.getTagsForStencil(gn, 'advanced group policy management', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'applications;fillColor=#0078D7;', - 49, 50, '', 'Applications', null, null, this.getTagsForStencil(gn, 'applications', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'application_virtualization;fillColor=#0078D7;', - 50, 50, '', 'Application Virtualization', null, null, this.getTagsForStencil(gn, 'application virtualization', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'app_controller;fillColor=#0078D7;', - 50, 43, '', 'App Controller', null, null, this.getTagsForStencil(gn, 'app controller', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'configuration_manager;fillColor=#0078D7;', - 46, 50, '', 'Configuration Manager', null, null, this.getTagsForStencil(gn, 'configuration manager', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'data_protection_manager;fillColor=#0078D7;', - 44, 50, '', 'Data Protection Manager', null, null, this.getTagsForStencil(gn, 'data protection manager', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'middleware;fillColor=#0078D7;', - 50, 34, '', 'Middleware', null, null, this.getTagsForStencil(gn, 'middleware', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'ms_bitlocker_administration_and_management;fillColor=#0078D7;', - 46, 50, '', 'MS Bitlocker Administration and management', null, null, this.getTagsForStencil(gn, 'bitlocker administration and management', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'ms_diagnostics_and_recovery_toolset;fillColor=#0078D7;', - 50, 48, '', 'MS Diagnostics and Recovery Toolset', null, null, this.getTagsForStencil(gn, 'diagnostics and recovery toolset', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'ms_enterprise_desktop_virtualization;fillColor=#0078D7;', - 50, 50, '', 'MS Enterprise Desktop Virtualization', null, null, this.getTagsForStencil(gn, 'enterprise desktop virtualization', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'ms_user_experience_virtualization;fillColor=#0078D7;', - 50, 48, '', 'MS User Experience Virtualization', null, null, this.getTagsForStencil(gn, 'user experience virtualization', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'operations_manager;fillColor=#0078D7;', - 48, 50, '', 'Operations Manager', null, null, this.getTagsForStencil(gn, 'operations manager', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'orchestrator;fillColor=#0078D7;', - 50, 34, '', 'Orchestrator', null, null, this.getTagsForStencil(gn, 'orchestrator', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'pack;fillColor=#0078D7;', - 44, 50, '', 'Pack', null, null, this.getTagsForStencil(gn, 'pack', dt).join(' ')), - this.createVertexTemplateEntry(s3 + 'enterprise.plug_and_play;fillColor=#0078D7;', - 40, 50, '', 'Plug and Play', null, null, this.getTagsForStencil(gn, 'plug and play', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'runtime;fillColor=#0078D7;', - 50, 35, '', 'Runtime', null, null, this.getTagsForStencil(gn, 'runtime', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'service_manager;fillColor=#0078D7;', - 50, 36, '', 'Service Manager', null, null, this.getTagsForStencil(gn, 'service manager', dt).join(' ')), - this.createVertexTemplateEntry(s3 + 'general_symbols.slider_bar_vert;fillColor=#0078D7;', - 22, 50, '', 'Slider Bar (vertical)', null, null, this.getTagsForStencil(gn, 'slider bar vertical hor', dt).join(' ')), - this.createVertexTemplateEntry(s3 + 'general_symbols.slider_bar_horz;fillColor=#0078D7;', - 50, 21, '', 'Slider Bar (horizontal)', null, null, this.getTagsForStencil(gn, 'slider bar horizontal hor', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'ssd;fillColor=#0078D7;', - 50, 41, '', 'SSD', null, null, this.getTagsForStencil(gn, 'ssd solid state drive', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'virtual_machine_manager;fillColor=#0078D7;', - 50, 38, '', 'Virtual Machine Manager', null, null, this.getTagsForStencil(gn, 'virtual machine manager', dt).join(' ')) + this.createVertexTemplateEntry(s + 'Container_Instances.svg;', + r * 0.5, r * 0.5, '', 'Container Instances', null, null, this.getTagsForStencil(gn, 'container instances', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Container_Registries.svg;', + r * 0.5, r * 0.43, '', 'Container Registries', null, null, this.getTagsForStencil(gn, 'container registries', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Kubernetes_Services.svg;', + r * 0.5, r * 0.37, '', 'Kubernetes Services', null, null, this.getTagsForStencil(gn, 'kubernetes services', dt).join(' ')) ]; - this.addPalette('mscaeOpsManager', 'CAE / OpsManager', false, mxUtils.bind(this, function(content) - { - for (var i = 0; i < fns.length; i++) - { - content.appendChild(fns[i](content)); - } + this.addPalette('mscaeContainer Service', 'CAE / Container Service', false, mxUtils.bind(this, function(content) + { + for (var i = 0; i < fns.length; i++) + { + content.appendChild(fns[i](content)); + } })); }; - Sidebar.prototype.addMSCAEOtherPalette = function() + Sidebar.prototype.addMSCAEDatabasesServicePalette = function(gn, r, sb, s) { - var s = 'shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.'; - var s2 = 'shadow=0;dashed=0;strokeColor=none;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.other.'; - - // Space savers - var sb = this; - var gn = 'mxgraph.mscae.other'; - var dt = 'ms microsoft cloud enterprise other'; + var dt = 'ms microsoft cloud enterprise database databases db service'; var fns = [ - this.createVertexTemplateEntry(s2 + 'access;fillColor=#BA2024;', - 50, 50, '', 'Access', null, null, this.getTagsForStencil(gn, 'access', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'bi_product_icon;fillColor=#000000;pointerEvents=1;', - 47, 50, '', 'BI Product Icon', null, null, this.getTagsForStencil(gn, 'bi product icon', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'cortana;fillColor=#2CACE2;pointerEvents=1;', - 50, 50, '', 'Cortana', null, null, this.getTagsForStencil(gn, 'cortana', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'excel;fillColor=#008540;', - 50, 50, '', 'Excel', null, null, this.getTagsForStencil(gn, 'excel', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'exchange;fillColor=#2471BA;', - 50, 48, '', 'Exchange', null, null, this.getTagsForStencil(gn, 'exchange', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'lync;fillColor=#2471BA;', - 50, 48, '', 'Lync', null, null, this.getTagsForStencil(gn, 'lync', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'microsoft;', - 50, 50, '', 'Microsoft', null, null, this.getTagsForStencil(gn, 'microsoft', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'outlook;fillColor=#2471BA;', - 50, 50, '', 'Outlook', null, null, this.getTagsForStencil(gn, 'outlook', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'powerappsicon;fillColor=#992065;', - 50, 50, '', 'PowerAppsIcon', null, null, this.getTagsForStencil(gn, 'powerappsicon power apps applications icon', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'powerpoint;fillColor=#DE5D24;', - 50, 50, '', 'PowerPoint', null, null, this.getTagsForStencil(gn, 'powerpoint', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'sharepoint;fillColor=#2471BA;', - 50, 49, '', 'Sharepoint', null, null, this.getTagsForStencil(gn, 'sharepoint', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'skype;fillColor=#00AEF2;', - 50, 50, '', 'Skype', null, null, this.getTagsForStencil(gn, 'skype', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'windows;fillColor=#00188D;', - 48, 50, '', 'Windows', null, null, this.getTagsForStencil(gn, 'windows', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'word;fillColor=#2C3481;', - 50, 50, '', 'Word', null, null, this.getTagsForStencil(gn, 'word', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'xbox;fillColor=#91D250;', - 50, 48, '', 'Xbox', null, null, this.getTagsForStencil(gn, 'xbox', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'xbox_one;', - 50, 16, '', 'Xbox One', null, null, this.getTagsForStencil(gn, 'xbox one', dt).join(' ')) + this.createVertexTemplateEntry(s + 'Azure_Cache_for_Redis.svg;', + r * 0.5, r * 0.5, '', 'Azure Cache for Redis', null, null, this.getTagsForStencil(gn, 'azure cache for redis', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Cache_including_Redis.svg;', + r * 0.5, r * 0.5, '', 'Cache plus Redis', null, null, this.getTagsForStencil(gn, 'cache including plus redis', dt).join(' ')), + this.createVertexTemplateEntry(s + 'CosmosDB.svg;', + r * 0.5, r * 0.5, '', 'CosmosDB', null, null, this.getTagsForStencil(gn, 'cosmosdb db database', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Database_General.svg;', + r * 0.38, r * 0.5, '', 'Database (generic)', null, null, this.getTagsForStencil(gn, 'database generic', dt).join(' ')), + this.createVertexTemplateEntry(s + 'aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Azure_Database_for_MariaDB_servers.svg;', + r * 0.38, r * 0.5, '', 'Azure Database for MariaDB servers', null, null, this.getTagsForStencil(gn, 'azure database for mariadb servers', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Azure_Database_for_MySQL_servers.svg;', + r * 0.38, r * 0.5, '', 'Azure Database for MySQL servers', null, null, this.getTagsForStencil(gn, 'azure database db for mysql servers', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Azure_Database_for_PostgreSQL_servers.svg;', + r * 0.38, r * 0.5, '', 'Azure Database for PostgreSQL servers', null, null, this.getTagsForStencil(gn, 'azure database db for postgresql servers', dt).join(' ')), + this.createVertexTemplateEntry(s + 'SQL_DataWarehouse.svg;', + r * 0.5, r * 0.48, '', 'Azure SQL DataWarehouse', null, null, this.getTagsForStencil(gn, 'azure sql datawarehouse', dt).join(' ')), + this.createVertexTemplateEntry(s + 'BlobBlock.svg;', + r * 0.5, r * 0.42, '', 'Blob Storage', null, null, this.getTagsForStencil(gn, 'blob storage', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Data_Lake.svg;', + r * 0.38, r * 0.5, '', 'Data Lake', null, null, this.getTagsForStencil(gn, 'data lake', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Elastic_Database_Pools.svg;', + r * 0.5, r * 0.5, '', 'Elastic Database Pools', null, null, this.getTagsForStencil(gn, 'elastic database pools', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Elastic_Job_Agents.svg;', + r * 0.42, r * 0.5, '', 'Elastic Job Agents', null, null, this.getTagsForStencil(gn, 'elastic job agents', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Managed_Databases.svg;', + r * 0.47, r * 0.5, '', 'Managed Databases', null, null, this.getTagsForStencil(gn, 'managed databases', dt).join(' ')), + this.createVertexTemplateEntry(s + 'SQL_Database_generic.svg;', + r * 0.38, r * 0.5, '', 'SQL Databases', null, null, this.getTagsForStencil(gn, 'sql databases', dt).join(' ')), + this.createVertexTemplateEntry(s + 'SQL_Managed_Instances.svg;', + r * 0.38, r * 0.5, '', 'SQL Managed Instances', null, null, this.getTagsForStencil(gn, 'sql managed instances', dt).join(' ')), + this.createVertexTemplateEntry(s + 'dep/SQL_Server_Stretch_DB.svg;', + r * 0.5, r * 0.5, '', 'SQL Server Stretch DB', null, null, this.getTagsForStencil(gn, 'sql server stretch db database', dt).join(' ')), + this.createVertexTemplateEntry(s + 'SQL_Servers.svg;', + r * 0.5, r * 0.5, '', 'SQL Servers', null, null, this.getTagsForStencil(gn, 'sql servers', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Virtual_Clusters.svg;', + r * 0.5, r * 0.48, '', 'Virtual Clusters', null, null, this.getTagsForStencil(gn, 'virtual clusters', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Virtual_Datacenter.svg;', + r * 0.5, r * 0.5, '', 'Virtual Datacenter', null, null, this.getTagsForStencil(gn, 'virtual datacenter', dt).join(' ')) ]; - this.addPalette('mscaeOther', 'CAE / Other', false, mxUtils.bind(this, function(content) + this.addPalette('mscaeDatabases Service', 'CAE / Databases Service', false, mxUtils.bind(this, function(content) { for (var i = 0; i < fns.length; i++) { @@ -1543,42 +822,31 @@ })); }; - Sidebar.prototype.addMSCAESystemCenterPalette = function() + Sidebar.prototype.addMSCAEDevOpsServicePalette = function(gn, r, sb, s) { - var s = 'shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.'; - var s2 = 'shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;strokeColor=none;shape=mxgraph.mscae.system_center.'; - var s3 = 'shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.'; - - // Space savers - var sb = this; - var gn = 'mxgraph.mscae.system_center'; - var dt = 'ms microsoft cloud enterprise system center'; + var dt = 'ms microsoft cloud enterprise devops service'; var fns = [ - this.createVertexTemplateEntry(s2 + 'admin_console;fillColor=#515151;strokeColor=none;pointerEvents=1;', - 50, 36, '', 'Admin Console', null, null, this.getTagsForStencil(gn, 'admin console', dt).join(' ')), - this.createVertexTemplateEntry(s3 + 'enterprise.database_server;fillColor=#515151;strokeColor=none;', - 38, 50, '', 'Central Administration Site', null, null, this.getTagsForStencil(gn, 'central administration site', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'central_administration_site_sql;fillColor=#515151;strokeColor=none;', - 38, 50, '', 'Central Administration Site SQL', null, null, this.getTagsForStencil(gn, 'central administration site sql', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'cloud_distribution_point;fillColor=#515151;strokeColor=none;', - 46, 50, '', 'Cloud Distribution Point', null, null, this.getTagsForStencil(gn, 'cloud distribution point', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'distribution_point;fillColor=#515151;strokeColor=none;', - 44, 50, '', 'Distribution Point', null, null, this.getTagsForStencil(gn, 'distribution point', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'management_point;fillColor=#515151;strokeColor=none;', - 48, 50, '', 'Management Point', null, null, this.getTagsForStencil(gn, 'management point', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'primary_site;fillColor=#515151;strokeColor=none;', - 38, 50, '', 'Primary Site', null, null, this.getTagsForStencil(gn, 'primary site', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'roles;fillColor=#515151;strokeColor=none;', - 42, 50, '', 'Roles', null, null, this.getTagsForStencil(gn, 'roles', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'secondary_site;fillColor=#515151;strokeColor=none;pointerEvents=1;', - 41, 50, '', 'Secondary Site', null, null, this.getTagsForStencil(gn, 'secondary site', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'software_update_point;fillColor=#515151;strokeColor=none;pointerEvents=1;', - 50, 43, '', 'Software Update Point', null, null, this.getTagsForStencil(gn, 'software update point', dt).join(' ')) + this.createVertexTemplateEntry(s + 'Application_Insights.svg;', + r * 0.32, r * 0.5, '', 'Application Insights', null, null, this.getTagsForStencil(gn, 'application insights', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Azure_Artifacts.svg;', + r * 0.5, r * 0.5, '', 'Azure Artifacts', null, null, this.getTagsForStencil(gn, 'azure artifacts', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Azure_Boards.svg;', + r * 0.5, r * 0.5, '', 'Azure Boards', null, null, this.getTagsForStencil(gn, 'azure boards', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Azure_DevOps.svg;', + r * 0.5, r * 0.5, '', 'Azure DevOps', null, null, this.getTagsForStencil(gn, 'azure devops', dt).join(' ')), + this.createVertexTemplateEntry(s + 'DevTest_Labs.svg;', + r * 0.5, r * 0.5, '', 'Azure DevTest Labs', null, null, this.getTagsForStencil(gn, 'azure devtest labs', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Azure_Pipelines .svg;', + r * 0.5, r * 0.5, '', 'Azure Pipelines', null, null, this.getTagsForStencil(gn, 'azure pipelines', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Azure_Repos.svg;', + r * 0.45, r * 0.5, '', 'Azure Repos', null, null, this.getTagsForStencil(gn, 'azure repos', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Azure_Test_Plans.svg;', + r * 0.45, r * 0.5, '', 'Azure Test Plans', null, null, this.getTagsForStencil(gn, 'azure test plans', dt).join(' ')) ]; - this.addPalette('mscaeSystem Center', 'CAE / System Center', false, mxUtils.bind(this, function(content) + this.addPalette('mscaeDevOps Service', 'CAE / DevOps Service', false, mxUtils.bind(this, function(content) { for (var i = 0; i < fns.length; i++) { @@ -1587,56 +855,65 @@ })); }; - Sidebar.prototype.addMSCAEVMPalette = function() + Sidebar.prototype.addMSCAEGeneralServicePalette = function(gn, r, sb, s) { - var s = 'pointerEvents=1;shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.azure.'; - var s2 = 'pointerEvents=1;shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;strokeColor=none;shape=mxgraph.mscae.vm.'; - var s3 = 'pointerEvents=1;shadow=0;dashed=0;html=1;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.'; - - // Space savers - var sb = this; - var gn = 'mxgraph.mscae.vm'; - var dt = 'ms microsoft cloud enterprise vm virtual machine '; + var dt = 'ms microsoft cloud enterprise general service'; var fns = [ - this.createVertexTemplateEntry(s2 + 'active_directory;fillColor=#00188F;strokeColor=none;', - 50, 41, '', 'Active Directory', null, null, this.getTagsForStencil(gn, 'active directory', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'active_directory_multi;fillColor=#00188F;strokeColor=none;', - 58, 50, '', 'Active Directory (multi)', null, null, this.getTagsForStencil(gn, 'active directory multi', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'application_server;fillColor=#00188F;strokeColor=none;', - 50, 41, '', 'Application Server', null, null, this.getTagsForStencil(gn, 'application server', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'application_server_multi;fillColor=#00188F;strokeColor=none;', - 58, 50, '', 'Application Server (multi)', null, null, this.getTagsForStencil(gn, 'application server multi', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'database_server;fillColor=#00188F;strokeColor=none;', - 50, 41, '', 'Database Server', null, null, this.getTagsForStencil(gn, 'database server', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'database_server_multi;fillColor=#00188F;strokeColor=none;', - 58, 50, '', 'Database Server (multi)', null, null, this.getTagsForStencil(gn, 'database server multi', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'directory_server;fillColor=#00188F;strokeColor=none;', - 50, 41, '', 'Directory Server', null, null, this.getTagsForStencil(gn, 'directory server', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'directory_server_multi;fillColor=#00188F;strokeColor=none;', - 58, 50, '', 'Directory Server (multi)', null, null, this.getTagsForStencil(gn, 'directory server multi', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'domain_server;fillColor=#00188F;strokeColor=none;', - 50, 41, '', 'Domain Server', null, null, this.getTagsForStencil(gn, 'domain server', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'domain_server_multi;fillColor=#00188F;strokeColor=none;', - 58, 50, '', 'Domain Server (multi)', null, null, this.getTagsForStencil(gn, 'domain server multi', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'file_server2;fillColor=#00188F;strokeColor=none;', - 50, 41, '', 'File Server', null, null, this.getTagsForStencil(gn, 'file server', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'file_server;fillColor=#00188F;strokeColor=none;', - 50, 41, '', 'File Server', null, null, this.getTagsForStencil(gn, 'file server', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'file_server_multi;fillColor=#00188F;strokeColor=none;', - 58, 50, '', 'File Server (multi)', null, null, this.getTagsForStencil(gn, 'file server multi', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'web_server;fillColor=#00188F;strokeColor=none;', - 50, 41, '', 'Web Server', null, null, this.getTagsForStencil(gn, 'web server', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'web_server_multi;fillColor=#00188F;strokeColor=none;', - 58, 50, '', 'Web Server (multi)', null, null, this.getTagsForStencil(gn, 'web server multi', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'windows_server;fillColor=#00188F;strokeColor=none;', - 50, 41, '', 'Windows Server', null, null, this.getTagsForStencil(gn, 'windows server', dt).join(' ')), - this.createVertexTemplateEntry(s2 + 'windows_server_multi;fillColor=#00188F;strokeColor=none;', - 58, 50, '', 'Windows Server (multi)', null, null, this.getTagsForStencil(gn, 'windows server multi', dt).join(' ')) + this.createVertexTemplateEntry(s + 'Grid3x3.svg;', + r * 0.5, r * 0.5, '', 'All Resources', null, null, this.getTagsForStencil(gn, 'all resources', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Azure_Home.svg;', + r * 0.5, r * 0.4, '', 'Azure Home', null, null, this.getTagsForStencil(gn, 'azure home', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Developer_Tools.svg;', + r * 0.47, r * 0.5, '', 'Developer Tools', null, null, this.getTagsForStencil(gn, 'developer tools', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Support_2.svg;', + r * 0.32, r * 0.5, '', 'Help, Support', null, null, this.getTagsForStencil(gn, 'help support', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Info_2.svg;', + r * 0.5, r * 0.5, '', 'Information', null, null, this.getTagsForStencil(gn, 'info information', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Management_Groups.svg;', + r * 0.5, r * 0.4, '', 'Management Groups', null, null, this.getTagsForStencil(gn, 'management groups', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Store_Marketplace.svg;', + r * 0.44, r * 0.5, '', 'Marketplace', null, null, this.getTagsForStencil(gn, 'marketplace store', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Store_Marketplace.svg;', + r * 0.44, r * 0.5, '', 'Marketplace', null, null, this.getTagsForStencil(gn, 'marketplace store', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Quick_Start_Center.svg;', + r * 0.5, r * 0.5, '', 'Quick Start Center', null, null, this.getTagsForStencil(gn, 'quick start center', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Clock.svg;', + r * 0.5, r * 0.5, '', 'Recent', null, null, this.getTagsForStencil(gn, 'clock recent', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Reservations.svg;', + r * 0.5, r * 0.5, '', 'Reservations', null, null, this.getTagsForStencil(gn, 'reservations', dt).join(' ')), + this.createVertexTemplateEntry(s + 'ResourceGroup.svg;', + r * 0.5, r * 0.4, '', 'Resource Groups', null, null, this.getTagsForStencil(gn, 'resource group groups', dt).join(' ')), + this.createVertexTemplateEntry(s + 'ServiceHealth.svg;', + r * 0.5, r * 0.44, '', 'Service Health', null, null, this.getTagsForStencil(gn, 'service health', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Shared_Dashboard.svg;', + r * 0.5, r * 0.41, '', 'Shared Dashboard', null, null, this.getTagsForStencil(gn, 'shared dashboard', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Key.svg;', + r * 0.31, r * 0.5, '', 'Subscriptions', null, null, this.getTagsForStencil(gn, 'subscriptions key', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Support_Requests.svg;', + r * 0.5, r * 0.46, '', 'Support Requests', null, null, this.getTagsForStencil(gn, 'support requests', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Tag.svg;', + r * 0.5, r * 0.5, '', 'Tag', null, null, this.getTagsForStencil(gn, 'tag', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Tags.svg;', + r * 0.42, r * 0.5, '', 'Tags', null, null, this.getTagsForStencil(gn, 'tags', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Templates.svg;', + r * 0.44, r * 0.5, '', 'Templates', null, null, this.getTagsForStencil(gn, 'templates', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Two_User_Icon.svg;', + r * 0.5, r * 0.5, '', 'Two User Icon', null, null, this.getTagsForStencil(gn, 'two user icon', dt).join(' ')), + this.createVertexTemplateEntry(s + 'User_Health_Icon.svg;', + r * 0.46, r * 0.5, '', 'User Health Icon', null, null, this.getTagsForStencil(gn, 'user health icon', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Person.svg;', + r * 0.37, r * 0.5, '', 'User', null, null, this.getTagsForStencil(gn, 'user person', dt).join(' ')), + this.createVertexTemplateEntry(s + 'User_Privacy.svg;', + r * 0.36, r * 0.5, '', 'User Privacy', null, null, this.getTagsForStencil(gn, 'user privacy', dt).join(' ')), + this.createVertexTemplateEntry(s + 'User_Resource.svg;', + r * 0.48, r * 0.5, '', 'User Resource', null, null, this.getTagsForStencil(gn, 'user resource', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Info.svg;', + r * 0.5, r * 0.5, '', 'What\'s New', null, null, this.getTagsForStencil(gn, 'info whats new', dt).join(' ')) ]; - this.addPalette('mscaeVirtual Machine', 'CAE / Virtual Machine', false, mxUtils.bind(this, function(content) + this.addPalette('mscaeGeneral Service', 'CAE / General Service', false, mxUtils.bind(this, function(content) { for (var i = 0; i < fns.length; i++) { @@ -1644,708 +921,548 @@ } })); }; - - Sidebar.prototype.addMSCAECloudColorPalette = function() + + Sidebar.prototype.addMSCAEIdentityServicePalette = function(gn, r, sb, s) { - var d = 50; - var dt = 'ms microsoft cloud enterprise color '; - var sb = this; - var s = 'aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/'; - var gn = 'mxgraph.mscae'; - + var dt = 'ms microsoft cloud enterprise identity service'; + var fns = [ - this.createVertexTemplateEntry(s + 'Active_Directory.svg;', - d, d, '', 'Active Directory', false, null, this.getTagsForStencil(gn, 'active directory', dt).join(' ')), - this.createVertexTemplateEntry(s + 'ActiveDirectory.svg;', - d, d, '', 'Active Directory', false, null, this.getTagsForStencil(gn, 'active directory', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Active_Directory_Health_Monitoring.svg;', - d, d, '', 'Active Directory - Health Monitoring', false, null, this.getTagsForStencil(gn, 'active directory health monitoring', dt).join(' ')), - this.createVertexTemplateEntry(s + 'ActiveDirectoryDomain.svg;', - d, d, '', 'Active Directory - Domain', false, null, this.getTagsForStencil(gn, 'active directory domain', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Address_Space.svg;', - d, d * 0.57, '', 'Address Space', false, null, this.getTagsForStencil(gn, 'address space', dt).join(' ')), - this.createVertexTemplateEntry(s + 'AddTeamMember.svg;', - d, d * 0.87, '', 'AddTeamMember', false, null, this.getTagsForStencil(gn, 'add team member', dt).join(' ')), - this.createVertexTemplateEntry(s + 'ADFS.svg;', - d, d, '', 'ADFS', false, null, this.getTagsForStencil(gn, 'adfs', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Advisor.svg;', - d, d, '', 'Advisor', false, null, this.getTagsForStencil(gn, 'advisor', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Alien.svg;', - d, d, '', 'Alien', false, null, this.getTagsForStencil(gn, 'alien', dt).join(' ')), - this.createVertexTemplateEntry(s + 'AlienSad.svg;', - d * 0.94, d * 0.98, '', 'AlienSad', false, null, this.getTagsForStencil(gn, 'alien sad', dt).join(' ')), - this.createVertexTemplateEntry(s + 'API.svg;', - d, d * 0.86, '', 'API', false, null, this.getTagsForStencil(gn, 'api application programming interface', dt).join(' ')), - this.createVertexTemplateEntry(s + 'APIDefinition.svg;', - d * 0.88, d, '', 'APIDefinition', false, null, this.getTagsForStencil(gn, 'api definition application programming interface', dt).join(' ')), - this.createVertexTemplateEntry(s + 'API_Management.svg;', - d, d * 0.83, '', 'API Management', false, null, this.getTagsForStencil(gn, 'api management application programming interface', dt).join(' ')), - this.createVertexTemplateEntry(s + 'App_Service.svg;', - d, d, '', 'App Service', false, null, this.getTagsForStencil(gn, 'app service', dt).join(' ')), - this.createVertexTemplateEntry(s + 'App_Service_API_Apps.svg;', - d, d * 0.86, '', 'App Service - API Apps', false, null, this.getTagsForStencil(gn, 'app service api apps application programmming interface', dt).join(' ')), - this.createVertexTemplateEntry(s + 'AppServiceConnectivity.svg;', - d, d * 0.92, '', 'App Service - Connectivity', false, null, this.getTagsForStencil(gn, 'app service application connectivity', dt).join(' ')), - this.createVertexTemplateEntry(s + 'AppServiceEnvironment.svg;', - d, d * 0.92, '', 'App Service - Environment', false, null, this.getTagsForStencil(gn, 'app service application environment', dt).join(' ')), - this.createVertexTemplateEntry(s + 'App_Service_Frontend.svg;', - d, d * 0.74, '', 'App Service - Frontend', false, null, this.getTagsForStencil(gn, 'app service frontend application', dt).join(' ')), - this.createVertexTemplateEntry(s + 'App_Service_IPAddress.svg;', - d, d * 0.85, '', 'App Service - IP Address', false, null, this.getTagsForStencil(gn, 'app service application ip address internet protocol', dt).join(' ')), - this.createVertexTemplateEntry(s + 'App_Service_Mobile_App.svg;', - d * 0.69, d, '', 'App Service - Mobile App', false, null, this.getTagsForStencil(gn, 'app service mobile application', dt).join(' ')), - this.createVertexTemplateEntry(s + 'App_Service_Worker_Pools.svg;', - d, d, '', 'App Service - Worker Pools', false, null, this.getTagsForStencil(gn, 'app service worker pools application', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Application_Gateway.svg;', - d, d, '', 'Application Gateway', false, null, this.getTagsForStencil(gn, 'application app gateway', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Application_Insights.svg;', - d * 0.65, d, '', 'Application Insights', false, null, this.getTagsForStencil(gn, 'application app insights', dt).join(' ')), - this.createVertexTemplateEntry(s + 'ARMExplorer.svg;', - d, d * 0.86, '', 'ARMExplorer', false, null, this.getTagsForStencil(gn, 'armExplorer', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Auditing.svg;', - d * 0.8, d, '', 'Auditing', false, null, this.getTagsForStencil(gn, 'auditing', dt).join(' ')), - this.createVertexTemplateEntry(s + 'AuditingServer.svg;', - d, d, '', 'Auditing Server', false, null, this.getTagsForStencil(gn, 'auditing server', dt).join(' ')), - this.createVertexTemplateEntry(s + 'AutoBackup.svg;', - d, d, '', 'AutoBackup', false, null, this.getTagsForStencil(gn, 'autobackup auto backup', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Automation.svg;', - d, d, '', 'Automation', false, null, this.getTagsForStencil(gn, 'automation', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Avatar.svg;', - d, d, '', 'Avatar', false, null, this.getTagsForStencil(gn, 'avatar', dt).join(' ')), - this.createVertexTemplateEntry(s + 'AvatarDefault.svg;', - d, d, '', 'Avatar Default', false, null, this.getTagsForStencil(gn, 'avatar default', dt).join(' ')), - this.createVertexTemplateEntry(s + 'AvatarUnknown.svg;', - d * 0.6, d * 0.6, '', 'Avatar Unknown', false, null, this.getTagsForStencil(gn, 'avatar unknown', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Avatar.svg;', - d, d, '', 'Avatar', false, null, this.getTagsForStencil(gn, 'avatar', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Backlog.svg;', - d, d * 0.83, '', 'Backlog', false, null, this.getTagsForStencil(gn, 'backlog', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Backup.svg;', - d, d * 0.83, '', 'Backup', false, null, this.getTagsForStencil(gn, 'backup', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Batch.svg;', - d, d * 0.93, '', 'Batch', false, null, this.getTagsForStencil(gn, 'batch', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Batch_Task.svg;', - d, d * 0.88, '', 'Batch Task', false, null, this.getTagsForStencil(gn, 'batch task', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Batch_TaskVM.svg;', - d, d * 0.95, '', 'Batch TaskVM', false, null, this.getTagsForStencil(gn, 'batch task vm virtual machine', dt).join(' ')), - this.createVertexTemplateEntry(s + 'BillingHub.svg;', - d, d, '', 'Billing Hub', false, null, this.getTagsForStencil(gn, 'billing hub', dt).join(' ')), - this.createVertexTemplateEntry(s + 'BlobBlock.svg;', - d, d * 0.85, '', 'Blob Block', false, null, this.getTagsForStencil(gn, 'blob block', dt).join(' ')), - this.createVertexTemplateEntry(s + 'BlobPage.svg;', - d, d * 0.85, '', 'Blob Page', false, null, this.getTagsForStencil(gn, 'blob page', dt).join(' ')), - this.createVertexTemplateEntry(s + 'BizTalk_Services.svg;', - d, d, '', 'BizTalk Services', false, null, this.getTagsForStencil(gn, 'biztalk services', dt).join(' ')), - this.createVertexTemplateEntry(s + 'BizTalk_Services_Hybrid_Connections.svg;', - d, d, '', 'BizTalk Services - Hybrid Connections', false, null, this.getTagsForStencil(gn, 'biztalk services hybrid connections', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Blockchain.svg;', - d, d * 0.75, '', 'Blockchain', false, null, this.getTagsForStencil(gn, 'blockchain', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Book.svg;', - d, d * 0.76, '', 'Book', false, null, this.getTagsForStencil(gn, 'book', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Branch.svg;', - d, d, '', 'Branch', false, null, this.getTagsForStencil(gn, 'branch', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Browser.svg;', - d, d * 0.85, '', 'Browser', false, null, this.getTagsForStencil(gn, 'browser', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Bug.svg;', - d, d, '', 'Bug', false, null, this.getTagsForStencil(gn, 'bug', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Building_Blocks.svg;', - d, d * 0.89, '', 'Building Blocks', false, null, this.getTagsForStencil(gn, 'building blocks', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Builds.svg;', - d, d, '', 'Builds', false, null, this.getTagsForStencil(gn, 'builds', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Calendar.svg;', - d, d, '', 'Calendar', false, null, this.getTagsForStencil(gn, 'calendar', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Cache_including_Redis.svg;', - d, d, '', 'Cache (including Redis)', false, null, this.getTagsForStencil(gn, 'Cache including Redis', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Cache_Redis_Product.svg;', - d, d * 0.84, '', 'Cache (Redis Product)', false, null, this.getTagsForStencil(gn, 'cache redis product', dt).join(' ')), - this.createVertexTemplateEntry(s + 'CDNrocket.svg;', - d, d, '', 'CDNrocket', false, null, this.getTagsForStencil(gn, 'cdn rocket', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Certificate.svg;', - d, d * 0.84, '', 'Certificate', false, null, this.getTagsForStencil(gn, 'certificate', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Chart.svg;', - d, d * 0.97, '', 'Chart', false, null, this.getTagsForStencil(gn, 'chart', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Check.svg;', - d, d * 0.86, '', 'Check', false, null, this.getTagsForStencil(gn, 'check', dt).join(' ')), - this.createVertexTemplateEntry(s + 'ClassicIPAddress.svg;', - d, d * 0.85, '', 'ClassicIPAddress', false, null, this.getTagsForStencil(gn, 'classicipaddress classic ip address internet protocol', dt).join(' ')), - this.createVertexTemplateEntry(s + 'ClassicStorage.svg;', - d, d * 0.86, '', 'ClassicStorage', false, null, this.getTagsForStencil(gn, 'classicstorage classic storage', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Clock.svg;', - d, d, '', 'Clock', false, null, this.getTagsForStencil(gn, 'clock time', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Cloud_Service.svg;', - d, d * 0.85, '', 'Cloud Service', false, null, this.getTagsForStencil(gn, 'cloud service', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Code.svg;', - d, d * 0.85, '', 'Code', false, null, this.getTagsForStencil(gn, 'code', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Cognitive_Services_Computer_Vision.svg;', - d, d, '', 'Cognitive Services - Computer Vision', false, null, this.getTagsForStencil(gn, 'cognitive services computer vision', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Cognitive_Services_emotion.svg;', - d, d, '', 'Cognitive Services - Emotion', false, null, this.getTagsForStencil(gn, 'cognitive services emotion', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Cognitive_Services_face.svg;', - d, d, '', 'Cognitive Services - Face', false, null, this.getTagsForStencil(gn, 'cognitive services face', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Cognitive_Services_luis.svg;', - d, d, '', 'Cognitive Services - Luis', false, null, this.getTagsForStencil(gn, 'cognitive services luis', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Cognitive_Services_recommendations.svg;', - d, d, '', 'Cognitive Services - Recommendations', false, null, this.getTagsForStencil(gn, 'cognitive services recommendations', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Cognitive_Services_Speech.svg;', - d, d, '', 'Cognitive Services - Speech', false, null, this.getTagsForStencil(gn, 'cognitive services speech', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Cognitive_Services_textanalytics.svg;', - d, d, '', 'Cognitive Services - Textanalytics', false, null, this.getTagsForStencil(gn, 'cognitive services textanalytics', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Cognitive_Services_web_language_model.svg;', - d, d, '', 'Cognitive Services - Web Language Model', false, null, this.getTagsForStencil(gn, 'cognitive services web language model', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Commits.svg;', - d, d * 0.94, '', 'Commits', false, null, this.getTagsForStencil(gn, 'commits', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Connection.svg;', - d, d * 0.62, '', 'Connection', false, null, this.getTagsForStencil(gn, 'connection', dt).join(' ')), - this.createVertexTemplateEntry(s + 'ContactInfo.svg;', - d, d, '', 'Contact Info', false, null, this.getTagsForStencil(gn, 'contactinfo contact info', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Container_Service.svg;', - d, d * 0.74, '', 'Container Service', false, null, this.getTagsForStencil(gn, 'container_Service', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Content_Delivery_Network.svg;', - d, d * 0.46, '', 'Content Delivery Network', false, null, this.getTagsForStencil(gn, 'content delivery network', dt).join(' ')), - this.createVertexTemplateEntry(s + 'ContentManagementSystem.svg;', - d, d, '', 'Content Management System', false, null, this.getTagsForStencil(gn, 'content management system', dt).join(' ')), - this.createVertexTemplateEntry(s + 'ContinuousExport.svg;', - d, d, '', 'Continuous Export', false, null, this.getTagsForStencil(gn, 'continuous export', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Controls.svg;', - d * 0.84, d, '', 'Controls', false, null, this.getTagsForStencil(gn, 'controls vertical', dt).join(' ')), - this.createVertexTemplateEntry(s + 'ControlsHorizontal.svg;', - d, d * 0.84, '', 'Controls Horizontal', false, null, this.getTagsForStencil(gn, 'controls horizontal', dt).join(' ')), - this.createVertexTemplateEntry(s + 'CosmosDB.svg;', - d, d, '', 'CosmosDB', false, null, this.getTagsForStencil(gn, 'cosmosdb cosmos db database', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Counter.svg;', - d, d * 0.8, '', 'Counter', false, null, this.getTagsForStencil(gn, 'counter', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Cubes.svg;', - d, d * 0.98, '', 'Cubes', false, null, this.getTagsForStencil(gn, 'cubes', dt).join(' ')), - this.createVertexTemplateEntry(s + 'CustomDomain.svg;', - d, d * 0.85, '', 'Custom Domain', false, null, this.getTagsForStencil(gn, 'custom domain', dt).join(' ')), - this.createVertexTemplateEntry(s + 'CustomerInsights.svg;', - d, d, '', 'CustomerInsights', false, null, this.getTagsForStencil(gn, 'customerinsights customer insights', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Data_Catalog.svg;', - d * 0.94, d, '', 'Data Catalog', false, null, this.getTagsForStencil(gn, 'data catalog', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Data_Factory.svg;', - d, d, '', 'Data Factory', false, null, this.getTagsForStencil(gn, 'data factory', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Data_Lake_Analytics.svg;', - d, d, '', 'Data Lake - Analytics', false, null, this.getTagsForStencil(gn, 'data lake analytics', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Data_Lake_Store.svg;', - d, d * 0.78, '', 'Data Lake - Store', false, null, this.getTagsForStencil(gn, 'data lake store', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Data_Warehouse.svg;', - d, d * 0.97, '', 'Data Warehouse', false, null, this.getTagsForStencil(gn, 'data warehouse', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Database_General.svg;', - d * 0.75, d, '', 'Database (general)', false, null, this.getTagsForStencil(gn, 'database general', dt).join(' ')), - this.createVertexTemplateEntry(s + 'DatabaseRestore.svg;', - d * 0.76, d, '', 'Database Restore', false, null, this.getTagsForStencil(gn, 'database restore', dt).join(' ')), - this.createVertexTemplateEntry(s + 'dataExport.svg;', - d * 0.75, d, '', 'dataExport', false, null, this.getTagsForStencil(gn, 'dataexport data export', dt).join(' ')), - this.createVertexTemplateEntry(s + 'dataRetention.svg;', - d * 0.75, d, '', 'dataRetention', false, null, this.getTagsForStencil(gn, 'dataretention', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Databricks.svg;', - d * 0.95, d, '', 'Databricks', false, null, this.getTagsForStencil(gn, 'databricks', dt).join(' ')), - this.createVertexTemplateEntry(s + 'DataServices_category_rollup.svg;', - d * 0.75, d, '', 'DataServices - Category Rollup', false, null, this.getTagsForStencil(gn, 'dataservices category rollup', dt).join(' ')), - this.createVertexTemplateEntry(s + 'DevConsole.svg;', - d, d * 0.85, '', 'DevConsole', false, null, this.getTagsForStencil(gn, 'devconsole dev developer console', dt).join(' ')), - this.createVertexTemplateEntry(s + 'DevTest_Labs.svg;', - d, d, '', 'DevTest Labs', false, null, this.getTagsForStencil(gn, 'devtest labs', dt).join(' ')), - this.createVertexTemplateEntry(s + 'DirectorySync.svg;', - d, d, '', 'DirectorySync', false, null, this.getTagsForStencil(gn, 'directorysync directory sync', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Discard.svg;', - d, d, '', 'Discard', false, null, this.getTagsForStencil(gn, 'discard', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Discs.svg;', - d, d * 0.85, '', 'Discs', false, null, this.getTagsForStencil(gn, 'discs', dt).join(' ')), - this.createVertexTemplateEntry(s + 'DNS.svg;', - d, d, '', 'DNS', false, null, this.getTagsForStencil(gn, 'dns domain name server', dt).join(' ')), - this.createVertexTemplateEntry(s + 'DocumentDB.svg;', - d * 0.76, d, '', 'DocumentDB', false, null, this.getTagsForStencil(gn, 'documentdb document db database', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Download.svg;', - d, d * 0.92, '', 'Download', false, null, this.getTagsForStencil(gn, 'download', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Elastic_Database_Pools.svg;', - d, d, '', 'Elastic Database Pools', false, null, this.getTagsForStencil(gn, 'elastic database pools', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Event_Grid.svg;', - d, d, '', 'Event Grid', false, null, this.getTagsForStencil(gn, 'event grid', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Event_Hubs.svg;', - d * 0.97, d, '', 'Event Hubs', false, null, this.getTagsForStencil(gn, 'event hubs', dt).join(' ')), - this.createVertexTemplateEntry(s + 'EventLog.svg;', - d * 0.9, d, '', 'Event Log', false, null, this.getTagsForStencil(gn, 'event log', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Express_Route.svg;', - d, d * 0.61, '', 'Express Route', false, null, this.getTagsForStencil(gn, 'express route', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Extensions.svg;', - d, d, '', 'Extensions', false, null, this.getTagsForStencil(gn, 'extensions', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Favorite.svg;', - d * 0.7, d, '', 'Favorite', false, null, this.getTagsForStencil(gn, 'favorite', dt).join(' ')), - this.createVertexTemplateEntry(s + 'File.svg;', - d * 0.88, d, '', 'File', false, null, this.getTagsForStencil(gn, 'file', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Files.svg;', - d * 0.96, d, '', 'Files', false, null, this.getTagsForStencil(gn, 'files', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Folder.svg;', - d, d * 0.92, '', 'Folder', false, null, this.getTagsForStencil(gn, 'folder', dt).join(' ')), - this.createVertexTemplateEntry(s + 'FolderBlank.svg;', - d, d * 0.92, '', 'Folder (Blank)', false, null, this.getTagsForStencil(gn, 'folder blank', dt).join(' ')), - this.createVertexTemplateEntry(s + 'FolderCube.svg;', - d, d * 0.92, '', 'Folder (Cube)', false, null, this.getTagsForStencil(gn, 'folder cube', dt).join(' ')), - this.createVertexTemplateEntry(s + 'FolderWebsite.svg;', - d, d * 0.92, '', 'Folder (Website)', false, null, this.getTagsForStencil(gn, 'folder website', dt).join(' ')), - this.createVertexTemplateEntry(s + 'ForPlacementOnly.svg;', - d, d, '', 'For Placement Only', false, null, this.getTagsForStencil(gn, 'for placement only', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Ftp.svg;', - d, d * 0.85, '', 'FTP', false, null, this.getTagsForStencil(gn, 'ftp file transfer protocol', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Functions.svg;', - d, d * 0.92, '', 'Functions', false, null, this.getTagsForStencil(gn, 'functions', dt).join(' ')), - this.createVertexTemplateEntry(s + 'GalleryManagement.svg;', - d, d, '', 'Gallery Management', false, null, this.getTagsForStencil(gn, 'gallery management', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Gateway.svg;', - d * 0.88, d, '', 'Gateway', false, null, this.getTagsForStencil(gn, 'gateway', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Gear.svg;', - d, d, '', 'Gear', false, null, this.getTagsForStencil(gn, 'gear', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Gear_2.svg;', - d, d, '', 'Gear', false, null, this.getTagsForStencil(gn, 'gear', dt).join(' ')), - this.createVertexTemplateEntry(s + 'GearAlternate.svg;', - d, d, '', 'Gear (Alternate)', false, null, this.getTagsForStencil(gn, 'gear alternate', dt).join(' ')), - this.createVertexTemplateEntry(s + 'GearAlternate_2.svg;', - d, d, '', 'Gear (Alternate)', false, null, this.getTagsForStencil(gn, 'gear alternate', dt).join(' ')), - this.createVertexTemplateEntry(s + 'GeoReplicationPremium.svg;', - d, d, '', 'GeoReplication Premium', false, null, this.getTagsForStencil(gn, 'geo replication premium', dt).join(' ')), - this.createVertexTemplateEntry(s + 'GeoReplicationStandard.svg;', - d * 0.9, d * 0.95, '', 'GeoReplication Standard', false, null, this.getTagsForStencil(gn, 'geo replication standard', dt).join(' ')), - this.createVertexTemplateEntry(s + 'GetMoreLicense.svg;', - d, d, '', 'GetMoreLicense', false, null, this.getTagsForStencil(gn, 'get more license', dt).join(' ')), - this.createVertexTemplateEntry(s + 'GetStarted.svg;', - d, d * 0.74, '', 'GetStarted', false, null, this.getTagsForStencil(gn, 'get started', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Gift.svg;', - d * 0.96, d, '', 'Gift', false, null, this.getTagsForStencil(gn, 'gift', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Globe.svg;', - d * 0.87, d, '', 'Globe', false, null, this.getTagsForStencil(gn, 'globe', dt).join(' ')), - this.createVertexTemplateEntry(s + 'GlobeError.svg;', - d * 0.87, d, '', 'Globe (Error)', false, null, this.getTagsForStencil(gn, 'globe error', dt).join(' ')), - this.createVertexTemplateEntry(s + 'GlobeSuccess.svg;', - d * 0.87, d, '', 'Globe (Success)', false, null, this.getTagsForStencil(gn, 'globe success', dt).join(' ')), - this.createVertexTemplateEntry(s + 'GlobeWarning.svg;', - d * 0.87, d, '', 'Globe (Warning)', false, null, this.getTagsForStencil(gn, 'globe warning', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Go.svg;', - d, d, '', 'Go', false, null, this.getTagsForStencil(gn, 'go', dt).join(' ')), - this.createVertexTemplateEntry(s + 'GreatScott.svg;', - d, d * 0.88, '', 'Great Scott', false, null, this.getTagsForStencil(gn, 'great scott', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Grid.svg;', - d, d, '', 'Grid', false, null, this.getTagsForStencil(gn, 'grid', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Grid3x3.svg;', - d * 0.74, d * 0.74, '', 'Grid 3x3', false, null, this.getTagsForStencil(gn, 'grid 3x3 3by3', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Guide.svg;', - d, d, '', 'Guide', false, null, this.getTagsForStencil(gn, 'guide', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Guide_2.svg;', - d, d, '', 'Guide', false, null, this.getTagsForStencil(gn, 'guide', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Hammer.svg;', - d, d, '', 'Hammer', false, null, this.getTagsForStencil(gn, 'hammer', dt).join(' ')), - this.createVertexTemplateEntry(s + 'HDInsight.svg;', - d, d * 0.77, '', 'HDInsight', false, null, this.getTagsForStencil(gn, 'hdinsight', dt).join(' ')), - this.createVertexTemplateEntry(s + 'HealthErrorBadge.svg;', - d, d * 0.78, '', 'Health Error Badge', false, null, this.getTagsForStencil(gn, 'health error badge', dt).join(' ')), - this.createVertexTemplateEntry(s + 'HealthWarningBadge.svg;', - d, d * 0.73, '', 'Health Warning Badge', false, null, this.getTagsForStencil(gn, 'health error badge', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Heart.svg;', - d, d * 0.85, '', 'Heart', false, null, this.getTagsForStencil(gn, 'heart', dt).join(' ')), - this.createVertexTemplateEntry(s + 'HeartPulse.svg;', - d, d * 0.85, '', 'Heart (Pulse)', false, null, this.getTagsForStencil(gn, 'heart pulse', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Home.svg;', - d, d * 0.9, '', 'Home', false, null, this.getTagsForStencil(gn, 'home', dt).join(' ')), - this.createVertexTemplateEntry(s + 'HybridConnectionEndpoint.svg;', - d, d * 0.66, '', 'Hybrid Connection Endpoint', false, null, this.getTagsForStencil(gn, 'hybrid connection endpoint', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Image.svg;', - d, d * 0.78, '', 'Image', false, null, this.getTagsForStencil(gn, 'image', dt).join(' ')), - this.createVertexTemplateEntry(s + 'InboundNAT.svg;', - d, d, '', 'Inbound NAT', false, null, this.getTagsForStencil(gn, 'inbound nat netowrk address translation', dt).join(' ')), - this.createVertexTemplateEntry(s + 'InboundRule.svg;', - d, d, '', 'Inbound Rule', false, null, this.getTagsForStencil(gn, 'inbound rule', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Info.svg;', - d, d, '', 'Info', false, null, this.getTagsForStencil(gn, 'info', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Info_2.svg;', - d, d, '', 'Info', false, null, this.getTagsForStencil(gn, 'info', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Input.svg;', - d, d * 0.9, '', 'Input', false, null, this.getTagsForStencil(gn, 'input', dt).join(' ')), - this.createVertexTemplateEntry(s + 'InputOutput.svg;', - d * 1.37, d * 0.9, '', 'Input Output', false, null, this.getTagsForStencil(gn, 'input output', dt).join(' ')), - this.createVertexTemplateEntry(s + 'InstallVisualStudio.svg;', - d, d, '', 'Install Visual Studio', false, null, this.getTagsForStencil(gn, 'install visual studio', dt).join(' ')), - this.createVertexTemplateEntry(s + 'IOT_edge.svg;', - d * 0.96, d, '', 'IOT - Edge', false, null, this.getTagsForStencil(gn, 'IOT edge internet of things', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Job.svg;', - d, d, '', 'Job', false, null, this.getTagsForStencil(gn, 'job', dt).join(' ')), - this.createVertexTemplateEntry(s + 'JourneyHub.svg;', - d * 0.92, d, '', 'Journey Hub', false, null, this.getTagsForStencil(gn, 'journey hub', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Key.svg;', - d * 0.62, d, '', 'Key', false, null, this.getTagsForStencil(gn, 'key', dt).join(' ')), - this.createVertexTemplateEntry(s + 'KeyboardShortcuts.svg;', - d, d * 0.61, '', 'Keyboard Shortcuts', false, null, this.getTagsForStencil(gn, 'keyboard shortcuts', dt).join(' ')), - this.createVertexTemplateEntry(s + 'KeyVault.svg;', - d * 0.9, d, '', 'KeyVault', false, null, this.getTagsForStencil(gn, 'KeyVault', dt).join(' ')), - this.createVertexTemplateEntry(s + 'KuduKnife.svg;', - d * 0.82, d, '', 'Kudu Knife', false, null, this.getTagsForStencil(gn, 'kudu knife', dt).join(' ')), - this.createVertexTemplateEntry(s + 'LaunchPortal.svg;', - d, d, '', 'Launch Portal', false, null, this.getTagsForStencil(gn, 'launch portal', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Load_Balancer_feature.svg;', - d, d, '', 'Load Balancer (feature)', false, null, this.getTagsForStencil(gn, 'load balancer feature', dt).join(' ')), - this.createVertexTemplateEntry(s + 'LocalNetwork.svg;', - d * 0.6, d, '', 'Local Network', false, null, this.getTagsForStencil(gn, 'local network', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Location.svg;', - d * 0.46, d, '', 'Location', false, null, this.getTagsForStencil(gn, 'location', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Log.svg;', - d * 0.9, d, '', 'Log', false, null, this.getTagsForStencil(gn, 'log', dt).join(' ')), - this.createVertexTemplateEntry(s + 'LogDiagnostics.svg;', - d * 0.9, d, '', 'Log (Diagnostics)', false, null, this.getTagsForStencil(gn, 'log diagnostics', dt).join(' ')), - this.createVertexTemplateEntry(s + 'LogStreaming.svg;', - d * 0.9, d, '', 'Log (Streaming)', false, null, this.getTagsForStencil(gn, 'log streaming', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Logic_Apps.svg;', - d, d * 0.78, '', 'Logic Apps', false, null, this.getTagsForStencil(gn, 'logic apps', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Machine_Learning.svg;', - d * 0.98, d, '', 'Machine Learning', false, null, this.getTagsForStencil(gn, 'machine learning', dt).join(' ')), - this.createVertexTemplateEntry(s + 'MachineLearningServicePlans.svg;', - d * 0.98, d, '', 'Machine Learning - Service Plans', false, null, this.getTagsForStencil(gn, 'machine learning service plans', dt).join(' ')), - this.createVertexTemplateEntry(s + 'MachineLearningWebServices.svg;', - d * 0.98, d, '', 'Machine Learning - Web Services', false, null, this.getTagsForStencil(gn, 'machine learning web services', dt).join(' ')), - this.createVertexTemplateEntry(s + 'MachineLearningWorkspaces.svg;', - d * 0.98, d, '', 'Machine Learning - Workspaces', false, null, this.getTagsForStencil(gn, 'machine learning workspaces', dt).join(' ')), - this.createVertexTemplateEntry(s + 'ManagedApplications.svg;', - d * 0.88, d, '', 'Managed Applications', false, null, this.getTagsForStencil(gn, 'managed applications', dt).join(' ')), - this.createVertexTemplateEntry(s + 'ManagePortal.svg;', - d, d, '', 'Manage Portal', false, null, this.getTagsForStencil(gn, 'manage portal', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Management_Portal.svg;', - d, d * 0.85, '', 'Management Portal', false, null, this.getTagsForStencil(gn, 'management portal', dt).join(' ')), - this.createVertexTemplateEntry(s + 'MD_snapshot.svg;', - d, d * 0.84, '', 'MD Snapshot', false, null, this.getTagsForStencil(gn, 'md snapshot', dt).join(' ')), - this.createVertexTemplateEntry(s + 'MediaFile.svg;', - d * 0.88, d, '', 'Media File', false, null, this.getTagsForStencil(gn, 'media file', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Media_Services.svg;', - d * 0.87, d, '', 'Media Services', false, null, this.getTagsForStencil(gn, 'media services', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Module.svg;', - d * 0.74, d * 0.74, '', 'Module', false, null, this.getTagsForStencil(gn, 'module', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Mobile_Engagement.svg;', - d * 0.69, d, '', 'Mobile Engagement', false, null, this.getTagsForStencil(gn, 'mobile engagement', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Monitoring.svg;', - d, d, '', 'Monitoring', false, null, this.getTagsForStencil(gn, 'monitoring', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Multi_Factor_Authentication.svg;', - d * 0.46, d, '', 'Multi-Factor Authentication', false, null, this.getTagsForStencil(gn, 'multi factor authentication', dt).join(' ')), - this.createVertexTemplateEntry(s + 'MySQL_ClearDB_database.svg;', - d * 0.76, d, '', 'MySQL ClearDB Database', false, null, this.getTagsForStencil(gn, 'mysql cleardb database', dt).join(' ')), - this.createVertexTemplateEntry(s + 'NetworkInterfaceCard.svg;', - d * 0.89, d, '', 'Network Interface Card', false, null, this.getTagsForStencil(gn, 'network interface card', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Network_watcher.svg;', - d, d, '', 'Network Watcher', false, null, this.getTagsForStencil(gn, 'network watcher', dt).join(' ')), - this.createVertexTemplateEntry(s + 'New.svg;', - d, d, '', 'New', false, null, this.getTagsForStencil(gn, 'new', dt).join(' ')), - this.createVertexTemplateEntry(s + 'NextBill.svg;', - d, d, '', 'Next Bill', false, null, this.getTagsForStencil(gn, 'next bill', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Notification.svg;', - d, d, '', 'Notification', false, null, this.getTagsForStencil(gn, 'notification', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Notification_Hubs.svg;', - d, d, '', 'Notification Hubs', false, null, this.getTagsForStencil(gn, 'notification hubs', dt).join(' ')), - this.createVertexTemplateEntry(s + 'NSG.svg;', - d * 0.73, d, '', 'NSG', false, null, this.getTagsForStencil(gn, 'nsg', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Offer.svg;', - d, d, '', 'Offer', false, null, this.getTagsForStencil(gn, 'offer', dt).join(' ')), - this.createVertexTemplateEntry(s + 'OnPremiseSetup.svg;', - d * 0.89, d, '', 'On-Premise Setup', false, null, this.getTagsForStencil(gn, 'on premise setup', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Operations_Management_Suite.svg;', - d, d, '', 'Operations Management Suite', false, null, this.getTagsForStencil(gn, 'operations management suite', dt).join(' ')), - this.createVertexTemplateEntry(s + 'OutboundNAT.svg;', - d, d, '', 'Outbound NAT', false, null, this.getTagsForStencil(gn, 'outbound nat network address translation', dt).join(' ')), - this.createVertexTemplateEntry(s + 'OutboundRule.svg;', - d, d, '', 'Outbound Rule', false, null, this.getTagsForStencil(gn, 'outbound rule', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Output.svg;', - d, d * 0.76, '', 'Output', false, null, this.getTagsForStencil(gn, 'output', dt).join(' ')), - this.createVertexTemplateEntry(s + 'overageCosts.svg;', - d, d, '', 'Overage Costs', false, null, this.getTagsForStencil(gn, 'overage costs', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Paused.svg;', - d * 0.83, d, '', 'Paused', false, null, this.getTagsForStencil(gn, 'overage costs', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Peerings.svg;', - d, d, '', 'Peerings', false, null, this.getTagsForStencil(gn, 'peerings', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Pending.svg;', - d, d, '', 'Pending', false, null, this.getTagsForStencil(gn, 'pending', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Person.svg;', - d * 0.74, d, '', 'Person', false, null, this.getTagsForStencil(gn, 'person', dt).join(' ')), - this.createVertexTemplateEntry(s + 'PersonWithFriend.svg;', - d, d * 0.99, '', 'Person with Friend', false, null, this.getTagsForStencil(gn, 'person with friend', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Phone.svg;', - d, d, '', 'Phone', false, null, this.getTagsForStencil(gn, 'phone', dt).join(' ')), - this.createVertexTemplateEntry(s + 'PortalCurrent.svg;', - d, d * 0.85, '', 'Portal (Current)', false, null, this.getTagsForStencil(gn, 'portal current', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Postpone.svg;', - d, d, '', 'Postpone', false, null, this.getTagsForStencil(gn, 'postpone', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Power.svg;', - d * 0.62, d, '', 'Power', false, null, this.getTagsForStencil(gn, 'power', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Powershell.svg;', - d, d * 0.85, '', 'Powershell', false, null, this.getTagsForStencil(gn, 'powershell', dt).join(' ')), - this.createVertexTemplateEntry(s + 'PowerUp.svg;', - d, d, '', 'PowerUp', false, null, this.getTagsForStencil(gn, 'powerup', dt).join(' ')), - this.createVertexTemplateEntry(s + 'PowerUp_2.svg;', - d, d, '', 'PowerUp', false, null, this.getTagsForStencil(gn, 'powerup', dt).join(' ')), - this.createVertexTemplateEntry(s + 'PreviewRight.svg;', - d, d, '', 'PreviewRight', false, null, this.getTagsForStencil(gn, 'preview right', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Probe.svg;', - d * 0.9, d, '', 'Probe', false, null, this.getTagsForStencil(gn, 'probe', dt).join(' ')), - this.createVertexTemplateEntry(s + 'ProcessExplorer.svg;', - d, d * 0.92, '', 'Process Explorer', false, null, this.getTagsForStencil(gn, 'process explorers', dt).join(' ')), - this.createVertexTemplateEntry(s + 'ProductionReadyDB.svg;', - d * 0.75, d, '', 'Production Ready DB', false, null, this.getTagsForStencil(gn, 'production ready db database', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Publish.svg;', - d, d * 0.9, '', 'Publish', false, null, this.getTagsForStencil(gn, 'publish', dt).join(' ')), - this.createVertexTemplateEntry(s + 'PullRequest.svg;', - d * 0.83, d, '', 'Pull Request', false, null, this.getTagsForStencil(gn, 'pull request', dt).join(' ')), - this.createVertexTemplateEntry(s + 'QSDiagnostics.svg;', - d, d * 0.79, '', 'QS Diagnostics', false, null, this.getTagsForStencil(gn, 'qs diagnostics', dt).join(' ')), - this.createVertexTemplateEntry(s + 'QSFile.svg;', - d * 0.89, d, '', 'QS File', false, null, this.getTagsForStencil(gn, 'qs file', dt).join(' ')), - this.createVertexTemplateEntry(s + 'QSMail.svg;', - d, d * 0.76, '', 'QS Mail', false, null, this.getTagsForStencil(gn, 'qs mail', dt).join(' ')), - this.createVertexTemplateEntry(s + 'QSWarning.svg;', - d, d * 0.89, '', 'QS Warning', false, null, this.getTagsForStencil(gn, 'qs warning', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Queued.svg;', - d, d * 0.75, '', 'Queued', false, null, this.getTagsForStencil(gn, 'queued', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Quickstart.svg;', - d, d * 0.68, '', 'Quickstart', false, null, this.getTagsForStencil(gn, 'quickstart', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Quota.svg;', - d, d, '', 'Quota', false, null, this.getTagsForStencil(gn, 'quota', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Rain.svg;', - d, d, '', 'Raid', false, null, this.getTagsForStencil(gn, 'rain', dt).join(' ')), - this.createVertexTemplateEntry(s + 'RDMA.svg;', - d, d * 0.98, '', 'RDMA', false, null, this.getTagsForStencil(gn, 'rdma', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Recommendation.svg;', - d, d * 0.68, '', 'Recommendation', false, null, this.getTagsForStencil(gn, 'recommendation', dt).join(' ')), - this.createVertexTemplateEntry(s + 'RemoteApp.svg;', - d, d, '', 'RemoteApp', false, null, this.getTagsForStencil(gn, 'remoteapp', dt).join(' ')), - this.createVertexTemplateEntry(s + 'ResourceDefault.svg;', - d * 0.9, d, '', 'Resource (Default)', false, null, this.getTagsForStencil(gn, 'resource default', dt).join(' ')), - this.createVertexTemplateEntry(s + 'ResourceGroup.svg;', - d, d * 0.81, '', 'Resource Group', false, null, this.getTagsForStencil(gn, 'resource group', dt).join(' ')), - this.createVertexTemplateEntry(s + 'ResourceLinked.svg;', - d, d, '', 'Resource Linked', false, null, this.getTagsForStencil(gn, 'resource linked', dt).join(' ')), - this.createVertexTemplateEntry(s + 'ResourceProvider.svg;', - d, d, '', 'Resource Provider', false, null, this.getTagsForStencil(gn, 'resource provider', dt).join(' ')), - this.createVertexTemplateEntry(s + 'ResourceRole.svg;', - d * 0.97, d, '', 'Resource Role', false, null, this.getTagsForStencil(gn, 'resource role', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Route_Filter.svg;', - d, d * 0.84, '', 'Route Filter', false, null, this.getTagsForStencil(gn, 'route filter', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Rule.svg;', - d * 0.65, d, '', 'Rule', false, null, this.getTagsForStencil(gn, 'rule', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Runbooks.svg;', - d * 0.93, d, '', 'Runbooks', false, null, this.getTagsForStencil(gn, 'runbooks', dt).join(' ')), - this.createVertexTemplateEntry(s + 'RunbookSource.svg;', - d, d, '', 'Runbook Source', false, null, this.getTagsForStencil(gn, 'runbook source', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Scale.svg;', - d, d, '', 'Scale', false, null, this.getTagsForStencil(gn, 'scale', dt).join(' ')), - this.createVertexTemplateEntry(s + 'ScaleAlt.svg;', - d, d, '', 'Scale Alt', false, null, this.getTagsForStencil(gn, 'scale alt', dt).join(' ')), - this.createVertexTemplateEntry(s + 'SchedulerJob.svg;', - d * 0.85, d, '', 'Scheduler Job', false, null, this.getTagsForStencil(gn, 'scheduler job', dt).join(' ')), - this.createVertexTemplateEntry(s + 'SchedulerJobCollection.svg;', - d, d * 0.87, '', 'Scheduler Job Collection', false, null, this.getTagsForStencil(gn, 'scheduler job collection', dt).join(' ')), - this.createVertexTemplateEntry(s + 'SDK.svg;', - d, d, '', 'SDK', false, null, this.getTagsForStencil(gn, 'sdk software development kit', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Search.svg;', - d, d, '', 'Search', false, null, this.getTagsForStencil(gn, 'search', dt).join(' ')), - this.createVertexTemplateEntry(s + 'SearchGrid.svg;', - d, d * 0.98, '', 'Search Grid', false, null, this.getTagsForStencil(gn, 'search grid', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Security_Center.svg;', - d * 0.73, d, '', 'Security Center', false, null, this.getTagsForStencil(gn, 'security center', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Server.svg;', - d * 0.59, d, '', 'Server', false, null, this.getTagsForStencil(gn, 'server', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Service_Bus.svg;', - d, d, '', 'Service Bus', false, null, this.getTagsForStencil(gn, 'service bus', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Service_Bus_Queues.svg;', - d, d, '', 'Service Bus - Queues', false, null, this.getTagsForStencil(gn, 'service bus queues', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Service_Bus_Relay.svg;', - d, d, '', 'Service Bus - Relay', false, null, this.getTagsForStencil(gn, 'service bus relay', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Service_Bus_Topics.svg;', - d, d, '', 'Service Bus - Topics', false, null, this.getTagsForStencil(gn, 'service bus topics', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Service_Fabric.svg;', - d, d, '', 'Service Fabric', false, null, this.getTagsForStencil(gn, 'service fabric', dt).join(' ')), - this.createVertexTemplateEntry(s + 'ServerFarm.svg;', - d * 0.99, d, '', 'Server Farm', false, null, this.getTagsForStencil(gn, 'server farm', dt).join(' ')), - this.createVertexTemplateEntry(s + 'ServiceHealth.svg;', - d, d * 0.88, '', 'Service Health', false, null, this.getTagsForStencil(gn, 'service health', dt).join(' ')), - this.createVertexTemplateEntry(s + 'ServerProxy.svg;', - d * 0.8, d, '', 'Server Proxy', false, null, this.getTagsForStencil(gn, 'server proxy', dt).join(' ')), - this.createVertexTemplateEntry(s + 'serversAndMobileDevices.svg;', - d * 0.92, d, '', 'Servers and Mobile Devices', false, null, this.getTagsForStencil(gn, 'server servers mobile device devices', dt).join(' ')), - this.createVertexTemplateEntry(s + 'ShieldFirewall.svg;', - d * 0.73, d, '', 'Shield Firewall', false, null, this.getTagsForStencil(gn, 'shield firewall', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Site_Recovery.svg;', - d, d * 0.84, '', 'Site Recovery', false, null, this.getTagsForStencil(gn, 'site recovery', dt).join(' ')), - this.createVertexTemplateEntry(s + 'SQL_Database_generic.svg;', - d * 0.75, d, '', 'SQL Database (generic)', false, null, this.getTagsForStencil(gn, 'sql database generic', dt).join(' ')), - this.createVertexTemplateEntry(s + 'SQL_DataWarehouse.svg;', - d, d * 0.97, '', 'SQL Data Warehouse', false, null, this.getTagsForStencil(gn, 'sql data warehouse', dt).join(' ')), - this.createVertexTemplateEntry(s + 'SQLQueryPerformanceCheck.svg;', - d, d, '', 'SQL Query Performance Check', false, null, this.getTagsForStencil(gn, 'sql query performance check', dt).join(' ')), - this.createVertexTemplateEntry(s + 'SQL_Stretch_Database.svg;', - d, d * 0.69, '', 'SQL Stretch Database', false, null, this.getTagsForStencil(gn, 'sql stretch database', dt).join(' ')), - this.createVertexTemplateEntry(s + 'SSD.svg;', - d, d * 0.8, '', 'SSD', false, null, this.getTagsForStencil(gn, 'ssd solid state drive', dt).join(' ')), - this.createVertexTemplateEntry(s + 'StackOverflow.svg;', - d * 0.8, d, '', 'StackOverflow', false, null, this.getTagsForStencil(gn, 'stackoverflow stack overflow', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Storage.svg;', - d, d * 0.86, '', 'Storage', false, null, this.getTagsForStencil(gn, 'storage', dt).join(' ')), - this.createVertexTemplateEntry(s + 'StorageAzureFiles.svg;', - d, d * 0.85, '', 'Storage (Azure Files)', false, null, this.getTagsForStencil(gn, 'storage azure files', dt).join(' ')), - this.createVertexTemplateEntry(s + 'StorageContainer.svg;', - d, d * 0.85, '', 'Storage (Container)', false, null, this.getTagsForStencil(gn, 'storage container', dt).join(' ')), - this.createVertexTemplateEntry(s + 'StorageQueue.svg;', - d, d * 0.85, '', 'Storage Queue', false, null, this.getTagsForStencil(gn, 'storage queue', dt).join(' ')), - this.createVertexTemplateEntry(s + 'StorageReplica.svg;', - d, d, '', 'Storage Replica', false, null, this.getTagsForStencil(gn, 'storage replica', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Storage_sync_service.svg;', - d, d, '', 'Storage Sync Service', false, null, this.getTagsForStencil(gn, 'storage sync service', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Store_Marketplace.svg;', - d * 0.87, d, '', 'Store Marketplace', false, null, this.getTagsForStencil(gn, 'store marketplace', dt).join(' ')), - this.createVertexTemplateEntry(s + 'StorSimple.svg;', - d, d * 0.9, '', 'StorSimple', false, null, this.getTagsForStencil(gn, 'storsimple', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Stream_Analytics.svg;', - d, d * 0.78, '', 'Stream Analytics', false, null, this.getTagsForStencil(gn, 'stream analytics', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Subnet.svg;', - d, d * 0.57, '', 'Subnet', false, null, this.getTagsForStencil(gn, 'subnet', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Support.svg;', - d * 0.65, d, '', 'Support', false, null, this.getTagsForStencil(gn, 'support', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Support_2.svg;', - d * 0.65, d, '', 'Support', false, null, this.getTagsForStencil(gn, 'support', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Tag.svg;', - d, d * 0.99, '', 'Tag', false, null, this.getTagsForStencil(gn, 'tag', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Tags.svg;', - d * 0.84, d, '', 'Tags', false, null, this.getTagsForStencil(gn, 'tags', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Task.svg;', - d, d * 0.88, '', 'Task', false, null, this.getTagsForStencil(gn, 'task', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Tasks.svg;', - d, d * 0.76, '', 'Tasks', false, null, this.getTagsForStencil(gn, 'tasks', dt).join(' ')), - this.createVertexTemplateEntry(s + 'TasksPolychromatic.svg;', - d, d * 0.77, '', 'Tasks (Polychromatic)', false, null, this.getTagsForStencil(gn, 'tasks polychromatic', dt).join(' ')), - this.createVertexTemplateEntry(s + 'TaskVM.svg;', - d, d * 0.95, '', 'Task VM', false, null, this.getTagsForStencil(gn, 'task vm virtual machine', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Tax.svg;', - d, d, '', 'Tax', false, null, this.getTagsForStencil(gn, 'tax', dt).join(' ')), - this.createVertexTemplateEntry(s + 'TeamProject.svg;', - d, d * 0.99, '', 'Team Project', false, null, this.getTagsForStencil(gn, 'team project', dt).join(' ')), - this.createVertexTemplateEntry(s + 'TFSVCRepository.svg;', - d, d, '', 'TFSVCRepository', false, null, this.getTagsForStencil(gn, 'tfsvc repository', dt).join(' ')), - this.createVertexTemplateEntry(s + 'TimeSeriesInsights.svg;', - d, d, '', 'TimeSeriesInsights', false, null, this.getTagsForStencil(gn, 'timeseriesinsights time series insights', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Toolbox.svg;', - d, d * 0.9, '', 'Toolbox', false, null, this.getTagsForStencil(gn, 'toolbox', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Tools.svg;', - d * 0.94, d, '', 'Tools', false, null, this.getTagsForStencil(gn, 'tools', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Traffic_Manager.svg;', - d, d, '', 'Traffic Manager', false, null, this.getTagsForStencil(gn, 'traffic manager', dt).join(' ')), - this.createVertexTemplateEntry(s + 'TrafficManagerDisabled.svg;', - d, d, '', 'Traffic Manager (Disabled)', false, null, this.getTagsForStencil(gn, 'traffic manager disabled', dt).join(' ')), - this.createVertexTemplateEntry(s + 'TrafficManagerEnabled.svg;', - d, d, '', 'Traffic Manager (Enabled)', false, null, this.getTagsForStencil(gn, 'traffic manager enabled', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Unidentified_Feature_Object.svg;', - d, d, '', 'Unidentified Feature Object', false, null, this.getTagsForStencil(gn, 'unidentified feature object', dt).join(' ')), - this.createVertexTemplateEntry(s + 'UserDefinedRoute.svg;', - d, d, '', 'User Defined Route', false, null, this.getTagsForStencil(gn, 'user defined route', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Variables.svg;', - d, d * 0.96, '', 'Variables', false, null, this.getTagsForStencil(gn, 'variables', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Versions.svg;', - d, d * 0.89, '', 'Versions', false, null, this.getTagsForStencil(gn, 'versions', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Virtual_Datacenter.svg;', - d, d, '', 'Virtual Datacenter', false, null, this.getTagsForStencil(gn, 'virtual datacenter', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Virtual_Machine.svg;', - d, d * 0.92, '', 'Virtual Machine', false, null, this.getTagsForStencil(gn, 'virtual machine', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Virtual_Machine_2.svg;', - d, d * 0.92, '', 'Virtual Machine', false, null, this.getTagsForStencil(gn, 'virtual machine', dt).join(' ')), - this.createVertexTemplateEntry(s + 'VM_Scale_Set.svg;', - d, d, '', 'Virtual Machine - Scale Set', false, null, this.getTagsForStencil(gn, 'vm scale set virtual machine', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Virtual_Machines_Availability_Set.svg;', - d, d, '', 'Virtual Machines - Availability Set', false, null, this.getTagsForStencil(gn, 'virtual machines availability set', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Virtual_Machines_Linux.svg;', - d * 0.82, d, '', 'Virtual Machines - Linux', false, null, this.getTagsForStencil(gn, 'virtual machines linux', dt).join(' ')), - this.createVertexTemplateEntry(s + 'VirtualMachineLinux.svg;', - d, d * 0.92, '', 'Virtual Machines - Linux', false, null, this.getTagsForStencil(gn, 'virtual machines linux', dt).join(' ')), - this.createVertexTemplateEntry(s + 'VirtualMachineWindows.svg;', - d, d * 0.92, '', 'Virtual Machines - Windows', false, null, this.getTagsForStencil(gn, 'virtual machines windows', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Virtual_Network.svg;', - d, d * 0.57, '', 'Virtual Network', false, null, this.getTagsForStencil(gn, 'virtual network', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Visual_Studio_Team_Services_CodePlex_source.svg;', - d, d * 0.75, '', 'Visual Studio Team Services - CodePlex Source', false, null, this.getTagsForStencil(gn, 'visual studio team services codePlex source', dt).join(' ')), - this.createVertexTemplateEntry(s + 'VMScale.svg;', - d, d, '', 'VM Scale', false, null, this.getTagsForStencil(gn, 'vm virtual machine scale', dt).join(' ')), - this.createVertexTemplateEntry(s + 'VPN_Gateway.svg;', - d * 0.9, d, '', 'VPN Gateway', false, null, this.getTagsForStencil(gn, 'vpn gateway virtual private network', dt).join(' ')), - this.createVertexTemplateEntry(s + 'VPNPointToSite.svg;', - d, d, '', 'VPN Point to Site', false, null, this.getTagsForStencil(gn, 'vpn point to site virtual private network', dt).join(' ')), - this.createVertexTemplateEntry(s + 'VPNSiteToSite.svg;', - d * 0.89, d, '', 'VPN Site to Site', false, null, this.getTagsForStencil(gn, 'vpn site to site virtual private network', dt).join(' ')), - this.createVertexTemplateEntry(s + 'WebEnvironment.svg;', - d, d * 0.83, '', 'Web Environment', false, null, this.getTagsForStencil(gn, 'web environment', dt).join(' ')), - this.createVertexTemplateEntry(s + 'WebHosting.svg;', - d, d, '', 'Web Hosting', false, null, this.getTagsForStencil(gn, 'web hosting', dt).join(' ')), - this.createVertexTemplateEntry(s + 'WebNetwork.svg;', - d, d * 0.91, '', 'Web Network', false, null, this.getTagsForStencil(gn, 'web network', dt).join(' ')), - this.createVertexTemplateEntry(s + 'WebApp_WebJobs.svg;', - d, d, '', 'WebApp - WebJobs', false, null, this.getTagsForStencil(gn, 'webapp webjobs', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Webhooks.svg;', - d, d, '', 'Webhooks', false, null, this.getTagsForStencil(gn, 'webhooks', dt).join(' ')), - this.createVertexTemplateEntry(s + 'WebsitePower.svg;', - d, d, '', 'Website Power', false, null, this.getTagsForStencil(gn, 'website power', dt).join(' ')), - this.createVertexTemplateEntry(s + 'WebsiteReplicator.svg;', - d, d, '', 'Website Replicator', false, null, this.getTagsForStencil(gn, 'website replicator', dt).join(' ')), - this.createVertexTemplateEntry(s + 'WebsiteSettings.svg;', - d, d, '', 'Website Settings', false, null, this.getTagsForStencil(gn, 'website settings', dt).join(' ')), - this.createVertexTemplateEntry(s + 'WebsiteStaging.svg;', - d * 0.87, d, '', 'Website Staging', false, null, this.getTagsForStencil(gn, 'website staging', dt).join(' ')), - this.createVertexTemplateEntry(s + 'WebSlots.svg;', - d * 0.95, d, '', 'Web Slots', false, null, this.getTagsForStencil(gn, 'web slots', dt).join(' ')), - this.createVertexTemplateEntry(s + 'WebTest.svg;', - d, d * 0.92, '', 'Web Test', false, null, this.getTagsForStencil(gn, 'web test', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Workflow.svg;', - d, d, '', 'Workflow', false, null, this.getTagsForStencil(gn, 'workflow', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Wrench.svg;', - d, d, '', 'Wrench', false, null, this.getTagsForStencil(gn, 'wrench', dt).join(' ')), - this.createVertexTemplateEntry(s + 'XboxController.svg;', - d, d * 0.7, '', 'Xbox Controller', false, null, this.getTagsForStencil(gn, 'xbox controller', dt).join(' ')) + this.createVertexTemplateEntry(s + 'Access_Review.svg;', + r * 0.5, r * 0.5, '', 'Access Review', null, null, this.getTagsForStencil(gn, 'access review', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Active_Directory_Health_Monitoring.svg;', + r * 0.5, r * 0.5, '', 'Active Directory Connect Health', null, null, this.getTagsForStencil(gn, 'active directory connect health', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Active_Directory.svg;', + r * 0.5, r * 0.5, '', 'Active Directory', null, null, this.getTagsForStencil(gn, 'active directory', dt).join(' ')), + this.createVertexTemplateEntry(s + 'App_Registrations.svg;', + r * 0.5, r * 0.5, '', 'App Registrations', null, null, this.getTagsForStencil(gn, 'app registrations', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Azure_AD_B2C.svg;', + r * 0.5, r * 0.46, '', 'Azure AD B2C', null, null, this.getTagsForStencil(gn, 'azure ad b2c', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Azure_AD_Domain_Services.svg;', + r * 0.5, r * 0.5, '', 'Azure AD Domain Services', null, null, this.getTagsForStencil(gn, 'azure ad domain services', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Azure_AD_Identity_Protection.svg;', + r * 0.5, r * 0.5, '', 'Azure AD Identity Protection', null, null, this.getTagsForStencil(gn, 'azure ad identity protection', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Azure_AD_Privileged_Identity_Management.svg;', + r * 0.5, r * 0.5, '', 'Azure AD Privileged Identity Management', null, null, this.getTagsForStencil(gn, 'azure ad privileged identity management', dt).join(' ')), + this.createVertexTemplateEntry('aspect=fixed;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.azure_rights_management_rms;fillColor=#58B4D9;', + r * 0.42, r * 0.5, '', 'Azure Information Protection', null, null, this.getTagsForStencil(gn, 'azure information protection', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Security_Center.svg;', + r * 0.36, r * 0.5, '', 'Conditional Access', null, null, this.getTagsForStencil(gn, 'conditional access security center', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Enterprise_Applications.svg;', + r * 0.49, r * 0.5, '', 'Enterprise Applications', null, null, this.getTagsForStencil(gn, 'enterprise applications', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Identity_Governance.svg;', + r * 0.5, r * 0.5, '', 'Identity Governance', null, null, this.getTagsForStencil(gn, 'identity governance', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Managed_Identities.svg;', + r * 0.38, r * 0.5, '', 'Managed Identitties', null, null, this.getTagsForStencil(gn, 'managed identities', dt).join(' ')) ]; - this.addPalette('mscaeCloud Color', 'CAE / Cloud (color)', false, mxUtils.bind(this, function(content) + this.addPalette('mscaeIdentity Service', 'CAE / Identity Service', false, mxUtils.bind(this, function(content) { for (var i = 0; i < fns.length; i++) { content.appendChild(fns[i](content)); } })); - - } + }; - Sidebar.prototype.addMSCAEDeprecatedColorPalette = function() + Sidebar.prototype.addMSCAEIntegrationServicePalette = function(gn, r, sb, s) { - var d = 50; - var dt = 'ms microsoft deprecated enterprise color '; - var sb = this; - var s = 'aspect=fixed;html=1;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/dep/'; - var gn = 'mxgraph.mscae'; - + var dt = 'ms microsoft cloud enterprise integration service'; + var fns = [ - this.createVertexTemplateEntry(s + 'App_Service_Logic_App.svg;', - d, d, '', 'App Service - Logic App', false, null, this.getTagsForStencil(gn, 'app service logic app', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Application_Gateway.svg;', - d, d, '', 'Application Gateway', false, null, this.getTagsForStencil(gn, 'application gateway', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Content_Delivery_Network.svg;', - d, d, '', 'Content Delivery Network', false, null, this.getTagsForStencil(gn, 'content delivery network', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Data_Lake.svg;', - d, d, '', 'Data Lake', false, null, this.getTagsForStencil(gn, 'data lake', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Data_Lake_Analytics.svg;', - d, d, '', 'Data Lake Analytics', false, null, this.getTagsForStencil(gn, 'data lake analytics', dt).join(' ')), - this.createVertexTemplateEntry(s + 'Data_Lake_Store.svg;', - d, d, '', 'Data Lake Store', false, null, this.getTagsForStencil(gn, 'data lake store', dt).join(' ')), - this.createVertexTemplateEntry(s + 'DataWarehouse.svg;', - d, d, '', 'DataWarehouse', false, null, this.getTagsForStencil(gn, 'datawarehouse', dt).join(' ')), - this.createVertexTemplateEntry(s + 'SQL_Server_Stretch_DB.svg;', - d, d, '', 'SQL Server Stretch DB', false, null, this.getTagsForStencil(gn, 'sql server stretch db database', dt).join(' ')) + this.createVertexTemplateEntry(s + 'API_Management.svg;', + r * 0.5, r * 0.42, '', 'API Management Service', null, null, this.getTagsForStencil(gn, 'api application programming interface management service', dt).join(' ')), + this.createVertexTemplateEntry(s + 'App_Configuration.svg;', + r * 0.5, r * 0.49, '', 'App Configuration', null, null, this.getTagsForStencil(gn, 'app configuration', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Azure_API_for_FHIR.svg;', + r * 0.5, r * 0.5, '', 'Azure API for FHIR', null, null, this.getTagsForStencil(gn, 'azure api application programming interface for fhir', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Data_Catalog.svg;', + r * 0.47, r * 0.5, '', 'Azure Data Catalog', null, null, this.getTagsForStencil(gn, 'azure data catalog', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Service_Bus_Relay.svg;', + r * 0.5, r * 0.5, '', 'Azure Service Bus Relays', null, null, this.getTagsForStencil(gn, 'azure service bus relay relays', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Service_Bus_Relay.svg;', + r * 0.5, r * 0.5, '', 'Azure Service Bus Relays', null, null, this.getTagsForStencil(gn, 'azure service bus relay relays', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Service_Bus.svg;', + r * 0.5, r * 0.5, '', 'Azure Service Bus', null, null, this.getTagsForStencil(gn, 'azure service bus', dt).join(' ')), + this.createVertexTemplateEntry(s + 'StorSimple.svg;', + r * 0.5, r * 0.45, '', 'Azure StorSimple Device Managers', null, null, this.getTagsForStencil(gn, 'azure storsimple device managers', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Event_Grid.svg;', + r * 0.5, r * 0.5, '', 'Event Grid Domains and Subscriptions', null, null, this.getTagsForStencil(gn, 'event grid domains subscriptions', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Event_Grid_Topics.svg;', + r * 0.5, r * 0.5, '', 'Event Grid Topics', null, null, this.getTagsForStencil(gn, 'event grid topics', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Event_Grid_Topics.svg;', + r * 0.5, r * 0.5, '', 'Event Grid Topics', null, null, this.getTagsForStencil(gn, 'event grid topics', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Integration_Accounts.svg;', + r * 0.5, r * 0.5, '', 'Integration Accounts', null, null, this.getTagsForStencil(gn, 'integration accounts', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Integration_Service_Environments.svg;', + r * 0.5, r * 0.5, '', 'Integration Service Environments', null, null, this.getTagsForStencil(gn, 'integration service environments', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Logic_Apps_Custom_Connector.svg;', + r * 0.5, r * 0.5, '', 'Logic Apps Custom Connector', null, null, this.getTagsForStencil(gn, 'logic apps custom connector', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Logic_Apps.svg;', + r * 0.5, r * 0.39, '', 'Logic Apps', null, null, this.getTagsForStencil(gn, 'logic apps', dt).join(' ')), + this.createVertexTemplateEntry(s + 'SendGrid_Accounts.svg;', + r * 0.5, r * 0.5, '', 'SendGrid Accounts', null, null, this.getTagsForStencil(gn, 'sendgrid accounts', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Service_Catalog_Managed_Application_Definitions.svg;', + r * 0.47, r * 0.5, '', 'Service Catalog Managed Application Definitions', null, null, this.getTagsForStencil(gn, 'service catalog managed application definitions', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Software_as_a_Service.svg;', + r * 0.5, r * 0.5, '', 'Software as a Service (SaaS)', null, null, this.getTagsForStencil(gn, 'software service saas', dt).join(' ')) ]; - this.addPalette('mscaeDeprecated Color', 'CAE / Deprecated (color)', false, mxUtils.bind(this, function(content) + this.addPalette('mscaeIntegration Service', 'CAE / Integration Service', false, mxUtils.bind(this, function(content) + { + for (var i = 0; i < fns.length; i++) + { + content.appendChild(fns[i](content)); + } + })); + }; + + Sidebar.prototype.addMSCAEInternetOfThingsServicePalette = function(gn, r, sb, s) + { + var dt = 'ms microsoft cloud enterprise iot internet of things'; + + var fns = + [ + this.createVertexTemplateEntry(s + 'Azure_Digital_Twins.svg;', + r * 0.45, r * 0.5, '', 'Azure Digital Twins', null, null, this.getTagsForStencil(gn, 'azure digital twins', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Azure_IoT_Hub_Security.svg;', + r * 0.37, r * 0.5, '', 'Azure IoT Hub Security', null, null, this.getTagsForStencil(gn, 'azure hub security', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Azure_IoT_Hub.svg;', + r * 0.5, r * 0.5, '', 'Azure IoT Hub', null, null, this.getTagsForStencil(gn, 'azure hub', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Azure_Maps.svg;', + r * 0.39, r * 0.5, '', 'Azure Maps', null, null, this.getTagsForStencil(gn, 'azure maps', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Azure_Sphere.svg;', + r * 0.48, r * 0.5, '', 'Azure Sphere', null, null, this.getTagsForStencil(gn, 'azure sphere', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Device_Provisioning_Services.svg;', + r * 0.48, r * 0.5, '', 'Device Provisioning Services', null, null, this.getTagsForStencil(gn, 'device provisioning services', dt).join(' ')), + this.createVertexTemplateEntry('aspect=fixed;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;shape=mxgraph.mscae.cloud.central;fillColor=#0079D6;pointerEvents=1;', + r * 0.44, r * 0.5, '', 'IoT Central Applications', null, null, this.getTagsForStencil(gn, 'central applications', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Time_Series_Insights_environments.svg;', + r * 0.49, r * 0.5, '', 'Time Series Insights environments', null, null, this.getTagsForStencil(gn, 'time series insights environments', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Input.svg;', + r * 0.5, r * 0.45, '', 'Time Series Insights Events Sources', null, null, this.getTagsForStencil(gn, 'time series insights events sources input', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Windows_10_IoT_Core_Services.svg;', + r * 0.5, r * 0.5, '', 'Windows 10 IoT Core Services', null, null, this.getTagsForStencil(gn, 'windows 10 core services', dt).join(' ')) + ]; + + this.addPalette('mscaeInternet of Things Service', 'CAE / Internet of Things Service', false, mxUtils.bind(this, function(content) + { + for (var i = 0; i < fns.length; i++) + { + content.appendChild(fns[i](content)); + } + })); + }; + + Sidebar.prototype.addMSCAEIntuneServicePalette = function(gn, r, sb, s) + { + var dt = 'ms microsoft cloud enterprise intune service'; + + var fns = + [ + this.createVertexTemplateEntry(s + 'Client_Apps.svg;', + r * 0.5, r * 0.5, '', 'Client Apps', null, null, this.getTagsForStencil(gn, 'client apps', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Dedicated_Event_Hub.svg;', + r * 0.5, r * 0.48, '', 'Dedicated Event Hub', null, null, this.getTagsForStencil(gn, 'dedicated event hub', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Device_Compliance.svg;', + r * 0.41, r * 0.5, '', 'Device Compliance', null, null, this.getTagsForStencil(gn, 'device compliance', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Device_Config.svg;', + r * 0.44, r * 0.5, '', 'Device Config', null, null, this.getTagsForStencil(gn, 'device config', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Devices_Groups.svg;', + r * 0.5, r * 0.5, '', 'Devices Groups', null, null, this.getTagsForStencil(gn, 'devices groups', dt).join(' ')), + this.createVertexTemplateEntry(s + 'eBooks.svg;', + r * 0.5, r * 0.41, '', 'eBooks', null, null, this.getTagsForStencil(gn, 'ebooks', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Enrollment.svg;', + r * 0.5, r * 0.5, '', 'Enrollment', null, null, this.getTagsForStencil(gn, 'enrollment', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Exchange_On_premises_Access.svg;', + r * 0.29, r * 0.5, '', 'Exchange On-premises Access', null, null, this.getTagsForStencil(gn, 'exchange on premises access', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Intune_App_Protection.svg;', + r * 0.5, r * 0.4, '', 'Intune App Protection', null, null, this.getTagsForStencil(gn, 'intune app protection', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Managed_Desktop.svg;', + r * 0.5, r * 0.36, '', 'Managed Desktop', null, null, this.getTagsForStencil(gn, 'managed desktop', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Security_Baselines.svg;', + r * 0.44, r * 0.5, '', 'Security Baselines', null, null, this.getTagsForStencil(gn, 'security baselines', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Software_Update.svg;', + r * 0.5, r * 0.45, '', 'Software Update', null, null, this.getTagsForStencil(gn, 'software update', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Tools.svg;', + r * 0.47, r * 0.5, '', 'Tools', null, null, this.getTagsForStencil(gn, 'tools', dt).join(' ')) + ]; + + this.addPalette('mscaeIntune Service', 'CAE / Intune Service', false, mxUtils.bind(this, function(content) + { + for (var i = 0; i < fns.length; i++) + { + content.appendChild(fns[i](content)); + } + })); + }; + + Sidebar.prototype.addMSCAEManagementGovernanceServicePalette = function(gn, r, sb, s) + { + var dt = 'ms microsoft cloud enterprise management and governance service'; + + var fns = + [ + this.createVertexTemplateEntry(s + 'Log.svg;', + r * 0.45, r * 0.5, '', 'Activity Log', null, null, this.getTagsForStencil(gn, 'activity log', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Advisor.svg;', + r * 0.5, r * 0.5, '', 'Advisor', null, null, this.getTagsForStencil(gn, 'advisor', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Notification.svg;', + r * 0.5, r * 0.5, '', 'Alerts', null, null, this.getTagsForStencil(gn, 'notification alert alerts', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Automation.svg;', + r * 0.5, r * 0.5, '', 'Automation Accounts', null, null, this.getTagsForStencil(gn, 'automation accounts', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Blueprints.svg;', + r * 0.5, r * 0.48, '', 'Blueprints', null, null, this.getTagsForStencil(gn, 'blueprints', dt).join(' ')), + this.createVertexTemplateEntry(s + 'BillingHub.svg;', + r * 0.5, r * 0.5, '', 'BillingHub', null, null, this.getTagsForStencil(gn, 'billinghub', dt).join(' ')), + this.createVertexTemplateEntry(s + 'LogDiagnostics.svg;', + r * 0.45, r * 0.5, '', 'Diagnostic Settings', null, null, this.getTagsForStencil(gn, 'diagnostic settings log', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Free_Services.svg;', + r * 0.5, r * 0.46, '', 'Free Services', null, null, this.getTagsForStencil(gn, 'free services', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Guest_Assignments.svg;', + r * 0.44, r * 0.5, '', 'Guest Assignments', null, null, this.getTagsForStencil(gn, 'guest assignments', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Managed_Applications.svg;', + r * 0.47, r * 0.5, '', 'Managed Applications', null, null, this.getTagsForStencil(gn, 'managed applications', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Chart.svg;', + r * 0.5, r * 0.48, '', 'Metrics', null, null, this.getTagsForStencil(gn, 'metrics chart', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Monitor.svg;', + r * 0.5, r * 0.5, '', 'Monitor', null, null, this.getTagsForStencil(gn, 'monitor', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Network_watcher.svg;', + r * 0.5, r * 0.5, '', 'Network Watcher', null, null, this.getTagsForStencil(gn, 'network watcher', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Policy.svg;', + r * 0.45, r * 0.5, '', 'Policy', null, null, this.getTagsForStencil(gn, 'policy', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Backup.svg;', + r * 0.5, r * 0.42, '', 'Recovery Services Vault', null, null, this.getTagsForStencil(gn, 'recovery services vault backup', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Resource_Graph_Explorer.svg;', + r * 0.49, r * 0.5, '', 'Resource Graph Explorer', null, null, this.getTagsForStencil(gn, 'resource graph explorer', dt).join(' ')), + this.createVertexTemplateEntry(s + 'SchedulerJobCollection.svg;', + r * 0.5, r * 0.43, '', 'Scheduler Job Collections', null, null, this.getTagsForStencil(gn, 'scheduler job collection collections', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Solutions.svg;', + r * 0.5, r * 0.5, '', 'Solutions', null, null, this.getTagsForStencil(gn, 'solutions', dt).join(' ')) + ]; + + this.addPalette('mscaeManagement and Governance Service', 'CAE / Management and Governance Service', false, mxUtils.bind(this, function(content) + { + for (var i = 0; i < fns.length; i++) + { + content.appendChild(fns[i](content)); + } + })); + }; + + Sidebar.prototype.addMSCAEManagementGovernanceMediaServicePalette = function(gn, r, sb, s) + { + var dt = 'ms microsoft cloud enterprise management and governance service media'; + + var fns = + [ + this.createVertexTemplateEntry(s + 'Azure_Media_Player.svg;', + r * 0.45, r * 0.5, '', 'Azure Media Player', null, null, this.getTagsForStencil(gn, 'azure media player', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Content_Protection.svg;', + r * 0.45, r * 0.5, '', 'Content Protection', null, null, this.getTagsForStencil(gn, 'content protection', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Media_Encoding.svg;', + r * 0.43, r * 0.5, '', 'Media Encoding', null, null, this.getTagsForStencil(gn, 'media encoding', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Media_On_Demand.svg;', + r * 0.5, r * 0.5, '', 'Media On Demand', null, null, this.getTagsForStencil(gn, 'media_on_demand', dt).join(' ')) + ]; + + this.addPalette('mscaeManagement and Governance Service Media', 'CAE / Management and Governance Service - Media', false, mxUtils.bind(this, function(content) + { + for (var i = 0; i < fns.length; i++) + { + content.appendChild(fns[i](content)); + } + })); + }; + + Sidebar.prototype.addMSCAEMigrateServicePalette = function(gn, r, sb, s) + { + var dt = 'ms microsoft cloud enterprise migrate service'; + + var fns = + [ + this.createVertexTemplateEntry(s + 'Azure_Database_Migration_Services.svg;', + r * 0.5, r * 0.5, '', 'Azure Database Migration Services', null, null, this.getTagsForStencil(gn, 'azure database migration services', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Migration_Projects.svg;', + r * 0.5, r * 0.32, '', 'Migration Projects', null, null, this.getTagsForStencil(gn, 'migration projects', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Backup.svg;', + r * 0.5, r * 0.42, '', 'Recovery Services Vaults', null, null, this.getTagsForStencil(gn, 'recovery services vaults vault', dt).join(' ')) + ]; + + this.addPalette('mscaeMigrate Service', 'CAE / Migrate Service', false, mxUtils.bind(this, function(content) + { + for (var i = 0; i < fns.length; i++) + { + content.appendChild(fns[i](content)); + } + })); + }; + + Sidebar.prototype.addMSCAEMixedRealityServicePalette = function(gn, r, sb, s) + { + var dt = 'ms microsoft cloud enterprise mixed reality service'; + + var fns = + [ + this.createVertexTemplateEntry(s + 'Spatial_Anchor.svg;', + r * 0.48, r * 0.5, '', 'Spatial Anchor', null, null, this.getTagsForStencil(gn, 'spatial anchor', dt).join(' ')) + ]; + + this.addPalette('mscaeMixed Reality Service', 'CAE / Mixed Reality Service', false, mxUtils.bind(this, function(content) + { + for (var i = 0; i < fns.length; i++) + { + content.appendChild(fns[i](content)); + } + })); + }; + + Sidebar.prototype.addMSCAEMobileServicePalette = function(gn, r, sb, s) + { + var dt = 'ms microsoft cloud enterprise mobile service'; + + var fns = + [ + this.createVertexTemplateEntry(s + 'App_Service_Mobile_App.svg;', + r * 0.34, r * 0.5, '', 'Azure App Service - Mobile', null, null, this.getTagsForStencil(gn, 'azure app service mobile', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Mobile_Engagement.svg;', + r * 0.34, r * 0.5, '', 'Azure Mobile Engagement', null, null, this.getTagsForStencil(gn, 'azure mobile engagement', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Notification_Hubs.svg;', + r * 0.5, r * 0.5, '', 'Notification_Hubs', null, null, this.getTagsForStencil(gn, 'notification hubs', dt).join(' ')) + ]; + + this.addPalette('mscaeMobile Service', 'CAE / Mobile Service', false, mxUtils.bind(this, function(content) + { + for (var i = 0; i < fns.length; i++) + { + content.appendChild(fns[i](content)); + } + })); + }; + + Sidebar.prototype.addMSCAENetworkingServicePalette = function(gn, r, sb, s) + { + var dt = 'ms microsoft cloud enterprise networking service'; + + var fns = + [ + this.createVertexTemplateEntry(s + 'Application_Gateway.svg;', + r * 0.5, r * 0.5, '', 'Application Gateway', null, null, this.getTagsForStencil(gn, 'application gateway', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Application_Security_Groups.svg;', + r * 0.37, r * 0.5, '', 'Application Security Groups', null, null, this.getTagsForStencil(gn, 'application security groups', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Azure_Firewall.svg;', + r * 0.5, r * 0.5, '', 'Azure Firewall', null, null, this.getTagsForStencil(gn, 'azure firewall', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Content_Delivery_Network.svg;', + r * 0.5, r * 0.23, '', 'CDN Profiles', null, null, this.getTagsForStencil(gn, 'cdn profiles content delivery network', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Connections.svg;', + r * 0.5, r * 0.5, '', 'Connections', null, null, this.getTagsForStencil(gn, 'connections', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Connections.svg;', + r * 0.5, r * 0.5, '', 'Connections', null, null, this.getTagsForStencil(gn, 'connections', dt).join(' ')), + this.createVertexTemplateEntry(s + 'DDOS_Protection_Plans.svg;', + r * 0.37, r * 0.5, '', 'DDOS Protection Plans', null, null, this.getTagsForStencil(gn, 'ddos protection plans', dt).join(' ')), + this.createVertexTemplateEntry(s + 'DNS_Private_Zones.svg;', + r * 0.5, r * 0.5, '', 'DNS Private Zones', null, null, this.getTagsForStencil(gn, 'dns domain name server private zones', dt).join(' ')), + this.createVertexTemplateEntry(s + 'DNS.svg;', + r * 0.5, r * 0.5, '', 'DNS Zones', null, null, this.getTagsForStencil(gn, 'dns domain name server zones', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Express_Route.svg;', + r * 0.5, r * 0.3, '', 'Express Route Circuits', null, null, this.getTagsForStencil(gn, 'express route circuits', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Front_Doors.svg;', + r * 0.5, r * 0.44, '', 'Front Doors', null, null, this.getTagsForStencil(gn, 'front doors', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Load_Balancer_feature.svg;', + r * 0.5, r * 0.5, '', 'Load Balancers', null, null, this.getTagsForStencil(gn, 'load balancer balancers', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Local_Network_Gateways.svg;', + r * 0.5, r * 0.5, '', 'Local Network Gateways', null, null, this.getTagsForStencil(gn, 'local network gateways', dt).join(' ')), + this.createVertexTemplateEntry(s + 'NetworkInterfaceCard.svg;', + r * 0.44, r * 0.5, '', 'Network Interface Card', null, null, this.getTagsForStencil(gn, 'network interface card', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Network_Security_Groups_Classic.svg;', + r * 0.37, r * 0.5, '', 'Network Security Groups (Classic)', null, null, this.getTagsForStencil(gn, 'network security group classic', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Network_watcher.svg;', + r * 0.5, r * 0.5, '', 'Network Watcher', null, null, this.getTagsForStencil(gn, 'network watcher', dt).join(' ')), + this.createVertexTemplateEntry(s + 'On_Premises_Data_Gateways.svg;', + r * 0.5, r * 0.5, '', 'On-Premises Data Gateways', null, null, this.getTagsForStencil(gn, 'on premises data gateways', dt).join(' ')), + this.createVertexTemplateEntry(s + 'App_Service_IPAddress.svg;', + r * 0.5, r * 0.42, '', 'Public IP Addresses', null, null, this.getTagsForStencil(gn, 'app service ip internet protocol address addresses', dt).join(' ')), + this.createVertexTemplateEntry(s + 'ClassicIPAddress.svg;', + r * 0.5, r * 0.42, '', 'Reserved IP Addresses (Classic)', null, null, this.getTagsForStencil(gn, 'classic ip internet protocol address adresses', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Route_Filter.svg;', + r * 0.5, r * 0.42, '', 'Route Filters', null, null, this.getTagsForStencil(gn, 'route filters', dt).join(' ')), + this.createVertexTemplateEntry(s + 'UserDefinedRoute.svg;', + r * 0.5, r * 0.5, '', 'Route Tables', null, null, this.getTagsForStencil(gn, 'route tables', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Service_Endpoint_Policies.svg;', + r * 0.49, r * 0.5, '', 'Service Endpoint Policies', null, null, this.getTagsForStencil(gn, 'service endpoint policies', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Traffic_Manager.svg;', + r * 0.5, r * 0.5, '', 'Traffic Manager Profiles', null, null, this.getTagsForStencil(gn, 'traffic manager profiles', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Virtual_Network_Classic.svg;', + r * 0.5, r * 0.28, '', 'Virtual Network (Classic)', null, null, this.getTagsForStencil(gn, 'virtual network classic', dt).join(' ')), + this.createVertexTemplateEntry(s + 'VPN_Gateway.svg;', + r * 0.45, r * 0.5, '', 'Virtual Network Gateways', null, null, this.getTagsForStencil(gn, 'vpn gateway gateways virtual private network', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Virtual_Network.svg;', + r * 0.5, r * 0.28, '', 'Virtual Networks', null, null, this.getTagsForStencil(gn, 'virtual network networks', dt).join(' ')), + this.createVertexTemplateEntry(s + 'aspect=fixed;html=1;perimeter=none;align=center;shadow=0;dashed=0;image;fontSize=12;image=img/lib/mscae/Virtual_WANs.svg;', + r * 0.5, r * 0.5, '', 'Virtual WANs', null, null, this.getTagsForStencil(gn, 'virtual wans wan wide area network networks', dt).join(' ')) + ]; + + this.addPalette('mscaeNetworking Service', 'CAE / Networking Service', false, mxUtils.bind(this, function(content) + { + for (var i = 0; i < fns.length; i++) + { + content.appendChild(fns[i](content)); + } + })); + }; + + Sidebar.prototype.addMSCAEOtherCategoryServicePalette = function(gn, r, sb, s) + { + var dt = 'ms microsoft cloud enterprise other category service'; + + var fns = + [ + this.createVertexTemplateEntry(s + 'CloudSimple_Nodes.svg;', + r * 0.49, r * 0.5, '', 'CloudSimple Nodes', null, null, this.getTagsForStencil(gn, 'cloudsimple nodes', dt).join(' ')), + this.createVertexTemplateEntry(s + 'CloudSimple_Services.svg;', + r * 0.5, r * 0.5, '', 'CloudSimple Services', null, null, this.getTagsForStencil(gn, 'cloudsimple services', dt).join(' ')), + this.createVertexTemplateEntry(s + 'CloudSimple_Virtual_Machines.svg;', + r * 0.5, r * 0.32, '', 'CloudSimple Virtual Machines', null, null, this.getTagsForStencil(gn, 'cloudsimple virtual machines', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Controllers.svg;', + r * 0.5, r * 0.44, '', 'Controllers', null, null, this.getTagsForStencil(gn, 'controllers', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Customer_Lockbox.svg;', + r * 0.47, r * 0.5, '', 'Customer Lockbox', null, null, this.getTagsForStencil(gn, 'customer lockbox', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Education.svg;', + r * 0.5, r * 0.39, '', 'Education', null, null, this.getTagsForStencil(gn, 'education', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Image_Definitions.svg;', + r * 0.5, r * 0.39, '', 'Image Definitions', null, null, this.getTagsForStencil(gn, 'image definitions', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Image_Versions.svg;', + r * 0.5, r * 0.48, '', 'Image Versions', null, null, this.getTagsForStencil(gn, 'image versions', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Resource_Explorer.svg;', + r * 0.5, r * 0.46, '', 'Resource Explorer', null, null, this.getTagsForStencil(gn, 'resource explorer', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Shared_Image_Galleries.svg;', + r * 0.5, r * 0.5, '', 'Shared Image Galleries', null, null, this.getTagsForStencil(gn, 'shared image galleries', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Tenant_Status.svg;', + r * 0.46, r * 0.5, '', 'Tenant Status', null, null, this.getTagsForStencil(gn, 'tenant status', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Web_App_Firewall.svg;', + r * 0.5, r * 0.5, '', 'Web App Firewall', null, null, this.getTagsForStencil(gn, 'web app firewall', dt).join(' ')) + ]; + + this.addPalette('mscaeOther Category Service', 'CAE / Other Category Service', false, mxUtils.bind(this, function(content) + { + for (var i = 0; i < fns.length; i++) + { + content.appendChild(fns[i](content)); + } + })); + }; + + Sidebar.prototype.addMSCAESecurityServicePalette = function(gn, r, sb, s) + { + var dt = 'ms microsoft cloud enterprise security service'; + + var fns = + [ + this.createVertexTemplateEntry(s + 'Azure_Sentinel.svg;', + r * 0.44, r * 0.5, '', 'Azure Sentinel', null, null, this.getTagsForStencil(gn, 'azure sentinel', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Key_Vaults.svg;', + r * 0.48, r * 0.5, '', 'Key Vaults', null, null, this.getTagsForStencil(gn, 'key vaults', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Security_Center.svg;', + r * 0.36, r * 0.5, '', 'Security Center', null, null, this.getTagsForStencil(gn, 'security center', dt).join(' ')) + ]; + + this.addPalette('mscaeSecurity Service', 'CAE / Security Service', false, mxUtils.bind(this, function(content) + { + for (var i = 0; i < fns.length; i++) + { + content.appendChild(fns[i](content)); + } + })); + }; + + Sidebar.prototype.addMSCAEStorageServicePalette = function(gn, r, sb, s) + { + var dt = 'ms microsoft cloud enterprise storage service'; + + var fns = + [ + this.createVertexTemplateEntry(s + 'Archive_Storage.svg;', + r * 0.5, r * 0.48, '', 'Archive Storage', null, null, this.getTagsForStencil(gn, 'archive storage', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Azure_NetApp_files.svg;', + r * 0.5, r * 0.42, '', 'Azure NetApp files', null, null, this.getTagsForStencil(gn, 'azure netapp files', dt).join(' ')), + this.createVertexTemplateEntry(s + 'StorSimple.svg;', + r * 0.5, r * 0.45, '', 'StorSimple', null, null, this.getTagsForStencil(gn, 'storsimple', dt).join(' ')), + this.createVertexTemplateEntry(s + 'AzureFXTEdgeFiler.svg;', + r * 0.5, r * 0.5, '', 'AzureFXTEdgeFiler', null, null, this.getTagsForStencil(gn, 'azurefxtedgefiler', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Blog_Storage.svg;', + r * 0.5, r * 0.46, '', 'Blog Storage', null, null, this.getTagsForStencil(gn, 'blog storage', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Data_Box_Edge_Data_Box_Gateway.svg;', + r * 0.5, r * 0.32, '', 'Data Box Edge - Data Box Gateway', null, null, this.getTagsForStencil(gn, 'data box edge data gateway', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Data_Box.svg;', + r * 0.5, r * 0.47, '', 'Data Box / Import Export Storage', null, null, this.getTagsForStencil(gn, 'data box', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Data_Lake_Storage.svg;', + r * 0.5, r * 0.46, '', 'Data Lake Storage', null, null, this.getTagsForStencil(gn, 'data lake storage', dt).join(' ')), + this.createVertexTemplateEntry(s + 'General_Storage.svg;', + r * 0.5, r * 0.5, '', 'General Storage', null, null, this.getTagsForStencil(gn, 'general storage', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Queues_Storage.svg;', + r * 0.5, r * 0.44, '', 'Queues Storage', null, null, this.getTagsForStencil(gn, 'queues storage', dt).join(' ')), + this.createVertexTemplateEntry(s + 'ClassicStorage.svg;', + r * 0.5, r * 0.43, '', 'Classic Storage', null, null, this.getTagsForStencil(gn, 'classic storage', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Storage_Accounts.svg;', + r * 0.5, r * 0.45, '', 'Storage Accounts', null, null, this.getTagsForStencil(gn, 'storage accounts', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Storage_Explorer.svg;', + r * 0.5, r * 0.5, '', 'Storage Explorer', null, null, this.getTagsForStencil(gn, 'storage explorer', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Storage_sync_service.svg;', + r * 0.5, r * 0.5, '', 'Storage Sync Services', null, null, this.getTagsForStencil(gn, 'storage sync services', dt).join(' ')), + this.createVertexTemplateEntry(s + 'StorSimple_Data_Managers.svg;', + r * 0.37, r * 0.5, '', 'StorSimple Data Managers', null, null, this.getTagsForStencil(gn, 'storsimple data managers', dt).join(' ')), + this.createVertexTemplateEntry('aspect=fixed;verticalLabelPosition=bottom;html=1;verticalAlign=top;align=center;strokeColor=none;fillColor=#00BEF2;shape=mxgraph.azure.storsimple;', + r * 0.5, r * 0.45, '', 'StorSimple Device Managers', null, null, this.getTagsForStencil(gn, 'storsimple device managers', dt).join(' ')), + this.createVertexTemplateEntry(s + 'StorSimple_Data_Managers.svg;', + r * 0.37, r * 0.5, '', 'StorSimple Data Managers', null, null, this.getTagsForStencil(gn, 'storsimple data managers', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Table_Storage.svg;', + r * 0.5, r * 0.48, '', 'Table Storage', null, null, this.getTagsForStencil(gn, 'table storage', dt).join(' ')) + ]; + + this.addPalette('mscaeStorage Service', 'CAE / Storage Service', false, mxUtils.bind(this, function(content) + { + for (var i = 0; i < fns.length; i++) + { + content.appendChild(fns[i](content)); + } + })); + }; + + Sidebar.prototype.addMSCAEWebServicePalette = function(gn, r, sb, s) + { + var dt = 'ms microsoft cloud enterprise web service'; + + var fns = + [ + this.createVertexTemplateEntry(s + 'Connection.svg;', + r * 0.5, r * 0.31, '', 'Connection', null, null, this.getTagsForStencil(gn, 'connection', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Certificate.svg;', + r * 0.5, r * 0.42, '', 'App Service Certificates', null, null, this.getTagsForStencil(gn, 'app application certificates certificate', dt).join(' ')), + this.createVertexTemplateEntry(s + 'CustomDomain.svg;', + r * 0.5, r * 0.42, '', 'App Service Domains', null, null, this.getTagsForStencil(gn, 'app service domain domains', dt).join(' ')), + this.createVertexTemplateEntry(s + 'App_Service.svg;', + r * 0.5, r * 0.5, '', 'App Service Environments', null, null, this.getTagsForStencil(gn, 'app service environments', dt).join(' ')), + this.createVertexTemplateEntry(s + 'WebHosting.svg;', + r * 0.5, r * 0.5, '', 'App Service Plans', null, null, this.getTagsForStencil(gn, 'app plans web hosting', dt).join(' ')), + this.createVertexTemplateEntry(s + 'App_Services.svg;', + r * 0.5, r * 0.5, '', 'App Services', null, null, this.getTagsForStencil(gn, 'app services', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Media_Services.svg;', + r * 0.44, r * 0.5, '', 'Azure Media Services', null, null, this.getTagsForStencil(gn, 'azure media services', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Search.svg;', + r * 0.5, r * 0.5, '', 'Azure Search', null, null, this.getTagsForStencil(gn, 'azure search', dt).join(' ')), + this.createVertexTemplateEntry(s + 'Notification_Hubs.svg;', + r * 0.5, r * 0.5, '', 'Notification Hub Namespaces', null, null, this.getTagsForStencil(gn, 'notification hub namespace namespaces', dt).join(' ')), + this.createVertexTemplateEntry(s + 'SignalR.svg;', + r * 0.5, r * 0.5, '', 'SignalR', null, null, this.getTagsForStencil(gn, 'signalr', dt).join(' ')) + ]; + + this.addPalette('mscaeWeb Service', 'CAE / Web Service', false, mxUtils.bind(this, function(content) { for (var i = 0; i < fns.length; i++) { content.appendChild(fns[i](content)); } })); - } })(); diff --git a/src/main/webapp/js/diagramly/sidebar/Sidebar.js b/src/main/webapp/js/diagramly/sidebar/Sidebar.js index 2df1fc241058e77fcc9be8d7227c1c2c3c04dab9..f45ef03336777b19b4eaad6d679e20426a195fd9 100644 --- a/src/main/webapp/js/diagramly/sidebar/Sidebar.js +++ b/src/main/webapp/js/diagramly/sidebar/Sidebar.js @@ -106,7 +106,7 @@ {id: 'android', prefix: 'android', libs: [''/*prefix is library*/]}, {id: 'aws3d'}, {id: 'flowchart'}, {id: 'basic'}, {id: 'infographic'}, {id: 'arrows'}, {id: 'arrows2'}, {id: 'lean_mapping'}, {id: 'citrix'}, {id: 'azure'}, {id: 'network'}, {id: 'vvd'}, {id: 'sitemap'}, {id: 'dfd'}, - {id: 'mscae', prefix: 'mscae', libs: ['Companies', 'EnterpriseFlat', 'Cloud', 'Enterprise', 'General', 'General Symbols', 'Intune', 'OMS', 'OpsManager', 'Other', 'System Center', 'Virtual Machine', 'Deprecated', 'Cloud Color', 'Deprecated Color']}, + {id: 'mscae', prefix: 'mscae', libs: ['Companies', 'EnterpriseFlat', 'IntuneFlat', 'OMSFlat', 'System CenterFlat', 'AI and ML Service', 'Analytics Service', 'Compute Service', 'Compute Service VM', 'Container Service', 'Databases Service', 'DevOps Service', 'General Service', 'Identity Service', 'Integration Service', 'Internet of Things Service', 'Intune Service', 'Management and Governance Service', 'Management and Governance Service Media', 'Migrate Service', 'Mixed Reality Service', 'Mobile Service', 'Networking Service', 'Other Category Service', 'Security Service', 'Storage Service', 'Web Service']}, {id: 'active_directory'}, {id: 'bpmn', prefix: 'bpmn', libs: [''/*prefix is library*/, 'Gateways', 'Events']}, {id: 'clipart', prefix: null, libs: ['computer', 'finance', 'clipart', 'networking', 'people', 'telco']}, diff --git a/src/main/webapp/js/stencils.min.js b/src/main/webapp/js/stencils.min.js index 4e7d57987dfea2d46cb0e173d39d2edce754b84a..b2fa62855ec944cd0173612d527b8db262aefd2a 100644 --- a/src/main/webapp/js/stencils.min.js +++ b/src/main/webapp/js/stencils.min.js @@ -27,7 +27,7 @@ f['electrical/miscellaneous.xml'] = '7V1tc9s2Ev41/hgOCVIk9bFx07t2mjRz6Uw/szJrayJ f['electrical/waveforms.xml'] = '7VvbctowEP0aHuORbXx77CTpTGfamU7Ty7MCCngibCo7QP6+8g2QfIm0cTGGPMWWfNjV7tFqtVIm9m2yxGuSTCwU4RWZ2HcTy1rtFgyvlwahZJaycIapscUb8hSzFf/Qmtj3E/RpgoJJieZgnKz5twV8g1mIHynJPrXQsmgMUPF6kHKHU8wbbpc4WoTRouhOUhY/k204T0tcGC0JC9Oid3v8W3stckVmcRRxDcI44ip+ljof8ex5weKXaC505H1rnIkSW/OOVbzJRrYrZJbqvwqj+dwIpGF0BAxEZBewSyJYYJuq9i1vrA0+b20xl33LGUDa7Fh4rm573tIEyzsK9vRKp/torkkm5/RkchzBRVNH2bkeUkeKMn2wzEAD2Q+Fp2Bdr4H70zbuf4k2mIZz/mRqTAATDR5O1ZlhOspAUaDdExfVJbpQiR5UosZSI1kV9bNITcGO7ER2elJDphxWwL7UkOmBZQZw2yI1aN9h8Cmk9LSh0HkzElrjioSWob7WSVOoG9o5h3SkTuFSXbhUDy41eIeFkSJ23AlFazL9kGKWnn86rZETdy9C4AmkIVMnt5WIrJ4XiCIdsLKSyCvLp38Xa8iY1o/zzvkGyksGj6bxNuINP/BqrRNJR0SmK6053c8XRMOjAyyNVcai71IZeZk+dRzDsmpu3ZAo1fCr5RiO26NvCaXhOiEHLU0krTPFa0v6U42owYI9b+u0mCgRsVnLCovZjH9LMVuQG/5880TxQhgtk/YU7FV8T7aErOuw3dFM5G83eBcmNyxOceamJnM67Yo2M7+DxIVVwpQwGq4yDqHi77FT32Fg03A9QXdXfbJXDIYkEoEAtCstmrEzGifNhmk15hmUFb6SDaGjWrt1trmqO+Rxh/r68v39heZRVqdaPrxnNc4eLbUl/G2kOtDtCQg/Yb3MRKWdvToVzuHZewIKwlkP5yCY9mpnNuPm7n7ffyDvA96mcczHM6rqSjUQFcfatmHbQFLUsTqSXVdOBN+D1ZGsU1PqRrZKHfdM8H3D9GpzobDEH7zRKSb4geHpFhS6DAGrtdtG0JVnzl5YATZLt/pGuStBO6uM1q7hlybZ2eWvTvdNr+Z+u1hNCEtUxIZp4lqG74uaeKZhW6ImeyMfNPE9IxA1OXKqgjbau8b/xsV6UKbxljc8/H3BDMDI4ZMLrVo0NDaDT2FEoK+O9BEUqXiHYORBtU7ka2DwCS40dQLhNPwg8Ft7u4eUrC+5MDEFb7TA7L2GjVYrkS61RtBXLPuoNsk7dplIP8NVfhEIfc2toc4m//RsMgUPadTBPWWgdLc+ANIw8IGqShLbDo8adIWqiqBGVVL0NNMl70rJLjt6wzRclCd+MxKlhO1JXWmaFC2boy8f4zSNV0V7FUmk46+G8Z2wrrafpt8we9bMIEZ9PeFkBaM5Tpb85zhhsjs91VNlQNS6689wZM6/KB+OIlXD14MXaGUi6WQQg1RqHWgOIQG7651daYsDL3e2QT/ICzisl6lrnzt14Sf3g11Qv0Qi1XdPv7K90+iubfb+z8nntpc5NCRFyz8='; f['electrical/rot_mech.xml'] = '7VxLc6M4EP41PobiYTA5Zp2Zra3azWFymOOWBisxGwwugePk36942dPCKEISWHFclYotGVqtVvfXrW7BzFvma7TF+cy1U7TBM+9+5rqbt2eCtmsLJzgqSByhxCJZ8e8GR2v668z7NrPvZs2d9EaUb+l19a2viMToV4LL61x7XXc6tl23j0PckQ0qdqS5Li9I9oL38apo7ojTNSZxUf+6B1Tq0V37+OctoyxNKQtxluYnfu9cS4dDcVoAhh5/1oNt6bgbXGBSdzeMv4HWe8NQ1fouO+LDN4ERHTCi3Tuit6T9fDF4y18oenkm2S5dfcjzFpVLwb0I3rDJXnGvoOx+xvspJnH6G0WGZChDEfIYQooc4YryeNDzD5ers3Q98q5+4y6bt3zKCBZc1drOOBrUoVX11oY+3OzdjtXviozafRzR3h+Y2n9qjP0PN3/b8tUAQML+OUPqRoAcvfZoyohIEWi3QTGKE9rgU5wkUZZkhDbrz4rPNEuxIKsrlK8pr1Rj0lJ9mm8VFaoetjuADF7R782XQT6NhyTwSoLzIiNTqJIfSqAvT5cYgo6YZHkU566yukdJlgtJs1+juwo5sWPwWcfwR5JFL3H6TDvv8WscfeW48HG4X+gf8SK8giPmaHmGx7oFQZJXv2CCXyAlnHTQozF/LwCG4XlSIfj0INjq+NHwl8muqHfYZiCfCPA1Aaku6LuCLTCmc4CtoMlAghBsPX9kijL+AM6Z9QcaeAy0zzqQmfXVZZnjsnQOrmjkLgPU6trJUFQnuBiZoOCcxXdO0wYMgd0XMDR2IhY03NojxgzXLJpmq2WEpe5IIUENMMBQ9DUAC6QYyFBkMkO6xRjYusXIUNQgRmbSgmI0pBoBrzQhTNAaZHvqy+tpoAhZDLTzeCtF0VQH3BrU0ffc4wS9Vxp1V7mLAW544ViLcztiy55ffbGweTjNiim5EUTK2meCyDO+od9vnhL0DKRE2kpB236H7XyP8bZ7W4fHtxv0Fuc3JCtQpZknQEjKx0CZeIxIpGTCBO2smKVo8tnUAG0dNjWA26eu9oddcCxwWgyAxHHTmQ8SexM1NPw6B3zUzWkeWK4ySX6KT51J37PUS8yQSS3z5sb94bmmPSHSlfxGaEsb5f+Kx/rGy8hCTlGB/x7jZDUArEdNI13rQODS8xfThcPWVrEIHK0TtjpAsO1eViBoNZH94HOzf6ud/YsNcoM5i5t/YnpdeXDJkDBXJgMfKoKnzLbfmw4+cZLE2/LMXLuK7V56D5unE2s2n099mmxCFPLRMZgPBOvOgWDbZitYGEXO+yWrwpR6UVqru/XF1g0SZDK9oTpFyOIC8sjRcVEeJc9TmJrqdV0W5/9GRbQ28oTqgwjiWzK19Wt8bvI5LXVg6RitqI+ZLLozwSca+aiDLWHOPFVgCDqLCeFbq2Tmvm4rccemKPVcyQU8BtKtp/6D0h1KaNcySykryQAfG4Qjuli9dU2hIacvV2h16kanwMQExbNgSE+wkGpIVgReaYKH1RsXqT8sFIQyFE3dy7T5jN9gFkdrlJbvdaDdf6V0xcvH74zZ0MiksBaeGvjJIDxnzOsO47rDuO4wLnSH4cKJiCEPVzShdopQ2FLnnS5hh+FZgcN6vx9tfWvI5sKaeyIer2de0wW6YVtYOWTZLV/mLQP9JceGfFtybKMLAlXtg3OK/pFPgaqj8ByMjLBVgXiEE0KB5cCTv05g2ervXjmYyZGu0/Z8Oew58dKzx/c0WpNsAPDU76i6oMKBxJBnLBS3rwjbw2bPS874fOp97FahSLuAk1rASTGyF936Thd92RL6CAkyJ0+Fl1GSxVA9IdHhUdQMzcxInIDGn3G6qqury4M9D8DJy6uwagVKoSE//bO7Ymsp9mSUw9SRjj0j59dPjBz6qnMWkfNxHJ1zlh2ZN+fR3f4Bn/ZMe2A14ax+v/Qg/2VxmdWqPipeh5yKNy2BdAu3QQuxBBKPYqhOUPtGRYsnbjsa0/gf'; f['electrical/logic_gates.xml'] = '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'; -f['electrical/electro-mechanical.xml'] = '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'; +f['electrical/electro-mechanical.xml'] = '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'; f['lean_mapping.xml'] = '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'; f['aws2/mobile_services.xml'] = '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'; f['aws2/internet_of_things.xml'] = '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'; diff --git a/src/main/webapp/js/viewer.min.js b/src/main/webapp/js/viewer.min.js index bf14997082db914ec2a780b2faa64680845c8f5b..7dbccabd022f5855c031d3ead6c6ec3e1bfa8bf0 100644 --- a/src/main/webapp/js/viewer.min.js +++ b/src/main/webapp/js/viewer.min.js @@ -101,7 +101,7 @@ var Base64={_keyStr:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456 String.fromCharCode(d>>6|192):(b+=String.fromCharCode(d>>12|224),b+=String.fromCharCode(d>>6&63|128)),b+=String.fromCharCode(d&63|128))}return b},_utf8_decode:function(a){var b="",c=0,d;for(c1=c2=0;c<a.length;)d=a.charCodeAt(c),128>d?(b+=String.fromCharCode(d),c++):191<d&&224>d?(c2=a.charCodeAt(c+1),b+=String.fromCharCode((d&31)<<6|c2&63),c+=2):(c2=a.charCodeAt(c+1),c3=a.charCodeAt(c+2),b+=String.fromCharCode((d&15)<<12|(c2&63)<<6|c3&63),c+=3);return b}};window.urlParams=window.urlParams||{};window.isLocalStorage=window.isLocalStorage||!1;window.mxLoadSettings=window.mxLoadSettings||"1"!=urlParams.configure;window.isSvgBrowser=window.isSvgBrowser||0>navigator.userAgent.indexOf("MSIE")||9<=document.documentMode;window.EXPORT_URL=window.EXPORT_URL||"https://exp.draw.io/ImageExport4/export";window.PLANT_URL=window.PLANT_URL||"https://exp-plant.draw.io/plantuml4";window.DRAW_MATH_URL=window.DRAW_MATH_URL||"https://www.draw.io/math"; window.VSD_CONVERT_URL=window.VSD_CONVERT_URL||"https://convert.draw.io/VsdConverter/api/converter";window.EMF_CONVERT_URL=window.EMF_CONVERT_URL||"https://convert.draw.io/emf2png/convertEMF";window.DRAWIO_GITLAB_URL=window.DRAWIO_GITLAB_URL||"https://gitlab.com";window.DRAWIO_GITLAB_ID=window.DRAWIO_GITLAB_ID||"5cdc018a32acddf6eba37592d9374945241e644b8368af847422d74c8709bc44";window.SAVE_URL=window.SAVE_URL||"save";window.OPEN_URL=window.OPEN_URL||"open";window.PROXY_URL=window.PROXY_URL||"proxy"; window.VIEWER_URL=null;window.SHAPES_PATH=window.SHAPES_PATH||"shapes";window.GRAPH_IMAGE_PATH=window.GRAPH_IMAGE_PATH||"img";window.ICONSEARCH_PATH=window.ICONSEARCH_PATH||((0<=navigator.userAgent.indexOf("MSIE")||urlParams.dev)&&"file:"!=window.location.protocol?"iconSearch":"https://www.draw.io/iconSearch");window.TEMPLATE_PATH=window.TEMPLATE_PATH||"templates";window.NEW_DIAGRAM_CATS_PATH=window.NEW_DIAGRAM_CATS_PATH||"newDiagramCats";window.PLUGINS_BASE_PATH=window.PLUGINS_BASE_PATH||""; -window.RESOURCES_PATH=window.RESOURCES_PATH||"resources";window.RESOURCE_BASE=window.RESOURCE_BASE||RESOURCES_PATH+"/dia";window.mxLoadResources=window.mxLoadResources||!1;window.mxLanguage=window.mxLanguage||function(){var a="1"==urlParams.offline?"en":urlParams.lang;if(null==a&&"undefined"!=typeof JSON&&isLocalStorage)try{var b=localStorage.getItem(".drawio-config");null!=b&&(a=JSON.parse(b).language||null)}catch(c){isLocalStorage=!1}return a}(); +window.RESOURCES_PATH=window.RESOURCES_PATH||"resources";window.RESOURCE_BASE=window.RESOURCE_BASE||RESOURCES_PATH+"/dia";window.DRAWIO_CONFIG=window.DRAWIO_CONFIG||null;window.mxLoadResources=window.mxLoadResources||!1;window.mxLanguage=window.mxLanguage||function(){var a="1"==urlParams.offline?"en":urlParams.lang;if(null==a&&"undefined"!=typeof JSON&&isLocalStorage)try{var b=localStorage.getItem(".drawio-config");null!=b&&(a=JSON.parse(b).language||null)}catch(c){isLocalStorage=!1}return a}(); window.mxLanguageMap=window.mxLanguageMap||{i18n:"",id:"Bahasa Indonesia",ms:"Bahasa Melayu",bs:"Bosanski",bg:"Bulgarian",ca:"Català ",cs:"ÄŒeÅ¡tina",da:"Dansk",de:"Deutsch",et:"Eesti",en:"English",es:"Español",fil:"Filipino",fr:"Français",it:"Italiano",hu:"Magyar",nl:"Nederlands",no:"Norsk",pl:"Polski","pt-br":"Português (Brasil)",pt:"Português (Portugal)",ro:"Română",fi:"Suomi",sv:"Svenska",vi:"Tiếng Việt",tr:"Türkçe",el:"Ελληνικά",ru:"РуÑÑкий",sr:"СрпÑки",uk:"УкраїнÑька",he:"עברית",ar:"العربية",th:"ไทย", ko:"한êµì–´",ja:"日本語",zh:"ç®€ä½“ä¸æ–‡","zh-tw":"ç¹é«”䏿–‡"};"undefined"===typeof window.mxBasePath&&(window.mxBasePath="mxgraph");if(null==window.mxLanguages){window.mxLanguages=[];for(var lang in mxLanguageMap)"en"!=lang&&window.mxLanguages.push(lang)} window.uiTheme=window.uiTheme||function(){var a=urlParams.ui;if(null==a&&"undefined"!==typeof JSON&&isLocalStorage)try{var b=localStorage.getItem(".drawio-config");null!=b&&(a=JSON.parse(b).ui||null)}catch(c){isLocalStorage=!1}try{null==a&&414>=(window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth)&&(a="min")}catch(c){}return a}();function setCurrentXml(a,b){null!=window.parent&&null!=window.parent.openFile&&window.parent.openFile.setData(a,b)} @@ -2801,24 +2801,24 @@ Math.min(b.length-1,urlParams.page||0))])),null!=f&&(a=Editor.parseDiagramNode(f function(a){var c=mxUtils.getTextContent(a),b=null;0<c.length?b=Graph.decompress(c):null!=a.firstChild&&(b=mxUtils.getXml(a.firstChild));return b};Editor.extractGraphModelFromPng=function(a){var c=null;try{var b=a.substring(a.indexOf(",")+1),f=window.atob&&!mxClient.IS_SF?atob(b):Base64.decode(b,!0);EditorUi.parsePng(f,mxUtils.bind(this,function(a,b,d){a=f.substring(a+8,a+8+d);"zTXt"==b?(d=a.indexOf(String.fromCharCode(0)),"mxGraphModel"==a.substring(0,d)&&(a=Graph.bytesToString(pako.inflateRaw(a.substring(d+ 2))).replace(/\+/g," "),null!=a&&0<a.length&&(c=a))):"tEXt"==b&&(a=a.split(String.fromCharCode(0)),1<a.length&&("mxGraphModel"==a[0]||"mxfile"==a[0])&&(c=a[1]));if(null!=c||"IDAT"==b)return!0}))}catch(I){}null!=c&&"%"==c.charAt(0)&&(c=decodeURIComponent(c));null!=c&&"%"==c.charAt(0)&&(c=decodeURIComponent(c));return c};Editor.shadowOptionEnabled=!0;Editor.config=null;Editor.configVersion=null;Editor.configure=function(a,c){if(null!=a){Editor.config=a;Editor.configVersion=a.version;Menus.prototype.defaultFonts= a.defaultFonts||Menus.prototype.defaultFonts;ColorDialog.prototype.presetColors=a.presetColors||ColorDialog.prototype.presetColors;ColorDialog.prototype.defaultColors=a.defaultColors||ColorDialog.prototype.defaultColors;StyleFormatPanel.prototype.defaultColorSchemes=a.defaultColorSchemes||StyleFormatPanel.prototype.defaultColorSchemes;Graph.prototype.defaultEdgeLength=a.defaultEdgeLength||Graph.prototype.defaultEdgeLength;DrawioFile.prototype.autosaveDelay=a.autosaveDelay||DrawioFile.prototype.autosaveDelay; -null!=a.templateFile&&(EditorUi.templateFile=a.templateFile);a.customFonts&&(Menus.prototype.defaultFonts=a.customFonts.concat(Menus.prototype.defaultFonts));a.customPresetColors&&(ColorDialog.prototype.presetColors=a.customPresetColors.concat(ColorDialog.prototype.presetColors));null!=a.customColorSchemes&&(StyleFormatPanel.prototype.defaultColorSchemes=a.customColorSchemes.concat(StyleFormatPanel.prototype.defaultColorSchemes));if(null!=a.css){var b=document.createElement("style");b.setAttribute("type", -"text/css");b.appendChild(document.createTextNode(a.css));var f=document.getElementsByTagName("script")[0];f.parentNode.insertBefore(b,f)}null!=a.libraries&&(Sidebar.prototype.customEntries=a.libraries);null!=a.enabledLibraries&&(Sidebar.prototype.enabledLibraries=a.enabledLibraries);null!=a.defaultLibraries&&(Sidebar.prototype.defaultEntries=a.defaultLibraries);null!=a.defaultCustomLibraries&&(Editor.defaultCustomLibraries=a.defaultCustomLibraries);null!=a.enableCustomLibraries&&(Editor.enableCustomLibraries= -a.enableCustomLibraries);null!=a.defaultVertexStyle&&(Graph.prototype.defaultVertexStyle=a.defaultVertexStyle);null!=a.defaultEdgeStyle&&(Graph.prototype.defaultEdgeStyle=a.defaultEdgeStyle);a.emptyDiagramXml&&(EditorUi.prototype.emptyDiagramXml=a.emptyDiagramXml);a.thumbWidth&&(Sidebar.prototype.thumbWidth=a.thumbWidth);a.thumbHeight&&(Sidebar.prototype.thumbHeight=a.thumbHeight);a.emptyLibraryXml&&(EditorUi.prototype.emptyLibraryXml=a.emptyLibraryXml);a.sidebarWidth&&(EditorUi.prototype.hsplitPosition= -a.sidebarWidth);a.fontCss&&(b=document.createElement("style"),b.setAttribute("type","text/css"),b.appendChild(document.createTextNode(a.fontCss)),f=document.getElementsByTagName("script")[0],f.parentNode.insertBefore(b,f),Editor.prototype.fontCss=a.fontCss);if(null!=a.plugins&&!c)for(App.initPluginCallback(),b=0;b<a.plugins.length;b++)mxscript(a.plugins[b])}};Editor.GUID_ALPHABET="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ-_";Editor.GUID_LENGTH=20;Editor.guid=function(a){a=null!= -a?a:Editor.GUID_LENGTH;for(var c=[],b=0;b<a;b++)c.push(Editor.GUID_ALPHABET.charAt(Math.floor(Math.random()*Editor.GUID_ALPHABET.length)));return c.join("")};Editor.prototype.timeout=25E3;Editor.prototype.useForeignObjectForMath=!1;Editor.prototype.editButtonLink=null!=urlParams.edit?decodeURIComponent(urlParams.edit):null;var a=Editor.prototype.setGraphXml;Editor.prototype.setGraphXml=function(c){c=null!=c&&"mxlibrary"!=c.nodeName?this.extractGraphModel(c):null;if(null!=c){var b=c.getElementsByTagName("parsererror"); -if(null!=b&&0<b.length){var b=b[0],f=b.getElementsByTagName("div");null!=f&&0<f.length&&(b=f[0]);throw{message:mxUtils.getTextContent(b)};}if("mxGraphModel"==c.nodeName){b=c.getAttribute("style")||"default-style2";if("1"==urlParams.embed||null!=b&&""!=b)b!=this.graph.currentStyle&&(f=null!=this.graph.themes?this.graph.themes[b]:mxUtils.load(STYLE_PATH+"/"+b+".xml").getDocumentElement(),null!=f&&(d=new mxCodec(f.ownerDocument),d.decode(f,this.graph.getStylesheet())));else if(f=null!=this.graph.themes? -this.graph.themes["default-old"]:mxUtils.load(STYLE_PATH+"/default-old.xml").getDocumentElement(),null!=f){var d=new mxCodec(f.ownerDocument);d.decode(f,this.graph.getStylesheet())}this.graph.currentStyle=b;this.graph.mathEnabled="1"==urlParams.math||"1"==c.getAttribute("math");b=c.getAttribute("backgroundImage");null!=b?(b=JSON.parse(b),this.graph.setBackgroundImage(new mxImage(b.src,b.width,b.height))):this.graph.setBackgroundImage(null);mxClient.NO_FO=this.graph.mathEnabled&&!this.useForeignObjectForMath? -!0:this.originalNoForeignObject;this.graph.useCssTransforms=!mxClient.NO_FO&&this.isChromelessView()&&this.graph.isCssTransformsSupported();this.graph.updateCssTransform();this.graph.setShadowVisible("1"==c.getAttribute("shadow"),!1)}a.apply(this,arguments)}else throw{message:mxResources.get("notADiagramFile")||"Invalid data",toString:function(){return this.message}};};var b=Editor.prototype.getGraphXml;Editor.prototype.getGraphXml=function(a){a=null!=a?a:!0;var c=b.apply(this,arguments);null!=this.graph.currentStyle&& -"default-style2"!=this.graph.currentStyle&&c.setAttribute("style",this.graph.currentStyle);null!=this.graph.backgroundImage&&c.setAttribute("backgroundImage",JSON.stringify(this.graph.backgroundImage));c.setAttribute("math",this.graph.mathEnabled?"1":"0");c.setAttribute("shadow",this.graph.shadowVisible?"1":"0");return c};Editor.prototype.isDataSvg=function(a){try{var c=mxUtils.parseXml(a).documentElement.getAttribute("content");if(null!=c&&(null!=c&&"<"!=c.charAt(0)&&"%"!=c.charAt(0)&&(c=unescape(window.atob? -atob(c):Base64.decode(cont,c))),null!=c&&"%"==c.charAt(0)&&(c=decodeURIComponent(c)),null!=c&&0<c.length)){var b=mxUtils.parseXml(c).documentElement;return"mxfile"==b.nodeName||"mxGraphModel"==b.nodeName}}catch(X){}return!1};Editor.prototype.extractGraphModel=function(a,c){return Editor.extractGraphModel.apply(this,arguments)};var e=Editor.prototype.resetGraph;Editor.prototype.resetGraph=function(){this.graph.mathEnabled="1"==urlParams.math;this.graph.view.x0=null;this.graph.view.y0=null;mxClient.NO_FO= -this.graph.mathEnabled&&!this.useForeignObjectForMath?!0:this.originalNoForeignObject;this.graph.useCssTransforms=!mxClient.NO_FO&&this.isChromelessView()&&this.graph.isCssTransformsSupported();this.graph.updateCssTransform();e.apply(this,arguments)};var d=Editor.prototype.updateGraphComponents;Editor.prototype.updateGraphComponents=function(){d.apply(this,arguments);mxClient.NO_FO=this.graph.mathEnabled&&!this.useForeignObjectForMath&&null!=Editor.MathJaxRender?!0:this.originalNoForeignObject;this.graph.useCssTransforms= -!mxClient.NO_FO&&this.isChromelessView()&&this.graph.isCssTransformsSupported();this.graph.updateCssTransform()};Editor.initMath=function(a,c){a=null!=a?a:DRAW_MATH_URL+"/MathJax.js?config=TeX-MML-AM_HTMLorMML";Editor.mathJaxQueue=[];Editor.doMathJaxRender=function(a){window.setTimeout(function(){"hidden"!=a.style.visibility&&MathJax.Hub.Queue(["Typeset",MathJax.Hub,a])},0)};window.MathJax={skipStartupTypeset:!0,showMathMenu:!1,messageStyle:"none",AuthorInit:function(){MathJax.Hub.Config(c||{jax:["input/TeX", -"input/MathML","input/AsciiMath","output/HTML-CSS"],extensions:["tex2jax.js","mml2jax.js","asciimath2jax.js"],"HTML-CSS":{imageFont:null},TeX:{extensions:["AMSmath.js","AMSsymbols.js","noErrors.js","noUndefined.js"]},tex2jax:{ignoreClass:"mxCellEditor"},asciimath2jax:{ignoreClass:"mxCellEditor"}});MathJax.Hub.Register.StartupHook("Begin",function(){for(var a=0;a<Editor.mathJaxQueue.length;a++)Editor.doMathJaxRender(Editor.mathJaxQueue[a])})}};Editor.MathJaxRender=function(a){"undefined"!==typeof MathJax&& -"undefined"!==typeof MathJax.Hub?Editor.doMathJaxRender(a):Editor.mathJaxQueue.push(a)};Editor.MathJaxClear=function(){Editor.mathJaxQueue=[]};var b=Editor.prototype.init;Editor.prototype.init=function(){b.apply(this,arguments);this.graph.addListener(mxEvent.SIZE,mxUtils.bind(this,function(a,c){null!=this.graph.container&&this.graph.mathEnabled&&!this.graph.blockMathRender&&Editor.MathJaxRender(this.graph.container)}))};var f=document.getElementsByTagName("script");if(null!=f&&0<f.length){var d=document.createElement("script"); -d.type="text/javascript";d.src=a;f[0].parentNode.appendChild(d)}};Editor.prototype.csvToArray=function(a){if(!/^\s*(?:'[^'\\]*(?:\\[\S\s][^'\\]*)*'|"[^"\\]*(?:\\[\S\s][^"\\]*)*"|[^,'"\s\\]*(?:\s+[^,'"\s\\]+)*)\s*(?:,\s*(?:'[^'\\]*(?:\\[\S\s][^'\\]*)*'|"[^"\\]*(?:\\[\S\s][^"\\]*)*"|[^,'"\s\\]*(?:\s+[^,'"\s\\]+)*)\s*)*$/.test(a))return null;var c=[];a.replace(/(?!\s*$)\s*(?:'([^'\\]*(?:\\[\S\s][^'\\]*)*)'|"([^"\\]*(?:\\[\S\s][^"\\]*)*)"|([^,'"\s\\]*(?:\s+[^,'"\s\\]+)*))\s*(?:,|$)/g,function(a,b,f,d){void 0!== -b?c.push(b.replace(/\\'/g,"'")):void 0!==f?c.push(f.replace(/\\"/g,'"')):void 0!==d&&c.push(d);return""});/,\s*$/.test(a)&&c.push("");return c};Editor.prototype.isCorsEnabledForUrl=function(a){null!=urlParams.cors&&null==this.corsRegExp&&(this.corsRegExp=new RegExp(decodeURIComponent(urlParams.cors)));return null!=this.corsRegExp&&this.corsRegExp.test(a)||"https://raw.githubusercontent.com/"===a.substring(0,34)||"https://cdn.rawgit.com/"===a.substring(0,23)||"https://rawgit.com/"===a.substring(0, -19)||/^https?:\/\/[^\/]*\.blob.core.windows.net\//.test(a)||/^https?:\/\/[^\/]*\.iconfinder.com\//.test(a)||/^https?:\/\/[^\/]*\.draw\.io\/proxy/.test(a)||/^https?:\/\/[^\/]*\.github\.io\//.test(a)};Editor.prototype.createImageUrlConverter=function(){var a=new mxUrlConverter;a.updateBaseUrl();var c=a.convert,b=this;a.convert=function(f){if(null!=f){var d="http://"==f.substring(0,7)||"https://"==f.substring(0,8);d&&!navigator.onLine?f=EditorUi.prototype.svgBrokenImage.src:!d||f.substring(0,a.baseUrl.length)== -a.baseUrl||EditorUi.prototype.crossOriginImages&&b.isCorsEnabledForUrl(f)?"chrome-extension://"==f.substring(0,19)||mxClient.IS_CHROMEAPP||(f=c.apply(this,arguments)):f=PROXY_URL+"?url="+encodeURIComponent(f)}return f};return a};Editor.prototype.createSvgDataUri=function(a){return"data:image/svg+xml;base64,"+btoa(unescape(encodeURIComponent(a)))};Editor.prototype.convertImageToDataUri=function(a,c){if(/(\.svg)$/i.test(a))mxUtils.get(a,mxUtils.bind(this,function(a){c(this.createSvgDataUri(a.getText()))}), +null!=a.templateFile&&(EditorUi.templateFile=a.templateFile);null!=a.globalVars&&(Editor.globalVars=a.globalVars);a.customFonts&&(Menus.prototype.defaultFonts=a.customFonts.concat(Menus.prototype.defaultFonts));a.customPresetColors&&(ColorDialog.prototype.presetColors=a.customPresetColors.concat(ColorDialog.prototype.presetColors));null!=a.customColorSchemes&&(StyleFormatPanel.prototype.defaultColorSchemes=a.customColorSchemes.concat(StyleFormatPanel.prototype.defaultColorSchemes));if(null!=a.css){var b= +document.createElement("style");b.setAttribute("type","text/css");b.appendChild(document.createTextNode(a.css));var f=document.getElementsByTagName("script")[0];f.parentNode.insertBefore(b,f)}null!=a.libraries&&(Sidebar.prototype.customEntries=a.libraries);null!=a.enabledLibraries&&(Sidebar.prototype.enabledLibraries=a.enabledLibraries);null!=a.defaultLibraries&&(Sidebar.prototype.defaultEntries=a.defaultLibraries);null!=a.defaultCustomLibraries&&(Editor.defaultCustomLibraries=a.defaultCustomLibraries); +null!=a.enableCustomLibraries&&(Editor.enableCustomLibraries=a.enableCustomLibraries);null!=a.defaultVertexStyle&&(Graph.prototype.defaultVertexStyle=a.defaultVertexStyle);null!=a.defaultEdgeStyle&&(Graph.prototype.defaultEdgeStyle=a.defaultEdgeStyle);a.emptyDiagramXml&&(EditorUi.prototype.emptyDiagramXml=a.emptyDiagramXml);a.thumbWidth&&(Sidebar.prototype.thumbWidth=a.thumbWidth);a.thumbHeight&&(Sidebar.prototype.thumbHeight=a.thumbHeight);a.emptyLibraryXml&&(EditorUi.prototype.emptyLibraryXml=a.emptyLibraryXml); +a.sidebarWidth&&(EditorUi.prototype.hsplitPosition=a.sidebarWidth);a.fontCss&&(b=document.createElement("style"),b.setAttribute("type","text/css"),b.appendChild(document.createTextNode(a.fontCss)),f=document.getElementsByTagName("script")[0],f.parentNode.insertBefore(b,f),Editor.prototype.fontCss=a.fontCss);if(null!=a.plugins&&!c)for(App.initPluginCallback(),b=0;b<a.plugins.length;b++)mxscript(a.plugins[b])}};Editor.GUID_ALPHABET="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ-_"; +Editor.GUID_LENGTH=20;Editor.guid=function(a){a=null!=a?a:Editor.GUID_LENGTH;for(var c=[],b=0;b<a;b++)c.push(Editor.GUID_ALPHABET.charAt(Math.floor(Math.random()*Editor.GUID_ALPHABET.length)));return c.join("")};Editor.prototype.timeout=25E3;Editor.prototype.useForeignObjectForMath=!1;Editor.prototype.editButtonLink=null!=urlParams.edit?decodeURIComponent(urlParams.edit):null;var a=Editor.prototype.setGraphXml;Editor.prototype.setGraphXml=function(c){c=null!=c&&"mxlibrary"!=c.nodeName?this.extractGraphModel(c): +null;if(null!=c){var b=c.getElementsByTagName("parsererror");if(null!=b&&0<b.length){var b=b[0],f=b.getElementsByTagName("div");null!=f&&0<f.length&&(b=f[0]);throw{message:mxUtils.getTextContent(b)};}if("mxGraphModel"==c.nodeName){b=c.getAttribute("style")||"default-style2";if("1"==urlParams.embed||null!=b&&""!=b)b!=this.graph.currentStyle&&(f=null!=this.graph.themes?this.graph.themes[b]:mxUtils.load(STYLE_PATH+"/"+b+".xml").getDocumentElement(),null!=f&&(d=new mxCodec(f.ownerDocument),d.decode(f, +this.graph.getStylesheet())));else if(f=null!=this.graph.themes?this.graph.themes["default-old"]:mxUtils.load(STYLE_PATH+"/default-old.xml").getDocumentElement(),null!=f){var d=new mxCodec(f.ownerDocument);d.decode(f,this.graph.getStylesheet())}this.graph.currentStyle=b;this.graph.mathEnabled="1"==urlParams.math||"1"==c.getAttribute("math");b=c.getAttribute("backgroundImage");null!=b?(b=JSON.parse(b),this.graph.setBackgroundImage(new mxImage(b.src,b.width,b.height))):this.graph.setBackgroundImage(null); +mxClient.NO_FO=this.graph.mathEnabled&&!this.useForeignObjectForMath?!0:this.originalNoForeignObject;this.graph.useCssTransforms=!mxClient.NO_FO&&this.isChromelessView()&&this.graph.isCssTransformsSupported();this.graph.updateCssTransform();this.graph.setShadowVisible("1"==c.getAttribute("shadow"),!1)}a.apply(this,arguments)}else throw{message:mxResources.get("notADiagramFile")||"Invalid data",toString:function(){return this.message}};};var b=Editor.prototype.getGraphXml;Editor.prototype.getGraphXml= +function(a){a=null!=a?a:!0;var c=b.apply(this,arguments);null!=this.graph.currentStyle&&"default-style2"!=this.graph.currentStyle&&c.setAttribute("style",this.graph.currentStyle);null!=this.graph.backgroundImage&&c.setAttribute("backgroundImage",JSON.stringify(this.graph.backgroundImage));c.setAttribute("math",this.graph.mathEnabled?"1":"0");c.setAttribute("shadow",this.graph.shadowVisible?"1":"0");return c};Editor.prototype.isDataSvg=function(a){try{var c=mxUtils.parseXml(a).documentElement.getAttribute("content"); +if(null!=c&&(null!=c&&"<"!=c.charAt(0)&&"%"!=c.charAt(0)&&(c=unescape(window.atob?atob(c):Base64.decode(cont,c))),null!=c&&"%"==c.charAt(0)&&(c=decodeURIComponent(c)),null!=c&&0<c.length)){var b=mxUtils.parseXml(c).documentElement;return"mxfile"==b.nodeName||"mxGraphModel"==b.nodeName}}catch(X){}return!1};Editor.prototype.extractGraphModel=function(a,c){return Editor.extractGraphModel.apply(this,arguments)};var e=Editor.prototype.resetGraph;Editor.prototype.resetGraph=function(){this.graph.mathEnabled= +"1"==urlParams.math;this.graph.view.x0=null;this.graph.view.y0=null;mxClient.NO_FO=this.graph.mathEnabled&&!this.useForeignObjectForMath?!0:this.originalNoForeignObject;this.graph.useCssTransforms=!mxClient.NO_FO&&this.isChromelessView()&&this.graph.isCssTransformsSupported();this.graph.updateCssTransform();e.apply(this,arguments)};var d=Editor.prototype.updateGraphComponents;Editor.prototype.updateGraphComponents=function(){d.apply(this,arguments);mxClient.NO_FO=this.graph.mathEnabled&&!this.useForeignObjectForMath&& +null!=Editor.MathJaxRender?!0:this.originalNoForeignObject;this.graph.useCssTransforms=!mxClient.NO_FO&&this.isChromelessView()&&this.graph.isCssTransformsSupported();this.graph.updateCssTransform()};Editor.initMath=function(a,c){a=null!=a?a:DRAW_MATH_URL+"/MathJax.js?config=TeX-MML-AM_HTMLorMML";Editor.mathJaxQueue=[];Editor.doMathJaxRender=function(a){window.setTimeout(function(){"hidden"!=a.style.visibility&&MathJax.Hub.Queue(["Typeset",MathJax.Hub,a])},0)};window.MathJax={skipStartupTypeset:!0, +showMathMenu:!1,messageStyle:"none",AuthorInit:function(){MathJax.Hub.Config(c||{jax:["input/TeX","input/MathML","input/AsciiMath","output/HTML-CSS"],extensions:["tex2jax.js","mml2jax.js","asciimath2jax.js"],"HTML-CSS":{imageFont:null},TeX:{extensions:["AMSmath.js","AMSsymbols.js","noErrors.js","noUndefined.js"]},tex2jax:{ignoreClass:"mxCellEditor"},asciimath2jax:{ignoreClass:"mxCellEditor"}});MathJax.Hub.Register.StartupHook("Begin",function(){for(var a=0;a<Editor.mathJaxQueue.length;a++)Editor.doMathJaxRender(Editor.mathJaxQueue[a])})}}; +Editor.MathJaxRender=function(a){"undefined"!==typeof MathJax&&"undefined"!==typeof MathJax.Hub?Editor.doMathJaxRender(a):Editor.mathJaxQueue.push(a)};Editor.MathJaxClear=function(){Editor.mathJaxQueue=[]};var b=Editor.prototype.init;Editor.prototype.init=function(){b.apply(this,arguments);this.graph.addListener(mxEvent.SIZE,mxUtils.bind(this,function(a,c){null!=this.graph.container&&this.graph.mathEnabled&&!this.graph.blockMathRender&&Editor.MathJaxRender(this.graph.container)}))};var f=document.getElementsByTagName("script"); +if(null!=f&&0<f.length){var d=document.createElement("script");d.type="text/javascript";d.src=a;f[0].parentNode.appendChild(d)}};Editor.prototype.csvToArray=function(a){if(!/^\s*(?:'[^'\\]*(?:\\[\S\s][^'\\]*)*'|"[^"\\]*(?:\\[\S\s][^"\\]*)*"|[^,'"\s\\]*(?:\s+[^,'"\s\\]+)*)\s*(?:,\s*(?:'[^'\\]*(?:\\[\S\s][^'\\]*)*'|"[^"\\]*(?:\\[\S\s][^"\\]*)*"|[^,'"\s\\]*(?:\s+[^,'"\s\\]+)*)\s*)*$/.test(a))return null;var c=[];a.replace(/(?!\s*$)\s*(?:'([^'\\]*(?:\\[\S\s][^'\\]*)*)'|"([^"\\]*(?:\\[\S\s][^"\\]*)*)"|([^,'"\s\\]*(?:\s+[^,'"\s\\]+)*))\s*(?:,|$)/g, +function(a,b,f,d){void 0!==b?c.push(b.replace(/\\'/g,"'")):void 0!==f?c.push(f.replace(/\\"/g,'"')):void 0!==d&&c.push(d);return""});/,\s*$/.test(a)&&c.push("");return c};Editor.prototype.isCorsEnabledForUrl=function(a){null!=urlParams.cors&&null==this.corsRegExp&&(this.corsRegExp=new RegExp(decodeURIComponent(urlParams.cors)));return null!=this.corsRegExp&&this.corsRegExp.test(a)||"https://raw.githubusercontent.com/"===a.substring(0,34)||"https://cdn.rawgit.com/"===a.substring(0,23)||"https://rawgit.com/"=== +a.substring(0,19)||/^https?:\/\/[^\/]*\.blob.core.windows.net\//.test(a)||/^https?:\/\/[^\/]*\.iconfinder.com\//.test(a)||/^https?:\/\/[^\/]*\.draw\.io\/proxy/.test(a)||/^https?:\/\/[^\/]*\.github\.io\//.test(a)};Editor.prototype.createImageUrlConverter=function(){var a=new mxUrlConverter;a.updateBaseUrl();var c=a.convert,b=this;a.convert=function(f){if(null!=f){var d="http://"==f.substring(0,7)||"https://"==f.substring(0,8);d&&!navigator.onLine?f=EditorUi.prototype.svgBrokenImage.src:!d||f.substring(0, +a.baseUrl.length)==a.baseUrl||EditorUi.prototype.crossOriginImages&&b.isCorsEnabledForUrl(f)?"chrome-extension://"==f.substring(0,19)||mxClient.IS_CHROMEAPP||(f=c.apply(this,arguments)):f=PROXY_URL+"?url="+encodeURIComponent(f)}return f};return a};Editor.prototype.createSvgDataUri=function(a){return"data:image/svg+xml;base64,"+btoa(unescape(encodeURIComponent(a)))};Editor.prototype.convertImageToDataUri=function(a,c){if(/(\.svg)$/i.test(a))mxUtils.get(a,mxUtils.bind(this,function(a){c(this.createSvgDataUri(a.getText()))}), function(){c(EditorUi.prototype.svgBrokenImage.src)});else{var b=new Image;EditorUi.prototype.crossOriginImages&&(b.crossOrigin="anonymous");b.onload=function(){var a=document.createElement("canvas"),f=a.getContext("2d");a.height=b.height;a.width=b.width;f.drawImage(b,0,0);try{c(a.toDataURL())}catch(O){c(EditorUi.prototype.svgBrokenImage.src)}};b.onerror=function(){c(EditorUi.prototype.svgBrokenImage.src)};b.src=a}};Editor.prototype.convertImages=function(a,c,b,f){null==f&&(f=this.createImageUrlConverter()); var d=0,e=b||{};b=mxUtils.bind(this,function(b,k){for(var g=a.getElementsByTagName(b),n=0;n<g.length;n++)mxUtils.bind(this,function(b){var g=f.convert(b.getAttribute(k));if(null!=g&&"data:"!=g.substring(0,5)){var n=e[g];null==n?(d++,this.convertImageToDataUri(g,function(f){null!=f&&(e[g]=f,b.setAttribute(k,f));d--;0==d&&c(a)})):b.setAttribute(k,n)}else null!=g&&b.setAttribute(k,g)})(g[n])});b("image","xlink:href");b("img","src");0==d&&c(a)};Editor.prototype.base64Encode=function(a){for(var c="",b= 0,f=a.length,d,e,k;b<f;){d=a.charCodeAt(b++)&255;if(b==f){c+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt(d>>2);c+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt((d&3)<<4);c+="==";break}e=a.charCodeAt(b++);if(b==f){c+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt(d>>2);c+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt((d&3)<<4|(e&240)>>4);c+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt((e& @@ -2894,53 +2894,53 @@ function(a){this.editorUi.actions.get("editShape").funct()})),c.setAttribute("ti a.button,c.relatedTarget=a.relatedTarget}catch(O){}}k.apply(this,arguments);window.mxFreehand&&(this.freehand=new mxFreehand(this));var c=null;mxEvent.addListener(this.container,"mouseenter",a);mxEvent.addListener(this.container,"mousemove",a);mxEvent.addListener(this.container,"mouseleave",function(a){c=null});this.isMouseInsertPoint=function(){return null!=c};var b=this.getInsertPoint;this.getInsertPoint=function(){return null!=c?this.getPointForEvent(c):b.apply(this,arguments)};var f=this.layoutManager.getLayout; this.layoutManager.getLayout=function(a){var c=this.graph.getCellStyle(a);if(null!=c){if("rack"==c.childLayout){var b=new mxStackLayout(this.graph,!1);b.gridSize=null!=c.rackUnitSize?parseFloat(c.rackUnitSize):"undefined"!==typeof mxRackContainer?mxRackContainer.unitSize:20;b.fill=!0;b.marginLeft=c.marginLeft||0;b.marginRight=c.marginRight||0;b.marginTop=c.marginTop||0;b.marginBottom=c.marginBottom||0;b.allowGaps=c.allowGaps||0;b.resizeParent=!1;return b}if("undefined"!==typeof mxTableLayout&&"tableLayout"== c.childLayout)return b=new mxTableLayout(this.graph),b.rows=c.tableRows||2,b.columns=c.tableColumns||2,b.colPercentages=c.colPercentages,b.rowPercentages=c.rowPercentages,b.equalColumns="1"==mxUtils.getValue(c,"equalColumns",b.colPercentages?"0":"1"),b.equalRows="1"==mxUtils.getValue(c,"equalRows",b.rowPercentages?"0":"1"),b.resizeParent="1"==mxUtils.getValue(c,"resizeParent","1"),b.border=c.tableBorder||b.border,b.marginLeft=c.marginLeft||0,b.marginRight=c.marginRight||0,b.marginTop=c.marginTop|| -0,b.marginBottom=c.marginBottom||0,b.autoAddCol="1"==mxUtils.getValue(c,"autoAddCol","0"),b.autoAddRow="1"==mxUtils.getValue(c,"autoAddRow",b.autoAddCol?"0":"1"),b.colWidths=c.colWidths||"100",b.rowHeights=c.rowHeights||"50",b}return f.apply(this,arguments)};this.updateGlobalUrlVariables()};Graph.prototype.updateGlobalUrlVariables=function(){if(null!=urlParams.vars)try{this.globalUrlVars=JSON.parse(decodeURIComponent(urlParams.vars))}catch(q){null!=window.console&&console.log("Error in vars URL parameter: "+ -q)}};Graph.prototype.getExportVariables=function(){return null!=this.globalUrlVars?this.globalUrlVars:{}};var p=Graph.prototype.getGlobalVariable;Graph.prototype.getGlobalVariable=function(a){var c=p.apply(this,arguments);null==c&&null!=this.globalUrlVars&&(c=this.globalUrlVars[a]);return c};Graph.prototype.getDefaultStylesheet=function(){if(null==this.defaultStylesheet){var a=this.themes["default-style2"];this.defaultStylesheet=(new mxCodec(a.ownerDocument)).decode(a)}return this.defaultStylesheet}; -Graph.prototype.isViewer=function(){return urlParams.viewer};var n=Graph.prototype.getSvg;Graph.prototype.getSvg=function(){var a=null;null!=this.themes&&"darkTheme"==this.defaultThemeName&&(a=this.stylesheet,this.stylesheet=this.getDefaultStylesheet(),this.refresh());var c=n.apply(this,arguments);null!=a&&(this.stylesheet=a,this.refresh());return c};var g=Graph.prototype.isCssTransformsSupported;Graph.prototype.isCssTransformsSupported=function(){return g.apply(this,arguments)&&!mxClient.IS_SF}; -var x=mxGraphView.prototype.validateBackgroundPage;mxGraphView.prototype.validateBackgroundPage=function(){x.apply(this,arguments);if(mxClient.IS_GC&&null!=this.getDrawPane()){var a=this.getDrawPane().parentNode;!this.graph.mathEnabled||mxClient.NO_FO||null!=this.webKitForceRepaintNode&&null!=this.webKitForceRepaintNode.parentNode||"svg"!=this.graph.container.firstChild.nodeName?null==this.webKitForceRepaintNode||this.graph.mathEnabled&&("svg"==this.graph.container.firstChild.nodeName||this.graph.container.firstChild== -this.webKitForceRepaintNode)||(null!=this.webKitForceRepaintNode.parentNode&&this.webKitForceRepaintNode.parentNode.removeChild(this.webKitForceRepaintNode),this.webKitForceRepaintNode=null):(this.webKitForceRepaintNode=document.createElement("div"),this.webKitForceRepaintNode.style.cssText="position:absolute;",a.ownerSVGElement.parentNode.insertBefore(this.webKitForceRepaintNode,a.ownerSVGElement))}};var z=Graph.prototype.loadStylesheet;Graph.prototype.loadStylesheet=function(){z.apply(this,arguments); -this.currentStyle="default-style2"};Graph.prototype.handleCustomLink=function(a){if("data:action/json,"==a.substring(0,17)&&(a=JSON.parse(a.substring(17)),null!=a.actions)){for(var c=0;c<a.actions.length;c++){var b=a.actions[c];if(null!=b.open)if(this.isCustomLink(b.open)){if(!this.customLinkClicked(b.open))return}else this.openLink(b.open)}this.model.beginUpdate();try{for(c=0;c<a.actions.length;c++)b=a.actions[c],null!=b.toggle&&this.toggleCells(this.getCellsForAction(b.toggle,!0)),null!=b.show&& -this.setCellsVisible(this.getCellsForAction(b.show,!0),!0),null!=b.hide&&this.setCellsVisible(this.getCellsForAction(b.hide,!0),!1)}finally{this.model.endUpdate()}for(c=0;c<a.actions.length;c++){var b=a.actions[c],f=[];null!=b.select&&this.isEnabled()&&(f=this.getCellsForAction(b.select),this.setSelectionCells(f));null!=b.highlight&&(f=this.getCellsForAction(b.highlight),this.highlightCells(f,b.highlight.color,b.highlight.duration,b.highlight.opacity));null!=b.scroll&&(f=this.getCellsForAction(b.scroll)); -0<f.length&&this.scrollCellToVisible(f[0])}}};Graph.prototype.updateCustomLinksForCell=function(a,c){var b=this.getLinkForCell(c);null!=b&&"data:action/json,"==b.substring(0,17)&&this.setLinkForCell(c,this.updateCustomLink(a,b));if(this.isHtmlLabel(c)){var f=document.createElement("div");f.innerHTML=this.getLabel(c);for(var d=f.getElementsByTagName("a"),e=!1,k=0;k<d.length;k++)b=d[k].getAttribute("href"),null!=b&&"data:action/json,"==b.substring(0,17)&&(d[k].setAttribute("href",this.updateCustomLink(a, -b)),e=!0);e&&this.labelChanged(c,f.innerHTML)}};Graph.prototype.updateCustomLink=function(a,c){if("data:action/json,"==c.substring(0,17))try{var b=JSON.parse(c.substring(17));null!=b.actions&&(this.updateCustomLinkActions(a,b.actions),c="data:action/json,"+JSON.stringify(b))}catch(X){}return c};Graph.prototype.updateCustomLinkActions=function(a,c){for(var b=0;b<c.length;b++){var f=c[b];this.updateCustomLinkAction(a,f.toggle);this.updateCustomLinkAction(a,f.show);this.updateCustomLinkAction(a,f.hide); -this.updateCustomLinkAction(a,f.select);this.updateCustomLinkAction(a,f.highlight);this.updateCustomLinkAction(a,f.scroll)}};Graph.prototype.updateCustomLinkAction=function(a,c){if(null!=c&&null!=c.cells){for(var b=[],f=0;f<c.cells.length;f++)if("*"==c.cells[f])b.push(c.cells[f]);else{var d=a[c.cells[f]];null!=d?""!=d&&b.push(d):b.push(c.cells[f])}c.cells=b}};Graph.prototype.getCellsForAction=function(a,c){return this.getCellsById(a.cells).concat(this.getCellsForTags(a.tags,null,null,c))};Graph.prototype.getCellsById= -function(a){var c=[];if(null!=a)for(var b=0;b<a.length;b++)if("*"==a[b])var f=this.getDefaultParent(),c=c.concat(this.model.filterDescendants(function(a){return a!=f},f));else{var d=this.model.getCell(a[b]);null!=d&&c.push(d)}return c};Graph.prototype.getCellsForTags=function(a,c,b,f){var d=[];if(null!=a){c=null!=c?c:this.model.getDescendants(this.model.getRoot());b=null!=b?b:"tags";for(var e=0,k={},g=0;g<a.length;g++)0<a[g].length&&(k[a[g].toLowerCase()]=!0,e++);for(g=0;g<c.length;g++)if(f&&this.model.getParent(c[g])== -this.model.root||this.model.isVertex(c[g])||this.model.isEdge(c[g])){var n=null!=c[g].value&&"object"==typeof c[g].value?mxUtils.trim(c[g].value.getAttribute(b)||""):"",p=!1;if(0<n.length){if(n=n.toLowerCase().split(" "),n.length>=a.length){for(var t=p=0;t<n.length&&p<e;t++)null!=k[n[t]]&&p++;p=p==e}}else p=0==a.length;p&&d.push(c[g])}}return d};Graph.prototype.toggleCells=function(a){this.model.beginUpdate();try{for(var c=0;c<a.length;c++)this.model.setVisible(a[c],!this.model.isVisible(a[c]))}finally{this.model.endUpdate()}}; -Graph.prototype.setCellsVisible=function(a,c){this.model.beginUpdate();try{for(var b=0;b<a.length;b++)this.model.setVisible(a[b],c)}finally{this.model.endUpdate()}};Graph.prototype.highlightCells=function(a,c,b,f){for(var d=0;d<a.length;d++)this.highlightCell(a[d],c,b,f)};Graph.prototype.highlightCell=function(a,c,b,f){c=null!=c?c:mxConstants.DEFAULT_VALID_COLOR;b=null!=b?b:1E3;a=this.view.getState(a);if(null!=a){var d=Math.max(5,mxUtils.getValue(a.style,mxConstants.STYLE_STROKEWIDTH,1)+4),e=new mxCellHighlight(this, -c,d,!1);null!=f&&(e.opacity=f);e.highlight(a);window.setTimeout(function(){null!=e.shape&&(mxUtils.setPrefixedStyle(e.shape.node.style,"transition","all 1200ms ease-in-out"),e.shape.node.style.opacity=0);window.setTimeout(function(){e.destroy()},1200)},b)}};Graph.prototype.addSvgShadow=function(a,c,b){b=null!=b?b:!1;var f=a.ownerDocument,d=null!=f.createElementNS?f.createElementNS(mxConstants.NS_SVG,"filter"):f.createElement("filter");d.setAttribute("id",this.shadowId);var e=null!=f.createElementNS? -f.createElementNS(mxConstants.NS_SVG,"feGaussianBlur"):f.createElement("feGaussianBlur");e.setAttribute("in","SourceAlpha");e.setAttribute("stdDeviation",this.svgShadowBlur);e.setAttribute("result","blur");d.appendChild(e);e=null!=f.createElementNS?f.createElementNS(mxConstants.NS_SVG,"feOffset"):f.createElement("feOffset");e.setAttribute("in","blur");e.setAttribute("dx",this.svgShadowSize);e.setAttribute("dy",this.svgShadowSize);e.setAttribute("result","offsetBlur");d.appendChild(e);e=null!=f.createElementNS? -f.createElementNS(mxConstants.NS_SVG,"feFlood"):f.createElement("feFlood");e.setAttribute("flood-color",this.svgShadowColor);e.setAttribute("flood-opacity",this.svgShadowOpacity);e.setAttribute("result","offsetColor");d.appendChild(e);e=null!=f.createElementNS?f.createElementNS(mxConstants.NS_SVG,"feComposite"):f.createElement("feComposite");e.setAttribute("in","offsetColor");e.setAttribute("in2","offsetBlur");e.setAttribute("operator","in");e.setAttribute("result","offsetBlur");d.appendChild(e); -e=null!=f.createElementNS?f.createElementNS(mxConstants.NS_SVG,"feBlend"):f.createElement("feBlend");e.setAttribute("in","SourceGraphic");e.setAttribute("in2","offsetBlur");d.appendChild(e);e=a.getElementsByTagName("defs");0==e.length?(f=null!=f.createElementNS?f.createElementNS(mxConstants.NS_SVG,"defs"):f.createElement("defs"),null!=a.firstChild?a.insertBefore(f,a.firstChild):a.appendChild(f)):f=e[0];f.appendChild(d);b||(c=null!=c?c:a.getElementsByTagName("g")[0],null!=c&&(c.setAttribute("filter", -"url(#"+this.shadowId+")"),isNaN(parseInt(a.getAttribute("width")))||(a.setAttribute("width",parseInt(a.getAttribute("width"))+6),a.setAttribute("height",parseInt(a.getAttribute("height"))+6),c=a.getAttribute("viewBox"),null!=c&&0<c.length&&(c=c.split(" "),3<c.length&&(w=parseFloat(c[2])+6,h=parseFloat(c[3])+6,a.setAttribute("viewBox",c[0]+" "+c[1]+" "+w+" "+h))))));return d};Graph.prototype.setShadowVisible=function(a,c){mxClient.IS_SVG&&(c=null!=c?c:!0,(this.shadowVisible=a)?this.view.getDrawPane().setAttribute("filter", -"url(#"+this.shadowId+")"):this.view.getDrawPane().removeAttribute("filter"),c&&this.fireEvent(new mxEventObject("shadowVisibleChanged")))};Graph.prototype.selectUnlockedLayer=function(){if(null==this.defaultParent){var a=this.model.getChildCount(this.model.root),c,b=0;do c=this.model.getChildAt(this.model.root,b);while(b++<a&&"1"==mxUtils.getValue(this.getCellStyle(c),"locked","0"));null!=c&&this.setDefaultParent(c)}};mxStencilRegistry.libraries.mockup=[SHAPES_PATH+"/mockup/mxMockupButtons.js"]; -mxStencilRegistry.libraries.arrows2=[SHAPES_PATH+"/mxArrows.js"];mxStencilRegistry.libraries.atlassian=[STENCIL_PATH+"/atlassian.xml",SHAPES_PATH+"/mxAtlassian.js"];mxStencilRegistry.libraries.bpmn=[SHAPES_PATH+"/bpmn/mxBpmnShape2.js",STENCIL_PATH+"/bpmn.xml"];mxStencilRegistry.libraries.dfd=[SHAPES_PATH+"/mxDFD.js"];mxStencilRegistry.libraries.er=[SHAPES_PATH+"/er/mxER.js"];mxStencilRegistry.libraries.flowchart=[SHAPES_PATH+"/mxFlowchart.js",STENCIL_PATH+"/flowchart.xml"];mxStencilRegistry.libraries.ios= -[SHAPES_PATH+"/mockup/mxMockupiOS.js"];mxStencilRegistry.libraries.rackGeneral=[SHAPES_PATH+"/rack/mxRack.js",STENCIL_PATH+"/rack/general.xml"];mxStencilRegistry.libraries.rackF5=[STENCIL_PATH+"/rack/f5.xml"];mxStencilRegistry.libraries.lean_mapping=[SHAPES_PATH+"/mxLeanMap.js",STENCIL_PATH+"/lean_mapping.xml"];mxStencilRegistry.libraries.basic=[SHAPES_PATH+"/mxBasic.js",STENCIL_PATH+"/basic.xml"];mxStencilRegistry.libraries.ios7icons=[STENCIL_PATH+"/ios7/icons.xml"];mxStencilRegistry.libraries.ios7ui= -[SHAPES_PATH+"/ios7/mxIOS7Ui.js",STENCIL_PATH+"/ios7/misc.xml"];mxStencilRegistry.libraries.android=[SHAPES_PATH+"/mxAndroid.js",STENCIL_PATH+"/android/android.xml"];mxStencilRegistry.libraries["electrical/miscellaneous"]=[SHAPES_PATH+"/mxElectrical.js",STENCIL_PATH+"/electrical/miscellaneous.xml"];mxStencilRegistry.libraries["electrical/transmission"]=[SHAPES_PATH+"/mxElectrical.js",STENCIL_PATH+"/electrical/transmission.xml"];mxStencilRegistry.libraries["electrical/logic_gates"]=[SHAPES_PATH+"/mxElectrical.js", -STENCIL_PATH+"/electrical/logic_gates.xml"];mxStencilRegistry.libraries["electrical/abstract"]=[SHAPES_PATH+"/mxElectrical.js",STENCIL_PATH+"/electrical/abstract.xml"];mxStencilRegistry.libraries.infographic=[SHAPES_PATH+"/mxInfographic.js"];mxStencilRegistry.libraries["mockup/buttons"]=[SHAPES_PATH+"/mockup/mxMockupButtons.js"];mxStencilRegistry.libraries["mockup/containers"]=[SHAPES_PATH+"/mockup/mxMockupContainers.js"];mxStencilRegistry.libraries["mockup/forms"]=[SHAPES_PATH+"/mockup/mxMockupForms.js"]; -mxStencilRegistry.libraries["mockup/graphics"]=[SHAPES_PATH+"/mockup/mxMockupGraphics.js",STENCIL_PATH+"/mockup/misc.xml"];mxStencilRegistry.libraries["mockup/markup"]=[SHAPES_PATH+"/mockup/mxMockupMarkup.js"];mxStencilRegistry.libraries["mockup/misc"]=[SHAPES_PATH+"/mockup/mxMockupMisc.js",STENCIL_PATH+"/mockup/misc.xml"];mxStencilRegistry.libraries["mockup/navigation"]=[SHAPES_PATH+"/mockup/mxMockupNavigation.js",STENCIL_PATH+"/mockup/misc.xml"];mxStencilRegistry.libraries["mockup/text"]=[SHAPES_PATH+ -"/mockup/mxMockupText.js"];mxStencilRegistry.libraries.floorplan=[SHAPES_PATH+"/mxFloorplan.js",STENCIL_PATH+"/floorplan.xml"];mxStencilRegistry.libraries.bootstrap=[SHAPES_PATH+"/mxBootstrap.js",STENCIL_PATH+"/bootstrap.xml"];mxStencilRegistry.libraries.gmdl=[SHAPES_PATH+"/mxGmdl.js",STENCIL_PATH+"/gmdl.xml"];mxStencilRegistry.libraries.gcp2=[SHAPES_PATH+"/mxGCP2.js",STENCIL_PATH+"/gcp2.xml"];mxStencilRegistry.libraries.cabinets=[SHAPES_PATH+"/mxCabinets.js",STENCIL_PATH+"/cabinets.xml"];mxStencilRegistry.libraries.archimate= -[SHAPES_PATH+"/mxArchiMate.js"];mxStencilRegistry.libraries.archimate3=[SHAPES_PATH+"/mxArchiMate3.js"];mxStencilRegistry.libraries.sysml=[SHAPES_PATH+"/mxSysML.js"];mxStencilRegistry.libraries.eip=[SHAPES_PATH+"/mxEip.js",STENCIL_PATH+"/eip.xml"];mxStencilRegistry.libraries.networks=[SHAPES_PATH+"/mxNetworks.js",STENCIL_PATH+"/networks.xml"];mxStencilRegistry.libraries.aws3d=[SHAPES_PATH+"/mxAWS3D.js",STENCIL_PATH+"/aws3d.xml"];mxStencilRegistry.libraries.aws4=[SHAPES_PATH+"/mxAWS4.js",STENCIL_PATH+ -"/aws4.xml"];mxStencilRegistry.libraries.aws4b=[SHAPES_PATH+"/mxAWS4.js",STENCIL_PATH+"/aws4.xml"];mxStencilRegistry.libraries.veeam=[STENCIL_PATH+"/veeam/2d.xml",STENCIL_PATH+"/veeam/3d.xml",STENCIL_PATH+"/veeam/veeam.xml"];mxStencilRegistry.libraries.pid2inst=[SHAPES_PATH+"/pid2/mxPidInstruments.js"];mxStencilRegistry.libraries.pid2misc=[SHAPES_PATH+"/pid2/mxPidMisc.js",STENCIL_PATH+"/pid/misc.xml"];mxStencilRegistry.libraries.pid2valves=[SHAPES_PATH+"/pid2/mxPidValves.js"];mxStencilRegistry.libraries.pidFlowSensors= -[STENCIL_PATH+"/pid/flow_sensors.xml"];mxMarker.getPackageForType=function(a){var c=null;null!=a&&0<a.length&&("ER"==a.substring(0,2)?c="mxgraph.er":"sysML"==a.substring(0,5)&&(c="mxgraph.sysml"));return c};var t=mxMarker.createMarker;mxMarker.createMarker=function(a,c,b,f,d,e,k,g,n,p){if(null!=b&&null==mxMarker.markers[b]){var x=this.getPackageForType(b);null!=x&&mxStencilRegistry.getStencil(x)}return t.apply(this,arguments)};PrintDialog.prototype.create=function(a,c){function b(){v.value=Math.max(1, -Math.min(g,Math.max(parseInt(v.value),parseInt(l.value))));l.value=Math.max(1,Math.min(g,Math.min(parseInt(v.value),parseInt(l.value))))}function f(c){function b(c,b,d){var e=c.getGraphBounds(),k=0,g=0,n=ga.get(),p=1/c.pageScale,t=m.checked;if(t)var p=parseInt(L.value),x=parseInt(S.value),p=Math.min(n.height*x/(e.height/c.view.scale),n.width*p/(e.width/c.view.scale));else p=parseInt(B.value)/(100*c.pageScale),isNaN(p)&&(f=1/c.pageScale,B.value="100 %");n=mxRectangle.fromRectangle(n);n.width=Math.ceil(n.width* -f);n.height=Math.ceil(n.height*f);p*=f;!t&&c.pageVisible?(e=c.getPageLayout(),k-=e.x*n.width,g-=e.y*n.height):t=!0;if(null==b){b=PrintDialog.createPrintPreview(c,p,n,0,k,g,t);b.pageSelector=!1;b.mathEnabled=!1;c=a.getCurrentFile();null!=c&&(b.title=c.getTitle());var l=b.writeHead;b.writeHead=function(c){l.apply(this,arguments);null!=a.editor.fontCss&&(c.writeln('<style type="text/css">'),c.writeln(a.editor.fontCss),c.writeln("</style>"))};if("undefined"!==typeof MathJax){var v=b.renderPage;b.renderPage= -function(a,c,b,f,d,e){var k=mxClient.NO_FO;mxClient.NO_FO=this.graph.mathEnabled&&!this.useForeignObjectForMath?!0:this.originalNoForeignObject;var g=v.apply(this,arguments);mxClient.NO_FO=k;this.graph.mathEnabled?this.mathEnabled=this.mathEnabled||!0:g.className="geDisableMathJax";return g}}b.open(null,null,d,!0)}else{n=c.background;if(null==n||""==n||n==mxConstants.NONE)n="#ffffff";b.backgroundColor=n;b.autoOrigin=t;b.appendGraph(c,p,k,g,d,!0)}return b}var f=parseInt(ha.value)/100;isNaN(f)&&(f= -1,ha.value="100 %");var f=.75*f,e=l.value,k=v.value,g=!t.checked,p=null;g&&(g=e==n&&k==n);if(!g&&null!=a.pages&&a.pages.length){var x=0,g=a.pages.length-1;t.checked||(x=parseInt(e)-1,g=parseInt(k)-1);for(var q=x;q<=g;q++){var z=a.pages[q],e=z==a.currentPage?d:null;if(null==e){var e=a.createTemporaryGraph(d.getStylesheet()),k=!0,x=!1,r=null,E=null;null==z.viewState&&null==z.root&&a.updatePageRoot(z);null!=z.viewState&&(k=z.viewState.pageVisible,x=z.viewState.mathEnabled,r=z.viewState.background,E= -z.viewState.backgroundImage);e.background=r;e.backgroundImage=null!=E?new mxImage(E.src,E.width,E.height):null;e.pageVisible=k;e.mathEnabled=x;var D=e.getGlobalVariable;e.getGlobalVariable=function(c){return"page"==c?z.getName():"pagenumber"==c?q+1:"pagecount"==c?null!=a.pages?a.pages.length:1:D.apply(this,arguments)};document.body.appendChild(e.container);a.updatePageRoot(z);e.model.setRoot(z.root)}p=b(e,p,q!=g);e!=d&&e.container.parentNode.removeChild(e.container)}}else p=b(d);null==p?a.handleError({message:mxResources.get("errorUpdatingPreview")}): -(p.mathEnabled&&(g=p.wnd.document,g.writeln('<script type="text/x-mathjax-config">'),g.writeln("MathJax.Hub.Config({"),g.writeln("showMathMenu: false,"),g.writeln('messageStyle: "none",'),g.writeln('jax: ["input/TeX", "input/MathML", "input/AsciiMath", "output/HTML-CSS"],'),g.writeln('extensions: ["tex2jax.js", "mml2jax.js", "asciimath2jax.js"],'),g.writeln('"HTML-CSS": {'),g.writeln("imageFont: null"),g.writeln("},"),g.writeln("TeX: {"),g.writeln('extensions: ["AMSmath.js", "AMSsymbols.js", "noErrors.js", "noUndefined.js"]'), -g.writeln("},"),g.writeln("tex2jax: {"),g.writeln('\tignoreClass: "geDisableMathJax"'),g.writeln("},"),g.writeln("asciimath2jax: {"),g.writeln('\tignoreClass: "geDisableMathJax"'),g.writeln("}"),g.writeln("});"),c&&(g.writeln("MathJax.Hub.Queue(function () {"),g.writeln("window.print();"),g.writeln("});")),g.writeln("\x3c/script>"),g.writeln('<script type="text/javascript" src="'+DRAW_MATH_URL+'/MathJax.js">\x3c/script>')),p.closeDocument(),!p.mathEnabled&&c&&PrintDialog.printPreview(p))}var d=a.editor.graph, -e=document.createElement("div"),k=document.createElement("h3");k.style.width="100%";k.style.textAlign="center";k.style.marginTop="0px";mxUtils.write(k,c||mxResources.get("print"));e.appendChild(k);var g=1,n=1,p=document.createElement("div");p.style.cssText="border-bottom:1px solid lightGray;padding-bottom:12px;margin-bottom:12px;";var t=document.createElement("input");t.style.cssText="margin-right:8px;margin-bottom:8px;";t.setAttribute("value","all");t.setAttribute("type","radio");t.setAttribute("name", -"pages-printdialog");p.appendChild(t);k=document.createElement("span");mxUtils.write(k,mxResources.get("printAllPages"));p.appendChild(k);mxUtils.br(p);var x=t.cloneNode(!0);t.setAttribute("checked","checked");x.setAttribute("value","range");p.appendChild(x);k=document.createElement("span");mxUtils.write(k,mxResources.get("pages")+":");p.appendChild(k);var l=document.createElement("input");l.style.cssText="margin:0 8px 0 8px;";l.setAttribute("value","1");l.setAttribute("type","number");l.setAttribute("min", -"1");l.style.width="50px";p.appendChild(l);k=document.createElement("span");mxUtils.write(k,mxResources.get("to"));p.appendChild(k);var v=l.cloneNode(!0);p.appendChild(v);mxEvent.addListener(l,"focus",function(){x.checked=!0});mxEvent.addListener(v,"focus",function(){x.checked=!0});mxEvent.addListener(l,"change",b);mxEvent.addListener(v,"change",b);if(null!=a.pages&&(g=a.pages.length,null!=a.currentPage))for(k=0;k<a.pages.length;k++)if(a.currentPage==a.pages[k]){n=k+1;l.value=n;v.value=n;break}l.setAttribute("max", -g);v.setAttribute("max",g);1<g&&e.appendChild(p);var q=document.createElement("div");q.style.marginBottom="10px";var z=document.createElement("input");z.style.marginRight="8px";z.setAttribute("value","adjust");z.setAttribute("type","radio");z.setAttribute("name","printZoom");q.appendChild(z);k=document.createElement("span");mxUtils.write(k,mxResources.get("adjustTo"));q.appendChild(k);var B=document.createElement("input");B.style.cssText="margin:0 8px 0 8px;";B.setAttribute("value","100 %");B.style.width= -"50px";q.appendChild(B);mxEvent.addListener(B,"focus",function(){z.checked=!0});e.appendChild(q);var p=p.cloneNode(!1),m=z.cloneNode(!0);m.setAttribute("value","fit");z.setAttribute("checked","checked");k=document.createElement("div");k.style.cssText="display:inline-block;height:100%;vertical-align:top;padding-top:2px;";k.appendChild(m);p.appendChild(k);q=document.createElement("table");q.style.display="inline-block";var r=document.createElement("tbody"),E=document.createElement("tr"),C=E.cloneNode(!0), -u=document.createElement("td"),y=u.cloneNode(!0),A=u.cloneNode(!0),K=u.cloneNode(!0),G=u.cloneNode(!0),da=u.cloneNode(!0);u.style.textAlign="right";K.style.textAlign="right";mxUtils.write(u,mxResources.get("fitTo"));var L=document.createElement("input");L.style.cssText="margin:0 8px 0 8px;";L.setAttribute("value","1");L.setAttribute("min","1");L.setAttribute("type","number");L.style.width="40px";y.appendChild(L);k=document.createElement("span");mxUtils.write(k,mxResources.get("fitToSheetsAcross")); -A.appendChild(k);mxUtils.write(K,mxResources.get("fitToBy"));var S=L.cloneNode(!0);G.appendChild(S);mxEvent.addListener(L,"focus",function(){m.checked=!0});mxEvent.addListener(S,"focus",function(){m.checked=!0});k=document.createElement("span");mxUtils.write(k,mxResources.get("fitToSheetsDown"));da.appendChild(k);E.appendChild(u);E.appendChild(y);E.appendChild(A);C.appendChild(K);C.appendChild(G);C.appendChild(da);r.appendChild(E);r.appendChild(C);q.appendChild(r);p.appendChild(q);e.appendChild(p); -p=document.createElement("div");k=document.createElement("div");k.style.fontWeight="bold";k.style.marginBottom="12px";mxUtils.write(k,mxResources.get("paperSize"));p.appendChild(k);k=document.createElement("div");k.style.marginBottom="12px";var ga=PageSetupDialog.addPageFormatPanel(k,"printdialog",a.editor.graph.pageFormat||mxConstants.PAGE_FORMAT_A4_PORTRAIT);p.appendChild(k);k=document.createElement("span");mxUtils.write(k,mxResources.get("pageScale"));p.appendChild(k);var ha=document.createElement("input"); -ha.style.cssText="margin:0 8px 0 8px;";ha.setAttribute("value","100 %");ha.style.width="60px";p.appendChild(ha);e.appendChild(p);k=document.createElement("div");k.style.cssText="text-align:right;margin:48px 0 0 0;";p=mxUtils.button(mxResources.get("cancel"),function(){a.hideDialog()});p.className="geBtn";a.editor.cancelFirst&&k.appendChild(p);a.isOffline()||(q=mxUtils.button(mxResources.get("help"),function(){d.openLink("https://desk.draw.io/support/solutions/articles/16000048947")}),q.className= -"geBtn",k.appendChild(q));PrintDialog.previewEnabled&&(q=mxUtils.button(mxResources.get("preview"),function(){a.hideDialog();f(!1)}),q.className="geBtn",k.appendChild(q));q=mxUtils.button(mxResources.get(PrintDialog.previewEnabled?"print":"ok"),function(){a.hideDialog();f(!0)});q.className="geBtn gePrimaryBtn";k.appendChild(q);a.editor.cancelFirst||k.appendChild(p);e.appendChild(k);this.container=e};var E=ChangePageSetup.prototype.execute;ChangePageSetup.prototype.execute=function(){null==this.page&& -(this.page=this.ui.currentPage);this.page!=this.ui.currentPage?null!=this.page.viewState&&(this.ignoreColor||(this.page.viewState.background=this.color),this.ignoreImage||(this.page.viewState.backgroundImage=this.image),null!=this.format&&(this.page.viewState.pageFormat=this.format),null!=this.mathEnabled&&(this.page.viewState.mathEnabled=this.mathEnabled),null!=this.shadowVisible&&(this.page.viewState.shadowVisible=this.shadowVisible)):(E.apply(this,arguments),null!=this.mathEnabled&&this.mathEnabled!= -this.ui.isMathEnabled()&&(this.ui.setMathEnabled(this.mathEnabled),this.mathEnabled=!this.mathEnabled),null!=this.shadowVisible&&this.shadowVisible!=this.ui.editor.graph.shadowVisible&&(this.ui.editor.graph.setShadowVisible(this.shadowVisible),this.shadowVisible=!this.shadowVisible))};Editor.prototype.useCanvasForExport=!1;try{var v=document.createElement("canvas"),B=new Image;B.onload=function(){try{v.getContext("2d").drawImage(B,0,0);var a=v.toDataURL("image/png");Editor.prototype.useCanvasForExport= +0,b.marginBottom=c.marginBottom||0,b.autoAddCol="1"==mxUtils.getValue(c,"autoAddCol","0"),b.autoAddRow="1"==mxUtils.getValue(c,"autoAddRow",b.autoAddCol?"0":"1"),b.colWidths=c.colWidths||"100",b.rowHeights=c.rowHeights||"50",b}return f.apply(this,arguments)};this.updateGlobalUrlVariables()};Graph.prototype.updateGlobalUrlVariables=function(){this.globalVars=Editor.globalVars;if(null!=urlParams.vars)try{this.globalVars=null!=this.globalVars?mxUtils.clone(this.globalVars):{};var a=JSON.parse(decodeURIComponent(urlParams.vars)); +if(null!=a)for(var c in a)this.globalVars[c]=a[c]}catch(M){null!=window.console&&console.log("Error in vars URL parameter: "+M)}};Graph.prototype.getExportVariables=function(){return null!=this.globalVars?mxUtils.clone(this.globalVars):{}};var p=Graph.prototype.getGlobalVariable;Graph.prototype.getGlobalVariable=function(a){var c=p.apply(this,arguments);null==c&&null!=this.globalVars&&(c=this.globalVars[a]);return c};Graph.prototype.getDefaultStylesheet=function(){if(null==this.defaultStylesheet){var a= +this.themes["default-style2"];this.defaultStylesheet=(new mxCodec(a.ownerDocument)).decode(a)}return this.defaultStylesheet};Graph.prototype.isViewer=function(){return urlParams.viewer};var n=Graph.prototype.getSvg;Graph.prototype.getSvg=function(){var a=null;null!=this.themes&&"darkTheme"==this.defaultThemeName&&(a=this.stylesheet,this.stylesheet=this.getDefaultStylesheet(),this.refresh());var c=n.apply(this,arguments);null!=a&&(this.stylesheet=a,this.refresh());return c};var g=Graph.prototype.isCssTransformsSupported; +Graph.prototype.isCssTransformsSupported=function(){return g.apply(this,arguments)&&!mxClient.IS_SF};var x=mxGraphView.prototype.validateBackgroundPage;mxGraphView.prototype.validateBackgroundPage=function(){x.apply(this,arguments);if(mxClient.IS_GC&&null!=this.getDrawPane()){var a=this.getDrawPane().parentNode;!this.graph.mathEnabled||mxClient.NO_FO||null!=this.webKitForceRepaintNode&&null!=this.webKitForceRepaintNode.parentNode||"svg"!=this.graph.container.firstChild.nodeName?null==this.webKitForceRepaintNode|| +this.graph.mathEnabled&&("svg"==this.graph.container.firstChild.nodeName||this.graph.container.firstChild==this.webKitForceRepaintNode)||(null!=this.webKitForceRepaintNode.parentNode&&this.webKitForceRepaintNode.parentNode.removeChild(this.webKitForceRepaintNode),this.webKitForceRepaintNode=null):(this.webKitForceRepaintNode=document.createElement("div"),this.webKitForceRepaintNode.style.cssText="position:absolute;",a.ownerSVGElement.parentNode.insertBefore(this.webKitForceRepaintNode,a.ownerSVGElement))}}; +var z=Graph.prototype.loadStylesheet;Graph.prototype.loadStylesheet=function(){z.apply(this,arguments);this.currentStyle="default-style2"};Graph.prototype.handleCustomLink=function(a){if("data:action/json,"==a.substring(0,17)&&(a=JSON.parse(a.substring(17)),null!=a.actions)){for(var c=0;c<a.actions.length;c++){var b=a.actions[c];if(null!=b.open)if(this.isCustomLink(b.open)){if(!this.customLinkClicked(b.open))return}else this.openLink(b.open)}this.model.beginUpdate();try{for(c=0;c<a.actions.length;c++)b= +a.actions[c],null!=b.toggle&&this.toggleCells(this.getCellsForAction(b.toggle,!0)),null!=b.show&&this.setCellsVisible(this.getCellsForAction(b.show,!0),!0),null!=b.hide&&this.setCellsVisible(this.getCellsForAction(b.hide,!0),!1)}finally{this.model.endUpdate()}for(c=0;c<a.actions.length;c++){var b=a.actions[c],f=[];null!=b.select&&this.isEnabled()&&(f=this.getCellsForAction(b.select),this.setSelectionCells(f));null!=b.highlight&&(f=this.getCellsForAction(b.highlight),this.highlightCells(f,b.highlight.color, +b.highlight.duration,b.highlight.opacity));null!=b.scroll&&(f=this.getCellsForAction(b.scroll));0<f.length&&this.scrollCellToVisible(f[0])}}};Graph.prototype.updateCustomLinksForCell=function(a,c){var b=this.getLinkForCell(c);null!=b&&"data:action/json,"==b.substring(0,17)&&this.setLinkForCell(c,this.updateCustomLink(a,b));if(this.isHtmlLabel(c)){var f=document.createElement("div");f.innerHTML=this.getLabel(c);for(var d=f.getElementsByTagName("a"),e=!1,k=0;k<d.length;k++)b=d[k].getAttribute("href"), +null!=b&&"data:action/json,"==b.substring(0,17)&&(d[k].setAttribute("href",this.updateCustomLink(a,b)),e=!0);e&&this.labelChanged(c,f.innerHTML)}};Graph.prototype.updateCustomLink=function(a,c){if("data:action/json,"==c.substring(0,17))try{var b=JSON.parse(c.substring(17));null!=b.actions&&(this.updateCustomLinkActions(a,b.actions),c="data:action/json,"+JSON.stringify(b))}catch(X){}return c};Graph.prototype.updateCustomLinkActions=function(a,c){for(var b=0;b<c.length;b++){var f=c[b];this.updateCustomLinkAction(a, +f.toggle);this.updateCustomLinkAction(a,f.show);this.updateCustomLinkAction(a,f.hide);this.updateCustomLinkAction(a,f.select);this.updateCustomLinkAction(a,f.highlight);this.updateCustomLinkAction(a,f.scroll)}};Graph.prototype.updateCustomLinkAction=function(a,c){if(null!=c&&null!=c.cells){for(var b=[],f=0;f<c.cells.length;f++)if("*"==c.cells[f])b.push(c.cells[f]);else{var d=a[c.cells[f]];null!=d?""!=d&&b.push(d):b.push(c.cells[f])}c.cells=b}};Graph.prototype.getCellsForAction=function(a,c){return this.getCellsById(a.cells).concat(this.getCellsForTags(a.tags, +null,null,c))};Graph.prototype.getCellsById=function(a){var c=[];if(null!=a)for(var b=0;b<a.length;b++)if("*"==a[b])var f=this.getDefaultParent(),c=c.concat(this.model.filterDescendants(function(a){return a!=f},f));else{var d=this.model.getCell(a[b]);null!=d&&c.push(d)}return c};Graph.prototype.getCellsForTags=function(a,c,b,f){var d=[];if(null!=a){c=null!=c?c:this.model.getDescendants(this.model.getRoot());b=null!=b?b:"tags";for(var e=0,k={},g=0;g<a.length;g++)0<a[g].length&&(k[a[g].toLowerCase()]= +!0,e++);for(g=0;g<c.length;g++)if(f&&this.model.getParent(c[g])==this.model.root||this.model.isVertex(c[g])||this.model.isEdge(c[g])){var n=null!=c[g].value&&"object"==typeof c[g].value?mxUtils.trim(c[g].value.getAttribute(b)||""):"",p=!1;if(0<n.length){if(n=n.toLowerCase().split(" "),n.length>=a.length){for(var t=p=0;t<n.length&&p<e;t++)null!=k[n[t]]&&p++;p=p==e}}else p=0==a.length;p&&d.push(c[g])}}return d};Graph.prototype.toggleCells=function(a){this.model.beginUpdate();try{for(var c=0;c<a.length;c++)this.model.setVisible(a[c], +!this.model.isVisible(a[c]))}finally{this.model.endUpdate()}};Graph.prototype.setCellsVisible=function(a,c){this.model.beginUpdate();try{for(var b=0;b<a.length;b++)this.model.setVisible(a[b],c)}finally{this.model.endUpdate()}};Graph.prototype.highlightCells=function(a,c,b,f){for(var d=0;d<a.length;d++)this.highlightCell(a[d],c,b,f)};Graph.prototype.highlightCell=function(a,c,b,f){c=null!=c?c:mxConstants.DEFAULT_VALID_COLOR;b=null!=b?b:1E3;a=this.view.getState(a);if(null!=a){var d=Math.max(5,mxUtils.getValue(a.style, +mxConstants.STYLE_STROKEWIDTH,1)+4),e=new mxCellHighlight(this,c,d,!1);null!=f&&(e.opacity=f);e.highlight(a);window.setTimeout(function(){null!=e.shape&&(mxUtils.setPrefixedStyle(e.shape.node.style,"transition","all 1200ms ease-in-out"),e.shape.node.style.opacity=0);window.setTimeout(function(){e.destroy()},1200)},b)}};Graph.prototype.addSvgShadow=function(a,c,b){b=null!=b?b:!1;var f=a.ownerDocument,d=null!=f.createElementNS?f.createElementNS(mxConstants.NS_SVG,"filter"):f.createElement("filter"); +d.setAttribute("id",this.shadowId);var e=null!=f.createElementNS?f.createElementNS(mxConstants.NS_SVG,"feGaussianBlur"):f.createElement("feGaussianBlur");e.setAttribute("in","SourceAlpha");e.setAttribute("stdDeviation",this.svgShadowBlur);e.setAttribute("result","blur");d.appendChild(e);e=null!=f.createElementNS?f.createElementNS(mxConstants.NS_SVG,"feOffset"):f.createElement("feOffset");e.setAttribute("in","blur");e.setAttribute("dx",this.svgShadowSize);e.setAttribute("dy",this.svgShadowSize);e.setAttribute("result", +"offsetBlur");d.appendChild(e);e=null!=f.createElementNS?f.createElementNS(mxConstants.NS_SVG,"feFlood"):f.createElement("feFlood");e.setAttribute("flood-color",this.svgShadowColor);e.setAttribute("flood-opacity",this.svgShadowOpacity);e.setAttribute("result","offsetColor");d.appendChild(e);e=null!=f.createElementNS?f.createElementNS(mxConstants.NS_SVG,"feComposite"):f.createElement("feComposite");e.setAttribute("in","offsetColor");e.setAttribute("in2","offsetBlur");e.setAttribute("operator","in"); +e.setAttribute("result","offsetBlur");d.appendChild(e);e=null!=f.createElementNS?f.createElementNS(mxConstants.NS_SVG,"feBlend"):f.createElement("feBlend");e.setAttribute("in","SourceGraphic");e.setAttribute("in2","offsetBlur");d.appendChild(e);e=a.getElementsByTagName("defs");0==e.length?(f=null!=f.createElementNS?f.createElementNS(mxConstants.NS_SVG,"defs"):f.createElement("defs"),null!=a.firstChild?a.insertBefore(f,a.firstChild):a.appendChild(f)):f=e[0];f.appendChild(d);b||(c=null!=c?c:a.getElementsByTagName("g")[0], +null!=c&&(c.setAttribute("filter","url(#"+this.shadowId+")"),isNaN(parseInt(a.getAttribute("width")))||(a.setAttribute("width",parseInt(a.getAttribute("width"))+6),a.setAttribute("height",parseInt(a.getAttribute("height"))+6),c=a.getAttribute("viewBox"),null!=c&&0<c.length&&(c=c.split(" "),3<c.length&&(w=parseFloat(c[2])+6,h=parseFloat(c[3])+6,a.setAttribute("viewBox",c[0]+" "+c[1]+" "+w+" "+h))))));return d};Graph.prototype.setShadowVisible=function(a,c){mxClient.IS_SVG&&(c=null!=c?c:!0,(this.shadowVisible= +a)?this.view.getDrawPane().setAttribute("filter","url(#"+this.shadowId+")"):this.view.getDrawPane().removeAttribute("filter"),c&&this.fireEvent(new mxEventObject("shadowVisibleChanged")))};Graph.prototype.selectUnlockedLayer=function(){if(null==this.defaultParent){var a=this.model.getChildCount(this.model.root),c,b=0;do c=this.model.getChildAt(this.model.root,b);while(b++<a&&"1"==mxUtils.getValue(this.getCellStyle(c),"locked","0"));null!=c&&this.setDefaultParent(c)}};mxStencilRegistry.libraries.mockup= +[SHAPES_PATH+"/mockup/mxMockupButtons.js"];mxStencilRegistry.libraries.arrows2=[SHAPES_PATH+"/mxArrows.js"];mxStencilRegistry.libraries.atlassian=[STENCIL_PATH+"/atlassian.xml",SHAPES_PATH+"/mxAtlassian.js"];mxStencilRegistry.libraries.bpmn=[SHAPES_PATH+"/bpmn/mxBpmnShape2.js",STENCIL_PATH+"/bpmn.xml"];mxStencilRegistry.libraries.dfd=[SHAPES_PATH+"/mxDFD.js"];mxStencilRegistry.libraries.er=[SHAPES_PATH+"/er/mxER.js"];mxStencilRegistry.libraries.flowchart=[SHAPES_PATH+"/mxFlowchart.js",STENCIL_PATH+ +"/flowchart.xml"];mxStencilRegistry.libraries.ios=[SHAPES_PATH+"/mockup/mxMockupiOS.js"];mxStencilRegistry.libraries.rackGeneral=[SHAPES_PATH+"/rack/mxRack.js",STENCIL_PATH+"/rack/general.xml"];mxStencilRegistry.libraries.rackF5=[STENCIL_PATH+"/rack/f5.xml"];mxStencilRegistry.libraries.lean_mapping=[SHAPES_PATH+"/mxLeanMap.js",STENCIL_PATH+"/lean_mapping.xml"];mxStencilRegistry.libraries.basic=[SHAPES_PATH+"/mxBasic.js",STENCIL_PATH+"/basic.xml"];mxStencilRegistry.libraries.ios7icons=[STENCIL_PATH+ +"/ios7/icons.xml"];mxStencilRegistry.libraries.ios7ui=[SHAPES_PATH+"/ios7/mxIOS7Ui.js",STENCIL_PATH+"/ios7/misc.xml"];mxStencilRegistry.libraries.android=[SHAPES_PATH+"/mxAndroid.js",STENCIL_PATH+"/android/android.xml"];mxStencilRegistry.libraries["electrical/miscellaneous"]=[SHAPES_PATH+"/mxElectrical.js",STENCIL_PATH+"/electrical/miscellaneous.xml"];mxStencilRegistry.libraries["electrical/transmission"]=[SHAPES_PATH+"/mxElectrical.js",STENCIL_PATH+"/electrical/transmission.xml"];mxStencilRegistry.libraries["electrical/logic_gates"]= +[SHAPES_PATH+"/mxElectrical.js",STENCIL_PATH+"/electrical/logic_gates.xml"];mxStencilRegistry.libraries["electrical/abstract"]=[SHAPES_PATH+"/mxElectrical.js",STENCIL_PATH+"/electrical/abstract.xml"];mxStencilRegistry.libraries.infographic=[SHAPES_PATH+"/mxInfographic.js"];mxStencilRegistry.libraries["mockup/buttons"]=[SHAPES_PATH+"/mockup/mxMockupButtons.js"];mxStencilRegistry.libraries["mockup/containers"]=[SHAPES_PATH+"/mockup/mxMockupContainers.js"];mxStencilRegistry.libraries["mockup/forms"]= +[SHAPES_PATH+"/mockup/mxMockupForms.js"];mxStencilRegistry.libraries["mockup/graphics"]=[SHAPES_PATH+"/mockup/mxMockupGraphics.js",STENCIL_PATH+"/mockup/misc.xml"];mxStencilRegistry.libraries["mockup/markup"]=[SHAPES_PATH+"/mockup/mxMockupMarkup.js"];mxStencilRegistry.libraries["mockup/misc"]=[SHAPES_PATH+"/mockup/mxMockupMisc.js",STENCIL_PATH+"/mockup/misc.xml"];mxStencilRegistry.libraries["mockup/navigation"]=[SHAPES_PATH+"/mockup/mxMockupNavigation.js",STENCIL_PATH+"/mockup/misc.xml"];mxStencilRegistry.libraries["mockup/text"]= +[SHAPES_PATH+"/mockup/mxMockupText.js"];mxStencilRegistry.libraries.floorplan=[SHAPES_PATH+"/mxFloorplan.js",STENCIL_PATH+"/floorplan.xml"];mxStencilRegistry.libraries.bootstrap=[SHAPES_PATH+"/mxBootstrap.js",STENCIL_PATH+"/bootstrap.xml"];mxStencilRegistry.libraries.gmdl=[SHAPES_PATH+"/mxGmdl.js",STENCIL_PATH+"/gmdl.xml"];mxStencilRegistry.libraries.gcp2=[SHAPES_PATH+"/mxGCP2.js",STENCIL_PATH+"/gcp2.xml"];mxStencilRegistry.libraries.cabinets=[SHAPES_PATH+"/mxCabinets.js",STENCIL_PATH+"/cabinets.xml"]; +mxStencilRegistry.libraries.archimate=[SHAPES_PATH+"/mxArchiMate.js"];mxStencilRegistry.libraries.archimate3=[SHAPES_PATH+"/mxArchiMate3.js"];mxStencilRegistry.libraries.sysml=[SHAPES_PATH+"/mxSysML.js"];mxStencilRegistry.libraries.eip=[SHAPES_PATH+"/mxEip.js",STENCIL_PATH+"/eip.xml"];mxStencilRegistry.libraries.networks=[SHAPES_PATH+"/mxNetworks.js",STENCIL_PATH+"/networks.xml"];mxStencilRegistry.libraries.aws3d=[SHAPES_PATH+"/mxAWS3D.js",STENCIL_PATH+"/aws3d.xml"];mxStencilRegistry.libraries.aws4= +[SHAPES_PATH+"/mxAWS4.js",STENCIL_PATH+"/aws4.xml"];mxStencilRegistry.libraries.aws4b=[SHAPES_PATH+"/mxAWS4.js",STENCIL_PATH+"/aws4.xml"];mxStencilRegistry.libraries.veeam=[STENCIL_PATH+"/veeam/2d.xml",STENCIL_PATH+"/veeam/3d.xml",STENCIL_PATH+"/veeam/veeam.xml"];mxStencilRegistry.libraries.pid2inst=[SHAPES_PATH+"/pid2/mxPidInstruments.js"];mxStencilRegistry.libraries.pid2misc=[SHAPES_PATH+"/pid2/mxPidMisc.js",STENCIL_PATH+"/pid/misc.xml"];mxStencilRegistry.libraries.pid2valves=[SHAPES_PATH+"/pid2/mxPidValves.js"]; +mxStencilRegistry.libraries.pidFlowSensors=[STENCIL_PATH+"/pid/flow_sensors.xml"];mxMarker.getPackageForType=function(a){var c=null;null!=a&&0<a.length&&("ER"==a.substring(0,2)?c="mxgraph.er":"sysML"==a.substring(0,5)&&(c="mxgraph.sysml"));return c};var t=mxMarker.createMarker;mxMarker.createMarker=function(a,c,b,f,d,e,k,g,n,p){if(null!=b&&null==mxMarker.markers[b]){var x=this.getPackageForType(b);null!=x&&mxStencilRegistry.getStencil(x)}return t.apply(this,arguments)};PrintDialog.prototype.create= +function(a,c){function b(){v.value=Math.max(1,Math.min(g,Math.max(parseInt(v.value),parseInt(l.value))));l.value=Math.max(1,Math.min(g,Math.min(parseInt(v.value),parseInt(l.value))))}function f(c){function b(c,b,d){var e=c.getGraphBounds(),k=0,g=0,n=ga.get(),p=1/c.pageScale,t=m.checked;if(t)var p=parseInt(L.value),x=parseInt(S.value),p=Math.min(n.height*x/(e.height/c.view.scale),n.width*p/(e.width/c.view.scale));else p=parseInt(B.value)/(100*c.pageScale),isNaN(p)&&(f=1/c.pageScale,B.value="100 %"); +n=mxRectangle.fromRectangle(n);n.width=Math.ceil(n.width*f);n.height=Math.ceil(n.height*f);p*=f;!t&&c.pageVisible?(e=c.getPageLayout(),k-=e.x*n.width,g-=e.y*n.height):t=!0;if(null==b){b=PrintDialog.createPrintPreview(c,p,n,0,k,g,t);b.pageSelector=!1;b.mathEnabled=!1;c=a.getCurrentFile();null!=c&&(b.title=c.getTitle());var l=b.writeHead;b.writeHead=function(c){l.apply(this,arguments);null!=a.editor.fontCss&&(c.writeln('<style type="text/css">'),c.writeln(a.editor.fontCss),c.writeln("</style>"))};if("undefined"!== +typeof MathJax){var v=b.renderPage;b.renderPage=function(a,c,b,f,d,e){var k=mxClient.NO_FO;mxClient.NO_FO=this.graph.mathEnabled&&!this.useForeignObjectForMath?!0:this.originalNoForeignObject;var g=v.apply(this,arguments);mxClient.NO_FO=k;this.graph.mathEnabled?this.mathEnabled=this.mathEnabled||!0:g.className="geDisableMathJax";return g}}b.open(null,null,d,!0)}else{n=c.background;if(null==n||""==n||n==mxConstants.NONE)n="#ffffff";b.backgroundColor=n;b.autoOrigin=t;b.appendGraph(c,p,k,g,d,!0)}return b} +var f=parseInt(ha.value)/100;isNaN(f)&&(f=1,ha.value="100 %");var f=.75*f,e=l.value,k=v.value,g=!t.checked,p=null;g&&(g=e==n&&k==n);if(!g&&null!=a.pages&&a.pages.length){var x=0,g=a.pages.length-1;t.checked||(x=parseInt(e)-1,g=parseInt(k)-1);for(var q=x;q<=g;q++){var z=a.pages[q],e=z==a.currentPage?d:null;if(null==e){var e=a.createTemporaryGraph(d.getStylesheet()),k=!0,x=!1,r=null,E=null;null==z.viewState&&null==z.root&&a.updatePageRoot(z);null!=z.viewState&&(k=z.viewState.pageVisible,x=z.viewState.mathEnabled, +r=z.viewState.background,E=z.viewState.backgroundImage);e.background=r;e.backgroundImage=null!=E?new mxImage(E.src,E.width,E.height):null;e.pageVisible=k;e.mathEnabled=x;var D=e.getGlobalVariable;e.getGlobalVariable=function(c){return"page"==c?z.getName():"pagenumber"==c?q+1:"pagecount"==c?null!=a.pages?a.pages.length:1:D.apply(this,arguments)};document.body.appendChild(e.container);a.updatePageRoot(z);e.model.setRoot(z.root)}p=b(e,p,q!=g);e!=d&&e.container.parentNode.removeChild(e.container)}}else p= +b(d);null==p?a.handleError({message:mxResources.get("errorUpdatingPreview")}):(p.mathEnabled&&(g=p.wnd.document,g.writeln('<script type="text/x-mathjax-config">'),g.writeln("MathJax.Hub.Config({"),g.writeln("showMathMenu: false,"),g.writeln('messageStyle: "none",'),g.writeln('jax: ["input/TeX", "input/MathML", "input/AsciiMath", "output/HTML-CSS"],'),g.writeln('extensions: ["tex2jax.js", "mml2jax.js", "asciimath2jax.js"],'),g.writeln('"HTML-CSS": {'),g.writeln("imageFont: null"),g.writeln("},"),g.writeln("TeX: {"), +g.writeln('extensions: ["AMSmath.js", "AMSsymbols.js", "noErrors.js", "noUndefined.js"]'),g.writeln("},"),g.writeln("tex2jax: {"),g.writeln('\tignoreClass: "geDisableMathJax"'),g.writeln("},"),g.writeln("asciimath2jax: {"),g.writeln('\tignoreClass: "geDisableMathJax"'),g.writeln("}"),g.writeln("});"),c&&(g.writeln("MathJax.Hub.Queue(function () {"),g.writeln("window.print();"),g.writeln("});")),g.writeln("\x3c/script>"),g.writeln('<script type="text/javascript" src="'+DRAW_MATH_URL+'/MathJax.js">\x3c/script>')), +p.closeDocument(),!p.mathEnabled&&c&&PrintDialog.printPreview(p))}var d=a.editor.graph,e=document.createElement("div"),k=document.createElement("h3");k.style.width="100%";k.style.textAlign="center";k.style.marginTop="0px";mxUtils.write(k,c||mxResources.get("print"));e.appendChild(k);var g=1,n=1,p=document.createElement("div");p.style.cssText="border-bottom:1px solid lightGray;padding-bottom:12px;margin-bottom:12px;";var t=document.createElement("input");t.style.cssText="margin-right:8px;margin-bottom:8px;"; +t.setAttribute("value","all");t.setAttribute("type","radio");t.setAttribute("name","pages-printdialog");p.appendChild(t);k=document.createElement("span");mxUtils.write(k,mxResources.get("printAllPages"));p.appendChild(k);mxUtils.br(p);var x=t.cloneNode(!0);t.setAttribute("checked","checked");x.setAttribute("value","range");p.appendChild(x);k=document.createElement("span");mxUtils.write(k,mxResources.get("pages")+":");p.appendChild(k);var l=document.createElement("input");l.style.cssText="margin:0 8px 0 8px;"; +l.setAttribute("value","1");l.setAttribute("type","number");l.setAttribute("min","1");l.style.width="50px";p.appendChild(l);k=document.createElement("span");mxUtils.write(k,mxResources.get("to"));p.appendChild(k);var v=l.cloneNode(!0);p.appendChild(v);mxEvent.addListener(l,"focus",function(){x.checked=!0});mxEvent.addListener(v,"focus",function(){x.checked=!0});mxEvent.addListener(l,"change",b);mxEvent.addListener(v,"change",b);if(null!=a.pages&&(g=a.pages.length,null!=a.currentPage))for(k=0;k<a.pages.length;k++)if(a.currentPage== +a.pages[k]){n=k+1;l.value=n;v.value=n;break}l.setAttribute("max",g);v.setAttribute("max",g);1<g&&e.appendChild(p);var q=document.createElement("div");q.style.marginBottom="10px";var z=document.createElement("input");z.style.marginRight="8px";z.setAttribute("value","adjust");z.setAttribute("type","radio");z.setAttribute("name","printZoom");q.appendChild(z);k=document.createElement("span");mxUtils.write(k,mxResources.get("adjustTo"));q.appendChild(k);var B=document.createElement("input");B.style.cssText= +"margin:0 8px 0 8px;";B.setAttribute("value","100 %");B.style.width="50px";q.appendChild(B);mxEvent.addListener(B,"focus",function(){z.checked=!0});e.appendChild(q);var p=p.cloneNode(!1),m=z.cloneNode(!0);m.setAttribute("value","fit");z.setAttribute("checked","checked");k=document.createElement("div");k.style.cssText="display:inline-block;height:100%;vertical-align:top;padding-top:2px;";k.appendChild(m);p.appendChild(k);q=document.createElement("table");q.style.display="inline-block";var r=document.createElement("tbody"), +E=document.createElement("tr"),C=E.cloneNode(!0),u=document.createElement("td"),y=u.cloneNode(!0),A=u.cloneNode(!0),K=u.cloneNode(!0),G=u.cloneNode(!0),da=u.cloneNode(!0);u.style.textAlign="right";K.style.textAlign="right";mxUtils.write(u,mxResources.get("fitTo"));var L=document.createElement("input");L.style.cssText="margin:0 8px 0 8px;";L.setAttribute("value","1");L.setAttribute("min","1");L.setAttribute("type","number");L.style.width="40px";y.appendChild(L);k=document.createElement("span");mxUtils.write(k, +mxResources.get("fitToSheetsAcross"));A.appendChild(k);mxUtils.write(K,mxResources.get("fitToBy"));var S=L.cloneNode(!0);G.appendChild(S);mxEvent.addListener(L,"focus",function(){m.checked=!0});mxEvent.addListener(S,"focus",function(){m.checked=!0});k=document.createElement("span");mxUtils.write(k,mxResources.get("fitToSheetsDown"));da.appendChild(k);E.appendChild(u);E.appendChild(y);E.appendChild(A);C.appendChild(K);C.appendChild(G);C.appendChild(da);r.appendChild(E);r.appendChild(C);q.appendChild(r); +p.appendChild(q);e.appendChild(p);p=document.createElement("div");k=document.createElement("div");k.style.fontWeight="bold";k.style.marginBottom="12px";mxUtils.write(k,mxResources.get("paperSize"));p.appendChild(k);k=document.createElement("div");k.style.marginBottom="12px";var ga=PageSetupDialog.addPageFormatPanel(k,"printdialog",a.editor.graph.pageFormat||mxConstants.PAGE_FORMAT_A4_PORTRAIT);p.appendChild(k);k=document.createElement("span");mxUtils.write(k,mxResources.get("pageScale"));p.appendChild(k); +var ha=document.createElement("input");ha.style.cssText="margin:0 8px 0 8px;";ha.setAttribute("value","100 %");ha.style.width="60px";p.appendChild(ha);e.appendChild(p);k=document.createElement("div");k.style.cssText="text-align:right;margin:48px 0 0 0;";p=mxUtils.button(mxResources.get("cancel"),function(){a.hideDialog()});p.className="geBtn";a.editor.cancelFirst&&k.appendChild(p);a.isOffline()||(q=mxUtils.button(mxResources.get("help"),function(){d.openLink("https://desk.draw.io/support/solutions/articles/16000048947")}), +q.className="geBtn",k.appendChild(q));PrintDialog.previewEnabled&&(q=mxUtils.button(mxResources.get("preview"),function(){a.hideDialog();f(!1)}),q.className="geBtn",k.appendChild(q));q=mxUtils.button(mxResources.get(PrintDialog.previewEnabled?"print":"ok"),function(){a.hideDialog();f(!0)});q.className="geBtn gePrimaryBtn";k.appendChild(q);a.editor.cancelFirst||k.appendChild(p);e.appendChild(k);this.container=e};var E=ChangePageSetup.prototype.execute;ChangePageSetup.prototype.execute=function(){null== +this.page&&(this.page=this.ui.currentPage);this.page!=this.ui.currentPage?null!=this.page.viewState&&(this.ignoreColor||(this.page.viewState.background=this.color),this.ignoreImage||(this.page.viewState.backgroundImage=this.image),null!=this.format&&(this.page.viewState.pageFormat=this.format),null!=this.mathEnabled&&(this.page.viewState.mathEnabled=this.mathEnabled),null!=this.shadowVisible&&(this.page.viewState.shadowVisible=this.shadowVisible)):(E.apply(this,arguments),null!=this.mathEnabled&& +this.mathEnabled!=this.ui.isMathEnabled()&&(this.ui.setMathEnabled(this.mathEnabled),this.mathEnabled=!this.mathEnabled),null!=this.shadowVisible&&this.shadowVisible!=this.ui.editor.graph.shadowVisible&&(this.ui.editor.graph.setShadowVisible(this.shadowVisible),this.shadowVisible=!this.shadowVisible))};Editor.prototype.useCanvasForExport=!1;try{var v=document.createElement("canvas"),B=new Image;B.onload=function(){try{v.getContext("2d").drawImage(B,0,0);var a=v.toDataURL("image/png");Editor.prototype.useCanvasForExport= null!=a&&6<a.length}catch(C){}};B.src="data:image/svg+xml;base64,"+btoa(unescape(encodeURIComponent('<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1px" height="1px" version="1.1"><foreignObject pointer-events="all" width="1" height="1"><div xmlns="http://www.w3.org/1999/xhtml"></div></foreignObject></svg>')))}catch(q){}})(); (function(){var a=new mxObjectCodec(new ChangePageSetup,["ui","previousColor","previousImage","previousFormat"]);a.beforeDecode=function(a,e,d){d.ui=a.ui;return e};a.afterDecode=function(a,e,d){d.previousColor=d.color;d.previousImage=d.image;d.previousFormat=d.format;null!=d.foldingEnabled&&(d.foldingEnabled=!d.foldingEnabled);null!=d.mathEnabled&&(d.mathEnabled=!d.mathEnabled);null!=d.shadowVisible&&(d.shadowVisible=!d.shadowVisible);return d};mxCodecRegistry.register(a)})();(function(){EditorUi.VERSION="@DRAWIO-VERSION@";EditorUi.compactUi="atlas"!=uiTheme;EditorUi.enableLogging="1"!=urlParams.stealth&&/.*\.draw\.io$/.test(window.location.hostname)&&"support.draw.io"!=window.location.hostname;EditorUi.drawHost="https://www.draw.io";EditorUi.lastErrorMessage=null;EditorUi.ignoredAnonymizedChars="\n\t`~!@#$%^&*()_+{}|:\"<>?-=[];'./,\n\t";EditorUi.templateFile=TEMPLATE_PATH+"/index.xml";EditorUi.cacheUrl="1"==urlParams.dev?"/cache":"https://rt.draw.io/cache";EditorUi.enablePlantUml= EditorUi.enableLogging;EditorUi.isElectronApp=null!=window&&null!=window.process&&null!=window.process.versions&&null!=window.process.versions.electron;EditorUi.scratchpadHelpLink="https://desk.draw.io/support/solutions/articles/16000042367";EditorUi.logError=function(a,b,d,e,n){if("1"==urlParams.dev)EditorUi.debug("logError",a,b,d,e,n);else if(EditorUi.enableLogging)try{if(a!=EditorUi.lastErrorMessage&&(null==a||null==b||-1==a.indexOf("Script error")&&-1==a.indexOf("extension"))&&null!=a&&0>a.indexOf("DocumentClosedError")){EditorUi.lastErrorMessage= @@ -3393,15 +3393,15 @@ b&&0>mxUtils.indexOf(c,b)&&c.push(b);0>mxUtils.indexOf(c,a)&&c.push(a);return!0} this.moveHandle.style.height="18px",this.graph.container.appendChild(this.moveHandle),mxEvent.addGestureListeners(this.moveHandle,mxUtils.bind(this,function(a){this.graph.graphHandler.start(this.state.cell,mxEvent.getClientX(a),mxEvent.getClientY(a));this.graph.graphHandler.cells=this.graph.getSubtree(this.state.cell);this.graph.graphHandler.bounds=this.state.view.getBounds(this.graph.graphHandler.cells);this.graph.graphHandler.pBounds=this.graph.graphHandler.getPreviewBounds(this.graph.graphHandler.cells); this.graph.graphHandler.cellWasClicked=!0;this.graph.isMouseTrigger=mxEvent.isMouseEvent(a);this.graph.isMouseDown=!0;mxEvent.consume(a)})))};var I=mxVertexHandler.prototype.redrawHandles;mxVertexHandler.prototype.redrawHandles=function(){I.apply(this,arguments);null!=this.moveHandle&&(this.moveHandle.style.left=this.state.x+this.state.width+(40>this.state.width?10:0)+2+"px",this.moveHandle.style.top=this.state.y+this.state.height+(40>this.state.height?10:0)+2+"px")};var O=mxVertexHandler.prototype.destroy; mxVertexHandler.prototype.destroy=function(a,b){O.apply(this,arguments);null!=this.moveHandle&&(this.moveHandle.parentNode.removeChild(this.moveHandle),this.moveHandle=null)}};if("undefined"!==typeof Sidebar){var d=Sidebar.prototype.createAdvancedShapes;Sidebar.prototype.createAdvancedShapes=function(){var a=d.apply(this,arguments),b=this.graph;return a.concat([this.addEntry("tree container",function(){var a=new mxCell("Tree Container",new mxGeometry(0,0,220,160),"swimlane;html=1;startSize=20;horizontal=1;containerType=tree;"); -a.vertex=!0;return sb.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,a.value)}),this.addEntry("tree mindmap central idea branch topic",function(){var a=new mxCell("Mindmap",new mxGeometry(0,0,420,126),"swimlane;html=1;startSize=20;horizontal=1;containerType=tree;");a.vertex=!0;var b=new mxCell("Central Idea",new mxGeometry(160,60,100,40),"ellipse;whiteSpace=wrap;html=1;align=center;container=1;recursiveResize=0;treeFolding=1;treeMoving=1;");b.vertex=!0;var d=new mxCell("Topic", +a.vertex=!0;return sb.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,a.value)}),this.addEntry("tree mindmap mindmaps central idea branch topic",function(){var a=new mxCell("Mindmap",new mxGeometry(0,0,420,126),"swimlane;html=1;startSize=20;horizontal=1;containerType=tree;");a.vertex=!0;var b=new mxCell("Central Idea",new mxGeometry(160,60,100,40),"ellipse;whiteSpace=wrap;html=1;align=center;container=1;recursiveResize=0;treeFolding=1;treeMoving=1;");b.vertex=!0;var d=new mxCell("Topic", new mxGeometry(320,40,80,20),"whiteSpace=wrap;html=1;rounded=1;arcSize=50;align=center;verticalAlign=middle;container=1;recursiveResize=0;strokeWidth=1;autosize=1;spacing=4;treeFolding=1;treeMoving=1;");d.vertex=!0;var e=new mxCell("",new mxGeometry(0,0,0,0),"edgeStyle=entityRelationEdgeStyle;startArrow=none;endArrow=none;segment=10;curved=1;");e.geometry.relative=!0;e.edge=!0;b.insertEdge(e,!0);d.insertEdge(e,!1);var c=new mxCell("Branch",new mxGeometry(320,80,72,26),"whiteSpace=wrap;html=1;shape=partialRectangle;top=0;left=0;bottom=1;right=0;points=[[0,1],[1,1]];strokeColor=#000000;fillColor=none;align=center;verticalAlign=bottom;routingCenterY=0.5;snapToPoint=1;container=1;recursiveResize=0;autosize=1;treeFolding=1;treeMoving=1;"); c.vertex=!0;var f=new mxCell("",new mxGeometry(0,0,0,0),"edgeStyle=entityRelationEdgeStyle;startArrow=none;endArrow=none;segment=10;curved=1;");f.geometry.relative=!0;f.edge=!0;b.insertEdge(f,!0);c.insertEdge(f,!1);var k=new mxCell("Topic",new mxGeometry(20,40,80,20),"whiteSpace=wrap;html=1;rounded=1;arcSize=50;align=center;verticalAlign=middle;container=1;recursiveResize=0;strokeWidth=1;autosize=1;spacing=4;treeFolding=1;treeMoving=1;");k.vertex=!0;var l=new mxCell("",new mxGeometry(0,0,0,0),"edgeStyle=entityRelationEdgeStyle;startArrow=none;endArrow=none;segment=10;curved=1;"); l.geometry.relative=!0;l.edge=!0;b.insertEdge(l,!0);k.insertEdge(l,!1);var m=new mxCell("Branch",new mxGeometry(20,80,72,26),"whiteSpace=wrap;html=1;shape=partialRectangle;top=0;left=0;bottom=1;right=0;points=[[0,1],[1,1]];strokeColor=#000000;fillColor=none;align=center;verticalAlign=bottom;routingCenterY=0.5;snapToPoint=1;container=1;recursiveResize=0;autosize=1;treeFolding=1;treeMoving=1;");m.vertex=!0;var g=new mxCell("",new mxGeometry(0,0,0,0),"edgeStyle=entityRelationEdgeStyle;startArrow=none;endArrow=none;segment=10;curved=1;"); -g.geometry.relative=!0;g.edge=!0;b.insertEdge(g,!0);m.insertEdge(g,!1);a.insert(e);a.insert(f);a.insert(l);a.insert(g);a.insert(b);a.insert(d);a.insert(c);a.insert(k);a.insert(m);return sb.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,a.value)}),this.addEntry("tree mindmap central idea",function(){var a=new mxCell("Central Idea",new mxGeometry(0,0,100,40),"ellipse;whiteSpace=wrap;html=1;align=center;container=1;recursiveResize=0;treeFolding=1;treeMoving=1;");a.vertex=!0;return sb.createVertexTemplateFromCells([a], -a.geometry.width,a.geometry.height,a.value)}),this.addEntry("tree mindmap branch",function(){var a=new mxCell("Branch",new mxGeometry(0,0,80,20),"whiteSpace=wrap;html=1;shape=partialRectangle;top=0;left=0;bottom=1;right=0;points=[[0,1],[1,1]];strokeColor=#000000;fillColor=none;align=center;verticalAlign=bottom;routingCenterY=0.5;snapToPoint=1;container=1;recursiveResize=0;autosize=1;treeFolding=1;treeMoving=1;");a.vertex=!0;var b=new mxCell("",new mxGeometry(0,0,0,0),"edgeStyle=entityRelationEdgeStyle;startArrow=none;endArrow=none;segment=10;curved=1;"); -b.geometry.setTerminalPoint(new mxPoint(-40,40),!0);b.geometry.relative=!0;b.edge=!0;a.insertEdge(b,!1);return sb.createVertexTemplateFromCells([a,b],a.geometry.width,a.geometry.height,a.value)}),this.addEntry("tree mindmap sub topic",function(){var a=new mxCell("Sub Topic",new mxGeometry(0,0,72,26),"whiteSpace=wrap;html=1;rounded=1;arcSize=50;align=center;verticalAlign=middle;container=1;recursiveResize=0;strokeWidth=1;autosize=1;spacing=4;treeFolding=1;treeMoving=1;");a.vertex=!0;var b=new mxCell("", -new mxGeometry(0,0,0,0),"edgeStyle=entityRelationEdgeStyle;startArrow=none;endArrow=none;segment=10;curved=1;");b.geometry.setTerminalPoint(new mxPoint(-40,40),!0);b.geometry.relative=!0;b.edge=!0;a.insertEdge(b,!1);return sb.createVertexTemplateFromCells([a,b],a.geometry.width,a.geometry.height,a.value)}),this.addEntry("tree orgchart organization division",function(){var a=new mxCell("Orgchart",new mxGeometry(0,0,280,220),"swimlane;html=1;startSize=20;horizontal=1;containerType=tree;");a.vertex= -!0;var d=new mxCell("Organization",new mxGeometry(80,40,120,60),"whiteSpace=wrap;html=1;align=center;treeFolding=1;treeMoving=1;container=1;recursiveResize=0;");b.setAttributeForCell(d,"treeRoot","1");d.vertex=!0;var e=new mxCell("Division",new mxGeometry(20,140,100,60),"whiteSpace=wrap;html=1;align=center;verticalAlign=middle;container=1;recursiveResize=0;treeFolding=1;treeMoving=1;");e.vertex=!0;var l=new mxCell("",new mxGeometry(0,0,0,0),"edgeStyle=elbowEdgeStyle;elbow=vertical;startArrow=none;endArrow=none;rounded=0;"); +g.geometry.relative=!0;g.edge=!0;b.insertEdge(g,!0);m.insertEdge(g,!1);a.insert(e);a.insert(f);a.insert(l);a.insert(g);a.insert(b);a.insert(d);a.insert(c);a.insert(k);a.insert(m);return sb.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,a.value)}),this.addEntry("tree mindmap mindmaps central idea",function(){var a=new mxCell("Central Idea",new mxGeometry(0,0,100,40),"ellipse;whiteSpace=wrap;html=1;align=center;container=1;recursiveResize=0;treeFolding=1;treeMoving=1;");a.vertex= +!0;return sb.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,a.value)}),this.addEntry("tree mindmap mindmaps branch",function(){var a=new mxCell("Branch",new mxGeometry(0,0,80,20),"whiteSpace=wrap;html=1;shape=partialRectangle;top=0;left=0;bottom=1;right=0;points=[[0,1],[1,1]];strokeColor=#000000;fillColor=none;align=center;verticalAlign=bottom;routingCenterY=0.5;snapToPoint=1;container=1;recursiveResize=0;autosize=1;treeFolding=1;treeMoving=1;");a.vertex=!0;var b=new mxCell("", +new mxGeometry(0,0,0,0),"edgeStyle=entityRelationEdgeStyle;startArrow=none;endArrow=none;segment=10;curved=1;");b.geometry.setTerminalPoint(new mxPoint(-40,40),!0);b.geometry.relative=!0;b.edge=!0;a.insertEdge(b,!1);return sb.createVertexTemplateFromCells([a,b],a.geometry.width,a.geometry.height,a.value)}),this.addEntry("tree mindmap mindmaps sub topic",function(){var a=new mxCell("Sub Topic",new mxGeometry(0,0,72,26),"whiteSpace=wrap;html=1;rounded=1;arcSize=50;align=center;verticalAlign=middle;container=1;recursiveResize=0;strokeWidth=1;autosize=1;spacing=4;treeFolding=1;treeMoving=1;"); +a.vertex=!0;var b=new mxCell("",new mxGeometry(0,0,0,0),"edgeStyle=entityRelationEdgeStyle;startArrow=none;endArrow=none;segment=10;curved=1;");b.geometry.setTerminalPoint(new mxPoint(-40,40),!0);b.geometry.relative=!0;b.edge=!0;a.insertEdge(b,!1);return sb.createVertexTemplateFromCells([a,b],a.geometry.width,a.geometry.height,a.value)}),this.addEntry("tree orgchart organization division",function(){var a=new mxCell("Orgchart",new mxGeometry(0,0,280,220),"swimlane;html=1;startSize=20;horizontal=1;containerType=tree;"); +a.vertex=!0;var d=new mxCell("Organization",new mxGeometry(80,40,120,60),"whiteSpace=wrap;html=1;align=center;treeFolding=1;treeMoving=1;container=1;recursiveResize=0;");b.setAttributeForCell(d,"treeRoot","1");d.vertex=!0;var e=new mxCell("Division",new mxGeometry(20,140,100,60),"whiteSpace=wrap;html=1;align=center;verticalAlign=middle;container=1;recursiveResize=0;treeFolding=1;treeMoving=1;");e.vertex=!0;var l=new mxCell("",new mxGeometry(0,0,0,0),"edgeStyle=elbowEdgeStyle;elbow=vertical;startArrow=none;endArrow=none;rounded=0;"); l.geometry.relative=!0;l.edge=!0;d.insertEdge(l,!0);e.insertEdge(l,!1);var c=new mxCell("Division",new mxGeometry(160,140,100,60),"whiteSpace=wrap;html=1;align=center;verticalAlign=middle;container=1;recursiveResize=0;treeFolding=1;treeMoving=1;");c.vertex=!0;var f=new mxCell("",new mxGeometry(0,0,0,0),"edgeStyle=elbowEdgeStyle;elbow=vertical;startArrow=none;endArrow=none;rounded=0;");f.geometry.relative=!0;f.edge=!0;d.insertEdge(f,!0);c.insertEdge(f,!1);a.insert(l);a.insert(f);a.insert(d);a.insert(e); a.insert(c);return sb.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,a.value)}),this.addEntry("tree root",function(){var a=new mxCell("Organization",new mxGeometry(0,0,120,60),"whiteSpace=wrap;html=1;align=center;treeFolding=1;treeMoving=1;container=1;recursiveResize=0;");b.setAttributeForCell(a,"treeRoot","1");a.vertex=!0;return sb.createVertexTemplateFromCells([a],a.geometry.width,a.geometry.height,a.value)}),this.addEntry("tree division",function(){var a=new mxCell("Division", new mxGeometry(20,40,100,60),"whiteSpace=wrap;html=1;align=center;verticalAlign=middle;container=1;recursiveResize=0;treeFolding=1;treeMoving=1;");a.vertex=!0;var b=new mxCell("",new mxGeometry(0,0,0,0),"edgeStyle=elbowEdgeStyle;elbow=vertical;startArrow=none;endArrow=none;rounded=0;");b.geometry.setTerminalPoint(new mxPoint(0,0),!0);b.geometry.relative=!0;b.edge=!0;a.insertEdge(b,!1);return sb.createVertexTemplateFromCells([a,b],a.geometry.width,a.geometry.height,a.value)}),this.addEntry("tree sub sections", diff --git a/src/main/webapp/stencils/electrical/electro-mechanical.xml b/src/main/webapp/stencils/electrical/electro-mechanical.xml index a7e8fc6a8f3c374498164184f187dce16f6193fc..8c80b44a56c8b8cc022bc2f15577503d79bbfa3d 100644 --- a/src/main/webapp/stencils/electrical/electro-mechanical.xml +++ b/src/main/webapp/stencils/electrical/electro-mechanical.xml @@ -320,6 +320,59 @@ <stroke/> </foreground> </shape> +<shape aspect="variable" h="62.25" name="DPDT2" strokewidth="inherit" w="57.75"> + <connections> + <constraint name="NW" perimeter="0" x="0" y="0.227"/> + <constraint name="NE" perimeter="0" x="1" y="0.05"/> + <constraint name="E1" perimeter="0" x="1" y="0.39"/> + <constraint name="E2" perimeter="0" x="1" y="0.61"/> + <constraint name="SW" perimeter="0" x="0" y="0.793"/> + <constraint name="SE" perimeter="0" x="1" y="0.95"/> + </connections> + <foreground> + <restore/> + <rect/> + <stroke/> + <ellipse h="6" w="6" x="36.75" y="21.25"/> + <fillstroke/> + <ellipse h="6" w="6" x="15.25" y="11.25"/> + <fillstroke/> + <path> + <move x="0" y="14.25"/> + <line x="15" y="14.25"/> + <move x="42.75" y="24.25"/> + <line x="57.75" y="24.25"/> + <move x="20.75" y="13.5"/> + <line x="39.75" y="6.5"/> + <move x="42.75" y="3"/> + <line x="57.75" y="3"/> + <move x="0.25" y="49.25"/> + <line x="15.25" y="49.25"/> + <move x="20.75" y="48.5"/> + <line x="39.75" y="41.5"/> + <move x="42.75" y="59.25"/> + <line x="57.75" y="59.25"/> + <move x="42.75" y="38"/> + <line x="57.75" y="38"/> + </path> + <stroke/> + <ellipse h="6" w="6" x="36.75" y="0"/> + <fillstroke/> + <ellipse h="6" w="6" x="15.25" y="46.25"/> + <fillstroke/> + <ellipse h="6" w="6" x="36.75" y="56.25"/> + <fillstroke/> + <ellipse h="6" w="6" x="36.75" y="35"/> + <fillstroke/> + <dashpattern pattern="5 2"/> + <dashed dashed="1"/> + <path> + <move x="29.75" y="10.25"/> + <line x="29.75" y="45.25"/> + </path> + <stroke/> + </foreground> +</shape> <shape aspect="variable" h="26" name="DPST" strokewidth="inherit" w="75"> <connections> <constraint name="NW" perimeter="0" x="0" y="0.115"/>